123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566 |
- /**
- - ▩▩▩▩▩▩▩▩▩▩▩▩▩▩▩▩▩▩▩▩▩▩▩▩▩▩▩▩▩▩▩▩▩▩▩▩▩▩▩▩▩▩▩▩
- 진료 - 재원통계 ( SMMRS01600_재원통계.xrw - JScript )
- - Version :
- 1) : Ver.1.00.01
- -안종수
- - ▩▩▩▩▩▩▩▩▩▩▩▩▩▩▩▩▩▩▩▩▩▩▩▩▩▩▩▩▩▩▩▩▩▩▩▩▩▩▩▩▩▩▩▩
- /**
- /**
- * @desc : 초기화
- * @
- * @param :
- * @return :
- * @---------------------------------------------------
- */
- function fInitialize(){
- model.removeNodeset("/root/main/statslist");
- model.setValue("/root/main/condition/fromdd", getCurrentDate());
- //model.setValue("/root/main/condition/todd", getCurrentDate());
- //mmbfGetDeptCodeComboList("/root/send/reqdata", "/root/init/orddept", "D");
- //addComboInstance("/root/init/orddept", "deptcd^depthngnm", "-^전체", "dept"); //진료과 전체항목 추가
-
- model.refresh();
- }
- /**
- * @desc : 미비기록리스트 조회
- * @
- * @param :
- * @return :
- * @---------------------------------------------------
- */
- function fSrchStatsList(){
-
- model.copyNode("/root/send/reqdata","/root/main/condition");
- model.refresh();
- submit("TRMRS01600");
- }
- /**
- * @desc : 엑셀 저장
- * @
- * @param :
- * @return :
- * @---------------------------------------------------
- */
- function fSaveExcel(){
- var fileName = window.fileDialog("save", ",", false, "excel", "xls", "Excel Files(*.xls)|*.xls|All Files (*.*)|*.*");
- if (fileName != "")
- {
- grd_unpreplist.saveExcel(fileName, "SheetName", true, true, "", "", "false");
- }
- }
|