123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556 |
- <?xml version="1.0" encoding="EUC-KR"?>
- <?xml-stylesheet href="../../../com/commonweb/css/common.css" type="text/css" ?>
- <xhtml:html xmlns:xhtml="http://www.w3.org/1999/xhtml" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns="http://www.w3.org/2002/01/xforms" xmlns:ev="http://www.w3.org/2001/xml-events">
- <xhtml:head>
- <xhtml:title>NEDIS전송자료 조회</xhtml:title>
- <model id="model1">
- <instance id="instance1">
- <root xmlns="">
- <main>
- <condition>
- <pid/>
- <orddd/>
- </condition>
- <nedistrsmpatinfo>
- <nedistrsmpatlist>
- <eragidno/>
- <eragindt/>
- <eragintm/>
- <chosdt/>
- <chosidx/>
- <sex/>
- </nedistrsmpatlist>
- </nedistrsmpatinfo>
- <erpatinfo>
- <erpatlist>
- <pid/>
- <chosdd/>
- <chostm/>
- <hngnm/>
- <rrgstno1/>
- <rrgstno2/>
- <chosidx/>
- </erpatlist>
- </erpatinfo>
- <nedistraminfo>
- <nedisreclist>
- <erptidno/>
- <erptindt/>
- <erptinrt/>
- <erptinmn/>
- <erptemrt/>
- <erptotdt/>
- <wardintm/>
- <erptdctm/>
- <erptdcrt/>
- <erptresp/>
- <erptbp/>
- <erptpuls/>
- <erptbrth/>
- <erptbdht/>
- <erptakdt/>
- <erptdgkd/>
- <erptarck/>
- <erptarcs/>
- <erpttsbt/>
- <erpttscs/>
- <erpttsfa/>
- <erpttssa/>
- <erpttshm/>
- <erpttspt/>
- <erpttsno/>
- <erpttsur/>
- <erpttsuk/>
- <ertptsall/>
- <erdecidt/>
- <mainsympcd/>
- <termengnm/>
- <mainsympcd1/>
- <termengnm1/>
- <mainsympcd2/>
- <termengnm2/>
- </nedisreclist>
- <erdiaginfo>
- <erdiaglist>
- <diagcd/>
- <diagnm/>
- </erdiaglist>
- </erdiaginfo>
- <indiaginfo>
- <indiaglist>
- <diagcd/>
- <diagnm/>
- </indiaglist>
- </indiaginfo>
- <nedisotptinfo>
- <depthngnm/>
- <deptengabbr/>
- <diagcd/>
- <termhngnm/>
- <termengnm/>
- </nedisotptinfo>
- </nedistraminfo>
- </main>
- <send/>
- <init/>
- <code>
- <codeinfo>
- <codelist>
- <cdid/>
- <cdnm/>
- </codelist>
- </codeinfo>
- </code>
- </root>
- </instance>
- <script type="javascript" ev:event="xforms-ready">
- <![CDATA[
- //
- var NEDIS_pid = opener.javascript.getParameter('NEDIS_pid');
- var NEDIS_orddd = opener.javascript.getParameter('NEDIS_orddd');
-
- model.setValue("/root/main/condition/pid", NEDIS_pid);
- model.setValue("/root/main/condition/orddd", NEDIS_orddd);
- model.refresh();
- //
- // setInputNodeCurText(); // 현재 인풋값 노드 반영
- fSrchErPatInfo();
- ]]>
- </script>
- <script type="javascript">
- <![CDATA[
-
- var xPathUser = "/root/UserData/list";
- var xPathUserPop = "/root/main/list";
-
- /**
- * @group :
- * @ver : 2009.07.27
- * @by : 양천덕
- * @---------------------------------------------------
- * @type : function
- * @access : public
- * @desc : 환자 조회 popup 및 return 처리 함수
- * @param :
- * @return :
- * @---------------------------------------------------
- */
- function fUseridPopupData(pMapID, pProgID, pData) {
-
- var iParam="";
-
- if (pData == "") {
- return iParam;
- }
-
- model.removenode("/root/send");
- model.makeValue("/root/send/searchitem", pData);
- model.makeValue("/root/send/flag" , "userid");
- submit(pMapID);
-
- var NodeCnt = instance1.selectSingleNode(xPathUser).childNodes.length;
- var iNode = xPathUser + "/userlist";
-
- switch(NodeCnt) {
- case 0 : messageBox(pData + "에 해당하는 자료가", "I004");
- break;
- case 1 : iParam = fGetValue(iNode, 1, "pid" ) + "|"
- + fGetValue(iNode, 1, "patnm" ) + "|"
- + fGetValue(iNode, 1, "sexage" ) + "|"
- + fGetValue(iNode, 1, "rrgsno1" ) + "|"
- + fGetValue(iNode, 1, "rrgsno2" ) ;
- break;
- default : iParam = fShowModal(pProgID);
- break;
- }
- return iParam;
- }
-
- function fShowModal(pProgID) {
-
- var xpos = event.screenX-100;
- var ypos = event.screenY-100;
-
- modal(pProgID, 1, xpos, ypos, pProgID, xPathUser, xPathUserPop);
-
- var iProperties = getParameter("SendData");
-
- return iProperties
- }
-
- function fUserDataSet(pData, pNodeID,pNodeNM, pNodeRrgsNo1, pNodeRrgsNo2, pDoc) {
-
- var iSplit_Value = pData.split("|");
-
- if (pData == "") {
- ipt_pid.refresh();
- model.setFocus("ipt_pid");
- return;
- }
-
- // iParam_pid 0 환자등록번호
- // iParam_patnm 1 환자명
- // iParam_sexage 2 성별
- // iParam_rrgsno1 3 주민등록번호 앞자리
- // iParam_rrgsno2 4 주민등록번호 뒷자리
-
- if (iSplit_Value.length > 0) {
- model.setValue(pNodeID , iSplit_Value[0]); // 환자등록번호
- ipt_pid.refresh();
- }
- }
-
- //환자정보 조회 POPUP 호출
- function fUseridPopup(pPath, pNodeID, pNodeNM, pNodeRrgsNo1, pNodeRrgsNo2, pDOC) {
- var pParam = fShowModal("SMMNE03700");
- fUserDataSet(pParam, pPath+pNodeID,pPath+pNodeNM, pPath+pNodeRrgsNo1, pPath+pNodeRrgsNo2, pDOC);
- }
-
- //등록번호 입력란 입력시 대상 환자가 응급실 재원했던 이력이 있는지 조회
- function fSrchErPatInfo(){
- model.removeNodeset("/root/send");
- model.removeNodeset("/root/main/erpatinfo");
- model.makeValue("/root/send/pid", model.getValue("/root/main/condition/pid"));
- model.makeValue("/root/send/orddd", model.getValue("/root/main/condition/orddd"));
-
- var pid = "";
- var chosdd = "";
- var chostm = "";
- var cretno = "";
-
- if(submit("TRMNE07401") == true){
- if(getNodesetCount("/root/main/erpatinfo/erpatlist") == 1){
- //fGetChosHistList();
- pid = model.getValue("/root/main/erpatinfo/erpatlist/pid")
- chosdd = model.getValue("/root/main/erpatinfo/erpatlist/chosdd")
- chostm = model.getValue("/root/main/erpatinfo/erpatlist/chostm")
- cretno = model.getValue("/root/main/erpatinfo/erpatlist/cretno")
-
- model.setValue("/root/main/condition/orddd", chosdd);
-
- model.removeNodeset("/root/send");
- model.removeNodeset("/root/main/nedistraminfo");
- model.makeValue("/root/send/eragidno", pid);
- model.makeValue("/root/send/eragindt", chosdd);
- model.makeValue("/root/send/eragintm", chostm);
- model.makeValue("/root/send/cretno", cretno);
-
- submit("TRMNE07403");
-
- } else if(getNodesetCount("/root/main/erpatinfo/erpatlist") > 1){
- grd_erpatlist.visible = true;
- } else{
- //messageBox("해당 환자번호에 대한 NEDIS 전송이력이 존재하지 않습니다.", "E");
- messageBox("해당 환자번호에 대한 응급실 내원 이력이 존재하지 않습니다.", "E");
- model.setFocus("ipt_pid");
- return;
- }
- }
- }
- //등록번호에 대한 환자의 응급실 내원시 기록 전송 리스트 조회
- function fGetChosHistList(){
- model.removeNodeset("/root/send");
- model.removeNodeset("/root/main/nedistrsmpatinfo");
- model.makeValue("/root/send/pid", model.getValue("/root/main/erpatinfo/erpatlist/pid"));
- if(submit("TRMNE07402") == true){
- if(getNodesetCount("/root/main/nedistrsmpatinfo/nedistrsmpatlist") > 0){
- cmb_choslist.select(0);
- fGetPatTramInfo();
- }
- }
- }
-
-
- //등록번호에 대한 환자의 응급실 내원시 기록 전송 리스트 조회
- function fGetPatTramInfo(){
- var sChosIndex = model.getValue("/root/main/erpatinfo/erpatlist/chosidx");
- if(sChosIndex == ""){
- return;
- }
- model.removeNodeset("/root/send");
- model.removeNodeset("/root/main/nedistraminfo");
- model.makeValue("/root/send/eragidno", model.getValue("/root/main/nedistrsmpatinfo/nedistrsmpatlist[chosidx = "+sChosIndex+"]/eragidno"));
- model.makeValue("/root/send/eragindt", model.getValue("/root/main/nedistrsmpatinfo/nedistrsmpatlist[chosidx ="+sChosIndex+"]/eragindt"));
- model.makeValue("/root/send/eragintm", model.getValue("/root/main/nedistrsmpatinfo/nedistrsmpatlist[chosidx ="+sChosIndex+"]/eragintm"));
- submit("TRMNE07403");
-
-
- }
-
- //조회 내역 출력 기능
- function fPrnt(){
- if(cmb_choslist.label == ""){
- messageBox("출력할 정보가 존재하지 않습니다.", "I");
- model.setFocus("cmb_choslist");
- return;
- }
-
- model.removeNode ("/root/send/report");
- model.makeNode ("/root/send/report");
- model.copyNode("/root/send/report", "/root/main");
- model.makeValue("/root/send/report/logourl", getImageURL("biglogo"+getUserInfo("dutplceinstcd")+"e", "jpg"));
-
- exeReportPreview("RPMNE07400", "XMLSTR", ""); //임시 미리보기 창 활성화
- }
- ]]>
- </script>
- <submission id="TRMNW00001" mediatype="application/x-www-form-urlencoded" method="post" ref="/root/send" replace="instance" resultref="/root/code/codelist"/>
- <submission id="TRMNE07401" mediatype="application/x-www-form-urlencoded" method="post" ref="/root/send" replace="instance" resultref="/root/main/erpatlist"/>
- <submission id="TRMNE07402" mediatype="application/x-www-form-urlencoded" method="post" ref="/root/send" replace="instance" resultref="/root/main/nedistrampatlist"/>
- <submission id="TRMNE07403" mediatype="application/x-www-form-urlencoded" method="post" ref="/root/send" replace="instance" resultref="/root/main/nedistraminfo"/>
- <submission id="TRMNE07404" mediatype="application/x-www-form-urlencoded" method="post" ref="/root/send" replace="instance" resultref="/root/tmp"/>
- </model>
- <script type="javascript" src="../../../com/commonweb/js/common.js"/>
- <script type="javascript" src="../../../com/commonweb/js/dateHelper.js"/>
- <script type="javascript" src="../../../emr/carecomweb/js/CareCom.js"/>
- <script type="javascript" src="../../../com/commonweb/js/tfHelper.js"/>
- <script type="javascript" src="../../../com/commonweb/js/stringHelper.js"/>
- </xhtml:head>
- <xhtml:body pagewidth="750" pageheight="880" style="margin-left:8; margin-top:8; margin-right:8; margin-bottom:8; ">
- <group id="group1" style="left:0px; top:0px; width:730px; height:13px; ">
- <caption id="caption6" class="tit_1" style="left:0px; top:0px; width:185px; height:14px; background-image:../../../com/commonweb/images/tit_bullet1.gif; ">NEDIS전송자료 조회</caption>
- </group>
- <group id="group2" style="left:0px; top:20px; width:730px; height:850px; ">
- <datagrid id="grd_erdiaginfo" nodeset="/root/main/nedistraminfo/erdiaginfo/erdiaglist" caption="퇴실 시 진단명^퇴실 시 진단명" colsep="^" colwidth="120, 575" extendlastcol="scroll" mergecellsfixedrows="bycolrec" rowsep="|" style="left:0px; top:463px; width:717px; height:100px; ">
- <col ref="diagcd"/>
- <col ref="diagnm"/>
- </datagrid>
- <shape id="roundrect1" class="roundrect_search" appearance="roundrect" style="left:0px; top:0px; width:730px; height:35px; "/>
- <input id="ipt_pid" ref="/root/main/condition/pid" class="input_s_essential" style="left:100px; top:8px; width:92px; height:19px; font-weight:bold; ">
- <script type="javascript" ev:event="onkeyup">
- <![CDATA[
- if(event.keyCode == "13") {
- setInputNodeCurText(); // 현재 인풋값 노드 반영
- fSrchErPatInfo();
- }
- ]]>
- </script>
- </input>
- <caption id="caption12" class="search_name" style="left:9px; top:9px; width:86px; height:17px; vertical-align:middle; ">등록번호 :</caption>
- <line id="line27" class="line_4" style="x1:604px; y1:7px; x2:604px; y2:29px; "/>
- <button id="btn_srchindxcd" class="btn1_letter2" navindex="5" style="left:613px; top:7px; width:56px; height:22px; ">
- <caption>조회</caption>
- <script type="javascript" ev:event="DOMActivate">
- <![CDATA[
- //fGetPatTramInfo();
- fSrchErPatInfo();
- ]]>
- </script>
- </button>
- <button id="btn_prnt" class="btn1_letter2" visibility="hidden" disable.background-image="../../../com/commonweb/images/dis_btn5_letter2.gif" style="left:545px; top:7px; width:56px; height:22px; background-image:../../../com/commonweb/images/btn5_letter2.gif; ">
- <caption>출력</caption>
- <script type="javascript" ev:event="DOMActivate">
- <![CDATA[
- fPrnt();
- ]]>
- </script>
- </button>
- <button id="btn_srchpopup" class="icon_search" style="left:199px; top:9px; width:16px; height:16px; background-image:../../../com/commonweb/images/icon_search.gif; ">
- <caption/>
- <script type="javascript" ev:event="onclick">
- <![CDATA[
- fUseridPopup("/root/main/condition", "/pid","", "", "", ipt_pid);
- fSrchErPatInfo();
- ]]>
- </script>
- </button>
- <output id="opt_hngnm" ref="/root/main/erpatinfo/erpatlist/hngnm" class="output_fix" appearance="output" style="left:330px; top:8px; width:90px; height:19px; font-weight:bold; text-align:center; "/>
- <caption id="caption1" class="search_name" style="left:240px; top:9px; width:91px; height:17px; vertical-align:middle; ">환자정보 :</caption>
- <output id="opt_rrgstno1" ref="/root/main/erpatinfo/erpatlist/rrgstno1" class="output_fix" appearance="output" style="left:422px; top:8px; width:65px; height:19px; font-weight:bold; text-align:center; "/>
- <output id="opt_rrgstno2" ref="/root/main/erpatinfo/erpatlist/rrgstno2" class="output_fix" appearance="output" style="left:489px; top:8px; width:65px; height:19px; font-weight:bold; text-align:center; "/>
- <select1 id="cmb_choslist" ref="/root/main/erpatinfo/erpatlist/chosidx" visibility="hidden" appearance="minimal" style="left:115px; top:70px; width:210px; height:19px; font-weight:bold; ">
- <choices>
- <itemset nodeset="/root/main/nedistrsmpatinfo/nedistrsmpatlist">
- <label ref="chosdt"/>
- <value ref="chosidx"/>
- </itemset>
- </choices>
- <script type="javascript" ev:event="xforms-value-changed">
- <![CDATA[
- fGetPatTramInfo();
- ]]>
- </script>
- </select1>
- <caption id="caption7" class="tit_2" style="left:0px; top:75px; width:131px; height:13px; background-image:../../../com/commonweb/images/tit_bullet2.gif; ">환자 내원 정보</caption>
- <caption id="caption8" class="cell_1" style="left:328px; top:94px; width:132px; height:21px; vertical-align:middle; ">내원경로</caption>
- <caption id="caption9" class="cell_1" style="left:0px; top:120px; width:110px; height:21px; vertical-align:middle; ">내원수단</caption>
- <caption id="caption10" class="cell_1" style="left:0px; top:411px; width:110px; height:21px; vertical-align:middle; ">응급진료 결과</caption>
- <caption id="caption11" class="cell_1" style="left:328px; top:385px; width:132px; height:21px; vertical-align:middle; ">퇴실일시</caption>
- <caption id="caption14" class="cell_1" style="left:0px; top:331px; width:110px; height:21px; vertical-align:middle; ">내원 시 반응</caption>
- <caption id="caption15" class="cell_1" style="left:0px; top:676px; width:110px; height:21px; vertical-align:middle; ">입원배치 일시</caption>
- <caption id="caption17" class="cell_1" style="left:328px; top:702px; width:132px; height:21px; vertical-align:middle; ">퇴원일</caption>
- <caption id="caption18" class="cell_1" style="left:534px; top:305px; width:95px; height:21px; vertical-align:middle; ">호흡수</caption>
- <caption id="caption19" class="cell_1" style="left:534px; top:331px; width:95px; height:21px; vertical-align:middle; ">체온</caption>
- <caption id="caption20" class="cell_1" style="left:534px; top:253px; width:95px; height:21px; vertical-align:middle; ">SBP/DBP</caption>
- <caption id="caption21" class="cell_1" style="left:534px; top:279px; width:95px; height:21px; vertical-align:middle; ">맥박수</caption>
- <caption id="caption22" class="cell_1" style="left:0px; top:623px; width:110px; height:21px; vertical-align:middle; ">보호장구</caption>
- <caption id="caption27" class="cell_1" style="left:328px; top:172px; width:132px; height:21px; vertical-align:middle; ">의도성여부</caption>
- <caption id="caption28" class="cell_1" style="left:0px; top:172px; width:110px; height:21px; vertical-align:middle; ">질병여부</caption>
- <caption id="caption29" class="tit_2" style="left:0px; top:232px; width:131px; height:13px; background-image:../../../com/commonweb/images/tit_bullet2.gif; ">환자 초기평가 정보</caption>
- <caption id="caption30" class="cell_1" style="left:0px; top:198px; width:110px; height:21px; vertical-align:middle; ">손상기전</caption>
- <caption id="caption31" class="cell_1" style="left:0px; top:94px; width:110px; height:21px; vertical-align:middle; ">발병일시</caption>
- <caption id="caption33" class="cell_1" style="left:0px; top:252px; width:110px; height:74px; vertical-align:middle; ">주증상</caption>
- <caption id="caption34" class="cell_1" style="left:328px; top:676px; width:132px; height:21px; vertical-align:middle; ">입원결정시간</caption>
- <datagrid id="grd_indiaginfo" nodeset="/root/main/nedistraminfo/indiaginfo/indiaglist" caption="퇴원 시 진단명^퇴원 시 진단명" colsep="^" colwidth="120, 575" extendlastcol="scroll" mergecellsfixedrows="bycolrec" rowsep="|" style="left:0px; top:754px; width:717px; height:91px; ">
- <col ref="diagcd"/>
- <col ref="diagnm"/>
- </datagrid>
- <input id="caption50" ref="/root/main/nedistraminfo/nedisreclist/erptotdt" format="yyyy-mm-dd hh:nn" appearance="input" style="left:463px; top:386px; width:254px; height:19px; "/>
- <input id="ipt_erptinrt" ref="/root/main/nedistraminfo/nedisreclist/erptinrt" appearance="input" style="left:463px; top:95px; width:254px; height:19px; "/>
- <input id="caption52" ref="/root/main/nedistraminfo/nedisreclist/erptinmn" appearance="input" style="left:114px; top:121px; width:210px; height:19px; "/>
- <input id="caption53" ref="/root/main/nedistraminfo/nedisreclist/erptemrt" appearance="input" style="left:114px; top:412px; width:210px; height:19px; "/>
- <input id="caption35" ref="/root/main/nedistraminfo/nedisreclist/erptresp" appearance="input" style="left:114px; top:331px; width:210px; height:19px; "/>
- <input id="ipt_wardintm" ref="/root/main/nedistraminfo/nedisreclist/wardintm" format="yyyy-mm-dd hh:nn" appearance="input" style="left:114px; top:678px; width:210px; height:19px; "/>
- <input id="caption37" ref="/root/main/nedistraminfo/nedisreclist/erptdctm" format="yyyy-mm-dd hh:nn" appearance="input" style="left:463px; top:702px; width:254px; height:19px; "/>
- <input id="caption16" ref="/root/main/nedistraminfo/nedisreclist/erptbdht" appearance="input" style="left:632px; top:331px; width:85px; height:19px; "/>
- <input id="caption39" ref="/root/main/nedistraminfo/nedisreclist/erptbp" appearance="input" style="left:632px; top:254px; width:85px; height:19px; "/>
- <input id="caption40" ref="/root/main/nedistraminfo/nedisreclist/erptpuls" appearance="input" style="left:632px; top:279px; width:85px; height:19px; "/>
- <input id="caption41" ref="/root/main/nedistraminfo/nedisreclist/erptbrth" appearance="input" style="left:632px; top:305px; width:85px; height:19px; "/>
- <input id="caption42" ref="/root/main/nedistraminfo/nedisreclist/mainsympcd" appearance="input" style="left:114px; top:254px; width:80px; height:19px; "/>
- <input id="caption43" ref="/root/main/nedistraminfo/nedisreclist/mainsympcd1" appearance="input" style="left:114px; top:279px; width:80px; height:19px; "/>
- <input id="caption44" ref="/root/main/nedistraminfo/nedisreclist/mainsympcd2" appearance="input" style="left:114px; top:305px; width:80px; height:19px; "/>
- <input id="caption45" ref="/root/main/nedistraminfo/nedisreclist/erptakdt" format="yyyy-mm-dd hh:nn" appearance="input" style="left:114px; top:95px; width:210px; height:19px; "/>
- <input id="caption46" ref="/root/main/nedistraminfo/nedisreclist/erptarcs" appearance="input" style="left:114px; top:199px; width:603px; height:19px; "/>
- <input id="caption49" ref="/root/main/nedistraminfo/nedisreclist/erptarck" appearance="input" style="left:463px; top:173px; width:254px; height:19px; "/>
- <input id="caption54" ref="/root/main/nedistraminfo/nedisreclist/erptdgkd" appearance="input" style="left:114px; top:173px; width:210px; height:19px; "/>
- <input id="caption55" ref="/root/main/nedistraminfo/nedisreclist/ertptsall" appearance="input" style="left:114px; top:624px; width:603px; height:19px; "/>
- <input id="caption58" ref="/root/main/nedistraminfo/nedisreclist/erdecidt" format="yyyy-mm-dd hh:nn" appearance="input" style="left:463px; top:678px; width:254px; height:19px; "/>
- <input id="caption61" ref="/root/main/nedistraminfo/nedisreclist/termengnm" appearance="input" style="left:197px; top:254px; width:333px; height:19px; "/>
- <input id="caption62" ref="/root/main/nedistraminfo/nedisreclist/termengnm1" appearance="input" style="left:197px; top:279px; width:333px; height:19px; "/>
- <input id="caption63" ref="/root/main/nedistraminfo/nedisreclist/termengnm2" appearance="input" style="left:197px; top:305px; width:333px; height:19px; "/>
- <line id="line1" class="line_3" style="x1:0px; y1:41px; x2:728px; y2:41px; "/>
- <caption id="caption4" class="cell_1" style="left:0px; top:43px; width:110px; height:21px; vertical-align:middle; ">내원일시</caption>
- <line id="line2" class="line_3" style="x1:0px; y1:65px; x2:728px; y2:65px; "/>
- <line id="line3" class="line_3" style="x1:0px; y1:92px; x2:728px; y2:92px; "/>
- <line id="line5" class="line_3" style="x1:0px; y1:353px; x2:728px; y2:353px; "/>
- <line id="line6" class="line_3" style="x1:0px; y1:565px; x2:728px; y2:565px; "/>
- <input id="input1" ref="/root/main/nedistraminfo/nedisreclist/chnghospnm" appearance="input" style="left:328px; top:438px; width:389px; height:19px; "/>
- <caption id="caption23" class="cell_1" style="left:0px; top:437px; width:110px; height:21px; vertical-align:middle; ">전원보낼의료기관</caption>
- <caption id="caption2" class="cell_1" style="left:328px; top:120px; width:132px; height:21px; vertical-align:middle; ">전원 온 의료기관 종류</caption>
- <caption id="caption3" class="cell_1" style="left:0px; top:146px; width:110px; height:21px; vertical-align:middle; ">재난번호</caption>
- <caption id="caption5" class="cell_1" style="left:328px; top:146px; width:132px; height:21px; vertical-align:middle; ">구급활동일지 일련번호</caption>
- <line id="line15" class="line_2" style="x1:0px; y1:117px; x2:728px; y2:117px; "/>
- <line id="line16" class="line_2" style="x1:0px; y1:143px; x2:728px; y2:143px; "/>
- <line id="line17" class="line_2" style="x1:0px; y1:169px; x2:728px; y2:169px; "/>
- <line id="line18" class="line_2" style="x1:0px; y1:195px; x2:728px; y2:195px; "/>
- <line id="line8" class="line_3" style="x1:0px; y1:250px; x2:728px; y2:250px; "/>
- <line id="line4" class="line_2" style="x1:110px; y1:276px; x2:728px; y2:276px; "/>
- <line id="line7" class="line_2" style="x1:110px; y1:302px; x2:728px; y2:302px; "/>
- <line id="line9" class="line_2" style="x1:0px; y1:328px; x2:728px; y2:328px; "/>
- <line id="line10" class="line_3" style="x1:0px; y1:221px; x2:728px; y2:221px; "/>
- <caption id="caption24" class="tit_2" style="left:0px; top:364px; width:255px; height:13px; background-image:../../../com/commonweb/images/tit_bullet2.gif; ">환자 응급 진료 내용 및 결과</caption>
- <caption id="caption25" class="cell_1" style="left:0px; top:385px; width:110px; height:21px; vertical-align:middle; ">주진료과</caption>
- <line id="line11" class="line_3" style="x1:0px; y1:382px; x2:728px; y2:382px; "/>
- <line id="line12" class="line_2" style="x1:0px; y1:408px; x2:728px; y2:408px; "/>
- <line id="line13" class="line_2" style="x1:0px; y1:434px; x2:728px; y2:434px; "/>
- <line id="line14" class="line_2" style="x1:0px; y1:460px; x2:728px; y2:460px; "/>
- <line id="line19" class="line_3" style="x1:0px; y1:646px; x2:728px; y2:646px; "/>
- <input id="input2" ref="/root/main/nedistraminfo/nedisreclist/erptdept" style="left:114px; top:386px; width:210px; height:19px; "/>
- <input id="input3" ref="/root/main/nedistraminfo/nedisreclist/erptdctp2" style="left:114px; top:438px; width:210px; height:19px; "/>
- <input id="input4" ref="/root/main/nedistraminfo/nedisreclist/erptdsid" style="left:114px; top:147px; width:210px; height:19px; "/>
- <input id="input5" ref="/root/main/nedistraminfo/nedisreclist/erptintp" style="left:463px; top:121px; width:254px; height:19px; "/>
- <input id="input6" ref="/root/main/nedistraminfo/nedisreclist/erptreid" style="left:463px; top:147px; width:254px; height:19px; "/>
- <line id="line21" class="line_3" style="x1:0px; y1:594px; x2:728px; y2:594px; "/>
- <caption id="caption26" class="tit_2" style="left:0px; top:576px; width:255px; height:13px; background-image:../../../com/commonweb/images/tit_bullet2.gif; ">교통사고 진료결과</caption>
- <caption id="caption32" class="cell_1" style="left:0px; top:597px; width:110px; height:21px; vertical-align:middle; ">손상당사자</caption>
- <input id="input7" ref="/root/main/nedistraminfo/nedisreclist/erpttaip" style="left:114px; top:598px; width:205px; height:19px; "/>
- <line id="line22" class="line_2" style="x1:0px; y1:620px; x2:728px; y2:620px; "/>
- <line id="line23" class="line_3" style="x1:0px; y1:674px; x2:728px; y2:674px; "/>
- <caption id="caption36" class="tit_2" style="left:0px; top:656px; width:255px; height:15px; background-image:../../../com/commonweb/images/tit_bullet2.gif; ">최종 진료결과 (응급실 경유 입원환자)</caption>
- <caption id="caption47" class="cell_1" style="left:0px; top:702px; width:110px; height:21px; vertical-align:middle; ">입원 후 결과</caption>
- <input id="input8" ref="/root/main/nedistraminfo/nedisreclist/erptdcrt" appearance="input" style="left:114px; top:702px; width:210px; height:19px; "/>
- <line id="line24" class="line_2" style="x1:0px; y1:699px; x2:728px; y2:699px; "/>
- <caption id="caption13" class="cell_1" style="left:0px; top:728px; width:110px; height:21px; vertical-align:middle; ">전원보낼의료기관</caption>
- <input id="input9" ref="/root/main/nedistraminfo/nedisreclist/erptdctp3" style="left:114px; top:729px; width:210px; height:19px; "/>
- <line id="line25" class="line_2" style="x1:0px; y1:725px; x2:728px; y2:725px; "/>
- <line id="line26" class="line_2" style="x1:0px; y1:751px; x2:728px; y2:751px; "/>
- <caption id="caption38" class="cell_1" style="left:328px; top:43px; width:132px; height:21px; vertical-align:middle; ">전송상태</caption>
- <!--select1 id="radio2" ref="/root/main/nedistrsmpatinfo/nedistrsmpatlist/eragstat" class="radio_search" appearance="full" cols="4" overflow="visible" style="left:463px; top:45px; width:250px; height:20px; border-style:none; "-->
- <select1 id="radio2" ref="/root/main/nedistraminfo/nedisreclist/eragstat" class="radio_search" appearance="full" cols="4" overflow="visible" style="left:463px; top:45px; width:262px; height:20px; border-style:none; ">
- <choices>
- <item>
- <label>집계중</label>
- <value>N</value>
- </item>
- <item>
- <label>전송대기</label>
- <value>Y</value>
- </item>
- <item>
- <label>전송완료</label>
- <value>T</value>
- </item>
- <item>
- <label>전송실패</label>
- <value>E</value>
- </item>
- </choices>
- </select1>
- <input id="input10" ref="/root/main/nedistraminfo/nedisreclist/erptindt" format="yyyy-mm-dd hh:nn" appearance="input" style="left:114px; top:44px; width:210px; height:19px; "/>
- <datagrid id="grd_erpatlist" nodeset="/root/main/erpatinfo/erpatlist" visibility="hidden" caption="내원일시^내원일시" colsep="^" colwidth="110, 60" mergecellsfixedrows="bycolrec" rowsep="|" style="left:125px; top:30px; width:190px; height:130px; ">
- <col ref="chosdd" format="yyyy-mm-dd" style="text-align:center; "/>
- <col ref="chostm" format="hh:nn" style="text-align:center; "/>
- <script type="javascript" ev:event="ondblclick">
- <![CDATA[
- var row = grd_erpatlist.row;
- var pid = "";
- var chosdd = "";
- var chostm = "";
- var cretno = "";
-
- if ( row > 0) {
- pid = model.getValue("/root/main/erpatinfo/erpatlist[" + row + "]/pid")
- chosdd = model.getValue("/root/main/erpatinfo/erpatlist[" + row + "]/chosdd")
- chostm = model.getValue("/root/main/erpatinfo/erpatlist[" + row + "]/chostm")
- cretno = model.getValue("/root/main/erpatinfo/erpatlist[" + row + "]/cretno")
-
- model.setValue("/root/main/condition/orddd", chosdd);
-
- model.removeNodeset("/root/send");
- model.removeNodeset("/root/main/nedistraminfo");
- model.makeValue("/root/send/eragidno", pid);
- model.makeValue("/root/send/eragindt", chosdd);
- model.makeValue("/root/send/eragintm", chostm);
- model.makeValue("/root/send/cretno", cretno);
-
- submit("TRMNE07403");
- }
-
- grd_erpatlist.visible = false;
- ]]>
- </script>
- <script type="javascript" ev:event="onmousedown">
- <![CDATA[
- if (event.button == 3) {
- grd_erpatlist.visible = false;
- }
- ]]>
- </script>
- </datagrid>
- <button id="button1" class="btn1_letter2" navindex="5" style="left:670px; top:7px; width:56px; height:22px; ">
- <caption>집계</caption>
- <script type="javascript" ev:event="DOMActivate">
- <![CDATA[
- var pid = "";
- var orddd = "";
-
- pid = model.getValue("/root/main/condition/pid");
- orddd = model.getValue("/root/main/condition/orddd");
-
- if (pid == "" || orddd == "") {
- //messageBox("");
- } else {
- model.removeNodeset("/root/send");
- model.makeValue("/root/send/pid", pid);
- model.makeValue("/root/send/orddd", orddd);
-
- submit("TRMNE07404");
- }
- ]]>
- </script>
- </button>
- </group>
- </xhtml:body>
- </xhtml:html>
|