Browse Source

feat(all): 修改已删除价格还会出现在列表中的问题

dist.1.3.0
zhaoqiaobo 8 months ago
parent
commit
4020fc394d
  1. 2
      blade-service/logpm-basicdata/src/main/java/com/logpm/basicdata/mapper/BasicdataPriceMapper.xml

2
blade-service/logpm-basicdata/src/main/java/com/logpm/basicdata/mapper/BasicdataPriceMapper.xml

@ -29,7 +29,7 @@
and lbsb.brand_id = t.brand_id and t.effective_time <![CDATA[ <= ]]> now() and t.expiry_time >= now()
left join logpm_basicdata_brand ldb on ldb.id = lbsb.brand_id
left join logpm_basicdata_price_template lbpt on t.template_id = lbpt.id
where lbsb.is_deleted = 0 and cli.is_deleted = 0
where lbsb.is_deleted = 0 and cli.is_deleted = 0 and t.is_deleted = 0
<if test="basicdataPrice.clientName != null and basicdataPrice.clientName != ''">
and cli.client_name like concat('%',#{basicdataPrice.clientName},'%')
</if>

Loading…
Cancel
Save