123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220 |
- <?xml version="1.0" encoding="EUC-KR"?>
- <?xml-stylesheet type="text/css" href="../../../com/commonweb/css/common.css" ?>
- <xhtml:html xmlns:xhtml="http://www.w3.org/1999/xhtml" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns="http://www.w3.org/2002/01/xforms" xmlns:ev="http://www.w3.org/2001/xml-events">
- <xhtml:head>
- <xhtml:title>Untitle</xhtml:title>
- <model id="model1">
- <instance id="instance1">
- <root xmlns="">
- <main>
- <wardrecinfo>
- <mfmdstatinfo>
- <mfmdstat>
- <mfmdstatinfoinclyn/>
- <mfmdstat>
- <part/>
- <direc/>
- </mfmdstat>
- </mfmdstat>
- </mfmdstatinfo>
- <shpaininfo>
- <shpain>
- <shpaininfoinclyn/>
- <shpaininfoflag/>
- </shpain>
- </shpaininfo>
- <slepstatinfo>
- <slepstat>
- <slepdsordyn>1</slepdsordyn>
- <slepdsordtm/>
- <dugtmedyn>1</dugtmedyn>
- <dugtmeddetl/>
- </slepstat>
- </slepstatinfo>
- <cscsstatinfo>
- <cscsstat>
- <cscsstathuman/>
- <cscsstattm/>
- <cscsstatplce/>
- <cscsstat/>
- <communication>1</communication>
- <emotstat>1</emotstat>
- </cscsstat>
- </cscsstatinfo>
- <mensinfo>
- <mens>
- <mensyn/>
- <mensday/>
- <mensweek/>
- <mensstat/>
- <mensvol/>
- <fstmensage/>
- <closmensage/>
- <menspainyn/>
- <mensinclyn/>
- <endmensyn/>
- <lastmensdd/>
- <prgbthhisg/>
- <prgbthhisp/>
- <prgbthhisa/>
- <prgbthhissa/>
- <prgbthhisaa/>
- <prgbthhisl/>
- <mensaddinfoyn/>
- </mens>
- </mensinfo>
- <cirorgninfo>
- <cirorgn>
- <cirorgninfoinclyn/>
- <cirorgn>
- <cirdsordkind/>
- <edemakind>
- </edemakind>
- <edemadetll/>
- <yohnyn>1</yohnyn>
- <yohnddetl/>
- <cyccateyn>1</cyccateyn>
- <cyccatekind/>
- <catedetl/>
- </cirorgn>
- </cirorgn>
- </cirorgninfo>
- <resorgninfo>
- <resorgn>
- <resorgninfoinclyn/>
- <resorgn>
- <symp/>
- <list/>
- </resorgn>
- </resorgn>
- </resorgninfo>
- <digorgninfo>
- <digorgn>
- <digorgninfoinclyn/>
- <digorgn>
- <symp/>
- <cate/>
- <list/>
- </digorgn>
- </digorgn>
- </digorgninfo>
- <uriorgninfo>
- <uriorgn>
- <uriorgn>
- <symp/>
- <cate/>
- <list/>
- <urinecolor/>
- </uriorgn>
- <urinestat/>
- </uriorgn>
- </uriorgninfo>
- <stoolinfo>
- <stool>
- <stoolcateyn/>
- <stoolcatekind/>
- <stoolstatflag/>
- <stoolstatkind/>
- <stoolstatetc/>
- </stool>
- </stoolinfo>
- <actinfo>
- <act>
- <actfreeyn>1</actfreeyn>
- <supptoolkind/>
- </act>
- </actinfo>
- <nvesysinfo>
- <nvesys>
- <nvesysinfoinclyn/>
- <nvesys>
- <pupilsymmetryyn>1</pupilsymmetryyn>
- <pupilleft/>
- <pupilrght/>
- <pupilleftrflx/>
- <pupilrghtrflx/>
- </nvesys>
- <nvesysdsordinfo>
- <part/>
- <direc/>
- <symp/>
- <list/>
- </nvesysdsordinfo>
- </nvesys>
- </nvesysinfo>
- <visdsordinfo>
- <visdsord>
- <visdsordyn>1</visdsordyn>
- <visdsordpos/>
- <visdsordleft/>
- <visdsordrght/>
- <visdsordkind/>
- <visdsordblind/>
- </visdsord>
- </visdsordinfo>
- <heardsordinfo>
- <heardsord>
- <heardsordyn>1</heardsordyn>
- <heardsordpos/>
- <heardsordleft/>
- <heardsordrght/>
- <heardsordkind/>
- </heardsord>
- </heardsordinfo>
- <tootstatinfo>
- <tootstat>
- <tootstatkind/>
- </tootstat>
- </tootstatinfo>
- <skinsectinfo>
- <skinsect>
- <skincolorinfoinclyn/>
- <skincolor>
- <part/>
- <direc/>
- <symp/>
- <list/>
- </skincolor>
- <skinstatinfoinclyn/>
- <skinstat>
- <part/>
- <direc/>
- <symp/>
- <cate/>
- <list/>
- </skinstat>
- </skinsect>
- </skinsectinfo>
- </wardrecinfo>
- <cond>
- <unitflag/>
- </cond>
- </main>
- <send/>
- </root>
- </instance>
- <script type="javascript" ev:event="xforms-ready">
- <![CDATA[
- //---------(20101029) 경북대
- // 간호조사지에서 호출함
- fessential();
- //---------(20101029) 경북대
- ]]>
- </script>
- <script type="javascript">
- <![CDATA[
- var shpainPath = "/root/main/wardrecinfo/shpaininfo/shpain/shpain";
- var resorgnPath="/root/main/wardrecinfo/resorgninfo/resorgn/resorgn";
- var digorgnPath = "/root/main/wardrecinfo/digorgninfo/digorgn/digorgn";
- var nvesysdsordPath = "/root/main/wardrecinfo/nvesysinfo/nvesys/nvesysdsordinfo";
- var skincolorPath = "/root/main/wardrecinfo/skinsectinfo/skinsect/skincolor";
- var skinstatPath = "/root/main/wardrecinfo/skinsectinfo/skinsect/skinstat";
- var uriorgnPath = "/root/main/wardrecinfo/uriorgninfo/uriorgn/uriorgn";
- var stoolPath = "/root/main/wardrecinfo/stoolinfo/stool";
-
- var status = "select";
-
- function fInitEventBodyAses(pFlag) {
- if ( pFlag == "init"){
- var instUseYN = model.getValue("/root/codeinfo/codeinfo/codelist[cdgrupid ='172']/cdid");//JCI관련 필수입력사항 블러킹
- if ( instUseYN == "Y" ){
- //필수입력사항 표시
- //cap_aptt.visible = true; // 15.03.19 - 삭제 예정
- cap_cscsstat.visible = true;
- cap_digorgn.visible = true;
- cap_urine.visible = true;
- cap_stool.visible = true;
- cap_act.visible = true;
- cap_nvesysds.visible = true;
- cap_visd.visible = true;
- cap_heard.visible = true;
- cap_toot.visible = true;
- cap_shpaininfo.visible = true;
- }
- }
- if(model.getValue("/root/main/wardrecinfo/mfmdstatinfo/mfmdstat/mfmdstatinfoinclyn") == "1") { // 기형상태 해당없음
- chk_mfmdyn.dispatch("xforms-value-changed");
- }
- // if(model.getValue("/root/main/wardrecinfo/shpaininfo/shpain/shpaininfoinclyn") == "1") { // 통증 "무" 체크
- // rdo_shpaininfoinclyn.dispatch("xforms-value-changed");
- // }
-
- if(model.getValue("/root/main/wardrecinfo/cirorgninfo/cirorgn/cirorgninfoinclyn") == "1") { // 순환기계 해당없음
- chk_cycdsordinclyn.dispatch("xforms-value-changed");
- } else {
- cmb_edema.dispatch("xforms-value-changed"); // 부종
- rdo_yohnyn.dispatch("xforms-value-changed"); // 요흔
- rdo_cyccateyn.dispatch("xforms-value-changed"); // 부착기구
- }
- if(model.getValue("/root/main/wardrecinfo/resorgninfo/resorgn/resorgninfoinclyn") == "1") { // 호흡기계 해당없음
- chk_resorgninfoinclyn.dispatch("xforms-value-changed");
- }
- if(model.getValue("/root/main/wardrecinfo/digorgninfo/digorgn/digorgninfoinclyn") == "1") { // 소화기계 해당없음
- chk_digorgninfoinclyn.dispatch("xforms-value-changed");
- }
- if(model.getValue("/root/main/wardrecinfo/nvesysinfo/nvesys/nvesysinfoinclyn") == "1") { // 신경계장애 해당없음
- chk_nvesysinfoinclyn.dispatch("xforms-value-changed");
- }
- if(model.getValue("/root/main/wardrecinfo/skinsectinfo/skinsect/skincolorinfoinclyn") == "1") { // 피부계 - 피부색 - 해당없음
- chk_skincoloryn.dispatch("xforms-value-changed");
-
- }
- if(model.getValue("/root/main/wardrecinfo/skinsectinfo/skinsect/skinstatinfoinclyn") == "1") { // 피부계 - 피부상태 - 해당없음
- chk_skinstatyn.dispatch("xforms-value-changed");
- }
- // 15.03.27 수정 - AYS
- if(model.getValue("/root/main/wardrecinfo/mensinfo/mens/mensinclyn") == "1") { // 여성정보 해당없음
- chk_mensinclyn.dispatch("xforms-value-changed");
- }
-
- if(model.getValue("/root/main/wardrecinfo/mensinfo/mens/mensaddinfoyn") == "1") { // 여성정보 추가사정 체크시
- chk_mensaddinfoyn.dispatch("xforms-value-changed");
- }
-
- rdo_slepdsord.dispatch("xforms-value-changed"); // 수명장애 - 유무
- rdo_drugtmedyn.dispatch("xforms-value-changed"); // 약물복용 - 유무
- rdo_stoolcateyn.dispatch("xforms-value-changed"); // 부착기구 - 유무
- rdo_visdsordyn.dispatch("xforms-value-changed"); // 시력장애 - 유무
- rdo_heardsordyn.dispatch("xforms-value-changed"); // 청력장애 - 유무
- // rdo_mensyn.dispatch("xforms-value-changed"); // 월경 유무관련
- rdo_actfreeyn.dispatch("xforms-value-changed"); // 활동 - 활동 항목
- //chk_mensinclyn.dispatch("xforms-value-changed"); // 여성정보 해당없음 15.04.01 - 추가 - AYS
- rdo_stoolstatflag.dispatch("xforms-value-changed"); // 대변 - 대변양상 15.05.13 추가 - AYS
- }
-
- function fSetStatus() {
- var rtn = "";
-
- if(status == "select") {
- rtn = "6";
- } else {
- rtn = messageBox("데이터를 ", "Q001");
- }
- return rtn;
- }
-
- function isCheckGridDataYN(grdData) {
- var isEmptyYN = "Y";
- if(grdData.rows == 2) {
- for(var i = 1; i < grdData.cols; i++) {
- if(grdData.valueMatrix(1, i) != "") {
- isEmptyYN = "N";
- break;
- } else {
- isEmptyYN = "Y";
-
- }
- }
- } else if(grdData.rows < 2) {
- isEmptyYN = "Y";
- } else {
- isEmptyYN = "N";
- }
-
- if(isEmptyYN == "Y") {
- status = "select";
- }
-
- return isEmptyYN;
- }
-
- function fSetPopupParam(part, direc, symp, cate, flag) {
-
- setParameter("SPMNW07500_PARAM1", "");
- setParameter("SPMNW07500_PARAM2", "");
- setParameter("SPMNW07500_PARAM3", "");
- setParameter("SPMNW07500_PARAM4", "");
- setParameter("SPMNW07500_PARAM5", "");
-
- var title ="";
- var path = "";
- var idx = -1;
-
- if(flag == "01") {
- title="동통팝업";
- path = shpainPath;
- idx = grd_shpain.row;
- } else if(flag =="02") {
- title="호흡기계";
- path = resorgnPath;
- idx = grd_resorgn.row;
- } else if(flag =="03") {
- title="소화기계";
- path = digorgnPath;
- idx = grd_digorgn.row;
-
- } else if(flag =="04") {
- title = "신경계장애";
- path = nvesysdsordPath;
- idx = grd_nvesysdsord.row;
- } else if(flag =="05") {
- title = "피부색";
- path = skincolorPath;
- idx = grd_skincolor.row;
- } else if(flag == "06") {
- title = "피부상태";
- path = skinstatPath;
- idx = grd_skinstat.row;
- } else if(flag == "07") {
- title = "비뇨기계";
- path = uriorgnPath;
- idx = grd_urine.row;
- } else if(flag == "08") {
- title = "대변";
- path = stoolPath;
- }
- setParameter("SPMNW07500_PARAM1", part);
- setParameter("SPMNW07500_PARAM2", direc);
- setParameter("SPMNW07500_PARAM3", symp);
- setParameter("SPMNW07500_PARAM4", title);
- setParameter("SPMNW07500_PARAM5", cate);
-
- modal("SPMNW07500",1, (event.screenX + 517 >= 1195)? 1195-517 : event.screenX , (event.screenY+306 >= 1024)? 1024-306: event.screenY );
-
- var flg = getParameter("SMMNW03100_PARAM4");
- if(flg == "Y") {
-
- if(part != "00") {
- part = getParameter("SMMNW03100_PARAM1");
- model.setValue(path + "[" + idx + "]/part", part);
-
- }
- if(direc != "00") {
- direc = getParameter("SMMNW03100_PARAM2");
- model.setValue(path + "[" + idx + "]/direc", direc);
-
- }
-
- if(symp != "00") {
-
- symp = getParameter("SMMNW03100_PARAM3");
- model.setValue(path + "[" + idx + "]/symp", symp);
-
- }
-
- if(cate != "00") {
- cate = getParameter("SMMNW03100_PARAM5");
-
- if(flag == "03") {
- grd_digorgn.valueMatrix(idx, grd_digorgn.colRef("cate")) = cate;
- grd_digorgn.rebuild();
-
- } else if(flag == "07") {
- grd_urine.valueMatrix(idx, grd_urine.colRef("cate")) = cate;
- grd_urine.rebuild();
-
- } else if(flag == "08") {
- model.setValue(path + "/stoolcatekind", cate);
- ipt_stoolcatekind.refresh();
- }
- }
- }
- }
-
- //---------(20101029) 경북대
- // 간호조사지에서 호출함
- function fessential() {
-
- if (fEssentialBackColor != "") {
- //----신체사정
- rdo_shpaininfoinclyn.attribute("background-color") = fEssentialBackColor;
- cmb_cscsstathuman.attribute("background-color") = fEssentialBackColor;
- cmb_cscsstattm.attribute("background-color") = fEssentialBackColor;
- cmb_cscsstatplce.attribute("background-color") = fEssentialBackColor;
- cmb_cscsstat.attribute("background-color") = fEssentialBackColor;
- rdo_communication.attribute("background-color") = fEssentialBackColor;
- cmb_emotstat.attribute("background-color") = fEssentialBackColor;
- grd_digorgn.attribute("background-color") = fEssentialBackColor;
- // cmb_stoolkind.attribute("background-color") = fEssentialBackColor;
- rdo_stoolcateyn.attribute("background-color") = fEssentialBackColor;
- rdo_stoolstatflag.attribute("background-color") = fEssentialBackColor;
- chk_tootstatkind.attribute("background-color") = fEssentialBackColor;
- rdo_urinestat.attribute("background-color") = fEssentialBackColor; // 비뇨기계
- grd_urine.attribute("background-color") = fEssentialBackColor; // 비뇨기계
- }
- }
- //---------(20101029) 경북대
- ]]>
- </script>
- </model>
- <script type="javascript" src="../../../com/commonweb/js/common.js"/>
- <script type="javascript" src="../../../emr/commonweb/js/EMRCommon.js"/>
- </xhtml:head>
- <xhtml:body pagewidth="1194" pageheight="673" style="margin-left:0; margin-top:0; margin-right:0; margin-bottom:0; ">
- <line id="line71" class="line_2" style="x1:401px; y1:596px; x2:792px; y2:596px; text-align:right; "/>
- <select id="chk_heardsordpos" ref="/root/main/wardrecinfo/heardsordinfo/heardsord/heardsordpos" disabled="true" overflow="visible" appearance="full" cellspacing="60" cols="2" style="left:995px; top:288px; width:190px; height:13px; border-style:none; ">
- <choices>
- <item>
- <label>좌</label>
- <value>1</value>
- </item>
- <item>
- <label>우</label>
- <value>2</value>
- </item>
- </choices>
- <script type="javascript" ev:event="xforms-value-changed">
- <![CDATA[
- var heardsordpos = model.getValue("/root/main/wardrecinfo/heardsordinfo/heardsord/heardsordpos");
- if(heardsordpos == "1") {
- ipt_heardsordleft.disabled = false;
- ipt_heardsordrght.disabled = true;
- model.resetInstanceNode("/root/main/wardrecinfo/heardsordinfo/heardsord/heardsordrght");
-
- } else if(heardsordpos == "2") {
- ipt_heardsordrght.disabled = false;
- ipt_heardsordleft.disabled = true;
- model.resetInstanceNode("/root/main/wardrecinfo/heardsordinfo/heardsord/heardsordleft");
-
- } else if(heardsordpos == "1 2" || heardsordpos == "2 1") {
- ipt_heardsordrght.disabled = false;
- ipt_heardsordleft.disabled = false;
-
- } else {
- ipt_heardsordrght.disabled = true;
- ipt_heardsordleft.disabled = true;
-
- model.resetInstanceNode("/root/main/wardrecinfo/heardsordinfo/heardsord/heardsordleft");
- model.resetInstanceNode("/root/main/wardrecinfo/heardsordinfo/heardsord/heardsordrght");
- }
- ipt_heardsordrght.refresh();
- ipt_heardsordleft.refresh();
- ]]>
- </script>
- </select>
- <select1 id="cmb_pupilleftrflx" ref="/root/main/wardrecinfo/nvesysinfo/nvesys/nvesys/pupilleftrflx" class="combo_default" navindex="56" appearance="minimal" style="left:325px; top:512px; width:69px; height:19px; ">
- <choices>
- <itemset nodeset="/root/init/mlist/M0109">
- <label ref="cdnm"/>
- <value ref="cdid"/>
- </itemset>
- </choices>
- </select1>
- <select1 id="cmb_cscsstatplce" ref="/root/main/wardrecinfo/cscsstatinfo/cscsstat/cscsstatplce" class="combo_default" navindex="14" appearance="minimal" style="left:334px; top:298px; width:61px; height:19px; ">
- <choices>
- <itemset nodeset="/root/init/mlist/M0100">
- <label ref="cdnm"/>
- <value ref="cdid"/>
- </itemset>
- </choices>
- </select1>
- <caption id="caption113" class="tit_2" style="left:799px; top:170px; width:104px; height:13px; ">시력장애</caption>
- <line id="line84" class="line_1" style="x1:797px; y1:185px; x2:1186px; y2:185px; "/>
- <caption id="caption102" class="tit_2" style="left:8px; top:494px; width:97px; height:13px; ">신경계 장애</caption>
- <select1 id="cmb_emotstat" ref="/root/main/wardrecinfo/cscsstatinfo/cscsstat/emotstat" class="combo_default" navindex="17" appearance="minimal" style="left:88px; top:370px; width:307px; height:19px; ">
- <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>
- <item>
- <label>의식없음</label>
- <value>7</value>
- </item>
- </choices>
- </select1>
- <select1 id="rdo_slepdsord" ref="/root/main/wardrecinfo/slepstatinfo/slepstat/slepdsordyn" navindex="8" appearance="full" cellspacing="40" cols="2" overflow="visible" style="left:88px; top:432px; width:147px; height:13px; border-style:none; ">
- <choices>
- <item>
- <label>무</label>
- <value>1</value>
- </item>
- <item>
- <label>유</label>
- <value>2</value>
- </item>
- </choices>
- <script type="javascript" ev:event="xforms-value-changed">
- <![CDATA[
- if(model.getValue("/root/main/wardrecinfo/slepstatinfo/slepstat/slepdsordyn") == "1") {
- model.resetInstanceNode("/root/main/wardrecinfo/slepstatinfo/slepstat/slepdsordtm");
- ipt_slepdsord.disabled = true;
- } else {
- ipt_slepdsord.disabled = false;
- }
- ipt_slepdsord.refresh();
- ]]>
- </script>
- </select1>
- <button id="btn_mfmddel" class="btn2_letter3" style="left:342px; top:66px; width:53px; height:19px; ">
- <caption>행삭제</caption>
- <script type="javascript" ev:event="DOMActivate">
- <![CDATA[
- grd_mfmdstat.deleteRow(grd_mfmdstat.row);
- ]]>
- </script>
- </button>
- <caption id="caption60" class="cell_1" style="left:5px; top:321px; width:80px; height:23px; vertical-align:middle; ">의식상태</caption>
- <caption id="caption114" class="tit_2" style="left:799px; top:265px; width:104px; height:13px; ">청력장애</caption>
- <select1 id="cmb_pupilrghtrflx" ref="/root/main/wardrecinfo/nvesysinfo/nvesys/nvesys/pupilrghtrflx" class="combo_default" navindex="58" appearance="minimal" style="left:325px; top:534px; width:69px; height:19px; ">
- <choices>
- <itemset nodeset="/root/init/mlist/M0109">
- <label ref="cdnm"/>
- <value ref="cdid"/>
- </itemset>
- </choices>
- </select1>
- <caption id="cap_drugtmed" class="cell_1" style="left:5px; top:453px; width:80px; height:23px; vertical-align:middle; ">약물복용</caption>
- <caption id="caption50" class="tit_2" style="left:9px; top:409px; width:80px; height:13px; ">수면상태</caption>
- <line id="line53" class="line_3" style="x1:4px; y1:476px; x2:395px; y2:476px; "/>
- <line id="line86" class="line_2" style="x1:794px; y1:229px; x2:1183px; y2:229px; "/>
- <caption id="cap_heardord" class="cell_1" style="left:797px; top:285px; width:80px; height:40px; vertical-align:middle; ">청력장애</caption>
- <select1 id="rdo_stoolcateyn" ref="/root/main/wardrecinfo/stoolinfo/stool/stoolcateyn" navindex="50" appearance="full" cellspacing="40" cols="2" overflow="visible" style="left:484px; top:579px; width:106px; height:13px; border-style:none; ">
- <choices>
- <item>
- <label>무</label>
- <value>1</value>
- </item>
- <item>
- <label>유</label>
- <value>2</value>
- </item>
- </choices>
- <script type="javascript" ev:event="xforms-value-changed">
- <![CDATA[
- if(model.getValue("/root/main/wardrecinfo/stoolinfo/stool/stoolcateyn") == "1") {
- model.resetInstanceNode("/root/main/wardrecinfo/stoolinfo/stool/stoolcatekind");
- ipt_stoolcatekind.disabled = true;
- btn_cate.disabled = true;
- } else {
- ipt_stoolcatekind.disabled = false;
- btn_cate.disabled = false;
- }
- ipt_stoolcatekind.refresh();
- btn_cate.refresh();
- ]]>
- </script>
- </select1>
- <line id="line98" class="line_2" style="x1:4px; y1:553px; x2:393px; y2:553px; "/>
- <caption id="caption40" class="tit_2" style="left:406px; top:10px; width:104px; height:13px; ">순환기계</caption>
- <line id="line54" class="line_1" style="x1:401px; y1:25px; x2:792px; y2:25px; "/>
- <line id="line65" class="line_1" style="x1:401px; y1:454px; x2:792px; y2:454px; "/>
- <caption id="caption95" class="tit_2" style="left:405px; top:439px; width:75px; height:13px; ">비뇨기계</caption>
- <line id="line87" class="line_1" style="x1:797px; y1:280px; x2:1186px; y2:280px; "/>
- <caption id="caption116" class="tit_2" style="left:799px; top:345px; width:104px; height:13px; ">치아상태</caption>
- <select1 id="cmb_pupilleft" ref="/root/main/wardrecinfo/nvesysinfo/nvesys/nvesys/pupilleft" class="combo_default" navindex="55" appearance="minimal" style="left:205px; top:512px; width:44px; height:19px; ">
- <choices>
- <itemset nodeset="/root/init/mlist/M0110">
- <label ref="cdnm"/>
- <value ref="cdid"/>
- </itemset>
- </choices>
- </select1>
- <select1 id="cmb_cscsstat" ref="/root/main/wardrecinfo/cscsstatinfo/cscsstat/cscsstat" class="combo_default" navindex="15" appearance="minimal" style="left:88px; top:322px; width:308px; height:19px; ">
- <choices>
- <itemset nodeset="/root/init/mlist/M0075">
- <label ref="cdnm"/>
- <value ref="cdid"/>
- </itemset>
- </choices>
- </select1>
- <select1 id="cmb_cscsstathuman" ref="/root/main/wardrecinfo/cscsstatinfo/cscsstat/cscsstathuman" class="combo_default" navindex="12" appearance="minimal" style="left:120px; top:298px; width:67px; height:19px; ">
- <choices>
- <itemset nodeset="/root/init/mlist/M0100">
- <label ref="cdnm"/>
- <value ref="cdid"/>
- </itemset>
- </choices>
- </select1>
- <select1 id="rdo_drugtmedyn" ref="/root/main/wardrecinfo/slepstatinfo/slepstat/dugtmedyn" navindex="10" appearance="full" cellspacing="40" cols="2" overflow="visible" style="left:88px; top:457px; width:147px; height:13px; border-style:none; ">
- <choices>
- <item>
- <label>무</label>
- <value>1</value>
- </item>
- <item>
- <label>유</label>
- <value>2</value>
- </item>
- </choices>
- <script type="javascript" ev:event="xforms-value-changed">
- <![CDATA[
- if(model.getValue("/root/main/wardrecinfo/slepstatinfo/slepstat/dugtmedyn") == "1") {
- ipt_drugtmeddetl.disabled = true;
- model.resetInstanceNode("/root/main/wardrecinfo/slepstatinfo/slepstat/dugtmeddetl");
- } else {
- ipt_drugtmeddetl.disabled = false;
- }
- ipt_drugtmeddetl.refresh();
- ]]>
- </script>
- </select1>
- <caption id="caption52" class="cell_1" style="left:5px; top:345px; width:80px; height:23px; vertical-align:middle; ">의사소통</caption>
- <line id="line33" class="line_1" style="x1:6px; y1:508px; x2:396px; y2:508px; "/>
- <caption id="caption41" style="left:190px; top:301px; width:44px; height:14px; vertical-align:middle; ">시간 :</caption>
- <line id="line44" class="line_1" style="x1:5px; y1:424px; x2:396px; y2:424px; "/>
- <line id="line55" class="line_1" style="x1:5px; y1:292px; x2:396px; y2:292px; "/>
- <caption id="caption85" class="tit_2" style="left:405px; top:557px; width:45px; height:13px; ">대변</caption>
- <line id="line88" class="line_3" style="x1:797px; y1:325px; x2:1186px; y2:325px; "/>
- <line id="line45" class="line_2" style="x1:5px; y1:451px; x2:396px; y2:451px; "/>
- <line id="line56" class="line_2" style="x1:5px; y1:319px; x2:396px; y2:319px; "/>
- <caption id="caption53" class="cell_1" style="left:5px; top:369px; width:80px; height:23px; vertical-align:middle; ">정서상태</caption>
- <line id="line67" class="line_2" style="x1:401px; y1:483px; x2:792px; y2:483px; "/>
- <line id="line89" class="line_1" style="x1:797px; y1:360px; x2:1186px; y2:360px; "/>
- <select1 id="cmb_cscsstattm" ref="/root/main/wardrecinfo/cscsstatinfo/cscsstat/cscsstattm" class="combo_default" navindex="13" appearance="minimal" style="left:227px; top:298px; width:67px; height:19px; ">
- <choices>
- <itemset nodeset="/root/init/mlist/M0100">
- <label ref="cdnm"/>
- <value ref="cdid"/>
- </itemset>
- </choices>
- </select1>
- <caption id="cap_humanyn" class="cell_1" style="left:5px; top:297px; width:80px; height:23px; vertical-align:middle; ">지 남 력</caption>
- <caption id="caption108" class="cell_1" style="left:152px; top:534px; width:50px; height:20px; vertical-align:middle; ">우</caption>
- <caption id="caption87" class="cell_1" style="left:401px; top:576px; width:80px; height:21px; vertical-align:middle; ">부착기구</caption>
- <caption id="caption43" class="tit_2" style="left:10px; top:71px; width:104px; height:13px; ">기형상태</caption>
- <line id="line46" class="line_2" style="x1:4px; y1:343px; x2:395px; y2:343px; "/>
- <caption id="caption65" style="left:343px; top:434px; width:44px; height:14px; vertical-align:middle; ">시간/일</caption>
- <line id="line79" class="line_1" style="x1:791px; y1:25px; x2:792px; y2:25px; "/>
- <datagrid id="grd_mfmdstat" nodeset="/root/main/wardrecinfo/mfmdstatinfo/mfmdstat/mfmdstat" caption="부위^방향" colsep="^" colwidth="203, 167" mergecellsfixedrows="bycolrec" rowsep="|" selectionmode="free" style="left:5px; top:91px; width:390px; height:70px; ">
- <col ref="part" type="input"/>
- <col ref="direc" type="input"/>
- </datagrid>
- <button id="btn_shpaindel" class="btn2_letter3" visibility="hidden" style="left:342px; top:6px; width:53px; height:19px; ">
- <caption>행삭제</caption>
- <script type="javascript" ev:event="DOMActivate">
- <![CDATA[
- grd_shpain.deleteRow(grd_shpain.row);
- ]]>
- </script>
- </button>
- <select id="chk_mfmdyn" ref="/root/main/wardrecinfo/mfmdstatinfo/mfmdstat/mfmdstatinfoinclyn" navindex="71" overflow="visible" appearance="full" style="left:160px; top:68px; width:70px; height:15px; border-style:none; ">
- <choices>
- <item>
- <label>해당없음</label>
- <value>1</value>
- </item>
- </choices>
- <script type="javascript" ev:event="xforms-value-changed">
- <![CDATA[
- if(model.getValue("/root/main/wardrecinfo/mfmdstatinfo/mfmdstat/mfmdstatinfoinclyn") == "1") {
- var isEmptyYN = "Y";
-
- isEmptyYN = isCheckGridDataYN(grd_mfmdstat);
-
- var rtn = fSetStatus();
- if(rtn == "6") {
- model.removeNodeset("/root/main/wardrecinfo/mfmdstatinfo/mfmdstat/mfmdstat");
- grd_mfmdstat.rebuild();
-
- btn_mfmdadd.disabled = true;
- btn_mfmddel.disabled = true;
- } else if(rtn == "7") {
- model.setValue("/root/main/wardrecinfo/mfmdstatinfo/mfmdstat/mfmdstatinfoinclyn", "");
- chk_mfmdyn.refresh();
- }
-
- } else {
- btn_mfmdadd.disabled = false;
- btn_mfmddel.disabled = false;
- grd_mfmdstat.addRow();
- }
- ]]>
- </script>
- <script type="javascript" ev:event="xforms-select">
- <![CDATA[
- status = "click";
- ]]>
- </script>
- </select>
- <line id="line47" class="line_2" style="x1:4px; y1:367px; x2:395px; y2:367px; "/>
- <caption id="caption66" style="left:89px; top:301px; width:44px; height:14px; vertical-align:middle; ">사람:</caption>
- <line id="line58" class="line_1" style="x1:401px; y1:571px; x2:792px; y2:571px; "/>
- <button id="btn_mfmdadd" class="btn2_letter3" style="left:286px; top:66px; width:53px; height:19px; ">
- <caption>행추가</caption>
- <script type="javascript" ev:event="DOMActivate">
- <![CDATA[
- grd_mfmdstat.addRow();
- ]]>
- </script>
- </button>
- <line id="line37" class="line_1" style="x1:5px; y1:86px; x2:396px; y2:86px; "/>
- <caption id="cap_tootstat" class="cell_1" style="left:797px; top:365px; width:33px; height:40px; vertical-align:middle; ">
- <![CDATA[치아
- 상태]]>
- </caption>
- <caption id="caption46" style="left:297px; top:301px; width:44px; height:14px; vertical-align:middle; ">장소 :</caption>
- <select id="chk_nvesysinfoinclyn" ref="/root/main/wardrecinfo/nvesysinfo/nvesys/nvesysinfoinclyn" navindex="76" overflow="visible" appearance="full" style="left:158px; top:491px; width:70px; height:15px; border-style:none; ">
- <choices>
- <item>
- <label>해당없음</label>
- <value>1</value>
- </item>
- </choices>
- <script type="javascript" ev:event="xforms-value-changed">
- <![CDATA[
- if(model.getValue("/root/main/wardrecinfo/nvesysinfo/nvesys/nvesysinfoinclyn") == "1") {
-
- var isEmptyYN = "Y";
-
- isEmptyYN = isCheckGridDataYN(grd_nvesysdsord);
-
- var rtn = fSetStatus();
-
- if(rtn == "6") {
-
- rdo_pupilsymmetryyn.disabled = true;
- btn_nvesysadd.disabled = true;
- btn_nvesysdel.disabled = true;
- cmb_pupilleft.disabled = true;
- cmb_pupilrght.disabled = true;
- cmb_pupilleftrflx.disabled = true;
- cmb_pupilrghtrflx.disabled = true;
-
- model.resetInstanceNode("/root/main/wardrecinfo/nvesysinfo/nvesys/nvesys/pupilsymmetryyn");
- model.resetInstanceNode("/root/main/wardrecinfo/nvesysinfo/nvesys/nvesys/pupilleft");
- model.resetInstanceNode("/root/main/wardrecinfo/nvesysinfo/nvesys/nvesys/pupilrght");
- model.resetInstanceNode("/root/main/wardrecinfo/nvesysinfo/nvesys/nvesys/pupilleftrflx");
- model.resetInstanceNode("/root/main/wardrecinfo/nvesysinfo/nvesys/nvesys/pupilrghtrflx");
- model.removeNodeset("/root/main/wardrecinfo/nvesysinfo/nvesys/nvesysdsordinfo");
-
- rdo_pupilsymmetryyn.refresh();
- cmb_pupilleft.refresh();
- cmb_pupilrght.refresh();
- cmb_pupilleftrflx.refresh();
- cmb_pupilrghtrflx.refresh();
- grd_nvesysdsord.rebuild();
- } else {
- model.resetInstanceNode("/root/main/wardrecinfo/nvesysinfo/nvesys/nvesysinfoinclyn");
- chk_nvesysinfoinclyn.refresh();
- return;
- }
-
- } else {
- rdo_pupilsymmetryyn.disabled = false;
- btn_nvesysadd.disabled = false;
- btn_nvesysdel.disabled = false;
- cmb_pupilleft.disabled = false;
- cmb_pupilrght.disabled = false;
- cmb_pupilleftrflx.disabled = false;
- cmb_pupilrghtrflx.disabled = false;
- grd_nvesysdsord.addRow();
- }
-
- ]]>
- </script>
- <script type="javascript" ev:event="xforms-select">
- <![CDATA[
- status = "click";
- ]]>
- </script>
- </select>
- <input id="ipt_drugtmeddetl" ref="/root/main/wardrecinfo/slepstatinfo/slepstat/dugtmeddetl" class="input_default" disabled="true" navindex="11" style="left:245px; top:454px; width:150px; height:19px; "/>
- <caption id="caption59" class="tit_2" style="left:9px; top:276px; width:71px; height:13px; ">의식상태</caption>
- <caption id="cap_visdord" class="cell_1" style="left:797px; top:190px; width:80px; height:55px; vertical-align:middle; ">시력장애</caption>
- <datagrid id="grd_nvesysdsord" nodeset="/root/main/wardrecinfo/nvesysinfo/nvesys/nvesysdsordinfo" caption="부위^방향^증상^목록" colsep="^" colwidth="60, 57, 130, 40" mergecellsfixedrows="bycolrec" rowsep="|" style="left:86px; top:555px; width:308px; height:65px; ">
- <col ref="part"/>
- <col ref="direc"/>
- <col ref="symp"/>
- <col ref="list" style="text-align:center; background-image:../../../com/commonweb/images/icon_search.gif; background-position:center; ">
- <script type="javascript" ev:event="onclick">
- <![CDATA[
- fSetPopupParam("01", "01", "01","00" , "04");
-
- ]]>
- </script>
- </col>
- </datagrid>
- <line id="line90" class="line_3" style="x1:797px; y1:406px; x2:1186px; y2:406px; "/>
- <select id="chk_tootstatkind" ref="/root/main/wardrecinfo/tootstatinfo/tootstat/tootstatkind" navindex="70" overflow="visible" appearance="full" cellspacing="0" cols="5" vcellspacing="3" style="left:830px; top:365px; width:355px; height:38px; 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>8</value>
- </item>
- <item>
- <label>부분의치</label>
- <value>5</value>
- </item>
- <item>
- <label>완전의치</label>
- <value>6</value>
- </item>
- <item>
- <label>임프란트</label>
- <value>7</value>
- </item>
- <item>
- <label>구강위생불량</label>
- <value>9</value>
- </item>
- </choices>
- </select>
- <button id="btn_shpainadd" class="btn2_letter3" visibility="hidden" style="left:286px; top:6px; width:53px; height:19px; ">
- <caption>행추가</caption>
- <script type="javascript" ev:event="DOMActivate">
- <![CDATA[
- grd_shpain.addRow();
- ]]>
- </script>
- </button>
- <button id="btn_nvesysadd" class="btn2_letter3" style="left:287px; top:488px; width:53px; height:19px; ">
- <caption>행추가</caption>
- <script type="javascript" ev:event="DOMActivate">
- <![CDATA[
- grd_nvesysdsord.addRow();
- ]]>
- </script>
- </button>
- <select1 id="cmb_pupilrght" ref="/root/main/wardrecinfo/nvesysinfo/nvesys/nvesys/pupilrght" class="combo_default" navindex="57" appearance="minimal" style="left:205px; top:534px; width:44px; height:19px; ">
- <choices>
- <itemset nodeset="/root/init/mlist/M0110">
- <label ref="cdnm"/>
- <value ref="cdid"/>
- </itemset>
- </choices>
- </select1>
- <select1 id="rdo_communication" ref="/root/main/wardrecinfo/cscsstatinfo/cscsstat/communication" navindex="16" appearance="full" cellspacing="40" cols="3" overflow="visible" style="left:88px; top:348px; width:307px; height:13px; 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>
- </choices>
- </select1>
- <caption id="caption111" class="cell_1" style="left:272px; top:534px; width:50px; height:20px; vertical-align:middle; ">빛반사</caption>
- <line id="line60" class="line_2" style="x1:154px; y1:532px; x2:393px; y2:532px; "/>
- <button id="btn_nvesysdel" class="btn2_letter3" style="left:343px; top:488px; width:53px; height:19px; ">
- <caption>행삭제</caption>
- <script type="javascript" ev:event="DOMActivate">
- <![CDATA[
- grd_nvesysdsord.deleteItem(grd_nvesysdsord.row);
- ]]>
- </script>
- </button>
- <caption id="caption112" class="cell_1" style="left:6px; top:555px; width:80px; height:64px; vertical-align:middle; ">신경계장애</caption>
- <caption id="cap_pupil" class="cell_1" style="left:6px; top:513px; width:80px; height:41px; vertical-align:middle; ">동공</caption>
- <caption id="cap_slephandcap" class="cell_1" style="left:5px; top:429px; width:80px; height:23px; vertical-align:middle; ">수면장애</caption>
- <line id="line43" class="line_3" style="x1:5px; y1:391px; x2:396px; y2:391px; "/>
- <caption id="caption105" class="cell_1" style="left:152px; top:513px; width:50px; height:20px; vertical-align:middle; ">좌</caption>
- <caption id="caption109" class="cell_1" style="left:272px; top:513px; width:50px; height:20px; vertical-align:middle; ">빛반사</caption>
- <line id="line1" class="line_3" style="x1:797px; y1:245px; x2:1186px; y2:245px; "/>
- <button id="btn_digorgndel" class="btn2_letter3" style="left:739px; top:312px; width:53px; height:19px; ">
- <caption>행삭제</caption>
- <script type="javascript" ev:event="DOMActivate">
- <![CDATA[
- grd_digorgn.deleteRow(grd_digorgn.row);
- ]]>
- </script>
- </button>
- <datagrid id="grd_digorgn" nodeset="/root/main/wardrecinfo/digorgninfo/digorgn/digorgn" caption="증상^부착기구^목록" colsep="^" colwidth="181, 150, 40" mergecellsfixedrows="bycolrec" rowsep="|" style="left:401px; top:337px; width:391px; height:82px; ">
- <col ref="symp"/>
- <col ref="cate"/>
- <col ref="list" style="text-align:center; background-image:../../../com/commonweb/images/icon_search.gif; background-position:center; ">
- <script type="javascript" ev:event="onclick">
- <![CDATA[
- fSetPopupParam("00", "00", "03", "01", "03");
-
- ]]>
- </script>
- </col>
- </datagrid>
- <button id="btn_resorgndel" class="btn2_letter3" style="left:739px; top:187px; width:53px; height:19px; ">
- <caption>행삭제</caption>
- <script type="javascript" ev:event="DOMActivate">
- <![CDATA[
- grd_resorgn.deleteRow(grd_resorgn.row);
- ]]>
- </script>
- </button>
- <select id="chk_digorgninfoinclyn" ref="/root/main/wardrecinfo/digorgninfo/digorgn/digorgninfoinclyn" navindex="75" overflow="visible" appearance="full" style="left:556px; top:314px; width:70px; height:17px; border-style:none; ">
- <choices>
- <item>
- <label>해당없음</label>
- <value>1</value>
- </item>
- </choices>
- <script type="javascript" ev:event="xforms-value-changed">
- <![CDATA[
- if(model.getValue("/root/main/wardrecinfo/digorgninfo/digorgn/digorgninfoinclyn") == "1") {
-
- var isEmptyYN = "Y";
-
- isEmptyYN = isCheckGridDataYN(grd_digorgn);
-
- var rtn = fSetStatus();
-
- if(rtn == "6") {
- model.removeNodeset("/root/main/wardrecinfo/digorgninfo/digorgn/digorgn");
- grd_digorgn.rebuild();
-
- btn_digorgnadd.disabled = true;
- btn_digorgndel.disabled = true;
- } else if(rtn == "7") {
- model.setValue("/root/main/wardrecinfo/digorgninfo/digorgn/digorgninfoinclyn", "");
- chk_digorgninfoinclyn.refresh();
- }
- } else {
- btn_digorgnadd.disabled = false;
- btn_digorgndel.disabled = false;
- grd_digorgn.addRow();
- }
- ]]>
- </script>
- <script type="javascript" ev:event="xforms-select">
- <![CDATA[
- status = "click";
- ]]>
- </script>
- </select>
- <select id="chk_resorgninfoinclyn" ref="/root/main/wardrecinfo/resorgninfo/resorgn/resorgninfoinclyn" navindex="74" overflow="visible" appearance="full" style="left:556px; top:191px; width:70px; height:15px; border-style:none; ">
- <choices>
- <item>
- <label>해당없음</label>
- <value>1</value>
- </item>
- </choices>
- <script type="javascript" ev:event="xforms-value-changed">
- <![CDATA[
- if(model.getValue("/root/main/wardrecinfo/resorgninfo/resorgn/resorgninfoinclyn") == "1") {
-
- var isEmptyYN = "Y";
-
- isEmptyYN = isCheckGridDataYN(grd_resorgn);
-
- var rtn = fSetStatus();
-
- if(rtn == "6") {
- model.removeNodeset("/root/main/wardrecinfo/resorgninfo/resorgn/resorgn");
- grd_resorgn.rebuild();
-
- btn_resorgnadd.disabled = true;
- btn_resorgndel.disabled = true;
- } else if(rtn == "7") {
- model.setValue("/root/main/wardrecinfo/resorgninfo/resorgn/resorgninfoinclyn", "");
- chk_resorgninfoinclyn.refresh();
- }
- } else {
- btn_resorgnadd.disabled = false;
- btn_resorgndel.disabled = false;
- grd_resorgn.addRow();
- }
- ]]>
- </script>
- <script type="javascript" ev:event="xforms-select">
- <![CDATA[
- status = "click";
- ]]>
- </script>
- </select>
- <caption id="caption1" class="tit_2" style="left:405px; top:318px; width:70px; height:13px; ">소화기계</caption>
- <button id="btn_digorgnadd" class="btn2_letter3" style="left:683px; top:312px; width:53px; height:19px; ">
- <caption>행추가</caption>
- <script type="javascript" ev:event="DOMActivate">
- <![CDATA[
- grd_digorgn.addRow();
- ]]>
- </script>
- </button>
- <caption id="caption2" class="tit_2" style="left:406px; top:192px; width:74px; height:13px; ">호흡기계</caption>
- <button id="btn_resorgnadd" class="btn2_letter3" style="left:683px; top:187px; width:53px; height:19px; ">
- <caption>행추가</caption>
- <script type="javascript" ev:event="DOMActivate">
- <![CDATA[
- grd_resorgn.addRow();
- ]]>
- </script>
- </button>
- <line id="line2" class="line_1" style="x1:401px; y1:332px; x2:792px; y2:332px; "/>
- <datagrid id="grd_resorgn" nodeset="/root/main/wardrecinfo/resorgninfo/resorgn/resorgn" caption="증상^목록" colsep="^" colwidth="312, 60" mergecellsfixedrows="bycolrec" rowsep="|" style="left:401px; top:212px; width:391px; height:85px; ">
- <col ref="symp"/>
- <col ref="list" style="text-align:center; background-image:../../../com/commonweb/images/icon_search.gif; background-position:center; ">
- <script type="javascript" ev:event="onclick">
- <![CDATA[
- fSetPopupParam("00", "00", "02","00", "02");
- ]]>
- </script>
- </col>
- </datagrid>
- <line id="line3" class="line_1" style="x1:401px; y1:207px; x2:792px; y2:207px; "/>
- <line id="line96" class="line_1" style="x1:5px; y1:190px; x2:395px; y2:190px; "/>
- <caption id="cap_supptoolkind" class="cell_1" style="left:5px; top:219px; width:80px; height:40px; vertical-align:middle; ">보조기구</caption>
- <line id="line35" class="line_3" style="x1:5px; y1:259px; x2:395px; y2:259px; "/>
- <caption id="caption99" class="tit_2" style="left:10px; top:175px; width:63px; height:13px; ">활동</caption>
- <select id="chk_supptoolkind" ref="/root/main/wardrecinfo/actinfo/act/supptoolkind" disabled="true" navindex="53" overflow="visible" appearance="full" cellspacing="10" cols="3" sep="▦" vcellspacing="4" style="left:88px; top:218px; width:307px; height:40px; 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>전동 Wheel Chair</label>
- <value>4</value>
- </item>
- <item>
- <label>Wheel Chair</label>
- <value>5</value>
- </item>
- </choices>
- </select>
- <caption id="cap_actfreeyn" class="cell_1" style="left:5px; top:195px; width:80px; height:23px; vertical-align:middle; ">활동</caption>
- <select1 id="rdo_actfreeyn" ref="/root/main/wardrecinfo/actinfo/act/actfreeyn" navindex="52" appearance="full" cellspacing="40" cols="3" overflow="visible" style="left:88px; top:199px; width:305px; height:13px; 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>
- </choices>
- <script type="javascript" ev:event="xforms-value-changed">
- <![CDATA[
- var value = model.getValue("/root/main/wardrecinfo/actinfo/act/actfreeyn");
- if(value == "1") {
- chk_supptoolkind.disabled = true;
- model.removenode("/root/main/wardrecinfo/actinfo/act/supptoolkind");
- chk_supptoolkind.refresh();
- } else {
- chk_supptoolkind.disabled = false;
- model.makeNode("/root/main/wardrecinfo/actinfo/act/supptoolkind");
- chk_supptoolkind.refresh();
- }
- ]]>
- </script>
- </select1>
- <caption id="cap_skinstat" class="cell_1" style="left:797px; top:535px; width:80px; height:84px; vertical-align:middle; ">피부상태</caption>
- <datagrid id="grd_skinstat" nodeset="/root/main/wardrecinfo/skinsectinfo/skinsect/skinstat" caption="부위^방향^증상^목록" colsep="^" colwidth="60, 60, 125, 40" mergecellsfixedrows="bycolrec" rowsep="|" style="left:880px; top:557px; width:303px; height:62px; ">
- <col ref="part"/>
- <col ref="direc"/>
- <col ref="symp"/>
- <col ref="list" style="text-align:center; background-image:../../../com/commonweb/images/icon_search.gif; background-position:center; ">
- <script type="javascript" ev:event="onclick">
- <![CDATA[
- fSetPopupParam("03", "01", "06", "00", "06");
-
- ]]>
- </script>
- </col>
- </datagrid>
- <button id="btn_skinstatdel" class="btn2_letter3" style="left:1133px; top:536px; width:53px; height:19px; ">
- <caption>행삭제</caption>
- <script type="javascript" ev:event="DOMActivate">
- <![CDATA[
- grd_skinstat.deleteRow(grd_skinstat.row);
- ]]>
- </script>
- </button>
- <select id="chk_skinstatyn" ref="/root/main/wardrecinfo/skinsectinfo/skinsect/skinstatinfoinclyn" navindex="78" overflow="visible" appearance="full" style="left:955px; top:538px; width:70px; height:15px; border-style:none; ">
- <choices>
- <item>
- <label>해당없음</label>
- <value>1</value>
- </item>
- </choices>
- <script type="javascript" ev:event="xforms-value-changed">
- <![CDATA[
- if(model.getValue("/root/main/wardrecinfo/skinsectinfo/skinsect/skinstatinfoinclyn")=="1") {
-
- var isEmptyYN = "Y";
-
- isEmptyYN = isCheckGridDataYN(grd_skinstat);
-
- var rtn = fSetStatus();
-
- if(rtn == "6") {
- btn_skinstatadd.disabled = true;
- btn_skinstatdel.disabled = true;
- model.removeNodeset("/root/main/wardrecinfo/skinsectinfo/skinsect/skinstat");
- grd_skinstat.rebuild();
- } else if(rtn == "7") {
- model.setValue("/root/main/wardrecinfo/skinsectinfo/skinsect/skinstatinfoinclyn", "");
- chk_skinstatyn.refresh();
- }
-
-
- } else {
- model.setValue("/root/main/wardrecinfo/skinsectinfo/skinsect/skinstatinfoinclyn", "");
- btn_skinstatadd.disabled = false;
- btn_skinstatdel.disabled = false;
- grd_skinstat.addRow();
- }
- ]]>
- </script>
- <script type="javascript" ev:event="xforms-select">
- <![CDATA[
- status = "click";
- ]]>
- </script>
- </select>
- <caption id="caption119" class="tit_2" style="left:803px; top:425px; width:64px; height:13px; ">피부계</caption>
- <select id="chk_skincoloryn" ref="/root/main/wardrecinfo/skinsectinfo/skinsect/skincolorinfoinclyn" navindex="77" overflow="visible" appearance="full" style="left:955px; top:450px; width:70px; height:15px; border-style:none; ">
- <choices>
- <item>
- <label>해당없음</label>
- <value>1</value>
- </item>
- </choices>
- <script type="javascript" ev:event="xforms-value-changed">
- <![CDATA[
-
- if(model.getValue("/root/main/wardrecinfo/skinsectinfo/skinsect/skincolorinfoinclyn") == "1" ){
-
- var isEmptyYN = "Y";
-
- isEmptyYN = isCheckGridDataYN(grd_skincolor);
- var rtn = fSetStatus();
-
- if(rtn == "6") {
- btn_skincoloradd.disabled = true;
- btn_skincolordel.disabled = true;
- model.removeNodeset("/root/main/wardrecinfo/skinsectinfo/skinsect/skincolor");
- grd_skincolor.rebuild();
- } else if(rtn == "7") {
- model.setValue("/root/main/wardrecinfo/skinsectinfo/skinsect/skincolorinfoinclyn", "");
- chk_skincoloryn.refresh();
- }
- } else {
- btn_skincoloradd.disabled = false;
- btn_skincolordel.disabled = false;
- grd_skincolor.addRow();
- }
- ]]>
- </script>
- <script type="javascript" ev:event="xforms-select">
- <![CDATA[
- status = "click";
- ]]>
- </script>
- </select>
- <button id="btn_skincolordel" class="btn2_letter3" style="left:1135px; top:447px; width:53px; height:19px; ">
- <caption>행삭제</caption>
- <script type="javascript" ev:event="DOMActivate">
- <![CDATA[
- grd_skincolor.deleteRow(grd_skincolor.row);
- ]]>
- </script>
- </button>
- <caption id="cap_skincolor" class="cell_1" style="left:797px; top:445px; width:80px; height:89px; vertical-align:middle; ">피부색</caption>
- <datagrid id="grd_skincolor" nodeset="/root/main/wardrecinfo/skinsectinfo/skinsect/skincolor" caption="부위^방향^증상^목록" colsep="^" colwidth="60, 60, 125, 40" mergecellsfixedrows="bycolrec" rowsep="|" style="left:880px; top:468px; width:303px; height:64px; ">
- <col ref="part"/>
- <col ref="direc"/>
- <col ref="symp" style="left:120px; top:20px; width:145px; height:20px; "/>
- <col ref="list" style="text-align:center; background-image:../../../com/commonweb/images/icon_search.gif; background-position:center; ">
- <script type="javascript" ev:event="onclick">
- <![CDATA[
- if(grd_skincolor.row > -1) {
- fSetPopupParam("01", "01", "05", "00", "05");
- }
-
- ]]>
- </script>
- </col>
- </datagrid>
- <button id="btn_skinstatadd" class="btn2_letter3" style="left:1077px; top:536px; width:53px; height:19px; ">
- <caption>행추가</caption>
- <script type="javascript" ev:event="DOMActivate">
- <![CDATA[
- grd_skinstat.addRow();
- ]]>
- </script>
- </button>
- <line id="line91" class="line_1" style="x1:797px; y1:440px; x2:1186px; y2:440px; "/>
- <line id="line92" class="line_2" style="x1:797px; y1:533px; x2:1186px; y2:533px; "/>
- <line id="line93" class="line_3" style="x1:797px; y1:619px; x2:1186px; y2:619px; "/>
- <button id="btn_skincoloradd" class="btn2_letter3" style="left:1079px; top:447px; width:53px; height:19px; ">
- <caption>행추가</caption>
- <script type="javascript" ev:event="DOMActivate">
- <![CDATA[
- grd_skincolor.addRow();
- ]]>
- </script>
- </button>
- <group id="grp_cycorgn" style="left:400px; top:30px; width:391px; height:140px; ">
- <select id="chk_cycdsordkind" ref="/root/main/wardrecinfo/cirorgninfo/cirorgn/cirorgn/cirdsordkind" navindex="27" overflow="visible" appearance="full" cols="5" style="left:83px; top:2px; width:306px; height:33px; 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>
- </choices>
- </select>
- <line id="line73" class="line_2" style="x1:0px; y1:37px; x2:391px; y2:37px; "/>
- <input id="ipt_catedetl" ref="/root/main/wardrecinfo/cirorgninfo/cirorgn/cirorgn/catedetl" class="input_default" disabled="true" navindex="36" style="left:83px; top:111px; width:307px; height:19px; "/>
- <caption id="caption103" class="cell_1" style="left:0px; top:0px; width:80px; height:38px; vertical-align:middle; ">순환장애</caption>
- <line id="line74" class="line_2" style="x1:0px; y1:61px; x2:391px; y2:61px; "/>
- <select1 id="cmb_yohn" ref="/root/main/wardrecinfo/cirorgninfo/cirorgn/cirorgn/yohnddetl" class="combo_default" disabled="true" navindex="32" appearance="minimal" style="left:237px; top:65px; width:153px; height:19px; ">
- <choices>
- <item>
- <label>+ 1</label>
- <value>2</value>
- </item>
- <item>
- <label>+ 2</label>
- <value>3</value>
- </item>
- <item>
- <label>+ 3</label>
- <value>4</value>
- </item>
- <item>
- <label>+ 4</label>
- <value>5</value>
- </item>
- </choices>
- </select1>
- <caption id="caption104" class="cell_1" style="left:0px; top:39px; width:80px; height:23px; vertical-align:middle; ">부종</caption>
- <line id="line32" class="line_2" style="x1:0px; y1:85px; x2:391px; y2:85px; "/>
- <input id="ipt_edema" ref="/root/main/wardrecinfo/cirorgninfo/cirorgn/cirorgn/edemadetll" class="input_default" disabled="true" navindex="30" style="left:237px; top:40px; width:153px; height:19px; "/>
- <select1 id="cmb_cyccatekind" ref="/root/main/wardrecinfo/cirorgninfo/cirorgn/cirorgn/cyccatekind" class="combo_default" disabled="true" navindex="35" appearance="minimal" style="left:237px; top:88px; width:153px; height:19px; ">
- <choices>
- <item>
- <label>pace marker</label>
- <value>1</value>
- </item>
- <item>
- <label>자동인식세동 제거기</label>
- <value>2</value>
- </item>
- <item>
- <label>기타</label>
- <value>3</value>
- </item>
- </choices>
- <script type="javascript" ev:event="xforms-value-changed">
- <![CDATA[
- if(model.getValue("/root/main/wardrecinfo/cirorgninfo/cirorgn/cirorgn/cyccatekind") == "3"){
- ipt_catedetl.disabled = false;
- }else{
- ipt_catedetl.disabled = true;
- }
- ]]>
- </script>
- </select1>
- <caption id="caption96" class="cell_1" style="left:0px; top:63px; width:80px; height:23px; vertical-align:middle; ">요흔</caption>
- <select1 id="rdo_yohnyn" ref="/root/main/wardrecinfo/cirorgninfo/cirorgn/cirorgn/yohnyn" navindex="31" appearance="full" cellspacing="40" cols="2" overflow="visible" style="left:83px; top:67px; width:151px; height:13px; border-style:none; ">
- <choices>
- <item>
- <label>무</label>
- <value>1</value>
- </item>
- <item>
- <label>유</label>
- <value>2</value>
- </item>
- </choices>
- <script type="javascript" ev:event="xforms-value-changed">
- <![CDATA[
- if(model.getValue("/root/main/wardrecinfo/cirorgninfo/cirorgn/cirorgn/yohnyn") == "1") {
- cmb_yohn.disabled = true;
- model.resetInstanceNode("/root/main/wardrecinfo/cirorgninfo/cirorgn/cirorgn/yohnddetl");
- } else {
- cmb_yohn.disabled = false;
- }
- cmb_yohn.refresh();
- ]]>
- </script>
- </select1>
- <select1 id="cmb_edema" ref="/root/main/wardrecinfo/cirorgninfo/cirorgn/cirorgn/edemakind" class="combo_default" navindex="29" appearance="minimal" style="left:83px; top:40px; width:151px; height:19px; ">
- <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>
- <item>
- <label>기타</label>
- <value>7</value>
- </item>
- </choices>
- <script type="javascript" ev:event="xforms-value-changed">
- <![CDATA[
- if(model.getValue("/root/main/wardrecinfo/cirorgninfo/cirorgn/cirorgn/edemakind") == "7") {
- ipt_edema.disabled = false;
- } else {
- ipt_edema.disabled = true;
- model.resetInstanceNode("/root/main/wardrecinfo/cirorgninfo/cirorgn/cirorgn/edemadetll");
- ipt_edema.refresh();
- }
- ]]>
- </script>
- </select1>
- <select1 id="rdo_cyccateyn" ref="/root/main/wardrecinfo/cirorgninfo/cirorgn/cirorgn/cyccateyn" navindex="34" appearance="full" cellspacing="40" cols="2" overflow="visible" style="left:83px; top:91px; width:151px; height:13px; border-style:none; ">
- <choices>
- <item>
- <label>무</label>
- <value>1</value>
- </item>
- <item>
- <label>유</label>
- <value>2</value>
- </item>
- </choices>
- <script type="javascript" ev:event="xforms-value-changed">
- <![CDATA[
- if(model.getValue("/root/main/wardrecinfo/cirorgninfo/cirorgn/cirorgn/cyccateyn") == "1") {
- cmb_cyccatekind.disabled = true;
- ipt_catedetl.disabled = true;
-
- model.resetInstanceNode("/root/main/wardrecinfo/cirorgninfo/cirorgn/cirorgn/cyccatekind");
- model.resetInstanceNode("/root/main/wardrecinfo/cirorgninfo/cirorgn/cirorgn/catedetl");
-
- } else {
- cmb_cyccatekind.disabled = false;
- if(model.getValue("/root/main/wardrecinfo/cirorgninfo/cirorgn/cirorgn/cyccatekind") == "3"){
- ipt_catedetl.disabled = false;
- }else{
- ipt_catedetl.disabled = true;
- }
- }
- cmb_cyccatekind.refresh();
- ipt_catedetl.refresh();
-
- ]]>
- </script>
- </select1>
- <caption id="caption101" class="cell_1" style="left:0px; top:87px; width:80px; height:44px; vertical-align:middle; ">부착기구</caption>
- <line id="line61" class="line_3" style="x1:0px; y1:131px; x2:391px; y2:131px; "/>
- </group>
- <select id="chk_cycdsordinclyn" ref="/root/main/wardrecinfo/cirorgninfo/cirorgn/cirorgninfoinclyn" navindex="73" overflow="visible" appearance="full" style="left:717px; top:9px; width:70px; height:13px; border-style:none; ">
- <choices>
- <item>
- <label>해당없음</label>
- <value>1</value>
- </item>
- </choices>
- <script type="javascript" ev:event="xforms-value-changed">
- <![CDATA[
- if(model.getValue("/root/main/wardrecinfo/cirorgninfo/cirorgn/cirorgninfoinclyn") == "1") {
- var rtn = fSetStatus();
-
- if(rtn == "6") {
- model.resetInstanceNode("/root/main/wardrecinfo/cirorgninfo/cirorgn/cirorgn/cirdsordkind");
- model.resetInstanceNode("/root/main/wardrecinfo/cirorgninfo/cirorgn/cirorgn/edemakind");
- model.resetInstanceNode("/root/main/wardrecinfo/cirorgninfo/cirorgn/cirorgn/edemadetll");
- model.resetInstanceNode("/root/main/wardrecinfo/cirorgninfo/cirorgn/cirorgn/yohnyn");
- model.resetInstanceNode("/root/main/wardrecinfo/cirorgninfo/cirorgn/cirorgn/yohnddetl");
- model.resetInstanceNode("/root/main/wardrecinfo/cirorgninfo/cirorgn/cirorgn/cyccateyn");
- model.resetInstanceNode("/root/main/wardrecinfo/cirorgninfo/cirorgn/cirorgn/cyccatekind");
- model.resetInstanceNode("/root/main/wardrecinfo/cirorgninfo/cirorgn/cirorgn/catedetl");
-
- chk_cycdsordkind.disabled = true;
-
- cmb_edema.disabled = true;
- ipt_edema.disabled = true;
- rdo_yohnyn.disabled = true;
- cmb_yohn.disabled = true;
- rdo_cyccateyn.disabled = true;
- cmb_cyccatekind.disabled = true;
- ipt_catedetl.disabled = true;
- } else {
- model.setValue("/root/main/wardrecinfo/cirorgninfo/cirorgn/cirorgninfoinclyn", "");
- chk_cycdsordinclyn.refresh();
- return;
- }
-
- } else {
-
- model.setValue("/root/main/wardrecinfo/cirorgninfo/cirorgn/cirorgn/yohnyn","1");
- model.setValue("/root/main/wardrecinfo/cirorgninfo/cirorgn/cirorgn/cyccateyn", "1");
-
- rdo_yohnyn.dispatch("xforms-value-changed");
- rdo_cyccateyn.dispatch("xforms-value-changed");
-
- chk_cycdsordkind.disabled = false;
-
- cmb_edema.disabled = false;
- ipt_edema.disabled = false;
- rdo_yohnyn.disabled = false;
- cmb_yohn.disabled = false;
- //ipt_etcinfo.disabled = false;
- rdo_cyccateyn.disabled = false;
- cmb_cyccatekind.disabled = false;
- ipt_catedetl.disabled = false;
- }
- chk_cycdsordkind.refresh();
- cmb_edema.refresh();
- ipt_edema.refresh();
- rdo_yohnyn.refresh();
- cmb_yohn.refresh();
- //ipt_etcinfo.refresh();
- rdo_cyccateyn.refresh();
- cmb_cyccatekind.refresh();
- ipt_catedetl.refresh();
-
- ]]>
- </script>
- <script type="javascript" ev:event="xforms-select">
- <![CDATA[
- status = "click";
- ]]>
- </script>
- </select>
- <input id="ipt_slepdsord" ref="/root/main/wardrecinfo/slepstatinfo/slepstat/slepdsordtm" class="input_default" disabled="true" navindex="9" style="left:245px; top:430px; width:95px; height:19px; "/>
- <select1 id="rdo_pupilsymmetryyn" ref="/root/main/wardrecinfo/nvesysinfo/nvesys/nvesys/pupilsymmetryyn" navindex="54" appearance="full" vcellspacing="3" overflow="visible" style="left:89px; top:514px; width:60px; height:40px; border-style:none; ">
- <choices>
- <item>
- <label>대칭</label>
- <value>1</value>
- </item>
- <item>
- <label>비대칭</label>
- <value>2</value>
- </item>
- </choices>
- </select1>
- <line id="line78" class="line_3" style="x1:4px; y1:619px; x2:395px; y2:619px; "/>
- <select id="chk_blindnesspos" ref="/root/main/wardrecinfo/visdsordinfo/visdsord/visdsordblind" overflow="visible" appearance="full" cellspacing="60" cols="2" style="left:880px; top:231px; width:305px; height:13px; border-style:none; ">
- <choices>
- <item>
- <label>blindness(좌)</label>
- <value>l</value>
- </item>
- <item>
- <label>blindness(우)</label>
- <value>2</value>
- </item>
- </choices>
- </select>
- <select id="chk_visdordpos" ref="/root/main/wardrecinfo/visdsordinfo/visdsord/visdsordpos" disabled="true" overflow="visible" appearance="full" cellspacing="60" cols="2" style="left:995px; top:193px; width:190px; height:13px; border-style:none; ">
- <choices>
- <item>
- <label>좌</label>
- <value>1</value>
- </item>
- <item>
- <label>우</label>
- <value>2</value>
- </item>
- </choices>
- <script type="javascript" ev:event="xforms-value-changed">
- <![CDATA[
-
- var visdsordpos = model.getValue("/root/main/wardrecinfo/visdsordinfo/visdsord/visdsordpos") ;
-
- if( visdsordpos == "1") {
- ipt_visdsordleft.disabled = false;
- ipt_visdsordrght.disabled = true;
- model.resetInstanceNode("/root/main/wardrecinfo/visdsordinfo/visdsord/visdsordrght");
-
- } else if(visdsordpos == "2") {
- ipt_visdsordrght.disabled = false;
- ipt_visdsordleft.disabled = true;
- model.resetInstanceNode("/root/main/wardrecinfo/visdsordinfo/visdsord/visdsordleft");
-
- } else if(visdsordpos == "1 2" || visdsordpos == "2 1") {
- ipt_visdsordrght.disabled = false;
- ipt_visdsordleft.disabled = false;
-
- } else {
- ipt_visdsordrght.disabled = true;
- ipt_visdsordleft.disabled = true;
-
- model.resetInstanceNode("/root/main/wardrecinfo/visdsordinfo/visdsord/visdsordleft");
- model.resetInstanceNode("/root/main/wardrecinfo/visdsordinfo/visdsord/visdsordrght");
- }
- ipt_visdsordrght.refresh();
- ipt_visdsordleft.refresh();
- ]]>
- </script>
- </select>
- <line id="line85" class="line_2" style="x1:878px; y1:210px; x2:1187px; y2:210px; "/>
- <select id="chk_visdsordkind" ref="/root/main/wardrecinfo/visdsordinfo/visdsord/visdsordkind" disabled="true" overflow="visible" appearance="full" cellspacing="15" cols="4" style="left:880px; top:213px; width:290px; height:13px; 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>
- </choices>
- </select>
- <select1 id="rdo_visdsordyn" ref="/root/main/wardrecinfo/visdsordinfo/visdsord/visdsordyn" appearance="full" cellspacing="20" cols="2" overflow="visible" style="left:880px; top:193px; width:82px; height:13px; border-style:none; ">
- <choices>
- <item>
- <label>무</label>
- <value>1</value>
- </item>
- <item>
- <label>유</label>
- <value>2</value>
- </item>
- </choices>
- <script type="javascript" ev:event="xforms-value-changed">
- <![CDATA[
- if(model.getValue("/root/main/wardrecinfo/visdsordinfo/visdsord/visdsordyn") == "1") {
- chk_visdordpos.disabled = true;
- chk_visdsordkind.disabled = true;
- model.resetInstanceNode("/root/main/wardrecinfo/visdsordinfo/visdsord/visdsordpos");
- model.resetInstanceNode("/root/main/wardrecinfo/visdsordinfo/visdsord/visdsordkind");
-
- } else {
- chk_visdordpos.disabled = false;
- chk_visdsordkind.disabled = false;
- }
- chk_visdordpos.dispatch("xforms-value-changed");
- chk_visdordpos.refresh();
- chk_visdsordkind.refresh();
-
- ]]>
- </script>
- </select1>
- <line id="line108" class="line_2" style="x1:878px; y1:305px; x2:1187px; y2:305px; "/>
- <select id="chk_heardsordkind" ref="/root/main/wardrecinfo/heardsordinfo/heardsord/heardsordkind" disabled="true" overflow="visible" appearance="full" cellspacing="15" cols="4" style="left:880px; top:308px; width:290px; height:13px; border-style:none; ">
- <choices>
- <item>
- <label>보청기(좌)</label>
- <value>1</value>
- </item>
- <item>
- <label>보청기(우)</label>
- <value>2</value>
- </item>
- </choices>
- </select>
- <select1 id="rdo_heardsordyn" ref="/root/main/wardrecinfo/heardsordinfo/heardsord/heardsordyn" appearance="full" cellspacing="20" cols="2" overflow="visible" style="left:880px; top:288px; width:82px; height:13px; border-style:none; ">
- <choices>
- <item>
- <label>무</label>
- <value>1</value>
- </item>
- <item>
- <label>유</label>
- <value>2</value>
- </item>
- </choices>
- <script type="javascript" ev:event="xforms-value-changed">
- <![CDATA[
- if(model.getValue("/root/main/wardrecinfo/heardsordinfo/heardsord/heardsordyn") == "1") {
- chk_heardsordkind.disabled = true;
- chk_heardsordpos.disabled = true;
- model.resetInstanceNode("/root/main/wardrecinfo/heardsordinfo/heardsord/heardsordpos");
- model.resetInstanceNode("/root/main/wardrecinfo/heardsordinfo/heardsord/heardsordkind");
- } else {
- chk_heardsordpos.disabled = false;
- chk_heardsordkind.disabled = false;
- }
- chk_heardsordpos.dispatch("xforms-value-changed");
- chk_heardsordpos.refresh();
- chk_heardsordkind.refresh();
- ]]>
- </script>
- </select1>
- <line id="line8" class="line_3" style="x1:400px; y1:534px; x2:791px; y2:534px; "/>
- <input id="ipt_visdsordrght" ref="/root/main/wardrecinfo/visdsordinfo/visdsord/visdsordrght" class="input_default" disabled="true" style="left:1120px; top:190px; width:50px; height:19px; "/>
- <input id="ipt_visdsordleft" ref="/root/main/wardrecinfo/visdsordinfo/visdsord/visdsordleft" class="input_default" disabled="true" style="left:1029px; top:190px; width:50px; height:19px; "/>
- <input id="ipt_heardsordleft" ref="/root/main/wardrecinfo/heardsordinfo/heardsord/heardsordleft" class="input_default" disabled="true" style="left:1029px; top:285px; width:50px; height:19px; "/>
- <input id="ipt_heardsordrght" ref="/root/main/wardrecinfo/heardsordinfo/heardsord/heardsordrght" class="input_default" disabled="true" style="left:1120px; top:285px; width:50px; height:19px; "/>
- <button id="btn_cate" class="icon_search" disabled="true" style="left:774px; top:577px; width:16px; height:16px; ">
- <caption/>
- <script type="javascript" ev:event="DOMActivate">
- <![CDATA[
- fSetPopupParam("00", "00", "00", "03", "08");
- ]]>
- </script>
- </button>
- <input id="ipt_stoolcatekind" ref="/root/main/wardrecinfo/stoolinfo/stool/stoolcatekind" disabled="true" style="left:600px; top:576px; width:170px; height:19px; "/>
- <datagrid id="grd_urine" nodeset="/root/main/wardrecinfo/uriorgninfo/uriorgn/uriorgn" caption="소변증상^부착기구^목록" colsep="^" colwidth="181, 150, 40" ellipsis="true" mergecellsfixedrows="bycolrec" rowsep="|" tooltip="true" style="left:400px; top:485px; width:390px; height:48px; ">
- <col ref="symp"/>
- <col ref="cate"/>
- <col ref="list" style="text-align:center; background-image:../../../com/commonweb/images/icon_search.gif; background-position:center; ">
- <script type="javascript" ev:event="onclick">
- <![CDATA[
- fSetPopupParam("00", "00", "07", "02", "07");
-
- ]]>
- </script>
- </col>
- </datagrid>
- <button id="btn_urinedel" class="btn2_letter3" style="left:739px; top:434px; width:53px; height:19px; ">
- <caption>행삭제</caption>
- <script type="javascript" ev:event="DOMActivate">
- <![CDATA[
- grd_urine.deleteRow(grd_urine.row);
- ]]>
- </script>
- </button>
- <button id="btn_urineadd" class="btn2_letter3" style="left:683px; top:434px; width:53px; height:19px; ">
- <caption>행추가</caption>
- <script type="javascript" ev:event="DOMActivate">
- <![CDATA[
- grd_urine.addRow();
- ]]>
- </script>
- </button>
- <caption id="caption3" style="left:250px; top:517px; width:24px; height:14px; vertical-align:middle; ">mm</caption>
- <caption id="caption5" style="left:250px; top:538px; width:24px; height:14px; vertical-align:middle; ">mm</caption>
- <button id="button1" class="btn2_letter6" style="left:309px; top:6px; width:86px; height:19px; ">
- <caption>통증관리기록</caption>
- <script type="javascript" ev:event="DOMActivate">
- <![CDATA[
- open("SMMNW04810");
- ]]>
- </script>
- </button>
- <line id="line20" class="line_3" style="x1:5px; y1:54px; x2:396px; y2:54px; "/>
- <caption id="caption6" class="tit_2" style="left:10px; top:11px; width:104px; height:13px; ">통증</caption>
- <caption id="caption22" class="cell_1" style="left:5px; top:31px; width:80px; height:23px; vertical-align:middle; ">통증</caption>
- <line id="line5" class="line_1" style="x1:5px; y1:26px; x2:396px; y2:26px; "/>
- <select1 id="rdo_shpaininfoinclyn" ref="/root/main/wardrecinfo/shpaininfo/shpain/shpaininfoinclyn" navindex="52" appearance="full" cellspacing="30" cols="2" overflow="visible" style="left:87px; top:36px; width:168px; height:13px; border-style:none; ">
- <choices>
- <item>
- <label>무</label>
- <value>1</value>
- </item>
- <item>
- <label>유</label>
- <value>2</value>
- </item>
- </choices>
- <script type="javascript" ev:event="onclick">
- <![CDATA[
- //20110307 이선경 수정 : (경북대) 일반병동, 정신과, 소아간호정보조사지일 경우는 (유) 체크기 통증관리기록 자동 팝업
- var unitflag = model.getValue("/root/init/cond/unitflag");
- if(unitflag == "ward" || unitflag == "mental" || unitflag == "kid" ){
- if(model.getValue("/root/main/wardrecinfo/shpaininfo/shpain/shpaininfoinclyn") == "2") {
- open("SMMNW04810");
- }
- }
- ]]>
- </script>
- </select1>
- <caption id="cap_cscsstat" class="input_essential" visibility="hidden" style="left:84px; top:276px; width:15px; height:10px; "/>
- <caption id="cap_digorgn" class="input_essential" visibility="hidden" style="left:475px; top:318px; width:15px; height:10px; "/>
- <caption id="cap_urine" class="input_essential" visibility="hidden" style="left:476px; top:439px; width:15px; height:10px; "/>
- <caption id="cap_stool" class="input_essential" visibility="hidden" style="left:450px; top:557px; width:15px; height:10px; "/>
- <caption id="cap_act" class="input_essential" visibility="hidden" style="left:58px; top:175px; width:15px; height:10px; "/>
- <caption id="cap_nvesysds" class="input_essential" visibility="hidden" style="left:95px; top:494px; width:15px; height:10px; "/>
- <caption id="cap_visd" class="input_essential" visibility="hidden" style="left:870px; top:170px; width:15px; height:10px; "/>
- <caption id="cap_heard" class="input_essential" visibility="hidden" style="left:870px; top:265px; width:15px; height:10px; "/>
- <caption id="cap_toot" class="input_essential" visibility="hidden" style="left:870px; top:345px; width:15px; height:10px; "/>
- <caption id="cap_shpaininfo" class="input_essential" visibility="hidden" style="left:55px; top:11px; width:15px; height:10px; "/>
- <caption id="cap_endmensyn" class="cell_1" style="left:964px; top:30px; width:80px; height:23px; ">폐경여부</caption>
- <group id="grp_mensaddinfo" disabled="true" style="left:795px; top:54px; width:394px; height:101px; ">
- <line id="line51" class="line_2" style="x1:0px; y1:25px; x2:391px; y2:25px; "/>
- <input id="ipt_fstmensage" ref="/root/main/wardrecinfo/mensinfo/mens/fstmensage" class="input_default" navindex="23" style="left:83px; top:3px; width:81px; height:19px; "/>
- <input id="ipt_prgbthhisa" ref="/root/main/wardrecinfo/mensinfo/mens/prgbthhisa" class="input_default" navindex="49" imemode="alpha" maxlength="3" style="left:190px; top:78px; width:26px; height:19px; "/>
- <line id="line52" class="line_2" style="x1:0px; y1:51px; x2:391px; y2:51px; "/>
- <caption id="caption125" style="left:274px; top:76px; width:18px; height:25px; vertical-align:middle; ">AA</caption>
- <caption id="caption72" class="cell_1" style="left:0px; top:52px; width:85px; height:23px; vertical-align:middle; ">월경기간/주기</caption>
- <input id="ipt_mensvol" ref="/root/main/wardrecinfo/mensinfo/mens/mensvol" class="input_default" navindex="22" style="left:83px; top:27px; width:81px; height:19px; "/>
- <caption id="caption73" style="left:167px; top:6px; width:18px; height:14px; vertical-align:middle; ">세</caption>
- <caption id="caption127" style="left:324px; top:76px; width:18px; height:25px; vertical-align:middle; ">) L</caption>
- <input id="ipt_prgbthhisg" ref="/root/main/wardrecinfo/mensinfo/mens/prgbthhisg" class="input_default" navindex="47" imemode="alpha" maxlength="3" style="left:101px; top:78px; width:26px; height:19px; "/>
- <caption id="caption55" class="cell_1" style="left:199px; top:52px; width:65px; height:23px; vertical-align:middle; ">상태</caption>
- <select1 id="rdo_menspainyn" ref="/root/main/wardrecinfo/mensinfo/mens/menspainyn" navindex="25" appearance="full" cellspacing="20" cols="2" overflow="visible" style="left:272px; top:30px; width:82px; height:13px; border-style:none; ">
- <choices>
- <item>
- <label>무</label>
- <value>1</value>
- </item>
- <item>
- <label>유</label>
- <value>2</value>
- </item>
- </choices>
- </select1>
- <caption id="cap_lastmensdd" class="cell_1" style="left:183px; top:1px; width:81px; height:23px; ">최종월경일</caption>
- <caption id="caption56" class="cell_1" style="left:0px; top:1px; width:80px; height:23px; vertical-align:middle; ">초경</caption>
- <caption id="caption4" style="left:112px; top:56px; width:20px; height:14px; vertical-align:middle; ">일/</caption>
- <caption id="caption57" class="cell_1" style="left:183px; top:26px; width:81px; height:23px; vertical-align:middle; ">월경통</caption>
- <select1 id="rdo_mensstat" ref="/root/main/wardrecinfo/mensinfo/mens/mensstat" navindex="21" appearance="full" cellspacing="0" cols="2" overflow="visible" style="left:272px; top:56px; width:102px; height:13px; border-style:none; ">
- <choices>
- <item>
- <label>불규칙</label>
- <value>1</value>
- </item>
- <item>
- <label>규칙</label>
- <value>2</value>
- </item>
- </choices>
- </select1>
- <input id="ipt_mensday" ref="/root/main/wardrecinfo/mensinfo/mens/mensday" class="input_default" navindex="19" style="left:88px; top:53px; width:23px; height:19px; "/>
- <caption id="caption48" class="cell_1" style="left:0px; top:26px; width:80px; height:23px; vertical-align:middle; ">양</caption>
- <line id="line100" class="line_2" style="x1:0px; y1:1px; x2:391px; y2:1px; "/>
- <input id="ipt_prgbthhisl" ref="/root/main/wardrecinfo/mensinfo/mens/prgbthhisl" class="input_default" navindex="52" imemode="alpha" maxlength="3" style="left:350px; top:78px; width:26px; height:19px; "/>
- <input id="ipt_mensweek" ref="/root/main/wardrecinfo/mensinfo/mens/mensweek" class="input_default" navindex="20" style="left:134px; top:53px; width:23px; height:19px; "/>
- <caption id="caption38" style="left:156px; top:56px; width:42px; height:14px; vertical-align:middle; ">일 주기</caption>
- <caption id="caption120" style="left:83px; top:76px; width:15px; height:25px; vertical-align:middle; ">G</caption>
- <input id="ipt_prgbthhissa" ref="/root/main/wardrecinfo/mensinfo/mens/prgbthhissa" class="input_default" navindex="50" imemode="alpha" maxlength="3" style="left:245px; top:78px; width:26px; height:19px; "/>
- <caption id="caption121" style="left:130px; top:75px; width:15px; height:25px; vertical-align:middle; ">P</caption>
- <input id="ipt_lastmensdd" ref="/root/main/wardrecinfo/mensinfo/mens/lastmensdd" class="input_default" navindex="46" inputtype="date" format="yyyy-mm-dd" style="left:266px; top:4px; width:123px; height:19px; "/>
- <input id="ipt_prgbthhisaa" ref="/root/main/wardrecinfo/mensinfo/mens/prgbthhisaa" class="input_default" navindex="51" imemode="alpha" maxlength="3" style="left:295px; top:78px; width:26px; height:19px; "/>
- <input id="ipt_prgbthhisp" ref="/root/main/wardrecinfo/mensinfo/mens/prgbthhisp" class="input_default" navindex="48" imemode="alpha" maxlength="3" style="left:148px; top:78px; width:26px; height:19px; "/>
- <caption id="caption122" style="left:177px; top:75px; width:15px; height:25px; vertical-align:middle; ">A</caption>
- <caption id="cap_prgbthhis" class="cell_1" style="left:0px; top:77px; width:80px; height:23px; ">임신출산력</caption>
- <caption id="caption123" style="left:219px; top:75px; width:23px; height:25px; vertical-align:middle; ">(SA</caption>
- <line id="line7" class="line_2" style="x1:0px; y1:76px; x2:391px; y2:76px; "/>
- <line id="line9" class="line_3" style="x1:0px; y1:100px; x2:391px; y2:100px; "/>
- </group>
- <select1 id="rdo_endmensyn" ref="/root/main/wardrecinfo/mensinfo/mens/endmensyn" navindex="44" appearance="full" cellspacing="10" cols="2" overflow="visible" style="left:1048px; top:34px; width:75px; height:13px; border-style:none; ">
- <choices>
- <item>
- <label>무</label>
- <value>1</value>
- </item>
- <item>
- <label>유</label>
- <value>2</value>
- </item>
- </choices>
- <script type="javascript" ev:event="xforms-value-changed">
- <![CDATA[
- if(model.getValue("/root/main/wardrecinfo/mensinfo/mens/endmensyn") == "2") {
- ipt_closmensage.disabled = false;
- // if ( chk_mensinclyn.value !="1") {
- // rdo_mensyn.value = "2";
- // rdo_mensyn.dispatch("xforms-value-changed");
- // }
- } else {
- ipt_closmensage.disabled = true;
- model.resetInstanceNode("/root/main/wardrecinfo/mensinfo/mens/closmensage");
-
- // if ( chk_mensinclyn.value !="1") {
- // rdo_mensyn.value = "1";
- // rdo_mensyn.dispatch("xforms-value-changed");
- // }
- ipt_closmensage.refresh();
- }
-
- ]]>
- </script>
- </select1>
- <input id="ipt_closmensage" ref="/root/main/wardrecinfo/mensinfo/mens/closmensage" style="left:1129px; top:31px; width:46px; height:19px; "/>
- <caption id="caption54" class="tit_2" style="left:798px; top:10px; width:80px; height:15px; ">여성정보</caption>
- <select id="chk_mensinclyn" ref="/root/main/wardrecinfo/mensinfo/mens/mensinclyn" navindex="75" overflow="visible" appearance="full" style="left:989px; top:9px; width:70px; height:15px; border-style:none; ">
- <choices>
- <item>
- <label>해당없음</label>
- <value>1</value>
- </item>
- </choices>
- <script type="javascript" ev:event="xforms-value-changed">
- <![CDATA[
- if(model.getValue("/root/main/wardrecinfo/mensinfo/mens/mensinclyn") == "1") { // 여정정보 해당없음
- var rtn = fSetStatus();
-
- if(rtn == "6") {
- model.resetInstanceNode("/root/main/wardrecinfo/mensinfo/mens/mensyn"); // 월경 유무
- model.resetInstanceNode("/root/main/wardrecinfo/mensinfo/mens/endmensyn"); // 폐경 여부
- model.resetInstanceNode("/root/main/wardrecinfo/mensinfo/mens/closmensage"); // 폐경 나이
-
- model.resetInstanceNode("/root/main/wardrecinfo/mensinfo/mens/fstmensage"); // 초경 나이
- model.resetInstanceNode("/root/main/wardrecinfo/mensinfo/mens/lastmensdd"); // 최종 월경일
- model.resetInstanceNode("/root/main/wardrecinfo/mensinfo/mens/mensvol"); // 월경 양
- model.resetInstanceNode("/root/main/wardrecinfo/mensinfo/mens/menspainyn"); // 월경 통 유무
- model.resetInstanceNode("/root/main/wardrecinfo/mensinfo/mens/mensday"); // 월경 기간(일)
- model.resetInstanceNode("/root/main/wardrecinfo/mensinfo/mens/mensweek"); // 월경 기간(주기)
- model.resetInstanceNode("/root/main/wardrecinfo/mensinfo/mens/mensstat"); // 월경 상태
-
- model.resetInstanceNode("/root/main/wardrecinfo/mensinfo/mens/prgbthhisg"); // 임신출산력 G
- model.resetInstanceNode("/root/main/wardrecinfo/mensinfo/mens/prgbthhisp"); // 임신출산력 P
- model.resetInstanceNode("/root/main/wardrecinfo/mensinfo/mens/prgbthhisa"); // 임신출산력 A
- model.resetInstanceNode("/root/main/wardrecinfo/mensinfo/mens/prgbthhissa"); // 임신출산력 SA
- model.resetInstanceNode("/root/main/wardrecinfo/mensinfo/mens/prgbthhisaa"); // 임신출산력 AA
- model.resetInstanceNode("/root/main/wardrecinfo/mensinfo/mens/prgbthhisl"); // 임신출산력 L
-
- model.resetInstanceNode("/root/main/wardrecinfo/mensinfo/mens/mensaddinfoyn"); // 여성정보 추가사정
-
- rdo_mensyn.disabled = true;
- rdo_endmensyn.disabled = true;
- ipt_closmensage.disabled = true;
- ipt_fstmensage.disabled = true;
- ipt_lastmensdd.disabled = true;
- ipt_mensvol.disabled = true;
- rdo_menspainyn.disabled = true;
- ipt_mensday.disabled = true;
- ipt_mensweek.disabled = true;
- rdo_mensstat.disabled = true;
-
- ipt_prgbthhisg.disabled = true;
- ipt_prgbthhisp.disabled = true;
- ipt_prgbthhisa.disabled = true;
- ipt_prgbthhissa.disabled = true;
- ipt_prgbthhisaa.disabled = true;
- ipt_prgbthhisl.disabled = true;
-
- chk_mensaddinfoyn.disabled = true;
-
- } else {
- model.setValue("/root/main/wardrecinfo/mensinfo/mens/mensinclyn", "");
- chk_mensinclyn.refresh();
- return;
- }
- } else {
- if(model.getValue("/root/main/wardrecinfo/mensinfo/mens/mensaddinfoyn") == "1")
- {
- rdo_mensyn.disabled = false;
- rdo_endmensyn.disabled = false;
- ipt_closmensage.disabled = false;
- ipt_fstmensage.disabled = false;
- ipt_lastmensdd.disabled = false;
- ipt_mensvol.disabled = false;
- rdo_menspainyn.disabled = false;
- ipt_mensday.disabled = false;
- ipt_mensweek.disabled = false;
- rdo_mensstat.disabled = false;
- ipt_prgbthhisg.disabled = false;
- ipt_prgbthhisp.disabled = false;
- ipt_prgbthhisa.disabled = false;
- ipt_prgbthhissa.disabled = false;
- ipt_prgbthhisaa.disabled = false;
- ipt_prgbthhisl.disabled = false;
- chk_mensaddinfoyn.disabled = false;
-
- } else {
- rdo_mensyn.disabled = false;
- rdo_endmensyn.disabled = false;
- ipt_closmensage.disabled = false;
- chk_mensaddinfoyn.disabled = false;
-
- ipt_fstmensage.disabled = true;
- ipt_lastmensdd.disabled = true;
- ipt_mensvol.disabled = true;
- rdo_menspainyn.disabled = true;
- ipt_mensday.disabled = true;
- ipt_mensweek.disabled = true;
- rdo_mensstat.disabled = true;
-
- ipt_prgbthhisg.disabled = true;
- ipt_prgbthhisp.disabled = true;
- ipt_prgbthhisa.disabled = true;
- ipt_prgbthhissa.disabled = true;
- ipt_prgbthhisaa.disabled = true;
- ipt_prgbthhisl.disabled = true;
-
- }
- }
- rdo_mensyn.refresh();
- rdo_endmensyn.refresh();
- ipt_closmensage.refresh();
- ipt_fstmensage.refresh();
- ipt_lastmensdd.refresh();
- ipt_mensvol.refresh();
- rdo_menspainyn.refresh();
- ipt_mensday.refresh();
- ipt_mensweek.refresh();
- rdo_mensstat.refresh();
-
- ipt_prgbthhisg.refresh();
- ipt_prgbthhisp.refresh();
- ipt_prgbthhisa.refresh();
- ipt_prgbthhissa.refresh();
- ipt_prgbthhisaa.refresh();
- ipt_prgbthhisl.refresh();
-
- chk_mensaddinfoyn.refresh();
- ]]>
- </script>
- <script type="javascript" ev:event="xforms-select">
- <![CDATA[
- status = "click";
- ]]>
- </script>
- </select>
- <caption id="caption58" class="cell_1" style="left:795px; top:30px; width:80px; height:23px; vertical-align:middle; ">월경</caption>
- <caption id="caption15" style="left:1174px; top:31px; width:15px; height:19px; text-align:center; ">세</caption>
- <select1 id="rdo_mensyn" ref="/root/main/wardrecinfo/mensinfo/mens/mensyn" navindex="18" appearance="full" cellspacing="20" cols="2" overflow="visible" style="left:878px; top:33px; width:82px; height:13px; border-style:none; ">
- <choices>
- <item>
- <label>유</label>
- <value>1</value>
- </item>
- <item>
- <label>무</label>
- <value>2</value>
- </item>
- </choices>
- <script type="javascript" ev:event="xforms-value-changed">
- <![CDATA[
- // if ( chk_mensinclyn.value !="1") {
- // if(model.getValue("/root/main/wardrecinfo/mensinfo/mens/mensyn") == "1") {
- // rdo_endmensyn.value = "1";
- // rdo_endmensyn.dispatch("xforms-value-changed");
- //
- // } else {
- // rdo_endmensyn.value = "2";
- // rdo_endmensyn.dispatch("xforms-value-changed");
- // }
- // }
- ]]>
- </script>
- </select1>
- <line id="line6" class="line_1" style="x1:795px; y1:25px; x2:1186px; y2:25px; "/>
- <select id="chk_mensaddinfoyn" ref="/root/main/wardrecinfo/mensinfo/mens/mensaddinfoyn" navindex="75" overflow="visible" appearance="full" style="left:1066px; top:10px; width:120px; height:15px; border-style:none; ">
- <choices>
- <item>
- <label>여성정보 추가사정</label>
- <value>1</value>
- </item>
- </choices>
- <script type="javascript" ev:event="xforms-value-changed">
- <![CDATA[
-
- if(model.getValue("/root/main/wardrecinfo/mensinfo/mens/mensaddinfoyn") == "1") {
-
- ipt_fstmensage.disabled = false;
- ipt_lastmensdd.disabled = false;
- ipt_mensvol.disabled = false;
- rdo_menspainyn.disabled = false;
- ipt_mensday.disabled = false;
- ipt_mensweek.disabled = false;
- rdo_mensstat.disabled = false;
-
- ipt_prgbthhisg.disabled = false;
- ipt_prgbthhisp.disabled = false;
- ipt_prgbthhisa.disabled = false;
- ipt_prgbthhissa.disabled = false;
- ipt_prgbthhisaa.disabled = false;
- ipt_prgbthhisl.disabled = false;
- grp_mensaddinfo.disabled = false;
-
- } else {
-
- model.resetInstanceNode("/root/main/wardrecinfo/mensinfo/mens/fstmensage"); // 초경 나이
- model.resetInstanceNode("/root/main/wardrecinfo/mensinfo/mens/lastmensdd"); // 최종 월경일
- model.resetInstanceNode("/root/main/wardrecinfo/mensinfo/mens/mensvol"); // 월경 양
- model.resetInstanceNode("/root/main/wardrecinfo/mensinfo/mens/menspainyn"); // 월경 통 유무
- model.resetInstanceNode("/root/main/wardrecinfo/mensinfo/mens/mensday"); // 월경 기간(일)
- model.resetInstanceNode("/root/main/wardrecinfo/mensinfo/mens/mensweek"); // 월경 기간(주기)
- model.resetInstanceNode("/root/main/wardrecinfo/mensinfo/mens/mensstat"); // 월경 상태
-
- model.resetInstanceNode("/root/main/wardrecinfo/mensinfo/mens/prgbthhisg"); // 임신출산력 G
- model.resetInstanceNode("/root/main/wardrecinfo/mensinfo/mens/prgbthhisp"); // 임신출산력 P
- model.resetInstanceNode("/root/main/wardrecinfo/mensinfo/mens/prgbthhisa"); // 임신출산력 A
- model.resetInstanceNode("/root/main/wardrecinfo/mensinfo/mens/prgbthhissa"); // 임신출산력 SA
- model.resetInstanceNode("/root/main/wardrecinfo/mensinfo/mens/prgbthhisaa"); // 임신출산력 AA
- model.resetInstanceNode("/root/main/wardrecinfo/mensinfo/mens/prgbthhisl"); // 임신출산력 L
-
- ipt_fstmensage.disabled = true;
- ipt_lastmensdd.disabled = true;
- ipt_mensvol.disabled = true;
- rdo_menspainyn.disabled = true;
- ipt_mensday.disabled = true;
- ipt_mensweek.disabled = true;
- rdo_mensstat.disabled = true;
- ipt_prgbthhisg.disabled = true;
- ipt_prgbthhisp.disabled = true;
- ipt_prgbthhisa.disabled = true;
- ipt_prgbthhissa.disabled = true;
- ipt_prgbthhisaa.disabled = true;
- ipt_prgbthhisl.disabled = true;
- }
-
- rdo_mensyn.refresh();
- rdo_endmensyn.refresh();
- ipt_closmensage.refresh();
- ipt_fstmensage.refresh();
- ipt_lastmensdd.refresh();
- ipt_mensvol.refresh();
- rdo_menspainyn.refresh();
- ipt_mensday.refresh();
- ipt_mensweek.refresh();
- rdo_mensstat.refresh();
-
- ipt_prgbthhisg.refresh();
- ipt_prgbthhisp.refresh();
- ipt_prgbthhisa.refresh();
- ipt_prgbthhissa.refresh();
- ipt_prgbthhisaa.refresh();
- ipt_prgbthhisl.refresh();
- grp_mensaddinfo.refresh();
-
- chk_mensaddinfoyn.refresh();
- ]]>
- </script>
- <script type="javascript" ev:event="xforms-select">
- <![CDATA[
- // status = "click";
- // ]]>
- </script>
- </select>
- <select1 id="rdo_stoolstatflag" ref="/root/main/wardrecinfo/stoolinfo/stool/stoolstatflag" navindex="50" appearance="full" cellspacing="8" cols="2" overflow="visible" style="left:484px; top:601px; width:106px; height:13px; border-style:none; ">
- <choices>
- <item>
- <label>정상</label>
- <value>1</value>
- </item>
- <item>
- <label>비정상</label>
- <value>2</value>
- </item>
- </choices>
- <script type="javascript" ev:event="xforms-value-changed">
- <![CDATA[
- if(model.getValue("/root/main/wardrecinfo/stoolinfo/stool/stoolstatflag") == "1") {
- model.resetInstanceNode("/root/main/wardrecinfo/stoolinfo/stool/stoolstatetc");
- model.resetInstanceNode("/root/main/wardrecinfo/stoolinfo/stool/stoolstatkind");
- ipt_stoolstatetc.disabled = true;
- cmb_stoolstatkind.disabled = true;
- //cmb_stoolstatkind.value = "";
-
- } else {
- // ipt_stoolstatetc.disabled = false;
- cmb_stoolstatkind.disabled = false;
- //cmb_stoolstatkind.value = "";
- }
- cmb_stoolstatkind.dispatch("xforms-value-changed");
- ipt_stoolstatetc.refresh();
- cmb_stoolstatkind.refresh();
- ]]>
- </script>
- </select1>
- <caption id="caption7" class="cell_1" style="left:401px; top:598px; width:80px; height:21px; vertical-align:middle; ">대변양상</caption>
- <line id="line57" class="line_3" style="x1:401px; y1:619px; x2:791px; y2:619px; "/>
- <select1 id="cmb_stoolstatkind" ref="/root/main/wardrecinfo/stoolinfo/stool/stoolstatkind" disabled="true" appearance="minimal" style="left:600px; top:598px; width:75px; height:19px; ">
- <choices>
- <item>
- <label>설사</label>
- <value>1</value>
- </item>
- <item>
- <label>변비</label>
- <value>2</value>
- </item>
- <item>
- <label>기타</label>
- <value>3</value>
- </item>
- </choices>
- <script type="javascript" ev:event="xforms-value-changed">
- <![CDATA[
- var stoolstatkind = model.getValue("/root/main/wardrecinfo/stoolinfo/stool/stoolstatkind");
- if(stoolstatkind == "3") { //기타
- ipt_stoolstatetc.disabled = false;
- } else {
- model.resetInstanceNode("/root/main/wardrecinfo/stoolinfo/stool/stoolstatetc");
- ipt_stoolstatetc.disabled = true;
- }
- ipt_stoolstatetc.refresh();
- ]]>
- </script>
- </select1>
- <input id="ipt_stoolstatetc" ref="/root/main/wardrecinfo/stoolinfo/stool/stoolstatetc" class="input_default" disabled="true" navindex="9" style="left:682px; top:598px; width:88px; height:19px; "/>
- <caption id="cap_tnsseffcyn" class="cell_1" style="left:400px; top:459px; width:90px; height:23px; ">소변양상</caption>
- <select1 id="rdo_urinestat" ref="/root/main/wardrecinfo/uriorgninfo/uriorgn/urinestat" navindex="37" appearance="full" cellspacing="30" cols="2" overflow="visible" style="left:493px; top:463px; width:152px; height:13px; border-style:none; ">
- <choices>
- <item>
- <label>정상</label>
- <value>1</value>
- </item>
- <item>
- <label>비정상</label>
- <value>2</value>
- </item>
- </choices>
- </select1>
- </xhtml:body>
- </xhtml:html>
|