|
|
|
@ -27,12 +27,12 @@
|
|
|
|
|
count(distinct t.plan_reservation_code) customerCount, |
|
|
|
|
count(distinct case when t.review_num != 0 then t.plan_reservation_code else null end) reviewCustomerCount, |
|
|
|
|
concat(replace(case |
|
|
|
|
when count(distinct case when t.review_num != 0 then t.plan_reservation_code else null end) = |
|
|
|
|
when count(distinct t.plan_reservation_code) = |
|
|
|
|
0 then 0 |
|
|
|
|
else ROUND((count(distinct t.plan_reservation_code) / count(distinct case |
|
|
|
|
when t.review_num != 0 |
|
|
|
|
then t.plan_reservation_code |
|
|
|
|
else null end)) * |
|
|
|
|
else ROUND((count(distinct case |
|
|
|
|
when t.review_num != 0 |
|
|
|
|
then t.plan_reservation_code |
|
|
|
|
else null end) / count(distinct t.plan_reservation_code) ) * |
|
|
|
|
100, 2) end, '.00', |
|
|
|
|
''), '%') reviewRate |
|
|
|
|
from (select t.business_unit, |
|
|
|
@ -197,7 +197,7 @@
|
|
|
|
|
<if test="query.deliveryType != null and query.deliveryType != ''"> |
|
|
|
|
,t.type |
|
|
|
|
</if> |
|
|
|
|
,sum(t.num) |
|
|
|
|
,sum(t.num) exceptionNum |
|
|
|
|
from (select dl.warehouse_name, |
|
|
|
|
<if test="query.deliveryType != null and query.deliveryType != ''"> |
|
|
|
|
case when dl.type = 1 then '商配' else '市配' end type, |
|
|
|
|