Commit cd85e40c authored by Quxl's avatar Quxl

x

parent f2e3b9e5
...@@ -207,7 +207,6 @@ public class CartRedisServiceImpl implements CartRedisService { ...@@ -207,7 +207,6 @@ public class CartRedisServiceImpl implements CartRedisService {
BigDecimal nOrderMeetAmountFree = (BigDecimal)wmsMap.get("nOrderMeetAmountFree"); BigDecimal nOrderMeetAmountFree = (BigDecimal)wmsMap.get("nOrderMeetAmountFree");
BigDecimal nMinTranAmount = (BigDecimal)wmsMap.get("nMinTranAmount"); BigDecimal nMinTranAmount = (BigDecimal)wmsMap.get("nMinTranAmount");
BigDecimal nPerPiecePrice = (BigDecimal)wmsMap.get("nPerPiecePrice"); BigDecimal nPerPiecePrice = (BigDecimal)wmsMap.get("nPerPiecePrice");
Integer nMinTranCase_int = (Integer)wmsMap.get("nMinTranCase"); Integer nMinTranCase_int = (Integer)wmsMap.get("nMinTranCase");
BigDecimal nMinTranCase = nMinTranCase_int == null ? BigDecimal.ZERO : BigDecimal.valueOf(nMinTranCase_int); BigDecimal nMinTranCase = nMinTranCase_int == null ? BigDecimal.ZERO : BigDecimal.valueOf(nMinTranCase_int);
nOrderMeetAmountFree = nOrderMeetAmountFree == null ? BigDecimal.valueOf(Long.MAX_VALUE) : nOrderMeetAmountFree; nOrderMeetAmountFree = nOrderMeetAmountFree == null ? BigDecimal.valueOf(Long.MAX_VALUE) : nOrderMeetAmountFree;
......
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