1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465 |
- /**
- - ▩▩▩▩▩▩▩▩▩▩▩▩▩▩▩▩▩▩▩▩▩▩▩▩▩▩▩▩▩▩▩▩▩▩▩▩▩▩▩▩▩▩▩▩
- 진료 - 퇴원통계. ( SMMRS01700_퇴원통계.xrw - JScript )
- - Version :
- 1) : Ver.1.00.01
- -안종수
- - ▩▩▩▩▩▩▩▩▩▩▩▩▩▩▩▩▩▩▩▩▩▩▩▩▩▩▩▩▩▩▩▩▩▩▩▩▩▩▩▩▩▩▩▩
- /**
- /**
- * @desc : 초기화
- * @
- * @param :
- * @return :
- * @---------------------------------------------------
- */
- function fInitialize(){
- model.removeNodeset("/root/main/statslist");
- model.setValue("/root/main/condition/dschdd", 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("TRMRS01700");
- }
- /**
- * @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");
- }
- }
|