12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061 |
- /**
- * @desc : 초기화
- * @
- * @param :
- * @return :
- * @---------------------------------------------------
- */
- function fInitialize(){
-
- model.setValue("/root/main/cond/fromdd", getCurrentDate());
-
- model.setValue("/root/main/cond/instcd", getUserInfo("dutplceinstcd"));
- /*
- mmbfGetDeptCodeComboList("/root/send/reqdata", "/root/init/orddept", "D");
- addComboInstance("/root/init/orddept", "deptcd^depthngnm", "-^전체", "dept"); //진료과 전체항목 추가
- model.setValue("/root/main/condition/unprepdeptcd", "-");
- model.setValue("/root/main/condition/dschdeptcd", "-");
- */
- model.refresh();
- }
- /**
- * @desc : 미비 확인
- * @
- * @param :
- * @return :
- * @---------------------------------------------------
- */
- function fCnfmBtn(){
-
- if (submit("TXMRI02301") == true){
- alert("미비 배치가 성공하였습니다. ");
- }
- else {
- alert("미비 배치가 실패하였습니다. 담당자에게 문의 바랍니다. ");
- }
-
-
- }
- /**
- * @desc : Close
- * @
- * @param :
- * @return :
- * @---------------------------------------------------
- */
- function fClose(){
-
- model.close();
- }
|