|
|
|
@@ -131,14 +131,14 @@ |
|
|
|
|
|
|
|
|
|
|
|
<select id="queryPayInfoTotal" resultType="hashmap" parameterType="hashmap"> |
|
|
|
select round(sum(receive_pay)/100,2) receivepay,round(sum(pay)/100,2) pay,tenant_id from wx_bill_property |
|
|
|
select IFNULL(sum(receive_pay),0) receivepay,IFNULL(sum(pay),0) pay,tenant_id from wx_bill_property |
|
|
|
where tenant_id=#{tenantId} |
|
|
|
and receive_date between #{startdate} and #{enddate} and is_preview = 0 and status!=6 |
|
|
|
</select> |
|
|
|
|
|
|
|
|
|
|
|
<select id="queryOweInfo" resultType="hashmap" parameterType="hashmap"> |
|
|
|
select IFNULL(round(sum(owe)/100,2),0) owe,tenant_id from wx_bill_property |
|
|
|
select IFNULL(sum(owe),0) owe,tenant_id from wx_bill_property |
|
|
|
where status = 1 and tenant_id=#{tenantId} |
|
|
|
and receive_date between #{startdate} and #{enddate} and is_preview = 0 and status!=6 |
|
|
|
</select> |
|
|
|
|