From a196fc3cf85ac2bb993a4d185ae9c3a255e9fa6a Mon Sep 17 00:00:00 2001
From: xieb <vip_xiaobin810@163.com>
Date: Tue, 28 Nov 2023 15:20:48 +0800
Subject: [PATCH] 水库填报修复
---
skjcmanager/skjcmanager-service/skjcmanager-sm/src/main/java/cn/gistack/sm/sjztmd/service/impl/TbAttResPowerStationServiceImpl.java | 299 +++++++++++++++++++++++++++++++++++++----------------------
1 files changed, 189 insertions(+), 110 deletions(-)
diff --git a/skjcmanager/skjcmanager-service/skjcmanager-sm/src/main/java/cn/gistack/sm/sjztmd/service/impl/TbAttResPowerStationServiceImpl.java b/skjcmanager/skjcmanager-service/skjcmanager-sm/src/main/java/cn/gistack/sm/sjztmd/service/impl/TbAttResPowerStationServiceImpl.java
index e897b6d..caf9237 100644
--- a/skjcmanager/skjcmanager-service/skjcmanager-sm/src/main/java/cn/gistack/sm/sjztmd/service/impl/TbAttResPowerStationServiceImpl.java
+++ b/skjcmanager/skjcmanager-service/skjcmanager-sm/src/main/java/cn/gistack/sm/sjztmd/service/impl/TbAttResPowerStationServiceImpl.java
@@ -1,17 +1,24 @@
package cn.gistack.sm.sjztmd.service.impl;
+import cn.gistack.sm.intelligentCall.entity.Scene;
import cn.gistack.sm.sjztmd.entity.TbAttResPowerStation;
import cn.gistack.sm.sjztmd.mapper.TbAttResPowerStationMapper;
+import cn.gistack.sm.sjztmd.service.ITbAttResBaseService;
import cn.gistack.sm.sjztmd.service.ITbAttResPowerStationService;
import cn.gistack.system.user.feign.IUserClient;
import com.baomidou.dynamic.datasource.annotation.DS;
import com.baomidou.mybatisplus.extension.service.impl.ServiceImpl;
import org.springblade.core.secure.utils.AuthUtil;
+import org.springblade.core.tool.node.TreeNode;
import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.stereotype.Service;
+import org.springframework.transaction.annotation.Transactional;
import java.text.SimpleDateFormat;
+import java.util.ArrayList;
import java.util.Date;
+import java.util.List;
+import java.util.stream.Collectors;
/**
* @ClassName TbAttResPowerStationServiceImpl
@@ -27,162 +34,234 @@
@Autowired
private IUserClient userClient;
+ @Autowired
+ private ITbAttResBaseService tbAttResBaseService;
+
/**
* 查询水库填报详情信息
* @param guid
* @return
*/
@Override
- public TbAttResPowerStation getDetailByGuid(String guid) {
+ public List<TbAttResPowerStation> getDetailByGuid(String guid) {
return baseMapper.getDetailByResGuid(guid);
}
/**
* 编辑
- * @param tbAttResPowerStation
+ * @param newList
* @return
*/
@Override
- public boolean updateByGuid(TbAttResPowerStation tbAttResPowerStation) {
+ public boolean updateByGuid(List<TbAttResPowerStation> newList) {
+ boolean edit = false;
+ // 编辑标记
+ if (newList.get(0).getCheckState()==4){
+ edit = true;
+ }
// 查询是否存在
- TbAttResPowerStation detail = baseMapper.getDetailByResGuid(tbAttResPowerStation.getResGuid());
+ List<TbAttResPowerStation> oldList = baseMapper.getDetailByResGuid(newList.get(0).getResGuid());
// 更新日志
- setUpdateLog(detail,tbAttResPowerStation);
- // 修改
- int i = addOrUpdateByGuid(detail,tbAttResPowerStation);
- if (i>0){
+ setUpdateLog(oldList,newList);
+ // 创建或更新数据
+ boolean flag = addOrUpdate(oldList,newList);
+ if (flag){
+// if (!edit) {
+// tbAttResBaseService.updateFinalState(newList.get(0).getResGuid(), 0);
+// }
return true;
}
+ // 返回
+ return false;
+ }
+
+ /**
+ * 新增或更新数据
+ * @param oldList
+ * @param newList
+ * @return
+ */
+ @Transactional(rollbackFor = Exception.class)
+ public boolean addOrUpdate(List<TbAttResPowerStation> oldList,List<TbAttResPowerStation> newList) {
+ // 取旧数据和新提交数据差集--删除
+ // 去除前一天已填报的人员手机号集合
+ List<TbAttResPowerStation> removeList = oldList.stream().filter(vo -> !newList.stream().map(e ->
+ e.getGuid()).collect(Collectors.toList()).contains(vo.getGuid())).collect(Collectors.toList());
+ // 取旧数据和新提交数据交集--更新
+ List<TbAttResPowerStation> updateList = newList.stream().filter(vo -> oldList.stream().map(e ->
+ e.getGuid()).collect(Collectors.toList()).contains(vo.getGuid())).collect(Collectors.toList());
+ // 取新数提交据和旧数据交集--新增
+ List<TbAttResPowerStation> addList = newList.stream().filter(vo -> !oldList.stream().map(e ->
+ e.getGuid()).collect(Collectors.toList()).contains(vo.getGuid())).collect(Collectors.toList());
+ boolean addFlag = true;
+ boolean updateFlag = true;
+ boolean removeFlag = true;
+ if (addList.size()>0){
+ //如果是中途管理员编辑新增了一个,将状态设置为和原有的状态一致
+ // 批量新增
+ addFlag = saveBatch(addList);
+ tbAttResBaseService.updateFinalState(addList.get(0).getResGuid(),addList.get(0).getCheckState());
+ }
+ if (updateList.size()>0){
+ // 批量更新
+ addFlag = updateBatchById(updateList);
+ tbAttResBaseService.updateFinalState(updateList.get(0).getResGuid(),updateList.get(0).getCheckState());
+ }
+ if (removeList.size()>0){
+ // 批量删除
+ removeFlag = removeBatchByIds(removeList);
+ }
+ if (addFlag && updateFlag && removeFlag){
+ return true;
+ }
+ // 返回
return false;
}
/**
* 审核
- * @param tbAttResPowerStation
+ * @param newList
* @return
*/
@Override
- public boolean auditByGuid(TbAttResPowerStation tbAttResPowerStation) {
+ public boolean auditByGuid(List<TbAttResPowerStation> newList) {
+ boolean edit = false;
+ // 编辑标记
+ if (newList.get(0).getCheckState()==4){
+ edit = true;
+ }
// 查询是否存在
- TbAttResPowerStation detail = baseMapper.getDetailByResGuid(tbAttResPowerStation.getResGuid());
+ List<TbAttResPowerStation> oldList = baseMapper.getDetailByResGuid(newList.get(0).getResGuid());
// 更新操作日志
- setUpdateLog(detail,tbAttResPowerStation);
+ setUpdateLog(oldList,newList);
// 更新审核日志
- setUpdateCheckLog(detail,tbAttResPowerStation);
- if (null!=detail){
- tbAttResPowerStation.setGuid(detail.getGuid());
- }
- // 驳回情况下将状态修改回0即已填写未提交状态
- if (tbAttResPowerStation.getCheckState()==3){
- tbAttResPowerStation.setCheckState(0);
- }
+ setUpdateCheckLog(oldList,newList);
+
+ // 取旧数据和新提交数据交集--更新
+ List<TbAttResPowerStation> updateList = newList.stream().filter(vo -> oldList.stream().map(e ->
+ e.getGuid()).collect(Collectors.toList()).contains(vo.getGuid())).collect(Collectors.toList());
+
// 更新数据
- int i = baseMapper.updateById(tbAttResPowerStation);
- if (i>0){
+ boolean batch = updateBatchById(updateList);
+ if (batch){
+ if (!edit) {
+ tbAttResBaseService.updateFinalState(newList.get(0).getResGuid(), newList.get(0).getCheckState());
+ }
return true;
}
+ // 返回
return false;
}
/**
- * 更新
- * @param tbAttResPowerStation
- * @return
- */
- private int addOrUpdateByGuid(TbAttResPowerStation oldAbAttResBase,TbAttResPowerStation tbAttResPowerStation){
- int i = 0;
- if (null!=oldAbAttResBase){
- // 更新
- i = baseMapper.updateById(tbAttResPowerStation);
- }else {
- tbAttResPowerStation.setCreateTime(new Date());
- i = baseMapper.insert(tbAttResPowerStation);
- }
- // 返回
- return i;
- }
-
- /**
- * @param oldAbAttResBase
- * @param newTbAttResPowerStation
+ * @param oldList
+ * @param newList
* 更新审核记录
*/
- private void setUpdateCheckLog(TbAttResPowerStation oldAbAttResBase,TbAttResPowerStation newTbAttResPowerStation) {
- String fillName = "";
- if (newTbAttResPowerStation.getCheckState()==2){
- fillName = "审核";
- }
- if (newTbAttResPowerStation.getCheckState()==3){
- fillName = "退回" + (null==newTbAttResPowerStation.getCheckLog()?"":":" + newTbAttResPowerStation.getCheckLog());
- }
+ private void setUpdateCheckLog(List<TbAttResPowerStation> oldList,List<TbAttResPowerStation> newList) {
+ // 遍历
+ for (TbAttResPowerStation newTbAttResPowerStation : newList) {
+ String fillName = "";
+ if (newTbAttResPowerStation.getCheckState() == 2) {
+ fillName = "审核";
+ }
+ if (newTbAttResPowerStation.getCheckState() == 3) {
+ fillName = "退回" + (null == newTbAttResPowerStation.getCheckLog() ? "" : ":" + newTbAttResPowerStation.getCheckLog());
+ for (TbAttResPowerStation tbAttResPowerStation : oldList) {
+ if (tbAttResPowerStation.getGuid().equals(newTbAttResPowerStation.getGuid())){
+ // 退回时进行设置状态为填写中
+ newTbAttResPowerStation.setCheckState(0);
+ }
+ }
+ }
- // 拼接
- String time = new SimpleDateFormat("yyyy-MM-dd HH:mm").format(new Date());
- String userName = AuthUtil.getUser().getUserName();
- String phone = userClient.userInfoById(AuthUtil.getUserId()).getData().getPhone();
- StringBuilder builder = new StringBuilder();
- builder.append(time)
- .append(",")
- .append(fillName)
- .append(",")
- .append(userName)
- .append(",")
- .append(phone)
- .append(";");
- // 判断是否存在
- if (null==oldAbAttResBase){
- // 填报
- newTbAttResPowerStation.setCheckLog(builder.toString());
- }else {
- StringBuilder stringBuilder = new StringBuilder(null==oldAbAttResBase.getCheckLog()?"":oldAbAttResBase.getCheckLog());
- stringBuilder.append(builder);
- // 填报
- newTbAttResPowerStation.setCheckLog(stringBuilder.toString());
+ // 拼接
+ String time = new SimpleDateFormat("yyyy-MM-dd HH:mm").format(new Date());
+ String userName = AuthUtil.getUser().getUserName();
+ String phone = userClient.userInfoById(AuthUtil.getUserId()).getData().getPhone();
+ StringBuilder builder = new StringBuilder();
+ builder.append(time)
+ .append(",")
+ .append(fillName)
+ .append(",")
+ .append(userName)
+ .append(",")
+ .append(phone)
+ .append(";");
+ // 判断是否存在
+ if (null==newTbAttResPowerStation.getGuid() || newTbAttResPowerStation.getGuid().equals("")){
+ // 填报
+ newTbAttResPowerStation.setCheckLog(builder.toString());
+ } else {
+ for (TbAttResPowerStation tbAttResPowerStation : oldList) {
+ if (tbAttResPowerStation.getGuid().equals(newTbAttResPowerStation.getGuid())){
+ StringBuilder stringBuilder = new StringBuilder(null == tbAttResPowerStation.getCheckLog() ? "" : tbAttResPowerStation.getCheckLog());
+ stringBuilder.append(builder);
+ // 填报
+ newTbAttResPowerStation.setCheckLog(stringBuilder.toString());
+ }
+ }
+ }
}
}
/**
- * @param oldAbAttResBase
- * @param newTbAttResPowerStation
+ * @param oldList
+ * @param newList
* 更新操作记录
*/
- private void setUpdateLog(TbAttResPowerStation oldAbAttResBase,TbAttResPowerStation newTbAttResPowerStation) {
- String fillName = "";
- if (newTbAttResPowerStation.getCheckState()==0){
- fillName = "编辑";
- }
- if (newTbAttResPowerStation.getCheckState()==1){
- fillName = "提交";
- }
- if (newTbAttResPowerStation.getCheckState()==2){
- fillName = "审核";
- }
- if (newTbAttResPowerStation.getCheckState()==3){
- fillName = "退回" + (null==newTbAttResPowerStation.getCheckLog()?"":":" + newTbAttResPowerStation.getCheckLog());
- }
+ private void setUpdateLog(List<TbAttResPowerStation> oldList,List<TbAttResPowerStation> newList) {
+ // 遍历
+ for (TbAttResPowerStation newTbAttResPowerStation : newList){
+ String fillName = "";
+ if (newTbAttResPowerStation.getCheckState()==0){
+ fillName = "编辑";
+ }
+ if (newTbAttResPowerStation.getCheckState()==1){
+ fillName = "提交";
+ }
+ if (newTbAttResPowerStation.getCheckState()==2){
+ fillName = "审核";
+ }
+ if (newTbAttResPowerStation.getCheckState()==3){
+ fillName = "退回" + (null==newTbAttResPowerStation.getCheckLog()?"":":" + newTbAttResPowerStation.getCheckLog());
+ }
+ // 管理员编辑
+ if (newTbAttResPowerStation.getCheckState()==4){
+ fillName = "编辑";
+ // 找到相关的 guid 数据
+ if (oldList.size()>0) {
+ newTbAttResPowerStation.setCheckState(oldList.get(0).getCheckState());
+ }
+ }
- // 拼接
- String time = new SimpleDateFormat("yyyy-MM-dd HH:mm").format(new Date());
- String userName = AuthUtil.getUser().getUserName();
- String phone = userClient.userInfoById(AuthUtil.getUserId()).getData().getPhone();
- StringBuilder builder = new StringBuilder();
- builder.append(time)
- .append(",")
- .append(fillName)
- .append(",")
- .append(userName)
- .append(",")
- .append(phone)
- .append(";");
- // 判断是否存在
- if (null==oldAbAttResBase){
- // 填报
- newTbAttResPowerStation.setLog(builder.toString());
- }else {
- StringBuilder stringBuilder = new StringBuilder(null==oldAbAttResBase.getLog()?"":oldAbAttResBase.getLog());
- stringBuilder.append(builder);
- // 填报
- newTbAttResPowerStation.setLog(stringBuilder.toString());
+ // 拼接
+ String time = new SimpleDateFormat("yyyy-MM-dd HH:mm").format(new Date());
+ String userName = AuthUtil.getUser().getUserName();
+ String phone = userClient.userInfoById(AuthUtil.getUserId()).getData().getPhone();
+ StringBuilder builder = new StringBuilder();
+ builder.append(time)
+ .append(",")
+ .append(fillName)
+ .append(",")
+ .append(userName)
+ .append(",")
+ .append(phone)
+ .append(";");
+ // 判断是否存在
+ if (null==newTbAttResPowerStation.getGuid() || newTbAttResPowerStation.getGuid().equals("")){
+ // 填报
+ newTbAttResPowerStation.setLog(builder.toString());
+ }else {
+ for (TbAttResPowerStation tbAttResPowerStation : oldList) {
+ if (tbAttResPowerStation.getGuid().equals(newTbAttResPowerStation.getGuid())){
+ StringBuilder stringBuilder = new StringBuilder(null==tbAttResPowerStation.getLog()?"":tbAttResPowerStation.getLog());
+ stringBuilder.append(builder);
+ // 填报
+ newTbAttResPowerStation.setLog(stringBuilder.toString());
+ }
+ }
+ }
}
}
}
--
Gitblit v1.9.3