From bdcb64f0293f27e2dfb3de12a60f6e8412cb962b Mon Sep 17 00:00:00 2001
From: java110 <928255095@qq.com>
Date: 星期四, 26 五月 2022 01:45:22 +0800
Subject: [PATCH] 退费修改为 从证书地址中获取

---
 service-fee/src/main/java/com/java110/fee/api/FeeApi.java |   28 +++++++++++++++++++++++-----
 1 files changed, 23 insertions(+), 5 deletions(-)

diff --git a/service-fee/src/main/java/com/java110/fee/api/FeeApi.java b/service-fee/src/main/java/com/java110/fee/api/FeeApi.java
index 33b5b15..68bf6e2 100755
--- a/service-fee/src/main/java/com/java110/fee/api/FeeApi.java
+++ b/service-fee/src/main/java/com/java110/fee/api/FeeApi.java
@@ -4,6 +4,7 @@
 import com.java110.core.base.controller.BaseController;
 import com.java110.core.context.BusinessServiceDataFlow;
 import com.java110.core.factory.DataTransactionFactory;
+import com.java110.core.log.LoggerFactory;
 import com.java110.dto.fee.FeeAttrDto;
 import com.java110.dto.fee.FeeDto;
 import com.java110.fee.bmo.*;
@@ -12,8 +13,8 @@
 import com.java110.utils.exception.InitConfigDataException;
 import com.java110.utils.exception.InitDataFlowContextException;
 import com.java110.utils.util.Assert;
+import com.java110.utils.util.StringUtil;
 import org.slf4j.Logger;
-import org.slf4j.LoggerFactory;
 import org.springframework.beans.factory.annotation.Autowired;
 import org.springframework.http.ResponseEntity;
 import org.springframework.web.bind.annotation.*;
@@ -171,26 +172,33 @@
      */
     @RequestMapping(value = "/listOweFees", method = RequestMethod.GET)
     public ResponseEntity<String> listOweFees(
-            @RequestParam(value = "payObjId") String payObjId,
-            @RequestParam(value = "payObjType") String payObjType,
+            @RequestParam(value = "payObjId", required = false) String payObjId,
+            @RequestParam(value = "payObjType", required = false) String payObjType,
+            @RequestParam(value = "ownerId", required = false) String ownerId,
             @RequestParam(value = "communityId") String communityId) {
+
+        if (StringUtil.isEmpty(payObjId) && StringUtil.isEmpty(ownerId)) {
+            throw new IllegalArgumentException("璐圭敤瀵硅薄鎴栬�呬笟涓讳笉鑳介兘涓虹┖");
+        }
         FeeDto feeDto = new FeeDto();
         feeDto.setPayerObjId(payObjId);
         feeDto.setPayerObjType(payObjType);
+        feeDto.setOwnerId(ownerId);
         feeDto.setCommunityId(communityId);
         return queryOweFeeImpl.query(feeDto);
     }
+
     /**
      * 鏌ヨ娆犺垂璐圭敤
      *
-     * @param roomId    鎴垮眿ID
+     * @param roomId      鎴垮眿ID
      * @param communityId 灏忓尯ID
      * @return
      * @path /app/feeApi/listAllRoomOweFees
      */
     @RequestMapping(value = "/listAllRoomOweFees", method = RequestMethod.GET)
     public ResponseEntity<String> listAllRoomOweFees(
-            @RequestParam(value = "roomId",required = false) String roomId,
+            @RequestParam(value = "roomId", required = false) String roomId,
             @RequestParam(value = "communityId") String communityId) {
         FeeDto feeDto = new FeeDto();
         feeDto.setPayerObjId(roomId);
@@ -204,16 +212,21 @@
      *
      * @param feeId       璐圭敤ID
      * @param communityId 灏忓尯ID
+     * @param cycle       鍛ㄦ湡
      * @return
      * @path /app/feeApi/listFeeObj
      */
     @RequestMapping(value = "/listFeeObj", method = RequestMethod.GET)
     public ResponseEntity<String> listFeeObj(
             @RequestParam(value = "feeId") String feeId,
+            @RequestParam(value = "cycle", required = false) String cycle,
             @RequestParam(value = "communityId") String communityId) {
         FeeDto feeDto = new FeeDto();
         feeDto.setFeeId(feeId);
         feeDto.setCommunityId(communityId);
+        if (!StringUtil.isEmpty(cycle)) {
+            feeDto.setCycle(cycle);
+        }
         return queryOweFeeImpl.listFeeObj(feeDto);
     }
 
@@ -285,6 +298,7 @@
         Assert.hasKeyAndValue(reqJson, "feeTypeCd", "鏈寘鍚垂鐢ㄧ被鍨�");
         Assert.hasKeyAndValue(reqJson, "storeId", "鏈寘鍚晢鎴蜂俊鎭�");
         Assert.hasKeyAndValue(reqJson, "userId", "鏈寘鍚敤鎴蜂俊鎭�");
+        Assert.hasKeyAndValue(reqJson, "batchId", "鏈寘鍚敤鎴蜂俊鎭�");
 
         return importRoomFeeImpl.importFee(reqJson);
     }
@@ -293,6 +307,7 @@
      * 杞﹁締璐圭敤瀵煎叆
      * /feeApi/importCarFees
      * path /app/feeApi/importCarFees
+     *
      * @param reqString
      * @return
      */
@@ -304,6 +319,7 @@
         Assert.hasKeyAndValue(reqJson, "feeTypeCd", "鏈寘鍚垂鐢ㄧ被鍨�");
         Assert.hasKeyAndValue(reqJson, "storeId", "鏈寘鍚晢鎴蜂俊鎭�");
         Assert.hasKeyAndValue(reqJson, "userId", "鏈寘鍚敤鎴蜂俊鎭�");
+        Assert.hasKeyAndValue(reqJson, "batchId", "鏈寘鍚壒娆′俊鎭�");
 
         return importRoomFeeImpl.importCarFee(reqJson);
     }
@@ -312,6 +328,7 @@
      * 鍚堝悓璐圭敤瀵煎叆
      * /feeApi/importContractFees
      * path /app/feeApi/importContractFees
+     *
      * @param reqString
      * @return
      */
@@ -323,6 +340,7 @@
         Assert.hasKeyAndValue(reqJson, "feeTypeCd", "鏈寘鍚垂鐢ㄧ被鍨�");
         Assert.hasKeyAndValue(reqJson, "storeId", "鏈寘鍚晢鎴蜂俊鎭�");
         Assert.hasKeyAndValue(reqJson, "userId", "鏈寘鍚敤鎴蜂俊鎭�");
+        Assert.hasKeyAndValue(reqJson, "batchId", "鏈寘鍚壒娆′俊鎭�");
 
         return importRoomFeeImpl.importContractFees(reqJson);
     }

--
Gitblit v1.8.0