瀏覽代碼

绩效考核 流程结束

ys321973351 1 年之前
父節點
當前提交
9df9000fb9

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