12345678910111213141516171819202122232425262728293031323334353637383940 |
- /**
- * @desc : 화면초기화
- *
- * @param :
- * @return :
- * @author : 경북대학교
- * @---------------------------------------------------
- */
- function fInitialize(){
- mmbfGetDeptCodeComboList("/root/send/reqdata", "/root/init/orddept" , "D"); //부서코드 콤보
- addComboInstance("/root/init/orddept", "deptcd^depthngnm", "Z^전체", "dept"); //부서콤보 전체항목 추가
-
- model.setValue("/root/main/left_cond/orddeptcd", "Z");
-
- model.setValue("/root/main/left_cond/edureq", "Z");
- model.setValue("/root/main/left_cond/ansstatus", "Z");
- model.setValue("/root/main/left_cond/srch_flag", "Z");
- model.setValue("/root/main/left_cond/edukind", "Z");
- model.setValue("/root/main/left_cond/srch_fromdd", getCurrentDate());
- model.setValue("/root/main/left_cond/srch_todd", getCurrentDate());
-
- model.setValue("/root/main/left_cond/recflag", "B");
-
- Iviewer_Initialize();
-
- model.refresh();
- }
- /**
- * @desc : 환자검색
- *
- * @param :
- * @return :
- * @author :
- * @---------------------------------------------------
- */
- function fLeftSearch(){
- model.copyNode("/root/send/reqdata", "/root/main/left_cond");
- submit("TRMRH00220");
- }
|