From 7bce9b8d2f4e4dcb751e63a939401d29ea42a8b6 Mon Sep 17 00:00:00 2001 From: zhengfangyuan Date: Mon, 2 Jan 2023 22:02:19 +0800 Subject: [PATCH] fix bug --- mallinkService/src/main/resources/mapper/WxBillAllMapper.xml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/mallinkService/src/main/resources/mapper/WxBillAllMapper.xml b/mallinkService/src/main/resources/mapper/WxBillAllMapper.xml index 7cfa3f0a9..7dd5c3b9d 100644 --- a/mallinkService/src/main/resources/mapper/WxBillAllMapper.xml +++ b/mallinkService/src/main/resources/mapper/WxBillAllMapper.xml @@ -695,7 +695,7 @@ round(bill.propertyOwe/100,2) propertyOwe, round(bill.depositOwe/100,2) depositOwe, round(bill.otherOwe/100,2) otherOwe, - round((bill.rentOwe+bill.bussinessManageOwe+bill.operatingManageOwe+bill.propertyOwe+bill.depositOwe+bill.otherOwe)/100,2) totalOwe, + round((bill.rentOwe+bill.bmOwe+bill.omOwe+bill.propertyOwe+bill.depositOwe+bill.otherOwe)/100,2) totalOwe, @@ -758,7 +758,7 @@ max(case oweList.bill_type when '租金' then oweList.latePayPrice else 0 end) rentLatePay, max(case oweList.bill_type when '商业管理费' then oweList.latePayPrice else 0 end) bmLatePay, - max(case oweList.bill_type when '营业管理费' then oweList.latePayPrice else 0 end) omtLatePay, + max(case oweList.bill_type when '营业管理费' then oweList.latePayPrice else 0 end) omLatePay, max(case oweList.bill_type when '物业费' then oweList.latePayPrice else 0 end) propertyLatePay, max(case oweList.bill_type when '欠缴押金' then oweList.latePayPrice else 0 end) depositLatePay, max(case oweList.bill_type when '其他费用' then oweList.latePayPrice else 0 end) otherLatePay,