PDA工作台出库交接查询
This commit is contained in:
@@ -42,6 +42,7 @@ PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN"
|
||||
<result property="recheckQuantity" column="recheckQuantity" />
|
||||
<result property="displacementQuantity" column="displacementQuantity" />
|
||||
<result property="stockQuantity" column="stockQuantity" />
|
||||
<result property="handoverQuantity" column="handoverQuantity" />
|
||||
</resultMap>
|
||||
|
||||
|
||||
@@ -274,7 +275,18 @@ PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN"
|
||||
AND audit_status = 3
|
||||
AND investigation_status < 4
|
||||
and operators_by = #{operatorsBy}
|
||||
) stockQuantity
|
||||
) stockQuantity,
|
||||
(
|
||||
SELECT
|
||||
COUNT(1)
|
||||
FROM
|
||||
handover_task_order
|
||||
WHERE
|
||||
del_flag = 1
|
||||
AND task_distribution = 1
|
||||
AND status = 1
|
||||
AND operators_by = #{operatorsBy}
|
||||
) handoverQuantity
|
||||
|
||||
</select>
|
||||
<select id="querySum" parameterType="com.mhd.wms.domain.deliveTask.repository.todo.DeliveTaskDO" resultMap="DeliveTaskResultTabSum">
|
||||
|
||||
Reference in New Issue
Block a user