Commit 6355a67e authored by Quxl's avatar Quxl

x

parent 51a75a80
......@@ -815,7 +815,6 @@ public class CartRedisServiceImpl implements CartRedisService {
Double MinOrderAmt = Util.objTo(goodsFirst.get("nMinDCAmount"), Double.class); // 最小配送金额
String WMSInfo = (String) goodsFirst.get("sWarehouseName"); // 物流名称
String sWarehouseNO = (String) goodsFirst.get("sWarehouseNO"); // 物流名称
String sOrgNO = (String) goodsFirst.get("wOrgNO"); // 物流名称
for (Map<String, Object> goods : GoodsList) {
BigDecimal goodsAmount = (BigDecimal) goods.get("nRealSalePrice"); // 当前销售价格
BigDecimal nSaleQty = (BigDecimal) goods.get("nSaleQty"); // 购物车商品数量
......@@ -830,7 +829,6 @@ public class CartRedisServiceImpl implements CartRedisService {
zoneGoods.put("warehouseNo", sWarehouseNO);
zoneGoods.put("minOrderAmt", MinOrderAmt);
zoneGoods.put("totalAmount", TotalAmount);
zoneGoods.put("orgNo", sOrgNO);
zoneGoods.put("goodsIdList", pidlist);
wmsList.add(zoneGoods);
TotalCount += GoodsList.size();
......
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