123456789101112131415161718192021222324252627282930313233 |
- /**
- - ▩▩▩▩▩▩▩▩▩▩▩▩▩▩▩▩▩▩▩▩▩▩▩▩▩▩▩▩▩▩▩▩▩▩▩▩▩▩▩▩▩▩▩▩
- 진료 - 미비항목별 통계 ( SMMRI01300.xrw - JScript )
-
- * Version :
- - Ver.1.00.01
-
- * 개발자: 이윤주
-
- * 최초작성일:
- - 20120326
-
- * 기타:
-
- - ▩▩▩▩▩▩▩▩▩▩▩▩▩▩▩▩▩▩▩▩▩▩▩▩▩▩▩▩▩▩▩▩▩▩▩▩▩▩▩▩▩▩▩▩
- */
- function fInit(){
- //미비과, 퇴원과설정
- //fGetDeptCodeComboList("/root/send/reqdata", "/root/init/orddept", "A", getCurrentDate());
- mmbfGetDeptCodeComboList("/root/send/reqdata", "/root/init/orddept", "A");
- addComboItem("cmb_orddept", "전체", "-", "above");
- addComboItem("cmb_orddept", "호스피스과", "3100000000", "below");
-
- model.setValue("/root/main/cond/deptflag","01");
- model.setValue("/root/main/cond/orddeptcd","-");
-
- model.setValue("/root/main/cond/fromdd", getCurrentDate());
- model.setValue("/root/main/cond/todd" , getCurrentDate());
- model.refresh();
- }
|