123456789101112131415161718192021222324252627282930313233 |
- /*
- 수술통계 - 마취대장
- - Version :
- 1) : Ver.1.00.01
- - Create : 2012.04.17 KJS
- */
- var ScreenMode = "";
- //화면초기화
- 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"); //부서콤보 전체추가
-
- model.refresh();
- }
- // 현황내역 가져오기
- function fSearch()
- {
- submit("TRMNP20601");
- model.refresh();
- }
|