Commit 9ce4235a authored by xixinzhao's avatar xixinzhao

修改提交

parent 286425b8
...@@ -13,7 +13,7 @@ public enum WorkFlowBranchEnum { ...@@ -13,7 +13,7 @@ public enum WorkFlowBranchEnum {
DAILY("日常检查", "company", "daily", "daily"), DAILY("日常检查", "company", "daily", "daily"),
SPECIAL_C("专项检查", "company", "special", "special"), SPECIAL_C("专项检查", "company", "special", "special"),
SPECIAL_E("专项检查", "external", "special", "special"), SPECIAL_E("专项检查", "external", "special-daily", "special"),
SUPERVISED_DW("单位级审核", "department", "special-daily", "supervised"); SUPERVISED_DW("单位级审核", "department", "special-daily", "supervised");
/** /**
......
...@@ -265,7 +265,7 @@ public class HiddenDangerServiceImpl implements IHiddenDangerService { ...@@ -265,7 +265,7 @@ public class HiddenDangerServiceImpl implements IHiddenDangerService {
result.put("checkMode", hiddenDangerDto.getDangerType()); result.put("checkMode", hiddenDangerDto.getDangerType());
result.put("planId", plan.getId()); result.put("planId", plan.getId());
result.put("planName", plan.getName()); result.put("planName", plan.getName());
result.put("pointId", point.getId()); result.put("pointId", point.getOriginalId());
result.put("pointName", point.getName()); result.put("pointName", point.getName());
result.put("bizId", hiddenDangerDto.getCheckInputId()); result.put("bizId", hiddenDangerDto.getCheckInputId());
result.put("bizName", hiddenDangerDto.getInputItemName()); result.put("bizName", hiddenDangerDto.getInputItemName());
......
...@@ -45,6 +45,8 @@ public class CheckParamUtil { ...@@ -45,6 +45,8 @@ public class CheckParamUtil {
param.setPlanId(Long.parseLong(queryRequests.get(i).getValue().toString())); param.setPlanId(Long.parseLong(queryRequests.get(i).getValue().toString()));
} else if ("companyId".equals(name)) { } else if ("companyId".equals(name)) {
param.setCompanyId(Long.parseLong(queryRequests.get(i).getValue().toString())); param.setCompanyId(Long.parseLong(queryRequests.get(i).getValue().toString()));
} else if ("pointId".equals(name)) {
param.setPointId(Long.parseLong(queryRequests.get(i).getValue().toString()));
} }
} }
} }
......
...@@ -1996,7 +1996,7 @@ ...@@ -1996,7 +1996,7 @@
<if test="companyId != null"> <if test="companyId != null">
AND pp.original_id = #{companyId} AND pp.original_id = #{companyId}
</if> </if>
<if test="pointId != null"> <if test="pointId != null and pointId != -1">
AND pp.id = #{pointId} AND pp.id = #{pointId}
</if> </if>
<!-- <if test="orgCode != null">--> <!-- <if test="orgCode != null">-->
...@@ -2029,7 +2029,7 @@ ...@@ -2029,7 +2029,7 @@
<if test="companyId != null"> <if test="companyId != null">
AND pp.original_id = #{companyId} AND pp.original_id = #{companyId}
</if> </if>
<if test="pointId != null"> <if test="pointId != null and pointId != -1">
AND pp.id = #{pointId} AND pp.id = #{pointId}
</if> </if>
<!-- <if test="orgCode != null">--> <!-- <if test="orgCode != null">-->
......
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