Browse Source

解决商品编辑修改上架状态为上架时为进入审核状态问题

multiwx
dy-hu 8 months ago
parent
commit
9f31b74a51
  1. 4
      cereshop-business/src/main/java/com/shop/cereshop/business/service/product/impl/CereShopProductServiceImpl.java

4
cereshop-business/src/main/java/com/shop/cereshop/business/service/product/impl/CereShopProductServiceImpl.java

@ -317,6 +317,10 @@ public class CereShopProductServiceImpl implements CereShopProductService {
isNeedReExam = true;
}
if(!isNeedReExam && !Objects.equals(cereShopProduct.getShelveState(), dbCereShopProduct.getShelveState())){
isNeedReExam = true;
}
if(!isNeedReExam){
List<Sku> skuList = cereProductSkuService.findByProductId(cereShopProduct.getProductId());
if(param.getSkus() != null && !param.getSkus().isEmpty() && skuList != null && !skuList.isEmpty()){

Loading…
Cancel
Save