From bcf40504dd6dbad43d4d54a5c099abceb8de6d71 Mon Sep 17 00:00:00 2001
From: k94314517 <8417338+k94314517@user.noreply.gitee.com>
Date: 星期一, 01 四月 2024 17:04:41 +0800
Subject: [PATCH] Merge remote-tracking branch 'origin/1.0.1' into 1.0.1

---
 server/service/src/main/java/com/doumee/service/business/impl/UnionApplyServiceImpl.java |   10 ++++++----
 1 files changed, 6 insertions(+), 4 deletions(-)

diff --git a/server/service/src/main/java/com/doumee/service/business/impl/UnionApplyServiceImpl.java b/server/service/src/main/java/com/doumee/service/business/impl/UnionApplyServiceImpl.java
index 1f311eb..138b050 100644
--- a/server/service/src/main/java/com/doumee/service/business/impl/UnionApplyServiceImpl.java
+++ b/server/service/src/main/java/com/doumee/service/business/impl/UnionApplyServiceImpl.java
@@ -384,6 +384,8 @@
         UnionApply unionApply = new UnionApply();
         unionApply.setCreateDate(new Date());
         unionApply.setCreator(user.getId());
+        unionApply.setEditor(user.getId());
+        unionApply.setEditDate(new Date());
         unionApply.setCompanyId(user.getCompanyId());
         unionApply.setStartTime(saveUnionApplyDTO.getStartDate());
         unionApply.setEndTime(saveUnionApplyDTO.getEndDate());
@@ -440,7 +442,9 @@
         if(!user.getType().equals(Constants.TWO)){
             throw new BusinessException(ResponseStatus.NOT_ALLOWED.getCode(),"闈炲晢鎴风敤鎴凤紝鏃犳硶杩涜璇ユ搷浣滐紒");
         }
-        if(Objects.isNull(closeDTO)||Objects.isNull(closeDTO.getId())){
+        if(Objects.isNull(closeDTO)
+                ||Objects.isNull(closeDTO.getId())
+                ||StringUtils.isBlank(closeDTO.getReason())){
             throw new BusinessException(ResponseStatus.BAD_REQUEST);
         }
         UnionApply unionApply = unionApplyMapper.selectById(closeDTO.getId());
@@ -486,8 +490,6 @@
         info = info.replace("${param}", closeDTO.getReason());
         ApplyLog log = new ApplyLog(unionApply,applyLogType.getName(), info
                 ,unionApply.getId(),applyLogType.getKey(),null, null);
-        applyLogMapper.insert(log);
-
         applyLogMapper.insert(log);
     }
 
@@ -768,7 +770,7 @@
                 .set(UnionApply::getCurrentFee,sumCurrFee)
                 .eq(UnionApply::getId,unionApply.getId())
         );
-        //鍚堝苟鍗� 鎬讳繚鍗�
+        //鍚堝苟鍗� 鏂囦欢
         if(StringUtils.isNotBlank(unionApplyBXDDTO.getFileUrl())){
             Multifile multifile = new Multifile();
             multifile.setIsdeleted(Constants.ZERO);

--
Gitblit v1.9.3