Merge remote-tracking branch 'origin/master'

master
anthonywj 2 years ago
commit fece4d7b8d

@ -34,4 +34,7 @@ public class FilterCertRemindMsgRequest extends ListPageRequest {
*/
private Integer ignoreStatus;
// 证书名称
private String certName;
}

@ -13,7 +13,7 @@
<if test="id != '' and id != null">
AND id = #{id}
</if>
<if test="status != '' and status != null">
<if test=" status != null">
AND status = #{status}
</if>
</where>

@ -26,14 +26,14 @@
auth_warehouse.name invName,
ip.deptCode,
ip.invCode,
as.name spaceName
s.name spaceName
from inv_product ip
inner join basic_udirel on ip.relIdFk = basic_udirel.id
inner join basic_products bp on basic_udirel.uuid = bp.uuid
left join basic_corp on ip.supId = basic_corp.erpId
left join auth_dept on auth_dept.code = ip.deptCode
left join auth_warehouse on auth_warehouse.code = ip.invCode
left join auth_space `as` on ip.invSpaceCode = `as`.code
left join auth_space s on ip.invSpaceCode = s.code
<where>
bp.diType = 1
<if test="cpmctymc != null and cpmctymc != ''">
@ -85,7 +85,7 @@
</foreach>
</if>
</where>
GROUP BY ip.relIdFk, ip.batchNo
GROUP BY ip.relIdFk, ip.batchNo, ip.supId
order by ip.updateTime desc
</select>

@ -7,6 +7,8 @@
(select `name` from sup_cert s where s.code = m.code and s.CustomerId = m.idFk) certName
from sup_cert_remind_msg m
left join sup_company c on m.idFk = c.customerId
left join sup_cert bc on bc.code = m.code
<where>
<if test="supId != null and supId != ''">
AND m.idFk = #{supId}
@ -23,6 +25,10 @@
<if test="type != null">
AND m.type = #{type}
</if>
<if test="certName != null and certName != ''">
AND bc.name like concat('%', #{certName}, '%')
</if>
</where>
order by m.updateTime desc
</select>
@ -33,6 +39,7 @@
(select `name` from sup_cert s where s.code = m.code and s.manufacturerIdFk = m.idFk) certName
from sup_cert_remind_msg m
left join sup_manufacturer c on m.idFk = c.customerId
left join sup_cert bc on bc.code = m.code
<where>
<if test="supId != null and supId != ''">
AND c.customerId = #{supId}
@ -49,6 +56,10 @@
<if test="type != null">
AND m.type = #{type}
</if>
<if test="certName != null and certName != ''">
AND bc.name like concat('%', #{certName}, '%')
</if>
</where>
order by m.updateTime desc
</select>
@ -59,6 +70,8 @@
(select `name` from sup_cert s where s.code = m.code and s.productIdFk = m.idFk) certName
from sup_cert_remind_msg m
left join sup_product c on m.idFk = c.productId
left join sup_cert bc on bc.code = m.code
<where>
<if test="supId != null and supId != ''">
AND c.customerId = #{supId}
@ -75,6 +88,9 @@
<if test="type != null">
AND m.type = #{type}
</if>
<if test="certName != null and certName != ''">
AND bc.name like concat('%', #{certName}, '%')
</if>
</where>
order by m.updateTime desc
</select>

Loading…
Cancel
Save