|
@@ -127,6 +127,11 @@ public class ProductSpuServiceImpl implements ProductSpuService {
|
|
|
// 更新 SPU
|
|
|
ProductSpuDO updateObj = BeanUtils.toBean(updateReqVO, ProductSpuDO.class);
|
|
|
initSpuFromSkus(updateObj, skuSaveReqList);
|
|
|
+
|
|
|
+ for (ProductSkuSaveReqVO productSkuSaveReqVO : skuSaveReqList) {
|
|
|
+ productSkuSaveReqVO.setShopId(updateReqVO.getShopId());
|
|
|
+ productSkuSaveReqVO.setMerchantId(updateReqVO.getMerchantId());
|
|
|
+ }
|
|
|
productSpuMapper.updateById(updateObj);
|
|
|
// 批量更新 SKU
|
|
|
productSkuService.updateSkuList(updateObj.getId(), updateReqVO.getSkus());
|