Commit 3d0b654f by jianan

审批问题1

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