12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758 |
- <?xml version="1.0" encoding="EUC-KR"?>
- <?xml-stylesheet type="text/css" href="../../../com/commonweb/css/common.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">
- <script type="javascript" src="../../../com/commonweb/js/common.js"/>
- <script type="javascript" src="../../../com/commonweb/js/tfHelper.js"/>
- <script type="javascript" src="../../../com/commonweb/js/dateHelper.js"/>
- <xhtml:head>
- <xhtml:title>보낸 메시지 읽기</xhtml:title>
- <model id="model1">
- <instance id="instance1">
- <root xmlns="">
- <main/>
- <temp/>
- </root>
- </instance>
- <script type="javascript" ev:event="xforms-ready">
- <![CDATA[
- if (!checkAuth("x")) { // 화면 권한 체크
- var tdate = model.getValue("/root/main/trsmreqdt");//도착시간
- opt_pid.value = model.getValue("/root/main/pid"); //환자 id
- opt_hngnm.value = model.getValue("/root/main/hngnm"); //환자명
- opt_recvrnm.value = model.getValue("/root/main/recvrnm"); //보낸사람
- opt_recvrid.value = model.getValue("/root/main/recvrid"); //송신자 ID
- opt_rdate.value = tdate.substring(-1,4) + "." + tdate.substring(4,6) + "." +tdate.substring(6,8) +" " + tdate.substring(8,10) + ":" +tdate.substring(10,12); //도착시간
- opt_msgtype.value = model.getValue("/root/main/msgtype"); // 메세지 종류
- tar_msgcnts.value = model.getValue("/root/main/msgcnts"); //메세지
- }
- ]]>
- </script>
- <submission id="TRZMI00104" mediatype="application/x-www-form-urlencoded" method="post" ref="/root/target" replace="instance" resultref="/root/temp"/>
- </model>
- </xhtml:head>
- <xhtml:body pagewidth="425" pageheight="410">
- <textarea id="tar_msgcnts" disabled="true" style="left:15px; top:130px; width:395px; height:240px; "/>
- <caption id="caption3" class="tit_2" style="left:10px; top:8px; width:118px; height:14px; ">보낸 메세지 읽기</caption>
- <output id="opt_recvrnm" style="left:112px; top:37px; width:100px; height:19px; "/>
- <output id="opt_rdate" style="left:112px; top:87px; width:100px; height:19px; "/>
- <output id="opt_msgtype" style="left:322px; top:87px; width:90px; height:19px; "/>
- <output id="opt_recvrid" style="left:112px; top:62px; width:100px; height:19px; "/>
- <output id="opt_hngnm" style="left:322px; top:37px; width:90px; height:19px; "/>
- <output id="opt_pid" style="left:322px; top:62px; width:90px; height:19px; "/>
- <button id="btn_close" class="btn4_letter2" disabled="false" style="left:355px; top:380px; width:56px; height:22px; ">
- <caption>닫기</caption>
- <script type="javascript" ev:event="DOMActivate">
- <![CDATA[
- model.close();
- ]]>
- </script>
- </button>
- <caption id="caption10" class="cell_1" style="left:12px; top:86px; width:100px; height:23px; vertical-align:middle; ">송신시간</caption>
- <caption id="caption11" class="cell_1" style="left:12px; top:61px; width:100px; height:23px; vertical-align:middle; ">받는이 ID</caption>
- <caption id="caption12" class="cell_1" style="left:222px; top:86px; width:100px; height:23px; vertical-align:middle; ">메시지 종류</caption>
- <caption id="caption13" class="cell_1" style="left:222px; top:61px; width:100px; height:23px; vertical-align:middle; ">환자 ID</caption>
- <caption id="caption14" class="cell_1" style="left:222px; top:36px; width:100px; height:23px; font-family:돋움; vertical-align:middle; ">환자명</caption>
- <line id="line1" class="line_1" style="x1:12px; y1:32px; x2:412px; y2:32px; "/>
- <caption id="caption9" class="cell_1" style="left:12px; top:36px; width:100px; height:23px; font-family:돋움; vertical-align:middle; ">받는이</caption>
- </xhtml:body>
- </xhtml:html>
|