SMMNW12600_응급실정보.xrw 93 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403
  1. <?xml version="1.0" encoding="EUC-KR"?>
  2. <?xml-stylesheet href="../../../com/commonweb/css/common.css" type="text/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. <tel/>
  12. <mphone/>
  13. <etcphone1/>
  14. <etcphone2/>
  15. <inacompstyn>1</inacompstyn>
  16. <inacompstcd/>
  17. <inacompstnm/>
  18. <serdiagflag/>
  19. <mainsympcd/>
  20. <mainsympcdno/>
  21. <mainsympnm/>
  22. <fstexamorddd/>
  23. <fstexamordtm/>
  24. <attackdd/>
  25. <attacktm/>
  26. <cscsflag>-</cscsflag>
  27. <painflag>-</painflag>
  28. <highbp/>
  29. <lowbp/>
  30. <mntpulsecnt/>
  31. <mntbrethcnt/>
  32. <chosbdtp/>
  33. <oxyconcen/>
  34. <algyflag/>
  35. <algyetccnts/>
  36. <pasthistflag/>
  37. <pasthistetccnts/>
  38. <chospathflag>-</chospathflag>
  39. <choswayflag>-</choswayflag>
  40. <chosresnflag>-</chosresnflag>
  41. <intenflag>-</intenflag>
  42. <injmechflag>-</injmechflag>
  43. <choseduinfo>
  44. <chosedu>
  45. <chosgenrcmt1>1</chosgenrcmt1>
  46. <chosgenrcmt2> 2</chosgenrcmt2>
  47. <bedsoreprvn>1</bedsoreprvn>
  48. <edutrgt>1</edutrgt>
  49. <fallhighriskflag/>
  50. <fallpreventactflag/>
  51. </chosedu>
  52. </choseduinfo>
  53. <revisitinfo>
  54. <revisit>
  55. <revisityn>1</revisityn>
  56. <revisitcd/>
  57. </revisit>
  58. </revisitinfo>
  59. <gustoinfo>
  60. <gusto>
  61. <smokinfo>
  62. <smokinfoyn>1</smokinfoyn>
  63. <bfsmokinfoyn/>
  64. <smokinfocnt/>
  65. <nosmokcnstyn>1</nosmokcnstyn>
  66. <nosmokcnst/>
  67. <nosmokcnstnm/>
  68. </smokinfo>
  69. <drunkinfo>
  70. <drunkinfoyn>1</drunkinfoyn>
  71. <drunkinfokind/>
  72. <drunkinfoterm/>
  73. </drunkinfo>
  74. <gustofoodinfo>
  75. <gustofoodyn>1</gustofoodyn>
  76. <gustofooddetl/>
  77. </gustofoodinfo>
  78. <tnsseffcinfo>
  79. <tnsseffcyn>1</tnsseffcyn>
  80. <tnsseffcdetl/>
  81. </tnsseffcinfo>
  82. </gusto>
  83. </gustoinfo>
  84. <prginfo>
  85. <prg>
  86. <prgstatchk/>
  87. <prgstatyn/>
  88. <prgstatweek/>
  89. </prg>
  90. </prginfo>
  91. <visdsordinfo>
  92. <visdsord>
  93. <visdsordyn>1</visdsordyn>
  94. <visdsordpos/>
  95. <visdsordleft/>
  96. <visdsordrght/>
  97. <visdsordkind/>
  98. <visdsordblind/>
  99. </visdsord>
  100. </visdsordinfo>
  101. <heardsordinfo>
  102. <heardsord>
  103. <heardsordyn>1</heardsordyn>
  104. <heardsordpos/>
  105. <heardsordleft/>
  106. <heardsordrght/>
  107. <heardsordkind/>
  108. </heardsord>
  109. </heardsordinfo>
  110. <tootstatinfo>
  111. <tootstat>
  112. <tootstatkind>1</tootstatkind>
  113. </tootstat>
  114. </tootstatinfo>
  115. <skinsectinfo>
  116. <skinsect>
  117. <skincolorinfoinclyn>1</skincolorinfoinclyn>
  118. <skincolor>
  119. <part/>
  120. <direc/>
  121. <symp/>
  122. <list/>
  123. </skincolor>
  124. <skinstatinfoinclyn>1</skinstatinfoinclyn>
  125. <skinstat>
  126. <part/>
  127. <direc/>
  128. <symp/>
  129. <cate/>
  130. <list/>
  131. </skinstat>
  132. </skinsect>
  133. </skinsectinfo>
  134. <mainsympnm1/>
  135. <mainsympnm2/>
  136. <etcsymp/>
  137. <etcfact/>
  138. <mainsympcd1/>
  139. <mainsympcdno1/>
  140. <mainsympcd2/>
  141. <mainsympcdno2/>
  142. <acdownflag/>
  143. <acdowndetailflag/>
  144. <proceqmtflag/>
  145. <painflag1/>
  146. <painflag2/>
  147. <bdwt/>
  148. <rectmedistatinfo>
  149. <rectmedistat>
  150. <rectmedistatinfoinclyn/>
  151. <antibiodrugyn/>
  152. <rectmedistat>
  153. <drugnm/>
  154. <direc/>
  155. <orddept/>
  156. </rectmedistat>
  157. </rectmedistat>
  158. </rectmedistatinfo>
  159. <initvsdd/>
  160. <initvstm/>
  161. </wardrecinfo>
  162. <init>
  163. </init>
  164. <histinfo>
  165. <pasthistinfo>
  166. <pasthist>
  167. <pasthistinclyn/>
  168. <pasthist>
  169. <genrdd/>
  170. <histspec/>
  171. <remfact/>
  172. </pasthist>
  173. </pasthist>
  174. </pasthistinfo>
  175. <famyhistinfo>
  176. <famyhist>
  177. <famyhistinclyn/>
  178. <famyhist>
  179. <famyrel/>
  180. <existyn/>
  181. <histspec/>
  182. <remfact/>
  183. </famyhist>
  184. </famyhist>
  185. </famyhistinfo>
  186. <inhistinfo>
  187. <inhist>
  188. <inhistinclyn/>
  189. <inhist>
  190. <indd/>
  191. <dschdd/>
  192. <illnm/>
  193. <orddept/>
  194. <inhistpk/>
  195. </inhist>
  196. </inhist>
  197. </inhistinfo>
  198. <ophistinfo>
  199. <ophist>
  200. <ophistinclyn/>
  201. <ophist>
  202. <opdd/>
  203. <opnm/>
  204. <orddept/>
  205. <ophistpk/>
  206. </ophist>
  207. </ophist>
  208. </ophistinfo>
  209. <allghistinfo>
  210. <allghist>
  211. <allghistinclyn/>
  212. <allghist>
  213. <genrdd/>
  214. <flag/>
  215. <allergespec/>
  216. </allghist>
  217. </allghist>
  218. </allghistinfo>
  219. <vacnhistinfo>
  220. <vacnhist>
  221. <vacnhistinfoinclyn/>
  222. <dpttims/>
  223. <infparaltims/>
  224. <ahptstims/>
  225. <bhptstims/>
  226. <bhptsdrugnm/>
  227. <bhptsyn/>
  228. <bcgyn/>
  229. <mmrtims/>
  230. <alivvacntims/>
  231. <deadvaccntims/>
  232. <brnmeningitistims/>
  233. <lungcoccustims/>
  234. <chickenpoxtims/>
  235. </vacnhist>
  236. </vacnhistinfo>
  237. <smokinfo>
  238. <smok>
  239. <smokinclyn/>
  240. <smok>
  241. <dosetoday/>
  242. <term/>
  243. </smok>
  244. </smok>
  245. </smokinfo>
  246. <drunkinfo>
  247. <drunk>
  248. <drunkinclyn/>
  249. <drunkinfo>
  250. <kind/>
  251. <dose/>
  252. <tims/>
  253. <term/>
  254. </drunkinfo>
  255. </drunk>
  256. </drunkinfo>
  257. <gustofoodinfo>
  258. <gustofood>
  259. <gustofoodinclyn/>
  260. <gustofood>
  261. <kind/>
  262. <dose/>
  263. <tims/>
  264. <term/>
  265. </gustofood>
  266. </gustofood>
  267. </gustofoodinfo>
  268. <tnsseffcinfo>
  269. <tnsseffc>
  270. <tnsseffcinclyn/>
  271. <tnsseffc>
  272. <tnsyn/>
  273. <tnsdetl/>
  274. </tnsseffc>
  275. </tnsseffc>
  276. </tnsseffcinfo>
  277. </histinfo>
  278. <!--
  279. <histinfo>
  280. <pasthistinfo>
  281. <pasthist>
  282. <pasthistinclyn/>
  283. <pasthist>
  284. <genrdd/>
  285. <histspec/>
  286. <remfact/>
  287. </pasthist>
  288. </pasthist>
  289. </pasthistinfo>
  290. <rectmedistatinfo>
  291. <rectmedistat>
  292. <rectmedistatinfoinclyn/>
  293. <antibiodrugyn/>
  294. <rectmedistat>
  295. <drugnm/>
  296. <direc/>
  297. <orddept/>
  298. </rectmedistat>
  299. </rectmedistat>
  300. </rectmedistatinfo>
  301. <ophistinfo>
  302. <ophist>
  303. <ophistinclyn/>
  304. <ophist>
  305. <opdd/>
  306. <opnm/>
  307. <orddept/>
  308. <ophistpk/>
  309. </ophist>
  310. </ophist>
  311. </ophistinfo>
  312. <allghistinfo>
  313. <allghist>
  314. <allghistinclyn>1</allghistinclyn>
  315. <allghist>
  316. <genrdd/>
  317. <flag/>
  318. <allergespec/>
  319. <hosoutyn/>
  320. <comclscd/>
  321. <drugcd/>
  322. <drugnm/>
  323. <symp/>
  324. <rgstdt/>
  325. <rgster/>
  326. <cretno/>
  327. </allghist>
  328. </allghist>
  329. </allghistinfo>
  330. </histinfo>
  331. -->
  332. </main>
  333. </root>
  334. </instance>
  335. <script type="javascript">
  336. <![CDATA[
  337. //----------(20101029) 경북대
  338. //function fessential() {
  339. // //khj 20100303 통증사정도구가 선택되었을경우 점수도 반드시 선택되어야함.
  340. // if( !isNull( model.getValue("/root/main/wardrecinfo/painflag1") ) && isNull( cmb_pain.label ) ){
  341. // rdo_painflag1.attribute("background-color") = fEssentialBackColor;
  342. // cmb_pain.attribute("background-color") = fEssentialBackColor;
  343. // }
  344. //}
  345. //----------(20101029) 경북대
  346. function fInitEvent() {
  347. //내원사유 질병일 경우 disable
  348. var chosresnflag = model.getValue("/root/main/wardrecinfo/chosresnflag");
  349. if(chosresnflag == "1"){ //내원사유가 질병인 경우
  350. cmb_intenflag.disabled = true;
  351. cmb_injmechflag.disabled = true;
  352. //cmb_chospathflag.disabled= true; //내원사유가 질병인 경우, 내원경로 disabled해체
  353. //chk_acdownflag.disabled = true;
  354. //chk_proceqmtflag.disabled= true;
  355. }
  356. chk_algyflag.dispatch("xforms-select");
  357. chk_pasthistflag.dispatch("xforms-select");
  358. rdo_inacompstyn.dispatch("xforms-value-changed");
  359. cmb_inacompstcd.dispatch("xforms-value-changed");
  360. rdo_allgyn.dispatch("xforms-value-changed");
  361. rdo_revisit.dispatch("xforms-value-changed");
  362. //rdo_smokinfo.dispatch("xforms-value-changed");
  363. rdo_nosmokcnstyn.dispatch("xforms-value-changed");
  364. chk_prgchk.dispatch("xforms-value-changed");
  365. if(model.getValue("/root/main/histinfo/pasthistinfo/pasthist/pasthistinclyn") == "1") {
  366. chk_pasthistyn.dispatch("xforms-value-changed");
  367. }
  368. if(model.getValue("/root/main/wardrecinfo/rectmedistatinfo/rectmedistat/rectmedistatinfoinclyn") == "1") {
  369. chk_rectmedistatinclyn.dispatch("xforms-value-changed");
  370. }
  371. if(model.getValue("/root/main/histinfo/ophistinfo/ophist/ophistinclyn") == "1") {
  372. chk_ophistinclyn.dispatch("xforms-value-changed");
  373. }
  374. rdo_painflag1.dispatch("xforms-value-changed");
  375. }
  376. function fSetStatus() {
  377. var rtn = "";
  378. if(status == "select") {
  379. rtn = "6";
  380. } else {
  381. rtn = messageBox("데이터를 ", "Q001");
  382. }
  383. return rtn;
  384. }
  385. function isCheckGridDataYN(grdData) {
  386. var isEmptyYN = "Y";
  387. if(grdData.rows == 2) {
  388. for(var i = 1; i < grdData.cols; i++) {
  389. if(grdData.valueMatrix(1, i) != "") {
  390. isEmptyYN = "N";
  391. break;
  392. } else {
  393. isEmptyYN = "Y";
  394. }
  395. }
  396. } else if(grdData.rows < 2) {
  397. isEmptyYN = "Y";
  398. } else {
  399. isEmptyYN = "N";
  400. }
  401. if(isEmptyYN == "Y") {
  402. status = "select";
  403. }
  404. return isEmptyYN;
  405. }
  406. /**
  407. * @desc : String에서 특정 문자 검사
  408. * @
  409. * @param : trgtStr - 타켓이 되는 String문자열
  410. * : fndCh - 찾을 Char문자
  411. *
  412. * @return : true/false
  413. * @author : 오지훈
  414. * @---------------------------------------------------
  415. */
  416. function fSearchChar(sTrgtStr, chFndChar){
  417. for(var i=0; i < sTrgtStr.length; i++){
  418. var ch = sTrgtStr.charAt(i);
  419. if(ch == chFndChar){
  420. return true;
  421. }
  422. }
  423. return false;
  424. }
  425. /**
  426. * @desc : Enter 혹은 Tab키 입력시, 지정한 콘트롤로 이동
  427. * @
  428. * @param :
  429. * @return :
  430. * @author : 오지훈
  431. * @---------------------------------------------------
  432. */
  433. function fNextMoveCtrl(ctrlID){
  434. if(event.keyCode == 13){ //Enter키가 눌린 경우
  435. model.setFocus(ctrlID);
  436. }
  437. }
  438. /**
  439. * @desc : 알러지 선택, 선택취소
  440. * @
  441. * @param :
  442. * @return :
  443. * @author : 오지훈
  444. * @---------------------------------------------------
  445. */
  446. function fSelctAlgy(){
  447. var sAglyFlag = model.getValue("/root/main/wardrecinfo/algyflag");
  448. ipt_algyetccnt.disabled = true;
  449. if(fSearchChar(sAglyFlag, "8") == true){ // 없음(8)이 선택된 경우
  450. deselectAll("chk_algyflag");
  451. }else if(fSearchChar(sAglyFlag, "7") == true){ // 기타(7)이 선택된 경우
  452. ipt_algyetccnt.disabled = false;
  453. }else if(fSearchChar(sAglyFlag, "7") == false){ // 기타(7)이 선택해제된 경우
  454. ipt_algyetccnt.disabled = true;
  455. ipt_algyetccnt.value = "";
  456. }else if(sAglyFlag == ""){
  457. selectAll("chk_algyflag");
  458. ipt_algyetccnt.disabled = true;
  459. }
  460. if(fSearchChar(sAglyFlag, "8") == false){ // 없음(8)이 선택해제된 경우
  461. chk_algyflag.disabled = false;
  462. }
  463. model.refresh();
  464. }
  465. /**
  466. * @desc : 과거력 선택, 선택취소
  467. * @
  468. * @param :
  469. * @return :
  470. * @author : 오지훈
  471. * @---------------------------------------------------
  472. */
  473. function fSelctPastHist(){
  474. var sPastHistFlag = model.getValue("/root/main/wardrecinfo/pasthistflag");
  475. ipt_pasthistetccnt.disabled = true;
  476. if(fSearchChar(sPastHistFlag, "9") == true){ // 없음(9)이 선택된 경우
  477. deselectAll("chk_pasthistflag");
  478. }else if(fSearchChar(sPastHistFlag, "8") == true){ // 기타(8)이 선택된 경우
  479. ipt_pasthistetccnt.disabled = false;
  480. }else if(fSearchChar(sPastHistFlag, "8") == false){ // 기타(8)이 선택해제된 경우
  481. ipt_pasthistetccnt.disabled = true;
  482. ipt_pasthistetccnt.value = "";
  483. }else if(sPastHistFlag == ""){
  484. selectAll("chk_pasthistflag");
  485. ipt_pasthistetccnt.disabled = true;
  486. }
  487. if(fSearchChar(sPastHistFlag, "9") == false){ // 없음(8)이 선택해제된 경우
  488. chk_pasthistflag.disabled = false;
  489. }
  490. model.refresh();
  491. }
  492. // 모든 체크를 disabled = true
  493. function deselectAll(flag)
  494. {
  495. if (flag == "chk_algyflag") { // 알러지
  496. var i = 0;
  497. for(i=0; i<chk_algyflag.length-1; i++)
  498. {
  499. chk_algyflag.deselect(i);
  500. chk_algyflag.item(i).disabled = true;
  501. }
  502. model.resetInstanceNode("/root/main/wardrecinfo/algyetccnts");
  503. chk_algyflag.refresh();
  504. }
  505. else if (flag == "chk_pasthistflag") { // 과거력
  506. var i = 0;
  507. for(i=0; i<chk_pasthistflag.length-1; i++)
  508. {
  509. chk_pasthistflag.deselect(i);
  510. chk_pasthistflag.item(i).disabled = true;
  511. }
  512. model.resetInstanceNode("/root/main/wardrecinfo/pasthistetccnts");
  513. chk_pasthistflag.refresh();
  514. }
  515. }
  516. // 모든 체크를 disabled = false
  517. function selectAll(flag)
  518. {
  519. if (flag == "chk_algyflag") { // 알러지
  520. var i = 0;
  521. for(i=0; i<chk_algyflag.length-1; i++)
  522. {
  523. chk_algyflag.deselect(i);
  524. chk_algyflag.item(i).disabled = false;
  525. }
  526. } else if (flag == "chk_pasthistflag") { // 과거력
  527. var i = 0;
  528. for(i=0; i<chk_pasthistflag.length-1; i++)
  529. {
  530. chk_pasthistflag.deselect(i);
  531. chk_pasthistflag.item(i).disabled = false;
  532. }
  533. }
  534. }
  535. /**
  536. * @desc : 내원사유 변경
  537. * @
  538. * @param :
  539. * @return :
  540. * @author : 오지훈
  541. * @---------------------------------------------------
  542. */
  543. function fChngChosResnFlag(){
  544. var chosresnflag = model.getValue("/root/main/wardrecinfo/chosresnflag");
  545. if(chosresnflag == "1"){ //내원사유가 질병인 경우
  546. model.setValue( "/root/main/wardrecinfo/intenflag" , "-"); //의도성여부
  547. model.setValue("/root/main/wardrecinfo/injmechflag" , "-"); //손상기전
  548. model.setValue("/root/main/wardrecinfo/chospathflag", "-"); //내원경로
  549. model.setValue("/root/main/wardrecinfo/acdownflag" , ""); //교통사고 당사자
  550. model.setValue("/root/main/wardrecinfo/proceqmtflag", ""); //보호장구
  551. model.setValue("/root/main/wardrecinfo/acdowndetailflag", "");
  552. cmb_intenflag.disabled = true;
  553. cmb_injmechflag.disabled = true;
  554. //cmb_chospathflag.disabled= true; //내원사유가 질병인 경우, 내원경로 disabled해체
  555. //chk_acdownflag.disabled = true;
  556. //chk_proceqmtflag.disabled= true;
  557. model.refresh();
  558. }else{
  559. cmb_intenflag.disabled = false;
  560. cmb_injmechflag.disabled = false;
  561. cmb_chospathflag.disabled= false;
  562. //chk_acdownflag.disabled = false;
  563. //chk_proceqmtflag.disabled= false;
  564. if (chosresnflag == "3"){ // 내원사유가 질병외방문시 활력증후 값 세팅
  565. model.setValue("/root/main/wardrecinfo/highbp", "-"); // 수축기 혈압
  566. model.setValue("/root/main/wardrecinfo/lowbp", "-"); // 이완기 혈압
  567. model.setValue("/root/main/wardrecinfo/mntpulsecnt", "-"); // 분당 맥박수
  568. model.setValue("/root/main/wardrecinfo/mntbrethcnt", "-"); // 분당 호흡수
  569. model.setValue("/root/main/wardrecinfo/chosbdtp", "-"); // 내원시 체온
  570. }
  571. model.refresh();
  572. }
  573. }
  574. function fSetPopupParam(part, direc, symp, cate, flag) {
  575. var skinstatPath = "/root/main/wardrecinfo/skinsectinfo/skinsect/skinstat";
  576. setParameter("SPMNW07500_PARAM1", "");
  577. setParameter("SPMNW07500_PARAM2", "");
  578. setParameter("SPMNW07500_PARAM3", "");
  579. setParameter("SPMNW07500_PARAM4", "");
  580. setParameter("SPMNW07500_PARAM5", "");
  581. var title ="";
  582. var path = "";
  583. var idx = -1;
  584. if(flag == "01") {
  585. title="동통팝업";
  586. path = shpainPath;
  587. idx = grd_shpain.row;
  588. } else if(flag =="02") {
  589. title="호흡기계";
  590. path = resorgnPath;
  591. idx = grd_resorgn.row;
  592. } else if(flag =="03") {
  593. title="소화기계";
  594. path = digorgnPath;
  595. idx = grd_digorgn.row;
  596. } else if(flag =="04") {
  597. title = "신경계장애";
  598. path = nvesysdsordPath;
  599. idx = grd_nvesysdsord.row;
  600. } else if(flag =="05") {
  601. title = "피부색";
  602. path = skincolorPath;
  603. idx = grd_skincolor.row;
  604. } else if(flag == "06") {
  605. title = "피부상태";
  606. path = skinstatPath;
  607. idx = grd_skinstat.row;
  608. } else if(flag == "07") {
  609. title = "비뇨기계";
  610. path = uriorgnPath;
  611. idx = grd_urine.row;
  612. } else if(flag == "08") {
  613. title = "대변";
  614. path = stoolPath;
  615. }
  616. setParameter("SPMNW07500_PARAM1", part);
  617. setParameter("SPMNW07500_PARAM2", direc);
  618. setParameter("SPMNW07500_PARAM3", symp);
  619. setParameter("SPMNW07500_PARAM4", title);
  620. setParameter("SPMNW07500_PARAM5", cate);
  621. modal("SPMNW07500",1, (event.screenX + 517 >= 1195)? 1195-517 : event.screenX , (event.screenY+306 >= 1024)? 1024-306: event.screenY );
  622. var flg = getParameter("SMMNW03100_PARAM4");
  623. if(flg == "Y") {
  624. if(part != "00") {
  625. part = getParameter("SMMNW03100_PARAM1");
  626. model.setValue(path + "[" + idx + "]/part", part);
  627. }
  628. if(direc != "00") {
  629. direc = getParameter("SMMNW03100_PARAM2");
  630. model.setValue(path + "[" + idx + "]/direc", direc);
  631. }
  632. if(symp != "00") {
  633. symp = getParameter("SMMNW03100_PARAM3");
  634. model.setValue(path + "[" + idx + "]/symp", symp);
  635. }
  636. if(cate != "00") {
  637. cate = getParameter("SMMNW03100_PARAM5");
  638. if(flag == "03") {
  639. grd_digorgn.valueMatrix(idx, grd_digorgn.colRef("cate")) = cate;
  640. grd_digorgn.rebuild();
  641. } else if(flag == "07") {
  642. grd_urine.valueMatrix(1, grd_urine.colRef("cate")) = cate;
  643. grd_urine.rebuild();
  644. } else if(flag == "08") {
  645. model.setValue(path + "/stoolcatekind", cate);
  646. ipt_stoolcatekind.refresh();
  647. }
  648. }
  649. }
  650. }
  651. ]]>
  652. </script>
  653. <script type="javascript" ev:event="xforms-ready">
  654. <![CDATA[
  655. // iviewer1.window.javascript.fGetOCRInfo("0000001778", "20694", "20070824", "1", "I", "3", "Y");
  656. // iviewer1.window.javascript.fPrint("A");
  657. //---------(20101029) 경북대
  658. if (fEssentialBackColor != "") {
  659. cmb_antibiodrugyn.attribute("background-color") = fEssentialBackColor;
  660. rdo_fallhighriskflag.attribute("background-color") = fEssentialBackColor; // 141111 - AYS 추가
  661. rdo_fallpreventactflag.attribute("background-color") = fEssentialBackColor; // 141111 - AYS 추가
  662. }
  663. //fessential();
  664. //---------(20101029) 경북대
  665. ]]>
  666. </script>
  667. </model>
  668. <script type="javascript" src="../../../com/commonweb/js/common.js"/>
  669. <script type="javascript" src="../../../emr/commonweb/js/EMRCommon.js"/>
  670. <script type="javascript" src="../../../emr/formmngtweb/js/MRF03800.js"/>
  671. </xhtml:head>
  672. <xhtml:body pagewidth="1194" pageheight="673" guideline="1,612;2,286;" style="margin-left:0; margin-top:0; margin-right:0; margin-bottom:0; ">
  673. <select id="chk_pasthistflag" ref="/root/main/wardrecinfo/pasthistflag" visibility="hidden" overflow="visible" appearance="full" cellspacing="10" cols="9" rows="1" sep="|" style="left:110px; top:290px; width:500px; height:20px; border-style:none; ">
  674. <choices>
  675. <itemset nodeset="/root/init/mlist/M0124">
  676. <label ref="cdnm"/>
  677. <value ref="cdid"/>
  678. </itemset>
  679. </choices>
  680. <script type="javascript" ev:event="onkeypress">
  681. <![CDATA[
  682. fNextMoveCtrl("chk_pasthistflag");
  683. ]]>
  684. </script>
  685. <script type="javascript" ev:event="xforms-select">
  686. <![CDATA[
  687. fSelctPastHist();
  688. ]]>
  689. </script>
  690. <script type="javascript" ev:event="xforms-deselect">
  691. <![CDATA[
  692. fSelctPastHist();
  693. ]]>
  694. </script>
  695. </select>
  696. <select1 id="cmb_revisit" ref="/root/main/wardrecinfo/revisitinfo/revisit/revisitcd" class="combo_default" navindex="16" appearance="minimal" style="left:115px; top:556px; width:100px; height:19px; ">
  697. <choices>
  698. <item>
  699. <label>동일증상</label>
  700. <value>1</value>
  701. </item>
  702. <item>
  703. <label>비동일증상</label>
  704. <value>2</value>
  705. </item>
  706. </choices>
  707. </select1>
  708. <select1 id="rdo_revisit" ref="/root/main/wardrecinfo/revisitinfo/revisit/revisityn" appearance="full" cellspacing="10" cols="3" overflow="visible" style="left:10px; top:557px; width:105px; height:18px; border-style:none; ">
  709. <choices>
  710. <item>
  711. <label>아니오</label>
  712. <value>1</value>
  713. </item>
  714. <item>
  715. <label>예</label>
  716. <value>2</value>
  717. </item>
  718. </choices>
  719. <script type="javascript" ev:event="xforms-value-changed">
  720. <![CDATA[
  721. if(model.getValue("/root/main/wardrecinfo/revisitinfo/revisit/revisityn") == "2") {
  722. cmb_revisit.disabled = false;
  723. //동일증상, 비동일 증상 판단하여 설정해줌
  724. cmb_revisit.refresh();
  725. } else {
  726. cmb_revisit.disabled = true;
  727. model.resetInstanceNode("/root/main/wardrecinfo/revisitinfo/revisit/revisitcd");
  728. cmb_revisit.refresh();
  729. }
  730. ]]>
  731. </script>
  732. </select1>
  733. <caption id="caption23" class="tit_2" style="left:10px; top:536px; width:163px; height:13px; ">48시간 이내 재방문 여부</caption>
  734. <line id="line9" class="line_3" style="x1:5px; y1:576px; x2:276px; y2:576px; "/>
  735. <caption id="caption18" class="cell_1" visibility="hidden" style="left:5px; top:236px; width:85px; height:48px; vertical-align:middle; ">알러지</caption>
  736. <caption id="caption27" class="cell_1" visibility="hidden" style="left:5px; top:285px; width:85px; height:47px; vertical-align:middle; ">과거력</caption>
  737. <input id="ipt_algyetccnt" ref="/root/main/wardrecinfo/algyetccnts" disabled="true" visibility="hidden" style="left:95px; top:262px; width:515px; height:19px; "/>
  738. <input id="ipt_pasthistetccnt" ref="/root/main/wardrecinfo/pasthistetccnts" disabled="true" visibility="hidden" style="left:95px; top:311px; width:517px; height:19px; "/>
  739. <select id="chk_algyflag" ref="/root/main/wardrecinfo/algyflag" navindex="14" visibility="hidden" overflow="visible" appearance="full" cellspacing="10" cols="9" rows="1" sep="|" style="left:95px; top:241px; width:515px; height:20px; border-style:none; ">
  740. <choices>
  741. <itemset nodeset="/root/init/mlist/M0123">
  742. <label ref="cdnm"/>
  743. <value ref="cdid"/>
  744. </itemset>
  745. </choices>
  746. <script type="javascript" ev:event="onkeypress">
  747. <![CDATA[
  748. fNextMoveCtrl("chk_pasthistflag");
  749. ]]>
  750. </script>
  751. <script type="javascript" ev:event="xforms-select">
  752. <![CDATA[
  753. fSelctAlgy();
  754. ]]>
  755. </script>
  756. <script type="javascript" ev:event="xforms-deselect">
  757. <![CDATA[
  758. fSelctAlgy();
  759. ]]>
  760. </script>
  761. </select>
  762. <caption id="cap_allghist" class="tit_2" visibility="hidden" style="left:282px; top:420px; width:69px; height:13px; ">Allergy</caption>
  763. <button id="btn_allghistadd" class="btn2_letter3" navindex="72" visibility="hidden" style="left:558px; top:415px; width:53px; height:19px; ">
  764. <caption>행추가</caption>
  765. <script type="javascript" ev:event="DOMActivate">
  766. <![CDATA[
  767. grd_allghist.addRow();
  768. ]]>
  769. </script>
  770. </button>
  771. <line id="line28" class="line_1" visibility="hidden" style="x1:277px; y1:435px; x2:613px; y2:435px; "/>
  772. <line id="line27" class="line_1" visibility="hidden" style="x1:277px; y1:435px; x2:613px; y2:435px; "/>
  773. <button id="btn_allghistdel" class="btn2_letter3" navindex="73" visibility="hidden" style="left:562px; top:415px; width:53px; height:19px; ">
  774. <caption>행삭제</caption>
  775. <script type="javascript" ev:event="DOMActivate">
  776. <![CDATA[
  777. grd_allghist.deleteRow(grd_allghist.row);
  778. ]]>
  779. </script>
  780. </button>
  781. <select1 id="rdo_allgyn" ref="/root/main/histinfo/allghistinfo/allghist/allghistinclyn" visibility="hidden" appearance="full" cellspacing="10" cols="3" overflow="visible" style="left:355px; top:419px; width:140px; height:13px; 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. <item>
  792. <label>잘모름</label>
  793. <value>3</value>
  794. </item>
  795. </choices>
  796. <script type="javascript" ev:event="xforms-value-changed">
  797. <![CDATA[
  798. if(model.getValue("/root/main/histinfo/allghistinfo/allghist/allghistinclyn") == "1") {
  799. var isEmptyYN = "Y";
  800. isEmptyYN = isCheckGridDataYN(grd_allghist);
  801. var rtn = fSetStatus();
  802. if(rtn == "6") {
  803. model.removeNodeset("/root/main/histinfo/allghistinfo/allghist/allghist");
  804. grd_allghist.rebuild();
  805. btn_allghistadd.disabled = true;
  806. btn_allghistdel.disabled = true;
  807. } else if(rtn == "7") {
  808. model.setValue("/root/main/histinfo/allghistinfo/allghist/allghistinclyn", "");
  809. rdo_allgyn.refresh();
  810. }
  811. } else {
  812. btn_allghistadd.disabled = false;
  813. btn_allghistdel.disabled = false;
  814. if(grd_allghist.rows == 1) {
  815. grd_allghist.addRow();
  816. }
  817. }
  818. ]]>
  819. </script>
  820. <script type="javascript" ev:event="xforms-select">
  821. <![CDATA[
  822. status = "click";
  823. ]]>
  824. </script>
  825. </select1>
  826. <button id="btn_allg" class="icon_search" visibility="hidden" style="left:537px; top:417px; width:16px; height:16px; ">
  827. <script type="javascript" ev:event="DOMActivate">
  828. <![CDATA[
  829. open("SPMMD03300");
  830. ]]>
  831. </script>
  832. <caption/>
  833. </button>
  834. <datagrid id="grd_allghist" nodeset="/root/main/histinfo/allghistinfo/allghist/allghist" visibility="hidden" scroll="auto" caption="발생일자^분류^Allergy 내역 및 증상" colsep="^" colwidth="85, 70, 158, 0, 0, 0, 0, 0, 0, 0" mergecellsfixedrows="bycolrec" rowheader="update" rowsep="|" style="left:277px; top:365px; width:333px; height:71px; ">
  835. <col ref="genrdd" type="inputdate"/>
  836. <col class="gridcombo" ref="flag" type="combo">
  837. <choices>
  838. <itemset nodeset="/root/init/mlist/M0090">
  839. <label ref="cdnm"/>
  840. <value ref="cdid"/>
  841. </itemset>
  842. </choices>
  843. </col>
  844. <col ref="allergespec" type="input"/>
  845. <col ref="hosoutyn" visibility="hidden"/>
  846. <col ref="comclscd" visibility="hidden"/>
  847. <col ref="drugcd" visibility="hidden"/>
  848. <col ref="drugnm" visibility="hidden"/>
  849. <col ref="rgstdt" type="inputdate" visibility="hidden"/>
  850. <col ref="rgster" visibility="hidden">
  851. <![CDATA[/>]]>
  852. </col>
  853. <col ref="cretno" visibility="hidden">
  854. <![CDATA[/>]]>
  855. </col>
  856. <script type="javascript" ev:event="onclick">
  857. <![CDATA[
  858. if(grd_allghist.colType(grd_allghist.col) == "input") {
  859. grd_allghist.editCell();
  860. }
  861. ]]>
  862. </script>
  863. <script type="javascript" ev:event="onkeydown">
  864. <![CDATA[
  865. if(event.keyCode == 9) {
  866. grd_allghist.editCell();
  867. }
  868. ]]>
  869. </script>
  870. </datagrid>
  871. <line id="line8" class="line_3" visibility="hidden" style="x1:278px; y1:456px; x2:609px; y2:456px; "/>
  872. <select1 id="rdo_heardsordyn" ref="/root/main/wardrecinfo/heardsordinfo/heardsord/heardsordyn" visibility="hidden" appearance="full" cellspacing="20" cols="2" overflow="visible" style="left:663px; top:473px; width:82px; height:13px; border-style:none; ">
  873. <choices>
  874. <item>
  875. <label>무</label>
  876. <value>1</value>
  877. </item>
  878. <item>
  879. <label>유</label>
  880. <value>2</value>
  881. </item>
  882. </choices>
  883. <script type="javascript" ev:event="xforms-value-changed">
  884. <![CDATA[
  885. if(model.getValue("/root/main/wardrecinfo/heardsordinfo/heardsord/heardsordyn") == "1") {
  886. chk_heardsordkind.disabled = true;
  887. chk_heardsordpos.disabled = true;
  888. model.resetInstanceNode("/root/main/wardrecinfo/heardsordinfo/heardsord/heardsordpos");
  889. model.resetInstanceNode("/root/main/wardrecinfo/heardsordinfo/heardsord/heardsordkind");
  890. chk_heardsordpos.dispatch("xforms-value-changed");
  891. chk_heardsordpos.refresh();
  892. chk_heardsordkind.refresh();
  893. } else {
  894. chk_heardsordpos.disabled = false;
  895. chk_heardsordkind.disabled = false;
  896. }
  897. ]]>
  898. </script>
  899. </select1>
  900. <select1 id="rdo_visdsordyn" ref="/root/main/wardrecinfo/visdsordinfo/visdsord/visdsordyn" visibility="hidden" appearance="full" cellspacing="20" cols="2" overflow="visible" style="left:683px; top:394px; width:82px; height:13px; border-style:none; ">
  901. <choices>
  902. <item>
  903. <label>무</label>
  904. <value>1</value>
  905. </item>
  906. <item>
  907. <label>유</label>
  908. <value>2</value>
  909. </item>
  910. </choices>
  911. <script type="javascript" ev:event="xforms-value-changed">
  912. <![CDATA[
  913. if(model.getValue("/root/main/wardrecinfo/visdsordinfo/visdsord/visdsordyn") == "1") {
  914. chk_visdordpos.disabled = true;
  915. chk_visdsordkind.disabled = true;
  916. model.resetInstanceNode("/root/main/wardrecinfo/visdsordinfo/visdsord/visdsordpos");
  917. model.resetInstanceNode("/root/main/wardrecinfo/visdsordinfo/visdsord/visdsordkind");
  918. chk_visdordpos.dispatch("xforms-value-changed");
  919. chk_visdordpos.refresh();
  920. chk_visdsordkind.refresh();
  921. } else {
  922. chk_visdordpos.disabled = false;
  923. chk_visdsordkind.disabled = false;
  924. }
  925. ]]>
  926. </script>
  927. </select1>
  928. <line id="line93" class="line_3" visibility="hidden" style="x1:615px; y1:664px; x2:969px; y2:664px; "/>
  929. <input id="ipt_heardsordrght" ref="/root/main/wardrecinfo/heardsordinfo/heardsord/heardsordrght" class="input_default" disabled="true" visibility="hidden" style="left:903px; top:470px; width:50px; height:19px; "/>
  930. <select id="chk_tootstatkind" ref="/root/main/wardrecinfo/tootstatinfo/tootstat/tootstatkind" navindex="70" visibility="hidden" overflow="visible" appearance="full" cellspacing="0" cols="5" vcellspacing="3" style="left:613px; top:533px; width:355px; height:38px; border-style:none; ">
  931. <choices>
  932. <item>
  933. <label>양호</label>
  934. <value>1</value>
  935. </item>
  936. <item>
  937. <label>충치</label>
  938. <value>2</value>
  939. </item>
  940. <item>
  941. <label>보철</label>
  942. <value>3</value>
  943. </item>
  944. <item>
  945. <label>크라운</label>
  946. <value>4</value>
  947. </item>
  948. <item>
  949. <label>유치</label>
  950. <value>8</value>
  951. </item>
  952. <item>
  953. <label>부분의치</label>
  954. <value>5</value>
  955. </item>
  956. <item>
  957. <label>완전의치</label>
  958. <value>6</value>
  959. </item>
  960. <item>
  961. <label>임프란트</label>
  962. <value>7</value>
  963. </item>
  964. <item>
  965. <label>구강위생불량</label>
  966. <value>9</value>
  967. </item>
  968. </choices>
  969. </select>
  970. <line id="line92" class="line_2" visibility="hidden" style="x1:607px; y1:551px; x2:961px; y2:551px; "/>
  971. <select id="chk_heardsordkind" ref="/root/main/wardrecinfo/heardsordinfo/heardsord/heardsordkind" disabled="true" visibility="hidden" overflow="visible" appearance="full" cellspacing="15" cols="4" style="left:663px; top:493px; width:290px; height:13px; border-style:none; ">
  972. <choices>
  973. <item>
  974. <label>보청기(좌)</label>
  975. <value>1</value>
  976. </item>
  977. <item>
  978. <label>보청기(우)</label>
  979. <value>2</value>
  980. </item>
  981. </choices>
  982. </select>
  983. <line id="line91" class="line_1" visibility="hidden" style="x1:613px; y1:595px; x2:967px; y2:595px; "/>
  984. <line id="line90" class="line_3" visibility="hidden" style="x1:605px; y1:573px; x2:959px; y2:573px; "/>
  985. <caption id="cap_visdord" class="cell_1" visibility="hidden" style="left:615px; top:391px; width:80px; height:55px; vertical-align:middle; ">시력장애</caption>
  986. <select id="chk_visdsordkind" ref="/root/main/wardrecinfo/visdsordinfo/visdsord/visdsordkind" disabled="true" visibility="hidden" overflow="visible" appearance="full" cellspacing="15" cols="4" style="left:678px; top:414px; width:290px; height:13px; border-style:none; ">
  987. <choices>
  988. <item>
  989. <label>안경</label>
  990. <value>1</value>
  991. </item>
  992. <item>
  993. <label>렌즈</label>
  994. <value>2</value>
  995. </item>
  996. <item>
  997. <label>의안(좌)</label>
  998. <value>3</value>
  999. </item>
  1000. <item>
  1001. <label>의안(우)</label>
  1002. <value>4</value>
  1003. </item>
  1004. </choices>
  1005. </select>
  1006. <button id="btn_skinstatadd" class="btn2_letter3" visibility="hidden" style="left:853px; top:575px; width:53px; height:19px; ">
  1007. <caption>행추가</caption>
  1008. <script type="javascript" ev:event="DOMActivate">
  1009. <![CDATA[
  1010. grd_skinstat.addRow();
  1011. ]]>
  1012. </script>
  1013. </button>
  1014. <caption id="cap_tootstat" class="cell_1" visibility="hidden" style="left:620px; top:533px; width:33px; height:40px; vertical-align:middle; ">
  1015. <![CDATA[치아
  1016. 상태]]>
  1017. </caption>
  1018. <input id="ipt_visdsordleft" ref="/root/main/wardrecinfo/visdsordinfo/visdsord/visdsordleft" class="input_default" disabled="true" visibility="hidden" style="left:832px; top:391px; width:50px; height:19px; "/>
  1019. <caption id="caption119" class="tit_2" visibility="hidden" style="left:616px; top:580px; width:64px; height:13px; ">피부계</caption>
  1020. <select id="chk_visdordpos" ref="/root/main/wardrecinfo/visdsordinfo/visdsord/visdsordpos" disabled="true" visibility="hidden" overflow="visible" appearance="full" cellspacing="60" cols="2" style="left:778px; top:394px; width:190px; height:13px; border-style:none; ">
  1021. <choices>
  1022. <item>
  1023. <label>좌</label>
  1024. <value>1</value>
  1025. </item>
  1026. <item>
  1027. <label>우</label>
  1028. <value>2</value>
  1029. </item>
  1030. </choices>
  1031. <script type="javascript" ev:event="xforms-value-changed">
  1032. <![CDATA[
  1033. var visdsordpos = model.getValue("/root/main/wardrecinfo/visdsordinfo/visdsord/visdsordpos") ;
  1034. if( visdsordpos == "1") {
  1035. ipt_visdsordleft.disabled = false;
  1036. ipt_visdsordrght.disabled =true;
  1037. model.resetInstanceNode("/root/main/wardrecinfo/visdsordinfo/visdsord/visdsordrght");
  1038. ipt_visdsordrght.refresh();
  1039. } else if(visdsordpos == "2") {
  1040. ipt_visdsordrght.disabled = false;
  1041. ipt_visdsordleft.disabled = true;
  1042. model.resetInstanceNode("/root/main/wardrecinfo/visdsordinfo/visdsord/visdsordleft");
  1043. ipt_visdsordleft.refresh();
  1044. } else if(visdsordpos == "1 2" || visdsordpos == "2 1") {
  1045. ipt_visdsordrght.disabled = false;
  1046. ipt_visdsordleft.disabled = false;
  1047. } else {
  1048. ipt_visdsordrght.disabled = true;
  1049. ipt_visdsordleft.disabled = true;
  1050. model.resetInstanceNode("/root/main/wardrecinfo/visdsordinfo/visdsord/visdsordright");
  1051. model.resetInstanceNode("/root/main/wardrecinfo/visdsordinfo/visdsord/visdsordleft");
  1052. ipt_visdsordrght.refresh();
  1053. ipt_visdsordleft.refresh();
  1054. }
  1055. ]]>
  1056. </script>
  1057. </select>
  1058. <line id="line89" class="line_1" visibility="hidden" style="x1:607px; y1:528px; x2:961px; y2:528px; "/>
  1059. <select id="chk_heardsordpos" ref="/root/main/wardrecinfo/heardsordinfo/heardsord/heardsordpos" disabled="true" visibility="hidden" overflow="visible" appearance="full" cellspacing="60" cols="2" style="left:778px; top:473px; width:190px; height:13px; border-style:none; ">
  1060. <choices>
  1061. <item>
  1062. <label>좌</label>
  1063. <value>1</value>
  1064. </item>
  1065. <item>
  1066. <label>우</label>
  1067. <value>2</value>
  1068. </item>
  1069. </choices>
  1070. <script type="javascript" ev:event="xforms-value-changed">
  1071. <![CDATA[
  1072. if(model.getValue("/root/main/wardrecinfo/heardsordinfo/heardsord/heardsordpos") == "1") {
  1073. ipt_heardsordleft.disabled = false;
  1074. ipt_heardsordrght.disabled =true;;
  1075. } else if(model.getValue("/root/main/wardrecinfo/heardsordinfo/heardsord/heardsordpos") == "2") {
  1076. ipt_heardsordrght.disabled = false;
  1077. ipt_heardsordleft.disabled = true;
  1078. } else if(model.getValue("/root/main/wardrecinfo/heardsordinfo/heardsord/heardsordpos") == "1 2" ) {
  1079. ipt_heardsordrght.disabled = false;
  1080. ipt_heardsordleft.disabled = false;
  1081. } else {
  1082. ipt_heardsordrght.disabled = true;
  1083. ipt_heardsordleft.disabled = true;
  1084. model.resetInstanceNode("/root/main/wardrecinfo/heardsordinfo/heardsord/heardsordpos");
  1085. model.resetInstanceNode("/root/main/wardrecinfo/heardsordinfo/heardsord/heardsordleft");
  1086. ipt_heardsordrght.refresh();
  1087. ipt_heardsordleft.refresh();
  1088. }
  1089. ]]>
  1090. </script>
  1091. </select>
  1092. <line id="line88" class="line_3" visibility="hidden" style="x1:607px; y1:510px; x2:961px; y2:510px; "/>
  1093. <line id="line22" class="line_3" visibility="hidden" style="x1:615px; y1:446px; x2:969px; y2:446px; "/>
  1094. <select id="chk_skinstatyn" ref="/root/main/wardrecinfo/skinsectinfo/skinsect/skinstatinfoinclyn" navindex="78" visibility="hidden" overflow="visible" appearance="full" style="left:718px; top:577px; width:70px; height:15px; border-style:none; ">
  1095. <choices>
  1096. <item>
  1097. <label>해당없음</label>
  1098. <value>1</value>
  1099. </item>
  1100. </choices>
  1101. <script type="javascript" ev:event="xforms-value-changed">
  1102. <![CDATA[
  1103. if(model.getValue("/root/main/wardrecinfo/skinsectinfo/skinsect/skinstatinfoinclyn")=="1") {
  1104. var isEmptyYN = "Y";
  1105. isEmptyYN = isCheckGridDataYN(grd_skinstat);
  1106. var rtn = fSetStatus();
  1107. if(rtn == "6") {
  1108. btn_skinstatadd.disabled = true;
  1109. btn_skinstatdel.disabled = true;
  1110. model.removeNodeset("/root/main/wardrecinfo/skinsectinfo/skinsect/skinstat");
  1111. grd_skinstat.rebuild();
  1112. } else if(rtn == "7") {
  1113. model.setValue("/root/main/wardrecinfo/skinsectinfo/skinsect/skinstatinfoinclyn", "");
  1114. chk_skinstatyn.refresh();
  1115. }
  1116. } else {
  1117. btn_skinstatadd.disabled = false;
  1118. btn_skinstatdel.disabled = false;
  1119. grd_skinstat.addRow();
  1120. }
  1121. ]]>
  1122. </script>
  1123. <script type="javascript" ev:event="xforms-select">
  1124. <![CDATA[
  1125. status = "click";
  1126. ]]>
  1127. </script>
  1128. </select>
  1129. <input id="ipt_heardsordleft" ref="/root/main/wardrecinfo/heardsordinfo/heardsord/heardsordleft" class="input_default" disabled="true" visibility="hidden" style="left:812px; top:470px; width:50px; height:19px; "/>
  1130. <caption id="caption116" class="tit_2" visibility="hidden" style="left:622px; top:513px; width:104px; height:13px; ">치아상태</caption>
  1131. <line id="line87" class="line_1" visibility="hidden" style="x1:607px; y1:465px; x2:961px; y2:465px; "/>
  1132. <caption id="cap_heardord" class="cell_1" visibility="hidden" style="left:620px; top:470px; width:80px; height:40px; vertical-align:middle; ">청력장애</caption>
  1133. <button id="btn_skinstatdel" class="btn2_letter3" visibility="hidden" style="left:909px; top:575px; width:53px; height:19px; ">
  1134. <caption>행삭제</caption>
  1135. <script type="javascript" ev:event="DOMActivate">
  1136. <![CDATA[
  1137. grd_skinstat.deleteRow(grd_skinstat.row);
  1138. ]]>
  1139. </script>
  1140. </button>
  1141. <input id="ipt_visdsordrght" ref="/root/main/wardrecinfo/visdsordinfo/visdsord/visdsordrght" class="input_default" disabled="true" visibility="hidden" style="left:918px; top:391px; width:50px; height:19px; "/>
  1142. <line id="line108" class="line_2" visibility="hidden" style="x1:661px; y1:490px; x2:970px; y2:490px; "/>
  1143. <line id="line86" class="line_2" visibility="hidden" style="x1:606px; y1:489px; x2:942px; y2:489px; "/>
  1144. <line id="line85" class="line_2" visibility="hidden" style="x1:661px; y1:411px; x2:970px; y2:411px; "/>
  1145. <caption id="caption114" class="tit_2" visibility="hidden" style="left:617px; top:450px; width:104px; height:13px; ">청력장애</caption>
  1146. <datagrid id="grd_skinstat" nodeset="/root/main/wardrecinfo/skinsectinfo/skinsect/skinstat" visibility="hidden" caption="부위^방향^증상^목록" colsep="^" colwidth="60, 60, 100, 40" mergecellsfixedrows="bycolrec" rowsep="|" style="left:698px; top:602px; width:270px; height:62px; ">
  1147. <col ref="part"/>
  1148. <col ref="direc"/>
  1149. <col ref="symp"/>
  1150. <col ref="list" style="text-align:center; background-image:../../../com/commonweb/images/icon_search.gif; background-position:center; ">
  1151. <script type="javascript" ev:event="onclick">
  1152. <![CDATA[
  1153. fSetPopupParam("03", "01", "06", "00", "06");
  1154. ]]>
  1155. </script>
  1156. </col>
  1157. </datagrid>
  1158. <line id="line95" class="line_3" visibility="hidden" style="x1:615px; y1:364px; x2:969px; y2:364px; "/>
  1159. <select id="chk_blindnesspos" ref="/root/main/wardrecinfo/visdsordinfo/visdsord/visdsordblind" visibility="hidden" overflow="visible" appearance="full" cellspacing="60" cols="2" style="left:683px; top:432px; width:285px; height:13px; border-style:none; ">
  1160. <choices>
  1161. <item>
  1162. <label>blindness(좌)</label>
  1163. <value>l</value>
  1164. </item>
  1165. <item>
  1166. <label>blindness(우)</label>
  1167. <value>2</value>
  1168. </item>
  1169. </choices>
  1170. </select>
  1171. <line id="line84" class="line_1" visibility="hidden" style="x1:615px; y1:386px; x2:969px; y2:386px; "/>
  1172. <caption id="caption113" class="tit_2" visibility="hidden" style="left:617px; top:371px; width:104px; height:13px; ">시력장애</caption>
  1173. <caption id="cap_skinstat" class="cell_1" visibility="hidden" style="left:615px; top:600px; width:80px; height:64px; vertical-align:middle; ">피부상태</caption>
  1174. <input id="ipt_prg" ref="/root/main/wardrecinfo/prginfo/prg/prgstatweek" class="input_default" visibility="hidden" style="left:798px; top:343px; width:81px; height:19px; "/>
  1175. <select1 id="rdo_prgyn" ref="/root/main/wardrecinfo/prginfo/prg/prgstatyn" visibility="hidden" appearance="full" cellspacing="20" cols="2" overflow="visible" style="left:681px; top:346px; width:115px; height:13px; border-style:none; ">
  1176. <choices>
  1177. <item>
  1178. <label>아니오</label>
  1179. <value>1</value>
  1180. </item>
  1181. <item>
  1182. <label>예</label>
  1183. <value>2</value>
  1184. </item>
  1185. </choices>
  1186. <script type="javascript" ev:event="xforms-value-changed">
  1187. <![CDATA[
  1188. if(model.getValue("/root/main/wardrecinfo/prginfo/prg/prgstatyn") == "2") {
  1189. ipt_prg.disabled = false;
  1190. } else {
  1191. ipt_prg.disabled = true;
  1192. model.resetInstanceNode("/root/main/wardrecinfo/prginfo/prg/prgstatweek");
  1193. ipt_prg.refresh();
  1194. }
  1195. ]]>
  1196. </script>
  1197. </select1>
  1198. <caption id="caption6" visibility="hidden" style="left:881px; top:345px; width:34px; height:19px; text-align:center; ">wks</caption>
  1199. <caption id="caption13" class="tit_2" visibility="hidden" style="left:620px; top:323px; width:104px; height:13px; ">임신여부</caption>
  1200. <caption id="caption98" class="cell_1" visibility="hidden" style="left:615px; top:343px; width:80px; height:21px; vertical-align:middle; ">현재임신여부</caption>
  1201. <line id="line23" class="line_1" visibility="hidden" style="x1:615px; y1:338px; x2:969px; y2:338px; "/>
  1202. <select id="chk_prgchk" ref="/root/main/wardrecinfo/prginfo/prg/prgstatchk" visibility="hidden" overflow="visible" appearance="full" style="left:720px; top:321px; width:70px; height:15px; border-style:none; ">
  1203. <choices>
  1204. <item>
  1205. <label>해당없음</label>
  1206. <value>1</value>
  1207. </item>
  1208. </choices>
  1209. <script type="javascript" ev:event="xforms-value-changed">
  1210. <![CDATA[
  1211. if(model.getValue("/root/main/wardrecinfo/prginfo/prg/prgstatchk") == "1"){
  1212. rdo_prgyn.disabled = true;
  1213. ipt_prg.disabled = true;
  1214. rdo_prgyn.refresh();
  1215. ipt_prg.refresh();
  1216. }else{
  1217. model.makeValue("/root/main/wardrecinfo/prginfo/prg/prgstatyn", "1");
  1218. rdo_prgyn.disabled = false;
  1219. ipt_prg.disabled = true;
  1220. rdo_prgyn.refresh();
  1221. ipt_prg.refresh();
  1222. }
  1223. ]]>
  1224. </script>
  1225. </select>
  1226. <button id="btn_rectmedistatdel" class="btn2_letter3" navindex="70" style="left:916px; top:102px; width:53px; height:19px; ">
  1227. <caption>행삭제</caption>
  1228. <script type="javascript" ev:event="DOMActivate">
  1229. <![CDATA[
  1230. grd_rectmedistat.deleteRow(grd_rectmedistat.row);
  1231. ]]>
  1232. </script>
  1233. </button>
  1234. <caption id="cap_pasthist" class="tit_2" style="left:620px; top:10px; width:104px; height:13px; ">과거병력</caption>
  1235. <select id="chk_pasthistyn" ref="/root/main/histinfo/pasthistinfo/pasthist/pasthistinclyn" navindex="56" overflow="visible" appearance="full" style="left:719px; top:7px; width:70px; height:15px; border-style:none; ">
  1236. <choices>
  1237. <item>
  1238. <label>해당없음</label>
  1239. <value>1</value>
  1240. </item>
  1241. </choices>
  1242. <script type="javascript" ev:event="xforms-value-changed">
  1243. <![CDATA[
  1244. if(model.getValue("/root/main/histinfo/pasthistinfo/pasthist/pasthistinclyn") == "1") {
  1245. var isEmptyYN = "Y";
  1246. isEmptyYN = isCheckGridDataYN(grd_pasthist);
  1247. var rtn = fSetStatus();
  1248. if(rtn == "6") {
  1249. model.removeNodeset("/root/main/histinfo/pasthistinfo/pasthist/pasthist");
  1250. grd_pasthist.rebuild();
  1251. btn_pasthistadd.disabled = true;
  1252. btn_pasthistdel.disabled = true;
  1253. } else if(rtn == "7") {
  1254. model.setValue("/root/main/histinfo/pasthistinfo/pasthist/pasthistinclyn", "");
  1255. chk_pasthistyn.refresh();
  1256. }
  1257. } else {
  1258. btn_pasthistadd.disabled = false;
  1259. btn_pasthistdel.disabled = false;
  1260. grd_pasthist.addRow();
  1261. }
  1262. ]]>
  1263. </script>
  1264. <script type="javascript" ev:event="xforms-select">
  1265. <![CDATA[
  1266. status = "click";
  1267. ]]>
  1268. </script>
  1269. </select>
  1270. <datagrid id="grd_pasthist" nodeset="/root/main/histinfo/pasthistinfo/pasthist/pasthist" scroll="auto" caption="발생일자^병력내역^비고" colsep="^" colwidth="85, 155, 90" mergecellsfixedrows="bycolrec" rowsep="|" style="left:615px; top:30px; width:354px; height:71px; ">
  1271. <col ref="genrdd" type="inputdate"/>
  1272. <col class="gridcombo" ref="histspec" type="combo">
  1273. <choices>
  1274. <itemset nodeset="/root/init/mlist/M0532">
  1275. <label ref="cdnm"/>
  1276. <value ref="cdid"/>
  1277. </itemset>
  1278. </choices>
  1279. </col>
  1280. <col ref="remfact" type="input"/>
  1281. <script type="javascript" ev:event="onclick">
  1282. <![CDATA[
  1283. if(grd_pasthist.colType(grd_pasthist.col) == "input") {
  1284. grd_pasthist.editCell();
  1285. }
  1286. ]]>
  1287. </script>
  1288. <script type="javascript" ev:event="onkeydown">
  1289. <![CDATA[
  1290. if(event.keyCode == 9) {
  1291. grd_pasthist.editCell();
  1292. }
  1293. ]]>
  1294. </script>
  1295. </datagrid>
  1296. <line id="line24" class="line_1" style="x1:615px; y1:243px; x2:969px; y2:243px; "/>
  1297. <datagrid id="grd_ophist" nodeset="/root/main/histinfo/ophistinfo/ophist/ophist" scroll="auto" caption="수술일자^수술명^진료기관^ophistpk" colsep="^" colwidth="85, 156, 90, 65" mergecellsfixedrows="bycolrec" rowsep="|" style="left:615px; top:248px; width:354px; height:71px; ">
  1298. <col ref="opdd" type="inputdate"/>
  1299. <col ref="opnm" type="input"/>
  1300. <col ref="orddept" type="input"/>
  1301. <col ref="ophistpk" visibility="hidden"/>
  1302. <script type="javascript" ev:event="onclick">
  1303. <![CDATA[
  1304. if(grd_ophist.colType(grd_ophist.col) == "input") {
  1305. grd_ophist.editCell();
  1306. }
  1307. ]]>
  1308. </script>
  1309. <script type="javascript" ev:event="onkeydown">
  1310. <![CDATA[
  1311. if(event.keyCode == 9) {
  1312. grd_ophist.editCell();
  1313. }
  1314. ]]>
  1315. </script>
  1316. </datagrid>
  1317. <line id="line26" class="line_1" style="x1:615px; y1:122px; x2:969px; y2:122px; "/>
  1318. <caption id="cap_ophist" class="tit_2" style="left:620px; top:228px; width:104px; height:13px; ">수술이력</caption>
  1319. <select id="chk_ophistinclyn" ref="/root/main/histinfo/ophistinfo/ophist/ophistinclyn" navindex="65" overflow="visible" appearance="full" style="left:720px; top:225px; width:70px; height:15px; border-style:none; ">
  1320. <choices>
  1321. <item>
  1322. <label>해당없음</label>
  1323. <value>1</value>
  1324. </item>
  1325. </choices>
  1326. <script type="javascript" ev:event="xforms-value-changed">
  1327. <![CDATA[
  1328. if(model.getValue("/root/main/histinfo/ophistinfo/ophist/ophistinclyn") == "1") {
  1329. var isEmptyYN = "Y";
  1330. isEmptyYN = isCheckGridDataYN(grd_ophist);
  1331. var rtn = fSetStatus();
  1332. if(rtn == "6") {
  1333. model.removeNodeset("/root/main/histinfo/ophistinfo/ophist/ophist");
  1334. grd_ophist.rebuild();
  1335. btn_ophistadd.disabled = true;
  1336. btn_ophistdel.disabled = true;
  1337. } else if(rtn == "7") {
  1338. model.setValue("/root/main/histinfo/ophistinfo/ophist/ophistinclyn", "");
  1339. chk_ophistinclyn.refresh();
  1340. }
  1341. } else {
  1342. btn_ophistadd.disabled = false;
  1343. btn_ophistdel.disabled = false;
  1344. grd_ophist.addRow();
  1345. }
  1346. ]]>
  1347. </script>
  1348. </select>
  1349. <button id="btn_rectmedistatadd" class="btn2_letter3" navindex="69" style="left:860px; top:102px; width:53px; height:19px; ">
  1350. <caption>행추가</caption>
  1351. <script type="javascript" ev:event="DOMActivate">
  1352. <![CDATA[
  1353. grd_rectmedistat.addRow();
  1354. ]]>
  1355. </script>
  1356. </button>
  1357. <button id="btn_ophistdel" class="btn2_letter3" navindex="67" style="left:917px; top:223px; width:53px; height:19px; ">
  1358. <caption>행삭제</caption>
  1359. <script type="javascript" ev:event="DOMActivate">
  1360. <![CDATA[
  1361. grd_ophist.deleteRow(grd_ophist.row);
  1362. ]]>
  1363. </script>
  1364. </button>
  1365. <caption id="cap_rectmedistat" class="tit_2" style="left:619px; top:107px; width:104px; height:13px; ">최근투약상태</caption>
  1366. <select id="chk_rectmedistatinclyn" ref="/root/main/wardrecinfo/rectmedistatinfo/rectmedistat/rectmedistatinfoinclyn" navindex="68" visibility="hidden" overflow="visible" appearance="full" style="left:720px; top:104px; width:70px; height:15px; border-style:none; ">
  1367. <choices>
  1368. <item>
  1369. <label>해당없음</label>
  1370. <value>1</value>
  1371. </item>
  1372. </choices>
  1373. <script type="javascript" ev:event="xforms-value-changed">
  1374. <![CDATA[
  1375. if(model.getValue("/root/main/wardrecinfo/rectmedistatinfo/rectmedistat/rectmedistatinfoinclyn") == "1") {
  1376. var isEmptyYN = "Y";
  1377. isEmptyYN = isCheckGridDataYN(grd_rectmedistat);
  1378. var rtn = fSetStatus();
  1379. if(rtn == "6") {
  1380. model.removeNodeset("/root/main/wardrecinfo/rectmedistatinfo/rectmedistat/rectmedistat");
  1381. grd_rectmedistat.rebuild();
  1382. btn_rectmedistatadd.disabled = true;
  1383. btn_rectmedistatdel.disabled = true;
  1384. } else if(rtn == "7") {
  1385. model.setValue("/root/main/wardrecinfo/rectmedistatinfo/rectmedistat/rectmedistatinfoinclyn", "");
  1386. chk_rectmedistatinclyn.refresh();
  1387. }
  1388. } else {
  1389. btn_rectmedistatadd.disabled = false;
  1390. btn_rectmedistatdel.disabled = false;
  1391. grd_rectmedistat.addRow();
  1392. }
  1393. ]]>
  1394. </script>
  1395. <script type="javascript" ev:event="xforms-select">
  1396. <![CDATA[
  1397. status = "click";
  1398. ]]>
  1399. </script>
  1400. </select>
  1401. <line id="line19" class="line_1" style="x1:615px; y1:25px; x2:969px; y2:25px; "/>
  1402. <button id="btn_pasthistadd" class="btn2_letter3" navindex="57" style="left:860px; top:5px; width:53px; height:19px; ">
  1403. <caption>행추가</caption>
  1404. <script type="javascript" ev:event="DOMActivate">
  1405. <![CDATA[
  1406. grd_pasthist.addRow();
  1407. ]]>
  1408. </script>
  1409. </button>
  1410. <button id="btn_pasthistdel" class="btn2_letter3" navindex="58" style="left:916px; top:5px; width:53px; height:19px; ">
  1411. <caption>행삭제</caption>
  1412. <script type="javascript" ev:event="DOMActivate">
  1413. <![CDATA[
  1414. grd_pasthist.deleteRow(grd_pasthist.row);
  1415. ]]>
  1416. </script>
  1417. </button>
  1418. <datagrid id="grd_rectmedistat" nodeset="/root/main/wardrecinfo/rectmedistatinfo/rectmedistat/rectmedistat" scroll="auto" caption="약명^복용법(용도/용량/용법)^진료기관" colsep="^" colwidth="70, 170, 90" mergecellsfixedrows="bycolrec" rowsep="|" style="left:615px; top:151px; width:354px; height:71px; ">
  1419. <col ref="drugnm" type="input"/>
  1420. <col ref="direc" type="input"/>
  1421. <col ref="orddept" type="input"/>
  1422. <script type="javascript" ev:event="onclick">
  1423. <![CDATA[
  1424. grd_rectmedistat.editCell();
  1425. ]]>
  1426. </script>
  1427. <script type="javascript" ev:event="onkeydown">
  1428. <![CDATA[
  1429. if(event.keyCode == 9) {
  1430. grd_rectmedistat.editCell();
  1431. }
  1432. ]]>
  1433. </script>
  1434. </datagrid>
  1435. <button id="btn_ophistadd" class="btn2_letter3" navindex="66" style="left:861px; top:223px; width:53px; height:19px; ">
  1436. <caption>행추가</caption>
  1437. <script type="javascript" ev:event="DOMActivate">
  1438. <![CDATA[
  1439. grd_ophist.addRow();
  1440. ]]>
  1441. </script>
  1442. </button>
  1443. <line id="line1" class="line_1" style="x1:5px; y1:453px; x2:276px; y2:453px; "/>
  1444. <caption id="caption1" class="tit_2" style="left:10px; top:438px; width:104px; height:13px; ">환자기본정보</caption>
  1445. <line id="line33" class="line_1" style="x1:615px; y1:338px; x2:969px; y2:338px; "/>
  1446. <caption id="caption42" class="tit_2" style="left:620px; top:323px; width:104px; height:13px; ">흡연력</caption>
  1447. <select1 id="cmb_inacompstcd" ref="/root/main/wardrecinfo/inacompstcd" class="combo_default" navindex="16" appearance="minimal" style="left:165px; top:507px; width:50px; height:19px; ">
  1448. <choices>
  1449. <item>
  1450. <label>부모</label>
  1451. <value>1</value>
  1452. </item>
  1453. <item>
  1454. <label>배우자</label>
  1455. <value>2</value>
  1456. </item>
  1457. <item>
  1458. <label>자녀</label>
  1459. <value>3</value>
  1460. </item>
  1461. <item>
  1462. <label>친구</label>
  1463. <value>4</value>
  1464. </item>
  1465. <item>
  1466. <label>기타</label>
  1467. <value>5</value>
  1468. </item>
  1469. </choices>
  1470. <script type="javascript" ev:event="xforms-value-changed">
  1471. <![CDATA[
  1472. if (model.getValue("/root/main/wardrecinfo/inacompstcd") == "5"){
  1473. ipt_inacompst.disabled = false;
  1474. }else{
  1475. ipt_inacompst.disabled = true;
  1476. model.resetInstanceNode("/root/main/wardrecinfo/inacompstnm");
  1477. }
  1478. ipt_inacompst.refresh();
  1479. ]]>
  1480. </script>
  1481. </select1>
  1482. <line id="line36" class="line_3" style="x1:615px; y1:431px; x2:969px; y2:431px; "/>
  1483. <caption id="caption4" class="cell_1" style="left:615px; top:127px; width:215px; height:23px; ">병원도착전 24시간내 항생제 투약여부</caption>
  1484. <select1 id="cmb_antibiodrugyn" ref="/root/main/wardrecinfo/rectmedistatinfo/rectmedistat/antibiodrugyn" class="combo_default" navindex="16" appearance="minimal" style="left:833px; top:129px; width:135px; height:19px; text-align:center; ">
  1485. <choices>
  1486. <item>
  1487. <label>Y</label>
  1488. <value>Y</value>
  1489. </item>
  1490. <item>
  1491. <label>N</label>
  1492. <value>N</value>
  1493. </item>
  1494. <item>
  1495. <label>확인불가</label>
  1496. <value>U</value>
  1497. </item>
  1498. </choices>
  1499. </select1>
  1500. <input id="ipt_nosmokcnstnm" ref="/root/main/wardrecinfo/gustoinfo/gusto/smokinfo/nosmokcnstnm" disabled="true" navindex="36" style="left:698px; top:409px; width:270px; height:19px; "/>
  1501. <select1 id="cmb_nosmokcnst" ref="/root/main/wardrecinfo/gustoinfo/gusto/smokinfo/nosmokcnst" class="combo_default" disabled="true" navindex="35" appearance="minimal" style="left:771px; top:385px; width:197px; height:19px; ">
  1502. <choices>
  1503. <item>
  1504. <label/>
  1505. <value>00</value>
  1506. </item>
  1507. <item>
  1508. <label>환자의 신경학적 결함(의식 혼탁 등)으로 인해 금연 상담의 이해가 불가능한 경우</label>
  1509. <value>01</value>
  1510. </item>
  1511. <item>
  1512. <label>환자의 신체적/정신적 상태로 인해 흡연이 불가능한 경우</label>
  1513. <value>02</value>
  1514. </item>
  1515. <item>
  1516. <label>기타</label>
  1517. <value>03</value>
  1518. </item>
  1519. </choices>
  1520. <script type="javascript" ev:event="xforms-value-changed">
  1521. <![CDATA[
  1522. if(model.getValue("/root/main/wardrecinfo/gustoinfo/gusto/smokinfo/nosmokcnst") == "03") {
  1523. ipt_nosmokcnstnm.disabled = false;
  1524. } else {
  1525. ipt_nosmokcnstnm.disabled = true;
  1526. model.resetInstanceNode("/root/main/wardrecinfo/gustoinfo/gusto/smokinfo/nosmokcnstnm");
  1527. ipt_nosmokcnstnm.refresh();
  1528. }
  1529. ]]>
  1530. </script>
  1531. </select1>
  1532. <select1 id="rdo_nosmokcnstyn" ref="/root/main/wardrecinfo/gustoinfo/gusto/smokinfo/nosmokcnstyn" navindex="34" appearance="full" cellspacing="5" cols="2" overflow="visible" style="left:696px; top:387px; width:72px; height:13px; border-style:none; ">
  1533. <choices>
  1534. <item>
  1535. <label>무</label>
  1536. <value>1</value>
  1537. </item>
  1538. <item>
  1539. <label>유</label>
  1540. <value>2</value>
  1541. </item>
  1542. </choices>
  1543. <script type="javascript" ev:event="xforms-value-changed">
  1544. <![CDATA[
  1545. if(model.getValue("/root/main/wardrecinfo/gustoinfo/gusto/smokinfo/nosmokcnstyn") == "1") {
  1546. if(model.getValue("/root/main/wardrecinfo/gustoinfo/gusto/smokinfo/smokinfoyn") == "4" || model.getValue("/root/main/wardrecinfo/gustoinfo/gusto/smokinfo/bfsmokinfoyn") == "Y") {
  1547. cmb_nosmokcnst.disabled = false;
  1548. ipt_nosmokcnstnm.disabled = false;
  1549. }else{
  1550. cmb_nosmokcnst.disabled = true;
  1551. ipt_nosmokcnstnm.disabled = true;
  1552. model.resetInstanceNode("/root/main/wardrecinfo/gustoinfo/gusto/smokinfo/nosmokcnst");
  1553. model.resetInstanceNode("/root/main/wardrecinfo/gustoinfo/gusto/smokinfo/nosmokcnstnm");
  1554. }
  1555. } else {
  1556. cmb_nosmokcnst.disabled = true;
  1557. ipt_nosmokcnstnm.disabled = true;
  1558. model.resetInstanceNode("/root/main/wardrecinfo/gustoinfo/gusto/smokinfo/nosmokcnst");
  1559. model.resetInstanceNode("/root/main/wardrecinfo/gustoinfo/gusto/smokinfo/nosmokcnstnm");
  1560. }
  1561. cmb_nosmokcnst.refresh();
  1562. ipt_nosmokcnstnm.refresh();
  1563. ]]>
  1564. </script>
  1565. </select1>
  1566. <line id="line44" class="line_2" style="x1:614px; y1:382px; x2:968px; y2:382px; "/>
  1567. <caption id="cap_smokinfo" class="cell_1" style="left:615px; top:343px; width:79px; height:38px; text-align:left; ">흡연정보</caption>
  1568. <line id="line45" class="line_2" style="x1:614px; y1:408px; x2:968px; y2:408px; "/>
  1569. <caption id="caption5" class="cell_1" style="left:615px; top:382px; width:79px; height:49px; ">금연상담여부</caption>
  1570. <caption id="caption9" class="cell_1" style="left:5px; top:482px; width:85px; height:23px; ">기타 전화번호</caption>
  1571. <input id="input1" ref="/root/main/wardrecinfo/tel" style="left:93px; top:459px; width:87px; height:19px; "/>
  1572. <input id="input2" ref="/root/main/wardrecinfo/mphone" style="left:185px; top:459px; width:90px; height:19px; "/>
  1573. <input id="input3" ref="/root/main/wardrecinfo/etcphone1" style="left:93px; top:483px; width:87px; height:19px; "/>
  1574. <input id="input4" ref="/root/main/wardrecinfo/etcphone2" style="left:185px; top:483px; width:90px; height:19px; "/>
  1575. <line id="line35" class="line_3" style="x1:5px; y1:527px; x2:276px; y2:527px; "/>
  1576. <caption id="caption11" class="cell_1" style="left:5px; top:458px; width:85px; height:23px; ">연락처/휴대폰</caption>
  1577. <caption id="caption7" class="cell_1" style="left:5px; top:506px; width:85px; height:21px; vertical-align:middle; ">입원시동반자</caption>
  1578. <select1 id="rdo_inacompstyn" ref="/root/main/wardrecinfo/inacompstyn" appearance="full" cellspacing="5" cols="2" overflow="visible" style="left:94px; top:510px; width:66px; height:13px; border-style:none; ">
  1579. <choices>
  1580. <item>
  1581. <label>무</label>
  1582. <value>1</value>
  1583. </item>
  1584. <item>
  1585. <label>유</label>
  1586. <value>2</value>
  1587. </item>
  1588. </choices>
  1589. <script type="javascript" ev:event="xforms-value-changed">
  1590. <![CDATA[
  1591. if(model.getValue("/root/main/wardrecinfo/inacompstyn") == "2") {
  1592. cmb_inacompstcd.disabled = false;
  1593. ipt_inacompst.disabled = true;
  1594. cmb_inacompstcd.refresh();
  1595. ipt_inacompst.refresh();
  1596. } else {
  1597. cmb_inacompstcd.disabled = true;
  1598. ipt_inacompst.disabled = true;
  1599. model.resetInstanceNode("/root/main/wardrecinfo/inacompstcd");
  1600. model.resetInstanceNode("/root/main/wardrecinfo/inacompstnm");
  1601. cmb_inacompstcd.refresh();
  1602. ipt_inacompst.refresh();
  1603. }
  1604. ]]>
  1605. </script>
  1606. </select1>
  1607. <line id="line2" class="line_1" style="x1:5px; y1:551px; x2:276px; y2:551px; "/>
  1608. <caption id="caption62" class="tit_2" style="left:10px; top:10px; width:100px; height:13px; vertical-align:middle; background-image:../../../com/commonweb/images/tit_bullet2.gif; ">Triage 기록</caption>
  1609. <line id="line11" class="line_1" style="x1:5px; y1:25px; x2:612px; y2:25px; "/>
  1610. <input id="ipt_inacompst" ref="/root/main/wardrecinfo/inacompstnm" style="left:219px; top:507px; width:56px; height:19px; "/>
  1611. <line id="line3" class="line_3" style="x1:5px; y1:380px; x2:210px; y2:380px; "/>
  1612. <caption id="cap_uncnfm" style="left:301px; top:4px; width:114px; height:20px; font-weight:bold; ">* Triage Level :</caption>
  1613. <input id="caption28" ref="/root/main/wardrecinfo/serdiagflag" appearance="input" style="left:415px; top:4px; width:57px; height:19px; font-family:돋움; "/>
  1614. <select1 id="cmb_injmechflag" ref="/root/main/wardrecinfo/injmechflag" appearance="minimal" style="left:93px; top:384px; width:117px; height:19px; ">
  1615. <choices>
  1616. <itemset nodeset="/root/init/mlist/M0122">
  1617. <label ref="cdnm"/>
  1618. <value ref="cdid"/>
  1619. </itemset>
  1620. </choices>
  1621. <script type="javascript" ev:event="onkeypress">
  1622. <![CDATA[
  1623. fNextMoveCtrl("cmb_chospathflag");
  1624. ]]>
  1625. </script>
  1626. </select1>
  1627. <select1 id="cmb_pain" ref="/root/main/wardrecinfo/painflag" appearance="minimal" style="left:93px; top:216px; width:117px; height:19px; ">
  1628. <choices>
  1629. <itemset>
  1630. <label ref="cdnm"/>
  1631. <value ref="cdid"/>
  1632. </itemset>
  1633. <!--itemset nodeset="/root/init/mlist/M0126">
  1634. <label ref="cdnm"/>
  1635. <value ref="cdid"/>
  1636. </itemset-->
  1637. </choices>
  1638. <script type="javascript" ev:event="onkeypress">
  1639. <![CDATA[
  1640. fNextMoveCtrl("ipt_highbp");
  1641. ]]>
  1642. </script>
  1643. </select1>
  1644. <select1 id="cmb_choswayflag" ref="/root/main/wardrecinfo/choswayflag" appearance="minimal" style="left:93px; top:309px; width:117px; height:19px; ">
  1645. <choices>
  1646. <itemset nodeset="/root/init/mlist/M0119">
  1647. <label ref="cdnm"/>
  1648. <value ref="cdid"/>
  1649. </itemset>
  1650. </choices>
  1651. <script type="javascript" ev:event="onkeypress">
  1652. <![CDATA[
  1653. fNextMoveCtrl("cmb_chosresnflag");
  1654. ]]>
  1655. </script>
  1656. </select1>
  1657. <input id="ipt_mntpulsecnt" ref="/root/main/wardrecinfo/mntpulsecnt" navindex="10" maxlength="3" style="left:93px; top:262px; width:117px; height:19px; ">
  1658. <script type="javascript" ev:event="onkeypress">
  1659. <![CDATA[
  1660. fNextMoveCtrl("ipt_mntbrethcnt");
  1661. ]]>
  1662. </script>
  1663. </input>
  1664. <button id="button4" class="btn2_letter4" visibility="hidden" style="left:413px; top:153px; width:64px; height:19px; ">
  1665. <caption>중증응급</caption>
  1666. <script type="javascript" ev:event="DOMActivate">
  1667. <![CDATA[
  1668. var pid = model.getValue("/root/temp/cond/list/pid");
  1669. var indd = model.getValue("/root/temp/cond/list/indd");
  1670. var cretno = model.getValue("/root/temp/cond/list/cretno");
  1671. var hngnm = model.getValue("/root/temp/cond/list/hngnm");
  1672. if(pid == "" || indd == "" || cretno == "" || hngnm == ""){
  1673. return;
  1674. }
  1675. setParameter("SPMNE04600_pid", pid);
  1676. setParameter("SPMNE04600_indd", indd);
  1677. setParameter("SPMNE04600_cretno", cretno);
  1678. setParameter("SPMNE04600_hngnm", hngnm);
  1679. open("SPMNE04600");
  1680. ]]>
  1681. </script>
  1682. </button>
  1683. <caption id="caption30" class="cell_1" style="left:5px; top:127px; width:85px; height:23px; vertical-align:middle; ">초진진료일자</caption>
  1684. <select1 id="cmb_chospathflag" ref="/root/main/wardrecinfo/chospathflag" appearance="minimal" style="left:93px; top:407px; width:117px; height:19px; ">
  1685. <choices>
  1686. <itemset nodeset="/root/init/mlist/M0118">
  1687. <label ref="cdnm"/>
  1688. <value ref="cdid"/>
  1689. </itemset>
  1690. </choices>
  1691. <script type="javascript" ev:event="onkeypress">
  1692. <![CDATA[
  1693. fNextMoveCtrl("chk_acdownflag");
  1694. ]]>
  1695. </script>
  1696. </select1>
  1697. <button id="button5" class="btn2_letter2" style="left:368px; top:153px; width:42px; height:19px; ">
  1698. <caption>미상</caption>
  1699. <script type="javascript" ev:event="DOMActivate">
  1700. <![CDATA[
  1701. model.setValue("/root/main/wardrecinfo/attackdd", "00000000");
  1702. model.setValue("/root/main/wardrecinfo/attacktm", "0000");
  1703. model.refresh();
  1704. ]]>
  1705. </script>
  1706. </button>
  1707. <input id="ipt_highbp" ref="/root/main/wardrecinfo/highbp" navindex="8" maxlength="3" style="left:93px; top:238px; width:117px; height:19px; ">
  1708. <script type="javascript" ev:event="onkeypress">
  1709. <![CDATA[
  1710. fNextMoveCtrl("ipt_lowbp");
  1711. ]]>
  1712. </script>
  1713. </input>
  1714. <caption id="caption31" class="cell_1" style="left:215px; top:127px; width:80px; height:23px; vertical-align:middle; ">초진진료시간</caption>
  1715. <caption id="caption20" class="cell_1" style="left:215px; top:151px; width:80px; height:23px; vertical-align:middle; ">발병시간</caption>
  1716. <input id="ipt_mntbrethcnt" ref="/root/main/wardrecinfo/mntbrethcnt" navindex="11" maxlength="2" style="left:298px; top:263px; width:107px; height:19px; ">
  1717. <script type="javascript" ev:event="onkeypress">
  1718. <![CDATA[
  1719. fNextMoveCtrl("ipt_chosbdtp");
  1720. ]]>
  1721. </script>
  1722. </input>
  1723. <input id="input11" ref="/root/main/wardrecinfo/mainsympcd" disabled="true" visibility="hidden" style="left:417px; top:33px; width:100px; height:19px; "/>
  1724. <button id="btn_prcpclsnm" class="icon_search" style="left:398px; top:34px; width:16px; height:16px; ">
  1725. <caption/>
  1726. <script type="javascript" ev:event="DOMActivate">
  1727. <![CDATA[
  1728. /*
  1729. modal("SPMMO06200");
  1730. var chUseYN = getParameter("SPMMO06200_rtn_useyn");
  1731. if(chUseYN == "Y"){
  1732. var sRtnUMLSCC = getParameter("SPMMO06200_rtn_umlscclist");
  1733. var sRtnVal = sRtnUMLSCC.split("▦");
  1734. model.setValue("/root/main/wardrecinfo/mainsympcd" , sRtnVal[0]);
  1735. model.setValue("/root/main/wardrecinfo/mainsympcdno", sRtnVal[1]);
  1736. model.setValue("/root/main/wardrecinfo/mainsympnm" , sRtnVal[4]);
  1737. }
  1738. model.refresh();
  1739. */
  1740. //messageBox("당분간 주증상을 변경하실수 없습니다.", "I");
  1741. //return;
  1742. modal("SPMRF04200");
  1743. setParameter("SPMRF04200_param_nodepath", "");
  1744. model.setValue("/root/main/wardrecinfo/mainsympcd" , model.getValue("/root/temp/selectdiaglist/umlscd"));
  1745. model.setValue("/root/main/wardrecinfo/mainsympcdno", 0);
  1746. model.setValue("/root/main/wardrecinfo/mainsympnm" , model.getValue("/root/temp/selectdiaglist/termengnm"));
  1747. model.makeValue("/root/temp/selectdiaglist/umlscd", "");
  1748. model.makeValue("/root/temp/selectdiaglist/termengnm", "");
  1749. //상단정보 재조회
  1750. model.makeNode("/root/temp/cond/list");
  1751. getPatientInfoDetails("/root/temp/cond/list");
  1752. model.refresh();
  1753. ]]>
  1754. </script>
  1755. </button>
  1756. <caption id="caption21" class="cell_1" style="left:5px; top:357px; width:85px; height:23px; vertical-align:middle; ">의도성여부</caption>
  1757. <caption id="caption2" class="cell_1" style="left:5px; top:175px; width:85px; height:23px; vertical-align:middle; ">의식</caption>
  1758. <input id="ipt_attacktm" ref="/root/main/wardrecinfo/attacktm" autonext="false" format="hh:nn" style="left:298px; top:153px; width:67px; height:19px; ">
  1759. <script type="javascript" ev:event="onkeypress">
  1760. <![CDATA[
  1761. fNextMoveCtrl("cmb_cscs");
  1762. ]]>
  1763. </script>
  1764. </input>
  1765. <caption id="caption22" class="cell_1" style="left:5px; top:382px; width:85px; height:23px; vertical-align:middle; ">손상기전</caption>
  1766. <caption id="caption3" class="cell_1" style="left:5px; top:236px; width:85px; height:23px; vertical-align:middle; ">수축기혈압</caption>
  1767. <caption id="caption12" class="cell_1" style="left:5px; top:406px; width:85px; height:23px; vertical-align:middle; ">내원경로</caption>
  1768. <caption id="caption14" class="cell_1" style="left:5px; top:260px; width:85px; height:23px; vertical-align:middle; ">분당맥박수</caption>
  1769. <button id="btn_curtime" class="btn2_letter4" style="left:368px; top:129px; width:64px; height:19px; ">
  1770. <caption>현재시간</caption>
  1771. <script type="javascript" ev:event="DOMActivate">
  1772. <![CDATA[
  1773. model.setValue("/root/main/wardrecinfo/fstexamorddd", getCurrentDate());
  1774. model.setValue("/root/main/wardrecinfo/fstexamordtm", getCurrentTime().substring(0,4));
  1775. model.refresh();
  1776. ]]>
  1777. </script>
  1778. </button>
  1779. <select1 id="cmb_chosresnflag" ref="/root/main/wardrecinfo/chosresnflag" appearance="minimal" style="left:93px; top:335px; width:117px; height:19px; ">
  1780. <choices>
  1781. <itemset nodeset="/root/init/mlist/M0120">
  1782. <label ref="cdnm"/>
  1783. <value ref="cdid"/>
  1784. </itemset>
  1785. </choices>
  1786. <script type="javascript" ev:event="onkeypress">
  1787. <![CDATA[
  1788. fNextMoveCtrl("cmb_intenflag");
  1789. ]]>
  1790. </script>
  1791. <script type="javascript" ev:event="xforms-value-changed">
  1792. <![CDATA[
  1793. fChngChosResnFlag();
  1794. ]]>
  1795. </script>
  1796. </select1>
  1797. <input id="ipt_lowbp" ref="/root/main/wardrecinfo/lowbp" navindex="9" maxlength="3" style="left:298px; top:238px; width:107px; height:19px; ">
  1798. <script type="javascript" ev:event="onkeypress">
  1799. <![CDATA[
  1800. fNextMoveCtrl("ipt_mntpulsecnt");
  1801. ]]>
  1802. </script>
  1803. </input>
  1804. <select1 id="cmb_cscs" ref="/root/main/wardrecinfo/cscsflag" appearance="minimal" style="left:93px; top:176px; width:117px; height:19px; ">
  1805. <choices>
  1806. <itemset nodeset="/root/init/mlist/M0117">
  1807. <label ref="cdnm"/>
  1808. <value ref="cdid"/>
  1809. </itemset>
  1810. </choices>
  1811. <script type="javascript" ev:event="onkeypress">
  1812. <![CDATA[
  1813. fNextMoveCtrl("cmb_pain");
  1814. ]]>
  1815. </script>
  1816. </select1>
  1817. <input id="ipt_mainsynm" ref="/root/main/wardrecinfo/mainsympnm" disabled="true" style="left:93px; top:32px; width:302px; height:19px; "/>
  1818. <caption id="caption15" class="cell_1" style="left:5px; top:308px; width:85px; height:23px; vertical-align:middle; ">내원수단</caption>
  1819. <caption id="caption16" class="cell_1" style="left:5px; top:284px; width:85px; height:23px; vertical-align:middle; ">내원시 체온</caption>
  1820. <caption id="caption17" class="cell_1" style="left:5px; top:333px; width:85px; height:23px; vertical-align:middle; ">내원사유</caption>
  1821. <caption id="caption29" class="cell_1" style="left:5px; top:199px; width:85px; height:36px; vertical-align:middle; ">통증</caption>
  1822. <input id="ipt_chosbdtp" ref="/root/main/wardrecinfo/chosbdtp" navindex="12" style="left:93px; top:286px; width:117px; height:19px; ">
  1823. <script type="javascript" ev:event="onkeypress">
  1824. <![CDATA[
  1825. fNextMoveCtrl("ipt_oxyconcen");
  1826. ]]>
  1827. </script>
  1828. </input>
  1829. <input id="input5" ref="/root/main/wardrecinfo/mainsympcdno" disabled="true" visibility="hidden" style="left:519px; top:33px; width:89px; height:19px; "/>
  1830. <caption id="caption32" class="cell_1" style="left:215px; top:236px; width:80px; height:23px; vertical-align:middle; ">이완기혈압</caption>
  1831. <caption id="caption33" class="cell_1" style="left:5px; top:31px; width:85px; height:23px; vertical-align:middle; ">주증상</caption>
  1832. <input id="ipt_attackdd" ref="/root/main/wardrecinfo/attackdd" class="input" inputtype="date" style="left:93px; top:152px; width:117px; height:19px; ">
  1833. <script type="javascript" ev:event="onkeypress">
  1834. <![CDATA[
  1835. fNextMoveCtrl("ipt_attacktm");
  1836. ]]>
  1837. </script>
  1838. </input>
  1839. <caption id="caption34" class="cell_1" style="left:215px; top:260px; width:80px; height:23px; vertical-align:middle; ">분당호흡수</caption>
  1840. <caption id="caption35" class="cell_1" style="left:5px; top:151px; width:85px; height:23px; vertical-align:middle; ">발병일자</caption>
  1841. <input id="input7" ref="/root/main/wardrecinfo/fstexamorddd" inputtype="date" style="left:93px; top:128px; width:117px; height:19px; "/>
  1842. <input id="ipt_oxyconcen" ref="/root/main/wardrecinfo/oxyconcen" navindex="13" style="left:298px; top:286px; width:107px; height:19px; ">
  1843. <script type="javascript" ev:event="onkeypress">
  1844. <![CDATA[
  1845. fNextMoveCtrl("cmb_choswayflag");
  1846. ]]>
  1847. </script>
  1848. </input>
  1849. <caption id="caption36" class="cell_1" style="left:215px; top:284px; width:80px; height:23px; vertical-align:middle; ">산소포화도</caption>
  1850. <input id="input8" ref="/root/main/wardrecinfo/fstexamordtm" autonext="false" format="hh:nn" style="left:298px; top:129px; width:67px; height:19px; ">
  1851. <script type="javascript" ev:event="onkeypress">
  1852. <![CDATA[
  1853. fNextMoveCtrl("cmb_cscs");
  1854. ]]>
  1855. </script>
  1856. </input>
  1857. <select1 id="cmb_intenflag" ref="/root/main/wardrecinfo/intenflag" appearance="minimal" style="left:93px; top:359px; width:117px; height:19px; ">
  1858. <choices>
  1859. <itemset nodeset="/root/init/mlist/M0121">
  1860. <label ref="cdnm"/>
  1861. <value ref="cdid"/>
  1862. </itemset>
  1863. </choices>
  1864. <script type="javascript" ev:event="onkeypress">
  1865. <![CDATA[
  1866. fNextMoveCtrl("cmb_injmechflag");
  1867. ]]>
  1868. </script>
  1869. </select1>
  1870. <button id="btn_ophistpop" class="icon_search" style="left:840px; top:225px; width:16px; height:16px; ">
  1871. <script type="javascript" ev:event="DOMActivate">
  1872. <![CDATA[
  1873. setParameter("histflag", "ophist");
  1874. setParameter("pid", model.getValue("/root/temp/cond/list/pid"));
  1875. setParameter("indd", model.getValue("/root/temp/cond/list/indd"));
  1876. setParameter("instcd", model.getValue("/root/temp/cond/list/instcd"));
  1877. open("SPMNW12800");
  1878. ]]>
  1879. </script>
  1880. <caption/>
  1881. </button>
  1882. <select1 id="rdo_smokinfo" ref="/root/main/wardrecinfo/gustoinfo/gusto/smokinfo/smokinfoyn" navindex="33" appearance="full" cols="2" rows="2" vcellspacing="2" overflow="visible" style="left:695px; top:343px; width:133px; height:38px; border-style:none; ">
  1883. <choices>
  1884. <item>
  1885. <label>현재흡연</label>
  1886. <value>4</value>
  1887. </item>
  1888. <item>
  1889. <label>과거흡연</label>
  1890. <value>2</value>
  1891. </item>
  1892. <item>
  1893. <label>비흡연</label>
  1894. <value>1</value>
  1895. </item>
  1896. <item>
  1897. <label>확인불능</label>
  1898. <value>3</value>
  1899. </item>
  1900. </choices>
  1901. <script type="javascript" ev:event="xforms-value-changed">
  1902. <![CDATA[
  1903. /*
  1904. if(model.getValue("/root/main/wardrecinfo/gustoinfo/gusto/smokinfo/smokinfoyn") == "2") {
  1905. ipt_smokinfocnt.disabled = false;
  1906. ipt_smokinfocnt.refresh();
  1907. } else {
  1908. ipt_smokinfocnt.disabled = true;
  1909. model.resetInstanceNode("/root/main/wardrecinfo/gustoinfo/gusto/smokinfo/smokinfocnt");
  1910. ipt_smokinfocnt.refresh();
  1911. }
  1912. */
  1913. //입원전1개월이내흡연 체크
  1914. if(model.getValue("/root/main/wardrecinfo/gustoinfo/gusto/smokinfo/smokinfoyn") == "2") {
  1915. rdo_bfsmokinfo.disabled = false;
  1916. } else {
  1917. rdo_bfsmokinfo.disabled = true;
  1918. model.resetInstanceNode("/root/main/wardrecinfo/gustoinfo/gusto/smokinfo/bfsmokinfoyn");
  1919. }
  1920. rdo_bfsmokinfo.refresh();
  1921. //금연상담여부컨트롤
  1922. if(model.getValue("/root/main/wardrecinfo/gustoinfo/gusto/smokinfo/smokinfoyn") == "4") {
  1923. model.setValue("/root/main/wardrecinfo/gustoinfo/gusto/smokinfo/nosmokcnstyn", "2");
  1924. }else if(model.getValue("/root/main/wardrecinfo/gustoinfo/gusto/smokinfo/smokinfoyn") == "2") {
  1925. if(model.getValue("/root/main/wardrecinfo/gustoinfo/gusto/smokinfo/bfsmokinfoyn") == "Y") {
  1926. model.setValue("/root/main/wardrecinfo/gustoinfo/gusto/smokinfo/nosmokcnstyn", "2");
  1927. } else{
  1928. model.setValue("/root/main/wardrecinfo/gustoinfo/gusto/smokinfo/nosmokcnstyn", "1");
  1929. }
  1930. }else{
  1931. model.setValue("/root/main/wardrecinfo/gustoinfo/gusto/smokinfo/nosmokcnstyn", "1");
  1932. }
  1933. rdo_nosmokcnstyn.dispatch("xforms-value-changed");
  1934. rdo_nosmokcnstyn.refresh();
  1935. ]]>
  1936. </script>
  1937. </select1>
  1938. <input id="ipt_smokinfocnt" ref="/root/main/wardrecinfo/gustoinfo/gusto/smokinfo/smokinfocnt" disabled="true" navindex="41" visibility="hidden" style="left:856px; top:318px; width:110px; height:19px; "/>
  1939. <button id="button14" class="btn2_letter6" style="left:408px; top:238px; width:86px; height:19px; ">
  1940. <caption>측정하지 않음</caption>
  1941. <script type="javascript" ev:event="DOMActivate">
  1942. <![CDATA[
  1943. model.setValue("/root/main/wardrecinfo/highbp", "-");
  1944. model.setValue("/root/main/wardrecinfo/lowbp", "-");
  1945. model.setValue("/root/main/wardrecinfo/mntpulsecnt", "-");
  1946. model.setValue("/root/main/wardrecinfo/mntbrethcnt", "-");
  1947. model.setValue("/root/main/wardrecinfo/chosbdtp", "-");
  1948. model.refresh();
  1949. ]]>
  1950. </script>
  1951. </button>
  1952. <button id="btn_lnkTriage" class="btn2_letter8" style="left:504px; top:5px; width:108px; height:19px; ">
  1953. <caption>Triage 기록 연동</caption>
  1954. <script type="javascript" ev:event="DOMActivate">
  1955. <![CDATA[
  1956. sSrchHistCd = "D";
  1957. var pid = model.getValue("/root/temp/cond/list/pid");
  1958. var indd = model.getValue("/root/temp/cond/list/indd");
  1959. var cretno = model.getValue("/root/temp/cond/list/cretno");
  1960. var instcd = model.getValue("/root/temp/cond/list/instcd");
  1961. var orddeptcd = model.getValue("/root/temp/cond/list/orddeptcd");
  1962. model.makeValue("/root/send/req/pid", pid);
  1963. model.makeValue("/root/send/req/indd", indd);
  1964. model.makeValue("/root/send/req/cretno", cretno);
  1965. model.makeValue("/root/send/req/instcd", instcd);
  1966. model.makeValue("/root/send/req/recflag", "10");
  1967. model.makeValue("/root/send/req/docucode", "0800000290");
  1968. model.makeValue("/root/send/req/deptcd", orddeptcd);
  1969. fAlertTriageChng();
  1970. model.refresh();
  1971. ]]>
  1972. </script>
  1973. </button>
  1974. <button id="button1" class="icon_search" style="left:398px; top:58px; width:16px; height:16px; ">
  1975. <caption/>
  1976. <script type="javascript" ev:event="DOMActivate">
  1977. <![CDATA[
  1978. modal("SPMRF04200");
  1979. setParameter("SPMRF04200_param_nodepath", "");
  1980. model.makeValue("/root/main/wardrecinfo/mainsympcd1" , model.getValue("/root/temp/selectdiaglist/umlscd"));
  1981. model.makeValue("/root/main/wardrecinfo/mainsympcdno1", 0);
  1982. model.makeValue("/root/main/wardrecinfo/mainsympnm1" , model.getValue("/root/temp/selectdiaglist/termengnm"));
  1983. model.makeValue("/root/temp/selectdiaglist/umlscd", "");
  1984. model.makeValue("/root/temp/selectdiaglist/termengnm", "");
  1985. //상단정보 재조회
  1986. model.makeNode("/root/temp/cond/list");
  1987. getPatientInfoDetails("/root/temp/cond/list");
  1988. model.refresh();
  1989. ]]>
  1990. </script>
  1991. </button>
  1992. <caption id="caption38" class="cell_1" style="left:5px; top:55px; width:85px; height:23px; vertical-align:middle; ">주증상1</caption>
  1993. <input id="ipt_mainsympnm1" ref="/root/main/wardrecinfo/mainsympnm1" disabled="true" style="left:93px; top:56px; width:302px; height:19px; "/>
  1994. <button id="button2" class="icon_search" style="left:398px; top:82px; width:16px; height:16px; ">
  1995. <caption/>
  1996. <script type="javascript" ev:event="DOMActivate">
  1997. <![CDATA[
  1998. modal("SPMRF04200");
  1999. setParameter("SPMRF04200_param_nodepath", "");
  2000. model.makeValue("/root/main/wardrecinfo/mainsympcd2" , model.getValue("/root/temp/selectdiaglist/umlscd"));
  2001. model.makeValue("/root/main/wardrecinfo/mainsympcdno2", 0);
  2002. model.makeValue("/root/main/wardrecinfo/mainsympnm2" , model.getValue("/root/temp/selectdiaglist/termengnm"));
  2003. model.makeValue("/root/temp/selectdiaglist/umlscd", "");
  2004. model.makeValue("/root/temp/selectdiaglist/termengnm", "");
  2005. //상단정보 재조회
  2006. model.makeNode("/root/temp/cond/list");
  2007. getPatientInfoDetails("/root/temp/cond/list");
  2008. model.refresh();
  2009. ]]>
  2010. </script>
  2011. </button>
  2012. <caption id="caption39" class="cell_1" style="left:5px; top:79px; width:85px; height:23px; vertical-align:middle; ">주증상2</caption>
  2013. <input id="ipt_mainsympnm2" ref="/root/main/wardrecinfo/mainsympnm2" disabled="true" style="left:93px; top:80px; width:302px; height:19px; ">ㄴ</input>
  2014. <input id="ipt_etcsymp" ref="/root/main/wardrecinfo/etcsymp" style="left:93px; top:104px; width:302px; height:19px; "/>
  2015. <caption id="caption40" class="cell_1" style="left:5px; top:103px; width:85px; height:23px; vertical-align:middle; ">기타증상</caption>
  2016. <select id="chk_chosgenrcmt1" ref="/root/main/wardrecinfo/choseduinfo/chosedu/chosgenrcmt1" navindex="70" overflow="visible" appearance="full" cellspacing="1" cols="1" vcellspacing="3" style="left:347px; top:463px; width:264px; height:25px; border-style:none; ">
  2017. <choices>
  2018. <item>
  2019. <label>내용 :</label>
  2020. <value>1</value>
  2021. </item>
  2022. </choices>
  2023. </select>
  2024. <select id="chk_bedsoreprvn" ref="/root/main/wardrecinfo/choseduinfo/chosedu/bedsoreprvn" overflow="visible" appearance="full" cols="4" style="left:347px; top:582px; width:263px; height:13px; border-style:none; ">
  2025. <choices>
  2026. <itemset nodeset="/root/codeinfo/codeinfo/codelist[cdgrupid ='187']">
  2027. <label ref="cdnm"/>
  2028. <value ref="cdid"/>
  2029. </itemset>
  2030. <!--item>
  2031. <label>해당없음</label>
  2032. <value>1</value>
  2033. </item>
  2034. <item>
  2035. <label>무</label>
  2036. <value>9</value>
  2037. </item>
  2038. <item>
  2039. <label>유</label>
  2040. <value>2</value>
  2041. </item>
  2042. <item>
  2043. <label>발생가능성 있음</label>
  2044. <value>4</value>
  2045. </item>
  2046. <item>
  2047. <label>교육자료 제공</label>
  2048. <value>3</value>
  2049. </item-->
  2050. </choices>
  2051. </select>
  2052. <select id="chk_chosgenrcmt2" ref="/root/main/wardrecinfo/choseduinfo/chosedu/chosgenrcmt2" navindex="70" overflow="visible" appearance="full" cols="2" vcellspacing="3" style="left:347px; top:488px; width:264px; height:60px; border-style:none; ">
  2053. <choices>
  2054. <item>
  2055. <label>해당없음</label>
  2056. <value>1</value>
  2057. </item>
  2058. <item>
  2059. <label>교육실시</label>
  2060. <value>2</value>
  2061. </item>
  2062. <item>
  2063. <label>안내자료배부</label>
  2064. <value>3</value>
  2065. </item>
  2066. <item>
  2067. <label>설명거부</label>
  2068. <value>4</value>
  2069. </item>
  2070. <item>
  2071. <label>설명할 수 없는 상태/보호자 부재</label>
  2072. <value>5</value>
  2073. </item>
  2074. </choices>
  2075. </select>
  2076. <select id="chk_edutrgt" ref="/root/main/wardrecinfo/choseduinfo/chosedu/edutrgt" overflow="visible" appearance="full" cellspacing="44" cols="2" style="left:347px; top:606px; width:172px; height:13px; border-style:none; ">
  2077. <choices>
  2078. <item>
  2079. <label>환자</label>
  2080. <value>1</value>
  2081. </item>
  2082. <item>
  2083. <label>보호자</label>
  2084. <value>2</value>
  2085. </item>
  2086. </choices>
  2087. </select>
  2088. <caption id="caption10" class="cell_1" style="left:277px; top:458px; width:68px; height:95px; vertical-align:middle; ">일반사항</caption>
  2089. <caption id="chosgenrcmt11" style="left:402px; top:458px; width:199px; height:35px; font-family:돋움; ">접수안내/도난방지/보호자1인상주/핸드폰사용제한/화재예방(O2주의)</caption>
  2090. <caption id="caption24" class="cell_1" style="left:277px; top:602px; width:68px; height:23px; vertical-align:middle; ">교육대상자</caption>
  2091. <caption id="caption26" class="cell_1" style="left:277px; top:578px; width:68px; height:23px; vertical-align:middle; ">욕창 예방</caption>
  2092. <caption id="caption8" class="tit_2" style="left:277px; top:438px; width:104px; height:13px; ">내원시 교육</caption>
  2093. <line id="line5" class="line_1" style="x1:277px; y1:453px; x2:613px; y2:453px; "/>
  2094. <select id="chk_acdownflag" ref="/root/main/wardrecinfo/acdownflag" overflow="visible" appearance="full" style="left:503px; top:316px; width:107px; height:17px; border-style:none; ">
  2095. <choices>
  2096. <item>
  2097. <label>교통사고당사자</label>
  2098. <value>Y</value>
  2099. </item>
  2100. </choices>
  2101. <script type="javascript" ev:event="xforms-value-changed">
  2102. <![CDATA[
  2103. if(chk_acdownflag.value == "Y"){
  2104. rdo_acdowndetailflag.disabled = false;
  2105. chk_proceqmtflag.disabled = false;
  2106. }else{
  2107. rdo_acdowndetailflag.value = "";
  2108. rdo_acdowndetailflag.disabled = true;
  2109. chk_proceqmtflag.value = "";
  2110. chk_proceqmtflag.disabled = true;
  2111. }
  2112. ]]>
  2113. </script>
  2114. </select>
  2115. <caption id="caption41" class="tit_2" style="left:277px; top:316px; width:80px; height:13px; vertical-align:middle; ">보호장구</caption>
  2116. <select id="chk_proceqmtflag" ref="/root/main/wardrecinfo/proceqmtflag" overflow="visible" appearance="full" cellspacing="15" cols="3" rows="3" sep="|" vcellspacing="8" style="left:278px; top:358px; width:332px; height:65px; border-style:none; ">
  2117. <choices>
  2118. <itemset nodeset="/root/init/mlist/M0125">
  2119. <label ref="cdnm"/>
  2120. <value ref="cdid"/>
  2121. </itemset>
  2122. </choices>
  2123. </select>
  2124. <select1 id="rdo_acdowndetailflag" ref="/root/main/wardrecinfo/acdowndetailflag" appearance="full" cellspacing="10" cols="5" overflow="visible" style="left:278px; top:340px; width:332px; height:15px; border-style:none; ">
  2125. <choices>
  2126. <item>
  2127. <label>보행자</label>
  2128. <value>1</value>
  2129. </item>
  2130. <item>
  2131. <label>운전자</label>
  2132. <value>2</value>
  2133. </item>
  2134. <item>
  2135. <label>승객</label>
  2136. <value>3</value>
  2137. </item>
  2138. <item>
  2139. <label>기타</label>
  2140. <value>4</value>
  2141. </item>
  2142. <item>
  2143. <label>미상</label>
  2144. <value>9</value>
  2145. </item>
  2146. </choices>
  2147. </select1>
  2148. <line id="line4" class="line_3" style="x1:5px; y1:429px; x2:611px; y2:429px; "/>
  2149. <line id="line10" class="line_1" style="x1:277px; y1:333px; x2:613px; y2:333px; "/>
  2150. <line id="line12" class="line_2" style="x1:277px; y1:552px; x2:613px; y2:552px; "/>
  2151. <line id="line13" class="line_2" style="x1:277px; y1:578px; x2:613px; y2:578px; "/>
  2152. <line id="line14" class="line_2" style="x1:277px; y1:600px; x2:613px; y2:600px; "/>
  2153. <caption id="caption43" class="tit_2" style="left:620px; top:440px; width:94px; height:13px; ">기타사항</caption>
  2154. <line id="line15" class="line_1" style="x1:615px; y1:455px; x2:969px; y2:455px; "/>
  2155. <textarea id="txt_etcfact" ref="/root/main/wardrecinfo/etcfact" maxlength="1000" style="left:615px; top:460px; width:354px; height:127px; "/>
  2156. <input id="ipt_mainsympcd1" ref="/root/main/wardrecinfo/mainsympcd1" disabled="true" visibility="hidden" style="left:417px; top:58px; width:100px; height:19px; "/>
  2157. <input id="ipt_mainsympcdno1" ref="/root/main/wardrecinfo/mainsympcdno1" disabled="true" visibility="hidden" style="left:519px; top:58px; width:89px; height:19px; "/>
  2158. <input id="ipt_mainsympcd2" ref="/root/main/wardrecinfo/mainsympcd2" disabled="true" visibility="hidden" style="left:417px; top:83px; width:100px; height:19px; "/>
  2159. <input id="ipt_mainsympcdno2" ref="/root/main/wardrecinfo/mainsympcdno2" disabled="true" visibility="hidden" style="left:519px; top:83px; width:89px; height:19px; "/>
  2160. <select1 id="rdo_painflag1" ref="/root/main/wardrecinfo/painflag1" appearance="full" cellspacing="5" cols="5" overflow="visible" style="left:93px; top:200px; width:492px; height:15px; border-style:none; ">
  2161. <choices>
  2162. <itemset nodeset="/root/codeinfo/codeinfo/codelist[cdgrupid ='114' and supcdid='-']">
  2163. <label ref="cdnm"/>
  2164. <value ref="cdid"/>
  2165. </itemset>
  2166. </choices>
  2167. <script type="javascript" ev:event="xforms-value-changed">
  2168. <![CDATA[
  2169. var painflag1= rdo_painflag1.value;//model.getValue("/root/main/ertriage/ertriage/painflag1");
  2170. //model.setValue("/root/main/wardrecinfo/painflag","");
  2171. if ( !isNull(painflag1) && painflag1 != "-" ){
  2172. cmb_pain.choices.itemset.attribute("nodeset") = "/root/codeinfo/codeinfo/codelist[cdgrupid ='114' and supcdid='"+ painflag1 +"']";
  2173. }
  2174. cmb_pain.refresh();
  2175. ]]>
  2176. </script>
  2177. </select1>
  2178. <button id="btn_SPMMO14900" class="btn5_letter4" navindex="69" visibility="hidden" style="left:793px; top:102px; width:64px; height:19px; ">
  2179. <caption>처방조회</caption>
  2180. <script type="javascript" ev:event="DOMActivate">
  2181. <![CDATA[
  2182. open("SPMMO14900");
  2183. ]]>
  2184. </script>
  2185. </button>
  2186. <group id="grp_weight" visibility="hidden" style="left:408px; top:284px; width:116px; height:26px; ">
  2187. <caption id="cap_bdwt" class="cell_1" style="left:0px; top:0px; width:35px; height:23px; ">체중</caption>
  2188. <input id="ipt_bdwt" ref="/root/main/wardrecinfo/bdwt" format="#.#" style="left:38px; top:2px; width:40px; height:19px; "/>
  2189. <caption id="caption44" class="output_fix" style="left:79px; top:2px; width:33px; height:19px; text-align:center; ">Kg</caption>
  2190. </group>
  2191. <select1 id="rdo_bfsmokinfo" ref="/root/main/wardrecinfo/gustoinfo/gusto/smokinfo/bfsmokinfoyn" appearance="full" cellspacing="5" cols="2" overflow="visible" style="left:893px; top:365px; width:70px; height:15px; border-style:none; ">
  2192. <choices>
  2193. <item>
  2194. <label>무</label>
  2195. <value>N</value>
  2196. </item>
  2197. <item>
  2198. <label>유</label>
  2199. <value>Y</value>
  2200. </item>
  2201. </choices>
  2202. <script type="javascript" ev:event="xforms-value-changed">
  2203. <![CDATA[
  2204. rdo_smokinfo.dispatch("xforms-value-changed");
  2205. ]]>
  2206. </script>
  2207. </select1>
  2208. <caption id="caption45" style="left:833px; top:365px; width:60px; height:15px; ">흡연여부 :</caption>
  2209. <caption id="caption46" style="left:824px; top:343px; width:13px; height:19px; text-align:center; ">(</caption>
  2210. <caption id="caption47" style="left:958px; top:365px; width:13px; height:19px; text-align:center; ">)</caption>
  2211. <caption id="caption48" style="left:835px; top:343px; width:95px; height:20px; ">입원전1개월이내</caption>
  2212. <caption id="caption19" class="cell_1" style="left:277px; top:554px; width:68px; height:23px; vertical-align:middle; ">
  2213. <![CDATA[낙상고위험]]>
  2214. <script type="javascript" ev:event="onmouseover">
  2215. <![CDATA[
  2216. grp_fallriskscreening.visible = true;
  2217. ]]>
  2218. </script>
  2219. <script type="javascript" ev:event="onmouseout">
  2220. <![CDATA[
  2221. grp_fallriskscreening.visible = false;
  2222. ]]>
  2223. </script>
  2224. </caption>
  2225. <select1 id="rdo_fallhighriskflag" ref="/root/main/wardrecinfo/choseduinfo/chosedu/fallhighriskflag" appearance="full" cellspacing="3" cols="5" overflow="visible" style="left:348px; top:557px; width:58px; height:15px; border-style:none; ">
  2226. <choices>
  2227. <item>
  2228. <label>Y</label>
  2229. <value>Y</value>
  2230. </item>
  2231. <item>
  2232. <label>N</label>
  2233. <value>N</value>
  2234. </item>
  2235. </choices>
  2236. </select1>
  2237. <caption id="caption37" class="cell_1" style="left:411px; top:553px; width:80px; height:23px; vertical-align:middle; ">낙상예방활동</caption>
  2238. <select1 id="rdo_fallpreventactflag" ref="/root/main/wardrecinfo/choseduinfo/chosedu/fallpreventactflag" appearance="full" cellspacing="3" cols="5" overflow="visible" style="left:494px; top:558px; width:118px; height:15px; border-style:none; ">
  2239. <choices>
  2240. <item>
  2241. <label>Y</label>
  2242. <value>Y</value>
  2243. </item>
  2244. <item>
  2245. <label>N</label>
  2246. <value>N</value>
  2247. </item>
  2248. <item>
  2249. <label>해당무</label>
  2250. <value>U</value>
  2251. </item>
  2252. </choices>
  2253. </select1>
  2254. <line id="line7" class="line_2" style="x1:277px; y1:625px; x2:613px; y2:625px; "/>
  2255. <group id="grp_fallriskscreening" visibility="hidden" style="left:277px; top:366px; width:370px; height:185px; ">
  2256. <caption id="caption56" class="cell_1" style="left:1px; top:138px; width:368px; height:46px; vertical-align:middle; "/>
  2257. <caption id="caption55" class="cell_1" style="left:0px; top:1px; width:369px; height:24px; vertical-align:middle; "/>
  2258. <caption id="capnrs21" navindex="43" visibility="visible" disabled="true" appearance="caption" style="left:15px; top:25px; width:352px; height:30px; ">1. 환자는 상해나 질병으로 걸을 수 없거나 도움이 필요합니까?</caption>
  2259. <caption id="caption49" navindex="43" visibility="visible" disabled="true" appearance="caption" style="left:15px; top:50px; width:350px; height:30px; ">2. 신체 균형에 영향을 줄 수 있는 내과적 문제나 신체적 장애와</caption>
  2260. <caption id="caption50" navindex="43" visibility="visible" disabled="true" appearance="caption" style="left:24px; top:88px; width:275px; height:30px; ">(예를 들면, 변화된 의식 수준, 당뇨병, 신경결함)</caption>
  2261. <caption id="caption51" navindex="43" visibility="visible" disabled="true" appearance="caption" style="left:15px; top:111px; width:352px; height:30px; ">3. 환자는 경련의 증상이 있습니까?</caption>
  2262. <caption id="caption52" navindex="43" visibility="visible" disabled="true" appearance="caption" style="left:7px; top:145px; width:353px; height:30px; text-align:center; ">
  2263. <![CDATA[한 개 문항이상 해당되면 낙상 고위험 환자로 간주하고
  2264. 고위험 환자의 낙상 예방 활동을 시행]]>
  2265. </caption>
  2266. <caption id="caption53" navindex="43" visibility="visible" disabled="true" appearance="caption" style="left:45px; top:0px; width:280px; height:30px; font-weight:bold; text-align:center; ">응급의료센터 환자 낙상위험 Screening</caption>
  2267. <caption id="caption54" navindex="43" visibility="visible" disabled="true" appearance="caption" style="left:29px; top:69px; width:275px; height:30px; ">관련된 주증상이 있습니까?</caption>
  2268. <shape id="rectangle1" appearance="rectangle" style="left:0px; top:0px; width:370px; height:185px; "/>
  2269. <line id="line17" style="x1:0px; y1:25px; x2:369px; y2:25px; "/>
  2270. <line id="line16" style="x1:0px; y1:138px; x2:369px; y2:138px; "/>
  2271. </group>
  2272. <line id="line6" class="line_3" style="x1:277px; y1:625px; x2:613px; y2:625px; "/>
  2273. <input id="input6" ref="/root/main/wardrecinfo/initvsdd" inputtype="date" style="left:298px; top:177px; width:117px; height:19px; "/>
  2274. <input id="input9" ref="/root/main/wardrecinfo/initvstm" autonext="false" format="hh:nn" style="left:503px; top:178px; width:67px; height:19px; "/>
  2275. <caption id="caption25" class="cell_1" style="left:215px; top:175px; width:80px; height:23px; vertical-align:middle; ">init V/S일자</caption>
  2276. <caption id="caption57" class="cell_1" style="left:420px; top:175px; width:80px; height:23px; vertical-align:middle; ">init V/S시간</caption>
  2277. </xhtml:body>
  2278. </xhtml:html>