|
@@ -167,6 +167,8 @@
|
|
|
<select id="getPayreceivableDebt" resultType="com.bz.smart_city.dto.pay.payfee.PayfeeReceivableInfo">
|
|
|
select
|
|
|
account_id as "accountId",
|
|
|
+ accountnumber,
|
|
|
+ accountname,
|
|
|
year,
|
|
|
month,
|
|
|
CONCAT(rece.year,'年',LPAD(rece.month, 2, 0),'月费用') as "name",
|
|
@@ -180,11 +182,13 @@
|
|
|
where rece.debt > 0
|
|
|
and rece.account_id=#{accountId}
|
|
|
and `year`=#{year}
|
|
|
- group by `year`,`month`
|
|
|
+ group by account_id,accountnumber,accountname,`year`,`month`
|
|
|
</select>
|
|
|
<select id="getPayreceivableDebtDetailed" resultType="com.bz.smart_city.dto.pay.payfee.PayfeeReceivableInfo">
|
|
|
select
|
|
|
account_id as "accountId",
|
|
|
+ accountnumber,
|
|
|
+ accountname,
|
|
|
year,
|
|
|
month,
|
|
|
rece.payitemname as "name",
|
|
@@ -208,6 +212,8 @@
|
|
|
|
|
|
<select id="getPayreceivedDetailed" resultType="com.bz.smart_city.dto.pay.payfee.PayfeeReceivedInfo">
|
|
|
select
|
|
|
+ accountnumber,
|
|
|
+ accountname,
|
|
|
name as "name",
|
|
|
(case when ladderlevel = 1 then '一阶'
|
|
|
when ladderlevel = 2 then '二阶'
|
|
@@ -216,6 +222,8 @@
|
|
|
else '' end) as "ladderlevelname",
|
|
|
payseriesno as "payseriesno",
|
|
|
receivedamount,
|
|
|
+ max(rece.state) as "state",
|
|
|
+ min(rece.payway) as "payway",
|
|
|
(select label from pay_sys_dict where type = '支付方式' and value = reced.payway and site_id = #{siteId} and customer_id =#{customerId}) as "paywayname",
|
|
|
(select label from pay_sys_dict where type = '交易状态' and value = reced.state and site_id = #{siteId} and customer_id =#{customerId}) as "statename",
|
|
|
create_date as "createDate",
|
|
@@ -231,6 +239,8 @@
|
|
|
|
|
|
<select id="getPayreceived" resultType="com.bz.smart_city.dto.pay.payfee.PayfeeReceivedInfo">
|
|
|
select
|
|
|
+ accountnumber,
|
|
|
+ accountname,
|
|
|
CONCAT(year,'年',LPAD(month, 2, 0),'月费用') as "name" ,
|
|
|
'--'as "ladderlevelname",
|
|
|
payseriesno as "payseriesno",
|
|
@@ -245,7 +255,7 @@
|
|
|
where
|
|
|
account_id=#{accountId}
|
|
|
and `year`=#{year}
|
|
|
- group by `year`,`month`,payseriesno
|
|
|
+ group by accountnumber,accountname,`year`,`month`,payseriesno
|
|
|
</select>
|
|
|
<select id="getWaterusedamount" resultType="com.bz.smart_city.dto.pay.payfee.PayfeeWaterusedamount">
|
|
|
select
|