Commit 20ef7821 by jianan

【电子报聘】报聘经纪人所属体系规则优化5

parent 41dbcf5b
...@@ -206,20 +206,14 @@ public class PractitionerHiringDALServiceImpl implements PractitionerHiringDALSe ...@@ -206,20 +206,14 @@ public class PractitionerHiringDALServiceImpl implements PractitionerHiringDALSe
} }
private List<HiringListInfo> queryYdLifeHiringinfoList(Long practitionerId) { private List<HiringListInfo> queryYdLifeHiringinfoList(Long practitionerId) {
// 查询审批身份 0.既是辅导人又是团队长 1.辅导人 2.团队长
int approvalIdentity = this.queryApprovalIdentity(practitionerId);
List<HiringListInfo> resultList = new ArrayList<>(); List<HiringListInfo> resultList = new ArrayList<>();
if (approvalIdentity == 1) {
resultList = practitionerHiringMapper.queryMentorUnhandledList(practitionerId); List<HiringListInfo> list1 = practitionerHiringMapper.queryMentorUnhandledList(practitionerId);
} else if (approvalIdentity == 2) { List<HiringListInfo> list2 = this.querySystemOwnerUnhandledList(practitionerId);
resultList = this.querySystemOwnerUnhandledList(practitionerId); resultList.addAll(list1);
} else { resultList.addAll(list2);
List<HiringListInfo> list1 = practitionerHiringMapper.queryMentorUnhandledList(practitionerId);
List<HiringListInfo> list2 = this.querySystemOwnerUnhandledList(practitionerId);
resultList.addAll(list1);
resultList.addAll(list2);
}
return resultList; return resultList;
} }
......
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