Merge remote-tracking branch 'origin/test' into test
This commit is contained in:
@@ -76,6 +76,6 @@ 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")
|
@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);
|
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 order_id=#{orderId} and order_id is not null")
|
@Select("select count(*) from tb_order_detail where shop_id=#{shopId} and `status`='unpaid' and order_id=#{orderId} and order_id is not null")
|
||||||
int countTableByDetail(@Param("orderId") Integer orderId, @Param("shopId") Integer shopId);
|
int countTableByDetail(@Param("orderId") Integer orderId, @Param("shopId") Integer shopId);
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -363,6 +363,7 @@ public class OrderService {
|
|||||||
String day = DateUtils.getDay();
|
String day = DateUtils.getDay();
|
||||||
|
|
||||||
LambdaQueryWrapper<TbCashierCart> queryWrapper = new LambdaQueryWrapper<TbCashierCart>()
|
LambdaQueryWrapper<TbCashierCart> queryWrapper = new LambdaQueryWrapper<TbCashierCart>()
|
||||||
|
.notIn(TbCashierCart::getStatus, "final", "refund", "closed", "pending")
|
||||||
.eq(TbCashierCart::getShopId, shopId);
|
.eq(TbCashierCart::getShopId, shopId);
|
||||||
|
|
||||||
// 普通点单
|
// 普通点单
|
||||||
|
|||||||
Reference in New Issue
Block a user