From 2ab8c3ee11ec5879a7d71986bcbc0c44c6c75bb2 Mon Sep 17 00:00:00 2001 From: KKSU <15274802129@163.com> Date: Mon, 25 Dec 2023 11:14:53 +0800 Subject: [PATCH] 富文本框输入版本变化 --- src/main/resources/mapper/modules/MallOrderInfoMapper.xml | 40 ++++++++++++++++++++++++++++++++++++++++ 1 files changed, 40 insertions(+), 0 deletions(-) diff --git a/src/main/resources/mapper/modules/MallOrderInfoMapper.xml b/src/main/resources/mapper/modules/MallOrderInfoMapper.xml index c4e2735..4bd5382 100644 --- a/src/main/resources/mapper/modules/MallOrderInfoMapper.xml +++ b/src/main/resources/mapper/modules/MallOrderInfoMapper.xml @@ -466,4 +466,44 @@ where a.del_flag=2 and a.id = #{orderId} and a.take_unique_code = #{takeUniqueCode} order by a.created_time desc </select> + + <select id="getGoodsStatisticsInPage" resultType="cc.mrbird.febs.mall.vo.AdminGoodsStatisticsVo"> + select + goods_name goodsName, + SUM(cnt) goodsCnt + from mall_order_item + <where> + <if test="record.orderIdsStr != null"> + and order_id in + <foreach collection="record.orderIdsStr" item="id" index="index" open="(" close=")" separator=","> + #{id} + </foreach> + </if> + </where> + GROUP BY goods_id + ORDER BY goods_id desc + </select> + + <select id="getAppOrderListInPage" resultType="cc.mrbird.febs.mall.vo.ApiGetOrderListVo"> + select + a.id, + a.amount + from mall_order_info a + <where> + a.is_app = 1 + <if test="record.status != null"> + and a.status = #{record.status} + </if> + </where> + </select> + + <select id="getAppOrderByOrderId" resultType="cc.mrbird.febs.mall.vo.ApiGetOrderListVo"> + select + a.id, + a.amount + from mall_order_info a + where + a.is_app = 1 + and id = #{orderId} + </select> </mapper> \ No newline at end of file -- Gitblit v1.9.1