商户订单统计

This commit is contained in:
墨大叔 2024-10-08 16:23:19 +08:00
parent c35a60695c
commit 56bee7f862

View File

@ -15,7 +15,7 @@ PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN"
<sql id="selectBusinessStatisticsVO"> <sql id="selectBusinessStatisticsVO">
select select
stb.store_id, if (stb.store_id is null, -1, stb.store_id) as store_id,
if (stb.store_id is null, '未分配店铺', ss.name) as store_name, if (stb.store_id is null, '未分配店铺', ss.name) as store_name,
count(distinct stb.device_id) as device_count, count(distinct stb.device_id) as device_count,
sd.device_name as device_name, sd.device_name as device_name,
@ -28,7 +28,9 @@ PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN"
left join sm_device sd on sd.device_id = stb.device_id left join sm_device sd on sd.device_id = stb.device_id
<where> <where>
<if test="mchId != null">and stb.mch_id = #{mchId}</if> <if test="mchId != null">and stb.mch_id = #{mchId}</if>
<if test="storeId != null">and stb.store_id = #{storeId}</if> <!--店铺id=-1时查询未分配店铺的数据-->
<if test="storeId != null and storeId == -1">and stb.store_id is null</if>
<if test="storeId != null and storeId != -1">and stb.store_id = #{storeId}</if>
<if test="billType != null">and stb.type = #{billType}</if> <if test="billType != null">and stb.type = #{billType}</if>
<if test="storeName != null and storeName != ''">and ss.name like concat('%', #{storeName}, '%')</if> <if test="storeName != null and storeName != ''">and ss.name like concat('%', #{storeName}, '%')</if>
<if test="dateRange != null and dateRange.size() == 2"> <if test="dateRange != null and dateRange.size() == 2">