|
@@ -183,6 +183,7 @@
|
|
|
and rece.account_id=#{accountId}
|
|
|
and `year`=#{year}
|
|
|
group by account_id,accountnumber,accountname,`year`,`month`
|
|
|
+ order by max(rece.create_date) desc
|
|
|
</select>
|
|
|
<select id="getPayreceivableDebtDetailed" resultType="com.bz.smart_city.dto.pay.payfee.PayfeeReceivableInfo">
|
|
|
select
|
|
@@ -206,6 +207,7 @@
|
|
|
where rece.debt > 0
|
|
|
and rece.account_id=#{accountId}
|
|
|
and `year`=#{year} and `month`=#{month}
|
|
|
+ order by rece.create_date desc
|
|
|
|
|
|
</select>
|
|
|
|
|
@@ -234,7 +236,7 @@
|
|
|
from pay_pay_received reced
|
|
|
where account_id=#{accountId}
|
|
|
and `year`=#{year} and `month` = #{month} and payseriesno=#{payseriesno}
|
|
|
-
|
|
|
+ order by create_date desc
|
|
|
</select>
|
|
|
|
|
|
<select id="getPayreceived" resultType="com.bz.smart_city.dto.pay.payfee.PayfeeReceivedInfo">
|
|
@@ -260,6 +262,7 @@
|
|
|
account_id=#{accountId}
|
|
|
and `year`=#{year}
|
|
|
group by account_id,accountnumber,accountname,`year`,`month`,payseriesno
|
|
|
+ order by max(create_date) desc
|
|
|
</select>
|
|
|
<select id="getWaterusedamount" resultType="com.bz.smart_city.dto.pay.payfee.PayfeeWaterusedamount">
|
|
|
select
|
|
@@ -275,6 +278,7 @@
|
|
|
(case when a.state = 2 then '是' else '否' end ) isReceivable
|
|
|
from pay_amount_waterusedamount a
|
|
|
where a.`year`=#{year} and a.account_id=#{accountId}
|
|
|
+ order by a.year desc ,a.month desc
|
|
|
</select>
|
|
|
|
|
|
<select id="getPayinvoiceInfo" resultType="com.bz.smart_city.dto.pay.PayInvoiceDto">
|