123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584 |
- <?xml version="1.0" encoding="EUC-KR"?>
- <?xml-stylesheet href="../../../com/commonweb/css/common.css" ztype="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="">
- </root>
- </instance>
- </model>
- <script type="javascript">
- <![CDATA[
- //이미지 콤보 박스 조회
- function fImgRslt(cmb, cpt, img){
- cmb = document.controls.item(cmb);
- cpt = document.controls.item(cpt);
- fimg = document.controls.item(img);
-
- model.copyNode("/root/send/data1" , "/root/main/testinfo/spcltestinfo");
-
- if(model.getValue("/root/main/testinfo/spcltestinfo/testcd") == "LSI113") { //ld 이미지
- submit("TRLRR01501");
-
- model.makeNode("/root/main/imglistld"); //ld history 노드 생성
- copyNodeType("/root/main/imglistld", "/root/main/imglist"); //history 이동
- model.removenode("/root/main/imglist"); //이전 history 노드 삭제
-
- if(getNodesetCount("/root/main/imglistld/rsltseqno") > 0){ //history가 존재하면 이미지 조회
- cmb.value = model.getvalue("/root/main/imglistld/rsltseqno");
- fImgRef(img);
- fimg.attribute("visibility") = "visible";
- cpt.attribute("visibility") = "hidden";
- }else { //history가 없으면 no_img 띄움.
- fimg.attribute("visibility") = "hidden";
- cpt.attribute("visibility") = "visible";
- }
- } else {
- submit("TRLRR01501");
-
- if(getNodesetCount("/root/main/imglist/rsltseqno") > 0){ //history가 존재하면 이미지 조회
- cmb.value = model.getvalue("/root/main/imglist/rsltseqno");
- fImgRef(img);
- fimg.attribute("visibility") = "visible";
- cpt.attribute("visibility") = "hidden";
- }else { //history가 없으면 no_img 띄움.
- fimg.attribute("visibility") = "hidden";
- cpt.attribute("visibility") = "visible";
- }
- }
-
- model.removeNodeset("/root/send/data1");
- model.makeNode("/root/send/data1");
-
- model.refresh();
- }
-
- //판독예문 조회
- function fRsltCode(gridID){
- gridObj = document.all(gridID);
-
- model.removeNodeset("/root/main/rsltcode");
-
- model.refresh();
-
- var vTestcd = model.getvalue("/root/main/testinfo/spcltestinfo/testcd");
-
- if(model.getValue("/root/main/rslt/desc/rslt/refflag") == "01") { //Bone Marrow는 콤보
- cmb_exmp.choices.itemset.attribute("nodeset") = "/root/init/readrslt[etc03='" + vTestcd + "']";
- } else { //나머지는 그리드이므로.
- if(gridID != "") { //판독예문 창을 띄어 수정한 후
- var cdNodes = instance1.selectNodes("/root/init/readrslt[etc03='" + vTestcd + "']/cd");
- var cdNodes2 = instance1.selectNodes("/root/init/readrslt[etc03='" + vTestcd + "']/nm");
- var vRstcontLower ="";
- var vRstcontUpper = "";
-
- for (i = 1; i <= cdNodes.length; i++) {
-
- var cd = cdNodes.item(i - 1).text;
- var nm = cdNodes2.item(i - 1).text;
-
- gridObj.addRow(false);
-
- model.setvalue("/root/main/rsltcode["+i+"]/cd" , cd);
- model.setvalue("/root/main/rsltcode["+i+"]/nm" , nm);
- }
-
- if(cdNodes.length > 0)
- model.refresh();
- } else { //특수검사 조회시에는 그리드아이디를 보내지 않는다. 어느 검사인지 알수 없기에..
- var cdNodes = instance1.selectNodes("/root/init/readrslt[etc03='" + vTestcd + "']/cd");
- var cdNodes2 = instance1.selectNodes("/root/init/readrslt[etc03='" + vTestcd + "']/nm");
- var vRstcontLower ="";
- var vRstcontUpper = "";
-
- for (i = 1; i <= cdNodes.length; i++) {
-
- var cd = cdNodes.item(i - 1).text;
- var nm = cdNodes2.item(i - 1).text;
-
- model.makeValue("/root/main/rsltcode["+ i +"]/cd" , cd);
- model.makeValue("/root/main/rsltcode["+ i +"]/nm" , nm);
- }
-
- if(cdNodes.length > 0)
- model.refresh();
- }
- }
- }
- ]]>
- </script>
- </xhtml:head>
- <xhtml:body style="margin-left:8; margin-top:0; margin-right:8; margin-bottom:0; ">
- <datagrid id="grd_1con" nodeset="/root/main/rslt/desc/rslt/osmotic/incu1con" caption="NaCl(%)^OD^Hemolysis(%)" colsep="^" colwidth="70, 40, 90" extendlastcol="scroll" fixedcols="1" mergecellsfixedrows="bycolrec" rowsep="|" selectionmode="free" style="left:5px; top:31px; width:210px; height:347px; text-align:center; ">
- <col ref="nacl"/>
- <col ref="od" type="input"/>
- <col ref="hm"/>
- <script type="javascript" ev:event="onendedit">
- <![CDATA[
- if(event.keyCode == "13") {
- var row = grd_1con.row;
-
- if(row == (grd_1con.rows - 1)) {
- grd_1con.row = 1;
- }else {
- grd_1con.row = parseInt(row) + 1;
- }
- }
- ]]>
- </script>
- </datagrid>
- <line id="line33" class="line_1" style="x1:5px; y1:26px; x2:215px; y2:26px; "/>
- <caption id="caption52" class="tit_2" style="left:10px; top:10px; width:192px; height:13px; ">1시간 incubation (Control)</caption>
- <caption id="caption53" class="tit_2" style="left:225px; top:10px; width:192px; height:14px; ">1시간 incubation (Patient)</caption>
- <line id="line34" class="line_1" style="x1:220px; y1:26px; x2:430px; y2:26px; "/>
- <line id="line35" class="line_1" style="x1:435px; y1:26px; x2:645px; y2:26px; "/>
- <caption id="caption54" class="tit_2" style="left:440px; top:10px; width:194px; height:14px; ">24시간 incubation (Control)</caption>
- <caption id="caption55" class="tit_2" style="left:655px; top:10px; width:192px; height:14px; ">24시간 incubation (Patient)</caption>
- <line id="line36" class="line_1" style="x1:650px; y1:26px; x2:860px; y2:26px; "/>
- <caption id="caption71" style="left:848px; top:364px; width:15px; height:20px; ">%</caption>
- <datagrid id="grd_1pat" nodeset="/root/main/rslt/desc/rslt/osmotic/incu1pat" caption="NaCl(%)^OD^Hemolysis(%)" colsep="^" colwidth="70, 40, 90" extendlastcol="scroll" fixedcols="1" mergecellsfixedrows="bycolrec" rowsep="|" selectionmode="free" style="left:220px; top:31px; width:210px; height:347px; text-align:center; ">
- <col ref="nacl"/>
- <col ref="od" type="input"/>
- <col ref="hm"/>
- <script type="javascript" ev:event="onendedit">
- <![CDATA[
- if(event.keyCode == "13") {
- var row = grd_1pat.row;
-
- if(row == (grd_1pat.rows - 1)) {
- grd_1pat.row = 1;
- }else {
- grd_1pat.row = parseInt(row) + 1;
- }
- }
- ]]>
- </script>
- </datagrid>
- <datagrid id="grd_24con" nodeset="/root/main/rslt/desc/rslt/osmotic/incu24con" caption="NaCl(%)^OD^Hemolysis(%)" colsep="^" colwidth="70, 40, 90" extendlastcol="scroll" fixedcols="1" mergecellsfixedrows="bycolrec" rowsep="|" selectionmode="free" style="left:435px; top:31px; width:210px; height:347px; text-align:center; ">
- <col ref="nacl"/>
- <col ref="od" type="input"/>
- <col ref="hm"/>
- <script type="javascript" ev:event="onendedit">
- <![CDATA[
- if(event.keyCode == "13") {
- var row = grd_24con.row;
-
- if(row == (grd_24con.rows - 1)) {
- grd_24con.row = 1;
- }else {
- grd_24con.row = parseInt(row) + 1;
- }
- }
- ]]>
- </script>
- </datagrid>
- <datagrid id="grd_24pat" nodeset="/root/main/rslt/desc/rslt/osmotic/incu24pat" caption="NaCl(%)^OD^Hemolysis(%)" colsep="^" colwidth="70, 40, 90" extendlastcol="scroll" fixedcols="1" mergecellsfixedrows="bycolrec" rowsep="|" selectionmode="free" style="left:650px; top:31px; width:210px; height:347px; text-align:center; ">
- <col ref="nacl"/>
- <col ref="od" type="input"/>
- <col ref="hm"/>
- <script type="javascript" ev:event="onendedit">
- <![CDATA[
- if(event.keyCode == "13") {
- var row = grd_24pat.row;
-
- if(row == (grd_24pat.rows - 1)) {
- grd_24pat.row = 1;
- }else {
- grd_24pat.row = parseInt(row) + 1;
- }
- }
- ]]>
- </script>
- </datagrid>
- <button id="button31" class="btn_sw" group="tab" select.background-image="../../../com/commonweb/images/tab_show.gif" style="left:94px; top:382px; width:90px; height:22px; ">
- <caption>이미지결과</caption>
- <script type="javascript" ev:event="DOMActivate">
- <![CDATA[
- model.toggle("of_img");
- ]]>
- </script>
- </button>
- <switch id="switch2" class="sw_box" style="left:5px; top:404px; width:1185px; height:245px; ">
- <case id="of_desc" selected="true">
- <caption id="caption70" class="cell_1" style="left:683px; top:25px; width:80px; height:23px; vertical-align:middle; ">patient</caption>
- <line id="line40" class="line_3" style="x1:5px; y1:71px; x2:430px; y2:71px; "/>
- <input id="ipt_f24con" ref="/root/main/rslt/desc/rslt/osmotic/f24con" class="input_default" style="left:151px; top:50px; width:80px; height:19px; text-align:right; ">
- <script type="javascript" ev:event="DOMFocusOut">
- <![CDATA[
- model.setValue("/root/main/rslt/desc/rslt/osmotic/f24con", ipt_f24con.currentText);
- model.setValue("/root/main/rslt/desc/rslt/osmotic/f1con", ipt_f1con.currentText);
-
- var begin1 = model.getValue("/root/main/rslt/desc/rslt/osmotic/f1con");
- var begin24 = model.getValue("/root/main/rslt/desc/rslt/osmotic/f24con");
- var rslt = begin24;
-
- /* if(begin1 != "" && begin24 != "") {
- rslt = begin1 + "(1hr)/" + begin24 + "(24hr)";
- } else if(begin1 != "" && begin24 == "") {
- rslt = begin1 + "(1hr)";
- } else if(begin1 == "" && begin24 != "") {
- rslt = begin24 + "(24hr)";
- } else {
- rslt = "";
- }*/
-
- var find = grd_rslt.findRow("LHS10105", 1, 1, true, true);
-
- model.setValue("/root/main/testinfo/detailtestinfo["+ find +"]/reptrslt", rslt);
- model.setValue("/root/main/testinfo/detailtestinfo["+ find +"]/inptrslt", rslt);
-
- if(model.getValue("/root/main/testinfo/detailtestinfo["+ find +"]/reptrslt") != "") {
- model.setValue("/root/main/testinfo/detailtestinfo["+ find +"]/chk", "Y");
- }
-
- model.refresh();
- ]]>
- </script>
- </input>
- <line id="line41" class="line_3" style="x1:435px; y1:71px; x2:860px; y2:71px; "/>
- <input id="ipt_e24con" ref="/root/main/rslt/desc/rslt/osmotic/e24con" style="left:581px; top:50px; width:80px; height:19px; text-align:right; ">
- <script type="javascript" ev:event="DOMFocusOut">
- <![CDATA[
- model.setValue("/root/main/rslt/desc/rslt/osmotic/e24con", ipt_e24con.currentText);
- model.setValue("/root/main/rslt/desc/rslt/osmotic/e1con", ipt_e1con.currentText);
-
- var end1 = model.getValue("/root/main/rslt/desc/rslt/osmotic/e1con");
- var end24 = model.getValue("/root/main/rslt/desc/rslt/osmotic/e24con");
- var rslt = end24;
-
- /* if(end1 != "" && end24 != "") {
- rslt = end1 + "(1hr)/" + end24 + "(24hr)";
- } else if(end1 != "" && end24 == "") {
- rslt = end1 + "(1hr)";
- } else if(end1 == "" && end24 != "") {
- rslt = end24 + "(24hr)";
- } else {
- rslt = "";
- }*/
-
- var find = grd_rslt.findRow("LHS10106", 1, 1, true, true);
-
- model.setValue("/root/main/testinfo/detailtestinfo["+ find +"]/reptrslt", rslt);
- model.setValue("/root/main/testinfo/detailtestinfo["+ find +"]/inptrslt", rslt);
-
- if(model.getValue("/root/main/testinfo/detailtestinfo["+ find +"]/reptrslt") != "") {
- model.setValue("/root/main/testinfo/detailtestinfo["+ find +"]/chk", "Y");
- }
-
- model.refresh();
- ]]>
- </script>
- </input>
- <caption id="caption60" class="cell_1" style="left:68px; top:25px; width:80px; height:23px; vertical-align:middle; ">control</caption>
- <caption id="caption126" class="tit_2" style="left:440px; top:83px; width:115px; height:13px; ">판독결과</caption>
- <caption id="caption72" class="cell_1" style="left:498px; top:49px; width:80px; height:23px; vertical-align:middle; ">control</caption>
- <caption id="caption61" style="left:231px; top:26px; width:15px; height:20px; ">%</caption>
- <line id="line42" class="line_2" style="x1:435px; y1:47px; x2:860px; y2:47px; "/>
- <line id="line43" class="line_1" style="x1:5px; y1:98px; x2:430px; y2:98px; "/>
- <caption id="caption73" style="left:661px; top:50px; width:15px; height:20px; ">%</caption>
- <caption id="caption62" class="cell_1" style="left:253px; top:25px; width:80px; height:23px; vertical-align:middle; ">patient</caption>
- <line id="line44" class="line_1" style="x1:435px; y1:98px; x2:860px; y2:98px; "/>
- <caption id="caption74" class="cell_1" style="left:683px; top:49px; width:80px; height:23px; vertical-align:middle; ">patient</caption>
- <caption id="caption63" style="left:418px; top:26px; width:15px; height:20px; ">%</caption>
- <caption id="caption75" style="left:847px; top:26px; width:15px; height:20px; ">%</caption>
- <caption id="caption64" class="cell_1" style="left:68px; top:49px; width:80px; height:23px; vertical-align:middle; ">control</caption>
- <caption id="caption76" class="cell_1" style="left:435px; top:25px; width:60px; height:23px; vertical-align:middle; ">1 시간</caption>
- <caption id="caption65" style="left:231px; top:50px; width:15px; height:20px; ">%</caption>
- <datagrid id="grd_of_rsltcode" nodeset="/root/main/rsltcode" caption="판독예문코드^판독예문내용" colsep="^" colwidth="100, 275" dataheight="23" mergecellsfixedrows="bycolrec" rowheader="seq" rowheight="23" rowsep="|" style="left:5px; top:103px; width:425px; height:136px; ">
- <col ref="cd"/>
- <col ref="nm"/>
- <script type="javascript" ev:event="ondblclick">
- <![CDATA[
- fRsltCodeDBClick("grd_of_rsltcode");
- ]]>
- </script>
- </datagrid>
- <caption id="caption77" class="cell_1" style="left:435px; top:49px; width:60px; height:23px; vertical-align:middle; ">24시간</caption>
- <caption id="caption66" class="cell_1" style="left:253px; top:49px; width:80px; height:23px; vertical-align:middle; ">patient</caption>
- <caption id="caption78" style="left:847px; top:50px; width:15px; height:20px; ">%</caption>
- <caption id="caption67" style="left:418px; top:50px; width:15px; height:20px; ">%</caption>
- <input id="ipt_f1pat" ref="/root/main/rslt/desc/rslt/osmotic/f1pat" class="input_default" style="left:336px; top:26px; width:80px; height:19px; text-align:right; ">
- <script type="javascript" ev:event="DOMFocusOut">
- <![CDATA[
- model.setValue("/root/main/rslt/desc/rslt/osmotic/f24pat", ipt_f24pat.currentText);
- model.setValue("/root/main/rslt/desc/rslt/osmotic/f1pat", ipt_f1pat.currentText);
-
- var bepat1 = model.getValue("/root/main/rslt/desc/rslt/osmotic/f1pat");
- var bepat24 = model.getValue("/root/main/rslt/desc/rslt/osmotic/f24pat");
- var rslt = bepat1;
-
- /* if(bepat1 != "" && bepat24 != "") {
- rslt = bepat1 + "(1hr)/" + bepat24 + "(24hr)";
- } else if(bepat1 != "" && bepat24 == "") {
- rslt = bepat1 + "(1hr)";
- } else if(bepat1 == "" && bepat24 != "") {
- rslt = bepat24 + "(24hr)";
- } else {
- rslt = "";
- }*/
-
- var find = grd_rslt.findRow("LHS10103", 1, 1, true, true);
-
- model.setValue("/root/main/testinfo/detailtestinfo["+ find +"]/reptrslt", rslt);
- model.setValue("/root/main/testinfo/detailtestinfo["+ find +"]/inptrslt", rslt);
-
- if(model.getValue("/root/main/testinfo/detailtestinfo["+ find +"]/reptrslt") != "") {
- model.setValue("/root/main/testinfo/detailtestinfo["+ find +"]/chk", "Y");
- }
-
- model.refresh();
- ]]>
- </script>
- </input>
- <caption id="caption56" class="tit_2" style="left:10px; top:4px; width:192px; height:13px; ">용혈시작농도</caption>
- <line id="line37" class="line_1" style="x1:5px; y1:20px; x2:430px; y2:20px; "/>
- <caption id="caption79" class="tit_2" style="left:10px; top:82px; width:192px; height:13px; ">판독예문</caption>
- <caption id="caption68" class="cell_1" style="left:498px; top:25px; width:80px; height:23px; vertical-align:middle; ">control</caption>
- <caption id="caption57" class="tit_2" style="left:440px; top:4px; width:192px; height:13px; ">완전용혈농도</caption>
- <line id="line38" class="line_1" style="x1:435px; y1:20px; x2:860px; y2:20px; "/>
- <textarea id="tar_of_readrslt" ref="/root/main/rslt/desc/rslt/readrslt" style="left:435px; top:103px; width:425px; height:136px; "/>
- <caption id="caption69" style="left:661px; top:26px; width:15px; height:20px; ">%</caption>
- <input id="ipt_f24pat" ref="/root/main/rslt/desc/rslt/osmotic/f24pat" class="input_default" style="left:336px; top:50px; width:80px; height:19px; text-align:right; ">
- <script type="javascript" ev:event="DOMFocusOut">
- <![CDATA[
- model.setValue("/root/main/rslt/desc/rslt/osmotic/f24pat", ipt_f24pat.currentText);
- model.setValue("/root/main/rslt/desc/rslt/osmotic/f1pat", ipt_f1pat.currentText);
-
- var bepat1 = model.getValue("/root/main/rslt/desc/rslt/osmotic/f1pat");
- var bepat24 = model.getValue("/root/main/rslt/desc/rslt/osmotic/f24pat");
- var rslt = bepat24;
-
- /* if(bepat1 != "" && bepat24 != "") {
- rslt = bepat1 + "(1hr)/" + bepat24 + "(24hr)";
- } else if(bepat1 != "" && bepat24 == "") {
- rslt = bepat1 + "(1hr)";
- } else if(bepat1 == "" && bepat24 != "") {
- rslt = bepat24 + "(24hr)";
- } else {
- rslt = "";
- }*/
-
- var find = grd_rslt.findRow("LHS10107", 1, 1, true, true);
-
- model.setValue("/root/main/testinfo/detailtestinfo["+ find +"]/reptrslt", rslt);
- model.setValue("/root/main/testinfo/detailtestinfo["+ find +"]/inptrslt", rslt);
-
- if(model.getValue("/root/main/testinfo/detailtestinfo["+ find +"]/reptrslt") != "") {
- model.setValue("/root/main/testinfo/detailtestinfo["+ find +"]/chk", "Y");
- }
-
- model.refresh();
- ]]>
- </script>
- </input>
- <caption id="caption58" class="cell_1" style="left:5px; top:25px; width:60px; height:23px; vertical-align:middle; ">1 시간</caption>
- <line id="line39" class="line_2" style="x1:5px; y1:47px; x2:430px; y2:47px; "/>
- <button id="button42" class="btn2_letter11" style="left:720px; top:-1px; width:141px; height:19px; background-image:../../../com/commonweb/images/btn2_letter6.gif; ">
- <caption>Hemolysis 계산 확인</caption>
- <script type="javascript" ev:event="DOMActivate">
- <![CDATA[
- fCalc();
- ]]>
- </script>
- </button>
- <caption id="caption59" class="cell_1" style="left:5px; top:49px; width:60px; height:23px; vertical-align:middle; ">24시간</caption>
- <select id="checkbox9" ref="/root/hidden/readexmpadd" overflow="visible" appearance="full" style="left:311px; top:80px; width:50px; height:20px; border-style:none; ">
- <choices>
- <item>
- <label>추가</label>
- <value>Y</value>
- </item>
- </choices>
- </select>
- <input id="ipt_e1pat" ref="/root/main/rslt/desc/rslt/osmotic/e1pat" class="input_default" style="left:766px; top:26px; width:80px; height:19px; text-align:right; ">
- <script type="javascript" ev:event="DOMFocusOut">
- <![CDATA[
- model.setValue("/root/main/rslt/desc/rslt/osmotic/e24pat", ipt_e24pat.currentText);
- model.setValue("/root/main/rslt/desc/rslt/osmotic/e1pat", ipt_e1pat.currentText);
-
- var endpat1 = model.getValue("/root/main/rslt/desc/rslt/osmotic/e1pat");
- var endpat24 = model.getValue("/root/main/rslt/desc/rslt/osmotic/e24pat");
- var rslt = endpat1
-
- /* if(endpat1 != "" && endpat24 != "") {
- rslt = endpat1 + "(1hr)/" + endpat24 + "(24hr)";
- } else if(endpat1 != "" && endpat24 == "") {
- rslt = endpat1 + "(1hr)";
- } else if(endpat1 == "" && endpat24 != "") {
- rslt = endpat24 + "(24hr)";
- } else {
- rslt = "";
- }*/
-
- var find = grd_rslt.findRow("LHS10104", 1, 1, true, true);
-
- model.setValue("/root/main/testinfo/detailtestinfo["+ find +"]/reptrslt", rslt);
- model.setValue("/root/main/testinfo/detailtestinfo["+ find +"]/inptrslt", rslt);
-
- if(model.getValue("/root/main/testinfo/detailtestinfo["+ find +"]/reptrslt") != "") {
- model.setValue("/root/main/testinfo/detailtestinfo["+ find +"]/chk", "Y");
- }
-
- model.refresh();
-
- ]]>
- </script>
- </input>
- <input id="ipt_e1con" ref="/root/main/rslt/desc/rslt/osmotic/e1con" class="input_default" style="left:581px; top:26px; width:80px; height:19px; text-align:right; ">
- <script type="javascript" ev:event="DOMFocusOut">
- <![CDATA[
- model.setValue("/root/main/rslt/desc/rslt/osmotic/e24con", ipt_e24con.currentText);
- model.setValue("/root/main/rslt/desc/rslt/osmotic/e1con", ipt_e1con.currentText);
-
- var end1 = model.getValue("/root/main/rslt/desc/rslt/osmotic/e1con");
- var end24 = model.getValue("/root/main/rslt/desc/rslt/osmotic/e24con");
- var rslt = end1;
-
- /* if(end1 != "" && end24 != "") {
- rslt = end1 + "(1hr)/" + end24 + "(24hr)";
- } else if(end1 != "" && end24 == "") {
- rslt = end1 + "(1hr)";
- } else if(end1 == "" && end24 != "") {
- rslt = end24 + "(24hr)";
- } else {
- rslt = "";
- }*/
-
- var find = grd_rslt.findRow("LHS10102", 1, 1, true, true);
-
- model.setValue("/root/main/testinfo/detailtestinfo["+ find +"]/reptrslt", rslt);
- model.setValue("/root/main/testinfo/detailtestinfo["+ find +"]/inptrslt", rslt);
-
- if(model.getValue("/root/main/testinfo/detailtestinfo["+ find +"]/reptrslt") != "") {
- model.setValue("/root/main/testinfo/detailtestinfo["+ find +"]/chk", "Y");
- }
-
- model.refresh();
- ]]>
- </script>
- </input>
- <button id="button11" class="btn2_letter4" style="left:366px; top:78px; width:64px; height:19px; ">
- <caption>판독예문</caption>
- <script type="javascript" ev:event="DOMActivate">
- <![CDATA[
- modal("SMLLF02000 ","","","","","/root/main/testinfo/spcltestinfo/testcd","/root/hidden/testcd");
-
- submit("TRLRR00402");
- fRsltCode("grd_of_rsltcode");
-
- model.refresh();
- ]]>
- </script>
- </button>
- <input id="ipt_f1con" ref="/root/main/rslt/desc/rslt/osmotic/f1con" class="input_default" style="left:151px; top:26px; width:80px; height:19px; text-align:right; ">
- <script type="javascript" ev:event="DOMFocusOut">
- <![CDATA[
- model.setValue("/root/main/rslt/desc/rslt/osmotic/f24con", ipt_f24con.currentText);
- model.setValue("/root/main/rslt/desc/rslt/osmotic/f1con", ipt_f1con.currentText);
-
- var begin1 = model.getValue("/root/main/rslt/desc/rslt/osmotic/f1con");
- var begin24 = model.getValue("/root/main/rslt/desc/rslt/osmotic/f24con");
- // var rslt = ""
- var rslt = begin1;
-
- /* if(begin1 != "" && begin24 != "") {
- rslt = begin1 + "(1hr)/" + begin24 + "(24hr)";
- } else if(begin1 != "" && begin24 == "") {
- rslt = begin1 + "(1hr)";
- } else if(begin1 == "" && begin24 != "") {
- rslt = begin24 + "(24hr)";
- } else {
- rslt = "";
- }*/
-
- var find = grd_rslt.findRow("LHS10101", 1, 1, true, true);
-
- model.setValue("/root/main/testinfo/detailtestinfo["+ find +"]/reptrslt", rslt);
- model.setValue("/root/main/testinfo/detailtestinfo["+ find +"]/inptrslt", rslt);
-
- if(model.getValue("/root/main/testinfo/detailtestinfo["+ find +"]/reptrslt") != "") {
- model.setValue("/root/main/testinfo/detailtestinfo["+ find +"]/chk", "Y");
- }
-
- model.refresh();
- ]]>
- </script>
- </input>
- <input id="ipt_e24pat" ref="/root/main/rslt/desc/rslt/osmotic/e24pat" class="input_default" style="left:766px; top:50px; width:80px; height:19px; text-align:right; ">
- <script type="javascript" ev:event="DOMFocusOut">
- <![CDATA[
- model.setValue("/root/main/rslt/desc/rslt/osmotic/e24pat", ipt_e24pat.currentText);
- model.setValue("/root/main/rslt/desc/rslt/osmotic/e1pat", ipt_e1pat.currentText);
-
- var endpat1 = model.getValue("/root/main/rslt/desc/rslt/osmotic/e1pat");
- var endpat24 = model.getValue("/root/main/rslt/desc/rslt/osmotic/e24pat");
- var rslt = endpat24;
-
- /* if(endpat1 != "" && endpat24 != "") {
- rslt = endpat1 + "(1hr)/" + endpat24 + "(24hr)";
- } else if(endpat1 != "" && endpat24 == "") {
- rslt = endpat1 + "(1hr)";
- } else if(endpat1 == "" && endpat24 != "") {
- rslt = endpat24 + "(24hr)";
- } else {
- rslt = "";
- }*/
-
- var find = grd_rslt.findRow("LHS10108", 1, 1, true, true);
-
- model.setValue("/root/main/testinfo/detailtestinfo["+ find +"]/reptrslt", rslt);
- model.setValue("/root/main/testinfo/detailtestinfo["+ find +"]/inptrslt", rslt);
-
- if(model.getValue("/root/main/testinfo/detailtestinfo["+ find +"]/reptrslt") != "") {
- model.setValue("/root/main/testinfo/detailtestinfo["+ find +"]/chk", "Y");
- }
-
- model.refresh();
-
- ]]>
- </script>
- </input>
- </case>
- <case id="of_img">
- <img id="img_of" ref="/root/main/view/imgrslt" src="../images/결과이미지.gif" style="left:5px; top:28px; width:800px; height:148px; background-stretch:stretch; "/>
- <caption id="cpt_of_noimg" class="no_image" style="left:0px; top:0px; width:210px; height:240px; vertical-align:middle; background-image:../../../com/commonweb/images/no_image.gif; "/>
- <select1 id="cmb_of_seq" ref="/root/hidden/rsltseqno" class="combo_default" appearance="minimal" style="left:88px; top:4px; width:120px; height:19px; ">
- <choices>
- <itemset nodeset="/root/main/imglist">
- <label ref="lastupdtrdt"/>
- <value ref="rsltseqno"/>
- </itemset>
- </choices>
- <script type="javascript" ev:event="xforms-value-changed">
- <![CDATA[
- fImgRef("img_of");
- ]]>
- </script>
- </select1>
- <button id="button33" class="btn2_letter7" style="left:210px; top:4px; width:97px; height:19px; ">
- <caption>이미지결과등록</caption>
- <script type="javascript" ev:event="DOMActivate">
- <![CDATA[
- if(model.getvalue("/root/main/testinfo/spcltestinfo/bcno") != ""){
- modal("SMLRR01500","", "", "","", "/root/main/testinfo/spcltestinfo", "/root/hidden/spcltestinfo");
- fImgRslt("cmb_of_seq", "cpt_of_noimg", "img_of");
- }
- ]]>
- </script>
- </button>
- <caption id="caption150" class="cell_1" style="left:5px; top:2px; width:80px; height:23px; vertical-align:middle; ">History</caption>
- <img id="img2" visibility="hidden" style="left:430px; top:15px; width:365px; height:148px; background-color:#ff6600; background-stretch:stretch; "/>
- </case>
- </switch>
- <button id="button32" class="btn_sw" group="tab" selected="true" select.background-image="../../../com/commonweb/images/tab_show.gif" style="left:5px; top:382px; width:89px; height:22px; ">
- <caption>서술결과</caption>
- <script type="javascript" ev:event="DOMActivate">
- <![CDATA[
- model.toggle("of_desc");
- ]]>
- </script>
- </button>
- </xhtml:body>
- </xhtml:html>
|