SMMNW08700_신체사정가정간호.xrw 79 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124
  1. <?xml version="1.0" encoding="EUC-KR"?>
  2. <?xml-stylesheet type="text/css" href="../../../com/commonweb/css/common.css" ?>
  3. <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">
  4. <xhtml:head>
  5. <xhtml:title>Untitle</xhtml:title>
  6. <model id="model1">
  7. <instance id="instance1">
  8. <root xmlns="">
  9. <main>
  10. <wardrecinfo>
  11. <shpaininfo>
  12. <shpain>
  13. <shpaininfoinclyn>1</shpaininfoinclyn>
  14. <hospiceyn>1</hospiceyn>
  15. <hospice/>
  16. <shpaininfochgdd>20100125</shpaininfochgdd>
  17. </shpain>
  18. </shpaininfo>
  19. <actinfo>
  20. <act>
  21. <actfreeyn>1</actfreeyn>
  22. <paralysisyn>1</paralysisyn>
  23. <paralysis/>
  24. <ppsdetl/>
  25. <supptoolkind/>
  26. </act>
  27. </actinfo>
  28. <apttbdwtchnginfo>
  29. <apttbdwtchng>
  30. <apptchngyn>1</apptchngyn>
  31. <apptaddyn/>
  32. <apptstatflag/>
  33. <bdwtchngyn/>
  34. <bdwtchnggrde/>
  35. <bdwtchngterm/>
  36. <onemealyn/>
  37. <mealstat/>
  38. <bdwtchngtermflag/>
  39. <incdecflag/>
  40. </apttbdwtchng>
  41. </apttbdwtchnginfo>
  42. <slepstatinfo>
  43. <slepstat>
  44. <slepdsordyn>1</slepdsordyn>
  45. <slepdsordtm/>
  46. <dugtmedyn>1</dugtmedyn>
  47. <dugtmeddetl/>
  48. </slepstat>
  49. </slepstatinfo>
  50. <cscsstatinfo>
  51. <cscsstat>
  52. <cscsstathuman/>
  53. <cscsstattm/>
  54. <cscsstatplce/>
  55. <cscsstat/>
  56. <communication/>
  57. <emotstat/>
  58. </cscsstat>
  59. </cscsstatinfo>
  60. <mensinfo>
  61. <mens>
  62. <mensyn/>
  63. <mesnday/>
  64. <mensweek/>
  65. <mensstat/>
  66. <mensvol/>
  67. <fstmensage/>
  68. <closmensage/>
  69. <menspainyn/>
  70. <mensetc/>
  71. </mens>
  72. </mensinfo>
  73. <cirorgninfo>
  74. <cirorgn>
  75. <cirorgninfoinclyn/>
  76. <cirorgn>
  77. <cirdsordkind/>
  78. <edemakind>
  79. </edemakind>
  80. <edemadetll/>
  81. <yohnyn>1</yohnyn>
  82. <yohnddetl/>
  83. <etcinfo/>
  84. <cyccateyn>1</cyccateyn>
  85. <cyccatekind/>
  86. <catedetl/>
  87. </cirorgn>
  88. </cirorgn>
  89. </cirorgninfo>
  90. <resorgninfo>
  91. <resorgn>
  92. <resorgninfoinclyn/>
  93. <resstat/>
  94. <orgnopenyn>1</orgnopenyn>
  95. <orgnopenkind/>
  96. <orgnopennm/>
  97. <suctionuseyn>1</suctionuseyn>
  98. <oxyuseyn>01</oxyuseyn>
  99. <oxyusevol/>
  100. <artficresorgn>1</artficresorgn>
  101. </resorgn>
  102. </resorgninfo>
  103. <digorgninfo>
  104. <digorgn>
  105. <digorgninfoinclyn/>
  106. <trobsymp/>
  107. <trobsympdetl/>
  108. <digorgcate/>
  109. <digorgdetl/>
  110. </digorgn>
  111. </digorgninfo>
  112. <uriorgninfo>
  113. <uriorgn>
  114. <urinetims/>
  115. <urineday/>
  116. <urinevol/>
  117. <urinecate/>
  118. <urinecolor/>
  119. <urinesymp/>
  120. <urinesmell/>
  121. <urinecatedetl/>
  122. </uriorgn>
  123. </uriorgninfo>
  124. <stoolinfo>
  125. <stool>
  126. <stooltims/>
  127. <stoolday/>
  128. <laststoolday/>
  129. <stoolcolor/>
  130. <stoolkind/>
  131. <stooletcinfo/>
  132. <stoolconstipation/>
  133. </stool>
  134. </stoolinfo>
  135. <nvesysinfo>
  136. <nvesys>
  137. <nvesysinfoinclyn/>
  138. <nvesys>
  139. <pupilsymmetryyn/>
  140. <pupilleft/>
  141. <pupilrght/>
  142. <pupilleftrflx/>
  143. <pupilrghtrflx/>
  144. </nvesys>
  145. <nvesysdsordinfo>
  146. <part/>
  147. <direc/>
  148. <symp/>
  149. <list/>
  150. </nvesysdsordinfo>
  151. </nvesys>
  152. </nvesysinfo>
  153. <visdsordinfo>
  154. <visdsord>
  155. <visdsordyn>1</visdsordyn>
  156. <visdsordpos/>
  157. <visdsordleft/>
  158. <visdsordrght/>
  159. <visdsordkind/>
  160. <visdsordblind/>
  161. </visdsord>
  162. </visdsordinfo>
  163. <heardsordinfo>
  164. <heardsord>
  165. <heardsordyn>1</heardsordyn>
  166. <heardsordpos/>
  167. <heardsordleft/>
  168. <heardsordrght/>
  169. <heardsordkind/>
  170. </heardsord>
  171. </heardsordinfo>
  172. <tootstatinfo>
  173. <tootstat>
  174. <tootstatkind/>
  175. </tootstat>
  176. </tootstatinfo>
  177. <skinsectinfo>
  178. <skinsect>
  179. <skinstat/>
  180. <skinstatdetl/>
  181. </skinsect>
  182. </skinsectinfo>
  183. </wardrecinfo>
  184. </main>
  185. <send/>
  186. </root>
  187. </instance>
  188. <script type="javascript">
  189. <![CDATA[
  190. var shpainPath = "/root/main/wardrecinfo/shpaininfo/shpain/shpain";
  191. var resorgnPath="/root/main/wardrecinfo/resorgninfo/resorgn/resorgn";
  192. var digorgnPath = "/root/main/wardrecinfo/digorgninfo/digorgn/digorgn";
  193. var nvesysdsordPath = "/root/main/wardrecinfo/nvesysinfo/nvesys/nvesysdsordinfo";
  194. var skincolorPath = "/root/main/wardrecinfo/skinsectinfo/skinsect/skincolor";
  195. var skinstatPath = "/root/main/wardrecinfo/skinsectinfo/skinsect/skinstat";
  196. var status = "select";
  197. function fInitEventBdAses() {
  198. rdo_hospiceyn.dispatch("xforms-value-changed");
  199. rdo_paralysisyn.dispatch("xforms-value-changed");
  200. rdo_apttchngyn.dispatch("xforms-value-changed");
  201. rdo_bdwtchngyn.dispatch("xforms-value-changed");
  202. if(model.getValue("/root/main/wardrecinfo/cirorgninfo/cirorgn/cirorgninfoinclyn") == "1") {
  203. chk_cirorgnyn.dispatch("xforms-value-changed");
  204. } else {
  205. cmb_edema.dispatch("xforms-value-chagned");
  206. rdo_yohnyn.dispatch("xforms-value-changed");
  207. }
  208. if(model.getValue("/root/main/wardrecinfo/resorgninfo/resorgn/resorgninfoinclyn") == "1") {
  209. chk_resorgnyn.dispatch("xforms-value-changed");
  210. } else {
  211. rdo_orgnopenyn.dispatch("xforms-value-changed");
  212. rdo_oxyuseyn.dispatch("xforms-value-changed");
  213. }
  214. if(model.getValue("/root/main/wardrecinfo/digorgninfo/digorgn/digorgninfoinclyn") == "1") {
  215. chk_digorgninfoinclyn.dispatch("xforms-value-changed");
  216. } else {
  217. chk_trobsymp.dispatch("xforms-value-changed");
  218. }
  219. if(model.getValue("/root/main/wardrecinfo/nvesysinfo/nvesys/nvesysinfoinclyn") == "1") {
  220. chk_nvesysinfoinclyn.dispatch("xforms-value-changed");
  221. }
  222. rdo_visdsordyn.dispatch("xforms-value-changed");
  223. rdo_heardsordyn.dispatch("xforms-value-changed");
  224. chk_skinstat.dispatch("xforms-value-changed");
  225. rdo_actfreeyn.dispatch("xforms-value-changed");
  226. }
  227. function fSetPopupParam(part, direc, symp, cate, flag) {
  228. setParameter("SPMNW07500_PARAM1", "");
  229. setParameter("SPMNW07500_PARAM2", "");
  230. setParameter("SPMNW07500_PARAM3", "");
  231. setParameter("SPMNW07500_PARAM4", "");
  232. setParameter("SPMNW07500_PARAM5", "");
  233. var title ="";
  234. var path = "";
  235. var idx = -1;
  236. if(flag == "01") {
  237. title="동통팝업";
  238. path = shpainPath;
  239. idx = grd_shpain.row;
  240. } else if(flag =="02") {
  241. title="호흡기계";
  242. path = resorgnPath;
  243. idx = grd_resorgn.row;
  244. } else if(flag =="03") {
  245. title="소화기계";
  246. path = digorgnPath;
  247. idx = grd_digorgn.row;
  248. } else if(flag =="04") {
  249. title = "신경계장애";
  250. path = nvesysdsordPath;
  251. idx = grd_nvesysdsord.row;
  252. } else if(flag =="05") {
  253. title = "피부색";
  254. path = skincolorPath;
  255. idx = grd_skincolor.row;
  256. } else if(flag == "06") {
  257. title = "피부상태";
  258. path = skinstatPath;
  259. idx = grd_skinstat.row;
  260. } else if(flag == "07") {
  261. title = "비뇨기계";
  262. path = uriorgnPath;
  263. idx = grd_urine.row;
  264. } else if(flag == "08") {
  265. title = "대변";
  266. path = stoolPath;
  267. }
  268. setParameter("SPMNW07500_PARAM1", part);
  269. setParameter("SPMNW07500_PARAM2", direc);
  270. setParameter("SPMNW07500_PARAM3", symp);
  271. setParameter("SPMNW07500_PARAM4", title);
  272. setParameter("SPMNW07500_PARAM5", cate);
  273. modal("SPMNW07500",1, (event.screenX + 517 >= 1195)? 1195-517 : event.screenX , (event.screenY+306 >= 1024)? 1024-306: event.screenY );
  274. var flg = getParameter("SMMNW03100_PARAM4");
  275. if(flg == "Y") {
  276. if(part != "00") {
  277. part = getParameter("SMMNW03100_PARAM1");
  278. model.setValue(path + "[" + idx + "]/part", part);
  279. }
  280. if(direc != "00") {
  281. direc = getParameter("SMMNW03100_PARAM2");
  282. model.setValue(path + "[" + idx + "]/direc", direc);
  283. }
  284. if(symp != "00") {
  285. symp = getParameter("SMMNW03100_PARAM3");
  286. model.setValue(path + "[" + idx + "]/symp", symp);
  287. }
  288. if(cate != "00") {
  289. cate = getParameter("SMMNW03100_PARAM5");
  290. if(flag == "03") {
  291. grd_digorgn.valueMatrix(idx, grd_digorgn.colRef("cate")) = cate;
  292. grd_digorgn.rebuild();
  293. } else if(flag == "07") {
  294. grd_urine.valueMatrix(idx, grd_urine.colRef("cate")) = cate;
  295. grd_urine.rebuild();
  296. } else if(flag == "08") {
  297. model.setValue(path + "/stoolcatekind", cate);
  298. ipt_stoolcatekind.refresh();
  299. }
  300. }
  301. }
  302. }
  303. function isCheckGridDataYN(grdData) {
  304. var isEmptyYN = "Y";
  305. if(grdData.rows == 2) {
  306. for(var i = 1; i < grdData.cols; i++) {
  307. if(grdData.valueMatrix(1, i) != "") {
  308. isEmptyYN = "N";
  309. break;
  310. } else {
  311. isEmptyYN = "Y";
  312. }
  313. }
  314. } else if(grdData.rows < 2) {
  315. isEmptyYN = "Y";
  316. } else {
  317. isEmptyYN = "N";
  318. }
  319. if(isEmptyYN == "Y") {
  320. status = "select";
  321. }
  322. return isEmptyYN;
  323. }
  324. function fSetStatus() {
  325. var rtn = "";
  326. if(status == "select") {
  327. rtn = "6";
  328. } else {
  329. rtn = messageBox("데이터를 ", "Q001");
  330. }
  331. return rtn;
  332. }
  333. ]]>
  334. </script>
  335. </model>
  336. <script type="javascript" src="../../../com/commonweb/js/common.js"/>
  337. </xhtml:head>
  338. <xhtml:body pagewidth="1194" pageheight="673" style="margin-left:0; margin-top:0; margin-right:0; margin-bottom:0; ">
  339. <select1 id="rdo_communication" ref="/root/main/wardrecinfo/cscsstatinfo/cscsstat/communication" appearance="full" cellspacing="40" cols="3" overflow="visible" style="left:88px; top:530px; width:307px; height:13px; border-style:none; ">
  340. <choices>
  341. <item>
  342. <label>원만</label>
  343. <value>1</value>
  344. </item>
  345. <item>
  346. <label>곤란</label>
  347. <value>2</value>
  348. </item>
  349. <item>
  350. <label>불가능</label>
  351. <value>3</value>
  352. </item>
  353. </choices>
  354. </select1>
  355. <select id="chk_cycdsordkind" ref="/root/main/wardrecinfo/cirorgninfo/cirorgn/cirorgn/cirdsordkind" overflow="visible" appearance="full" cols="5" style="left:485px; top:32px; width:306px; height:33px; border-style:none; ">
  356. <choices>
  357. <item>
  358. <label>식은땀</label>
  359. <value>01</value>
  360. </item>
  361. <item>
  362. <label>부정맥</label>
  363. <value>02</value>
  364. </item>
  365. <item>
  366. <label>청색증</label>
  367. <value>03</value>
  368. </item>
  369. <item>
  370. <label>흉통</label>
  371. <value>04</value>
  372. </item>
  373. <item>
  374. <label>심잡음</label>
  375. <value>05</value>
  376. </item>
  377. <item>
  378. <label>호흡곤란</label>
  379. <value>06</value>
  380. </item>
  381. <item>
  382. <label>심계항진</label>
  383. <value>07</value>
  384. </item>
  385. </choices>
  386. </select>
  387. <line id="line41" class="line_1" style="x1:5px; y1:248px; x2:396px; y2:248px; "/>
  388. <caption id="caption40" class="tit_2" style="left:406px; top:10px; width:104px; height:13px; ">순환기계</caption>
  389. <line id="line54" class="line_1" style="x1:401px; y1:25px; x2:792px; y2:25px; "/>
  390. <line id="line76" class="line_1" style="x1:401px; y1:322px; x2:790px; y2:322px; "/>
  391. <select id="chk_resorgnyn" ref="/root/main/wardrecinfo/resorgninfo/resorgn/resorgninfoinclyn" overflow="visible" appearance="full" style="left:720px; top:144px; width:70px; height:15px; border-style:none; ">
  392. <choices>
  393. <item>
  394. <label>해당없음</label>
  395. <value>1</value>
  396. </item>
  397. </choices>
  398. <script type="javascript" ev:event="xforms-value-changed">
  399. <![CDATA[
  400. if(model.getValue("/root/main/wardrecinfo/resorgninfo/resorgn/resorgninfoinclyn") == "1") {
  401. var rtn="";
  402. rtn = fSetStatus();
  403. if(rtn =="6") {
  404. chk_resstat.disabled = true;
  405. rdo_orgnopenyn.disabled = true;
  406. cmb_orgnopen.disabled = true;
  407. ipt_orgnopennm.disabled = true;
  408. rdo_suctionuseyn.disabled = true;
  409. rdo_oxyuseyn.disabled = true;
  410. ipt_oxyusevol.disabled = true;
  411. rdo_artficresorgn.disabled = true;
  412. model.resetInstanceNode("/root/main/wardrecinfo/resorgninfo/resorgn/resstat");
  413. model.resetInstanceNode("/root/main/wardrecinfo/resorgninfo/resorgn/orgnopenyn");
  414. model.resetInstanceNode("/root/main/wardrecinfo/resorgninfo/resorgn/orgnopenkind");
  415. model.resetInstanceNode("/root/main/wardrecinfo/resorgninfo/resorgn/orgnopennm");
  416. model.resetInstanceNode("/root/main/wardrecinfo/resorgninfo/resorgn/suctionuseyn");
  417. model.resetInstanceNode("/root/main/wardrecinfo/resorgninfo/resorgn/oxyuseyn");
  418. model.resetInstanceNode("/root/main/wardrecinfo/resorgninfo/resorgn/oxyusevol");
  419. model.resetInstanceNode("/root/main/wardrecinfo/resorgninfo/resorgn/artficresorgn");
  420. chk_resstat.refresh();
  421. rdo_orgnopenyn.refresh();
  422. cmb_orgnopen.refresh();
  423. ipt_orgnopennm.refresh();
  424. rdo_suctionuseyn.refresh();
  425. rdo_oxyuseyn.refresh();
  426. ipt_oxyusevol.refresh();
  427. rdo_artficresorgn.refresh();
  428. } else {
  429. model.resetInstanceNode("/root/main/wardrecinfo/resorgninfo/resorgn/resorgninfoinclyn");
  430. chk_resorgnyn.refresh();
  431. return;
  432. }
  433. } else {
  434. chk_resstat.disabled = false;
  435. rdo_orgnopenyn.disabled = false;
  436. rdo_suctionuseyn.disabled = false;
  437. rdo_oxyuseyn.disabled = false;
  438. rdo_artficresorgn.disabled = false;
  439. model.setValue("/root/main/wardrecinfo/resorgninfo/resorgn/orgnopenyn","1");
  440. model.setValue("/root/main/wardrecinfo/resorgninfo/resorgn/suctionuseyn","1");
  441. model.setValue("/root/main/wardrecinfo/resorgninfo/resorgn/oxyuseyn","1");
  442. model.setValue("/root/main/wardrecinfo/resorgninfo/resorgn/artficresorgn","1");
  443. rdo_orgnopenyn.refresh();
  444. rdo_suctionuseyn.refresh();
  445. rdo_oxyuseyn.refresh();
  446. rdo_artficresorgn.refresh();
  447. }
  448. ]]>
  449. </script>
  450. <script type="javascript" ev:event="xforms-select">
  451. <![CDATA[
  452. status = "click";
  453. ]]>
  454. </script>
  455. </select>
  456. <caption id="caption106" class="tit_2" style="left:405px; top:308px; width:104px; height:13px; ">소화기계</caption>
  457. <line id="line77" class="line_1" style="x1:400px; y1:160px; x2:791px; y2:160px; "/>
  458. <caption id="caption107" class="tit_2" style="left:405px; top:145px; width:104px; height:13px; ">호흡기계</caption>
  459. <line id="line79" class="line_1" style="x1:791px; y1:25px; x2:792px; y2:25px; "/>
  460. <caption id="caption119" class="tit_2" style="left:801px; top:371px; width:64px; height:13px; ">피부계</caption>
  461. <caption id="caption45" class="tit_2" style="left:10px; top:233px; width:123px; height:13px; ">식욕 및 체중변화</caption>
  462. <select id="chk_cirorgnyn" ref="/root/main/wardrecinfo/cirorgninfo/cirorgn/cirorgninfoinclyn" overflow="visible" appearance="full" style="left:710px; top:8px; width:70px; height:15px; border-style:none; ">
  463. <choices>
  464. <item>
  465. <label>해당없음</label>
  466. <value>1</value>
  467. </item>
  468. </choices>
  469. <script type="javascript" ev:event="xforms-value-changed">
  470. <![CDATA[
  471. if(model.getValue("/root/main/wardrecinfo/cirorgninfo/cirorgn/cirorgninfoinclyn") == "1") {
  472. var rtn = "";
  473. rtn = fSetStatus();
  474. if(rtn =="6") {
  475. chk_cycdsordkind.disabled = true;
  476. cmb_edema.disabled = true;
  477. ipt_edema.disabled = true;
  478. rdo_yohnyn.disabled = true;
  479. cmb_yohn.disabled = true;
  480. ipt_etcinfo.disabled = true;
  481. model.resetInstanceNode("/root/main/wardrecinfo/cirorgninfo/cirorgn/cirorgn/cirdsordkind");
  482. model.resetInstanceNode("/root/main/wardrecinfo/cirorgninfo/cirorgn/cirorgn/edemakind");
  483. model.resetInstanceNode("/root/main/wardrecinfo/cirorgninfo/cirorgn/cirorgn/edemadetll");
  484. model.resetInstanceNode("/root/main/wardrecinfo/cirorgninfo/cirorgn/cirorgn/yohnyn");
  485. model.resetInstanceNode("/root/main/wardrecinfo/cirorgninfo/cirorgn/cirorgn/yohnddetl");
  486. model.resetInstanceNode("/root/main/wardrecinfo/cirorgninfo/cirorgn/cirorgn/etcinfo");
  487. chk_cycdsordkind.refresh();
  488. cmb_edema.refresh();
  489. ipt_edema.refresh();
  490. rdo_yohnyn.refresh();
  491. cmb_yohn.refresh();
  492. ipt_etcinfo.refresh();
  493. } else {
  494. model.resetInstanceNode("/root/main/wardrecinfo/cirorgninfo/cirorgn/cirorgninfoinclyn");
  495. chk_cirorgnyn.refresh();
  496. return;
  497. }
  498. } else {
  499. chk_cycdsordkind.disabled = false;
  500. cmb_edema.disabled = false;
  501. rdo_yohnyn.disabled = false;
  502. ipt_etcinfo.disabled = false;
  503. model.setValue("/root/main/wardrecinfo/cirorgninfo/cirorgn/cirorgn/yohnyn","1");
  504. cmb_edema.refresh();
  505. rdo_yohnyn.refresh();
  506. }
  507. ]]>
  508. </script>
  509. <script type="javascript" ev:event="xforms-select">
  510. <![CDATA[
  511. status = "click";
  512. ]]>
  513. </script>
  514. </select>
  515. <line id="line91" class="line_1" style="x1:795px; y1:386px; x2:1185px; y2:386px; "/>
  516. <line id="line93" class="line_3" style="x1:795px; y1:457px; x2:1185px; y2:457px; "/>
  517. <caption id="caption1" class="cell_1" style="left:401px; top:327px; width:80px; height:58px; ">이상증상</caption>
  518. <select id="chk_trobsymp" ref="/root/main/wardrecinfo/digorgninfo/digorgn/trobsymp" overflow="visible" appearance="full" cols="3" sep="▦" style="left:484px; top:327px; width:302px; height:57px; border-style:none; ">
  519. <choices>
  520. <item>
  521. <label>anorexia</label>
  522. <value>1</value>
  523. </item>
  524. <item>
  525. <label>Indigestion</label>
  526. <value>2</value>
  527. </item>
  528. <item>
  529. <label>Swallowing difficult</label>
  530. <value>3</value>
  531. </item>
  532. <item>
  533. <label>Nausea</label>
  534. <value>4</value>
  535. </item>
  536. <item>
  537. <label>Vomiting</label>
  538. <value>5</value>
  539. </item>
  540. <item>
  541. <label>Abd.pain</label>
  542. <value>6</value>
  543. </item>
  544. <item>
  545. <label>Hematemesis</label>
  546. <value>7</value>
  547. </item>
  548. <item>
  549. <label>기타</label>
  550. <value>8</value>
  551. </item>
  552. </choices>
  553. <script type="javascript" ev:event="xforms-value-changed">
  554. <![CDATA[
  555. var trobsymp = model.getValue("/root/main/wardrecinfo/digorgninfo/digorgn/trobsymp");
  556. var kind = new Array();
  557. var arr = new Array(8);
  558. var kind = trobsymp.split('▦');
  559. for(var i = 0; i < kind.length; i++) {
  560. switch(kind[i]) {
  561. case '8':
  562. arr[7] = kind[i];
  563. break;
  564. }
  565. }
  566. for(var i = 0; i < arr.length; i++) {
  567. if(arr[i] == "8") {
  568. ipt_trobsympdetl.disabled = false;
  569. } else {
  570. ipt_trobsympdetl.disabled = true;
  571. model.resetInstanceNode("/root/main/wardrecinfo/digorgninfo/digorgn/trobsympdetl");
  572. ipt_trobsympdetl.refresh();
  573. }
  574. }
  575. ]]>
  576. </script>
  577. </select>
  578. <line id="line2" class="line_2" style="x1:401px; y1:384px; x2:792px; y2:384px; "/>
  579. <caption id="caption7" class="cell_1" style="left:401px; top:283px; width:80px; height:21px; vertical-align:middle; ">인공호흡기</caption>
  580. <select id="chk_resstat" ref="/root/main/wardrecinfo/resorgninfo/resorgn/resstat" overflow="visible" appearance="full" cols="2" sep="▦" style="left:484px; top:165px; width:300px; height:50px; border-style:none; ">
  581. <choices>
  582. <item>
  583. <label>normal</label>
  584. <value>1</value>
  585. </item>
  586. <item>
  587. <label>Dyspnea</label>
  588. <value>2</value>
  589. </item>
  590. <item>
  591. <label>Apnea</label>
  592. <value>3</value>
  593. </item>
  594. <item>
  595. <label>Wheezing</label>
  596. <value>4</value>
  597. </item>
  598. <item>
  599. <label>Shortness Of breating</label>
  600. <value>5</value>
  601. </item>
  602. <item>
  603. <label>Cheyne-stocks</label>
  604. <value>6</value>
  605. </item>
  606. </choices>
  607. </select>
  608. <caption id="caption8" class="cell_1" style="left:795px; top:391px; width:80px; height:66px; vertical-align:middle; ">피부상태</caption>
  609. <select id="chk_skinstat" ref="/root/main/wardrecinfo/skinsectinfo/skinsect/skinstat" overflow="visible" appearance="full" cellspacing="5" cols="3" sep="▦" vcellspacing="3" style="left:876px; top:394px; width:295px; height:62px; border-style:none; ">
  610. <choices>
  611. <item>
  612. <label>Healthy</label>
  613. <value>1</value>
  614. </item>
  615. <item>
  616. <label>Tissue paper</label>
  617. <value>2</value>
  618. </item>
  619. <item>
  620. <label>Dry skin</label>
  621. <value>3</value>
  622. </item>
  623. <item>
  624. <label>Edematous</label>
  625. <value>4</value>
  626. </item>
  627. <item>
  628. <label>Clammy skin</label>
  629. <value>5</value>
  630. </item>
  631. <item>
  632. <label>Broken</label>
  633. <value>6</value>
  634. </item>
  635. <item>
  636. <label>기타</label>
  637. <value>7</value>
  638. </item>
  639. </choices>
  640. <script type="javascript" ev:event="xforms-value-changed">
  641. <![CDATA[
  642. var skinsect = model.getValue("/root/main/wardrecinfo/skinsectinfo/skinsect/skinstat");
  643. var kind = new Array();
  644. var arr = new Array(7);
  645. var kind = skinsect.split(" ");
  646. for(var i = 0; i < kind.length; i++) {
  647. switch(kind[i]) {
  648. case '7':
  649. arr[6] = kind[i];
  650. break;
  651. }
  652. }
  653. for(var i = 0; i < arr.length; i++) {
  654. if(arr[i] == "7") {
  655. ipt_skinstatdetl.disabled = false;
  656. } else {
  657. ipt_skinstatdetl.disabled = true;
  658. model.resetInstanceNode("root/main/wardrecinfo/skinsectinfo/skinsect/skinstatdetl");
  659. ipt_skinstatdetl.refresh();
  660. }
  661. }
  662. ]]>
  663. </script>
  664. </select>
  665. <input id="ipt_skinstatdetl" ref="/root/main/wardrecinfo/skinsectinfo/skinsect/skinstatdetl" disabled="true" style="left:930px; top:434px; width:100px; height:19px; "/>
  666. <input id="ipt_trobsympdetl" ref="/root/main/wardrecinfo/digorgninfo/digorgn/trobsympdetl" disabled="true" style="left:627px; top:361px; width:163px; height:19px; "/>
  667. <line id="line3" class="line_2" style="x1:401px; y1:237px; x2:792px; y2:237px; "/>
  668. <caption id="caption3" class="cell_1" style="left:401px; top:217px; width:80px; height:21px; vertical-align:middle; ">기관절개관</caption>
  669. <line id="line4" class="line_2" style="x1:401px; y1:215px; x2:792px; y2:215px; "/>
  670. <caption id="caption5" class="cell_1" style="left:401px; top:165px; width:80px; height:51px; vertical-align:middle; ">호흡양상</caption>
  671. <line id="line5" class="line_2" style="x1:401px; y1:259px; x2:792px; y2:259px; "/>
  672. <line id="line6" class="line_2" style="x1:401px; y1:281px; x2:792px; y2:281px; "/>
  673. <caption id="caption2" class="cell_1" style="left:401px; top:261px; width:80px; height:21px; vertical-align:middle; ">산소사용</caption>
  674. <caption id="caption6" class="cell_1" style="left:401px; top:239px; width:80px; height:21px; vertical-align:middle; ">Suction사용</caption>
  675. <line id="line7" class="line_3" style="x1:401px; y1:303px; x2:792px; y2:303px; "/>
  676. <select1 id="rdo_suctionuseyn" ref="/root/main/wardrecinfo/resorgninfo/resorgn/suctionuseyn" appearance="full" cellspacing="20" cols="2" overflow="visible" style="left:485px; top:242px; width:82px; height:13px; border-style:none; ">
  677. <choices>
  678. <item>
  679. <label>무</label>
  680. <value>1</value>
  681. </item>
  682. <item>
  683. <label>유</label>
  684. <value>2</value>
  685. </item>
  686. </choices>
  687. </select1>
  688. <select1 id="rdo_oxyuseyn" ref="/root/main/wardrecinfo/resorgninfo/resorgn/oxyuseyn" appearance="full" cellspacing="20" cols="2" overflow="visible" style="left:485px; top:263px; width:82px; height:13px; border-style:none; ">
  689. <choices>
  690. <item>
  691. <label>무</label>
  692. <value>01</value>
  693. </item>
  694. <item>
  695. <label>유</label>
  696. <value>02</value>
  697. </item>
  698. </choices>
  699. <script type="javascript" ev:event="xforms-value-changed">
  700. <![CDATA[
  701. if(model.getValue("/root/main/wardrecinfo/resorgninfo/resorgn/oxyuseyn") == "01") {
  702. ipt_oxyusevol.disabled = true;
  703. } else {
  704. model.resetInstanceNode("/root/main/wardrecinfo/resorgninfo/resorgn/oxyusevol");
  705. ipt_oxyusevol.disabled = false;
  706. ipt_oxyusevol.refresh();
  707. }
  708. ]]>
  709. </script>
  710. </select1>
  711. <select1 id="cmb_orgnopen" ref="/root/main/wardrecinfo/resorgninfo/resorgn/orgnopenkind" class="combo_default" disabled="true" appearance="minimal" style="left:575px; top:217px; width:120px; height:19px; ">
  712. <choices>
  713. <item>
  714. <label>Portex single #6.0</label>
  715. <value>01</value>
  716. </item>
  717. <item>
  718. <label>Portex single #6.5</label>
  719. <value>02</value>
  720. </item>
  721. <item>
  722. <label>Portex single #7.0</label>
  723. <value>03</value>
  724. </item>
  725. <item>
  726. <label>Portex single #7.5</label>
  727. <value>04</value>
  728. </item>
  729. <item>
  730. <label>Portex single #8.0</label>
  731. <value>05</value>
  732. </item>
  733. <item>
  734. <label>Portex double #6.0</label>
  735. <value>06</value>
  736. </item>
  737. <item>
  738. <label>Portex double #6.5</label>
  739. <value>07</value>
  740. </item>
  741. <item>
  742. <label>Portex double #7.0</label>
  743. <value>08</value>
  744. </item>
  745. <item>
  746. <label>Portex double #7.5</label>
  747. <value>09</value>
  748. </item>
  749. <item>
  750. <label>Portex double #8.0</label>
  751. <value>10</value>
  752. </item>
  753. <item>
  754. <label>siley tube #6.0</label>
  755. <value>11</value>
  756. </item>
  757. <item>
  758. <label>siley tube #7.0</label>
  759. <value>12</value>
  760. </item>
  761. <item>
  762. <label>기타</label>
  763. <value>13</value>
  764. </item>
  765. </choices>
  766. <script type="javascript" ev:event="xforms-value-changed">
  767. <![CDATA[
  768. if(model.getValue("/root/main/wardrecinfo/resorgninfo/resorgn/orgnopenkind") == "13") {
  769. ipt_orgnopennm.disabled = false;
  770. } else {
  771. ipt_orgnopennm.disabled = true;
  772. model.resetInstanceNode("/root/main/wardrecinfo/resorgninfo/resorgn/orgnopennm");
  773. }
  774. ipt_orgnopennm.refresh();
  775. ]]>
  776. </script>
  777. </select1>
  778. <input id="ipt_oxyusevol" ref="/root/main/wardrecinfo/resorgninfo/resorgn/oxyusevol" disabled="true" style="left:575px; top:261px; width:165px; height:19px; "/>
  779. <caption id="caption9" class="output_fix" style="left:746px; top:264px; width:44px; height:16px; vertical-align:middle; ">I/min</caption>
  780. <caption id="caption10" class="cell_1" style="left:5px; top:55px; width:80px; height:25px; vertical-align:middle; ">호스피스여부</caption>
  781. <select1 id="rdo_hospiceyn" ref="/root/main/wardrecinfo/shpaininfo/shpain/hospiceyn" appearance="full" cellspacing="40" cols="2" overflow="visible" style="left:87px; top:57px; width:128px; height:20px; border-style:none; ">
  782. <choices>
  783. <item>
  784. <label>무</label>
  785. <value>1</value>
  786. </item>
  787. <item>
  788. <label>유</label>
  789. <value>2</value>
  790. </item>
  791. </choices>
  792. <script type="javascript" ev:event="xforms-value-changed">
  793. <![CDATA[
  794. if(model.getValue("/root/main/wardrecinfo/shpaininfo/shpain/hospiceyn") == "1") {
  795. ipt_hospice.disabled = true;
  796. model.resetInstanceNode("/root/main/wardrecinfo/shpaininfo/shpain/hospice");
  797. ipt_hospice.refresh();
  798. } else {
  799. ipt_hospice.disabled = false;
  800. }
  801. ]]>
  802. </script>
  803. </select1>
  804. <line id="line9" class="line_3" style="x1:5px; y1:79px; x2:396px; y2:79px; "/>
  805. <input id="ipt_hospice" ref="/root/main/wardrecinfo/shpaininfo/shpain/hospice" class="input_default" disabled="true" style="left:215px; top:58px; width:175px; height:19px; "/>
  806. <line id="line11" class="line_1" style="x1:5px; y1:105px; x2:396px; y2:105px; "/>
  807. <caption id="caption4" class="tit_2" style="left:10px; top:90px; width:123px; height:13px; ">활동</caption>
  808. <line id="line12" class="line_2" style="height:13; x1:5px; y1:132px; x2:396px; y2:132px; "/>
  809. <line id="line13" class="line_2" style="height:13; x1:5px; y1:175px; x2:396px; y2:175px; "/>
  810. <caption id="caption12" class="cell_1" style="left:5px; top:134px; width:80px; height:42px; vertical-align:middle; ">보조기구</caption>
  811. <caption id="caption11" class="cell_1" style="left:5px; top:201px; width:80px; height:23px; vertical-align:middle; ">활동정도</caption>
  812. <line id="line15" class="line_2" style="x1:5px; y1:199px; x2:396px; y2:199px; "/>
  813. <caption id="caption13" class="cell_1" style="left:5px; top:177px; width:80px; height:23px; vertical-align:middle; ">마비</caption>
  814. <select1 id="rdo_paralysisyn" ref="/root/main/wardrecinfo/actinfo/act/paralysisyn" appearance="full" cellspacing="40" cols="2" overflow="visible" style="left:88px; top:180px; width:137px; height:13px; border-style:none; ">
  815. <choices>
  816. <item>
  817. <label>무</label>
  818. <value>1</value>
  819. </item>
  820. <item>
  821. <label>유</label>
  822. <value>2</value>
  823. </item>
  824. </choices>
  825. <script type="javascript" ev:event="xforms-value-changed">
  826. <![CDATA[
  827. if(model.getValue("/root/main/wardrecinfo/actinfo/act/paralysisyn") == "2") {
  828. ipt_paralysis.disabled = false;
  829. } else {
  830. ipt_paralysis.disabled = true;
  831. model.resetInstanceNode("/root/main/wardrecinfo/actinfo/act/paralysis");
  832. ipt_paralysis.refresh();
  833. }
  834. ]]>
  835. </script>
  836. </select1>
  837. <line id="line14" class="line_3" style="x1:5px; y1:223px; x2:396px; y2:223px; "/>
  838. <caption id="caption14" class="cell_1" style="left:5px; top:349px; width:80px; height:23px; vertical-align:middle; ">식이상태</caption>
  839. <select1 id="cmb_mealstat" ref="/root/main/wardrecinfo/apttbdwtchnginfo/apttbdwtchng/mealstat" class="combo_default" appearance="minimal" style="left:88px; top:350px; width:153px; height:19px; ">
  840. <choices>
  841. <item>
  842. <label>R-D</label>
  843. <value>01</value>
  844. </item>
  845. <item>
  846. <label>S-D</label>
  847. <value>02</value>
  848. </item>
  849. <item>
  850. <label>L-D</label>
  851. <value>03</value>
  852. </item>
  853. <item>
  854. <label>tube-feeding</label>
  855. <value>04</value>
  856. </item>
  857. <item>
  858. <label>NPO</label>
  859. <value>05</value>
  860. </item>
  861. </choices>
  862. </select1>
  863. <line id="line40" class="line_3" style="x1:5px; y1:371px; x2:396px; y2:371px; "/>
  864. <caption id="caption15" class="cell_1" style="left:5px; top:110px; width:80px; height:23px; vertical-align:middle; ">활동</caption>
  865. <select1 id="rdo_bdwtchngyn" ref="/root/main/wardrecinfo/apttbdwtchnginfo/apttbdwtchng/bdwtchngyn" appearance="full" cellspacing="20" cols="2" overflow="visible" style="left:88px; top:304px; width:82px; height:13px; border-style:none; ">
  866. <choices>
  867. <item>
  868. <label>무</label>
  869. <value>1</value>
  870. </item>
  871. <item>
  872. <label>유</label>
  873. <value>2</value>
  874. </item>
  875. </choices>
  876. <script type="javascript" ev:event="xforms-value-changed">
  877. <![CDATA[
  878. var value= model.getValue("/root/main/wardrecinfo/apttbdwtchnginfo/apttbdwtchng/bdwtchngyn");
  879. if(value == "2") {
  880. ipt_chnggrde.disabled = false;
  881. ipt_term.disabled = false;
  882. rdo_bdwtchngtermflag.disabled = false;
  883. rdo_incdecflag.disabled= false;
  884. var incdecflag= instance1.selectSingleNode(rdo_incdecflag.attribute("ref"));
  885. if ( incdecflag == null ) {
  886. model.makeNode(rdo_incdecflag.attribute("ref"));
  887. }
  888. } else {
  889. ipt_chnggrde.disabled = true;
  890. ipt_term.disabled = true;
  891. rdo_bdwtchngtermflag.disabled = true;
  892. rdo_incdecflag.disabled= true;
  893. ipt_chnggrde.value = "";
  894. ipt_term.value = "";
  895. rdo_bdwtchngtermflag.value="";
  896. rdo_incdecflag.value="";
  897. ipt_chnggrde.refresh();
  898. ipt_term.refresh();
  899. rdo_bdwtchngtermflag.refresh();
  900. rdo_incdecflag.refresh();
  901. }
  902. ]]>
  903. </script>
  904. </select1>
  905. <line id="line42" class="line_2" style="height:13; x1:5px; y1:275px; x2:396px; y2:275px; "/>
  906. <caption id="cap_apttchng" class="cell_1" style="left:5px; top:253px; width:80px; height:23px; vertical-align:middle; ">식욕변화</caption>
  907. <select1 id="rdo_apttchngyn" ref="/root/main/wardrecinfo/apttbdwtchnginfo/apttbdwtchng/apptchngyn" appearance="full" cellspacing="5" cols="2" overflow="visible" style="left:88px; top:256px; width:72px; height:13px; border-style:none; ">
  908. <choices>
  909. <item>
  910. <label>무</label>
  911. <value>1</value>
  912. </item>
  913. <item>
  914. <label>유</label>
  915. <value>2</value>
  916. </item>
  917. </choices>
  918. <script type="javascript" ev:event="xforms-value-changed">
  919. <![CDATA[
  920. var value = model.getValue("/root/main/wardrecinfo/apttbdwtchnginfo/apttbdwtchng/apptchngyn");
  921. if(value == "1") {
  922. rdo_apttchngflag.disabled = true;
  923. model.resetInstanceNode("/root/main/wardrecinfo/apttbdwtchnginfo/apttbdwtchng/apptaddyn");
  924. rdo_apttchngflag.refresh();
  925. } else {
  926. rdo_apttchngflag.disabled = false;
  927. }
  928. ]]>
  929. </script>
  930. </select1>
  931. <line id="line38" class="line_2" style="x1:5px; y1:299px; x2:396px; y2:299px; "/>
  932. <line id="line16" class="line_2" style="x1:5px; y1:347px; x2:396px; y2:347px; "/>
  933. <line id="line39" class="line_2" style="x1:5px; y1:323px; x2:396px; y2:323px; "/>
  934. <select1 id="rdo_onemealyn" ref="/root/main/wardrecinfo/apttbdwtchnginfo/apttbdwtchng/onemealyn" appearance="full" cellspacing="5" cols="2" overflow="visible" style="left:295px; top:256px; width:82px; height:13px; border-style:none; ">
  935. <choices>
  936. <item>
  937. <label>무</label>
  938. <value>1</value>
  939. </item>
  940. <item>
  941. <label>유</label>
  942. <value>2</value>
  943. </item>
  944. </choices>
  945. </select1>
  946. <select1 id="rdo_apttstatflag" ref="/root/main/wardrecinfo/apttbdwtchnginfo/apttbdwtchng/apptstatflag" navindex="3" appearance="full" cellspacing="10" cols="4" overflow="visible" style="left:88px; top:279px; width:262px; height:13px; border-style:none; ">
  947. <choices>
  948. <item>
  949. <label>좋음</label>
  950. <value>1</value>
  951. </item>
  952. <item>
  953. <label>보통</label>
  954. <value>2</value>
  955. </item>
  956. <item>
  957. <label>나쁨</label>
  958. <value>3</value>
  959. </item>
  960. <item>
  961. <label>매우 나쁨</label>
  962. <value>4</value>
  963. </item>
  964. </choices>
  965. <script type="javascript" ev:event="onmouseover">
  966. <![CDATA[
  967. var colidx = rdo_apttstatflag.mouseCol;
  968. var cdid = rdo_apttstatflag.item(colidx).value;
  969. rdo_apttstatflag.hint = model.getValue("/root/codeinfo/codeinfo/codelist[cdgrupid ='177' and cdid = '"+ cdid +"']/grupdetldesc");//식용상태 정의 추가 20091216 김홍점
  970. rdo_apttstatflag.refresh();
  971. ]]>
  972. </script>
  973. </select1>
  974. <caption id="cap_bdwtchngyn" class="cell_1" style="left:5px; top:301px; width:80px; height:46px; vertical-align:middle; ">체중변화</caption>
  975. <caption id="cap_apttstatflag" class="cell_1" style="left:5px; top:277px; width:80px; height:23px; vertical-align:middle; ">식욕상태</caption>
  976. <select1 id="rdo_apttchngflag" ref="/root/main/wardrecinfo/apttbdwtchnginfo/apttbdwtchng/apptaddyn" disabled="true" appearance="full" cellspacing="0" cols="2" overflow="visible" style="left:160px; top:256px; width:90px; height:13px; border-style:none; ">
  977. <choices>
  978. <item>
  979. <label>증가</label>
  980. <value>1</value>
  981. </item>
  982. <item>
  983. <label>감소</label>
  984. <value>2</value>
  985. </item>
  986. </choices>
  987. </select1>
  988. <caption id="cap_onemealyn" class="cell_1" style="left:255px; top:253px; width:35px; height:23px; vertical-align:middle; ">편식</caption>
  989. <caption id="cap_slephandcap" class="cell_1" style="left:5px; top:401px; width:80px; height:23px; vertical-align:middle; ">수면장애</caption>
  990. <line id="line53" class="line_3" style="x1:4px; y1:448px; x2:395px; y2:448px; "/>
  991. <caption id="caption50" class="tit_2" style="left:9px; top:381px; width:80px; height:13px; ">수면상태</caption>
  992. <caption id="cap_drugtmed" class="cell_1" style="left:5px; top:425px; width:80px; height:23px; vertical-align:middle; ">약물복용</caption>
  993. <line id="line44" class="line_1" style="x1:5px; y1:396px; x2:396px; y2:396px; "/>
  994. <select1 id="rdo_drugtmedyn" ref="/root/main/wardrecinfo/slepstatinfo/slepstat/dugtmedyn" appearance="full" cellspacing="40" cols="2" overflow="visible" style="left:88px; top:429px; width:147px; height:13px; border-style:none; ">
  995. <choices>
  996. <item>
  997. <label>무</label>
  998. <value>1</value>
  999. </item>
  1000. <item>
  1001. <label>유</label>
  1002. <value>2</value>
  1003. </item>
  1004. </choices>
  1005. <script type="javascript" ev:event="xforms-value-changed">
  1006. <![CDATA[
  1007. if(model.getValue("/root/main/wardrecinfo/slepstatinfo/slepstat/dugtmedyn") == "1") {
  1008. ipt_drugtmeddetl.disabled = true;
  1009. model.resetInstanceNode("/root/main/wardrecinfo/slepstatinfo/slepstat/dugtmeddetl");
  1010. } else {
  1011. ipt_drugtmeddetl.disabled = false;
  1012. }
  1013. ipt_drugtmeddetl.refresh();
  1014. ]]>
  1015. </script>
  1016. </select1>
  1017. <line id="line45" class="line_2" style="x1:5px; y1:423px; x2:396px; y2:423px; "/>
  1018. <caption id="caption65" style="left:343px; top:406px; width:44px; height:14px; vertical-align:middle; ">시간/일</caption>
  1019. <input id="ipt_slepdsord" ref="/root/main/wardrecinfo/slepstatinfo/slepstat/slepdsordtm" class="input_default" disabled="true" style="left:245px; top:402px; width:95px; height:19px; "/>
  1020. <input id="ipt_drugtmeddetl" ref="/root/main/wardrecinfo/slepstatinfo/slepstat/dugtmeddetl" class="input_default" disabled="true" style="left:245px; top:426px; width:150px; height:19px; "/>
  1021. <select1 id="rdo_slepdsord" ref="/root/main/wardrecinfo/slepstatinfo/slepstat/slepdsordyn" appearance="full" cellspacing="40" cols="2" overflow="visible" style="left:88px; top:404px; width:147px; height:13px; border-style:none; ">
  1022. <choices>
  1023. <item>
  1024. <label>무</label>
  1025. <value>1</value>
  1026. </item>
  1027. <item>
  1028. <label>유</label>
  1029. <value>2</value>
  1030. </item>
  1031. </choices>
  1032. <script type="javascript" ev:event="xforms-value-changed">
  1033. <![CDATA[
  1034. if(model.getValue("/root/main/wardrecinfo/slepstatinfo/slepstat/slepdsordyn") == "1") {
  1035. model.resetInstanceNode("/root/main/wardrecinfo/slepstatinfo/slepstat/slepdsordtm");
  1036. ipt_slepdsord.disabled = true;
  1037. } else {
  1038. ipt_slepdsord.disabled = false;
  1039. }
  1040. ipt_slepdsord.refresh();
  1041. ]]>
  1042. </script>
  1043. </select1>
  1044. <select1 id="cmb_cscsstatplce" ref="/root/main/wardrecinfo/cscsstatinfo/cscsstat/cscsstatplce" class="combo_default" appearance="minimal" style="left:334px; top:480px; width:61px; height:19px; ">
  1045. <choices>
  1046. <item>
  1047. <label>있다</label>
  1048. <value>y</value>
  1049. </item>
  1050. <item>
  1051. <label>없다</label>
  1052. <value>
  1053. <![CDATA[d
  1054. n]]>
  1055. </value>
  1056. </item>
  1057. </choices>
  1058. </select1>
  1059. <caption id="caption60" class="cell_1" style="left:5px; top:503px; width:80px; height:23px; vertical-align:middle; ">의식상태</caption>
  1060. <select1 id="cmb_emotstat" ref="/root/main/wardrecinfo/cscsstatinfo/cscsstat/emotstat" class="combo_default" appearance="minimal" style="left:88px; top:552px; width:307px; height:19px; ">
  1061. <choices>
  1062. <item>
  1063. <label>안정</label>
  1064. <value>1</value>
  1065. </item>
  1066. <item>
  1067. <label>불안</label>
  1068. <value>2</value>
  1069. </item>
  1070. <item>
  1071. <label>슬픔</label>
  1072. <value>3</value>
  1073. </item>
  1074. <item>
  1075. <label>분노</label>
  1076. <value>4</value>
  1077. </item>
  1078. <item>
  1079. <label>우울</label>
  1080. <value>5</value>
  1081. </item>
  1082. <item>
  1083. <label>흥분</label>
  1084. <value>6</value>
  1085. </item>
  1086. <item>
  1087. <label>의식없음</label>
  1088. <value>7</value>
  1089. </item>
  1090. </choices>
  1091. </select1>
  1092. <line id="line55" class="line_1" style="x1:5px; y1:474px; x2:396px; y2:474px; "/>
  1093. <caption id="caption41" style="left:190px; top:483px; width:44px; height:14px; vertical-align:middle; ">시간 :</caption>
  1094. <caption id="caption52" class="cell_1" style="left:5px; top:527px; width:80px; height:23px; vertical-align:middle; ">의사소통</caption>
  1095. <select1 id="cmb_cscsstathuman" ref="/root/main/wardrecinfo/cscsstatinfo/cscsstat/cscsstathuman" class="combo_default" appearance="minimal" style="left:120px; top:480px; width:67px; height:19px; ">
  1096. <choices>
  1097. <item>
  1098. <label>있다</label>
  1099. <value>y</value>
  1100. </item>
  1101. <item>
  1102. <label>없다</label>
  1103. <value>n</value>
  1104. </item>
  1105. </choices>
  1106. </select1>
  1107. <select1 id="cmb_cscsstat" ref="/root/main/wardrecinfo/cscsstatinfo/cscsstat/cscsstat" class="combo_default" appearance="minimal" style="left:88px; top:504px; width:308px; height:19px; ">
  1108. <choices>
  1109. <itemset nodeset="/root/init/mlist/M0075">
  1110. <label ref="cdnm"/>
  1111. <value ref="cdid"/>
  1112. </itemset>
  1113. </choices>
  1114. </select1>
  1115. <caption id="caption53" class="cell_1" style="left:5px; top:551px; width:80px; height:23px; vertical-align:middle; ">정서상태</caption>
  1116. <line id="line56" class="line_2" style="x1:5px; y1:501px; x2:396px; y2:501px; "/>
  1117. <line id="line46" class="line_2" style="x1:4px; y1:525px; x2:395px; y2:525px; "/>
  1118. <caption id="cap_humanyn" class="cell_1" style="left:5px; top:479px; width:80px; height:23px; vertical-align:middle; ">지 남 력</caption>
  1119. <select1 id="cmb_cscsstattm" ref="/root/main/wardrecinfo/cscsstatinfo/cscsstat/cscsstattm" class="combo_default" appearance="minimal" style="left:227px; top:480px; width:67px; height:19px; ">
  1120. <choices>
  1121. <item>
  1122. <label>있다</label>
  1123. <value>y</value>
  1124. </item>
  1125. <item>
  1126. <label>없다</label>
  1127. <value>n</value>
  1128. </item>
  1129. </choices>
  1130. </select1>
  1131. <caption id="caption66" style="left:89px; top:483px; width:44px; height:14px; vertical-align:middle; ">사람:</caption>
  1132. <line id="line47" class="line_2" style="x1:4px; y1:549px; x2:395px; y2:549px; "/>
  1133. <caption id="caption46" style="left:297px; top:483px; width:44px; height:14px; vertical-align:middle; ">장소 :</caption>
  1134. <caption id="caption59" class="tit_2" style="left:9px; top:458px; width:80px; height:13px; ">의식상태</caption>
  1135. <line id="line30" class="line_2" style="x1:401px; y1:637px; x2:792px; y2:637px; "/>
  1136. <caption id="caption82" style="left:610px; top:555px; width:15px; height:14px; vertical-align:middle; ">회</caption>
  1137. <caption id="caption83" style="left:765px; top:554px; width:15px; height:14px; vertical-align:middle; ">일</caption>
  1138. <input id="ipt_stooltims" ref="/root/main/wardrecinfo/stoolinfo/stool/stooltims" class="input_default" style="left:484px; top:551px; width:121px; height:19px; text-align:right; "/>
  1139. <caption id="caption85" class="tit_2" style="left:405px; top:532px; width:80px; height:13px; ">대변</caption>
  1140. <line id="line99" class="line_2" style="x1:401px; y1:615px; x2:792px; y2:615px; "/>
  1141. <caption id="caption86" class="cell_1" style="left:401px; top:639px; width:80px; height:21px; vertical-align:middle; ">기타정보</caption>
  1142. <line id="line58" class="line_1" style="x1:401px; y1:546px; x2:792px; y2:546px; "/>
  1143. <input id="ipt_laststoolday" ref="/root/main/wardrecinfo/stoolinfo/stool/laststoolday" class="input_default" inputtype="date" style="left:484px; top:573px; width:121px; height:19px; "/>
  1144. <select1 id="cmb_stoolkind" ref="/root/main/wardrecinfo/stoolinfo/stool/stoolkind" class="combo_default" appearance="minimal" style="left:484px; top:617px; width:307px; height:19px; ">
  1145. <choices>
  1146. <itemset nodeset="/root/init/mlist/M0106">
  1147. <label ref="cdnm"/>
  1148. <value ref="cdid"/>
  1149. </itemset>
  1150. </choices>
  1151. </select1>
  1152. <input id="ipt_stoolday" ref="/root/main/wardrecinfo/stoolinfo/stool/stoolday" class="input_default" style="left:631px; top:551px; width:129px; height:19px; text-align:right; "/>
  1153. <line id="line71" class="line_2" style="x1:401px; y1:571px; x2:792px; y2:571px; text-align:right; "/>
  1154. <select1 id="cmb_stoolcolor" ref="/root/main/wardrecinfo/stoolinfo/stool/stoolcolor" class="combo_default" appearance="minimal" style="left:484px; top:595px; width:307px; height:19px; ">
  1155. <choices>
  1156. <itemset nodeset="/root/init/mlist/M0107">
  1157. <label ref="cdnm"/>
  1158. <value ref="cdid"/>
  1159. </itemset>
  1160. </choices>
  1161. </select1>
  1162. <line id="line94" class="line_2" style="x1:401px; y1:593px; x2:792px; y2:593px; "/>
  1163. <input id="ipt_stooletcinfo" ref="/root/main/wardrecinfo/stoolinfo/stool/stooletcinfo" class="input_default" style="left:484px; top:639px; width:307px; height:19px; "/>
  1164. <line id="line17" class="line_3" style="x1:401px; y1:659px; x2:792px; y2:659px; "/>
  1165. <caption id="caption81" class="cell_1" style="left:401px; top:617px; width:80px; height:21px; vertical-align:middle; ">대변종류</caption>
  1166. <caption id="caption129" class="cell_1" style="left:401px; top:595px; width:80px; height:21px; vertical-align:middle; ">대변색깔</caption>
  1167. <caption id="caption78" class="cell_1" style="left:401px; top:573px; width:80px; height:21px; vertical-align:middle; ">마지막대변일</caption>
  1168. <caption id="caption79" class="cell_1" style="left:401px; top:551px; width:80px; height:21px; vertical-align:middle; ">대변횟수</caption>
  1169. <caption id="caption93" class="cell_1" style="left:596px; top:480px; width:80px; height:21px; vertical-align:middle; ">소변증상</caption>
  1170. <caption id="caption94" class="output_fix" style="left:608px; top:436px; width:20px; height:19px; vertical-align:middle; ">회</caption>
  1171. <caption id="caption95" class="tit_2" style="left:405px; top:416px; width:80px; height:13px; ">비뇨기계</caption>
  1172. <line id="line65" class="line_1" style="x1:401px; y1:431px; x2:792px; y2:431px; "/>
  1173. <input id="ipt_urineday" ref="/root/main/wardrecinfo/uriorgninfo/uriorgn/urineday" class="input_default" style="left:631px; top:436px; width:129px; height:19px; text-align:right; "/>
  1174. <line id="line66" class="line_2" style="x1:401px; y1:456px; x2:792px; y2:456px; "/>
  1175. <caption id="caption128" class="cell_1" style="left:401px; top:502px; width:80px; height:21px; vertical-align:middle; ">소변냄새</caption>
  1176. <select1 id="cmb_urinesymp" ref="/root/main/wardrecinfo/uriorgninfo/uriorgn/urinesymp" class="combo_default" appearance="minimal" style="left:679px; top:481px; width:112px; height:19px; ">
  1177. <choices>
  1178. <item>
  1179. <label>빈뇨</label>
  1180. <value>1</value>
  1181. </item>
  1182. <item>
  1183. <label>핍뇨</label>
  1184. <value>2</value>
  1185. </item>
  1186. <item>
  1187. <label>혈뇨</label>
  1188. <value>3</value>
  1189. </item>
  1190. <item>
  1191. <label>긴급뇨의</label>
  1192. <value>4</value>
  1193. </item>
  1194. <item>
  1195. <label>실금</label>
  1196. <value>5</value>
  1197. </item>
  1198. <item>
  1199. <label>작열감</label>
  1200. <value>6</value>
  1201. </item>
  1202. <item>
  1203. <label>배뇨곤란</label>
  1204. <value>7</value>
  1205. </item>
  1206. <item>
  1207. <label>거품뇨</label>
  1208. <value>8</value>
  1209. </item>
  1210. </choices>
  1211. </select1>
  1212. <caption id="caption97" class="output_fix" style="left:763px; top:436px; width:20px; height:19px; vertical-align:middle; ">일</caption>
  1213. <line id="line67" class="line_2" style="x1:401px; y1:478px; x2:792px; y2:478px; "/>
  1214. <line id="line68" class="line_2" style="x1:401px; y1:500px; x2:792px; y2:500px; "/>
  1215. <caption id="caption88" class="cell_1" style="left:401px; top:458px; width:80px; height:21px; vertical-align:middle; ">소변양</caption>
  1216. <caption id="caption16" class="cell_1" style="left:596px; top:456px; width:80px; height:21px; vertical-align:middle; ">부착기구</caption>
  1217. <caption id="caption89" class="cell_1" style="left:401px; top:436px; width:80px; height:21px; vertical-align:middle; ">소변횟수</caption>
  1218. <input id="ipt_urinetims" ref="/root/main/wardrecinfo/uriorgninfo/uriorgn/urinetims" class="input_default" style="left:484px; top:436px; width:121px; height:19px; text-align:right; "/>
  1219. <input id="ipt_urinevol" ref="/root/main/wardrecinfo/uriorgninfo/uriorgn/urinevol" class="input_default" style="left:484px; top:458px; width:109px; height:19px; "/>
  1220. <select1 id="cmb_urinecate" ref="/root/main/wardrecinfo/uriorgninfo/uriorgn/urinecate" class="combo_default" appearance="minimal" style="left:679px; top:458px; width:112px; height:19px; ">
  1221. <choices>
  1222. <item>
  1223. <label>PTBD</label>
  1224. <value>01</value>
  1225. </item>
  1226. <item>
  1227. <label>L-tube</label>
  1228. <value>02</value>
  1229. </item>
  1230. <item>
  1231. <label>PEG</label>
  1232. <value>03</value>
  1233. </item>
  1234. <item>
  1235. <label>기타</label>
  1236. <value>04</value>
  1237. </item>
  1238. <item>
  1239. <label>Foley catheter</label>
  1240. <value>05</value>
  1241. </item>
  1242. <item>
  1243. <label>Cystomstomy</label>
  1244. <value>06</value>
  1245. </item>
  1246. <item>
  1247. <label>Nephrostomy</label>
  1248. <value>07</value>
  1249. </item>
  1250. <item>
  1251. <label>Urostomy</label>
  1252. <value>08</value>
  1253. </item>
  1254. </choices>
  1255. </select1>
  1256. <input id="ipt_urinesmell" ref="/root/main/wardrecinfo/uriorgninfo/uriorgn/urinesmell" class="input_default" style="left:484px; top:502px; width:307px; height:19px; "/>
  1257. <select1 id="cmb_urinecolor" ref="/root/main/wardrecinfo/uriorgninfo/uriorgn/urinecolor" class="combo_default" appearance="minimal" style="left:484px; top:480px; width:109px; height:19px; ">
  1258. <choices>
  1259. <item>
  1260. <label>노란색(호박색)</label>
  1261. <value>1</value>
  1262. </item>
  1263. <item>
  1264. <label>지푸라기색</label>
  1265. <value>2</value>
  1266. </item>
  1267. <item>
  1268. <label>붉은색</label>
  1269. <value>3</value>
  1270. </item>
  1271. <item>
  1272. <label>황갈색</label>
  1273. <value>4</value>
  1274. </item>
  1275. <item>
  1276. <label>적갈색</label>
  1277. <value>5</value>
  1278. </item>
  1279. <item>
  1280. <label>녹갈색</label>
  1281. <value>6</value>
  1282. </item>
  1283. <item>
  1284. <label>암갈색</label>
  1285. <value>7</value>
  1286. </item>
  1287. </choices>
  1288. </select1>
  1289. <caption id="caption91" class="cell_1" style="left:401px; top:480px; width:80px; height:21px; vertical-align:middle; ">소변색깔</caption>
  1290. <select id="chk_digorgninfoinclyn" ref="/root/main/wardrecinfo/digorgninfo/digorgn/digorgninfoinclyn" overflow="visible" appearance="full" style="left:720px; top:305px; width:70px; height:15px; border-style:none; ">
  1291. <choices>
  1292. <item>
  1293. <label>해당없음</label>
  1294. <value>1</value>
  1295. </item>
  1296. </choices>
  1297. <script type="javascript" ev:event="xforms-value-changed">
  1298. <![CDATA[
  1299. if(model.getValue("/root/main/wardrecinfo/digorgninfo/digorgn/digorgninfoinclyn") == "1") {
  1300. var rtn = fSetStatus();
  1301. if(rtn == "6") {
  1302. chk_trobsymp.disabled = true;
  1303. ipt_trobsympdetl.disabled = true;
  1304. model.resetInstanceNode("/root/main/wardrecinfo/digorgninfo/digorgn/trobsymp");
  1305. model.resetInstanceNode("/root/main/wardrecinfo/digorgninfo/digorgn/trobsympdetl");
  1306. chk_trobsymp.refresh();
  1307. ipt_trobsympdetl.refresh();
  1308. } else {
  1309. model.resetInstanceNode("/root/main/wardrecinfo/digorgninfo/digorgn/digorgninfoinclyn");
  1310. chk_digorgninfoinclyn.refresh();
  1311. return;
  1312. }
  1313. } else {
  1314. chk_trobsymp.disabled = false;
  1315. }
  1316. ]]>
  1317. </script>
  1318. <script type="javascript" ev:event="xforms-select">
  1319. <![CDATA[
  1320. status = "click";
  1321. ]]>
  1322. </script>
  1323. </select>
  1324. <line id="line73" class="line_2" style="x1:402px; y1:67px; x2:793px; y2:67px; "/>
  1325. <input id="ipt_etcinfo" ref="/root/main/wardrecinfo/cirorgninfo/cirorgn/cirorgn/etcinfo" class="input_default" style="left:485px; top:118px; width:307px; height:19px; "/>
  1326. <line id="line74" class="line_2" style="x1:402px; y1:91px; x2:793px; y2:91px; "/>
  1327. <caption id="caption103" class="cell_1" style="left:402px; top:30px; width:80px; height:38px; vertical-align:middle; ">순환장애</caption>
  1328. <caption id="caption104" class="cell_1" style="left:402px; top:69px; width:80px; height:23px; vertical-align:middle; ">부종</caption>
  1329. <input id="ipt_edema" ref="/root/main/wardrecinfo/cirorgninfo/cirorgn/cirorgn/edemadetll" class="input_default" disabled="true" style="left:639px; top:70px; width:153px; height:19px; "/>
  1330. <line id="line32" class="line_2" style="x1:402px; y1:115px; x2:793px; y2:115px; "/>
  1331. <caption id="caption96" class="cell_1" style="left:402px; top:93px; width:80px; height:23px; vertical-align:middle; ">요흔</caption>
  1332. <select1 id="cmb_yohn" ref="/root/main/wardrecinfo/cirorgninfo/cirorgn/cirorgn/yohnddetl" class="combo_default" disabled="true" appearance="minimal" style="left:639px; top:95px; width:153px; height:19px; ">
  1333. <choices>
  1334. <item>
  1335. <label>neg</label>
  1336. <value>1</value>
  1337. </item>
  1338. <item>
  1339. <label>+ 1</label>
  1340. <value>2</value>
  1341. </item>
  1342. <item>
  1343. <label>+ 2</label>
  1344. <value>3</value>
  1345. </item>
  1346. <item>
  1347. <label>+ 3</label>
  1348. <value>4</value>
  1349. </item>
  1350. <item>
  1351. <label>+ 4</label>
  1352. <value>5</value>
  1353. </item>
  1354. </choices>
  1355. </select1>
  1356. <select1 id="cmb_edema" ref="/root/main/wardrecinfo/cirorgninfo/cirorgn/cirorgn/edemakind" class="combo_default" appearance="minimal" style="left:485px; top:70px; width:151px; height:19px; ">
  1357. <choices>
  1358. <item>
  1359. <label>전신</label>
  1360. <value>01</value>
  1361. </item>
  1362. <item>
  1363. <label>사지</label>
  1364. <value>02</value>
  1365. </item>
  1366. <item>
  1367. <label>상지</label>
  1368. <value>03</value>
  1369. </item>
  1370. <item>
  1371. <label>하지</label>
  1372. <value>04</value>
  1373. </item>
  1374. <item>
  1375. <label>얼굴</label>
  1376. <value>05</value>
  1377. </item>
  1378. <item>
  1379. <label>안검</label>
  1380. <value>06</value>
  1381. </item>
  1382. <item>
  1383. <label>기타</label>
  1384. <value>07</value>
  1385. </item>
  1386. </choices>
  1387. <script type="javascript" ev:event="xforms-value-changed">
  1388. <![CDATA[
  1389. if(model.getValue("/root/main/wardrecinfo/cirorgninfo/cirorgn/cirorgn/edemakind") == "07") {
  1390. ipt_edema.disabled = false;
  1391. } else {
  1392. ipt_edema.disabled = true;
  1393. model.resetInstanceNode("/root/main/wardrecinfo/cirorgninfo/cirorgn/cirorgn/edemadetll");
  1394. ipt_edema.refresh();
  1395. }
  1396. ]]>
  1397. </script>
  1398. </select1>
  1399. <select1 id="rdo_yohnyn" ref="/root/main/wardrecinfo/cirorgninfo/cirorgn/cirorgn/yohnyn" appearance="full" cellspacing="40" cols="2" overflow="visible" style="left:485px; top:97px; width:151px; height:13px; border-style:none; ">
  1400. <choices>
  1401. <item>
  1402. <label>무</label>
  1403. <value>1</value>
  1404. </item>
  1405. <item>
  1406. <label>유</label>
  1407. <value>2</value>
  1408. </item>
  1409. </choices>
  1410. <script type="javascript" ev:event="xforms-value-changed">
  1411. <![CDATA[
  1412. if(model.getValue("/root/main/wardrecinfo/cirorgninfo/cirorgn/cirorgn/yohnyn") == "1") {
  1413. cmb_yohn.disabled = true;
  1414. model.resetInstanceNode("/root/main/wardrecinfo/cirorgninfo/cirorgn/cirorgn/yohnddetl");
  1415. } else {
  1416. cmb_yohn.disabled = false;
  1417. }
  1418. cmb_yohn.refresh();
  1419. ]]>
  1420. </script>
  1421. </select1>
  1422. <caption id="caption100" class="cell_1" style="left:402px; top:117px; width:80px; height:23px; vertical-align:middle; ">기타정보</caption>
  1423. <line id="line18" class="line_3" style="x1:400px; y1:139px; x2:791px; y2:139px; "/>
  1424. <caption id="cap_pupil" class="cell_1" style="left:795px; top:29px; width:80px; height:41px; vertical-align:middle; ">동공</caption>
  1425. <button id="btn_nvesysadd" class="btn2_letter3" style="left:1073px; top:4px; width:53px; height:19px; ">
  1426. <caption>행추가</caption>
  1427. <script type="javascript" ev:event="DOMActivate">
  1428. <![CDATA[
  1429. grd_nvesysdsord.addRow();
  1430. ]]>
  1431. </script>
  1432. </button>
  1433. <caption id="caption102" class="tit_2" style="left:797px; top:10px; width:64px; height:13px; ">신경계</caption>
  1434. <select1 id="cmb_pupilleftrflx" ref="/root/main/wardrecinfo/nvesysinfo/nvesys/nvesys/pupilleftrflx" class="combo_default" appearance="minimal" style="left:1114px; top:28px; width:69px; height:19px; ">
  1435. <choices>
  1436. <itemset nodeset="/root/init/mlist/M0109">
  1437. <label ref="cdnm"/>
  1438. <value ref="cdid"/>
  1439. </itemset>
  1440. </choices>
  1441. </select1>
  1442. <select1 id="cmb_pupilrghtrflx" ref="/root/main/wardrecinfo/nvesysinfo/nvesys/nvesys/pupilrghtrflx" class="combo_default" appearance="minimal" style="left:1114px; top:50px; width:69px; height:19px; ">
  1443. <choices>
  1444. <itemset nodeset="/root/init/mlist/M0109">
  1445. <label ref="cdnm"/>
  1446. <value ref="cdid"/>
  1447. </itemset>
  1448. </choices>
  1449. </select1>
  1450. <caption id="caption105" class="cell_1" style="left:941px; top:29px; width:50px; height:20px; vertical-align:middle; ">좌</caption>
  1451. <line id="line98" class="line_2" style="x1:793px; y1:69px; x2:1182px; y2:69px; "/>
  1452. <line id="line33" class="line_1" style="x1:795px; y1:24px; x2:1185px; y2:24px; "/>
  1453. <select1 id="cmb_pupilleft" ref="/root/main/wardrecinfo/nvesysinfo/nvesys/nvesys/pupilleft" class="combo_default" appearance="minimal" style="left:994px; top:28px; width:44px; height:19px; ">
  1454. <choices>
  1455. <itemset nodeset="/root/init/mlist/M0110">
  1456. <label ref="cdnm"/>
  1457. <value ref="cdid"/>
  1458. </itemset>
  1459. </choices>
  1460. </select1>
  1461. <line id="line78" class="line_3" style="x1:795px; y1:135px; x2:1186px; y2:135px; "/>
  1462. <caption id="caption108" class="cell_1" style="left:941px; top:50px; width:50px; height:20px; vertical-align:middle; ">우</caption>
  1463. <caption id="caption109" class="cell_1" style="left:1061px; top:29px; width:50px; height:20px; vertical-align:middle; ">빛반사</caption>
  1464. <button id="btn_nvesysdel" class="btn2_letter3" style="left:1129px; top:4px; width:53px; height:19px; ">
  1465. <caption>행삭제</caption>
  1466. <script type="javascript" ev:event="DOMActivate">
  1467. <![CDATA[
  1468. grd_nvesysdsord.deleteItem(grd_nvesysdsord.row);
  1469. ]]>
  1470. </script>
  1471. </button>
  1472. <datagrid id="grd_nvesysdsord" nodeset="/root/main/wardrecinfo/nvesysinfo/nvesys/nvesysdsordinfo" caption="부위^방향^증상^목록" colsep="^" colwidth="60, 57, 130, 40" mergecellsfixedrows="bycolrec" rowsep="|" style="left:875px; top:71px; width:308px; height:65px; ">
  1473. <col ref="part"/>
  1474. <col ref="direc"/>
  1475. <col ref="symp"/>
  1476. <col ref="list" style="text-align:center; background-image:../../../com/commonweb/images/icon_search.gif; background-position:center; ">
  1477. <script type="javascript" ev:event="onclick">
  1478. <![CDATA[
  1479. fSetPopupParam("01", "01", "01","00" , "04");
  1480. ]]>
  1481. </script>
  1482. </col>
  1483. </datagrid>
  1484. <select1 id="rdo_pupilsymmetryyn" ref="/root/main/wardrecinfo/nvesysinfo/nvesys/nvesys/pupilsymmetryyn" appearance="full" vcellspacing="3" overflow="visible" style="left:878px; top:30px; width:60px; height:35px; border-style:none; ">
  1485. <choices>
  1486. <item>
  1487. <label>대칭</label>
  1488. <value>1</value>
  1489. </item>
  1490. <item>
  1491. <label>비대칭</label>
  1492. <value>2</value>
  1493. </item>
  1494. </choices>
  1495. </select1>
  1496. <line id="line60" class="line_2" style="x1:943px; y1:48px; x2:1182px; y2:48px; "/>
  1497. <caption id="caption111" class="cell_1" style="left:1061px; top:50px; width:50px; height:20px; vertical-align:middle; ">빛반사</caption>
  1498. <select1 id="cmb_pupilrght" ref="/root/main/wardrecinfo/nvesysinfo/nvesys/nvesys/pupilrght" class="combo_default" appearance="minimal" style="left:994px; top:50px; width:44px; height:19px; ">
  1499. <choices>
  1500. <itemset nodeset="/root/init/mlist/M0110">
  1501. <label ref="cdnm"/>
  1502. <value ref="cdid"/>
  1503. </itemset>
  1504. </choices>
  1505. </select1>
  1506. <caption id="caption112" class="cell_1" style="left:795px; top:71px; width:80px; height:64px; vertical-align:middle; ">신경계장애</caption>
  1507. <select id="chk_nvesysinfoinclyn" ref="/root/main/wardrecinfo/nvesysinfo/nvesys/nvesysinfoinclyn" overflow="visible" appearance="full" style="left:947px; top:7px; width:70px; height:15px; border-style:none; ">
  1508. <choices>
  1509. <item>
  1510. <label>해당없음</label>
  1511. <value>1</value>
  1512. </item>
  1513. </choices>
  1514. <script type="javascript" ev:event="xforms-value-changed">
  1515. <![CDATA[
  1516. if(model.getValue("/root/main/wardrecinfo/nvesysinfo/nvesys/nvesysinfoinclyn") == "1") {
  1517. var isEmptyYN = "Y";
  1518. isEmptyYN = isCheckGridDataYN(grd_nvesysdsord);
  1519. var rtn = fSetStatus();
  1520. if(rtn == "6") {
  1521. rdo_pupilsymmetryyn.disabled = true;
  1522. btn_nvesysadd.disabled = true;
  1523. btn_nvesysdel.disabled = true;
  1524. cmb_pupilleft.disabled = true;
  1525. cmb_pupilrght.disabled = true;
  1526. cmb_pupilleftrflx.disabled = true;
  1527. cmb_pupilrghtrflx.disabled = true;
  1528. model.resetInstanceNode("/root/main/wardrecinfo/nvesysinfo/nvesys/nvesys/pupilsymmetryyn");
  1529. model.resetInstanceNode("/root/main/wardrecinfo/nvesysinfo/nvesys/nvesys/pupilleft");
  1530. model.resetInstanceNode("/root/main/wardrecinfo/nvesysinfo/nvesys/nvesys/pupilrght");
  1531. model.resetInstanceNode("/root/main/wardrecinfo/nvesysinfo/nvesys/nvesys/pupilleftrflx");
  1532. model.resetInstanceNode("/root/main/wardrecinfo/nvesysinfo/nvesys/nvesys/pupilrghtrflx");
  1533. model.removeNodeset("/root/main/wardrecinfo/nvesysinfo/nvesys/nvesysdsordinfo");
  1534. rdo_pupilsymmetryyn.refresh();
  1535. cmb_pupilleft.refresh();
  1536. cmb_pupilrght.refresh();
  1537. cmb_pupilleftrflx.refresh();
  1538. cmb_pupilrghtrflx.refresh();
  1539. grd_nvesysdsord.rebuild();
  1540. } else {
  1541. model.resetInstanceNode("/root/main/wardrecinfo/nvesysinfo/nvesys/nvesysinfoinclyn");
  1542. chk_nvesysinfoinclyn.refresh();
  1543. return;
  1544. }
  1545. } else {
  1546. rdo_pupilsymmetryyn.disabled = false;
  1547. btn_nvesysadd.disabled = false;
  1548. btn_nvesysdel.disabled = false;
  1549. cmb_pupilleft.disabled = false;
  1550. cmb_pupilrght.disabled = false;
  1551. cmb_pupilleftrflx.disabled = false;
  1552. cmb_pupilrghtrflx.disabled = false;
  1553. grd_nvesysdsord.addRow();
  1554. }
  1555. ]]>
  1556. </script>
  1557. <script type="javascript" ev:event="xforms-select">
  1558. <![CDATA[
  1559. status = "click";
  1560. ]]>
  1561. </script>
  1562. </select>
  1563. <select id="chk_blindnesspos" ref="/root/main/wardrecinfo/visdsordinfo/visdsord/visdsordblind" overflow="visible" appearance="full" cellspacing="60" cols="2" style="left:876px; top:206px; width:305px; height:13px; border-style:none; ">
  1564. <choices>
  1565. <item>
  1566. <label>blindness(좌)</label>
  1567. <value>l</value>
  1568. </item>
  1569. <item>
  1570. <label>blindness(우)</label>
  1571. <value>2</value>
  1572. </item>
  1573. </choices>
  1574. </select>
  1575. <line id="line84" class="line_1" style="x1:795px; y1:160px; x2:1185px; y2:160px; "/>
  1576. <caption id="caption113" class="tit_2" style="left:797px; top:145px; width:104px; height:13px; ">시력장애</caption>
  1577. <caption id="caption114" class="tit_2" style="left:797px; top:230px; width:104px; height:13px; ">청력장애</caption>
  1578. <line id="line85" class="line_2" style="x1:874px; y1:185px; x2:1183px; y2:185px; "/>
  1579. <line id="line86" class="line_2" style="x1:874px; y1:204px; x2:1183px; y2:204px; "/>
  1580. <line id="line108" class="line_2" style="x1:874px; y1:270px; x2:1183px; y2:270px; "/>
  1581. <caption id="caption116" class="tit_2" style="left:797px; top:300px; width:104px; height:13px; ">치아상태</caption>
  1582. <line id="line87" class="line_1" style="x1:795px; y1:245px; x2:1185px; y2:245px; "/>
  1583. <caption id="cap_heardord" class="cell_1" style="left:795px; top:250px; width:80px; height:40px; vertical-align:middle; ">청력장애</caption>
  1584. <line id="line88" class="line_3" style="x1:795px; y1:290px; x2:1185px; y2:290px; "/>
  1585. <select id="chk_heardsordpos" ref="/root/main/wardrecinfo/heardsordinfo/heardsord/heardsordpos" disabled="true" overflow="visible" appearance="full" cellspacing="60" cols="2" style="left:991px; top:253px; width:190px; height:13px; border-style:none; ">
  1586. <choices>
  1587. <item>
  1588. <label>좌</label>
  1589. <value>1</value>
  1590. </item>
  1591. <item>
  1592. <label>우</label>
  1593. <value>2</value>
  1594. </item>
  1595. </choices>
  1596. <script type="javascript" ev:event="xforms-value-changed">
  1597. <![CDATA[
  1598. var heardsordpos = model.getValue("/root/main/wardrecinfo/heardsordinfo/heardsord/heardsordpos");
  1599. if(heardsordpos == "1") {
  1600. ipt_heardsordleft.disabled = false;
  1601. ipt_heardsordrght.disabled = true;
  1602. model.resetInstanceNode("/root/main/wardrecinfo/heardsordinfo/heardsord/heardsordrght");
  1603. } else if(heardsordpos == "2") {
  1604. ipt_heardsordrght.disabled = false;
  1605. ipt_heardsordleft.disabled = true;
  1606. model.resetInstanceNode("/root/main/wardrecinfo/heardsordinfo/heardsord/heardsordleft");
  1607. } else if(heardsordpos == "1 2" || heardsordpos == "2 1") {
  1608. ipt_heardsordrght.disabled = false;
  1609. ipt_heardsordleft.disabled = false;
  1610. } else {
  1611. ipt_heardsordrght.disabled = true;
  1612. ipt_heardsordleft.disabled = true;
  1613. model.resetInstanceNode("/root/main/wardrecinfo/heardsordinfo/heardsord/heardsordleft");
  1614. model.resetInstanceNode("/root/main/wardrecinfo/heardsordinfo/heardsord/heardsordrght");
  1615. }
  1616. ipt_heardsordrght.refresh();
  1617. ipt_heardsordleft.refresh();
  1618. ]]>
  1619. </script>
  1620. </select>
  1621. <line id="line89" class="line_1" style="x1:795px; y1:315px; x2:1185px; y2:315px; "/>
  1622. <select id="chk_visdordpos" ref="/root/main/wardrecinfo/visdsordinfo/visdsord/visdsordpos" disabled="true" overflow="visible" appearance="full" cellspacing="60" cols="2" style="left:991px; top:168px; width:190px; height:13px; border-style:none; ">
  1623. <choices>
  1624. <item>
  1625. <label>좌</label>
  1626. <value>1</value>
  1627. </item>
  1628. <item>
  1629. <label>우</label>
  1630. <value>2</value>
  1631. </item>
  1632. </choices>
  1633. <script type="javascript" ev:event="xforms-value-changed">
  1634. <![CDATA[
  1635. var visdsordpos = model.getValue("/root/main/wardrecinfo/visdsordinfo/visdsord/visdsordpos") ;
  1636. if( visdsordpos == "1") {
  1637. ipt_visdsordleft.disabled = false;
  1638. ipt_visdsordrght.disabled = true;
  1639. model.resetInstanceNode("/root/main/wardrecinfo/visdsordinfo/visdsord/visdsordrght");
  1640. } else if(visdsordpos == "2") {
  1641. ipt_visdsordrght.disabled = false;
  1642. ipt_visdsordleft.disabled = true;
  1643. model.resetInstanceNode("/root/main/wardrecinfo/visdsordinfo/visdsord/visdsordleft");
  1644. } else if(visdsordpos == "1 2" || visdsordpos == "2 1") {
  1645. ipt_visdsordrght.disabled = false;
  1646. ipt_visdsordleft.disabled = false;
  1647. } else {
  1648. ipt_visdsordrght.disabled = true;
  1649. ipt_visdsordleft.disabled = true;
  1650. model.resetInstanceNode("/root/main/wardrecinfo/visdsordinfo/visdsord/visdsordrght");
  1651. model.resetInstanceNode("/root/main/wardrecinfo/visdsordinfo/visdsord/visdsordleft");
  1652. }
  1653. ipt_visdsordrght.refresh();
  1654. ipt_visdsordleft.refresh();
  1655. ]]>
  1656. </script>
  1657. </select>
  1658. <input id="ipt_heardsordleft" ref="/root/main/wardrecinfo/heardsordinfo/heardsord/heardsordleft" class="input_default" disabled="true" style="left:1025px; top:250px; width:50px; height:19px; "/>
  1659. <caption id="cap_tootstat" class="cell_1" style="left:795px; top:320px; width:35px; height:40px; vertical-align:middle; ">
  1660. <![CDATA[치아
  1661. 상태]]>
  1662. </caption>
  1663. <line id="line1" class="line_3" style="x1:795px; y1:220px; x2:1185px; y2:220px; "/>
  1664. <select id="chk_visdsordkind" ref="/root/main/wardrecinfo/visdsordinfo/visdsord/visdsordkind" disabled="true" overflow="visible" appearance="full" cellspacing="15" cols="4" style="left:876px; top:188px; width:290px; height:13px; border-style:none; ">
  1665. <choices>
  1666. <item>
  1667. <label>안경</label>
  1668. <value>1</value>
  1669. </item>
  1670. <item>
  1671. <label>렌즈</label>
  1672. <value>2</value>
  1673. </item>
  1674. <item>
  1675. <label>의안(좌)</label>
  1676. <value>3</value>
  1677. </item>
  1678. <item>
  1679. <label>의안(우)</label>
  1680. <value>4</value>
  1681. </item>
  1682. </choices>
  1683. </select>
  1684. <line id="line90" class="line_3" style="x1:795px; y1:361px; x2:1185px; y2:361px; "/>
  1685. <caption id="cap_visdord" class="cell_1" style="left:795px; top:165px; width:80px; height:55px; vertical-align:middle; ">시력장애</caption>
  1686. <select id="chk_heardsordkind" ref="/root/main/wardrecinfo/heardsordinfo/heardsord/heardsordkind" disabled="true" overflow="visible" appearance="full" cellspacing="15" cols="4" style="left:876px; top:273px; width:290px; height:13px; border-style:none; ">
  1687. <choices>
  1688. <item>
  1689. <label>보청기(좌)</label>
  1690. <value>1</value>
  1691. </item>
  1692. <item>
  1693. <label>보청기(우)</label>
  1694. <value>2</value>
  1695. </item>
  1696. </choices>
  1697. </select>
  1698. <select id="chk_tootstatkind" ref="/root/main/wardrecinfo/tootstatinfo/tootstat/tootstatkind" overflow="visible" appearance="full" cols="5" vcellspacing="3" style="left:835px; top:320px; width:336px; height:38px; border-style:none; ">
  1699. <choices>
  1700. <item>
  1701. <label>양호</label>
  1702. <value>1</value>
  1703. </item>
  1704. <item>
  1705. <label>충치</label>
  1706. <value>2</value>
  1707. </item>
  1708. <item>
  1709. <label>보철</label>
  1710. <value>3</value>
  1711. </item>
  1712. <item>
  1713. <label>크라운</label>
  1714. <value>4</value>
  1715. </item>
  1716. <item>
  1717. <label>유치</label>
  1718. <value>8</value>
  1719. </item>
  1720. <item>
  1721. <label>부분의치</label>
  1722. <value>5</value>
  1723. </item>
  1724. <item>
  1725. <label>완전의치</label>
  1726. <value>6</value>
  1727. </item>
  1728. <item>
  1729. <label>임프란트</label>
  1730. <value>7</value>
  1731. </item>
  1732. <item>
  1733. <label>구강위생불량</label>
  1734. <value>9</value>
  1735. </item>
  1736. </choices>
  1737. </select>
  1738. <select1 id="rdo_visdsordyn" ref="/root/main/wardrecinfo/visdsordinfo/visdsord/visdsordyn" appearance="full" cellspacing="20" cols="2" overflow="visible" style="left:876px; top:168px; width:82px; height:13px; border-style:none; ">
  1739. <choices>
  1740. <item>
  1741. <label>무</label>
  1742. <value>1</value>
  1743. </item>
  1744. <item>
  1745. <label>유</label>
  1746. <value>2</value>
  1747. </item>
  1748. </choices>
  1749. <script type="javascript" ev:event="xforms-value-changed">
  1750. <![CDATA[
  1751. if(model.getValue("/root/main/wardrecinfo/visdsordinfo/visdsord/visdsordyn") == "1") {
  1752. chk_visdordpos.disabled = true;
  1753. chk_visdsordkind.disabled = true;
  1754. model.resetInstanceNode("/root/main/wardrecinfo/visdsordinfo/visdsord/visdsordpos");
  1755. model.resetInstanceNode("/root/main/wardrecinfo/visdsordinfo/visdsord/visdsordkind");
  1756. } else {
  1757. chk_visdordpos.disabled = false;
  1758. chk_visdsordkind.disabled = false;
  1759. }
  1760. chk_visdordpos.dispatch("xforms-value-changed");
  1761. chk_visdordpos.refresh();
  1762. chk_visdsordkind.refresh();
  1763. ]]>
  1764. </script>
  1765. </select1>
  1766. <select1 id="rdo_heardsordyn" ref="/root/main/wardrecinfo/heardsordinfo/heardsord/heardsordyn" appearance="full" cellspacing="20" cols="2" overflow="visible" style="left:876px; top:253px; width:82px; height:13px; border-style:none; ">
  1767. <choices>
  1768. <item>
  1769. <label>무</label>
  1770. <value>1</value>
  1771. </item>
  1772. <item>
  1773. <label>유</label>
  1774. <value>2</value>
  1775. </item>
  1776. </choices>
  1777. <script type="javascript" ev:event="xforms-value-changed">
  1778. <![CDATA[
  1779. if(model.getValue("/root/main/wardrecinfo/heardsordinfo/heardsord/heardsordyn") == "1") {
  1780. chk_heardsordkind.disabled = true;
  1781. chk_heardsordpos.disabled = true;
  1782. model.resetInstanceNode("/root/main/wardrecinfo/heardsordinfo/heardsord/heardsordpos");
  1783. model.resetInstanceNode("/root/main/wardrecinfo/heardsordinfo/heardsord/heardsordkind");
  1784. } else {
  1785. chk_heardsordpos.disabled = false;
  1786. chk_heardsordkind.disabled = false;
  1787. }
  1788. chk_heardsordpos.dispatch("xforms-value-changed");
  1789. chk_heardsordpos.refresh();
  1790. chk_heardsordkind.refresh();
  1791. ]]>
  1792. </script>
  1793. </select1>
  1794. <input id="ipt_heardsordrght" ref="/root/main/wardrecinfo/heardsordinfo/heardsord/heardsordrght" class="input_default" disabled="true" style="left:1116px; top:250px; width:50px; height:19px; "/>
  1795. <select1 id="rdo_orgnopenyn" ref="/root/main/wardrecinfo/resorgninfo/resorgn/orgnopenyn" appearance="full" cellspacing="20" cols="2" overflow="visible" style="left:485px; top:220px; width:82px; height:13px; border-style:none; ">
  1796. <choices>
  1797. <item>
  1798. <label>무</label>
  1799. <value>1</value>
  1800. </item>
  1801. <item>
  1802. <label>유</label>
  1803. <value>2</value>
  1804. </item>
  1805. </choices>
  1806. <script type="javascript" ev:event="xforms-value-changed">
  1807. <![CDATA[
  1808. if(model.getValue("/root/main/wardrecinfo/resorgninfo/resorgn/orgnopenyn") == "1") {
  1809. cmb_orgnopen.disabled = true;
  1810. model.resetInstanceNode("/root/main/wardrecinfo/resorgninfo/resorgn/orgnopenkind");
  1811. } else {
  1812. cmb_orgnopen.disabled = false;
  1813. }
  1814. cmb_orgnopen.dispatch("xforms-value-changed");
  1815. cmb_orgnopen.refresh();
  1816. ]]>
  1817. </script>
  1818. </select1>
  1819. <select1 id="rdo_artficresorgn" ref="/root/main/wardrecinfo/resorgninfo/resorgn/artficresorgn" appearance="full" cellspacing="20" cols="2" overflow="visible" style="left:485px; top:287px; width:82px; height:13px; border-style:none; ">
  1820. <choices>
  1821. <item>
  1822. <label>무</label>
  1823. <value>1</value>
  1824. </item>
  1825. <item>
  1826. <label>유</label>
  1827. <value>2</value>
  1828. </item>
  1829. </choices>
  1830. </select1>
  1831. <line id="line8" class="line_3" style="x1:400px; y1:522px; x2:791px; y2:522px; "/>
  1832. <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:87px; top:134px; width:307px; height:40px; border-style:none; ">
  1833. <choices>
  1834. <item>
  1835. <label>보조기</label>
  1836. <value>1</value>
  1837. </item>
  1838. <item>
  1839. <label>목발</label>
  1840. <value>2</value>
  1841. </item>
  1842. <item>
  1843. <label>지팡이</label>
  1844. <value>3</value>
  1845. </item>
  1846. <item>
  1847. <label>전동 Wheel Chair</label>
  1848. <value>4</value>
  1849. </item>
  1850. <item>
  1851. <label>Wheel Chair</label>
  1852. <value>5</value>
  1853. </item>
  1854. </choices>
  1855. </select>
  1856. <select1 id="rdo_actfreeyn" ref="/root/main/wardrecinfo/actinfo/act/actfreeyn" navindex="52" appearance="full" cellspacing="40" cols="3" overflow="visible" style="left:87px; top:115px; width:305px; height:13px; border-style:none; ">
  1857. <choices>
  1858. <item>
  1859. <label>독립적</label>
  1860. <value>1</value>
  1861. </item>
  1862. <item>
  1863. <label>부분보조</label>
  1864. <value>2</value>
  1865. </item>
  1866. <item>
  1867. <label>완전보조</label>
  1868. <value>3</value>
  1869. </item>
  1870. </choices>
  1871. <script type="javascript" ev:event="xforms-value-changed">
  1872. <![CDATA[
  1873. var value = model.getValue("/root/main/wardrecinfo/actinfo/act/actfreeyn");
  1874. if(value == "1") {
  1875. chk_supptoolkind.disabled = true;
  1876. model.setValue("/root/main/wardrecinfo/actinfo/act/supptoolkind","");
  1877. chk_supptoolkind.refresh();
  1878. } else {
  1879. chk_supptoolkind.disabled = false;
  1880. }
  1881. ]]>
  1882. </script>
  1883. </select1>
  1884. <caption id="caption17" style="left:90px; top:205px; width:30px; height:14px; vertical-align:middle; ">PPS</caption>
  1885. <input id="ipt_paralysis" ref="/root/main/wardrecinfo/actinfo/act/paralysis" class="input_default" disabled="true" style="left:235px; top:178px; width:160px; height:19px; "/>
  1886. <input id="ipt_visdsordrght" ref="/root/main/wardrecinfo/visdsordinfo/visdsord/visdsordrght" class="input_default" disabled="true" style="left:1116px; top:165px; width:50px; height:19px; "/>
  1887. <input id="ipt_visdsordleft" ref="/root/main/wardrecinfo/visdsordinfo/visdsord/visdsordleft" class="input_default" disabled="true" style="left:1025px; top:165px; width:50px; height:19px; "/>
  1888. <caption id="caption42" class="tit_2" style="left:10px; top:10px; width:104px; height:14px; ">통증</caption>
  1889. <line id="line36" class="line_1" style="x1:5px; y1:25px; x2:396px; y2:25px; "/>
  1890. <button id="btn_shpaindel" class="btn2_letter3" visibility="hidden" style="left:341px; top:5px; width:53px; height:19px; ">
  1891. <caption>행삭제</caption>
  1892. <script type="javascript" ev:event="DOMActivate">
  1893. <![CDATA[
  1894. grd_shpain.deleteRow(grd_shpain.row);
  1895. ]]>
  1896. </script>
  1897. </button>
  1898. <button id="btn_shpainadd" class="btn2_letter3" visibility="hidden" style="left:285px; top:5px; width:53px; height:19px; ">
  1899. <caption>행추가</caption>
  1900. <script type="javascript" ev:event="DOMActivate">
  1901. <![CDATA[
  1902. grd_shpain.addRow();
  1903. ]]>
  1904. </script>
  1905. </button>
  1906. <select1 id="cmb_ppsdetl" ref="/root/main/wardrecinfo/actinfo/act/ppsdetl" class="combo_default" appearance="minimal" style="left:125px; top:202px; width:270px; height:19px; ">
  1907. <choices>
  1908. <item>
  1909. <label>0%</label>
  1910. <value>01</value>
  1911. </item>
  1912. <item>
  1913. <label>10%</label>
  1914. <value>02</value>
  1915. </item>
  1916. <item>
  1917. <label>20%</label>
  1918. <value>03</value>
  1919. </item>
  1920. <item>
  1921. <label>30%</label>
  1922. <value>04</value>
  1923. </item>
  1924. <item>
  1925. <label>40%</label>
  1926. <value>05</value>
  1927. </item>
  1928. <item>
  1929. <label>50%</label>
  1930. <value>06</value>
  1931. </item>
  1932. <item>
  1933. <label>60%</label>
  1934. <value>07</value>
  1935. </item>
  1936. <item>
  1937. <label>70%</label>
  1938. <value>08</value>
  1939. </item>
  1940. <item>
  1941. <label>90%</label>
  1942. <value>09</value>
  1943. </item>
  1944. <item>
  1945. <label>100%</label>
  1946. <value>10</value>
  1947. </item>
  1948. </choices>
  1949. </select1>
  1950. <input id="ipt_orgnopennm" ref="/root/main/wardrecinfo/resorgninfo/resorgn/orgnopennm" disabled="true" style="left:698px; top:217px; width:93px; height:19px; "/>
  1951. <line id="line43" class="line_3" style="x1:5px; y1:573px; x2:396px; y2:573px; "/>
  1952. <select1 id="cmb_digorgcate" ref="/root/main/wardrecinfo/digorgninfo/digorgn/digorgcate" class="combo_default" appearance="minimal" style="left:483px; top:386px; width:132px; height:19px; ">
  1953. <choices>
  1954. <item>
  1955. <label>PTBD</label>
  1956. <value>01</value>
  1957. </item>
  1958. <item>
  1959. <label>L-tube</label>
  1960. <value>02</value>
  1961. </item>
  1962. <item>
  1963. <label>PEG</label>
  1964. <value>03</value>
  1965. </item>
  1966. <item>
  1967. <label>기타</label>
  1968. <value>04</value>
  1969. </item>
  1970. </choices>
  1971. <script type="javascript" ev:event="xforms-value-changed">
  1972. <![CDATA[
  1973. if(model.getValue("/root/main/wardrecinfo/digorgninfo/digorgn/digorgcate") == "04") {
  1974. ipt_cate.disabled = false;
  1975. } else {
  1976. ipt_cate.disabled = true;
  1977. model.resetInstanceNode("/root/main/wardrecinfo/digorgninfo/digorgn/digorgdetl");
  1978. ipt_cate.refresh();
  1979. }
  1980. ]]>
  1981. </script>
  1982. </select1>
  1983. <caption id="caption18" class="cell_1" style="left:400px; top:386px; width:80px; height:21px; vertical-align:middle; ">부착기구</caption>
  1984. <line id="line10" class="line_3" style="x1:400px; y1:406px; x2:791px; y2:406px; "/>
  1985. <input id="ipt_cate" ref="/root/main/wardrecinfo/digorgninfo/digorgn/digorgdetl" disabled="true" style="left:618px; top:386px; width:172px; height:19px; "/>
  1986. <caption id="caption19" style="left:1039px; top:33px; width:24px; height:14px; vertical-align:middle; ">mm</caption>
  1987. <caption id="caption20" style="left:1039px; top:56px; width:24px; height:14px; vertical-align:middle; ">mm</caption>
  1988. <caption id="caption21" style="left:91px; top:328px; width:35px; height:14px; vertical-align:middle; ">기간:</caption>
  1989. <input id="ipt_term" ref="/root/main/wardrecinfo/apttbdwtchnginfo/apttbdwtchng/bdwtchngterm" class="input_default" disabled="true" navindex="6" style="left:278px; top:326px; width:35px; height:19px; "/>
  1990. <select1 id="rdo_bdwtchngtermflag" ref="/root/main/wardrecinfo/apttbdwtchnginfo/apttbdwtchng/bdwtchngtermflag" navindex="4" appearance="full" cellspacing="5" cols="2" overflow="visible" style="left:121px; top:328px; width:157px; height:13px; border-style:none; ">
  1991. <choices>
  1992. <item>
  1993. <label>3개월이내</label>
  1994. <value>1</value>
  1995. </item>
  1996. <item>
  1997. <label>3개월이상</label>
  1998. <value>2</value>
  1999. </item>
  2000. </choices>
  2001. </select1>
  2002. <select id="chk_constipt" ref="/root/main/wardrecinfo/stoolinfo/stool/stoolconstipation" overflow="visible" appearance="full" cols="1" style="left:610px; top:575px; width:50px; height:15px; border-style:none; ">
  2003. <choices>
  2004. <item>
  2005. <label>변비</label>
  2006. <value>Y</value>
  2007. </item>
  2008. </choices>
  2009. </select>
  2010. <caption id="caption22" class="cell_1" style="left:5px; top:30px; width:80px; height:23px; vertical-align:middle; ">통증</caption>
  2011. <select1 id="rdo_shpaininfoinclyn" ref="/root/main/wardrecinfo/shpaininfo/shpain/shpaininfoinclyn" navindex="52" appearance="full" cellspacing="40" cols="2" overflow="visible" style="left:87px; top:33px; width:129px; height:13px; border-style:none; ">
  2012. <choices>
  2013. <item>
  2014. <label>무</label>
  2015. <value>1</value>
  2016. </item>
  2017. <item>
  2018. <label>유</label>
  2019. <value>2</value>
  2020. </item>
  2021. </choices>
  2022. </select1>
  2023. <line id="line20" class="line_3" style="x1:5px; y1:53px; x2:396px; y2:53px; "/>
  2024. <caption id="cap_chnggrde" style="left:170px; top:305px; width:197px; height:14px; vertical-align:middle; ">( )</caption>
  2025. <caption id="caption64" style="left:316px; top:307px; width:19px; height:14px; vertical-align:middle; ">kg</caption>
  2026. <select1 id="rdo_incdecflag" ref="/root/main/wardrecinfo/apttbdwtchnginfo/apttbdwtchng/incdecflag" navindex="4" appearance="full" cols="2" overflow="visible" style="left:178px; top:305px; width:92px; height:13px; border-style:none; ">
  2027. <choices>
  2028. <item>
  2029. <label>증가</label>
  2030. <value>1</value>
  2031. </item>
  2032. <item>
  2033. <label>감소</label>
  2034. <value>2</value>
  2035. </item>
  2036. </choices>
  2037. </select1>
  2038. <input id="ipt_chnggrde" ref="/root/main/wardrecinfo/apttbdwtchnginfo/apttbdwtchng/bdwtchnggrde" class="input_default" disabled="true" navindex="5" style="left:270px; top:303px; width:44px; height:19px; "/>
  2039. </xhtml:body>
  2040. </xhtml:html>