123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204 |
- <?xml version="1.0" encoding="EUC-KR"?>
- <!--
- * @(#)SPPIJ00900_재원미시행처방조회.xrw
- * 수정이력
- * - 2012.05.14 / 최초작성 / 이은정
- *
- -->
- <?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">
- <xhtml:head>
- <xhtml:title>재원 미시행 처방 조회</xhtml:title>
- <model id="model1">
- <instance id="instance1">
- <root xmlns="">
- <send>
- <send_pid>
- <pid/>
- </send_pid>
- <send_inpt>
- <pid/>
- <indd/>
- <cretno/>
- <mskind/>
- <fromdd/>
- <todd/>
- </send_inpt>
- </send>
- <main>
- <list1>
- <gridinpt>
- <pid/>
- <hngnm/>
- <wardnm/>
- <roomnm/>
- <dschdclrtyn/>
- <dschnotiyn/>
- <indschstat/>
- <orddeptnm/>
- <insukind/>
- <suppkind/>
- <indd/>
- <fromdd/>
- <todd/>
- <cretyn/>
- <instcd/>
- <cretno/>
- <mskind/>
- </gridinpt>
- </list1>
- <list2>
- <gridiprc>
- <roomcd/>
- <execprcpstatcd/>
- <prcpkindcdnm/>
- <prcpclscd/>
- <prcpcd/>
- <prcpnm/>
- <prcpvol/>
- <prcpvolunitflag/>
- <prcpqty/>
- <prcpqtyunitflag/>
- <payflagcd/>
- <rsrvdt/>
- <prcpdd/>
- <prcpdt/>
- <execdeptcd/>
- <prcpno/>
- <prcphistno/>
- <execprcpuniqno/>
- <rsrvflag/>
- <inclprcpno/>
- <prcpsetcd/>
- <prcpclscd1/>
- </gridiprc>
- </list2>
- </main>
- </root>
- </instance>
- <script type="javascript" ev:event="xforms-ready">
- <![CDATA[
- var pid = model.getValue("/root/send/send_pid/pid");
- if (pid != "") {
- btn_search.dispatch("onclick");
- }
- ]]>
- </script>
- <submission id="TRPIJ00901" mediatype="application/x-www-form-urlencoded" method="post" ref="/root/send/send_pid" resultref="/root/main/list1"/>
- <submission id="TRPIJ00902" mediatype="application/x-www-form-urlencoded" method="post" ref="/root/send/send_inpt" resultref="/root/main/list2/gridiprc"/>
- </model>
- <script type="javascript" src="../../../com/commonweb/js/common.js"/>
- <script type="javascript" src="../../../com/commonweb/js/stringHelper.js"/>
- <script type="javascript" src="../../../com/commonweb/js/tfHelper.js"/>
- <script type="javascript" src="../../../com/basiccodeweb/js/ZBC001.js"/>
- <script type="javascript" src="../../../pam/insucomweb/js/PAM.js"/>
- <script type="javascript" src="../../../com/commonweb/js/dateHelper.js"/>
- </xhtml:head>
- <xhtml:body pagewidth="1120" pageheight="720" style="margin-left:8; margin-top:0; margin-right:0; margin-bottom:0; ">
- <caption id="caption1" class="tit_2" style="left:15px; top:10px; width:215px; height:13px; ">재원 미시행 처방 조회</caption>
- <line id="line1" class="line_1" style="x1:5px; y1:25px; x2:1095px; y2:25px; "/>
- <caption id="caption3" class="cell_1" style="left:6px; top:30px; width:65px; height:19px; ">환자번호</caption>
- <input id="ipt_pid" ref="/root/send/send_pid/pid" class="input_default" style="left:70px; top:30px; width:100px; height:19px; "/>
- <button id="btn_close" class="btn2_letter3" style="left:1040px; top:30px; width:53px; height:19px; ">
- <caption>닫 기</caption>
- <script type="javascript" ev:event="onclick">
- <![CDATA[
- window.close();
- ]]>
- </script>
- </button>
- <button id="btn_search" class="btn2_letter3" style="left:175px; top:30px; width:53px; height:19px; ">
- <caption>조 회</caption>
- <script type="javascript" ev:event="onclick">
- <![CDATA[
- model.refresh();
- submit("TRPIJ00901");
- var totcnt = grd_inpt.rows;
-
- if (totcnt > 0) {
- var pid = grd_inpt.valueMatrix(1,grd_inpt.colref("pid"));
- var indd = grd_inpt.valueMatrix(1,grd_inpt.colref("indd"));
- var cretno = grd_inpt.valueMatrix(1,grd_inpt.colref("cretno"));
- var mskind = grd_inpt.valueMatrix(1,grd_inpt.colref("mskind"));
- var fromdd = grd_inpt.valueMatrix(1,grd_inpt.colref("fromdd"));
- var todd = grd_inpt.valueMatrix(1,grd_inpt.colref("todd"));
-
- model.setValue("/root/send/send_inpt/pid",pid);
- model.setValue("/root/send/send_inpt/indd",indd);
- model.setValue("/root/send/send_inpt/cretno",cretno);
- model.setValue("/root/send/send_inpt/mskind",mskind);
- model.setValue("/root/send/send_inpt/fromdd",fromdd);
- model.setValue("/root/send/send_inpt/todd",todd);
- submit("TRPIJ00902");
- }
-
-
- ]]>
- </script>
- </button>
- <datagrid id="grd_inpt" nodeset="/root/main/list1/gridinpt" scroll="auto" caption="환자번호^환자명^병동^병실^예고^확정^상태^진료과^유형^보조^입원일자^시작일자^종료일자^생성^기관번호^생성번호^주부유형" colsep="^" colwidth="100, 100, 70, 70, 40, 40, 40, 85, 50, 50, 100, 100, 100, 50, 60, 50, 50" mergecellsfixedrows="bycolrec" rowsep="|" style="left:5px; top:50px; width:1090px; height:120px; ">
- <col ref="pid" style="text-align:center; "/>
- <col ref="hngnm" style="text-align:center; "/>
- <col ref="wardnm" style="text-align:center; "/>
- <col ref="roomnm" style="text-align:center; "/>
- <col ref="dschdclrtyn" style="text-align:center; "/>
- <col ref="dschnotiyn" style="text-align:center; "/>
- <col ref="indschstat" style="text-align:center; "/>
- <col ref="orddeptnm" style="text-align:center; "/>
- <col ref="insukind" style="text-align:center; "/>
- <col ref="suppkind" style="text-align:center; "/>
- <col ref="indd" format="yyyy-mm-dd" style="text-align:center; "/>
- <col ref="fromdd" format="yyyy-mm-dd" style="text-align:center; "/>
- <col ref="todd" format="yyyy-mm-dd" style="text-align:center; "/>
- <col ref="cretyn" style="text-align:center; "/>
- <col ref="instcd" style="text-align:center; "/>
- <col ref="cretno" style="text-align:center; "/>
- <col ref="mskind" style="text-align:center; "/>
- <script type="javascript" ev:event="ondblclick">
- <![CDATA[
- var pid = grd_inpt.valueMatrix(grd_inpt.row,grd_inpt.colref("pid"));
- var indd = grd_inpt.valueMatrix(grd_inpt.row,grd_inpt.colref("indd"));
- var cretno = grd_inpt.valueMatrix(grd_inpt.row,grd_inpt.colref("cretno"));
- var mskind = grd_inpt.valueMatrix(grd_inpt.row,grd_inpt.colref("mskind"));
- var fromdd = grd_inpt.valueMatrix(grd_inpt.row,grd_inpt.colref("fromdd"));
- var todd = grd_inpt.valueMatrix(grd_inpt.row,grd_inpt.colref("todd"));
- model.setValue("/root/send/send_inpt/pid",pid);
- model.setValue("/root/send/send_inpt/indd",indd);
- model.setValue("/root/send/send_inpt/cretno",cretno);
- model.setValue("/root/send/send_inpt/mskind",mskind);
- model.setValue("/root/send/send_inpt/fromdd",fromdd);
- model.setValue("/root/send/send_inpt/todd",todd);
- submit("TRPIJ00902");
-
- ]]>
- </script>
- </datagrid>
- <datagrid id="grd_iprc" nodeset="/root/main/list2/gridiprc" scroll="auto" caption="병실^상태^구분^분류^처방코드^처방명^용량^^수량^^급/비^예약일시^처방적용일^처방일시^Acting부서^prcpno^prcphistno^execprcpuniqno^rsrvflag^inclprcptno^prcpsetcd^prcpclscd" colsep="^" colwidth="49, 77, 45, 45, 85, 234, 40, 25, 40, 25, 50, 100, 80, 120, 100, 54, 66, 97, 54, 69, 66, 63" mergecellsfixedrows="bycolrec" rowheader="seq" rowsep="|" style="left:5px; top:175px; width:1090px; height:515px; ">
- <col ref="roomcd" style="text-align:center; "/>
- <col ref="execprcpstatcd" style="text-align:center; "/>
- <col ref="prcpkindcdnm" style="text-align:center; "/>
- <col ref="prcpclscd" style="text-align:center; "/>
- <col ref="prcpcd" style="text-align:left; "/>
- <col ref="prcpnm" style="text-align:left; "/>
- <col ref="prcpvol" style="text-align:right; "/>
- <col ref="prcpvolunitflag" style="text-align:left; "/>
- <col ref="prcpqty" style="text-align:right; "/>
- <col ref="prcpqtyunitflag" style="text-align:left; "/>
- <col ref="payflagcd" style="text-align:center; "/>
- <col ref="rsrvdt" format="yyyy-mm-dd hh:mm" style="text-align:center; "/>
- <col ref="prcpdd" format="yyyy-mm-dd" style="text-align:center; "/>
- <col ref="prcpdt" format="yyyy-mm-dd hh:mm" style="text-align:center; "/>
- <col ref="execdeptcd" style="text-align:center; "/>
- <col ref="prcpno"/>
- <col ref="prcphistno"/>
- <col ref="execprcpuniqno"/>
- <col ref="rsrvflag"/>
- <col ref="inclprcpno"/>
- <col ref="prcpsetcd"/>
- <col ref="prcpclscd"/>
- </datagrid>
- </xhtml:body>
- </xhtml:html>
|