123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314 |
- <?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>개인별 처방이력 조회</xhtml:title>
- <model id="model1">
- <instance id="instance1">
- <root xmlns="">
- <main>
- <prcphist>
- <prcplist>
- <no/>
- <prcpdd/>
- <prcpgenrflag/>
- <calcscorcd/>
- <excucdnm/>
- <execprcpstatcd/>
- <usernm/>
- <depthngnm/>
- <rsrvdd/>
- <rcptdd/>
- <acptdd/>
- <excuexectodt/>
- <cnfmdt/>
- <acptrem/>
- </prcplist>
- </prcphist>
- <patinfo>
- <patinfolist/>
- </patinfo>
- </main>
- <send>
- <pid/>
- <prcpfromdd/>
- <prcptodd/>
- <globalinstance>
- <instance1/>
- </globalinstance>
- <suppdeptcd/>
- </send>
- <init>
- <baseinfo>
- <initexecprcpstatcd/>
- </baseinfo>
- <cmb_info>
- <suppdeptlist>
- <suppdept/>
- </suppdeptlist>
- </cmb_info>
- <suppdeptlist>
- <suppdeptcd/>
- <depthngnm/>
- </suppdeptlist>
- </init>
- <hidden>
- <source>
- <pathngnm/>
- </source>
- </hidden>
- </root>
- </instance>
- <submission id="TRAEA00401" mediatype="application/x-www-form-urlencoded" method="post" ref="/root/send" replace="instance" resultref="/root/main/prcphist"/>
- <submission id="TRAEA00904" mediatype="application/x-www-form-urlencoded" method="post" ref="/root/send" resultref="/root/init/cmb_info/suppdeptlist"/>
- <submission id="TRAEA00204" mediatype="application/x-www-form-urlencoded" method="post" ref="/root/send" resultref="/root/main/patinfo"/>
- <submission id="TRZBC00101"/>
- <bind id="bind_prcpstatcd" ref="/root/main/prcphist/prcplist/execprcpstatcd" readonly="../execprcpstatcd!=''"/>
- <script type="javascript" ev:event="xforms-ready">
- <![CDATA[
-
- // 2010.12.15 c y w 조회조건으로 지원부서 추가
- var suppdeptcd = "";
-
- if (checkOpener()) {
- suppdeptcd = opener.javascript.getParameter("SMPEA00100_suppdeptcd");
- }
-
- if (suppdeptcd == "") {
- suppdeptcd = getScreenMenuParameter();
- }
-
- if (suppdeptcd == "" || suppdeptcd == null || suppdeptcd == "null"){
- if (suppdeptcd == "" || suppdeptcd == null || suppdeptcd == "null") {
- aezfSetSuppDeptcd();
- }
- } else {
- model.setValue("/root/send/globalinstance/instance1", suppdeptcd);
- }
- var instance = model.getValue("/root/send/globalinstance/instance1");
- //지원부서 조회
- submit("TRAEA00904", false);
- if( instance1.selectSingleNode("/root/init/cmb_info/suppdeptlist/suppdept[suppdeptcd='" + instance + "']") == null ){
- model.setValue("root/send/suppdeptcd" , "2180000000"); //지원부서코드에 해당되지않으면 기본 핵의학과로 보여줌(공통으로뺄것임) - 박재영
- model.setValue("/root/send/globalinstance/instance1", model.getValue("/root/send/suppdeptcd"));
- }else{
- model.setValue("root/send/suppdeptcd" , instance); //지원부서코드에 해당되지않으면 기본 핵의학과로 보여줌(공통으로뺄것임) - 박재영);
- }
-
- zbcfGetCodeList( new Array("M0011"), new Array("/root/init/baseinfo/initexecprcpstatcd") );
- submit("TRZBC00101", false);
-
- ipt_startrsrvdd.value = getCurrentDate().toDate().getAddDate(-2,"M").getDateFormat("YYYYMMDD");
- ipt_endrsrvdd.value = getCurrentDate();
-
- model.removeNodeset("/root/main/prcphist/prcplist");
- model.refresh();
-
- model.setFocus("ipt_pid");
- if (model.getValue("/root/send/pid") != ""){
- btn_sea.dispatch("DOMActivate");
- }else{
- // 이부분이 멀까나 ㅠㅠㅠㅠ
- var paminfo = getGlobalVariable("paminfo"); //프로그램에 따라 원무정보(paminfo), 환자기본정보(patflag) get
- var gv_pid = getGlobalVariable("gv_pid", "A"); //글로벌변수로 넘겨준 등록번호값
- if(paminfo != "") //원무 정보(기본 정보)가 있는 경우
- {
- model.removeNodeset("/root/paminfo"); //여러개의 instance발생을 막기 위해 removeNodeset을 해줘야 함.
- model.makeNode("/root/paminfo");
- setCSVToNode("/root/paminfo", paminfo);
-
- //상단 정보를 이용하여 프로그램 수행
- var pid = model.getValue("/root/paminfo" + "/list/pid");
- model.setValue("/root/send/pid", pid);
- btn_sea.dispatch("DOMActivate");
- }
- if(gv_pid != "") { //글로벌변수(등록번호)가 있는경우
- model.setValue("/root/send/pid", gv_pid);
- btn_sea.dispatch("DOMActivate");
- }
- }
-
- ]]>
- </script>
- </model>
- <script type="javascript" src="../../../com/commonweb/js/common.js"/>
- <script type="javascript" src="../../../com/commonweb/js/dateHelper.js"/>
- <script type="javascript" src="../../../com/commonweb/js/numericHelper.js"/>
- <script type="javascript" src="../../../com/commonweb/js/tfHelper.js"/>
- <script type="javascript" src="../../../ast/examcureweb/js/AEZ0001.js"/>
- <script type="javascript" src="../../../com/basiccodeweb/js/ZBC001.js"/>
- </xhtml:head>
- <xhtml:body guideline="1,1195;2,757;2,784;">
- <group id="group1" style="left:0px; top:0px; width:1194px; height:13px; ">
- <caption id="caption6" class="tit_1" style="left:0px; top:0px; width:142px; height:14px; background-image:../../../com/commonweb/images/tit_bullet1.gif; ">개인별 처방이력 조회</caption>
- </group>
- <group id="group3" scroll="auto" style="left:0px; top:13px; width:1195px; height:744px; ">
- <group id="grp_sea" style="left:0px; top:10px; width:1194px; height:35px; vertical-align:top; ">
- <shape id="roundrect2" appearance="roundrect" ellipsewidth="10" ellipseheight="10" style="left:0px; top:0px; width:1194px; height:35px; background-color:#fffbf2; border-color:#ffd799; "/>
- <caption id="caption1" class="search_name" style="left:380px; top:8px; width:86px; height:17px; background-image:../../../com/commonweb/images/search_bullet1.gif; ">적용일자 :</caption>
- <caption id="caption3" class="search_name" style="left:15px; top:8px; width:91px; height:17px; background-image:../../../com/commonweb/images/search_bullet1.gif; ">등록번호 :</caption>
- <button id="btn_sea" class="btn1_letter2" navindex="4" style="left:1124px; top:7px; width:56px; height:22px; background-image:../../../com/commonweb/images/btn1_letter2.gif; ">
- <caption>조회</caption>
- <script type="javascript" ev:event="DOMActivate">
- <![CDATA[
- var _pid = model.getValue("/root/send/pid");
- var _frdt = model.getValue("/root/send/prcpfromdd");
- var _todt = model.getValue("/root/send/prcptodd");
-
- if ( _pid == "" ) {
- messageBox("필수입력사항인 등록번호를 입력해 주십시오.", "I999");
- model.setFocus("ipt_pid");
- }
- else if ( _frdt == "" && _todt != "" ) {
- messageBox("검색하실 날짜 범위의 시작일자를 입력해 주십시오." , "I999");
- model.setFocus("ipt_startrsrvdd");
- }
- else if ( _frdt != "" && _todt == "") {
- messageBox("검색하실 날짜 범위의 마지막 일자를 입력해 주십시오." , "I999");
- model.setFocus("ipt_endrsrvdd");
- }
- else if ( getDateInterval(_frdt, _todt) < 0 ) {
- messageBox("입력하신 날짜 범위로는 검색할 수 없습니다. 입력하신 날짜를 확인해 주십시오." , "I999");
- model.setFocus("ipt_startrsrvdd");
- }
- else {
- submit("TRAEA00401");
-
- if ( grd_prcphist.rows == 1) {
- messageBox("입력하신 등록번호/일자에 해당하는 환자의 처방이력이 DB에 존재하지 않습니다.", "I999");
- }
- else {
- for (var i = 1; i < parseInt(grd_prcphist.rows); i++) {
- // 먼가를 채워야 하는데....
- //model.setValue("/root/hidden/source/pathngnm", model.getValue("/root/main/prcphist/prcplist[" + 1 + "]/no"));
- }
-
- model.refresh();
- }
- }
- ]]>
- </script>
- </button>
- <input id="ipt_pid" ref="/root/send/pid" class="input_search" navindex="1" maxlength="10" style="left:105px; top:8px; width:100px; height:19px; ">
- <script type="javascript" ev:event="onkeyup">
- <![CDATA[
- if(event.keyCode == "13") {
- setInputNodeCurText();
-
- var pid = ipt_pid.value;
- if(pid == ""){
- messageBox("환자를 지정하지", "E007")
- return ;
- }
-
- //환자정보 조회
- if(submit("TRAEA00204")) {
- model.setValue("/root/hidden/source/pathngnm", model.getValue("/root/main/patinfo/patinfolist/hngnm"));
- }
-
- btn_sea.dispatch("DOMActivate");
- model.refresh();
- }
- ]]>
- </script>
- </input>
- <input id="ipt_endrsrvdd" ref="/root/send/prcptodd" class="input_default" navindex="3" inputtype="date" style="left:579px; top:8px; width:100px; height:14px; "/>
- <button id="button61" class="icon_search" style="left:210px; top:9px; width:16px; height:16px; background-image:../../../com/commonweb/images/icon_search.gif; ">
- <caption/>
- <script type="javascript" ev:event="DOMActivate">
- <![CDATA[
- modal("SPPMC02500", "", "200", "200", "SPPMC02500", "/root/send/pid", "/root/send");
-
- model.setValue( "/root/send/pid", model.getValue("/root/main/patinfo/patinfolist/pid") );
- model.setValue( "/root/hidden/source/pathngnm", model.getValue("/root/main/patinfo/patinfolist/hngnm") );
-
- model.refresh();
- ]]>
- </script>
- </button>
- <output id="opt_pathngnm" ref="/root/hidden/source/pathngnm" class="output_fix" style="left:232px; top:8px; width:100px; height:19px; "/>
- <input id="ipt_startrsrvdd" ref="/root/send/prcpfromdd" class="input_default" navindex="2" inputtype="date" style="left:474px; top:8px; width:100px; height:14px; ">
- <script type="javascript" ev:event="DOMFocusIn">
- <![CDATA[]]>
- </script>
- <script type="javascript" ev:event="onkeyup">
- <![CDATA[
- var _str = ipt_pid.currentText;
-
- if ( _str.isNumber() == false ) {
- messageBox("등록번호는 숫자만 입력이 가능합니다.", "I999");
- ipt_pid.value = "";
- }
-
- btn_sea.dispatch("DOMActivate");
- ]]>
- </script>
- </input>
- <select1 id="cmb_deptcd" ref="/root/send/suppdeptcd" class="combo_default" appearance="minimal" editmode="input" style="left:825px; top:8px; width:155px; height:19px; ">
- <choices>
- <itemset nodeset="/root/init/cmb_info/suppdeptlist/suppdept">
- <label ref="depthngnm"/>
- <value ref="suppdeptcd"/>
- </itemset>
- </choices>
- <script type="javascript" ev:event="xforms-value-changed">
- <![CDATA[
- // model.setValue("/root/send/globalinstance/instance1", model.getValue("/root/send/suppdeptcd"));
- ]]>
- </script>
- </select1>
- <caption id="caption5" class="search_name" style="left:730px; top:8px; width:86px; height:17px; background-image:../../../com/commonweb/images/search_bullet1.gif; ">지원부서 :</caption>
- </group>
- <button id="btn_excsave" class="btn2_letter4" disable.background-image="../../../com/commonweb/images/dis_btn2_letter4.gif" style="left:1129px; top:49px; width:64px; height:19px; background-image:../../../com/commonweb/images/btn2_letter4.gif; ">
- <caption>엑셀저장</caption>
- <script type="javascript" ev:event="DOMActivate">
- <![CDATA[
- var fileName = window.fileDialog("save", ",", false, "개인별처방이력", "xls", "Excel Files(*.xls)|*.xls|All Files (*.*)|*.*");
- if (fileName != "")
- {
- grd_prcphist.saveExcel(fileName);
- }
- ]]>
- </script>
- </button>
- <datagrid id="grd_prcphist" nodeset="/root/main/prcphist/prcplist" autoresize="true" caption="처방일자^I/O^처방코드^처방명^처방상태^진료의사^진료과^예약일시^수납일자^접수일자^실시일시^판독일자^검사실 정보" colsep="^" colwidth="70, 30, 80, 251, 70, 70, 80, 120, 70, 70, 120, 120, 300" ellipsis="true" explorerbar="sortshow" mergecellsfixedrows="bycolrec" rowheader="seq" rowsep="|" tooltip="true" fixed.background-image="../../../com/commonweb/images/grid_bg.gif" style="left:1px; top:74px; width:1194px; height:670px; ">
- <col ref="prcpdd" format="yyyy-mm-dd"/>
- <col ref="prcpgenrflag" style="text-align:center; "/>
- <col ref="calcscorcd"/>
- <col ref="excucdnm"/>
- <col ref="execprcpstatcd" type="combo">
- <choices>
- <itemset nodeset="/root/init/baseinfo/initexecprcpstatcd/M0011">
- <label ref="cdnm"/>
- <value ref="cdid"/>
- </itemset>
- </choices>
- </col>
- <col ref="usernm"/>
- <col ref="depthngnm"/>
- <col ref="rsrvdd" format="yyyy-mm-dd hh:nn:ss"/>
- <col ref="rcptdd" format="yyyy-mm-dd"/>
- <col ref="acptdd" format="yyyy-mm-dd"/>
- <col ref="excuexectodt" format="yyyy-mm-dd hh:nn:ss"/>
- <col ref="cnfmdt" format="yyyy-mm-dd hh:nn:ss"/>
- <col ref="acptrem" style="text-align:left; "/>
- <script type="javascript" ev:event="onaftersort">
- <![CDATA[
- grd_prcphist.gridToInstance();
- ]]>
- </script>
- </datagrid>
- <line id="line1" class="line_1" style="x1:0px; y1:69px; x2:1194px; y2:69px; "/>
- <caption id="caption14" class="tit_2" style="left:5px; top:54px; width:144px; height:14px; background-image:../../../com/commonweb/images/tit_bullet2.gif; ">개인별 처방이력 조회</caption>
- </group>
- <group id="grp_btn" style="left:0px; top:757px; width:1195px; height:27px; ">
- <button id="btn_prt" class="btn6_letter2" visibility="hidden" disable.background-image="../../../com/commonweb/images/dis_btn6_letter2.gif" style="left:0px; top:5px; width:56px; height:22px; background-image:../../../com/commonweb/images/btn6_letter2.gif; ">
- <caption>출력</caption>
- </button>
- </group>
- <line id="line13" class="line_4" style="x1:1107px; y1:29px; x2:1107px; y2:51px; "/>
- </xhtml:body>
- </xhtml:html>
|