소스 검색

绩效考核 流程结束

ys321973351 1 년 전
부모
커밋
9df9000fb9
1개의 변경된 파일6개의 추가작업 그리고 4개의 파일을 삭제
  1. 6 4
      itdmServer/module-iTDM/src/main/java/org/jeecg/modules/flowpath/service/impl/ItdmRunFlowPathServiceImpl.java

+ 6 - 4
itdmServer/module-iTDM/src/main/java/org/jeecg/modules/flowpath/service/impl/ItdmRunFlowPathServiceImpl.java

@@ -10,10 +10,7 @@ import org.jeecg.modules.flowpath.entity.ItdmFlowPath;
 import org.jeecg.modules.flowpath.entity.ItdmFlowPathStep;
 import org.jeecg.modules.flowpath.entity.ItdmRunFlowPath;
 import org.jeecg.modules.flowpath.entity.ItdmRunFlowPathStep;
-import org.jeecg.modules.flowpath.mapper.ItdmFlowPathMapper;
-import org.jeecg.modules.flowpath.mapper.ItdmFlowPathStepMapper;
-import org.jeecg.modules.flowpath.mapper.ItdmRunFlowPathMapper;
-import org.jeecg.modules.flowpath.mapper.ItdmRunFlowPathStepMapper;
+import org.jeecg.modules.flowpath.mapper.*;
 import org.jeecg.modules.flowpath.service.IItdmRunFlowPathService;
 import org.springframework.beans.factory.annotation.Autowired;
 import org.springframework.stereotype.Service;
@@ -49,6 +46,10 @@ public class ItdmRunFlowPathServiceImpl extends ServiceImpl<ItdmRunFlowPathMappe
     @SuppressWarnings("all")
     private ItdmRunFlowPathStepMapper itdmRunFlowPathStepMapper;
 
+    @Autowired
+    private ItdmFZRunFlowPathLogService logService;
+
+
 
     @Override
     @Transactional
@@ -87,6 +88,7 @@ public class ItdmRunFlowPathServiceImpl extends ServiceImpl<ItdmRunFlowPathMappe
             itdmRunFlowPathStepMapper.insert(itdmRunFlowPathStep);
         }
 
+        logService.insert(itdmRunFlowPath.getFlowPathId(), itdmRunFlowPath.getDqSetp(), list.get(0).getId(), "创建", "");
 
     }
 }