1234567891011121314151617181920212223242526272829303132333435363738394041 |
- /*
- - ▩▩▩▩▩▩▩▩▩▩▩▩▩▩▩▩▩▩▩▩▩▩▩▩▩▩▩▩▩▩▩▩▩▩▩▩▩▩▩▩▩▩▩▩
- 수술방배정 ( SMMMO05900_수술방배정.xrw - JScript )
- - ▩▩▩▩▩▩▩▩▩▩▩▩▩▩▩▩▩▩▩▩▩▩▩▩▩▩▩▩▩▩▩▩▩▩▩▩▩▩▩▩▩▩▩▩
- */
- var sASSGNDATA_PATH = "/root/temp/assgndata";
- var gSTATUS = ""; //신규등록:i, 수정:u
- var gANSTDEPT_CD = "";
- /**
- * @desc : 수술방배정
- * @
- * @param :
- * @return :
- * @author : 오지훈
- * @---------------------------------------------------
- */
- function fInitialize(){
- model.setValue("/root/main/cond/stnddd", getCurrentDate());
-
- model.removeNodeset("/root/main/assgnlist/assgnlist");
- fReqOpRoomAssgnInfo();
- }
- /**
- * @desc : 수술방 배정 정보현황 조회
- * @
- * @param :
- * @return :
- * @author : 오지훈
- * @---------------------------------------------------
- */
- function fReqOpRoomAssgnInfo(){
- model.removeNodeset("/root/send/reqdata");
- model.makeValue("/root/send/reqdata/stnddd", model.getValue("/root/main/cond/stnddd"));
- submit("TRMMO05901");
- model.refresh();
- }
|