From 32b044aa78edf5d3e54c380a7ded17a266af6948 Mon Sep 17 00:00:00 2001
From: liyj <15602261488@163.com>
Date: Sat, 26 Oct 2024 12:01:01 +0800
Subject: [PATCH] 1、白云区矛盾纠纷多元化解平台数据割接脚本-同步在途工单
---
dyh-service/dyh-mediate/src/main/java/cn/huge/module/cases/service/CaseWindupApplyService.java | 65 +++++++++++++++++++++++++++++++-
1 files changed, 62 insertions(+), 3 deletions(-)
diff --git a/dyh-service/dyh-mediate/src/main/java/cn/huge/module/cases/service/CaseWindupApplyService.java b/dyh-service/dyh-mediate/src/main/java/cn/huge/module/cases/service/CaseWindupApplyService.java
index 1289d14..8dd1018 100644
--- a/dyh-service/dyh-mediate/src/main/java/cn/huge/module/cases/service/CaseWindupApplyService.java
+++ b/dyh-service/dyh-mediate/src/main/java/cn/huge/module/cases/service/CaseWindupApplyService.java
@@ -3,6 +3,10 @@
import cn.huge.base.common.exception.ServiceException;
import cn.huge.base.common.utils.DateUtils;
import cn.huge.base.common.utils.IdUtils;
+import cn.huge.base.common.utils.ObjectUtils;
+import cn.huge.module.cases.domain.dto.FrontPageListDTO;
+import cn.huge.module.cases.domain.dto.FrontPageListJADTO;
+import cn.huge.module.cases.domain.po.CaseInfo;
import cn.huge.module.client.api.impl.UtilsClientImpl;
import cn.huge.module.cases.dao.mapper.CaseWindupApplyMapper;
import cn.huge.module.cases.domain.po.CaseWindupApply;
@@ -11,13 +15,11 @@
import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.stereotype.Service;
import lombok.extern.slf4j.Slf4j;
-import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.data.domain.Page;
import org.springframework.data.domain.PageImpl;
import org.springframework.data.domain.PageRequest;
import org.springframework.transaction.annotation.Transactional;
-import javax.annotation.PostConstruct;
import java.util.Date;
import java.util.List;
import java.util.Map;
@@ -40,6 +42,8 @@
@Autowired
private UtilsClientImpl utilsClient;
+ @Autowired
+ private CaseInfoService caseInfoService;
/**
* 更新对象
@@ -140,11 +144,66 @@
try{
QueryWrapper<CaseWindupApply> caseWindupApplyQueryWrapper = new QueryWrapper<>();
caseWindupApplyQueryWrapper.eq("case_task_id", caseTaskId);
- return mapper.selectOne(caseWindupApplyQueryWrapper);
+ CaseWindupApply caseWindupApply = mapper.selectOne(caseWindupApplyQueryWrapper);
+ if (ObjectUtils.isNotEmpty(caseWindupApply)) {
+ QueryWrapper<CaseInfo> caseInfoQueryWrapper =new QueryWrapper<>();
+ caseInfoQueryWrapper.eq("id", caseWindupApply.getCaseId()).select("case_level");
+ CaseInfo caseInfo = caseInfoService.getOne(caseInfoQueryWrapper);
+ caseWindupApply.setCaseLevel(caseInfo.getCaseLevel());
+ }
+ return caseWindupApply;
}catch (Exception e){
log.error("[CaseWindupApplyService.getByCaseTaskId]调用失败,异常信息:"+e, e);
throw new ServiceException("CaseWindupApplyService.getByCaseTaskId", e);
}
}
+ /**
+ * 首页-待审核分页查询
+ * @param terms 条件
+ * @return Page
+ */
+ public long countMyTaskApplyReview(Map<String, Object> terms){
+ long total = mapper.countMyTaskApplyReview(terms);
+ return total;
+ }
+
+ /**
+ * 首页-待审核查询
+ * @param page 分页对象
+ * @param terms 条件
+ * @return Page
+ */
+ public List<FrontPageListDTO> listMyTaskApplyReview(PageRequest page, Map<String, Object> terms){
+ List<FrontPageListDTO> frontPageListDTOList = mapper.listMyTaskApplyReview(page, terms);
+ return frontPageListDTOList;
+ }
+
+ /**
+ * 首页-查询数量
+ * @param auditUnitId 条件
+ * @return Page
+ */
+ public long countApplyReview(String auditUnitId){
+ return mapper.countApplyReview(auditUnitId);
+ }
+
+ /**
+ * 首页-查询待办任务-结案申请/已结案条件统计
+ * @param terms 条件
+ * @return Page
+ */
+ public long countMyTaskJa(Map<String, Object> terms){
+ return mapper.countMyTaskJa(terms);
+ }
+
+ /**
+ * 首页-查询待办任务-结案申请/已结案分页查询
+ * @param page 分页对象
+ * @param terms 条件
+ * @return Page
+ */
+ public List<FrontPageListJADTO> listMyTaskJa(PageRequest page, Map<String, Object> terms){
+ return mapper.listMyTaskJa(page, terms);
+ }
}
--
Gitblit v1.8.0