SMMRT00200_진단용어관리.xrw 77 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782
  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>진단용어 관리</xhtml:title>
  6. <model id="model1">
  7. <instance id="instance1">
  8. <root xmlns="">
  9. <main>
  10. <indxlist>
  11. <item>
  12. <depth/>
  13. <indxcd/>
  14. <upindxcd/>
  15. <indxhngnm/>
  16. <pathcd/>
  17. <indxdrdiflag/>
  18. </item>
  19. </indxlist>
  20. <diagcdinfo>
  21. <diagcd>
  22. <termuseyn/>
  23. <state>-</state>
  24. <icd10cd/>
  25. <diagattrcd/>
  26. <termcd/>
  27. <alttermcd/>
  28. <snmdcnptid/>
  29. <snmddescid/>
  30. <umlscd/>
  31. <termengnm/>
  32. <termhngnm/>
  33. <reprflag/>
  34. <lglydisflag/>
  35. <chrncsickyn/>
  36. <estmexptyn/>
  37. <serdiagclsyn/>
  38. <manwomflag/>
  39. <cncryn/>
  40. <diagattrdrindxcd/>
  41. <diagattrmedireccd/>
  42. <diagattrverflag/>
  43. <termfromdd/>
  44. <termtodd/>
  45. <termflag/>
  46. <fstrgstrid/>
  47. <fstrgstdt/>
  48. <attrfromdd/>
  49. <attrtodd/>
  50. <icdfromdd/>
  51. <lastupdtrid/>
  52. <lastupdtrnm/>
  53. <lastupdtdt/>
  54. <essntermflag/>
  55. </diagcd>
  56. <deptdiag/>
  57. <kcd4m>
  58. <state/>
  59. <morphlgccd/>
  60. <kcd4mseqno/>
  61. <indxcd/>
  62. <snmdcnptid/>
  63. <snmdcnptnm/>
  64. <kcd4mengnm/>
  65. <kcd4mhngnm/>
  66. <kcd4mfromdd/>
  67. <kcd4mtodd/>
  68. <lastupdtdt/>
  69. <lastupdtrnm/>
  70. <fstrgstrid/>
  71. <fstrgstdt/>
  72. <lastupdtrid/>
  73. </kcd4m>
  74. <icd10cd>
  75. <state>-</state>
  76. <icd10cd/>
  77. <icd10drindxcd/>
  78. <icd10medireccd/>
  79. <icd10engnm/>
  80. <icd10hngnm/>
  81. <icd10seqno/>
  82. <icd10fromdd/>
  83. <icd10todd/>
  84. <fstrgstrid/>
  85. <fstrgstdt/>
  86. <lastupdtrid/>
  87. <lastupdtdt/>
  88. <oldfromdd/>
  89. <oldtodd/>
  90. </icd10cd>
  91. </diagcdinfo>
  92. <peprterminfo>
  93. <info>
  94. <icd10cd/>
  95. <diagattrcd/>
  96. <termcd/>
  97. <snmdcnptid/>
  98. <snmdcnptnm/>
  99. <snmddescid/>
  100. <termengnm/>
  101. <termhngnm/>
  102. <diagattrdrindxcd/>
  103. <diagattrmedireccd/>
  104. <lglydisflag/>
  105. <chrncsickyn>N</chrncsickyn>
  106. <estmexptyn>N</estmexptyn>
  107. <serdiagclsyn>N</serdiagclsyn>
  108. <manwomflag>A</manwomflag>
  109. <diagattrverflag/>
  110. <reprflag/>
  111. <termflag>0</termflag>
  112. <termtodd/>
  113. <termfromdd/>
  114. <fstrgstdt/>
  115. <fstrgstdate/>
  116. <fstrgsttime/>
  117. <fstrgstrid/>
  118. <attrfromdd/>
  119. <attrtodd/>
  120. <icdfromdd/>
  121. <ageflag/>
  122. <cncryn/>
  123. <umlscd/>
  124. <alttermcd/>
  125. <appinstcd/>
  126. <essntermflag/>
  127. </info>
  128. </peprterminfo>
  129. <kcd4minfo>
  130. <info>
  131. <morphlgccd/>
  132. <kcd4mengnm/>
  133. <kcd4mhngnm/>
  134. <indxcd/>
  135. <version/>
  136. <kcd4mfromdd/>
  137. <kcd4mtodd/>
  138. <fstrgstdt/>
  139. <fstrgstrid/>
  140. <lastupdtdt/>
  141. <lastupdtrid/>
  142. <fstrgstdate/>
  143. <fstrgsttime/>
  144. <kcd4mfromdate/>
  145. <kcd4mfromtime/>
  146. <kcd4mtodate/>
  147. <kcd4mtotime/>
  148. <oldkcd4mfromdd/>
  149. <snmdcnptid/>
  150. <snmdcnptnm/>
  151. <kcd4mseqno/>
  152. </info>
  153. </kcd4minfo>
  154. <icd10cdlist>
  155. <info>
  156. <icd10cd/>
  157. </info>
  158. </icd10cdlist>
  159. <sametermlist>
  160. <info>
  161. <instnm/>
  162. <termcd/>
  163. <reprflag/>
  164. <termengnm/>
  165. <termhngnm/>
  166. <snmdcnptid/>
  167. <alttermcd/>
  168. <snmdcnptnm/>
  169. <snmddescid/>
  170. <umlscd/>
  171. <fstrgstdt/>
  172. <termfromdd/>
  173. <termtodd/>
  174. <attrcd/>
  175. <state/>
  176. <termflag/>
  177. <fstrgstrid/>
  178. <attrfromdd/>
  179. <attrtodd/>
  180. <icdfromdd/>
  181. <lastupdtrid/>
  182. <lastupdtrnm/>
  183. <lastupdtdt/>
  184. </info>
  185. </sametermlist>
  186. <deptdiagcdlist>
  187. <deptdiagcdinfo>
  188. <status/>
  189. <termcd/>
  190. <deptindxcd/>
  191. <deptindxnm/>
  192. <termengnm/>
  193. <termhngnm/>
  194. <deptnm/>
  195. <deptcd/>
  196. <deptfromdt/>
  197. <deptindxflag/>
  198. </deptdiagcdinfo>
  199. </deptdiagcdlist>
  200. <srcheddiagcdlist>
  201. <srcheddiagcdinfo>
  202. <check/>
  203. <termcd/>
  204. <termengnm/>
  205. <termhngnm/>
  206. </srcheddiagcdinfo>
  207. </srcheddiagcdlist>
  208. <temp>
  209. </temp>
  210. <kcd4mhist>
  211. <list>
  212. <morphlgccd/>
  213. <kcd4mseqno/>
  214. <indxcd/>
  215. <version/>
  216. <snmdcnptid/>
  217. <snmdcnptnm/>
  218. <kcd4mfromdd/>
  219. <kcd4mtodd/>
  220. <kcd4mengnm/>
  221. <kcd4mhngnm/>
  222. <fstrgstdt/>
  223. <fstrgstrid/>
  224. <lastupdtdt/>
  225. <lastupdtrnm/>
  226. <lastupdtrid/>
  227. <instcd/>
  228. </list>
  229. </kcd4mhist>
  230. </main>
  231. <hidden>
  232. <condition>
  233. <maininstyn/>
  234. <srchflag>C</srchflag>
  235. <srchnm/>
  236. <indxflag>0</indxflag>
  237. <selctedmode>D</selctedmode>
  238. <status>S</status>
  239. <selectedIndx/>
  240. <selectedIndxDepth/>
  241. <selectedicd10/>
  242. <selectedtermcd/>
  243. <selectedIndxPath/>
  244. <indxviewmode>H</indxviewmode>
  245. <sametermmode>U</sametermmode>
  246. <rowcnt/>
  247. <srchindxcd/>
  248. <deptset>
  249. <srchflag>H</srchflag>
  250. <selecteddeptcd/>
  251. <selecteddeptnm/>
  252. <srchnm/>
  253. </deptset>
  254. <srchfromdd/>
  255. <srchtodd/>
  256. <endflag/>
  257. <indxuseflag/>
  258. <allinsthist>-</allinsthist>
  259. <selInstcd/>
  260. </condition>
  261. <reqdata/>
  262. </hidden>
  263. <send>
  264. </send>
  265. <init>
  266. <today/>
  267. <curruntTime/>
  268. <userinfo>
  269. <userid/>
  270. <usernm/>
  271. <instcd/>
  272. </userinfo>
  273. <A0129list>
  274. <A0129>
  275. <cdid/>
  276. <cdnm/>
  277. </A0129>
  278. </A0129list>
  279. <M0382list>
  280. <M0382>
  281. <cdid/>
  282. <cdnm/>
  283. </M0382>
  284. </M0382list>
  285. <M0534list>
  286. </M0534list>
  287. <M0534selcmb>
  288. <M0534/>
  289. </M0534selcmb>
  290. <func>
  291. <mouserght>
  292. <label>색인변경</label>
  293. <value>fModifyIndx</value>
  294. </mouserght>
  295. <trvmouserght>
  296. <label>붙여넣기</label>
  297. <value>fPasteIndx</value>
  298. </trvmouserght>
  299. </func>
  300. <M0534allcmb>
  301. <M0534/>
  302. </M0534allcmb>
  303. </init>
  304. <temp>
  305. <terminfo>
  306. <altterminfo/>
  307. </terminfo>
  308. </temp>
  309. </root>
  310. </instance>
  311. <submission id="TRMRT00201" mediatype="application/x-www-form-urlencoded" method="post" ref="/root/send" resultref="/root/main/indxlist"/>
  312. <submission id="TRMRT00202" mediatype="application/x-www-form-urlencoded" method="post" ref="/root/send" resultref="/root/main/diagcdinfo"/>
  313. <submission id="TRMRT00203" mediatype="application/x-www-form-urlencoded" method="post" ref="/root/send" resultref="/root/main/diagcdinfo"/>
  314. <submission id="TRMRT00204" mediatype="application/x-www-form-urlencoded" method="post" ref="/root/send" resultref="/root/main/diagcdinfo"/>
  315. <submission id="TRMRT00205" mediatype="application/x-www-form-urlencoded" method="post" ref="/root/send" resultref="/root/main/sametermlist"/>
  316. <submission id="TRMRT00206" mediatype="application/x-www-form-urlencoded" method="post" ref="/root/send" resultref="/root/main/icd10cdlist"/>
  317. <submission id="TRMRT00207" mediatype="application/x-www-form-urlencoded" method="post" ref="/root/send" resultref="/root/main/temp"/>
  318. <submission id="TRMRT00208" mediatype="application/x-www-form-urlencoded" method="post" ref="/root/send/reqdata" resultref="/root/main/temp"/>
  319. <submission id="TRMRT00209" mediatype="application/x-www-form-urlencoded" method="post" ref="/root/send" resultref="/root/main/diagcdinfo"/>
  320. <submission id="TXMRT00201" mediatype="application/x-www-form-urlencoded" method="post" ref="/root/send/reqdata" resultref="/root/main/diagcdinfo"/>
  321. <submission id="TXMRT00202" mediatype="application/x-www-form-urlencoded" method="post" ref="/root/send" resultref="/root/main/diagcdinfo"/>
  322. <submission id="TRMRT00210" mediatype="application/x-www-form-urlencoded" method="post" ref="/root/send" resultref="/root/main/indxlist"/>
  323. <submission id="TRMRT00211" mediatype="application/x-www-form-urlencoded" method="post" ref="/root/send" resultref="/root/main/srcheddiagcdlist"/>
  324. <submission id="TRMRT00212" mediatype="application/x-www-form-urlencoded" method="post" ref="/root/send" add="bottom" resultref="/root/main/deptdiagcdlist"/>
  325. <submission id="TXMRT00203" mediatype="application/x-www-form-urlencoded" method="post" ref="/root/send" resultref="/root/main/deptdiagcdlist"/>
  326. <bind id="deptdiagcdlist)status" ref="/root/main/deptdiagcdlist/deptdiagcdinfo/status" readonly="&quot;true&quot;"/>
  327. <submission id="TRZBC00101" mediatype="application/x-www-form-urlencoded" method="post" replace="instance"/>
  328. <script type="javascript" ev:event="xforms-ready">
  329. <![CDATA[
  330. fInitalize();
  331. ]]>
  332. </script>
  333. <submission id="TRMRT00213" mediatype="application/x-www-form-urlencoded" method="post" ref="/root/send" resultref="/root/main/kcd4mhist"/>
  334. <submission id="TXMRT00204" mediatype="application/x-www-form-urlencoded" method="post" ref="/root/send/reqdata" resultref="/root/main/diagcdinfo"/>
  335. <submission id="TRMRT00215" mediatype="application/x-www-form-urlencoded" method="post" ref="/root/send/reqdata" resultref="/root/hidden/exists"/>
  336. <submission id="TXMRT00205" mediatype="application/x-www-form-urlencoded" method="post" ref="/root/send/reqdata" resultref="/root/main/diagcdinfo"/>
  337. <submission id="TXMRT00206" mediatype="application/x-www-form-urlencoded" method="post" ref="/root/send/termuse"/>
  338. </model>
  339. <script type="javascript" src="../../../com/commonweb/js/common.js"/>
  340. <script type="javascript" src="../../../com/commonweb/js/tfHelper.js"/>
  341. <script type="javascript" src="../../../com/commonweb/js/dateHelper.js"/>
  342. <script type="javascript" src="../../../emr/termmngtweb/js/MRTCommon.js"/>
  343. <script type="javascript" src="../../../emr/termmngtweb/js/SMMRT00200.js"/>
  344. <script type="javascript" src="../../../com/departmentcodeweb/js/ZSD001.js"/>
  345. <script type="javascript" src="../../../com/basiccodeweb/js/ZBC001.js"/>
  346. <script type="javascript" src="../../../emr/prcpmngtweb/js/MMO001.js"/>
  347. </xhtml:head>
  348. <xhtml:body visibility="visible" guideline="1,1197;" style="margin-left:8; margin-top:0; margin-right:8; margin-bottom:0; ">
  349. <group id="group1" style="left:0px; top:0px; width:1195px; height:13px; ">
  350. <caption id="caption6selctedmode" class="tit_1" style="left:0px; top:0px; width:98px; height:14px; ">진단용어 관리</caption>
  351. </group>
  352. <group id="group2" style="left:0px; top:13px; width:1195px; height:754px; vertical-align:top; ">
  353. <button id="button68" class="btn_sw" group="tab" style="left:255px; top:47px; width:84px; height:22px; ">
  354. <caption>ICD10코드</caption>
  355. <toggle case="ICD10CD" ev:event="onclick"/>
  356. <script type="javascript" ev:event="DOMActivate">
  357. <![CDATA[
  358. fSelICD10List();
  359. ]]>
  360. </script>
  361. </button>
  362. <button id="button3" class="btn_sw" group="tab" selected="true" style="left:340px; top:47px; width:84px; height:22px; ">
  363. <caption>진단용어</caption>
  364. <toggle case="DiagTerm" ev:event="onclick"/>
  365. <script type="javascript" ev:event="DOMActivate">
  366. <![CDATA[
  367. fSelDiagList();
  368. ]]>
  369. </script>
  370. </button>
  371. <button id="button5" class="btn_sw" group="tab" style="left:425px; top:47px; width:84px; height:22px; ">
  372. <caption>과진단코드</caption>
  373. <script type="javascript" ev:event="DOMActivate">
  374. <![CDATA[
  375. fSelDeptDiag();
  376. ]]>
  377. </script>
  378. <toggle case="case_DeptDiag" ev:event="onclick"/>
  379. </button>
  380. <switch id="switch2" style="left:255px; top:70px; width:939; height:680px; ">
  381. <case id="ICD10CD">
  382. <datagrid id="grd_icd10" nodeset="/root/main/diagcdinfo/icd10cd" class="datagrid1" visibility="visible" autoresize="true" caption="상태^ICD10코드^중분류^소분류^영문명^한글명^조회순서^시작일자^종료일자^최초등록자^최초등록일^최종수정자^최종수정일^OLDFROMDD^OLDTODD" colsep="^" colwidth="50, 100, 100, 100, 250, 250, 70, 81, 80, 80, 110, 74, 110, 100, 100" dataheight="25" defaultrows="0" ellipsis="true" explorerbar="sortshow" mergecells="never" mergecellsfixedrows="bycolrec" rowheader="seq" rowheight="25" rowsep="|" style="left:0px; top:0px; width:935px; height:675px; ">
  383. <col disabled="false" ref="state" type="combo" visibility="visible">
  384. <choices>
  385. <item>
  386. <label>-</label>
  387. <value>-</value>
  388. </item>
  389. <item>
  390. <label>입력</label>
  391. <value>I</value>
  392. </item>
  393. <item>
  394. <label>수정</label>
  395. <value>U</value>
  396. </item>
  397. <item>
  398. <label>삭제</label>
  399. <value>D</value>
  400. </item>
  401. </choices>
  402. </col>
  403. <col ref="icd10cd" type="input"/>
  404. <col ref="icd10drindxcd" type="input"/>
  405. <col ref="icd10medireccd" type="input"/>
  406. <col ref="icd10engnm" type="input"/>
  407. <col ref="icd10hngnm" type="input"/>
  408. <col ref="icd10seqno" type="input" style="background-color:#ffffff; "/>
  409. <col ref="icd10fromdd" type="input" format="yyyy-mm-dd"/>
  410. <col ref="icd10todd" type="input" format="yyyy-mm-dd" style="background-color:#ffffff; "/>
  411. <col disabled="true" ref="fstrgstrid" type="input"/>
  412. <col disabled="true" ref="fstrgstdt" type="input" format="yyyy-mm-dd hh:mm:ss"/>
  413. <col disabled="true" ref="lastupdtrid" type="input"/>
  414. <col disabled="true" ref="lastupdtdt" type="input" format="yyyy-mm-dd hh:mm:ss"/>
  415. <col ref="oldfromdd" visibility="hidden"/>
  416. <col ref="oldtodd" visibility="hidden"/>
  417. <script type="javascript" ev:event="onrowchanged">
  418. <![CDATA[
  419. //if(model.getValue("/root/main/diagcdinfo/icd10cd/state") == "-") {
  420. //model.setValue("/root/main/diagcdinfo/icd10cd/state", "U");
  421. //}
  422. ]]>
  423. </script>
  424. <script type="javascript" ev:event="onaftersort">
  425. <![CDATA[
  426. grd_icd10.gridToInstance();
  427. ]]>
  428. </script>
  429. </datagrid>
  430. </case>
  431. <case id="DiagTerm" selected="true" style="left:0px; top:0px; width:937px; height:678px; ">
  432. <datagrid id="grd_termlist" nodeset="/root/main/sametermlist/info" class="datagrid2" caption="사용 기관명^용어&#xA;코드^용어&#xA;구분^영문명^한글명^대체코드^SNOMED-CNPT&#xA;ID^SNOMED-CNPT&#xA;명^SNOMED-CT&#xA;DESCRIPTION ID^UMLS^시작일자^종료일자^등록일시^등록자^최종수정일시^최종수정자^확장코드^확장코드시작일자^확장코드종료일자^용어구분^필수용어 여부^ICD시작일자^최종수정자ID^appinstcd" colsep="^" colwidth="100, 80, 47, 149, 160, 80, 100, 100, 111, 100, 85, 85, 130, 100, 130, 100, 100, 100, 100, 100, 100, 100, 100, 100" dataheight="25" ellipsis="false" explorerbar="sortshow" extendlastcol="scroll" mergecellsfixedrows="bycolrec" rowheader="seq" rowheight="25" rowsep="|" style="left:476px; top:329px; width:460px; height:289px; ">
  433. <col ref="instnm"/>
  434. <col ref="termcd"/>
  435. <col disabled="true" ref="reprflag" type="combo">
  436. <choices>
  437. <item>
  438. <label>대표어</label>
  439. <value>R</value>
  440. </item>
  441. <item>
  442. <label>동의어</label>
  443. <value/>
  444. </item>
  445. </choices>
  446. </col>
  447. <col ref="termengnm"/>
  448. <col ref="termhngnm"/>
  449. <col ref="alttermcd"/>
  450. <col ref="snmdcnptid"/>
  451. <col ref="snmdcnptnm" visibility="hidden"/>
  452. <col ref="snmddescid"/>
  453. <col ref="umlscd"/>
  454. <col ref="termfromdd" format="yyyy-mm-dd"/>
  455. <col ref="termtodd" format="yyyy-mm-dd"/>
  456. <col ref="fstrgstdt" format="yyyy-mm-dd hh:mm:dd"/>
  457. <col ref="fstrgstrid"/>
  458. <col ref="lastupdtdt" format="yyyy-mm-dd hh:mm:dd"/>
  459. <col ref="lastupdtrnm"/>
  460. <col ref="attrcd" visibility="hidden"/>
  461. <col ref="attrfromdd" visibility="hidden"/>
  462. <col ref="attrtodd" visibility="hidden"/>
  463. <col ref="termflag" type="combo" visibility="hidden">
  464. <choices>
  465. <item>
  466. <label>진단용어</label>
  467. <value>0</value>
  468. </item>
  469. <item>
  470. <label>수술용어</label>
  471. <value>9</value>
  472. </item>
  473. <item>
  474. <label>주호소</label>
  475. <value>2</value>
  476. </item>
  477. <item>
  478. <label>원발장기</label>
  479. <value>1</value>
  480. </item>
  481. <item>
  482. <label>ICD-O-3</label>
  483. <value>3</value>
  484. </item>
  485. <item>
  486. <label>KCD-4-M</label>
  487. <value>4</value>
  488. </item>
  489. </choices>
  490. </col>
  491. <col ref="essntermflag"/>
  492. <col ref="icdfromdd" visibility="hidden"/>
  493. <col ref="lastupdtrid" visibility="hidden"/>
  494. <col ref="appinstcd" visibility="hidden"/>
  495. <script type="javascript" ev:event="xforms-value-changed">
  496. <![CDATA[
  497. //if(model.getValue("/root/main/sametermlist/info/state") == "-") {
  498. // model.setValue("/root/main/sametermlist/info/state", "U");
  499. //}
  500. ]]>
  501. </script>
  502. <script type="javascript" ev:event="onclick">
  503. <![CDATA[
  504. var termmode = model.getValue("/root/hidden/condition/sametermmode");
  505. if(termmode != "H"){
  506. fGetSynom();
  507. }
  508. ]]>
  509. </script>
  510. <script type="javascript" ev:event="onaftersort">
  511. <![CDATA[
  512. grd_termlist.gridToInstance();
  513. ]]>
  514. </script>
  515. </datagrid>
  516. <select1 id="cmb_allinsthist" ref="/root/hidden/condition/allinsthist" class="combo_default" visibility="hidden" appearance="minimal" style="left:828px; top:303px; width:100px; height:19px; ">
  517. <choices>
  518. <itemset nodeset="/root/init/M0534allcmb/M0534">
  519. <label ref="cdnm"/>
  520. <value ref="cdid"/>
  521. </itemset>
  522. </choices>
  523. <script type="javascript" ev:event="xforms-value-changed">
  524. <![CDATA[
  525. var selInstcd = model.getValue("/root/hidden/condition/selInstcd");
  526. if(selInstcd == "001"){
  527. btn_saverow.disabled = true;
  528. }
  529. else{
  530. btn_saverow.disabled = false;
  531. }
  532. fGetDiagInstTermHistList();
  533. ]]>
  534. </script>
  535. </select1>
  536. <caption id="cap_allinsthist" class="search_name" visibility="hidden" style="left:765px; top:304px; width:66px; height:17px; ">기관 :</caption>
  537. <select1 id="cmb_termflag" ref="/root/main/peprterminfo/info/termflag" navindex="21" visibility="hidden" appearance="minimal" style="left:94px; top:302px; width:20px; height:19px; ">
  538. <choices>
  539. <item>
  540. <label>진단용어</label>
  541. <value>0</value>
  542. </item>
  543. <item>
  544. <label>수술용어</label>
  545. <value>9</value>
  546. </item>
  547. <item>
  548. <label>주호소</label>
  549. <value>2</value>
  550. </item>
  551. <item>
  552. <label>원발장기</label>
  553. <value>1</value>
  554. </item>
  555. <item>
  556. <label>ICD-O-3</label>
  557. <value>3</value>
  558. </item>
  559. <item>
  560. <label>KCD-4-M</label>
  561. <value>4</value>
  562. </item>
  563. </choices>
  564. </select1>
  565. <line id="line9" class="line_2" style="x1:1px; y1:497px; x2:461px; y2:497px; "/>
  566. <select1 id="cmb_icd10cd" ref="/root/main/icd10cdlist/info" disabled="true" appearance="minimal" style="left:113px; top:328px; width:118px; height:19px; ">
  567. <choices>
  568. <itemset nodeset="/root/main/icd10cdlist/info">
  569. <label ref="icd10cd"/>
  570. <value ref="icd10cd"/>
  571. </itemset>
  572. </choices>
  573. <script type="javascript" ev:event="xforms-value-changed">
  574. <![CDATA[
  575. fGetNewExtCd();
  576. ]]>
  577. </script>
  578. </select1>
  579. <line id="line10" class="line_2" style="x1:1px; y1:521px; x2:461px; y2:521px; "/>
  580. <caption id="caption20" class="cell_1" style="left:0px; top:327px; width:110px; height:23px; vertical-align:middle; ">ICD10 코드</caption>
  581. <caption id="caption21" class="cell_1" style="left:0px; top:572px; width:50; height:23px; vertical-align:middle; ">시작일</caption>
  582. <input id="ipt_fstrgsttime" ref="/root/main/peprterminfo/info/fstrgsttime" class="input_default" disabled="true" navindex="26" format="hh:nn" style="left:422px; top:599px; width:38px; height:19px; "/>
  583. <caption id="caption32" class="cell_1" style="left:234px; top:327px; width:110px; height:23px; vertical-align:middle; ">SNMD-concept ID</caption>
  584. <input id="ipt_engnm" ref="/root/main/peprterminfo/info/termengnm" class="input_default" disabled="true" navindex="11" imemode="alpha" style="left:113px; top:427px; width:347px; height:19px; "/>
  585. <caption id="caption22" class="cell_1" style="left:234px; top:597px; width:100px; height:23px; vertical-align:middle; ">등록일시</caption>
  586. <input id="ipt_fstrgstdate" ref="/root/main/peprterminfo/info/fstrgstdate" class="input_default" disabled="true" navindex="25" inputtype="date" format="yyyy-mm-dd" style="left:337px; top:599px; width:83px; height:19px; "/>
  587. <caption id="caption11" class="cell_1" style="left:234px; top:375px; width:110px; height:23px; vertical-align:middle; ">색인코드</caption>
  588. <line id="line14" class="line_2" style="x1:1px; y1:547px; x2:461px; y2:547px; "/>
  589. <output id="opt_Hdicd10cd" ref="/root/main/peprterminfo/info/icd10cd" class="output_fix" visibility="hidden" appearance="output" style="left:113px; top:328px; width:118px; height:19px; "/>
  590. <line id="line15" class="line_2" style="x1:1px; y1:570px; x2:461px; y2:570px; "/>
  591. <line id="line16" class="line_1" style="x1:476px; y1:323px; x2:936px; y2:323px; "/>
  592. <button id="btn_snmdcnptid" class="icon_search" disabled="true" navindex="6" style="left:440px; top:330px; width:16px; height:16px; ">
  593. <caption/>
  594. </button>
  595. <input id="ipt_hngnm" ref="/root/main/peprterminfo/info/termhngnm" class="input_default" disabled="true" navindex="12" imemode="hangul" style="left:113px; top:451px; width:347px; height:19px; "/>
  596. <input id="ipt_medireccd" ref="/root/main/peprterminfo/info/diagattrmedireccd" class="input_default" disabled="true" navindex="9" style="left:347px; top:376px; width:113px; height:19px; "/>
  597. <line id="line17" class="line_2" style="x1:1px; y1:373px; x2:461px; y2:373px; "/>
  598. <line id="line18" class="line_2" style="x1:1px; y1:595px; x2:461px; y2:595px; "/>
  599. <caption id="caption37" class="cell_1" style="left:234px; top:351px; width:110px; height:23px; vertical-align:middle; ">SNMD-concept 명</caption>
  600. <caption id="caption26" class="tit_2" style="left:4px; top:305px; width:76px; height:13px; ">용어 관리</caption>
  601. <caption id="caption6" class="cell_1" style="left:0px; top:351px; width:110px; height:23px; vertical-align:middle; ">확장코드</caption>
  602. <select1 id="cmb_reprflag" ref="/root/main/peprterminfo/info/reprflag" disabled="true" navindex="13" appearance="minimal" style="left:113px; top:476px; width:45px; height:19px; ">
  603. <choices>
  604. <item>
  605. <label>Y</label>
  606. <value>R</value>
  607. </item>
  608. <item>
  609. <label>N</label>
  610. <value/>
  611. </item>
  612. </choices>
  613. </select1>
  614. <line id="line19" class="line_3" style="x1:1px; y1:670px; x2:931px; y2:670px; "/>
  615. <line id="line3" class="line_1" style="x1:0px; y1:322px; x2:470px; y2:322px; "/>
  616. <caption id="caption27" class="cell_1" style="left:0px; top:375px; width:110px; height:23px; vertical-align:middle; ">용어코드</caption>
  617. <caption id="caption16" class="cell_1" style="left:294px; top:572px; width:70px; height:23px; vertical-align:middle; ">등록자</caption>
  618. <caption id="caption8" class="cell_1" style="left:0px; top:425px; width:110px; height:23px; vertical-align:middle; ">영문명</caption>
  619. <caption id="caption9" class="cell_1" style="left:0px; top:450px; width:110px; height:23px; vertical-align:middle; ">한글명</caption>
  620. <line id="line5" class="line_2" style="x1:1px; y1:349px; x2:461px; y2:349px; "/>
  621. <caption id="caption19" class="cell_1" style="left:147px; top:572px; width:50px; height:23px; vertical-align:middle; ">종료일</caption>
  622. <line id="line7" class="line_2" style="x1:1px; y1:398px; x2:461px; y2:398px; "/>
  623. <input id="ipt_drindxcd" ref="/root/main/peprterminfo/info/diagattrdrindxcd" class="input_default" disabled="true" navindex="18" visibility="hidden" style="left:113px; top:302px; width:19px; height:19px; "/>
  624. <button id="button27" class="btn2_letter5" disabled="true" visibility="hidden" style="left:196px; top:307px; width:75px; height:19px; ">
  625. <caption>대표어수정</caption>
  626. <script type="javascript" ev:event="DOMActivate">
  627. <![CDATA[
  628. var selTermcd = model.getValue("/root/hidden/condition/selectedtermcd");
  629. if(selTermcd == "" || selTermcd == null){
  630. var rtn = messageBox("ICD10 코드를 ", "C002");
  631. return;
  632. }
  633. model.setValue("/root/hidden/condition/status", "M");
  634. btn_delete2.disabled = "true";
  635. model.setValue("/root/main/peprterminfo/info/fstrgstdate", model.getValue("/root/init/today"));
  636. model.setValue("/root/main/peprterminfo/info/fstrgsttime", model.getValue("/root/init/curruntTime"));
  637. model.setValue("/root/main/peprterminfo/info/termfromdate", model.getValue("/root/init/today"));
  638. model.setValue("/root/main/peprterminfo/info/termfromtime", model.getValue("/root/init/curruntTime"));
  639. model.setValue("/root/main/peprterminfo/info/termtodate", "99991231");
  640. model.setValue("/root/main/peprterminfo/info/termtotime", "2359");
  641. model.setValue("/root/main/peprterminfo/info/fstrgstdt", model.getValue("/root/main/peprterminfo/info/fstrgstdate")+model.getValue("/root/main/peprterminfo/info/fstrgsttime")+"00");
  642. model.setValue("/root/main/peprterminfo/info/termfromdd", model.getValue("/root/main/peprterminfo/info/termfromdate")+model.getValue("/root/main/peprterminfo/info/termfromtime")+"00");
  643. model.setValue("/root/main/peprterminfo/info/termtodd", model.getValue("/root/main/peprterminfo/info/termtodate")+model.getValue("/root/main/peprterminfo/info/termtotime")+"59");
  644. ]]>
  645. </script>
  646. </button>
  647. <button id="button30" class="btn2_letter5" visibility="hidden" style="left:273px; top:307px; width:75px; height:19px; ">
  648. <caption>동의어수정</caption>
  649. <script type="javascript" ev:event="DOMActivate">
  650. <![CDATA[
  651. //동의어 수정
  652. var iRow = grd_termlist.row;
  653. var term = model.getValue("/root/main/sametermlist/info[" + iRow + "]/termcd"); //그리드에서 선택한 term
  654. var indx = model.getValue("/root/hidden/condition/selectedIndx"); //트리에서 선택한 index
  655. if(term == "" || term == null){
  656. var rtn = messageBox("대표어/동의어/유사어를 ", "C002");
  657. return;
  658. }
  659. opt_Hdicd10cd.visible = "true";
  660. cmb_icd10cd.visible = "false";
  661. btn_delete2.disabled = "true";
  662. model.setValue("/root/hidden/condition/status", "TM"); //term 만 modify
  663. model.setValue("/root/main/peprterminfo/info/fstrgstdate", model.getValue("/root/init/today"));
  664. model.setValue("/root/main/peprterminfo/info/fstrgsttime", model.getValue("/root/init/curruntTime"));
  665. model.setValue("/root/main/peprterminfo/info/termfromdate", model.getValue("/root/init/today"));
  666. model.setValue("/root/main/peprterminfo/info/termfromtime", model.getValue("/root/init/curruntTime"));
  667. model.setValue("/root/main/peprterminfo/info/termtodate", "99991231");
  668. model.setValue("/root/main/peprterminfo/info/termtotime", "2359");
  669. model.setValue("/root/main/peprterminfo/info/fstrgstdt", model.getValue("/root/main/peprterminfo/info/fstrgstdate")+model.getValue("/root/main/peprterminfo/info/fstrgsttime")+"00");
  670. model.setValue("/root/main/peprterminfo/info/termfromdd", model.getValue("/root/main/peprterminfo/info/termfromdate")+model.getValue("/root/main/peprterminfo/info/termfromtime")+"00");
  671. model.setValue("/root/main/peprterminfo/info/termtodd", model.getValue("/root/main/peprterminfo/info/termtodate")+model.getValue("/root/main/peprterminfo/info/termtotime")+"59");
  672. ]]>
  673. </script>
  674. </button>
  675. <button id="button21" class="btn5_letter2" visibility="hidden" style="left:352px; top:306px; width:42px; height:19px; ">
  676. <caption>저장</caption>
  677. </button>
  678. <button id="btn_delete1" class="btn5_letter4" disabled="true" visibility="hidden" style="left:397px; top:307px; width:64px; height:19px; ">
  679. <caption>사용종료</caption>
  680. <script type="javascript" ev:event="DOMActivate">
  681. <![CDATA[
  682. var selTermcd = model.getValue("/root/hidden/condition/selectedtermcd");
  683. var insICD10cd = model.getValue("/root/main/peprterminfo/info/icd10cd");
  684. var insdiagattrcd = model.getValue("/root/main/peprterminfo/info/diagattrcd");
  685. var insTermcd = model.getValue("/root/main/peprterminfo/info/termcd");
  686. var fullTermCode = insICD10cd + "." + insdiagattrcd + "." + insTermcd;
  687. var rowCnt = grd_diagcd.rows;
  688. var sameTerm = model.getValue("/root/main/sametermlist/info/termcd");
  689. if(selTermcd == "" || selTermcd == null){
  690. var rtn = messageBox("진단용어를 ", "C002");
  691. return;
  692. }
  693. var rtn = messageBox("확장코드와 함께 대표어/동의어/유사어를", "Q001");
  694. if( rtn == "6") { //확장코드 + 대표어, 동이어, 유사어 모두 삭제 : messageBox("확장코드와 모든 용어들을 삭제하려면 ", "S001");
  695. model.setValue("/root/hidden/condition/status", "ETD");
  696. } else if( rtn == "7") { //대표어만 삭제하려면
  697. messageBox("용어의 수정 및 삭제는 '동의어/유사어'에서 ", "C002"); //동의어, 유사어가 있을 경우 대표어로 바꿀 것을 입력받아야 한다
  698. return;
  699. }
  700. model.removeNodeset("/root/send");
  701. model.makeValue("/root/send/indxcd","");
  702. model.makeValue("/root/send/icd10cd","");
  703. model.makeValue("/root/send/diagattrcd","");
  704. model.makeValue("/root/send/termcd","");
  705. model.makeValue("/root/send/status","");
  706. model.setValue("/root/send/indxcd", model.getValue("/root/hidden/condition/selectedIndx"));
  707. model.setValue("/root/send/icd10cd", insICD10cd);
  708. model.setValue("/root/send/diagattrcd", insICD10cd + "." + insdiagattrcd);
  709. model.setValue("/root/send/termcd", insICD10cd + "." + insdiagattrcd + "." + insTermcd);
  710. model.setValue("/root/send/status", model.getValue("/root/hidden/condition/status")); //N:등록, M:수정, D:삭제
  711. submit("TXMRT00201");
  712. fCntlReset("diag");
  713. model.refresh();
  714. ]]>
  715. </script>
  716. </button>
  717. <button id="btn_delete2" class="btn5_letter4" style="left:407px; top:302px; width:64px; height:19px; ">
  718. <caption>사용종료</caption>
  719. <script type="javascript" ev:event="DOMActivate">
  720. <![CDATA[
  721. fEndDiagTerm();
  722. ]]>
  723. </script>
  724. </button>
  725. <button id="button26" class="btn2_letter4" navindex="10" style="left:83px; top:302px; width:64px; height:19px; ">
  726. <caption>신규입력</caption>
  727. <script type="javascript" ev:event="DOMActivate">
  728. <![CDATA[
  729. fSetNewTerm();
  730. ]]>
  731. </script>
  732. </button>
  733. <button id="button1" class="btn_sw" group="sub_tab" selected="true" style="left:476px; top:301px; width:89px; height:22px; ">
  734. <caption>동의어/유사어</caption>
  735. <script type="javascript" ev:event="DOMActivate">
  736. <![CDATA[
  737. fGetSynomList();
  738. ]]>
  739. </script>
  740. </button>
  741. <button id="button2" class="btn_sw" group="sub_tab" style="left:564px; top:301px; width:64px; height:22px; ">
  742. <caption>이력조회</caption>
  743. <script type="javascript" ev:event="DOMActivate">
  744. <![CDATA[
  745. fGetDiagTermHistList();
  746. ]]>
  747. </script>
  748. </button>
  749. <input id="ipt_fstrgstdt" ref="/root/main/peprterminfo/info/fstrgstdt" class="input_default" disabled="true" visibility="hidden" style="left:76px; top:302px; width:19px; height:19px; "/>
  750. <input id="ipt_diagattrcd" ref="/root/main/peprterminfo/info/diagattrcd" class="input_default" disabled="true" navindex="1" format="999" style="left:113px; top:352px; width:117px; height:19px; "/>
  751. <input id="ipt_termcd" ref="/root/main/peprterminfo/info/termcd" class="input_default" disabled="true" navindex="4" format="99" style="left:113px; top:376px; width:117px; height:19px; "/>
  752. <line id="line8" class="line_2" style="x1:0px; y1:472px; x2:460px; y2:472px; "/>
  753. <line id="line25" class="line_2" style="x1:0px; y1:448px; x2:460px; y2:448px; "/>
  754. <caption id="caption18" class="cell_1" style="left:0px; top:474px; width:110px; height:23px; vertical-align:middle; ">대표어 구분/버전</caption>
  755. <input id="ipt_snmdcnptnm" ref="/root/main/peprterminfo/info/snmdcnptnm" class="input_default" disabled="true" navindex="7" style="left:347px; top:352px; width:113px; height:19px; "/>
  756. <datagrid id="grd_diagcd" nodeset="/root/main/diagcdinfo/diagcd" class="datagrid2" autoresize="true" caption="사용여부^상태^ICD10&#xA;코드^ICD시작일자^확장코드^용어코드^대체코드^SNOMED-CT&#xA;Concept ID^SNOMED-CT&#xA;Concept 명^SNOMED-CT&#xA;Description ID^UMLS^영문명^한글명^용어구분^대표어&#xA;여부^전염병&#xA;구분^만성&#xA;질환^산정&#xA;특례^중증&#xA;분류^연령별 구분^남녀&#xA;구분^암진단&#xA;용어 여부^분류&#xA;코드^분류코드^버전^시작일자^종료일자^최초등록일시^최초등록자ID^진단속성시작일자^진단속성종료일자^최종등록일시^최종등록자ID^최종등록자^필수용어구분" colsep="^" colwidth="30, 50, 46, 100, 65, 80, 80, 90, 100, 90, 100, 250, 250, 100, 48, 82, 40, 40, 40, 77, 50, 71, 68, 58, 42, 70, 70, 100, 100, 100, 100, 130, 100, 100, 100" dataheight="25" defaultrows="0" ellipsis="true" explorerbar="sortshow" mergecells="never" mergecellsfixedrows="bycolrec" rowheader="seq" rowheight="25" rowsep="|" style="left:0px; top:0px; width:935px; height:290px; ">
  757. <col checkvalue="Y,N" ref="termuseyn" type="checkbox"/>
  758. <col disabled="true" ref="state" type="combo" visibility="hidden">
  759. <choices>
  760. <item>
  761. <label>-</label>
  762. <value>-</value>
  763. </item>
  764. <item>
  765. <label>입력</label>
  766. <value>I</value>
  767. </item>
  768. <item>
  769. <label>수정</label>
  770. <value>U</value>
  771. </item>
  772. <item>
  773. <label>삭제</label>
  774. <value>D</value>
  775. </item>
  776. </choices>
  777. </col>
  778. <col ref="icd10cd"/>
  779. <col ref="icdfromdd" visibility="hidden"/>
  780. <col ref="diagattrcd"/>
  781. <col ref="termcd"/>
  782. <col ref="alttermcd"/>
  783. <col ref="snmdcnptid"/>
  784. <col ref="snmdcnptnm"/>
  785. <col ref="snmddescid" visibility="hidden"/>
  786. <col ref="umlscd"/>
  787. <col ref="termengnm"/>
  788. <col ref="termhngnm"/>
  789. <col ref="termflag" visibility="hidden"/>
  790. <col disabled="true" ref="reprflag" type="combo" style="left:870px; top:32px; width:76px; height:23px; ">
  791. <choices>
  792. <item>
  793. <label>Y</label>
  794. <value>R</value>
  795. </item>
  796. <item>
  797. <label>N</label>
  798. <value/>
  799. </item>
  800. </choices>
  801. </col>
  802. <col disabled="true" ref="lglydisflag" type="combo" style="background-color:#ffffff; ">
  803. <choices>
  804. <itemset nodeset="/root/init/A0129list/A0129">
  805. <label ref="cdnm"/>
  806. <value ref="cdid"/>
  807. </itemset>
  808. </choices>
  809. </col>
  810. <col disabled="true" ref="chrncsickyn" type="combo" style="background-color:#ffffff; ">
  811. <choices>
  812. <item>
  813. <label>Y</label>
  814. <value>Y</value>
  815. </item>
  816. <item>
  817. <label>N</label>
  818. <value>N</value>
  819. </item>
  820. </choices>
  821. </col>
  822. <col disabled="true" ref="estmexptyn" type="combo">
  823. <choices>
  824. <item>
  825. <label>Y</label>
  826. <value>Y</value>
  827. </item>
  828. <item>
  829. <label>N</label>
  830. <value>N</value>
  831. </item>
  832. </choices>
  833. </col>
  834. <col disabled="true" ref="serdiagclsyn" type="combo" style="left:1280px; top:32px; width:115px; height:23px; ">
  835. <choices>
  836. <item>
  837. <label>Y</label>
  838. <value>Y</value>
  839. </item>
  840. <item>
  841. <label>N</label>
  842. <value>N</value>
  843. </item>
  844. </choices>
  845. </col>
  846. <col ref="ageflag" type="combo">
  847. <choices>
  848. <itemset nodeset="/root/init/M0382list/M0382">
  849. <label ref="cdnm"/>
  850. <value ref="cdid"/>
  851. </itemset>
  852. </choices>
  853. </col>
  854. <col disabled="true" ref="manwomflag" type="combo">
  855. <choices>
  856. <item>
  857. <label>남/여</label>
  858. <value>A</value>
  859. </item>
  860. <item>
  861. <label>남</label>
  862. <value>M</value>
  863. </item>
  864. <item>
  865. <![CDATA[Mㅡ]]>
  866. <label>여</label>
  867. <value>F</value>
  868. </item>
  869. <item>
  870. <label>-</label>
  871. <value/>
  872. </item>
  873. </choices>
  874. </col>
  875. <col ref="cncryn" type="combo">
  876. <choices>
  877. <item>
  878. <label>Y</label>
  879. <value>Y</value>
  880. </item>
  881. <item>
  882. <label>N</label>
  883. <value>N</value>
  884. </item>
  885. </choices>
  886. </col>
  887. <col ref="diagattrdrindxcd" style="background-color:#ffffff; "/>
  888. <col ref="diagattrmedireccd" visibility="hidden"/>
  889. <col ref="diagattrverflag" visibility="hidden"/>
  890. <col ref="termfromdd" format="yyyy-mm-dd"/>
  891. <col ref="termtodd" format="yyyy-mm-dd"/>
  892. <col ref="fstrgstdt" visibility="hidden"/>
  893. <col ref="fstrgstrid" visibility="hidden"/>
  894. <col ref="attrfromdd" visibility="hidden"/>
  895. <col ref="attrtodd" visibility="hidden"/>
  896. <col ref="lastupdtdt" format="yyyy-mm-dd hh:mm:ss"/>
  897. <col ref="lastupdtrid" visibility="hidden"/>
  898. <col ref="lastupdtrnm"/>
  899. <col ref="essntermflag"/>
  900. <script type="javascript" ev:event="onclick">
  901. <![CDATA[
  902. if(grd_diagcd.col != "1"){
  903. fSelDiagTerm();
  904. }
  905. else{
  906. var termuseyn = model.getValue("/root/main/diagcdinfo/diagcd[" + grd_diagcd.row + "]/termuseyn");
  907. var essntermflag = model.getValue("/root/main/diagcdinfo/diagcd[" + grd_diagcd.row + "]/essntermflag");
  908. if(termuseyn == "N"){
  909. if(essntermflag == "Y"){
  910. messageBox("필수 사용 용어 ", "E008");
  911. model.setValue("/root/main/diagcdinfo/diagcd[" + grd_diagcd.row + "]/termuseyn", "Y");
  912. }
  913. }
  914. }
  915. ]]>
  916. </script>
  917. <script type="javascript" ev:event="onaftersort">
  918. <![CDATA[
  919. grd_diagcd.gridToInstance();
  920. ]]>
  921. </script>
  922. <script type="javascript" ev:event="DOMFocusOut">
  923. <![CDATA[
  924. initPopupMenu();
  925. ]]>
  926. </script>
  927. <script type="javascript" ev:event="onmousedown">
  928. <![CDATA[
  929. if(event.button == 3){
  930. fCallPopup("grd_diagcd");
  931. }
  932. ]]>
  933. </script>
  934. </datagrid>
  935. <select1 id="rdo_estmexptyn" ref="/root/main/peprterminfo/info/estmexptyn" disabled="true" navindex="17" appearance="full" cellspacing="30" cols="2" overflow="visible" style="left:113px; top:551px; width:117px; height:20px; border-style:none; ">
  936. <choices>
  937. <item>
  938. <label>Y</label>
  939. <value>Y</value>
  940. </item>
  941. <item>
  942. <label>N</label>
  943. <value>N</value>
  944. </item>
  945. </choices>
  946. </select1>
  947. <select1 id="rdo_manwomflag" ref="/root/main/peprterminfo/info/manwomflag" disabled="true" navindex="21" appearance="full" cellspacing="3" cols="3" overflow="visible" style="left:347px; top:500px; width:113px; height:20px; border-style:none; ">
  948. <choices>
  949. <item>
  950. <label>남여</label>
  951. <value>A</value>
  952. </item>
  953. <item>
  954. <label>남</label>
  955. <value>M</value>
  956. </item>
  957. <item>
  958. <label>여</label>
  959. <value>F</value>
  960. </item>
  961. </choices>
  962. </select1>
  963. <select1 id="rdo_serdiagclsyn" ref="/root/main/peprterminfo/info/serdiagclsyn" disabled="true" navindex="18" appearance="full" cellspacing="30" cols="2" overflow="visible" style="left:347px; top:476px; width:113px; height:20px; border-style:none; ">
  964. <choices>
  965. <item>
  966. <label>Y</label>
  967. <value>Y</value>
  968. </item>
  969. <item>
  970. <label>N</label>
  971. <value>N</value>
  972. </item>
  973. </choices>
  974. </select1>
  975. <select1 id="rdo_chrncsickyn" ref="/root/main/peprterminfo/info/chrncsickyn" disabled="true" navindex="16" appearance="full" cellspacing="30" cols="2" overflow="visible" style="left:113px; top:525px; width:117px; height:20px; border-style:none; ">
  976. <choices>
  977. <item>
  978. <label>Y</label>
  979. <value>Y</value>
  980. </item>
  981. <item>
  982. <label>N</label>
  983. <value>N</value>
  984. </item>
  985. </choices>
  986. </select1>
  987. <caption id="caption12" class="cell_1" style="left:0px; top:499px; width:110px; height:23px; vertical-align:middle; ">전염병 구분</caption>
  988. <caption id="caption13" class="cell_1" style="left:0px; top:523px; width:110px; height:23px; vertical-align:middle; ">만성질환 여부</caption>
  989. <caption id="caption24" class="cell_1" style="left:234px; top:474px; width:110px; height:23px; vertical-align:middle; ">중증분류 여부</caption>
  990. <caption id="caption14" class="cell_1" style="left:0px; top:547px; width:110px; height:23px; vertical-align:middle; ">산정특례 여부</caption>
  991. <caption id="caption7" class="cell_1" style="left:234px; top:523px; width:110px; height:23px; vertical-align:middle; ">연령별 구분</caption>
  992. <caption id="caption17" class="cell_1" style="left:234px; top:499px; width:110px; height:23px; vertical-align:middle; ">남여 구분</caption>
  993. <line id="line4" class="line_3" style="x1:0px; y1:293px; x2:936px; y2:293px; "/>
  994. <button id="btn_diagattrcd" class="icon_search" disabled="true" navindex="2" visibility="hidden" style="left:211px; top:353px; width:16px; height:16px; ">
  995. <caption/>
  996. </button>
  997. <button id="btn_medireccd" class="icon_search" disabled="true" navindex="10" visibility="hidden" style="left:441px; top:380px; width:16px; height:16px; ">
  998. <caption/>
  999. </button>
  1000. <input id="ipt_fstrgstrid" ref="/root/main/peprterminfo/info/fstrgstrid" class="input_default" disabled="true" navindex="24" style="left:367px; top:574px; width:93px; height:19px; "/>
  1001. <input id="ipt_snmdcnptid" ref="/root/main/peprterminfo/info/snmdcnptid" class="input_default" disabled="true" navindex="5" style="left:347px; top:328px; width:88px; height:19px; "/>
  1002. <button id="btn_modify1" class="btn2_letter2" style="left:250px; top:302px; width:42px; height:19px; ">
  1003. <caption>수정</caption>
  1004. <script type="javascript" ev:event="DOMActivate">
  1005. <![CDATA[
  1006. fSetTermUpdt();
  1007. ]]>
  1008. </script>
  1009. </button>
  1010. <input id="ipt_termfromdd" ref="/root/main/peprterminfo/info/termfromdd" class="input_default" disabled="true" navindex="22" inputtype="date" format="yyyy-mm-dd" style="left:53px; top:574px; width:90px; height:19px; ">
  1011. <script type="javascript" ev:event="xforms-value-changed">
  1012. <![CDATA[
  1013. if(model.getValue("/root/hidden/condition/status") == "ETM"){
  1014. var newfromdd = model.getValue("/root/main/peprterminfo/info/termfromdd");
  1015. var oldfromdd = model.getValue("/root/main/peprterminfo/info/oldtermfromdd");
  1016. if(parseInt(newfromdd) < parseInt(oldfromdd)){
  1017. messageBox("이전 일자를 선택", "E001");
  1018. return;
  1019. }
  1020. }
  1021. model.setValue("/root/main/peprterminfo/info/attrfromdd", model.getValue("/root/main/peprterminfo/info/termfromdd"));
  1022. ]]>
  1023. </script>
  1024. </input>
  1025. <input id="ipt_termtodd" ref="/root/main/peprterminfo/info/termtodd" class="input_default" disabled="true" navindex="24" inputtype="date" format="yyyy-mm-dd" style="left:200px; top:574px; width:90px; height:19px; ">
  1026. <script type="javascript" ev:event="xforms-value-changed">
  1027. <![CDATA[
  1028. model.setValue("/root/main/peprterminfo/info/attrtodd", model.getValue("/root/main/peprterminfo/info/termtodd"));
  1029. ]]>
  1030. </script>
  1031. </input>
  1032. <input id="input6" ref="/root/main/peprterminfo/info/attrfromdd" class="input_default" disabled="true" navindex="24" visibility="hidden" inputtype="date" format="yyyy-mm-dd" style="left:145px; top:302px; width:24px; height:19px; "/>
  1033. <input id="input7" ref="/root/main/peprterminfo/info/icdfromdd" class="input_default" disabled="true" navindex="24" visibility="hidden" inputtype="date" format="yyyy-mm-dd" style="left:160px; top:302px; width:24px; height:19px; "/>
  1034. <select1 id="cmb_lglydisflag" ref="/root/main/peprterminfo/info/lglydisflag" disabled="true" appearance="minimal" style="left:113px; top:500px; width:118px; height:19px; ">
  1035. <choices>
  1036. <itemset nodeset="/root/init/A0129list/A0129">
  1037. <label ref="cdnm"/>
  1038. <value ref="cdid"/>
  1039. </itemset>
  1040. </choices>
  1041. </select1>
  1042. <input id="input8" ref="/root/main/peprterminfo/info/attrtodd" class="input_default" disabled="true" navindex="18" visibility="hidden" style="left:130px; top:302px; width:19px; height:19px; "/>
  1043. <select1 id="cmb_diagattrverflag" ref="/root/main/peprterminfo/info/diagattrverflag" disabled="true" navindex="13" appearance="minimal" style="left:160px; top:476px; width:70px; height:19px; ">
  1044. <choices>
  1045. <item>
  1046. <label>ICD9</label>
  1047. <value>9</value>
  1048. </item>
  1049. <item>
  1050. <label>ICD10</label>
  1051. <value>0</value>
  1052. </item>
  1053. <item>
  1054. <label>KCD5</label>
  1055. <value>5</value>
  1056. </item>
  1057. </choices>
  1058. </select1>
  1059. <select1 id="cmb_ageflag" ref="/root/main/peprterminfo/info/ageflag" class="combo_default" disabled="true" appearance="minimal" style="left:347px; top:525px; width:113px; height:19px; ">
  1060. <choices>
  1061. <itemset nodeset="/root/init/M0382list/M0382">
  1062. <label ref="cdnm"/>
  1063. <value ref="cdid"/>
  1064. </itemset>
  1065. </choices>
  1066. </select1>
  1067. <select1 id="rdo_cncryn" ref="/root/main/peprterminfo/info/cncryn" disabled="true" navindex="18" appearance="full" cellspacing="30" cols="2" overflow="visible" style="left:347px; top:550px; width:113px; height:20px; border-style:none; ">
  1068. <choices>
  1069. <item>
  1070. <label>Y</label>
  1071. <value>Y</value>
  1072. </item>
  1073. <item>
  1074. <label>N</label>
  1075. <value>N</value>
  1076. </item>
  1077. </choices>
  1078. </select1>
  1079. <caption id="caption30" class="cell_1" style="left:234px; top:548px; width:110px; height:23px; vertical-align:middle; ">암진단 용어 여부</caption>
  1080. <button id="btn_rollback" class="btn5_letter4" style="left:295px; top:302px; width:64px; height:19px; ">
  1081. <caption>되살리기</caption>
  1082. <script type="javascript" ev:event="DOMActivate">
  1083. <![CDATA[
  1084. fRollbackTerm();
  1085. ]]>
  1086. </script>
  1087. </button>
  1088. <caption id="caption34" class="cell_1" style="left:234px; top:400px; width:110px; height:23px; vertical-align:middle; ">UMLS</caption>
  1089. <line id="line33" class="line_2" style="x1:1px; y1:423px; x2:461px; y2:423px; "/>
  1090. <input id="ipt_umlscd" ref="/root/main/peprterminfo/info/umlscd" class="input_default" disabled="true" navindex="9" style="left:347px; top:401px; width:113px; height:19px; "/>
  1091. <input id="ipt_alttermcd" ref="/root/main/peprterminfo/info/alttermcd" class="input_default" disabled="true" navindex="4" style="left:113px; top:401px; width:94px; height:19px; "/>
  1092. <caption id="caption35" class="cell_1" style="left:0px; top:400px; width:110px; height:23px; vertical-align:middle; ">대체코드</caption>
  1093. <button id="btn_altterm" class="icon_search" disabled="true" navindex="10" visibility="visible" style="left:212px; top:403px; width:16px; height:16px; ">
  1094. <caption/>
  1095. <script type="javascript" ev:event="DOMActivate">
  1096. <![CDATA[
  1097. var ref1 = "/root/main/peprterminfo/info/alttermcd";
  1098. fCallTermSrch(ref1);
  1099. ]]>
  1100. </script>
  1101. </button>
  1102. <button id="button7" class="btn_sw" visibility="visible" group="sub_tab" style="left:629px; top:301px; width:131px; height:22px; ">
  1103. <caption>기관별 사용 이력조회</caption>
  1104. <script type="javascript" ev:event="DOMActivate">
  1105. <![CDATA[
  1106. fGetDiagInstTermHistList();
  1107. ]]>
  1108. </script>
  1109. </button>
  1110. <line id="line1" class="line_2" style="x1:0px; y1:619px; x2:460px; y2:619px; "/>
  1111. <line id="line35" class="line_3" style="x1:1px; y1:670px; x2:931px; y2:670px; "/>
  1112. <line id="line34" class="line_2" style="x1:476px; y1:620px; x2:936px; y2:620px; "/>
  1113. <button id="btn_sameterm" class="btn2_letter7" style="left:150px; top:302px; width:97px; height:19px; ">
  1114. <caption>동의/유사어입력</caption>
  1115. <script type="javascript" ev:event="DOMActivate">
  1116. <![CDATA[
  1117. fSetInj();
  1118. ]]>
  1119. </script>
  1120. </button>
  1121. <button id="btn_termsave" class="btn5_letter2" style="left:362px; top:302px; width:42px; height:19px; ">
  1122. <caption>저장</caption>
  1123. <script type="javascript" ev:event="DOMActivate">
  1124. <![CDATA[
  1125. fSaveDiag();
  1126. ]]>
  1127. </script>
  1128. </button>
  1129. <caption id="cap_appinst" class="cell_1" visibility="visible" style="left:0px; top:621px; width:110px; height:48px; vertical-align:middle; ">적용 기관</caption>
  1130. <select id="chk_appinst" ref="/root/main/peprterminfo/info/appinstcd" disabled="true" visibility="visible" overflow="visible" appearance="full" cellspacing="20" cols="7" rows="2" sep="▦" vcellspacing="5" style="left:113px; top:624px; width:795px; height:40px; border-style:none; ">
  1131. <choices>
  1132. <itemset nodeset="/root/init/M0534list/M0534">
  1133. <label ref="cdnm"/>
  1134. <value ref="cdid"/>
  1135. </itemset>
  1136. </choices>
  1137. <script type="javascript" ev:event="xforms-value-changed">
  1138. <![CDATA[
  1139. var essntermflag = model.getValue("/root/main/peprterminfo/info/essntermflag");
  1140. if(essntermflag == "Y"){
  1141. for(var a = 0; a < chk_appinst.length ; a++){
  1142. chk_appinst.select(a);
  1143. }
  1144. }
  1145. chk_appinst.refresh();
  1146. ]]>
  1147. </script>
  1148. </select>
  1149. <caption id="caption36" class="cell_1" style="left:0px; top:597px; width:110px; height:23px; vertical-align:middle; ">필수용어 여부</caption>
  1150. <select1 id="rdo_essntermflag" ref="/root/main/peprterminfo/info/essntermflag" disabled="true" navindex="17" appearance="full" cellspacing="30" cols="2" overflow="visible" style="left:113px; top:601px; width:117px; height:20px; border-style:none; ">
  1151. <choices>
  1152. <item>
  1153. <label>Y</label>
  1154. <value>Y</value>
  1155. </item>
  1156. <item>
  1157. <label>N</label>
  1158. <value>N</value>
  1159. </item>
  1160. </choices>
  1161. <script type="javascript" ev:event="xforms-value-changed">
  1162. <![CDATA[
  1163. var essntermflag = model.getValue("/root/main/peprterminfo/info/essntermflag");
  1164. if(essntermflag == "Y"){
  1165. for(var a = 0; a < chk_appinst.length ; a++){
  1166. chk_appinst.select(a);
  1167. }
  1168. }
  1169. chk_appinst.refresh();
  1170. ]]>
  1171. </script>
  1172. </select1>
  1173. </case>
  1174. <case id="KCD4M">
  1175. <caption id="cap_engnm" class="cell_1" style="left:3px; top:576px; width:90px; height:23px; vertical-align:middle; ">영문명</caption>
  1176. <caption id="cap_todt" class="cell_1" style="left:3px; top:650px; width:90px; height:23px; vertical-align:middle; ">종료일자</caption>
  1177. <line id="line2" class="line_3" style="x1:5px; y1:673px; x2:510px; y2:673px; "/>
  1178. <caption id="cap_hngnm" class="cell_1" style="left:3px; top:600px; width:90px; height:23px; vertical-align:middle; ">한글명</caption>
  1179. <caption id="caption1" class="tit_2" style="left:5px; top:477px; width:150px; height:13px; ">ICD-10-M 진단정보</caption>
  1180. <button id="btn_new" class="btn2_letter2" navindex="7" style="left:310px; top:472px; width:42px; height:19px; ">
  1181. <caption>신규</caption>
  1182. <script type="javascript" ev:event="DOMActivate">
  1183. <![CDATA[
  1184. fSetNewKCD4M();
  1185. ]]>
  1186. </script>
  1187. </button>
  1188. <line id="line20" class="line_1" style="x1:5px; y1:494px; x2:510px; y2:494px; "/>
  1189. <line id="line21" class="line_2" style="x1:5px; y1:499px; x2:510px; y2:499px; "/>
  1190. <caption id="cap_indxcd" class="cell_1" style="left:258px; top:501px; width:90px; height:23px; vertical-align:middle; ">색인코드</caption>
  1191. <caption id="cap_fromdt" class="cell_1" style="left:3px; top:625px; width:90px; height:23px; vertical-align:middle; ">시작일자</caption>
  1192. <line id="line22" class="line_2" style="x1:4px; y1:574px; x2:510px; y2:574px; "/>
  1193. <button id="btn_save" class="btn5_letter2" navindex="18" style="left:400px; top:472px; width:42px; height:19px; ">
  1194. <caption>저장</caption>
  1195. <script type="javascript" ev:event="DOMActivate">
  1196. <![CDATA[
  1197. fSaveKCD4M();
  1198. ]]>
  1199. </script>
  1200. </button>
  1201. <line id="line23" class="line_2" style="x1:4px; y1:598px; x2:510px; y2:598px; "/>
  1202. <input id="ipt_indxcd" ref="/root/main/kcd4minfo/info/indxcd" class="input_essential" disabled="true" navindex="11" style="left:350px; top:502px; width:160px; height:19px; "/>
  1203. <caption id="cap_diagcd" class="cell_1" style="left:3px; top:501px; width:90px; height:23px; vertical-align:middle; ">형태학적 코드</caption>
  1204. <line id="line24" class="line_3" style="x1:0px; y1:466px; x2:935px; y2:466px; "/>
  1205. <datagrid id="grd_kcd4minfo" nodeset="/root/main/diagcdinfo/kcd4m" class="datagrid2" caption="stat^형태학적 코드^일련번호^색인코드^Version^SNOMED&#xA;Concept ID^SNOMED-CT&#xA;Concept 명^영문명^한글명^시작일^종료일^최종등록일시^최종등록자^최초등록일^최초등록자^최종수정일^최종수정자" colsep="^" colwidth="0, 105, 70, 95, 70, 100, 100, 268, 272, 85, 85, 130, 100, 0, 0, 0" dataheight="25" defaultrows="0" explorerbar="sortshow" mergecells="never" mergecellsfixedrows="bycolrec" rowheader="seq" rowheight="25" rowsep="|" style="left:0px; top:0px; width:935px; height:465px; ">
  1206. <col/>
  1207. <col ref="morphlgccd" style="text-align:center; "/>
  1208. <col ref="kcd4mseqno"/>
  1209. <col ref="indxcd" style="text-align:center; "/>
  1210. <col disabled="true" ref="version" type="combo">
  1211. <choices>
  1212. <item>
  1213. <label>KCD-4</label>
  1214. <value>04</value>
  1215. </item>
  1216. <item>
  1217. <label>KCD-5</label>
  1218. <value>05</value>
  1219. </item>
  1220. </choices>
  1221. </col>
  1222. <col ref="snmdcnptid"/>
  1223. <col ref="snmdcnptnm"/>
  1224. <col ref="kcd4mengnm"/>
  1225. <col ref="kcd4mhngnm"/>
  1226. <col ref="kcd4mfromdd" format="yyyy-mm-dd" style="text-align:center; "/>
  1227. <col ref="kcd4mtodd" format="yyyy-mm-dd" style="text-align:center; "/>
  1228. <col ref="lastupdtdt" format="yyyy-mm-dd hh:mm:ss"/>
  1229. <col ref="lastupdtrnm"/>
  1230. <col ref="fstrgstrid"/>
  1231. <col ref="fstrgstdt"/>
  1232. <col ref="lastupdtrid"/>
  1233. <script type="javascript" ev:event="onclick">
  1234. <![CDATA[
  1235. fSelKCD4M();
  1236. ]]>
  1237. </script>
  1238. <script type="javascript" ev:event="onaftersort">
  1239. <![CDATA[
  1240. grd_kcd4minfo.gridToInstance();
  1241. ]]>
  1242. </script>
  1243. <script type="javascript" ev:event="DOMFocusOut">
  1244. <![CDATA[
  1245. initPopupMenu();
  1246. ]]>
  1247. </script>
  1248. <script type="javascript" ev:event="onmousedown">
  1249. <![CDATA[
  1250. if(event.button == 3){
  1251. fCallPopup("grd_kcd4minfo");
  1252. }
  1253. ]]>
  1254. </script>
  1255. <script type="javascript" ev:event="onscrolldown">
  1256. <![CDATA[
  1257. fSubmitOnScroll();
  1258. ]]>
  1259. </script>
  1260. </datagrid>
  1261. <caption id="caption3" class="cell_1" style="left:258px; top:625px; width:90px; height:23px; vertical-align:middle; ">등록일시</caption>
  1262. <input id="ipt_morphlgccd" ref="/root/main/kcd4minfo/info/morphlgccd" class="input_essential" disabled="true" style="left:95px; top:502px; width:160px; height:19px; "/>
  1263. <input id="ipt_kcd4mengnm" ref="/root/main/kcd4minfo/info/kcd4mengnm" class="input_default" disabled="true" navindex="12" style="left:95px; top:577px; width:415px; height:19px; "/>
  1264. <input id="ipt_kcd4mhngnm" ref="/root/main/kcd4minfo/info/kcd4mhngnm" class="input_default" disabled="true" navindex="13" style="left:95px; top:601px; width:415px; height:19px; "/>
  1265. <input id="input1" ref="/root/main/kcd4minfo/info/fstrgstdate" class="input_essential" disabled="true" navindex="14" inputtype="date" style="left:350px; top:627px; width:105px; height:19px; "/>
  1266. <input id="input2" ref="/root/main/kcd4minfo/info/fstrgsttime" class="input_essential" disabled="true" navindex="15" format="hh:nn" style="left:457px; top:627px; width:53px; height:19px; text-align:center; "/>
  1267. <input id="ipt_kcd4mfromdate" ref="/root/main/kcd4minfo/info/kcd4mfromdd" class="input_essential" disabled="true" navindex="14" inputtype="date" style="left:95px; top:626px; width:160px; height:19px; "/>
  1268. <input id="ipt_kcd4mtodate" ref="/root/main/kcd4minfo/info/kcd4mtodd" class="input_essential" disabled="true" navindex="16" inputtype="date" style="left:95px; top:651px; width:160px; height:19px; "/>
  1269. <line id="line6" class="line_2" style="x1:4px; y1:624px; x2:510px; y2:624px; "/>
  1270. <line id="line26" class="line_2" style="x1:4px; y1:648px; x2:510px; y2:648px; "/>
  1271. <caption id="caption2" class="cell_1" style="left:258px; top:650px; width:90px; height:23px; vertical-align:middle; ">등록자</caption>
  1272. <input id="input9" ref="/root/main/kcd4minfo/info/fstrgstrid" class="input_essential" disabled="true" navindex="13" style="left:350px; top:651px; width:160px; height:19px; "/>
  1273. <datagrid id="grd_kcd4mhist" nodeset="/root/main/kcd4mhist/list" class="datagrid2" caption="형태학적코드^일련번호^색인코드^Version^SNOMED&#xA;CONCEPT ID^SNOMED&#xA;CONCEPT 명^시작일자^종료일자^영문명^한글명^등록일시^등록자^최종수정일시^최종수정자^caption2" colsep="^" colwidth="90, 70, 80, 70, 100, 100, 100, 100, 160, 160, 129, 100, 130, 100, 100" dataheight="25" ellipsis="false" explorerbar="sortshow" extendlastcol="scroll" mergecellsfixedrows="bycolrec" rowheader="seq" rowheight="25" rowsep="|" style="left:515px; top:500px; width:421px; height:175px; ">
  1274. <col ref="morphlgccd"/>
  1275. <col ref="kcd4mseqno"/>
  1276. <col ref="indxcd"/>
  1277. <col disabled="true" ref="version" type="combo">
  1278. <choices>
  1279. <item>
  1280. <label>KCD-4</label>
  1281. <value>04</value>
  1282. </item>
  1283. <item>
  1284. <label>KCD-5</label>
  1285. <value>05</value>
  1286. </item>
  1287. </choices>
  1288. </col>
  1289. <col ref="snmdcnptid"/>
  1290. <col ref="snmdcnptnm"/>
  1291. <col ref="kcd4mfromdd" format="yyyy-mm-dd"/>
  1292. <col ref="kcd4mtodd" format="yyyy-mm-dd"/>
  1293. <col ref="kcd4mengnm"/>
  1294. <col ref="kcd4mhngnm"/>
  1295. <col ref="fstrgstdt" format="yyyy-mm-dd hh:mm:dd"/>
  1296. <col ref="fstrgstrid"/>
  1297. <col ref="lastupdtdt" format="yyyy-mm-dd hh:mm:dd"/>
  1298. <col ref="lastupdtrnm"/>
  1299. <col ref="lastupdtrid" visibility="hidden"/>
  1300. <script type="javascript" ev:event="onclick">
  1301. <![CDATA[
  1302. fGetKCD4MHistList();
  1303. ]]>
  1304. </script>
  1305. <script type="javascript" ev:event="onaftersort">
  1306. <![CDATA[
  1307. grd_kcd4mhist.gridToInstance();
  1308. ]]>
  1309. </script>
  1310. </datagrid>
  1311. <line id="line30" class="line_1" style="x1:516px; y1:494px; x2:935px; y2:494px; "/>
  1312. <button id="button4" class="btn5_letter4" navindex="18" style="left:445px; top:472px; width:64px; height:19px; ">
  1313. <caption>사용종료</caption>
  1314. <script type="javascript" ev:event="DOMActivate">
  1315. <![CDATA[
  1316. fEndKCD4M();
  1317. ]]>
  1318. </script>
  1319. <script type="javascript" ev:event="onclick">
  1320. <![CDATA[
  1321. ]]>
  1322. </script>
  1323. </button>
  1324. <button id="button6" class="btn2_letter2" navindex="7" style="left:355px; top:472px; width:42px; height:19px; ">
  1325. <caption>수정</caption>
  1326. <script type="javascript" ev:event="DOMActivate">
  1327. <![CDATA[
  1328. fSetKCD4MUpdt();
  1329. ]]>
  1330. </script>
  1331. </button>
  1332. <caption id="caption15" class="tit_2" style="left:520px; top:477px; width:150px; height:13px; ">이력조회</caption>
  1333. <input id="ipt_kcd4mseqno" ref="/root/main/kcd4minfo/info/kcd4mseqno" class="input_essential" disabled="true" style="left:95px; top:527px; width:160px; height:19px; "/>
  1334. <caption id="caption10" class="cell_1" style="left:258px; top:526px; width:90px; height:23px; vertical-align:middle; ">Concept ID</caption>
  1335. <input id="ipt_kcdsnmdcnptid" ref="/root/main/kcd4minfo/info/snmdcnptid" class="input_default" disabled="true" navindex="11" style="left:350px; top:527px; width:160px; height:19px; "/>
  1336. <caption id="caption28" class="cell_1" style="left:3px; top:526px; width:90px; height:23px; vertical-align:middle; ">일련번호</caption>
  1337. <line id="line31" class="line_2" style="x1:5px; y1:524px; x2:510px; y2:524px; "/>
  1338. <input id="ipt_kcdsnmdcnptnm" ref="/root/main/kcd4minfo/info/snmdcnptnm" class="input_default" disabled="true" navindex="11" style="left:350px; top:552px; width:160px; height:19px; "/>
  1339. <caption id="caption31" class="cell_1" style="left:258px; top:551px; width:90px; height:23px; vertical-align:middle; ">Concept 명</caption>
  1340. <line id="line32" class="line_2" style="x1:4px; y1:549px; x2:510px; y2:549px; "/>
  1341. <caption id="caption33" class="cell_1" style="left:3px; top:551px; width:90px; height:23px; vertical-align:middle; ">버젼</caption>
  1342. <select1 id="cmb_version" ref="/root/main/kcd4minfo/info/version" class="combo_default" disabled="true" appearance="minimal" style="left:95px; top:552px; width:160px; height:19px; ">
  1343. <choices>
  1344. <item>
  1345. <label>KCD-4</label>
  1346. <value>04</value>
  1347. </item>
  1348. <item>
  1349. <label>KCD-5</label>
  1350. <value>05</value>
  1351. </item>
  1352. </choices>
  1353. </select1>
  1354. </case>
  1355. <case id="case_DeptDiag">
  1356. <caption id="caption23" class="tit_2" style="left:0px; top:7px; width:87px; height:14px; ">과진단 정보</caption>
  1357. <button id="btn_deptsrch" class="icon_search" style="left:144px; top:3px; width:16px; height:16px; ">
  1358. <caption/>
  1359. <script type="javascript" ev:event="DOMActivate">
  1360. <![CDATA[
  1361. fCallDeptInfo();
  1362. ]]>
  1363. </script>
  1364. </button>
  1365. <datagrid id="grd_deptdiag" nodeset="/root/main/deptdiagcdlist/deptdiagcdinfo" allowselection="false" caption="상태^ICD-10^색인코드^색인명^진단 영문명^진단 한글명^진료과^deptcd^deptfromdt^deptindxflag" colsep="^" colwidth="38, 128, 100, 130, 267, 278, 100, 0, 0, 0" dataheight="25" defaultrows="0" explorerbar="sortshow" mergecells="never" mergecellsfixedrows="bycolrec" rowheader="seq" rowheight="25" rowsep="|" style="left:0px; top:28px; width:935px; height:287px; vertical-align:middle; ">
  1366. <col ref="status" type="combo" style="text-align:center; ">
  1367. <choices>
  1368. <item>
  1369. <label>-</label>
  1370. <value>-</value>
  1371. </item>
  1372. <item>
  1373. <label>입력</label>
  1374. <value>I</value>
  1375. </item>
  1376. <item>
  1377. <label>수정</label>
  1378. <value>U</value>
  1379. </item>
  1380. <item>
  1381. <label>삭제</label>
  1382. <value>D</value>
  1383. </item>
  1384. </choices>
  1385. </col>
  1386. <col ref="termcd"/>
  1387. <col ref="deptindxcd"/>
  1388. <col ref="deptindxnm"/>
  1389. <col ref="termengnm"/>
  1390. <col ref="termhngnm"/>
  1391. <col ref="deptnm"/>
  1392. <col ref="deptcd"/>
  1393. <col ref="deptfromdt"/>
  1394. <col ref="deptindxflag"/>
  1395. <script type="javascript" ev:event="onaftersort">
  1396. <![CDATA[
  1397. grd_deptdiag.gridToInstance();
  1398. ]]>
  1399. </script>
  1400. <script type="javascript" ev:event="onscroll">
  1401. <![CDATA[
  1402. fSubmitOnScroll();
  1403. ]]>
  1404. </script>
  1405. </datagrid>
  1406. <input id="ipt_deptcd" ref="/root/hidden/condition/deptset/selecteddeptcd" class="input_search" style="left:91px; top:3px; width:50px; height:19px; "/>
  1407. <input id="ipt_deptnm" ref="/root/hidden/condition/deptset/selecteddeptnm" class="input_search" style="left:163px; top:3px; width:100px; height:19px; ">
  1408. <script type="javascript" ev:event="onkeyup">
  1409. <![CDATA[
  1410. inputEnterKey("btn_deptsrch", "DOMActivate");
  1411. ]]>
  1412. </script>
  1413. </input>
  1414. <line id="line28" class="line_1" style="x1:1px; y1:23px; x2:935px; y2:23px; "/>
  1415. <line id="line29" class="line_1" style="x1:3px; y1:342px; x2:936px; y2:342px; "/>
  1416. <input id="input4" ref="/root/hidden/condition/deptset/srchnm" class="input_search" navindex="3" style="left:265px; top:322px; width:155px; height:19px; ">
  1417. <script type="javascript" ev:event="onkeyup">
  1418. <![CDATA[
  1419. inputEnterKey("btn_srchdiag", "DOMActivate");
  1420. ]]>
  1421. </script>
  1422. </input>
  1423. <select1 id="radio3" ref="/root/hidden/condition/deptset/srchflag" class="radio_search" navindex="2" appearance="full" cols="3" overflow="visible" style="left:100px; top:321px; width:160px; height:20px; border-style:none; ">
  1424. <choices>
  1425. <item>
  1426. <label>코드</label>
  1427. <value>C</value>
  1428. </item>
  1429. <item>
  1430. <label>영문명</label>
  1431. <value>E</value>
  1432. </item>
  1433. <item>
  1434. <label>한글명</label>
  1435. <value>H</value>
  1436. </item>
  1437. </choices>
  1438. </select1>
  1439. <caption id="caption29" class="tit_2" style="left:0px; top:325px; width:76px; height:14px; ">진단 추가</caption>
  1440. <datagrid id="grd_srcheddiaginfo" nodeset="/root/main/srcheddiagcdlist/srcheddiagcdinfo" allowselection="false" caption="선택^ICD-10^진단 영문명^진단 한글명" colsep="^" colwidth="34, 100, 346, 330" dataheight="25" defaultrows="0" explorerbar="sortshow" mergecells="never" mergecellsfixedrows="bycolrec" rowheader="seq" rowheight="25" rowsep="|" style="left:1px; top:347px; width:933px; height:328px; text-align:center; vertical-align:middle; ">
  1441. <col ref="check" type="checkbox"/>
  1442. <col ref="termcd" style="text-align:left; "/>
  1443. <col ref="termengnm" style="text-align:left; "/>
  1444. <col ref="termhngnm" style="text-align:left; "/>
  1445. <script type="javascript" ev:event="onclick">
  1446. <![CDATA[
  1447. fSelAddDiagList();
  1448. ]]>
  1449. </script>
  1450. <script type="javascript" ev:event="onaftersort">
  1451. <![CDATA[
  1452. grd_srcheddiaginfo.gridToInstance();
  1453. ]]>
  1454. </script>
  1455. </datagrid>
  1456. <button id="btn_srchdiag" class="btn2_letter2" style="left:425px; top:320px; width:42px; height:19px; ">
  1457. <caption>조회</caption>
  1458. <script type="javascript" ev:event="DOMActivate">
  1459. <![CDATA[
  1460. fSrchDiagInfo();
  1461. ]]>
  1462. </script>
  1463. </button>
  1464. <button id="btn_senddiag" class="icon_top" style="left:558px; top:320px; width:42px; height:19px; ">
  1465. <caption/>
  1466. <script type="javascript" ev:event="DOMActivate">
  1467. <![CDATA[
  1468. fSendDeptDiag();
  1469. ]]>
  1470. </script>
  1471. </button>
  1472. <button id="btn_srchdeptdiag" class="btn2_letter2" style="left:802px; top:3px; width:42px; height:19px; ">
  1473. <caption>조회</caption>
  1474. <script type="javascript" ev:event="DOMActivate">
  1475. <![CDATA[
  1476. fSrchDeptDiagInfo();
  1477. ]]>
  1478. </script>
  1479. </button>
  1480. <button id="btn_savedeptdiag" class="btn5_letter2" navindex="18" style="left:891px; top:3px; width:42px; height:19px; ">
  1481. <caption>저장</caption>
  1482. <script type="javascript" ev:event="DOMActivate">
  1483. <![CDATA[
  1484. fSaveDeptDiagInfo();
  1485. ]]>
  1486. </script>
  1487. </button>
  1488. <button id="btn_srchextndiag" class="btn2_letter6" style="left:470px; top:320px; width:86px; height:19px; ">
  1489. <caption>전체진단조회</caption>
  1490. <script type="javascript" ev:event="DOMActivate">
  1491. <![CDATA[
  1492. fCallExtnDiagInfo();
  1493. ]]>
  1494. </script>
  1495. </button>
  1496. <button id="btn_deldeptdiag" class="btn2_letter2" style="left:847px; top:3px; width:42px; height:19px; ">
  1497. <caption>삭제</caption>
  1498. <script type="javascript" ev:event="DOMActivate">
  1499. <![CDATA[
  1500. fDelDeptDiagTerm();
  1501. ]]>
  1502. </script>
  1503. </button>
  1504. </case>
  1505. </switch>
  1506. <shape id="roundrect1" appearance="roundrect" ellipsewidth="10" ellipseheight="10" style="left:255px; top:8px; width:938px; height:35px; background-color:#fffbf2; border-color:#ffd799; "/>
  1507. <line id="line13" class="line_4" style="x1:1127px; y1:15px; x2:1127px; y2:37px; "/>
  1508. <button id="button15" class="btn2_letter2" visibility="visible" style="left:1152px; top:48px; width:42px; height:19px; ">
  1509. <caption>엑셀</caption>
  1510. <script type="javascript" ev:event="DOMActivate">
  1511. <![CDATA[
  1512. var fileName = window.fileDialog("save", ",", false, "excel", "xls", "Excel Files(*.xls)|*.xls|All Files (*.*)|*.*");
  1513. if (fileName != "")
  1514. {
  1515. switch(switch2.selectedIndex){
  1516. case 0:
  1517. grd_icd10.saveExcel(fileName, "SheetName", true, true, "", "", "false");
  1518. break;
  1519. case 1:
  1520. grd_diagcd.saveExcel(fileName, "SheetName", true, true, "", "", "false");
  1521. break;
  1522. case 2:
  1523. grd_kcd4minfo.saveExcel(fileName, "SheetName", true, true, "", "", "false");
  1524. break;
  1525. case 3:
  1526. grd_deptdiag.saveExcel(fileName, "SheetName", true, true, "", "", "false");
  1527. break;
  1528. }
  1529. }
  1530. ]]>
  1531. </script>
  1532. </button>
  1533. <button id="btn_saverow" class="btn5_letter2" disabled="false" visibility="visible" style="left:1107px; top:48px; width:42px; height:19px; ">
  1534. <caption>저장</caption>
  1535. <script type="javascript" ev:event="DOMActivate">
  1536. <![CDATA[
  1537. var flag = model.getValue("/root/hidden/condition/selctedmode");
  1538. if(flag == "D"){
  1539. fTermUseSave();
  1540. }
  1541. else{
  1542. fICD10Save();
  1543. }
  1544. //fSave( flag );
  1545. ]]>
  1546. </script>
  1547. </button>
  1548. <line id="line11" class="line_2" style="x1:0px; y1:67px; x2:250px; y2:67px; "/>
  1549. <line id="line12" class="line_1" style="x1:0px; y1:65px; x2:250px; y2:65px; "/>
  1550. <button id="button17" class="btn2_letter4" disabled="true" visibility="hidden" style="left:816px; top:48px; width:64px; height:19px; ">
  1551. <caption>일괄삭제</caption>
  1552. </button>
  1553. <caption id="caption4" class="search_name" style="left:485px; top:16px; width:60px; height:17px; ">조회 :</caption>
  1554. <input id="input5" ref="/root/hidden/condition/srchnm" class="input_search" navindex="3" style="left:544px; top:16px; width:90px; height:19px; ">
  1555. <script type="javascript" ev:event="onkeyup">
  1556. <![CDATA[
  1557. inputEnterKey("btn_srchtermcd", "DOMActivate");
  1558. ]]>
  1559. </script>
  1560. </input>
  1561. <button id="button18" class="btn2_letter4" visibility="hidden" style="left:883px; top:48px; width:64px; height:19px; ">
  1562. <caption>CLEAR</caption>
  1563. </button>
  1564. <button id="btn_addrow" class="btn2_letter3" disabled="false" visibility="hidden" style="left:950px; top:48px; width:53px; height:19px; ">
  1565. <caption>줄추가</caption>
  1566. <script type="javascript" ev:event="DOMActivate">
  1567. <![CDATA[
  1568. var flag = model.getValue("/root/hidden/condition/selctedmode");
  1569. fAddRow(flag);
  1570. ]]>
  1571. </script>
  1572. </button>
  1573. <button id="btn_delrow" class="btn2_letter3" disabled="false" visibility="hidden" style="left:1006px; top:48px; width:53px; height:19px; ">
  1574. <caption>줄삭제</caption>
  1575. <script type="javascript" ev:event="DOMActivate">
  1576. <![CDATA[
  1577. var flag = model.getValue("/root/hidden/condition/selctedmode");
  1578. fDelRow(flag);
  1579. ]]>
  1580. </script>
  1581. </button>
  1582. <caption id="caption5" class="search_name" style="left:265px; top:16px; width:60px; height:17px; ">구분 :</caption>
  1583. <select1 id="radio2" ref="/root/hidden/condition/srchflag" class="radio_search" navindex="2" appearance="full" cols="3" overflow="visible" style="left:325px; top:16px; width:160px; height:20px; border-style:none; ">
  1584. <choices>
  1585. <item>
  1586. <label>코드</label>
  1587. <value>C</value>
  1588. </item>
  1589. <item>
  1590. <label>영문명</label>
  1591. <value>E</value>
  1592. </item>
  1593. <item>
  1594. <label>한글명</label>
  1595. <value>H</value>
  1596. </item>
  1597. </choices>
  1598. </select1>
  1599. <button id="button22" class="btn2_letter4" style="left:185px; top:44px; width:64px; height:19px; ">
  1600. <caption>색인추가</caption>
  1601. <script type="javascript" ev:event="DOMActivate">
  1602. <![CDATA[
  1603. fAddIndx();
  1604. ]]>
  1605. </script>
  1606. </button>
  1607. <treeview id="trv_dgindx" ref="/root/hidden/condition/selectedIndx" expanddepth="1" itemheight="15" itemsettype="depth" style="left:0px; top:70px; width:250px; height:682px; border-color:#c0c0c0; border-style:solid; ">
  1608. <itemset nodeset="/root/main/indxlist/item">
  1609. <label ref="indxhngnm"/>
  1610. <value ref="indxcd"/>
  1611. <depth ref="depth"/>
  1612. </itemset>
  1613. <script type="javascript" ev:event="xforms-select">
  1614. <![CDATA[
  1615. fSelTreeIndx();
  1616. ]]>
  1617. </script>
  1618. <script type="javascript" ev:event="onmousedown">
  1619. <![CDATA[
  1620. if(event.button == 3){
  1621. if(model.getValue("/root/hidden/condition/selctedmode") == "D" || model.getValue("/root/hidden/condition/selctedmode") == "K"){
  1622. fCallPopup("trv_dgindx");
  1623. }
  1624. }
  1625. ]]>
  1626. </script>
  1627. <script type="javascript" ev:event="DOMFocusOut">
  1628. <![CDATA[
  1629. initPopupMenu();
  1630. ]]>
  1631. </script>
  1632. </treeview>
  1633. <shape id="roundrect2" appearance="roundrect" ellipsewidth="10" ellipseheight="10" style="left:0px; top:8px; width:250px; height:35; background-color:#fffbf2; border-color:#ffd799; "/>
  1634. <select1 id="radio1" ref="/root/hidden/condition/indxviewmode" appearance="full" cellspacing="3" cols="2" overflow="visible" style="left:0px; top:45px; width:115px; height:20px; border-style:none; ">
  1635. <choices>
  1636. <item>
  1637. <label>한글명</label>
  1638. <value>H</value>
  1639. </item>
  1640. <item>
  1641. <label>영문명</label>
  1642. <value>E</value>
  1643. </item>
  1644. </choices>
  1645. <script type="javascript" ev:event="xforms-value-changed">
  1646. <![CDATA[
  1647. fChngLangIndx();
  1648. ]]>
  1649. </script>
  1650. </select1>
  1651. <button id="btn_kcd4m" class="btn_sw" group="tab" style="left:510px; top:47px; width:90px; height:22px; ">
  1652. <caption>Morphology</caption>
  1653. <toggle case="KCD4M" ev:event="onclick"/>
  1654. <script type="javascript" ev:event="DOMActivate">
  1655. <![CDATA[
  1656. fSelMorphoList();
  1657. ]]>
  1658. </script>
  1659. </button>
  1660. <input id="input10" ref="/root/hidden/condition/srchindxcd" class="input_search" style="left:10px; top:16px; width:155px; height:19px; ">
  1661. <script type="javascript" ev:event="onkeyup">
  1662. <![CDATA[
  1663. inputEnterKey("btn_srchindxcd", "DOMActivate");
  1664. ]]>
  1665. </script>
  1666. </input>
  1667. <line id="line27" class="line_4" style="x1:175px; y1:15px; x2:175px; y2:37px; "/>
  1668. <button id="btn_srchindxcd" class="btn1_letter2" navindex="4" style="left:185px; top:15px; width:56px; height:22px; ">
  1669. <caption>조회</caption>
  1670. <script type="javascript" ev:event="DOMActivate">
  1671. <![CDATA[
  1672. fSrchIndxCd();
  1673. ]]>
  1674. </script>
  1675. </button>
  1676. <button id="btn_srchtermcd" class="btn1_letter2" navindex="4" style="left:1132px; top:16px; width:56px; height:22px; ">
  1677. <caption>조회</caption>
  1678. <script type="javascript" ev:event="DOMActivate">
  1679. <![CDATA[
  1680. fSrchDiagTerm();
  1681. ]]>
  1682. </script>
  1683. </button>
  1684. <input id="ipt_endfromdd" ref="/root/hidden/condition/srchfromdd" class="input_search" disabled="true" inputtype="date" style="left:760px; top:16px; width:90px; height:19px; "/>
  1685. <input id="ipt_endtodd" ref="/root/hidden/condition/srchtodd" class="input_search" disabled="true" inputtype="date" style="left:870px; top:16px; width:90px; height:19px; "/>
  1686. <caption id="caption25" style="left:855px; top:16px; width:12px; height:20px; ">~</caption>
  1687. <select id="checkbox2" ref="/root/hidden/condition/endflag" class="checkbox_search" overflow="visible" appearance="full" style="left:640px; top:16px; width:115px; height:20px; border-style:none; ">
  1688. <choices>
  1689. <item>
  1690. <label>사용종료용어조회</label>
  1691. <value>Y</value>
  1692. </item>
  1693. </choices>
  1694. <script type="javascript" ev:event="xforms-select">
  1695. <![CDATA[
  1696. model.setValue("/root/hidden/condition/srchfromdd", getCurrentDate());
  1697. model.setValue("/root/hidden/condition/srchtodd", '99991231');
  1698. ipt_endfromdd.disabled = false;
  1699. ipt_endtodd.disabled = false;
  1700. model.refresh();
  1701. ]]>
  1702. </script>
  1703. <script type="javascript" ev:event="xforms-deselect">
  1704. <![CDATA[
  1705. model.setValue("/root/hidden/condition/srchfromdd", "");
  1706. model.setValue("/root/hidden/condition/srchtodd", "");
  1707. ipt_endfromdd.disabled = true;
  1708. ipt_endtodd.disabled = true;
  1709. model.refresh();
  1710. ]]>
  1711. </script>
  1712. </select>
  1713. <select id="checkbox1" ref="/root/hidden/condition/indxuseflag" class="checkbox_search" overflow="visible" appearance="full" style="left:120px; top:45px; width:55px; height:20px; border-style:none; ">
  1714. <choices>
  1715. <item>
  1716. <label>AS_IS</label>
  1717. <value>ASIS</value>
  1718. </item>
  1719. </choices>
  1720. <script type="javascript" ev:event="xforms-deselect">
  1721. <![CDATA[
  1722. fChngLangIndx();
  1723. ]]>
  1724. </script>
  1725. <script type="javascript" ev:event="xforms-select">
  1726. <![CDATA[
  1727. fChngLangIndx();
  1728. ]]>
  1729. </script>
  1730. </select>
  1731. <button id="btn_modify" class="btn2_letter2" disabled="false" visibility="hidden" style="left:1062px; top:48px; width:42px; height:19px; ">
  1732. <caption>수정</caption>
  1733. <script type="javascript" ev:event="DOMActivate">
  1734. <![CDATA[
  1735. var flag = model.getValue("/root/hidden/condition/selctedmode");
  1736. fEditRow(flag);
  1737. ]]>
  1738. </script>
  1739. </button>
  1740. <select1 id="cmb_selInst" ref="/root/hidden/condition/selInstcd" class="combo_default" visibility="hidden" appearance="minimal" style="left:1022px; top:16px; width:100px; height:19px; ">
  1741. <choices>
  1742. <itemset nodeset="/root/init/M0534selcmb/M0534">
  1743. <label ref="cdnm"/>
  1744. <value ref="cdid"/>
  1745. </itemset>
  1746. </choices>
  1747. <script type="javascript" ev:event="xforms-value-changed">
  1748. <![CDATA[
  1749. // var selInstcd = model.getValue("/root/hidden/condition/selInstcd");
  1750. // if(selInstcd == "001"){
  1751. // btn_saverow.disabled = true;
  1752. // }
  1753. // else{
  1754. // btn_saverow.disabled = false;
  1755. // }
  1756. ]]>
  1757. </script>
  1758. </select1>
  1759. <caption id="cap_selInst" class="search_name" visibility="hidden" style="left:962px; top:16px; width:63px; height:17px; ">기관 :</caption>
  1760. </group>
  1761. </xhtml:body>
  1762. </xhtml:html>