123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064 |
- <?xml version="1.0" encoding="EUC-KR"?>
- <!--
- * 제 목 : SMLLR00300.xrw
- * 설 명 : 담당자별결과관리
- * 설 계 자 : (주)에이씨케이 -
- * 작 성 자 : (주)에이씨케이 - 조철형
- * 작 성 일 : 2007.05.14
- * 수정이력 :
- * 기 타 :
- -->
- <?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/>
- <model id="model1">
- <instance id="instance1">
- <root>
- <main>
- <patlist>
- <img/>
- <spclno/>
- <pid/>
- <patnm/>
- <tclsscrnnm/>
- <bcno/>
- <testcd/>
- </patlist>
- <testinfo>
- <spcltestinfo>
- <extrtestinstcd/>
- <pid/>
- <patnm/>
- <orddeptnm/>
- <orddrnm/>
- <bcno/>
- <bcolldt/>
- <spcacptdt/>
- <lastreptdt/>
- <medispcdt/>
- <testcd/>
- <tclsscrnm/>
- <descrslt/>
- <testlrgkind/>
- <tclscd/>
- </spcltestinfo>
- <detailtestinfo>
- <testcd/>
- <tclsscrnnm/>
- <inptrslt/>
- </detailtestinfo>
- </testinfo>
- <imglist>
- <rsltseqno/>
- <lastupdtrdt/>
- <imght/>
- <imgwidt/>
- </imglist>
- <view>
- <imgnm/>
- <imgrslt/>
- <imgwidt/>
- <imght/>
- <rsltseqno/>
- <savdelflag/>
- </view>
- <rsltcode>
- <cd/>
- <nm/>
- </rsltcode>
- <osmotic>
- <incu1cont>
- <nacl>0.30</nacl>
- <OD/>
- </incu1cont>
- <incu1cont>
- <nacl>0.35</nacl>
- <OD/>
- </incu1cont>
- <incu1cont>
- <nacl>0.40</nacl>
- <OD/>
- </incu1cont>
- <incu1cont>
- <nacl>0.45</nacl>
- <OD/>
- </incu1cont>
- <incu1cont>
- <nacl>0.50</nacl>
- <OD/>
- </incu1cont>
- <incu1cont>
- <nacl>0.55</nacl>
- <OD/>
- </incu1cont>
- <incu1cont>
- <nacl>0.60</nacl>
- <OD/>
- </incu1cont>
- <incu1cont>
- <nacl>0.65</nacl>
- <OD/>
- </incu1cont>
- <incu1cont>
- <nacl>0.70</nacl>
- <OD/>
- </incu1cont>
- <incu1cont>
- <nacl>0.75</nacl>
- <OD/>
- </incu1cont>
- <incu1cont>
- <nacl>0.80</nacl>
- <OD/>
- </incu1cont>
- <incu1cont>
- <nacl>0.85</nacl>
- <OD/>
- </incu1cont>
- <incu1cont>
- <nacl>Lysis (C)</nacl>
- <OD/>
- </incu1cont>
- <incu1cont>
- <nacl>Non-L(C)</nacl>
- <OD/>
- </incu1cont>
- <incu1pat>
- <nacl>0.30</nacl>
- <OD/>
- </incu1pat>
- <incu1pat>
- <nacl>0.35</nacl>
- <OD/>
- </incu1pat>
- <incu1pat>
- <nacl>0.40</nacl>
- <OD/>
- </incu1pat>
- <incu1pat>
- <nacl>0.45</nacl>
- <OD/>
- </incu1pat>
- <incu1pat>
- <nacl>0.50</nacl>
- <OD/>
- </incu1pat>
- <incu1pat>
- <nacl>0.55</nacl>
- <OD/>
- </incu1pat>
- <incu1pat>
- <nacl>0.60</nacl>
- <OD/>
- </incu1pat>
- <incu1pat>
- <nacl>0.65</nacl>
- <OD/>
- </incu1pat>
- <incu1pat>
- <nacl>0.70</nacl>
- <OD/>
- </incu1pat>
- <incu1pat>
- <nacl>0.75</nacl>
- <OD/>
- </incu1pat>
- <incu1pat>
- <nacl>0.80</nacl>
- <OD/>
- </incu1pat>
- <incu1pat>
- <nacl>0.85</nacl>
- <OD/>
- </incu1pat>
- <incu1pat>
- <nacl>Lysis (C)</nacl>
- <OD/>
- </incu1pat>
- <incu1pat>
- <nacl>Non-L(C)</nacl>
- <OD/>
- </incu1pat>
- <incu24cont>
- <nacl>0.30</nacl>
- <OD/>
- </incu24cont>
- <incu24cont>
- <nacl>0.35</nacl>
- <OD/>
- </incu24cont>
- <incu24cont>
- <nacl>0.40</nacl>
- <OD/>
- </incu24cont>
- <incu24cont>
- <nacl>0.45</nacl>
- <OD/>
- </incu24cont>
- <incu24cont>
- <nacl>0.50</nacl>
- <OD/>
- </incu24cont>
- <incu24cont>
- <nacl>0.55</nacl>
- <OD/>
- </incu24cont>
- <incu24cont>
- <nacl>0.60</nacl>
- <OD/>
- </incu24cont>
- <incu24cont>
- <nacl>0.65</nacl>
- <OD/>
- </incu24cont>
- <incu24cont>
- <nacl>0.70</nacl>
- <OD/>
- </incu24cont>
- <incu24cont>
- <nacl>0.75</nacl>
- <OD/>
- </incu24cont>
- <incu24cont>
- <nacl>0.80</nacl>
- <OD/>
- </incu24cont>
- <incu24cont>
- <nacl>0.85</nacl>
- <OD/>
- </incu24cont>
- <incu24cont>
- <nacl>Lysis (C)</nacl>
- <OD/>
- </incu24cont>
- <incu24cont>
- <nacl>Non-L(C)</nacl>
- <OD/>
- </incu24cont>
- <incu24pat>
- <nacl>0.30</nacl>
- <OD/>
- </incu24pat>
- <incu24pat>
- <nacl>0.35</nacl>
- <OD/>
- </incu24pat>
- <incu24pat>
- <nacl>0.40</nacl>
- <OD/>
- </incu24pat>
- <incu24pat>
- <nacl>0.45</nacl>
- <OD/>
- </incu24pat>
- <incu24pat>
- <nacl>0.50</nacl>
- <OD/>
- </incu24pat>
- <incu24pat>
- <nacl>0.55</nacl>
- <OD/>
- </incu24pat>
- <incu24pat>
- <nacl>0.60</nacl>
- <OD/>
- </incu24pat>
- <incu24pat>
- <nacl>0.65</nacl>
- <OD/>
- </incu24pat>
- <incu24pat>
- <nacl>0.70</nacl>
- <OD/>
- </incu24pat>
- <incu24pat>
- <nacl>0.75</nacl>
- <OD/>
- </incu24pat>
- <incu24pat>
- <nacl>0.80</nacl>
- <OD/>
- </incu24pat>
- <incu24pat>
- <nacl>0.85</nacl>
- <OD/>
- </incu24pat>
- <incu24pat>
- <nacl>Lysis (C)</nacl>
- <OD/>
- </incu24pat>
- <incu24pat>
- <nacl>Non-L(C)</nacl>
- <OD/>
- </incu24pat>
- </osmotic>
- <pra>
- <prascreening>
- <cd>Class Ⅰ</cd>
- <rslt>111</rslt>
- <grade>2</grade>
- </prascreening>
- <prascreening>
- <cd>Class Ⅱ</cd>
- <rslt>111</rslt>
- <grade>2</grade>
- </prascreening>
- </pra>
- </main>
- <send>
- <data1/>
- <data2/>
- <bcno/>
- <testcd/>
- </send>
- <init>
- <LB0103>
- <cd/>
- <nm/>
- </LB0103>
- <LB0901>
- <cd/>
- <nm/>
- </LB0901>
- </init>
- <hidden>
- <testgroup>
- <searchflag>1</searchflag>
- <searchtext/>
- <startdd/>
- <enddd/>
- <spcltestgrupcd/>
- <testgrupcd/>
- <rstflag>1</rstflag>
- <sworkseq>00001</sworkseq>
- <eworkseq>99999</eworkseq>
- <refgbn/>
- <text/>
- </testgroup>
- <workno>
- <searchflag>1</searchflag>
- <searchtext/>
- <startdd/>
- <enddd/>
- <sworkseq>0000</sworkseq>
- <eworkseq>9999</eworkseq>
- <workcd/>
- <rstflag>1</rstflag>
- <refgbn/>
- <text/>
- </workno>
- <refparam>
- <refgbn/>
- <refgbn2/>
- </refparam>
- <TestData>
- <bcno/>
- <testcd/>
- <spccd/>
- <inptrslt/>
- <rsltstat/>
- <testlrgkind/>
- <descrslt/>
- </TestData>
- <default/>
- <rsltseqno/>
- <RelationParm>
- <pid/>
- <tclsscrnnm/>
- <testcd/>
- <spccd/>
- </RelationParm>
- </hidden>
- </root>
- </instance>
- <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/stringHelper.js"/>
- <script type="javascript" src="../../../lis/commonweb/js/LLZ001.js"/>
- <script type="javascript" src="../../../com/commonweb/js/tfHelper.js"/>
- <script type="javascript" ev:event="xforms-model-construct-done">
- <![CDATA[
-
- fBaseInfoRef("0103|0901|0109|");
-
- model.setvalue("/root/hidden/testgroup/spcltestgrupcd" , "00");
- // datagrid3.fixedcellcheckbox(0,1)=true;
- model.setvalue("/root/hidden/workno/startdd",getCurrentDate());
- model.setvalue("/root/hidden/workno/enddd",getCurrentDate());
-
- model.setvalue("/root/hidden/testgroup/startdd",getCurrentDate());
- model.setvalue("/root/hidden/testgroup/enddd",getCurrentDate());
-
-
-
- model.setvalue("/root/hidden/refparam/refgbn" , "1");
- model.setvalue("/root/hidden/refparam/refgbn2" , "1");
-
- button5.dispatch("DOMActivate");
- button6.dispatch("DOMActivate");
-
- // datagrid3.removeRow();
- // datagrid4.removeRow();
- // grd_patList.removeRow();
- model.refresh();
- ]]>
- </script>
- <submission id="TRLRR00101" ref="/root/send" method="post" mediatype="application/x-www-form-urlencoded" replace="instance" resultref="/root/main/patlist"/>
- <submission id="TRLRR00102" ref="/root/send" method="post" mediatype="application/x-www-form-urlencoded" replace="instance" resultref="/root/main/testinfo"/>
- <submission id="TXLRR00101" ref="/root/send" method="post" mediatype="application/x-www-form-urlencoded" replace="instance"/>
- <submission id="TRLRR01502" ref="/root/send" method="post" mediatype="application/x-www-form-urlencoded" replace="instance" resultref="/root/main/view"/>
- <submission id="TRLRR01501" ref="/root/send" method="post" mediatype="application/x-www-form-urlencoded" replace="instance" resultref="/root/main/imglist"/>
- <submission id="TRLZZ00101" ref="/root/send" method="post" mediatype="application/x-www-form-urlencoded" replace="instance" resultref="/root/init"/>
- <submission id="TRLZZ00103" ref="/root/send" method="post" mediatype="application/x-www-form-urlencoded" replace="instance" resultref="/root/init/LB0103"/>
- </model>
- <script type="javascript">
- <![CDATA[
-
- function fSetClear(){
-
- model.removeNodeset("/root/main/patlist");
- model.resetInstanceNode("/root/main/testinfo/spcltestinfo");
- model.removeNodeset("/root/main/testinfo/detailtestinfo");
-
- model.refresh();
- }
-
- function Onclick_btnRef(){
-
- fSetClear();
- var refGbn = model.getvalue("/root/hidden/refparam/refgbn");
-
- if (refGbn == "1"){
- model.copyNode("/root/send/data1","/root/hidden/testgroup");
- }
- else if(refGbn == "2"){
- model.copyNode("/root/send/data1","/root/hidden/workno");
- }
-
- model.copyNode("/root/send/data2","/root/hidden/refparam");
-
- submit("TRLRR00101");
-
- model.copyNode("/root/send/data1","/root/hidden/default");
- model.copyNode("/root/send/data2","/root/hidden/default");
-
- for(i=1 ;i<grd_patList.rows;i++){
- if(model.getvalue("/root/main/patlist["+i+"]/rsltstat") == "-"){
- grd_patList.cellstyle("background-image", i, 1) = "../../../lis/commonweb/images/icnRSTFLAG_N.gif";
- grd_patList.cellstyle("background-position", i, 1) = "center"
- }else if(model.getvalue("/root/main/patlist["+i+"]/rsltstat") == "1"){
- grd_patList.cellstyle("background-image", i, 1) = "../../../lis/commonweb/images/icnRSTFLAG_1.gif";
- grd_patList.cellstyle("background-position", i, 1) = "center"
- }
- else if(model.getvalue("/root/main/patlist["+i+"]/rsltstat") == "2"){
- grd_patList.cellstyle("background-image", i, 1) = "../../../lis/commonweb/images/icnRSTFLAG_2gif";
- grd_patList.cellstyle("background-position", i, 1) = "center"
- }
- else if(model.getvalue("/root/main/patlist["+i+"]/rsltstat") == "4"
- || model.getvalue("/root/main/patlist["+i+"]/rsltstat") == "5"
- || model.getvalue("/root/main/patlist["+i+"]/rsltstat") == "6"){
- grd_patList.cellstyle("background-image", i, 1) = "../../../lis/commonweb/images/icnRSTFLAG_3.gif";
- grd_patList.cellstyle("background-position", i, 1) = "center"
- }
- else if(model.getvalue("/root/main/patlist["+i+"]/rsltstat") == "3"){
- grd_patList.cellstyle("background-image", i, 1) = "../../../lis/commonweb/images/icnRSTFLAG_F.gif";
- grd_patList.cellstyle("background-position", i, 1) = "center"
- }
-
- if(model.getvalue("/root/main/patlist["+i+"]/imagrsltyn") == "Y"){
- grd_patList.cellstyle("background-image", i, 2) = "../../../com/commonweb/images/icon_picture.gif";
- grd_patList.cellstyle("background-position", i, 2) = "center"
- }
-
-
-
- }
-
- }
-
- function fOnclick_grd_patList(){
-
-
- if(grd_patList.isCell(event.target) && grd_patList.row >= grd_patList.fixedRows ){
- model.resetInstanceNode("/root/main/testinfo");
- model.resetInstanceNode("/root/main/imglist");
- model.resetInstanceNode("/root/main/view");
- var row = grd_patList.row;
- model.makeValue("/root/send/bcno" , model.getvalue("/root/main/patlist["+row+"]/bcno"));
- model.makeValue("/root/send/testcd" , model.getvalue("/root/main/patlist["+row+"]/testcd"));
- submit("TRLRR00102");
-
- model.removeNodeset("/root/send/bcno");
- model.removeNodeset("/root/send/testcd");
-
- if(getNodesetCount("/root/main/testinfo/detailtestinfo") > 0){
- fReMake();
- }
-
- if(model.getvalue("/root/hidden/refparam/refgbn2") == "2"){
- fImgRslt();
- }
- //fUpPatinfo();
-
- fRsltCode();
-
- }
-
- }
-
-
- function fRsltCode(){
-
- model.removeNodeset("/root/main/rsltcode");
-
- model.refresh();
-
- var vTestcd = model.getvalue("/root/main/testinfo/spcltestinfo/testcd");
-
- var cdNodes = instance1.selectNodes("/root/init/LB0109[etc01='" + vTestcd + "']/cd");
- var cdNodes2 = instance1.selectNodes("/root/init/LB0109[etc01='" + 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;
-
- datagrid4.addRow();
-
- model.setvalue("/root/main/rsltcode["+i+"]/cd" , cd);
- model.setvalue("/root/main/rsltcode["+i+"]/nm" , nm);
-
-
- }
-
- if(cdNodes.length > 0)
- model.refresh();
- }
-
- function fUpPatinfo(){
- if(datagrid3.rows> 1){
- //alert(" S▦" + model.getvalue("/root/main/testinfo/detailtestinfo/prcpdd")+ "▦" + model.getvalue("/root/main/testinfo/detailtestinfo/execprcpseqno") + "▦" + "012")
- setParameter("condparam", "S" + "▦" + model.getvalue("/root/main/testinfo/detailtestinfo/prcpdd")+ "▦"
- + model.getvalue("/root/main/testinfo/detailtestinfo/execprcpuniqno") + "▦"
- + model.getvalue("/root/main/testinfo/detailtestinfo/instcd") );
-
- modal("SPMMO08900");
- }
- }
- function fReMake(){
- for(i=1;i<datagrid3.rows;i++){
- datagrid3.cellstyle("background-color" , i,4) = "#EEFFFF";
- datagrid3.cellstyle("background-color" , i,5) = "#FFFFFA";
-
-
- if(model.getvalue("/root/main/testinfo/detailtestinfo["+i+"]/rstcdexists") == "Y"){
- datagrid3.cellstyle("background-image", i, 4) = "../../../lis/commonweb/images/icnRstCDExists.gif";
- datagrid3.cellstyle("background-position", i, 4) = "right";
- }
- }
- }
-
- function fInsRsltSave(flag){
-
-
- if(model.getvalue("/root/main/testinfo/spcltestinfo/bcno") == "") return;
-
- model.setvalue("/root/hidden/TestData/bcno" , model.getvalue("/root/main/testinfo/spcltestinfo/bcno"));
- model.setvalue("/root/hidden/TestData/testcd", model.getvalue("/root/main/testinfo/spcltestinfo/testcd"));
- model.setvalue("/root/hidden/TestData/spccd", model.getvalue("/root/main/testinfo/spcltestinfo/spccd"));
- model.setvalue("/root/hidden/TestData/inptrslt", "");
- model.setvalue("/root/hidden/TestData/rsltstat" , flag);
- model.setvalue("/root/hidden/TestData/testlrgkind" , model.getvalue("/root/main/testinfo/spcltestinfo/testlrgkind"));
- model.setvalue("/root/hidden/TestData/descrslt" , model.getvalue("/root/main/testinfo/spcltestinfo/descrslt"));
-
- model.copyNode("/root/send/data1" ,"/root/hidden/TestData" );
-
- if(getNodesetCount("/root/main/testinfo/detailtestinfo") > 0){
- for(i=1;i<datagrid3.rows; i++){
- //if(model.getvalue("/root/main/testinfo/detailtestinfo["+i+"]/chk") == "true")
- datagrid3.addStatus(i,"update");
- }
-
- var sSendData = datagrid3.getUpdateData();
-
-
- }
- else{
- var sSendData = "m▦rownum▦chk▦testcd▦bufinptrslt▦reptrslt▦inptrslt▩";
-
- }
-
- sSendData = sSendData + "u▦100▦true▦"+model.getvalue("/root/main/testinfo/spcltestinfo/testcd") +"▦" + model.getvalue("/root/main/testinfo/spcltestinfo/tclsscrnnm") +"▦▦▦▩";
- model.setvalue("/root/send/data2" , sSendData);
-
-
-
- submit("TXLRR00101");
-
- model.copyNode("/root/send/data1","/root/hidden/default");
- model.copyNode("/root/send/data2","/root/hidden/default");
- }
-
- function fImgRef(){
- model.copyNode("/root/send/data1" , "/root/main/testinfo/spcltestinfo");
- model.setvalue("/root/send/data2" , model.getvalue("/root/hidden/rsltseqno"));
- submit("TRLRR01502",false);
- setImageRefInstance("/root/main/view/imgrslt");
- img1.attribute("width")= model.getValue("/root/main/view/imgwidt");
- img1.attribute("height")= model.getValue("/root/main/view/imght");
- model.copyNode("/root/send/data1" , "/root/hidden/default");
- model.copyNode("/root/send/data2" , "/root/hidden/default");
- model.refresh();
- }
-
- function fImgRslt(){
- model.copyNode("/root/send/data1" , "/root/main/testinfo/spcltestinfo");
- submit("TRLRR01501");
-
- if(getNodesetCount("/root/main/imglist") > 0){
- combo5.value = model.getvalue("/root/main/imglist/rsltseqno");
- fImgRef();
- }
-
- model.refresh();
- }
-
- //키이벤트
- function fGridKeyEvent(){
-
- var row = datagrid3.row;
- var col = datagrid3.col;
-
- if(col == 4 ){
- if(event.keyCode == "13"){
-
- var vBufInptRslt = model.getvalue("/root/main/testinfo/detailtestinfo["+row+"]/bufinptrslt");
- var InptRslt = model.getvalue("/root/main/testinfo/detailtestinfo["+row+"]/inptrslt");
- if(vBufInptRslt == "" && InptRslt==""){
- model.setvalue("/root/main/testinfo/detailtestinfo["+row+"]/inptrslt",vBufInptRslt);
- return;
- }
- else{
- if(vBufInptRslt == InptRslt){
- fCvtViewResult(true);
- return;
- }
- }
-
-
- fCvtResultCode(row);
- fCvtViewResult();
- }
-
-
- }
- else{
-
-
- }
-
-
- }
-
- function datagrid3Click(){
- if(datagrid3.isCell(event.target) && datagrid3.row >= datagrid3.fixedRows ){
-
- }
- else return;
-
- var row = datagrid3.row;
- var col = datagrid3.col;
-
- if(row < 1) return;
-
- for(i=1;i<datagrid3.rows;i++){
- if(i == row){
- if(col == 4){
-
- var vInptRslt = model.getvalue("/root/main/testinfo/detailtestinfo["+row+"]/inptrslt");
-
- if(vInptRslt != ""){
- model.setvalue("/root/main/testinfo/detailtestinfo["+i+"]/bufinptrslt" , vInptRslt);
- //alert(model.getvalue("/root/main/testinfo/detailtestinfo["+i+"]/bufinptrslt"))
- }
- }
- else{
- model.setvalue("/root/main/testinfo/detailtestinfo["+i+"]/bufinptrslt" , "");
- }
- }
- else{
- model.setvalue("/root/main/testinfo/detailtestinfo["+i+"]/bufinptrslt" , "");
- }
- }
-
- }
- // 결과판정
- function fCvtViewResult(pMatch, pMulty, pRow){
-
- var vRow = datagrid3.row;
- var vCol = datagrid3.col;
-
- var vMaxRow = datagrid3.rows-1;
-
- if (typeof(pMatch) == "undefined") pMatch = false;
- if (typeof(pMulty) == "undefined") pMulty = false;
- if (typeof(pRow) != "undefined") vRow = pRow;
-
- var vBufinptrslt = model.getvalue("/root/main/testinfo/detailtestinfo["+vRow+"]/bufinptrslt");
-
- model.setvalue("/root/main/testinfo/detailtestinfo["+vRow+"]/inptrslt",vBufinptrslt);
- model.setvalue ("/root/main/testinfo/detailtestinfo["+vRow+"]/reptrslt",vBufinptrslt);
-
- if(model.getvalue("/root/main/testinfo/detailtestinfo["+vRow+"]/reptrslt") != ""){
- model.setvalue("/root/main/testinfo/detailtestinfo["+vRow+"]/chk", "true");
- }
-
- if (pMulty) {
-
- model.setvalue("/root/main/testinfo/detailtestinfo["+vRow+"]/bufinptrslt", "");
-
- } else {
-
- var vMoveRow = "";
- if(vMaxRow == parseInt(vRow))
- vMoveRow = parseInt(vRow);
- else
- vMoveRow = parseInt(vRow) + 1;
- if( vMaxRow >= vMoveRow ) {
-
- } else {
- vMoveRow -= 1;
- }
-
- model.setvalue("/root/main/testinfo/detailtestinfo["+vRow+"]/bufinptrslt", "");
-
- datagrid3.row = vMoveRow;
- datagrid3.col = 4;
-
-
- model.setvalue("/root/main/testinfo/detailtestinfo["+vMoveRow+"]/bufinptrslt",
- model.getvalue("/root/main/testinfo/detailtestinfo["+vMoveRow+"]/inptrslt"));
-
- }
-
-
- }
- function fCvtResultCode(row){
- var pRef = "/root/main/testinfo/detailtestinfo";
- var vTestcd = model.getValue(pRef + "["+row+"]/testcd");
- var vInptRslt = model.getValue(pRef + "["+row+"]/bufinptrslt");
-
- var cdNodes = instance1.selectNodes("/root/init/LB0109[etc01='" + vTestcd + "']/cd");
- var cdNodes2 = instance1.selectNodes("/root/init/LB0109[etc01='" + 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;
-
- if(vInptRslt.toLowerCase() == cd) vRstcontLower = nm;
- if(vInptRslt.toUpperCase() == cd) vRstcontUpper = nm;
- }
-
-
- if (vRstcontLower.getTrim() != "" || vRstcontUpper.getTrim() != "" ) {
-
- var vRstcont = (vRstcontLower.getTrim() != "") ? vRstcontLower.getTrim() : vRstcontUpper.getTrim();
-
- model.setValue(pRef + "["+row+"]/bufinptrslt", vRstcont);
- model.setValue(pRef + "["+row+"]/inptrslt", vRstcont);
- }
- }
-
-
- function fRsltCodeDBClick(){
- var vDescrslt = model.getvalue("/root/main/testinfo/spcltestinfo/descrslt");
- var vRow = datagrid4.row;
-
- vDescrslt = vDescrslt + "\n" + model.getvalue("/root/main/rsltcode["+vRow+"]/nm");
-
- model.setvalue("/root/main/testinfo/spcltestinfo/descrslt" , vDescrslt);
- model.refresh();
-
- }
-
- //의뢰서 조회
- function fRefREQSHT() {
- if(button4.selected) {
- modal("SPLRR90100");
- } else if(button5.selected) {
- modal("SPLRR90200");
- } else if(button9.selected) {
- modal("SPLRR90400");
- } else if(button34.selected) {
- modal("SPLRR90300");
- } else if(button40.selected) {
- modal("SPLRR90600");
- }
- }
- ]]>
- </script>
- </xhtml:head>
- <xhtml:body style="margin-left:8; margin-top:0; margin-right:8; margin-bottom:0; ">
- <group id="group1" style="left:0px; top:0px; width:1195px; height:13px; ">
- <caption id="caption6" class="tit_1" style="left:0px; top:0px; width:126px; height:14px; background-image:../../../com/commonweb/images/tit_bullet1.gif; ">판독결과관리</caption>
- </group>
- <group id="group3" scroll="auto" style="left:0px; top:40px; width:1195px; height:744px; ">
- <switch id="switch1" class="sw_box" style="left:0px; top:31px; width:320px; height:169px; ">
- <case id="case1" selected="true">
- <shape id="roundrect1" class="roundrect_search" appearance="roundrect" style="left:4px; top:4px; width:310px; height:159px; "/>
- <caption id="caption2" class="search_name" style="left:14px; top:62px; width:90px; height:17px; background-image:../../../com/commonweb/images/search_bullet1.gif; ">접수일자 :</caption>
- <caption id="caption4" class="search_name" style="left:14px; top:86px; width:112px; height:17px; background-image:../../../com/commonweb/images/search_bullet1.gif; ">특수검사그룹 :</caption>
- <input id="input1" ref="/root/hidden/testgroup/startdd" class="input_search" inputtype="date" style="left:105px; top:61px; width:89px; height:19px; "/>
- <input id="input2" ref="/root/hidden/testgroup/enddd" class="input_search" inputtype="date" style="left:210px; top:61px; width:89px; height:19px; "/>
- <caption id="caption7" class="search_no_b" style="left:196px; top:62px; width:15px; height:17px; ">~</caption>
- <select1 id="combo1" ref="/root/hidden/testgroup/spcltestgrupcd" class="combo_search" appearance="minimal" style="left:129px; top:85px; width:170px; height:19px; ">
- <choices>
- <itemset nodeset="/root/init/LB0901">
- <label ref="nm"/>
- <value ref="cd"/>
- </itemset>
- </choices>
- </select1>
- <line id="line13" class="line_4" style="x1:228px; y1:134px; x2:228px; y2:156px; "/>
- <button id="button13" class="btn1_letter2" style="left:243px; top:134px; width:56px; height:22px; background-image:../../../com/commonweb/images/btn1_letter2.gif; ">
- <caption>조회</caption>
- <script type="javascript" ev:event="DOMActivate">
- <![CDATA[
- Onclick_btnRef();
- ]]>
- </script>
- </button>
- <caption id="caption18" class="search_name" style="left:14px; top:134px; width:90px; height:17px; background-image:../../../com/commonweb/images/search_bullet1.gif; ">결과구분 :</caption>
- <select1 id="combo3" ref="/root/hidden/testgroup/rstflag" class="combo_search" appearance="minimal" style="left:130px; top:133px; width:73px; height:19px; ">
- <choices>
- <item>
- <label>전체</label>
- <value>0</value>
- </item>
- <item>
- <label>미검사</label>
- <value>1</value>
- </item>
- <item>
- <label>미완료</label>
- <value>2</value>
- </item>
- <item>
- <label>최종보고</label>
- <value>3</value>
- </item>
- </choices>
- </select1>
- <caption id="caption5" class="search_name" style="left:14px; top:110px; width:90px; height:17px; background-image:../../../com/commonweb/images/search_bullet1.gif; ">일련번호 :</caption>
- <caption id="caption17" class="search_no_b" style="left:208px; top:108px; width:15px; height:17px; ">~</caption>
- <input id="input3" ref="/root/hidden/testgroup/sworkseq" class="input_search" style="left:129px; top:109px; width:75px; height:19px; ">
- <script type="javascript" ev:event="DOMFocusOut">
- <![CDATA[
- var sNo = model.getvalue("/root/hidden/testgroup/sworkseq");
- sNo = sNo.getLeftPad(5,0);
-
- model.setvalue("/root/hidden/testgroup/sworkseq" , sNo) ;
- input3.refresh();
- ]]>
- </script>
- </input>
- <input id="input10" ref="/root/hidden/testgroup/eworkseq" class="input_search" style="left:224px; top:109px; width:75px; height:19px; ">
- <script type="javascript" ev:event="DOMFocusOut">
- <![CDATA[
- var sNo = model.getvalue("/root/hidden/testgroup/eworkseq");
- sNo = sNo.getLeftPad(5,0);
-
- model.setvalue("/root/hidden/testgroup/eworkseq" , sNo) ;
- input10.refresh();
- ]]>
- </script>
- </input>
- <select1 id="combo5" ref="/root/hidden/testgroup/refgbn" class="combo_search" appearance="minimal" style="left:105px; top:8px; width:155px; height:19px; ">
- <choices>
- <item>
- <label>검체번호</label>
- <value>1</value>
- </item>
- <item>
- <label>등록번호</label>
- <value>2</value>
- </item>
- <item>
- <label>환자성명</label>
- <value>3</value>
- </item>
- </choices>
- <script type="javascript" ev:event="xforms-value-changed">
- <![CDATA[
- var flag = model.getvalue("/root/hidden/refparam/searchflag");
-
- if(flag != "1"){
- checkbox1.disabled = true;
- }
- else{
- checkbox1.disabled = false;
- }
-
- if(model.getValue("/root/hidden/testgroup/refgbn")=="3"){
- iptSearch.attribute("imemode") = "hangul";
- }else{
- iptSearch.attribute("imemode") = "alpha";
- }
- ]]>
- </script>
- </select1>
- <input id="iptSearch" ref="/root/hidden/testgroup/text" navindex="1" class="input_button" inputtype="button" style="left:105px; top:32px; width:195px; height:19px; ">
- <script type="javascript" ev:event="onbuttonclick">
- <![CDATA[
- //fOnclickBtnRef("Q");
- ]]>
- </script>
- </input>
- <caption id="caption127" class="search_name" style="left:15px; top:9px; width:94px; height:17px; ">검색구분 :</caption>
- <line id="line89" class="line_7" style="x1:14px; y1:56px; x2:299px; y2:56px; "/>
- </case>
- <case id="case2">
- <shape id="roundrect3" class="roundrect_search" appearance="roundrect" style="left:4px; top:4px; width:310px; height:159px; "/>
- <caption id="caption8" class="search_name" style="left:14px; top:62px; width:100px; height:17px; background-image:../../../com/commonweb/images/search_bullet1.gif; ">작업일자 :</caption>
- <caption id="caption9" class="search_name" style="left:14px; top:86px; width:100px; height:17px; background-image:../../../com/commonweb/images/search_bullet1.gif; ">작업그룹 :</caption>
- <caption id="caption10" class="search_name" style="left:14px; top:110px; width:100px; height:17px; background-image:../../../com/commonweb/images/search_bullet1.gif; ">작업번호 :</caption>
- <input id="input4" ref="/root/hidden/workno/sworkseq" class="input_search" style="left:105px; top:109px; width:89px; height:19px; "/>
- <input id="input5" ref="/root/hidden/workno/eworkseq" class="input_search" style="left:210px; top:109px; width:89px; height:19px; "/>
- <input id="input6" ref="/root/hidden/workno/startdd" class="input_search" inputtype="date" style="left:105px; top:61px; width:89px; height:19px; "/>
- <input id="input7" ref="/root/hidden/workno/enddd" class="input_search" inputtype="date" style="left:210px; top:61px; width:89px; height:19px; "/>
- <caption id="caption11" class="search_no_b" style="left:196px; top:62px; width:15px; height:17px; ">~</caption>
- <caption id="caption12" class="search_no_b" style="left:196px; top:111px; width:15px; height:17px; ">~</caption>
- <line id="line3" class="line_4" style="x1:228px; y1:134px; x2:228px; y2:156px; "/>
- <button id="button19" class="btn1_letter2" style="left:243px; top:134px; width:56px; height:22px; background-image:../../../com/commonweb/images/btn1_letter2.gif; ">
- <caption>조회</caption>
- <script type="javascript" ev:event="DOMActivate">
- <![CDATA[
- Onclick_btnRef();
- ]]>
- </script>
- </button>
- <select1 id="combo8" ref="/root/hidden/workno/rstflag" class="combo_search" appearance="minimal" style="left:105px; top:133px; width:88px; height:19px; ">
- <choices>
- <item>
- <label>전체</label>
- <value>0</value>
- </item>
- <item>
- <label>미검사</label>
- <value>1</value>
- </item>
- <item>
- <label>미완료</label>
- <value>2</value>
- </item>
- <item>
- <label>최종보고</label>
- <value>3</value>
- </item>
- </choices>
- </select1>
- <caption id="caption3" class="search_name" style="left:14px; top:134px; width:100px; height:17px; background-image:../../../com/commonweb/images/search_bullet1.gif; ">결과구분 :</caption>
- <select1 id="combo2" ref="/root/hidden/workno/workcd" class="combo_search" appearance="minimal" style="left:105px; top:85px; width:170px; height:19px; ">
- <choices>
- <itemset nodeset="/root/init/LB0103">
- <label ref="nm"/>
- <value ref="cd"/>
- </itemset>
- </choices>
- </select1>
- <button id="button61" class="icon_search" style="left:280px; top:85px; width:16px; height:16px; background-image:../../../com/commonweb/images/icon_search.gif; ">
- <caption/>
- <script type="javascript" ev:event="DOMActivate">
- <![CDATA[
- modal("SMLLF90400");
- fBaseInfoRef2("0103|");
- ]]>
- </script>
- </button>
- <caption id="caption128" class="search_name" style="left:15px; top:9px; width:94px; height:17px; ">검색구분 :</caption>
- <line id="line90" class="line_7" style="x1:14px; y1:56px; x2:299px; y2:56px; "/>
- <select1 id="combo7" ref="/root/hidden/workno/refgbn" class="combo_search" appearance="minimal" style="left:105px; top:8px; width:155px; height:19px; ">
- <choices>
- <item>
- <label>검체번호</label>
- <value>1</value>
- </item>
- <item>
- <label>등록번호</label>
- <value>2</value>
- </item>
- <item>
- <label>환자성명</label>
- <value>3</value>
- </item>
- </choices>
- <script type="javascript" ev:event="xforms-value-changed">
- <![CDATA[
- var flag = model.getvalue("/root/hidden/refparam/searchflag");
-
- if(flag != "1"){
- checkbox1.disabled = true;
- }
- else{
- checkbox1.disabled = false;
- }
-
- if(model.getValue("/root/hidden/workno/refgbn")=="3"){
- input37.attribute("imemode") = "hangul";
- }else{
- input37.attribute("imemode") = "alpha";
- }
- ]]>
- </script>
- </select1>
- <input id="input37" ref="/root/hidden/workno/text" navindex="1" class="input_button" inputtype="button" style="left:105px; top:32px; width:195px; height:19px; ">
- <script type="javascript" ev:event="onbuttonclick">
- <![CDATA[
- //fOnclickBtnRef("Q");
- ]]>
- </script>
- </input>
- </case>
- </switch>
- <caption id="caption16" class="tit_2" style="left:5px; top:209px; width:115px; height:13px; background-image:../../../com/commonweb/images/tit_bullet2.gif; ">환자목록</caption>
- <line id="line4" class="line_1" style="x1:0px; y1:225px; x2:320px; y2:225px; "/>
- <button id="button16" class="btn_sw" group="tab" selected="true" select.background-image="../../../com/commonweb/images/tab_show.gif" style="left:89px; top:10px; width:75px; height:22px; background-image:../../../com/commonweb/images/tab_hide.gif; ">
- <caption>검사항목별</caption>
- <script type="javascript" ev:event="DOMActivate">
- <![CDATA[
- model.setvalue("/root/hidden/refparam/refgbn","2");
- model.toggle("case2");
- ]]>
- </script>
- </button>
- <button id="button6" class="btn_sw" group="tab" select.background-image="../../../com/commonweb/images/tab_show.gif" style="left:0px; top:10px; width:89px; height:22px; background-image:../../../com/commonweb/images/tab_hide.gif; ">
- <caption>특수검사그룹별</caption>
- <script type="javascript" ev:event="DOMActivate">
- <![CDATA[
- model.setvalue("/root/hidden/refparam/refgbn","1");
-
- model.toggle("case1");
- ]]>
- </script>
- </button>
- <datagrid id="grd_patList" nodeset="/root/main/patlist" caption="^특수검사번호^특수검사번호^등록번호^성명^검사명^검체번호^testcd" colwidth="22, 21, 111, 71, 62, 100, 100, 100" dataheight="23" ellipsis="true" explorerbar="sortshow" mergecellsfixedrows="bycolrec" rowheader="seq" rowheight="23" rowsep="|" colsep="^" fixed.background-image="../../../com/commonweb/images/grid_bg.gif" style="left:0px; top:230px; width:320px; height:504px; ">
- <col ref="img"/>
- <col/>
- <col ref="spclno"/>
- <col ref="pid"/>
- <col ref="patnm"/>
- <col ref="tclsscrnnm"/>
- <col ref="bcno"/>
- <col ref="testcd"/>
- <script type="javascript" ev:event="onclick">
- <![CDATA[
- fOnclick_grd_patList();
- ]]>
- </script>
- </datagrid>
- <caption id="caption21" class="tit_2" style="left:330px; top:15px; width:115px; height:14px; background-image:../../../com/commonweb/images/tit_bullet2.gif; ">특수검사 정보</caption>
- <line id="line7" class="line_1" style="x1:325px; y1:31px; x2:1192px; y2:31px; "/>
- <caption id="caption20" class="cell_1" style="left:325px; top:60px; width:70px; height:23px; vertical-align:middle; ">채취일시</caption>
- <caption id="caption22" class="cell_1" style="left:541px; top:60px; width:70px; height:23px; vertical-align:middle; ">접수일시</caption>
- <caption id="caption23" class="cell_1" style="left:757px; top:60px; width:70px; height:23px; vertical-align:middle; ">검사일시</caption>
- <caption id="caption24" class="cell_1" style="left:973px; top:60px; width:70px; height:23px; vertical-align:middle; ">판독일시</caption>
- <output id="output3" ref="/root/main/testinfo/spcltestinfo/extrtestinstcd" class="output_fix" style="left:398px; top:37px; width:100px; height:19px; "/>
- <output id="output1" ref="/root/main/testinfo/spcltestinfo/pid" class="output_fix" style="left:574px; top:37px; width:90px; height:19px; "/>
- <output id="output2" ref="/root/main/testinfo/spcltestinfo/patnm" class="output_fix" style="left:740px; top:37px; width:100px; height:19px; "/>
- <output id="output4" ref="/root/main/testinfo/spcltestinfo/orddeptnm" class="output_fix" style="left:916px; top:37px; width:100px; height:19px; "/>
- <output id="output5" ref="/root/main/testinfo/spcltestinfo/orddrnm" class="output_fix" style="left:1092px; top:37px; width:100px; height:19px; "/>
- <output id="output6" ref="/root/main/testinfo/spcltestinfo/bcolldt" class="output_fix" format="9999-99-99 99:99:99" style="left:398px; top:61px; width:140px; height:19px; "/>
- <output id="output7" ref="/root/main/testinfo/spcltestinfo/spcacptdt" class="output_fix" format="9999-99-99 99:99:99" style="left:614px; top:61px; width:140px; height:19px; "/>
- <output id="output8" ref="/root/main/testinfo/spcltestinfo/lastreptdt" class="output_fix" format="9999-99-99 99:99:99" style="left:830px; top:61px; width:140px; height:19px; "/>
- <output id="output9" ref="/root/main/testinfo/spcltestinfo/medispcdt" class="output_fix" format="9999-99-99 99:99:99" style="left:1046px; top:61px; width:146px; height:19px; "/>
- <line id="line9" class="line_3" style="x1:325px; y1:82px; x2:1192px; y2:82px; "/>
- <line id="line6" class="line_2" style="x1:325px; y1:58px; x2:1192px; y2:58px; "/>
- <caption id="caption1" class="cell_1" style="left:501px; top:36px; width:70px; height:23px; vertical-align:middle; ">등록번호</caption>
- <caption id="caption13" class="cell_1" style="left:667px; top:36px; width:70px; height:23px; vertical-align:middle; ">성명</caption>
- <caption id="caption14" class="cell_1" style="left:325px; top:36px; width:70px; height:23px; vertical-align:middle; ">병원명</caption>
- <caption id="caption15" class="cell_1" style="left:843px; top:36px; width:70px; height:23px; vertical-align:middle; ">진료과명</caption>
- <caption id="caption19" class="cell_1" style="left:1019px; top:36px; width:70px; height:23px; vertical-align:middle; ">진료의명</caption>
- <button id="button7" class="btn2_letter6" style="left:1105px; top:10px; width:86px; height:19px; background-image:../../../com/commonweb/images/btn2_letter6.gif; ">
- <caption>기본정보조회</caption>
- </button>
- <switch id="switch3" style="left:325px; top:110px; width:867px; height:624px; ">
- <case id="case5" style="left:0px; top:0px; width:866px; height:643px; ">
- <caption id="caption25" class="tit_2" style="left:10px; top:10px; width:115px; height:14px; ">CBC Result</caption>
- <line id="line1" class="line_1" style="x1:5px; y1:26px; x2:430px; y2:26px; "/>
- <line id="line2" class="line_1" style="x1:435px; y1:26px; x2:860px; y2:26px; "/>
- <caption id="caption26" class="tit_2" style="left:440px; top:10px; width:115px; height:13px; ">연관검사</caption>
- <line id="line10" class="line_1" style="x1:5px; y1:197px; x2:860px; y2:197px; "/>
- <caption id="caption27" class="tit_2" style="left:10px; top:181px; width:115px; height:13px; ">BM 이전결과</caption>
- <line id="line11" class="line_1" style="x1:5px; y1:353px; x2:860px; y2:353px; "/>
- <caption id="caption28" class="tit_2" style="left:10px; top:337px; width:115px; height:13px; ">판독결과</caption>
- <textarea id="textarea5" style="left:5px; top:358px; width:855px; height:115px; "/>
- <line id="line12" class="line_1" style="x1:5px; y1:499px; x2:860px; y2:499px; "/>
- <caption id="caption29" class="tit_2" style="left:10px; top:483px; width:115px; height:13px; ">Interpretation</caption>
- <textarea id="textarea6" style="left:5px; top:504px; width:855px; height:115px; "/>
- <button id="button11" class="btn2_letter4" style="left:796px; top:5px; width:64px; height:19px; ">
- <caption>연관검사</caption>
- </button>
- <datagrid id="datagrid23" caption="^검사코드^검사명^결과^결과^inptrslt" colwidth="0, 80, 174, 50, 50, 0" dataheight="23" mergecellsfixedrows="bycolrec" rowheader="seq" rowheight="23" selectionmode="free" rowsep="|" colsep="^" style="left:5px; top:31px; width:425px; height:140px; ">
- <col ref="chk" type="checkbox" checkvalue="true,false"/>
- <col ref="testcd"/>
- <col ref="tclsscrnnm"/>
- <col ref="bufinptrslt" type="input"/>
- <col ref="reptrslt"/>
- <col ref="inptrslt"/>
- <script type="javascript" ev:event="onkeypress">
- <![CDATA[
- fGridKeyEvent();
- ]]>
- </script>
- <script type="javascript" ev:event="onclick">
- <![CDATA[
- datagrid3Click();
- ]]>
- </script>
- </datagrid>
- <datagrid id="datagrid24" caption="^검사코드^검사명^결과^결과^inptrslt" colwidth="0, 80, 174, 50, 50, 0" dataheight="23" mergecellsfixedrows="bycolrec" rowheader="seq" rowheight="23" selectionmode="free" rowsep="|" colsep="^" style="left:435px; top:31px; width:425px; height:140px; ">
- <col ref="chk" type="checkbox" checkvalue="true,false"/>
- <col ref="testcd"/>
- <col ref="tclsscrnnm"/>
- <col ref="bufinptrslt" type="input"/>
- <col ref="reptrslt"/>
- <col ref="inptrslt"/>
- <script type="javascript" ev:event="onkeypress">
- <![CDATA[
- fGridKeyEvent();
- ]]>
- </script>
- <script type="javascript" ev:event="onclick">
- <![CDATA[
- datagrid3Click();
- ]]>
- </script>
- </datagrid>
- <datagrid id="datagrid25" caption="^검사코드^검사명^결과^결과^inptrslt" colwidth="0, 80, 174, 50, 50, 0" dataheight="23" mergecellsfixedrows="bycolrec" rowheader="seq" rowheight="23" selectionmode="free" rowsep="|" colsep="^" style="left:5px; top:202px; width:855px; height:125px; ">
- <col ref="chk" type="checkbox" checkvalue="true,false"/>
- <col ref="testcd"/>
- <col ref="tclsscrnnm"/>
- <col ref="bufinptrslt" type="input"/>
- <col ref="reptrslt"/>
- <col ref="inptrslt"/>
- <script type="javascript" ev:event="onkeypress">
- <![CDATA[
- fGridKeyEvent();
- ]]>
- </script>
- <script type="javascript" ev:event="onclick">
- <![CDATA[
- datagrid3Click();
- ]]>
- </script>
- </datagrid>
- </case>
- <case id="case6" style="left:0px; top:0px; width:866px; height:643px; ">
- <caption id="caption34" class="tit_2" style="left:10px; top:10px; width:135px; height:14px; ">Bone Marrow 결과</caption>
- <line id="line14" class="line_1" style="x1:5px; y1:26px; x2:860px; y2:26px; "/>
- <input id="input8" class="input_essential" style="left:5px; top:31px; width:120px; height:19px; "/>
- <textarea id="textarea7" style="left:130px; top:31px; width:730px; height:37px; "/>
- <button id="button12" class="btn2_letter6" style="left:774px; top:5px; width:86px; height:19px; ">
- <caption>연관검사결과</caption>
- </button>
- <line id="line15" class="line_1" style="x1:5px; y1:96px; x2:860px; y2:96px; "/>
- <caption id="caption35" class="tit_2" style="left:10px; top:80px; width:238px; height:13px; ">이전 검사 결과 (선택 검사에 대한)</caption>
- <line id="line16" class="line_3" style="x1:5px; y1:69px; x2:860px; y2:69px; "/>
- <textarea id="textarea8" style="left:5px; top:101px; width:855px; height:60px; "/>
- <textarea id="textarea9" style="left:5px; top:192px; width:855px; height:60px; "/>
- <line id="line18" class="line_1" style="x1:5px; y1:187px; x2:860px; y2:187px; "/>
- <caption id="caption36" class="tit_2" style="left:10px; top:171px; width:238px; height:13px; ">임상적 적응중</caption>
- <datagrid id="datagrid1" nodeset="/root/main/testinfo/detailtestinfo" caption="^검사코드^검사명^결과^결과^inptrslt" colwidth="0, 80, 174, 50, 50, 0" dataheight="23" mergecellsfixedrows="bycolrec" rowheader="seq" rowheight="23" selectionmode="free" rowsep="|" colsep="^" style="left:5px; top:282px; width:400px; height:123px; ">
- <col ref="chk" type="checkbox" checkvalue="true,false"/>
- <col ref="testcd"/>
- <col ref="tclsscrnnm"/>
- <col ref="bufinptrslt" type="input"/>
- <col ref="reptrslt"/>
- <col ref="inptrslt"/>
- <script type="javascript" ev:event="onkeypress">
- <![CDATA[
- //fGridKeyEvent();
- ]]>
- </script>
- <script type="javascript" ev:event="onclick">
- <![CDATA[
- //datagrid3Click();
- ]]>
- </script>
- </datagrid>
- <caption id="caption37" class="tit_2" style="left:5px; top:262px; width:115px; height:13px; ">세부검사 목록</caption>
- <button id="button14" class="btn2_letter6" style="left:319px; top:257px; width:86px; height:19px; ">
- <caption>연관검사조회</caption>
- <script type="javascript" ev:event="DOMActivate">
- <![CDATA[
- if(model.getValue("/root/main/testinfo/spcltestinfo/testcd") != ""){
- model.setValue("/root/hidden/RelationParm/pid", model.getValue("/root/main/testinfo/spcltestinfo/pid"));
- model.setValue("/root/hidden/RelationParm/tclsscrnnm", model.getValue("/root/main/testinfo/spcltestinfo/tclsscrnnm"));
- model.setValue("/root/hidden/RelationParm/testcd", model.getValue("/root/main/testinfo/spcltestinfo/testcd"));
- model.setValue("/root/hidden/RelationParm/spccd", model.getValue("/root/main/testinfo/spcltestinfo/spccd"));
- modal("SMLLR90400" , "","","","","/root/hidden/RelationParm" , "/root/hidden/RelationParm");
- }
- ]]>
- </script>
- </button>
- <line id="line19" class="line_1" style="x1:5px; y1:277px; x2:405px; y2:277px; "/>
- <line id="line20" class="line_1" style="x1:410px; y1:277px; x2:860px; y2:277px; "/>
- <datagrid id="datagrid2" nodeset="/root/main/rsltcode" caption="결과코드^결과내용" colwidth="100, 320" dataheight="23" mergecellsfixedrows="bycolrec" rowheader="seq" rowheight="23" rowsep="|" colsep="^" style="left:410px; top:282px; width:450px; height:123px; ">
- <col ref="cd"/>
- <col ref="nm"/>
- <script type="javascript" ev:event="ondblclick">
- <![CDATA[
- //fRsltCodeDBClick();
- ]]>
- </script>
- </datagrid>
- <caption id="caption38" class="tit_2" style="left:415px; top:262px; width:115px; height:13px; background-image:../../../com/commonweb/images/tit_bullet2.gif; ">결과예문</caption>
- <button id="button15" class="btn2_letter9" style="left:741px; top:257px; width:119px; height:19px; ">
- <caption>결과예문코드 등록</caption>
- <script type="javascript" ev:event="DOMActivate">
- <![CDATA[
- modal("SMLLF00700");
- ]]>
- </script>
- </button>
- <switch id="switch4" class="sw_box" style="left:5px; top:437px; width:855px; height:186px; ">
- <case id="case31" selected="true">
- <textarea id="textarea10" ref="/root/main/testinfo/spcltestinfo/descrslt" style="left:5px; top:5px; width:845px; height:177px; "/>
- </case>
- <case id="case32">
- <select1 id="combo4" 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();
- ]]>
- </script>
- </select1>
- <button id="button18" 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();
- }
- ]]>
- </script>
- </button>
- <caption id="caption39" class="cell_1" style="left:5px; top:2px; width:80px; height:23px; vertical-align:middle; ">History</caption>
- <caption id="caption40" class="no_image" visibility="hidden" style="left:310px; top:5px; width:210px; height:240px; vertical-align:middle; background-image:../../../com/commonweb/images/no_image.gif; "/>
- <img id="img3" ref="/root/main/view/imgrslt" src="../images/결과이미지.gif" style="left:5px; top:30px; width:800px; height:148px; background-stretch:stretch; "/>
- <img id="img4" visibility="hidden" style="left:420px; top:30px; width:365px; height:148px; background-color:#ff6600; background-stretch:stretch; "/>
- </case>
- </switch>
- <button id="button20" class="btn_sw" group="tab" select.background-image="../../../com/commonweb/images/tab_show.gif" style="left:94px; top:415px; width:90px; height:22px; ">
- <caption>이미지결과</caption>
- <script type="javascript" ev:event="DOMActivate">
- <![CDATA[
- model.toggle("case32");
-
- ]]>
- </script>
- </button>
- <button id="button21" class="btn_sw" group="tab" selected="true" select.background-image="../../../com/commonweb/images/tab_show.gif" style="left:5px; top:415px; width:89px; height:22px; ">
- <caption>서술결과</caption>
- <script type="javascript" ev:event="DOMActivate">
- <![CDATA[
- model.toggle("case31");
-
- ]]>
- </script>
- </button>
- </case>
- <case id="case7" style="left:0px; top:0px; width:866px; height:643px; ">
- <textarea id="textarea11" style="left:130px; top:31px; width:730px; height:37px; "/>
- <input id="input9" class="input_essential" style="left:5px; top:31px; width:120px; height:19px; "/>
- <textarea id="textarea12" style="left:5px; top:101px; width:855px; height:145px; "/>
- <line id="line21" class="line_1" style="x1:5px; y1:26px; x2:860px; y2:26px; "/>
- <line id="line22" class="line_1" style="x1:5px; y1:96px; x2:860px; y2:96px; "/>
- <caption id="caption41" class="tit_2" style="left:10px; top:10px; width:145px; height:13px; ">Bone Marrow 결과</caption>
- <caption id="caption42" class="tit_2" style="left:10px; top:80px; width:135px; height:13px; ">이전 검사 결과</caption>
- <line id="line23" class="line_3" style="x1:5px; y1:69px; x2:860px; y2:69px; "/>
- <button id="button22" class="btn2_letter6" style="left:774px; top:5px; width:86px; height:19px; ">
- <caption>연관검사결과</caption>
- </button>
- <button id="button23" class="btn_sw" group="tab" select.background-image="../../../com/commonweb/images/tab_show.gif" style="left:94px; top:254px; width:90px; height:22px; ">
- <caption>이미지결과</caption>
- <script type="javascript" ev:event="DOMActivate">
- <![CDATA[
- model.toggle("case34");
-
- ]]>
- </script>
- </button>
- <button id="button24" class="btn_sw" group="tab" selected="true" select.background-image="../../../com/commonweb/images/tab_show.gif" style="left:5px; top:254px; width:89px; height:22px; ">
- <caption>서술결과</caption>
- <script type="javascript" ev:event="DOMActivate">
- <![CDATA[
- model.toggle("case33");
-
-
- ]]>
- </script>
- </button>
- <switch id="switch5" class="sw_box" style="left:5px; top:275px; width:859px; height:345px; ">
- <case id="case33" selected="true">
- <line id="line24" class="line_1" style="x1:5px; y1:26px; x2:425px; y2:26px; "/>
- <caption id="caption45" class="tit_2" style="left:10px; top:10px; width:135px; height:14px; ">결과예문</caption>
- <datagrid id="datagrid5" caption="코드^예문 Title" colwidth="100, 255" mergecellsfixedrows="bycolrec" rowheader="seq" rowsep="|" colsep="^" style="left:5px; top:31px; width:420px; height:311px; ">
- <col/>
- <col/>
- </datagrid>
- <line id="line25" class="line_1" style="x1:430px; y1:26px; x2:850px; y2:26px; "/>
- <caption id="caption46" class="tit_2" style="left:435px; top:10px; width:135px; height:14px; ">판독결과</caption>
- <textarea id="textarea13" style="left:430px; top:31px; width:420px; height:169px; "/>
- <line id="line26" class="line_1" style="x1:430px; y1:226px; x2:850px; y2:226px; "/>
- <caption id="caption47" class="tit_2" style="left:435px; top:210px; width:135px; height:13px; ">Interpretation</caption>
- <textarea id="textarea14" style="left:430px; top:231px; width:420px; height:109px; "/>
- </case>
- <case id="case34">
- <select1 id="combo6" 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();
- ]]>
- </script>
- </select1>
- <button id="button25" 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();
- }*/
- ]]>
- </script>
- </button>
- <caption id="caption43" class="cell_1" style="left:5px; top:2px; width:80px; height:23px; vertical-align:middle; ">History</caption>
- <caption id="caption44" class="no_image" visibility="hidden" style="left:75px; top:65px; width:210px; height:240px; vertical-align:middle; background-image:../../../com/commonweb/images/no_image.gif; "/>
- <img id="img5" ref="/root/main/view/imgrslt" src="../images/결과이미지.gif" style="left:25px; top:35px; width:800px; height:300px; background-stretch:stretch; "/>
- <img id="img6" visibility="hidden" style="left:315px; top:10px; width:365px; height:325px; background-color:#ff6600; background-stretch:stretch; "/>
- </case>
- </switch>
- <button id="button26" class="btn2_letter4" style="left:796px; top:75px; width:64px; height:19px; ">
- <caption>Refresh</caption>
- </button>
- </case>
- <case id="case8" style="left:0px; top:0px; width:866px; height:643px; ">
- <input id="input11" class="input_essential" style="left:5px; top:31px; width:120px; height:19px; "/>
- <line id="line27" class="line_1" style="x1:5px; y1:26px; x2:860px; y2:26px; "/>
- <caption id="caption48" class="tit_2" style="left:10px; top:10px; width:145px; height:13px; ">Bone Marrow 결과</caption>
- <line id="line28" class="line_3" style="x1:5px; y1:69px; x2:860px; y2:69px; "/>
- <button id="button27" class="btn2_letter6" style="left:774px; top:5px; width:86px; height:19px; background-image:../../../com/commonweb/images/btn2_letter6.gif; ">
- <caption>연관검사결과</caption>
- </button>
- <textarea id="textarea15" style="left:130px; top:31px; width:730px; height:37px; "/>
- <datagrid id="datagrid6" caption="결과코드^결과예문" colwidth="100, 275" dataheight="23" mergecellsfixedrows="bycolrec" rowheader="seq" rowheight="23" rowsep="|" colsep="^" style="left:5px; top:353px; width:420px; height:267px; ">
- <col ref="cd"/>
- <col ref="nm"/>
- <script type="javascript" ev:event="ondblclick">
- <![CDATA[
- //fRsltCodeDBClick();
- ]]>
- </script>
- </datagrid>
- <line id="line29" class="line_1" style="x1:5px; y1:348px; x2:425px; y2:348px; "/>
- <caption id="caption49" class="tit_2" style="left:10px; top:333px; width:115px; height:13px; ">결과예문</caption>
- <line id="line30" class="line_1" style="x1:5px; y1:95px; x2:425px; y2:95px; "/>
- <caption id="caption50" class="tit_2" style="left:10px; top:80px; width:115px; height:14px; ">세부검사</caption>
- <line id="line31" class="line_1" style="x1:430px; y1:95px; x2:860px; y2:95px; "/>
- <line id="line32" class="line_1" style="x1:430px; y1:348px; x2:860px; y2:348px; "/>
- <caption id="caption51" class="tit_2" style="left:435px; top:333px; width:115px; height:13px; ">판독결과</caption>
- <textarea id="textarea16" style="left:430px; top:353px; width:430px; height:267px; "/>
- <datagrid id="datagrid7" caption="^검사코드^검사명^결과^결과^inptrslt" colwidth="0, 80, 174, 50, 50, 0" dataheight="23" mergecellsfixedrows="bycolrec" rowheader="seq" rowheight="23" selectionmode="free" rowsep="|" colsep="^" style="left:5px; top:100px; width:420px; height:223px; ">
- <col ref="chk" type="checkbox" checkvalue="true,false"/>
- <col ref="testcd"/>
- <col ref="tclsscrnnm"/>
- <col ref="bufinptrslt" type="input"/>
- <col ref="reptrslt"/>
- <col ref="inptrslt"/>
- <script type="javascript" ev:event="onkeypress">
- <![CDATA[
- fGridKeyEvent();
- ]]>
- </script>
- <script type="javascript" ev:event="onclick">
- <![CDATA[
- datagrid3Click();
- ]]>
- </script>
- </datagrid>
- <datagrid id="datagrid8" caption="^검사코드^검사명^결과^결과^inptrslt" colwidth="0, 80, 174, 50, 50, 0" dataheight="23" mergecellsfixedrows="bycolrec" rowheader="seq" rowheight="23" selectionmode="free" rowsep="|" colsep="^" style="left:430px; top:100px; width:430px; height:223px; ">
- <col ref="chk" type="checkbox" checkvalue="true,false"/>
- <col ref="testcd"/>
- <col ref="tclsscrnnm"/>
- <col ref="bufinptrslt" type="input"/>
- <col ref="reptrslt"/>
- <col ref="inptrslt"/>
- <script type="javascript" ev:event="onkeypress">
- <![CDATA[
- fGridKeyEvent();
- ]]>
- </script>
- <script type="javascript" ev:event="onclick">
- <![CDATA[
- datagrid3Click();
- ]]>
- </script>
- </datagrid>
- </case>
- <case id="case9" selected="true" style="left:0px; top:0px; width:866px; height:643px; ">
- <datagrid id="datagrid9" nodeset="/root/main/osmotic/incu1cont" caption="NaCl(%)^OD^Hemolysis(%)" colwidth="80, 40, 88" mergecellsfixedrows="bycolrec" rowsep="|" colsep="^" style="left:5px; top:31px; width:210px; height:347px; ">
- <col ref="nacl"/>
- <col ref="OD" type="input"/>
- <col/>
- </datagrid>
- <line id="line39" class="line_2" style="x1:5px; y1:430px; x2:430px; y2:430px; "/>
- <line id="line42" class="line_2" style="x1:435px; y1:430px; x2:860px; y2:430px; "/>
- <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; "/>
- <line id="line37" class="line_1" style="x1:5px; y1:403px; x2:430px; y2:403px; "/>
- <caption id="caption56" class="tit_2" style="left:10px; top:387px; width:192px; height:13px; ">용혈시작농도</caption>
- <line id="line38" class="line_1" style="x1:435px; y1:403px; x2:860px; y2:403px; "/>
- <caption id="caption57" class="tit_2" style="left:440px; top:387px; width:192px; height:13px; ">완전용혈농도</caption>
- <caption id="caption58" class="cell_1" style="left:5px; top:408px; width:60px; height:23px; vertical-align:middle; ">1 시간</caption>
- <caption id="caption59" class="cell_1" style="left:5px; top:432px; width:60px; height:23px; vertical-align:middle; ">24시간</caption>
- <caption id="caption60" class="cell_1" style="left:68px; top:408px; width:80px; height:23px; vertical-align:middle; ">control</caption>
- <input id="input12" class="input_default" style="left:151px; top:409px; width:80px; height:19px; "/>
- <caption id="caption61" style="left:231px; top:409px; width:15px; height:20px; ">%</caption>
- <caption id="caption62" class="cell_1" style="left:253px; top:408px; width:80px; height:23px; vertical-align:middle; ">patient</caption>
- <caption id="caption63" style="left:418px; top:409px; width:15px; height:20px; ">%</caption>
- <input id="input13" class="input_default" style="left:336px; top:409px; width:80px; height:19px; "/>
- <caption id="caption64" class="cell_1" style="left:68px; top:432px; width:80px; height:23px; vertical-align:middle; ">control</caption>
- <caption id="caption65" style="left:231px; top:433px; width:15px; height:20px; ">%</caption>
- <caption id="caption66" class="cell_1" style="left:253px; top:432px; width:80px; height:23px; vertical-align:middle; ">patient</caption>
- <caption id="caption67" style="left:418px; top:433px; width:15px; height:20px; ">%</caption>
- <input id="input14" class="input_default" style="left:151px; top:433px; width:80px; height:19px; "/>
- <input id="input15" class="input_default" style="left:336px; top:433px; width:80px; height:19px; "/>
- <line id="line40" class="line_3" style="x1:5px; y1:454px; x2:430px; y2:454px; "/>
- <caption id="caption68" class="cell_1" style="left:498px; top:408px; width:80px; height:23px; vertical-align:middle; ">control</caption>
- <caption id="caption69" style="left:661px; top:409px; width:15px; height:20px; ">%</caption>
- <caption id="caption70" class="cell_1" style="left:683px; top:408px; width:80px; height:23px; vertical-align:middle; ">patient</caption>
- <caption id="caption71" style="left:848px; top:364px; width:15px; height:20px; ">%</caption>
- <caption id="caption72" class="cell_1" style="left:498px; top:432px; width:80px; height:23px; vertical-align:middle; ">control</caption>
- <caption id="caption73" style="left:661px; top:433px; width:15px; height:20px; ">%</caption>
- <caption id="caption74" class="cell_1" style="left:683px; top:432px; width:80px; height:23px; vertical-align:middle; ">patient</caption>
- <input id="input16" class="input_default" style="left:581px; top:409px; width:80px; height:19px; "/>
- <input id="input17" class="input_default" style="left:766px; top:409px; width:80px; height:19px; "/>
- <input id="input18" class="input_default" style="left:581px; top:433px; width:80px; height:19px; "/>
- <input id="input19" class="input_default" style="left:766px; top:433px; width:80px; height:19px; "/>
- <caption id="caption76" class="cell_1" style="left:435px; top:408px; width:60px; height:23px; vertical-align:middle; ">1 시간</caption>
- <caption id="caption77" class="cell_1" style="left:435px; top:432px; width:60px; height:23px; vertical-align:middle; ">24시간</caption>
- <line id="line41" class="line_3" style="x1:435px; y1:454px; x2:860px; y2:454px; "/>
- <datagrid id="datagrid10" nodeset="/root/main/osmotic/incu1pat" caption="NaCl(%)^OD^Hemolysis(%)" colwidth="80, 40, 88" mergecellsfixedrows="bycolrec" rowsep="|" colsep="^" style="left:220px; top:31px; width:210px; height:347px; ">
- <col ref="nacl"/>
- <col ref="OD" type="input"/>
- <col/>
- </datagrid>
- <datagrid id="datagrid11" nodeset="/root/main/osmotic/incu24cont" caption="NaCl(%)^OD^Hemolysis(%)" colwidth="80, 40, 88" mergecellsfixedrows="bycolrec" rowsep="|" colsep="^" style="left:435px; top:31px; width:210px; height:347px; ">
- <col ref="nacl"/>
- <col ref="OD" type="input"/>
- <col/>
- </datagrid>
- <datagrid id="datagrid12" nodeset="/root/main/osmotic/incu24pat" caption="NaCl(%)^OD^Hemolysis(%)" colwidth="80, 40, 88" mergecellsfixedrows="bycolrec" rowsep="|" colsep="^" style="left:650px; top:31px; width:210px; height:347px; ">
- <col ref="nacl"/>
- <col ref="OD" type="input"/>
- <col/>
- </datagrid>
- <caption id="caption75" style="left:847px; top:409px; width:15px; height:20px; ">%</caption>
- <caption id="caption78" style="left:847px; top:433px; width:15px; height:20px; ">%</caption>
- <button id="button42" class="btn2_letter11" style="left:720px; top:382px; width:141px; height:19px; background-image:../../../com/commonweb/images/btn2_letter6.gif; ">
- <caption>Hemolysis 계산 확인</caption>
- </button>
- <line id="line43" class="line_1" style="x1:5px; y1:481px; x2:430px; y2:481px; "/>
- <textarea id="textarea17" style="left:435px; top:486px; width:425px; height:136px; "/>
- <line id="line44" class="line_1" style="x1:435px; y1:481px; x2:860px; y2:481px; "/>
- <caption id="caption79" class="tit_2" style="left:10px; top:465px; width:192px; height:13px; ">결과예문</caption>
- <caption id="caption126" class="tit_2" style="left:440px; top:466px; width:115px; height:13px; ">판독결과</caption>
- <datagrid id="datagrid13" caption="결과코드^결과예문" colwidth="100, 275" dataheight="23" mergecellsfixedrows="bycolrec" rowheader="seq" rowheight="23" rowsep="|" colsep="^" style="left:5px; top:486px; width:425px; height:136px; ">
- <col ref="cd"/>
- <col ref="nm"/>
- <script type="javascript" ev:event="ondblclick">
- <![CDATA[
- //fRsltCodeDBClick();
- ]]>
- </script>
- </datagrid>
- </case>
- <case id="case10" style="left:0px; top:0px; width:866px; height:643px; ">
- <line id="line49" class="line_2" style="x1:5px; y1:101px; x2:430px; y2:101px; "/>
- <line id="line48" class="line_2" style="x1:5px; y1:77px; x2:430px; y2:77px; "/>
- <line id="line47" class="line_2" style="x1:5px; y1:53px; x2:430px; y2:53px; "/>
- <line id="line45" class="line_1" style="x1:5px; y1:26px; x2:430px; y2:26px; "/>
- <caption id="caption80" class="tit_2" style="left:10px; top:10px; width:192px; height:14px; ">ICG 결과관리</caption>
- <caption id="caption81" class="cell_1" style="left:5px; top:31px; width:70px; height:23px; vertical-align:middle; ">5분농도</caption>
- <input id="input20" class="input_default" style="left:78px; top:33px; width:65px; height:19px; "/>
- <caption id="caption82" class="cell_1" style="left:5px; top:55px; width:70px; height:23px; vertical-align:middle; ">소실율</caption>
- <caption id="caption83" class="cell_1" style="left:5px; top:79px; width:70px; height:23px; vertical-align:middle; ">반감기</caption>
- <caption id="caption84" class="cell_1" style="left:5px; top:103px; width:70px; height:23px; vertical-align:middle; ">R15</caption>
- <line id="line46" class="line_1" style="x1:435px; y1:26px; x2:860px; y2:26px; "/>
- <caption id="caption85" class="tit_2" style="left:440px; top:10px; width:192px; height:13px; ">결과예문</caption>
- <datagrid id="datagrid14" caption="결과코드^결과예문" colwidth="100, 275" dataheight="23" mergecellsfixedrows="bycolrec" rowheader="seq" rowheight="23" rowsep="|" colsep="^" style="left:435px; top:31px; width:425px; height:163px; ">
- <col ref="cd"/>
- <col ref="nm"/>
- <script type="javascript" ev:event="ondblclick">
- <![CDATA[
- //fRsltCodeDBClick();
- ]]>
- </script>
- </datagrid>
- <caption id="caption86" class="cell_1" style="left:146px; top:30px; width:70px; height:23px; vertical-align:middle; ">10분농도</caption>
- <input id="input21" class="input_default" style="left:219px; top:32px; width:65px; height:19px; "/>
- <input id="input22" class="input_default" style="left:360px; top:32px; width:65px; height:19px; "/>
- <caption id="caption87" class="cell_1" style="left:287px; top:30px; width:70px; height:23px; vertical-align:middle; ">15분농도</caption>
- <input id="input23" class="input_default" style="left:78px; top:56px; width:100px; height:19px; "/>
- <input id="input24" class="input_default" style="left:78px; top:80px; width:100px; height:19px; "/>
- <input id="input25" class="input_default" style="left:78px; top:104px; width:100px; height:19px; "/>
- <line id="line50" class="line_3" style="x1:5px; y1:125px; x2:430px; y2:125px; "/>
- <textarea id="textarea18" style="left:5px; top:224px; width:855px; height:396px; "/>
- <line id="line51" class="line_1" style="x1:5px; y1:219px; x2:860px; y2:219px; "/>
- <caption id="caption88" class="tit_2" style="left:10px; top:204px; width:115px; height:13px; ">판독결과</caption>
- </case>
- <case id="case11" style="left:0px; top:0px; width:866px; height:643px; ">
- <line id="line52" class="line_1" style="x1:5px; y1:26px; x2:430px; y2:26px; "/>
- <caption id="caption89" class="tit_2" style="left:10px; top:10px; width:192px; height:14px; ">CBC Result</caption>
- <line id="line53" class="line_1" style="x1:5px; y1:200px; x2:860px; y2:200px; "/>
- <caption id="caption90" class="tit_2" style="left:10px; top:184px; width:192px; height:13px; ">말초도말검사</caption>
- <line id="line54" class="line_1" style="x1:435px; y1:26px; x2:860px; y2:26px; "/>
- <caption id="caption91" class="tit_2" style="left:440px; top:10px; width:192px; height:14px; ">CBC Diff</caption>
- <datagrid id="datagrid17" caption="caption1" colwidth="259" mergecellsfixedrows="bycolrec" rowsep="|" colsep="^" style="left:5px; top:205px; width:280px; height:200px; ">
- <col/>
- </datagrid>
- <datagrid id="datagrid18" caption="caption1" colwidth="263" mergecellsfixedrows="bycolrec" rowsep="|" colsep="^" style="left:290px; top:205px; width:280px; height:200px; ">
- <col/>
- </datagrid>
- <datagrid id="datagrid19" caption="caption1" colwidth="268" mergecellsfixedrows="bycolrec" rowsep="|" colsep="^" style="left:575px; top:205px; width:285px; height:200px; ">
- <col/>
- </datagrid>
- <line id="line55" class="line_1" style="x1:5px; y1:433px; x2:430px; y2:433px; "/>
- <line id="line56" class="line_1" style="x1:435px; y1:433px; x2:860px; y2:433px; "/>
- <textarea id="textarea19" style="left:435px; top:438px; width:425px; height:182px; "/>
- <caption id="caption92" class="tit_2" style="left:10px; top:417px; width:192px; height:13px; ">결과예문</caption>
- <caption id="caption93" class="tit_2" style="left:440px; top:418px; width:115px; height:13px; ">판독결과</caption>
- <datagrid id="datagrid20" caption="결과코드^결과예문" colwidth="100, 275" dataheight="23" mergecellsfixedrows="bycolrec" rowheader="seq" rowheight="23" rowsep="|" colsep="^" style="left:5px; top:438px; width:425px; height:182px; ">
- <col ref="cd"/>
- <col ref="nm"/>
- <script type="javascript" ev:event="ondblclick">
- <![CDATA[
- //fRsltCodeDBClick();
- ]]>
- </script>
- </datagrid>
- <button id="button28" class="btn2_letter4" style="left:795px; top:5px; width:64px; height:19px; background-image:../../../com/commonweb/images/btn2_letter6.gif; ">
- <caption>Diff 수정</caption>
- </button>
- <button id="button29" class="btn2_letter6" style="left:344px; top:5px; width:86px; height:19px; background-image:../../../com/commonweb/images/btn2_letter6.gif; ">
- <caption>연관검사결과</caption>
- </button>
- <datagrid id="datagrid15" caption="^검사코드^검사명^결과^결과^inptrslt" colwidth="0, 80, 174, 50, 50, 0" dataheight="23" mergecellsfixedrows="bycolrec" rowheader="seq" rowheight="23" selectionmode="free" rowsep="|" colsep="^" style="left:5px; top:31px; width:425px; height:144px; ">
- <col ref="chk" type="checkbox" checkvalue="true,false"/>
- <col ref="testcd"/>
- <col ref="tclsscrnnm"/>
- <col ref="bufinptrslt" type="input"/>
- <col ref="reptrslt"/>
- <col ref="inptrslt"/>
- <script type="javascript" ev:event="onkeypress">
- <![CDATA[
- fGridKeyEvent();
- ]]>
- </script>
- <script type="javascript" ev:event="onclick">
- <![CDATA[
- datagrid3Click();
- ]]>
- </script>
- </datagrid>
- <datagrid id="datagrid16" caption="^검사코드^검사명^결과^결과^inptrslt" colwidth="0, 80, 174, 50, 50, 0" dataheight="23" mergecellsfixedrows="bycolrec" rowheader="seq" rowheight="23" selectionmode="free" rowsep="|" colsep="^" style="left:435px; top:31px; width:425px; height:144px; ">
- <col ref="chk" type="checkbox" checkvalue="true,false"/>
- <col ref="testcd"/>
- <col ref="tclsscrnnm"/>
- <col ref="bufinptrslt" type="input"/>
- <col ref="reptrslt"/>
- <col ref="inptrslt"/>
- <script type="javascript" ev:event="onkeypress">
- <![CDATA[
- fGridKeyEvent();
- ]]>
- </script>
- <script type="javascript" ev:event="onclick">
- <![CDATA[
- datagrid3Click();
- ]]>
- </script>
- </datagrid>
- </case>
- <case id="case12">
- <line id="line57" class="line_1" style="x1:5px; y1:26px; x2:425px; y2:26px; "/>
- <caption id="caption94" class="tit_2" style="left:10px; top:10px; width:192px; height:14px; ">세부검사</caption>
- <datagrid id="datagrid22" nodeset="/root/main/testinfo/detailtestinfo" caption="^검사코드^검사명^결과^결과^inptrslt" colwidth="0, 80, 174, 50, 50, 0" dataheight="23" mergecellsfixedrows="bycolrec" rowheader="seq" rowheight="23" selectionmode="free" rowsep="|" colsep="^" style="left:5px; top:31px; width:420px; height:289px; ">
- <col ref="chk" type="checkbox" checkvalue="true,false"/>
- <col ref="testcd"/>
- <col ref="tclsscrnnm"/>
- <col ref="bufinptrslt" type="input"/>
- <col ref="reptrslt"/>
- <col ref="inptrslt"/>
- <script type="javascript" ev:event="onkeypress">
- <![CDATA[
- fGridKeyEvent();
- ]]>
- </script>
- <script type="javascript" ev:event="onclick">
- <![CDATA[
- datagrid3Click();
- ]]>
- </script>
- </datagrid>
- <caption id="caption95" class="tit_2" style="left:435px; top:333px; width:115px; height:13px; ">판독결과</caption>
- <line id="line58" class="line_1" style="x1:430px; y1:348px; x2:860px; y2:348px; "/>
- <textarea id="textarea20" style="left:430px; top:353px; width:430px; height:267px; "/>
- <datagrid id="datagrid21" caption="결과코드^결과예문" colwidth="100, 275" dataheight="23" mergecellsfixedrows="bycolrec" rowheader="seq" rowheight="23" rowsep="|" colsep="^" style="left:5px; top:353px; width:420px; height:267px; ">
- <col ref="cd"/>
- <col ref="nm"/>
- <script type="javascript" ev:event="ondblclick">
- <![CDATA[
- //fRsltCodeDBClick();
- ]]>
- </script>
- </datagrid>
- <line id="line59" class="line_1" style="x1:5px; y1:348px; x2:425px; y2:348px; "/>
- <caption id="caption96" class="tit_2" style="left:10px; top:333px; width:115px; height:13px; ">결과예문</caption>
- <caption id="caption97" class="tit_2" style="left:435px; top:10px; width:192px; height:14px; ">이미지</caption>
- <line id="line60" class="line_1" style="x1:430px; y1:26px; x2:860px; y2:26px; "/>
- <textarea id="textarea21" style="left:430px; top:31px; width:430px; height:289px; "/>
- <button id="button30" class="btn2_letter2" style="left:818px; top:5px; width:42px; height:19px; background-image:../../../com/commonweb/images/btn2_letter6.gif; ">
- <caption>등록</caption>
- </button>
- </case>
- <case id="case13">
- <caption id="caption31" class="tit_2" style="left:10px; top:10px; width:192px; height:14px; ">의뢰내용</caption>
- <line id="line5" class="line_1" style="x1:5px; y1:26px; x2:860px; y2:26px; "/>
- <datagrid id="datagrid3" caption="^검사코드^검사명^결과^결과^inptrslt" colwidth="0, 80, 174, 50, 50, 0" dataheight="23" mergecellsfixedrows="bycolrec" rowheader="seq" rowheight="23" selectionmode="free" rowsep="|" colsep="^" style="left:5px; top:142px; width:425px; height:125px; ">
- <col ref="chk" type="checkbox" checkvalue="true,false"/>
- <col ref="testcd"/>
- <col ref="tclsscrnnm"/>
- <col ref="bufinptrslt" type="input"/>
- <col ref="reptrslt"/>
- <col ref="inptrslt"/>
- <script type="javascript" ev:event="onkeypress">
- <![CDATA[
- fGridKeyEvent();
- ]]>
- </script>
- <script type="javascript" ev:event="onclick">
- <![CDATA[
- datagrid3Click();
- ]]>
- </script>
- </datagrid>
- <line id="line8" class="line_1" style="x1:5px; y1:137px; x2:430px; y2:137px; "/>
- <caption id="caption32" class="tit_2" style="left:10px; top:121px; width:115px; height:13px; ">관련검사</caption>
- <textarea id="textarea1" style="left:5px; top:31px; width:855px; height:80px; "/>
- <datagrid id="datagrid4" nodeset="/root/main/rsltcode" caption="결과코드^결과내용" colwidth="100, 265" dataheight="23" mergecellsfixedrows="bycolrec" rowheader="seq" rowheight="23" rowsep="|" colsep="^" style="left:435px; top:142px; width:425px; height:125px; ">
- <col ref="cd"/>
- <col ref="nm"/>
- <script type="javascript" ev:event="ondblclick">
- <![CDATA[
- //fRsltCodeDBClick();
- ]]>
- </script>
- </datagrid>
- <line id="line61" class="line_1" style="x1:435px; y1:137px; x2:860px; y2:137px; "/>
- <caption id="caption33" class="tit_2" style="left:440px; top:122px; width:105px; height:13px; background-image:../../../com/commonweb/images/tit_bullet2.gif; ">결과예문</caption>
- <line id="line62" class="line_1" style="x1:5px; y1:292px; x2:860px; y2:292px; "/>
- <textarea id="textarea2" style="left:5px; top:297px; width:855px; height:321px; "/>
- <caption id="caption98" class="tit_2" style="left:10px; top:277px; width:115px; height:13px; ">판독결과</caption>
- </case>
- <case id="case14">
- <line id="line63" class="line_1" style="x1:5px; y1:26px; x2:435px; y2:26px; "/>
- <caption id="caption102" class="tit_2" style="left:10px; top:10px; width:115px; height:14px; ">PRA Screening</caption>
- <datagrid id="datagrid26" nodeset="/root/main/pra/prascreening" caption="^결과^grade" colwidth="151, 159, 100" mergecellsfixedrows="bycolrec" rowsep="|" colsep="^" style="left:5px; top:31px; width:430px; height:71px; ">
- <col ref="cd"/>
- <col ref="rslt"/>
- <col ref="grade"/>
- </datagrid>
- <caption id="caption100" class="tit_2" style="left:10px; top:114px; width:133px; height:14px; ">PRA Identification</caption>
- <line id="line64" class="line_1" style="x1:5px; y1:130px; x2:435px; y2:130px; "/>
- <datagrid id="datagrid27" caption="검사항목^결과^%" colwidth="178, 100, 100" mergecellsfixedrows="bycolrec" rowheader="seq" rowsep="|" colsep="^" style="left:5px; top:135px; width:430px; height:285px; ">
- <col ref="cd"/>
- <col ref="rslt"/>
- <col ref="grade"/>
- </datagrid>
- <caption id="caption30" class="tit_2" style="left:10px; top:430px; width:115px; height:13px; ">판독결과</caption>
- <line id="line66" class="line_1" style="x1:5px; y1:445px; x2:435px; y2:445px; "/>
- <textarea id="textarea3" style="left:5px; top:450px; width:430px; height:167px; "/>
- </case>
- <case id="case15">
- <caption id="caption99" class="tit_2" style="left:10px; top:10px; width:115px; height:14px; ">공여자 정보</caption>
- <line id="line67" class="line_1" style="x1:5px; y1:26px; x2:435px; y2:26px; "/>
- <caption id="caption101" class="cell_1" style="left:5px; top:31px; width:80px; height:23px; vertical-align:middle; ">PID</caption>
- <input id="input26" class="input_default" style="left:88px; top:32px; width:80px; height:19px; "/>
- <input id="input27" class="input_default" style="left:254px; top:32px; width:80px; height:19px; "/>
- <caption id="caption103" class="cell_1" style="left:171px; top:31px; width:80px; height:23px; vertical-align:middle; ">성명</caption>
- <button id="button37" class="btn2_letter4" style="left:795px; top:5px; width:64px; height:19px; background-image:../../../com/commonweb/images/btn2_letter6.gif; ">
- <caption>결과조회</caption>
- </button>
- <line id="line68" class="line_1" style="x1:5px; y1:80px; x2:860px; y2:80px; "/>
- <datagrid id="datagrid28" caption="검사항목^결과^titer^참고치" colwidth="221, 151, 174, 261" mergecellsfixedrows="bycolrec" rowheader="seq" rowsep="|" colsep="^" style="left:5px; top:85px; width:855px; height:115px; ">
- <col ref="cd"/>
- <col ref="rslt"/>
- <col/>
- <col ref="grade"/>
- </datagrid>
- <caption id="caption104" class="tit_2" style="left:10px; top:64px; width:133px; height:14px; ">cytotoxicity</caption>
- <line id="line65" class="line_3" style="x1:5px; y1:53px; x2:435px; y2:53px; "/>
- <line id="line69" class="line_1" style="x1:5px; y1:226px; x2:430px; y2:226px; "/>
- <datagrid id="datagrid29" caption="^T cell(MCF)^B cell(MCF)" colwidth="178, 112, 116" mergecellsfixedrows="bycolrec" rowsep="|" colsep="^" style="left:5px; top:231px; width:425px; height:134px; ">
- <col ref="cd"/>
- <col ref="rslt"/>
- <col ref="grade"/>
- </datagrid>
- <caption id="caption105" class="tit_2" style="left:10px; top:210px; width:195px; height:14px; ">flow cytometric crossmatch</caption>
- <line id="line70" class="line_1" style="x1:435px; y1:225px; x2:860px; y2:225px; "/>
- <datagrid id="datagrid30" caption="^T cell(MCF)^B cell(MCF)" colwidth="178, 112, 116" mergecellsfixedrows="bycolrec" rowsep="|" colsep="^" style="left:435px; top:230px; width:425px; height:134px; ">
- <col ref="cd"/>
- <col ref="rslt"/>
- <col ref="grade"/>
- </datagrid>
- <caption id="caption106" class="tit_2" style="left:10px; top:375px; width:195px; height:14px; ">공여자 특이 HLA 항체</caption>
- <line id="line71" class="line_1" style="x1:5px; y1:391px; x2:430px; y2:391px; "/>
- <datagrid id="datagrid31" caption="^결과^s/c ratio" colwidth="108, 112, 183" mergecellsfixedrows="bycolrec" rowsep="|" colsep="^" style="left:5px; top:396px; width:425px; height:77px; ">
- <col ref="cd"/>
- <col ref="rslt"/>
- <col ref="grade"/>
- </datagrid>
- <line id="line72" class="line_1" style="x1:5px; y1:500px; x2:860px; y2:500px; "/>
- <caption id="caption107" class="tit_2" style="left:10px; top:484px; width:115px; height:13px; ">판독결과</caption>
- <textarea id="textarea4" style="left:5px; top:505px; width:855px; height:115px; "/>
- </case>
- <case id="case16">
- <caption id="caption108" class="tit_2" style="left:10px; top:10px; width:115px; height:13px; ">세부검사</caption>
- <line id="line73" class="line_1" style="x1:5px; y1:25px; x2:430px; y2:25px; "/>
- <datagrid id="datagrid32" caption="^검사코드^검사명^결과^결과^inptrslt" colwidth="0, 80, 174, 50, 50, 0" dataheight="23" mergecellsfixedrows="bycolrec" rowheader="seq" rowheight="23" selectionmode="free" rowsep="|" colsep="^" style="left:5px; top:30px; width:425px; height:310px; ">
- <col ref="chk" type="checkbox" checkvalue="true,false"/>
- <col ref="testcd"/>
- <col ref="tclsscrnnm"/>
- <col ref="bufinptrslt" type="input"/>
- <col ref="reptrslt"/>
- <col ref="inptrslt"/>
- <script type="javascript" ev:event="onkeypress">
- <![CDATA[
- //fGridKeyEvent();
- ]]>
- </script>
- <script type="javascript" ev:event="onclick">
- <![CDATA[
- //datagrid3Click();
- ]]>
- </script>
- </datagrid>
- <line id="line74" class="line_1" style="x1:5px; y1:365px; x2:430px; y2:365px; "/>
- <caption id="caption109" class="tit_2" style="left:10px; top:350px; width:115px; height:13px; ">Image</caption>
- <line id="line75" class="line_1" style="x1:435px; y1:25px; x2:860px; y2:25px; "/>
- <datagrid id="datagrid33" caption="^검사코드^검사명^결과^결과^inptrslt" colwidth="0, 80, 174, 50, 50, 0" dataheight="23" mergecellsfixedrows="bycolrec" rowheader="seq" rowheight="23" selectionmode="free" rowsep="|" colsep="^" style="left:435px; top:30px; width:425px; height:310px; ">
- <col ref="chk" type="checkbox" checkvalue="true,false"/>
- <col ref="testcd"/>
- <col ref="tclsscrnnm"/>
- <col ref="bufinptrslt" type="input"/>
- <col ref="reptrslt"/>
- <col ref="inptrslt"/>
- <script type="javascript" ev:event="onkeypress">
- <![CDATA[
- //fGridKeyEvent();
- ]]>
- </script>
- <script type="javascript" ev:event="onclick">
- <![CDATA[
- //datagrid3Click();
- ]]>
- </script>
- </datagrid>
- <button id="button39" class="btn2_letter2" style="left:388px; top:344px; width:42px; height:19px; background-image:../../../com/commonweb/images/btn2_letter6.gif; ">
- <caption>등록</caption>
- </button>
- <datagrid id="datagrid34" caption="결과코드^예문" colwidth="100, 288" dataheight="23" mergecellsfixedrows="bycolrec" rowheader="seq" rowheight="23" rowsep="|" colsep="^" style="left:435px; top:370px; width:425px; height:105px; ">
- <col ref="cd"/>
- <col ref="nm"/>
- <script type="javascript" ev:event="ondblclick">
- <![CDATA[
- //fRsltCodeDBClick();
- ]]>
- </script>
- </datagrid>
- <line id="line76" class="line_1" style="x1:435px; y1:365px; x2:860px; y2:365px; "/>
- <caption id="caption110" class="tit_2" style="left:440px; top:350px; width:110px; height:13px; background-image:../../../com/commonweb/images/tit_bullet2.gif; ">결과예문</caption>
- <line id="line77" class="line_1" style="x1:435px; y1:505px; x2:860px; y2:505px; "/>
- <caption id="caption111" class="tit_2" style="left:440px; top:490px; width:110px; height:13px; background-image:../../../com/commonweb/images/tit_bullet2.gif; ">결과예문</caption>
- <textarea id="textarea22" style="left:5px; top:370px; width:425px; height:250px; "/>
- <textarea id="textarea23" style="left:435px; top:510px; width:425px; height:110px; "/>
- </case>
- <case id="case17">
- <line id="line86" class="line_2" style="x1:5px; y1:149px; x2:430px; y2:149px; "/>
- <line id="line85" class="line_2" style="x1:5px; y1:125px; x2:430px; y2:125px; "/>
- <line id="line83" class="line_2" style="x1:5px; y1:101px; x2:430px; y2:101px; "/>
- <line id="line82" class="line_2" style="x1:5px; y1:77px; x2:430px; y2:77px; "/>
- <line id="line79" class="line_2" style="x1:5px; y1:53px; x2:430px; y2:53px; "/>
- <line id="line78" class="line_1" style="x1:5px; y1:26px; x2:430px; y2:26px; "/>
- <caption id="caption112" class="tit_2" style="left:10px; top:10px; width:115px; height:14px; ">TDM</caption>
- <input id="input28" class="input_default" style="left:88px; top:32px; width:125px; height:19px; "/>
- <caption id="caption113" class="cell_1" style="left:5px; top:31px; width:80px; height:23px; vertical-align:middle; ">의뢰약물이름</caption>
- <caption id="caption114" class="cell_1" style="left:216px; top:31px; width:80px; height:23px; vertical-align:middle; ">의뢰사유</caption>
- <input id="input29" class="input_default" style="left:299px; top:32px; width:131px; height:19px; "/>
- <datagrid id="datagrid35" caption="^검사코드^검사명^결과^결과^inptrslt" colwidth="0, 80, 174, 50, 50, 0" dataheight="23" mergecellsfixedrows="bycolrec" rowheader="seq" rowheight="23" selectionmode="free" rowsep="|" colsep="^" style="left:435px; top:31px; width:425px; height:140px; ">
- <col ref="chk" type="checkbox" checkvalue="true,false"/>
- <col ref="testcd"/>
- <col ref="tclsscrnnm"/>
- <col ref="bufinptrslt" type="input"/>
- <col ref="reptrslt"/>
- <col ref="inptrslt"/>
- <script type="javascript" ev:event="onkeypress">
- <![CDATA[
- fGridKeyEvent();
- ]]>
- </script>
- <script type="javascript" ev:event="onclick">
- <![CDATA[
- datagrid3Click();
- ]]>
- </script>
- </datagrid>
- <caption id="caption115" class="tit_2" style="left:440px; top:10px; width:115px; height:13px; ">연관검사</caption>
- <line id="line80" class="line_1" style="x1:435px; y1:26px; x2:860px; y2:26px; "/>
- <button id="button41" class="btn2_letter4" style="left:796px; top:5px; width:64px; height:19px; ">
- <caption>연관검사</caption>
- </button>
- <caption id="caption116" class="tit_2" style="left:10px; top:455px; width:115px; height:13px; ">판독결과</caption>
- <line id="line81" class="line_1" style="x1:5px; y1:471px; x2:860px; y2:471px; "/>
- <caption id="caption117" class="cell_1" style="left:5px; top:55px; width:80px; height:23px; vertical-align:middle; ">의뢰기타정보</caption>
- <caption id="caption118" class="cell_1" style="left:5px; top:79px; width:80px; height:23px; vertical-align:middle; ">실제채혈시간</caption>
- <input id="input30" class="input_default" style="left:88px; top:56px; width:342px; height:19px; "/>
- <input id="input31" class="input_default" style="left:88px; top:80px; width:342px; height:19px; "/>
- <input id="input32" class="input_default" style="left:68px; top:104px; width:54px; height:19px; "/>
- <caption id="caption119" class="cell_1" style="left:5px; top:103px; width:60px; height:23px; vertical-align:middle; ">키 (㎡)</caption>
- <input id="input33" class="input_default" style="left:188px; top:104px; width:50px; height:19px; "/>
- <caption id="caption120" class="cell_1" style="left:125px; top:103px; width:60px; height:23px; vertical-align:middle; ">키 (㎡)</caption>
- <caption id="caption121" class="cell_1" style="left:241px; top:103px; width:80px; height:23px; vertical-align:middle; ">BMI 계산값</caption>
- <input id="input34" class="input_default" style="left:324px; top:104px; width:106px; height:19px; "/>
- <caption id="caption122" class="cell_1" style="left:5px; top:127px; width:180px; height:23px; vertical-align:middle; ">단순 약물농도 측정값</caption>
- <input id="input35" class="input_default" style="left:188px; top:128px; width:242px; height:19px; "/>
- <caption id="caption123" class="cell_1" style="left:5px; top:151px; width:180px; height:23px; vertical-align:middle; ">약물농도 with 참고범위 측정값</caption>
- <line id="line84" class="line_3" style="x1:5px; y1:173px; x2:430px; y2:173px; "/>
- <input id="input36" class="input_default" style="left:188px; top:152px; width:242px; height:19px; "/>
- <line id="line87" class="line_1" style="x1:5px; y1:201px; x2:860px; y2:201px; "/>
- <caption id="caption124" class="tit_2" style="left:10px; top:185px; width:315px; height:14px; ">약물농도 with 참고범위에 지정되어 있는 정보...</caption>
- <textarea id="textarea24" style="left:5px; top:206px; width:855px; height:89px; "/>
- <datagrid id="datagrid36" caption="판독결과" colwidth="834" mergecellsfixedrows="bycolrec" rowsep="|" colsep="^" style="left:5px; top:327px; width:855px; height:117px; ">
- <col/>
- </datagrid>
- <caption id="caption125" class="tit_2" style="left:10px; top:306px; width:315px; height:14px; ">최근 1주일간 투약력</caption>
- <line id="line88" class="line_1" style="x1:5px; y1:322px; x2:860px; y2:322px; "/>
- <textarea id="textarea25" style="left:5px; top:476px; width:855px; height:144px; "/>
- </case>
- </switch>
- <button id="button4" class="btn_sw" group="tab" selected="true" select.background-image="../../../com/commonweb/images/tab_show.gif" style="left:325px; top:90px; width:84px; height:22px; background-image:../../../com/commonweb/images/tab_hide.gif; ">
- <caption>Bone Marrow</caption>
- <script type="javascript" ev:event="DOMActivate">
- <![CDATA[
- model.toggle("case5");
-
- ]]>
- </script>
- </button>
- <button id="button5" class="btn_sw" group="tab" selected="true" select.background-image="../../../com/commonweb/images/tab_show.gif" style="left:409px; top:90px; width:54px; height:22px; background-image:../../../com/commonweb/images/tab_hide.gif; ">
- <caption>분자유전</caption>
- <script type="javascript" ev:event="DOMActivate">
- <![CDATA[
- model.toggle("case6");
-
- ]]>
- </script>
- </button>
- <button id="button9" class="btn_sw" group="tab" selected="true" select.background-image="../../../com/commonweb/images/tab_show.gif" style="left:463px; top:90px; width:54px; height:22px; background-image:../../../com/commonweb/images/tab_hide.gif; ">
- <caption>세포유전</caption>
- <script type="javascript" ev:event="DOMActivate">
- <![CDATA[
- model.toggle("case7");
-
- ]]>
- </script>
- </button>
- <button id="button10" class="btn_sw" group="tab" selected="true" select.background-image="../../../com/commonweb/images/tab_show.gif" style="left:517px; top:90px; width:134px; height:22px; background-image:../../../com/commonweb/images/tab_hide.gif; ">
- <caption>Immunophenotyping</caption>
- <script type="javascript" ev:event="DOMActivate">
- <![CDATA[
- model.toggle("case8");
-
- ]]>
- </script>
- </button>
- <button id="button17" class="btn_sw" group="tab" selected="true" select.background-image="../../../com/commonweb/images/tab_show.gif" style="left:651px; top:90px; width:119px; height:22px; background-image:../../../com/commonweb/images/tab_hide.gif; ">
- <caption>Osmotic Fragility</caption>
- <script type="javascript" ev:event="DOMActivate">
- <![CDATA[
- model.toggle("case9");
-
- ]]>
- </script>
- </button>
- <button id="button31" class="btn_sw" group="tab" selected="true" select.background-image="../../../com/commonweb/images/tab_show.gif" style="left:770px; top:90px; width:40px; height:22px; background-image:../../../com/commonweb/images/tab_hide.gif; ">
- <caption>ICG</caption>
- <script type="javascript" ev:event="DOMActivate">
- <![CDATA[
- model.toggle("case10");
-
- ]]>
- </script>
- </button>
- <button id="button32" class="btn_sw" group="tab" selected="true" select.background-image="../../../com/commonweb/images/tab_show.gif" style="left:810px; top:90px; width:40px; height:22px; background-image:../../../com/commonweb/images/tab_hide.gif; ">
- <caption>PB</caption>
- <script type="javascript" ev:event="DOMActivate">
- <![CDATA[
- model.toggle("case11");
-
- ]]>
- </script>
- </button>
- <button id="button33" class="btn_sw" group="tab" selected="true" select.background-image="../../../com/commonweb/images/tab_show.gif" style="left:850px; top:90px; width:40px; height:22px; background-image:../../../com/commonweb/images/tab_hide.gif; ">
- <caption>EP</caption>
- <script type="javascript" ev:event="DOMActivate">
- <![CDATA[
- model.toggle("case12");
-
- ]]>
- </script>
- </button>
- <button id="button34" class="btn_sw" group="tab" selected="true" select.background-image="../../../com/commonweb/images/tab_show.gif" style="left:890px; top:90px; width:74px; height:22px; background-image:../../../com/commonweb/images/tab_hide.gif; ">
- <caption>산전기형</caption>
- <script type="javascript" ev:event="DOMActivate">
- <![CDATA[
- model.toggle("case13");
-
- ]]>
- </script>
- </button>
- <button id="button35" class="btn_sw" group="tab" selected="true" select.background-image="../../../com/commonweb/images/tab_show.gif" style="left:964px; top:90px; width:40px; height:22px; background-image:../../../com/commonweb/images/tab_hide.gif; ">
- <caption>PRA</caption>
- <script type="javascript" ev:event="DOMActivate">
- <![CDATA[
- model.toggle("case14");
-
- ]]>
- </script>
- </button>
- <button id="button36" class="btn_sw" group="tab" selected="true" select.background-image="../../../com/commonweb/images/tab_show.gif" style="left:1004px; top:90px; width:64px; height:22px; background-image:../../../com/commonweb/images/tab_hide.gif; ">
- <caption>교차시험</caption>
- <script type="javascript" ev:event="DOMActivate">
- <![CDATA[
- model.toggle("case15");
-
- ]]>
- </script>
- </button>
- <button id="button38" class="btn_sw" group="tab" selected="true" select.background-image="../../../com/commonweb/images/tab_show.gif" style="left:1068px; top:90px; width:67px; height:22px; background-image:../../../com/commonweb/images/tab_hide.gif; ">
- <caption>범용보고서</caption>
- <script type="javascript" ev:event="DOMActivate">
- <![CDATA[
- model.toggle("case16");
-
- ]]>
- </script>
- </button>
- <button id="button40" class="btn_sw" group="tab" selected="true" select.background-image="../../../com/commonweb/images/tab_show.gif" style="left:1135px; top:90px; width:40px; height:22px; background-image:../../../com/commonweb/images/tab_hide.gif; ">
- <caption>TDM</caption>
- <script type="javascript" ev:event="DOMActivate">
- <![CDATA[
- model.toggle("case17");
-
- ]]>
- </script>
- </button>
- </group>
- <group id="group5" scroll="auto" style="left:0px; top:13px; width:1195px; height:27px; ">
- <button id="button1" class="btn3_letter6" style="left:107px; top:3px; width:104px; height:22px; background-image:../../../com/commonweb/images/btn3_letter6.gif; ">
- <caption>통합결과조회</caption>
- <script type="javascript" ev:event="DOMActivate">
- <![CDATA[
-
- modal("SMAER00800 ","","","","","/root/main/testinfo/spcltestinfo/pid","/root/send/data/singdata/srchpid");
-
- ]]>
- </script>
- </button>
- <button id="button2" class="btn3_letter5" style="left:214px; top:3px; width:116px; height:22px; background-image:../../../com/commonweb/images/btn3_letter5.gif; ">
- <caption>의뢰서조회</caption>
- <script type="javascript" ev:event="onclick">
- <![CDATA[
- fRefREQSHT();
- ]]>
- </script>
- </button>
- <button id="button8" class="btn3_letter6" style="left:0px; top:3px; width:96px; height:22px; background-image:../../../com/commonweb/images/btn3_letter6.gif; ">
- <caption>수진이력조회</caption>
- </button>
- <line id="line17" class="line_6" style="x1:0px; y1:25px; x2:1194px; y2:25px; "/>
- <button id="btn_rsltsave" class="btn4_letter4" disable.background-image="../../../com/commonweb/images/dis_btn4_letter4.gif" style="left:866px; top:3px; width:80px; height:22px; background-image:../../../com/commonweb/images/btn4_letter4.gif; ">
- <caption>결과저장</caption>
- <script type="javascript" ev:event="onclick">
- <![CDATA[
- fInsRsltSave("1");
- ]]>
- </script>
- </button>
- <button id="btn_LstRept" class="btn4_letter4" disable.background-image="../../../com/commonweb/images/dis_btn4_letter4.gif" style="left:949px; top:3px; width:82px; height:22px; background-image:../../../com/commonweb/images/btn4_letter4.gif; ">
- <caption>결과보고</caption>
- <script type="javascript" ev:event="onclick">
- <![CDATA[
- fInsRsltSave("4");
- ]]>
- </script>
- </button>
- <button id="btn_cle" class="btn4_letter3" disable.background-image="../../../com/commonweb/images/dis_btn4_letter3.gif" style="left:1127px; top:3px; width:68px; height:22px; background-image:../../../com/commonweb/images/btn4_letter3.gif; ">
- <caption>초기화</caption>
- <script type="javascript" ev:event="onclick">
- <![CDATA[
- fSetClear();
- ]]>
- </script>
- </button>
- <button id="button3" class="btn4_letter5" disable.background-image="../../../com/commonweb/images/dis_btn4_letter5.gif" style="left:1032px; top:3px; width:92px; height:22px; background-image:../../../com/commonweb/images/btn4_letter5.gif; ">
- <caption>전문의확인</caption>
- <script type="javascript" ev:event="onclick">
- <![CDATA[
- fInsRsltSave("6");
- ]]>
- </script>
- </button>
- </group>
- </xhtml:body>
- </xhtml:html>
|