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

[定时任务][修改][得到滞纳金后计算滞纳金]

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

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

@@ -274,7 +274,7 @@
</update> </update>
<update id="updateOwe"> <update id="updateOwe">
update wx_bill_property set owe = receive_pay + service_charge_pay + late_pay_price - pay where status in (1,2,4)
update wx_bill_property set owe = receive_pay + service_charge_pay + ifnull(late_pay_price,0) - pay where status in (1,2,4)
</update> </update>


</mapper> </mapper>


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

@@ -280,7 +280,7 @@
</update> </update>
<update id="updateOwe"> <update id="updateOwe">
update wx_bill_rent set owe = receive_pay + service_charge_pay + late_pay_price - pay where status in (1,2,4)
update wx_bill_rent set owe = receive_pay + service_charge_pay + ifnull(late_pay_price,0) - pay where status in (1,2,4)
</update> </update>


</mapper> </mapper>


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