ActAllocationDetailsMapper.xml 16 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293
  1. <?xml version="1.0" encoding="UTF-8" ?>
  2. <!DOCTYPE mapper
  3. PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN"
  4. "http://mybatis.org/dtd/mybatis-3-mapper.dtd">
  5. <mapper namespace="com.ruoyi.ams.order.mapper.ActAllocationDetailsMapper">
  6. <resultMap type="ActAllocationDetails" id="ActAllocationDetailsResult">
  7. <result property="allocationId" column="allocation_id"/>
  8. <result property="orderNo" column="order_no"/>
  9. <result property="lineNo" column="line_no"/>
  10. <result property="material" column="material"/>
  11. <result property="locationId" column="location_id"/>
  12. <result property="callTransactionId" column="call_transaction_id"/>
  13. <result property="status" column="status"/>
  14. <result property="lotnum" column="lotnum"/>
  15. <result property="qty" column="qty"/>
  16. <result property="pickTransactionId" column="pick_transaction_id"/>
  17. <result property="pickToLocation" column="pick_to_location"/>
  18. <result property="pickQty" column="pick_qty"/>
  19. <result property="createBy" column="create_by"/>
  20. <result property="createTime" column="create_time"/>
  21. <result property="updateBy" column="update_by"/>
  22. <result property="updateTime" column="update_time"/>
  23. <result property="userdefine1" column="userdefine1"/>
  24. <result property="userdefine2" column="userdefine2"/>
  25. <result property="userdefine3" column="userdefine3"/>
  26. <result property="userdefine4" column="userdefine4"/>
  27. <result property="lotatt01" column="lotatt01"/>
  28. <result property="lotatt02" column="lotatt02"/>
  29. <result property="lotatt03" column="lotatt03"/>
  30. <result property="lotatt04" column="lotatt04"/>
  31. <result property="lotatt05" column="lotatt05"/>
  32. <result property="lotatt06" column="lotatt06"/>
  33. <result property="lotatt07" column="lotatt07"/>
  34. <result property="lotatt08" column="lotatt08"/>
  35. <result property="lotatt09" column="lotatt09"/>
  36. <result property="lotatt10" column="lotatt10"/>
  37. <result property="lotatt11" column="lotatt11"/>
  38. <result property="lotatt12" column="lotatt12"/>
  39. <result property="lotatt13" column="lotatt13"/>
  40. <result property="lotatt14" column="lotatt14"/>
  41. <result property="lotatt15" column="lotatt15"/>
  42. <result property="lotatt16" column="lotatt16"/>
  43. <result property="lotatt17" column="lotatt17"/>
  44. <result property="lotatt18" column="lotatt18"/>
  45. <result property="locationNo" column="location_no"/>
  46. </resultMap>
  47. <resultMap type="com.ruoyi.ams.order.form.ActAllocationDetailsFrom" id="ActAllocationDetailsInvLotAttResult">
  48. <result property="allocationId" column="allocation_id"/>
  49. <result property="orderNo" column="order_no"/>
  50. <result property="lineNo" column="line_no"/>
  51. <result property="material" column="material"/>
  52. <result property="skuName" column="skuName"/>
  53. <result property="locationId" column="location_id"/>
  54. <result property="callTransactionId" column="call_transaction_id"/>
  55. <result property="status" column="status"/>
  56. <result property="lotnum" column="lotnum"/>
  57. <result property="qty" column="qty"/>
  58. <result property="pickTransactionId" column="pick_transaction_id"/>
  59. <result property="pickToLocation" column="pick_to_location"/>
  60. <result property="pickQty" column="pick_qty"/>
  61. <result property="createBy" column="create_by"/>
  62. <result property="createTime" column="create_time"/>
  63. <result property="updateBy" column="update_by"/>
  64. <result property="updateTime" column="update_time"/>
  65. <result property="userdefine1" column="userdefine1"/>
  66. <result property="userdefine2" column="userdefine2"/>
  67. <result property="userdefine3" column="userdefine3"/>
  68. <result property="userdefine4" column="userdefine4"/>
  69. <result property="lotatt01" column="lotatt01"/>
  70. <result property="lotatt02" column="lotatt02"/>
  71. <result property="lotatt03" column="lotatt04"/>
  72. <result property="lotatt04" column="lotatt04"/>
  73. <result property="lotatt05" column="lotatt05"/>
  74. <result property="lotatt06" column="lotatt06"/>
  75. <result property="lotatt07" column="lotatt07"/>
  76. <result property="lotatt08" column="lotatt08"/>
  77. <result property="lotatt09" column="lotatt09"/>
  78. <result property="lotatt10" column="lotatt10"/>
  79. <result property="lotatt11" column="lotatt11"/>
  80. <result property="lotatt12" column="lotatt12"/>
  81. <result property="lotatt13" column="lotatt13"/>
  82. <result property="lotatt14" column="lotatt14"/>
  83. <result property="lotatt15" column="lotatt15"/>
  84. <result property="lotatt16" column="lotatt16"/>
  85. <result property="lotatt17" column="lotatt17"/>
  86. <result property="lotatt18" column="lotatt18"/>
  87. </resultMap>
  88. <sql id="selectActAllocationDetailsVo">
  89. select allocation_id,
  90. order_no,
  91. line_no,
  92. material,
  93. location_id,
  94. call_transaction_id,
  95. status,
  96. lotnum,
  97. qty,
  98. pick_transaction_id,
  99. pick_to_location,
  100. pick_qty,
  101. create_by,
  102. create_time,
  103. update_by,
  104. update_time,
  105. userdefine1,
  106. userdefine2,
  107. userdefine3,
  108. userdefine4
  109. from act_allocation_details
  110. </sql>
  111. <select id="selectActAllocationDetailsList" parameterType="ActAllocationDetails" resultMap="ActAllocationDetailsResult">
  112. select *
  113. from act_allocation_details
  114. <where>
  115. <if test="allocationId != null and allocationId != ''"> and allocation_id = #{allocationId}</if>
  116. <if test="orderNo != null and orderNo != ''"> and order_no like concat('%', #{orderNo}, '%')</if>
  117. <if test="locationId != null and locationId != ''"> and location_id = #{locationId}</if>
  118. <if test="material != null and material != ''"> and material like concat('%', #{material}, '%')</if>
  119. <if test="status != null and status != ''"> and status = #{status}</if>
  120. <if test="params.beginTime != null and params.beginTime != ''">
  121. AND date_format(create_time,'%y%m%d') &gt;= date_format(#{params.beginTime},'%y%m%d')
  122. </if>
  123. <if test="params.endTime != null and params.endTime != ''">
  124. AND date_format(create_time,'%y%m%d') &lt;= date_format(#{params.endTime},'%y%m%d')
  125. </if>
  126. </where>
  127. order by create_time desc
  128. </select>
  129. <select id="selectActAllocationDetailsInvLotAttList" parameterType="object" resultMap="ActAllocationDetailsInvLotAttResult">
  130. select t1.*,t3.desc1 skuName
  131. ,t2.lotatt01,t2.lotatt02,t2.lotatt03,t2.lotatt04,t2.lotatt05,t2.lotatt06
  132. ,t2.lotatt07,t2.lotatt08,t2.lotatt09,t2.lotatt10,t2.lotatt11,t2.lotatt12
  133. ,t2.lotatt13,t2.lotatt14,t2.lotatt15,t2.lotatt16,t2.lotatt17,t2.lotatt18
  134. from act_allocation_details t1
  135. left join inv_lot_att t2 ON t2.lotnum = t1.lotnum
  136. left join base_sku t3 on t3.sku = t1.material and t3.customer_id = t3.customer_id
  137. <where>
  138. <if test="allocationId != null and allocationId != ''"> and t1.allocation_id = #{allocationId}</if>
  139. <if test="locationId != null and locationId != ''"> and t1.location_id = #{locationId}</if>
  140. <if test="orderNo != null and orderNo != ''"> and t1.order_no = #{orderNo}</if>
  141. <if test="lineNo != null and lineNo != ''"> and t1.line_no = #{lineNo}</if>
  142. <if test="material != null and material != ''"> and t1.material = #{material}</if>
  143. <if test="lotnum != null and lotnum != ''"> and t1.lotnum = #{lotnum}</if>
  144. <if test="userdefine1 != null and userdefine1 != ''"> and t1.userdefine1 = #{userdefine1}</if>
  145. <if test="status != null and status != ''"> and t1.status = #{status}</if>
  146. <if test="lotatt01 != null and lotatt01 != ''"> and lotatt01 = #{lotatt01}</if>
  147. <if test="lotatt02 != null and lotatt02 != ''"> and lotatt02 = #{lotatt02}</if>
  148. <if test="lotatt03 != null and lotatt03 != ''"> and lotatt03 = #{lotatt03}</if>
  149. <if test="lotatt04 != null and lotatt04 != ''"> and lotatt04 = #{lotatt04}</if>
  150. <if test="lotatt05 != null and lotatt05 != ''"> and lotatt05 = #{lotatt05}</if>
  151. <if test="lotatt06 != null and lotatt06 != ''"> and lotatt06 = #{lotatt06}</if>
  152. <if test="lotatt07 != null and lotatt07 != ''"> and lotatt07 = #{lotatt07}</if>
  153. <if test="lotatt08 != null and lotatt08 != ''"> and lotatt08 = #{lotatt08}</if>
  154. <if test="lotatt09 != null and lotatt09 != ''"> and lotatt09 = #{lotatt09}</if>
  155. <if test="lotatt10 != null and lotatt10 != ''"> and lotatt10 = #{lotatt10}</if>
  156. <if test="lotatt11 != null and lotatt11 != ''"> and lotatt11 = #{lotatt11}</if>
  157. <if test="lotatt12 != null and lotatt12 != ''"> and lotatt12 = #{lotatt12}</if>
  158. <if test="lotatt13 != null and lotatt13 != ''"> and lotatt13 = #{lotatt13}</if>
  159. <if test="lotatt14 != null and lotatt14 != ''"> and lotatt14 = #{lotatt14}</if>
  160. <if test="lotatt15 != null and lotatt15 != ''"> and lotatt15 = #{lotatt15}</if>
  161. <if test="lotatt16 != null and lotatt16 != ''"> and lotatt16 = #{lotatt16}</if>
  162. <if test="lotatt17 != null and lotatt17 != ''"> and lotatt17 = #{lotatt17}</if>
  163. <if test="lotatt18 != null and lotatt18 != ''"> and lotatt18 = #{lotatt18}</if>
  164. </where>
  165. order by t1.create_time desc
  166. </select>
  167. <select id="selectActAllocationDetailsByAllocationId" parameterType="String" resultMap="ActAllocationDetailsResult">
  168. <include refid="selectActAllocationDetailsVo"/>
  169. where allocation_id = #{allocationId}
  170. </select>
  171. <select id="selectselectActAllocationDetailsBy" resultMap="ActAllocationDetailsResult">
  172. <include refid="selectActAllocationDetailsVo"/>
  173. where order_no = #{orderNo} and line_no = #{orderLineNo} and material = #{sku} and lotnum = #{lotnum}
  174. </select>
  175. <insert id="insertActAllocationDetails" parameterType="ActAllocationDetails">
  176. insert into act_allocation_details
  177. <trim prefix="(" suffix=")" suffixOverrides=",">
  178. <if test="allocationId != null">allocation_id,</if>
  179. <if test="orderNo != null and orderNo != ''">order_no,</if>
  180. <if test="lineNo != null">line_no,</if>
  181. <if test="material != null and material != ''">material,</if>
  182. <if test="locationId != null">location_id,</if>
  183. <if test="callTransactionId != null">call_transaction_id,</if>
  184. <if test="status != null">status,</if>
  185. <if test="lotnum != null">lotnum,</if>
  186. <if test="qty != null">qty,</if>
  187. <if test="pickTransactionId != null">pick_transaction_id,</if>
  188. <if test="pickToLocation != null">pick_to_location,</if>
  189. <if test="pickQty != null">pick_qty,</if>
  190. <if test="createBy != null">create_by,</if>
  191. <if test="createTime != null">create_time,</if>
  192. <if test="updateBy != null">update_by,</if>
  193. <if test="updateTime != null">update_time,</if>
  194. <if test="userdefine1 != null">userdefine1,</if>
  195. <if test="userdefine2 != null">userdefine2,</if>
  196. <if test="userdefine3 != null">userdefine3,</if>
  197. <if test="userdefine4 != null">userdefine4,</if>
  198. </trim>
  199. <trim prefix="values (" suffix=")" suffixOverrides=",">
  200. <if test="allocationId != null">#{allocationId},</if>
  201. <if test="orderNo != null and orderNo != ''">#{orderNo},</if>
  202. <if test="lineNo != null">#{lineNo},</if>
  203. <if test="material != null and material != ''">#{material},</if>
  204. <if test="locationId != null">#{locationId},</if>
  205. <if test="callTransactionId != null">#{callTransactionId},</if>
  206. <if test="status != null">#{status},</if>
  207. <if test="lotnum != null">#{lotnum},</if>
  208. <if test="qty != null">#{qty},</if>
  209. <if test="pickTransactionId != null">#{pickTransactionId},</if>
  210. <if test="pickToLocation != null">#{pickToLocation},</if>
  211. <if test="pickQty != null">#{pickQty},</if>
  212. <if test="createBy != null">#{createBy},</if>
  213. <if test="createTime != null">#{createTime},</if>
  214. <if test="updateBy != null">#{updateBy},</if>
  215. <if test="updateTime != null">#{updateTime},</if>
  216. <if test="userdefine1 != null">#{userdefine1},</if>
  217. <if test="userdefine2 != null">#{userdefine2},</if>
  218. <if test="userdefine3 != null">#{userdefine3},</if>
  219. <if test="userdefine4 != null">#{userdefine4},</if>
  220. </trim>
  221. </insert>
  222. <update id="updateActAllocationDetails" parameterType="ActAllocationDetails">
  223. update act_allocation_details
  224. <trim prefix="SET" suffixOverrides=",">
  225. <if test="orderNo != null and orderNo != ''">order_no = #{orderNo},</if>
  226. <if test="lineNo != null">line_no = #{lineNo},</if>
  227. <if test="material != null and material != ''">material = #{material},</if>
  228. <if test="locationId != null">location_id = #{locationId},</if>
  229. <if test="callTransactionId != null">call_transaction_id = #{callTransactionId},</if>
  230. <if test="status != null">status = #{status},</if>
  231. <if test="lotnum != null">lotnum = #{lotnum},</if>
  232. <if test="qty != null">qty = #{qty},</if>
  233. <if test="pickTransactionId != null">pick_transaction_id = #{pickTransactionId},</if>
  234. <if test="pickToLocation != null">pick_to_location = #{pickToLocation},</if>
  235. <if test="pickQty != null">pick_qty = #{pickQty},</if>
  236. <if test="createBy != null">create_by = #{createBy},</if>
  237. <if test="createTime != null">create_time = #{createTime},</if>
  238. <if test="updateBy != null">update_by = #{updateBy},</if>
  239. <if test="updateTime != null">update_time = #{updateTime},</if>
  240. <if test="userdefine1 != null">userdefine1 = #{userdefine1},</if>
  241. <if test="userdefine2 != null">userdefine2 = #{userdefine2},</if>
  242. <if test="userdefine3 != null">userdefine3 = #{userdefine3},</if>
  243. <if test="userdefine4 != null">userdefine4 = #{userdefine4},</if>
  244. </trim>
  245. where allocation_id = #{allocationId}
  246. </update>
  247. <delete id="deleteActAllocationDetailsByAllocationId" parameterType="String">
  248. delete
  249. from act_allocation_details
  250. where allocation_id = #{allocationId}
  251. </delete>
  252. <delete id="deleteActAllocationDetailsByAllocationIds" parameterType="String">
  253. delete from act_allocation_details where allocation_id in
  254. <foreach item="allocationId" collection="array" open="(" separator="," close=")">
  255. #{allocationId}
  256. </foreach>
  257. </delete>
  258. <select id="queryAllocationDetailsByPalletNo" parameterType="String" resultMap="ActAllocationDetailsResult">
  259. select al.*
  260. from act_allocation_details al
  261. where al.userdefine1 = #{palletNo}
  262. </select>
  263. <select id="queryAllocationDetailsToPickByPalletNo" parameterType="String" resultMap="ActAllocationDetailsResult">
  264. select t1.*
  265. from act_allocation_details t1
  266. left join inv_lot_att t2 on t2.lotnum = t1.lotnum
  267. where t2.lotatt07 = #{palletNo} and t1.`status` = '21'
  268. </select>
  269. <select id="queryAllocationDetailsByOrderNo" parameterType="String" resultMap="ActAllocationDetailsResult">
  270. select al.*
  271. from act_allocation_details al
  272. where al.order_no = #{orderNo}
  273. and status in (10, 20, 30, 40)
  274. </select>
  275. <update id="updateAllocationDetailsLocationIdByPalletNo">
  276. update act_allocation_details set location_id = #{locationId} where userdefine1 = #{palletNo}
  277. </update>
  278. </mapper>