1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677 |
- /*
- - ▩▩▩▩▩▩▩▩▩▩▩▩▩▩▩▩▩▩▩▩▩▩▩▩▩▩▩▩▩▩▩▩▩▩▩▩▩▩▩▩▩▩▩▩
- 관심환자조회 ( SMMMO08100_관심환자조회.xrw - JScript )
- - ▩▩▩▩▩▩▩▩▩▩▩▩▩▩▩▩▩▩▩▩▩▩▩▩▩▩▩▩▩▩▩▩▩▩▩▩▩▩▩▩▩▩▩▩
- */
- /**
- * @desc : 화면 초기화
- * @
- * @param :
- * @return :
- * @author : 오지훈
- * @---------------------------------------------------
- */
- function fInitialize_SMMMO08100(){
- model.removeNodeset("/root/send/reqdata");
- model.setValue("/root/main/cond/stnddd", getCurrentDate());
- model.copyNode("/root/send/reqdata", "/root/main/cond");
-
- var conckindcd = model.getValue("/root/main/cond/conckindcd");
- fReqConcTypeCombo(conckindcd);
-
- model.removeNodeset("/root/main/concpatinfo/concpatlist");
- model.refresh();
- }
- /**
- * @desc : 관심분류명 콤보
- * @
- * @param :
- * @return :
- * @author : 오지훈
- * @---------------------------------------------------
- */
- function fReqConcTypeCombo(conckindcd){
- model.removeNodeset("/root/send/reqdata");
- model.makeValue("/root/send/reqdata/conckindcd", conckindcd);
- if(submit("TRMMO08301")){
- }
- }
- /**
- * @desc : 관심분류명 콤보
- * @
- * @param :
- * @return :
- * @author : 오지훈
- * @---------------------------------------------------
- */
- function fReqConcPatList(){
- model.copyNode("/root/send/reqdata", "/root/main/cond");
- submit("TRMMO08101");
- }
- /**
- * @desc : (입원)관심환자등록창 호출
- * @
- * @param :
- * @return :
- * @author :박유진
- * @---------------------------------------------------
- */
- function fCallWndConcPatRgst(){
- var sINPATLIST_PATH = "/root/main/concpatinfo/concpatlist";
- var iRow = grd_concpatlist.row;
- var pid = model.getValue(sINPATLIST_PATH + "[" + iRow + "]/pid");
- var hngnm = model.getValue(sINPATLIST_PATH + "[" + iRow + "]/hngnm");
- var param = "I" + "▩" + pid + "▩" + hngnm;
- setParameter("param", param);
- modal("SPMMO08200");
- fReqConcPatList();
- }
|