|
|
|
@@ -471,7 +471,7 @@ |
|
|
|
o.order_status,o.create_date,o.update_date,o.detail,'[多商户交易]' merchant_name,cubi.`name` c_user_name,cubi.phone |
|
|
|
from |
|
|
|
( |
|
|
|
select o.* from wx_order o where o.type=0 and o.order_status = 1 and o.id in( |
|
|
|
select o.* from wx_order o where o.type=0 and o.order_status in (1,4) and o.id in( |
|
|
|
select o.id from wx_order o left join wx_coupon_merchant cm |
|
|
|
on o.product_id=cm.product_id group by o.id having count(o.id)>1)) o |
|
|
|
left join wx_c_user_basic_info cubi on o.c_user_id=cubi.id |
|
|
|
@@ -480,7 +480,7 @@ |
|
|
|
o.order_status,o.create_date,o.update_date,o.detail,m.`name` merchant_name,cubi.`name` c_user_name,cubi.phone |
|
|
|
from( |
|
|
|
select o.*,cm.merchant_id from ( |
|
|
|
select o.* from wx_order o where o.type=0 and o.order_status = 1 and o.id not in( |
|
|
|
select o.* from wx_order o where o.type=0 and o.order_status in (1,4) and o.id not in( |
|
|
|
select o.id from wx_order o left join wx_coupon_merchant cm |
|
|
|
on o.product_id=cm.product_id group by o.id having count(o.id)>1) |
|
|
|
) o |
|
|
|
@@ -488,7 +488,7 @@ |
|
|
|
union all |
|
|
|
select o.*,mbu.merchant_id from wx_order o |
|
|
|
left join wx_merchant_b_user mbu on o.product_id=mbu.id |
|
|
|
where o.type in (1,2) and o.order_status = 1 ) o |
|
|
|
where o.type in (1,2) and o.order_status in (1,4) ) o |
|
|
|
left join wx_merchant m on o.merchant_id=m.id |
|
|
|
left join wx_c_user_basic_info cubi on o.c_user_id=cubi.id |
|
|
|
union all |
|
|
|
@@ -496,7 +496,7 @@ |
|
|
|
o.order_status,o.create_date,o.update_date,o.detail,m.`name` merchant_name,cubi.`name` c_user_name,cubi.phone |
|
|
|
from wx_order o left join wx_merchant m on o.product_id=m.id |
|
|
|
left join wx_c_user_basic_info cubi on o.c_user_id=cubi.id |
|
|
|
where o.type=3 and o.order_status = 1 |
|
|
|
where o.type=3 and o.order_status in (1,4) |
|
|
|
) o |
|
|
|
<where> |
|
|
|
<if test="tenantId!=null"> |
|
|
|
@@ -519,13 +519,13 @@ |
|
|
|
select o.*, m.`name` merchantName from ( |
|
|
|
select o.*,cm.merchant_id from wx_order o |
|
|
|
left join wx_coupon_merchant cm on o.product_id=cm.product_id |
|
|
|
where o.type in (0,3) and o.order_status = 1) o |
|
|
|
where o.type in (0,3) and o.order_status in (1,4)) o |
|
|
|
left join wx_merchant m on o.merchant_id=m.id |
|
|
|
union all |
|
|
|
select o.*,m.`name` merchantName from ( |
|
|
|
select o.*,mbu.merchant_id from wx_order o |
|
|
|
left join wx_merchant_b_user mbu on o.product_id=mbu.id |
|
|
|
where o.type in (1,2) and o.order_status = 1) o |
|
|
|
where o.type in (1,2) and o.order_status in (1,4)) o |
|
|
|
left join wx_merchant m on o.merchant_id=m.id |
|
|
|
) o |
|
|
|
<where> |
|
|
|
@@ -544,13 +544,13 @@ |
|
|
|
select o.*,m.`name` merchantName from ( |
|
|
|
select o.*,cm.merchant_id from wx_order o |
|
|
|
left join wx_coupon_merchant cm on o.product_id=cm.product_id |
|
|
|
where o.type in (0,3) and o.order_status = 1) o |
|
|
|
where o.type in (0,3) and o.order_status = #{order_status}) o |
|
|
|
left join wx_merchant m on o.merchant_id=m.id |
|
|
|
union all |
|
|
|
select o.*,m.`name` merchantName from ( |
|
|
|
select o.*,mbu.merchant_id from wx_order o |
|
|
|
left join wx_merchant_b_user mbu on o.product_id=mbu.id |
|
|
|
where o.type in (1,2) and o.order_status = 1) o |
|
|
|
where o.type in (1,2) and o.order_status = #{order_status}) o |
|
|
|
left join wx_merchant m on o.merchant_id=m.id |
|
|
|
) o |
|
|
|
<where> |
|
|
|
|