Browse Source

生产订单查询

master
常熟吴彦祖 5 months ago
parent
commit
a20617fe5d
  1. 6
      src/main/resources/mapper/shopOrder/ShopOrderMapper.xml

6
src/main/resources/mapper/shopOrder/ShopOrderMapper.xml

@ -318,6 +318,12 @@
<if test=" query.partNo != null and query.partNo != ''">
AND T.PartNo like #{query.partNo}
</if>
<if test=" query.statusList != null and query.statusList.size > 0 ">
AND T.Status in
<foreach item="item" collection="query.statusList" open="(" separator="," close=")">
#{item}
</foreach>
</if>
<if test=" query.partDescription != null and query.partDescription != ''">
AND p.PartDescription like #{query.partDescription}
</if>

Loading…
Cancel
Save