From bc765225b2283e05b64d0c5bf5894753c71b922b Mon Sep 17 00:00:00 2001 From: liurunyu <lry9898@163.com> Date: 星期五, 27 十二月 2024 11:32:43 +0800 Subject: [PATCH] 农户用水月年统计遗漏了金额赋值 --- pipIrr-platform/pipIrr-web/pipIrr-web-statistics/src/main/java/com/dy/pipIrrStatistics/statistics/StClientSv.java | 6 ++++-- 1 files changed, 4 insertions(+), 2 deletions(-) diff --git a/pipIrr-platform/pipIrr-web/pipIrr-web-statistics/src/main/java/com/dy/pipIrrStatistics/statistics/StClientSv.java b/pipIrr-platform/pipIrr-web/pipIrr-web-statistics/src/main/java/com/dy/pipIrrStatistics/statistics/StClientSv.java index b01338b..2cf0dc1 100644 --- a/pipIrr-platform/pipIrr-web/pipIrr-web-statistics/src/main/java/com/dy/pipIrrStatistics/statistics/StClientSv.java +++ b/pipIrr-platform/pipIrr-web/pipIrr-web-statistics/src/main/java/com/dy/pipIrrStatistics/statistics/StClientSv.java @@ -30,7 +30,7 @@ protected StClientAmountYearMapper stClientAmountYearDao ; /** - * 鏈堢粺璁�---婕忔崯 + * 鏈堢粺璁�---鍐滄埛鐢ㄦ按閲忓強閲戦 */ @Transactional protected void statisticsMonth(Integer statisticsYear, Integer statisticsMonth, Long statisticsStartId, Long statisticsEndId){ @@ -50,6 +50,7 @@ po.year = statisticsYear ; po.month = statisticsMonth ; po.amount = vo.amount; + po.money = vo.money ; if(po.id == null) { stClientAmountMonthDao.insert(po); }else{ @@ -60,7 +61,7 @@ } /** - * 骞寸粺璁�---婕忔崯 + * 骞寸粺璁�---鍐滄埛鐢ㄦ按閲忓強閲戦 */ @Transactional protected void statisticsYear(Integer statisticsYear){ @@ -79,6 +80,7 @@ po.clientId = vo.clientId ; po.year = statisticsYear ; po.amount = vo.amount; + po.money = vo.money ; if(po.id == null) { stClientAmountYearDao.insert(po); }else{ -- Gitblit v1.8.0