TbAssetInventoryMapper.xml 11 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216
  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.inventory.mapper.TbAssetInventoryMapper">
  6. <resultMap type="TbAssetInventory" id="TbAssetInventoryResult">
  7. <result property="id" column="id" />
  8. <result property="orderNumber" column="order_number" />
  9. <result property="name" column="name" />
  10. <result property="inventoryDepartment" column="inventory_department" />
  11. <result property="inventoryBy" column="inventory_by" />
  12. <result property="inventoryDate" column="inventory_date" />
  13. <result property="inventoryLocation" column="inventory_location" />
  14. <result property="inventoryStatus" column="inventory_status" />
  15. <result property="inventoryResult" column="inventory_result" />
  16. <result property="recordStatus" column="record_status" />
  17. <result property="remark" column="remark" />
  18. <result property="createdTime" column="created_time" />
  19. <result property="updatedTime" column="updated_time" />
  20. </resultMap>
  21. <sql id="selectTbAssetInventoryVo">
  22. select id, order_number, name, inventory_department, inventory_by, inventory_date, inventory_location, inventory_status, inventory_result, record_status, remark, created_time, updated_time from tb_asset_inventory
  23. </sql>
  24. <sql id="selectTbAssetInventory">
  25. select
  26. a.id,
  27. a.order_number orderNumber,
  28. a.name,
  29. a.inventory_department inventoryDepartment,
  30. b.dept_name inventoryDepartmentName,
  31. a.inventory_by inventoryBy,
  32. a.inventory_date inventoryDate,
  33. a.inventory_location inventoryLocation,
  34. a.inventory_status inventoryStatus,
  35. a.inventory_result inventoryResult,
  36. a.record_status recordStatus,
  37. a.remark,
  38. a.created_time createdTime,
  39. a.updated_time updatedTime
  40. from tb_asset_inventory a
  41. LEFT JOIN sys_dept b ON b.dept_id = a.inventory_department
  42. </sql>
  43. <select id="selectTbAssetInventoryList" parameterType="TbAssetInventory" resultType="TbAssetInventory">
  44. <include refid="selectTbAssetInventory"/>
  45. <where>
  46. <if test="orderNumber != null and orderNumber != ''"> and a.order_number = #{orderNumber}</if>
  47. <if test="name != null and name != ''"> and a.name like concat('%', #{name}, '%')</if>
  48. <if test="inventoryDepartment != null and inventoryDepartment != ''"> and a.inventory_department = #{inventoryDepartment} OR a.inventory_department in (
  49. SELECT DISTINCTROW dept_id from sys_dept WHERE ancestors like concat('%', #{inventoryDepartment}, '%')
  50. )</if>
  51. <if test="inventoryBy != null and inventoryBy != ''"> and a.inventory_by = #{inventoryBy}</if>
  52. <if test="inventoryDate != null "> and a.inventory_date = #{inventoryDate}</if>
  53. <if test="inventoryLocation != null and inventoryLocation != ''"> and a.inventory_location like concat('%', #{inventoryLocation}, '%')</if>
  54. <if test="inventoryStatus != null "> and a.inventory_status = #{inventoryStatus}</if>
  55. <if test="inventoryResult != null "> and a.inventory_result = #{inventoryResult}</if>
  56. <if test="recordStatus != null "> and a.record_status = #{recordStatus}</if>
  57. </where>
  58. </select>
  59. <select id="selectTbAssetInventoryListBy" parameterType="string" resultType="TbAssetInventory">
  60. <include refid="selectTbAssetInventory"/>
  61. where a.inventory_status = "2"
  62. and a.inventory_result != "0"
  63. <if test="deptId != null and deptId != ''">and inventory_department = #{deptId}</if>
  64. order by a.updated_time DESC
  65. </select>
  66. <select id="selectTbAssetInventoryById" parameterType="Long" resultType="TbAssetInventory">
  67. <include refid="selectTbAssetInventory"/>
  68. where a.id = #{id}
  69. </select>
  70. <select id="selectOrderNumberByIds" parameterType="Long" resultType="String">
  71. select DISTINCT order_number from tb_asset_inventory
  72. where id in
  73. <foreach item="id" collection="ids" open="(" separator="," close=")">
  74. #{id}
  75. </foreach>
  76. </select>
  77. <select id="selectTbAssetInventoryByNumber" parameterType="String" resultType="TbAssetInventory">
  78. <include refid="selectTbAssetInventory"/>
  79. where a.order_number = #{orderNumber}
  80. </select>
  81. <insert id="insertTbAssetInventory" parameterType="TbAssetInventory" useGeneratedKeys="true" keyProperty="id">
  82. insert into tb_asset_inventory
  83. <trim prefix="(" suffix=")" suffixOverrides=",">
  84. <if test="orderNumber != null and orderNumber != ''">order_number,</if>
  85. <if test="name != null and name != ''">name,</if>
  86. <if test="inventoryDepartment != null and inventoryDepartment != ''">inventory_department,</if>
  87. <if test="inventoryBy != null and inventoryBy != ''">inventory_by,</if>
  88. <if test="inventoryDate != null">inventory_date,</if>
  89. <if test="inventoryLocation != null and inventoryLocation != ''">inventory_location,</if>
  90. <if test="inventoryStatus != null">inventory_status,</if>
  91. <if test="inventoryResult != null">inventory_result,</if>
  92. <if test="recordStatus != null">record_status,</if>
  93. <if test="remark != null">remark,</if>
  94. <if test="createdTime != null">created_time,</if>
  95. <if test="updatedTime != null">updated_time,</if>
  96. </trim>
  97. <trim prefix="values (" suffix=")" suffixOverrides=",">
  98. <if test="orderNumber != null and orderNumber != ''">#{orderNumber},</if>
  99. <if test="name != null and name != ''">#{name},</if>
  100. <if test="inventoryDepartment != null and inventoryDepartment != ''">#{inventoryDepartment},</if>
  101. <if test="inventoryBy != null and inventoryBy != ''">#{inventoryBy},</if>
  102. <if test="inventoryDate != null">#{inventoryDate},</if>
  103. <if test="inventoryLocation != null and inventoryLocation != ''">#{inventoryLocation},</if>
  104. <if test="inventoryStatus != null">#{inventoryStatus},</if>
  105. <if test="inventoryResult != null">#{inventoryResult},</if>
  106. <if test="recordStatus != null">#{recordStatus},</if>
  107. <if test="remark != null">#{remark},</if>
  108. <if test="createdTime != null">#{createdTime},</if>
  109. <if test="updatedTime != null">#{updatedTime},</if>
  110. </trim>
  111. </insert>
  112. <update id="updateTbAssetInventory" parameterType="TbAssetInventory">
  113. update tb_asset_inventory
  114. <trim prefix="SET" suffixOverrides=",">
  115. <if test="orderNumber != null and orderNumber != ''">order_number = #{orderNumber},</if>
  116. <if test="name != null and name != ''">name = #{name},</if>
  117. <if test="inventoryDepartment != null and inventoryDepartment != ''">inventory_department = #{inventoryDepartment},</if>
  118. <if test="inventoryBy != null and inventoryBy != ''">inventory_by = #{inventoryBy},</if>
  119. <if test="inventoryDate != null">inventory_date = #{inventoryDate},</if>
  120. <if test="inventoryLocation != null and inventoryLocation != ''">inventory_location = #{inventoryLocation},</if>
  121. <if test="inventoryStatus != null">inventory_status = #{inventoryStatus},</if>
  122. <if test="inventoryResult != null">inventory_result = #{inventoryResult},</if>
  123. <if test="recordStatus != null">record_status = #{recordStatus},</if>
  124. <if test="remark != null">remark = #{remark},</if>
  125. <if test="createdTime != null">created_time = #{createdTime},</if>
  126. <if test="updatedTime != null">updated_time = #{updatedTime},</if>
  127. </trim>
  128. where id = #{id}
  129. </update>
  130. <delete id="deleteTbAssetInventoryById" parameterType="Long">
  131. delete from tb_asset_inventory where id = #{id}
  132. </delete>
  133. <delete id="deleteTbAssetInventoryByIds" parameterType="String">
  134. delete from tb_asset_inventory where id in
  135. <foreach item="id" collection="array" open="(" separator="," close=")">
  136. #{id}
  137. </foreach>
  138. </delete>
  139. <select id="selectTbAssetInventoryDTOList" parameterType="com.ruoyi.inventory.domain.dto.TbAssetInventoryDTO" resultType="com.ruoyi.inventory.domain.dto.TbAssetInventoryDTO">
  140. select
  141. a.id,
  142. a.order_number orderNumber,
  143. a.name,
  144. b.dept_name deptName,
  145. a.inventory_department inventoryDepartment,
  146. a.inventory_by inventoryBy,
  147. a.inventory_date inventoryDate,
  148. a.inventory_location inventoryLocation,
  149. a.inventory_status inventoryStatus,
  150. a.inventory_result inventoryResult,
  151. a.record_status recordStatus,
  152. a.remark,
  153. a.created_time createdTime,
  154. a.updated_time updatedTime,
  155. c.name locationName
  156. from
  157. tb_asset_inventory a
  158. left join
  159. sys_dept b
  160. on
  161. a.inventory_department = b.dept_id
  162. left join
  163. tb_location c
  164. on
  165. a.inventory_location = c.number
  166. <where>
  167. <if test="orderNumber != null and orderNumber != ''"> and a.order_number = #{orderNumber}</if>
  168. <if test="name != null and name != ''"> and name like a.concat('%', #{name}, '%')</if>
  169. <if test="inventoryDepartment != null and inventoryDepartment != ''"> and a.inventory_department = #{inventoryDepartment}</if>
  170. <if test="inventoryBy != null and inventoryBy != ''"> and a.inventory_by = #{inventoryBy}</if>
  171. <if test="inventoryDate != null "> and a.inventory_date = #{inventoryDate}</if>
  172. <if test="inventoryLocation != null and inventoryLocation != ''"> and a.inventory_location = #{inventoryLocation}</if>
  173. <if test="inventoryStatus != null "> and a.inventory_status = #{inventoryStatus}</if>
  174. <if test="inventoryResult != null "> and a.inventory_result = #{inventoryResult}</if>
  175. <if test="recordStatus != null "> and a.record_status = #{recordStatus}</if>
  176. </where>
  177. </select>
  178. <select id="getDepAssetByOrderNumber" parameterType="String" resultType="com.ruoyi.inventory.domain.dto.DepAssetDetailDto">
  179. select inventory_metadata assetData,inventory_quantity inventoryQuantity
  180. from tb_inventory_detail
  181. where order_number = #{orderNumber} and inventory_status = 1
  182. </select>
  183. <select id="getOrderNumberByDepId" parameterType="String" resultType="com.ruoyi.inventory.domain.dto.AssetInvOrderDto">
  184. select inv.order_number orderNumber,inv.inventory_date inventDate,dep.dept_name deptName
  185. from tb_asset_inventory inv
  186. left join sys_dept dep on inv.inventory_department = dep.dept_id
  187. where inv.inventory_department = #{depId} and inv.inventory_status = 2 and inv.inventory_result!=0
  188. and inv.inventory_result != "0"
  189. order by inv.inventory_date desc
  190. </select>
  191. <!-- limit #{whichOne},1 -->
  192. <select id="getChildDeptId" parameterType="String" resultType="String">
  193. select dept_id
  194. from sys_dept
  195. where dept_id = #{deptId} OR parent_id = #{deptId} OR ancestors like concat('%,', #{deptId}, ',%')
  196. </select>
  197. </mapper>