|
@@ -370,9 +370,14 @@ public class FsStoreProductScrmServiceImpl implements IFsStoreProductScrmService
|
|
|
}
|
|
|
|
|
|
if(param.getProductId() != null && param.getProductId() > 0){
|
|
|
- //对已上架的商品进行修改需要重新审核
|
|
|
- if(1 == product.getIsShow() && "1".equals(product.getIsAudit())){
|
|
|
- product.setIsAudit("0");
|
|
|
+ //对已上架的商品进行修改需要重新审核(益寿缘商城商品无需审核)
|
|
|
+ if(!("益善缘".equals(cloudHostProper.getCompanyName()))){
|
|
|
+ if(1 == product.getIsShow() && "1".equals(product.getIsAudit())){
|
|
|
+ product.setIsAudit("0");
|
|
|
+ }
|
|
|
+ } else{
|
|
|
+ //默认已审核
|
|
|
+ product.setIsAudit("1");
|
|
|
}
|
|
|
fsStoreProductMapper.updateFsStoreProduct(product);
|
|
|
if (param.getSpecType().equals(0)) {
|