123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860 |
- <?xml version="1.0" encoding="EUC-KR"?>
- <?xml-stylesheet href="../../../com/commonweb/css/common.css" type="text/css" ?>
- <xhtml:html xmlns:xhtml="http://www.w3.org/1999/xhtml" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns="http://www.w3.org/2002/01/xforms" xmlns:ev="http://www.w3.org/2001/xml-events">
- <xhtml:head>
- <xhtml:title>Untitle</xhtml:title>
- <model id="model1">
- <instance id="instance1">
- <root xmlns="">
- <main>
- <wardrecinfo>
- <pid/>
- <nbabynm/>
- <partrtndd/>
- <partrtndt/>
- <sex/>
- <weig/>
- <weigunit>1</weigunit>
- <mthernm/>
- <mtherage/>
- <mtherbtype/>
- <mtherbrh/>
- <mthertel/>
- <mtherpid/>
- <mtherindd/>
- <fthernm/>
- <ftherage/>
- <ftherbtype/>
- <ftherbrh/>
- <fthertel/>
- <ftherinfcinfoyn/>
- <ftherinfcinfo/>
- <ftherinfcinfonm/>
- <parityg/>
- <parityp/>
- <paritya/>
- <paritysa/>
- <parityaa/>
- <parityl/>
- <famytree>
- <existyn/>
- </famytree>
- <inrminfo>
- <inrm>
- <arvdd/>
- <arvdt/>
- <inrmtype/>
- <inacompst/>
- <inrmtypenm/>
- <inacompstnm/>
- </inrm>
- </inrminfo>
- <initcareinfo>
- <initcare>
- <initcareinclyn/>
- <dembztcareyn>1</dembztcareyn>
- <dembztcarecnts/>
- <oxydrugyn>1</oxydrugyn>
- <oxydrugcnts/>
- <vitaminyn>1</vitaminyn>
- <vitamincnts/>
- <eyecareyn>1</eyecareyn>
- <eyecarecnts/>
- <suctdrgeyn>1</suctdrgeyn>
- <suctdrgevol/>
- <suctdrgemodal/>
- <suctdrgecolor/>
- </initcare>
- </initcareinfo>
- <basebdinfoinclyn/>
- <lowbp/>
- <highbp/>
- <pulse/>
- <breth/>
- <bdtp/>
- <bdtppartcd/>
- <bdht/>
- <bdwt/>
- <headgirth/>
- <chestgirth/>
- <bpinspyn/>
- <pulseinspyn/>
- <brethinspyn/>
- <bdtpinspyn/>
- <bdhtinspyn/>
- <bdwtinspyn/>
- <headgirthinspyn/>
- <chestgirthinspyn/>
- <infcsickyn/>
- <infcsicknm/>
- <infcsickspec/>
- <prgweekcnt/>
- <prgdaycnt/>
- <hptsvacninfo>
- <hptsvacn>
- <hptsvacninclyn/>
- <hptsvacnyn>02</hptsvacnyn>
- <hptsvacnnm/>
- <hptsvacntim>1</hptsvacntim>
- <hptsvacndrugno/>
- <hptsvacninocpart/>
- <hptsvacnyn2>02</hptsvacnyn2>
- <hptsvacnnm2/>
- <hptsvacndrugno2/>
- <hptsvacninocpart2/>
- </hptsvacn>
- </hptsvacninfo>
- <maternalinfo>
- <maternal>
- <maternalinclyn/>
- <maternalkind/>
- </maternal>
- </maternalinfo>
- <spcffact>
- <spcf>
- <spcffactinclyn/>
- <spcffactdetl/>
- </spcf>
- </spcffact>
- <gesage/>
- <dlivkindcd/>
- <dlivflag/>
- <dlivplcecd/>
- <dlivplceetcspec/>
- <apgarscore1/>
- <apgarscore5/>
- <etcbrthinfo>
- <etcbrth>
- <promyn/>
- <promdd/>
- <promtm/>
- <antibiodrugyn/>
- <urinecd>N</urinecd>
- <urinespec/>
- <stoolcd>1</stoolcd>
- <stool/>
- <mecnmcolrayn>1</mecnmcolrayn>
- <mecnmcolracd/>
- <nuchalcordcd>N</nuchalcordcd>
- <nuchalcordpart/>
- <nuchalcordspec/>
- <nuchalcordtime/>
- <trueknotyn/>
- <trueknotspec/>
- <guiddlivyn>1</guiddlivyn>
- <guiddlivspec/>
- <oxygenabsopcd>1</oxygenabsopcd>
- <oxygenabsopspec/>
- <cardresusyn>1</cardresusyn>
- <cardresuscd/>
- <cardresusspec/>
- <remk/>
- <fstlctyn/>
- <lctrejtresnspec/>
- <dlivpredrugspec/>
- <lctdd/>
- <lcttm/>
- </etcbrth>
- </etcbrthinfo>
- <apgarscoreinfo>
- <scorelist>
- <scoreitem>심박수</scoreitem>
- <score0>없음</score0>
- <score1>100회/분이하</score1>
- <score2>100회/분이상</score2>
- <minute1/>
- <minute5/>
- </scorelist>
- <scorelist>
- <scoreitem>호흡상태</scoreitem>
- <score0>없음</score0>
- <score1>느리고 불규칙</score1>
- <score2>잘 울음</score2>
- <minute1/>
- <minute5/>
- </scorelist>
- <scorelist>
- <scoreitem>근긴장도</scoreitem>
- <score0>늘어짐</score0>
- <score1>사지를 약간 구부림</score1>
- <score2>잘 움직임</score2>
- <minute1/>
- <minute5/>
- </scorelist>
- <scorelist>
- <scoreitem>자극반응</scoreitem>
- <score0>없음</score0>
- <score1>얼굴을 찡그림</score1>
- <score2>기침, 재채기</score2>
- <minute1/>
- <minute5/>
- </scorelist>
- <scorelist>
- <scoreitem>피부색</scoreitem>
- <score0>청색 또는 창백</score0>
- <score1>사지창백, 몸은 분홍</score1>
- <score2>완전분홍</score2>
- <minute1/>
- <minute5/>
- </scorelist>
- <scorelist>
- <scoreitem>총점</scoreitem>
- <score0>총점</score0>
- <score1>총점</score1>
- <score2>총점</score2>
- <minute1/>
- <minute5/>
- </scorelist>
- </apgarscoreinfo>
- </wardrecinfo>
- <init/>
- </main>
- </root>
- </instance>
- <script type="javascript">
- <![CDATA[
- var param ="";
- function fInitEventInNBabyInfo() {
-
- if(model.getValue("/root/main/wardrecinfo/initcareinfo/initcare/initcareinclyn") == "1") {
- chk_initcareinclyn.dispatch("xforms-value-changed");
- } else {
- rdo_dembztcareyn.dispatch("xforms-value-changed");
- rdo_oxydrugyn.dispatch("xforms-value-changed");
- rdo_vitaminyn.dispatch("xforms-value-changed");
- rdo_eyecareyn.dispatch("xforms-value-changed");
- rdo_suctdrgeyn.dispatch("xforms-value-changed");
- }
-
- chk_basebdinfoinclyn.dispatch("xforms-value-changed");
- if (model.getValue("/root/main/wardrecinfo/hptsvacninfo/hptsvacn/hptsvacninclyn") == "1"){
- chk_hptsvacninclyn.dispatch("xforms-value-changed");
- }else{
- rdo_hptsvacnyn.dispatch("xforms-value-changed");
- }
- if (model.getValue("/root/main/wardrecinfo/infcsickyn") == "1"){
- chk_maternalinclyn.dispatch("xforms-value-changed");
- }else{
- chk_infcsicknm.dispatch("xforms-value-changed");
- }
- rdo_hptsvacnyn2.dispatch("xforms-value-changed");
- chk_spcffactinclyn.dispatch("xforms-value-changed");
-
- //Apgar Score 총점 머지
- grd_aslist.mergeByFree(6,0,6,3);
- grd_aslist.cellStyle("text-align",1,0,5,3) = "left";
-
- //신체정보 측정불가시 측정불가 체크표시 추가_20090310_SMY
- chk_bpinspyn.dispatch("xforms-value-changed");
- chk_pulseinspyn.dispatch("xforms-value-changed");
- chk_brethinspyn.dispatch("xforms-value-changed");
- chk_bdtpinspyn.dispatch("xforms-value-changed");
- chk_bdhtinspyn.dispatch("xforms-value-changed");
- chk_bdwtinspyn.dispatch("xforms-value-changed");
- chk_headgirthinspyn.dispatch("xforms-value-changed");
- chk_chestgirthinspyn.dispatch("xforms-value-changed");
- }
-
- //측정불가 코드값입력 blocking_20090310_SMY
- function fChkNoneInspCode(IptPath, IptID){
- if(model.getValue(IptPath) == NoneInspCode){
- messageBox(NoneInspCode + "은 입력할 수 없는 값입니다.", "I");
- model.resetInstanceNode(IptPath);
- model.setFocus(IptID);
- model.refresh();
- return;
- }
- }
-
- ]]>
- </script>
- </model>
- <script type="javascript" src="../../../com/commonweb/js/common.js"/>
- <script type="javascript" src="../../../com/commonweb/js/stringHelper"/>
- </xhtml:head>
- <xhtml:body pagewidth="1194" pageheight="673" style="margin-left:0; margin-top:0; margin-right:0; margin-bottom:0; ">
- <caption id="caption19" class="cell_1" style="left:404px; top:171px; width:60px; height:23px; ">.... 호흡</caption>
- <caption id="caption18" class="cell_1" style="left:404px; top:147px; width:60px; height:23px; ">.... 맥박</caption>
- <caption id="caption17" class="cell_1" style="left:404px; top:123px; width:60px; height:23px; ">.... 혈압</caption>
- <select id="chk_infcsicknm" ref="/root/main/wardrecinfo/infcsicknm" disabled="true" navindex="57" overflow="visible" appearance="full" cellspacing="15" cols="5" sep="," vcellspacing="10" style="left:404px; top:373px; width:350px; height:50px; border-style:none; ">
- <choices>
- <item>
- <label>HBs Ag</label>
- <value>1</value>
- </item>
- <item>
- <label>HCV Ab</label>
- <value>2</value>
- </item>
- <item>
- <label>VDRL</label>
- <value>3</value>
- </item>
- <item>
- <label>HIV</label>
- <value>4</value>
- </item>
- <item>
- <label>active TB</label>
- <value>5</value>
- </item>
- <item>
- <label>기타</label>
- <value>6</value>
- </item>
- </choices>
- </select>
- <line id="line34" class="line_1" style="x1:404px; y1:118px; x2:755px; y2:118px; "/>
- <caption id="caption23" class="tit_2" style="left:767px; top:6px; width:108px; height:13px; ">신생아출생정보</caption>
- <select id="chk_basebdinfoinclyn" ref="/root/main/wardrecinfo/basebdinfoinclyn" navindex="38" visibility="hidden" overflow="visible" appearance="full" style="left:569px; top:100px; width:70px; height:15px; border-style:none; ">
- <choices>
- <item>
- <label>해당없음</label>
- <value>1</value>
- </item>
- </choices>
- <script type="javascript" ev:event="xforms-value-changed">
- <![CDATA[
- if(model.getValue("/root/main/wardrecinfo/basebdinfoinclyn")=="1") {
-
- var rtn = "";
-
- rtn = fSetStatus();
-
- if(rtn == "6") {
-
- ipt_lowbp.disabled = true;
- ipt_highbp.disabled = true;
- ipt_pulse.disabled = true;
- ipt_breth.disabled = true;
- ipt_bdtp.disabled = true;
- cmb_bdtp.disabled = true;
- ipt_bdht.disabled = true;
- ipt_bdwt.disabled = true;
- ipt_headgirth.disabled = true;
- ipt_chestgirth.disabled = true;
-
- model.resetInstanceNode("/root/main/wardrecinfo/lowbp");
- model.resetInstanceNode("/root/main/wardrecinfo/highbp");
- model.resetInstanceNode("/root/main/wardrecinfo/pulse");
- model.resetInstanceNode("/root/main/wardrecinfo/breth");
- model.resetInstanceNode("/root/main/wardrecinfo/bdtp");
- model.resetInstanceNode("/root/main/wardrecinfo/bdtppartcd");
- model.resetInstanceNode("/root/main/wardrecinfo/bdht");
- model.resetInstanceNode("/root/main/wardrecinfo/bdwt");
- model.resetInstanceNode("/root/main/wardrecinfo/headgirth");
- model.resetInstanceNode("/root/main/wardrecinfo/chestgirth");
-
- } else {
- model.setValue("/root/main/wardrecinfo/basebdinfoinclyn", "");
- chk_basebdinfoinclyn.refresh();
- return;
- }
- } else {
- ipt_lowbp.disabled = false;
- ipt_highbp.disabled = false;
- ipt_pulse.disabled = false;
- ipt_breth.disabled = false;
- ipt_bdtp.disabled = false;
- cmb_bdtp.disabled = false;
- ipt_bdht.disabled = false;
- ipt_bdwt.disabled = false;
- ipt_headgirth.disabled = false;
- ipt_chestgirth.disabled = false;
- }
- ipt_lowbp.refresh();
- ipt_highbp.refresh();
- ipt_pulse.refresh();
- ipt_breth.refresh();
- ipt_bdtp.refresh();
- cmb_bdtp.refresh();
- ipt_bdht.refresh();
- ipt_bdwt.refresh();
- ipt_headgirth.refresh();
- ipt_chestgirth.refresh();
-
- ]]>
- </script>
- <script type="javascript" ev:event="xforms-select">
- <![CDATA[
- status = "click";
- ]]>
- </script>
- </select>
- <line id="line19" class="line_1" style="x1:762px; y1:21px; x2:1189px; y2:21px; "/>
- <caption id="caption39" class="tit_2" style="left:409px; top:103px; width:104px; height:13px; ">기본 신체정보</caption>
- <line id="line1" class="line_1" style="x1:5px; y1:21px; x2:396px; y2:21px; "/>
- <caption id="caption1" class="tit_2" style="left:10px; top:6px; width:108px; height:13px; ">신생아기본정보</caption>
- <line id="line2" class="line_2" style="x1:5px; y1:48px; x2:396px; y2:48px; "/>
- <caption id="caption2" class="cell_1" style="left:5px; top:26px; width:70px; height:23px; ">등록번호</caption>
- <line id="line3" class="line_2" style="x1:5px; y1:72px; x2:396px; y2:72px; "/>
- <caption id="caption3" class="cell_1" style="left:5px; top:50px; width:70px; height:23px; ">분만일시</caption>
- <caption id="caption4" class="cell_1" style="left:5px; top:74px; width:70px; height:23px; ">출생시체중</caption>
- <caption id="caption7" class="tit_2" style="left:10px; top:105px; width:104px; height:13px; ">가족사항</caption>
- <line id="line6" class="line_1" style="x1:5px; y1:120px; x2:396px; y2:120px; "/>
- <caption id="caption8" class="tit_2" style="left:10px; top:370px; width:104px; height:13px; ">가계도</caption>
- <line id="line7" class="line_1" style="x1:5px; y1:385px; x2:396px; y2:385px; "/>
- <caption id="caption9" class="cell_1" style="left:5px; top:390px; width:100px; height:23px; ">존재유무</caption>
- <input id="opt_existyn" ref="/root/main/wardrecinfo/famytree/existyn" disabled="true" navindex="23" style="left:108px; top:391px; width:105px; height:19px; "/>
- <line id="line8" class="line_3" style="x1:5px; y1:412px; x2:396px; y2:412px; "/>
- <caption id="caption10" class="tit_2" style="left:409px; top:6px; width:104px; height:13px; ">입실정보</caption>
- <button id="button40" class="btn2_letter4" navindex="21" style="left:216px; top:391px; width:64px; height:19px; ">
- <caption>끌어오기</caption>
- <script type="javascript" ev:event="DOMActivate">
- <![CDATA[
- setParameter("SPMMR04711_shape", model.getValue("root/properties/parameters/SPMMR04711_shape/SPMMR04711_shapevalue"));
- modal("SPMMR04700", 1,10, 10, "SPMMR04700" ,"/root/temp/strmeta", "/root/send");
-
- if(model.getValue("root/properties/parameters/SPMMR04711_shape/SPMMR04711_shapevalue") != "") {
- model.setValue("/root/main/wardrecinfo/famytree/existyn", "Y");
- opt_existyn.refresh();
- } else {
- model.setValue("/root/main/wardrecinfo/famytree/existyn", "");
- opt_existyn.refresh();
- }
- ]]>
- </script>
- </button>
- <select1 id="cmb_inrmtype" ref="/root/main/wardrecinfo/inrminfo/inrm/inrmtype" class="combo_default" navindex="38" appearance="minimal" style="left:507px; top:51px; width:132px; height:19px; ">
- <choices>
- <item>
- <label>cradle</label>
- <value>01</value>
- </item>
- <item>
- <label>transport incubator</label>
- <value>02</value>
- </item>
- <item>
- <label>기타</label>
- <value>03</value>
- </item>
- </choices>
- <script type="javascript" ev:event="xforms-value-changed">
- <![CDATA[
- if(model.getValue("/root/main/wardrecinfo/inrminfo/inrm/inrmtype") == "03") {
- ipt_inrmtypenm.visible = true;
- } else {
- ipt_inrmtypenm.visible = false;
- model.resetInstanceNode("/root/main/wardrecinfo/inrminfo/inrm/inrmtypenm")
- }
- ]]>
- </script>
- </select1>
- <select1 id="cmb_inacompst" ref="/root/main/wardrecinfo/inrminfo/inrm/inacompst" class="combo_default" navindex="40" appearance="minimal" style="left:507px; top:75px; width:132px; height:19px; ">
- <choices>
- <item>
- <label>분만실간호사</label>
- <value>01</value>
- </item>
- <item>
- <label>가족</label>
- <value>02</value>
- </item>
- <item>
- <label>기타</label>
- <value>03</value>
- </item>
- </choices>
- <script type="javascript" ev:event="xforms-value-changed">
- <![CDATA[
- if(model.getValue("/root/main/wardrecinfo/inrminfo/inrm/inacompst") == "03") {
- ipt_inacompstnm.visible = true;
- } else {
- ipt_inacompstnm.visible = false;
- model.resetInstanceNode("/root/main/wardrecinfo/inrminfo/inrm/inacompstnm");
- ipt_inacompstnm.refresh();
- }
- ]]>
- </script>
- </select1>
- <caption id="caption14" class="cell_1" style="left:404px; top:74px; width:100px; height:23px; ">동반자</caption>
- <line id="line9" class="line_1" style="x1:404px; y1:21px; x2:755px; y2:21px; "/>
- <input id="ipt_arvdt" ref="/root/main/wardrecinfo/inrminfo/inrm/arvdt" navindex="37" maxlength="4" format="hh:nn" style="left:642px; top:27px; width:113px; height:19px; text-align:center; "/>
- <line id="line10" class="line_2" style="x1:404px; y1:48px; x2:755px; y2:48px; "/>
- <line id="line12" class="line_2" style="x1:404px; y1:72px; x2:755px; y2:72px; "/>
- <line id="line13" class="line_3" style="x1:404px; y1:96px; x2:755px; y2:96px; "/>
- <caption id="caption11" class="cell_1" style="left:404px; top:26px; width:100px; height:23px; ">도착시간</caption>
- <caption id="caption13" class="cell_1" style="left:404px; top:50px; width:100px; height:23px; ">입실형태</caption>
- <input id="ipt_arvdd" ref="/root/main/wardrecinfo/inrminfo/inrm/arvdd" class="input_default" navindex="36" inputtype="date" maxlength="8" style="left:507px; top:27px; width:132px; height:19px; "/>
- <line id="line15" class="line_2" style="x1:404px; y1:145px; x2:755px; y2:145px; "/>
- <line id="line20" class="line_2" style="x1:404px; y1:169px; x2:755px; y2:169px; "/>
- <line id="line21" class="line_2" style="x1:404px; y1:193px; x2:755px; y2:193px; "/>
- <caption id="caption21" class="cell_1" style="left:601px; top:195px; width:76px; height:23px; ">.... 가슴둘레</caption>
- <caption id="caption22" class="cell_1" style="left:601px; top:123px; width:76px; height:23px; ">.... 신장</caption>
- <caption id="caption24" class="cell_1" style="left:601px; top:147px; width:76px; height:23px; ">.... 체중</caption>
- <caption id="caption25" class="cell_1" style="left:601px; top:171px; width:76px; height:23px; ">.... 머리둘레</caption>
- <line id="line29" class="line_3" style="x1:404px; y1:217px; x2:755px; y2:217px; "/>
- <input id="ipt_bdht" ref="/root/main/wardrecinfo/bdht" navindex="48" maxlength="5" format="9#.#" style="left:679px; top:124px; width:55px; height:19px; text-align:center; ">
- <script type="javascript" ev:event="xforms-value-changed">
- <![CDATA[
- fChkNoneInspCode("/root/main/wardrecinfo/bdht", "ipt_bdht");
- ]]>
- </script>
- </input>
- <input id="ipt_bdwt" ref="/root/main/wardrecinfo/bdwt" navindex="49" maxlength="5" format="9#.#" style="left:679px; top:148px; width:55px; height:19px; text-align:center; ">
- <script type="javascript" ev:event="xforms-value-changed">
- <![CDATA[
- fChkNoneInspCode("/root/main/wardrecinfo/bdwt", "ipt_bdwt");
- ]]>
- </script>
- </input>
- <caption id="caption26" style="left:561px; top:124px; width:39px; height:19px; text-align:center; ">mmHg</caption>
- <caption id="caption28" style="left:562px; top:149px; width:35px; height:19px; text-align:center; ">회/분</caption>
- <caption id="caption30" style="left:562px; top:173px; width:35px; height:19px; text-align:center; ">회/분</caption>
- <caption id="caption31" style="left:732px; top:124px; width:28px; height:19px; text-align:center; ">Cm</caption>
- <caption id="caption36" style="left:732px; top:148px; width:28px; height:19px; text-align:center; ">Kg</caption>
- <caption id="caption38" style="left:558px; top:196px; width:33px; height:19px; text-align:center; ">℃</caption>
- <line id="line31" class="line_2" style="x1:404px; y1:292px; x2:755px; y2:292px; "/>
- <line id="line32" class="line_2" style="x1:404px; y1:316px; x2:755px; y2:316px; "/>
- <line id="line33" class="line_1" style="x1:404px; y1:241px; x2:755px; y2:241px; "/>
- <caption id="caption40" class="cell_1" style="left:404px; top:318px; width:100px; height:23px; ">접종부위</caption>
- <line id="line35" class="line_2" style="x1:404px; y1:268px; x2:755px; y2:268px; "/>
- <line id="line36" class="line_3" style="x1:404px; y1:340px; x2:755px; y2:340px; "/>
- <caption id="caption41" class="cell_1" style="left:404px; top:246px; width:100px; height:23px; ">간염예방접종</caption>
- <caption id="caption42" class="tit_2" style="left:409px; top:226px; width:104px; height:13px; ">간염예방접종</caption>
- <caption id="caption43" class="cell_1" style="left:404px; top:270px; width:100px; height:23px; ">약품명</caption>
- <caption id="caption44" class="cell_1" style="left:404px; top:294px; width:100px; height:23px; ">약품번호</caption>
- <select1 id="rdo_hptsvacnyn" ref="/root/main/wardrecinfo/hptsvacninfo/hptsvacn/hptsvacnyn" navindex="52" appearance="full" cellspacing="15" cols="2" overflow="visible" style="left:506px; top:250px; width:75px; height:13px; border-style:none; ">
- <choices>
- <item>
- <label>무</label>
- <value>01</value>
- </item>
- <item>
- <label>유</label>
- <value>02</value>
- </item>
- </choices>
- <script type="javascript" ev:event="xforms-value-changed">
- <![CDATA[
- if(model.getValue("/root/main/wardrecinfo/hptsvacninfo/hptsvacn/hptsvacnyn") == "01") {
- ipt_hptsvacnnm.disabled = true;
- cmb_hptsvacntim.disabled = true;
- ipt_hptsvacndrugno.disabled = true;
- cmb_hptsvacninocpart.disabled = true;
-
- model.resetInstanceNode("/root/main/wardrecinfo/hptsvacninfo/hptsvacn/hptsvacnnm");
- model.resetInstanceNode("/root/main/wardrecinfo/hptsvacninfo/hptsvacn/hptsvacntim");
- model.resetInstanceNode("/root/main/wardrecinfo/hptsvacninfo/hptsvacn/hptsvacndrugno");
- model.resetInstanceNode("/root/main/wardrecinfo/hptsvacninfo/hptsvacn/hptsvacninocpart");
-
- } else {
- ipt_hptsvacnnm.disabled = false;
- cmb_hptsvacntim.disabled = false;
- ipt_hptsvacndrugno.disabled = false;
- cmb_hptsvacninocpart.disabled = false;
-
- }
- ipt_hptsvacnnm.refresh();
- cmb_hptsvacntim.refresh();
- ipt_hptsvacndrugno.refresh();
- cmb_hptsvacninocpart.refresh();
- ]]>
- </script>
- </select1>
- <line id="line38" class="line_1" style="x1:404px; y1:367px; x2:755px; y2:367px; "/>
- <caption id="caption50" class="tit_2" style="left:409px; top:352px; width:98px; height:13px; ">감염성 질환</caption>
- <line id="line41" class="line_1" style="x1:404px; y1:575px; x2:755px; y2:575px; "/>
- <select id="chk_spcffactinclyn" ref="/root/main/wardrecinfo/spcffact/spcf/spcffactinclyn" navindex="64" overflow="visible" appearance="full" style="left:681px; top:558px; width:70px; height:15px; border-style:none; ">
- <choices>
- <item>
- <label>해당없음</label>
- <value>1</value>
- </item>
- </choices>
- <script type="javascript" ev:event="xforms-value-changed">
- <![CDATA[
- if(model.getValue("/root/main/wardrecinfo/spcffact/spcf/spcffactinclyn")=="1") {
-
- var rtn = "";
-
- rtn = fSetStatus();
-
- if(rtn == "6") {
- tar_spcffact.disabled = true;
- model.resetInstanceNode("/root/main/wardrecinfo/spcffact/spcf/spcffactdetl");
- }
- } else {
- tar_spcffact.disabled = false;
-
- }
- tar_spcffact.refresh();
- ]]>
- </script>
- <script type="javascript" ev:event="xforms-select">
- <![CDATA[
- status = "click";
- ]]>
- </script>
- </select>
- <caption id="caption53" class="tit_2" style="left:407px; top:560px; width:104px; height:13px; ">특이사항</caption>
- <textarea id="tar_spcffact" ref="/root/main/wardrecinfo/spcffact/spcf/spcffactdetl" navindex="63" scroll="autovscroll" style="left:404px; top:580px; width:351px; height:85px; "/>
- <line id="line4" class="line_3" style="x1:5px; y1:96px; x2:396px; y2:96px; "/>
- <input id="ipt_pid" ref="/root/main/wardrecinfo/pid" disabled="true" navindex="1" editable="false" maxlength="10" style="left:78px; top:27px; width:124px; height:19px; "/>
- <caption id="caption5" class="cell_1" style="left:205px; top:26px; width:75px; height:23px; ">신생아이름</caption>
- <caption id="caption54" class="cell_1" style="left:205px; top:50px; width:75px; height:23px; ">성별</caption>
- <select1 id="cmb_sex" ref="/root/main/wardrecinfo/sex" class="combo_default" disabled="true" navindex="5" appearance="minimal" style="left:283px; top:51px; width:113px; height:19px; ">
- <choices>
- <item>
- <label>M</label>
- <value>M</value>
- </item>
- <item>
- <label>F</label>
- <value>F</value>
- </item>
- <item>
- <label>기타</label>
- <value>E</value>
- </item>
- </choices>
- </select1>
- <input id="ipt_nbabynm" ref="/root/main/wardrecinfo/nbabynm" disabled="true" navindex="2" editable="false" style="left:283px; top:27px; width:113px; height:19px; "/>
- <line id="line5" class="line_2" style="x1:5px; y1:171px; x2:396px; y2:171px; "/>
- <line id="line42" class="line_2" style="x1:5px; y1:195px; x2:396px; y2:195px; "/>
- <line id="line44" class="line_2" style="x1:5px; y1:147px; x2:396px; y2:147px; "/>
- <caption id="caption55" class="cell_1" style="left:202px; top:125px; width:194px; height:23px; ">아빠정보</caption>
- <caption id="caption6" class="cell_1" style="left:5px; top:125px; width:194px; height:23px; ">엄마정보</caption>
- <caption id="cap_mthernm" class="cell_1" style="left:5px; top:149px; width:80px; height:23px; ">이름</caption>
- <caption id="cap_mtherage" class="cell_1" style="left:5px; top:173px; width:80px; height:23px; ">나이</caption>
- <line id="line45" class="line_2" style="x1:5px; y1:243px; x2:396px; y2:243px; "/>
- <caption id="cap_mthertel" class="cell_1" style="left:5px; top:221px; width:80px; height:23px; ">연락처</caption>
- <line id="line46" class="line_2" style="x1:5px; y1:219px; x2:396px; y2:219px; "/>
- <caption id="cap_mtherbtype" class="cell_1" style="left:5px; top:197px; width:80px; height:23px; ">혈액형</caption>
- <caption id="caption61" class="cell_1" style="left:202px; top:221px; width:80px; height:23px; ">연락처</caption>
- <caption id="caption62" class="cell_1" style="left:202px; top:149px; width:80px; height:23px; ">이름</caption>
- <caption id="caption63" class="cell_1" style="left:202px; top:173px; width:80px; height:23px; ">나이</caption>
- <caption id="caption64" class="cell_1" style="left:202px; top:197px; width:80px; height:23px; ">혈액형</caption>
- <input id="ipt_mthernm" ref="/root/main/wardrecinfo/mthernm" disabled="true" navindex="8" style="left:88px; top:150px; width:111px; height:19px; "/>
- <input id="ipt_mtherage" ref="/root/main/wardrecinfo/mtherage" disabled="true" navindex="9" maxlength="3" style="left:88px; top:174px; width:111px; height:19px; "/>
- <input id="ipt_ftherage" ref="/root/main/wardrecinfo/ftherage" disabled="true" navindex="16" maxlength="3" style="left:285px; top:174px; width:111px; height:19px; "/>
- <input id="ipt_fthernm" ref="/root/main/wardrecinfo/fthernm" disabled="true" navindex="15" style="left:285px; top:150px; width:111px; height:19px; "/>
- <select1 id="cmb_mtherbtype" ref="/root/main/wardrecinfo/mtherbtype" class="combo_default" disabled="true" navindex="10" appearance="minimal" style="left:88px; top:198px; width:111px; height:19px; ">
- <choices>
- <itemset nodeset="/root/init/mlist/M0376">
- <label ref="cdnm"/>
- <value ref="cdid"/>
- </itemset>
- </choices>
- </select1>
- <select1 id="cmb_ftherbtype" ref="/root/main/wardrecinfo/ftherbtype" class="combo_default" disabled="true" navindex="17" appearance="minimal" style="left:285px; top:198px; width:111px; height:19px; ">
- <choices>
- <itemset nodeset="/root/init/mlist/M0376">
- <label ref="cdnm"/>
- <value ref="cdid"/>
- </itemset>
- </choices>
- </select1>
- <input id="ipt_mthertel" ref="/root/main/wardrecinfo/mthertel" disabled="true" navindex="12" maxlength="13" style="left:88px; top:222px; width:111px; height:19px; "/>
- <input id="ipt_fthertel" ref="/root/main/wardrecinfo/fthertel" disabled="true" navindex="19" maxlength="13" style="left:285px; top:222px; width:111px; height:19px; "/>
- <line id="line11" class="line_2" style="x1:5px; y1:267px; x2:396px; y2:267px; "/>
- <caption id="cap_mtherpid" class="cell_1" style="left:5px; top:245px; width:80px; height:23px; ">등록번호</caption>
- <line id="line43" class="line_3" style="x1:5px; y1:358px; x2:396px; y2:358px; "/>
- <input id="ipt_mtherindd" ref="/root/main/wardrecinfo/mtherindd" disabled="true" navindex="14" inputtype="date" maxlength="8" style="left:88px; top:270px; width:111px; height:19px; "/>
- <input id="ipt_mtherpid" ref="/root/main/wardrecinfo/mtherpid" disabled="true" navindex="13" maxlength="10" style="left:88px; top:246px; width:111px; height:19px; "/>
- <line id="line14" class="line_1" style="x1:6px; y1:441px; x2:397px; y2:441px; "/>
- <caption id="caption15" class="tit_2" style="left:11px; top:426px; width:104px; height:13px; ">초기간호</caption>
- <line id="line16" class="line_2" style="x1:6px; y1:468px; x2:397px; y2:468px; "/>
- <line id="line17" class="line_2" style="x1:6px; y1:594px; x2:397px; y2:594px; "/>
- <line id="line18" class="line_2" style="x1:6px; y1:569px; x2:397px; y2:569px; "/>
- <line id="line30" class="line_2" style="x1:6px; y1:519px; x2:397px; y2:519px; "/>
- <line id="line47" class="line_2" style="x1:171px; y1:618px; x2:397px; y2:618px; "/>
- <line id="line48" class="line_2" style="x1:171px; y1:642px; x2:397px; y2:642px; "/>
- <caption id="caption65" class="cell_1" style="left:6px; top:520px; width:80px; height:48px; ">Vitamin K1</caption>
- <caption id="caption67" class="cell_1" style="left:6px; top:446px; width:80px; height:23px; ">제대간호</caption>
- <caption id="caption68" class="cell_1" style="left:6px; top:470px; width:80px; height:48px; ">눈간호</caption>
- <caption id="caption16" class="cell_1" style="left:6px; top:595px; width:80px; height:71px; ">흡인/배액</caption>
- <caption id="caption29" class="cell_1" style="left:6px; top:570px; width:80px; height:23px; ">산소투여</caption>
- <line id="line49" class="line_3" style="x1:6px; y1:666px; x2:397px; y2:666px; "/>
- <select1 id="rdo_dembztcareyn" ref="/root/main/wardrecinfo/initcareinfo/initcare/dembztcareyn" navindex="24" appearance="full" cellspacing="5" cols="3" overflow="visible" style="left:89px; top:449px; width:140px; height:13px; border-style:none; ">
- <choices>
- <item>
- <label>무</label>
- <value>1</value>
- </item>
- <item>
- <label>알코올</label>
- <value>3</value>
- </item>
- <item>
- <label>기타</label>
- <value>2</value>
- </item>
- </choices>
- <script type="javascript" ev:event="xforms-value-changed">
- <![CDATA[
- if(model.getValue("/root/main/wardrecinfo/initcareinfo/initcare/dembztcareyn") == "2") {
- ipt_dembztcarecnts.disabled = false;
- } else {
-
- model.resetInstanceNode("/root/main/wardrecinfo/initcareinfo/initcare/dembztcarecnts");
- ipt_dembztcarecnts.disabled = true;
- ipt_dembztcarecnts.refresh();
-
- }
- ]]>
- </script>
- </select1>
- <select1 id="rdo_oxydrugyn" ref="/root/main/wardrecinfo/initcareinfo/initcare/oxydrugyn" class="28" navindex="30" appearance="full" cellspacing="10" cols="2" overflow="visible" style="left:89px; top:574px; width:75px; height:13px; border-style:none; ">
- <choices>
- <item>
- <label>무</label>
- <value>1</value>
- </item>
- <item>
- <label>유</label>
- <value>2</value>
- </item>
- </choices>
- <script type="javascript" ev:event="xforms-value-changed">
- <![CDATA[
- if(model.getValue("/root/main/wardrecinfo/initcareinfo/initcare/oxydrugyn") == "2") {
- ipt_oxydrugcnts.disabled = false;
- } else {
- ipt_oxydrugcnts.disabled = true;
- model.resetInstanceNode("/root/main/wardrecinfo/initcareinfo/initcare/oxydrugcnts");
- ipt_oxydrugcnts.refresh();
- }
- ]]>
- </script>
- </select1>
- <select1 id="rdo_vitaminyn" ref="/root/main/wardrecinfo/initcareinfo/initcare/vitaminyn" navindex="28" appearance="full" cellspacing="5" cols="3" rows="2" vcellspacing="7" overflow="visible" style="left:89px; top:522px; width:300px; height:43px; border-style:none; ">
- <choices>
- <item>
- <label>무</label>
- <value>1</value>
- </item>
- <item>
- <label>1mg IV</label>
- <value>3</value>
- </item>
- <item>
- <label>1mg IM</label>
- <value>4</value>
- </item>
- <item>
- <label>기타</label>
- <value>2</value>
- </item>
- </choices>
- <script type="javascript" ev:event="xforms-value-changed">
- <![CDATA[
- if(model.getValue("/root/main/wardrecinfo/initcareinfo/initcare/vitaminyn") == "2") {
- ipt_vitamincnts.disabled = false;
-
- } else {
- ipt_vitamincnts.disabled = true;
- model.resetInstanceNode("/root/main/wardrecinfo/initcareinfo/initcare/vitamincnts");
- ipt_vitamincnts.refresh();
- }
- ]]>
- </script>
- </select1>
- <select1 id="rdo_eyecareyn" ref="/root/main/wardrecinfo/initcareinfo/initcare/eyecareyn" navindex="26" appearance="full" cols="3" rows="2" vcellspacing="7" overflow="visible" style="left:89px; top:470px; width:311px; height:46px; border-style:none; ">
- <choices>
- <item>
- <label>무</label>
- <value>1</value>
- </item>
- <item>
- <label>Erythrocolimycin</label>
- <value>3</value>
- </item>
- <item>
- <label>Tobramycin</label>
- <value>4</value>
- </item>
- <item>
- <label>Chloramphenicol</label>
- <value>5</value>
- </item>
- <item>
- <label>기타</label>
- <value>2</value>
- </item>
- </choices>
- <script type="javascript" ev:event="xforms-value-changed">
- <![CDATA[
- if(model.getValue("/root/main/wardrecinfo/initcareinfo/initcare/eyecareyn") == "2") {
- ipt_eyecarecnts.disabled = false;
- } else {
- ipt_eyecarecnts.disabled = true;
- model.resetInstanceNode("/root/main/wardrecinfo/initcareinfo/initcare/eyecarecnts");
- ipt_eyecarecnts.refresh();
- }
- ]]>
- </script>
- </select1>
- <select1 id="rdo_suctdrgeyn" ref="/root/main/wardrecinfo/initcareinfo/initcare/suctdrgeyn" navindex="32" appearance="full" cellspacing="10" cols="2" overflow="visible" style="left:91px; top:622px; width:75px; height:13px; border-style:none; ">
- <choices>
- <item>
- <label>무</label>
- <value>1</value>
- </item>
- <item>
- <label>유</label>
- <value>2</value>
- </item>
- </choices>
- <script type="javascript" ev:event="xforms-value-changed">
- <![CDATA[
- if(model.getValue("/root/main/wardrecinfo/initcareinfo/initcare/suctdrgeyn") == "2") {
- cmb_suctdrgemodal.disabled=false;
- cmb_suctdrgevol.disabled=false;
- cmb_suctdrgecolor.disabled=false
- } else {
- model.resetInstanceNode("/root/main/wardrecinfo/initcareinfo/initcare/suctdrgevol");
- model.resetInstanceNode("/root/main/wardrecinfo/initcareinfo/initcare/suctdrgemodal");
- model.resetInstanceNode("/root/main/wardrecinfo/initcareinfo/initcare/suctdrgecolor");
-
- cmb_suctdrgemodal.refresh();
- cmb_suctdrgevol.refresh();
- cmb_suctdrgecolor.refresh();
-
- cmb_suctdrgemodal.disabled=true;
- cmb_suctdrgevol.disabled=true;
- cmb_suctdrgecolor.disabled=true;
-
- }
- ]]>
- </script>
- </select1>
- <input id="ipt_dembztcarecnts" ref="/root/main/wardrecinfo/initcareinfo/initcare/dembztcarecnts" disabled="true" navindex="25" style="left:234px; top:447px; width:162px; height:19px; text-align:center; "/>
- <input id="ipt_oxydrugcnts" ref="/root/main/wardrecinfo/initcareinfo/initcare/oxydrugcnts" disabled="true" navindex="31" style="left:170px; top:571px; width:227px; height:19px; text-align:center; "/>
- <caption id="caption27" style="left:171px; top:597px; width:24px; height:19px; text-align:center; ">양</caption>
- <input id="ipt_vitamincnts" ref="/root/main/wardrecinfo/initcareinfo/initcare/vitamincnts" disabled="true" navindex="29" style="left:139px; top:547px; width:257px; height:19px; text-align:center; "/>
- <input id="ipt_eyecarecnts" ref="/root/main/wardrecinfo/initcareinfo/initcare/eyecarecnts" disabled="true" navindex="27" style="left:249px; top:495px; width:147px; height:19px; text-align:center; "/>
- <caption id="caption66" style="left:171px; top:622px; width:26px; height:19px; text-align:center; ">양상</caption>
- <caption id="caption69" style="left:171px; top:645px; width:26px; height:19px; text-align:center; ">색</caption>
- <select1 id="cmb_suctdrgevol" ref="/root/main/wardrecinfo/initcareinfo/initcare/suctdrgevol" class="combo_default" disabled="true" navindex="33" appearance="minimal" style="left:201px; top:597px; width:197px; height:19px; ">
- <choices>
- <item>
- <label>많음</label>
- <value>01</value>
- </item>
- <item>
- <label>보통</label>
- <value>02</value>
- </item>
- <item>
- <label>소량</label>
- <value>03</value>
- </item>
- </choices>
- </select1>
- <select1 id="cmb_suctdrgemodal" ref="/root/main/wardrecinfo/initcareinfo/initcare/suctdrgemodal" class="combo_default" disabled="true" navindex="34" appearance="minimal" style="left:201px; top:621px; width:197px; height:19px; ">
- <choices>
- <item>
- <label>진함</label>
- <value>01</value>
- </item>
- <item>
- <label>보통</label>
- <value>02</value>
- </item>
- <item>
- <label>묽음</label>
- <value>03</value>
- </item>
- </choices>
- </select1>
- <select1 id="cmb_suctdrgecolor" ref="/root/main/wardrecinfo/initcareinfo/initcare/suctdrgecolor" class="combo_default" disabled="true" navindex="35" appearance="minimal" style="left:201px; top:645px; width:197px; height:19px; ">
- <choices>
- <item>
- <label>무색</label>
- <value>01</value>
- </item>
- <item>
- <label>노랑색</label>
- <value>02</value>
- </item>
- <item>
- <label>붉은색</label>
- <value>03</value>
- </item>
- <item>
- <label>태변색</label>
- <value>04</value>
- </item>
- <item>
- <label>기타</label>
- <value>05</value>
- </item>
- </choices>
- </select1>
- <caption id="caption70" style="left:732px; top:172px; width:28px; height:19px; text-align:center; ">Cm</caption>
- <input id="ipt_headgirth" ref="/root/main/wardrecinfo/headgirth" navindex="50" maxlength="5" format="9#.#" style="left:679px; top:172px; width:55px; height:19px; text-align:center; ">
- <script type="javascript" ev:event="xforms-value-changed">
- <![CDATA[
- fChkNoneInspCode("/root/main/wardrecinfo/headgirth", "ipt_headgirth");
- ]]>
- </script>
- </input>
- <input id="ipt_chestgirth" ref="/root/main/wardrecinfo/chestgirth" navindex="51" maxlength="5" format="9#.#" style="left:679px; top:196px; width:55px; height:19px; text-align:center; ">
- <script type="javascript" ev:event="xforms-value-changed">
- <![CDATA[
- fChkNoneInspCode("/root/main/wardrecinfo/chestgirth", "ipt_chestgirth");
- ]]>
- </script>
- </input>
- <caption id="caption71" style="left:732px; top:197px; width:28px; height:19px; text-align:center; ">Cm</caption>
- <select id="chk_hptsvacninclyn" ref="/root/main/wardrecinfo/hptsvacninfo/hptsvacn/hptsvacninclyn" overflow="visible" appearance="full" style="left:683px; top:224px; width:70px; height:15px; border-style:none; ">
- <choices>
- <item>
- <label>해당없음</label>
- <value>1</value>
- </item>
- </choices>
- <script type="javascript" ev:event="xforms-value-changed">
- <![CDATA[
- if(model.getValue("/root/main/wardrecinfo/hptsvacninfo/hptsvacn/hptsvacninclyn") == "1") {
-
- var rtn="";
- rtn = fSetStatus();
-
- if(rtn == "6") {
- rdo_hptsvacnyn.disabled = true;
- ipt_hptsvacnnm.disabled = true;
- cmb_hptsvacntim.disabled = true;
- ipt_hptsvacndrugno.disabled = true;
- cmb_hptsvacninocpart.disabled = true;
-
- model.resetInstanceNode("/root/main/wardrecinfo/hptsvacninfo/hptsvacn/hptsvacnyn");
- model.resetInstanceNode("/root/main/wardrecinfo/hptsvacninfo/hptsvacn/hptsvacnnm");
- model.resetInstanceNode("/root/main/wardrecinfo/hptsvacninfo/hptsvacn/hptsvacntim");
- model.resetInstanceNode("/root/main/wardrecinfo/hptsvacninfo/hptsvacn/hptsvacndrugno");
- model.resetInstanceNode("/root/main/wardrecinfo/hptsvacninfo/hptsvacn/hptsvacninocpart");
-
- rdo_hptsvacnyn.refresh();
- ipt_hptsvacnnm.refresh();
- cmb_hptsvacntim.refresh();
- ipt_hptsvacndrugno.refresh();
- cmb_hptsvacninocpart.refresh();
-
- } else {
- model.resetInstanceNode("/root/main/wardrecinfo/hptsvacninfo/hptsvacn/hptsvacninclyn");
- chk_hptsvacninclyn.refresh();
- return;
- }
-
- } else {
- rdo_hptsvacnyn.disabled = false;
- ipt_hptsvacnnm.disabled = false;
- cmb_hptsvacntim.disabled = false;
- ipt_hptsvacndrugno.disabled = false;
- cmb_hptsvacninocpart.disabled = false;
- }
- ]]>
- </script>
- <script type="javascript" ev:event="xforms-select">
- <![CDATA[
- status = "click";
- ]]>
- </script>
- </select>
- <input id="ipt_hptsvacnnm" ref="/root/main/wardrecinfo/hptsvacninfo/hptsvacn/hptsvacnnm" navindex="53" style="left:507px; top:271px; width:121px; height:19px; text-align:center; "/>
- <input id="ipt_hptsvacndrugno" ref="/root/main/wardrecinfo/hptsvacninfo/hptsvacn/hptsvacndrugno" navindex="55" style="left:507px; top:295px; width:248px; height:19px; text-align:center; "/>
- <select id="chk_maternalinclyn" ref="/root/main/wardrecinfo/infcsickyn" disabled="true" navindex="53" overflow="visible" appearance="full" style="left:683px; top:349px; width:70px; height:15px; border-style:none; ">
- <choices>
- <item>
- <label>해당없음</label>
- <value>N</value>
- </item>
- </choices>
- <script type="javascript" ev:event="xforms-value-changed">
- <![CDATA[
- if(model.getValue("/root/main/wardrecinfo/infcsickyn") == "N") {
- var rtn = "";
- rtn = fSetStatus();
-
- if(rtn == "6") {
- model.resetInstanceNode("/root/main/wardrecinfo/infcsicknm");
- model.resetInstanceNode("/root/main/wardrecinfo/infcsickspec");
-
- chk_infcsicknm.refresh();
- ipt_infcsickspec.refresh();
-
- } else {
- return;
- }
-
- } else {
- chk_infcsicknm.disabled = false;
- ipt_infcsickspec.disabled = false;
-
- }
- ]]>
- </script>
- <script type="javascript" ev:event="xforms-select">
- <![CDATA[
- status = "click";
- ]]>
- </script>
- </select>
- <line id="line22" class="line_2" style="x1:762px; y1:96px; x2:1189px; y2:96px; "/>
- <line id="line23" class="line_2" style="x1:762px; y1:262px; x2:1189px; y2:262px; "/>
- <line id="line24" class="line_2" style="x1:762px; y1:72px; x2:1189px; y2:72px; "/>
- <caption id="caption33" class="cell_1" style="left:762px; top:50px; width:100px; height:23px; ">임신주수</caption>
- <caption id="caption34" class="cell_1" style="left:762px; top:74px; width:100px; height:23px; ">분만형태</caption>
- <line id="line25" class="line_2" style="x1:762px; y1:287px; x2:1189px; y2:287px; "/>
- <line id="line26" class="line_2" style="x1:762px; y1:403px; x2:1189px; y2:403px; "/>
- <line id="line27" class="line_2" style="x1:762px; y1:427px; x2:1189px; y2:427px; "/>
- <line id="line37" class="line_2" style="x1:762px; y1:452px; x2:1189px; y2:452px; "/>
- <caption id="caption35" class="cell_1" style="left:762px; top:98px; width:100px; height:23px; ">분만장소</caption>
- <line id="line39" class="line_2" style="x1:762px; y1:500px; x2:1189px; y2:500px; "/>
- <line id="line40" class="line_2" style="x1:762px; y1:524px; x2:1189px; y2:524px; "/>
- <line id="line51" class="line_2" style="x1:762px; y1:572px; x2:1189px; y2:572px; "/>
- <line id="line52" class="line_2" style="x1:762px; y1:618px; x2:1189px; y2:618px; "/>
- <line id="line53" class="line_2" style="x1:762px; y1:548px; x2:1189px; y2:548px; "/>
- <caption id="caption73" class="cell_1" style="left:762px; top:644px; width:100px; height:23px; ">특이사항</caption>
- <caption id="caption51" class="cell_1" style="left:762px; top:454px; width:100px; height:47px; ">Nuchal cord</caption>
- <caption id="caption52" class="cell_1" style="left:762px; top:550px; width:100px; height:23px; ">산소흡입</caption>
- <caption id="caption46" class="cell_1" style="left:762px; top:381px; width:100px; height:23px; ">Urine</caption>
- <caption id="caption47" class="cell_1" style="left:762px; top:405px; width:100px; height:23px; ">Stool</caption>
- <caption id="caption37" class="cell_1" style="left:762px; top:429px; width:100px; height:23px; ">태변착색</caption>
- <caption id="caption48" class="cell_1" style="left:762px; top:502px; width:100px; height:23px; ">true knot</caption>
- <caption id="caption49" class="cell_1" style="left:762px; top:526px; width:100px; height:23px; ">유도분만</caption>
- <input id="ipt_promdd" ref="/root/main/wardrecinfo/etcbrthinfo/etcbrth/promdd" disabled="true" inputtype="date" style="left:985px; top:334px; width:85px; height:19px; "/>
- <input id="ipt_urinespec" ref="/root/main/wardrecinfo/etcbrthinfo/etcbrth/urinespec" disabled="true" visibility="hidden" style="left:968px; top:382px; width:187px; height:19px; "/>
- <input id="ipt_promtm" ref="/root/main/wardrecinfo/etcbrthinfo/etcbrth/promtm" disabled="true" format="hh:nn" style="left:1073px; top:334px; width:52px; height:19px; "/>
- <input id="ipt_stool" ref="/root/main/wardrecinfo/etcbrthinfo/etcbrth/stool" disabled="true" navindex="75" visibility="hidden" style="left:968px; top:406px; width:187px; height:19px; "/>
- <input id="ipt_guiddlivspec" ref="/root/main/wardrecinfo/etcbrthinfo/etcbrth/guiddlivspec" disabled="true" visibility="hidden" style="left:968px; top:527px; width:187px; height:19px; "/>
- <input id="ipt_oxygenabsopspec" ref="/root/main/wardrecinfo/etcbrthinfo/etcbrth/oxygenabsopspec" disabled="true" style="left:968px; top:551px; width:140px; height:19px; "/>
- <input id="ipt_remk" ref="/root/main/wardrecinfo/etcbrthinfo/etcbrth/remk" disabled="true" style="left:865px; top:645px; width:325px; height:19px; "/>
- <input id="ipt_cardresusspec" ref="/root/main/wardrecinfo/etcbrthinfo/etcbrth/cardresusspec" disabled="true" style="left:865px; top:621px; width:325px; height:19px; "/>
- <caption id="caption86" class="output_fix" style="left:968px; top:455px; width:48px; height:19px; text-align:center; ">부위</caption>
- <caption id="caption87" class="output_fix" style="left:1111px; top:551px; width:44px; height:19px; text-align:center; ">(I/분)</caption>
- <select id="chk_initcareinclyn" ref="/root/main/wardrecinfo/initcareinfo/initcare/initcareinclyn" overflow="visible" appearance="full" style="left:326px; top:424px; width:70px; height:15px; border-style:none; ">
- <choices>
- <item>
- <label>해당없음</label>
- <value>1</value>
- </item>
- </choices>
- <script type="javascript" ev:event="xforms-select">
- <![CDATA[
- status = "click";
- ]]>
- </script>
- <script type="javascript" ev:event="xforms-value-changed">
- <![CDATA[
- if(model.getValue("/root/main/wardrecinfo/initcareinfo/initcare/initcareinclyn") == "1") {
- var rtn = "";
- rtn = fSetStatus();
-
- if(rtn == "6") {
- rdo_dembztcareyn.disabled = true;
- ipt_dembztcarecnts.disabled = true;
- rdo_oxydrugyn.disabled = true;
- ipt_oxydrugcnts.disabled = true;
- rdo_vitaminyn.disabled = true;
- ipt_vitamincnts.disabled = true;
- rdo_eyecareyn.disabled = true;
- ipt_eyecarecnts.disabled = true;
- rdo_suctdrgeyn.disabled = true;
- cmb_suctdrgevol.disabled = true;
- cmb_suctdrgemodal.disabled = true;
- cmb_suctdrgecolor.disabled = true;
-
- model.resetInstanceNode("/root/main/wardrecinfo/initcareinfo/initcare/dembztcareyn");
- model.resetInstanceNode("/root/main/wardrecinfo/initcareinfo/initcare/dembztcarecnts");
- model.resetInstanceNode("/root/main/wardrecinfo/initcareinfo/initcare/oxydrugyn");
- model.resetInstanceNode("/root/main/wardrecinfo/initcareinfo/initcare/oxydrugcnts");
- model.resetInstanceNode("/root/main/wardrecinfo/initcareinfo/initcare/vitaminyn");
- model.resetInstanceNode("/root/main/wardrecinfo/initcareinfo/initcare/vitamincnts");
- model.resetInstanceNode("/root/main/wardrecinfo/initcareinfo/initcare/eyecareyn");
- model.resetInstanceNode("/root/main/wardrecinfo/initcareinfo/initcare/eyecarecnts");
- model.resetInstanceNode("/root/main/wardrecinfo/initcareinfo/initcare/suctdrgeyn");
- model.resetInstanceNode("/root/main/wardrecinfo/initcareinfo/initcare/suctdrgevol");
- model.resetInstanceNode("/root/main/wardrecinfo/initcareinfo/initcare/suctdrgemodal");
- model.resetInstanceNode("/root/main/wardrecinfo/initcareinfo/initcare/suctdrgecolor");
-
- rdo_dembztcareyn.refresh();
- ipt_dembztcarecnts.refresh();
- rdo_oxydrugyn.refresh();
- ipt_oxydrugcnts.refresh();
- rdo_vitaminyn.refresh();
- ipt_vitamincnts.refresh();
- rdo_eyecareyn.refresh();
- ipt_eyecarecnts.refresh();
- rdo_suctdrgeyn.refresh();
- cmb_suctdrgevol.refresh();
- cmb_suctdrgecolor.refresh();
- cmb_suctdrgecolor.refresh();
-
- } else {
-
- model.resetInstanceNode("/root/main/wardrecinfo/initcareinfo/initcare/initcareinclyn");
- chk_initcareinclyn.refresh();
-
- }
- } else {
- rdo_dembztcareyn.disabled = false;
- rdo_oxydrugyn.disabled = false;
- rdo_vitaminyn.disabled = false;
- rdo_eyecareyn.disabled = false;
- rdo_suctdrgeyn.disabled = false;
-
- model.setValue("/root/main/wardrecinfo/initcareinfo/initcare/dembztcareyn", "1");
- model.setValue("/root/main/wardrecinfo/initcareinfo/initcare/oxydrugyn", "1");
- model.setValue("/root/main/wardrecinfo/initcareinfo/initcare/vitaminyn", "1");
- model.setValue("/root/main/wardrecinfo/initcareinfo/initcare/eyecareyn", "1");
- model.setValue("/root/main/wardrecinfo/initcareinfo/initcare/suctdrgeyn", "1");
-
- rdo_dembztcareyn.refresh();
- rdo_oxydrugyn.refresh();
- rdo_vitaminyn.refresh();
- rdo_eyecareyn.refresh();
- rdo_suctdrgeyn.refresh();
- }
- ]]>
- </script>
- </select>
- <caption id="caption88" class="output_fix" style="left:968px; top:479px; width:48px; height:19px; text-align:center; ">횟수</caption>
- <select1 id="rdo_urinecd" ref="/root/main/wardrecinfo/etcbrthinfo/etcbrth/urinecd" disabled="true" appearance="full" cellspacing="30" cols="2" overflow="visible" style="left:865px; top:386px; width:100px; height:13px; border-style:none; ">
- <choices>
- <item>
- <label>무</label>
- <value>N</value>
- </item>
- <item>
- <label>유</label>
- <value>Y</value>
- </item>
- </choices>
- </select1>
- <select1 id="rdo_nuchalcordyn" ref="/root/main/wardrecinfo/etcbrthinfo/etcbrth/nuchalcordcd" disabled="true" appearance="full" cellspacing="30" cols="2" overflow="visible" style="left:865px; top:469px; width:100px; height:13px; border-style:none; ">
- <choices>
- <item>
- <label>무</label>
- <value>N</value>
- </item>
- <item>
- <label>유</label>
- <value>Y</value>
- </item>
- </choices>
- </select1>
- <select1 id="cmb_nuchalcordpart" ref="/root/main/wardrecinfo/etcbrthinfo/etcbrth/nuchalcordpart" disabled="true" appearance="minimal" style="left:1019px; top:455px; width:66px; height:19px; ">
- <choices>
- <item>
- <label>trunk</label>
- <value>1</value>
- </item>
- <item>
- <label>neck</label>
- <value>2</value>
- </item>
- <item>
- <label>hand</label>
- <value>3</value>
- </item>
- <item>
- <label>foot</label>
- <value>4</value>
- </item>
- <item>
- <label>기타</label>
- <value>5</value>
- </item>
- </choices>
- </select1>
- <select1 id="rdo_stoolyn" ref="/root/main/wardrecinfo/etcbrthinfo/etcbrth/stoolcd" disabled="true" appearance="full" cellspacing="30" cols="2" overflow="visible" style="left:865px; top:409px; width:100px; height:13px; border-style:none; ">
- <choices>
- <item>
- <label>무</label>
- <value>N</value>
- </item>
- <item>
- <label>유</label>
- <value>Y</value>
- </item>
- </choices>
- </select1>
- <select1 id="rdo_mecstainyn" ref="/root/main/wardrecinfo/etcbrthinfo/etcbrth/mecnmcolrayn" disabled="true" navindex="76" appearance="full" cellspacing="30" cols="2" overflow="visible" style="left:865px; top:434px; width:100px; height:13px; border-style:none; ">
- <choices>
- <item>
- <label>무</label>
- <value>N</value>
- </item>
- <item>
- <label>유</label>
- <value>Y</value>
- </item>
- </choices>
- </select1>
- <select1 id="cmb_mecstain" ref="/root/main/wardrecinfo/etcbrthinfo/etcbrth/mecnmcolracd" disabled="true" appearance="minimal" style="left:968px; top:431px; width:186px; height:19px; ">
- <choices>
- <item>
- <label>+1</label>
- <value>1</value>
- </item>
- <item>
- <label>+2</label>
- <value>2</value>
- </item>
- <item>
- <label>+3</label>
- <value>3</value>
- </item>
- </choices>
- </select1>
- <select1 id="rdo_trueknotyn" ref="/root/main/wardrecinfo/etcbrthinfo/etcbrth/trueknotyn" disabled="true" appearance="full" cellspacing="30" cols="2" overflow="visible" style="left:865px; top:507px; width:100px; height:13px; border-style:none; ">
- <choices>
- <item>
- <label>무</label>
- <value>N</value>
- </item>
- <item>
- <label>유</label>
- <value>Y</value>
- </item>
- </choices>
- </select1>
- <select1 id="rdo_oxygenabsopcd" ref="/root/main/wardrecinfo/etcbrthinfo/etcbrth/oxygenabsopcd" disabled="true" appearance="full" cellspacing="30" cols="2" overflow="visible" style="left:865px; top:553px; width:100px; height:13px; border-style:none; ">
- <choices>
- <item>
- <label>무</label>
- <value>N</value>
- </item>
- <item>
- <label>유</label>
- <value>Y</value>
- </item>
- </choices>
- </select1>
- <select1 id="rdo_guiddlivyn" ref="/root/main/wardrecinfo/etcbrthinfo/etcbrth/guiddlivyn" disabled="true" appearance="full" cellspacing="30" cols="2" overflow="visible" style="left:865px; top:530px; width:100px; height:13px; border-style:none; ">
- <choices>
- <item>
- <label>무</label>
- <value>N</value>
- </item>
- <item>
- <label>유</label>
- <value>Y</value>
- </item>
- </choices>
- </select1>
- <select1 id="rdo_cardresusyn" ref="/root/main/wardrecinfo/etcbrthinfo/etcbrth/cardresusyn" disabled="true" appearance="full" cellspacing="30" cols="2" overflow="visible" style="left:865px; top:579px; width:100px; height:13px; border-style:none; ">
- <choices>
- <item>
- <label>무</label>
- <value>N</value>
- </item>
- <item>
- <label>유</label>
- <value>Y</value>
- </item>
- </choices>
- </select1>
- <select1 id="cmb_partrtntype" ref="/root/main/wardrecinfo/dlivflag" class="combo_default" disabled="true" appearance="minimal" style="left:1028px; top:75px; width:156px; height:19px; ">
- <choices>
- <itemset nodeset="/root/init/mlist/M0086">
- <label ref="cdnm"/>
- <value ref="cdid"/>
- </itemset>
- </choices>
- </select1>
- <select1 id="cmb_dilvplcecd" ref="/root/main/wardrecinfo/dlivplcecd" class="combo_default" disabled="true" appearance="minimal" style="left:865px; top:99px; width:160px; height:19px; ">
- <choices>
- <item>
- <label>분만실</label>
- <value>PT</value>
- </item>
- <item>
- <label>수술실</label>
- <value>OP</value>
- </item>
- <item>
- <label>기타</label>
- <value>E</value>
- </item>
- </choices>
- </select1>
- <input id="ipt_partrtndt" ref="/root/main/wardrecinfo/partrtndt" disabled="true" navindex="4" editable="false" format="hh:nn" style="left:163px; top:51px; width:39px; height:19px; "/>
- <input id="ipt_partrtndd" ref="/root/main/wardrecinfo/partrtndd" class="input_default" disabled="true" navindex="3" editable="false" inputtype="date" style="left:78px; top:51px; width:82px; height:19px; "/>
- <select1 id="cmb_weigunit" ref="/root/main/wardrecinfo/weigunit" class="combo_default" disabled="true" navindex="7" appearance="minimal" style="left:163px; top:75px; width:39px; height:19px; ">
- <choices>
- <item>
- <label>kg</label>
- <value>1</value>
- </item>
- <item>
- <label>g</label>
- <value>2</value>
- </item>
- </choices>
- </select1>
- <input id="ipt_weig" ref="/root/main/wardrecinfo/weig" disabled="true" navindex="6" editable="false" maxlength="5" style="left:78px; top:75px; width:82px; height:19px; "/>
- <select1 id="rdo_antibiodrugyn" ref="/root/main/wardrecinfo/etcbrthinfo/etcbrth/antibiodrugyn" disabled="true" appearance="full" cellspacing="30" cols="2" overflow="visible" style="left:934px; top:360px; width:116px; height:17px; border-style:none; ">
- <choices>
- <item>
- <label>무</label>
- <value>N</value>
- </item>
- <item>
- <label>유</label>
- <value>Y</value>
- </item>
- </choices>
- </select1>
- <caption id="caption56" style="left:865px; top:361px; width:66px; height:13px; vertical-align:middle; ">항생제 투여</caption>
- <line id="line54" class="line_2" style="x1:762px; y1:355px; x2:1189px; y2:355px; "/>
- <line id="line55" class="line_2" style="x1:762px; y1:379px; x2:1189px; y2:379px; "/>
- <select1 id="rdo_promyn" ref="/root/main/wardrecinfo/etcbrthinfo/etcbrth/promyn" disabled="true" appearance="full" cellspacing="30" cols="2" overflow="visible" style="left:865px; top:337px; width:111px; height:12px; border-style:none; ">
- <choices>
- <item>
- <label>무</label>
- <value>N</value>
- </item>
- <item>
- <label>유</label>
- <value>Y</value>
- </item>
- </choices>
- </select1>
- <caption id="caption45" class="cell_1" style="left:762px; top:333px; width:100px; height:47px; ">PROM</caption>
- <input id="ipt_inrmtypenm" ref="/root/main/wardrecinfo/inrminfo/inrm/inrmtypenm" navindex="39" visibility="hidden" style="left:642px; top:51px; width:113px; height:19px; text-align:left; "/>
- <input id="ipt_inacompstnm" ref="/root/main/wardrecinfo/inrminfo/inrm/inacompstnm" navindex="41" visibility="hidden" style="left:642px; top:75px; width:113px; height:19px; text-align:left; "/>
- <caption id="caption57" class="cell_1" style="left:202px; top:245px; width:80px; height:23px; ">감염정보</caption>
- <caption id="caption58" class="cell_1" style="left:631px; top:270px; width:60px; height:23px; ">차수</caption>
- <select1 id="cmb_hptsvacntim" ref="/root/main/wardrecinfo/hptsvacninfo/hptsvacn/hptsvacntim" class="combo_default" navindex="54" appearance="minimal" style="left:694px; top:271px; width:61px; height:19px; ">
- <choices>
- <item>
- <label>1차</label>
- <value>1</value>
- </item>
- <item>
- <label>2차</label>
- <value>2</value>
- </item>
- <item>
- <label>3차</label>
- <value>3</value>
- </item>
- </choices>
- </select1>
- <line id="line56" class="line_3" style="x1:404px; y1:424px; x2:755px; y2:424px; "/>
- <select1 id="cmb_dlivkindcd" ref="/root/main/wardrecinfo/dlivkindcd" class="combo_default" disabled="true" appearance="minimal" style="left:865px; top:75px; width:160px; height:19px; ">
- <choices>
- <itemset nodeset="/root/init/mlist/M0188">
- <label ref="cdnm"/>
- <value ref="cdid"/>
- </itemset>
- </choices>
- <script type="javascript" ev:event="xforms-value-changed">
- <![CDATA[
- if(cmb_dlivkindcd.value == "01"){
- cmb_dlivflag.choices.itemset.attribute("nodeset") = "/root/init/mlist/M0086[cdid > 00 && cdid < 16]";
- cmb_dlivflag.refresh();
- }else if(cmb_dlivkindcd.value == "02"){
- cmb_dlivflag.choices.itemset.attribute("nodeset") = "/root/init/dlivflag/flag2";
- cmb_dlivflag.refresh();
- }else{}
- ]]>
- </script>
- </select1>
- <input id="ipt_dilvplcespec" ref="/root/main/wardrecinfo/dlivplceetcspec" disabled="true" style="left:1028px; top:99px; width:156px; height:19px; "/>
- <input id="ipt_infcsickspec" ref="/root/main/wardrecinfo/infcsickspec" disabled="true" navindex="58" style="left:453px; top:401px; width:300px; height:19px; "/>
- <input id="ipt_prgdaycnt" ref="/root/main/wardrecinfo/prgdaycnt" class="input_default" disabled="true" maxlength="1" format="9" style="left:952px; top:51px; width:55px; height:19px; "/>
- <input id="ipt_prgweekcnt" ref="/root/main/wardrecinfo/prgweekcnt" class="input_default" disabled="true" maxlength="2" format="99" style="left:865px; top:51px; width:55px; height:19px; "/>
- <caption id="caption59" style="left:1008px; top:55px; width:38px; height:15px; vertical-align:middle; ">days</caption>
- <caption id="caption60" style="left:921px; top:55px; width:38px; height:15px; vertical-align:middle; ">wks</caption>
- <input id="ipt_nuchalcordpartspec" ref="/root/main/wardrecinfo/etcbrthinfo/etcbrth/nuchalcordspec" disabled="true" style="left:1088px; top:455px; width:66px; height:19px; "/>
- <select1 id="cmb_nuchalcordtime" ref="/root/main/wardrecinfo/etcbrthinfo/etcbrth/nuchalcordtime" disabled="true" appearance="minimal" style="left:1019px; top:479px; width:66px; height:19px; ">
- <choices>
- <item>
- <label>1</label>
- <value>1</value>
- </item>
- <item>
- <label>2</label>
- <value>2</value>
- </item>
- <item>
- <label>3</label>
- <value>3</value>
- </item>
- <item>
- <label>4</label>
- <value>4</value>
- </item>
- <item>
- <label>5</label>
- <value>5</value>
- </item>
- <item>
- <label>6</label>
- <value>6</value>
- </item>
- </choices>
- </select1>
- <select1 id="cmb_trueknotspec" ref="/root/main/wardrecinfo/etcbrthinfo/etcbrth/trueknotspec" disabled="true" appearance="minimal" style="left:968px; top:503px; width:188px; height:19px; ">
- <choices>
- <item>
- <label>+1</label>
- <value>1</value>
- </item>
- <item>
- <label>+2</label>
- <value>2</value>
- </item>
- <item>
- <label>+3</label>
- <value>3</value>
- </item>
- <item>
- <label>+4</label>
- <value>4</value>
- </item>
- <item>
- <label>+5</label>
- <value>5</value>
- </item>
- </choices>
- </select1>
- <select id="chk_cardresuscd" ref="/root/main/wardrecinfo/etcbrthinfo/etcbrth/cardresuscd" disabled="true" overflow="visible" appearance="full" cellspacing="10" cols="6" sep="," style="left:864px; top:600px; width:325px; height:16px; border-style:none; ">
- <choices>
- <item>
- <label>Mask bagging</label>
- <value>1</value>
- </item>
- <item>
- <label>Intubation</label>
- <value>2</value>
- </item>
- <item>
- <label>Cardiac massage</label>
- <value>3</value>
- </item>
- </choices>
- </select>
- <line id="line57" class="line_2" style="x1:762px; y1:596px; x2:1189px; y2:596px; "/>
- <line id="line58" class="line_2" style="x1:765px; y1:642px; x2:1156px; y2:642px; "/>
- <caption id="caption72" class="cell_1" style="left:762px; top:574px; width:100px; height:69px; ">심폐소생술</caption>
- <line id="line50" class="line_3" style="x1:762px; y1:666px; x2:1189px; y2:666px; "/>
- <select1 id="rdo_ftherinfcinfoyn" ref="/root/main/wardrecinfo/ftherinfcinfoyn" disabled="true" navindex="20" appearance="full" cellspacing="10" cols="2" overflow="visible" style="left:285px; top:249px; width:75px; height:13px; border-style:none; ">
- <choices>
- <item>
- <label>무</label>
- <value>1</value>
- </item>
- <item>
- <label>유</label>
- <value>2</value>
- </item>
- </choices>
- </select1>
- <select id="chk_ftherinfcinfo" ref="/root/main/wardrecinfo/ftherinfcinfo" disabled="true" navindex="21" overflow="visible" appearance="full" cols="2" vcellspacing="5" style="left:265px; top:270px; width:135px; height:65px; border-style:none; ">
- <choices>
- <item>
- <label>HBs Ag</label>
- <value>1</value>
- </item>
- <item>
- <label>HCV ab</label>
- <value>2</value>
- </item>
- <item>
- <label>VDRL</label>
- <value>3</value>
- </item>
- <item>
- <label>HIV</label>
- <value>4</value>
- </item>
- <item>
- <label>active TB</label>
- <value>5</value>
- </item>
- <item>
- <label>기타</label>
- <value>6</value>
- </item>
- </choices>
- </select>
- <input id="ipt_ftherinfcinfonm" ref="/root/main/wardrecinfo/ftherinfcinfonm" disabled="true" navindex="22" style="left:265px; top:338px; width:131px; height:19px; "/>
- <line id="line28" class="line_2" style="x1:5px; y1:291px; x2:201px; y2:291px; "/>
- <caption id="cap_mtherindd" class="cell_1" style="left:5px; top:269px; width:80px; height:23px; ">입원일자</caption>
- <line id="line59" class="line_2" style="x1:404px; y1:501px; x2:755px; y2:501px; "/>
- <caption id="caption12" class="cell_1" style="left:404px; top:527px; width:100px; height:23px; ">접종부위</caption>
- <line id="line60" class="line_2" style="x1:404px; y1:525px; x2:755px; y2:525px; "/>
- <caption id="caption76" class="cell_1" style="left:404px; top:455px; width:100px; height:23px; ">간염예방접종</caption>
- <line id="line61" class="line_1" style="x1:404px; y1:450px; x2:755px; y2:450px; "/>
- <caption id="caption77" class="tit_2" style="left:407px; top:435px; width:153px; height:13px; ">B형간염 면역글로블린</caption>
- <caption id="caption78" class="cell_1" style="left:404px; top:479px; width:100px; height:23px; ">약품명</caption>
- <line id="line62" class="line_2" style="x1:404px; y1:477px; x2:755px; y2:477px; "/>
- <input id="ipt_hptsvacndrugno2" ref="/root/main/wardrecinfo/hptsvacninfo/hptsvacn/hptsvacndrugno2" navindex="61" style="left:507px; top:504px; width:248px; height:19px; text-align:center; "/>
- <input id="ipt_hptsvacnnm2" ref="/root/main/wardrecinfo/hptsvacninfo/hptsvacn/hptsvacnnm2" navindex="60" style="left:507px; top:480px; width:248px; height:19px; text-align:center; "/>
- <caption id="caption79" class="cell_1" style="left:404px; top:503px; width:100px; height:23px; ">약품번호</caption>
- <line id="line63" class="line_3" style="x1:404px; y1:549px; x2:755px; y2:549px; "/>
- <select1 id="rdo_hptsvacnyn2" ref="/root/main/wardrecinfo/hptsvacninfo/hptsvacn/hptsvacnyn2" navindex="59" appearance="full" cellspacing="15" cols="2" overflow="visible" style="left:506px; top:459px; width:90px; height:13px; border-style:none; ">
- <choices>
- <item>
- <label>무</label>
- <value>01</value>
- </item>
- <item>
- <label>유</label>
- <value>02</value>
- </item>
- </choices>
- <script type="javascript" ev:event="xforms-value-changed">
- <![CDATA[
- if(model.getValue("/root/main/wardrecinfo/hptsvacninfo/hptsvacn/hptsvacnyn2") == "01") {
- ipt_hptsvacnnm2.disabled = true;
- ipt_hptsvacndrugno2.disabled = true;
- cmb_hptsvacninocpart2.disabled = true;
-
- model.resetInstanceNode("/root/main/wardrecinfo/hptsvacninfo/hptsvacn/hptsvacnnm2");
- model.resetInstanceNode("/root/main/wardrecinfo/hptsvacninfo/hptsvacn/hptsvacndrugno2");
- model.resetInstanceNode("/root/main/wardrecinfo/hptsvacninfo/hptsvacn/hptsvacninocpart2");
-
- } else {
- ipt_hptsvacnnm2.disabled = false;
- ipt_hptsvacndrugno2.disabled = false;
- cmb_hptsvacninocpart2.disabled = false;
-
- }
- ipt_hptsvacnnm2.refresh();
- ipt_hptsvacndrugno2.refresh();
- cmb_hptsvacninocpart2.refresh();
- ]]>
- </script>
- </select1>
- <select1 id="cmb_hptsvacninocpart" ref="/root/main/wardrecinfo/hptsvacninfo/hptsvacn/hptsvacninocpart" class="combo_default" navindex="56" appearance="minimal" style="left:507px; top:319px; width:248px; height:19px; ">
- <choices>
- <item>
- <label>Rt. Leg</label>
- <value>1</value>
- </item>
- <item>
- <label>Lt. Leg</label>
- <value>2</value>
- </item>
- </choices>
- </select1>
- <select1 id="cmb_hptsvacninocpart2" ref="/root/main/wardrecinfo/hptsvacninfo/hptsvacn/hptsvacninocpart2" class="combo_default" disabled="true" navindex="62" appearance="minimal" style="left:507px; top:528px; width:248px; height:19px; ">
- <choices>
- <item>
- <label>Rt. Leg</label>
- <value>1</value>
- </item>
- <item>
- <label>Lt. Leg</label>
- <value>2</value>
- </item>
- </choices>
- </select1>
- <input id="ipt_lctdd" ref="/root/main/wardrecinfo/etcbrthinfo/etcbrth/lctdd" class="input_default" disabled="true" inputtype="date" style="left:898px; top:311px; width:95px; height:19px; "/>
- <select1 id="cmb_lctrejtresnspec" ref="/root/main/wardrecinfo/etcbrthinfo/etcbrth/lctrejtresnspec" class="combo_default" disabled="true" appearance="minimal" style="left:898px; top:289px; width:135px; height:19px; ">
- <choices>
- <item>
- <label>다태아 출산</label>
- <value>1</value>
- </item>
- <item>
- <label>제태기간 37주 미만</label>
- <value>2</value>
- </item>
- <item>
- <label>출생시 체중 2500g 미만</label>
- <value>3</value>
- </item>
- <item>
- <label>5분 Apgar score 8점 미만</label>
- <value>4</value>
- </item>
- <item>
- <label>입원시 거부</label>
- <value>5</value>
- </item>
- <item>
- <label>중도 거부</label>
- <value>6</value>
- </item>
- <item>
- <label>의학적 이유 기타</label>
- <value>7</value>
- </item>
- </choices>
- </select1>
- <input id="ipt_lcttm" ref="/root/main/wardrecinfo/etcbrthinfo/etcbrth/lcttm" class="input_default" disabled="true" maxlength="4" format="hh:nn" style="left:996px; top:311px; width:38px; height:19px; "/>
- <line id="line64" class="line_2" style="x1:762px; y1:331px; x2:1189px; y2:331px; "/>
- <input id="ipt_dlivpredrugspec" ref="/root/main/wardrecinfo/etcbrthinfo/etcbrth/dlivpredrugspec" class="input_default" disabled="true" maxlength="50" style="left:1036px; top:289px; width:118px; height:19px; "/>
- <line id="line65" class="line_2" style="x1:899px; y1:309px; x2:1189px; y2:309px; "/>
- <caption id="caption82" style="left:864px; top:25px; width:15px; height:25px; vertical-align:middle; ">G</caption>
- <caption id="caption83" style="left:911px; top:24px; width:15px; height:25px; vertical-align:middle; ">P</caption>
- <caption id="caption84" style="left:958px; top:24px; width:15px; height:25px; vertical-align:middle; ">A</caption>
- <input id="ipt_parityg" ref="/root/main/wardrecinfo/parityg" class="input_default" disabled="true" style="left:882px; top:27px; width:26px; height:19px; "/>
- <caption id="caption85" style="left:1000px; top:24px; width:23px; height:25px; vertical-align:middle; ">(SA</caption>
- <caption id="caption89" style="left:1055px; top:25px; width:18px; height:25px; vertical-align:middle; ">AA</caption>
- <input id="ipt_parityl" ref="/root/main/wardrecinfo/parityl" class="input_default" disabled="true" style="left:1128px; top:27px; width:26px; height:19px; "/>
- <caption id="caption90" style="left:1105px; top:25px; width:18px; height:25px; vertical-align:middle; ">) L</caption>
- <input id="ipt_paritysa" ref="/root/main/wardrecinfo/paritysa" class="input_default" disabled="true" style="left:1026px; top:27px; width:26px; height:19px; "/>
- <input id="ipt_parityaa" ref="/root/main/wardrecinfo/parityaa" class="input_default" disabled="true" style="left:1076px; top:27px; width:26px; height:19px; "/>
- <input id="ipt_parityp" ref="/root/main/wardrecinfo/parityp" class="input_default" disabled="true" style="left:929px; top:27px; width:26px; height:19px; "/>
- <input id="ipt_paritya" ref="/root/main/wardrecinfo/paritya" class="input_default" disabled="true" style="left:971px; top:27px; width:26px; height:19px; "/>
- <line id="line66" class="line_2" style="x1:762px; y1:48px; x2:1189px; y2:48px; "/>
- <caption id="caption81" class="cell_1" style="left:762px; top:26px; width:100px; height:23px; ">임신출산력</caption>
- <line id="line67" class="line_2" style="x1:762px; y1:121px; x2:1189px; y2:121px; "/>
- <caption id="caption91" class="cell_1" style="left:762px; top:123px; width:100px; height:163px; vertical-align:middle; ">Apgar Score</caption>
- <datagrid id="grd_aslist" nodeset="/root/main/wardrecinfo/apgarscoreinfo/scorelist" allowselection="false" caption="평가항목^0점^1점^2점^1분^5분" colsep="^" colwidth="54, 60, 76, 72, 28, 28" rowsep="|" tooltip="true" style="left:864px; top:123px; width:325px; height:163px; font-size:8pt; ">
- <col ref="scoreitem" style="text-align:center; "/>
- <col ref="score0" style="text-align:center; "/>
- <col ref="score1" style="text-align:center; "/>
- <col ref="score2" style="text-align:center; "/>
- <col ref="minute1" style="text-align:center; "/>
- <col ref="minute5" style="text-align:center; "/>
- </datagrid>
- <caption id="caption80" class="cell_1" style="left:762px; top:288px; width:100px; height:44px; vertical-align:middle; ">첫 모유수유시간</caption>
- <select1 id="rdo_fstlctyn" ref="/root/main/wardrecinfo/etcbrthinfo/etcbrth/fstlctyn" disabled="true" appearance="full" cellspacing="185" cols="1" rows="1" overflow="visible" style="left:865px; top:289px; width:31px; height:40px; line-spacing:5; border-style:none; ">
- <choices>
- <item>
- <label>무</label>
- <value>N</value>
- </item>
- <item>
- <label>유</label>
- <value>Y</value>
- </item>
- </choices>
- <script type="javascript" ev:event="xforms-select">
- <![CDATA[
- if(rdo_fstlctyn.value == "N"){
- cmb_lctrejtresnspec.disabled = false;
- ipt_lctdd.disabled = true;
- ipt_lcttm.disabled = true;
- ipt_lctdd.value = "";
- ipt_lcttm.value = "";
- }else if(rdo_fstlctyn.value == "Y"){
- cmb_lctrejtresnspec.disabled = true;
- cmb_lctrejtresnspec.value = "";
- ipt_lctdd.value = getCurrentDate();
- ipt_lctdd.disabled = false;
- ipt_lcttm.disabled = false;
- }else{}
- ]]>
- </script>
- </select1>
- <line id="line68" class="line_3" style="x1:404px; y1:666px; x2:755px; y2:666px; "/>
- <input id="ipt_pulse" ref="/root/main/wardrecinfo/pulse" navindex="44" maxlength="3" format="9#.#" style="left:466px; top:148px; width:96px; height:19px; text-align:center; ">
- <script type="javascript" ev:event="xforms-value-changed">
- <![CDATA[
- fChkNoneInspCode("/root/main/wardrecinfo/pulse", "ipt_pulse");
- ]]>
- </script>
- </input>
- <input id="ipt_breth" ref="/root/main/wardrecinfo/breth" navindex="45" maxlength="3" format="9#.#" style="left:466px; top:172px; width:96px; height:19px; text-align:center; ">
- <script type="javascript" ev:event="xforms-value-changed">
- <![CDATA[
- fChkNoneInspCode("/root/main/wardrecinfo/breth", "ipt_breth");
- ]]>
- </script>
- </input>
- <caption id="caption20" class="cell_1" style="left:404px; top:195px; width:60px; height:23px; ">.... 체온</caption>
- <input id="ipt_highbp" ref="/root/main/wardrecinfo/highbp" navindex="42" maxlength="3" format="9#.#" style="left:466px; top:124px; width:45px; height:19px; text-align:center; ">
- <script type="javascript" ev:event="xforms-value-changed">
- <![CDATA[
- fChkNoneInspCode("/root/main/wardrecinfo/highbp", "ipt_highbp");
- ]]>
- </script>
- </input>
- <select id="chk_brethinspyn" ref="/root/main/wardrecinfo/brethinspyn" navindex="59" overflow="visible" appearance="full" style="left:409px; top:175px; width:15px; height:15px; border-style:none; ">
- <choices>
- <item>
- <label/>
- <value>Y</value>
- </item>
- </choices>
- <script type="javascript" ev:event="xforms-value-changed">
- <![CDATA[
- if(model.getValue("/root/main/wardrecinfo/brethinspyn") == "Y"){
- ipt_breth.disabled = true;
- model.resetInstanceNode("/root/main/wardrecinfo/breth");
-
- }else{
- ipt_breth.disabled = false;
- }
- ipt_breth.refresh();
- ]]>
- </script>
- </select>
- <select id="chk_bpinspyn" ref="/root/main/wardrecinfo/bpinspyn" navindex="59" overflow="visible" appearance="full" style="left:409px; top:127px; width:15px; height:15px; border-style:none; ">
- <choices>
- <item>
- <label/>
- <value>Y</value>
- </item>
- </choices>
- <script type="javascript" ev:event="xforms-value-changed">
- <![CDATA[
- if(model.getValue("/root/main/wardrecinfo/bpinspyn") == "Y"){
- ipt_highbp.disabled = true;
- ipt_lowbp.disabled = true;
- model.resetInstanceNode("/root/main/wardrecinfo/highbp");
- model.resetInstanceNode("/root/main/wardrecinfo/lowbp");
-
- }else{
- ipt_highbp.disabled = false;
- ipt_lowbp.disabled = false;
-
- }
- ipt_highbp.refresh();
- ipt_lowbp.refresh();
- ]]>
- </script>
- </select>
- <select1 id="cmb_bdtp" ref="/root/main/wardrecinfo/bdtppartcd" class="combo_default" navindex="47" appearance="minimal" style="left:512px; top:196px; width:50px; height:19px; ">
- <choices>
- <itemset nodeset="/root/init/mlist/M0375">
- <label ref="cdnm"/>
- <value ref="cdid"/>
- </itemset>
- </choices>
- </select1>
- <input id="ipt_lowbp" ref="/root/main/wardrecinfo/lowbp" navindex="43" maxlength="3" format="9#.#" style="left:512px; top:124px; width:50px; height:19px; text-align:center; ">
- <script type="javascript" ev:event="xforms-value-changed">
- <![CDATA[
- fChkNoneInspCode("/root/main/wardrecinfo/lowbp", "ipt_lowbp");
- ]]>
- </script>
- </input>
- <select id="chk_bdtpinspyn" ref="/root/main/wardrecinfo/bdtpinspyn" navindex="59" overflow="visible" appearance="full" style="left:409px; top:199px; width:15px; height:15px; border-style:none; ">
- <choices>
- <item>
- <label/>
- <value>Y</value>
- </item>
- </choices>
- <script type="javascript" ev:event="xforms-value-changed">
- <![CDATA[
- if(model.getValue("/root/main/wardrecinfo/bdtpinspyn") == "Y"){
- ipt_bdtp.disabled = true;
- cmb_bdtp.disabled = true;
- model.resetInstanceNode("/root/main/wardrecinfo/bdtp");
- model.resetInstanceNode("/root/main/wardrecinfo/bdtppartcd");
-
- }else{
- ipt_bdtp.disabled = false;
- cmb_bdtp.disabled = false;
-
- }
- ipt_bdtp.refresh();
- cmb_bdtp.refresh();
- ]]>
- </script>
- </select>
- <input id="ipt_bdtp" ref="/root/main/wardrecinfo/bdtp" navindex="46" maxlength="5" format="9#.#" style="left:466px; top:196px; width:45px; height:19px; text-align:center; ">
- <script type="javascript" ev:event="xforms-value-changed">
- <![CDATA[
- fChkNoneInspCode("/root/main/wardrecinfo/bdtp", "ipt_bdtp");
- ]]>
- </script>
- </input>
- <select id="chk_pulseinspyn" ref="/root/main/wardrecinfo/pulseinspyn" navindex="59" overflow="visible" appearance="full" style="left:409px; top:151px; width:15px; height:15px; border-style:none; ">
- <choices>
- <item>
- <label/>
- <value>Y</value>
- </item>
- </choices>
- <script type="javascript" ev:event="xforms-value-changed">
- <![CDATA[
- if(model.getValue("/root/main/wardrecinfo/pulseinspyn") == "Y"){
- ipt_pulse.disabled = true;
- model.resetInstanceNode("/root/main/wardrecinfo/pulse");
-
- }else{
- ipt_pulse.disabled = false;
- }
- ipt_pulse.refresh();
- ]]>
- </script>
- </select>
- <select id="chk_bdhtinspyn" ref="/root/main/wardrecinfo/bdhtinspyn" navindex="59" overflow="visible" appearance="full" style="left:606px; top:127px; width:15px; height:15px; border-style:none; ">
- <choices>
- <item>
- <label/>
- <value>Y</value>
- </item>
- </choices>
- <script type="javascript" ev:event="xforms-value-changed">
- <![CDATA[
- if(model.getValue("/root/main/wardrecinfo/bdhtinspyn") == "Y"){
- ipt_bdht.disabled = true;
- model.resetInstanceNode("/root/main/wardrecinfo/bdht");
-
- }else{
- ipt_bdht.disabled = false;
- }
- ipt_bdht.refresh();
- ]]>
- </script>
- </select>
- <select id="chk_bdwtinspyn" ref="/root/main/wardrecinfo/bdwtinspyn" navindex="59" overflow="visible" appearance="full" style="left:606px; top:151px; width:15px; height:15px; border-style:none; ">
- <choices>
- <item>
- <label/>
- <value>Y</value>
- </item>
- </choices>
- <script type="javascript" ev:event="xforms-value-changed">
- <![CDATA[
- if(model.getValue("/root/main/wardrecinfo/bdwtinspyn") == "Y"){
- ipt_bdwt.disabled = true;
- model.resetInstanceNode("/root/main/wardrecinfo/bdwt");
-
- }else{
- ipt_bdwt.disabled = false;
- }
- ipt_bdwt.refresh();
- ]]>
- </script>
- </select>
- <select id="chk_headgirthinspyn" ref="/root/main/wardrecinfo/headgirthinspyn" navindex="59" overflow="visible" appearance="full" style="left:606px; top:175px; width:15px; height:15px; border-style:none; ">
- <choices>
- <item>
- <label/>
- <value>Y</value>
- </item>
- </choices>
- <script type="javascript" ev:event="xforms-value-changed">
- <![CDATA[
- if(model.getValue("/root/main/wardrecinfo/headgirthinspyn") == "Y"){
- ipt_headgirth.disabled = true;
- model.resetInstanceNode("/root/main/wardrecinfo/headgirth");
-
- }else{
- ipt_headgirth.disabled = false;
- }
- ipt_headgirth.refresh();
- ]]>
- </script>
- </select>
- <select id="chk_chestgirthinspyn" ref="/root/main/wardrecinfo/chestgirthinspyn" navindex="59" overflow="visible" appearance="full" style="left:606px; top:199px; width:15px; height:15px; border-style:none; ">
- <choices>
- <item>
- <label/>
- <value>Y</value>
- </item>
- </choices>
- <script type="javascript" ev:event="xforms-value-changed">
- <![CDATA[
- if(model.getValue("/root/main/wardrecinfo/chestgirthinspyn") == "Y"){
- ipt_chestgirth.disabled = true;
- model.resetInstanceNode("/root/main/wardrecinfo/chestgirth");
-
- }else{
- ipt_chestgirth.disabled = false;
- }
- ipt_chestgirth.refresh();
- ]]>
- </script>
- </select>
- <caption id="cap_insp" style="left:680px; top:99px; width:73px; height:19px; text-align:center; ">측정불가 V</caption>
- </xhtml:body>
- </xhtml:html>
|