Commit 98fd5272 authored by Quxl's avatar Quxl

x

parent f5fb6219
......@@ -671,7 +671,7 @@ public class CartRedisServiceImpl implements CartRedisService {
product.put("warehouseNo", pm.get("sWarehouseNO"));
} else {
logger.error("商品资料不完整" + contractNo + "$" + goodsId);
throw new XException("商品已失效");
throw new XException("商品已失效", 501);
}
}
for (Map<String, Object> product : giftList) {
......@@ -689,7 +689,7 @@ public class CartRedisServiceImpl implements CartRedisService {
product.put("nTag", pm.get("nTag"));
} else {
logger.error("商品资料不完整" + contractNo + "$" + goodsId);
throw new XException("商品已失效");
throw new XException("商品已失效", 501);
}
}
for (Map<String, Object> groupInfo : groupList) {
......@@ -708,7 +708,7 @@ public class CartRedisServiceImpl implements CartRedisService {
product.put("warehouseNo", pm.get("sWarehouseNO"));
} else {
logger.error("商品资料不完整" + contractNo + "$" + goodsId);
throw new XException("商品已失效");
throw new XException("商品已失效", 501);
}
}
}
......
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