1.代客下单 台桌状态同时校验detail和购物车数据

This commit is contained in:
2024-08-29 14:24:54 +08:00
parent 0bdbd07555
commit 3829685b58
2 changed files with 6 additions and 1 deletions

View File

@@ -75,4 +75,7 @@ public interface TbCashierCartMapper {
@Select("select count(*) from tb_cashier_cart where shop_id=#{shopId} and `status`='create' and table_id=#{qrcode} and order_id is not null")
int countTable(@Param("qrcode") String qrcode, @Param("shopId") Integer shopId);
@Select("select count(*) from tb_order_detail where shop_id=#{shopId} and `status`='create' and table_id=#{qrcode} and order_id is not null")
int countTableByDetail(@Param("qrcode") String qrcode, @Param("shopId") Integer shopId);
}