Commit 7a465247 by ping.wu

去掉日志

parent 0751e0eb
...@@ -1677,7 +1677,6 @@ public class ShoppingCartNewServiceImpl implements ShoppingCartNewService { ...@@ -1677,7 +1677,6 @@ 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){
...@@ -1724,7 +1723,6 @@ public class ShoppingCartNewServiceImpl implements ShoppingCartNewService { ...@@ -1724,7 +1723,6 @@ 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){
...@@ -1769,7 +1767,6 @@ public class ShoppingCartNewServiceImpl implements ShoppingCartNewService { ...@@ -1769,7 +1767,6 @@ 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