Commit c5e7c1e1 by 吕明尚

修改新增门店更新优惠卷适用门店的问题

parent c6c33481
......@@ -126,7 +126,7 @@ public class SStoreServiceImpl extends ServiceImpl<SStoreMapper, SStore> impleme
sCouponList.stream().forEach(item1 -> {
if (item.getDealgroupId().equals(item1.getDealgroupId())) {
if (StringUtils.isNotEmpty(item.getStoreIds())) {
if (item1.getStoreIds().contains(item.getStoreIds())) {
if (item1.getStoreIds().equals(item.getStoreIds())) {
return;
} else {
SCoupon sCoupon = new SCoupon();
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment