添加购物车修改

This commit is contained in:
2024-09-26 16:58:36 +08:00
parent 9ffe1f392b
commit 3bbd6a254d

View File

@@ -354,7 +354,7 @@ public class CartService {
}
}
redisUtil.saveMessage(tableCartKey, jsonArray.toJSONString());
redisUtil.saveMessage(tableCartKey, JSONObject.toJSONString(cashierCartArrayList));
// 餐位费
TbCashierCart seatCost = cashierCartArrayList.stream().findFirst().filter(info -> "-999".equals(info.getProductId())).orElse(null);
HashMap<String, Object> data = new HashMap<>();