123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312 |
- <?xml version="1.0" encoding="EUC-KR"?>
- <!--
- * 제 목 : SMLPP02300_면역형광결과조회.xrw
- * 설 명 : 면역형광결과조회 화면
- * 설 계 자 : (주)에이씨케이 - 유동철
- * 작 성 자 : (주)에이씨케이 - 유동철
- * 작 성 일 : 2008.06.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="">
- <main>
- <ifrslt>
- <ifrsltlist>
- <instcd/>
- <ptno/>
- <dispptno/>
- <pid/>
- <patnm/>
- <sexage/>
- <orddeptnm/>
- <prcpdd/>
- <acptdd/>
- <readdrnm/>
- <mcnts/>
- <testnm/>
- <testrslt01/>
- <testrslt02/>
- <testrslt03/>
- <testrslt04/>
- <testrslt05/>
- <testrslt06/>
- <testrslt07/>
- <testrslt08/>
- <testrslt09/>
- <testrslt10/>
- <testrslt11/>
- <testrslt12/>
- <testrslt16/>
- <testrslt17/>
- <testrslt18/>
- <testrslt19/>
- <testrslt20/>
- </ifrsltlist>
- </ifrslt>
- </main>
- <send/>
- <init>
- <acptfromdd/>
- <acpttodd/>
- <refval/>
- <rsltflagcd/>
- <sysdt>
- <sysdtinfo>
- <sysdd/>
- <systm/>
- </sysdtinfo>
- </sysdt>
- </init>
- <hidden>
- </hidden>
- <message/>
- </root>
- </instance>
- <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/stringHelper.js"/>
- <script type="javascript" src="../../../lis/commonweb/js/LPZ001.js"/>
- <script type="javascript" ev:event="xforms-ready">
- <![CDATA[
- fExeInitialize();
- ]]>
- </script>
- <submission id="TRLPZ00102" mediatype="application/x-www-form-urlencoded" method="post" ref="/root/send" replace="instance" resultref="/root/init/sysdt/sysdtinfo"/>
- <submission id="TRLPP02301" mediatype="application/x-www-form-urlencoded" method="post" ref="/root/send" replace="instance" resultref="/root/main/ifrslt/ifrsltlist"/>
- </model>
- <script type="javascript">
- <![CDATA[
-
- /* @group : 면역형광결과조회 화면
- * @ver : 2008.06.14 (CMCDEV-0001)
- * @by : 유동철(ACK)
- * @-----------------------------------
- * @type : function
- * @access : public
- * @desc : 화면초기화 함수
- */
- function fExeInitialize() {
- var sCurDate = "";
-
- //--------------------------------------------------
- model.removeNodeset("/root/main/ifrslt/ifrsltlist");
-
- //----------------
- // 시스템일자 조회
- model.removeNodeset("/root/send");
- model.makeValue("/root/send/instcd", getUserInfo("dutplceinstcd"));
- submit("TRLPZ00102");
-
- //------------------------------------------------------------
- sCurDate = model.getValue("/root/init/sysdt/sysdtinfo/sysdd");
-
- //------------
- // 초기값 설정
- model.makeValue("/root/init/acptfromdd", model.getValue("/root/init/sysdt/sysdtinfo/sysdd")); // 등록일자(From)
- model.makeValue("/root/init/acpttodd", model.getValue("/root/init/sysdt/sysdtinfo/sysdd")); // 등록일자(To)
- model.makeValue("/root/init/rsltflagcd", "1"); // 결과구분(1:Kidney, 2:Skin)
- model.makeValue("/root/init/refval", ""); // 검색값
-
- //-------------------
- fExeRsltFlagChange();
-
- //--------------
- model.refresh();
- }
-
- /* @group : 면역형광결과조회 화면
- * @ver : 2008.06.14 (CMCDEV-0001)
- * @by : 유동철(ACK)
- * @-----------------------------------
- * @type : function
- * @access : public
- * @desc : 접수목록 조회 처리 함수
- */
- function fGetRsltList() {
-
- var sNode = "/root/main/ifrslt/ifrsltlist";
- //--------------------------------
- model.removeNodeset("/root/send");
- model.removeNodeset(sNode);
-
- //----------------------------------------------------------------------
- model.makeValue("/root/send/instcd", getUserInfo("dutplceinstcd"));
- model.makeValue("/root/send/acptfromdd", model.getValue("/root/init/acptfromdd"));
- model.makeValue("/root/send/acpttodd", model.getValue("/root/init/acpttodd"));
- model.makeValue("/root/send/rsltflagcd", model.getValue("/root/init/rsltflagcd"));
- model.makeValue("/root/send/mcnts", model.getValue("/root/init/refval"));
-
- //-------------------
- submit("TRLPP02301");
- }
-
-
- /* @group : 면역형광결과조회 화면
- * @ver : 2008.06.14 (CMCDEV-0001)
- * @by : 유동철(ACK)
- * @-----------------------------------
- * @type : function
- * @access : public
- * @desc : 결과구분 변경 처리 함수
- */
- function fExeRsltFlagChange() {
-
- var iStartNo = 0;
-
-
- //--------------------------------------------------
- model.removeNodeset("/root/main/ifrslt/ifrsltlist");
-
- //----------------------------------------------------
- if (model.getValue("/root/init/rsltflagcd") == "1") {
- grd_ptnolist.caption = "기관코드^병리번호^병리번호^등록번호^환자명^성별/나이^진료과^처방일자^접수일자^판독의^진단^검사^결과^FG^CG^L^No^GBM^Mes^TBM^Cast^Vessel^Interstitium^^^^^^";
- iStartNo = 24;
-
- } else {
- grd_ptnolist.caption = "기관코드^병리번호^병리번호^등록번호^환자명^성별/나이^진료과^처방일자^접수일자^판독의^진단^검사^결과^Epidermis,intercellular^Dermoepidermal Junction^Dermis^Vessel^OTHER^^^^^^^^^^^";
- iStartNo =19;
- }
-
- //----------------------------
- // 결과구분에 따를 컬럼 숨기기
- for (var iNo=iStartNo; iNo <= grd_ptnolist.cols-1; iNo++) {
- grd_ptnolist.colWidth(iNo) = 0;
- }
-
- //---------------------
- grd_ptnolist.refresh();
- }
-
- /* @group : 면역형광결과조회 화면
- * @ver : 2008.06.14 (CMCDEV-0001)
- * @by : 유동철(ACK)
- * @-----------------------------------
- * @type : function
- * @access : public
- * @desc : 진단내용 입력 처리 함수
- */
- function fExeRefValKeyPress() {
-
- if(event.keyCode == "13") {
- model.setValue("/root/init/refval", ipt_refval.currentText);
- ipt_refval.refresh();
- //-------------
- fGetRsltList();
-
- //----------------------
- ipt_refval.selBegin = 0;
- ipt_refval.selEnd = ipt_refval.currentText.length;
- model.setFocus("ipt_refval");
- }
- }
- ]]>
- </script>
- </xhtml:head>
- <xhtml:body visibility="visible">
- <group id="grp_btn" style="left:0px; top:13; width:1195px; height:27px; ">
- <line id="line10" class="line_6" style="x1:0px; y1:25; x2:1194px; y2:25; "/>
- <button id="btn_excel" class="btn6_letter5" navindex="7" style="left:5px; top:3px; width:92px; height:22px; ">
- <caption>EXCEL저장</caption>
- <script type="javascript" ev:event="DOMActivate">
- <![CDATA[
- lpzfExeSaveToExcel(grd_ptnolist, "정도관리 상세내역");
- ]]>
- </script>
- </button>
- </group>
- <group id="grp_tle" style="left:0px; top:0px; width:1195px; height:13px; ">
- <caption id="caption6" class="tit_1" style="left:0px; top:0px; width:220px; height:14px; ">면역형광 결과조회</caption>
- </group>
- <group id="grp_biz" style="left:0; top:40; width:1195; height:744; ">
- <caption id="caption4" class="tit_2" style="left:5px; top:55px; width:146px; height:14px; ">결과목록</caption>
- <line id="line1" class="line_1" style="x1:0px; y1:70px; x2:1194px; y2:70px; "/>
- <group id="group2" style="left:0px; top:10px; width:1195px; height:35px; vertical-align:top; ">
- <shape id="roundrect1" class="roundrect_search" appearance="roundrect" ellipsewidth="10" ellipseheight="10" style="left:0px; top:0px; width:1194px; height:35px; background-color:#fffbf2; border-color:#ffd799; "/>
- <line id="line13" class="line_4" style="x1:1108px; y1:7px; x2:1108px; y2:29px; border-color:#ffe4bb; border-left-style:solid; "/>
- <caption id="caption5" class="search_no_b" style="left:979px; top:8px; width:12px; height:17px; ">~</caption>
- <button id="btn_sea" class="btn1_letter2" navindex="5" style="left:1123px; top:7px; width:56px; height:22px; background-image:../../../com/commonweb/images/btn1_letter2.gif; ">
- <caption>조회</caption>
- <script type="javascript" ev:event="DOMActivate">
- <![CDATA[
- fGetRsltList();
- ]]>
- </script>
- </button>
- <input id="ipt_cnclfromdd" ref="/root/init/acptfromdd" class="input_s_essential" navindex="3" inputtype="date" format="yyyy-mm-dd" mask="exclude" showmask="true" style="left:876px; top:8px; width:100px; height:19px; "/>
- <input id="ipt_cncltodd" ref="/root/init/acpttodd" class="input_s_essential" navindex="4" inputtype="date" format="yyyy-mm-dd" mask="exclude" showmask="true" style="left:995px; top:8px; width:100px; height:19px; "/>
- <caption id="caption1" class="search_name" style="left:15px; top:9px; width:90px; height:17px; ">진단내용 :</caption>
- <caption id="cap_refdd" class="search_name" style="left:787px; top:9px; width:86px; height:17px; ">접수일자 :</caption>
- <caption id="caption3" class="search_name" style="left:470px; top:9px; width:86px; height:17px; ">결과구분 :</caption>
- <select1 id="combo1" ref="/root/init/rsltflagcd" navindex="2" appearance="minimal" style="left:560px; top:8px; width:120px; height:19px; ">
- <choices>
- <item>
- <label>Kidney</label>
- <value>1</value>
- </item>
- <item>
- <label>Skin</label>
- <value>2</value>
- </item>
- </choices>
- <script type="javascript" ev:event="xforms-value-changed">
- <![CDATA[
- fExeRsltFlagChange();
- ]]>
- </script>
- </select1>
- <input id="ipt_refval" ref="/root/init/refval" navindex="1" style="left:106px; top:8px; width:234px; height:19px; ">
- <script type="javascript" ev:event="onkeypress">
- <![CDATA[
- fExeRefValKeyPress();
- ]]>
- </script>
- </input>
- </group>
- <datagrid id="grd_ptnolist" nodeset="/root/main/ifrslt/ifrsltlist" class="datagrid2" caption="기관코드^병리번호^병리번호^등록번호^환자명^성별/나이^진료과^처방일자^접수일자^판독의^진단^검사^결과^FG^CG^L^No^GBM^Mes^TBM^Cast^Vessel^Interstitium^other1^other2^caption1^caption2^caption3^caption4" colsep="^" colwidth="0, 0, 80, 70, 70, 60, 60, 80, 80, 80, 150, 100, 100, 100, 100, 100, 100, 100, 100, 100, 100, 100, 100, 0, 0, 0, 0, 0, 0" explorerbar="sortshow" mergecellsfixedrows="bycolrec" rowheader="seq" rowsep="|" navindex="6" style="left:0px; top:75px; width:1194px; height:668px; ">
- <col ref="instcd"/>
- <col ref="ptno"/>
- <col class="text_center" ref="dispptno"/>
- <col class="text_center" ref="pid"/>
- <col class="text_center" ref="patnm"/>
- <col ref="sexage"/>
- <col ref="orddeptnm"/>
- <col class="text_center" ref="prcpdd" format="yyyy-mm-dd" mask="exclude" showmask="true"/>
- <col class="text_center" ref="acptdd" format="yyyy-mm-dd" mask="exclude" showmask="true"/>
- <col class="text_center" ref="readdrnm"/>
- <col ref="mcnts"/>
- <col ref="testnm"/>
- <col class="text_center" ref="testrslt01"/>
- <col class="text_center" ref="testrslt02"/>
- <col class="text_center" ref="testrslt03"/>
- <col class="text_center" ref="testrslt04"/>
- <col class="text_center" ref="testrslt05"/>
- <col class="text_center" ref="testrslt06"/>
- <col class="text_center" ref="testrslt07"/>
- <col class="text_center" ref="testrslt08"/>
- <col class="text_center" ref="testrslt09"/>
- <col class="text_center" ref="testrslt10"/>
- <col class="text_center" ref="testrslt11"/>
- <col class="text_center" ref="testrslt12"/>
- <col class="text_center" ref="testrslt16"/>
- <col class="text_center" ref="testrslt17"/>
- <col class="text_center" ref="testrslt18"/>
- <col class="text_center" ref="testrslt19"/>
- <col class="text_center" ref="testrslt20"/>
- <script type="javascript" ev:event="onaftersort">
- <![CDATA[
- grd_ptnolist.gridToInstance();
- ]]>
- </script>
- </datagrid>
- </group>
- </xhtml:body>
- </xhtml:html>
|