fix: 餐位费校验修改

This commit is contained in:
张松
2024-11-07 11:23:00 +08:00
parent 7d86bc5c28
commit 7f34a7fcfa

View File

@@ -59,7 +59,7 @@ public class ShopUtils {
boolean isNoneTable = !hasTable && !isTakeout;
boolean needSeatFee = shopInfo.getIsTableFee() == null || shopInfo.getIsTableFee() == 0;
boolean needSeatFee = !isTakeout && (shopInfo.getIsTableFee() == null || shopInfo.getIsTableFee() == 0);
boolean isIncrMasterId = isTakeout || isNoneTable;