|
@@ -57,8 +57,10 @@ public class FluctuationBizBillHrManEditHandlerEx extends FluctuationBizBillHrMa
|
|
|
public Map<String, Object> getEmpOrgRelation(String personId,String positionId,String assignType) throws SHRWebException {
|
|
|
Map<String, Object> map = new HashMap<String, Object>();
|
|
|
Context ctx = SHRContext.getInstance().getContext();
|
|
|
+ //202504 coyle
|
|
|
String selSql = "select top 1 " +
|
|
|
- " b.fid as leaderId,b.FNAME_l1 as leaderName, \n" +
|
|
|
+ " a.fleffdt as leftDate, \n" +
|
|
|
+ " b.fid as leaderId,b.FNAME_l1 as leaderName, \n" +
|
|
|
" c.fid as personTypeId,c.fname_l1 as personTypeName, \n" +
|
|
|
" d.fid as academicId,d.fname_l1 as academicName, \n" +
|
|
|
" f.fid as jobTwoId,f.fname_l1 as jobTwoName, \n" +
|
|
@@ -76,6 +78,8 @@ public class FluctuationBizBillHrManEditHandlerEx extends FluctuationBizBillHrMa
|
|
|
IRowSet rs = DbUtil.executeQuery(ctx, selSql);
|
|
|
|
|
|
while (rs.next()) {
|
|
|
+ //202504
|
|
|
+ map.put("leftDate",rs.getString("leftDate"));
|
|
|
map.put("leaderId",rs.getString("leaderId"));
|
|
|
map.put("leaderName",rs.getString("leaderName"));
|
|
|
map.put("personTypeId",rs.getString("personTypeId"));
|