Browse Source

2026-01-13

过站采集页面的机台工作台的【材料上机】【换料】对话框在【确定】后要打开【过程检验】对话框
master
fengyuan_yang 2 months ago
parent
commit
1028535092
  1. 6
      src/main/resources/mapper/report/InboundNotificationReportMapper.xml

6
src/main/resources/mapper/report/InboundNotificationReportMapper.xml

@ -69,6 +69,9 @@
<if test="query.orderStatus != null and query.orderStatus != ''"> <if test="query.orderStatus != null and query.orderStatus != ''">
AND h.order_status = #{query.orderStatus} AND h.order_status = #{query.orderStatus}
</if> </if>
<if test="query.orderStatus == null or query.orderStatus == ''">
AND h.order_status IN ('草稿', '编辑中', '待入库', '已入库', '已关闭')
</if>
<if test="query.supplierId != null and query.supplierId != ''"> <if test="query.supplierId != null and query.supplierId != ''">
AND h.supplier_id LIKE '%' + #{query.supplierId} + '%' AND h.supplier_id LIKE '%' + #{query.supplierId} + '%'
</if> </if>
@ -119,6 +122,9 @@
<if test="query.orderStatus != null and query.orderStatus != ''"> <if test="query.orderStatus != null and query.orderStatus != ''">
AND h.order_status = #{query.orderStatus} AND h.order_status = #{query.orderStatus}
</if> </if>
<if test="query.orderStatus == null or query.orderStatus == ''">
AND h.order_status IN ('草稿', '编辑中', '待入库', '已入库', '已关闭')
</if>
<if test="query.supplierId != null and query.supplierId != ''"> <if test="query.supplierId != null and query.supplierId != ''">
AND h.supplier_id LIKE '%' + #{query.supplierId} + '%' AND h.supplier_id LIKE '%' + #{query.supplierId} + '%'
</if> </if>

Loading…
Cancel
Save