商户订单统计
This commit is contained in:
parent
c35a60695c
commit
56bee7f862
|
@ -15,7 +15,7 @@ PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN"
|
|||
|
||||
<sql id="selectBusinessStatisticsVO">
|
||||
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,
|
||||
count(distinct stb.device_id) as device_count,
|
||||
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
|
||||
<where>
|
||||
<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="storeName != null and storeName != ''">and ss.name like concat('%', #{storeName}, '%')</if>
|
||||
<if test="dateRange != null and dateRange.size() == 2">
|
||||
|
|
Loading…
Reference in New Issue
Block a user