|
@@ -56,6 +56,7 @@ public class OmsCartItemServiceImpl implements OmsCartItemService {
|
|
|
if (pmsProduct == null) {
|
|
|
throw new BizException("商品不存在");
|
|
|
}
|
|
|
+ cartItem.setPrice(pmsProduct.getPrice());
|
|
|
cartItem.setProductPic(pmsProduct.getPic());
|
|
|
cartItem.setProductName(pmsProduct.getName());
|
|
|
cartItem.setProductSubTitle(pmsProduct.getSubTitle());
|
|
@@ -70,6 +71,7 @@ public class OmsCartItemServiceImpl implements OmsCartItemService {
|
|
|
}
|
|
|
cartItem.setProductSkuCode(pmsSkuStock.getSkuCode());
|
|
|
cartItem.setProductAttr(pmsSkuStock.getSpData());
|
|
|
+ cartItem.setPrice(pmsSkuStock.getPrice());
|
|
|
}
|
|
|
|
|
|
cartItem.setCreateDate(new Date());
|