Commit 113def65 authored by wangqiang's avatar wangqiang

IED计划删除时,删除技术文件和流程任务的功能开发

parent 81604937
...@@ -192,7 +192,8 @@ public class ExtIEDPlanServiceImpl<V extends ExtIEDPlanVO> implements ExtIEDPlan ...@@ -192,7 +192,8 @@ public class ExtIEDPlanServiceImpl<V extends ExtIEDPlanVO> implements ExtIEDPlan
//文件编号 //文件编号
dxDocumentVO.setNumber(extIEDPlanVO.getFileNumber()); dxDocumentVO.setNumber(extIEDPlanVO.getFileNumber());
//文件名称
dxDocumentVO.setName(extIEDPlanVO.getFileName());
Map<String, Object> dynamicAttrs = new HashMap<>(); Map<String, Object> dynamicAttrs = new HashMap<>();
//文件代号 //文件代号
dynamicAttrs.put("fileNumber", extIEDPlanVO.getFileCode()); dynamicAttrs.put("fileNumber", extIEDPlanVO.getFileCode());
......
...@@ -271,5 +271,17 @@ public class WorkFlowUtil { ...@@ -271,5 +271,17 @@ public class WorkFlowUtil {
return processInfoVO; return processInfoVO;
} }
public boolean stopWf(DxDocumentVO doc){
DxWfProcessSearchVO dxWfProcessSearchVO = new DxWfProcessSearchVO();
dxWfProcessSearchVO.setPboClass(DxDocumentVO.class.getName());
dxWfProcessSearchVO.setPboId(doc.getVersionId());
Page<DxWfProcessVO> processList = wfcProcessFeign.getProcessList(dxWfProcessSearchVO, 1, 10);
if (!CollectionUtils.isEmpty(processList.getContent())) {
wfcProcessFeign.stopProcess( processList.getContent().get(0).getId());
return true;
}
return false;
}
} }
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment