From 7cc2ab5c65f7ab4e0f4ccbda1fe8cb713e8cb877 Mon Sep 17 00:00:00 2001
From: k94314517 <8417338+k94314517@user.noreply.gitee.com>
Date: 星期一, 01 四月 2024 17:03:31 +0800
Subject: [PATCH] git ch

---
 server/service/src/main/java/com/doumee/service/business/impl/UnionApplyServiceImpl.java |   48 ++++++++++++++++++++++++++++++++++++++++++------
 1 files changed, 42 insertions(+), 6 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 a92609d..5dd2762 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
@@ -13,9 +13,11 @@
 import com.doumee.dao.business.*;
 import com.doumee.dao.business.dto.*;
 import com.doumee.dao.business.join.ApplyDetailJoinMapper;
+import com.doumee.dao.business.join.ApplyLogJoinMapper;
 import com.doumee.dao.business.join.InsuranceApplyJoinMapper;
 import com.doumee.dao.business.join.UnionApplyJoinMapper;
 import com.doumee.dao.business.model.*;
+import com.doumee.dao.system.model.SystemUser;
 import com.doumee.service.business.SmsEmailService;
 import com.doumee.service.business.UnionApplyService;
 import com.baomidou.mybatisplus.core.conditions.query.QueryWrapper;
@@ -79,6 +81,8 @@
     private SmsEmailService smsEmailService;
     @Autowired
     private ApplyLogMapper applyLogMapper;
+    @Autowired
+    private ApplyLogJoinMapper applyLogJoinMapper;
 
     @Value("${debug_model}")
     private boolean debugModel;
@@ -236,7 +240,16 @@
         }
 
         PageData<UnionApply> pageData = PageData.from(unionApplyJoinMapper.selectJoinPage(page,UnionApply.class, queryWrapper));
+        if(pageData!=null && pageData.getRecords()!=null){
+            for(UnionApply model : pageData.getRecords()){
+                initStatusInfo(model);
+            }
+        }
         return pageData;
+    }
+
+    private void initStatusInfo(UnionApply model) {
+        model.setStatusInfo(Constants.UnionApplyStatus.getName(Constants.formatIntegerNum(model.getStatus())));
     }
 
     @Override
@@ -274,6 +287,22 @@
                 unionApply.setServiceDays(DateUtil.daysBetweenDates(new Date(),unionApply.getStartTime())+1);
             }
         }
+        initStatusInfo(unionApply);
+
+        //鏌ヨ鎿嶄綔璁板綍
+        List<ApplyLog> applyLogList = applyLogJoinMapper.selectJoinList(ApplyLog.class,
+                new MPJLambdaWrapper<ApplyLog>()
+                        .selectAll(ApplyLog.class)
+                        .selectAs(SystemUser::getRealname,ApplyLog::getCreatorName)
+                        .selectAs(Company::getName,ApplyLog::getCompanyName)
+                        .selectAs(SystemUser::getType,ApplyLog::getCreatorType)
+                        .leftJoin(SystemUser.class,SystemUser::getId,ApplyLog::getCreator)
+                        .leftJoin(Company.class,Company::getId,SystemUser::getCompanyId)
+                        .in(ApplyLog::getObjType,Constants.ApplyLogType.getTypeList(Constants.THREE))
+                        .eq(ApplyLog::getApplyId,unionApply.getId())
+                        .orderByAsc(ApplyLog::getCreateDate)
+        );
+        unionApply.setApplyLogList(applyLogList);
         return unionApply;
     }
 
@@ -325,6 +354,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());
@@ -381,7 +412,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());
@@ -427,8 +460,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);
     }
 
@@ -709,7 +740,7 @@
                 .set(UnionApply::getCurrentFee,sumCurrFee)
                 .eq(UnionApply::getId,unionApply.getId())
         );
-        //鍚堝苟鍗� 鎬讳繚鍗�
+        //鍚堝苟鍗� 鏂囦欢
         if(StringUtils.isNotBlank(unionApplyBXDDTO.getFileUrl())){
             Multifile multifile = new Multifile();
             multifile.setIsdeleted(Constants.ZERO);
@@ -723,9 +754,14 @@
             multifileMapper.insert(multifile);
         }
 
-
         Constants.ApplyLogType applyLogType = Constants.ApplyLogType.IA_HBD_UPLOAD_TBD;
-        ApplyLog log = new ApplyLog(unionApply,applyLogType.getName(), null
+        String info = "";
+        if(Objects.nonNull(unionApplyBXDDTO.getStartTime())&&Objects.nonNull(unionApplyBXDDTO.getEndTime())){
+            info =applyLogType.getInfo();
+            info = info.replace("${param1}",DateUtil.getPlusTime2(unionApplyBXDDTO.getStartTime()));
+            info = info.replace("${param2}",DateUtil.getPlusTime2(unionApplyBXDDTO.getEndTime()));
+        }
+        ApplyLog log = new ApplyLog(unionApply,applyLogType.getName(), info
                 ,unionApply.getId(),applyLogType.getKey(),null, JSONObject.toJSONString(unionApply));
         applyLogMapper.insert(log);
 

--
Gitblit v1.9.3