Browse Source

2026-03-20

订单产出标签统计页面 增加查询条件
master
fengyuan_yang 3 months ago
parent
commit
1cda52ea2d
  1. 9
      src/main/resources/mapper/shopOrder/ProductionReportMapper.xml

9
src/main/resources/mapper/shopOrder/ProductionReportMapper.xml

@ -453,6 +453,9 @@
<if test=" rollType != null and rollType != ''">
AND A.RollType = #{rollType}
</if>
<if test=" createdby != null and createdby != ''">
AND A.Createdby like '%' + #{createdby} + '%'
</if>
</where>
ORDER BY A.CreatedDate DESC
<if test="page != null and limit != null">
@ -527,6 +530,9 @@
<if test=" rollType != null and rollType != ''">
AND A.RollType = #{rollType}
</if>
<if test=" createdby != null and createdby != ''">
AND A.Createdby like '%' + #{createdby} + '%'
</if>
</where>
</select>
@ -579,6 +585,9 @@
<if test=" rollType != null and rollType != ''">
AND A.RollType = #{rollType}
</if>
<if test=" createdby != null and createdby != ''">
AND A.Createdby like '%' + #{createdby} + '%'
</if>
</where>
</select>
</mapper>
Loading…
Cancel
Save