Commit 3fcadcc3 authored by Quxl's avatar Quxl

x

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