diff --git a/src/main/java/com/chaozhanggui/system/cashierservice/service/CartService.java b/src/main/java/com/chaozhanggui/system/cashierservice/service/CartService.java index 5ca6a4f..0b58c4a 100644 --- a/src/main/java/com/chaozhanggui/system/cashierservice/service/CartService.java +++ b/src/main/java/com/chaozhanggui/system/cashierservice/service/CartService.java @@ -317,6 +317,9 @@ public class CartService { boolean isSeatCart = "-999".equals(productId); ShopEatTypeInfoDTO shopEatTypeInfoDTO = shopUtils.checkEatModel(tableId, shopId); String tableCartKey = RedisCst.getTableCartKey(shopId, tableId, userId); + // 检查客座费并设置 + checkSeatInfo(shopEatTypeInfoDTO, tableId, userId); + TbProductSkuWithBLOBs tbProductSkuWithBLOBs = null; if (!isSeatCart) { TbProduct tbProduct = productMapper.selectById(Integer.valueOf(productId));