Merge remote-tracking branch 'origin/master'

master
郑明梁 2 years ago
commit 0267226891

@ -59,4 +59,8 @@ public class FilterInvRemindMsgRequest extends ListPageRequest {
*/
private String supId;
/**
*
*/
private String productName;
}

@ -50,7 +50,7 @@
AND irm.ignoreStatus = #{ignoreStatus}
</if>
<if test="ggxh != null and ggxh != ''">
AND bp.ggxh = #{ggxh}
AND bp.ggxh like concat('%', #{ggxh}, '%')
</if>
<if test="type != null and type != ''">
AND type = #{type}
@ -58,6 +58,9 @@
<if test="supId != null">
AND irm.supId = #{supId}
</if>
<if test="productName != null and productName != ''">
AND bp.cpmctymc like concat('%', #{productName}, '%')
</if>
</where>
order by irm.updateTime desc
</select>

@ -252,9 +252,9 @@
ip.productionDate,
ip.expireDate,
ip.supId,
sum(ip.inCount) incount,
sum(ip.outCount) outCount,
sum(ip.reCount) reCount
ip.inCount,
ip.outCount,
ip.reCount
from inv_product ip
left join inv_product_detail ipd
on ip.relIdFk = ipd.relId and ifnull(ip.batchNo, 'empty') = ifnull(ipd.batchNo, 'empty')

Loading…
Cancel
Save