12345678910111213141516171819202122232425262728293031323334353637 |
- /*
- 수술통계 - 수술대장
- - Version :
- 1) : Ver.1.00.01
- - Create : 2012.04.17 KJS
- */
- //화면초기화
- function fInitialize(){
-
- var currentdate = getCurrentDate();
- var sdate = currentdate.substr(0,6)+"01";
- var edate = currentdate;
- model.setValue("/root/cond/sdate", sdate);
- model.setValue("/root/cond/edate", edate);
-
- zbcfGetDeptCodeList(getUserInfo("dutplceinstcd"), "orduseyn", "D", "/root/init/orddept"); //부서코드 콤보조회
- addComboInstance("/root/init/orddept", "deptcd^depthngnm", "-^전체", "dept"); //부서콤보 전체추가
-
- //zbcfGetDeptCodeList(getUserInfo("dutplceinstcd"), "orduseyn", "D", "/root/init/orddept"); //부서코드 콤보조회
- //addComboInstance("/root/init/orddept", "deptcd^depthngnm", "-^전체", "dept"); //부서콤보 전체추가
-
- // model.setValue("/root/cond/perfdeptcd" , "/root/init/orddept");
- // model.setValue("/root/cond/orddeptcd" , "/root/init/orddept");
- model.refresh();
- }
- // 현황내역 가져오기
- function fSearch()
- {
- submit("TRMNP20401");
- model.refresh();
- }
|