Commit 581a4c39 by 孙昱

Merge branch 'feature/20201125_多规格商品下添加单规格商品_yu.sun' into qa

parents d3c040a5 2014b816
...@@ -456,7 +456,7 @@ public class CalculationServiceImpl { ...@@ -456,7 +456,7 @@ public class CalculationServiceImpl {
material.setGoodsQuantity(1); material.setGoodsQuantity(1);
material.setOriginalPrice(null != materialGoods.getOriginalPrice() ? material.setOriginalPrice(null != materialGoods.getOriginalPrice() ?
materialGoods.getOriginalPrice() : 0); materialGoods.getOriginalPrice() : 0);
material.setNowPrice(materialGoods.getFinalPrice().intValue()); material.setNowPrice(null != materialGoods.getFinalPrice() ? materialGoods.getFinalPrice().intValue():0);
materials.add(material); materials.add(material);
} }
} }
......
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