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 supId;
/**
*
*/
private String productName;
} }

@ -28,8 +28,8 @@
(select `name` from auth_space where `code` = irm.invSpaceCode and invCode = irm.invCode) invSpaceName, (select `name` from auth_space where `code` = irm.invSpaceCode and invCode = irm.invCode) invSpaceName,
(select `name` from basic_corp where erpId = irm.supId) supName (select `name` from basic_corp where erpId = irm.supId) supName
from inv_remind_msg irm from inv_remind_msg irm
left join basic_udirel bu on bu.id = irm.relId left join basic_udirel bu on bu.id = irm.relId
left join basic_products bp on bp.uuid = bu.uuid left join basic_products bp on bp.uuid = bu.uuid
<where> <where>
<if test="relId != null and relId != ''"> <if test="relId != null and relId != ''">
AND irm.relId = #{relId} AND irm.relId = #{relId}
@ -50,7 +50,7 @@
AND irm.ignoreStatus = #{ignoreStatus} AND irm.ignoreStatus = #{ignoreStatus}
</if> </if>
<if test="ggxh != null and ggxh != ''"> <if test="ggxh != null and ggxh != ''">
AND bp.ggxh = #{ggxh} AND bp.ggxh like concat('%', #{ggxh}, '%')
</if> </if>
<if test="type != null and type != ''"> <if test="type != null and type != ''">
AND type = #{type} AND type = #{type}
@ -58,6 +58,9 @@
<if test="supId != null"> <if test="supId != null">
AND irm.supId = #{supId} AND irm.supId = #{supId}
</if> </if>
<if test="productName != null and productName != ''">
AND bp.cpmctymc like concat('%', #{productName}, '%')
</if>
</where> </where>
order by irm.updateTime desc order by irm.updateTime desc
</select> </select>

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

Loading…
Cancel
Save