1234567891011121314151617181920212223242526272829303132333435363738394041424344 |
- /*
- - ▩▩▩▩▩▩▩▩▩▩▩▩▩▩▩▩▩▩▩▩▩▩▩▩▩▩▩▩▩▩▩▩▩▩▩▩▩▩▩▩▩▩▩▩
- 외래환자리스트 ( SMMQR03000_의사별진료대기시간관리.xrw - JScript )
- - ▩▩▩▩▩▩▩▩▩▩▩▩▩▩▩▩▩▩▩▩▩▩▩▩▩▩▩▩▩▩▩▩▩▩▩▩▩▩▩▩▩▩▩▩
- */
- function fInitialize() {
- var currentDate = getCurrentDate();
-
- model.setValue("/root/main/search/fromdd" , currentDate);
- model.setValue("/root/main/search/todd" , currentDate);
-
- fGetDeptList();
-
- model.refresh();
- }
- function fGetDeptList() {
-
- var instcd = getUserInfo("dutplceinstcd");
- var standard_yn = "rcptuseyn";
- var ord_deptflag = 'D';
- var rslt_ref = "/root/init/dept";
- var sort_method = "depthngnm";
- sort_field = "depthngnm";
- var base_dd = model.getValue("/root/main/search/todd");
- zsdfGetInOutOrdDeptList(instcd, rslt_ref, sort_field, sort_method, base_dd);
- // 진료과
- addComboItem("cmb_orddeptcd", "", "", "above");
-
- }
- function fGetOrdWaitlist() {
-
- model.removeNodeset("/root/main/ordwaitlist");
-
- model.setValue("/root/main/search/offset", "0");
-
- submit("TRMQR03001");
-
-
- }
|