From b113be4dfacb8ce58789b12e8beca6cd9ba8fb3c Mon Sep 17 00:00:00 2001
From: liusheng <337615773@qq.com>
Date: 星期四, 07 九月 2023 16:58:42 +0800
Subject: [PATCH] 代码提交

---
 ruoyi-admin/src/main/java/com/ruoyi/web/controller/project/ServiceFundController.java |   21 ++++++++++++++-------
 1 files changed, 14 insertions(+), 7 deletions(-)

diff --git a/ruoyi-admin/src/main/java/com/ruoyi/web/controller/project/ServiceFundController.java b/ruoyi-admin/src/main/java/com/ruoyi/web/controller/project/ServiceFundController.java
index a708d1e..8d5bcc7 100644
--- a/ruoyi-admin/src/main/java/com/ruoyi/web/controller/project/ServiceFundController.java
+++ b/ruoyi-admin/src/main/java/com/ruoyi/web/controller/project/ServiceFundController.java
@@ -12,6 +12,7 @@
 import com.ruoyi.common.enums.BusinessType;
 import com.ruoyi.common.exception.ServiceException;
 import com.ruoyi.common.tax.TaxtUtils;
+import com.ruoyi.common.utils.SecurityUtils;
 import com.ruoyi.common.utils.StringUtils;
 import com.ruoyi.common.utils.bean.DtoConversionUtils;
 import com.ruoyi.common.utils.poi.ExcelUtil;
@@ -98,6 +99,8 @@
     public TableDataInfo list(ServiceFund serviceFund) {
         startPage();
         //List<ServiceFund> list = serviceFundService.queryList(serviceFund);
+        SysUser user = SecurityUtils.getLoginUser().getUser();
+        serviceFund.setUsername(user.getNickName());
         List<ServiceFund> list = serviceFundService.selectServiceFundList(serviceFund);
         return getDataTable(list);
     }
@@ -632,7 +635,7 @@
     @ApiOperation("鍒犻櫎璐圭敤鐢宠涓�")
     //@PreAuthorize("@ss.hasPermi('project:fund:remove')")
     @Log(title = "璐圭敤鐢宠涓�", businessType = BusinessType.DELETE)
-    @DeleteMapping("/{ids}")
+    @GetMapping("/remove/{ids}")
     public AjaxResult remove(@PathVariable Long[] ids) {
         return toAjax(serviceFundService.removeByIds(Arrays.asList(ids)));
     }
@@ -1087,11 +1090,14 @@
             String fyxm = "";
             fyxm += f.getItemname() == null ? "" : f.getItemname();
             fyxm += f.getAmount() + "鍏�";
-//            fyxm += "(";
-//            fyxm += f.getUnitname() == null ? "" : f.getUnitname() + ";";
-//            fyxm += f.getDepositbank() == null ? "" : f.getDepositbank() + ": ";
-//            fyxm += f.getBankcardno() == null ? "" : f.getBankcardno();
-//            fyxm += ")";
+            //濡傛灉鏄尰鐤楁垚鏈紝鍒欐妸閾惰鍗″姞涓婃瘡鏉℃槑缁嗙殑鍚庨潰
+            if (serviceFund.getApplytype().equals("3")) {
+                fyxm += "(";
+                fyxm += f.getUnitname() == null ? "" : f.getUnitname() + ";";
+                fyxm += f.getDepositbank() == null ? "" : f.getDepositbank() + ": ";
+                fyxm += f.getBankcardno() == null ? "" : f.getBankcardno();
+                fyxm += ")";
+            }
             map.put("FYXM", fyxm);
             newList.add(map);
         }
@@ -1104,7 +1110,8 @@
 //        dataMap.put("JEXS", serviceFund.getAmountrequested());
 //        dataMap.put("JEDS", convert(serviceFund.getAmountrequested()) + "鏁�");
         //澶囨敞閲屾斁鐨勬槸缁忓姙浜虹殑閾惰鍗′俊鎭�
-        dataMap.put("BXBZ", infoByUserNo == null ? "" : infoByUserNo.getBranchbankname() + "  " + infoByUserNo.getBankcardno());
+
+        dataMap.put("BXBZ", serviceFund.getApplytype().equals("3") ? "" : infoByUserNo == null ? "" : infoByUserNo.getBranchbankname() + "  " + infoByUserNo.getBankcardno());
         dataMap.put("YZ", serviceFund.getPresident() == null ? "" : serviceFund.getPresident());
         dataMap.put("CWFYZ", serviceFund.getFinvicepresident() == null ? "" : serviceFund.getFinvicepresident());
         dataMap.put("YWFYZ", serviceFund.getBusvicepresident() == null ? "" : serviceFund.getBusvicepresident());

--
Gitblit v1.9.3