|
@@ -308,6 +308,7 @@
|
|
|
,t.transtime
|
|
|
,t.transamount
|
|
|
,t.payway
|
|
|
+ ,t.invoiceId
|
|
|
,dict.label as"paywayLabel"
|
|
|
,t.transtype
|
|
|
,t.transtypeLabel
|
|
@@ -337,10 +338,20 @@
|
|
|
,sum(transamount) transamount
|
|
|
,min(payway) payway
|
|
|
,max(transtype) transtype
|
|
|
+ ,max(invoiceId) as "invoiceId"
|
|
|
,case when max(transtype) = 1 then '充值'
|
|
|
else (case when min(payway) = 5 then '扣费' else '缴费' end ) end transtypeLabel
|
|
|
from (
|
|
|
- select accountnumber,accountname,payseriesno,min(transtime) transtime,sum(transamount ) transamount ,max(payway) payway ,1 "transtype",max(iscanceled) iscanceled,max(canceltime) canceltime,max(cancelperson) cancelperson
|
|
|
+ select accountnumber
|
|
|
+ ,accountname
|
|
|
+ ,payseriesno
|
|
|
+ ,min(transtime) transtime
|
|
|
+ ,sum(transamount ) transamount
|
|
|
+ ,max(payway) payway ,1 "transtype"
|
|
|
+ ,max(iscanceled) iscanceled
|
|
|
+ ,max(canceltime) canceltime
|
|
|
+ ,max(cancelperson) cancelperson
|
|
|
+ ,max(invoice_id) as "invoiceId"
|
|
|
from pay_pay_transactiondetails
|
|
|
where canceledrecord_id is null and payway !=5 and transtype!=2
|
|
|
and site_id=#{siteId} and customer_id = #{customerId}
|
|
@@ -371,7 +382,14 @@
|
|
|
</if>
|
|
|
group by accountnumber,accountname,payseriesno
|
|
|
union all
|
|
|
- select accountnumber,accountname,payseriesno,min(create_date) transtime,sum(receivedamount) transamount ,min(payway) payway, 0 "transtype",max(iscanceled) iscanceled,max(canceltime) canceltime ,max(cancelperson) cancelperson
|
|
|
+ select accountnumber,accountname,payseriesno
|
|
|
+ ,min(create_date) transtime
|
|
|
+ ,sum(receivedamount) transamount
|
|
|
+ ,min(payway) payway, 0 "transtype"
|
|
|
+ ,max(iscanceled) iscanceled
|
|
|
+ ,max(canceltime) canceltime
|
|
|
+ ,max(cancelperson) cancelperson
|
|
|
+ ,max(invoice_id) as "invoiceId"
|
|
|
from pay_pay_received
|
|
|
where canceledrecord_id is null
|
|
|
and site_id=#{siteId} and customer_id = #{customerId}
|
|
@@ -439,7 +457,7 @@
|
|
|
,a.order_no as "orderNo"
|
|
|
,ab.type as "payway"
|
|
|
,dict.label as"paywayLabel"
|
|
|
-
|
|
|
+ ,ifnull(r.invoiceId,t.invoiceId) invoiceId
|
|
|
,ifnull(r.iscanceled,t.iscanceled) iscanceled
|
|
|
,ifnull(r.canceltime,t.canceltime) canceltime
|
|
|
,ifnull(r.cancelperson,t.cancelperson) cancelperson
|
|
@@ -457,6 +475,7 @@
|
|
|
,1 as transtype
|
|
|
,'充值' transtypeLabel
|
|
|
,min(payway) payway
|
|
|
+ ,max(invoice_id) as "invoiceId"
|
|
|
,max(iscanceled) iscanceled
|
|
|
,min(canceltime) canceltime
|
|
|
,min(cancelperson) cancelperson
|
|
@@ -471,6 +490,7 @@
|
|
|
,0 as transtype
|
|
|
,'缴费' transtypeLabel
|
|
|
,min(payway) payway
|
|
|
+ ,max(invoice_id) as "invoiceId"
|
|
|
,max(iscanceled) iscanceled
|
|
|
,min(canceltime) canceltime
|
|
|
,min(cancelperson) cancelperson
|