TOrderTaskMapper.xml 85 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971
  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. ttm.last_year lastYear,ttm.last_year_capital lastYearCapital,ttm.last_year_income lastYearIncome
  793. 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
  794. 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
  795. left join business_project i on a.commodity_id=i.id left join business_category c on b.cid=c.id
  796. left join admin d on a.task_receiver=d.id left join t_task_member j on a.id =j.tid
  797. left join t_task_mid ttm on a.id=ttm.tid
  798. where a.super_id is null and a.split_status in(0,1)
  799. <if test="orderNo != null">
  800. and a.order_no= #{orderNo,jdbcType=VARCHAR}
  801. </if>
  802. <if test="type == 1">
  803. and a.process_status in(0,3)
  804. </if>
  805. order by a.id
  806. </select>
  807. <select id="selectOrderTaskAll" resultType="com.goafanti.order.bo.TOrderTaskBo">
  808. select a.id,e.contract_no contractNo,a.order_no as orderNo,h.nickname userName,f.name salesmanName,a.outsource_name outsourceName,a.outsource,
  809. a.outsource_price outsourcePrice,g.name depName,e.order_status orderStatus,d.name as contacts,d.contact_mobile as contactsMobile,a.main, c.cname,
  810. c.sort cSort,a.commodity_name as commodityName,a.commodity_quantity as commodityQuantity,i.price,a.certificate_number as certificateNumber,a.receiver_name receiverName,
  811. a.commodity_id as commodityId,a.manager_id managerId,a.consultant_id consultantId,a.project_status as projectStatus,a.set_up_amount setUpAmount,
  812. a.task_comment as taskComment ,a.commodity_price as commodityPrice, a.task_status as taskStatus, a.task_receiver as taskReceiver ,
  813. a.split_status splitStatus,a.split_super splitSuper,a.split_aid splitAid,a.split_time splitTime,a.patent_type patentType,ttm.contract_term contractTerm,
  814. a.picture_url pictureUrl, ttm.service_life serviceLife ,ttm.service_year serviceYear,ttm.year_sum yearSum,
  815. tm.last_year lastYear,tm.last_year_capital lastYearCapital,tm.last_year_income lastYearIncome
  816. from t_order_task a left join t_order_new e on a.order_no=e.order_no left join admin f on e.salesman_id=f.id
  817. left join department g on e.order_dep=g.id left join user h on e.buyer_id=h.id left join business_project i on a.commodity_id=i.id
  818. left join business_category c on i.cid=c.id left join admin d on a.task_receiver=d.id
  819. left join t_task_member ttm on a.id=ttm.tid left join t_task_mid tm on a.id=tm.tid
  820. where a.super_id is null and a.order_no= #{orderNo,jdbcType=VARCHAR}
  821. <if test="splitStatus !=null">
  822. <if test="splitStatus &lt; 3">
  823. and a.split_status= #{splitStatus}
  824. </if>
  825. <if test="splitStatus ==3">
  826. and a.split_status in(0,1)
  827. </if>
  828. <if test="splitStatus ==4">
  829. and a.split_status in(0,2)
  830. </if>
  831. </if>
  832. order by a.id
  833. </select>
  834. <select id="selectOrderTaskListByPage" resultType="com.goafanti.order.bo.TOrderTaskListBo">
  835. 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,
  836. 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,
  837. 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 ,
  838. 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 ,
  839. 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,
  840. date_format(e.create_time ,'%Y-%m-%d')creteTime,a.patent_type patentType
  841. 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
  842. 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
  843. 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
  844. 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)
  845. and a.outsource= #{outsource,jdbcType=INTEGER}
  846. <if test="role == 0 ">
  847. and a.task_receiver= #{aid,jdbcType=VARCHAR}
  848. </if>
  849. <if test="role ==1 and fids != null and fids.size() &gt; 0">
  850. and e.finance_id in
  851. <foreach close=")" collection="fids" index="" item="item" open="(" separator=",">
  852. #{item}
  853. </foreach>
  854. </if>
  855. <if test="specially == 0 ">
  856. and a.split_status in (0,2)
  857. </if>
  858. <if test="orderNo != null">
  859. and a.order_no= #{orderNo,jdbcType=VARCHAR}
  860. </if>
  861. <if test="approval ==0">
  862. and e.approval = 0
  863. </if>
  864. <if test="approval ==1">
  865. and e.approval = 1
  866. </if>
  867. <if test="approval ==2">
  868. and e.approval &gt; 1
  869. </if>
  870. <if test="cid != null">
  871. and c.id = #{cid}
  872. </if>
  873. <if test="outsourceStatus !=null">
  874. and l.refund_status = #{outsourceStatus,jdbcType=INTEGER}
  875. </if>
  876. <if test="contractNo != null">
  877. and e.contract_no like CONCAT('%',#{contractNo,jdbcType=VARCHAR},'%')
  878. </if>
  879. <if test="projectStatus != null">
  880. and a.project_status = #{projectStatus,jdbcType=INTEGER}
  881. </if>
  882. <if test="deps != null">
  883. and e.order_dep in
  884. <foreach close=")" collection="deps" item="depId" open="(" separator=",">
  885. #{depId}
  886. </foreach>
  887. </if>
  888. <if test="name != null">
  889. and f.nickname like CONCAT('%',#{name,jdbcType=VARCHAR},'%')
  890. </if>
  891. <if test="orderNo != null">
  892. and a.order_no= #{orderNo,jdbcType=VARCHAR}
  893. </if>
  894. <if test="taskId != null">
  895. and (a.id= #{taskId,jdbcType=VARCHAR} or a.split_super= #{taskId,jdbcType=VARCHAR})
  896. </if>
  897. <if test="taskStatus != null">
  898. and a.task_status= #{taskStatus,jdbcType=INTEGER}
  899. </if>
  900. <if test="adminName != null">
  901. and a.receiver_name like CONCAT('%', #{adminName,jdbcType=VARCHAR},'%')
  902. </if>
  903. <if test="startTime != null and endTime != null">
  904. and e.sign_time between #{startTime} and #{endTime}
  905. </if>
  906. order by a.task_distribution_time desc
  907. <if test="page_sql!=null">
  908. ${page_sql}
  909. </if>
  910. </select>
  911. <select id="selectOrderTaskListCount" resultType="java.lang.Integer">
  912. 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
  913. 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
  914. left join t_order_outsource l on a.id=l.tid left join department h on g.department_id=h.id
  915. where e.delete_sign in (0,2,3) and e.order_status in (2,4)
  916. and a.outsource= #{outsource,jdbcType=INTEGER}
  917. <if test="role == 0 ">
  918. and a.task_receiver= #{aid,jdbcType=VARCHAR}
  919. </if>
  920. <if test="role ==1 and fids != null and fids.size() &gt; 0">
  921. and e.finance_id in
  922. <foreach close=")" collection="fids" index="" item="item" open="(" separator=",">
  923. #{item}
  924. </foreach>
  925. </if>
  926. <if test="specially == 0 ">
  927. and a.split_status in (0,2)
  928. </if>
  929. <if test="orderNo != null">
  930. and a.order_no= #{orderNo,jdbcType=VARCHAR}
  931. </if>
  932. <if test="approval ==0">
  933. and e.approval = 0
  934. </if>
  935. <if test="approval ==1">
  936. and e.approval = 1
  937. </if>
  938. <if test="approval ==2">
  939. and e.approval &gt; 1
  940. </if>
  941. <if test="cid != null">
  942. and c.id = #{cid}
  943. </if>
  944. <if test="outsourceStatus !=null">
  945. and l.refund_status = #{outsourceStatus,jdbcType=INTEGER}
  946. </if>
  947. <if test="contractNo != null">
  948. and e.contract_no like CONCAT('%',#{contractNo,jdbcType=VARCHAR},'%')
  949. </if>
  950. <if test="projectStatus != null">
  951. and a.project_status = #{projectStatus,jdbcType=INTEGER}
  952. </if>
  953. <if test="deps != null">
  954. and e.order_dep in
  955. <foreach close=")" collection="deps" item="depId" open="(" separator=",">
  956. #{depId}
  957. </foreach>
  958. </if>
  959. <if test="name != null">
  960. and f.nickname like CONCAT('%',#{name,jdbcType=VARCHAR},'%')
  961. </if>
  962. <if test="orderNo != null">
  963. and a.order_no= #{orderNo,jdbcType=VARCHAR}
  964. </if>
  965. <if test="taskId != null">
  966. and (a.id= #{taskId,jdbcType=VARCHAR} or a.split_super= #{taskId,jdbcType=VARCHAR})
  967. </if>
  968. <if test="taskStatus != null">
  969. and a.task_status= #{taskStatus,jdbcType=INTEGER}
  970. </if>
  971. <if test="adminName != null">
  972. and a.receiver_name like CONCAT('%', #{adminName,jdbcType=VARCHAR},'%')
  973. </if>
  974. <if test="startTime != null and endTime != null">
  975. and e.sign_time between #{startTime} and #{endTime}
  976. </if>
  977. </select>
  978. <select id="getOrderTaskDetail" resultType="com.goafanti.order.bo.TOrderTaskDetailBo">
  979. select
  980. 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,
  981. 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,
  982. 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,
  983. 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,
  984. 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,
  985. 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 ,
  986. date_format(a.review_time,'%Y-%m-%d') as reviewDate,date_format(a.publicity_time,'%Y-%m-%d') as publicityDate,a.outsource_price outsourcePrice,
  987. 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,
  988. 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,
  989. a.if_certification_fee ifCertificationFee , a.certification_corporate certificationCorporate ,a.certification_fee certificationFee ,a.time_record timeRecord,
  990. 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 ,
  991. a.spot_check_status spotCheckStatus , a.special_comment specialComment ,ttm.certificates_count certificatesCount ,ttm.reject_count rejectCount ,a.check_status checkStatus,
  992. ttm.authorize_count authorizeCount ,ttm.end_count endCount,ttm.accept_count acceptCount,a.commodity_price commodityPrice,a.commodity_quantity commodityQuantity
  993. 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
  994. left join admin d on a.task_receiver=d.id left join t_order_new e on a.order_no=e.order_no
  995. 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
  996. left join admin g on e.salesman_id=g.id
  997. where a.id= #{id,jdbcType=VARCHAR}
  998. </select>
  999. <select id="selectBySuperId" resultType="com.goafanti.common.model.TOrderTask">
  1000. select super_id as superId,min(task_status) as taskStatus,min(project_status) as projectStatus,max(main) as main from t_order_task
  1001. where super_id = #{superId,jdbcType=VARCHAR} group by super_id
  1002. </select>
  1003. <select id="selectTaskHoursListByPage" resultType="com.goafanti.order.bo.TOrderTaskListBo">
  1004. 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,
  1005. a.task_status as taskStatus,f.nickname as userName,ifnull(g.hours,0) as hours,a.commodity_quantity as commodityQuantity,a.commodity_price commodityPrice,
  1006. 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,
  1007. 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,
  1008. a.split_status splitStatus, a.split_super splitSuper, a.split_id splitId,ifnull(ttm.cost_amount,0) costAmount,ifnull(ttm.party_amount,0) partyAmount
  1009. 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
  1010. left join t_order_new e on a.order_no=e.order_no left join department dep on e.order_dep=dep.id
  1011. 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
  1012. left join t_order_mid tm on a.order_no=tm.order_no left join t_task_mid ttm on a.id=ttm.tid
  1013. where e.delete_sign =0 and a.super_id is null and a.split_status in(0,2)
  1014. <if test="shiroType == 1 and aid !=null">
  1015. and tm.finance_id= #{aid,jdbcType=VARCHAR}
  1016. </if>
  1017. <if test="shiroType == 2 and aid !=null">
  1018. and tm.finance_id in (select id from admin where superior_id= #{aid,jdbcType=VARCHAR})
  1019. </if>
  1020. <if test="name != null">
  1021. and f.nickname like CONCAT('%',#{name,jdbcType=VARCHAR},'%')
  1022. </if>
  1023. <if test="thchId != null">
  1024. and a.task_receiver = #{thchId,jdbcType=VARCHAR}
  1025. </if>
  1026. <if test="cid != null">
  1027. and b.cid = #{cid,jdbcType=VARCHAR}
  1028. </if>
  1029. <if test="outsource != null">
  1030. and a.outsource = #{outsource,jdbcType=INTEGER}
  1031. </if>
  1032. <if test="depId != null">
  1033. and e.order_dep = #{depId,jdbcType=VARCHAR}
  1034. </if>
  1035. <if test="contractNo != null">
  1036. and e.contract_no like CONCAT('%',#{contractNo,jdbcType=VARCHAR},'%')
  1037. </if>
  1038. <if test="orderNo != null">
  1039. and e.order_no like CONCAT('%',#{orderNo,jdbcType=VARCHAR},'%')
  1040. </if>
  1041. <if test="taskId != null">
  1042. and a.id= #{taskId,jdbcType=VARCHAR}
  1043. </if>
  1044. <if test="starTime !=null and endTime !=null">
  1045. and e.sign_time between #{starTime,jdbcType=VARCHAR} and #{endTime,jdbcType=VARCHAR}
  1046. </if>
  1047. order by a.task_start_time desc,e.create_time desc
  1048. <if test="page_sql!=null">
  1049. ${page_sql}
  1050. </if>
  1051. </select>
  1052. <select id="selectTaskHoursListCount" resultType="java.lang.Integer">
  1053. 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
  1054. 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
  1055. where e.delete_sign =0 and a.super_id is null and a.split_status in(0,2)
  1056. <if test="shiroType == 1 and aid !=null">
  1057. and tm.finance_id= #{aid,jdbcType=VARCHAR}
  1058. </if>
  1059. <if test="shiroType == 2 and aid !=null">
  1060. and tm.finance_id in (select id from admin where superior_id= #{aid,jdbcType=VARCHAR})
  1061. </if>
  1062. <if test="name != null">
  1063. and f.nickname like CONCAT('%',#{name,jdbcType=VARCHAR},'%')
  1064. </if>
  1065. <if test="thchId != null">
  1066. and a.task_receiver = #{thchId,jdbcType=VARCHAR}
  1067. </if>
  1068. <if test="outsource != null">
  1069. and a.outsource = #{outsource,jdbcType=INTEGER}
  1070. </if>
  1071. <if test="cid != null">
  1072. and b.cid = #{cid,jdbcType=VARCHAR}
  1073. </if>
  1074. <if test="depId != null">
  1075. and e.order_dep = #{depId,jdbcType=VARCHAR}
  1076. </if>
  1077. <if test="contractNo != null">
  1078. and e.contract_no like CONCAT('%',#{contractNo,jdbcType=VARCHAR},'%')
  1079. </if>
  1080. <if test="orderNo != null">
  1081. and e.order_no like CONCAT('%',#{orderNo,jdbcType=VARCHAR},'%')
  1082. </if>
  1083. <if test="taskId != null">
  1084. and a.id= #{taskId,jdbcType=VARCHAR}
  1085. </if>
  1086. <if test="starTime !=null and endTime !=null">
  1087. and e.sign_time between #{starTime,jdbcType=VARCHAR} and #{endTime,jdbcType=VARCHAR}
  1088. </if>
  1089. </select>
  1090. <select id="selectTaskListByPage" resultType="com.goafanti.order.bo.TOrderTaskListBo">
  1091. select a.id,a.commodity_name as taskName,a.order_no as orderNo,c.cname,d.name as receiverName,
  1092. a.project_status as projectStatus,a.task_status as taskStatus,date_format(a.task_distribution_time,'%Y-%m-%d') as taskDate,
  1093. a.commodity_quantity as commodityQuantity,f.nickname as userName,h.name as depName,ifnull(i.alreadyNumber,0)as alreadyNumber,
  1094. a.split_status splitStatus,a.split_super splitSuper, a.split_id splitId
  1095. from (select task_id from t_task_log a where task_receiver=#{aid ,jdbcType=VARCHAR} UNION select task_id from t_task_log a
  1096. where task_allocator=#{aid ,jdbcType=VARCHAR}) x left join t_order_task a on x.task_id=a.id
  1097. left join business_project b on a.commodity_id=b.id left join business_category c on b.cid=c.id
  1098. left join admin d on a.task_receiver=d.id left join t_order_new e on a.order_no=e.order_no
  1099. left join user f on e.buyer_id=f.id left join department h on e.order_dep=h.id
  1100. left join (select task_id , sum(already_number) as alreadyNumber from task_progress group by task_id) i on a.id=i.task_id
  1101. where e.delete_sign in(0,2,3)
  1102. <if test="orderNo != null">
  1103. and a.order_no= #{orderNo,jdbcType=VARCHAR}
  1104. </if>
  1105. <if test="name != null">
  1106. and f.nickname like CONCAT('%',#{name,jdbcType=VARCHAR},'%')
  1107. </if>
  1108. <if test="orderNo != null">
  1109. and a.order_no= #{orderNo,jdbcType=VARCHAR}
  1110. </if>
  1111. <if test="depId != null">
  1112. and e.order_dep= #{depId ,jdbcType=VARCHAR}
  1113. </if>
  1114. <if test="thchId != null">
  1115. and a.task_receiver = #{thchId,jdbcType=VARCHAR}
  1116. </if>
  1117. <if test="taskId != null">
  1118. and (a.id= #{taskId,jdbcType=VARCHAR} or a.split_super= #{taskId,jdbcType=VARCHAR})
  1119. </if>
  1120. <if test="taskStatus != null">
  1121. and a.task_status= #{taskStatus,jdbcType=INTEGER}
  1122. </if>
  1123. <if test="adminName != null">
  1124. and d.name like CONCAT('%', #{adminName,jdbcType=VARCHAR},'%')
  1125. </if>
  1126. order by a.task_distribution_time desc
  1127. <if test="page_sql!=null">
  1128. ${page_sql}
  1129. </if>
  1130. </select>
  1131. <select id="selectTaskListCount" resultType="java.lang.Integer">
  1132. select count(*)
  1133. from (select task_id from t_task_log a where task_receiver=#{aid ,jdbcType=VARCHAR} UNION select task_id from t_task_log a
  1134. where task_allocator=#{aid ,jdbcType=VARCHAR}) x left join t_order_task a on x.task_id=a.id
  1135. left join business_project b on a.commodity_id=b.id
  1136. left join business_category c on b.cid=c.id
  1137. left join admin d on a.task_receiver=d.id
  1138. left join t_order_new e on a.order_no=e.order_no
  1139. left join user f on e.buyer_id=f.id
  1140. left join department h on e.order_dep=h.id
  1141. left join (select task_id , sum(already_number) as alreadyNumber from task_progress group by task_id) i on a.id=i.task_id
  1142. where e.delete_sign in(0,2,3)
  1143. <if test="orderNo != null">
  1144. and a.order_no= #{orderNo,jdbcType=VARCHAR}
  1145. </if>
  1146. <if test="name != null">
  1147. and f.nickname like CONCAT('%',#{name,jdbcType=VARCHAR},'%')
  1148. </if>
  1149. <if test="depId != null">
  1150. and e.order_dep= #{depId ,jdbcType=VARCHAR}
  1151. </if>
  1152. <if test="thchId != null">
  1153. and a.task_receiver = #{thchId,jdbcType=VARCHAR}
  1154. </if>
  1155. <if test="orderNo != null">
  1156. and a.order_no= #{orderNo,jdbcType=VARCHAR}
  1157. </if>
  1158. <if test="taskId != null">
  1159. and (a.id= #{taskId,jdbcType=VARCHAR} or a.split_super= #{taskId,jdbcType=VARCHAR})
  1160. </if>
  1161. <if test="taskStatus != null">
  1162. and a.task_status= #{taskStatus,jdbcType=INTEGER}
  1163. </if>
  1164. <if test="adminName != null">
  1165. and d.name like CONCAT('%', #{adminName,jdbcType=VARCHAR},'%')
  1166. </if>
  1167. </select>
  1168. <!-- 根据订单编号获得所有的任务负责人 -->
  1169. <select id="getReceiverByOid" resultType="com.goafanti.order.bo.TOrderTaskBo">
  1170. select distinct task_receiver, a.name, a.email, t.id, t.project_status from t_order_task t
  1171. inner join admin a on t.task_receiver = a.id
  1172. where order_no = #{orderNo,jdbcType=VARCHAR} and task_status &gt; 0 and super_id is null
  1173. </select>
  1174. <update id="updateDimissionTransfer" parameterType="java.lang.String">
  1175. update t_order_task set task_allocator= #{aid,jdbcType=VARCHAR},task_receiver= #{transferId,jdbcType=VARCHAR}
  1176. <if test="type==0">
  1177. ,consultant_id=#{transferId,jdbcType=VARCHAR}
  1178. </if>
  1179. <if test="type==1">
  1180. ,manager_id=#{transferId,jdbcType=VARCHAR}
  1181. </if>
  1182. <if test="type==3">
  1183. ,consultant_id= null
  1184. </if>
  1185. <if test="type==1">
  1186. ,manager_id= null
  1187. </if>
  1188. where task_receiver=#{aid,jdbcType=VARCHAR}
  1189. </update>
  1190. <select id="selectEstimateCost" resultType="java.lang.String">
  1191. select ifnull(sum(a.commodity_quantity * ifnull(b.price,0)),0) from t_order_task a
  1192. left join business_project b on a.commodity_id=b.id
  1193. where order_no= #{orderNo}
  1194. </select>
  1195. <select id="listNameByDepAndName" resultType="java.lang.String">
  1196. select
  1197. <if test="type ==0">
  1198. consultant_id
  1199. </if>
  1200. <if test="type ==1">
  1201. manager_id
  1202. </if>
  1203. from t_order_task
  1204. where order_no= #{orderNo}
  1205. group by
  1206. <if test="type ==0">
  1207. consultant_id
  1208. </if>
  1209. <if test="type ==1">
  1210. manager_id
  1211. </if>
  1212. </select>
  1213. <select id="splitProjectList" resultType="com.goafanti.order.bo.TOrderTaskListBo">
  1214. 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,
  1215. e.contract_no contractNo,a.task_receiver taskReceiver, a.task_status as taskStatus,date_format(a.task_distribution_time,'%Y-%m-%d') as taskDate,
  1216. a.commodity_quantity as commodityQuantity,e.approval,l.refund_status outsourceStatus, ifnull(i.alreadyNumber,0) as alreadyNumber,a.task_comment taskComment ,
  1217. 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,
  1218. 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,
  1219. ttm.service_life serviceLife,ttm.service_year serviceYear ,ttm.year_sum yearSum ,ttm.contract_term contractTerm,a.process_status processStatus
  1220. 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
  1221. 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
  1222. left join department h on e.order_dep=h.id left join (select task_id , sum(already_number) as alreadyNumber
  1223. from task_progress group by task_id) i on a.id=i.task_id left join (select order_no,max(name)as name
  1224. 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
  1225. 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
  1226. where e.order_status in (0,1,2,3,4,5)
  1227. and split_status =2 and a.split_super= #{tid}
  1228. <if test="type == 1">
  1229. and a.process_status in(0,3)
  1230. </if>
  1231. order by split_id
  1232. </select>
  1233. <select id="selectByidGetCname" resultType="java.lang.String">
  1234. select b.cname from business_project a left join business_category b on a.cid =b.id
  1235. where a.id= #{pid}
  1236. </select>
  1237. <update id="updateByOutsourceToOrderNo">
  1238. update t_order_task set outsource= #{type} where order_no= #{orderNo}
  1239. </update>
  1240. <select id="getLockId" resultType="java.lang.String">
  1241. select id from user_lock_release a left join (select commodity_id from t_order_task
  1242. where order_no = #{orderNo} GROUP by commodity_id ) b on a.business_project_id =b.commodity_id
  1243. where a.`type` =1 and a.aid = #{aid} and a.uid = #{uid}
  1244. </select>
  1245. <select id="selectProjectStatisticsListByPage" resultType="com.goafanti.order.bo.OutProjectStatistics">
  1246. select date_format( a.task_distribution_time, '%Y-%m-%d %H:%i:%S' ) distributionTime ,d.name province , c.name depName,e.salesman_name salesmanName,
  1247. b.contract_no contractNo ,b.order_no orderNo ,e.buyer_name userName,bc.cname ,a.commodity_name pname,ta.name techName,td.name techDepName,
  1248. a.project_status projectStatus,a.id,b.order_remarks orderRemarks, a.set_up_status setUpStatus , date_format( a.set_up_time , '%Y-%m-%d' ) setUpTime ,
  1249. a.spot_check_status spotCheckStatus ,b.contact_mobile contactMobile ,b.legal_person_tel legalPersonTel , a.certificate_number certificateNumber,
  1250. a.declaration_batch declarationBatch, date_format(a.licence_time, '%Y-%m-%d' ) licenceTime, a.commodity_quantity commodityQuantity ,
  1251. ttm.certificates_count certificatesCount,ttm.urgent_day urgentDay ,ttm.if_material ifMaterial, ttm.cost_amount costAmount ,
  1252. (a.commodity_price-ttm.cost_amount)profit, a.high_tech_status highTechStatus, tp.patent_name patentName ,tp.patent_no patentNo ,
  1253. date_format(tp.accept_time, '%Y-%m-%d ' ) acceptTime , date_format(tp.authorize_time, '%Y-%m-%d ' ) authorizeTime, ttm.reject_count rejectCount ,
  1254. tm.service_life serviceLife,tm.service_year serviceyear, tm.year_sum yearsum,tm.contract_term contractTerm, a.commodity_price commodityPrice ,
  1255. a.special_comment specialComment,a.task_comment taskComment,ttm.last_year lastYear,ttm.last_year_capital lastYearCapital,ttm.last_year_income lastYearIncome,
  1256. e.service_type serviceType,e.service_project serviceProject
  1257. 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
  1258. left join district_glossory d on c.province=d.id left join task_progress tp on a.id=tp.task_id left join t_task_member tm on a.id=tm.tid
  1259. 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
  1260. 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
  1261. <if test="screen ==6">
  1262. right join (select tid ,accept_count sls from t_task_mid where accept_count &gt; 0)tj on a.id=tj.tid
  1263. </if>
  1264. <if test="screen ==7">
  1265. right join (select tid ,end_count wjs from t_task_mid where end_count &gt; 0)tj on a.id=tj.tid
  1266. </if>
  1267. <if test="screen ==8">
  1268. right join (select tid ,authorize_count sqs from t_task_mid where authorize_count &gt; 0)tj on a.id=tj.tid
  1269. </if>
  1270. <if test="screen ==9">
  1271. right join (select tid ,reject_count bhs from t_task_mid where reject_count &gt; 0)tj on a.id=tj.tid
  1272. </if>
  1273. <if test="screen ==10">
  1274. right join (select tid ,certificates_count xzs from t_task_mid where certificates_count &gt; 0)tj on a.id=tj.tid
  1275. </if>
  1276. <if test="screen ==11">
  1277. right join (select tid ,apply_count sqs,reject_count bhs,certificates_count xzs from t_task_mid
  1278. where apply_count &gt; 0)tj on a.id=tj.tid
  1279. </if>
  1280. where a.split_status in (0,2) and b. delete_sign in (0,2)
  1281. <!-- 筛选项 0库存 1派单 2完成 3立项 4抽查 5未通过 6受理 7完结 8授权 9驳回 10下证 11申请 -->
  1282. <if test="screen ==0">
  1283. and a.project_status in(0,1,2,3)
  1284. </if>
  1285. <if test="screen ==2">
  1286. and a.project_status &gt; 3
  1287. </if>
  1288. <if test="screen ==3">
  1289. and a.set_up_status =1
  1290. </if>
  1291. <if test="screen ==4">
  1292. and a.spot_check_status in (1,2)
  1293. </if>
  1294. <if test="screen ==5">
  1295. and a.spot_check_status =1
  1296. </if>
  1297. <if test="screen ==12">
  1298. and a.publicity_time is not null
  1299. </if>
  1300. <if test="startDate != null and endDate != null">
  1301. and a.task_distribution_time between #{startDate} and #{endDate}
  1302. </if>
  1303. <if test="province !=null">
  1304. and c.province = #{province}
  1305. </if>
  1306. <if test="projectId !=null">
  1307. and a.commodity_id = #{projectId}
  1308. </if>
  1309. <if test="deps != null">
  1310. and b.order_dep in
  1311. <foreach close=")" collection="deps" item="dep" open="(" separator=",">
  1312. #{dep}
  1313. </foreach>
  1314. </if>
  1315. <if test="thchDeps != null">
  1316. and td.id in
  1317. <foreach close=")" collection="thchDeps" item="thchDep" open="(" separator=",">
  1318. #{thchDep}
  1319. </foreach>
  1320. </if>
  1321. <if test="projectStatus !=null">
  1322. and bp.cid= #{projectStatus}
  1323. </if>
  1324. <if test="projectType !=null">
  1325. and bp.type= #{projectType}
  1326. </if>
  1327. <if test="orderNo !=null">
  1328. and b.order_no = #{orderNo}
  1329. </if>
  1330. <if test="contractNo !=null">
  1331. and b.contract_no = #{contractNo}
  1332. </if>
  1333. <if test="userName !=null">
  1334. and e.buyer_name like concat('%', #{userName},'%')
  1335. </if>
  1336. <if test="thchId !=null">
  1337. and a.task_receiver = #{thchId}
  1338. </if>
  1339. <if test="declarationBatch !=null">
  1340. and a.declaration_batch = #{declarationBatch}
  1341. </if>
  1342. <if test="projectSituation !=null">
  1343. and a.status = #{projectSituation}
  1344. </if>
  1345. <if test=" projectAmount !=null and projectAmount != 9">
  1346. and a.commodity_price &gt;= #{amountStart} and a.commodity_price &lt; #{amountEnd}
  1347. </if>
  1348. <if test=" projectAmount == 9">
  1349. and a.commodity_price &gt;= #{amountStart}
  1350. </if>
  1351. <if test="page_sql!=null">
  1352. ${page_sql}
  1353. </if>
  1354. </select>
  1355. <select id="selectProjectStatisticsCount" resultType="java.lang.Integer">
  1356. select count(*)
  1357. from t_order_task a left join t_order_new b on a.order_no =b.order_no
  1358. <if test="province !=null">
  1359. left join department c on b.order_dep =c.id
  1360. </if>
  1361. <if test="userName !=null">
  1362. left join t_order_mid e on b.order_no =e.order_no
  1363. </if>
  1364. <if test="projectStatus !=null or projectType !=null">
  1365. left join business_project bp on a.commodity_id =bp.id
  1366. </if>
  1367. <if test="thchDeps !=null">
  1368. left join admin ta on a.task_receiver =ta.id
  1369. left join department td on ta.department_id =td.id
  1370. </if>
  1371. <if test="status==3 or status==4">
  1372. left join task_progress tp on a.id=tp.task_id
  1373. </if>
  1374. <if test="screen ==6">
  1375. right join (select tid ,accept_count sls from t_task_mid where accept_count &gt; 0)tj on a.id=tj.tid
  1376. </if>
  1377. <if test="screen ==7">
  1378. right join (select tid ,end_count wjs from t_task_mid where end_count &gt; 0)tj on a.id=tj.tid
  1379. </if>
  1380. <if test="screen ==8">
  1381. right join (select tid ,authorize_count sqs from t_task_mid where authorize_count &gt; 0)tj on a.id=tj.tid
  1382. </if>
  1383. <if test="screen ==9">
  1384. right join (select tid ,reject_count bhs from t_task_mid where reject_count &gt; 0)tj on a.id=tj.tid
  1385. </if>
  1386. <if test="screen ==10">
  1387. right join (select tid ,certificates_count xzs from t_task_mid where certificates_count &gt; 0)tj on a.id=tj.tid
  1388. </if>
  1389. <if test="screen ==11">
  1390. right join (select tid ,apply_count sqs,reject_count bhs,certificates_count xzs from t_task_mid
  1391. where apply_count &gt; 0)tj on a.id=tj.tid
  1392. </if>
  1393. where a.split_status in (0,2) and b. delete_sign in (0,2)
  1394. <!-- 筛选项 0库存 1派单 2完成 3立项 4抽查 5未通过 6受理 7完结 8授权 9驳回 10下证 11申请 -->
  1395. <if test="screen ==0">
  1396. and a.project_status in(0,1,2,3)
  1397. </if>
  1398. <if test="screen ==2">
  1399. and a.project_status &gt; 3
  1400. </if>
  1401. <if test="screen ==3">
  1402. and a.set_up_status =1
  1403. </if>
  1404. <if test="screen ==4">
  1405. and a.spot_check_status in (1,2)
  1406. </if>
  1407. <if test="screen ==5">
  1408. and a.spot_check_status =1
  1409. </if>
  1410. <if test="screen ==12">
  1411. and a.publicity_time is not null
  1412. </if>
  1413. <if test="startDate != null and endDate != null">
  1414. and a.task_distribution_time between #{startDate} and #{endDate}
  1415. </if>
  1416. <if test="province !=null">
  1417. and c.province = #{province}
  1418. </if>
  1419. <if test="projectId !=null">
  1420. and a.commodity_id = #{projectId}
  1421. </if>
  1422. <if test="deps != null">
  1423. and b.order_dep in
  1424. <foreach close=")" collection="deps" item="dep" open="(" separator=",">
  1425. #{dep}
  1426. </foreach>
  1427. </if>
  1428. <if test="thchDeps != null">
  1429. and td.id in
  1430. <foreach close=")" collection="thchDeps" item="thchDep" open="(" separator=",">
  1431. #{thchDep}
  1432. </foreach>
  1433. </if>
  1434. <if test="projectStatus !=null">
  1435. and bp.cid= #{projectStatus}
  1436. </if>
  1437. <if test="projectType !=null">
  1438. and bp.type= #{projectType}
  1439. </if>
  1440. <if test="orderNo !=null">
  1441. and b.order_no = #{orderNo}
  1442. </if>
  1443. <if test="contractNo !=null">
  1444. and b.contract_no = #{contractNo}
  1445. </if>
  1446. <if test="userName !=null">
  1447. and e.buyer_name like concat('%', #{userName},'%')
  1448. </if>
  1449. <if test="thchId !=null">
  1450. and a.task_receiver = #{thchId}
  1451. </if>
  1452. <if test="declarationBatch !=null">
  1453. and a.declaration_batch = #{declarationBatch}
  1454. </if>
  1455. <if test="projectSituation !=null">
  1456. and a.status = #{projectSituation}
  1457. </if>
  1458. <if test=" projectAmount !=null and projectAmount != 9">
  1459. and a.commodity_price &gt;= #{amountStart} and a.commodity_price &lt; #{amountEnd}
  1460. </if>
  1461. <if test=" projectAmount == 9">
  1462. and a.commodity_price &gt;= #{amountStart}
  1463. </if>
  1464. </select>
  1465. <select id="selectProvincialStatisticsListByPage" resultType="com.goafanti.order.bo.OutProvincialStatistics">
  1466. select z.cid bpId, bc.cname projectStatus,z.dispatch_province province,dg.name provinceName,
  1467. z.duty_dep thchDepId,d.name thchDepName,z.distributeCount,z.stockCount,z.completeCount,z.publicityCount,
  1468. z.setUpCount,z.spotCheckCount,z.failCount,z.certificatesCount,z.acceptCount,z.endCount,z.authorizeCount,
  1469. z.rejectCount,z.applyCount,z.amountCount,z.costAmount,z.profit
  1470. from ( select y.dispatch_province, y.cid, y.duty_dep, sum(y.dispatch_count)distributeCount,
  1471. sum(y.stock_count)stockCount, sum(y.complete_count)completeCount,sum(y.promulgate_count)publicityCount,
  1472. sum(y.set_up_count)setUpCount,sum(y.spot_check_count)spotCheckCount,sum(y.fail_count)failCount,
  1473. sum(y.certificates_count)certificatesCount,sum(y.accept_count)acceptCount,sum(y.end_count)endCount,
  1474. sum(y.authorize_count)authorizeCount,sum(y.reject_count)rejectCount, sum(y.apply_count)applyCount,
  1475. sum(y.commodity_price)amountCount,sum(y.cost_amount)costAmount, sum(y.commodity_price-y.cost_amount)profit
  1476. from(select b.dispatch_province, bp.cid, b.duty_dep,
  1477. b.stock_count,b.dispatch_count,b.promulgate_count, b.complete_count,b.set_up_count ,b.spot_check_count ,
  1478. b.fail_count ,b.certificates_count, b.accept_count,b.end_count,b.authorize_count,b.reject_count,b.apply_count,
  1479. a.commodity_price ,b.cost_amount, a.task_distribution_time from t_order_task a
  1480. left join t_task_mid b on a.id=b.tid left join business_project bp on a.commodity_id =bp.id
  1481. left join t_order_new ton on a.order_no =ton .order_no
  1482. where a.task_status in(1,2,3) and ton.delete_sign in (0,2)
  1483. <if test="projectId !=null">
  1484. and a.commodity_id = #{projectId}
  1485. </if>
  1486. <if test="province !=null">
  1487. and b.dispatch_province = #{province}
  1488. </if>
  1489. <if test="thchDeps !=null">
  1490. and b.duty_dep in
  1491. <foreach close=")" collection="thchDeps" item="depId" open="(" separator=",">
  1492. #{depId}
  1493. </foreach>
  1494. </if>
  1495. <if test="projectType !=null">
  1496. and bp.`type` = #{projectType}
  1497. </if>
  1498. <if test="projectStatus !=null">
  1499. and bp.cid= #{projectStatus}
  1500. </if>
  1501. <if test="startDate != null and endDate != null">
  1502. and a.task_distribution_time between #{startDate} and #{endDate}
  1503. </if>
  1504. )y
  1505. group by y.dispatch_province, y.cid, y.duty_dep )z
  1506. left join business_category bc on z.cid=bc.id left join district_glossory dg on z.dispatch_province=dg.id
  1507. left join department d on z.duty_dep=d.id
  1508. <if test="page_sql!=null">
  1509. ${page_sql}
  1510. </if>
  1511. </select>
  1512. <select id="selectProvincialStatisticsCount" resultType="java.lang.Integer">
  1513. select count(*)
  1514. from(select y.dispatch_province from (select bp.cid,
  1515. b.dispatch_province,b.duty_dep,a.cname,b.stock_count,b.dispatch_count,b.promulgate_count,
  1516. b.complete_count,b.set_up_count ,b.spot_check_count ,b.fail_count ,b.certificates_count,
  1517. b.accept_count,b.end_count,b.authorize_count,b.reject_count,b.apply_count,
  1518. a.commodity_price ,b.cost_amount, a.task_distribution_time
  1519. from t_order_task a
  1520. left join t_task_mid b on a.id=b.tid
  1521. left join business_project bp on a.commodity_id =bp.id
  1522. left join t_order_new ton on a.order_no =ton .order_no
  1523. where a.task_status in(1,2,3) and ton.delete_sign in (0,2)
  1524. <if test="projectId !=null">
  1525. and a.commodity_id = #{projectId}
  1526. </if>
  1527. <if test="province !=null">
  1528. and b.dispatch_province = #{province}
  1529. </if>
  1530. <if test="thchDeps !=null">
  1531. and b.duty_dep in
  1532. <foreach close=")" collection="thchDeps" item="depId" open="(" separator=",">
  1533. #{depId}
  1534. </foreach>
  1535. </if>
  1536. <if test="projectType !=null">
  1537. and bp.`type` = #{projectType}
  1538. </if>
  1539. <if test="projectStatus !=null">
  1540. and bp.cid= #{projectStatus}
  1541. </if>
  1542. <if test="startDate != null and endDate != null">
  1543. and a.task_distribution_time between #{startDate} and #{endDate}
  1544. </if>
  1545. )y group by y.dispatch_province, y.cid, y.duty_dep )x
  1546. </select>
  1547. <select id="managerSelectByPage" resultType="com.goafanti.order.bo.managerListBo">
  1548. select a.id,a.task_distribution_time taskDistributionTime ,tm.province_name provinceName,tm.dep_name depName,
  1549. tm.salesman_name salesmanName, b.contract_no contractNo ,b.order_no orderNo,tm.buyer_name UserName,a.cname ,
  1550. a.commodity_name commodityName,a.commodity_quantity commodityQuantity,dep.name techDepName,a.receiver_name techName,
  1551. a.project_status projectStatus ,a.commodity_price commodityPrice ,a.special_comment specialComment
  1552. from (select task_id from t_task_log a where task_receiver=#{aid}
  1553. UNION select task_id from t_task_log a where task_allocator=#{aid}) x
  1554. 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
  1555. left join t_order_mid tm on b.order_no=tm.order_no left join admin ad on a.task_receiver =ad.id
  1556. left join department dep on ad.department_id =dep.id left join business_project bp on a.commodity_id =bp.id
  1557. where 1=1
  1558. <if test="orderNo !=null">
  1559. and a.order_no = #{orderNo}
  1560. </if>
  1561. <if test="contractNo !=null">
  1562. and b.contract_no = #{contractNo}
  1563. </if>
  1564. <if test="name !=null">
  1565. and tm.buyer_name like CONCAT('%',#{name},'%')
  1566. </if>
  1567. <if test="thchId !=null">
  1568. and a.task_receiver = #{thchId}
  1569. </if>
  1570. <if test="cid !=null">
  1571. and bp.cid =#{cid}
  1572. </if>
  1573. <if test="projectType !=null">
  1574. and bp.`type` =#{projectType}
  1575. </if>
  1576. <if test="depId !=null">
  1577. and b.order_dep =#{depId}
  1578. </if>
  1579. <if test="techDepId !=null">
  1580. and ad.department_id =#{techDepId}
  1581. </if>
  1582. <if test="declarationBatch !=null">
  1583. and a.declaration_batch =#{declarationBatch}
  1584. </if>
  1585. <if test="commodityPrice !=null">
  1586. and a.commodity_price =#{commodityPrice}
  1587. </if>
  1588. <if test="startTime !=null and endTime !=null">
  1589. and a.task_distribution_time between #{startTime} and #{endTime}
  1590. </if>
  1591. <if test="page_sql!=null">
  1592. ${page_sql}
  1593. </if>
  1594. </select>
  1595. <select id="managerSelectCount" resultType="java.lang.Integer">
  1596. select count(*)
  1597. from (select task_id from t_task_log a where task_receiver= #{aid} UNION
  1598. select task_id from t_task_log a where task_allocator= #{aid}) x
  1599. 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
  1600. left join t_order_mid tm on b.order_no=tm.order_no left join admin ad on a.task_receiver =ad.id
  1601. left join department dep on ad.department_id =dep.id left join business_project bp on a.commodity_id =bp.id
  1602. where 1=1
  1603. <if test="orderNo !=null">
  1604. and a.order_no = #{orderNo}
  1605. </if>
  1606. <if test="contractNo !=null">
  1607. and b.contract_no = #{contractNo}
  1608. </if>
  1609. <if test="name !=null">
  1610. and tm.buyer_name like CONCAT('%',#{name},'%')
  1611. </if>
  1612. <if test="thchId !=null">
  1613. and a.task_receiver = #{thchId}
  1614. </if>
  1615. <if test="cid !=null">
  1616. and bp.cid =#{cid}
  1617. </if>
  1618. <if test="projectType !=null">
  1619. and bp.`type` =#{projectType}
  1620. </if>
  1621. <if test="depId !=null">
  1622. and b.order_dep =#{depId}
  1623. </if>
  1624. <if test="techDepId !=null">
  1625. and ad.department_id =#{techDepId}
  1626. </if>
  1627. <if test="declarationBatch !=null">
  1628. and a.declaration_batch =#{declarationBatch}
  1629. </if>
  1630. <if test="commodityPrice !=null">
  1631. and a.commodity_price =#{commodityPrice}
  1632. </if>
  1633. <if test="startTime !=null and endTime !=null">
  1634. and a.task_distribution_time between #{startTime} and #{endTime}
  1635. </if>
  1636. </select>
  1637. <resultMap id="userOrder" type="com.goafanti.common.bo.UserOrderTask">
  1638. <id column="orderNo" jdbcType="VARCHAR" property="orderNo" />
  1639. <collection ofType="com.goafanti.common.bo.UserTask" property="list">
  1640. <id column="id" jdbcType="VARCHAR" property="id" />
  1641. <result column="commodityName" jdbcType="VARCHAR" property="commodityName" />
  1642. </collection>
  1643. </resultMap>
  1644. <select id="selectUidByproject" resultMap="userOrder">
  1645. select a.order_no orderNo ,b.id,b.commodity_name commodityName from t_order_new a
  1646. left join t_order_task b on a.order_no =b.order_no
  1647. where a.buyer_id = #{uid}
  1648. </select>
  1649. <select id="selectProjectCheck" resultType="com.goafanti.order.bo.OutProjectCheck">
  1650. select a.id,a.commodity_name commodityName ,b.order_no orderNo,b.contract_no contractNo,a.commodity_quantity commodityQuantity,
  1651. c.buyer_name userName ,e.cname ,a.task_distribution_time taskDistributionTime,f.name depName ,a.check_status checkStatus ,
  1652. a.main ,a.commodity_price commodityPrice ,a.task_comment taskComment ,a.official_cost officialCost,a.cost_reduction costReduction,
  1653. a.patent_type patentType
  1654. from t_order_task a left join t_order_new b on a.order_no =b.order_no
  1655. left join t_order_mid c on a.order_no =c.order_no
  1656. left join business_project d on a.commodity_id =d.id
  1657. left join business_category e on d.cid =e.id
  1658. left join department f on b.order_dep =f.id
  1659. where check_status =1
  1660. <if test="aid !=null">
  1661. and b.salesman_id = #{aid}
  1662. </if>
  1663. <if test="name !=null">
  1664. and c.buyer_name like concat('%',#{name},'%')
  1665. </if>
  1666. <if test="orderNo !=null">
  1667. and a.order_no = #{orderNo}
  1668. </if>
  1669. <if test="contractNo !=null">
  1670. and b.contract_no = #{contractNo}
  1671. </if>
  1672. <if test="pname !=null">
  1673. and a.commodity_name like concat('%',#{pname},'%')
  1674. </if>
  1675. <if test="deps !=null">
  1676. and b.order_dep in
  1677. <foreach close=")" collection="deps" item="depId" open="(" separator=",">
  1678. #{depId}
  1679. </foreach>
  1680. </if>
  1681. <if test="page_sql!=null">
  1682. ${page_sql}
  1683. </if>
  1684. </select>
  1685. <select id="countProjectCheck" resultType="java.lang.Integer">
  1686. select count(*)
  1687. from t_order_task a left join t_order_new b on a.order_no =b.order_no
  1688. left join t_order_mid c on a.order_no =c.order_no
  1689. left join business_project d on a.commodity_id =d.id
  1690. left join business_category e on d.cid =e.id
  1691. left join department f on b.order_dep =f.id
  1692. where check_status =1
  1693. <if test="aid !=null">
  1694. and b.salesman_id = #{aid}
  1695. </if>
  1696. <if test="name !=null">
  1697. and c.buyer_name like concat('%',#{name},'%')
  1698. </if>
  1699. <if test="orderNo !=null">
  1700. and a.order_no = #{orderNo}
  1701. </if>
  1702. <if test="contractNo !=null">
  1703. and b.contract_no = #{contractNo}
  1704. </if>
  1705. <if test="pname !=null">
  1706. and a.commodity_name like concat('%',#{pname},'%')
  1707. </if>
  1708. <if test="deps !=null">
  1709. and b.order_dep in
  1710. <foreach close=")" collection="deps" item="depId" open="(" separator=",">
  1711. #{depId}
  1712. </foreach>
  1713. </if>
  1714. </select>
  1715. <update id="resstPayment">
  1716. update t_order_task a ,t_task_mid c
  1717. set c.party_amount =0,c.cost_amount =0
  1718. where a.id= #{id} and a.id=c.tid
  1719. </update>
  1720. <update id="updateAddCostAmount">
  1721. update t_task_mid
  1722. set cost_amount =cost_amount + #{cost}
  1723. where tid= #{tid}
  1724. </update>
  1725. <select id="selectAidByParam" resultType="com.goafanti.common.bo.OrderOperator">
  1726. select a.id tid,b.order_no orderNo ,b.salesman_id salesmanId,b.finance_id financeId ,a.task_receiver techId,
  1727. b.salesman_name salesmanName ,b.finance_name financeName ,d.name techName,b.buyer_name buyerName
  1728. from t_order_task a left join t_order_mid b on a.order_no=b.order_no
  1729. left join t_task_mid c on a.id =c.tid left join admin d on a.task_receiver=d.id
  1730. where 1=1
  1731. <if test="tid !=null">
  1732. and a.id= #{tid}
  1733. </if>
  1734. </select>
  1735. <select id="selectByTidGetDtails" resultType="com.goafanti.organization.bo.ProjectTypePuls">
  1736. select a.id,a.order_no orderNo,a.official_cost officialCost,a.cost_reduction costReduction ,a.commodity_quantity quantity ,a.patent_type patentType,
  1737. b.patent_name_type projectType, c.amount officialAmount,c.proportion85,b.patent_type outPatentType,d.type
  1738. from t_order_task a left join t_order_outsource b on a.id=b.tid left join official_fee_price c on a.patent_type =c.patent_type and b.patent_name_type =c.`type`
  1739. left join business_project d on a.commodity_id=d.id
  1740. where a.id= #{tid}
  1741. </select>
  1742. <select id="highNewRetrialStatistics" resultType="com.goafanti.order.bo.OutHighNewRetrialStatistics">
  1743. select t1. province,dg.name provinceName ,t1.quantity,t1.pass,t1.notPass,ifnull(t1.signBacks,0) signBacks
  1744. 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,
  1745. sum(ttm.high_new_retrial)signBacks
  1746. 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
  1747. left join t_order_new c on a.order_no =c.order_no left join admin d on c.salesman_id =d.id
  1748. 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)
  1749. <if test="depId!=null">
  1750. and e.id= #{depId}
  1751. </if>
  1752. <if test="startDate!=null and endDate!=null">
  1753. and c.sign_time between #{startDate} and #{endDate}
  1754. </if>
  1755. group by e.province )t1 left join district_glossory dg on t1.province=dg.id
  1756. </select>
  1757. <select id="getHighNewRetrial" resultType="java.lang.Integer">
  1758. select count(*) from t_order_new a left join t_order_new b on a.buyer_id =b.buyer_id
  1759. left join t_order_task c on b.order_no =c.order_no left join business_project d on c.commodity_id =d.id
  1760. where a.order_no =#{orderNo} and b.create_time &lt; a.create_time and d.`type` =5
  1761. </select>
  1762. <select id="highNewRetrialList" resultType="com.goafanti.order.bo.OutHighNewRetrialList">
  1763. select t1.province,dg.name provinceName,t1.salesman_id aid,t1.name name,t1.quantity,t1.pass,t1.notPass,t1.signBacks
  1764. from (SELECT e.province,c.salesman_id,d.name ,sum(1) quantity,sum(if(a.project_status=10,1,0))pass,
  1765. sum(if(a.project_status != 10,1,0))notPass, sum(ttm.high_new_retrial)signBacks
  1766. 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
  1767. left join t_order_new c on a.order_no =c.order_no left join admin d on c.salesman_id =d.id
  1768. 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)
  1769. <if test="province!=null">
  1770. and e.province= #{province}
  1771. </if>
  1772. <if test="depId!=null">
  1773. and e.id= #{depId}
  1774. </if>
  1775. <if test="startDate!=null and endDate!=null">
  1776. and c.sign_time between #{startDate} and #{endDate}
  1777. </if>
  1778. <if test="aid !=null">
  1779. and c.salesman_id = #{aid}
  1780. </if>
  1781. <if test="depId !=null">
  1782. and d.department_id = #{depId}
  1783. </if>
  1784. group by e.province ,c.salesman_id ,d.name )t1 left join district_glossory dg on t1.province=dg.id
  1785. order by
  1786. <if test="sort==0">
  1787. t1.pass
  1788. </if>
  1789. <if test="sort==1">
  1790. t1.notPass
  1791. </if>
  1792. desc
  1793. </select>
  1794. <select id="findMemberList" resultType="com.goafanti.order.bo.OutMemberList">
  1795. select a.id,b.contract_no contractNo,c.buyer_name userName,a.order_no orderNo,b.approval ,c.dep_name depName,
  1796. c.salesman_name salesmanName,c.finance_name financeName,a.commodity_name projectName,a.member_type memberType,
  1797. b.delete_sign deleteSign ,b.total_amount totalAmount ,b.sales_type salesType ,b.other,
  1798. a.process_status status,a.commodity_id commodityId,a.commodity_name commodityName,
  1799. a.commodity_quantity commodityQuantity,a.task_comment taskComment,a.picture_url pictureUrl,
  1800. e.service_life serviceLife ,e.service_year serviceYear,e.year_sum yearSum
  1801. from t_order_task a left join t_order_new b on a.order_no =b.order_no
  1802. left join t_order_mid c on a.order_no =c.order_no
  1803. left join t_task_member e on a.id=e.tid
  1804. <if test="shiroType ==2">
  1805. left join department d on b.order_dep =d.id
  1806. </if>
  1807. where b.delete_sign in (0,2)
  1808. and a.process_status in (1,2,3,4)
  1809. <if test="shiroType ==1">
  1810. and b.salesman_id = #{aid}
  1811. </if>
  1812. <if test="shiroType ==2">
  1813. and d.finance_id = #{aid}
  1814. </if>
  1815. <if test="orderNo != null">
  1816. and a.order_no = #{orderNo}
  1817. </if>
  1818. <if test="userName != null">
  1819. and c.buyer_name like concat('%',#{userName},'%')
  1820. </if>
  1821. <if test="deps != null">
  1822. and b.order_dep in
  1823. <foreach close=")" collection="deps" item="dep" open="(" separator=",">
  1824. #{dep}
  1825. </foreach>
  1826. </if>
  1827. <if test="contractNo != null">
  1828. and b.contract_no =#{contractNo}
  1829. </if>
  1830. <if test="salesmanId != null">
  1831. and b.salesman_id =#{salesmanId}
  1832. </if>
  1833. <if test="projectName != null">
  1834. and a.commodity_name like concat('%',#{projectName},'%')
  1835. </if>
  1836. <if test="amountStatus == 0">
  1837. and b.total_amount &lt; 10
  1838. </if>
  1839. <if test="amountStatus == 1">
  1840. and b.total_amount between 10 and 20
  1841. </if>
  1842. <if test="amountStatus == 2">
  1843. and b.total_amount between 20 and 30
  1844. </if>
  1845. <if test="amountStatus == 3">
  1846. and b.total_amount between 30 and 40
  1847. </if>
  1848. <if test="amountStatus == 4">
  1849. and b.total_amount &gt; 40
  1850. </if>
  1851. <if test="approval != null and approval &lt; 3">
  1852. and b.approval = #{approval}
  1853. </if>
  1854. <if test="approval != null and approval ==4">
  1855. and b.approval in (1,2)
  1856. </if>
  1857. <if test="status != null and status !=5">
  1858. and a.process_status = #{status}
  1859. </if>
  1860. order by a.process_status
  1861. <if test="page_sql!=null">
  1862. ${page_sql}
  1863. </if>
  1864. </select>
  1865. <select id="findMemberCount" resultType="java.lang.Integer">
  1866. select count(*)
  1867. from t_order_task a left join t_order_new b on a.order_no =b.order_no
  1868. left join t_order_mid c on a.order_no =c.order_no
  1869. <if test="shiroType ==2">
  1870. left join department d on b.order_dep =d.id
  1871. </if>
  1872. where b.delete_sign in (0,2)
  1873. and a.process_status in (1,2,3,4)
  1874. <if test="shiroType ==1">
  1875. and b.salesman_id = #{aid}
  1876. </if>
  1877. <if test="shiroType ==2">
  1878. and d.finance_id = #{aid}
  1879. </if>
  1880. <if test="orderNo != null">
  1881. and a.order_no = #{orderNo}
  1882. </if>
  1883. <if test="userName != null">
  1884. and c.buyer_name like concat('%',#{userName},'%')
  1885. </if>
  1886. <if test="deps != null">
  1887. and b.order_dep in
  1888. <foreach close=")" collection="deps" item="dep" open="(" separator=",">
  1889. #{dep}
  1890. </foreach>
  1891. </if>
  1892. <if test="contractNo != null">
  1893. and b.contract_no =#{contractNo}
  1894. </if>
  1895. <if test="salesmanId != null">
  1896. and b.salesman_id =#{salesmanId}
  1897. </if>
  1898. <if test="projectName != null">
  1899. and a.commodity_name like concat('%',#{projectName},'%')
  1900. </if>
  1901. <if test="amountStatus == 1">
  1902. and b.total_amount between 10 and 20
  1903. </if>
  1904. <if test="amountStatus == 2">
  1905. and b.total_amount between 20 and 30
  1906. </if>
  1907. <if test="amountStatus == 3">
  1908. and b.total_amount between 30 and 40
  1909. </if>
  1910. <if test="amountStatus == 4">
  1911. and b.total_amount &gt; 40
  1912. </if>
  1913. <if test="approval != null and approval &lt; 3">
  1914. and b.approval = #{approval}
  1915. </if>
  1916. <if test="approval != null and approval ==4">
  1917. and b.approval in (1,2)
  1918. </if>
  1919. <if test="status != null and status !=5">
  1920. and a.process_status = #{status}
  1921. </if>
  1922. </select>
  1923. <select id="selectByAid" resultType="com.goafanti.common.model.TChangeTask">
  1924. select b.id,b.cid from t_order_task a
  1925. left join t_change_task b on a.id=b.tid
  1926. left join new_order_change noc on b.cid =noc.id
  1927. where b.id is not null and noc.process_state &lt; 4 and noc.status in (0,1,2)
  1928. and a.task_receiver = #{aid}
  1929. </select>
  1930. <select id="getSplitCount" resultType="java.lang.Integer">
  1931. select count(*) from t_order_task
  1932. where split_super = #{tid}
  1933. </select>
  1934. </mapper>