123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216 |
- <?xml version="1.0" encoding="UTF-8" ?>
- <!DOCTYPE mapper
- PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN"
- "http://mybatis.org/dtd/mybatis-3-mapper.dtd">
- <mapper namespace="com.ruoyi.inventory.mapper.TbAssetInventoryMapper">
- <resultMap type="TbAssetInventory" id="TbAssetInventoryResult">
- <result property="id" column="id" />
- <result property="orderNumber" column="order_number" />
- <result property="name" column="name" />
- <result property="inventoryDepartment" column="inventory_department" />
- <result property="inventoryBy" column="inventory_by" />
- <result property="inventoryDate" column="inventory_date" />
- <result property="inventoryLocation" column="inventory_location" />
- <result property="inventoryStatus" column="inventory_status" />
- <result property="inventoryResult" column="inventory_result" />
- <result property="recordStatus" column="record_status" />
- <result property="remark" column="remark" />
- <result property="createdTime" column="created_time" />
- <result property="updatedTime" column="updated_time" />
- </resultMap>
- <sql id="selectTbAssetInventoryVo">
- 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
- </sql>
- <sql id="selectTbAssetInventory">
- select
- a.id,
- a.order_number orderNumber,
- a.name,
- a.inventory_department inventoryDepartment,
- b.dept_name inventoryDepartmentName,
- a.inventory_by inventoryBy,
- a.inventory_date inventoryDate,
- a.inventory_location inventoryLocation,
- a.inventory_status inventoryStatus,
- a.inventory_result inventoryResult,
- a.record_status recordStatus,
- a.remark,
- a.created_time createdTime,
- a.updated_time updatedTime
- from tb_asset_inventory a
- LEFT JOIN sys_dept b ON b.dept_id = a.inventory_department
- </sql>
- <select id="selectTbAssetInventoryList" parameterType="TbAssetInventory" resultType="TbAssetInventory">
- <include refid="selectTbAssetInventory"/>
- <where>
- <if test="orderNumber != null and orderNumber != ''"> and a.order_number = #{orderNumber}</if>
- <if test="name != null and name != ''"> and a.name like concat('%', #{name}, '%')</if>
- <if test="inventoryDepartment != null and inventoryDepartment != ''"> and a.inventory_department = #{inventoryDepartment} OR a.inventory_department in (
- SELECT DISTINCTROW dept_id from sys_dept WHERE ancestors like concat('%', #{inventoryDepartment}, '%')
- )</if>
- <if test="inventoryBy != null and inventoryBy != ''"> and a.inventory_by = #{inventoryBy}</if>
- <if test="inventoryDate != null "> and a.inventory_date = #{inventoryDate}</if>
- <if test="inventoryLocation != null and inventoryLocation != ''"> and a.inventory_location like concat('%', #{inventoryLocation}, '%')</if>
- <if test="inventoryStatus != null "> and a.inventory_status = #{inventoryStatus}</if>
- <if test="inventoryResult != null "> and a.inventory_result = #{inventoryResult}</if>
- <if test="recordStatus != null "> and a.record_status = #{recordStatus}</if>
- </where>
- </select>
- <select id="selectTbAssetInventoryListBy" parameterType="string" resultType="TbAssetInventory">
- <include refid="selectTbAssetInventory"/>
- where a.inventory_status = "2"
- and a.inventory_result != "0"
- <if test="deptId != null and deptId != ''">and inventory_department = #{deptId}</if>
- order by a.updated_time DESC
- </select>
- <select id="selectTbAssetInventoryById" parameterType="Long" resultType="TbAssetInventory">
- <include refid="selectTbAssetInventory"/>
- where a.id = #{id}
- </select>
- <select id="selectOrderNumberByIds" parameterType="Long" resultType="String">
- select DISTINCT order_number from tb_asset_inventory
- where id in
- <foreach item="id" collection="ids" open="(" separator="," close=")">
- #{id}
- </foreach>
- </select>
- <select id="selectTbAssetInventoryByNumber" parameterType="String" resultType="TbAssetInventory">
- <include refid="selectTbAssetInventory"/>
- where a.order_number = #{orderNumber}
- </select>
- <insert id="insertTbAssetInventory" parameterType="TbAssetInventory" useGeneratedKeys="true" keyProperty="id">
- insert into tb_asset_inventory
- <trim prefix="(" suffix=")" suffixOverrides=",">
- <if test="orderNumber != null and orderNumber != ''">order_number,</if>
- <if test="name != null and name != ''">name,</if>
- <if test="inventoryDepartment != null and inventoryDepartment != ''">inventory_department,</if>
- <if test="inventoryBy != null and inventoryBy != ''">inventory_by,</if>
- <if test="inventoryDate != null">inventory_date,</if>
- <if test="inventoryLocation != null and inventoryLocation != ''">inventory_location,</if>
- <if test="inventoryStatus != null">inventory_status,</if>
- <if test="inventoryResult != null">inventory_result,</if>
- <if test="recordStatus != null">record_status,</if>
- <if test="remark != null">remark,</if>
- <if test="createdTime != null">created_time,</if>
- <if test="updatedTime != null">updated_time,</if>
- </trim>
- <trim prefix="values (" suffix=")" suffixOverrides=",">
- <if test="orderNumber != null and orderNumber != ''">#{orderNumber},</if>
- <if test="name != null and name != ''">#{name},</if>
- <if test="inventoryDepartment != null and inventoryDepartment != ''">#{inventoryDepartment},</if>
- <if test="inventoryBy != null and inventoryBy != ''">#{inventoryBy},</if>
- <if test="inventoryDate != null">#{inventoryDate},</if>
- <if test="inventoryLocation != null and inventoryLocation != ''">#{inventoryLocation},</if>
- <if test="inventoryStatus != null">#{inventoryStatus},</if>
- <if test="inventoryResult != null">#{inventoryResult},</if>
- <if test="recordStatus != null">#{recordStatus},</if>
- <if test="remark != null">#{remark},</if>
- <if test="createdTime != null">#{createdTime},</if>
- <if test="updatedTime != null">#{updatedTime},</if>
- </trim>
- </insert>
- <update id="updateTbAssetInventory" parameterType="TbAssetInventory">
- update tb_asset_inventory
- <trim prefix="SET" suffixOverrides=",">
- <if test="orderNumber != null and orderNumber != ''">order_number = #{orderNumber},</if>
- <if test="name != null and name != ''">name = #{name},</if>
- <if test="inventoryDepartment != null and inventoryDepartment != ''">inventory_department = #{inventoryDepartment},</if>
- <if test="inventoryBy != null and inventoryBy != ''">inventory_by = #{inventoryBy},</if>
- <if test="inventoryDate != null">inventory_date = #{inventoryDate},</if>
- <if test="inventoryLocation != null and inventoryLocation != ''">inventory_location = #{inventoryLocation},</if>
- <if test="inventoryStatus != null">inventory_status = #{inventoryStatus},</if>
- <if test="inventoryResult != null">inventory_result = #{inventoryResult},</if>
- <if test="recordStatus != null">record_status = #{recordStatus},</if>
- <if test="remark != null">remark = #{remark},</if>
- <if test="createdTime != null">created_time = #{createdTime},</if>
- <if test="updatedTime != null">updated_time = #{updatedTime},</if>
- </trim>
- where id = #{id}
- </update>
- <delete id="deleteTbAssetInventoryById" parameterType="Long">
- delete from tb_asset_inventory where id = #{id}
- </delete>
- <delete id="deleteTbAssetInventoryByIds" parameterType="String">
- delete from tb_asset_inventory where id in
- <foreach item="id" collection="array" open="(" separator="," close=")">
- #{id}
- </foreach>
- </delete>
- <select id="selectTbAssetInventoryDTOList" parameterType="com.ruoyi.inventory.domain.dto.TbAssetInventoryDTO" resultType="com.ruoyi.inventory.domain.dto.TbAssetInventoryDTO">
- select
- a.id,
- a.order_number orderNumber,
- a.name,
- b.dept_name deptName,
- a.inventory_department inventoryDepartment,
- a.inventory_by inventoryBy,
- a.inventory_date inventoryDate,
- a.inventory_location inventoryLocation,
- a.inventory_status inventoryStatus,
- a.inventory_result inventoryResult,
- a.record_status recordStatus,
- a.remark,
- a.created_time createdTime,
- a.updated_time updatedTime,
- c.name locationName
- from
- tb_asset_inventory a
- left join
- sys_dept b
- on
- a.inventory_department = b.dept_id
- left join
- tb_location c
- on
- a.inventory_location = c.number
- <where>
- <if test="orderNumber != null and orderNumber != ''"> and a.order_number = #{orderNumber}</if>
- <if test="name != null and name != ''"> and name like a.concat('%', #{name}, '%')</if>
- <if test="inventoryDepartment != null and inventoryDepartment != ''"> and a.inventory_department = #{inventoryDepartment}</if>
- <if test="inventoryBy != null and inventoryBy != ''"> and a.inventory_by = #{inventoryBy}</if>
- <if test="inventoryDate != null "> and a.inventory_date = #{inventoryDate}</if>
- <if test="inventoryLocation != null and inventoryLocation != ''"> and a.inventory_location = #{inventoryLocation}</if>
- <if test="inventoryStatus != null "> and a.inventory_status = #{inventoryStatus}</if>
- <if test="inventoryResult != null "> and a.inventory_result = #{inventoryResult}</if>
- <if test="recordStatus != null "> and a.record_status = #{recordStatus}</if>
- </where>
- </select>
- <select id="getDepAssetByOrderNumber" parameterType="String" resultType="com.ruoyi.inventory.domain.dto.DepAssetDetailDto">
- select inventory_metadata assetData,inventory_quantity inventoryQuantity
- from tb_inventory_detail
- where order_number = #{orderNumber} and inventory_status = 1
- </select>
- <select id="getOrderNumberByDepId" parameterType="String" resultType="com.ruoyi.inventory.domain.dto.AssetInvOrderDto">
- select inv.order_number orderNumber,inv.inventory_date inventDate,dep.dept_name deptName
- from tb_asset_inventory inv
- left join sys_dept dep on inv.inventory_department = dep.dept_id
- where inv.inventory_department = #{depId} and inv.inventory_status = 2 and inv.inventory_result!=0
- and inv.inventory_result != "0"
- order by inv.inventory_date desc
- </select>
- <!-- limit #{whichOne},1 -->
- <select id="getChildDeptId" parameterType="String" resultType="String">
- select dept_id
- from sys_dept
- where dept_id = #{deptId} OR parent_id = #{deptId} OR ancestors like concat('%,', #{deptId}, ',%')
- </select>
- </mapper>
|