Commit 0751e0eb by ping.wu

增加日志

parent 438396ca
...@@ -1677,6 +1677,7 @@ public class ShoppingCartNewServiceImpl implements ShoppingCartNewService { ...@@ -1677,6 +1677,7 @@ public class ShoppingCartNewServiceImpl implements ShoppingCartNewService {
return qty; return qty;
} }
cartLimitCount = Integer.parseInt((String)hashMap.get("appValue")); cartLimitCount = Integer.parseInt((String)hashMap.get("appValue"));
log.info("cartLimitCount tackingNo:{},,cartLimitCount:{}", LogThreadLocal.getTrackingNo(), cartLimitCount);
} }
} }
if(cartLimitFlag == 1 && cartLimitCount != 0 && qty > cartLimitCount){ if(cartLimitFlag == 1 && cartLimitCount != 0 && qty > cartLimitCount){
...@@ -1723,6 +1724,7 @@ public class ShoppingCartNewServiceImpl implements ShoppingCartNewService { ...@@ -1723,6 +1724,7 @@ public class ShoppingCartNewServiceImpl implements ShoppingCartNewService {
return; return;
} }
cartLimitCount = Integer.parseInt((String)hashMap.get("appValue")); cartLimitCount = Integer.parseInt((String)hashMap.get("appValue"));
log.info("cartLimitCount tackingNo:{},,cartLimitCount:{}", LogThreadLocal.getTrackingNo(), cartLimitCount);
} }
} }
if(cartLimitFlag == 1 && cartLimitCount != 0 && checkQty+sendQty > cartLimitCount){ if(cartLimitFlag == 1 && cartLimitCount != 0 && checkQty+sendQty > cartLimitCount){
...@@ -1767,6 +1769,7 @@ public class ShoppingCartNewServiceImpl implements ShoppingCartNewService { ...@@ -1767,6 +1769,7 @@ public class ShoppingCartNewServiceImpl implements ShoppingCartNewService {
return; return;
} }
cartLimitCount = Integer.parseInt((String)hashMap.get("appValue")); cartLimitCount = Integer.parseInt((String)hashMap.get("appValue"));
log.info("cartLimitCount tackingNo:{},,cartLimitCount:{}", LogThreadLocal.getTrackingNo(), cartLimitCount);
} }
} }
......
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