1.代客下单 挂起订单
This commit is contained in:
@@ -3,6 +3,7 @@ package cn.ysk.cashier.mybatis.mapper;
|
||||
import cn.ysk.cashier.mybatis.entity.Activate;
|
||||
import cn.ysk.cashier.pojo.order.TbCashierCart;
|
||||
import cn.ysk.cashier.vo.CarVO;
|
||||
import cn.ysk.cashier.vo.PendingCountVO;
|
||||
import com.baomidou.mybatisplus.core.mapper.BaseMapper;
|
||||
import org.apache.ibatis.annotations.Param;
|
||||
import org.apache.ibatis.annotations.Select;
|
||||
@@ -18,4 +19,8 @@ public interface TbCashierCartMapper extends BaseMapper<TbCashierCart> {
|
||||
" ifnull(sum(total_amount),0) as totalAmount\n" +
|
||||
" from tb_cashier_cart where table_id is not null and shop_id = #{shopId} and status = 'refund' group by shop_Id, master_id order by trade_day desc")
|
||||
List<CarVO> selectCar(@Param("shopId") Integer shopId);
|
||||
|
||||
@Select(" SELECT order_id orderId, pending_at, sum(total_amount) toalAmount, count(id) totalCount from tb_cashier_cart where status = 'refund' and shop_id=#{shopId} " +
|
||||
" GROUP BY order_id ORDER BY trade_day")
|
||||
List<PendingCountVO> countPending(@Param("shopId") Integer shopId);
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user