Commit 13dfbfad by xiaoer.li@freemud.com

fix

parent 89626509
...@@ -1623,7 +1623,7 @@ public class ShoppingCartNewServiceImpl implements ShoppingCartNewService { ...@@ -1623,7 +1623,7 @@ public class ShoppingCartNewServiceImpl implements ShoppingCartNewService {
if (StringUtils.isBlank(cardCode)) { if (StringUtils.isBlank(cardCode)) {
return; return;
} }
Integer orderAmount = shoppingCartGoodsResponseVo.getTotalAmount().intValue()*100; Integer orderAmount = shoppingCartGoodsResponseVo.getTotalAmount().intValue();
String trackingNo = LogThreadLocal.getTrackingNo(); String trackingNo = LogThreadLocal.getTrackingNo();
SVCCardAmountRequest request = new SVCCardAmountRequest(); SVCCardAmountRequest request = new SVCCardAmountRequest();
request.setPartnerId(partnerId); request.setPartnerId(partnerId);
...@@ -1656,7 +1656,7 @@ public class ShoppingCartNewServiceImpl implements ShoppingCartNewService { ...@@ -1656,7 +1656,7 @@ public class ShoppingCartNewServiceImpl implements ShoppingCartNewService {
} }
else if (svcTotalAmount>0 && svcTotalAmount<=orderAmount) { else if (svcTotalAmount>0 && svcTotalAmount<=orderAmount) {
svcPayAmount = svcTotalAmount; svcPayAmount = svcTotalAmount;
shoppingCartGoodsResponseVo.setTotalAmount((orderAmount.longValue()-svcPayAmount.longValue())/100); shoppingCartGoodsResponseVo.setTotalAmount((orderAmount.longValue()-svcPayAmount.longValue()));
} }
/** /**
BigDecimal svcPayAmount = BigDecimal.ZERO; BigDecimal svcPayAmount = BigDecimal.ZERO;
......
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