Commit f5a51c50 authored by Quxl's avatar Quxl

x

parent 1fc758d8
...@@ -61,8 +61,8 @@ public class CartQueryServiceImpl implements CartQueryService { ...@@ -61,8 +61,8 @@ public class CartQueryServiceImpl implements CartQueryService {
if(sGoodsTag != null && sGoodsTag.contains("门店装饰")) { if(sGoodsTag != null && sGoodsTag.contains("门店装饰")) {
isOrnament = true; isOrnament = true;
} }
Integer invalid = (Integer)(Integer)data.get("isInvalid"); Number invalid = (Number)data.get("isInvalid");
if(invalid == 1) { if(invalid.intValue() == 1) {
isInvalid = true; isInvalid = true;
} }
Integer nTag_CG = (Integer) data.get("nTag_CG"); Integer nTag_CG = (Integer) data.get("nTag_CG");
......
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