@ -1,6 +1,7 @@
package com.ruoyi.tc.controller ;
import cn.hutool.core.collection.CollectionUtil ;
import com.baomidou.mybatisplus.core.conditions.query.QueryWrapper ;
import com.baomidou.mybatisplus.extension.plugins.pagination.Page ;
import com.ruoyi.common.core.controller.BaseController ;
import com.ruoyi.common.core.domain.AjaxResult ;
@ -459,6 +460,7 @@ public class AssetTaskController extends BaseController {
// 设置更新时间
assetCurrent . setUpdateTime ( date ) ;
BeanUtils . copyProperties ( assetCurrent , assetCurrentHistory ) ;
assetCurrentHistory . setCurrentId ( null ) ;
assetCurrentHistoryService . save ( assetCurrentHistory ) ;
//新增新监管业务形态历史表
@ -538,6 +540,113 @@ public class AssetTaskController extends BaseController {
@PostMapping ( "/jyTj" )
@Transactional ( rollbackFor = Exception . class )
public AjaxResult tj ( @RequestBody @Validated AssetCurrentJyPo assetCurrent ) {
// //判断是否是驳回后提交
// QueryWrapper<AssetCurrentJyPo> queryWrapper = new QueryWrapper<>();
// queryWrapper.eq("current_id", assetCurrent.getCurrentId());
// AssetCurrentJyPo assetCurrentJyPo = assetCurrentJyService.getOne(queryWrapper);
// if (assetCurrentJyPo.getStatus() == 4) {
// // 获取当前时间
// LocalDateTime localDateTime = LocalDateTime.now();
// // 转换为 Date
// Date date = Date.from(localDateTime.atZone(ZoneId.systemDefault()).toInstant());
// //新增历史记录
// StringBuilder e = new StringBuilder();
// if (CollectionUtil.isNotEmpty(assetCurrent.getGlymList())) {
// assetCurrent.getGlymList().forEach(x -> {
// if (!Objects.equals(x.getKey(), "") && x.getKey() != null) {
// e.append(x.getKey());
// e.append(",");
// }
// });
// }
// assetCurrent.setGlym(e.toString());
// StringBuilder f = new StringBuilder();
// if (CollectionUtil.isNotEmpty(assetCurrent.getGlIpList())) {
// assetCurrent.getGlIpList().forEach(x -> {
// if (!Objects.equals(x.getKey(), "") && x.getKey() != null) {
// f.append(x.getKey());
// f.append(",");
// }
// });
// }
// assetCurrent.setGlym(e.toString());
//
//
// assetCurrent.setGlIp(f.toString());
// assetCurrent.setStatus(assetCurrent.getStatus());
// AssetCurrentHistory assetCurrentHistory = new AssetCurrentHistory();
// // 设置更新时间
// assetCurrent.setUpdateTime(date);
// BeanUtils.copyProperties(assetCurrent, assetCurrentHistory);
// assetCurrentHistory.setCurrentId(null);
// assetCurrentHistory.setStatus(4);
// assetCurrentHistoryService.save(assetCurrentHistory);
//
// //新增新监管业务形态历史表
// if (assetCurrent.getXjgywxt() != null) {
// assetCurrent.getXjgywxt().setAssetId(assetCurrent.getId());
// assetCurrent.getXjgywxt().setTaskId(assetCurrent.getTaskId());
// AssetBusinessFormHistory assetBusinessFormHistory = new AssetBusinessFormHistory();
// assetBusinessFormHistory.setCopyId(assetCurrent.getCurrentId());
// BeanUtils.copyProperties(assetCurrent.getXjgywxt(), assetBusinessFormHistory);
// assetBusinessFormHistory.setBusinessId(null);
// assetBusinessFormHistoryService.save(assetBusinessFormHistory);
//
// }
// if (!assetCurrent.getGylxxList().isEmpty()) {
// for (AssetSupplyChainJyPo items : assetCurrent.getGylxxList()) {
// items.setAssetId(assetCurrent.getId());
// items.setTaskId(assetCurrent.getTaskId());
//
// }
// //新增供应链历史表
// List<AssetSupplyChainHistory> assetSupplyChainHistoryList = assetCurrent.getGylxxList().stream()
// .map(cpPo -> {
// AssetSupplyChainHistory assetSupplyChainHistory = new AssetSupplyChainHistory();
// assetSupplyChainHistory.setCopyId(assetCurrent.getCurrentId());
// BeanUtils.copyProperties(cpPo, assetSupplyChainHistory); // 复制属性
// assetSupplyChainHistory.setSupplyId(null);
// return assetSupplyChainHistory; // 返回新对象
// })
// .collect(Collectors.toList()); // 收集到列表中
// assetSupplyChainHistoryService.saveBatch(assetSupplyChainHistoryList);
// }
// if (!assetCurrent.getJcwlList().isEmpty()) {
// for (AssetBasicNetworkJyPo items : assetCurrent.getJcwlList()) {
// items.setAssetId(assetCurrent.getId());
// items.setTaskId(assetCurrent.getTaskId());
//
// }
// //新增基础网络历史表
// List<AssetBasicNetworkHistory> assetSupplyChainHistoryList = assetCurrent.getJcwlList().stream()
// .map(cpPo -> {
// AssetBasicNetworkHistory assetBasicNetworkHistory = new AssetBasicNetworkHistory();
// assetBasicNetworkHistory.setCopyId(assetCurrent.getCurrentId());
// BeanUtils.copyProperties(cpPo, assetBasicNetworkHistory); // 复制属性
// assetBasicNetworkHistory.setNetworkId(null);
// return assetBasicNetworkHistory; // 返回新对象
// })
// .collect(Collectors.toList()); // 收集到列表中
// assetBasicNetworkHistoryService.saveBatch(assetSupplyChainHistoryList);
// }
// if (!assetCurrent.getOtherConcat().isEmpty()) {
// for (UnitOtherConcatJyPo items : assetCurrent.getOtherConcat()) {
// items.setAssetId(assetCurrent.getId());
// items.setTaskId(assetCurrent.getTaskId());
// }
// //新增其他联系人
// List<UnitOtherConcatHistory> unitOtherConcatHistoryList = assetCurrent.getOtherConcat().stream()
// .map(cpPo -> {
// UnitOtherConcatHistory unitOtherConcatHistory = new UnitOtherConcatHistory();
// unitOtherConcatHistory.setCopyId(assetCurrent.getCurrentId());
// BeanUtils.copyProperties(cpPo, unitOtherConcatHistory); // 复制属性
// unitOtherConcatHistory.setConcatId(null);
// return unitOtherConcatHistory; // 返回新对象
// })
// .collect(Collectors.toList()); // 收集到列表中
// unitOtherConcatHistoryService.saveBatch(unitOtherConcatHistoryList);
// }
// }
//根据资产id和任务id删除五张表数据
assetCurrentCpService . deletByAssetIdandTaskId ( assetCurrent . getId ( ) , assetCurrent . getTaskId ( ) ) ;
assetBusinessFormCpService . deletByAssetIdandTaskId ( assetCurrent . getId ( ) , assetCurrent . getTaskId ( ) ) ;
@ -577,7 +686,7 @@ public class AssetTaskController extends BaseController {
}
assetCurrent . setGlIp ( b . toString ( ) ) ;
assetCurrent . setStatus ( 1 ) ;
Date date = new Date ( ) ;
Date date = new Date ( ) ;
assetCurrent . setUpdateTime ( date ) ;
//当审核状态为带待核查
if ( assetCurrent . getStatus ( ) . equals ( 1 ) ) {
@ -620,7 +729,7 @@ public class AssetTaskController extends BaseController {
// 获取当前时间
LocalDateTime localDateTime = LocalDateTime . now ( ) ;
// 转换为 Date
date = Date . from ( localDateTime . atZone ( ZoneId . systemDefault ( ) ) . toInstant ( ) ) ;
date = Date . from ( localDateTime . atZone ( ZoneId . systemDefault ( ) ) . toInstant ( ) ) ;
//新增历史记录
StringBuilder c = new StringBuilder ( ) ;
if ( CollectionUtil . isNotEmpty ( assetCurrent . getGlymList ( ) ) ) {
@ -631,7 +740,7 @@ public class AssetTaskController extends BaseController {
}
} ) ;
}
assetCurrent . setGlym ( a . toString ( ) ) ;
assetCurrent . setGlym ( c . toString ( ) ) ;
StringBuilder d = new StringBuilder ( ) ;
if ( CollectionUtil . isNotEmpty ( assetCurrent . getGlIpList ( ) ) ) {
assetCurrent . getGlIpList ( ) . forEach ( x - > {
@ -641,13 +750,14 @@ public class AssetTaskController extends BaseController {
}
} ) ;
}
assetCurrent . setGlIp ( b . toString ( ) ) ;
assetCurrent . setGlIp ( d . toString ( ) ) ;
assetCurrent . setStatus ( assetCurrent . getStatus ( ) ) ;
AssetCurrentHistory assetCurrentHistory = new AssetCurrentHistory ( ) ;
// 设置更新时间
assetCurrent . setUpdateTime ( date ) ;
BeanUtils . copyProperties ( assetCurrent , assetCurrentHistory ) ;
assetCurrentHistory . setCurrentId ( null ) ;
assetCurrentHistoryService . save ( assetCurrentHistory ) ;
//新增新监管业务形态历史表
@ -714,6 +824,8 @@ public class AssetTaskController extends BaseController {
. collect ( Collectors . toList ( ) ) ; // 收集到列表中
unitOtherConcatHistoryService . saveBatch ( unitOtherConcatHistoryList ) ;
}
return success ( ) ;
}
@ -955,6 +1067,20 @@ public class AssetTaskController extends BaseController {
@PostMapping ( "/xcxjyTj" )
@Transactional ( rollbackFor = Exception . class )
public AjaxResult xcxJyTj ( @RequestBody @Validated AssetMiniProgramsJyPo assetMiniProgramsJyPo ) {
// //判断是否是驳回后提交
// QueryWrapper<AssetMiniProgramsJyPo> queryWrapper = new QueryWrapper<>();
// queryWrapper.eq("mini_id", assetMiniProgramsJyPo.getMiniId());
// AssetMiniProgramsJyPo assetCurrentJyPo = assetMiniProgramsJyService.getOne(queryWrapper);
// if (assetCurrentJyPo.getStatus()==4){
// //新增历史记录表
// AssetMiniProgramsHistory assetMiniProgramsHistory = new AssetMiniProgramsHistory();
// BeanUtils.copyProperties(assetMiniProgramsJyPo, assetMiniProgramsHistory);
// assetMiniProgramsHistory.setMiniId(null);
// assetMiniProgramsHistory.setStatus(4);
// assetMiniProgramsHistoryService.save(assetMiniProgramsHistory);
// }
assetMiniProgramsCpService . deletByAssetIdandTaskId ( assetMiniProgramsJyPo . getAssetId ( ) , assetMiniProgramsJyPo . getTaskId ( ) ) ;
//新增流程节点时间
AssetLc assetLc = new AssetLc ( ) ;
@ -973,11 +1099,14 @@ public class AssetTaskController extends BaseController {
assetLcService . insert ( assetLc ) ;
}
assetMiniProgramsJyService . save ( assetMiniProgramsJyPo ) ;
//新增历史记录表
AssetMiniProgramsHistory assetMiniProgramsHistory = new AssetMiniProgramsHistory ( ) ;
BeanUtils . copyProperties ( assetMiniProgramsJyPo , assetMiniProgramsHistory ) ;
assetMiniProgramsHistory . setMiniId ( null ) ;
assetMiniProgramsHistoryService . save ( assetMiniProgramsHistory ) ;
//新增历史记录表
AssetMiniProgramsHistory assetMiniProgramsHistory = new AssetMiniProgramsHistory ( ) ;
BeanUtils . copyProperties ( assetMiniProgramsJyPo , assetMiniProgramsHistory ) ;
assetMiniProgramsHistory . setMiniId ( null ) ;
assetMiniProgramsHistoryService . save ( assetMiniProgramsHistory ) ;
return success ( ) ;
}
@ -992,6 +1121,20 @@ public class AssetTaskController extends BaseController {
@PostMapping ( "/gzhjyTj" )
@Transactional ( rollbackFor = Exception . class )
public AjaxResult gzhjyTj ( @RequestBody @Validated AssetOfficialAccountJyPo assetOfficialAccountJyPo ) {
// //判断是否是驳回后提交
// QueryWrapper<AssetOfficialAccountJyPo> queryWrapper = new QueryWrapper<>();
// queryWrapper.eq("account_id", assetOfficialAccountJyPo.getAccountId());
// AssetOfficialAccountJyPo assetCurrentJyPo = assetOfficialAccountJyService.getOne(queryWrapper);
// if (assetCurrentJyPo.getStatus()==4){
// //新增历史记录表
// AssetOfficialAccountHistory assetOfficialAccountHistory = new AssetOfficialAccountHistory();
// BeanUtils.copyProperties(assetOfficialAccountJyPo, assetOfficialAccountHistory);
// assetOfficialAccountHistory.setAccountId(null);
// assetOfficialAccountHistory.setStatus(4);
// assetOfficialAccountHistoryService.save(assetOfficialAccountHistory);
//
// }
assetOfficialAccountCpService . deletByAssetIdandTaskId ( assetOfficialAccountJyPo . getAssetId ( ) , assetOfficialAccountJyPo . getTaskId ( ) ) ;
if ( assetOfficialAccountJyPo . getCdList ( ) ! = null & & ! assetOfficialAccountJyPo . getCdList ( ) . isEmpty ( ) ) {
StringBuilder a = new StringBuilder ( ) ;
@ -1049,6 +1192,20 @@ public class AssetTaskController extends BaseController {
@PostMapping ( "/appjyTj" )
@Transactional ( rollbackFor = Exception . class )
public AjaxResult appjyTj ( @RequestBody @Validated AssetAppJyPo assetAppJyPo ) {
// //判断是否是驳回后提交
// QueryWrapper<AssetAppJyPo> queryWrapper = new QueryWrapper<>();
// queryWrapper.eq("app_id", assetAppJyPo.getAppId());
// AssetAppJyPo assetCurrentJyPo = assetAppJyService.getOne(queryWrapper);
// if (assetCurrentJyPo.getStatus()==4){
// //新增历史记录表
// AssetAppHistory assetAppHistory = new AssetAppHistory();
// BeanUtils.copyProperties(assetAppJyPo, assetAppHistory);
// assetAppHistory.setAppId(null);
// assetAppHistory.setStatus(4);
// assetAppHistoryService.save(assetAppHistory);
// }
//根据资产id和任务id删除数据
assetAppCpService . deletByAssetIdandTaskId ( assetAppJyPo . getAssetId ( ) , assetAppJyPo . getTaskId ( ) ) ;
//新增流程节点时间
@ -1069,10 +1226,13 @@ public class AssetTaskController extends BaseController {
assetAppJyPo . setUpdateTime ( date ) ;
assetAppJyService . save ( assetAppJyPo ) ;
//新增历史记录表
AssetAppHistory assetAppHistory = new AssetAppHistory ( ) ;
BeanUtils . copyProperties ( assetAppJyPo , assetAppHistory ) ;
assetAppHistory . setAppId ( null ) ;
assetAppHistoryService . save ( assetAppHistory ) ;
AssetAppHistory assetAppHistory = new AssetAppHistory ( ) ;
BeanUtils . copyProperties ( assetAppJyPo , assetAppHistory ) ;
assetAppHistory . setAppId ( null ) ;
assetAppHistoryService . save ( assetAppHistory ) ;
return success ( ) ;
}
@ -1087,6 +1247,21 @@ public class AssetTaskController extends BaseController {
@PostMapping ( "/emailjyTj" )
@Transactional ( rollbackFor = Exception . class )
public AjaxResult emailjyTj ( @RequestBody @Validated AssetEmailJyPo assetEmailJyPo ) {
// //判断是否是驳回后提交
// QueryWrapper<AssetEmailJyPo> queryWrapper = new QueryWrapper<>();
// queryWrapper.eq("email_id", assetEmailJyPo.getEmailId());
// AssetEmailJyPo assetCurrentJyPo = assetEmailJyService.getOne(queryWrapper);
// if (assetCurrentJyPo.getStatus()==4){
// //新增历史记录表
// AssetEmailHistory assetEmailHistory = new AssetEmailHistory();
// BeanUtils.copyProperties(assetEmailJyPo, assetEmailHistory);
// assetEmailHistory.setEmailId(null);
// assetEmailHistory.setStatus(4);
// assetEmailHistoryService.save(assetEmailHistory);
// }
//根据资产id和任务id删除数据
assetEmailCpService . deletByAssetIdandTaskId ( assetEmailJyPo . getAssetId ( ) , assetEmailJyPo . getTaskId ( ) ) ;
//新增流程节点时间