Commit e47da4ae by jianan

报聘辅导人可以不填-报聘人没有辅导人,体系负责人,主管审批的时候不要显示这个

parent ef4d41c0
...@@ -116,12 +116,18 @@ public class PractitionerHiringDALServiceImpl implements PractitionerHiringDALSe ...@@ -116,12 +116,18 @@ public class PractitionerHiringDALServiceImpl implements PractitionerHiringDALSe
HiringApproveRecords record; HiringApproveRecords record;
for (MdPractitionerHiringApproveSteps step : stepsList) { for (MdPractitionerHiringApproveSteps step : stepsList) {
// S2前2步不用审批
if (Long.valueOf("30").equals(hiringMemberShip.getMdDropOptionId()) if (Long.valueOf("30").equals(hiringMemberShip.getMdDropOptionId())
&& (step.getStepSeq() == 1 || step.getStepSeq() == 2) && (step.getStepSeq() == 1 || step.getStepSeq() == 2)
) { ) {
continue; continue;
} }
// 没有辅导人,前2步不用审批
if ((hiringMemberShip.getMentorPractitionerId() == null || hiringMemberShip.getMentor() == null)
&& (step.getStepSeq() == 1 || step.getStepSeq() == 2)
) {
continue;
}
record = map.get(step.getId()); record = map.get(step.getId());
if (record != null) { if (record != null) {
resultList.add(record); resultList.add(record);
......
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