TOrderTaskMapper.xml 84 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956
  1. <?xml version="1.0" encoding="UTF-8"?>
  2. <!DOCTYPE mapper PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN" "http://mybatis.org/dtd/mybatis-3-mapper.dtd">
  3. <mapper namespace="com.goafanti.common.dao.TOrderTaskMapper">
  4. <resultMap id="BaseResultMap" type="com.goafanti.common.model.TOrderTask">
  5. <id column="id" jdbcType="INTEGER" property="id" />
  6. <result column="order_no" jdbcType="VARCHAR" property="orderNo" />
  7. <result column="main" jdbcType="INTEGER" property="main" />
  8. <result column="super_id" jdbcType="VARCHAR" property="superId" />
  9. <result column="commodity_id" jdbcType="VARCHAR" property="commodityId" />
  10. <result column="commodity_name" jdbcType="VARCHAR" property="commodityName" />
  11. <result column="commodity_quantity" jdbcType="INTEGER" property="commodityQuantity" />
  12. <result column="commodity_mode" jdbcType="VARCHAR" property="commodityMode" />
  13. <result column="commodity_price" jdbcType="DECIMAL" property="commodityPrice" />
  14. <result column="task_status" jdbcType="INTEGER" property="taskStatus" />
  15. <result column="task_distribution_time" jdbcType="TIMESTAMP" property="taskDistributionTime" />
  16. <result column="task_allocator" jdbcType="VARCHAR" property="taskAllocator" />
  17. <result column="task_receiver" jdbcType="VARCHAR" property="taskReceiver" />
  18. <result column="task_comment" jdbcType="VARCHAR" property="taskComment" />
  19. <result column="task_start_time" jdbcType="TIMESTAMP" property="taskStartTime" />
  20. <result column="task_end_time" jdbcType="TIMESTAMP" property="taskEndTime" />
  21. <result column="attachment_url" jdbcType="VARCHAR" property="attachmentUrl" />
  22. <result column="project_status" jdbcType="INTEGER" property="projectStatus" />
  23. <result column="accept_time" jdbcType="DATE" property="acceptTime" />
  24. <result column="review_time" jdbcType="DATE" property="reviewTime" />
  25. <result column="publicity_time" jdbcType="DATE" property="publicityTime" />
  26. <result column="licence_time" jdbcType="DATE" property="licenceTime" />
  27. <result column="certificate_number" jdbcType="VARCHAR" property="certificateNumber" />
  28. <result column="status" jdbcType="INTEGER" property="status" />
  29. <result column="form_retrieve" jdbcType="INTEGER" property="formRetrieve" />
  30. <result column="task_refund" jdbcType="INTEGER" property="taskRefund" />
  31. <result column="refund_content" jdbcType="VARCHAR" property="refundContent" />
  32. <result column="retrieve_content" jdbcType="VARCHAR" property="retrieveContent" />
  33. <result column="declare_user" jdbcType="VARCHAR" property="declareUser" />
  34. <result column="declare_pwd" jdbcType="VARCHAR" property="declarePwd" />
  35. <result column="set_up_amount" jdbcType="DECIMAL" property="setUpAmount" />
  36. <result column="arrival_money" jdbcType="INTEGER" property="arrivalMoney" />
  37. <result column="outsource_name" jdbcType="VARCHAR" property="outsourceName" />
  38. <result column="outsource_price" jdbcType="DECIMAL" property="outsourcePrice" />
  39. <result column="consultant_id" jdbcType="VARCHAR" property="consultantId" />
  40. <result column="manager_id" jdbcType="VARCHAR" property="managerId" />
  41. <result column="outsource" jdbcType="INTEGER" property="outsource" />
  42. <result column="split_super" jdbcType="INTEGER" property="splitSuper" />
  43. <result column="split_status" jdbcType="INTEGER" property="splitStatus" />
  44. <result column="split_id" jdbcType="INTEGER" property="splitId" />
  45. <result column="split_aid" jdbcType="VARCHAR" property="splitAid" />
  46. <result column="split_time" jdbcType="TIMESTAMP" property="splitTime" />
  47. <result column="cname" jdbcType="VARCHAR" property="cname" />
  48. <result column="receiver_name" jdbcType="VARCHAR" property="receiverName" />
  49. <result column="declaration_batch" jdbcType="INTEGER" property="declarationBatch" />
  50. <result column="cost_reduction" jdbcType="INTEGER" property="costReduction" />
  51. <result column="official_cost" jdbcType="INTEGER" property="officialCost" />
  52. <result column="set_up_status" jdbcType="INTEGER" property="setUpStatus" />
  53. <result column="set_up_time" jdbcType="TIMESTAMP" property="setUpTime" />
  54. <result column="spot_check_status" jdbcType="INTEGER" property="spotCheckStatus" />
  55. <result column="high_tech_status" jdbcType="INTEGER" property="highTechStatus" />
  56. <result column="special_comment" jdbcType="VARCHAR" property="specialComment" />
  57. <result column="if_certification_fee" jdbcType="INTEGER" property="ifCertificationFee" />
  58. <result column="certification_fee" jdbcType="DECIMAL" property="certificationFee" />
  59. <result column="certification_corporate" jdbcType="VARCHAR" property="certificationCorporate" />
  60. <result column="time_record" jdbcType="VARCHAR" property="timeRecord" />
  61. <result column="if_publicity" jdbcType="INTEGER" property="ifPublicity" />
  62. <result column="check_status" jdbcType="INTEGER" property="checkStatus" />
  63. <result column="patent_type" jdbcType="INTEGER" property="patentType" />
  64. <result column="pubicity_url" jdbcType="VARCHAR" property="pubicityUrl" />
  65. <result column="process_status" jdbcType="INTEGER" property="processStatus" />
  66. <result column="member_type" jdbcType="INTEGER" property="memberType" />
  67. <result column="picture_url" jdbcType="VARCHAR" property="pictureUrl" />
  68. </resultMap>
  69. <sql id="Base_Column_List">
  70. id, order_no, main, super_id, commodity_id, commodity_name, commodity_quantity, commodity_mode,
  71. commodity_price, task_status, task_distribution_time, task_allocator, task_receiver,
  72. task_comment, task_start_time, task_end_time, attachment_url, project_status, accept_time,
  73. review_time, publicity_time, licence_time, certificate_number, `status`, form_retrieve,
  74. task_refund, refund_content, retrieve_content, declare_user, declare_pwd, set_up_amount,
  75. arrival_money, outsource_name, outsource_price, consultant_id, manager_id, outsource,
  76. split_super, split_status, split_id, split_aid, split_time, cname, receiver_name,
  77. declaration_batch, cost_reduction, official_cost, set_up_status, set_up_time, spot_check_status,
  78. high_tech_status, special_comment, if_certification_fee, certification_fee, certification_corporate,
  79. time_record, if_publicity, check_status, patent_type, pubicity_url, process_status,
  80. member_type, picture_url
  81. </sql>
  82. <select id="selectByPrimaryKey" parameterType="java.lang.Integer" resultMap="BaseResultMap">
  83. select
  84. <include refid="Base_Column_List" />
  85. from t_order_task
  86. where id = #{id,jdbcType=INTEGER}
  87. </select>
  88. <delete id="deleteByPrimaryKey" parameterType="java.lang.Integer">
  89. delete from t_order_task
  90. where id = #{id,jdbcType=INTEGER}
  91. </delete>
  92. <insert id="insert" keyColumn="id" keyProperty="id" parameterType="com.goafanti.common.model.TOrderTask" useGeneratedKeys="true">
  93. insert into t_order_task (id, order_no, main,
  94. super_id, commodity_id, commodity_name,
  95. commodity_quantity, commodity_mode, commodity_price,
  96. task_status, task_distribution_time, task_allocator,
  97. task_receiver, task_comment, task_start_time,
  98. task_end_time, attachment_url, project_status,
  99. accept_time, review_time, publicity_time,
  100. licence_time, certificate_number, `status`,
  101. form_retrieve, task_refund, refund_content,
  102. retrieve_content, declare_user, declare_pwd,
  103. set_up_amount, arrival_money, outsource_name,
  104. outsource_price, consultant_id, manager_id,
  105. outsource, split_super, split_status,
  106. split_id, split_aid, split_time,
  107. cname, receiver_name, declaration_batch,
  108. cost_reduction, official_cost, set_up_status,
  109. set_up_time, spot_check_status, high_tech_status,
  110. special_comment, if_certification_fee, certification_fee,
  111. certification_corporate, time_record, if_publicity,
  112. check_status, patent_type, pubicity_url,
  113. process_status, member_type, picture_url
  114. )
  115. values (#{id,jdbcType=INTEGER}, #{orderNo,jdbcType=VARCHAR}, #{main,jdbcType=INTEGER},
  116. #{superId,jdbcType=VARCHAR}, #{commodityId,jdbcType=VARCHAR}, #{commodityName,jdbcType=VARCHAR},
  117. #{commodityQuantity,jdbcType=INTEGER}, #{commodityMode,jdbcType=VARCHAR}, #{commodityPrice,jdbcType=DECIMAL},
  118. #{taskStatus,jdbcType=INTEGER}, #{taskDistributionTime,jdbcType=TIMESTAMP}, #{taskAllocator,jdbcType=VARCHAR},
  119. #{taskReceiver,jdbcType=VARCHAR}, #{taskComment,jdbcType=VARCHAR}, #{taskStartTime,jdbcType=TIMESTAMP},
  120. #{taskEndTime,jdbcType=TIMESTAMP}, #{attachmentUrl,jdbcType=VARCHAR}, #{projectStatus,jdbcType=INTEGER},
  121. #{acceptTime,jdbcType=DATE}, #{reviewTime,jdbcType=DATE}, #{publicityTime,jdbcType=DATE},
  122. #{licenceTime,jdbcType=DATE}, #{certificateNumber,jdbcType=VARCHAR}, #{status,jdbcType=INTEGER},
  123. #{formRetrieve,jdbcType=INTEGER}, #{taskRefund,jdbcType=INTEGER}, #{refundContent,jdbcType=VARCHAR},
  124. #{retrieveContent,jdbcType=VARCHAR}, #{declareUser,jdbcType=VARCHAR}, #{declarePwd,jdbcType=VARCHAR},
  125. #{setUpAmount,jdbcType=DECIMAL}, #{arrivalMoney,jdbcType=INTEGER}, #{outsourceName,jdbcType=VARCHAR},
  126. #{outsourcePrice,jdbcType=DECIMAL}, #{consultantId,jdbcType=VARCHAR}, #{managerId,jdbcType=VARCHAR},
  127. #{outsource,jdbcType=INTEGER}, #{splitSuper,jdbcType=INTEGER}, #{splitStatus,jdbcType=INTEGER},
  128. #{splitId,jdbcType=INTEGER}, #{splitAid,jdbcType=VARCHAR}, #{splitTime,jdbcType=TIMESTAMP},
  129. #{cname,jdbcType=VARCHAR}, #{receiverName,jdbcType=VARCHAR}, #{declarationBatch,jdbcType=INTEGER},
  130. #{costReduction,jdbcType=INTEGER}, #{officialCost,jdbcType=INTEGER}, #{setUpStatus,jdbcType=INTEGER},
  131. #{setUpTime,jdbcType=TIMESTAMP}, #{spotCheckStatus,jdbcType=INTEGER}, #{highTechStatus,jdbcType=INTEGER},
  132. #{specialComment,jdbcType=VARCHAR}, #{ifCertificationFee,jdbcType=INTEGER}, #{certificationFee,jdbcType=DECIMAL},
  133. #{certificationCorporate,jdbcType=VARCHAR}, #{timeRecord,jdbcType=VARCHAR}, #{ifPublicity,jdbcType=INTEGER},
  134. #{checkStatus,jdbcType=INTEGER}, #{patentType,jdbcType=INTEGER}, #{pubicityUrl,jdbcType=VARCHAR},
  135. #{processStatus,jdbcType=INTEGER}, #{memberType,jdbcType=INTEGER}, #{pictureUrl,jdbcType=VARCHAR}
  136. )
  137. </insert>
  138. <insert id="insertSelective" keyColumn="id" keyProperty="id" parameterType="com.goafanti.common.model.TOrderTask" useGeneratedKeys="true">
  139. insert into t_order_task
  140. <trim prefix="(" suffix=")" suffixOverrides=",">
  141. <if test="id != null">
  142. id,
  143. </if>
  144. <if test="orderNo != null">
  145. order_no,
  146. </if>
  147. <if test="main != null">
  148. main,
  149. </if>
  150. <if test="superId != null">
  151. super_id,
  152. </if>
  153. <if test="commodityId != null">
  154. commodity_id,
  155. </if>
  156. <if test="commodityName != null">
  157. commodity_name,
  158. </if>
  159. <if test="commodityQuantity != null">
  160. commodity_quantity,
  161. </if>
  162. <if test="commodityMode != null">
  163. commodity_mode,
  164. </if>
  165. <if test="commodityPrice != null">
  166. commodity_price,
  167. </if>
  168. <if test="taskStatus != null">
  169. task_status,
  170. </if>
  171. <if test="taskDistributionTime != null">
  172. task_distribution_time,
  173. </if>
  174. <if test="taskAllocator != null">
  175. task_allocator,
  176. </if>
  177. <if test="taskReceiver != null">
  178. task_receiver,
  179. </if>
  180. <if test="taskComment != null">
  181. task_comment,
  182. </if>
  183. <if test="taskStartTime != null">
  184. task_start_time,
  185. </if>
  186. <if test="taskEndTime != null">
  187. task_end_time,
  188. </if>
  189. <if test="attachmentUrl != null">
  190. attachment_url,
  191. </if>
  192. <if test="projectStatus != null">
  193. project_status,
  194. </if>
  195. <if test="acceptTime != null">
  196. accept_time,
  197. </if>
  198. <if test="reviewTime != null">
  199. review_time,
  200. </if>
  201. <if test="publicityTime != null">
  202. publicity_time,
  203. </if>
  204. <if test="licenceTime != null">
  205. licence_time,
  206. </if>
  207. <if test="certificateNumber != null">
  208. certificate_number,
  209. </if>
  210. <if test="status != null">
  211. `status`,
  212. </if>
  213. <if test="formRetrieve != null">
  214. form_retrieve,
  215. </if>
  216. <if test="taskRefund != null">
  217. task_refund,
  218. </if>
  219. <if test="refundContent != null">
  220. refund_content,
  221. </if>
  222. <if test="retrieveContent != null">
  223. retrieve_content,
  224. </if>
  225. <if test="declareUser != null">
  226. declare_user,
  227. </if>
  228. <if test="declarePwd != null">
  229. declare_pwd,
  230. </if>
  231. <if test="setUpAmount != null">
  232. set_up_amount,
  233. </if>
  234. <if test="arrivalMoney != null">
  235. arrival_money,
  236. </if>
  237. <if test="outsourceName != null">
  238. outsource_name,
  239. </if>
  240. <if test="outsourcePrice != null">
  241. outsource_price,
  242. </if>
  243. <if test="consultantId != null">
  244. consultant_id,
  245. </if>
  246. <if test="managerId != null">
  247. manager_id,
  248. </if>
  249. <if test="outsource != null">
  250. outsource,
  251. </if>
  252. <if test="splitSuper != null">
  253. split_super,
  254. </if>
  255. <if test="splitStatus != null">
  256. split_status,
  257. </if>
  258. <if test="splitId != null">
  259. split_id,
  260. </if>
  261. <if test="splitAid != null">
  262. split_aid,
  263. </if>
  264. <if test="splitTime != null">
  265. split_time,
  266. </if>
  267. <if test="cname != null">
  268. cname,
  269. </if>
  270. <if test="receiverName != null">
  271. receiver_name,
  272. </if>
  273. <if test="declarationBatch != null">
  274. declaration_batch,
  275. </if>
  276. <if test="costReduction != null">
  277. cost_reduction,
  278. </if>
  279. <if test="officialCost != null">
  280. official_cost,
  281. </if>
  282. <if test="setUpStatus != null">
  283. set_up_status,
  284. </if>
  285. <if test="setUpTime != null">
  286. set_up_time,
  287. </if>
  288. <if test="spotCheckStatus != null">
  289. spot_check_status,
  290. </if>
  291. <if test="highTechStatus != null">
  292. high_tech_status,
  293. </if>
  294. <if test="specialComment != null">
  295. special_comment,
  296. </if>
  297. <if test="ifCertificationFee != null">
  298. if_certification_fee,
  299. </if>
  300. <if test="certificationFee != null">
  301. certification_fee,
  302. </if>
  303. <if test="certificationCorporate != null">
  304. certification_corporate,
  305. </if>
  306. <if test="timeRecord != null">
  307. time_record,
  308. </if>
  309. <if test="ifPublicity != null">
  310. if_publicity,
  311. </if>
  312. <if test="checkStatus != null">
  313. check_status,
  314. </if>
  315. <if test="patentType != null">
  316. patent_type,
  317. </if>
  318. <if test="pubicityUrl != null">
  319. pubicity_url,
  320. </if>
  321. <if test="processStatus != null">
  322. process_status,
  323. </if>
  324. <if test="memberType != null">
  325. member_type,
  326. </if>
  327. <if test="pictureUrl != null">
  328. picture_url,
  329. </if>
  330. </trim>
  331. <trim prefix="values (" suffix=")" suffixOverrides=",">
  332. <if test="id != null">
  333. #{id,jdbcType=INTEGER},
  334. </if>
  335. <if test="orderNo != null">
  336. #{orderNo,jdbcType=VARCHAR},
  337. </if>
  338. <if test="main != null">
  339. #{main,jdbcType=INTEGER},
  340. </if>
  341. <if test="superId != null">
  342. #{superId,jdbcType=VARCHAR},
  343. </if>
  344. <if test="commodityId != null">
  345. #{commodityId,jdbcType=VARCHAR},
  346. </if>
  347. <if test="commodityName != null">
  348. #{commodityName,jdbcType=VARCHAR},
  349. </if>
  350. <if test="commodityQuantity != null">
  351. #{commodityQuantity,jdbcType=INTEGER},
  352. </if>
  353. <if test="commodityMode != null">
  354. #{commodityMode,jdbcType=VARCHAR},
  355. </if>
  356. <if test="commodityPrice != null">
  357. #{commodityPrice,jdbcType=DECIMAL},
  358. </if>
  359. <if test="taskStatus != null">
  360. #{taskStatus,jdbcType=INTEGER},
  361. </if>
  362. <if test="taskDistributionTime != null">
  363. #{taskDistributionTime,jdbcType=TIMESTAMP},
  364. </if>
  365. <if test="taskAllocator != null">
  366. #{taskAllocator,jdbcType=VARCHAR},
  367. </if>
  368. <if test="taskReceiver != null">
  369. #{taskReceiver,jdbcType=VARCHAR},
  370. </if>
  371. <if test="taskComment != null">
  372. #{taskComment,jdbcType=VARCHAR},
  373. </if>
  374. <if test="taskStartTime != null">
  375. #{taskStartTime,jdbcType=TIMESTAMP},
  376. </if>
  377. <if test="taskEndTime != null">
  378. #{taskEndTime,jdbcType=TIMESTAMP},
  379. </if>
  380. <if test="attachmentUrl != null">
  381. #{attachmentUrl,jdbcType=VARCHAR},
  382. </if>
  383. <if test="projectStatus != null">
  384. #{projectStatus,jdbcType=INTEGER},
  385. </if>
  386. <if test="acceptTime != null">
  387. #{acceptTime,jdbcType=DATE},
  388. </if>
  389. <if test="reviewTime != null">
  390. #{reviewTime,jdbcType=DATE},
  391. </if>
  392. <if test="publicityTime != null">
  393. #{publicityTime,jdbcType=DATE},
  394. </if>
  395. <if test="licenceTime != null">
  396. #{licenceTime,jdbcType=DATE},
  397. </if>
  398. <if test="certificateNumber != null">
  399. #{certificateNumber,jdbcType=VARCHAR},
  400. </if>
  401. <if test="status != null">
  402. #{status,jdbcType=INTEGER},
  403. </if>
  404. <if test="formRetrieve != null">
  405. #{formRetrieve,jdbcType=INTEGER},
  406. </if>
  407. <if test="taskRefund != null">
  408. #{taskRefund,jdbcType=INTEGER},
  409. </if>
  410. <if test="refundContent != null">
  411. #{refundContent,jdbcType=VARCHAR},
  412. </if>
  413. <if test="retrieveContent != null">
  414. #{retrieveContent,jdbcType=VARCHAR},
  415. </if>
  416. <if test="declareUser != null">
  417. #{declareUser,jdbcType=VARCHAR},
  418. </if>
  419. <if test="declarePwd != null">
  420. #{declarePwd,jdbcType=VARCHAR},
  421. </if>
  422. <if test="setUpAmount != null">
  423. #{setUpAmount,jdbcType=DECIMAL},
  424. </if>
  425. <if test="arrivalMoney != null">
  426. #{arrivalMoney,jdbcType=INTEGER},
  427. </if>
  428. <if test="outsourceName != null">
  429. #{outsourceName,jdbcType=VARCHAR},
  430. </if>
  431. <if test="outsourcePrice != null">
  432. #{outsourcePrice,jdbcType=DECIMAL},
  433. </if>
  434. <if test="consultantId != null">
  435. #{consultantId,jdbcType=VARCHAR},
  436. </if>
  437. <if test="managerId != null">
  438. #{managerId,jdbcType=VARCHAR},
  439. </if>
  440. <if test="outsource != null">
  441. #{outsource,jdbcType=INTEGER},
  442. </if>
  443. <if test="splitSuper != null">
  444. #{splitSuper,jdbcType=INTEGER},
  445. </if>
  446. <if test="splitStatus != null">
  447. #{splitStatus,jdbcType=INTEGER},
  448. </if>
  449. <if test="splitId != null">
  450. #{splitId,jdbcType=INTEGER},
  451. </if>
  452. <if test="splitAid != null">
  453. #{splitAid,jdbcType=VARCHAR},
  454. </if>
  455. <if test="splitTime != null">
  456. #{splitTime,jdbcType=TIMESTAMP},
  457. </if>
  458. <if test="cname != null">
  459. #{cname,jdbcType=VARCHAR},
  460. </if>
  461. <if test="receiverName != null">
  462. #{receiverName,jdbcType=VARCHAR},
  463. </if>
  464. <if test="declarationBatch != null">
  465. #{declarationBatch,jdbcType=INTEGER},
  466. </if>
  467. <if test="costReduction != null">
  468. #{costReduction,jdbcType=INTEGER},
  469. </if>
  470. <if test="officialCost != null">
  471. #{officialCost,jdbcType=INTEGER},
  472. </if>
  473. <if test="setUpStatus != null">
  474. #{setUpStatus,jdbcType=INTEGER},
  475. </if>
  476. <if test="setUpTime != null">
  477. #{setUpTime,jdbcType=TIMESTAMP},
  478. </if>
  479. <if test="spotCheckStatus != null">
  480. #{spotCheckStatus,jdbcType=INTEGER},
  481. </if>
  482. <if test="highTechStatus != null">
  483. #{highTechStatus,jdbcType=INTEGER},
  484. </if>
  485. <if test="specialComment != null">
  486. #{specialComment,jdbcType=VARCHAR},
  487. </if>
  488. <if test="ifCertificationFee != null">
  489. #{ifCertificationFee,jdbcType=INTEGER},
  490. </if>
  491. <if test="certificationFee != null">
  492. #{certificationFee,jdbcType=DECIMAL},
  493. </if>
  494. <if test="certificationCorporate != null">
  495. #{certificationCorporate,jdbcType=VARCHAR},
  496. </if>
  497. <if test="timeRecord != null">
  498. #{timeRecord,jdbcType=VARCHAR},
  499. </if>
  500. <if test="ifPublicity != null">
  501. #{ifPublicity,jdbcType=INTEGER},
  502. </if>
  503. <if test="checkStatus != null">
  504. #{checkStatus,jdbcType=INTEGER},
  505. </if>
  506. <if test="patentType != null">
  507. #{patentType,jdbcType=INTEGER},
  508. </if>
  509. <if test="pubicityUrl != null">
  510. #{pubicityUrl,jdbcType=VARCHAR},
  511. </if>
  512. <if test="processStatus != null">
  513. #{processStatus,jdbcType=INTEGER},
  514. </if>
  515. <if test="memberType != null">
  516. #{memberType,jdbcType=INTEGER},
  517. </if>
  518. <if test="pictureUrl != null">
  519. #{pictureUrl,jdbcType=VARCHAR},
  520. </if>
  521. </trim>
  522. </insert>
  523. <update id="updateByPrimaryKeySelective" parameterType="com.goafanti.common.model.TOrderTask">
  524. update t_order_task
  525. <set>
  526. <if test="orderNo != null">
  527. order_no = #{orderNo,jdbcType=VARCHAR},
  528. </if>
  529. <if test="main != null">
  530. main = #{main,jdbcType=INTEGER},
  531. </if>
  532. <if test="superId != null">
  533. super_id = #{superId,jdbcType=VARCHAR},
  534. </if>
  535. <if test="commodityId != null">
  536. commodity_id = #{commodityId,jdbcType=VARCHAR},
  537. </if>
  538. <if test="commodityName != null">
  539. commodity_name = #{commodityName,jdbcType=VARCHAR},
  540. </if>
  541. <if test="commodityQuantity != null">
  542. commodity_quantity = #{commodityQuantity,jdbcType=INTEGER},
  543. </if>
  544. <if test="commodityMode != null">
  545. commodity_mode = #{commodityMode,jdbcType=VARCHAR},
  546. </if>
  547. <if test="commodityPrice != null">
  548. commodity_price = #{commodityPrice,jdbcType=DECIMAL},
  549. </if>
  550. <if test="taskStatus != null">
  551. task_status = #{taskStatus,jdbcType=INTEGER},
  552. </if>
  553. <if test="taskDistributionTime != null">
  554. task_distribution_time = #{taskDistributionTime,jdbcType=TIMESTAMP},
  555. </if>
  556. <if test="taskAllocator != null">
  557. task_allocator = #{taskAllocator,jdbcType=VARCHAR},
  558. </if>
  559. <if test="taskReceiver != null">
  560. task_receiver = #{taskReceiver,jdbcType=VARCHAR},
  561. </if>
  562. <if test="taskComment != null">
  563. task_comment = #{taskComment,jdbcType=VARCHAR},
  564. </if>
  565. <if test="taskStartTime != null">
  566. task_start_time = #{taskStartTime,jdbcType=TIMESTAMP},
  567. </if>
  568. <if test="taskEndTime != null">
  569. task_end_time = #{taskEndTime,jdbcType=TIMESTAMP},
  570. </if>
  571. <if test="attachmentUrl != null">
  572. attachment_url = #{attachmentUrl,jdbcType=VARCHAR},
  573. </if>
  574. <if test="projectStatus != null">
  575. project_status = #{projectStatus,jdbcType=INTEGER},
  576. </if>
  577. <if test="acceptTime != null">
  578. accept_time = #{acceptTime,jdbcType=DATE},
  579. </if>
  580. <if test="reviewTime != null">
  581. review_time = #{reviewTime,jdbcType=DATE},
  582. </if>
  583. <if test="publicityTime != null">
  584. publicity_time = #{publicityTime,jdbcType=DATE},
  585. </if>
  586. <if test="licenceTime != null">
  587. licence_time = #{licenceTime,jdbcType=DATE},
  588. </if>
  589. <if test="certificateNumber != null">
  590. certificate_number = #{certificateNumber,jdbcType=VARCHAR},
  591. </if>
  592. <if test="status != null">
  593. `status` = #{status,jdbcType=INTEGER},
  594. </if>
  595. <if test="formRetrieve != null">
  596. form_retrieve = #{formRetrieve,jdbcType=INTEGER},
  597. </if>
  598. <if test="taskRefund != null">
  599. task_refund = #{taskRefund,jdbcType=INTEGER},
  600. </if>
  601. <if test="refundContent != null">
  602. refund_content = #{refundContent,jdbcType=VARCHAR},
  603. </if>
  604. <if test="retrieveContent != null">
  605. retrieve_content = #{retrieveContent,jdbcType=VARCHAR},
  606. </if>
  607. <if test="declareUser != null">
  608. declare_user = #{declareUser,jdbcType=VARCHAR},
  609. </if>
  610. <if test="declarePwd != null">
  611. declare_pwd = #{declarePwd,jdbcType=VARCHAR},
  612. </if>
  613. <if test="setUpAmount != null">
  614. set_up_amount = #{setUpAmount,jdbcType=DECIMAL},
  615. </if>
  616. <if test="arrivalMoney != null">
  617. arrival_money = #{arrivalMoney,jdbcType=INTEGER},
  618. </if>
  619. <if test="outsourceName != null">
  620. outsource_name = #{outsourceName,jdbcType=VARCHAR},
  621. </if>
  622. <if test="outsourcePrice != null">
  623. outsource_price = #{outsourcePrice,jdbcType=DECIMAL},
  624. </if>
  625. <if test="consultantId != null">
  626. consultant_id = #{consultantId,jdbcType=VARCHAR},
  627. </if>
  628. <if test="managerId != null">
  629. manager_id = #{managerId,jdbcType=VARCHAR},
  630. </if>
  631. <if test="outsource != null">
  632. outsource = #{outsource,jdbcType=INTEGER},
  633. </if>
  634. <if test="splitSuper != null">
  635. split_super = #{splitSuper,jdbcType=INTEGER},
  636. </if>
  637. <if test="splitStatus != null">
  638. split_status = #{splitStatus,jdbcType=INTEGER},
  639. </if>
  640. <if test="splitId != null">
  641. split_id = #{splitId,jdbcType=INTEGER},
  642. </if>
  643. <if test="splitAid != null">
  644. split_aid = #{splitAid,jdbcType=VARCHAR},
  645. </if>
  646. <if test="splitTime != null">
  647. split_time = #{splitTime,jdbcType=TIMESTAMP},
  648. </if>
  649. <if test="cname != null">
  650. cname = #{cname,jdbcType=VARCHAR},
  651. </if>
  652. <if test="receiverName != null">
  653. receiver_name = #{receiverName,jdbcType=VARCHAR},
  654. </if>
  655. <if test="declarationBatch != null">
  656. declaration_batch = #{declarationBatch,jdbcType=INTEGER},
  657. </if>
  658. <if test="costReduction != null">
  659. cost_reduction = #{costReduction,jdbcType=INTEGER},
  660. </if>
  661. <if test="officialCost != null">
  662. official_cost = #{officialCost,jdbcType=INTEGER},
  663. </if>
  664. <if test="setUpStatus != null">
  665. set_up_status = #{setUpStatus,jdbcType=INTEGER},
  666. </if>
  667. <if test="setUpTime != null">
  668. set_up_time = #{setUpTime,jdbcType=TIMESTAMP},
  669. </if>
  670. <if test="spotCheckStatus != null">
  671. spot_check_status = #{spotCheckStatus,jdbcType=INTEGER},
  672. </if>
  673. <if test="highTechStatus != null">
  674. high_tech_status = #{highTechStatus,jdbcType=INTEGER},
  675. </if>
  676. <if test="specialComment != null">
  677. special_comment = #{specialComment,jdbcType=VARCHAR},
  678. </if>
  679. <if test="ifCertificationFee != null">
  680. if_certification_fee = #{ifCertificationFee,jdbcType=INTEGER},
  681. </if>
  682. <if test="certificationFee != null">
  683. certification_fee = #{certificationFee,jdbcType=DECIMAL},
  684. </if>
  685. <if test="certificationCorporate != null">
  686. certification_corporate = #{certificationCorporate,jdbcType=VARCHAR},
  687. </if>
  688. <if test="timeRecord != null">
  689. time_record = #{timeRecord,jdbcType=VARCHAR},
  690. </if>
  691. <if test="ifPublicity != null">
  692. if_publicity = #{ifPublicity,jdbcType=INTEGER},
  693. </if>
  694. <if test="checkStatus != null">
  695. check_status = #{checkStatus,jdbcType=INTEGER},
  696. </if>
  697. <if test="patentType != null">
  698. patent_type = #{patentType,jdbcType=INTEGER},
  699. </if>
  700. <if test="pubicityUrl != null">
  701. pubicity_url = #{pubicityUrl,jdbcType=VARCHAR},
  702. </if>
  703. <if test="processStatus != null">
  704. process_status = #{processStatus,jdbcType=INTEGER},
  705. </if>
  706. <if test="memberType != null">
  707. member_type = #{memberType,jdbcType=INTEGER},
  708. </if>
  709. <if test="pictureUrl != null">
  710. picture_url = #{pictureUrl,jdbcType=VARCHAR},
  711. </if>
  712. </set>
  713. where id = #{id,jdbcType=INTEGER}
  714. </update>
  715. <update id="updateByPrimaryKey" parameterType="com.goafanti.common.model.TOrderTask">
  716. update t_order_task
  717. set order_no = #{orderNo,jdbcType=VARCHAR},
  718. main = #{main,jdbcType=INTEGER},
  719. super_id = #{superId,jdbcType=VARCHAR},
  720. commodity_id = #{commodityId,jdbcType=VARCHAR},
  721. commodity_name = #{commodityName,jdbcType=VARCHAR},
  722. commodity_quantity = #{commodityQuantity,jdbcType=INTEGER},
  723. commodity_mode = #{commodityMode,jdbcType=VARCHAR},
  724. commodity_price = #{commodityPrice,jdbcType=DECIMAL},
  725. task_status = #{taskStatus,jdbcType=INTEGER},
  726. task_distribution_time = #{taskDistributionTime,jdbcType=TIMESTAMP},
  727. task_allocator = #{taskAllocator,jdbcType=VARCHAR},
  728. task_receiver = #{taskReceiver,jdbcType=VARCHAR},
  729. task_comment = #{taskComment,jdbcType=VARCHAR},
  730. task_start_time = #{taskStartTime,jdbcType=TIMESTAMP},
  731. task_end_time = #{taskEndTime,jdbcType=TIMESTAMP},
  732. attachment_url = #{attachmentUrl,jdbcType=VARCHAR},
  733. project_status = #{projectStatus,jdbcType=INTEGER},
  734. accept_time = #{acceptTime,jdbcType=DATE},
  735. review_time = #{reviewTime,jdbcType=DATE},
  736. publicity_time = #{publicityTime,jdbcType=DATE},
  737. licence_time = #{licenceTime,jdbcType=DATE},
  738. certificate_number = #{certificateNumber,jdbcType=VARCHAR},
  739. `status` = #{status,jdbcType=INTEGER},
  740. form_retrieve = #{formRetrieve,jdbcType=INTEGER},
  741. task_refund = #{taskRefund,jdbcType=INTEGER},
  742. refund_content = #{refundContent,jdbcType=VARCHAR},
  743. retrieve_content = #{retrieveContent,jdbcType=VARCHAR},
  744. declare_user = #{declareUser,jdbcType=VARCHAR},
  745. declare_pwd = #{declarePwd,jdbcType=VARCHAR},
  746. set_up_amount = #{setUpAmount,jdbcType=DECIMAL},
  747. arrival_money = #{arrivalMoney,jdbcType=INTEGER},
  748. outsource_name = #{outsourceName,jdbcType=VARCHAR},
  749. outsource_price = #{outsourcePrice,jdbcType=DECIMAL},
  750. consultant_id = #{consultantId,jdbcType=VARCHAR},
  751. manager_id = #{managerId,jdbcType=VARCHAR},
  752. outsource = #{outsource,jdbcType=INTEGER},
  753. split_super = #{splitSuper,jdbcType=INTEGER},
  754. split_status = #{splitStatus,jdbcType=INTEGER},
  755. split_id = #{splitId,jdbcType=INTEGER},
  756. split_aid = #{splitAid,jdbcType=VARCHAR},
  757. split_time = #{splitTime,jdbcType=TIMESTAMP},
  758. cname = #{cname,jdbcType=VARCHAR},
  759. receiver_name = #{receiverName,jdbcType=VARCHAR},
  760. declaration_batch = #{declarationBatch,jdbcType=INTEGER},
  761. cost_reduction = #{costReduction,jdbcType=INTEGER},
  762. official_cost = #{officialCost,jdbcType=INTEGER},
  763. set_up_status = #{setUpStatus,jdbcType=INTEGER},
  764. set_up_time = #{setUpTime,jdbcType=TIMESTAMP},
  765. spot_check_status = #{spotCheckStatus,jdbcType=INTEGER},
  766. high_tech_status = #{highTechStatus,jdbcType=INTEGER},
  767. special_comment = #{specialComment,jdbcType=VARCHAR},
  768. if_certification_fee = #{ifCertificationFee,jdbcType=INTEGER},
  769. certification_fee = #{certificationFee,jdbcType=DECIMAL},
  770. certification_corporate = #{certificationCorporate,jdbcType=VARCHAR},
  771. time_record = #{timeRecord,jdbcType=VARCHAR},
  772. if_publicity = #{ifPublicity,jdbcType=INTEGER},
  773. check_status = #{checkStatus,jdbcType=INTEGER},
  774. patent_type = #{patentType,jdbcType=INTEGER},
  775. pubicity_url = #{pubicityUrl,jdbcType=VARCHAR},
  776. process_status = #{processStatus,jdbcType=INTEGER},
  777. member_type = #{memberType,jdbcType=INTEGER},
  778. picture_url = #{pictureUrl,jdbcType=VARCHAR}
  779. where id = #{id,jdbcType=INTEGER}
  780. </update>
  781. <select id="selectOrderTask" resultType="com.goafanti.order.bo.TOrderTaskBo">
  782. select a.id,e.contract_no contractNo,a.order_no as orderNo,h.nickname userName,f.name salesmanName,
  783. a.outsource_name outsourceName,a.outsource, a.outsource_price outsourcePrice,g.name depName,
  784. e.order_status orderStatus,d.name as contacts,d.contact_mobile as contactsMobile,a.main, c.cname,
  785. c.sort cSort,a.commodity_name as commodityName,a.commodity_quantity as commodityQuantity,b.patent_transfer patentTransfer ,
  786. i.price,a.certificate_number as certificateNumber, a.commodity_id as commodityId,a.manager_id managerId,
  787. a.consultant_id consultantId,a.project_status as projectStatus,a.set_up_amount setUpAmount,j.contract_term contractTerm,
  788. a.task_comment as taskComment ,a.commodity_price as commodityPrice, a.task_status as taskStatus,
  789. a.task_receiver as taskReceiver ,a.if_certification_fee ifCertificationFee , a.split_status splitStatus,
  790. a.cost_reduction costReduction,a.official_cost officialCost,i.`type` ,d.name ,a.declaration_batch declarationBatch,
  791. a.patent_type patentType,a.picture_url pictureUrl,j.service_life serviceLife ,j.service_year serviceYear,j.year_sum yearSum
  792. from t_order_task a left join business_project b on a.commodity_id=b.id left join t_order_new e on a.order_no=e.order_no
  793. left join admin f on e.salesman_id=f.id left join department g on e.order_dep=g.id left join user h on e.buyer_id=h.id
  794. left join business_project i on a.commodity_id=i.id left join business_category c on b.cid=c.id
  795. left join admin d on a.task_receiver=d.id left join t_task_member j on a.id =j.tid
  796. where a.super_id is null and a.split_status in(0,1)
  797. <if test="orderNo != null">
  798. and a.order_no= #{orderNo,jdbcType=VARCHAR}
  799. </if>
  800. <if test="type == 1">
  801. and a.process_status in(0,3)
  802. </if>
  803. order by a.id
  804. </select>
  805. <select id="selectOrderTaskAll" resultType="com.goafanti.order.bo.TOrderTaskBo">
  806. select a.id,e.contract_no contractNo,a.order_no as orderNo,h.nickname userName,f.name salesmanName,a.outsource_name outsourceName,a.outsource,
  807. a.outsource_price outsourcePrice,g.name depName,e.order_status orderStatus,d.name as contacts,d.contact_mobile as contactsMobile,a.main, c.cname,
  808. c.sort cSort,a.commodity_name as commodityName,a.commodity_quantity as commodityQuantity,i.price,a.certificate_number as certificateNumber,a.receiver_name receiverName,
  809. a.commodity_id as commodityId,a.manager_id managerId,a.consultant_id consultantId,a.project_status as projectStatus,a.set_up_amount setUpAmount,
  810. a.task_comment as taskComment ,a.commodity_price as commodityPrice, a.task_status as taskStatus, a.task_receiver as taskReceiver ,
  811. a.split_status splitStatus,a.split_super splitSuper,a.split_aid splitAid,a.split_time splitTime,a.patent_type patentType,ttm.contract_term contractTerm,
  812. a.picture_url pictureUrl, ttm.service_life serviceLife ,ttm.service_year serviceYear,ttm.year_sum yearSum
  813. from t_order_task a left join business_project b on a.commodity_id=b.id left join t_order_new e on a.order_no=e.order_no
  814. left join admin f on e.salesman_id=f.id left join department g on e.order_dep=g.id left join user h on e.buyer_id=h.id
  815. left join business_project i on a.commodity_id=i.id left join business_category c on b.cid=c.id left join admin d on a.task_receiver=d.id
  816. left join t_task_member ttm on a.id=ttm.tid
  817. where a.super_id is null and a.order_no= #{orderNo,jdbcType=VARCHAR}
  818. <if test="splitStatus !=null">
  819. <if test="splitStatus &lt; 3">
  820. and a.split_status= #{splitStatus}
  821. </if>
  822. <if test="splitStatus ==3">
  823. and a.split_status in(0,1)
  824. </if>
  825. <if test="splitStatus ==4">
  826. and a.split_status in(0,2)
  827. </if>
  828. </if>
  829. order by a.id
  830. </select>
  831. <select id="selectOrderTaskListByPage" resultType="com.goafanti.order.bo.TOrderTaskListBo">
  832. select a.id,a.commodity_name as taskName,a.order_no as orderNo,c.cname,a.receiver_name receiverName,a.project_status projectStatus,e.contract_no contractNo,
  833. a.task_receiver taskReceiver,a.task_status as taskStatus,date_format(a.task_distribution_time,'%Y-%m-%d %H:%i:%S') as taskDate, a.commodity_quantity as commodityQuantity,
  834. e.approval,l.refund_status outsourceStatus,l.start_type outsourceType,ttm.certificates_count alreadyNumber,f.nickname as userName,h.name as depName, l.company_name as outsourceName ,
  835. ifnull(k.hours,0) hours,a.split_status splitStatus,a.split_super splitSuper, a.split_id splitId,b.`type` projectType,ttm.cost_amount costAmount,tm.salesman_name salesmanName ,
  836. ttm.party_amount partyAmount,a.commodity_price commodityPrice,a.outsource,date_format(a.task_end_time,'%Y-%m-%d') taskEndTime,date_format(e.sign_time,'%Y-%m-%d') signTime,
  837. date_format(e.create_time ,'%Y-%m-%d')creteTime,a.patent_type patentType
  838. from t_order_task a left join business_project b on a.commodity_id=b.id left join business_category c on b.cid=c.id
  839. left join t_order_new e on a.order_no=e.order_no left join user f on e.buyer_id=f.id left join t_order_mid tm on a.order_no =tm.order_no
  840. left join department h on e.order_dep=h.id left join task_hours_count k on a.id=k.tid and a.task_receiver=k.aid left join t_order_outsource l
  841. on a.id=l.tid left join t_task_mid ttm on a.id=ttm.tid where e.delete_sign in (0,2,3) and e.order_status in (2,4)
  842. and a.outsource= #{outsource,jdbcType=INTEGER}
  843. <if test="role == 0 ">
  844. and a.task_receiver= #{aid,jdbcType=VARCHAR}
  845. </if>
  846. <if test="role ==1 and fids != null and fids.size() &gt; 0">
  847. and e.finance_id in
  848. <foreach close=")" collection="fids" index="" item="item" open="(" separator=",">
  849. #{item}
  850. </foreach>
  851. </if>
  852. <if test="specially == 0 ">
  853. and a.split_status in (0,2)
  854. </if>
  855. <if test="orderNo != null">
  856. and a.order_no= #{orderNo,jdbcType=VARCHAR}
  857. </if>
  858. <if test="approval ==0">
  859. and e.approval = 0
  860. </if>
  861. <if test="approval ==1">
  862. and e.approval = 1
  863. </if>
  864. <if test="approval ==2">
  865. and e.approval &gt; 1
  866. </if>
  867. <if test="cid != null">
  868. and c.id = #{cid}
  869. </if>
  870. <if test="outsourceStatus !=null">
  871. and l.refund_status = #{outsourceStatus,jdbcType=INTEGER}
  872. </if>
  873. <if test="contractNo != null">
  874. and e.contract_no like CONCAT('%',#{contractNo,jdbcType=VARCHAR},'%')
  875. </if>
  876. <if test="projectStatus != null">
  877. and a.project_status = #{projectStatus,jdbcType=INTEGER}
  878. </if>
  879. <if test="deps != null">
  880. and e.order_dep in
  881. <foreach close=")" collection="deps" item="depId" open="(" separator=",">
  882. #{depId}
  883. </foreach>
  884. </if>
  885. <if test="name != null">
  886. and f.nickname like CONCAT('%',#{name,jdbcType=VARCHAR},'%')
  887. </if>
  888. <if test="orderNo != null">
  889. and a.order_no= #{orderNo,jdbcType=VARCHAR}
  890. </if>
  891. <if test="taskId != null">
  892. and (a.id= #{taskId,jdbcType=VARCHAR} or a.split_super= #{taskId,jdbcType=VARCHAR})
  893. </if>
  894. <if test="taskStatus != null">
  895. and a.task_status= #{taskStatus,jdbcType=INTEGER}
  896. </if>
  897. <if test="adminName != null">
  898. and a.receiver_name like CONCAT('%', #{adminName,jdbcType=VARCHAR},'%')
  899. </if>
  900. <if test="startTime != null and endTime != null">
  901. and e.sign_time between #{startTime} and #{endTime}
  902. </if>
  903. order by a.task_distribution_time desc
  904. <if test="page_sql!=null">
  905. ${page_sql}
  906. </if>
  907. </select>
  908. <select id="selectOrderTaskListCount" resultType="java.lang.Integer">
  909. select count(*) from t_order_task a left join business_project b on a.commodity_id=b.id left join business_category c on b.cid=c.id
  910. left join t_order_new e on a.order_no=e.order_no left join user f on e.buyer_id=f.id left join admin g on e.salesman_id=g.id
  911. left join t_order_outsource l on a.id=l.tid left join department h on g.department_id=h.id
  912. where e.delete_sign in (0,2,3) and e.order_status in (2,4)
  913. and a.outsource= #{outsource,jdbcType=INTEGER}
  914. <if test="role == 0 ">
  915. and a.task_receiver= #{aid,jdbcType=VARCHAR}
  916. </if>
  917. <if test="role ==1 and fids != null and fids.size() &gt; 0">
  918. and e.finance_id in
  919. <foreach close=")" collection="fids" index="" item="item" open="(" separator=",">
  920. #{item}
  921. </foreach>
  922. </if>
  923. <if test="specially == 0 ">
  924. and a.split_status in (0,2)
  925. </if>
  926. <if test="orderNo != null">
  927. and a.order_no= #{orderNo,jdbcType=VARCHAR}
  928. </if>
  929. <if test="approval ==0">
  930. and e.approval = 0
  931. </if>
  932. <if test="approval ==1">
  933. and e.approval = 1
  934. </if>
  935. <if test="approval ==2">
  936. and e.approval &gt; 1
  937. </if>
  938. <if test="cid != null">
  939. and c.id = #{cid}
  940. </if>
  941. <if test="outsourceStatus !=null">
  942. and l.refund_status = #{outsourceStatus,jdbcType=INTEGER}
  943. </if>
  944. <if test="contractNo != null">
  945. and e.contract_no like CONCAT('%',#{contractNo,jdbcType=VARCHAR},'%')
  946. </if>
  947. <if test="projectStatus != null">
  948. and a.project_status = #{projectStatus,jdbcType=INTEGER}
  949. </if>
  950. <if test="deps != null">
  951. and e.order_dep in
  952. <foreach close=")" collection="deps" item="depId" open="(" separator=",">
  953. #{depId}
  954. </foreach>
  955. </if>
  956. <if test="name != null">
  957. and f.nickname like CONCAT('%',#{name,jdbcType=VARCHAR},'%')
  958. </if>
  959. <if test="orderNo != null">
  960. and a.order_no= #{orderNo,jdbcType=VARCHAR}
  961. </if>
  962. <if test="taskId != null">
  963. and (a.id= #{taskId,jdbcType=VARCHAR} or a.split_super= #{taskId,jdbcType=VARCHAR})
  964. </if>
  965. <if test="taskStatus != null">
  966. and a.task_status= #{taskStatus,jdbcType=INTEGER}
  967. </if>
  968. <if test="adminName != null">
  969. and a.receiver_name like CONCAT('%', #{adminName,jdbcType=VARCHAR},'%')
  970. </if>
  971. <if test="startTime != null and endTime != null">
  972. and e.sign_time between #{startTime} and #{endTime}
  973. </if>
  974. </select>
  975. <select id="getOrderTaskDetail" resultType="com.goafanti.order.bo.TOrderTaskDetailBo">
  976. select
  977. a.id,a.commodity_name as taskName,a.order_no as orderNo,c.sort ,c.cname,d.name as receiverName,a.task_comment as taskComment,a.project_status as projectStatus,
  978. a.task_status as taskStatus,e.contacts,a.attachment_url as attachmentUrl,a.outsource_name outsourceName, f.nickname as userName,a.set_up_amount as setUpAmount,
  979. g.name as salesmanName,date_format(a.task_start_time,'%Y-%m-%d') as startDate,a.retrieve_content as retrieveContent, a.arrival_money as arrivalMoney,
  980. a.certificate_number as certificateNumber, a.status,a.form_retrieve as formRetrieve, a.task_refund as taskRefund,a.task_receiver taskReceiver,b.patent_transfer patentTransfer,
  981. a.refund_content as refundContent, a.declare_user as declareUser, a.declare_pwd as declarePwd,e.contract_no as contractNo,e.contacts ,b.`type` bpType,
  982. date_format(a.task_end_time,'%Y-%m-%d') as endDate,date_format(a.accept_time,'%Y-%m-%d') as acceptDate,h.name as depName,e.contact_mobile as contactMobile ,
  983. date_format(a.review_time,'%Y-%m-%d') as reviewDate,date_format(a.publicity_time,'%Y-%m-%d') as publicityDate,a.outsource_price outsourcePrice,
  984. date_format(a.licence_time,'%Y-%m-%d') as licenceDate,date_format(a.task_distribution_time,'%Y-%m-%d %H:%i:%S') as taskDate,e.legal_person as legalPerson,
  985. e.legal_person_tel as legalPersonTel, a.split_status splitStatus, a.split_super splitSuper, a.split_id splitId,a.declaration_batch declarationBatch,a.patent_type patentType,
  986. a.if_certification_fee ifCertificationFee , a.certification_corporate certificationCorporate ,a.certification_fee certificationFee ,a.time_record timeRecord,
  987. a.cost_reduction costReduction, a.official_cost officialCost,a.set_up_status setUpStatus ,date_format(a.set_up_time,'%Y-%m-%d') setUpTime ,a.high_tech_status highTechStatus ,
  988. a.spot_check_status spotCheckStatus , a.special_comment specialComment ,ttm.certificates_count certificatesCount ,ttm.reject_count rejectCount ,a.check_status checkStatus,
  989. ttm.authorize_count authorizeCount ,ttm.end_count endCount,ttm.accept_count acceptCount,a.commodity_price commodityPrice,a.commodity_quantity commodityQuantity
  990. from t_order_task a left join business_project b on a.commodity_id=b.id left join business_category c on b.cid=c.id
  991. left join admin d on a.task_receiver=d.id left join t_order_new e on a.order_no=e.order_no
  992. left join department h on e.order_dep=h.id left join user f on e.buyer_id=f.id LEFT JOIN t_task_mid ttm ON a.id=ttm.tid
  993. left join admin g on e.salesman_id=g.id
  994. where a.id= #{id,jdbcType=VARCHAR}
  995. </select>
  996. <select id="selectBySuperId" resultType="com.goafanti.common.model.TOrderTask">
  997. select super_id as superId,min(task_status) as taskStatus,min(project_status) as projectStatus,max(main) as main from t_order_task
  998. where super_id = #{superId,jdbcType=VARCHAR} group by super_id
  999. </select>
  1000. <select id="selectTaskHoursListByPage" resultType="com.goafanti.order.bo.TOrderTaskListBo">
  1001. select a.id,a.commodity_name as taskName,a.order_no as orderNo,c.cname,a.receiver_name as receiverName,dep.name as depName,a.project_status projectStatus,
  1002. a.task_status as taskStatus,f.nickname as userName,ifnull(g.hours,0) as hours,a.commodity_quantity as commodityQuantity,a.commodity_price commodityPrice,
  1003. e.contract_no as contractNo,date_format(e.create_time,'%Y-%m-%d %H:%i:%S')as creteTime,date_format(e.sign_time,'%Y-%m-%d')as signTime,a.outsource,
  1004. date_format(a.task_distribution_time,'%Y-%m-%d %H:%i:%S')taskDate, date_format(a.task_end_time,'%Y-%m-%d')taskEndTime,tm.salesman_name salesmanName,
  1005. a.split_status splitStatus, a.split_super splitSuper, a.split_id splitId,ifnull(ttm.cost_amount,0) costAmount,ifnull(ttm.party_amount,0) partyAmount
  1006. from t_order_task a left join business_project b on a.commodity_id=b.id left join business_category c on b.cid=c.id
  1007. left join t_order_new e on a.order_no=e.order_no left join department dep on e.order_dep=dep.id
  1008. left join user f on e.buyer_id=f.id left join (select tid,sum(hours)hours from task_hours_count group by tid) g on a.id=g.tid
  1009. left join t_order_mid tm on a.order_no=tm.order_no left join t_task_mid ttm on a.id=ttm.tid
  1010. where e.delete_sign =0 and a.super_id is null and a.split_status in(0,2)
  1011. <if test="shiroType == 1 and aid !=null">
  1012. and tm.finance_id= #{aid,jdbcType=VARCHAR}
  1013. </if>
  1014. <if test="shiroType == 2 and aid !=null">
  1015. and tm.finance_id in (select id from admin where superior_id= #{aid,jdbcType=VARCHAR})
  1016. </if>
  1017. <if test="name != null">
  1018. and f.nickname like CONCAT('%',#{name,jdbcType=VARCHAR},'%')
  1019. </if>
  1020. <if test="cid != null">
  1021. and b.cid = #{cid,jdbcType=VARCHAR}
  1022. </if>
  1023. <if test="outsource != null">
  1024. and a.outsource = #{outsource,jdbcType=INTEGER}
  1025. </if>
  1026. <if test="depId != null">
  1027. and e.order_dep = #{depId,jdbcType=VARCHAR}
  1028. </if>
  1029. <if test="contractNo != null">
  1030. and e.contract_no like CONCAT('%',#{contractNo,jdbcType=VARCHAR},'%')
  1031. </if>
  1032. <if test="orderNo != null">
  1033. and e.order_no like CONCAT('%',#{orderNo,jdbcType=VARCHAR},'%')
  1034. </if>
  1035. <if test="taskId != null">
  1036. and a.id= #{taskId,jdbcType=VARCHAR}
  1037. </if>
  1038. <if test="starTime !=null and endTime !=null">
  1039. and e.sign_time between #{starTime,jdbcType=VARCHAR} and #{endTime,jdbcType=VARCHAR}
  1040. </if>
  1041. order by a.task_start_time desc,e.create_time desc
  1042. <if test="page_sql!=null">
  1043. ${page_sql}
  1044. </if>
  1045. </select>
  1046. <select id="selectTaskHoursListCount" resultType="java.lang.Integer">
  1047. select count(*) from t_order_task a left join business_project b on a.commodity_id=b.id left join business_category c on b.cid=c.id
  1048. left join t_order_new e on a.order_no=e.order_no left join user f on e.buyer_id=f.id left join t_order_mid tm on a.order_no=tm.order_no
  1049. where e.delete_sign =0 and a.super_id is null and a.split_status in(0,2)
  1050. <if test="shiroType == 1 and aid !=null">
  1051. and tm.finance_id= #{aid,jdbcType=VARCHAR}
  1052. </if>
  1053. <if test="shiroType == 2 and aid !=null">
  1054. and tm.finance_id in (select id from admin where superior_id= #{aid,jdbcType=VARCHAR})
  1055. </if>
  1056. <if test="name != null">
  1057. and f.nickname like CONCAT('%',#{name,jdbcType=VARCHAR},'%')
  1058. </if>
  1059. <if test="outsource != null">
  1060. and a.outsource = #{outsource,jdbcType=INTEGER}
  1061. </if>
  1062. <if test="cid != null">
  1063. and b.cid = #{cid,jdbcType=VARCHAR}
  1064. </if>
  1065. <if test="depId != null">
  1066. and e.order_dep = #{depId,jdbcType=VARCHAR}
  1067. </if>
  1068. <if test="contractNo != null">
  1069. and e.contract_no like CONCAT('%',#{contractNo,jdbcType=VARCHAR},'%')
  1070. </if>
  1071. <if test="orderNo != null">
  1072. and e.order_no like CONCAT('%',#{orderNo,jdbcType=VARCHAR},'%')
  1073. </if>
  1074. <if test="taskId != null">
  1075. and a.id= #{taskId,jdbcType=VARCHAR}
  1076. </if>
  1077. <if test="starTime !=null and endTime !=null">
  1078. and e.sign_time between #{starTime,jdbcType=VARCHAR} and #{endTime,jdbcType=VARCHAR}
  1079. </if>
  1080. </select>
  1081. <select id="selectTaskListByPage" resultType="com.goafanti.order.bo.TOrderTaskListBo">
  1082. select a.id,a.commodity_name as taskName,a.order_no as orderNo,c.cname,d.name as receiverName,
  1083. a.project_status as projectStatus,a.task_status as taskStatus,date_format(a.task_distribution_time,'%Y-%m-%d') as taskDate,
  1084. a.commodity_quantity as commodityQuantity,f.nickname as userName,h.name as depName,ifnull(i.alreadyNumber,0)as alreadyNumber,
  1085. a.split_status splitStatus,a.split_super splitSuper, a.split_id splitId
  1086. from (select task_id from t_task_log a where task_receiver=#{aid ,jdbcType=VARCHAR} UNION select task_id from t_task_log a
  1087. where task_allocator=#{aid ,jdbcType=VARCHAR}) x left join t_order_task a on x.task_id=a.id
  1088. left join business_project b on a.commodity_id=b.id left join business_category c on b.cid=c.id
  1089. left join admin d on a.task_receiver=d.id left join t_order_new e on a.order_no=e.order_no
  1090. left join user f on e.buyer_id=f.id left join department h on e.order_dep=h.id
  1091. left join (select task_id , sum(already_number) as alreadyNumber from task_progress group by task_id) i on a.id=i.task_id
  1092. where e.delete_sign in(0,2,3)
  1093. <if test="orderNo != null">
  1094. and a.order_no= #{orderNo,jdbcType=VARCHAR}
  1095. </if>
  1096. <if test="name != null">
  1097. and f.nickname like CONCAT('%',#{name,jdbcType=VARCHAR},'%')
  1098. </if>
  1099. <if test="orderNo != null">
  1100. and a.order_no= #{orderNo,jdbcType=VARCHAR}
  1101. </if>
  1102. <if test="depId != null">
  1103. and e.order_dep= #{depId ,jdbcType=VARCHAR}
  1104. </if>
  1105. <if test="taskId != null">
  1106. and (a.id= #{taskId,jdbcType=VARCHAR} or a.split_super= #{taskId,jdbcType=VARCHAR})
  1107. </if>
  1108. <if test="taskStatus != null">
  1109. and a.task_status= #{taskStatus,jdbcType=INTEGER}
  1110. </if>
  1111. <if test="adminName != null">
  1112. and d.name like CONCAT('%', #{adminName,jdbcType=VARCHAR},'%')
  1113. </if>
  1114. order by a.task_distribution_time desc
  1115. <if test="page_sql!=null">
  1116. ${page_sql}
  1117. </if>
  1118. </select>
  1119. <select id="selectTaskListCount" resultType="java.lang.Integer">
  1120. select count(*)
  1121. from (select task_id from t_task_log a where task_receiver=#{aid ,jdbcType=VARCHAR} UNION select task_id from t_task_log a
  1122. where task_allocator=#{aid ,jdbcType=VARCHAR}) x left join t_order_task a on x.task_id=a.id
  1123. left join business_project b on a.commodity_id=b.id
  1124. left join business_category c on b.cid=c.id
  1125. left join admin d on a.task_receiver=d.id
  1126. left join t_order_new e on a.order_no=e.order_no
  1127. left join user f on e.buyer_id=f.id
  1128. left join department h on e.order_dep=h.id
  1129. left join (select task_id , sum(already_number) as alreadyNumber from task_progress group by task_id) i on a.id=i.task_id
  1130. where e.delete_sign in(0,2,3)
  1131. <if test="orderNo != null">
  1132. and a.order_no= #{orderNo,jdbcType=VARCHAR}
  1133. </if>
  1134. <if test="name != null">
  1135. and f.nickname like CONCAT('%',#{name,jdbcType=VARCHAR},'%')
  1136. </if>
  1137. <if test="depId != null">
  1138. and e.order_dep= #{depId ,jdbcType=VARCHAR}
  1139. </if>
  1140. <if test="orderNo != null">
  1141. and a.order_no= #{orderNo,jdbcType=VARCHAR}
  1142. </if>
  1143. <if test="taskId != null">
  1144. and (a.id= #{taskId,jdbcType=VARCHAR} or a.split_super= #{taskId,jdbcType=VARCHAR})
  1145. </if>
  1146. <if test="taskStatus != null">
  1147. and a.task_status= #{taskStatus,jdbcType=INTEGER}
  1148. </if>
  1149. <if test="adminName != null">
  1150. and d.name like CONCAT('%', #{adminName,jdbcType=VARCHAR},'%')
  1151. </if>
  1152. </select>
  1153. <!-- 根据订单编号获得所有的任务负责人 -->
  1154. <select id="getReceiverByOid" resultType="com.goafanti.order.bo.TOrderTaskBo">
  1155. select distinct task_receiver, a.name, a.email, t.id, t.project_status from t_order_task t
  1156. inner join admin a on t.task_receiver = a.id
  1157. where order_no = #{orderNo,jdbcType=VARCHAR} and task_status &gt; 0 and super_id is null
  1158. </select>
  1159. <update id="updateDimissionTransfer" parameterType="java.lang.String">
  1160. update t_order_task set task_allocator= #{aid,jdbcType=VARCHAR},task_receiver= #{transferId,jdbcType=VARCHAR}
  1161. <if test="type==0">
  1162. ,consultant_id=#{transferId,jdbcType=VARCHAR}
  1163. </if>
  1164. <if test="type==1">
  1165. ,manager_id=#{transferId,jdbcType=VARCHAR}
  1166. </if>
  1167. <if test="type==3">
  1168. ,consultant_id= null
  1169. </if>
  1170. <if test="type==1">
  1171. ,manager_id= null
  1172. </if>
  1173. where task_receiver=#{aid,jdbcType=VARCHAR}
  1174. </update>
  1175. <select id="selectEstimateCost" resultType="java.lang.String">
  1176. select ifnull(sum(a.commodity_quantity * ifnull(b.price,0)),0) from t_order_task a
  1177. left join business_project b on a.commodity_id=b.id
  1178. where order_no= #{orderNo}
  1179. </select>
  1180. <select id="listNameByDepAndName" resultType="java.lang.String">
  1181. select
  1182. <if test="type ==0">
  1183. consultant_id
  1184. </if>
  1185. <if test="type ==1">
  1186. manager_id
  1187. </if>
  1188. from t_order_task
  1189. where order_no= #{orderNo}
  1190. group by
  1191. <if test="type ==0">
  1192. consultant_id
  1193. </if>
  1194. <if test="type ==1">
  1195. manager_id
  1196. </if>
  1197. </select>
  1198. <select id="splitProjectList" resultType="com.goafanti.order.bo.TOrderTaskListBo">
  1199. select a.id,a.commodity_name as taskName,a.order_no as orderNo,c.cname,d.name as receiverName,a.project_status as projectStatus,d.contact_mobile receiverMobile,
  1200. e.contract_no contractNo,a.task_receiver taskReceiver, a.task_status as taskStatus,date_format(a.task_distribution_time,'%Y-%m-%d') as taskDate,
  1201. a.commodity_quantity as commodityQuantity,e.approval,l.refund_status outsourceStatus, ifnull(i.alreadyNumber,0) as alreadyNumber,a.task_comment taskComment ,
  1202. f.nickname as userName,h.name as depName, j.name as outsourceName ,ifnull(k.hours,0) hours,a.split_status splitStatus,a.split_super splitSuper,a.member_type memberType,
  1203. date_format(a.split_time,'%Y-%m-%d %H:%i:%S') splitTimes,ad.name splitAname,a.split_id splitId,a.patent_type patentType,a.picture_url pictureUrl,
  1204. ttm.service_life serviceLife,ttm.service_year serviceYear ,ttm.year_sum yearSum ,ttm.contract_term contractTerm,a.process_status processStatus
  1205. from t_order_task a left join business_project b on a.commodity_id=b.id left join business_category c on b.cid=c.id
  1206. left join admin d on a.task_receiver=d.id left join t_order_new e on a.order_no=e.order_no left join user f on e.buyer_id=f.id
  1207. left join department h on e.order_dep=h.id left join (select task_id , sum(already_number) as alreadyNumber
  1208. from task_progress group by task_id) i on a.id=i.task_id left join (select order_no,max(name)as name
  1209. from outsource_organization group by order_no) j on a.order_no=j.order_no left join task_hours_count k on a.id=k.tid and a.task_receiver=k.aid
  1210. left join t_order_outsource l on a.id=l.tid left join admin ad on ad.id=a.split_aid left join t_task_member ttm on a.id=ttm.tid
  1211. where e.order_status in (0,1,2,3,4,5)
  1212. and split_status =2 and a.split_super= #{tid}
  1213. <if test="type == 1">
  1214. and a.process_status in(0,3)
  1215. </if>
  1216. order by split_id
  1217. </select>
  1218. <select id="selectByidGetCname" resultType="java.lang.String">
  1219. select b.cname from business_project a left join business_category b on a.cid =b.id
  1220. where a.id= #{pid}
  1221. </select>
  1222. <update id="updateByOutsourceToOrderNo">
  1223. update t_order_task set outsource= #{type} where order_no= #{orderNo}
  1224. </update>
  1225. <select id="getLockId" resultType="java.lang.String">
  1226. select id from user_lock_release a left join (select commodity_id from t_order_task
  1227. where order_no = #{orderNo} GROUP by commodity_id ) b on a.business_project_id =b.commodity_id
  1228. where a.`type` =1 and a.aid = #{aid} and a.uid = #{uid}
  1229. </select>
  1230. <select id="selectProjectStatisticsListByPage" resultType="com.goafanti.order.bo.OutProjectStatistics">
  1231. select date_format( a.task_distribution_time, '%Y-%m-%d %H:%i:%S' ) distributionTime ,d.name province ,c.name depName,e.salesman_name salesmanName,
  1232. b.contract_no contractNo ,b.order_no orderNo ,e.buyer_name userName,bc.cname ,a.commodity_name pname,ta.name techName,td.name techDepName,
  1233. a.project_status projectStatus,a.id,b.order_remarks orderRemarks,
  1234. a.set_up_status setUpStatus , date_format( a.set_up_time , '%Y-%m-%d' ) setUpTime ,a.spot_check_status spotCheckStatus ,b.contact_mobile contactMobile ,
  1235. b.legal_person_tel legalPersonTel , a.certificate_number certificateNumber,a.declaration_batch declarationBatch,
  1236. date_format(a.licence_time, '%Y-%m-%d' ) licenceTime,
  1237. a.commodity_quantity commodityQuantity ,ttm.certificates_count certificatesCount,ttm.urgent_day urgentDay ,ttm.if_material ifMaterial,
  1238. date_format(tp.licence_time, '%Y-%m-%d' ) licenceTime,
  1239. a.certificate_number certificateNumber,ttm.cost_amount costAmount ,
  1240. (a.commodity_price-ttm.cost_amount)profit,
  1241. ttm.certificates_count certificatesCount,a.high_tech_status highTechStatus,
  1242. tp.patent_name patentName ,tp.patent_no patentNo ,date_format(tp.accept_time, '%Y-%m-%d ' ) acceptTime ,
  1243. date_format(tp.licence_time, '%Y-%m-%d' ) licenceTime ,date_format(tp.authorize_time, '%Y-%m-%d ' ) authorizeTime,
  1244. ttm.reject_count rejectCount ,ttm.cost_amount costAmount ,(a.commodity_price-ttm.cost_amount)profit,
  1245. tm.service_life serviceLife,tm.service_year serviceyear, tm.year_sum yearsum,tm.contract_term contractTerm,
  1246. a.commodity_quantity commodityQuantity , a.commodity_price commodityPrice ,a.special_comment specialComment,a.task_comment taskComment
  1247. from t_order_task a left join t_order_new b on a.order_no =b.order_no left join department c on b.order_dep =c.id left join district_glossory d on c.province=d.id
  1248. left join task_progress tp on a.id=tp.task_id
  1249. left join t_task_member tm on a.id=tm.tid
  1250. left join t_order_mid e on b.order_no =e.order_no left join business_project bp on a.commodity_id =bp.id left join business_category bc on bp.cid =bc.id
  1251. left join t_task_mid ttm on a.id=ttm.tid left join admin ta on a.task_receiver =ta.id left join department td on ta.department_id =td.id
  1252. <if test="screen ==6">
  1253. right join (select tid ,accept_count sls from t_task_mid where accept_count &gt; 0)tj on a.id=tj.tid
  1254. </if>
  1255. <if test="screen ==7">
  1256. right join (select tid ,end_count wjs from t_task_mid where end_count &gt; 0)tj on a.id=tj.tid
  1257. </if>
  1258. <if test="screen ==8">
  1259. right join (select tid ,authorize_count sqs from t_task_mid where authorize_count &gt; 0)tj on a.id=tj.tid
  1260. </if>
  1261. <if test="screen ==9">
  1262. right join (select tid ,reject_count bhs from t_task_mid where reject_count &gt; 0)tj on a.id=tj.tid
  1263. </if>
  1264. <if test="screen ==10">
  1265. right join (select tid ,certificates_count xzs from t_task_mid where certificates_count &gt; 0)tj on a.id=tj.tid
  1266. </if>
  1267. <if test="screen ==11">
  1268. right join (select tid ,apply_count sqs,reject_count bhs,certificates_count xzs from t_task_mid
  1269. where apply_count &gt; 0)tj on a.id=tj.tid
  1270. </if>
  1271. where a.split_status in (0,2) and b. delete_sign in (0,2)
  1272. <!-- 筛选项 0库存 1派单 2完成 3立项 4抽查 5未通过 6受理 7完结 8授权 9驳回 10下证 11申请 -->
  1273. <if test="screen ==0">
  1274. and a.project_status in(0,1,2,3)
  1275. </if>
  1276. <if test="screen ==2">
  1277. and a.project_status &gt; 3
  1278. </if>
  1279. <if test="screen ==3">
  1280. and a.set_up_status =1
  1281. </if>
  1282. <if test="screen ==4">
  1283. and a.spot_check_status in (1,2)
  1284. </if>
  1285. <if test="screen ==5">
  1286. and a.spot_check_status =1
  1287. </if>
  1288. <if test="screen ==12">
  1289. and a.publicity_time is not null
  1290. </if>
  1291. <if test="startDate != null and endDate != null">
  1292. and a.task_distribution_time between #{startDate} and #{endDate}
  1293. </if>
  1294. <if test="province !=null">
  1295. and c.province = #{province}
  1296. </if>
  1297. <if test="projectId !=null">
  1298. and a.commodity_id = #{projectId}
  1299. </if>
  1300. <if test="deps != null">
  1301. and b.order_dep in
  1302. <foreach close=")" collection="deps" item="dep" open="(" separator=",">
  1303. #{dep}
  1304. </foreach>
  1305. </if>
  1306. <if test="thchDeps != null">
  1307. and td.id in
  1308. <foreach close=")" collection="thchDeps" item="thchDep" open="(" separator=",">
  1309. #{thchDep}
  1310. </foreach>
  1311. </if>
  1312. <if test="projectStatus !=null">
  1313. and bp.cid= #{projectStatus}
  1314. </if>
  1315. <if test="projectType !=null">
  1316. and bp.type= #{projectType}
  1317. </if>
  1318. <if test="orderNo !=null">
  1319. and b.order_no = #{orderNo}
  1320. </if>
  1321. <if test="contractNo !=null">
  1322. and b.contract_no = #{contractNo}
  1323. </if>
  1324. <if test="userName !=null">
  1325. and e.buyer_name like concat('%', #{userName},'%')
  1326. </if>
  1327. <if test="declarationBatch !=null">
  1328. and a.declaration_batch = #{declarationBatch}
  1329. </if>
  1330. <if test="projectSituation !=null">
  1331. and a.status = #{projectSituation}
  1332. </if>
  1333. <if test=" projectAmount !=null and projectAmount != 9">
  1334. and a.commodity_price &gt;= #{amountStart} and a.commodity_price &lt; #{amountEnd}
  1335. </if>
  1336. <if test=" projectAmount == 9">
  1337. and a.commodity_price &gt;= #{amountStart}
  1338. </if>
  1339. <if test="page_sql!=null">
  1340. ${page_sql}
  1341. </if>
  1342. </select>
  1343. <select id="selectProjectStatisticsCount" resultType="java.lang.Integer">
  1344. select count(*)
  1345. from t_order_task a left join t_order_new b on a.order_no =b.order_no
  1346. <if test="province !=null">
  1347. left join department c on b.order_dep =c.id
  1348. </if>
  1349. <if test="userName !=null">
  1350. left join t_order_mid e on b.order_no =e.order_no
  1351. </if>
  1352. <if test="projectStatus !=null or projectType !=null">
  1353. left join business_project bp on a.commodity_id =bp.id
  1354. </if>
  1355. <if test="thchDeps !=null">
  1356. left join admin ta on a.task_receiver =ta.id
  1357. left join department td on ta.department_id =td.id
  1358. </if>
  1359. <if test="status==3 or status==4">
  1360. left join task_progress tp on a.id=tp.task_id
  1361. </if>
  1362. <if test="screen ==6">
  1363. right join (select tid ,accept_count sls from t_task_mid where accept_count &gt; 0)tj on a.id=tj.tid
  1364. </if>
  1365. <if test="screen ==7">
  1366. right join (select tid ,end_count wjs from t_task_mid where end_count &gt; 0)tj on a.id=tj.tid
  1367. </if>
  1368. <if test="screen ==8">
  1369. right join (select tid ,authorize_count sqs from t_task_mid where authorize_count &gt; 0)tj on a.id=tj.tid
  1370. </if>
  1371. <if test="screen ==9">
  1372. right join (select tid ,reject_count bhs from t_task_mid where reject_count &gt; 0)tj on a.id=tj.tid
  1373. </if>
  1374. <if test="screen ==10">
  1375. right join (select tid ,certificates_count xzs from t_task_mid where certificates_count &gt; 0)tj on a.id=tj.tid
  1376. </if>
  1377. <if test="screen ==11">
  1378. right join (select tid ,apply_count sqs,reject_count bhs,certificates_count xzs from t_task_mid
  1379. where apply_count &gt; 0)tj on a.id=tj.tid
  1380. </if>
  1381. where a.split_status in (0,2) and b. delete_sign in (0,2)
  1382. <!-- 筛选项 0库存 1派单 2完成 3立项 4抽查 5未通过 6受理 7完结 8授权 9驳回 10下证 11申请 -->
  1383. <if test="screen ==0">
  1384. and a.project_status in(0,1,2,3)
  1385. </if>
  1386. <if test="screen ==2">
  1387. and a.project_status &gt; 3
  1388. </if>
  1389. <if test="screen ==3">
  1390. and a.set_up_status =1
  1391. </if>
  1392. <if test="screen ==4">
  1393. and a.spot_check_status in (1,2)
  1394. </if>
  1395. <if test="screen ==5">
  1396. and a.spot_check_status =1
  1397. </if>
  1398. <if test="screen ==12">
  1399. and a.publicity_time is not null
  1400. </if>
  1401. <if test="startDate != null and endDate != null">
  1402. and a.task_distribution_time between #{startDate} and #{endDate}
  1403. </if>
  1404. <if test="province !=null">
  1405. and c.province = #{province}
  1406. </if>
  1407. <if test="projectId !=null">
  1408. and a.commodity_id = #{projectId}
  1409. </if>
  1410. <if test="deps != null">
  1411. and b.order_dep in
  1412. <foreach close=")" collection="deps" item="dep" open="(" separator=",">
  1413. #{dep}
  1414. </foreach>
  1415. </if>
  1416. <if test="thchDeps != null">
  1417. and td.id in
  1418. <foreach close=")" collection="thchDeps" item="thchDep" open="(" separator=",">
  1419. #{thchDep}
  1420. </foreach>
  1421. </if>
  1422. <if test="projectStatus !=null">
  1423. and bp.cid= #{projectStatus}
  1424. </if>
  1425. <if test="projectType !=null">
  1426. and bp.type= #{projectType}
  1427. </if>
  1428. <if test="orderNo !=null">
  1429. and b.order_no = #{orderNo}
  1430. </if>
  1431. <if test="contractNo !=null">
  1432. and b.contract_no = #{contractNo}
  1433. </if>
  1434. <if test="userName !=null">
  1435. and e.buyer_name like concat('%', #{userName},'%')
  1436. </if>
  1437. <if test="declarationBatch !=null">
  1438. and a.declaration_batch = #{declarationBatch}
  1439. </if>
  1440. <if test="projectSituation !=null">
  1441. and a.status = #{projectSituation}
  1442. </if>
  1443. <if test=" projectAmount !=null and projectAmount != 9">
  1444. and a.commodity_price &gt;= #{amountStart} and a.commodity_price &lt; #{amountEnd}
  1445. </if>
  1446. <if test=" projectAmount == 9">
  1447. and a.commodity_price &gt;= #{amountStart}
  1448. </if>
  1449. </select>
  1450. <select id="selectProvincialStatisticsListByPage" resultType="com.goafanti.order.bo.OutProvincialStatistics">
  1451. select z.cid bpId, bc.cname projectStatus,z.dispatch_province province,dg.name provinceName,
  1452. z.duty_dep thchDepId,d.name thchDepName,z.distributeCount,z.stockCount,z.completeCount,z.publicityCount,
  1453. z.setUpCount,z.spotCheckCount,z.failCount,z.certificatesCount,z.acceptCount,z.endCount,z.authorizeCount,
  1454. z.rejectCount,z.applyCount,z.amountCount,z.costAmount,z.profit
  1455. from ( select y.dispatch_province, y.cid, y.duty_dep, sum(y.dispatch_count)distributeCount,
  1456. sum(y.stock_count)stockCount, sum(y.complete_count)completeCount,sum(y.promulgate_count)publicityCount,
  1457. sum(y.set_up_count)setUpCount,sum(y.spot_check_count)spotCheckCount,sum(y.fail_count)failCount,
  1458. sum(y.certificates_count)certificatesCount,sum(y.accept_count)acceptCount,sum(y.end_count)endCount,
  1459. sum(y.authorize_count)authorizeCount,sum(y.reject_count)rejectCount, sum(y.apply_count)applyCount,
  1460. sum(y.commodity_price)amountCount,sum(y.cost_amount)costAmount, sum(y.commodity_price-y.cost_amount)profit
  1461. from(select b.dispatch_province, bp.cid, b.duty_dep,
  1462. b.stock_count,b.dispatch_count,b.promulgate_count, b.complete_count,b.set_up_count ,b.spot_check_count ,
  1463. b.fail_count ,b.certificates_count, b.accept_count,b.end_count,b.authorize_count,b.reject_count,b.apply_count,
  1464. a.commodity_price ,b.cost_amount, a.task_distribution_time from t_order_task a
  1465. left join t_task_mid b on a.id=b.tid left join business_project bp on a.commodity_id =bp.id
  1466. left join t_order_new ton on a.order_no =ton .order_no
  1467. where a.task_status in(1,2,3) and ton.delete_sign in (0,2)
  1468. <if test="projectId !=null">
  1469. and a.commodity_id = #{projectId}
  1470. </if>
  1471. <if test="province !=null">
  1472. and b.dispatch_province = #{province}
  1473. </if>
  1474. <if test="thchDeps !=null">
  1475. and b.duty_dep in
  1476. <foreach close=")" collection="thchDeps" item="depId" open="(" separator=",">
  1477. #{depId}
  1478. </foreach>
  1479. </if>
  1480. <if test="projectType !=null">
  1481. and bp.`type` = #{projectType}
  1482. </if>
  1483. <if test="projectStatus !=null">
  1484. and bp.cid= #{projectStatus}
  1485. </if>
  1486. <if test="startDate != null and endDate != null">
  1487. and a.task_distribution_time between #{startDate} and #{endDate}
  1488. </if>
  1489. )y
  1490. group by y.dispatch_province, y.cid, y.duty_dep )z
  1491. left join business_category bc on z.cid=bc.id left join district_glossory dg on z.dispatch_province=dg.id
  1492. left join department d on z.duty_dep=d.id
  1493. <if test="page_sql!=null">
  1494. ${page_sql}
  1495. </if>
  1496. </select>
  1497. <select id="selectProvincialStatisticsCount" resultType="java.lang.Integer">
  1498. select count(*)
  1499. from(select y.dispatch_province from (select bp.cid,
  1500. b.dispatch_province,b.duty_dep,a.cname,b.stock_count,b.dispatch_count,b.promulgate_count,
  1501. b.complete_count,b.set_up_count ,b.spot_check_count ,b.fail_count ,b.certificates_count,
  1502. b.accept_count,b.end_count,b.authorize_count,b.reject_count,b.apply_count,
  1503. a.commodity_price ,b.cost_amount, a.task_distribution_time
  1504. from t_order_task a
  1505. left join t_task_mid b on a.id=b.tid
  1506. left join business_project bp on a.commodity_id =bp.id
  1507. left join t_order_new ton on a.order_no =ton .order_no
  1508. where a.task_status in(1,2,3) and ton.delete_sign in (0,2)
  1509. <if test="projectId !=null">
  1510. and a.commodity_id = #{projectId}
  1511. </if>
  1512. <if test="province !=null">
  1513. and b.dispatch_province = #{province}
  1514. </if>
  1515. <if test="thchDeps !=null">
  1516. and b.duty_dep in
  1517. <foreach close=")" collection="thchDeps" item="depId" open="(" separator=",">
  1518. #{depId}
  1519. </foreach>
  1520. </if>
  1521. <if test="projectType !=null">
  1522. and bp.`type` = #{projectType}
  1523. </if>
  1524. <if test="projectStatus !=null">
  1525. and bp.cid= #{projectStatus}
  1526. </if>
  1527. <if test="startDate != null and endDate != null">
  1528. and a.task_distribution_time between #{startDate} and #{endDate}
  1529. </if>
  1530. )y group by y.dispatch_province, y.cid, y.duty_dep )x
  1531. </select>
  1532. <select id="managerSelectByPage" resultType="com.goafanti.order.bo.managerListBo">
  1533. select a.id,a.task_distribution_time taskDistributionTime ,tm.province_name provinceName,tm.dep_name depName,
  1534. tm.salesman_name salesmanName, b.contract_no contractNo ,b.order_no orderNo,tm.buyer_name UserName,a.cname ,
  1535. a.commodity_name commodityName,a.commodity_quantity commodityQuantity,dep.name techDepName,a.receiver_name techName,
  1536. a.project_status projectStatus ,a.commodity_price commodityPrice ,a.special_comment specialComment
  1537. from (select task_id from t_task_log a where task_receiver=#{aid}
  1538. UNION select task_id from t_task_log a where task_allocator=#{aid}) x
  1539. left join t_order_task a on x.task_id=a.id left join t_order_new b on a.order_no =b.order_no
  1540. left join t_order_mid tm on b.order_no=tm.order_no left join admin ad on a.task_receiver =ad.id
  1541. left join department dep on ad.department_id =dep.id left join business_project bp on a.commodity_id =bp.id
  1542. where 1=1
  1543. <if test="orderNo !=null">
  1544. and a.order_no = #{orderNo}
  1545. </if>
  1546. <if test="contractNo !=null">
  1547. and b.contract_no = #{contractNo}
  1548. </if>
  1549. <if test="name !=null">
  1550. and tm.buyer_name like CONCAT('%',#{name},'%')
  1551. </if>
  1552. <if test="cid !=null">
  1553. and bp.cid =#{cid}
  1554. </if>
  1555. <if test="projectType !=null">
  1556. and bp.`type` =#{projectType}
  1557. </if>
  1558. <if test="depId !=null">
  1559. and b.order_dep =#{depId}
  1560. </if>
  1561. <if test="techDepId !=null">
  1562. and ad.department_id =#{techDepId}
  1563. </if>
  1564. <if test="declarationBatch !=null">
  1565. and a.declaration_batch =#{declarationBatch}
  1566. </if>
  1567. <if test="commodityPrice !=null">
  1568. and a.commodity_price =#{commodityPrice}
  1569. </if>
  1570. <if test="startTime !=null and endTime !=null">
  1571. and a.task_distribution_time between #{startTime} and #{endTime}
  1572. </if>
  1573. <if test="page_sql!=null">
  1574. ${page_sql}
  1575. </if>
  1576. </select>
  1577. <select id="managerSelectCount" resultType="java.lang.Integer">
  1578. select count(*)
  1579. from (select task_id from t_task_log a where task_receiver= #{aid} UNION
  1580. select task_id from t_task_log a where task_allocator= #{aid}) x
  1581. left join t_order_task a on x.task_id=a.id left join t_order_new b on a.order_no =b.order_no
  1582. left join t_order_mid tm on b.order_no=tm.order_no left join admin ad on a.task_receiver =ad.id
  1583. left join department dep on ad.department_id =dep.id left join business_project bp on a.commodity_id =bp.id
  1584. where 1=1
  1585. <if test="orderNo !=null">
  1586. and a.order_no = #{orderNo}
  1587. </if>
  1588. <if test="contractNo !=null">
  1589. and b.contract_no = #{contractNo}
  1590. </if>
  1591. <if test="name !=null">
  1592. and tm.buyer_name like CONCAT('%',#{name},'%')
  1593. </if>
  1594. <if test="cid !=null">
  1595. and bp.cid =#{cid}
  1596. </if>
  1597. <if test="projectType !=null">
  1598. and bp.`type` =#{projectType}
  1599. </if>
  1600. <if test="depId !=null">
  1601. and b.order_dep =#{depId}
  1602. </if>
  1603. <if test="techDepId !=null">
  1604. and ad.department_id =#{techDepId}
  1605. </if>
  1606. <if test="declarationBatch !=null">
  1607. and a.declaration_batch =#{declarationBatch}
  1608. </if>
  1609. <if test="commodityPrice !=null">
  1610. and a.commodity_price =#{commodityPrice}
  1611. </if>
  1612. <if test="startTime !=null and endTime !=null">
  1613. and a.task_distribution_time between #{startTime} and #{endTime}
  1614. </if>
  1615. </select>
  1616. <resultMap id="userOrder" type="com.goafanti.common.bo.UserOrderTask">
  1617. <id column="orderNo" jdbcType="VARCHAR" property="orderNo" />
  1618. <collection ofType="com.goafanti.common.bo.UserTask" property="list">
  1619. <id column="id" jdbcType="VARCHAR" property="id" />
  1620. <result column="commodityName" jdbcType="VARCHAR" property="commodityName" />
  1621. </collection>
  1622. </resultMap>
  1623. <select id="selectUidByproject" resultMap="userOrder">
  1624. select a.order_no orderNo ,b.id,b.commodity_name commodityName from t_order_new a
  1625. left join t_order_task b on a.order_no =b.order_no
  1626. where a.buyer_id = #{uid}
  1627. </select>
  1628. <select id="selectProjectCheck" resultType="com.goafanti.order.bo.OutProjectCheck">
  1629. select a.id,a.commodity_name commodityName ,b.order_no orderNo,b.contract_no contractNo,a.commodity_quantity commodityQuantity,
  1630. c.buyer_name userName ,e.cname ,a.task_distribution_time taskDistributionTime,f.name depName ,a.check_status checkStatus ,
  1631. a.main ,a.commodity_price commodityPrice ,a.task_comment taskComment ,a.official_cost officialCost,a.cost_reduction costReduction,
  1632. a.patent_type patentType
  1633. from t_order_task a left join t_order_new b on a.order_no =b.order_no
  1634. left join t_order_mid c on a.order_no =c.order_no
  1635. left join business_project d on a.commodity_id =d.id
  1636. left join business_category e on d.cid =e.id
  1637. left join department f on b.order_dep =f.id
  1638. where check_status =1
  1639. <if test="aid !=null">
  1640. and b.salesman_id = #{aid}
  1641. </if>
  1642. <if test="name !=null">
  1643. and c.buyer_name like concat('%',#{name},'%')
  1644. </if>
  1645. <if test="orderNo !=null">
  1646. and a.order_no = #{orderNo}
  1647. </if>
  1648. <if test="contractNo !=null">
  1649. and b.contract_no = #{contractNo}
  1650. </if>
  1651. <if test="pname !=null">
  1652. and a.commodity_name like concat('%',#{pname},'%')
  1653. </if>
  1654. <if test="deps !=null">
  1655. and b.order_dep in
  1656. <foreach close=")" collection="deps" item="depId" open="(" separator=",">
  1657. #{depId}
  1658. </foreach>
  1659. </if>
  1660. <if test="page_sql!=null">
  1661. ${page_sql}
  1662. </if>
  1663. </select>
  1664. <select id="countProjectCheck" resultType="java.lang.Integer">
  1665. select count(*)
  1666. from t_order_task a left join t_order_new b on a.order_no =b.order_no
  1667. left join t_order_mid c on a.order_no =c.order_no
  1668. left join business_project d on a.commodity_id =d.id
  1669. left join business_category e on d.cid =e.id
  1670. left join department f on b.order_dep =f.id
  1671. where check_status =1
  1672. <if test="aid !=null">
  1673. and b.salesman_id = #{aid}
  1674. </if>
  1675. <if test="name !=null">
  1676. and c.buyer_name like concat('%',#{name},'%')
  1677. </if>
  1678. <if test="orderNo !=null">
  1679. and a.order_no = #{orderNo}
  1680. </if>
  1681. <if test="contractNo !=null">
  1682. and b.contract_no = #{contractNo}
  1683. </if>
  1684. <if test="pname !=null">
  1685. and a.commodity_name like concat('%',#{pname},'%')
  1686. </if>
  1687. <if test="deps !=null">
  1688. and b.order_dep in
  1689. <foreach close=")" collection="deps" item="depId" open="(" separator=",">
  1690. #{depId}
  1691. </foreach>
  1692. </if>
  1693. </select>
  1694. <update id="resstPayment">
  1695. update t_order_task a ,t_task_mid c
  1696. set c.party_amount =0,c.cost_amount =0
  1697. where a.id= #{id} and a.id=c.tid
  1698. </update>
  1699. <update id="updateAddCostAmount">
  1700. update t_task_mid
  1701. set cost_amount =cost_amount + #{cost}
  1702. where tid= #{tid}
  1703. </update>
  1704. <select id="selectAidByParam" resultType="com.goafanti.common.bo.OrderOperator">
  1705. select a.id tid,b.order_no orderNo ,b.salesman_id salesmanId,b.finance_id financeId ,a.task_receiver techId,
  1706. b.salesman_name salesmanName ,b.finance_name financeName ,d.name techName,b.buyer_name buyerName
  1707. from t_order_task a left join t_order_mid b on a.order_no=b.order_no
  1708. left join t_task_mid c on a.id =c.tid left join admin d on a.task_receiver=d.id
  1709. where 1=1
  1710. <if test="tid !=null">
  1711. and a.id= #{tid}
  1712. </if>
  1713. </select>
  1714. <select id="selectByTidGetDtails" resultType="com.goafanti.organization.bo.ProjectTypePuls">
  1715. select a.id,a.official_cost officialCost,a.cost_reduction costReduction ,a.commodity_quantity quantity ,a.patent_type patentType,b.patent_name_type projectType,
  1716. c.amount officialAmount,c.proportion85,b.patent_type outPatentType from t_order_task a left join t_order_outsource b on a.id=b.tid
  1717. left join official_fee_price c on a.patent_type =c.patent_type and b.patent_name_type =c.`type`
  1718. where a.id= #{tid}
  1719. </select>
  1720. <select id="highNewRetrialStatistics" resultType="com.goafanti.order.bo.OutHighNewRetrialStatistics">
  1721. select t1. province,dg.name provinceName ,t1.quantity,t1.pass,t1.notPass,ifnull(t1.signBacks,0) signBacks
  1722. from (SELECT e.province ,sum(1) quantity,sum(if(a.project_status=10,1,0))pass,sum(if(a.project_status != 10,1,0))notPass,
  1723. sum(ttm.high_new_retrial)signBacks
  1724. from t_order_task a left join business_project b on a.commodity_id =b.id left join t_task_mid ttm on a.id=ttm.tid
  1725. left join t_order_new c on a.order_no =c.order_no left join admin d on c.salesman_id =d.id
  1726. left join department e on d.department_id =e.id where b.`type` =5 and c.process_status >4 and c.delete_sign in (0,2)
  1727. <if test="depId!=null">
  1728. and e.id= #{depId}
  1729. </if>
  1730. <if test="startDate!=null and endDate!=null">
  1731. and c.sign_time between #{startDate} and #{endDate}
  1732. </if>
  1733. group by e.province )t1 left join district_glossory dg on t1.province=dg.id
  1734. </select>
  1735. <select id="getHighNewRetrial" resultType="java.lang.Integer">
  1736. select count(*) from t_order_new a left join t_order_new b on a.buyer_id =b.buyer_id
  1737. left join t_order_task c on b.order_no =c.order_no left join business_project d on c.commodity_id =d.id
  1738. where a.order_no =#{orderNo} and b.create_time &lt; a.create_time and d.`type` =5
  1739. </select>
  1740. <select id="highNewRetrialList" resultType="com.goafanti.order.bo.OutHighNewRetrialList">
  1741. select t1.province,dg.name provinceName,t1.salesman_id aid,t1.name name,t1.quantity,t1.pass,t1.notPass,t1.signBacks
  1742. from (SELECT e.province,c.salesman_id,d.name ,sum(1) quantity,sum(if(a.project_status=10,1,0))pass,
  1743. sum(if(a.project_status != 10,1,0))notPass, sum(ttm.high_new_retrial)signBacks
  1744. from t_order_task a left join business_project b on a.commodity_id =b.id left join t_task_mid ttm on a.id=ttm.tid
  1745. left join t_order_new c on a.order_no =c.order_no left join admin d on c.salesman_id =d.id
  1746. left join department e on d.department_id =e.id where b.`type` =5 and c.process_status >4 and c.delete_sign in (0,2)
  1747. <if test="province!=null">
  1748. and e.province= #{province}
  1749. </if>
  1750. <if test="depId!=null">
  1751. and e.id= #{depId}
  1752. </if>
  1753. <if test="startDate!=null and endDate!=null">
  1754. and c.sign_time between #{startDate} and #{endDate}
  1755. </if>
  1756. <if test="aid !=null">
  1757. and c.salesman_id = #{aid}
  1758. </if>
  1759. <if test="depId !=null">
  1760. and d.department_id = #{depId}
  1761. </if>
  1762. group by e.province ,c.salesman_id ,d.name )t1 left join district_glossory dg on t1.province=dg.id
  1763. order by
  1764. <if test="sort==0">
  1765. t1.pass
  1766. </if>
  1767. <if test="sort==1">
  1768. t1.notPass
  1769. </if>
  1770. desc
  1771. </select>
  1772. <select id="findMemberList" resultType="com.goafanti.order.bo.OutMemberList">
  1773. select a.id,b.contract_no contractNo,c.buyer_name userName,a.order_no orderNo,b.approval ,c.dep_name depName,
  1774. c.salesman_name salesmanName,c.finance_name financeName,a.commodity_name projectName,a.member_type memberType,
  1775. b.delete_sign deleteSign ,b.total_amount totalAmount ,b.sales_type salesType ,b.other,
  1776. a.process_status status,a.commodity_id commodityId,a.commodity_name commodityName,
  1777. a.commodity_quantity commodityQuantity,a.task_comment taskComment,a.picture_url pictureUrl,
  1778. e.service_life serviceLife ,e.service_year serviceYear,e.year_sum yearSum
  1779. from t_order_task a left join t_order_new b on a.order_no =b.order_no
  1780. left join t_order_mid c on a.order_no =c.order_no
  1781. left join t_task_member e on a.id=e.tid
  1782. <if test="shiroType ==2">
  1783. left join department d on b.order_dep =d.id
  1784. </if>
  1785. where b.delete_sign in (0,2) and b.approval in (0,1,2)
  1786. and a.process_status in (1,2,3,4)
  1787. <if test="shiroType ==1">
  1788. and b.salesman_id = #{aid}
  1789. </if>
  1790. <if test="shiroType ==2">
  1791. and d.finance_id = #{aid}
  1792. </if>
  1793. <if test="orderNo != null">
  1794. and a.order_no = #{orderNo}
  1795. </if>
  1796. <if test="userName != null">
  1797. and c.buyer_name like concat('%',#{userName},'%')
  1798. </if>
  1799. <if test="deps != null">
  1800. and b.order_dep in
  1801. <foreach close=")" collection="deps" item="dep" open="(" separator=",">
  1802. #{dep}
  1803. </foreach>
  1804. </if>
  1805. <if test="contractNo != null">
  1806. and b.contract_no =#{contractNo}
  1807. </if>
  1808. <if test="salesmanId != null">
  1809. and b.salesman_id =#{salesmanId}
  1810. </if>
  1811. <if test="projectName != null">
  1812. and a.commodity_name like concat('%',#{projectName},'%')
  1813. </if>
  1814. <if test="amountStatus == 0">
  1815. and b.total_amount &lt; 10
  1816. </if>
  1817. <if test="amountStatus == 1">
  1818. and b.total_amount between 10 and 20
  1819. </if>
  1820. <if test="amountStatus == 2">
  1821. and b.total_amount between 20 and 30
  1822. </if>
  1823. <if test="amountStatus == 3">
  1824. and b.total_amount between 30 and 40
  1825. </if>
  1826. <if test="amountStatus == 4">
  1827. and b.total_amount &gt; 40
  1828. </if>
  1829. <if test="approval != null and approval &lt; 3">
  1830. and b.approval = #{approval}
  1831. </if>
  1832. <if test="approval != null and approval ==4">
  1833. and b.approval in (1,2)
  1834. </if>
  1835. <if test="status != null and status !=5">
  1836. and a.process_status = #{status}
  1837. </if>
  1838. order by a.process_status
  1839. <if test="page_sql!=null">
  1840. ${page_sql}
  1841. </if>
  1842. </select>
  1843. <select id="findMemberCount" resultType="java.lang.Integer">
  1844. select count(*)
  1845. from t_order_task a left join t_order_new b on a.order_no =b.order_no
  1846. left join t_order_mid c on a.order_no =c.order_no
  1847. <if test="shiroType ==2">
  1848. left join department d on b.order_dep =d.id
  1849. </if>
  1850. where b.delete_sign in (0,2) and b.approval in (0,1,2)
  1851. and a.process_status in (1,2,3,4)
  1852. <if test="shiroType ==1">
  1853. and b.salesman_id = #{aid}
  1854. </if>
  1855. <if test="shiroType ==2">
  1856. and d.finance_id = #{aid}
  1857. </if>
  1858. <if test="orderNo != null">
  1859. and a.order_no = #{orderNo}
  1860. </if>
  1861. <if test="userName != null">
  1862. and c.buyer_name like concat('%',#{userName},'%')
  1863. </if>
  1864. <if test="deps != null">
  1865. and b.order_dep in
  1866. <foreach close=")" collection="deps" item="dep" open="(" separator=",">
  1867. #{dep}
  1868. </foreach>
  1869. </if>
  1870. <if test="contractNo != null">
  1871. and b.contract_no =#{contractNo}
  1872. </if>
  1873. <if test="salesmanId != null">
  1874. and b.salesman_id =#{salesmanId}
  1875. </if>
  1876. <if test="projectName != null">
  1877. and a.commodity_name like concat('%',#{projectName},'%')
  1878. </if>
  1879. <if test="amountStatus == 1">
  1880. and b.total_amount between 10 and 20
  1881. </if>
  1882. <if test="amountStatus == 2">
  1883. and b.total_amount between 20 and 30
  1884. </if>
  1885. <if test="amountStatus == 3">
  1886. and b.total_amount between 30 and 40
  1887. </if>
  1888. <if test="amountStatus == 4">
  1889. and b.total_amount &gt; 40
  1890. </if>
  1891. <if test="approval != null and approval &lt; 3">
  1892. and b.approval = #{approval}
  1893. </if>
  1894. <if test="approval != null and approval ==4">
  1895. and b.approval in (1,2)
  1896. </if>
  1897. <if test="status != null and status !=5">
  1898. and a.process_status = #{status}
  1899. </if>
  1900. </select>
  1901. <select id="selectByAid" resultType="com.goafanti.common.model.TChangeTask">
  1902. select b.id,b.cid from t_order_task a
  1903. left join t_change_task b on a.id=b.tid
  1904. left join new_order_change noc on b.cid =noc.id
  1905. where b.id is not null and noc.process_state &lt; 4 and noc.status in (0,1,2)
  1906. and a.task_receiver = #{aid}
  1907. </select>
  1908. <select id="getSplitCount" resultType="java.lang.Integer">
  1909. select count(*) from t_order_task
  1910. where split_super = #{tid}
  1911. </select>
  1912. </mapper>