Commit 3d0b654f by jianan

审批问题1

parent b3f8f710
...@@ -164,20 +164,19 @@ public class AgmsHiringServiceImpl implements AgmsHiringService { ...@@ -164,20 +164,19 @@ public class AgmsHiringServiceImpl implements AgmsHiringService {
} }
} }
Integer plateform = requestVO.getPlateform();
Long practitionerId = requestVO.getPractitionerId(); Long practitionerId = requestVO.getPractitionerId();
Long loginId = requestVO.getLoginId();
String mobileNo; String mobileNo;
if (Integer.valueOf("1").equals(plateform)) {
AclPractitioner practitioner = aclPractitionerMapper.selectByPrimaryKey(practitionerId); AclPractitioner practitioner = aclPractitionerMapper.selectByPrimaryKey(practitionerId);
mobileNo = practitioner.getMobileNo(); mobileNo = practitioner.getMobileNo();
}
Long loginId = requestVO.getLoginId(); Integer plateform = requestVO.getPlateform();
if (Integer.valueOf("2").equals(plateform)) {
//通过loginId查询此登入者的经纪人id //通过loginId查询此登入者的经纪人id
practitionerId = agmsHiringDalService.findPractitionerIdByLoginId(loginId); practitionerId = agmsHiringDalService.findPractitionerIdByLoginId(loginId);
AclUser user = aclUserDalService.selectByPrimaryKey(loginId); AclUser user = aclUserDalService.selectByPrimaryKey(loginId);
mobileNo = user.getMobileNo(); mobileNo = user.getMobileNo();
}
//查询审批流程 //查询审批流程
List<MdPractitionerHiringApproveSteps> hiringApproveStepsList = systemConfigService.findHiringApproveStepsAll(); List<MdPractitionerHiringApproveSteps> hiringApproveStepsList = systemConfigService.findHiringApproveStepsAll();
......
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