|
|
|
@ -147,107 +147,32 @@ public class AssetCurrentController extends BaseController {
|
|
|
|
|
@PreAuthorize("@ss.hasAnyRoles('admin,common')")
|
|
|
|
|
@Transactional(rollbackFor = Exception.class)
|
|
|
|
|
public AjaxResult insert(@RequestBody @Valid AssetCurrent assetCurrent) {
|
|
|
|
|
|
|
|
|
|
List<Unit> list = unitService.lambdaQuery().eq(Unit::getNickName, assetCurrent.getDwmc()).eq(Unit::getDelFlag, 0).list();
|
|
|
|
|
if (list == null || list.isEmpty()) {
|
|
|
|
|
throw new ServiceException("请选择已有单位!");
|
|
|
|
|
}
|
|
|
|
|
List<AssetCurrent> list1 = assetCurrentService.lambdaQuery().eq(AssetCurrent::getXtmc, assetCurrent.getXtmc()).eq(AssetCurrent::getDwmc, assetCurrent.getDwmc()).list();
|
|
|
|
|
if (list1 != null && !list1.isEmpty()) {
|
|
|
|
|
throw new ServiceException("不允许新增重复资产!");
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
StringBuilder a = new StringBuilder();
|
|
|
|
|
if (assetCurrent.getGlymList() != null) {
|
|
|
|
|
assetCurrent.getGlymList().forEach(x -> {
|
|
|
|
|
if (!Objects.equals(x.getKey(), "") && x.getKey() != null) {
|
|
|
|
|
a.append(x.getKey());
|
|
|
|
|
a.append(",");
|
|
|
|
|
}
|
|
|
|
|
});
|
|
|
|
|
}
|
|
|
|
|
assetCurrent.setGlym(a.toString());
|
|
|
|
|
List<Acomma> a2 = new ArrayList<>();
|
|
|
|
|
if (assetCurrent.getGlIpList() != null) {
|
|
|
|
|
if (assetCurrent.getGlIp() != null && !assetCurrent.getGlIp().isEmpty()) {
|
|
|
|
|
for (Object o : JSONArray.parseArray(assetCurrent.getGlIp())) {
|
|
|
|
|
Acomma acomma = new Acomma();
|
|
|
|
|
JSONObject jsonObject = JSONObject.parseObject(o.toString());
|
|
|
|
|
if (BeanUtil.isNotEmpty(jsonObject.get("key"))) {
|
|
|
|
|
acomma.setKey(jsonObject.get("key").toString());
|
|
|
|
|
} else {
|
|
|
|
|
acomma.setKey("");
|
|
|
|
|
}
|
|
|
|
|
if (BeanUtil.isNotEmpty(jsonObject.get("ipType"))) {
|
|
|
|
|
acomma.setIpType(jsonObject.get("ipType").toString());
|
|
|
|
|
} else {
|
|
|
|
|
acomma.setIpType("");
|
|
|
|
|
}
|
|
|
|
|
Object portValue = jsonObject.get("port");
|
|
|
|
|
if (portValue != null && !portValue.toString().isEmpty()) {
|
|
|
|
|
acomma.setPort(portValue.toString());
|
|
|
|
|
}else{
|
|
|
|
|
acomma.setPort("");
|
|
|
|
|
}
|
|
|
|
|
a2.add(acomma);
|
|
|
|
|
}
|
|
|
|
|
assetCurrent.setGlIpList(a2);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
} else {
|
|
|
|
|
assetCurrent.setGlIpList(new ArrayList<>());
|
|
|
|
|
}
|
|
|
|
|
// assetCurrent.setGlIp(b.toString());
|
|
|
|
|
assetCurrentService.save(assetCurrent);
|
|
|
|
|
//新增新监管业务形态
|
|
|
|
|
if (assetCurrent.getXjgywxt() != null) {
|
|
|
|
|
assetCurrent.getXjgywxt().setAssetId(assetCurrent.getId());
|
|
|
|
|
assetBusinessFormService.save(assetCurrent.getXjgywxt());
|
|
|
|
|
}
|
|
|
|
|
if (assetCurrent.getGylxxList() != null) {
|
|
|
|
|
for (AssetSupplyChain items : assetCurrent.getGylxxList()) {
|
|
|
|
|
items.setAssetId(assetCurrent.getId());
|
|
|
|
|
if (assetCurrent.getXzType() == 1) {
|
|
|
|
|
List<Unit> list = unitService.lambdaQuery().eq(Unit::getNickName, assetCurrent.getDwmc()).eq(Unit::getDelFlag, 0).list();
|
|
|
|
|
if (list == null || list.isEmpty()) {
|
|
|
|
|
throw new ServiceException("请选择已有单位!");
|
|
|
|
|
}
|
|
|
|
|
//新增供应链
|
|
|
|
|
assetSupplyChainService.saveBatch(assetCurrent.getGylxxList());
|
|
|
|
|
}
|
|
|
|
|
if (assetCurrent.getJcwlList() != null) {
|
|
|
|
|
for (AssetBasicNetwork items : assetCurrent.getJcwlList()) {
|
|
|
|
|
items.setAssetId(assetCurrent.getId());
|
|
|
|
|
List<AssetCurrent> list1 = assetCurrentService.lambdaQuery().eq(AssetCurrent::getXtmc, assetCurrent.getXtmc()).eq(AssetCurrent::getDwmc, assetCurrent.getDwmc()).list();
|
|
|
|
|
if (list1 != null && !list1.isEmpty()) {
|
|
|
|
|
throw new ServiceException("不允许新增重复资产!");
|
|
|
|
|
}
|
|
|
|
|
//新增基础网络
|
|
|
|
|
assetBasicNetworkService.saveBatch(assetCurrent.getJcwlList());
|
|
|
|
|
}
|
|
|
|
|
if (assetCurrent.getOtherConcat() != null) {
|
|
|
|
|
for (UnitOtherConcat items : assetCurrent.getOtherConcat()) {
|
|
|
|
|
items.setAssetId(assetCurrent.getId());
|
|
|
|
|
}
|
|
|
|
|
//新增其他联系人
|
|
|
|
|
unitOtherConcatService.saveBatch(assetCurrent.getOtherConcat());
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
// 单位有进行中的任务时,管理端新增该单位下的资产则需同步至当前进行中的任务中。
|
|
|
|
|
//获取新增资产id
|
|
|
|
|
Long id = assetCurrent.getId();
|
|
|
|
|
Integer i = unitService.selectTaskId(assetCurrent.getDwmc(), "0");
|
|
|
|
|
if (i != null) {
|
|
|
|
|
//获取新增资产id
|
|
|
|
|
Long id = assetCurrent.getId();
|
|
|
|
|
//新增资产复制主表
|
|
|
|
|
AssetCurrentCpPo assetCurrentCpPo = new AssetCurrentCpPo();
|
|
|
|
|
BeanUtil.copyProperties(assetCurrent, assetCurrentCpPo);
|
|
|
|
|
assetCurrentCpPo.setTaskId(i);
|
|
|
|
|
assetCurrentCpPo.setAuditState("1");
|
|
|
|
|
assetCurrentCpPo.setXzType(1);
|
|
|
|
|
assetCurrentCpService.save(assetCurrentCpPo);
|
|
|
|
|
//新增新监管业务形态
|
|
|
|
|
//根据资产id查询新监管业务形态主表id
|
|
|
|
|
if (assetCurrent.getXjgywxt() != null) {
|
|
|
|
|
assetCurrentCpPo.getXjgywxt().setAssetId(id);
|
|
|
|
|
assetCurrentCpPo.getXjgywxt().setTaskId(i);
|
|
|
|
|
assetBusinessFormCpService.save(assetCurrentCpPo.getXjgywxt());
|
|
|
|
|
}
|
|
|
|
|
if (assetCurrent.getGylxxList() != null) {
|
|
|
|
|
for (AssetSupplyChainCpPo items : assetCurrentCpPo.getGylxxList()) {
|
|
|
|
|
items.setAssetId(id);
|
|
|
|
|
items.setTaskId(i);
|
|
|
|
|
}
|
|
|
|
|
//新增供应链
|
|
|
|
|
assetSupplyChainCpService.saveBatch(assetCurrentCpPo.getGylxxList());
|
|
|
|
@ -255,7 +180,6 @@ public class AssetCurrentController extends BaseController {
|
|
|
|
|
if (assetCurrent.getJcwlList() != null) {
|
|
|
|
|
for (AssetBasicNetworkCpPo items : assetCurrentCpPo.getJcwlList()) {
|
|
|
|
|
items.setAssetId(assetCurrent.getId());
|
|
|
|
|
items.setTaskId(i);
|
|
|
|
|
}
|
|
|
|
|
//新增基础网络
|
|
|
|
|
assetBasicNetworkCpService.saveBatch(assetCurrentCpPo.getJcwlList());
|
|
|
|
@ -263,11 +187,135 @@ public class AssetCurrentController extends BaseController {
|
|
|
|
|
if (assetCurrent.getOtherConcat() != null) {
|
|
|
|
|
for (UnitOtherConcatCpPo items : assetCurrentCpPo.getOtherConcat()) {
|
|
|
|
|
items.setAssetId(assetCurrent.getId());
|
|
|
|
|
items.setTaskId(i);
|
|
|
|
|
}
|
|
|
|
|
//新增其他联系人
|
|
|
|
|
unitOtherConcatCpService.saveBatch(assetCurrentCpPo.getOtherConcat());
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
} else {
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
List<Unit> list = unitService.lambdaQuery().eq(Unit::getNickName, assetCurrent.getDwmc()).eq(Unit::getDelFlag, 0).list();
|
|
|
|
|
if (list == null || list.isEmpty()) {
|
|
|
|
|
throw new ServiceException("请选择已有单位!");
|
|
|
|
|
}
|
|
|
|
|
List<AssetCurrent> list1 = assetCurrentService.lambdaQuery().eq(AssetCurrent::getXtmc, assetCurrent.getXtmc()).eq(AssetCurrent::getDwmc, assetCurrent.getDwmc()).list();
|
|
|
|
|
if (list1 != null && !list1.isEmpty()) {
|
|
|
|
|
throw new ServiceException("不允许新增重复资产!");
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
StringBuilder a = new StringBuilder();
|
|
|
|
|
if (assetCurrent.getGlymList() != null) {
|
|
|
|
|
assetCurrent.getGlymList().forEach(x -> {
|
|
|
|
|
if (!Objects.equals(x.getKey(), "") && x.getKey() != null) {
|
|
|
|
|
a.append(x.getKey());
|
|
|
|
|
a.append(",");
|
|
|
|
|
}
|
|
|
|
|
});
|
|
|
|
|
}
|
|
|
|
|
assetCurrent.setGlym(a.toString());
|
|
|
|
|
List<Acomma> a2 = new ArrayList<>();
|
|
|
|
|
if (assetCurrent.getGlIpList() != null) {
|
|
|
|
|
if (assetCurrent.getGlIp() != null && !assetCurrent.getGlIp().isEmpty()) {
|
|
|
|
|
for (Object o : JSONArray.parseArray(assetCurrent.getGlIp())) {
|
|
|
|
|
Acomma acomma = new Acomma();
|
|
|
|
|
JSONObject jsonObject = JSONObject.parseObject(o.toString());
|
|
|
|
|
if (BeanUtil.isNotEmpty(jsonObject.get("key"))) {
|
|
|
|
|
acomma.setKey(jsonObject.get("key").toString());
|
|
|
|
|
} else {
|
|
|
|
|
acomma.setKey("");
|
|
|
|
|
}
|
|
|
|
|
if (BeanUtil.isNotEmpty(jsonObject.get("ipType"))) {
|
|
|
|
|
acomma.setIpType(jsonObject.get("ipType").toString());
|
|
|
|
|
} else {
|
|
|
|
|
acomma.setIpType("");
|
|
|
|
|
}
|
|
|
|
|
Object portValue = jsonObject.get("port");
|
|
|
|
|
if (portValue != null && !portValue.toString().isEmpty()) {
|
|
|
|
|
acomma.setPort(portValue.toString());
|
|
|
|
|
} else {
|
|
|
|
|
acomma.setPort("");
|
|
|
|
|
}
|
|
|
|
|
a2.add(acomma);
|
|
|
|
|
}
|
|
|
|
|
assetCurrent.setGlIpList(a2);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
} else {
|
|
|
|
|
assetCurrent.setGlIpList(new ArrayList<>());
|
|
|
|
|
}
|
|
|
|
|
// assetCurrent.setGlIp(b.toString());
|
|
|
|
|
assetCurrentService.save(assetCurrent);
|
|
|
|
|
//新增新监管业务形态
|
|
|
|
|
if (assetCurrent.getXjgywxt() != null) {
|
|
|
|
|
assetCurrent.getXjgywxt().setAssetId(assetCurrent.getId());
|
|
|
|
|
assetBusinessFormService.save(assetCurrent.getXjgywxt());
|
|
|
|
|
}
|
|
|
|
|
if (assetCurrent.getGylxxList() != null) {
|
|
|
|
|
for (AssetSupplyChain items : assetCurrent.getGylxxList()) {
|
|
|
|
|
items.setAssetId(assetCurrent.getId());
|
|
|
|
|
}
|
|
|
|
|
//新增供应链
|
|
|
|
|
assetSupplyChainService.saveBatch(assetCurrent.getGylxxList());
|
|
|
|
|
}
|
|
|
|
|
if (assetCurrent.getJcwlList() != null) {
|
|
|
|
|
for (AssetBasicNetwork items : assetCurrent.getJcwlList()) {
|
|
|
|
|
items.setAssetId(assetCurrent.getId());
|
|
|
|
|
}
|
|
|
|
|
//新增基础网络
|
|
|
|
|
assetBasicNetworkService.saveBatch(assetCurrent.getJcwlList());
|
|
|
|
|
}
|
|
|
|
|
if (assetCurrent.getOtherConcat() != null) {
|
|
|
|
|
for (UnitOtherConcat items : assetCurrent.getOtherConcat()) {
|
|
|
|
|
items.setAssetId(assetCurrent.getId());
|
|
|
|
|
}
|
|
|
|
|
//新增其他联系人
|
|
|
|
|
unitOtherConcatService.saveBatch(assetCurrent.getOtherConcat());
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
// 单位有进行中的任务时,管理端新增该单位下的资产则需同步至当前进行中的任务中。
|
|
|
|
|
//获取新增资产id
|
|
|
|
|
Long id = assetCurrent.getId();
|
|
|
|
|
Integer i = unitService.selectTaskId(assetCurrent.getDwmc(), "0");
|
|
|
|
|
if (i != null) {
|
|
|
|
|
//新增资产复制主表
|
|
|
|
|
AssetCurrentCpPo assetCurrentCpPo = new AssetCurrentCpPo();
|
|
|
|
|
BeanUtil.copyProperties(assetCurrent, assetCurrentCpPo);
|
|
|
|
|
assetCurrentCpPo.setTaskId(i);
|
|
|
|
|
assetCurrentCpPo.setXzType(1);
|
|
|
|
|
assetCurrentCpService.save(assetCurrentCpPo);
|
|
|
|
|
//新增新监管业务形态
|
|
|
|
|
//根据资产id查询新监管业务形态主表id
|
|
|
|
|
if (assetCurrent.getXjgywxt() != null) {
|
|
|
|
|
assetCurrentCpPo.getXjgywxt().setAssetId(id);
|
|
|
|
|
assetCurrentCpPo.getXjgywxt().setTaskId(i);
|
|
|
|
|
assetBusinessFormCpService.save(assetCurrentCpPo.getXjgywxt());
|
|
|
|
|
}
|
|
|
|
|
if (assetCurrent.getGylxxList() != null) {
|
|
|
|
|
for (AssetSupplyChainCpPo items : assetCurrentCpPo.getGylxxList()) {
|
|
|
|
|
items.setAssetId(id);
|
|
|
|
|
items.setTaskId(i);
|
|
|
|
|
}
|
|
|
|
|
//新增供应链
|
|
|
|
|
assetSupplyChainCpService.saveBatch(assetCurrentCpPo.getGylxxList());
|
|
|
|
|
}
|
|
|
|
|
if (assetCurrent.getJcwlList() != null) {
|
|
|
|
|
for (AssetBasicNetworkCpPo items : assetCurrentCpPo.getJcwlList()) {
|
|
|
|
|
items.setAssetId(assetCurrent.getId());
|
|
|
|
|
items.setTaskId(i);
|
|
|
|
|
}
|
|
|
|
|
//新增基础网络
|
|
|
|
|
assetBasicNetworkCpService.saveBatch(assetCurrentCpPo.getJcwlList());
|
|
|
|
|
}
|
|
|
|
|
if (assetCurrent.getOtherConcat() != null) {
|
|
|
|
|
for (UnitOtherConcatCpPo items : assetCurrentCpPo.getOtherConcat()) {
|
|
|
|
|
items.setAssetId(assetCurrent.getId());
|
|
|
|
|
items.setTaskId(i);
|
|
|
|
|
}
|
|
|
|
|
//新增其他联系人
|
|
|
|
|
unitOtherConcatCpService.saveBatch(assetCurrentCpPo.getOtherConcat());
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
return success();
|
|
|
|
|
|
|
|
|
@ -414,7 +462,7 @@ public class AssetCurrentController extends BaseController {
|
|
|
|
|
byId.setGlymList(new ArrayList<>());
|
|
|
|
|
}
|
|
|
|
|
List<Acomma> a2 = new ArrayList<>();
|
|
|
|
|
if(byId.getGlIp()!=null&& !byId.getGlIp().isEmpty()){
|
|
|
|
|
if (byId.getGlIp() != null && !byId.getGlIp().isEmpty()) {
|
|
|
|
|
for (Object o : JSONArray.parseArray(byId.getGlIp())) {
|
|
|
|
|
Acomma acomma = new Acomma();
|
|
|
|
|
JSONObject jsonObject = JSONObject.parseObject(o.toString());
|
|
|
|
@ -431,13 +479,13 @@ public class AssetCurrentController extends BaseController {
|
|
|
|
|
Object portValue = jsonObject.get("port");
|
|
|
|
|
if (portValue != null && !portValue.toString().isEmpty()) {
|
|
|
|
|
acomma.setPort(portValue.toString());
|
|
|
|
|
}else{
|
|
|
|
|
} else {
|
|
|
|
|
acomma.setPort("");
|
|
|
|
|
}
|
|
|
|
|
a2.add(acomma);
|
|
|
|
|
}
|
|
|
|
|
byId.setGlIpList(a2);
|
|
|
|
|
}else {
|
|
|
|
|
} else {
|
|
|
|
|
byId.setGlIpList(new ArrayList<>());
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
@ -458,94 +506,142 @@ public class AssetCurrentController extends BaseController {
|
|
|
|
|
BeanUtil.copyProperties(as, ass);
|
|
|
|
|
assetCurrentCpService.updateById(ass);
|
|
|
|
|
//通过数据同步
|
|
|
|
|
if ("2".equals(as.getAuditState())) {
|
|
|
|
|
if ("2".equals(as.getAuditState()) && as.getXzType() != 1) {
|
|
|
|
|
AssetCurrentCpPo byId = assetCurrentCpService.getById(as.getCurrentId());
|
|
|
|
|
AssetCurrent assetCurrent = new AssetCurrent();
|
|
|
|
|
BeanUtil.copyProperties(byId, assetCurrent);
|
|
|
|
|
//修改主表
|
|
|
|
|
assetCurrentService.updateById(assetCurrent);
|
|
|
|
|
//删除副表数据然后再添加
|
|
|
|
|
assetSupplyChainService.deleteByAssetIds(assetCurrent.getId());
|
|
|
|
|
assetBasicNetworkService.deleteByAssetIds(assetCurrent.getId());
|
|
|
|
|
assetBusinessFormService.deleteByAssetIds(assetCurrent.getId());
|
|
|
|
|
unitOtherConcatService.deleteByAssetIds(assetCurrent.getId());
|
|
|
|
|
Result result = getResult(assetCurrent, byId);
|
|
|
|
|
//如果有任务也修改任务这边
|
|
|
|
|
taskTb(byId, result.list, result.list1, result.list2, result.list3);
|
|
|
|
|
} else {
|
|
|
|
|
AssetCurrentCpPo byId = assetCurrentCpService.getById(as.getCurrentId());
|
|
|
|
|
AssetCurrent assetCurrent = new AssetCurrent();
|
|
|
|
|
BeanUtil.copyProperties(byId, assetCurrent);
|
|
|
|
|
//修改主表
|
|
|
|
|
assetCurrentService.save(assetCurrent);
|
|
|
|
|
//删除副表数据然后再添加
|
|
|
|
|
Result result = getResult(assetCurrent, byId);
|
|
|
|
|
//如果有任务也修改任务这边
|
|
|
|
|
taskTb(byId, result.list, result.list1, result.list2, result.list3);
|
|
|
|
|
}
|
|
|
|
|
return success();
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
private Result getResult(AssetCurrent assetCurrent, AssetCurrentCpPo byId) {
|
|
|
|
|
assetSupplyChainService.deleteByAssetIds(assetCurrent.getId());
|
|
|
|
|
assetBasicNetworkService.deleteByAssetIds(assetCurrent.getId());
|
|
|
|
|
assetBusinessFormService.deleteByAssetIds(assetCurrent.getId());
|
|
|
|
|
unitOtherConcatService.deleteByAssetIds(assetCurrent.getId());
|
|
|
|
|
|
|
|
|
|
List<AssetSupplyChainCpPo> list = assetSupplyChainCpService.lambdaQuery().eq(AssetSupplyChainCpPo::getAssetId, byId.getId()).isNull(AssetSupplyChainCpPo::getTaskId).list();
|
|
|
|
|
list.forEach(x -> {
|
|
|
|
|
AssetSupplyChain a1 = new AssetSupplyChain();
|
|
|
|
|
BeanUtil.copyProperties(x, a1);
|
|
|
|
|
assetSupplyChainService.save(a1);
|
|
|
|
|
});
|
|
|
|
|
|
|
|
|
|
List<AssetBasicNetworkCpPo> list1 = assetBasicNetworkCpService.lambdaQuery().eq(AssetBasicNetworkCpPo::getAssetId, byId.getId()).isNull(AssetBasicNetworkCpPo::getTaskId).list();
|
|
|
|
|
list1.forEach(x -> {
|
|
|
|
|
AssetBasicNetwork a2 = new AssetBasicNetwork();
|
|
|
|
|
BeanUtil.copyProperties(x, a2);
|
|
|
|
|
assetBasicNetworkService.save(a2);
|
|
|
|
|
});
|
|
|
|
|
|
|
|
|
|
List<AssetBusinessFormCpPo> list2 = assetBusinessFormCpService.lambdaQuery().eq(AssetBusinessFormCpPo::getAssetId, byId.getId()).isNull(AssetBusinessFormCpPo::getTaskId).list();
|
|
|
|
|
list2.forEach(x -> {
|
|
|
|
|
AssetBusinessForm a3 = new AssetBusinessForm();
|
|
|
|
|
BeanUtil.copyProperties(x, a3);
|
|
|
|
|
assetBusinessFormService.save(a3);
|
|
|
|
|
});
|
|
|
|
|
|
|
|
|
|
List<AssetSupplyChainCpPo> list = assetSupplyChainCpService.lambdaQuery().eq(AssetSupplyChainCpPo::getAssetId, byId.getId()).isNull(AssetSupplyChainCpPo::getTaskId).list();
|
|
|
|
|
List<UnitOtherConcatCpPo> list3 = unitOtherConcatCpService.lambdaQuery().eq(UnitOtherConcatCpPo::getAssetId, byId.getId()).isNull(UnitOtherConcatCpPo::getTaskId).list();
|
|
|
|
|
list3.forEach(x -> {
|
|
|
|
|
UnitOtherConcat a4 = new UnitOtherConcat();
|
|
|
|
|
BeanUtil.copyProperties(x, a4);
|
|
|
|
|
unitOtherConcatService.save(a4);
|
|
|
|
|
});
|
|
|
|
|
Result result = new Result(list, list1, list2, list3);
|
|
|
|
|
return result;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
private static class Result {
|
|
|
|
|
public final List<AssetSupplyChainCpPo> list;
|
|
|
|
|
public final List<AssetBasicNetworkCpPo> list1;
|
|
|
|
|
public final List<AssetBusinessFormCpPo> list2;
|
|
|
|
|
public final List<UnitOtherConcatCpPo> list3;
|
|
|
|
|
|
|
|
|
|
public Result(List<AssetSupplyChainCpPo> list, List<AssetBasicNetworkCpPo> list1, List<AssetBusinessFormCpPo> list2, List<UnitOtherConcatCpPo> list3) {
|
|
|
|
|
this.list = list;
|
|
|
|
|
this.list1 = list1;
|
|
|
|
|
this.list2 = list2;
|
|
|
|
|
this.list3 = list3;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
private void taskTb(AssetCurrentCpPo byId, List<AssetSupplyChainCpPo> list, List<AssetBasicNetworkCpPo> list1, List<AssetBusinessFormCpPo> list2, List<UnitOtherConcatCpPo> list3) {
|
|
|
|
|
AssetCurrentCpPo one = assetCurrentCpService.lambdaQuery().isNotNull(AssetCurrentCpPo::getTaskId).ne(AssetCurrentCpPo::getStatus, 5).eq(AssetCurrentCpPo::getId, byId.getId()).one();
|
|
|
|
|
if (one != null) {
|
|
|
|
|
Integer taskId = one.getTaskId();
|
|
|
|
|
Long appId = one.getCurrentId();
|
|
|
|
|
Integer status = one.getStatus();
|
|
|
|
|
BeanUtil.copyProperties(byId, one);
|
|
|
|
|
one.setCurrentId(appId);
|
|
|
|
|
one.setTaskId(taskId);
|
|
|
|
|
one.setAuditState(null);
|
|
|
|
|
one.setAuditYy(null);
|
|
|
|
|
one.setStatus(status);
|
|
|
|
|
assetCurrentCpService.updateById(one);
|
|
|
|
|
|
|
|
|
|
QueryWrapper<AssetSupplyChainCpPo> queryWrapper2 = new QueryWrapper<>();
|
|
|
|
|
queryWrapper2.eq("asset_id", one.getId());
|
|
|
|
|
queryWrapper2.eq("task_id", taskId);
|
|
|
|
|
assetSupplyChainCpService.remove(queryWrapper2);
|
|
|
|
|
QueryWrapper<AssetBasicNetworkCpPo> queryWrapper3 = new QueryWrapper<>();
|
|
|
|
|
queryWrapper3.eq("asset_id", one.getId());
|
|
|
|
|
queryWrapper3.eq("task_id", taskId);
|
|
|
|
|
assetBasicNetworkCpService.remove(queryWrapper3);
|
|
|
|
|
QueryWrapper<AssetBusinessFormCpPo> queryWrapper4 = new QueryWrapper<>();
|
|
|
|
|
queryWrapper4.eq("asset_id", one.getId());
|
|
|
|
|
queryWrapper4.eq("task_id", taskId);
|
|
|
|
|
assetBusinessFormCpService.remove(queryWrapper4);
|
|
|
|
|
QueryWrapper<UnitOtherConcatCpPo> queryWrapper5 = new QueryWrapper<>();
|
|
|
|
|
queryWrapper5.eq("task_id", taskId);
|
|
|
|
|
queryWrapper5.eq("asset_id", one.getId());
|
|
|
|
|
unitOtherConcatCpService.remove(queryWrapper5);
|
|
|
|
|
list.forEach(x -> {
|
|
|
|
|
AssetSupplyChain a1 = new AssetSupplyChain();
|
|
|
|
|
BeanUtil.copyProperties(x, a1);
|
|
|
|
|
assetSupplyChainService.save(a1);
|
|
|
|
|
x.setTaskId(taskId);
|
|
|
|
|
assetSupplyChainCpService.save(x);
|
|
|
|
|
});
|
|
|
|
|
|
|
|
|
|
List<AssetBasicNetworkCpPo> list1 = assetBasicNetworkCpService.lambdaQuery().eq(AssetBasicNetworkCpPo::getAssetId, byId.getId()).isNull(AssetBasicNetworkCpPo::getTaskId).list();
|
|
|
|
|
list1.forEach(x -> {
|
|
|
|
|
AssetBasicNetwork a2 = new AssetBasicNetwork();
|
|
|
|
|
BeanUtil.copyProperties(x, a2);
|
|
|
|
|
assetBasicNetworkService.save(a2);
|
|
|
|
|
x.setTaskId(taskId);
|
|
|
|
|
assetBasicNetworkCpService.save(x);
|
|
|
|
|
});
|
|
|
|
|
|
|
|
|
|
List<AssetBusinessFormCpPo> list2 = assetBusinessFormCpService.lambdaQuery().eq(AssetBusinessFormCpPo::getAssetId, byId.getId()).isNull(AssetBusinessFormCpPo::getTaskId).list();
|
|
|
|
|
list2.forEach(x -> {
|
|
|
|
|
AssetBusinessForm a3 = new AssetBusinessForm();
|
|
|
|
|
BeanUtil.copyProperties(x, a3);
|
|
|
|
|
assetBusinessFormService.save(a3);
|
|
|
|
|
x.setTaskId(taskId);
|
|
|
|
|
assetBusinessFormCpService.save(x);
|
|
|
|
|
});
|
|
|
|
|
|
|
|
|
|
List<UnitOtherConcatCpPo> list3 = unitOtherConcatCpService.lambdaQuery().eq(UnitOtherConcatCpPo::getAssetId, byId.getId()).isNull(UnitOtherConcatCpPo::getTaskId).list();
|
|
|
|
|
list3.forEach(x -> {
|
|
|
|
|
UnitOtherConcat a4 = new UnitOtherConcat();
|
|
|
|
|
BeanUtil.copyProperties(x, a4);
|
|
|
|
|
unitOtherConcatService.save(a4);
|
|
|
|
|
x.setTaskId(taskId);
|
|
|
|
|
unitOtherConcatCpService.save(x);
|
|
|
|
|
});
|
|
|
|
|
//如果有任务也修改任务这边
|
|
|
|
|
AssetCurrentCpPo one = assetCurrentCpService.lambdaQuery().isNotNull(AssetCurrentCpPo::getTaskId).ne(AssetCurrentCpPo::getStatus, 5).eq(AssetCurrentCpPo::getId, byId.getId()).one();
|
|
|
|
|
if (one != null) {
|
|
|
|
|
Integer taskId = one.getTaskId();
|
|
|
|
|
Long appId = one.getCurrentId();
|
|
|
|
|
Integer status = one.getStatus();
|
|
|
|
|
BeanUtil.copyProperties(byId, one);
|
|
|
|
|
one.setCurrentId(appId);
|
|
|
|
|
one.setTaskId(taskId);
|
|
|
|
|
one.setAuditState(null);
|
|
|
|
|
one.setAuditYy(null);
|
|
|
|
|
one.setStatus(status);
|
|
|
|
|
assetCurrentCpService.updateById(one);
|
|
|
|
|
|
|
|
|
|
QueryWrapper<AssetSupplyChainCpPo> queryWrapper2 = new QueryWrapper<>();
|
|
|
|
|
queryWrapper2.eq("asset_id", one.getId());
|
|
|
|
|
queryWrapper2.eq("task_id", taskId);
|
|
|
|
|
assetSupplyChainCpService.remove(queryWrapper2);
|
|
|
|
|
QueryWrapper<AssetBasicNetworkCpPo> queryWrapper3 = new QueryWrapper<>();
|
|
|
|
|
queryWrapper3.eq("asset_id", one.getId());
|
|
|
|
|
queryWrapper3.eq("task_id", taskId);
|
|
|
|
|
assetBasicNetworkCpService.remove(queryWrapper3);
|
|
|
|
|
QueryWrapper<AssetBusinessFormCpPo> queryWrapper4 = new QueryWrapper<>();
|
|
|
|
|
queryWrapper4.eq("asset_id", one.getId());
|
|
|
|
|
queryWrapper4.eq("task_id", taskId);
|
|
|
|
|
assetBusinessFormCpService.remove(queryWrapper4);
|
|
|
|
|
QueryWrapper<UnitOtherConcatCpPo> queryWrapper5 = new QueryWrapper<>();
|
|
|
|
|
queryWrapper5.eq("task_id", taskId);
|
|
|
|
|
queryWrapper5.eq("asset_id", one.getId());
|
|
|
|
|
unitOtherConcatCpService.remove(queryWrapper5);
|
|
|
|
|
list.forEach(x -> {
|
|
|
|
|
x.setTaskId(taskId);
|
|
|
|
|
assetSupplyChainCpService.save(x);
|
|
|
|
|
});
|
|
|
|
|
list1.forEach(x -> {
|
|
|
|
|
x.setTaskId(taskId);
|
|
|
|
|
assetBasicNetworkCpService.save(x);
|
|
|
|
|
});
|
|
|
|
|
list2.forEach(x -> {
|
|
|
|
|
x.setTaskId(taskId);
|
|
|
|
|
assetBusinessFormCpService.save(x);
|
|
|
|
|
});
|
|
|
|
|
list3.forEach(x -> {
|
|
|
|
|
x.setTaskId(taskId);
|
|
|
|
|
unitOtherConcatCpService.save(x);
|
|
|
|
|
});
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
return success();
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
private static class deleteFb {
|
|
|
|
|
public final List<AssetSupplyChainCpPo> list;
|
|
|
|
|
public final List<AssetBasicNetworkCpPo> list1;
|
|
|
|
|
public final List<AssetBusinessFormCpPo> list2;
|
|
|
|
|
public final List<UnitOtherConcatCpPo> list3;
|
|
|
|
|
|
|
|
|
|
public deleteFb(List<AssetSupplyChainCpPo> list, List<AssetBasicNetworkCpPo> list1, List<AssetBusinessFormCpPo> list2, List<UnitOtherConcatCpPo> list3) {
|
|
|
|
|
this.list = list;
|
|
|
|
|
this.list1 = list1;
|
|
|
|
|
this.list2 = list2;
|
|
|
|
|
this.list3 = list3;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
//=================================================
|
|
|
|
|
|
|
|
|
@ -596,7 +692,7 @@ public class AssetCurrentController extends BaseController {
|
|
|
|
|
Object portValue = jsonObject.get("port");
|
|
|
|
|
if (portValue != null && !portValue.toString().isEmpty()) {
|
|
|
|
|
acomma.setPort(portValue.toString());
|
|
|
|
|
}else{
|
|
|
|
|
} else {
|
|
|
|
|
acomma.setPort("");
|
|
|
|
|
}
|
|
|
|
|
a2.add(acomma);
|
|
|
|
|