From 685bd25c37413cc1bdd6f7e140181cd7e90ddcaa Mon Sep 17 00:00:00 2001
From: java110 <928255095@qq.com>
Date: 星期五, 05 六月 2020 16:04:57 +0800
Subject: [PATCH] 优化费用项设置
---
service-fee/src/main/java/com/java110/fee/listener/config/AbstractFeeConfigBusinessServiceDataFlowListener.java | 6 ++++++
1 files changed, 6 insertions(+), 0 deletions(-)
diff --git a/service-fee/src/main/java/com/java110/fee/listener/config/AbstractFeeConfigBusinessServiceDataFlowListener.java b/service-fee/src/main/java/com/java110/fee/listener/config/AbstractFeeConfigBusinessServiceDataFlowListener.java
index 99764cc..7ad9b39 100644
--- a/service-fee/src/main/java/com/java110/fee/listener/config/AbstractFeeConfigBusinessServiceDataFlowListener.java
+++ b/service-fee/src/main/java/com/java110/fee/listener/config/AbstractFeeConfigBusinessServiceDataFlowListener.java
@@ -49,6 +49,9 @@
businessFeeConfigInfo.put("startTime", businessFeeConfigInfo.get("start_time"));
businessFeeConfigInfo.put("endTime", businessFeeConfigInfo.get("end_time"));
businessFeeConfigInfo.put("communityId", businessFeeConfigInfo.get("community_id"));
+ businessFeeConfigInfo.put("paymentCd", businessFeeConfigInfo.get("payment_cd"));
+ businessFeeConfigInfo.put("paymentCycle", businessFeeConfigInfo.get("payment_cycle"));
+ businessFeeConfigInfo.put("billType", businessFeeConfigInfo.get("bill_type"));
businessFeeConfigInfo.remove("bId");
businessFeeConfigInfo.put("statusCd", statusCd);
}
@@ -85,6 +88,9 @@
currentFeeConfigInfo.put("startTime", currentFeeConfigInfo.get("start_time"));
currentFeeConfigInfo.put("endTime", currentFeeConfigInfo.get("end_time"));
currentFeeConfigInfo.put("communityId", currentFeeConfigInfo.get("community_id"));
+ currentFeeConfigInfo.put("paymentCd", currentFeeConfigInfo.get("payment_cd"));
+ currentFeeConfigInfo.put("paymentCycle", currentFeeConfigInfo.get("payment_cycle"));
+ currentFeeConfigInfo.put("billType", currentFeeConfigInfo.get("bill_type"));
currentFeeConfigInfo.put("operate", StatusConstant.OPERATE_DEL);
--
Gitblit v1.8.0