diff --git a/src/com/engine/organization/service/impl/ChartServiceImpl.java b/src/com/engine/organization/service/impl/ChartServiceImpl.java index 4bc2e1d4..3fab7422 100644 --- a/src/com/engine/organization/service/impl/ChartServiceImpl.java +++ b/src/com/engine/organization/service/impl/ChartServiceImpl.java @@ -1040,12 +1040,13 @@ public class ChartServiceImpl extends Service implements ChartService { " a.departmentcode,\n" + " a.coadjutant,\n" + " a.tlevel,\n" + - " d.bmfzr as fleader,\n" + + " e.bmfzr as fleader,\n" + " d.on_job_num,\n" + " d.staff_num" + " from hrmdepartment a\n" + " left join hrmsubcompany b on a.subcompanyid1 = b.id\n" + " left join hrmdepartment c on a.supdepid = c.id\n" + + " left join hrmdepartmentdefined e on a.id=e.deptid\n" + " left join JCL_ORG_ONJOB d on a.id=d.data_id and d.type=2 "; }