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