Просмотр исходного кода

[账单总览][修改][租金收缴率、物业费收缴率排除失效账单]

release_toaliyun_real
gongbiao 6 лет назад
Родитель
Сommit
32680590e6
2 измененных файлов: 4 добавлений и 4 удалений
  1. +2
    -2
      mallinkService/src/main/resources/mapper/WxBillPropertyMapper.xml
  2. +2
    -2
      mallinkService/src/main/resources/mapper/WxBillRentMapper.xml

+ 2
- 2
mallinkService/src/main/resources/mapper/WxBillPropertyMapper.xml Просмотреть файл

@@ -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>


+ 2
- 2
mallinkService/src/main/resources/mapper/WxBillRentMapper.xml Просмотреть файл

@@ -143,14 +143,14 @@
</select>

<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}
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_rent
select IFNULL(sum(owe),0) owe,tenant_id from wx_bill_rent
where status = 1 and tenant_id=#{tenantId}
and receive_date between #{startdate} and #{enddate} and is_preview = 0 and status!=6
</select>


Загрузка…
Отмена
Сохранить