Commit 75c1643e authored by Rensq's avatar Rensq

提交危险作业添加环流熏蒸类型判断逻辑

parent 6d1cd8bd
...@@ -362,7 +362,9 @@ public class THazardWorkPlanServiceImpl extends SuperServiceImpl<THazardWorkPlan ...@@ -362,7 +362,9 @@ public class THazardWorkPlanServiceImpl extends SuperServiceImpl<THazardWorkPlan
if (orgTypeByOrgId == 0) { if (orgTypeByOrgId == 0) {
if (WorkTypeEnum.CONFINED_SPACE_WORK.getValue().equals(workTypeValue)) { if (WorkTypeEnum.CONFINED_SPACE_WORK.getValue().equals(workTypeValue)) {
processDefinitionKey = "hazardousTaskConfinedSpace"; processDefinitionKey = "hazardousTaskConfinedSpace";
} else { } else if (WorkTypeEnum.CIRCULATING_FUMIGATION.getValue().equals(workTypeValue)) {
processDefinitionKey = "hazardousTaskStifling";
}else {
processDefinitionKey = "hazardousTaskCommon"; processDefinitionKey = "hazardousTaskCommon";
} }
} else if (orgTypeByOrgId == 1) { } else if (orgTypeByOrgId == 1) {
......
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