12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364 |
- /*
-
- 응급실 전원전입환자 조회(SMMNE01700.xfm - JScript )
- - Version :
- 1) : Ver.1.00.01
- */
- /**
- * @group :
- * @ver : 2007.07.12
- * @by : 양천덕
- * @---------------------------------------------------
- * @type : function
- * @access : public
- * @desc : 초기 화면 설정(기초 정보 설정)
- * @param :
- * @return :
- * @---------------------------------------------------
- */
- function finit(){
- model.removeNodeset("/root/main/inchnghostlist");
-
- var toDate = getCurrentDate();
- model.setValue("/root/main/cond/fromdate", toDate);
- model.setValue("/root/main/cond/todate" , toDate);
- model.setValue("/root/main/cond/printdd" , toDate);
- model.refresh();
-
- model.removenode("/root/send");
- model.makeValue("/root/send/searchitem", "outrmcd");
- submit("TRMNE00203");
-
- fSearchList();
- }
-
- /**
- * @group :
- * @ver : 2007.07.12
- * @by : 양천덕
- * @---------------------------------------------------
- * @type : function
- * @access : public
- * @desc : 환자 조회
- * @param :
- * @return :
- * @---------------------------------------------------
- */
-
- function fSearchList(){
- var sSrchData = "";
- var sSrchHeader = "inouttp▦fromdate▦todate▩";
- var sSrchData = model.getValue("/root/main/cond/inouttp" )+"▦"
- + model.getValue("/root/main/cond/fromdate")+"▦"
- + model.getValue("/root/main/cond/todate" )+"▩";
-
- model.removenode("/root/send");
- model.makeValue("/root/send/cond", sSrchHeader + sSrchData);
-
- submit("TXMNE01701");
-
- }
-
|