123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946 |
- <?xml version="1.0" encoding="EUC-KR"?>
- <?xml-stylesheet href="../../../com/commonweb/css/common.css" type="text/css" ?>
- <xhtml:html xmlns:xhtml="http://www.w3.org/1999/xhtml" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns="http://www.w3.org/2002/01/xforms" xmlns:ev="http://www.w3.org/2001/xml-events">
- <xhtml:head>
- <xhtml:title>호스피스 기록</xhtml:title>
- <model id="model1">
- <instance id="instance1">
- <root xmlns="">
- <main>
- <hospiceinfo>
- <hospicedetl>
- <pid/>
- <hngnm/>
- <sexage/>
- <rrgstno/>
- <hosecnt/>
- <inrmdd/>
- <inrmtm/>
- <inrmmthdcd/>
- <inrmacompstcd/>
- <reqdd/>
- <reqindd/>
- <intvdd/>
- <waitdd/>
- <reqtypeflag/>
- <reqtypespec/>
- <reqhospnm/>
- <reqresnflag/>
- <reqresnetc/>
- <recmpsgecd/>
- <recmpsgeetc/>
- <itrdmoodcd/>
- <mngtprescd/>
- <endawaryn/>
- <proendawaryn/>
- <cncrawaryn/>
- <procncrawaryn/>
- <agonalhopeplcecd/>
- <icdrindd/>
- <icdrroomcd/>
- <religncd/>
- <baptnm/>
- <parishchrchnm/>
- <baptismdd/>
- <emerbaptdd/>
- <sickdivser/>
- <jobcd/>
- <jobnm/>
- <edcugrdecd/>
- <marystatcd/>
- <chldrncnt/>
- <termengnm/>
- <diagcd1/>
- <diagcd2/>
- <attackdd/>
- <agonaldd/>
- <agonalplcecd/>
- <separationfamyyn/>
- <memodoryn/>
- <mmmassyn/>
- <donatyn/>
- <cureprescondspec/>
- <cureprescondetcnm/>
- <ccspec/>
- <ccetcnm/>
- <chstval/>
- <pelvval/>
- <regionvas/>
- <neckvas/>
- <waistvas/>
- <headval/>
- <etcnm/>
- <etcval/>
- <skinstatyn/>
- <skinstatspec>
- <skinstatlists>
- <skinstatlist>
- <skinstat/>
- <skinstatitem/>
- </skinstatlist>
- </skinstatlists>
- </skinstatspec>
- <emotstatspec/>
- <intesympspec/>
- <intereqspec/>
- <indd/>
- <cretno/>
- <cretdd/>
- <crettm/>
- <waitstat/>
- <status/>
- <enddd/>
- <exptresn/>
- <exptresnetc/>
- <waitenddd/>
- <waitendresn/>
- <waitendresnetc/>
- <dschdd/>
- <dschtype/>
- <dschresn/>
- <dschresnetc/>
- <dschlnk/>
- <dschlnketc/>
- <recdd/>
- <rectm/>
- <mapindd/>
- <deptcd/>
- <docucode/>
- <genogrmnm/>
- <reqdeptcd/>
- <wardcd/>
- <atdoctid/>
- <famycnst>
- <famylist>
- <famylist>
- <cnstdd/>
- <cnst/>
- </famylist>
- </famylist>
- </famycnst>
- <ecog/>
- <progrec>
- <progreclist>
- <progreclist>
- <itemnm/>
- <execdd/>
- <desnm/>
- </progreclist>
- </progreclist>
- </progrec>
- <bfrecddtm/>
- <cncrdiaghosp/>
- <sptstatspec/>
- <soclecomysituat/>
- <agonalcare/>
- <ccsympcare/>
- <sptsympcare/>
- <intesympcare/>
- <soclecomycare/>
- <agonalcaredesc/>
- <emotstatdesc/>
- <sptsymp1/>
- <sptsymp2/>
- <marystatdesc/>
- <cncrdiagdd/>
- <bfrecddtm/>
- <soclecomydesc/>
- </hospicedetl>
- <recinfo>
- </recinfo>
- </hospiceinfo>
- <hospicefamy>
- <famylist>
- <status/>
- <maincarednor/>
- <famyrel/>
- <famynm/>
- <addr/>
- <cntctel/>
- <marytypeflag/>
- <cmt/>
- <zipcd1/>
- <zipcd2/>
- <zipcdseq/>
- <detladdr/>
- <separationfamyyn/>
- <zipcode/>
- <pid/>
- <cretseqno/>
- <instcd/>
- <address/>
- </famylist>
- </hospicefamy>
- <hospiceinpt>
- <inptlist>
- <inrmdd/>
- <reqresnflag/>
- <dschdd/>
- <dschtype/>
- <dschresn/>
- <dschlnk/>
- <diagcd/>
- <atdoctnm/>
- </inptlist>
- </hospiceinpt>
- <hospicemasv>
- <masvdetl>
- <pid/>
- <cretdd/>
- <crettm/>
- <reqdeptcd/>
- <reqdd/>
- <instcd/>
- <intvdd/>
- <intvtm/>
- <recvintvnm/>
- <intvnm/>
- <corpgrntcd/>
- <soclinsuspec/>
- <econstatcd/>
- <econstatspec/>
- <mainincmspec/>
- <ordamtownspec/>
- <residncstatcd/>
- <residncstatcd2/>
- <aidassocnyn/>
- <disbefocharspec/>
- <soclstatpatflag/>
- <soclstatprocerflag/>
- <mainprocerflag/>
- <suptsysspec/>
- <nursingstresspec/>
- <funrlprepcd/>
- <funrlprepspec/>
- <cmt/>
- </masvdetl>
- </hospicemasv>
- </main>
- <send/>
- <hidden>
- <pid/>
- <cretdd/>
- <crettm/>
- <reqdeptcd/>
- <reqdd/>
- <wardcd/>
- <orddeptlist>
- <dept>
- <depthngnm/>
- <deptcd/>
- <ordclsdeptflag/>
- </dept>
- </orddeptlist>
- <drlist>
- <drid/>
- <drnm/>
- </drlist>
- </hidden>
- <init>
- <viewctrl>
- <viewctrllist/>
- </viewctrl>
- <pid/>
- <M0210list>
- <cdid/>
- <cdnm/>
- </M0210list>
- <M0211list>
- <cdid/>
- <cdnm/>
- </M0211list>
- <M0477detl>
- <cdid/>
- <cdnm/>
- </M0477detl>
- <M0202detl>
- <cdid/>
- <cdnm/>
- </M0202detl>
- <M0203list>
- <cdid/>
- <cdnm/>
- </M0203list>
- <M0264list>
- <cdid/>
- <cdnm/>
- </M0264list>
- <M0207list>
- <cdid/>
- <cdnm/>
- </M0207list>
- <M0468detl>
- <cdid/>
- <cdnm/>
- </M0468detl>
- <M0205list>
- <cdid/>
- <cdnm/>
- </M0205list>
- <P0157list>
- <cdid/>
- <cdnm/>
- </P0157list>
- <M0068detl>
- <cdid/>
- <cdnm/>
- </M0068detl>
- <M0069list>
- <cdid/>
- <cdnm/>
- </M0069list>
- <M0206list>
- <cdid/>
- <cdnm/>
- </M0206list>
- <M0294detl>
- <cdid/>
- <cdnm/>
- </M0294detl>
- <M0297detl>
- <cdid/>
- <cdnm/>
- </M0297detl>
- <M0298detl>
- <cdid/>
- <cdnm/>
- </M0298detl>
- <M0299detl>
- <cdid/>
- <cdnm/>
- </M0299detl>
- <M0300detl>
- <cdid/>
- <cdnm/>
- </M0300detl>
- <M0301detl>
- <cdid/>
- <cdnm/>
- </M0301detl>
- <M0302detl>
- <cdid/>
- <cdnm/>
- </M0302detl>
- <M0303detl>
- <cdid/>
- <cdnm/>
- </M0303detl>
- <M0304detl>
- <cdid/>
- <cdnm/>
- </M0304detl>
- <M0305detl>
- <cdid/>
- <cdnm/>
- </M0305detl>
- <M0306detl>
- <cdid/>
- <cdnm/>
- </M0306detl>
- <M0307detl>
- <cdid/>
- <cdnm/>
- </M0307detl>
- <M0308detl>
- <cdid/>
- <cdnm/>
- </M0308detl>
- <P0008detl>
- <cdid/>
- <cdnm/>
- </P0008detl>
- <A0519detl>
- <cdid/>
- <cdnm/>
- </A0519detl>
- <A0520detl>
- <cdid/>
- <cdnm/>
- </A0520detl>
- <M0474detl>
- <cdid/>
- <cdnm/>
- </M0474detl>
- <M0475detl>
- <cdid/>
- <cdnm/>
- </M0475detl>
- <M0204list>
- <cdid/>
- <cdnm/>
- </M0204list>
- <diagsuplist>
- <cdnm/>
- <cdid/>
- </diagsuplist>
- <diaglowlist>
- <cdnm/>
- <cdid/>
- </diaglowlist>
- <hardcodeinfo>
- <cdnm/>
- <cdid/>
- </hardcodeinfo>
- <codeinfo/>
- </init>
- <temp>
- <hospicedetl>
- <chstval/>
- <pelvval/>
- <regionvas/>
- <neckvas/>
- <waistvas/>
- <headval/>
- <etcval/>
- <agonal49/>
- <agonal365/>
- </hospicedetl>
- <hospicemasv/>
- <hospiceinfo/>
- </temp>
- <tmp>
- <printinfo>
- <cond>
- <baseyn/>
- <famyyn/>
- <hospiceyn/>
- <hosinfoyn/>
- <recinfo/>
- <famycnstyn/>
- </cond>
- </printinfo>
- </tmp>
- </root>
- </instance>
- <submission id="TRZBC00101" mediatype="application/x-www-form-urlencoded" method="post"/>
- <submission id="TRMNH01501" mediatype="application/x-www-form-urlencoded" method="post" ref="/root/send" resultref="/root/main/hospiceinfo"/>
- <submission id="TXMNH01502" mediatype="application/x-www-form-urlencoded" method="post" ref="/root/send"/>
- <submission id="TXMNH01503" mediatype="application/x-www-form-urlencoded" method="post" ref="/root/send"/>
- <submission id="TRMNH01503" mediatype="application/x-www-form-urlencoded" method="post" ref="/root/send" resultref="/root/main/hospicefamy"/>
- <submission id="TRMNH01504" mediatype="application/x-www-form-urlencoded" method="post" ref="/root/send" resultref="/root/main/hospiceinpt"/>
- <submission id="TRMNH01505" mediatype="application/x-www-form-urlencoded" method="post" ref="/root/send" resultref="/root/main/hospicemasv"/>
- <submission id="TRMNH02905" mediatype="application/x-www-form-urlencoded" method="post" ref="/root/send" resultref="/root/init/diagsuplist"/>
- <submission id="TRMNH02906" mediatype="application/x-www-form-urlencoded" method="post" ref="/root/send" resultref="/root/init/diaglowlist"/>
- <submission id="TRMNH02903" mediatype="application/x-www-form-urlencoded" method="post" ref="/root/send" resultref="/root/hidden/drlist"/>
- <submission id="TRZSD00206" mediatype="application/x-www-form-urlencoded" method="post" replace="instance"/>
- <submission id="TRMNP00323" mediatype="application/x-www-form-urlencoded" method="post" ref="/root/send" replace="instance" resultref="/root/init/viewctrl/viewctrllist"/>
- <submission id="TRMNP04903" mediatype="application/x-www-form-urlencoded" method="post" ref="/root/send/reqdata" resultref="/root/init/hardcodeinfo"/>
- <submission id="TRMNW00001" mediatype="application/x-www-form-urlencoded" method="post" ref="/root/send/reqdata" resultref="/root/init/codeinfo"/>
- <script type="javascript" src="../../../emr/agonalcareweb/js/SMMNH01500.js"/>
- <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/tfHelper.js"/>
- <script type="javascript" src="../../../com/commonweb/js/stringHelper.js"/>
- <script type="javascript" src="../../../emr/carecomweb/js/CareCom.js"/>
- <script type="javascript" src="../../../com/basiccodeweb/js/ZBC001.js"/>
- <script type="javascript" src="../../../com/departmentcodeweb/js/ZSD001.js"/>
- <script type="javascript" ev:event="xforms-ready">
- <![CDATA[
-
- //호스피스 환자관리에서 가져오는 paramter를 pid, cretdt, reqdeptcd,reqdd,wardcd 임시변수에 저장
- var pid = opener.javascript.getParameter("pid");
- var cretdd = opener.javascript.getParameter("cretdd");
- var crettm = opener.javascript.getParameter("crettm");
- var reqdeptcd = opener.javascript.getParameter("reqdeptcd");
- var reqdd = opener.javascript.getParameter("reqdd");
- var wardcd = opener.javascript.getParameter('wardcd');
-
- model.setValue("/root/hidden/pid",pid);
- model.setValue("/root/hidden/cretdd",cretdd);
- model.setValue("/root/hidden/crettm",crettm);
- model.setValue("/root/hidden/reqdeptcd",reqdeptcd);
- model.setValue("/root/hidden/reqdd",reqdd);
- model.setValue("/root/hidden/wardcd",wardcd);
-
- var pCode = "'044'"; // 조회할 CdGrupID 코드정보
- var pDate = getCurrentDate(); //조회기준일자
-
- model.makeValue("/root/send/reqdata/cdgrupid", pCode);
- model.makeValue("/root/send/reqdata/srchdd", pDate);
- submit("TRMNW00001");
-
- //호스피스병도 부서코드 조회20090419
- model.removenode("/root/send");
- model.makeValue("/root/send/cdgrupid", "044");
- submit("TRMNP00323", false);
-
- copyNodesetType("/root/init/viewctrl/viewctrllist/viewctrlinfo", "/root/init/codeinfo/codelist");
-
- model.removenode("/root/send");
- model.makeValue("/root/send/reqdata/cdgrupid", "122");//호스피스 임종장소
- model.makeValue("/root/send/reqdata/supcdid", "");//서브구분
- model.makeValue("/root/send/reqdata/cdid", "");//서브구분
- submit("TRMNP04903", false);
-
- cmb_waitstat.visible = false;
- model.removenodeset("/root/main/hospicefamy/famylist");
- model.removenodeset("/root/main/hospiceinpt/inptlist");
- model.removenodeset("/root/main/hospiceinfo/hospicedetl/skinstatspec/skinstatlists/skinstatlist");
-
- //공통코드 로드
- zbcfGetCodeList(new Array("M0210","M0211","M0477","M0202","M0203"
- ,"M0264","M0207","M0468","M0205","P0157"
- ,"M0068","M0069","M0206"
- ,"M0294","M0297","M0298","M0299","M0300"
- ,"M0301","M0302","M0303","M0304","M0305"
- ,"M0306","M0307","M0308"
- ,"P0008","A0519","A0520"
- ,"M0474","M0475","M0204"),
- new Array("/root/init/M0210list","/root/init/M0211list","/root/init/M0477detl","/root/init/M0202detl","/root/init/M0203list"
- ,"/root/init/M0264list","/root/init/M0207list","/root/init/M0468detl","/root/init/M0205list","/root/init/P0157list"
- ,"/root/init/M0068detl","/root/init/M0069list","/root/init/M0206list"
- ,"/root/init/M0294detl","/root/init/M0297detl","/root/init/M0298detl","/root/init/M0299detl","/root/init/M0300detl"
- ,"/root/init/M0301detl","/root/init/M0302detl","/root/init/M0303detl","/root/init/M0304detl","/root/init/M0305detl"
- ,"/root/init/M0306detl","/root/init/M0307detl","/root/init/M0308detl"
- ,"/root/init/P0008detl","/root/init/A0519detl","/root/init/A0520detl"
- ,"/root/init/M0474detl","/root/init/M0475detl","/root/init/M0204list"));
-
-
- ipt_cureprescondetcnm.disabled = true;
- ipt_ccetcnm.disabled = true;
- ipt_reqdd.disabled = true;
- ipt_reqindd.disabled = true;
- ipt_chstval.disabled = true;
- ipt_pelvval.disabled = true;
- ipt_regionvas.disabled = true;
- ipt_neckvas.disabled = true;
- ipt_waistvas.disabled = true;
- ipt_headval.disabled = true;
- ipt_etcval.disabled = true;
- ipt_etcnm.disabled = true;
- ipt_agonal49.disabled = true;
- ipt_agonal365.disabled = true;
- ipt_baptnm.disabled = true;
- ipt_parishchrchnm.disabled = true;
- ipt_baptismdd.disabled = true;
- ipt_emerbaptdd.disabled = true;
- ipt_jobnm.disabled = true;
- cmb_residncstatcd2.disabled = true;
- cmb_inrmmthdcd.disabled = true;
- cmb_inrmacompstcd.disabled = true;
- cmb_agonalplcecd.disabled = true;
-
- // 간호외래진료부서콤보 (특정하위부서를 포함- 분만실, 육아상담실, 인공신장실)
- zsdfGetCareOutOrderDepartmentList(getUserInfo("dutplceinstcd"), "/root/hidden/orddeptlist", getCurrentDate());
-
- //호스피스 기록지 조회
- fSearch();
-
- ]]>
- </script>
- <script type="javascript" ev:event="xforms-model-construct-done">
- <![CDATA[
- model.copyNode("/root/temp/hospicemasv", "/root/main/hospicemasv");
- ]]>
- </script>
- </model>
- <script type="javascript">
- <![CDATA[
- var soclstatpatflag ; //환자
- var soclstatprocerflag ; //보호자
- var mainprocerflag ; //주보호자
- var ordamtownflag ; //진료비 부담자
- var deptcd; //부서
- var atdoctnm; //주치의
- var econstatcd; //경제상태
-
- ]]>
- </script>
- </xhtml:head>
- <xhtml:body guideline="1,-3;" 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:189px; height:15px; font-family:돋움체; ">호스피스 초기상담지</caption>
- <caption id="caption4" class="patient_text_black" style="left:922px; top:0px; width:272px; "/>
- </group>
- <group id="group3" scroll="auto" style="left:0px; top:13px; width:1195px; height:652px; ">
- <caption id="caption2" class="cell_1" style="left:171px; top:11px; width:74px; height:23px; text-align:center; vertical-align:middle; ">성 명</caption>
- <caption id="caption13" class="cell_1" style="left:0px; top:11px; width:74px; height:23px; text-align:center; vertical-align:middle; ">등록번호</caption>
- <input id="input1" class="input_search" style="left:77px; top:13px; width:91px; height:19px; "/>
- <input id="input3" class="input_search" style="left:248px; top:13px; width:71px; height:19px; "/>
- <line id="line2" class="line_1" style="x1:0px; y1:6px; x2:1194px; y2:6px; "/>
- <caption id="caption69" class="tit_2" style="left:0px; top:44px; width:100px; height:13px; ">입실정보</caption>
- <caption id="caption1" class="cell_1" style="left:322px; top:11px; width:74px; height:23px; text-align:center; vertical-align:middle; ">성별/나이</caption>
- <input id="input2" class="input_search" style="left:399px; top:13px; width:71px; height:19px; "/>
- <caption id="caption3" class="cell_1" style="left:473px; top:11px; width:74px; height:23px; text-align:center; vertical-align:middle; ">주민번호</caption>
- <input id="input4" class="input_search" style="left:550px; top:13px; width:109px; height:19px; "/>
- <caption id="caption5" class="cell_1" style="left:662px; top:11px; width:74px; height:23px; text-align:center; vertical-align:middle; ">입원횟수</caption>
- <input id="input5" class="input_search" style="left:738px; top:13px; width:43px; height:19px; "/>
- <line id="line1" class="line_1" style="x1:0px; y1:59px; x2:282px; y2:59px; "/>
- <caption id="caption7" class="cell_1" style="left:0px; top:64px; width:74px; height:23px; text-align:center; vertical-align:middle; ">입실일시</caption>
- <input id="ipt_fbrthdd" ref="/root/main/cond/fbrthdd" class="input_default" inputtype="date" style="left:77px; top:66px; width:141px; height:19px; "/>
- <input id="input6" class="input_search" style="left:220px; top:66px; width:61px; height:19px; "/>
- <caption id="caption8" class="cell_1" style="left:0px; top:89px; width:74px; height:23px; text-align:center; vertical-align:middle; ">입실일시</caption>
- <line id="line3" class="line_2" style="x1:0px; y1:88px; x2:282px; y2:88px; "/>
- <line id="line4" class="line_2" style="x1:0px; y1:113px; x2:282px; y2:113px; "/>
- <caption id="caption9" class="cell_1" style="left:0px; top:114px; width:97px; height:23px; text-align:center; vertical-align:middle; ">입실시동반자</caption>
- <select1 id="cmb_reqtypeflag" ref="/root/main/hospiceinfo/hospicedetl/reqtypeflag" class="combo_default" navindex="61" appearance="minimal" style="left:77px; top:91px; width:204px; height:19px; ">
- <choices>
- <item>
- <label>본원</label>
- <value>1</value>
- </item>
- <item>
- <label>타원</label>
- <value>2</value>
- </item>
- </choices>
- </select1>
- <line id="line6" class="line_3" style="x1:0px; y1:35px; x2:1194px; y2:35px; "/>
- <line id="line5" class="line_3" style="x1:0px; y1:138px; x2:282px; y2:138px; "/>
- <select1 id="combo1" ref="/root/main/hospiceinfo/hospicedetl/reqtypeflag" class="combo_default" navindex="60" appearance="minimal" style="left:100px; top:116px; width:181px; height:19px; ">
- <choices>
- <item>
- <label>본원</label>
- <value>1</value>
- </item>
- <item>
- <label>타원</label>
- <value>2</value>
- </item>
- </choices>
- </select1>
- <select1 id="combo3" ref="/root/main/hospiceinfo/hospicedetl/reqtypeflag" class="combo_default" navindex="63" appearance="minimal" style="left:126px; top:194px; width:156px; height:19px; ">
- <choices>
- <item>
- <label>본원</label>
- <value>1</value>
- </item>
- <item>
- <label>타원</label>
- <value>2</value>
- </item>
- </choices>
- </select1>
- <input id="input7" ref="/root/main/cond/fbrthdd" class="input_default" inputtype="date" style="left:40px; top:169px; width:100px; height:19px; "/>
- <line id="line7" class="line_1" style="x1:0px; y1:162px; x2:282px; y2:162px; "/>
- <caption id="caption10" class="tit_2" style="left:0px; top:147px; width:100px; height:13px; ">호스피스 정보</caption>
- <line id="line8" class="line_2" style="x1:0px; y1:191px; x2:282px; y2:191px; "/>
- <caption id="caption11" class="cell_1" style="left:0px; top:167px; width:37px; height:23px; text-align:center; vertical-align:middle; ">의뢰</caption>
- <line id="line9" class="line_2" style="x1:0px; y1:216px; x2:282px; y2:216px; "/>
- <caption id="caption12" class="cell_1" style="left:0px; top:192px; width:74px; height:23px; text-align:center; vertical-align:middle; ">의뢰형태</caption>
- <line id="line10" class="line_3" style="x1:0px; y1:492px; x2:282px; y2:492px; "/>
- <!--(20101205) 경북대
- <caption id="caption14" class="cell_1" style="left:0px; top:217px; width:122px; height:23px; text-align:center; vertical-align:middle; ">의뢰과/주치의</caption>
- -->
- <caption id="caption14" class="cell_1" style="left:0px; top:217px; width:122px; height:23px; text-align:center; vertical-align:middle; ">의뢰과/주치의</caption>
- <!--(20101205) 경북대 -->
- <input id="input8" ref="/root/main/cond/fbrthdd" class="input_default" inputtype="date" style="left:183px; top:169px; width:99px; height:19px; "/>
- <caption id="caption15" class="cell_1" style="left:143px; top:167px; width:37px; height:23px; text-align:center; vertical-align:middle; ">면담</caption>
- <select1 id="radio2" ref="/root/hidden/pamcgubun" class="radio_search" appearance="full" cols="4" overflow="visible" style="left:77px; top:194px; width:45px; height:20px; background-color:transparent; border-style:none; ">
- <choices>
- <item>
- <label>본원</label>
- <value>1</value>
- </item>
- </choices>
- </select1>
- <caption id="caption16" class="cell_1" style="left:0px; top:242px; width:122px; height:23px; text-align:center; vertical-align:middle; ">이실전병실/입원일</caption>
- <line id="line11" class="line_2" style="x1:0px; y1:241px; x2:282px; y2:241px; "/>
- <input id="input9" class="input_search" style="left:125px; top:219px; width:156px; height:19px; "/>
- <input id="input10" class="input_search" style="left:125px; top:244px; width:156px; height:19px; "/>
- <line id="line12" class="line_2" style="x1:0px; y1:266px; x2:282px; y2:266px; "/>
- <select1 id="radio1" ref="/root/hidden/pamcgubun" class="radio_search" appearance="full" cols="4" overflow="visible" style="left:75px; top:269px; width:45px; height:20px; background-color:transparent; border-style:none; ">
- <choices>
- <item>
- <label>타원</label>
- <value>1</value>
- </item>
- </choices>
- </select1>
- <input id="input11" class="input_search" style="left:125px; top:269px; width:156px; height:19px; "/>
- <line id="line13" class="line_2" style="x1:0px; y1:290px; x2:282px; y2:290px; "/>
- <caption id="caption17" class="cell_1" style="left:0px; top:292px; width:74px; height:23px; text-align:center; vertical-align:middle; ">의뢰사유</caption>
- <line id="line14" class="line_2" style="x1:0px; y1:316px; x2:282px; y2:316px; "/>
- <caption id="caption18" class="cell_1" style="left:0px; top:317px; width:74px; height:23px; text-align:center; vertical-align:middle; ">추천경유</caption>
- <line id="line15" class="line_2" style="x1:0px; y1:341px; x2:282px; y2:341px; "/>
- <caption id="caption19" class="cell_1" style="left:0px; top:342px; width:74px; height:23px; text-align:center; vertical-align:middle; ">병인식</caption>
- <select1 id="combo2" ref="/root/main/hospiceinfo/hospicedetl/reqtypeflag" class="combo_default" navindex="62" appearance="minimal" style="left:77px; top:294px; width:204px; height:19px; ">
- <choices>
- <item>
- <label>본원</label>
- <value>1</value>
- </item>
- <item>
- <label>타원</label>
- <value>2</value>
- </item>
- </choices>
- </select1>
- <select1 id="combo4" ref="/root/main/hospiceinfo/hospicedetl/reqtypeflag" class="combo_default" navindex="64" appearance="minimal" style="left:77px; top:319px; width:204px; height:19px; ">
- <choices>
- <item>
- <label>본원</label>
- <value>1</value>
- </item>
- <item>
- <label>타원</label>
- <value>2</value>
- </item>
- </choices>
- </select1>
- <select1 id="cmb_patawaryn" ref="/root/main/hospiceinfo/hospicedetl/patawaryn" class="combo_default" navindex="74" appearance="minimal" style="left:129px; top:344px; width:48px; height:19px; ">
- <choices>
- <item>
- <label>Y</label>
- <value>Y</value>
- </item>
- <item>
- <label>N</label>
- <value>N</value>
- </item>
- </choices>
- </select1>
- <select1 id="cmb_procerawaryn" ref="/root/main/hospiceinfo/hospicedetl/procerawaryn" class="combo_default" navindex="75" appearance="minimal" style="left:233px; top:344px; width:48px; height:19px; ">
- <choices>
- <item>
- <label>Y</label>
- <value>Y</value>
- </item>
- <item>
- <label>N</label>
- <value>N</value>
- </item>
- </choices>
- </select1>
- <caption id="caption38" class="cell_1" style="left:77px; top:342px; width:49px; height:23px; text-align:center; vertical-align:middle; ">환자</caption>
- <caption id="caption39" class="cell_1" style="left:180px; top:342px; width:49px; height:23px; text-align:center; vertical-align:middle; ">보호자</caption>
- <caption id="caption20" class="cell_1" style="left:0px; top:367px; width:74px; height:23px; text-align:center; vertical-align:middle; ">대기일수</caption>
- <line id="line16" class="line_2" style="x1:0px; y1:366px; x2:282px; y2:366px; "/>
- <input id="input12" class="input_search" style="left:77px; top:369px; width:61px; height:19px; "/>
- <caption id="caption21" class="cell_1" style="left:143px; top:367px; width:74px; height:23px; text-align:center; vertical-align:middle; ">방문횟수</caption>
- <input id="input13" class="input_search" style="left:220px; top:369px; width:61px; height:19px; "/>
- <line id="line17" class="line_2" style="x1:0px; y1:391px; x2:282px; y2:391px; "/>
- <line id="line18" class="line_2" style="x1:0px; y1:416px; x2:282px; y2:416px; "/>
- <select1 id="combo5" ref="/root/main/hospiceinfo/hospicedetl/reqtypeflag" class="combo_default" navindex="66" appearance="minimal" style="left:77px; top:394px; width:204px; height:19px; ">
- <choices>
- <item>
- <label>본원</label>
- <value>1</value>
- </item>
- <item>
- <label>타원</label>
- <value>2</value>
- </item>
- </choices>
- </select1>
- <caption id="caption22" class="cell_1" style="left:0px; top:392px; width:74px; height:23px; text-align:center; vertical-align:middle; ">지연사유</caption>
- <caption id="caption23" class="cell_1" style="left:0px; top:417px; width:122px; height:23px; text-align:center; vertical-align:middle; ">소개받았을때 기분</caption>
- <select1 id="combo6" ref="/root/main/hospiceinfo/hospicedetl/reqtypeflag" class="combo_default" navindex="68" appearance="minimal" style="left:125px; top:419px; width:156px; height:19px; ">
- <choices>
- <item>
- <label>본원</label>
- <value>1</value>
- </item>
- <item>
- <label>타원</label>
- <value>2</value>
- </item>
- </choices>
- </select1>
- <caption id="caption24" class="cell_1" style="left:0px; top:443px; width:122px; height:23px; text-align:center; vertical-align:middle; ">호스피스 사전 인지</caption>
- <line id="line19" class="line_2" style="x1:0px; y1:441px; x2:282px; y2:441px; "/>
- <select1 id="combo7" ref="/root/main/hospiceinfo/hospicedetl/reqtypeflag" class="combo_default" navindex="69" appearance="minimal" style="left:125px; top:445px; width:156px; height:19px; ">
- <choices>
- <item>
- <label>본원</label>
- <value>1</value>
- </item>
- <item>
- <label>타원</label>
- <value>2</value>
- </item>
- </choices>
- </select1>
- <caption id="caption25" class="cell_1" style="left:0px; top:468px; width:122px; height:23px; text-align:center; vertical-align:middle; ">임종 원하는 장소</caption>
- <line id="line20" class="line_2" style="x1:0px; y1:466px; x2:282px; y2:466px; "/>
- <select1 id="combo8" ref="/root/main/hospiceinfo/hospicedetl/reqtypeflag" class="combo_default" navindex="72" appearance="minimal" style="left:125px; top:470px; width:156px; height:19px; ">
- <choices>
- <item>
- <label>본원</label>
- <value>1</value>
- </item>
- <item>
- <label>타원</label>
- <value>2</value>
- </item>
- </choices>
- </select1>
- <select1 id="combo10" ref="/root/main/hospiceinfo/hospicedetl/reqtypeflag" class="combo_default" navindex="65" appearance="minimal" style="left:375px; top:66px; width:251px; height:19px; ">
- <choices>
- <item>
- <label>본원</label>
- <value>1</value>
- </item>
- <item>
- <label>타원</label>
- <value>2</value>
- </item>
- </choices>
- </select1>
- <line id="line21" class="line_1" style="x1:315px; y1:59px; x2:627px; y2:59px; "/>
- <caption id="caption26" class="tit_2" style="left:315px; top:44px; width:100px; height:13px; ">기본 인적사항</caption>
- <line id="line22" class="line_2" style="x1:315px; y1:87px; x2:627px; y2:87px; "/>
- <caption id="caption27" class="cell_1" style="left:315px; top:64px; width:57px; height:23px; text-align:center; vertical-align:middle; ">종교</caption>
- <line id="line23" class="line_2" style="x1:315px; y1:113px; x2:627px; y2:113px; "/>
- <caption id="caption28" class="cell_1" style="left:315px; top:89px; width:57px; height:23px; text-align:center; vertical-align:middle; ">세례명</caption>
- <input id="input14" class="input_search" style="left:375px; top:91px; width:94px; height:19px; "/>
- <caption id="caption29" class="cell_1" style="left:315px; top:114px; width:57px; height:23px; text-align:center; vertical-align:middle; ">영세일</caption>
- <input id="input15" ref="/root/main/cond/fbrthdd" class="input_default" inputtype="date" style="left:375px; top:116px; width:94px; height:19px; "/>
- <caption id="caption30" class="cell_1" style="left:472px; top:89px; width:57px; height:23px; text-align:center; vertical-align:middle; ">본당</caption>
- <input id="input16" class="input_search" style="left:532px; top:91px; width:94px; height:19px; "/>
- <input id="input17" ref="/root/main/cond/fbrthdd" class="input_default" inputtype="date" style="left:532px; top:116px; width:94px; height:19px; "/>
- <caption id="caption31" class="cell_1" style="left:472px; top:114px; width:57px; height:23px; text-align:center; vertical-align:middle; ">대세일</caption>
- <line id="line24" class="line_2" style="x1:315px; y1:138px; x2:627px; y2:138px; "/>
- <input id="input18" ref="/root/main/cond/fbrthdd" class="input_default" inputtype="date" style="left:375px; top:141px; width:94px; height:19px; "/>
- <caption id="caption32" class="cell_1" style="left:315px; top:139px; width:57px; height:23px; text-align:center; vertical-align:middle; ">병자성사</caption>
- <caption id="caption33" class="cell_1" style="left:315px; top:164px; width:57px; height:23px; text-align:center; vertical-align:middle; ">직업</caption>
- <line id="line25" class="line_2" style="x1:315px; y1:163px; x2:627px; y2:163px; "/>
- <select1 id="combo9" ref="/root/main/hospiceinfo/hospicedetl/reqtypeflag" class="combo_default" navindex="73" appearance="minimal" style="left:375px; top:166px; width:94px; height:19px; ">
- <choices>
- <item>
- <label>본원</label>
- <value>1</value>
- </item>
- <item>
- <label>타원</label>
- <value>2</value>
- </item>
- </choices>
- </select1>
- <caption id="caption34" class="cell_1" style="left:472px; top:164px; width:57px; height:23px; text-align:center; vertical-align:middle; ">교육정도</caption>
- <select1 id="combo11" ref="/root/main/hospiceinfo/hospicedetl/reqtypeflag" class="combo_default" navindex="67" appearance="minimal" style="left:532px; top:166px; width:94px; height:19px; ">
- <choices>
- <item>
- <label>본원</label>
- <value>1</value>
- </item>
- <item>
- <label>타원</label>
- <value>2</value>
- </item>
- </choices>
- </select1>
- <caption id="caption35" class="cell_1" style="left:315px; top:189px; width:57px; height:23px; text-align:center; vertical-align:middle; ">결혼형태</caption>
- <line id="line26" class="line_2" style="x1:313px; y1:188px; x2:625px; y2:188px; "/>
- <caption id="caption36" class="cell_1" style="left:472px; top:189px; width:57px; height:23px; text-align:center; vertical-align:middle; ">자녀수</caption>
- <select1 id="combo13" ref="/root/main/hospiceinfo/hospicedetl/reqtypeflag" class="combo_default" navindex="71" appearance="minimal" style="left:375px; top:191px; width:94px; height:19px; ">
- <choices>
- <item>
- <label>본원</label>
- <value>1</value>
- </item>
- <item>
- <label>타원</label>
- <value>2</value>
- </item>
- </choices>
- </select1>
- <input id="input19" class="input_search" style="left:532px; top:191px; width:94px; height:19px; "/>
- <caption id="caption37" class="cell_1" style="left:472px; top:392px; width:57px; height:23px; text-align:center; vertical-align:middle; ">임종장소</caption>
- <caption id="caption40" class="cell_1" style="left:472px; top:417px; width:57px; height:23px; text-align:center; vertical-align:middle; ">기일</caption>
- <line id="line28" class="line_2" style="x1:315px; y1:415px; x2:627px; y2:415px; "/>
- <line id="line29" class="line_2" style="x1:315px; y1:440px; x2:627px; y2:440px; "/>
- <input id="input21" ref="/root/main/cond/fbrthdd" class="input_default" inputtype="date" style="left:375px; top:419px; width:94px; height:19px; "/>
- <input id="input22" class="input_search" style="left:532px; top:394px; width:94px; height:19px; "/>
- <input id="input23" ref="/root/main/cond/fbrthdd" class="input_default" inputtype="date" style="left:532px; top:419px; width:94px; height:19px; "/>
- <caption id="caption41" class="cell_1" style="left:315px; top:392px; width:57px; height:23px; text-align:center; vertical-align:middle; ">임종일</caption>
- <caption id="caption42" class="cell_1" style="left:315px; top:417px; width:57px; height:23px; text-align:center; vertical-align:middle; ">49제</caption>
- <input id="input20" ref="/root/main/cond/fbrthdd" class="input_default" inputtype="date" style="left:375px; top:394px; width:94px; height:19px; "/>
- <caption id="caption43" class="cell_1" style="left:472px; top:467px; width:79px; height:23px; text-align:center; vertical-align:middle; ">시신기증</caption>
- <caption id="caption44" class="cell_1" style="left:315px; top:443px; width:79px; height:23px; text-align:center; vertical-align:middle; ">사별가족방문</caption>
- <caption id="caption45" class="cell_1" style="left:315px; top:467px; width:79px; height:23px; text-align:center; vertical-align:middle; ">월미사참석</caption>
- <line id="line27" class="line_2" style="x1:315px; y1:465px; x2:627px; y2:465px; "/>
- <caption id="caption46" class="cell_1" style="left:472px; top:443px; width:79px; height:23px; text-align:center; vertical-align:middle; ">추모식행사</caption>
- <line id="line30" class="line_3" style="x1:315px; y1:491px; x2:627px; y2:491px; "/>
- <select1 id="radio3" ref="/root/hidden/pamcgubun" class="radio_search" appearance="full" cols="4" overflow="visible" style="left:397px; top:445px; width:71px; height:20px; background-color:transparent; border-style:none; ">
- <choices>
- <item>
- <label>무</label>
- <value>1</value>
- </item>
- <item>
- <label>유</label>
- <value>2</value>
- </item>
- </choices>
- </select1>
- <select1 id="radio4" ref="/root/hidden/pamcgubun" class="radio_search" appearance="full" cols="4" overflow="visible" style="left:555px; top:445px; width:71px; height:20px; background-color:transparent; border-style:none; ">
- <choices>
- <item>
- <label>무</label>
- <value>1</value>
- </item>
- <item>
- <label>유</label>
- <value>2</value>
- </item>
- </choices>
- </select1>
- <select1 id="radio5" ref="/root/hidden/pamcgubun" class="radio_search" appearance="full" cols="4" overflow="visible" style="left:397px; top:469px; width:71px; height:20px; background-color:transparent; border-style:none; ">
- <choices>
- <item>
- <label>무</label>
- <value>1</value>
- </item>
- <item>
- <label>유</label>
- <value>2</value>
- </item>
- </choices>
- </select1>
- <select1 id="radio6" ref="/root/hidden/pamcgubun" class="radio_search" appearance="full" cols="4" overflow="visible" style="left:555px; top:469px; width:71px; height:20px; background-color:transparent; border-style:none; ">
- <choices>
- <item>
- <label>무</label>
- <value>1</value>
- </item>
- <item>
- <label>유</label>
- <value>2</value>
- </item>
- </choices>
- </select1>
- <line id="line31" class="line_1" style="x1:315px; y1:387px; x2:627px; y2:387px; "/>
- <caption id="caption47" class="tit_2" style="left:315px; top:372px; width:100px; height:13px; ">사별가족 관리</caption>
- <shape id="rectangle1" appearance="rectangle" style="left:375px; top:212px; width:251px; height:152px; "/>
- <img id="img1" style="left:376px; top:213px; width:249px; height:150px; background-stretch:stretch; "/>
- <caption id="caption48" class="cell_1" style="left:315px; top:213px; width:57px; height:23px; text-align:center; vertical-align:middle; ">가계도</caption>
- <caption id="caption49" class="tit_2" style="left:0px; top:500px; width:100px; height:14px; ">가족사항</caption>
- <line id="line32" class="line_1" style="x1:0px; y1:515px; x2:627px; y2:515px; "/>
- <line id="line33" class="line_1" style="x1:0px; y1:634px; x2:1194px; y2:634px; "/>
- <caption id="caption50" class="tit_2" style="left:0px; top:619px; width:69px; height:13px; vertical-align:middle; ">입원내역</caption>
- </group>
- <group id="group2" scroll="auto" style="left:0px; top:13px; width:1195px; height:747px; ">
- <caption id="caption51" class="cell_1" style="left:356px; top:11px; width:74px; height:23px; text-align:center; vertical-align:middle; ">환자명</caption>
- <caption id="caption52" class="cell_1" style="left:205px; top:11px; width:74px; height:23px; text-align:center; vertical-align:middle; ">등록번호</caption>
- <output id="opt_pid" ref="/root/main/hospiceinfo/hospicedetl/pid" class="output_fix" maxlength="10" style="left:282px; top:13px; width:71px; height:19px; ">
- <script type="javascript" ev:event="onkeyup">
- <![CDATA[
- if(event.keyCode == "13"){
- setInputNodeCurText(); // 현재 인풋값 노드 반영
- fSearch();
- }
- ]]>
- </script>
- </output>
- <output id="opt_hngnm" ref="/root/main/hospiceinfo/hospicedetl/hngnm" class="output_fix" style="left:433px; top:13px; width:71px; height:19px; "/>
- <line id="line34" class="line_1" style="x1:0px; y1:6px; x2:1194px; y2:6px; "/>
- <caption id="caption53" class="tit_2" style="left:0px; top:44px; width:100px; height:13px; ">입실정보</caption>
- <caption id="caption54" class="cell_1" style="left:507px; top:11px; width:64px; height:23px; text-align:center; vertical-align:middle; ">S/A</caption>
- <output id="opt_sexage" ref="/root/main/hospiceinfo/hospicedetl/sexage" class="output_fix" style="left:573px; top:13px; width:51px; height:19px; "/>
- <caption id="caption55" class="cell_1" style="left:627px; top:11px; width:74px; height:23px; text-align:center; vertical-align:middle; ">주민번호</caption>
- <output id="opt_rrgstno" ref="/root/main/hospiceinfo/hospicedetl/rrgstno" class="output_fix" style="left:703px; top:13px; width:109px; height:19px; "/>
- <caption id="caption56" class="cell_1" style="left:815px; top:11px; width:74px; height:23px; text-align:center; vertical-align:middle; ">입실횟수</caption>
- <output id="opt_hosecnt" ref="/root/main/hospiceinfo/hospicedetl/hosecnt" class="output_fix" style="left:891px; top:13px; width:43px; height:19px; "/>
- <line id="line35" class="line_1" style="x1:0px; y1:59px; x2:295px; y2:59px; "/>
- <input id="ipt_inrmdd" ref="/root/main/hospiceinfo/hospicedetl/inrmdd" class="input_default" navindex="1" inputtype="date" style="left:100px; top:65px; width:121px; height:19px; ">
- <script type="javascript" ev:event="xforms-value-changed">
- <![CDATA[
- //실제 입원 환자중 호스피스 병동이 아니면서 입실일을 입력하려고 하면 경고메세지 뿌려줄껏
- var status = model.getValue('/root/main/hospiceinfo/hospicedetl/status');
- var wardcd = model.getValue('/root/main/hospiceinfo/hospicedetl/wardcd');
- var basewardcd = model.getValue("/root/init/viewctrl/viewctrllist/viewctrlinfo/cdnm");
- if(wardcd != basewardcd && (status == 'O' || status == 'S')){
- messageBox('호스피스병동에 입원한 환자가 아니므로 입실일을 입력', 'E001');
- ipt_inrmdd.value = "";
- ipt_inrmtm.value = "";
- return;
- }
-
- //입실일시 있을시 입실방법 , 입실시 동반자 활성화
- if ((ipt_inrmdd.value == '' )||(ipt_inrmdd.value == null )) {
- cmb_inrmmthdcd.disabled = true;
- cmb_inrmacompstcd.disabled = true;
- }else{
- cmb_inrmmthdcd.disabled = false;
- cmb_inrmacompstcd.disabled = false;
- }
- ]]>
- </script>
- </input>
- <input id="ipt_inrmtm" ref="/root/main/hospiceinfo/hospicedetl/inrmtm" class="input_search" navindex="2" maxlength="4" format="hh:nn" style="left:224px; top:65px; width:71px; height:19px; ">
- <script type="javascript" ev:event="xforms-value-changed">
- <![CDATA[
-
- var inrmtm = ipt_inrmtm.value;
- if(Number(inrmtm.substring(0,2)) > 24){
- messageBox("시간 입력에","E009");
- ipt_rectm.value = "";
- model.setFocus("ipt_inrmtm");
- return;
- }
- if(Number(inrmtm.substring(2,4)) > 60){
- messageBox("분 입력에","E009");
- ipt_rectm.value = "";
- model.setFocus("ipt_inrmtm");
- return;
- }
- ]]>
- </script>
- </input>
- <line id="line36" class="line_2" style="x1:0px; y1:86px; x2:295px; y2:86px; "/>
- <line id="line37" class="line_2" style="x1:0px; y1:110px; x2:295px; y2:110px; "/>
- <caption id="caption59" class="cell_1" style="left:0px; top:112px; width:97px; height:23px; text-align:center; vertical-align:middle; ">입실시동반자</caption>
- <select1 id="cmb_inrmmthdcd" ref="/root/main/hospiceinfo/hospicedetl/inrmmthdcd" class="combo_default" navindex="3" appearance="minimal" style="left:100px; top:89px; width:195px; height:19px; ">
- <choices>
- <itemset nodeset="/root/init/M0210list/M0210">
- <label ref="cdnm"/>
- <value ref="cdid"/>
- </itemset>
- </choices>
- </select1>
- <line id="line38" class="line_3" style="x1:0px; y1:35px; x2:1194px; y2:35px; "/>
- <line id="line39" class="line_3" style="x1:0px; y1:134px; x2:295px; y2:134px; "/>
- <select1 id="cmb_inrmacompstcd" ref="/root/main/hospiceinfo/hospicedetl/inrmacompstcd" class="combo_default" navindex="4" appearance="minimal" style="left:100px; top:113px; width:195px; height:19px; ">
- <choices>
- <itemset nodeset="/root/init/M0211list/M0211">
- <label ref="cdnm"/>
- <value ref="cdid"/>
- </itemset>
- </choices>
- </select1>
- <select1 id="combo24" ref="/root/main/hospiceinfo/hospicedetl/reqtypeflag" class="combo_default" navindex="70" appearance="minimal" style="left:60px; top:181px; width:236px; height:19px; ">
- <choices>
- <item>
- <label>본원</label>
- <value>1</value>
- </item>
- <item>
- <label>타원</label>
- <value>2</value>
- </item>
- </choices>
- </select1>
- <line id="line54" class="line_1" style="x1:0px; y1:175px; x2:297px; y2:175px; "/>
- <caption id="caption78" class="tit_2" style="left:0px; top:160px; width:100px; height:13px; ">기본 인적사항</caption>
- <line id="line55" class="line_2" style="x1:0px; y1:202px; x2:297px; y2:202px; "/>
- <caption id="caption79" class="cell_1" style="left:0px; top:180px; width:57px; height:23px; text-align:center; vertical-align:middle; ">종교</caption>
- <input id="ipt_jobnm" ref="/root/main/hospiceinfo/hospicedetl/jobnm" class="input_default" navindex="23" maxlength="40" style="left:160px; top:205px; width:136px; height:19px; "/>
- <line id="line59" class="line_2" style="x1:0px; y1:226px; x2:292px; y2:226px; "/>
- <select1 id="cmb_marystatcd" ref="/root/main/hospiceinfo/hospicedetl/marystatcd" class="combo_default" navindex="25" appearance="minimal" style="left:60px; top:229px; width:65px; height:19px; ">
- <choices>
- <itemset nodeset="/root/init/M0206list/M0206">
- <label ref="cdnm"/>
- <value ref="cdid"/>
- </itemset>
- </choices>
- <script type="javascript" ev:event="xforms-value-changed">
- <![CDATA[
- if( model.getValue("/root/main/hospiceinfo/hospicedetl/marystatcd") == "05" ){
- ipt_marystatdesc.disabled = false;
- }else{
- ipt_marystatdesc.disabled = true;
- }
- ]]>
- </script>
- </select1>
- <input id="ipt_chldrncnt" ref="/root/main/hospiceinfo/hospicedetl/chldrncnt" class="input_search" navindex="26" maxlength="2" format="##" style="left:60px; top:254px; width:235px; height:19px; "/>
- <caption id="caption99" class="tit_2" style="left:0px; top:400px; width:100px; height:13px; ">가족사항</caption>
- <line id="line65" class="line_1" style="x1:0px; y1:415px; x2:607px; y2:415px; "/>
- <datagrid id="grd_famylist" nodeset="/root/main/hospicefamy/famylist" scroll="auto" caption="주보호자^가족관계^이름^주소^전화번호^결혼형태^비고^zipcd1^zipcd2^zipcdseq^detladdr^separationfamyyn^pid^btn" colsep="^" colwidth="55, 55, 52, 191, 98, 67, 69, 0, 0, 0, 0, 0, 0, 0" defaultrows="1" mergecellsfixedrows="bycolrec" rowsep="|" style="left:0px; top:420px; width:607px; height:160px; ">
- <col ref="maincarednor"/>
- <col ref="famyrel" type="combo">
- <choices>
- <itemset nodeset="/root/init/M0204list/M0204">
- <label ref="cdnm"/>
- <value ref="cdid"/>
- </itemset>
- </choices>
- </col>
- <col ref="famynm"/>
- <col ref="addr"/>
- <col ref="cntctel"/>
- <col ref="marytypeflag" type="combo">
- <choices>
- <itemset nodeset="/root/init/M0206list/M0206">
- <label ref="cdnm"/>
- <value ref="cdid"/>
- </itemset>
- </choices>
- </col>
- <col ref="cmt"/>
- <col ref="zipcd1"/>
- <col ref="zipcd2"/>
- <col ref="zipcdseq"/>
- <col ref="detladdr"/>
- <col ref="separationfamyyn"/>
- <col ref="pid"/>
- <col ref="address"/>
- <script type="javascript" ev:event="ondblclick">
- <![CDATA[
- iRow = grd_famylist.row;
-
- var famyrel_path = "/root/main/hospicefamy/famylist"+"["+iRow+"]/famyrel"
- var zipcd1_path = "/root/main/hospicefamy/famylist"+"["+iRow+"]/zipcd1"
- var zipcd2_path = "/root/main/hospicefamy/famylist"+"["+iRow+"]/zipcd2"
- var zipcdseq_path = "/root/main/hospicefamy/famylist"+"["+iRow+"]/zipcdseq"
- var detladdr_path = "/root/main/hospicefamy/famylist"+"["+iRow+"]/detladdr"
- var addr_path = "/root/main/hospicefamy/famylist"+"["+iRow+"]/addr"
- var marytypeflag_path = "/root/main/hospicefamy/famylist"+"["+iRow+"]/marytypeflag"
- var cntctel_path = "/root/main/hospicefamy/famylist"+"["+iRow+"]/cntctel"
- var famynm_path = "/root/main/hospicefamy/famylist"+"["+iRow+"]/famynm"
- var maincarednor_path = "/root/main/hospicefamy/famylist"+"["+iRow+"]/maincarednor"
- var cmt_path = "/root/main/hospicefamy/famylist"+"["+iRow+"]/cmt"
- var address_path = "/root/main/hospicefamy/famylist"+"["+iRow+"]/address"
-
-
- var famyrel = model.getValue("/root/main/hospicefamy/famylist"+"["+iRow+"]/famyrel")
- var zipcd1 = model.getValue("/root/main/hospicefamy/famylist"+"["+iRow+"]/zipcd1")
- var zipcd2 = model.getValue("/root/main/hospicefamy/famylist"+"["+iRow+"]/zipcd2")
- var zipcdseq = model.getValue("/root/main/hospicefamy/famylist"+"["+iRow+"]/zipcdseq")
- var detladdr = model.getValue("/root/main/hospicefamy/famylist"+"["+iRow+"]/detladdr")
- var addr = model.getValue("/root/main/hospicefamy/famylist"+"["+iRow+"]/addr")
- var marytypeflag = model.getValue("/root/main/hospicefamy/famylist"+"["+iRow+"]/marytypeflag")
- var cntctel = model.getValue("/root/main/hospicefamy/famylist"+"["+iRow+"]/cntctel")
- var famynm = model.getValue("/root/main/hospicefamy/famylist"+"["+iRow+"]/famynm")
- var maincarednor = model.getValue("/root/main/hospicefamy/famylist"+"["+iRow+"]/maincarednor")
- var cmt = model.getValue("/root/main/hospicefamy/famylist"+"["+iRow+"]/cmt")
- var address = model.getValue("/root/main/hospicefamy/famylist"+"["+iRow+"]/address")
-
- setParameter("indd", model.getValue("/root/main/hospiceinfo/hospicedetl/indd"));
- setParameter("cretno", model.getValue("/root/main/hospiceinfo/hospicedetl/cretno"));
- setParameter("pid", model.getValue("/root/main/hospiceinfo/hospicedetl/pid"));
- setParameter("famyrel_path", famyrel_path);
- setParameter("zipcd1_path", zipcd1_path);
- setParameter("zipcd2_path", zipcd2_path);
- setParameter("zipcdseq_path", zipcdseq_path);
- setParameter("detladdr_path", detladdr_path);
- setParameter("addr_path", addr_path);
- setParameter("marytypeflag_path", marytypeflag_path);
- setParameter("cntctel_path", cntctel_path);
- setParameter("famynm_path", famynm_path);
- setParameter("maincarednor_path", maincarednor_path);
- setParameter("cmt_path", cmt_path);
- setParameter("address_path", address_path);
-
- setParameter("famyrel", famyrel);
- setParameter("zipcd1", zipcd1);
- setParameter("zipcd2", zipcd2);
- setParameter("zipcdseq", zipcdseq);
- setParameter("detladdr", detladdr);
- setParameter("addr", addr);
- setParameter("marytypeflag", marytypeflag);
- setParameter("cntctel", cntctel);
- setParameter("famynm", famynm);
- setParameter("maincarednor", maincarednor);
- setParameter("cmt", cmt);
- setParameter("address", address);
-
-
- var left = event.screenX-200;
- var top = event.screenY-250;
- modal("SMMNH03000",1,left,top);
- model.setValue("/root/main/hospicefamy/famylist"+"["+iRow+"]/pid",model.getValue("/root/main/hospiceinfo/hospicedetl/pid"));
-
- clearParameter("famyrel_path");
- clearParameter("zipcd1_path");
- clearParameter("zipcd2_path");
- clearParameter("zipcdseq_path");
- clearParameter("detladdr_path");
- clearParameter("addr_path");
- clearParameter("marytypeflag_path");
- clearParameter("cntctel_path");
- clearParameter("famynm_path");
- clearParameter("maincarednor_path");
- clearParameter("cmt_path");
- clearParameter("address_path");
-
- clearParameter("famyrel");
- clearParameter("zipcd1");
- clearParameter("zipcd2");
- clearParameter("zipcdseq");
- clearParameter("detladdr");
- clearParameter("addr");
- clearParameter("marytypeflag");
- clearParameter("cntctel");
- clearParameter("famynm");
- clearParameter("maincarednor");
- clearParameter("cmt");
- clearParameter("address");
- ]]>
- </script>
- </datagrid>
- <datagrid id="grd_inptlist" nodeset="/root/main/hospiceinpt/inptlist" caption="입실일^의뢰사유^퇴실일^퇴실형태^퇴실사유^퇴실후연계^진단명^주치의^담당의^진단명" colsep="^" colwidth="70, 120, 70, 60, 120, 120, 160, 70" defaultrows="1" mergecellsfixedrows="bycolrec" rowsep="|" style="left:0px; top:615px; width:607px; height:129px; ">
- <col ref="inrmdd" format="yyyy-mm-dd"/>
- <col ref="reqresnflag"/>
- <col ref="dschdd" format="yyyy-mm-dd"/>
- <col ref="dschtype"/>
- <col ref="dschresn"/>
- <col ref="dschlnk"/>
- <col ref="diagcd"/>
- <col ref="atdoctnm"/>
- </datagrid>
- <line id="line66" class="line_1" style="x1:0px; y1:610px; x2:607px; y2:610px; "/>
- <caption id="caption100" class="tit_2" style="left:0px; top:594px; width:69px; height:13px; vertical-align:middle; ">입실내역</caption>
- <button id="button5" class="btn6_letter2" navindex="59" style="left:1135px; top:12px; width:56px; height:22px; ">
- <caption>출력</caption>
- <script type="javascript" ev:event="DOMActivate">
- <![CDATA[
- group6.visible = true;
- ]]>
- </script>
- </button>
- <caption id="caption116" class="tit_2" style="left:0px; top:160px; width:135px; height:13px; ">기본 인적사항</caption>
- <select1 id="cmb_religncd" ref="/root/main/hospiceinfo/hospicedetl/religncd" class="combo_default" navindex="17" appearance="minimal" style="left:60px; top:181px; width:236px; height:19px; ">
- <choices>
- <itemset nodeset="/root/init/P0157list/P0157">
- <label ref="cdnm"/>
- <value ref="cdid"/>
- </itemset>
- </choices>
- <script type="javascript" ev:event="xforms-value-changed">
- <![CDATA[
- //종교 가톨릭시 세레명 활성화
- if (cmb_religncd.value=='1' ){
- ipt_baptnm.disabled = false;
- ipt_parishchrchnm.disabled = false;
- ipt_baptismdd.disabled = false;
- ipt_emerbaptdd.disabled = false;
- }else{
- ipt_baptnm.value="";
- ipt_baptnm.disabled = true;
- ipt_parishchrchnm.value="";
- ipt_parishchrchnm.disabled = true;
- ipt_baptismdd.value="";
- ipt_baptismdd.disabled = true;
- ipt_emerbaptdd.value="";
- ipt_emerbaptdd.disabled = true;
- }
-
- ]]>
- </script>
- </select1>
- <line id="line77" class="line_1" style="x1:622px; y1:59px; x2:1182px; y2:59px; "/>
- <caption id="caption118" class="tit_2" style="left:622px; top:44px; width:100px; height:15px; ">돌봄요구</caption>
- <caption id="caption119" class="cell_1" style="left:0px; top:325px; width:57px; height:23px; text-align:center; vertical-align:middle; ">발병일</caption>
- <output id="opt_termengnm" ref="/root/main/hospiceinfo/hospicedetl/termengnm" class="output_fix" style="left:60px; top:278px; width:235px; height:19px; "/>
- <input id="ipt_attackdd" ref="/root/main/hospiceinfo/hospicedetl/attackdd" class="input_default" navindex="33" inputtype="date" style="left:60px; top:326px; width:99px; height:19px; "/>
- <caption id="caption120" class="cell_1" style="left:161px; top:325px; width:44px; height:23px; text-align:center; vertical-align:middle; ">가계도</caption>
- <select id="chk_cureprescondspec" ref="/root/main/hospiceinfo/hospicedetl/cureprescondspec" navindex="34" overflow="visible" appearance="full" cols="6" style="left:701px; top:66px; width:341px; height:19px; border-style:none; ">
- <choices>
- <item>
- <label>치료후</label>
- <value>1</value>
- </item>
- <item>
- <label>항암치료</label>
- <value>2</value>
- </item>
- <item>
- <label>수술</label>
- <value>3</value>
- </item>
- <item>
- <label>방사선</label>
- <value>4</value>
- </item>
- <item>
- <label>대체요법</label>
- <value>5</value>
- </item>
- <item>
- <label>기타</label>
- <value>6</value>
- </item>
- </choices>
- <script type="javascript" ev:event="onclick">
- <![CDATA[
- var cureprescondspec = model.getValue("/root/main/hospiceinfo/hospicedetl/cureprescondspec");
-
- if ((isSearchString(cureprescondspec, "6")) == true){
- ipt_cureprescondetcnm.disabled = false;
- }else{
- ipt_cureprescondetcnm.value = "";
- ipt_cureprescondetcnm.disabled = true;
- }
- ]]>
- </script>
- </select>
- <line id="line79" class="line_2" style="x1:622px; y1:87px; x2:1182px; y2:87px; "/>
- <caption id="caption121" class="cell_1" style="left:622px; top:64px; width:77px; height:23px; text-align:center; vertical-align:middle; ">치료현황</caption>
- <input id="ipt_cureprescondetcnm" ref="/root/main/hospiceinfo/hospicedetl/cureprescondetcnm" class="input_search" navindex="35" maxlength="30" style="left:1043px; top:65px; width:119px; height:19px; "/>
- <input id="ipt_ccetcnm" ref="/root/main/hospiceinfo/hospicedetl/ccetcnm" class="input_search" navindex="37" visibility="hidden" maxlength="30" style="left:1030px; top:40px; width:119px; height:19px; "/>
- <select id="chk_ccspec" ref="/root/main/hospiceinfo/hospicedetl/ccspec" navindex="36" overflow="visible" appearance="full" cols="7" vcellspacing="2" style="left:701px; top:90px; width:484px; height:74px; border-style:none; ">
- <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>
- <item>
- <label>구토/오심</label>
- <value>06</value>
- </item>
- <item>
- <label>식욕부진</label>
- <value>07</value>
- </item>
- <item>
- <label>연하곤란</label>
- <value>08</value>
- </item>
- <item>
- <label>구갈</label>
- <value>09</value>
- </item>
- <item>
- <label>복수</label>
- <value>10</value>
- </item>
- <item>
- <label>복부팽창</label>
- <value>11</value>
- </item>
- <item>
- <label>장루관리</label>
- <value>12</value>
- </item>
- <item>
- <label>실금</label>
- <value>13</value>
- </item>
- <item>
- <label>요정체</label>
- <value>14</value>
- </item>
- <item>
- <label>신부전</label>
- <value>15</value>
- </item>
- <item>
- <label>변비</label>
- <value>16</value>
- </item>
- <item>
- <label>설사</label>
- <value>17</value>
- </item>
- <item>
- <label>혈변</label>
- <value>18</value>
- </item>
- <item>
- <label>충혈</label>
- <value>19</value>
- </item>
- <item>
- <label>황달</label>
- <value>20</value>
- </item>
- <item>
- <label>욕창</label>
- <value>21</value>
- </item>
- <item>
- <label>가려움</label>
- <value>22</value>
- </item>
- <item>
- <label>사지부종</label>
- <value>23</value>
- </item>
- <item>
- <label>마비</label>
- <value>24</value>
- </item>
- <item>
- <label>전신쇠약</label>
- <value>25</value>
- </item>
- </choices>
- </select>
- <line id="line80" class="line_2" style="x1:622px; y1:165px; x2:1182px; y2:165px; "/>
- <caption id="caption122" class="cell_1" style="left:622px; top:89px; width:77px; height:76px; text-align:center; vertical-align:middle; ">신체적상태</caption>
- <select id="chk_chstval" ref="/root/temp/hospicedetl/chstval" navindex="38" overflow="visible" appearance="full" cols="1" rows="1" style="left:758px; top:170px; width:44px; height:19px; border-style:none; ">
- <choices>
- <item>
- <label>가슴</label>
- <value>C</value>
- </item>
- </choices>
- <script type="javascript" ev:event="onclick">
- <![CDATA[
- if(model.getValue("/root/temp/hospicedetl/chstval")=="C") ipt_chstval.disabled = false;
- else {
- ipt_chstval.disabled = true;
- ipt_chstval.value ="";
- }
- ]]>
- </script>
- </select>
- <input id="ipt_chstval" ref="/root/main/hospiceinfo/hospicedetl/chstval" class="input_search" navindex="39" maxlength="3" format="###" style="left:800px; top:169px; width:31px; height:19px; ">
- <script type="javascript" ev:event="xforms-value-changed">
- <![CDATA[
- if ((model.getValue("/root/main/hospiceinfo/hospicedetl/chstval"))==""){
- model.setValue("/root/temp/hospicedetl/chstval","");
- ipt_chstval.disabled = true;
- }
- chk_chstval.refresh();
- ]]>
- </script>
- </input>
- <input id="ipt_pelvval" ref="/root/main/hospiceinfo/hospicedetl/pelvval" class="input_search" navindex="41" maxlength="3" format="###" mask="##.0" style="left:885px; top:169px; width:31px; height:19px; ">
- <script type="javascript" ev:event="xforms-value-changed">
- <![CDATA[
- if ((model.getValue("/root/main/hospiceinfo/hospicedetl/pelvval"))==""){
- model.setValue("/root/temp/hospicedetl/pelvval","");
- ipt_pelvval.disabled = true;
- }
- chk_pelvval.refresh();
- ]]>
- </script>
- </input>
- <select id="chk_pelvval" ref="/root/temp/hospicedetl/pelvval" navindex="40" overflow="visible" appearance="full" cols="1" rows="1" style="left:843px; top:170px; width:44px; height:19px; border-style:none; ">
- <choices>
- <item>
- <label>골반</label>
- <value>P</value>
- </item>
- </choices>
- <script type="javascript" ev:event="onclick">
- <![CDATA[
- if(model.getValue("/root/temp/hospicedetl/pelvval")=="P") ipt_pelvval.disabled = false;
- else {
- ipt_pelvval.disabled = true;
- ipt_pelvval.value = "";
- }
- ]]>
- </script>
- </select>
- <input id="ipt_regionvas" ref="/root/main/hospiceinfo/hospicedetl/regionvas" class="input_search" navindex="43" maxlength="3" format="###" style="left:972px; top:169px; width:31px; height:19px; ">
- <script type="javascript" ev:event="xforms-value-changed">
- <![CDATA[
- if ((model.getValue("/root/main/hospiceinfo/hospicedetl/regionvas"))==""){
- model.setValue("/root/temp/hospicedetl/regionvas","");
- ipt_regionvas.disabled = true;
- }
- chk_regionvas.refresh();
- ]]>
- </script>
- </input>
- <select id="chk_regionvas" ref="/root/temp/hospicedetl/regionvas" navindex="42" overflow="visible" appearance="full" cols="1" rows="1" style="left:930px; top:170px; width:44px; height:19px; border-style:none; ">
- <choices>
- <item>
- <label>복부</label>
- <value>R</value>
- </item>
- </choices>
- <script type="javascript" ev:event="onclick">
- <![CDATA[
- if(model.getValue("/root/temp/hospicedetl/regionvas" )=="R") ipt_regionvas.disabled = false;
- else {
- ipt_regionvas.disabled = true;
- ipt_regionvas.value = "";
- }
- ]]>
- </script>
- </select>
- <input id="ipt_waistvas" ref="/root/main/hospiceinfo/hospicedetl/waistvas" class="input_search" navindex="47" maxlength="3" format="###" style="left:885px; top:193px; width:31px; height:19px; ">
- <script type="javascript" ev:event="xforms-value-changed">
- <![CDATA[
- if ((model.getValue("/root/main/hospiceinfo/hospicedetl/waistvas"))==""){
- model.setValue("/root/temp/hospicedetl/waistvas","");
- ipt_waistvas.disabled = true;
- }
- chk_waistvas.refresh();
- ]]>
- </script>
- </input>
- <input id="ipt_neckvas" ref="/root/main/hospiceinfo/hospicedetl/neckvas" class="input_search" navindex="45" maxlength="3" format="###" mask="##.0" style="left:800px; top:194px; width:31px; height:19px; ">
- <script type="javascript" ev:event="xforms-value-changed">
- <![CDATA[
- if ((model.getValue("/root/main/hospiceinfo/hospicedetl/neckvas"))==""){
- model.setValue("/root/temp/hospicedetl/neckvas","");
- ipt_neckvas.disabled = true;
- }
- chk_neckvas.refresh();
- ]]>
- </script>
- </input>
- <input id="ipt_headval" ref="/root/main/hospiceinfo/hospicedetl/headval" class="input_search" navindex="49" maxlength="3" format="###" style="left:972px; top:194px; width:31px; height:19px; ">
- <script type="javascript" ev:event="xforms-value-changed">
- <![CDATA[
- if ((model.getValue("/root/main/hospiceinfo/hospicedetl/headval"))==""){
- model.setValue("/root/temp/hospicedetl/headval","");
- ipt_headval.disabled = true;
- }
- chk_headval.refresh();
- ]]>
- </script>
- </input>
- <select id="chk_neckvas" ref="/root/temp/hospicedetl/neckvas" navindex="44" overflow="visible" appearance="full" cols="1" rows="1" style="left:758px; top:195px; width:44px; height:19px; border-style:none; ">
- <choices>
- <item>
- <label>목</label>
- <value>N</value>
- </item>
- </choices>
- <script type="javascript" ev:event="onclick">
- <![CDATA[
- if(model.getValue("/root/temp/hospicedetl/neckvas" )=="N") ipt_neckvas.disabled = false;
- else {
- ipt_neckvas.disabled = true;
- ipt_neckvas.value = "";
- }
- ]]>
- </script>
- </select>
- <select id="chk_waistvas" ref="/root/temp/hospicedetl/waistvas" navindex="46" overflow="visible" appearance="full" cols="1" rows="1" style="left:843px; top:195px; width:44px; height:19px; border-style:none; ">
- <choices>
- <item>
- <label>허리</label>
- <value>W</value>
- </item>
- </choices>
- <script type="javascript" ev:event="onclick">
- <![CDATA[
- if(model.getValue("/root/temp/hospicedetl/waistvas")=="W") ipt_waistvas.disabled =false;
- else {
- ipt_waistvas.disabled = true;
- ipt_waistvas.value = "";
- }
- ]]>
- </script>
- </select>
- <select id="chk_headval" ref="/root/temp/hospicedetl/headval" navindex="48" overflow="visible" appearance="full" cols="1" rows="1" style="left:930px; top:195px; width:44px; height:19px; border-style:none; ">
- <choices>
- <item>
- <label>머리</label>
- <value>H</value>
- </item>
- </choices>
- <script type="javascript" ev:event="onclick">
- <![CDATA[
- if(model.getValue("/root/temp/hospicedetl/headval")=="H") ipt_headval.disabled = false;
- else {
- ipt_headval.disabled = true;
- ipt_headval.value = "";
- }
- ]]>
- </script>
- </select>
- <input id="ipt_etcnm" ref="/root/main/hospiceinfo/hospicedetl/etcnm" class="input_search" navindex="51" maxlength="20" style="left:1056px; top:168px; width:78px; height:19px; "/>
- <select id="chk_etcval" ref="/root/temp/hospicedetl/etcval" navindex="50" overflow="visible" appearance="full" cols="1" rows="1" style="left:1013px; top:169px; width:44px; height:19px; border-style:none; ">
- <choices>
- <item>
- <label>기타</label>
- <value>E</value>
- </item>
- </choices>
- <script type="javascript" ev:event="onclick">
- <![CDATA[
- if(model.getValue("/root/temp/hospicedetl/etcval")=="E") {
- ipt_etcval.disabled = false;
- ipt_etcnm.disabled = false;
- }
- else {
- ipt_etcval.value = "";
- ipt_etcnm.value ="";
- ipt_etcval.disabled = true;
- ipt_etcnm.disabled = true;
- }
- ]]>
- </script>
- </select>
- <input id="ipt_etcval" ref="/root/main/hospiceinfo/hospicedetl/etcval" class="input_search" navindex="52" maxlength="3" format="###" style="left:1136px; top:168px; width:31px; height:19px; ">
- <script type="javascript" ev:event="xforms-value-changed">
- <![CDATA[
- if ((model.getValue("/root/main/hospiceinfo/hospicedetl/etcval"))==""){
- model.setValue("/root/temp/hospicedetl/etcval","");
- ipt_etcnm.value = "";
- ipt_etcnm.disabled = true;
- ipt_etcval.disabled = true;
- }
- chk_etcval.refresh();
- ]]>
- </script>
- </input>
- <select id="chk_sptstatspec" ref="/root/main/hospiceinfo/hospicedetl/sptstatspec" navindex="56" overflow="visible" appearance="full" cellspacing="15" cols="6" style="left:701px; top:244px; width:477px; height:34px; border-style:none; ">
- <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>
- <item>
- <label>공황장애</label>
- <value>06</value>
- </item>
- <item>
- <label>불안증</label>
- <value>07</value>
- </item>
- <item>
- <label>의심증</label>
- <value>08</value>
- </item>
- <item>
- <label>반응저하</label>
- <value>09</value>
- </item>
- <item>
- <label>신경과민</label>
- <value>10</value>
- </item>
- <item>
- <label>우울</label>
- <value>11</value>
- </item>
- </choices>
- </select>
- <select id="chk_intesympspec" ref="/root/main/hospiceinfo/hospicedetl/soclecomysituat" navindex="57" overflow="visible" appearance="full" cellspacing="30" cols="4" style="left:701px; top:282px; width:479px; height:32px; border-style:none; ">
- <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>
- <item>
- <label>무연고</label>
- <value>06</value>
- </item>
- <item>
- <label>가족소진</label>
- <value>07</value>
- </item>
- <item>
- <label>기타</label>
- <value>08</value>
- </item>
- </choices>
- </select>
- <line id="line82" class="line_2" style="x1:622px; y1:315px; x2:1182px; y2:315px; "/>
- <line id="line83" class="line_2" style="x1:622px; y1:279px; x2:1182px; y2:279px; "/>
- <select id="chk_intereqspec" ref="/root/main/hospiceinfo/hospicedetl/intesympspec" navindex="58" overflow="visible" appearance="full" cellspacing="10" cols="4" style="left:701px; top:319px; width:479px; height:36px; border-style:none; ">
- <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>
- </select>
- <caption id="caption127" class="cell_1" style="left:622px; top:317px; width:79px; height:38px; text-align:center; vertical-align:middle; ">영적요구</caption>
- <line id="line84" class="line_3" style="x1:620px; y1:416px; x2:1182px; y2:416px; "/>
- <button id="button1" class="btn2_letter4" style="left:542px; top:394px; width:64px; height:19px; ">
- <caption>한줄삭제</caption>
- <script type="javascript" ev:event="DOMActivate">
- <![CDATA[
- grd_famylist.deleteItem(grd_famylist.row);
- ]]>
- </script>
- </button>
- <button id="button12" class="btn2_letter4" style="left:476px; top:394px; width:64px; height:19px; ">
- <caption>한줄추가</caption>
- <script type="javascript" ev:event="DOMActivate">
- <![CDATA[
- grd_famylist.addRow();
- iRow = grd_famylist.row;
-
- var famyrel_path = "/root/main/hospicefamy/famylist"+"["+iRow+"]/famyrel"
- var zipcd1_path = "/root/main/hospicefamy/famylist"+"["+iRow+"]/zipcd1"
- var zipcd2_path = "/root/main/hospicefamy/famylist"+"["+iRow+"]/zipcd2"
- var zipcdseq_path = "/root/main/hospicefamy/famylist"+"["+iRow+"]/zipcdseq"
- var detladdr_path = "/root/main/hospicefamy/famylist"+"["+iRow+"]/detladdr"
- var addr_path ="/root/main/hospicefamy/famylist"+"["+iRow+"]/addr"
- var address_path ="/root/main/hospicefamy/famylist"+"["+iRow+"]/address"
- var marytypeflag_path = "/root/main/hospicefamy/famylist"+"["+iRow+"]/marytypeflag"
- var cntctel_path = "/root/main/hospicefamy/famylist"+"["+iRow+"]/cntctel"
- var famynm_path = "/root/main/hospicefamy/famylist"+"["+iRow+"]/famynm"
- var maincarednor_path = "/root/main/hospicefamy/famylist"+"["+iRow+"]/maincarednor"
- var cmt_path = "/root/main/hospicefamy/famylist"+"["+iRow+"]/cmt"
- //var btn_path = "/root/main/hospicefamy/famylist"+"["+iRow+"]/btn"
- setParameter("indd", model.getValue("/root/main/hospiceinfo/hospicedetl/indd"));
- setParameter("cretno", model.getValue("/root/main/hospiceinfo/hospicedetl/cretno"));
- setParameter("pid", model.getValue("/root/main/hospiceinfo/hospicedetl/pid"));
-
- setParameter("famyrel_path", famyrel_path);
- setParameter("zipcd1_path", zipcd1_path);
- setParameter("zipcd2_path", zipcd2_path);
- setParameter("zipcdseq_path", zipcdseq_path);
- setParameter("detladdr_path", detladdr_path);
- setParameter("addr_path", addr_path);
- setParameter("address_path", address_path);
- setParameter("marytypeflag_path", marytypeflag_path);
- setParameter("cntctel_path", cntctel_path);
- setParameter("famynm_path", famynm_path);
- setParameter("maincarednor_path", maincarednor_path);
- setParameter("cmt_path", cmt_path);
- //setParameter("btn_path", btn_path);
-
-
- var left = event.screenX-200;
- var top = event.screenY-250;
- modal("SMMNH03000",1,left,top);
-
- model.setValue("/root/main/hospicefamy/famylist"+"["+iRow+"]/pid",model.getValue("/root/main/hospiceinfo/hospicedetl/pid"));
-
- //환자가족 취소시 인서트한 마지막줄 삭제.
- if( (model.getValue(maincarednor_path) == "" )&&
- (model.getValue(famyrel_path) == "" )&&
- (model.getValue(famynm_path) == "" )&&
- (model.getValue(addr_path) == "" )&&
- (model.getValue(cntctel_path) == "" )&&
- (model.getValue(marytypeflag_path) == "" )&&
- (model.getValue(cmt_path) == "" ) )
- {
- grd_famylist.deleteItem(grd_famylist.row);
- }
-
- clearParameter("famyrel_path");
- clearParameter("zipcd1_path");
- clearParameter("zipcd2_path");
- clearParameter("zipcdseq_path");
- clearParameter("detladdr_path");
- clearParameter("addr_path");
- clearParameter("address_path");
- clearParameter("marytypeflag_path");
- clearParameter("cntctel_path");
- clearParameter("famynm_path");
- clearParameter("maincarednor_path");
- clearParameter("cmt_path");
- //clearParameter("btn_path");
- ]]>
- </script>
- </button>
- <select1 id="cmb_waitstat" ref="/root/main/hospiceinfo/hospicedetl/waitstat" class="combo_default" navindex="76" visibility="hidden" appearance="minimal" style="left:1075px; top:13px; width:60px; height:19px; ">
- <choices>
- <item>
- <label>면담</label>
- <value>R</value>
- </item>
- <item>
- <label>대기</label>
- <value>W</value>
- </item>
- <item>
- <label>입실</label>
- <value>I</value>
- </item>
- <item>
- <label>종결</label>
- <value>O</value>
- </item>
- </choices>
- </select1>
- <line id="line86" class="line_2" style="x1:0px; y1:251px; x2:297px; y2:251px; "/>
- <button id="button11" class="btn2_letter3" style="left:208px; top:326px; width:53px; height:19px; ">
- <caption>가계도</caption>
- <script type="javascript" ev:event="onclick">
- <![CDATA[
- //가계도 팝업 호출 mnwmgerm
- //팝업에서 확인버튼 누르면 instance에 담아 DB에 저장, 닫기버튼 누르면 적용 안됨.
- var popMapRslt = fGetFamyMap();
- model.setValue(xHospiceDetlPath + '/genogrmnm', popMapRslt); //팝업에서 그려온 결과를 화면에 설정.
- var genogrmnm = model.getValue(xHospiceDetlPath + "/genogrmnm");
- if( genogrmnm == ""){
- caption133.visible = false;
- }else{
- caption133.visible = true;
- }
- fSetFamyMapValue(popMapRslt)//디비에 저장할 instance에 데이터를 설정
-
- model.refresh();
-
- ]]>
- </script>
- </button>
- <line id="line92" class="line_2" style="x1:0px; y1:275px; x2:297px; y2:275px; "/>
- <line id="line89" class="line_2" style="x1:0px; y1:347px; x2:297px; y2:347px; "/>
- <line id="line56" class="line_2" style="x1:0px; y1:299px; x2:297px; y2:299px; "/>
- <line id="line57" class="line_2" style="x1:0px; y1:323px; x2:297px; y2:323px; "/>
- <select1 id="cmb_diagcd1" ref="/root/main/hospiceinfo/hospicedetl/diagcd1" class="combo_default" navindex="7" appearance="minimal" style="left:60px; top:302px; width:100px; height:19px; ">
- <choices>
- <itemset nodeset="/root/init/diagsuplist">
- <label ref="cdnm"/>
- <value ref="cdid"/>
- </itemset>
- </choices>
- <script type="javascript" ev:event="xforms-value-changed">
- <![CDATA[
- var diagcd1 = model.getValue("/root/main/hospiceinfo/hospicedetl/diagcd1");
-
- model.removenode("/root/send");
- model.makeValue("/root/send/diagcd1", diagcd1);
- model.makeValue("/root/send/refflag", "2");//하위 진단 조회
- submit("TRMNH02906", false);
- cmb_diagcd2.refresh();
-
- ]]>
- </script>
- </select1>
- <select1 id="cmb_diagcd2" ref="/root/main/hospiceinfo/hospicedetl/diagcd2" class="combo_default" navindex="7" appearance="minimal" style="left:161px; top:302px; width:135px; height:19px; ">
- <choices>
- <itemset nodeset="/root/init/diaglowlist">
- <label ref="cdnm"/>
- <value ref="cdid"/>
- </itemset>
- </choices>
- </select1>
- <caption id="caption133" visibility="hidden" style="left:264px; top:326px; width:44px; height:20px; color:#0000ff; ">자료有</caption>
- <select1 id="cmb_jobcd" ref="/root/main/hospiceinfo/hospicedetl/jobcd" class="combo_default" navindex="8" appearance="minimal" style="left:60px; top:205px; width:99px; height:19px; ">
- <choices>
- <itemset nodeset="/root/init/M0068detl/M0068">
- <label ref="cdnm"/>
- <value ref="cdid"/>
- </itemset>
- </choices>
- <script type="javascript" ev:event="xforms-value-changed">
- <![CDATA[
- //직업 기타선택시 기타사유명입력칸활성화
- if (cmb_jobcd.value == "10"){
- ipt_jobnm.disabled = false;
- }else{
- ipt_jobnm.value = "";
- ipt_jobnm.disabled = true;
- }
- ]]>
- </script>
- </select1>
- <caption id="caption117" class="cell_1" style="left:0px; top:180px; width:57px; height:23px; text-align:center; vertical-align:middle; ">종교</caption>
- <caption id="caption57" class="cell_1" style="left:0px; top:64px; width:97px; height:23px; text-align:center; vertical-align:middle; ">입실일시</caption>
- <caption id="caption58" class="cell_1" style="left:0px; top:88px; width:97px; height:23px; text-align:center; vertical-align:middle; ">입실방법</caption>
- <caption id="caption85" class="cell_1" style="left:0px; top:204px; width:57px; height:23px; text-align:center; vertical-align:middle; ">직업</caption>
- <caption id="caption87" class="cell_1" style="left:0px; top:228px; width:57px; height:23px; text-align:center; vertical-align:middle; ">결혼상태</caption>
- <caption id="caption88" class="cell_1" style="left:0px; top:253px; width:57px; height:23px; text-align:center; vertical-align:middle; ">자녀수</caption>
- <caption id="caption73" class="cell_1" style="left:0px; top:277px; width:57px; height:47px; text-align:center; vertical-align:middle; ">진단명</caption>
- <caption id="caption125" class="cell_1" style="left:622px; top:242px; width:79px; height:38px; text-align:center; vertical-align:middle; ">정신적상태</caption>
- <caption id="caption126" class="cell_1" style="left:622px; top:281px; width:79px; height:34px; text-align:center; vertical-align:middle; ">
- <![CDATA[사회, 경제적
- 상태]]>
- </caption>
- <line id="line98" class="line_2" style="x1:622px; y1:240px; x2:1182px; y2:240px; "/>
- <line id="line99" class="line_2" style="x1:620px; y1:216px; x2:1182px; y2:216px; "/>
- <caption id="caption123" class="cell_1" style="left:622px; top:167px; width:133px; height:50px; text-align:center; vertical-align:middle; ">통증부위/점수 (NRS)</caption>
- <caption id="caption128" class="cell_1" style="left:622px; top:218px; width:79px; height:23px; text-align:center; vertical-align:middle; ">ECOG</caption>
- <select1 id="radio7" ref="/root/main/hospiceinfo/hospicedetl/ecog" appearance="full" cellspacing="20" cols="5" overflow="visible" style="left:701px; top:221px; width:420px; height:15px; font-family:돋움체; border-style:none; ">
- <choices>
- <item>
- <label>0</label>
- <value>0</value>
- </item>
- <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>
- </choices>
- </select1>
- <line id="line100" class="line_1" style="x1:620px; y1:442px; x2:1187px; y2:442px; "/>
- <caption id="caption136" class="tit_2" style="left:620px; top:427px; width:113px; height:13px; font-family:돋움체; ">돌봄계획</caption>
- <button id="button3" class="btn4_letter2" navindex="59" style="left:1079px; top:12px; width:56px; height:22px; ">
- <caption>저장</caption>
- <script type="javascript" ev:event="DOMActivate">
- <![CDATA[
- if(messageBox("","Q002") != 6) return;
- fSave();
- ]]>
- </script>
- </button>
- <caption id="caption137" class="cell_1" style="left:0px; top:349px; width:57px; height:28px; text-align:center; vertical-align:middle; ">
- <![CDATA[말기암
- 진단병원]]>
- </caption>
- <input id="ipt_cncrdiaghosp" ref="/root/main/hospiceinfo/hospicedetl/cncrdiaghosp" style="left:60px; top:353px; width:99px; height:19px; "/>
- <caption id="caption138" class="cell_1" style="left:161px; top:349px; width:44px; height:28px; text-align:center; vertical-align:middle; ">
- <![CDATA[말기암
- 진단일]]>
- </caption>
- <input id="ipt_marystatdesc" ref="/root/main/hospiceinfo/hospicedetl/marystatdesc" style="left:130px; top:229px; width:165px; height:19px; "/>
- <input id="ipt_cncrdiagdd" ref="/root/main/hospiceinfo/hospicedetl/cncrdiagdd" class="input_default" navindex="33" inputtype="date" style="left:208px; top:352px; width:88px; height:19px; "/>
- <line id="line101" class="line_2" style="x1:1px; y1:347px; x2:298px; y2:347px; "/>
- <caption id="caption139" class="cell_1" style="left:620px; top:447px; width:75px; height:55px; text-align:center; vertical-align:middle; ">
- <![CDATA[신체적증상
- 돌봄]]>
- </caption>
- <caption id="caption140" class="cell_1" style="left:620px; top:503px; width:75px; height:23px; text-align:center; vertical-align:middle; ">정신적 돌봄</caption>
- <caption id="caption141" class="cell_1" style="left:620px; top:527px; width:75px; height:43px; text-align:center; vertical-align:middle; ">영적 돌봄</caption>
- <caption id="caption142" class="cell_1" style="left:620px; top:571px; width:75px; height:38px; text-align:center; vertical-align:middle; ">
- <![CDATA[사회 경제적
- 돌봄]]>
- </caption>
- <select id="chk_ccsympcare" ref="/root/main/hospiceinfo/hospicedetl/ccsympcare" overflow="visible" appearance="full" cols="5" style="left:695px; top:449px; width:490px; height:50px; border-style:none; ">
- <choices>
- <item>
- <label>신체적상태 및 증상사정</label>
- <value>01</value>
- </item>
- <item>
- <label>통증조절</label>
- <value>02</value>
- </item>
- <item>
- <label>IV</label>
- <value>03</value>
- </item>
- <item>
- <label>튜브 삽입/배액</label>
- <value>04</value>
- </item>
- <item>
- <label>상처 소독</label>
- <value>05</value>
- </item>
- <item>
- <label>감염증 치료</label>
- <value>06</value>
- </item>
- <item>
- <label>증상예방치료</label>
- <value>07</value>
- </item>
- <item>
- <label>마사지</label>
- <value>08</value>
- </item>
- <item>
- <label>공기침대</label>
- <value>09</value>
- </item>
- <item>
- <label>체위변경</label>
- <value>10</value>
- </item>
- <item>
- <label>위생청결</label>
- <value>11</value>
- </item>
- <item>
- <label>샴푸</label>
- <value>12</value>
- </item>
- <item>
- <label>목욕</label>
- <value>13</value>
- </item>
- <item>
- <label>구강</label>
- <value>14</value>
- </item>
- <item>
- <label>기타증상조절</label>
- <value>15</value>
- </item>
- </choices>
- </select>
- <select id="chk_sptsympcare" ref="/root/main/hospiceinfo/hospicedetl/sptsympcare" overflow="visible" appearance="full" cellspacing="10" cols="3" style="left:695px; top:504px; width:490px; height:20px; border-style:none; ">
- <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="onclick">
- <![CDATA[
- var sptsympcare = model.getValue("/root/main/hospiceinfo/hospicedetl/sptsympcare");
-
- if ((isSearchString(sptsympcare, "02")) == true){
- ipt_sptsymp1.disabled = false;
- }else{
- ipt_sptsymp1.value = "";
- ipt_sptsymp1.disabled = true;
- }
-
- if ((isSearchString(sptsympcare, "03")) == true){
- ipt_sptsymp2.disabled = false;
- }else{
- ipt_sptsymp2.value = "";
- ipt_sptsymp2.disabled = true;
- }
- ]]>
- </script>
- </select>
- <select id="chk_intesympcare" ref="/root/main/hospiceinfo/hospicedetl/intesympcare" overflow="visible" appearance="full" cellspacing="10" cols="4" style="left:695px; top:530px; width:490px; height:38px; border-style:none; ">
- <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>
- <item>
- <label>성직자방문의뢰</label>
- <value>06</value>
- </item>
- <item>
- <label>임종기도</label>
- <value>07</value>
- </item>
- <item>
- <label>종교의식</label>
- <value>08</value>
- </item>
- </choices>
- </select>
- <select id="chk_soclecomycare" ref="/root/main/hospiceinfo/hospicedetl/soclecomycare" overflow="visible" appearance="full" cols="4" style="left:695px; top:571px; width:490px; height:37px; border-style:none; ">
- <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>
- <item>
- <label>가정방문</label>
- <value>06</value>
- </item>
- <item>
- <label>지속적인 상담</label>
- <value>07</value>
- </item>
- <item>
- <label>퇴원계획</label>
- <value>08</value>
- </item>
- </choices>
- </select>
- <caption id="caption143" class="cell_1" style="left:622px; top:392px; width:79px; height:23px; text-align:center; vertical-align:middle; ">임종돌봄</caption>
- <select id="chk_agonalcare" ref="/root/main/hospiceinfo/hospicedetl/agonalcare" overflow="visible" appearance="full" style="left:700px; top:396px; width:100px; height:20px; border-style:none; ">
- <choices>
- <item>
- <label>임종 및 장례</label>
- <value>01</value>
- </item>
- </choices>
- <script type="javascript" ev:event="onclick">
- <![CDATA[
- var agonalcare = model.getValue("/root/main/hospiceinfo/hospicedetl/agonalcare");
-
- if ((isSearchString(agonalcare, "01")) == true){
- ipt_agonalcaredesc.disabled = false;
- }else{
- ipt_agonalcaredesc.value = "";
- ipt_agonalcaredesc.disabled = true;
- }
- ]]>
- </script>
- </select>
- <input id="ipt_agonalcaredesc" ref="/root/main/hospiceinfo/hospicedetl/agonalcaredesc" disabled="true" style="left:819px; top:395px; width:360px; height:19px; "/>
- <caption id="caption144" class="cell_1" style="left:622px; top:357px; width:79px; height:33px; text-align:center; vertical-align:middle; ">정서적상태</caption>
- <select id="chk_emotstatspec" ref="/root/main/hospiceinfo/hospicedetl/emotstatspec" overflow="visible" appearance="full" cellspacing="7" cols="7" style="left:700px; top:356px; width:480px; height:36px; border-style:none; ">
- <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>
- <item>
- <label>분노</label>
- <value>06</value>
- </item>
- <item>
- <label>정서적긴장</label>
- <value>07</value>
- </item>
- <item>
- <label>관계위축</label>
- <value>08</value>
- </item>
- <item>
- <label>기타</label>
- <value>09</value>
- </item>
- </choices>
- <script type="javascript" ev:event="onclick">
- <![CDATA[
- var emotstatspec = model.getValue("/root/main/hospiceinfo/hospicedetl/emotstatspec");
-
- if ((isSearchString(emotstatspec, "09")) == true){
- ipt_emotstatdesc.disabled = false;
- }else{
- ipt_emotstatdesc.value = "";
- ipt_emotstatdesc.disabled = true;
- }
- ]]>
- </script>
- </select>
- <input id="ipt_emotstatdesc" ref="/root/main/hospiceinfo/hospicedetl/emotstatdesc" disabled="true" style="left:820px; top:372px; width:360px; height:24px; "/>
- <line id="line102" class="line_2" style="x1:622px; y1:355px; x2:1182px; y2:355px; "/>
- <line id="line103" class="line_2" style="x1:622px; y1:390px; x2:1182px; y2:390px; "/>
- <line id="line104" class="line_2" style="x1:620px; y1:500px; x2:1185px; y2:500px; "/>
- <line id="line105" class="line_2" style="x1:620px; y1:525px; x2:1185px; y2:525px; "/>
- <line id="line106" class="line_2" style="x1:620px; y1:568px; x2:1185px; y2:568px; "/>
- <line id="line107" class="line_3" style="x1:620px; y1:609px; x2:1187px; y2:609px; "/>
- <group id="group6" class="grp_1" visibility="hidden" style="left:1070px; top:40px; width:120px; height:154px; background-color:#87CEFA; border-width:1px; ">
- <select id="chk_baseyn" ref="/root/tmp/printinfo/cond/baseyn" overflow="visible" appearance="full" style="left:10px; top:10px; width:100px; height:20px; border-style:none; ">
- <choices>
- <item>
- <label>기본인적사항</label>
- <value>Y</value>
- </item>
- </choices>
- </select>
- <select id="chk_famyyn" ref="/root/tmp/printinfo/cond/famyyn" overflow="visible" appearance="full" style="left:10px; top:33px; width:100px; height:20px; border-style:none; ">
- <choices>
- <item>
- <label>가족사항</label>
- <value>Y</value>
- </item>
- </choices>
- </select>
- <select id="chk_hospiceyn" ref="/root/tmp/printinfo/cond/hospiceyn" overflow="visible" appearance="full" style="left:10px; top:56px; width:100px; height:20px; border-style:none; ">
- <choices>
- <item>
- <label>호스피스 정보</label>
- <value>Y</value>
- </item>
- </choices>
- </select>
- <select id="chk_hosinfoyn" ref="/root/tmp/printinfo/cond/hosinfoyn" overflow="visible" appearance="full" style="left:10px; top:79px; width:100px; height:20px; border-style:none; ">
- <choices>
- <item>
- <label>돌봄요구</label>
- <value>Y</value>
- </item>
- </choices>
- </select>
- <select id="chk_recinfo" ref="/root/tmp/printinfo/cond/recinfo" overflow="visible" appearance="full" style="left:10px; top:102px; width:100px; height:20px; border-style:none; ">
- <choices>
- <item>
- <label>돌봄계획</label>
- <value>Y</value>
- </item>
- </choices>
- </select>
- <button id="btn_cert" class="btn5_letter2" style="left:32px; top:127px; width:42px; height:19px; ">
- <caption>확인</caption>
- <script type="javascript" ev:event="DOMActivate">
- <![CDATA[
- group6.visible = false;
- fPrint();
- ]]>
- </script>
- </button>
- <button id="btn_cancel" class="btn5_letter2" style="left:75px; top:127px; width:42px; height:19px; ">
- <caption>취소</caption>
- <script type="javascript" ev:event="DOMActivate">
- <![CDATA[
- group6.visible = false;
- ]]>
- </script>
- </button>
- </group>
- <caption id="cap_bfrecdt" class="cell_1" style="left:0px; top:11px; width:80px; height:23px; vertical-align:middle; ">이전기록일시</caption>
- <select1 id="cmb_bfrecddtm" ref="/root/main/hospiceinfo/hospicedetl/bfrecddtm" class="combo_default" navindex="16" appearance="minimal" style="left:83px; top:13px; width:120px; height:19px; ">
- <choices>
- <itemset nodeset="/root/main/hospiceinfo/recinfo">
- <label ref="bfrecddtm"/>
- <value ref="recpkspec"/>
- </itemset>
- </choices>
- <script type="javascript" ev:event="xforms-value-changed">
- <![CDATA[
- var recpkspec = (model.getValue("/root/main/hospiceinfo/hospicedetl/bfrecddtm")).split("|");
- var cretdd = recpkspec[1];
- var crettm = recpkspec[2];
-
- fChgRecHistInfo(cretdd, crettm);
- ]]>
- </script>
- </select1>
- <button id="button6" class="btn4_letter2" navindex="59" visibility="hidden" style="left:950px; top:35px; width:56px; height:22px; ">
- <caption>삭제</caption>
- <script type="javascript" ev:event="DOMActivate">
- <![CDATA[
- if(messageBox("","Q002") != 6) return;
- fSave();
- ]]>
- </script>
- </button>
- <caption id="caption135" class="cell_1" style="left:307px; top:281px; width:74px; height:23px; text-align:center; vertical-align:middle; ">암인식</caption>
- <caption id="caption70" class="cell_1" style="left:382px; top:257px; width:45px; height:23px; text-align:center; vertical-align:middle; ">환자</caption>
- <select1 id="cmb_mngtprescd" ref="/root/main/hospiceinfo/hospicedetl/mngtprescd" class="combo_default" navindex="16" appearance="minimal" style="left:430px; top:233px; width:171px; height:19px; ">
- <choices>
- <itemset nodeset="/root/init/M0468detl/M0468">
- <label ref="cdnm"/>
- <value ref="cdid"/>
- </itemset>
- </choices>
- </select1>
- <line id="line51" class="line_2" style="x1:307px; y1:303px; x2:601px; y2:303px; "/>
- <line id="line40" class="line_1" style="x1:307px; y1:59px; x2:601px; y2:59px; "/>
- <caption id="caption71" class="cell_1" style="left:491px; top:257px; width:49px; height:23px; text-align:center; vertical-align:middle; ">보호자</caption>
- <line id="line52" class="line_2" style="x1:307px; y1:327px; x2:601px; y2:327px; "/>
- <line id="line41" class="line_2" style="x1:307px; y1:86px; x2:601px; y2:86px; "/>
- <caption id="caption60" class="tit_2" style="left:307px; top:44px; width:100px; height:13px; ">호스피스 정보</caption>
- <caption id="caption72" class="cell_1" style="left:382px; top:281px; width:45px; height:23px; text-align:center; vertical-align:middle; ">환자</caption>
- <line id="line53" class="line_2" style="x1:307px; y1:351px; x2:601px; y2:351px; "/>
- <line id="line42" class="line_2" style="x1:307px; y1:110px; x2:601px; y2:110px; "/>
- <caption id="caption61" class="cell_1" style="left:307px; top:64px; width:120px; height:23px; text-align:center; vertical-align:middle; ">의뢰접수일/희망일</caption>
- <line id="line43" class="line_3" style="x1:307px; y1:376px; x2:601px; y2:376px; "/>
- <caption id="caption62" class="cell_1" style="left:307px; top:112px; width:59px; height:23px; text-align:center; vertical-align:middle; ">의뢰형태</caption>
- <select1 id="cmb_cncrawaryn" ref="/root/main/hospiceinfo/hospicedetl/cncrawaryn" class="combo_default" navindex="11" appearance="minimal" style="left:430px; top:282px; width:58px; height:19px; ">
- <choices>
- <item>
- <label>Y</label>
- <value>Y</value>
- </item>
- <item>
- <label>N</label>
- <value>N</value>
- </item>
- </choices>
- </select1>
- <line id="line44" class="line_2" style="x1:307px; y1:134px; x2:600px; y2:134px; "/>
- <caption id="caption74" class="cell_1" style="left:307px; top:329px; width:120px; height:23px; text-align:center; vertical-align:middle; ">입원일</caption>
- <line id="line45" class="line_2" style="x1:307px; y1:158px; x2:601px; y2:158px; "/>
- <caption id="caption63" class="cell_1" style="left:307px; top:136px; width:120px; height:47px; text-align:center; vertical-align:middle; ">의뢰사유</caption>
- <select1 id="cmb_reqresnflag" ref="/root/main/hospiceinfo/hospicedetl/reqresnflag" class="combo_default" navindex="16" appearance="minimal" style="left:430px; top:137px; width:171px; height:19px; ">
- <choices>
- <itemset nodeset="/root/init/M0202detl/M0202">
- <label ref="cdnm"/>
- <value ref="cdid"/>
- </itemset>
- </choices>
- <script type="javascript" ev:event="xforms-value-changed">
- <![CDATA[
- //의뢰사유 기타선택시 기타사유명입력칸활성화
- if (cmb_reqresnflag.value == "99"){
- ipt_reqresnetc.disabled = false;
- }else{
- ipt_reqresnetc.value = "";
- ipt_reqresnetc.disabled = true;
- }
- var wardcd = model.getValue("/root/main/hospiceinfo/hospicedetl/wardcd");
- var basewardcd = model.getValue("/root/init/viewctrl/viewctrllist/viewctrlinfo/cdnm");
-
- if(wardcd == basewardcd ){
- if (cmb_reqresnflag.value == "01"){
- messageBox('분산환자가 아니므로 증상완화를 선택', 'E001');
- cmb_reqresnflag.value = "";
- }
- }
- ]]>
- </script>
- </select1>
- <caption id="caption64" class="cell_1" style="left:307px; top:88px; width:120px; height:23px; text-align:center; vertical-align:middle; ">면담일/대기전환일</caption>
- <output id="opt_icdrroomcd" ref="/root/main/hospiceinfo/hospicedetl/icdrroomcd" class="output_fix" style="left:430px; top:354px; width:171px; height:19px; "/>
- <caption id="caption75" class="cell_1" style="left:307px; top:208px; width:120px; height:23px; text-align:center; vertical-align:middle; ">소개받았을때 기분</caption>
- <input id="ipt_reqdd" ref="/root/main/hospiceinfo/hospicedetl/reqdd" class="input_default" navindex="5" inputtype="date" style="left:430px; top:65px; width:85px; height:19px; "/>
- <line id="line46" class="line_2" style="x1:307px; y1:182px; x2:603px; y2:182px; "/>
- <caption id="caption65" class="cell_1" style="left:307px; top:353px; width:120px; height:23px; text-align:center; vertical-align:middle; ">입실전병</caption>
- <caption id="caption66" class="cell_1" style="left:307px; top:232px; width:120px; height:23px; text-align:center; vertical-align:middle; ">관리현황</caption>
- <select1 id="cmb_procncrawaryn" ref="/root/main/hospiceinfo/hospicedetl/procncrawaryn" class="combo_default" navindex="12" appearance="minimal" style="left:542px; top:282px; width:59px; height:19px; ">
- <choices>
- <item>
- <label>Y</label>
- <value>Y</value>
- </item>
- <item>
- <label>N</label>
- <value>N</value>
- </item>
- </choices>
- </select1>
- <output id="opt_icdrindd" ref="/root/main/hospiceinfo/hospicedetl/icdrindd" class="output_fix" format="yyyy-mm-dd" style="left:430px; top:330px; width:171px; height:19px; "/>
- <caption id="caption77" class="cell_1" style="left:307px; top:305px; width:120px; height:23px; text-align:center; vertical-align:middle; ">임종 원하는 장소</caption>
- <select1 id="cmb_itrdmoodcd" ref="/root/main/hospiceinfo/hospicedetl/itrdmoodcd" class="combo_default" navindex="14" appearance="minimal" style="left:430px; top:209px; width:171px; height:19px; ">
- <choices>
- <itemset nodeset="/root/init/M0207list/M0207">
- <label ref="cdnm"/>
- <value ref="cdid"/>
- </itemset>
- </choices>
- </select1>
- <line id="line47" class="line_2" style="x1:307px; y1:206px; x2:601px; y2:206px; "/>
- <select1 id="cmb_drlist" ref="/root/main/hospiceinfo/hospicedetl/atdoctid" class="combo_default" navindex="12" appearance="minimal" style="left:517px; top:113px; width:84px; height:19px; ">
- <choices>
- <itemset nodeset="/root/hidden/drlist">
- <label ref="drnm"/>
- <value ref="drid"/>
- </itemset>
- </choices>
- </select1>
- <output id="opt_reqtypespec" ref="/root/main/hospiceinfo/hospicedetl/reqtypespec" class="output_fix" style="left:428px; top:113px; width:159px; height:19px; "/>
- <input id="ipt_reqresnetc" ref="/root/main/hospiceinfo/hospicedetl/reqresnetc" class="input_default" navindex="11" maxlength="30" style="left:430px; top:161px; width:171px; height:19px; "/>
- <line id="line48" class="line_2" style="x1:307px; y1:230px; x2:601px; y2:230px; "/>
- <caption id="caption67" class="cell_1" style="left:307px; top:184px; width:120px; height:23px; text-align:center; vertical-align:middle; ">추천경유</caption>
- <caption id="caption68" class="cell_1" style="left:307px; top:257px; width:74px; height:23px; text-align:center; vertical-align:middle; ">말기인식</caption>
- <input id="input25" ref="/root/main/hospiceinfo/hospicedetl/intvdd" class="input_default" navindex="5" inputtype="date" style="left:430px; top:89px; width:85px; height:19px; "/>
- <line id="line49" class="line_2" style="x1:307px; y1:255px; x2:601px; y2:255px; "/>
- <select1 id="cmb_endawaryn" ref="/root/main/hospiceinfo/hospicedetl/endawaryn" class="combo_default" navindex="11" appearance="minimal" style="left:430px; top:258px; width:58px; height:19px; ">
- <choices>
- <item>
- <label>Y</label>
- <value>Y</value>
- </item>
- <item>
- <label>N</label>
- <value>N</value>
- </item>
- </choices>
- </select1>
- <select1 id="cmb_proendawaryn" ref="/root/main/hospiceinfo/hospicedetl/proendawaryn" class="combo_default" navindex="12" appearance="minimal" style="left:542px; top:258px; width:59px; height:19px; ">
- <choices>
- <item>
- <label>Y</label>
- <value>Y</value>
- </item>
- <item>
- <label>N</label>
- <value>N</value>
- </item>
- </choices>
- </select1>
- <select1 id="cmb_reqhospnm" ref="/root/main/hospiceinfo/hospicedetl/reqhospnm" class="combo_default" navindex="13" appearance="minimal" style="left:428px; top:113px; width:159px; height:19px; ">
- <choices>
- <itemset nodeset="/root/init/M0203list/M0203">
- <label ref="cdnm"/>
- <value ref="cdid"/>
- </itemset>
- </choices>
- </select1>
- <input id="ipt_waitdd" ref="/root/main/hospiceinfo/hospicedetl/waitdd" class="input_default" navindex="6" inputtype="date" style="left:517px; top:89px; width:84px; height:19px; "/>
- <input id="ipt_recmpsgeetc" ref="/root/main/hospiceinfo/hospicedetl/recmpsgeetc" disabled="true" style="left:506px; top:185px; width:95px; height:19px; "/>
- <select1 id="cmb_recmpsgecd" ref="/root/main/hospiceinfo/hospicedetl/recmpsgecd" class="combo_default" navindex="10" appearance="minimal" style="left:430px; top:185px; width:73px; height:19px; ">
- <choices>
- <itemset nodeset="/root/init/M0264list/M0264">
- <label ref="cdnm"/>
- <value ref="cdid"/>
- </itemset>
- </choices>
- <script type="javascript" ev:event="xforms-value-changed">
- <![CDATA[
- if( model.getValue("/root/main/hospiceinfo/hospicedetl/recmpsgecd") == "12") {
- ipt_recmpsgeetc.disabled = false;
- }else{
- ipt_recmpsgeetc.disabled = true;
- }
- ]]>
- </script>
- </select1>
- <select1 id="cmb_reqdeptnm" ref="/root/main/hospiceinfo/hospicedetl/reqtypespec" class="combo_default" navindex="12" appearance="minimal" style="left:430px; top:113px; width:85px; height:19px; ">
- <choices>
- <itemset nodeset="/root/hidden/orddeptlist/dept">
- <label ref="depthngnm"/>
- <value ref="deptcd"/>
- </itemset>
- </choices>
- <script type="javascript" ev:event="xforms-value-changed">
- <![CDATA[
- if (cmb_reqtypeflag.value=='01' ){//본원
- cmb_reqhospnm.visible = false;//타 병원 리스트
- cmb_reqdeptnm.visible = true;//본원 진료과 리스트
- model.removenode("/root/send");
- model.makeValue("/root/send/orddeptcd", model.getValue("/root/main/hospiceinfo/hospicedetl/reqtypespec"));
- submit("TRMNH02903");
- cmb_drlist.visible = true;//의사리스트
- opt_reqtypespec.visible = false;
- }else if (cmb_reqtypeflag.value=='02'){
- cmb_reqhospnm.visible = true;
- cmb_reqdeptnm.visible = false;//본원 진료과 리스트
- cmb_drlist.visible = false;//의사리스트
- opt_reqtypespec.visible = false;
- }else if (cmb_reqtypeflag.value=='03'){//재입실
- cmb_reqhospnm.visible = false;//타 병원 리스트
- cmb_reqdeptnm.visible = true;//본원 진료과 리스트
- model.removenode("/root/send");
- model.makeValue("/root/send/orddeptcd", model.getValue("/root/main/hospiceinfo/hospicedetl/reqtypespec"));
- submit("TRMNH02903");
- cmb_drlist.visible = true;//의사리스트
- opt_reqtypespec.visible = false;
- }
- ]]>
- </script>
- </select1>
- <select1 id="combo12" ref="/root/main/hospiceinfo/hospicedetl/reqtypeflag" class="combo_default" navindex="12" appearance="minimal" style="left:367px; top:113px; width:60px; height:19px; ">
- <choices>
- <itemset nodeset="/root/init/M0477detl/M0477">
- <label ref="cdnm"/>
- <value ref="cdid"/>
- </itemset>
- </choices>
- <script type="javascript" ev:event="xforms-value-changed">
- <![CDATA[
- if (cmb_reqtypeflag.value=='01' ){//본원
- cmb_reqhospnm.visible = false;//타 병원 리스트
- cmb_reqdeptnm.visible = true;//본원 진료과 리스트
- model.removenode("/root/send");
- model.makeValue("/root/send/orddeptcd", model.getValue("/root/main/hospiceinfo/hospicedetl/reqhospnm"));
- submit("TRMNH02903");
- cmb_drlist.visible = true;//의사리스트
- opt_reqtypespec.visible = false;
- }else if (cmb_reqtypeflag.value=='02'){
- cmb_reqhospnm.visible = true;
- cmb_reqdeptnm.visible = false;//본원 진료과 리스트
- cmb_drlist.visible = false;//의사리스트
- opt_reqtypespec.visible = false;
- }else if (cmb_reqtypeflag.value=='03'){
- cmb_reqhospnm.visible = false;//타 병원 리스트
- cmb_reqdeptnm.visible = true;//본원 진료과 리스트
- model.removenode("/root/send");
- model.makeValue("/root/send/orddeptcd", model.getValue("/root/main/hospiceinfo/hospicedetl/reqhospnm"));
- submit("TRMNH02903");
- cmb_drlist.visible = true;//의사리스트
- opt_reqtypespec.visible = false;
- }
- ]]>
- </script>
- </select1>
- <input id="ipt_reqindd" ref="/root/main/hospiceinfo/hospicedetl/reqindd" class="input_default" navindex="6" inputtype="date" style="left:517px; top:65px; width:84px; height:19px; "/>
- <select1 id="cmb_agonalhopeplcecd" ref="/root/main/hospiceinfo/hospicedetl/agonalhopeplcecd" class="combo_default" navindex="16" appearance="minimal" style="left:430px; top:306px; width:171px; height:19px; ">
- <choices>
- <itemset nodeset="/root/init/M0205list/M0205">
- <label ref="cdnm"/>
- <value ref="cdid"/>
- </itemset>
- </choices>
- </select1>
- <caption id="caption134" class="cell_1" style="left:491px; top:281px; width:49px; height:23px; text-align:center; vertical-align:middle; ">보호자</caption>
- <line id="line50" class="line_2" style="x1:307px; y1:279px; x2:601px; y2:279px; "/>
- <line id="line108" class="line_3" style="x1:0px; y1:376px; x2:294px; y2:376px; "/>
- <input id="ipt_sptsymp1" ref="/root/main/hospiceinfo/hospicedetl/sptsymp1" disabled="true" maxlength="1" style="left:930px; top:503px; width:30px; height:19px; "/>
- <input id="ipt_sptsymp2" ref="/root/main/hospiceinfo/hospicedetl/sptsymp2" disabled="true" maxlength="1" style="left:1079px; top:503px; width:30px; height:19px; "/>
- <line id="line97" class="line_1" style="x1:620px; y1:635px; x2:1185px; y2:635px; "/>
- <caption id="caption76" class="tit_2" style="left:619px; top:620px; width:113px; height:13px; font-family:돋움체; ">상담</caption>
- <datagrid id="grd_famycnst" nodeset="/root/main/hospiceinfo/hospicedetl/famycnst/famylist/famylist" class="datagrid1" allowuserresize="true" caption="일자^내용" colsep="^" colwidth="95, 429" extendlastcol="scroll" mergecellsfixedrows="bycolrec" rowheader="update" rowsep="|" style="left:620px; top:640px; width:565px; height:105px; ">
- <col ref="cnstdd" type="inputdate" style="text-align:center; "/>
- <col ref="cnst" type="input"/>
- <script type="javascript" ev:event="xforms-value-changed">
- <![CDATA[
- var updateData = grd_famycnst.getUpdateData("update");
- ]]>
- </script>
- </datagrid>
- <button id="button7" class="btn2_letter3" style="left:1130px; top:615px; width:53px; height:19px; ">
- <caption>행삭제</caption>
- <script type="javascript" ev:event="DOMActivate">
- <![CDATA[
- grd_famycnst.deleteRow(grd_famycnst.row);
- ]]>
- </script>
- </button>
- <button id="button8" class="btn2_letter3" style="left:1075px; top:615px; width:53px; height:19px; ">
- <caption>행추가</caption>
- <script type="javascript" ev:event="DOMActivate">
- <![CDATA[
- grd_famycnst.addRow();
- ]]>
- </script>
- </button>
- </group>
- <group id="group4" visibility="hidden" style="left:1095px; top:435px; width:70px; height:15px; ">
- <line id="line73" class="line_3" style="x1:0px; y1:59px; x2:560px; y2:59px; "/>
- <input id="ipt_funrlprepspec" ref="/root/main/hospicemasv/masvdetl/funrlprepspec" class="input_search" navindex="20" style="left:154px; top:363px; width:405px; height:19px; "/>
- <caption id="caption113" class="cell_1" style="left:1px; top:186px; width:74px; height:23px; text-align:center; vertical-align:middle; ">병전성격</caption>
- <line id="line95" class="line_3" style="x1:1px; y1:409px; x2:561px; y2:409px; "/>
- <caption id="caption102" class="cell_1" style="left:281px; top:61px; width:74px; height:48px; text-align:center; vertical-align:middle; ">주거형태</caption>
- <select1 id="cmb_residncstatcd2" ref="/root/main/hospicemasv/masvdetl/residncstatcd2" class="combo_default" navindex="6" appearance="minimal" style="left:357px; top:88px; width:202px; height:19px; ">
- <choices>
- <itemset nodeset="/root/init/A0520detl/A0520">
- <label ref="cdnm"/>
- <value ref="cdid"/>
- </itemset>
- </choices>
- </select1>
- <caption id="caption103" class="cell_1" style="left:1px; top:136px; width:119px; height:23px; text-align:center; vertical-align:middle; ">주수입원 및 월수입</caption>
- <input id="ipt_disbefocharspec" ref="/root/main/hospicemasv/masvdetl/disbefocharspec" class="input_search" navindex="13" style="left:77px; top:188px; width:482px; height:19px; "/>
- <line id="line74" class="line_2" style="x1:1px; y1:209px; x2:561px; y2:209px; "/>
- <line id="line85" class="line_2" style="x1:1px; y1:309px; x2:561px; y2:309px; "/>
- <caption id="caption114" class="cell_1" style="left:225px; top:409px; width:74px; height:48px; text-align:center; vertical-align:middle; ">
- <![CDATA[심리 사회적
- 상태]]>
- </caption>
- <line id="line96" class="line_2" style="x1:0px; y1:383px; x2:560px; y2:383px; "/>
- <caption id="caption104" class="cell_1" style="left:0px; top:61px; width:74px; height:23px; text-align:center; vertical-align:middle; ">보험유형</caption>
- <select1 id="cmb_funrlprepcd" ref="/root/main/hospicemasv/masvdetl/funrlprepcd" class="combo_default" navindex="19" appearance="minimal" style="left:77px; top:363px; width:74px; height:19px; ">
- <choices>
- <itemset nodeset="/root/init/M0475detl/M0475">
- <label ref="cdnm"/>
- <value ref="cdid"/>
- </itemset>
- </choices>
- </select1>
- <input id="ipt_suptsysspec" ref="/root/main/hospicemasv/masvdetl/suptsysspec" class="input_search" navindex="17" style="left:77px; top:288px; width:482px; height:19px; "/>
- <line id="line75" class="line_2" style="x1:77px; y1:234px; x2:561px; y2:234px; "/>
- <caption id="caption115" class="cell_1" style="left:1px; top:261px; width:74px; height:23px; text-align:center; vertical-align:middle; ">주보호자</caption>
- <input id="ipt_soclstatpatflag" ref="/root/main/hospicemasv/masvdetl/soclstatpatflag" class="input_search" navindex="13" style="left:128px; top:213px; width:431px; height:19px; "/>
- <button id="button2" class="btn5_letter2" navindex="22" style="left:519px; top:10px; width:42px; height:19px; ">
- <caption>저장</caption>
- <script type="javascript" ev:event="DOMActivate">
- <![CDATA[
- if(messageBox("","Q002") != 6) return;
-
- if(ipt_intvdd.value == "" ) {
- messageBox('면담일은 필수 입력 사항입니다.', 'E');
- }
-
- var xMasvPath = "/root/main/hospicemasv/masvdetl/";
-
-
- //피면담자명이 없으면 환자명으로 대체한다.
- recvintvnm = model.getValue(xMasvPath + 'recvintvnm') ;
- if(recvintvnm == "" ) {
- recvintvnm = opt_hngnm.value;
- }
-
- model.removenode("/root/send");
- model.makeNode("/root/send");
- model.makeValue("/root/send/pid" , model.getValue(xMasvPath + 'pid') );
- model.makeValue("/root/send/cretdd" , model.getValue(xMasvPath + 'cretdd') );
- model.makeValue("/root/send/crettm" , model.getValue(xMasvPath + 'crettm') );
- model.makeValue("/root/send/reqdeptcd" , model.getValue(xMasvPath + 'reqdeptcd') );
- model.makeValue("/root/send/reqdd" , model.getValue(xMasvPath + 'reqdd') );
- model.makeValue("/root/send/intvdd" , model.getValue(xMasvPath + 'intvdd') );
- model.makeValue("/root/send/intvtm" , model.getValue(xMasvPath + 'intvtm') );
- model.makeValue("/root/send/recvintvnm" , recvintvnm );
- model.makeValue("/root/send/intvnm" , model.getValue(xMasvPath + 'intvnm') );
- model.makeValue("/root/send/corpgrntcd" , model.getValue(xMasvPath + 'corpgrntcd') );
- model.makeValue("/root/send/soclinsuspec" , model.getValue(xMasvPath + 'soclinsuspec') );
- model.makeValue("/root/send/econstatcd" , model.getValue(xMasvPath + 'econstatcd') );
- model.makeValue("/root/send/econstatspec" , model.getValue(xMasvPath + 'econstatspec') );
- model.makeValue("/root/send/mainincmspec" , model.getValue(xMasvPath + 'mainincmspec') );
- model.makeValue("/root/send/ordamtownspec" , model.getValue(xMasvPath + 'ordamtownspec') );
- model.makeValue("/root/send/residncstatcd" , model.getValue(xMasvPath + 'residncstatcd') );
- model.makeValue("/root/send/residncstatcd2" , model.getValue(xMasvPath + 'residncstatcd2') );
- model.makeValue("/root/send/aidassocnyn" , model.getValue(xMasvPath + 'aidassocnyn') );
- model.makeValue("/root/send/disbefocharspec" , model.getValue(xMasvPath + 'disbefocharspec') );
- model.makeValue("/root/send/soclstatpatflag" , model.getValue(xMasvPath + 'soclstatpatflag') );
- model.makeValue("/root/send/soclstatprocerflag" , model.getValue(xMasvPath + 'soclstatprocerflag') );
- model.makeValue("/root/send/mainprocerflag" , model.getValue(xMasvPath + 'mainprocerflag') );
- model.makeValue("/root/send/suptsysspec" , model.getValue(xMasvPath + 'suptsysspec') );
- model.makeValue("/root/send/nursingstresspec" , model.getValue(xMasvPath + 'nursingstresspec') );
- model.makeValue("/root/send/funrlprepcd" , model.getValue(xMasvPath + 'funrlprepcd') );
- model.makeValue("/root/send/funrlprepspec" , model.getValue(xMasvPath + 'funrlprepspec') );
- model.makeValue("/root/send/cmt" , model.getValue(xMasvPath + 'cmt') );
-
- submit("TXMNH01503");
-
- fSearchMasv();//심리사회적평가 조회
- ]]>
- </script>
- </button>
- <caption id="caption105" class="cell_1" style="left:1px; top:111px; width:74px; height:23px; text-align:center; vertical-align:middle; ">경제상태</caption>
- <textarea id="tar_nursingstresspec" ref="/root/main/hospicemasv/masvdetl/nursingstresspec" navindex="18" style="left:77px; top:312px; width:482px; height:46px; "/>
- <line id="line76" class="line_2" style="x1:1px; y1:259px; x2:561px; y2:259px; "/>
- <input id="ipt_cmt" ref="/root/main/hospicemasv/masvdetl/cmt" class="input_search" navindex="17" style="left:77px; top:387px; width:482px; height:19px; "/>
- <caption id="caption106" class="tit_2" style="left:0px; top:15px; width:113px; height:13px; ">심리사회적 평가</caption>
- <line id="line67" class="line_2" style="x1:1px; y1:160px; x2:561px; y2:160px; "/>
- <caption id="caption107" class="cell_1" style="left:281px; top:161px; width:74px; height:23px; text-align:center; vertical-align:middle; ">후원회도움</caption>
- <line id="line78" class="line_2" style="x1:1px; y1:284px; x2:561px; y2:284px; "/>
- <caption id="caption129" class="cell_1" style="left:1px; top:286px; width:74px; height:23px; text-align:center; vertical-align:middle; ">지지체계</caption>
- <caption id="caption98" class="cell_1" style="left:1px; top:161px; width:119px; height:23px; text-align:center; vertical-align:middle; ">진료비부담자</caption>
- <input id="ipt_ordamtownspec" ref="/root/main/hospicemasv/masvdetl/ordamtownspec" class="input_search" navindex="11" style="left:122px; top:163px; width:156px; height:19px; "/>
- <line id="line68" class="line_2" style="x1:1px; y1:85px; x2:561px; y2:85px; "/>
- <caption id="caption108" class="cell_1" style="left:374px; top:35px; width:74px; height:23px; text-align:center; vertical-align:middle; ">면담자</caption>
- <line id="line69" class="line_1" style="x1:1px; y1:31px; x2:558px; y2:32px; "/>
- <select1 id="cmb_aidassocnyn" ref="/root/main/hospicemasv/masvdetl/aidassocnyn" class="combo_default" navindex="12" appearance="minimal" style="left:357px; top:163px; width:202px; height:19px; ">
- <choices>
- <item>
- <label>Y</label>
- <value>Y</value>
- </item>
- <item>
- <label>N</label>
- <value>N</value>
- </item>
- </choices>
- </select1>
- <caption id="caption109" class="cell_1" style="left:186px; top:35px; width:74px; height:23px; text-align:center; vertical-align:middle; ">피면담자</caption>
- <input id="input24" ref="/root/main/hospicemasv/masvdetl/econstatspec" class="input_search" navindex="9" style="left:281px; top:113px; width:278px; height:19px; "/>
- <output id="opt_intvnm" ref="/root/main/hospicemasv/masvdetl/intvnm" class="output_fix" style="left:451px; top:37px; width:108px; height:19px; "/>
- <input id="ipt_soclstatprocerflag" ref="/root/main/hospicemasv/masvdetl/soclstatprocerflag" class="input_search" navindex="13" style="left:128px; top:238px; width:431px; height:19px; "/>
- <input id="ipt_mainincmspec" ref="/root/main/hospicemasv/masvdetl/mainincmspec" class="input_search" navindex="9" style="left:122px; top:138px; width:437px; height:19px; "/>
- <input id="ipt_recvintvnm" ref="/root/main/hospicemasv/masvdetl/recvintvnm" class="input_search" navindex="2" style="left:263px; top:37px; width:107px; height:19px; "/>
- <select id="chk_mainprocerflag" ref="/root/main/hospicemasv/masvdetl/mainprocerflag" navindex="16" overflow="visible" appearance="full" cols="10" style="left:77px; top:264px; width:482px; height:19px; border-style:none; ">
- <choices>
- <itemset nodeset="/root/init/M0474detl/M0474">
- <label ref="cdnm"/>
- <value ref="cdid"/>
- </itemset>
- </choices>
- </select>
- <select1 id="cmb_corpgrntcd" ref="/root/main/hospicemasv/masvdetl/corpgrntcd" class="combo_default" navindex="3" appearance="minimal" style="left:77px; top:62px; width:201px; height:19px; ">
- <choices>
- <itemset nodeset="/root/init/P0008detl/P0008">
- <label ref="cdnm"/>
- <value ref="cdid"/>
- </itemset>
- </choices>
- </select1>
- <select1 id="cmb_econstatcd" ref="/root/main/hospicemasv/masvdetl/econstatcd" class="combo_default" navindex="8" appearance="minimal" style="left:78px; top:113px; width:200px; 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>
- </select1>
- <caption id="caption130" class="cell_1" style="left:1px; top:311px; width:74px; height:48px; text-align:center; vertical-align:middle; ">
- <![CDATA[간병관련
- 스트레스]]>
- </caption>
- <input id="ipt_intvdd" ref="/root/main/hospicemasv/masvdetl/intvdd" class="input_default" navindex="1" inputtype="date" style="left:77px; top:37px; width:105px; height:19px; ">
- <script type="javascript" ev:event="xforms-value-changed">
- <![CDATA[
- if(model.getValue("/root/main/hospicemasv/masvdetl/intvdd") != ''){
- opt_intvnm.value = getUserName();
- }else{
- opt_intvnm.value = "";
- }
- ]]>
- </script>
- </input>
- <caption id="caption131" class="cell_1" style="left:1px; top:361px; width:74px; height:23px; text-align:center; vertical-align:middle; ">장례준비</caption>
- <line id="line70" class="line_2" style="x1:1px; y1:110px; x2:561px; y2:110px; "/>
- <select1 id="cmb_residncstatcd" ref="/root/main/hospicemasv/masvdetl/residncstatcd" class="combo_default" navindex="6" appearance="minimal" style="left:357px; top:62px; width:202px; height:19px; ">
- <choices>
- <itemset nodeset="/root/init/A0519detl/A0519">
- <label ref="cdnm"/>
- <value ref="cdid"/>
- </itemset>
- </choices>
- <script type="javascript" ev:event="xforms-value-changed">
- <![CDATA[
- if(cmb_residncstatcd.value == "99"){
- cmb_residncstatcd2.disabled = false;
- }else{
- cmb_residncstatcd2.value = "";
- cmb_residncstatcd2.disabled = true;
- }
- ]]>
- </script>
- </select1>
- <caption id="caption110" class="cell_1" style="left:0px; top:35px; width:74px; height:23px; text-align:center; vertical-align:middle; ">면담일</caption>
- <caption id="caption132" class="cell_1" style="left:1px; top:385px; width:74px; height:23px; text-align:center; vertical-align:middle; ">소견</caption>
- <line id="line71" class="line_2" style="x1:1px; y1:185px; x2:561px; y2:185px; "/>
- <caption id="caption111" class="cell_1" style="left:77px; top:211px; width:49px; height:23px; text-align:center; vertical-align:middle; ">환자</caption>
- <caption id="caption101" class="cell_1" style="left:1px; top:86px; width:74px; height:23px; text-align:center; vertical-align:middle; ">사회보험</caption>
- <input id="ipt_soclinsuspec" ref="/root/main/hospicemasv/masvdetl/soclinsuspec" class="input_search" navindex="5" style="left:78px; top:88px; width:200px; height:19px; "/>
- <line id="line72" class="line_2" style="x1:1px; y1:134px; x2:561px; y2:134px; "/>
- <caption id="caption112" class="cell_1" style="left:77px; top:236px; width:49px; height:23px; text-align:center; vertical-align:middle; ">보호자</caption>
- <line id="line94" class="line_2" style="x1:1px; y1:359px; x2:561px; y2:359px; "/>
- <datagrid id="grd_progreclist" nodeset="/root/main/hospiceinfo/hospicedetl/progrec/progreclist/progreclist" caption="^시행일시^대상자" colsep="^" colwidth="204, 100, 100" fixedcols="1" mergecellsfixedrows="bycolrec" rowsep="|" style="left:0px; top:435px; width:558px; height:170px; ">
- <col ref="item"/>
- <col ref="execdd" type="inputdate" style="text-align:center; "/>
- <col ref="desnm" type="input" style="text-align:center; "/>
- </datagrid>
- <select1 id="cmb_edcugrdecd" ref="/root/main/hospiceinfo/hospicedetl/edcugrdecd" class="combo_default" navindex="24" visibility="hidden" appearance="minimal" style="left:675px; top:35px; width:50px; height:19px; ">
- <choices>
- <itemset nodeset="/root/init/M0069list/M0069">
- <label ref="cdnm"/>
- <value ref="cdid"/>
- </itemset>
- </choices>
- </select1>
- <caption id="caption86" class="cell_1" visibility="hidden" style="left:615px; top:34px; width:57px; height:23px; text-align:center; vertical-align:middle; ">학력</caption>
- <line id="line62" class="line_2" style="x1:575px; y1:249px; x2:887px; y2:249px; "/>
- <caption id="caption92" class="cell_1" style="left:575px; top:201px; width:57px; height:23px; text-align:center; vertical-align:middle; ">49제</caption>
- <select1 id="rdo_mmmassyn" ref="/root/main/hospiceinfo/hospicedetl/mmmassyn" class="radio_search" navindex="31" appearance="full" cols="4" overflow="visible" style="left:657px; top:253px; width:71px; height:20px; background-color:transparent; border-style:none; ">
- <choices>
- <item>
- <label>무</label>
- <value>1</value>
- </item>
- <item>
- <label>유</label>
- <value>2</value>
- </item>
- </choices>
- </select1>
- <line id="line63" class="line_3" style="x1:575px; y1:275px; x2:887px; y2:275px; "/>
- <caption id="caption93" class="cell_1" visibility="hidden" style="left:730px; top:251px; width:79px; height:23px; text-align:center; vertical-align:middle; ">시신기증</caption>
- <select1 id="cmb_agonalplcecd" ref="/root/main/hospiceinfo/hospicedetl/agonalplcecd" class="combo_default" navindex="28" appearance="minimal" style="left:790px; top:178px; width:94px; height:19px; ">
- <choices>
- <itemset nodeset="/root/init/hardcodeinfo">
- <label ref="cdnm"/>
- <value ref="cdid"/>
- </itemset>
- </choices>
- <script type="javascript" ev:event="xforms-value-changed">
- <![CDATA[
- if(ipt_agonaldd.value == ""){
- ipt_agonaldd.value = getCurrentDate();
- }
- ]]>
- </script>
- </select1>
- <line id="line64" class="line_1" style="x1:575px; y1:171px; x2:887px; y2:171px; "/>
- <caption id="caption94" class="cell_1" style="left:575px; top:226px; width:79px; height:23px; text-align:center; vertical-align:middle; ">사별가족방문</caption>
- <line id="line87" class="line_3" style="x1:574px; y1:78px; x2:886px; y2:78px; "/>
- <select1 id="rdo_donatyn" ref="/root/main/hospiceinfo/hospicedetl/donatyn" class="radio_search" navindex="32" visibility="hidden" appearance="full" cols="4" overflow="visible" style="left:813px; top:253px; width:71px; height:20px; background-color:transparent; border-style:none; ">
- <choices>
- <item>
- <label>무</label>
- <value>1</value>
- </item>
- <item>
- <label>유</label>
- <value>2</value>
- </item>
- </choices>
- </select1>
- <caption id="caption95" class="cell_1" style="left:575px; top:251px; width:79px; height:23px; text-align:center; vertical-align:middle; ">49제참석</caption>
- <line id="line88" class="line_2" style="x1:575px; y1:199px; x2:887px; y2:199px; "/>
- <select1 id="rdo_separationfamyyn" ref="/root/main/hospiceinfo/hospicedetl/separationfamyyn" class="radio_search" navindex="29" appearance="full" cols="2" overflow="visible" style="left:657px; top:228px; width:71px; height:20px; background-color:transparent; border-style:none; ">
- <choices>
- <item>
- <label>무</label>
- <value>1</value>
- </item>
- <item>
- <label>유</label>
- <value>2</value>
- </item>
- </choices>
- </select1>
- <caption id="caption96" class="cell_1" style="left:730px; top:226px; width:79px; height:23px; text-align:center; vertical-align:middle; ">장례식장방문</caption>
- <caption id="caption97" class="tit_2" style="left:575px; top:156px; width:100px; height:13px; ">사별가족 관리</caption>
- <input id="ipt_agonaldd" ref="/root/main/hospiceinfo/hospicedetl/agonaldd" class="input_default" navindex="27" inputtype="date" style="left:635px; top:178px; width:94px; height:19px; ">
- <script type="javascript" ev:event="xforms-value-changed">
- <![CDATA[
- //임종일
- var agonaldd = model.getValue("/root/main/hospiceinfo/hospicedetl/agonaldd");
- if(agonaldd.length == 8){
- var agonalcd = model.getValue("/root/main/hospiceinfo/hospicedetl/agonaldd");
- var agonal49 = getAddDay(agonalcd,"49");
- var agonal365 = getAddDay(agonalcd,"365");
-
- model.setValue("/root/temp/hospicedetl/agonal49",agonal49);
- model.setValue("/root/temp/hospicedetl/agonal365",agonal365);
- cmb_agonalplcecd.disabled = false;
- }else if(agonaldd == '' || agonaldd.length != 8){
- messageBox("임종일을 삭제","E001");
- }
- model.refresh();
- ]]>
- </script>
- </input>
- <input id="ipt_agonal365" ref="/root/temp/hospicedetl/agonal365" class="input_default" inputtype="date" style="left:790px; top:203px; width:94px; height:19px; "/>
- <caption id="caption89" class="cell_1" style="left:730px; top:176px; width:57px; height:23px; text-align:center; vertical-align:middle; ">임종장소</caption>
- <group id="group5" visibility="hidden" style="left:575px; top:80px; width:315px; height:73px; ">
- <caption id="caption81" class="cell_1" style="left:0px; top:24px; width:57px; height:23px; text-align:center; vertical-align:middle; ">영세일</caption>
- <caption id="caption82" class="cell_1" style="left:161px; top:0px; width:49px; height:23px; text-align:center; vertical-align:middle; ">본당</caption>
- <caption id="caption83" class="cell_1" style="left:161px; top:24px; width:49px; height:23px; text-align:center; vertical-align:middle; ">대세일</caption>
- <caption id="caption84" class="cell_1" style="left:0px; top:48px; width:57px; height:23px; text-align:center; vertical-align:middle; ">병자성사</caption>
- <input id="ipt_sickdivser" ref="/root/main/hospiceinfo/hospicedetl/sickdivser" class="input_default" navindex="22" maxlength="40" style="left:60px; top:49px; width:251px; height:19px; "/>
- <input id="ipt_parishchrchnm" ref="/root/main/hospiceinfo/hospicedetl/parishchrchnm" class="input_search" navindex="19" maxlength="30" style="left:212px; top:1px; width:99px; height:19px; "/>
- <input id="ipt_baptismdd" ref="/root/main/hospiceinfo/hospicedetl/baptismdd" class="input_default" navindex="20" inputtype="date" style="left:60px; top:25px; width:99px; height:19px; "/>
- <line id="line58" class="line_2" style="x1:0px; y1:70px; x2:312px; y2:70px; "/>
- <input id="ipt_baptnm" ref="/root/main/hospiceinfo/hospicedetl/baptnm" class="input_search" navindex="18" maxlength="30" style="left:60px; top:1px; width:99px; height:19px; "/>
- <input id="ipt_emerbaptdd" ref="/root/main/hospiceinfo/hospicedetl/emerbaptdd" class="input_default" navindex="21" inputtype="date" style="left:212px; top:25px; width:99px; height:19px; "/>
- <line id="line93" class="line_2" style="x1:0px; y1:46px; x2:312px; y2:46px; "/>
- <line id="line60" class="line_2" style="x1:0px; y1:22px; x2:312px; y2:22px; "/>
- <caption id="caption80" class="cell_1" style="left:0px; top:0px; width:57px; height:23px; text-align:center; vertical-align:middle; ">세례명</caption>
- </group>
- <select1 id="rdo_memodoryn" ref="/root/main/hospiceinfo/hospicedetl/memodoryn" class="radio_search" navindex="30" appearance="full" cols="4" overflow="visible" style="left:813px; top:228px; width:71px; height:20px; background-color:transparent; border-style:none; ">
- <choices>
- <item>
- <label>무</label>
- <value>1</value>
- </item>
- <item>
- <label>유</label>
- <value>2</value>
- </item>
- </choices>
- </select1>
- <line id="line90" class="line_2" style="x1:575px; y1:199px; x2:887px; y2:199px; "/>
- <line id="line91" class="line_2" style="x1:575px; y1:224px; x2:887px; y2:224px; "/>
- <input id="ipt_agonal49" ref="/root/temp/hospicedetl/agonal49" class="input_default" inputtype="date" style="left:635px; top:203px; width:94px; height:19px; "/>
- <caption id="caption90" class="cell_1" style="left:730px; top:201px; width:57px; height:23px; text-align:center; vertical-align:middle; ">기일</caption>
- <caption id="caption91" class="cell_1" style="left:575px; top:176px; width:57px; height:23px; text-align:center; vertical-align:middle; ">임종일</caption>
- <line id="line61" class="line_2" style="x1:575px; y1:224px; x2:887px; y2:224px; "/>
- <caption id="caption124" class="cell_1" visibility="hidden" style="left:605px; top:326px; width:133px; height:73px; text-align:center; vertical-align:middle; ">피부상태</caption>
- <button id="btn_delfamycnst" class="btn2_letter3" style="left:1084px; top:284px; width:53px; height:19px; ">
- <caption>행삭제</caption>
- <script type="javascript" ev:event="DOMActivate">
- <![CDATA[
- grd_famycnst.deleteRow(grd_famycnst.row);
- ]]>
- </script>
- </button>
- <button id="btn_skindel" class="btn2_letter4" visibility="hidden" style="left:1067px; top:328px; width:64px; height:19px; ">
- <caption>한줄삭제</caption>
- <script type="javascript" ev:event="DOMActivate">
- <![CDATA[
- grd_skinstatspec.deleteItem(grd_skinstatspec.row);
- ]]>
- </script>
- </button>
- <button id="button4" class="btn5_letter2" style="left:985px; top:284px; width:42px; height:19px; ">
- <caption>확대</caption>
- <script type="javascript" ev:event="DOMActivate">
- <![CDATA[
- grd_famycnst.addRow();
- ]]>
- </script>
- </button>
- <select id="chk_skinstatyn" ref="/root/main/hospiceinfo/hospicedetl/skinstatyn" navindex="53" visibility="hidden" overflow="visible" appearance="full" cols="1" rows="1" style="left:741px; top:328px; width:78px; height:19px; border-style:none; ">
- <choices>
- <item>
- <label>해당없음</label>
- <value>1</value>
- </item>
- </choices>
- <script type="javascript" ev:event="xforms-value-changed">
- <![CDATA[
- if(chk_skinstatyn.value == "1"){
- grd_skinstatspec.isReadOnly(1,0) = true;
- grd_skinstatspec.isReadOnly(1,1) = true;
- btn_skinadd.disabled = true;
- }else{
- grd_skinstatspec.isReadOnly(1,0) = false;
- grd_skinstatspec.isReadOnly(1,1) = false;
- btn_skinadd.disabled = false;
- }
-
- ]]>
- </script>
- </select>
- <datagrid id="grd_skinstatspec" nodeset="/root/main/hospiceinfo/hospicedetl/skinstatspec/skinstatlists/skinstatlist" visibility="hidden" scroll="auto" caption="증상^부위" colsep="^" colwidth="189, 188" defaultrows="3" mergecellsfixedrows="bycolrec" rowsep="|" navindex="54" style="left:740px; top:350px; width:396px; height:48px; ">
- <col ref="skinstat" type="input"/>
- <col ref="skinstatitem" type="input" style="left:255px; top:23px; width:255px; height:22px; "/>
- </datagrid>
- <button id="btn_addfamycnst" class="btn2_letter3" style="left:1029px; top:284px; width:53px; height:19px; ">
- <caption>행추가</caption>
- <script type="javascript" ev:event="DOMActivate">
- <![CDATA[
- grd_famycnst.addRow();
- ]]>
- </script>
- </button>
- <button id="btn_skinadd" class="btn2_letter4" navindex="55" visibility="hidden" style="left:1000px; top:328px; width:64px; height:19px; ">
- <caption>한줄추가</caption>
- <script type="javascript" ev:event="DOMActivate">
- <![CDATA[
-
- grd_skinstatspec.addRow();
- ]]>
- </script>
- </button>
- <line id="line81" class="line_2" visibility="hidden" style="x1:605px; y1:324px; x2:1137px; y2:324px; "/>
- </group>
- </xhtml:body>
- </xhtml:html>
|