1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59
| with t1 as (select deptno from (SELECT B1.DEPTNO DEPTNO FROM HR_DEPARTMENT B1 START WITH B1.DEPTNO in (SELECT HRD.DEPTID FROM HR_DEPARTMENT HRD WHERE HRD.MANAGER_EMP_ID = '11111117') CONNECT BY PRIOR B1.DEPTNO = B1.PARENT_DEPT_NO UNION SELECT AR_SUPERVISOR_INFO.DEPTNO DEPTNO FROM AR_SUPERVISOR_INFO where AR_SUPERVISOR_INFO.PERSON_ID = '11111117')), global as (select a.CONTENT, a.no from sy_global_name a where a.language = 'zh'), department as (select max(org_name_local) org_name_local, deptno from hr_department group by deptno), info as (select max(org_name_local) org_name_local, deptno from org_info group by deptno) SELECT ESS.PK_NO, HE.EMPID, HE.LOCAL_NAME, ESS.ITEM_NO ITEM_NO_NO, ESS.PERSON_ID, coalesce(department.org_name_local, info.org_name_local, '') DEPT_NAME, g1.content ITEM_NAME, ESS.AR_DATE_STR, TO_CHAR(ESS.FROM_TIME, 'HH24:MI') FROM_TIME, TO_CHAR(ESS.TO_TIME, 'HH24:MI') TO_TIME, ESS.QUANTITY, ESS.REMARK, HE.EMPID, ESS.AR_DATE_STR, g2.content STATUS_CODE, g3.content ITEM_NO, ESS.REMARK, ESS.LOCK_YN FROM AR_DETAIL_HYOSUNG_JX ESS inner join HR_EMPLOYEE HE on ESS.PERSON_ID = HE.PERSON_ID left join global g1 on ess.ITEM_NO = g1.no left join global g2 on ESS.STATUS_CODE = g2.no left join global g3 on ESS.ITEM_NO = g3.no left join department on HE.DEPTNO = department.deptno left join info on HE.DEPTNO = info.deptno where ESS.PERSON_ID NOT LIKE '111111%' AND ESS.ITEM_NO IN ('141454', '14015951', '141445', '141443', '190000514') AND HE.DEPTNO in (select deptno from t1) ORDER BY ESS.AR_DATE_STR ASC, ESS.CREATE_DATE DESC, HE.DEPTNO, HE.EMPID
|