Commit 719b0f58 authored by Quxl's avatar Quxl

x

parent ad5111c1
...@@ -804,7 +804,7 @@ public class CartQueryServiceImpl implements CartQueryService { ...@@ -804,7 +804,7 @@ public class CartQueryServiceImpl implements CartQueryService {
String sWarehouseNO = (String) goodsFirst.get("sWarehouseNO"); // 物流名称 String sWarehouseNO = (String) goodsFirst.get("sWarehouseNO"); // 物流名称
BigDecimal nMinTranAmount = (BigDecimal)goodsFirst.get("nMinTranAmount"); BigDecimal nMinTranAmount = (BigDecimal)goodsFirst.get("nMinTranAmount");
Integer nMinTranCase = (Integer)goodsFirst.get("nMinTranCase"); Number nMinTranCase = (Number)goodsFirst.get("nMinTranCase");
BigDecimal nPerPiecePrice = (BigDecimal)goodsFirst.get("nPerPiecePrice"); BigDecimal nPerPiecePrice = (BigDecimal)goodsFirst.get("nPerPiecePrice");
BigDecimal nOrderMeetAmountFree = (BigDecimal)goodsFirst.get("nOrderMeetAmountFree"); BigDecimal nOrderMeetAmountFree = (BigDecimal)goodsFirst.get("nOrderMeetAmountFree");
String sOrgNO = (String)goodsFirst.get("wOrgNO"); // 物流名称 String sOrgNO = (String)goodsFirst.get("wOrgNO"); // 物流名称
...@@ -824,7 +824,7 @@ public class CartQueryServiceImpl implements CartQueryService { ...@@ -824,7 +824,7 @@ public class CartQueryServiceImpl implements CartQueryService {
zoneGoods.put("nPerPiecePrice", nPerPiecePrice); zoneGoods.put("nPerPiecePrice", nPerPiecePrice);
zoneGoods.put("nOrderMeetAmountFree", nOrderMeetAmountFree); zoneGoods.put("nOrderMeetAmountFree", nOrderMeetAmountFree);
zoneGoods.put("nMinTranAmount", nMinTranAmount); zoneGoods.put("nMinTranAmount", nMinTranAmount);
zoneGoods.put("nMinTranCase", nMinTranCase); zoneGoods.put("nMinTranCase", nMinTranCase.intValue());
zoneGoods.put("minOrderAmt", MinOrderAmt); zoneGoods.put("minOrderAmt", MinOrderAmt);
zoneGoods.put("totalAmount", TotalAmount); zoneGoods.put("totalAmount", TotalAmount);
zoneGoods.put("orgNo", sOrgNO); zoneGoods.put("orgNo", sOrgNO);
......
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