This commit is contained in:
liupopo
2024-03-10 19:02:37 +08:00
parent badd52ab73
commit bcfb0a4e29
5 changed files with 1665 additions and 1 deletions

Binary file not shown.

File diff suppressed because it is too large Load Diff

View File

@@ -157,7 +157,8 @@ public class LpkGoodsService extends MybatisBaseService<LpkGoodsMapper, LpkGoods
vo.setQdxy(pmsBrand.getQdxy());
vo.setQssl(pmsBrand.getQssl());
vo.setCategoryId(lpkGoods.getCategoryId());
vo.setGoodsNumber(shoppingCart.getGoodsNumber());
String goodsNum = shoppingCart==null?"0":shoppingCart.getGoodsNumber();
vo.setGoodsNumber(goodsNum);
vo.setMefenPrice(removeZeros(String.valueOf(Double.valueOf(lpkGoods.getWeight())*Double.valueOf(lpkGoods.getPrice()))));
return rb.success().setData(vo);
}