SMMRI00400_통합기록조회.xfdl 104 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112
  1. <?xml version="1.0" encoding="utf-8"?>
  2. <FDL version="1.4">
  3. <TypeDefinition url="..\..\..\default_typedef.xml"/>
  4. <Form id="SMMRI00400" position="absolute 0 0 1280 943" titletext="통합기록조회" onload="SMMRI00400_onload" onkeydown="SMMRI00400_onkeydown">
  5. <Layouts>
  6. <Layout>
  7. <Radio position="absolute 150 2 750 19" align="align:center middle;" id="rdo_lindx" columncount="10" innerdataset="ds_init_rdo_lindx" datacolumn="indxnm" codecolumn="itemindxseq" onitemclick="rdo_lindx_onitemclick" onitemchanged="rdo_lindx_onitemchanged" index="-1" visible="false"/>
  8. <Shape position="absolute 0 20 1250 26" linetype="horizontal" id="line17" class="line_1"/>
  9. <Div position="absolute 0 24 342 936" id="grup_left">
  10. <Layouts>
  11. <Layout width="342" height="912">
  12. <Shape position="absolute 339 2 341 887" linetype="vertical" id="line1" class="line_2" anchor="default"/>
  13. <Div position="absolute 0 2 339 81" id="roundrect2" type="roundrectangle" class="div_SA2" anchor="default">
  14. <Layouts>
  15. <Layout>
  16. <Button id="button5" taborder="7" onclick="grup_left_button5_onclick" position="absolute 215 28 245 48" anchor="default"/>
  17. <Static id="caption21" text="등록번호" class="cell_1" position="absolute 3 3 63 26" anchor="default"/>
  18. <Edit id="ipt_pid" taborder="1" onkeydown="grup_left_ipt_pid_onkeydown" class="input_essential" position="absolute 66 5 161 24" anchor="default"/>
  19. <Static id="caption35" text="주민번호" class="cell_1" position="absolute 3 28 63 51" anchor="default"/>
  20. <MaskEdit id="ipt_rrgstno1" taborder="2" mask="999999" onkeydown="grup_left_roundrec2_ipt_rrgstno1_onkeydown" class="input_essential" position="absolute 66 29 136 48" anchor="default" style="align:left middle;"/>
  21. <Edit id="ipt_rrgstno2" taborder="3" onkeydown="grup_left_roundrec2_ipt_rrgstno2_onkeydown" class="input_essential" position="absolute 140 29 210 48" mask="9999999" anchor="default" password="true"/>
  22. <Static id="caption23" text="성명" class="cell_1" position="absolute 165 3 225 26" anchor="default"/>
  23. <Edit id="ipt_hngnm" taborder="4" class="input_essential" position="absolute 227 5 312 24" onkeydown="grup_left_roundrect2_ipt_hngnm_onkeydown" anchor="default"/>
  24. <Button id="btn_search" taborder="5" onclick="grup_left_roundrec2_btn_search_onclick" class="icon_search" position="absolute 315 7 331 23" anchor="default"/>
  25. <Edit id="opt_age" taborder="6" readonly="true" position="absolute 281 30 334 49" anchor="default"/>
  26. <Static id="caption57" text="성별/나이" class="cell_1" position="absolute 213 28 279 51" anchor="default"/>
  27. <Combo id="cmb_dept" taborder="8" innerdataset="ds_init_cmb_dept" codecolumn="deptcd" datacolumn="deptnm" onitemchanged="grup_left_cmb_dept_onitemchanged" onkeydown="grup_left_cmb_dept_onkeydown" class="combo_default" position="absolute 66 55 276 74" canitemchange="grup_left_roundrect2_cmb_dept_canitemchange" oncloseup="grup_left_roundrect2_cmb_dept_oncloseup" onitemclick="grup_left_roundrect2_cmb_dept_onitemclick" anchor="default"/>
  28. <Button id="button3" taborder="9" text="조회" onclick="grup_left_roundrec2_button3_onclick" class="btn1" position="absolute 280 53 336 75" anchor="default"/>
  29. <Static id="caption5" text="진료부서" class="cell_1" position="absolute 3 53 63 76" anchor="default"/>
  30. </Layout>
  31. </Layouts>
  32. </Div>
  33. <Static text="수진이력" position="absolute 0 113 100 129" id="caption2" class="tit_2" anchor="default"/>
  34. <Tab position="absolute 0 118 338 893" id="switch1" style="buttonbackground:stretch 10,0;buttonmargin:0 1 0 0;showextrabutton:false;cursor:auto;" anchor="default">
  35. <Tabpages>
  36. <Tabpage text="" id="grd">
  37. <Layouts>
  38. <Layout width="338" height="760">
  39. <Grid position="absolute 0 344 338 755" id="grd_midindx" binddataset="ds_grd_midindx" anchor="default" oncelldblclick="grup_left_switch1_grd_grd_midindx_oncelldblclick" onrbuttondown="grup_left_switch1_grd_grd_midindx_onrbuttondown" onkeydown="grup_left_switch1_grd_grd_midindx_onkeydown" autofittype="none" autosizingtype="row" style="font:Dotum,8,bold;" cellsizingtype="none">
  40. <Formats>
  41. <Format id="default">
  42. <Columns>
  43. <Column size="0"/>
  44. <Column size="0"/>
  45. <Column size="0"/>
  46. <Column size="0"/>
  47. <Column size="0"/>
  48. <Column size="0"/>
  49. <Column size="240"/>
  50. <Column size="0"/>
  51. </Columns>
  52. <Rows>
  53. <Row size="22" band="head"/>
  54. <Row size="20"/>
  55. </Rows>
  56. <Band id="head">
  57. <Cell text="lisflag"/>
  58. <Cell col="1" text="reckind"/>
  59. <Cell col="2" text="emrflag"/>
  60. <Cell col="3" text="정렬순번"/>
  61. <Cell col="4" text="상위아이템코드"/>
  62. <Cell col="5" text="아이템코드"/>
  63. <Cell col="6" text="중분류명"/>
  64. <Cell col="7" text="중분류명"/>
  65. </Band>
  66. <Band id="body">
  67. <Cell text="bind:lisflag"/>
  68. <Cell col="1" text="bind:reckind"/>
  69. <Cell col="2" text="bind:emrflag"/>
  70. <Cell col="3" text="bind:sortno"/>
  71. <Cell col="4" text="bind:supitemindxseq"/>
  72. <Cell col="5" text="bind:itemindxseq"/>
  73. <Cell col="6" style="align:left middle;padding:0 0 0 5;" text="bind:indxnm" autosizerow="limitmin"/>
  74. <Cell col="7" text="bind:cnt"/>
  75. </Band>
  76. </Format>
  77. </Formats>
  78. </Grid>
  79. <Button position="absolute 89 532 109 547" align="align:center middle;" id="button1" visible="false" text="&lt;&lt;" anchor="default" onclick="grup_left_switch1_grd_button1_onclick"/>
  80. <Button position="absolute 104 532 124 547" align="align:center middle;" id="button2" visible="false" text="&lt;" anchor="default" onclick="grup_left_switch1_grd_button2_onclick"/>
  81. <Button position="absolute 119 532 139 547" align="align:center middle;" id="button4" visible="false" text="&gt;" anchor="default" onclick="grup_left_switch1_grd_button4_onclick"/>
  82. <Static position="absolute 239 531 282 546" align="align:right middle;" id="lbl_totcnt" visible="false" anchor="default" style="background:#ffff99ff;"/>
  83. <Static position="absolute 289 531 332 546" align="align:right middle;" id="caption1" visible="false" anchor="default" style="background:#ccffffff;"/>
  84. <Button position="absolute 134 532 154 547" align="align:center middle;" id="button6" visible="false" text="&gt;&gt;" anchor="default" onclick="grup_left_switch1_grd_button6_onclick"/>
  85. <Button position="absolute 154 477 184 492" align="align:center middle;" id="button7" visible="false" text="all" anchor="default" onclick="grup_left_switch1_grd_button7_onclick"/>
  86. <Static position="absolute 164 531 224 546" align="align:right middle;" id="caption4" visible="false" anchor="default" style="background:#ccffccff;"/>
  87. <Grid position="absolute 0 581 285 736" id="datagrid1" visible="false" binddataset="ds_datagrid1" anchor="default">
  88. <Formats>
  89. <Format id="default">
  90. <Columns>
  91. <Column size="22"/>
  92. <Column size="30"/>
  93. <Column size="30"/>
  94. <Column size="30"/>
  95. <Column size="30"/>
  96. <Column size="30"/>
  97. <Column size="30"/>
  98. <Column size="30"/>
  99. <Column size="30"/>
  100. <Column size="30"/>
  101. <Column size="30"/>
  102. <Column size="30"/>
  103. <Column size="56"/>
  104. <Column size="63"/>
  105. <Column size="38"/>
  106. </Columns>
  107. <Rows>
  108. <Row size="24" band="head"/>
  109. <Row size="24"/>
  110. </Rows>
  111. <Band id="head">
  112. <Cell/>
  113. <Cell col="1" text="caption1"/>
  114. <Cell col="2" text="caption2"/>
  115. <Cell col="3" text="caption3"/>
  116. <Cell col="4" text="caption4"/>
  117. <Cell col="5" text="caption5"/>
  118. <Cell col="6" text="caption6"/>
  119. <Cell col="7" text="caption7"/>
  120. <Cell col="8" text="caption8"/>
  121. <Cell col="9" text="caption9"/>
  122. <Cell col="10" text="caption10"/>
  123. <Cell col="11" text="caption11"/>
  124. <Cell col="12" text="caption12"/>
  125. <Cell col="13" text="caption13"/>
  126. <Cell col="14" text="caption14"/>
  127. </Band>
  128. <Band id="body">
  129. <Cell displaytype="normal"/>
  130. <Cell col="1" text="bind:pid"/>
  131. <Cell col="2" text="bind:orddd"/>
  132. <Cell col="3" text="bind:cretno"/>
  133. <Cell col="4" text="bind:chosflag"/>
  134. <Cell col="5" text="bind:signno"/>
  135. <Cell col="6" text="bind:formcd"/>
  136. <Cell col="7" text="bind:reckind"/>
  137. <Cell col="8" text="bind:userdeptcd"/>
  138. <Cell col="9" text="bind:readprtflag"/>
  139. <Cell col="10" text="bind:refusge"/>
  140. <Cell col="11" text="bind:refremark"/>
  141. <Cell col="12" text="bind:appno"/>
  142. <Cell col="13" text="bind:histno"/>
  143. <Cell col="14"/>
  144. </Band>
  145. </Format>
  146. </Formats>
  147. </Grid>
  148. <!--<Tab position="absolute 0 0 338 320" id="switch2">
  149. <Tabpages>
  150. <Tabpage text="" id="case_dept">
  151. <Layouts>
  152. <Layout>-->
  153. <Grid position="absolute 0 0 338 318" id="grd_pathist" binddataset="ds_grd_pathist" anchor="default" oncelldblclick="grup_left_switch1_grd_grd_pathist_oncelldblclick" onkeydown="grup_left_switch1_grd_grd_pathist_onkeydown" tooltiptype="default">
  154. <Formats>
  155. <Format id="default">
  156. <Columns>
  157. <Column size="32"/>
  158. <Column size="70"/>
  159. <Column size="70"/>
  160. <Column size="40"/>
  161. <Column size="55"/>
  162. <Column size="60"/>
  163. <Column size="45"/>
  164. <Column size="0"/>
  165. <Column size="0"/>
  166. <Column size="0"/>
  167. <Column size="0"/>
  168. <Column size="0"/>
  169. <Column size="0"/>
  170. <Column size="0"/>
  171. </Columns>
  172. <Rows>
  173. <Row size="24" band="head"/>
  174. <Row size="24"/>
  175. </Rows>
  176. <Band id="head">
  177. <Cell text="구분"/>
  178. <Cell col="1" text="퇴(내)원일"/>
  179. <Cell col="2" text="입원일"/>
  180. <Cell col="3" text="과"/>
  181. <Cell col="4" text="가"/>
  182. <Cell col="5" text="진료의"/>
  183. <Cell col="6" text="센터"/>
  184. <Cell col="7" text="orddd"/>
  185. <Cell col="8" text="cretno"/>
  186. <Cell col="9" text="orddeptcd"/>
  187. <Cell col="10" text="ordtype"/>
  188. <Cell col="11" text="emrflag"/>
  189. <Cell col="12" text="bfopentest"/>
  190. <Cell col="13" text="wardcd"/>
  191. </Band>
  192. <Band id="body">
  193. <Cell displaytype="normal" edittype="none" text="bind:ioflag" expandshow="hide"/>
  194. <Cell col="1" text="bind:dschdd" mask="####-##-##"/>
  195. <Cell col="2" text="bind:indd" mask="expr:utlf_isNull(indd)?&quot;&quot;:&quot;####-##-##&quot;"/>
  196. <Cell col="3" text="bind:orddeptnm"/>
  197. <Cell col="4" style="align: ;" text="bind:medamtfreeresn" wordwrap="char" tooltiptype="bottom"/>
  198. <Cell col="5" text="bind:orddrnm"/>
  199. <Cell col="6" text="bind:centcd"/>
  200. <Cell col="7" text="bind:orddd"/>
  201. <Cell col="8" text="bind:cretno"/>
  202. <Cell col="9" text="bind:orddeptcd"/>
  203. <Cell col="10" text="bind:ordtype"/>
  204. <Cell col="11" text="bind:emrflag"/>
  205. <Cell col="12" text="bind:bfopentest"/>
  206. <Cell col="13" text="bind:wardcd"/>
  207. </Band>
  208. </Format>
  209. </Formats>
  210. </Grid>
  211. <Grid position="absolute 0 0 0 318" align="align:center middle;" id="datagrid3" binddataset="ds_init_cmb_dept" anchor="default" oncelldblclick="grup_left_switch1_grd_datagrid3_oncelldblclick">
  212. <Formats>
  213. <Format id="default">
  214. <Columns>
  215. <Column size="90"/>
  216. <Column size="0"/>
  217. <Column size="0"/>
  218. </Columns>
  219. <Rows>
  220. <Row size="24" band="head"/>
  221. <Row size="24"/>
  222. </Rows>
  223. <Band id="head">
  224. <Cell text="진료과"/>
  225. <Cell col="1" text="코드"/>
  226. <Cell col="2" text="bgchk"/>
  227. </Band>
  228. <Band id="body">
  229. <Cell style="background:EXPR(bgchk==&quot;true&quot;?&quot;#ffcc99&quot;:&quot;default&quot;);background2:EXPR(bgchk==&quot;true&quot;?&quot;#ffcc99&quot;:&quot;default&quot;);" text="bind:deptengabbr"/>
  230. <Cell col="1" text="bind:deptcd"/>
  231. <Cell col="2" text="bind:bgchk"/>
  232. </Band>
  233. </Format>
  234. </Formats>
  235. </Grid>
  236. <!--
  237. </Layout>
  238. </Layouts>
  239. </Tabpage>
  240. </Tabpages>
  241. </Tab>
  242. -->
  243. <CheckBox position="absolute 81 323 126 343" id="cbx_paging" anchor="default" text="기간" truevalue="Y" falsevalue="N" onchanged="grup_left_switch1_grd_cbx_paging_onchanged"/>
  244. <Static text="정렬" position="absolute 5 323 40 343" id="caption8" anchor="default"/>
  245. <Combo position="absolute 35 323 80 342" align="align:center middle;" id="cmb_sort" codecolumn="codecolumn" datacolumn="datacolumn" anchor="default">
  246. <Dataset id="innerdataset">
  247. <ColumnInfo>
  248. <Column id="codecolumn"/>
  249. <Column id="datacolumn"/>
  250. </ColumnInfo>
  251. <Rows>
  252. <Row>
  253. <Col id="codecolumn">A</Col>
  254. <Col id="datacolumn">↑</Col>
  255. </Row>
  256. <Row>
  257. <Col id="codecolumn">D</Col>
  258. <Col id="datacolumn">↓</Col>
  259. </Row>
  260. </Rows>
  261. </Dataset>
  262. </Combo>
  263. <Calendar position="absolute 219 323 311 342" id="input4" class="input_essential" enable="false" anchor="default"/>
  264. <Calendar position="absolute 127 323 219 342" id="input5" class="input_essential" enable="false" anchor="default"/>
  265. </Layout>
  266. </Layouts>
  267. </Tabpage>
  268. <Tabpage text="" id="trv">
  269. <Layouts>
  270. <Layout width="338" height="760">
  271. <Grid position="absolute 0 0 338 752" treeusecheckbox="false" autofit="col" id="trv_bookmark" anchor="default" oncelldblclick="grup_left_switch1_trv_trv_bookmark_oncelldblclick" onrbuttondown="grup_left_switch1_trv_trv_bookmark_onrbuttondown" binddataset="ds_treeview">
  272. <Formats>
  273. <Format id="default">
  274. <Columns>
  275. <Column size="335"/>
  276. </Columns>
  277. <Rows>
  278. <Row size="0" band="head"/>
  279. <Row size="24"/>
  280. </Rows>
  281. <Band id="head">
  282. <Cell/>
  283. </Band>
  284. <Band id="body">
  285. <Cell displaytype="tree" text="bind:itemnm" treelevel="bind:level" treestate="bind:itemno" treeitemimage="bind:image"/>
  286. </Band>
  287. </Format>
  288. </Formats>
  289. </Grid>
  290. <CheckBox position="absolute 230 765 330 785" id="chk_allbmk" visible="false" anchor="default" onchanged="grup_left_switch1_trv_chk_allbmk_onchanged"/>
  291. </Layout>
  292. </Layouts>
  293. </Tabpage>
  294. <Tabpage text="" id="rec">
  295. <Layouts>
  296. <Layout>
  297. <Div position="absolute 0 0 336 88" id="roundrect1" anchor="default" class="div_SA">
  298. <Layouts>
  299. <Layout>
  300. <Static id="caption6" text="조회기간 :" class="search_name" position="absolute 5 8 110 25" anchor="default"/>
  301. <Static id="caption3" text="서식기록 :" class="search_name" position="absolute 5 34 110 51" anchor="default"/>
  302. <Calendar id="input3" taborder="1" class="input_essential" position="absolute 94 7 199 26" anchor="default"/>
  303. <Static id="caption7" text="~" position="absolute 202 8 217 25" anchor="default"/>
  304. <Calendar id="input2" taborder="2" class="input_essential" position="absolute 217 7 322 26" anchor="default"/>
  305. <Button id="btn_recsearch" taborder="3" text="조회" onclick="grup_left_switch1_rec_btn_recsearch_onclick" class="btn1" position="absolute 266 31 322 53" anchor="default"/>
  306. <Combo id="cmb_recformcd" taborder="4" innerdataset="ds_init_cmb_recformcd" codecolumn="trgtcd" datacolumn="trgtcdnm" class="combo_default" position="absolute 94 32 262 51" anchor="default"/>
  307. <Button id="button9" taborder="5" text="전체선택" onclick="grup_left_switch1_rec_button9_onclick" class="btn2" visible="false" position="absolute 12 62 76 81" anchor="default"/>
  308. <Button id="button11" taborder="6" text="선택항목조회" onclick="grup_left_switch1_rec_button11_onclick" class="btn5" position="absolute 236 58 322 77" anchor="default"/>
  309. </Layout>
  310. </Layouts>
  311. </Div>
  312. <Grid position="absolute 0 91 336 752" id="grd_reclist" binddataset="ds_grd_reclist" anchor="default" oncelldblclick="grup_left_switch1_rec_grd_reclist_oncelldblclick" onkeydown="grup_left_switch1_rec_grd_reclist_onkeydown" onheadclick="grup_left_switch1_rec_grd_reclist_onheadclick">
  313. <Formats>
  314. <Format id="default">
  315. <Columns>
  316. <Column size="33"/>
  317. <Column size="0"/>
  318. <Column size="0"/>
  319. <Column size="58"/>
  320. <Column size="72"/>
  321. <Column size="72"/>
  322. <Column size="63"/>
  323. <Column size="0"/>
  324. <Column size="0"/>
  325. <Column size="0"/>
  326. <Column size="0"/>
  327. <Column size="0"/>
  328. <Column size="0"/>
  329. <Column size="0"/>
  330. <Column size="0"/>
  331. <Column size="0"/>
  332. <Column size="0"/>
  333. <Column size="0"/>
  334. <Column size="0"/>
  335. <Column size="0"/>
  336. <Column size="0"/>
  337. <Column size="0"/>
  338. <Column size="0"/>
  339. <Column size="0"/>
  340. <Column size="0"/>
  341. <Column size="0"/>
  342. <Column size="0"/>
  343. <Column size="0"/>
  344. <Column size="0"/>
  345. <Column size="0"/>
  346. <Column size="0"/>
  347. <Column size="0"/>
  348. <Column size="0"/>
  349. <Column size="0"/>
  350. <Column size="0"/>
  351. <Column size="0"/>
  352. <Column size="0"/>
  353. <Column size="0"/>
  354. <Column size="0"/>
  355. <Column size="0"/>
  356. <Column size="0"/>
  357. <Column size="0"/>
  358. <Column size="0"/>
  359. <Column size="0"/>
  360. <Column size="0"/>
  361. <Column size="0"/>
  362. <Column size="0"/>
  363. <Column size="0"/>
  364. <Column size="0"/>
  365. <Column size="0"/>
  366. <Column size="0"/>
  367. <Column size="0"/>
  368. </Columns>
  369. <Rows>
  370. <Row size="24" band="head"/>
  371. <Row size="24"/>
  372. </Rows>
  373. <Band id="head">
  374. <Cell displaytype="checkbox" edittype="checkbox"/>
  375. <Cell col="1" text="구분"/>
  376. <Cell col="2" text="기록명"/>
  377. <Cell col="3" text="과"/>
  378. <Cell col="4" text="작성일"/>
  379. <Cell col="5" text="입원일"/>
  380. <Cell col="6" text="진료의"/>
  381. <Cell col="7" text="센터"/>
  382. <Cell col="8" text="orddd"/>
  383. <Cell col="9" text="cretno"/>
  384. <Cell col="10" text="orddeptcd"/>
  385. <Cell col="11" text="ordtype"/>
  386. <Cell col="12" text="emrflag"/>
  387. <Cell col="13" text="bfopentest"/>
  388. <Cell col="14" text="wardcd"/>
  389. <Cell col="15"/>
  390. <Cell col="16"/>
  391. <Cell col="17"/>
  392. <Cell col="18"/>
  393. <Cell col="19"/>
  394. <Cell col="20"/>
  395. <Cell col="21"/>
  396. <Cell col="22"/>
  397. <Cell col="23"/>
  398. <Cell col="24"/>
  399. <Cell col="25"/>
  400. <Cell col="26"/>
  401. <Cell col="27"/>
  402. <Cell col="28"/>
  403. <Cell col="29"/>
  404. <Cell col="30"/>
  405. <Cell col="31"/>
  406. <Cell col="32"/>
  407. <Cell col="33"/>
  408. <Cell col="34"/>
  409. <Cell col="35"/>
  410. <Cell col="36"/>
  411. <Cell col="37"/>
  412. <Cell col="38"/>
  413. <Cell col="39"/>
  414. <Cell col="40"/>
  415. <Cell col="41"/>
  416. <Cell col="42"/>
  417. <Cell col="43"/>
  418. <Cell col="44"/>
  419. <Cell col="45"/>
  420. <Cell col="46"/>
  421. <Cell col="47"/>
  422. <Cell col="48"/>
  423. <Cell col="49"/>
  424. <Cell col="50"/>
  425. <Cell col="51"/>
  426. </Band>
  427. <Band id="body">
  428. <Cell displaytype="checkbox" edittype="checkbox" text="bind:recchk"/>
  429. <Cell col="1" text="bind:ordtype"/>
  430. <Cell col="2" text="bind:formnm"/>
  431. <Cell col="3" text="bind:deptengabbr"/>
  432. <Cell col="4" text="bind:recdd" mask="yyyy-mm-dd"/>
  433. <Cell col="5" text="bind:indd" mask="yyyy-mm-dd"/>
  434. <Cell col="6" text="bind:drid"/>
  435. <Cell col="7" text="bind:orddd"/>
  436. <Cell col="8" text="bind:cretno"/>
  437. <Cell col="9" text="bind:orddeptcd"/>
  438. <Cell col="10" text="bind:emrflag"/>
  439. <Cell col="11" text="bind:bfopentest"/>
  440. <Cell col="12" text="bind:wardcd"/>
  441. <Cell col="13" text="bind:signno"/>
  442. <Cell col="14" text="bind:formcd"/>
  443. <Cell col="15" text="bind:trans"/>
  444. <Cell col="16" text="bind:pid"/>
  445. <Cell col="17" text="bind:ptnm"/>
  446. <Cell col="18" text="bind:depthngnm"/>
  447. <Cell col="19" text="bind:rgstno"/>
  448. <Cell col="20" text="bind:sa/"/>
  449. <Cell col="21" text="bind:disporddd"/>
  450. <Cell col="22" text="bind:roomcd"/>
  451. <Cell col="23" text="bind:chosflag"/>
  452. <Cell col="24" text="bind:signdeptcd"/>
  453. <Cell col="25" text="bind:signdeptengabbr"/>
  454. <Cell col="26" text="bind:srcformcd"/>
  455. <Cell col="27" text="bind:formprogflag"/>
  456. <Cell col="28" text="bind:recdt"/>
  457. <Cell col="29" text="bind:signflag"/>
  458. <Cell col="30" text="bind:imgflag"/>
  459. <Cell col="31" text="bind:langflag"/>
  460. <Cell col="32" text="bind:formrecdt"/>
  461. <Cell col="33" text="bind:fstrgstdt"/>
  462. <Cell col="34" text="bind:lastupdtdt"/>
  463. <Cell col="35" text="bind:staffconfirmdt"/>
  464. <Cell col="36" text="bind:fstrgstrusrnm"/>
  465. <Cell col="37" text="bind:lastupdtrusrnm"/>
  466. <Cell col="38" text="bind:staffnm"/>
  467. <Cell col="39" text="bind:emrrecusrnm"/>
  468. <Cell col="40" text="bind:erdt"/>
  469. <Cell col="41" text="bind:ervisittm"/>
  470. <Cell col="42" text="bind:dschdd"/>
  471. <Cell col="43" text="bind:inorddepthngnm"/>
  472. <Cell col="44" text="bind:dschorddepthngnm"/>
  473. <Cell col="45" text="bind:incnt"/>
  474. <Cell col="46" text="bind:sortno"/>
  475. <Cell col="47" text="bind:mainyn"/>
  476. <Cell col="48" text="bind:rowno"/>
  477. <Cell col="49" text="bind:signgenrflag"/>
  478. <Cell col="50" text="bind:careinrmdt"/>
  479. <Cell col="51" text="bind:cmc_orderseqno"/>
  480. </Band>
  481. </Format>
  482. </Formats>
  483. </Grid>
  484. </Layout>
  485. </Layouts>
  486. </Tabpage>
  487. </Tabpages>
  488. </Tab>
  489. <Radio position="absolute 5 85 175 105" align="align:center middle;" id="rdo_option" columncount="4" codecolumn="codecolumn" datacolumn="datacolumn" anchor="default" onitemchanged="grup_left_rdo_option_onitemchanged">
  490. <Dataset id="innerdataset">
  491. <ColumnInfo>
  492. <Column id="codecolumn"/>
  493. <Column id="datacolumn"/>
  494. </ColumnInfo>
  495. <Rows>
  496. <Row>
  497. <Col id="codecolumn">H</Col>
  498. <Col id="datacolumn">수진이력별</Col>
  499. </Row>
  500. <Row>
  501. <Col id="codecolumn">D</Col>
  502. <Col id="datacolumn">진료과별</Col>
  503. </Row>
  504. </Rows>
  505. </Dataset>
  506. </Radio>
  507. <Radio position="absolute 5 85 260 105" align="align:center middle;" id="rdo_option1" visible="false" columncount="4" codecolumn="codecolumn" datacolumn="datacolumn" anchor="default" onitemchanged="grup_left_rdo_option1_onitemchanged">
  508. <Dataset id="innerdataset">
  509. <ColumnInfo>
  510. <Column id="codecolumn"/>
  511. <Column id="datacolumn"/>
  512. </ColumnInfo>
  513. <Rows>
  514. <Row>
  515. <Col id="codecolumn">H</Col>
  516. <Col id="datacolumn">수진이력별</Col>
  517. </Row>
  518. <Row>
  519. <Col id="codecolumn">D</Col>
  520. <Col id="datacolumn">진료과별</Col>
  521. </Row>
  522. <Row>
  523. <Col id="codecolumn">F</Col>
  524. <Col id="datacolumn">기록지별</Col>
  525. </Row>
  526. </Rows>
  527. </Dataset>
  528. </Radio>
  529. <Button position="absolute 266 85 330 104" id="btn_careplan" class="btn2" visible="false" text="careplan" anchor="default"/>
  530. <Button position="absolute 266 85 330 104" id="btn_patedu" class="btn2" visible="false" text="환자교육" anchor="default" onclick="grup_left_btn_patedu_onclick" tooltiptext="환자교육 통합기록 조회"/>
  531. <Button id="btn_all" taborder="12" text="전체" class="btn_sw" anchor="default" position="absolute 154 110 201 132" style="align:center middle;" onclick="grup_left_btn_all_onclick" positiontype="position"/>
  532. <Button id="btn_out" taborder="13" text="외래" class="btn_sw" anchor="default" position="absolute 200 110 247 132" style="align:center middle;" onclick="grup_left_btn_out_onclick" positiontype="position"/>
  533. <Button id="btn_in" taborder="14" text="입원" class="btn_sw" anchor="default" position="absolute 246 110 293 132" style="align:center middle;" onclick="grup_left_btn_in_onclick" positiontype="position"/>
  534. <Button id="btn_er" taborder="15" text="응급" class="btn_sw" anchor="default" position="absolute 292 110 339 132" style="align:center middle;" onclick="grup_left_btn_er_onclick" positiontype="position"/>
  535. <Button id="btn_mark" taborder="16" text="북마크" onclick="grup_left_btn_mark_onclick" class="btn_sw" visible="false" position="absolute 95 110 156 132" style="align:center middle;" anchor="default"/>
  536. </Layout>
  537. </Layouts>
  538. </Div>
  539. <Div position="absolute 345 24 1251 936" id="grup_right">
  540. <Layouts>
  541. <Layout>
  542. <Div position="absolute 2 2 904 890" id="iviewerIemr" visible="true" url="emr_imgemrxp::SSMRC03130.xfdl">
  543. <Layouts>
  544. <Layout width="902" height="888"/>
  545. <Layout/>
  546. <Layout/>
  547. </Layouts>
  548. </Div>
  549. <Static position="absolute 480 890 900 910" id="cap_msg" style="color:#ff0000ff;"/>
  550. </Layout>
  551. </Layouts>
  552. </Div>
  553. <Button position="absolute 1053 0 1117 19" id="btn_copyprt" class="btn2" visible="false" text="사본신청" onclick="btn_copyprt_onclick"/>
  554. <Button position="absolute 1119 0 1183 19" id="button14" class="btn2" visible="true" text="조회이력" onclick="button14_onclick"/>
  555. <Button position="absolute 1185 0 1249 19" id="btn_unprep" class="btn2" enable="false" visible="true" text="미비확인" onclick="btn_unprep_onclick"/>
  556. <Button position="absolute 115 0 141 19" id="btn_minmax" class="icon_left" text="" onclick="btn_minmax_onclick" tooltiptext="최대화"/>
  557. <Div position="absolute 357 22 1147 872" id="iviewerIemrprt" visible="false" url="emr_imgemrxp::SSMRC03130.xfdl"/>
  558. <Button position="absolute 220 25 246 44" id="button8" class="icon_left" visible="false" text="" tooltiptext="최대화" onclick="button8_onclick"/>
  559. <Button position="absolute 1160 70 1235 89" id="btn_setbmk" class="btn2" visible="false" text="북마크등록" onclick="btn_setbmk_onclick"/>
  560. <Button position="absolute 1009 0 1051 19" id="btn_prnt" class="btn2_letter2" visible="false" text="출력" onclick="btn_prnt_onclick"/>
  561. <Button position="absolute 100 30 208 49" id="btn_newverform" class="btn2" visible="false" text="통합기록조회NEW" onclick="btn_newverform_onclick"/>
  562. <Button position="absolute 1155 100 1230 119" id="button10" class="btn2" visible="false" text="열람신청" onclick="button10_onclick"/>
  563. <Radio position="absolute 6 2 106 18" id="rdo_instcd" visible="false" columncount="2" codecolumn="codecolumn" datacolumn="datacolumn" onitemchanged="rdo_instcd_onitemchanged" onitemclick="rdo_instcd_onitemclick">
  564. <Dataset id="innerdataset">
  565. <ColumnInfo>
  566. <Column id="codecolumn"/>
  567. <Column id="datacolumn"/>
  568. </ColumnInfo>
  569. <Rows>
  570. <Row>
  571. <Col id="codecolumn">031</Col>
  572. <Col id="datacolumn">삼덕</Col>
  573. </Row>
  574. <Row>
  575. <Col id="codecolumn">032</Col>
  576. <Col id="datacolumn">칠곡</Col>
  577. </Row>
  578. </Rows>
  579. </Dataset>
  580. </Radio>
  581. <Static text="caption3" position="absolute 765 0 950 20" align="align:right middle;" id="txt_private" style="color:#ff0000ff;align:right middle;font:Dotum,9,bold;"/>
  582. <Radio position="absolute 765 0 865 20" id="cbx_private" visible="false" codecolumn="codecolumn" datacolumn="datacolumn">
  583. <Dataset id="innerdataset">
  584. <ColumnInfo>
  585. <Column id="codecolumn"/>
  586. <Column id="datacolumn"/>
  587. </ColumnInfo>
  588. <Rows>
  589. <Row>
  590. <Col id="codecolumn">radio1</Col>
  591. <Col id="datacolumn">radio1</Col>
  592. </Row>
  593. </Rows>
  594. </Dataset>
  595. </Radio>
  596. <Button position="absolute 955 0 1008 19" id="btn_txtcopy" class="btn5" visible="false" text="COPY" onclick="btn_txtcopy_onclick"/>
  597. <Button position="absolute 769 915 822 934" id="btn_paging" class="btn2" enable="false" text="더보기" onclick="btn_paging_onclick"/>
  598. <CheckBox id="bool_viewflag" taborder="1" visible="false" position="absolute 313 478 338 501" style="background:#ccffccff;align:center middle;"/>
  599. <PopupMenu id="midmsrght" innerdataset="@ds_midmsrght" idcolumn="hardcd" captioncolumn="hardcdnm" levelcolumn="level" position="absolute 1280 0 1381 22" onmenuclick="midmsrght_onmenuclick"/>
  600. </Layout>
  601. </Layouts>
  602. <Objects>
  603. <Dataset id="ds_init_rdo_lindx" firefirstcount="0" firenextcount="0" useclientlayout="true" updatecontrol="true" enableevent="true" loadkeymode="keep" reversesubsum="false">
  604. <ColumnInfo>
  605. <Column id="indxnm" type="STRING" size="255"/>
  606. <Column id="itemindxseq" type="STRING" size="255"/>
  607. </ColumnInfo>
  608. </Dataset>
  609. <Dataset id="ds_init_cmb_dept" firefirstcount="0" firenextcount="0" useclientlayout="false" updatecontrol="true" enableevent="true" loadkeymode="keep" reversesubsum="false">
  610. <ColumnInfo>
  611. <Column id="deptnm" type="STRING" size="255"/>
  612. <Column id="deptcd" type="STRING" size="255"/>
  613. <Column id="deptengabbr" type="STRING" size="256"/>
  614. <Column id="bgchk" type="STRING" size="256"/>
  615. </ColumnInfo>
  616. </Dataset>
  617. <Dataset id="ds_grd_midindx" firefirstcount="0" firenextcount="0" useclientlayout="false" updatecontrol="true" enableevent="true" loadkeymode="keep" reversesubsum="false">
  618. <ColumnInfo>
  619. <Column id="lisflag" type="STRING"/>
  620. <Column id="reckind" type="STRING"/>
  621. <Column id="emrflag" type="STRING"/>
  622. <Column id="sortno" type="STRING"/>
  623. <Column id="supitemindxseq" type="STRING"/>
  624. <Column id="itemindxseq" type="STRING"/>
  625. <Column id="indxnm" type="STRING"/>
  626. <Column id="cnt" type="STRING"/>
  627. </ColumnInfo>
  628. </Dataset>
  629. <Dataset id="ds_datagrid1" firefirstcount="0" firenextcount="0" useclientlayout="false" updatecontrol="true" enableevent="true" loadkeymode="keep" reversesubsum="false">
  630. <ColumnInfo>
  631. <Column id="pid" type="STRING" size="256"/>
  632. <Column id="orddd" type="STRING" size="256"/>
  633. <Column id="cretno" type="STRING" size="256"/>
  634. <Column id="chosflag" type="STRING" size="256"/>
  635. <Column id="signno" type="STRING" size="256"/>
  636. <Column id="formcd" type="STRING" size="256"/>
  637. <Column id="reckind" type="STRING" size="256"/>
  638. <Column id="userdeptcd" type="STRING" size="256"/>
  639. <Column id="readprtflag" type="STRING" size="256"/>
  640. <Column id="refusge" type="STRING" size="256"/>
  641. <Column id="refremark" type="STRING" size="256"/>
  642. <Column id="appno" type="STRING" size="256"/>
  643. <Column id="histno" type="STRING" size="256"/>
  644. </ColumnInfo>
  645. </Dataset>
  646. <Dataset id="ds_grd_pathist" firefirstcount="0" firenextcount="0" useclientlayout="false" updatecontrol="true" enableevent="true" loadkeymode="keep" reversesubsum="false">
  647. <ColumnInfo>
  648. <Column id="ioflag" type="STRING"/>
  649. <Column id="dschdd" type="STRING"/>
  650. <Column id="indd" type="STRING"/>
  651. <Column id="orddeptnm" type="STRING"/>
  652. <Column id="medamtfreeresn" type="STRING"/>
  653. <Column id="orddrnm" type="STRING"/>
  654. <Column id="centcd" type="STRING"/>
  655. <Column id="orddd" type="STRING"/>
  656. <Column id="cretno" type="STRING"/>
  657. <Column id="orddeptcd" type="STRING"/>
  658. <Column id="ordtype" type="STRING"/>
  659. <Column id="emrflag" type="STRING"/>
  660. <Column id="bfopentest" type="STRING"/>
  661. <Column id="wardcd" type="STRING"/>
  662. </ColumnInfo>
  663. </Dataset>
  664. <Dataset id="ds_datagrid3" firefirstcount="0" firenextcount="0" useclientlayout="false" updatecontrol="true" enableevent="true" loadkeymode="keep" reversesubsum="false">
  665. <ColumnInfo>
  666. <Column id="deptengabbr" type="STRING"/>
  667. <Column id="deptcd" type="STRING"/>
  668. <Column id="bgchk" type="STRING" size="256"/>
  669. </ColumnInfo>
  670. </Dataset>
  671. <Dataset id="ds_init_cmb_recformcd" firefirstcount="0" firenextcount="0" useclientlayout="false" updatecontrol="true" enableevent="true" loadkeymode="keep" reversesubsum="false">
  672. <ColumnInfo>
  673. <Column id="trgtcdnm" type="STRING"/>
  674. <Column id="trgtcd" type="STRING"/>
  675. </ColumnInfo>
  676. </Dataset>
  677. <Dataset id="ds_grd_reclist" firefirstcount="0" firenextcount="0" useclientlayout="false" updatecontrol="true" enableevent="true" loadkeymode="keep" reversesubsum="false">
  678. <ColumnInfo>
  679. <Column id="recchk" type="STRING"/>
  680. <Column id="ordtype" type="STRING"/>
  681. <Column id="formnm" type="STRING"/>
  682. <Column id="deptengabbr" type="STRING"/>
  683. <Column id="recdd" type="STRING"/>
  684. <Column id="indd" type="STRING"/>
  685. <Column id="drid" type="STRING"/>
  686. <Column id="orddd" type="STRING"/>
  687. <Column id="cretno" type="STRING"/>
  688. <Column id="orddeptcd" type="STRING"/>
  689. <Column id="emrflag" type="STRING"/>
  690. <Column id="bfopentest" type="STRING"/>
  691. <Column id="wardcd" type="STRING"/>
  692. <Column id="signno" type="STRING"/>
  693. <Column id="formcd" type="STRING"/>
  694. <Column id="trans" type="STRING"/>
  695. <Column id="pid" type="STRING"/>
  696. <Column id="ptnm" type="STRING"/>
  697. <Column id="depthngnm" type="STRING"/>
  698. <Column id="rgstno" type="STRING"/>
  699. <Column id="sa/" type="STRING"/>
  700. <Column id="disporddd" type="STRING"/>
  701. <Column id="roomcd" type="STRING"/>
  702. <Column id="chosflag" type="STRING"/>
  703. <Column id="signdeptcd" type="STRING"/>
  704. <Column id="signdeptengabbr" type="STRING"/>
  705. <Column id="srcformcd" type="STRING"/>
  706. <Column id="formprogflag" type="STRING"/>
  707. <Column id="recdt" type="STRING"/>
  708. <Column id="signflag" type="STRING"/>
  709. <Column id="imgflag" type="STRING"/>
  710. <Column id="langflag" type="STRING"/>
  711. <Column id="formrecdt" type="STRING"/>
  712. <Column id="fstrgstdt" type="STRING"/>
  713. <Column id="lastupdtdt" type="STRING"/>
  714. <Column id="staffconfirmdt" type="STRING"/>
  715. <Column id="fstrgstrusrnm" type="STRING"/>
  716. <Column id="lastupdtrusrnm" type="STRING"/>
  717. <Column id="staffnm" type="STRING"/>
  718. <Column id="emrrecusrnm" type="STRING"/>
  719. <Column id="erdt" type="STRING"/>
  720. <Column id="ervisittm" type="STRING"/>
  721. <Column id="dschdd" type="STRING"/>
  722. <Column id="inorddepthngnm" type="STRING"/>
  723. <Column id="dschorddepthngnm" type="STRING"/>
  724. <Column id="incnt" type="STRING"/>
  725. <Column id="sortno" type="STRING"/>
  726. <Column id="mainyn" type="STRING"/>
  727. <Column id="rowno" type="STRING"/>
  728. <Column id="signgenrflag" type="STRING"/>
  729. <Column id="careinrmdt" type="STRING"/>
  730. <Column id="cmc_orderseqno" type="STRING"/>
  731. </ColumnInfo>
  732. </Dataset>
  733. <Dataset id="ds_resnchk" firefirstcount="0" firenextcount="0" useclientlayout="false" updatecontrol="true" enableevent="true" loadkeymode="keep" loadfiltermode="keep" reversesubsum="false"/>
  734. <Dataset id="ds_recformuseyn" firefirstcount="0" firenextcount="0" useclientlayout="false" updatecontrol="true" enableevent="true" loadkeymode="keep" loadfiltermode="keep" reversesubsum="false"/>
  735. <Dataset id="ds_copybtnchk" firefirstcount="0" firenextcount="0" useclientlayout="false" updatecontrol="true" enableevent="true" loadkeymode="keep" loadfiltermode="keep" reversesubsum="false"/>
  736. <Dataset id="ds_fstsrcformcd" firefirstcount="0" firenextcount="0" useclientlayout="false" updatecontrol="true" enableevent="true" loadkeymode="keep" loadfiltermode="keep" reversesubsum="false"/>
  737. <Dataset id="ds_icdrsrcformcd" firefirstcount="0" firenextcount="0" useclientlayout="false" updatecontrol="true" enableevent="true" loadkeymode="keep" loadfiltermode="keep" reversesubsum="false"/>
  738. <Dataset id="ds_bmkuseyn" firefirstcount="0" firenextcount="0" useclientlayout="false" updatecontrol="true" enableevent="true" loadkeymode="keep" loadfiltermode="keep" reversesubsum="false"/>
  739. <Dataset id="ds_prntuseyn" firefirstcount="0" firenextcount="0" useclientlayout="false" updatecontrol="true" enableevent="true" loadkeymode="keep" loadfiltermode="keep" reversesubsum="false"/>
  740. <Dataset id="ds_prntdept" firefirstcount="0" firenextcount="0" useclientlayout="false" updatecontrol="true" enableevent="true" loadkeymode="keep" loadfiltermode="keep" reversesubsum="false"/>
  741. <Dataset id="ds_prntuserid" firefirstcount="0" firenextcount="0" useclientlayout="false" updatecontrol="true" enableevent="true" loadkeymode="keep" loadfiltermode="keep" reversesubsum="false"/>
  742. <Dataset id="ds_dutplcecd" firefirstcount="0" firenextcount="0" useclientlayout="false" updatecontrol="true" enableevent="true" loadkeymode="keep" loadfiltermode="keep" reversesubsum="false"/>
  743. <Dataset id="ds_crossusr" firefirstcount="0" firenextcount="0" useclientlayout="false" updatecontrol="true" enableevent="true" loadkeymode="keep" loadfiltermode="keep" reversesubsum="false"/>
  744. <Dataset id="ds_prntuser" firefirstcount="0" firenextcount="0" useclientlayout="false" updatecontrol="true" enableevent="true" loadkeymode="keep" loadfiltermode="keep" reversesubsum="false"/>
  745. <Dataset id="ds_indx" firefirstcount="0" firenextcount="0" useclientlayout="false" updatecontrol="true" enableevent="true" loadkeymode="keep" loadfiltermode="keep" reversesubsum="false"/>
  746. <Dataset id="ds_keyuseyn" firefirstcount="0" firenextcount="0" useclientlayout="false" updatecontrol="true" enableevent="true" loadkeymode="keep" loadfiltermode="keep" reversesubsum="false"/>
  747. <Dataset id="ds_keydept" firefirstcount="0" firenextcount="0" useclientlayout="false" updatecontrol="true" enableevent="true" loadkeymode="keep" loadfiltermode="keep" reversesubsum="false"/>
  748. <Dataset id="ds_keyjob" firefirstcount="0" firenextcount="0" useclientlayout="false" updatecontrol="true" enableevent="true" loadkeymode="keep" loadfiltermode="keep" reversesubsum="false"/>
  749. <Dataset id="ds_keypos" firefirstcount="0" firenextcount="0" useclientlayout="false" updatecontrol="true" enableevent="true" loadkeymode="keep" loadfiltermode="keep" reversesubsum="false"/>
  750. <Dataset id="ds_init_recformdata" firefirstcount="0" firenextcount="0" useclientlayout="false" updatecontrol="true" enableevent="true" loadkeymode="keep" loadfiltermode="keep" reversesubsum="false">
  751. <ColumnInfo>
  752. <Column id="formcd" type="STRING" size="256"/>
  753. <Column id="fromdd" type="STRING" size="256"/>
  754. <Column id="todd" type="STRING" size="256"/>
  755. </ColumnInfo>
  756. <Rows>
  757. <Row/>
  758. </Rows>
  759. </Dataset>
  760. <Dataset id="ds_init_env" firefirstcount="0" firenextcount="0" useclientlayout="false" updatecontrol="true" enableevent="true" loadkeymode="keep" loadfiltermode="keep" reversesubsum="false">
  761. <ColumnInfo>
  762. <Column id="option" type="STRING" size="256"/>
  763. <Column id="instcd" type="STRING" size="256"/>
  764. </ColumnInfo>
  765. <Rows>
  766. <Row/>
  767. </Rows>
  768. </Dataset>
  769. <Dataset id="ds_init_privatetxt" firefirstcount="0" firenextcount="0" useclientlayout="false" updatecontrol="true" enableevent="true" loadkeymode="keep" loadfiltermode="keep" reversesubsum="false">
  770. <ColumnInfo>
  771. <Column id="privatetxt" type="STRING" size="256"/>
  772. </ColumnInfo>
  773. <Rows>
  774. <Row/>
  775. </Rows>
  776. </Dataset>
  777. <Dataset id="ds_init_etc" firefirstcount="0" firenextcount="0" useclientlayout="false" updatecontrol="true" enableevent="true" loadkeymode="keep" loadfiltermode="keep" reversesubsum="false">
  778. <ColumnInfo>
  779. <Column id="ioflag" type="STRING" size="256"/>
  780. <Column id="pagingyn" type="STRING" size="256"/>
  781. <Column id="sortkind" type="STRING" size="256"/>
  782. <Column id="totcnt" type="STRING" size="256"/>
  783. <Column id="itemindxseq" type="STRING" size="256"/>
  784. <Column id="midreccnt" type="STRING" size="256"/>
  785. <Column id="reccurpos" type="STRING" size="256"/>
  786. <Column id="orddept" type="STRING" size="256"/>
  787. <Column id="tabflag" type="STRING" size="256"/>
  788. <Column id="emrflag" type="STRING" size="256"/>
  789. <Column id="bfopentest" type="STRING" size="256"/>
  790. <Column id="recall" type="STRING" size="256"/>
  791. <Column id="privateyn" type="STRING" size="256"/>
  792. </ColumnInfo>
  793. <Rows>
  794. <Row>
  795. <Col id="recall">N</Col>
  796. </Row>
  797. </Rows>
  798. </Dataset>
  799. <Dataset id="ds_patinfo" firefirstcount="0" firenextcount="0" useclientlayout="false" updatecontrol="true" enableevent="true" loadkeymode="keep" loadfiltermode="keep" reversesubsum="false" onvaluechanged="ds_patinfo_onvaluechanged">
  800. <ColumnInfo>
  801. <Column id="pid" type="STRING" size="256"/>
  802. <Column id="hngnm" type="STRING" size="256"/>
  803. <Column id="engnm" type="STRING" size="256"/>
  804. <Column id="chinm" type="STRING" size="256"/>
  805. <Column id="rrgstno1" type="STRING" size="256"/>
  806. <Column id="rrgstno2" type="STRING" size="256"/>
  807. <Column id="brthdd" type="STRING" size="256"/>
  808. <Column id="sex" type="STRING" size="256"/>
  809. <Column id="age" type="STRING" size="256"/>
  810. <Column id="bindpid" type="STRING" size="256"/>
  811. <Column id="hometel" type="STRING" size="256"/>
  812. <Column id="mpphontel" type="STRING" size="256"/>
  813. <Column id="etctel1" type="STRING" size="256"/>
  814. <Column id="etctel2" type="STRING" size="256"/>
  815. <Column id="smsaprvyn" type="STRING" size="256"/>
  816. <Column id="email" type="STRING" size="256"/>
  817. <Column id="zipcd1" type="STRING" size="256"/>
  818. <Column id="zipcd2" type="STRING" size="256"/>
  819. <Column id="zipcdseq" type="STRING" size="256"/>
  820. <Column id="addr" type="STRING" size="256"/>
  821. <Column id="detladdr" type="STRING" size="256"/>
  822. <Column id="btype" type="STRING" size="256"/>
  823. <Column id="rh" type="STRING" size="256"/>
  824. <Column id="forgeryn" type="STRING" size="256"/>
  825. <Column id="nati" type="STRING" size="256"/>
  826. <Column id="psptno" type="STRING" size="256"/>
  827. <Column id="recmyn" type="STRING" size="256"/>
  828. <Column id="recmerid" type="STRING" size="256"/>
  829. <Column id="recmerrela" type="STRING" size="256"/>
  830. <Column id="vipyn" type="STRING" size="256"/>
  831. <Column id="viprem" type="STRING" size="256"/>
  832. <Column id="religncd" type="STRING" size="256"/>
  833. <Column id="baptnm" type="STRING" size="256"/>
  834. <Column id="chchnm" type="STRING" size="256"/>
  835. <Column id="dethyn" type="STRING" size="256"/>
  836. <Column id="dethdt" type="STRING" size="256"/>
  837. <Column id="chosresn" type="STRING" size="256"/>
  838. <Column id="animyn" type="STRING" size="256"/>
  839. <Column id="exptresncd" type="STRING" size="256"/>
  840. <Column id="inhospyn" type="STRING" size="256"/>
  841. <Column id="remfact" type="STRING" size="256"/>
  842. <Column id="outuncoamt" type="STRING" size="256"/>
  843. <Column id="dschuncoamt" type="STRING" size="256"/>
  844. <Column id="fstrgstrid" type="STRING" size="256"/>
  845. <Column id="fstrgstdt" type="STRING" size="256"/>
  846. <Column id="lastupdtrid" type="STRING" size="256"/>
  847. <Column id="lastupdtdt" type="STRING" size="256"/>
  848. <Column id="agesex" type="STRING" size="256"/>
  849. </ColumnInfo>
  850. <Rows>
  851. <Row/>
  852. </Rows>
  853. </Dataset>
  854. <Dataset id="ds_treeview" firefirstcount="0" firenextcount="0" useclientlayout="false" updatecontrol="true" enableevent="true" loadkeymode="keep" loadfiltermode="keep" reversesubsum="false">
  855. <ColumnInfo>
  856. <Column id="itemnm" type="STRING" size="256"/>
  857. <Column id="itemno" type="STRING" size="256"/>
  858. <Column id="image" type="STRING" size="256"/>
  859. <Column id="level" type="STRING" size="256"/>
  860. </ColumnInfo>
  861. </Dataset>
  862. <Dataset id="ds_source" firefirstcount="0" firenextcount="0" useclientlayout="false" updatecontrol="true" enableevent="true" loadkeymode="keep" loadfiltermode="keep" reversesubsum="false">
  863. <ColumnInfo>
  864. <Column id="srchcond" type="STRING" size="256"/>
  865. <Column id="pid" type="STRING" size="256"/>
  866. <Column id="hngnm" type="STRING" size="256"/>
  867. <Column id="rrgstno1" type="STRING" size="256"/>
  868. <Column id="rrgstno2" type="STRING" size="256"/>
  869. <Column id="autoflag" type="STRING" size="256"/>
  870. </ColumnInfo>
  871. </Dataset>
  872. <Dataset id="ds_trgtdept" firefirstcount="0" firenextcount="0" useclientlayout="false" updatecontrol="true" enableevent="true" loadkeymode="keep" loadfiltermode="keep" reversesubsum="false">
  873. <ColumnInfo>
  874. <Column id="trgtcd" type="STRING" size="256" sumtext="부서코드"/>
  875. </ColumnInfo>
  876. </Dataset>
  877. <Dataset id="ds_exdept" firefirstcount="0" firenextcount="0" useclientlayout="false" updatecontrol="true" enableevent="true" loadkeymode="keep" loadfiltermode="keep" reversesubsum="false">
  878. <ColumnInfo>
  879. <Column id="trgtcd" type="STRING" size="256" sumtext="부서코드"/>
  880. </ColumnInfo>
  881. </Dataset>
  882. <Dataset id="ds_tmp" firefirstcount="0" firenextcount="0" useclientlayout="false" updatecontrol="true" enableevent="true" loadkeymode="keep" loadfiltermode="keep" reversesubsum="false">
  883. <ColumnInfo>
  884. <Column id="wheelmsg" type="STRING" size="256"/>
  885. <Column id="prcpfromdd" type="STRING" size="256"/>
  886. <Column id="prcptodd" type="STRING" size="256"/>
  887. <Column id="keys" type="STRING" size="256"/>
  888. </ColumnInfo>
  889. <Rows>
  890. <Row/>
  891. </Rows>
  892. </Dataset>
  893. <Dataset id="ds_envinit_wheel" firefirstcount="0" firenextcount="0" useclientlayout="false" updatecontrol="true" enableevent="true" loadkeymode="keep" loadfiltermode="keep" reversesubsum="false"/>
  894. <Dataset id="ds_envinit_option" firefirstcount="0" firenextcount="0" useclientlayout="false" updatecontrol="true" enableevent="true" loadkeymode="keep" loadfiltermode="keep" reversesubsum="false"/>
  895. <Dataset id="ds_envinit_defdept" firefirstcount="0" firenextcount="0" useclientlayout="false" updatecontrol="true" enableevent="true" loadkeymode="keep" loadfiltermode="keep" reversesubsum="false"/>
  896. <Dataset id="ds_envinit_tab" firefirstcount="0" firenextcount="0" useclientlayout="false" updatecontrol="true" enableevent="true" loadkeymode="keep" loadfiltermode="keep" reversesubsum="false"/>
  897. <Dataset id="ds_envinit_viewmode" firefirstcount="0" firenextcount="0" useclientlayout="false" updatecontrol="true" enableevent="true" loadkeymode="keep" loadfiltermode="keep" reversesubsum="false"/>
  898. <Dataset id="ds_envinit_paging" firefirstcount="0" firenextcount="0" useclientlayout="false" updatecontrol="true" enableevent="true" loadkeymode="keep" loadfiltermode="keep" reversesubsum="false"/>
  899. <Dataset id="ds_envinit_titledeluseyn" firefirstcount="0" firenextcount="0" useclientlayout="false" updatecontrol="true" enableevent="true" loadkeymode="keep" loadfiltermode="keep" reversesubsum="false"/>
  900. <Dataset id="ds_envinit_titledelyn" firefirstcount="0" firenextcount="0" useclientlayout="false" updatecontrol="true" enableevent="true" loadkeymode="keep" loadfiltermode="keep" reversesubsum="false"/>
  901. <Dataset id="ds_envinit" firefirstcount="0" firenextcount="0" useclientlayout="false" updatecontrol="true" enableevent="true" loadkeymode="keep" loadfiltermode="keep" reversesubsum="false">
  902. <ColumnInfo>
  903. <Column id="viewflag" type="STRING" size="256"/>
  904. </ColumnInfo>
  905. <Rows>
  906. <Row>
  907. <Col id="viewflag">false</Col>
  908. </Row>
  909. </Rows>
  910. </Dataset>
  911. <Dataset id="ds_init_accresn" firefirstcount="0" firenextcount="0" useclientlayout="false" updatecontrol="true" enableevent="true" loadkeymode="keep" loadfiltermode="keep" reversesubsum="false"/>
  912. <Dataset id="ds_init_prtresn" firefirstcount="0" firenextcount="0" useclientlayout="false" updatecontrol="true" enableevent="true" loadkeymode="keep" loadfiltermode="keep" reversesubsum="false"/>
  913. <Dataset id="ds_result_patinfo" firefirstcount="0" firenextcount="0" useclientlayout="false" updatecontrol="true" enableevent="true" loadkeymode="keep" loadfiltermode="keep" reversesubsum="false">
  914. <ColumnInfo>
  915. <Column id="pid" type="STRING" size="256" sumtext="환자등록번호"/>
  916. <Column id="bindyn" type="STRING" size="256" sumtext="환자등록번호"/>
  917. <Column id="hngnm" type="STRING" size="256" sumtext="한글이름"/>
  918. <Column id="hngnm2" type="STRING" size="256" sumtext="표시이름"/>
  919. <Column id="engnm" type="STRING" size="256" sumtext="영문이름"/>
  920. <Column id="chinm" type="STRING" size="256" sumtext="영문이름"/>
  921. <Column id="rrgstno1" type="STRING" size="256" sumtext="주민번호앞6자리"/>
  922. <Column id="rrgstno2" type="STRING" size="256" sumtext="주민번호뒤7자리"/>
  923. <Column id="rrgstno3" type="STRING" size="256" sumtext="주민번호뒤4자리와별표3자리"/>
  924. <Column id="lastinsukind" type="STRING" size="256" sumtext="최근보험유형"/>
  925. <Column id="brthdd" type="STRING" size="256" sumtext="생년월일"/>
  926. <Column id="sex" type="STRING" size="256" sumtext="성별"/>
  927. <Column id="age" type="STRING" size="256" sumtext="나이"/>
  928. <Column id="bindpid" type="STRING" size="256" sumtext="합본등록번호"/>
  929. <Column id="hometel" type="STRING" size="256" sumtext="집전화번호"/>
  930. <Column id="mpphontel" type="STRING" size="256" sumtext="휴대전화번호"/>
  931. <Column id="etctel1" type="STRING" size="256" sumtext="기타전화번호1"/>
  932. <Column id="etctel2" type="STRING" size="256" sumtext="기타전화번호2"/>
  933. <Column id="smsaprvyn" type="STRING" size="256" sumtext="SMS전송승인여부"/>
  934. <Column id="email" type="STRING" size="256" sumtext="이메일게정"/>
  935. <Column id="zipcd1" type="STRING" size="256" sumtext="우편번호앞3자리"/>
  936. <Column id="zipcd2" type="STRING" size="256" sumtext="우편번호뒤3자리"/>
  937. <Column id="zipcdseq" type="STRING" size="256" sumtext="우편일련번호"/>
  938. <Column id="addr" type="STRING" size="256" sumtext="기본주소"/>
  939. <Column id="detladdr" type="STRING" size="256" sumtext="상세주소"/>
  940. <Column id="btype" type="STRING" size="256" sumtext="혈액형"/>
  941. <Column id="rh" type="STRING" size="256" sumtext="RH혈액형"/>
  942. <Column id="forgeryn" type="STRING" size="256" sumtext="외국인여부"/>
  943. <Column id="nati" type="STRING" size="256" sumtext="국적"/>
  944. <Column id="psptno" type="STRING" size="256" sumtext="여권번호"/>
  945. <Column id="recmyn" type="STRING" size="256" sumtext="추천여부"/>
  946. <Column id="recmerid" type="STRING" size="256" sumtext="추천인ID"/>
  947. <Column id="recmernm" type="STRING" size="256" sumtext="추천인명"/>
  948. <Column id="recmerrela" type="STRING" size="256" sumtext="추천인과의관계"/>
  949. <Column id="vipyn" type="STRING" size="256" sumtext="VIP여부"/>
  950. <Column id="viprem" type="STRING" size="256" sumtext="VIP비고"/>
  951. <Column id="religncd" type="STRING" size="256" sumtext="종교코드"/>
  952. <Column id="baptnm" type="STRING" size="256" sumtext="세례명"/>
  953. <Column id="chchnm" type="STRING" size="256" sumtext="성당명"/>
  954. <Column id="dethyn" type="STRING" size="256" sumtext="사망여부"/>
  955. <Column id="dethdt" type="STRING" size="256" sumtext="사망일시"/>
  956. <Column id="dethdd" type="STRING" size="256" sumtext="사망일자"/>
  957. <Column id="dethtm" type="STRING" size="256" sumtext="사망시간"/>
  958. <Column id="chosresn" type="STRING" size="256" sumtext="내원사유"/>
  959. <Column id="animyn" type="STRING" size="256" sumtext="동물여부"/>
  960. <Column id="exptresncd" type="STRING" size="256" sumtext="원외예외사유코드"/>
  961. <Column id="inhospyn" type="STRING" size="256" sumtext="재원여부"/>
  962. <Column id="handicapryn" type="STRING" size="256" sumtext="장애인여부"/>
  963. <Column id="pidflag" type="STRING" size="256" sumtext="등록번호구분"/>
  964. <Column id="remfact" type="STRING" size="256" sumtext="참고사항"/>
  965. <Column id="ptunyn" type="STRING" size="256" sumtext="미수안내"/>
  966. <Column id="lastorddd" type="STRING" size="256" sumtext="최근내원일"/>
  967. <Column id="lastorddeptcd" type="STRING" size="256" sumtext="최근내원과"/>
  968. <Column id="outuncoamt" type="STRING" size="256" sumtext="외래미수금"/>
  969. <Column id="dschuncoamt" type="STRING" size="256" sumtext="입원미수금"/>
  970. <Column id="kioskrcptnoyn" type="STRING" size="256" sumtext="무인수납불가여부"/>
  971. <Column id="carnum" type="STRING" size="256" sumtext="차량번호"/>
  972. <Column id="acptdd" type="STRING" size="256" sumtext="가예약접수일자"/>
  973. <Column id="acptno" type="STRING" size="256" sumtext="가예약접수일련번호"/>
  974. <Column id="patspcfyn" type="STRING" size="256" sumtext="특이환자여부"/>
  975. <Column id="tdaydsch" type="STRING" size="256" sumtext="특이환자여부"/>
  976. <Column id="mig" type="STRING" size="256" sumtext="마이그레이션여부"/>
  977. <Column id="scanyn" type="STRING" size="256" sumtext="동의서출력여부"/>
  978. <Column id="spifscanyn" type="STRING" size="256" sumtext="선택진료신청서스캔여부"/>
  979. <Column id="isolinfo" type="STRING" size="256" sumtext="격리환자정보"/>
  980. <Column id="builno" type="STRING" size="256" sumtext="도로명주소코드"/>
  981. </ColumnInfo>
  982. </Dataset>
  983. <Dataset id="ds_init_paging" firefirstcount="0" firenextcount="0" useclientlayout="false" updatecontrol="true" enableevent="true" loadkeymode="keep" loadfiltermode="keep" reversesubsum="false">
  984. <ColumnInfo>
  985. <Column id="fromdd" type="STRING" size="256"/>
  986. <Column id="todd" type="STRING" size="256"/>
  987. </ColumnInfo>
  988. <Rows>
  989. <Row/>
  990. </Rows>
  991. </Dataset>
  992. <Dataset id="ds_tmp_keys" firefirstcount="0" firenextcount="0" useclientlayout="false" updatecontrol="true" enableevent="true" loadkeymode="keep" loadfiltermode="keep" reversesubsum="false">
  993. <ColumnInfo>
  994. <Column id="kind" type="STRING" size="256" sumtext="기록종류"/>
  995. <Column id="signno" type="STRING" size="256" sumtext="키"/>
  996. <Column id="sortno" type="STRING" size="256" sumtext="소팅번호"/>
  997. <Column id="formnm" type="STRING" size="256" sumtext="기록지명"/>
  998. <Column id="recdt" type="STRING" size="256" sumtext="기록일자"/>
  999. </ColumnInfo>
  1000. </Dataset>
  1001. <Dataset id="ds_imgrec_iemr" firefirstcount="0" firenextcount="0" useclientlayout="false" updatecontrol="true" enableevent="true" loadkeymode="keep" loadfiltermode="keep" reversesubsum="false">
  1002. <ColumnInfo>
  1003. <Column id="treatno" type="STRING" size="256"/>
  1004. <Column id="pid" type="STRING" size="256"/>
  1005. <Column id="orddeptcd" type="STRING" size="256"/>
  1006. <Column id="indd" type="STRING" size="256"/>
  1007. <Column id="docucd" type="STRING" size="256"/>
  1008. <Column id="ioflag" type="STRING" size="256"/>
  1009. <Column id="cmc_cretno" type="STRING" size="256"/>
  1010. <Column id="cmc_spcid" type="STRING" size="256"/>
  1011. <Column id="cmc_orddate" type="STRING" size="256"/>
  1012. <Column id="cmc_orderseqno" type="STRING" size="256"/>
  1013. </ColumnInfo>
  1014. <Rows>
  1015. <Row/>
  1016. </Rows>
  1017. </Dataset>
  1018. <Dataset id="ds_paging_iniinfo" useclientlayout="true" updatecontrol="true" enableevent="true" loadkeymode="keep" loadfiltermode="keep" reversesubsum="false" firefirstcount="40" firenextcount="40" onload="ds_paging_iniinfo_onload">
  1019. <ColumnInfo>
  1020. <Column id="pid" type="STRING" size="256" sumtext="pid"/>
  1021. <Column id="ptnm" type="STRING" size="256" sumtext="ptnm"/>
  1022. <Column id="depthngnm" type="STRING" size="256" sumtext="depthngnm"/>
  1023. <Column id="deptengabbr" type="STRING" size="256" sumtext="deptengabbr"/>
  1024. <Column id="icdrdeptengabbr" type="STRING" size="256" sumtext="icdrdeptengabbr"/>
  1025. <Column id="rgstno" type="STRING" size="256" sumtext="rgstno"/>
  1026. <Column id="sa" type="STRING" size="256" sumtext="sa"/>
  1027. <Column id="disporddd" type="STRING" size="256" sumtext="disporddd"/>
  1028. <Column id="orddd" type="STRING" size="256" sumtext="orddd"/>
  1029. <Column id="drid" type="STRING" size="256" sumtext="drid"/>
  1030. <Column id="icdrdrid" type="STRING" size="256" sumtext="icdrdrid"/>
  1031. <Column id="roomcd" type="STRING" size="256" sumtext="roomcd"/>
  1032. <Column id="icdrroomcd" type="STRING" size="256" sumtext="icdrroomcd"/>
  1033. <Column id="ordtype" type="STRING" size="256" sumtext="ordtype"/>
  1034. <Column id="chosflag" type="STRING" size="256" sumtext="chosflag"/>
  1035. <Column id="orddeptcd" type="STRING" size="256" sumtext="orddeptcd"/>
  1036. <Column id="signno" type="BIGDECIMAL" size="256" sumtext="signno"/>
  1037. <Column id="signdeptcd" type="STRING" size="256" sumtext="signdeptcd"/>
  1038. <Column id="signdeptengabbr" type="STRING" size="256" sumtext="signdeptengabbr"/>
  1039. <Column id="formcd" type="STRING" size="256" sumtext="formcd"/>
  1040. <Column id="srcformcd" type="STRING" size="256" sumtext="srcformcd"/>
  1041. <Column id="formnm" type="STRING" size="256" sumtext="formnm"/>
  1042. <Column id="formprogflag" type="STRING" size="256" sumtext="formprogflag"/>
  1043. <Column id="recdt" type="STRING" size="256" sumtext="recdt"/>
  1044. <Column id="recdd" type="STRING" size="256" sumtext="recdd"/>
  1045. <Column id="trans" type="STRING" size="256" sumtext="trans"/>
  1046. <Column id="signflag" type="STRING" size="256" sumtext="signflag"/>
  1047. <Column id="imgflag" type="STRING" size="256" sumtext="영상기록여부"/>
  1048. <Column id="langflag" type="STRING" size="256" sumtext="서식언어구분"/>
  1049. <Column id="formrecdt" type="STRING" size="256" sumtext="기록일시"/>
  1050. <Column id="fstrgstdt" type="STRING" size="256" sumtext="최초작성일시"/>
  1051. <Column id="lastupdtdt" type="STRING" size="256" sumtext="최종수정일시"/>
  1052. <Column id="staffconfirmdt" type="STRING" size="256" sumtext="staff확인일시"/>
  1053. <Column id="fstrgstrusrnm" type="STRING" size="256" sumtext="최초작성자"/>
  1054. <Column id="lastupdtrusrnm" type="STRING" size="256" sumtext="최종수정자"/>
  1055. <Column id="staffnm" type="STRING" size="256" sumtext="staff이름"/>
  1056. <Column id="emrrecusrnm" type="STRING" size="256" sumtext="의무기록사이름"/>
  1057. <Column id="erdt" type="STRING" size="256" sumtext="응급실내원시간"/>
  1058. <Column id="ervisittm" type="STRING" size="256" sumtext="의사VisitTime"/>
  1059. <Column id="indd" type="STRING" size="256" sumtext="입원일"/>
  1060. <Column id="dschdd" type="STRING" size="256" sumtext="퇴원일"/>
  1061. <Column id="inorddepthngnm" type="STRING" size="256" sumtext="입원과"/>
  1062. <Column id="dschorddepthngnm" type="STRING" size="256" sumtext="퇴원과"/>
  1063. <Column id="incnt" type="STRING" size="256" sumtext="입원회차"/>
  1064. <Column id="sortno" type="STRING" size="256" sumtext="조회순서"/>
  1065. <Column id="mainyn" type="STRING" size="256" sumtext="공통서식여부"/>
  1066. <Column id="rowno" type="STRING" size="256" sumtext="정렬순번"/>
  1067. <Column id="cretno" type="STRING" size="256" sumtext="정렬순번"/>
  1068. <Column id="signgenrflag" type="STRING" size="256" sumtext="서식발생구분"/>
  1069. <Column id="careinrmdt" type="STRING" size="256" sumtext="간호입실시간"/>
  1070. <Column id="execprcpuniqno" type="STRING" size="256" sumtext="실시처방키"/>
  1071. <Column id="recchk" type="STRING" size="256" sumtext="실시처방키"/>
  1072. <Column id="prcpdd" type="STRING" size="256" sumtext="처방일자"/>
  1073. </ColumnInfo>
  1074. </Dataset>
  1075. <Dataset id="ds_pidynhcd" firefirstcount="0" firenextcount="0" useclientlayout="false" updatecontrol="true" enableevent="true" loadkeymode="keep" loadfiltermode="keep" reversesubsum="false"/>
  1076. <Dataset id="ds_midmsrght" firefirstcount="0" firenextcount="0" useclientlayout="false" updatecontrol="true" enableevent="true" loadkeymode="keep" loadfiltermode="keep" reversesubsum="false">
  1077. <ColumnInfo>
  1078. <Column id="hardcd" type="STRING" size="256"/>
  1079. <Column id="hardcdnm" type="STRING" size="256"/>
  1080. <Column id="level" type="STRING" size="256"/>
  1081. </ColumnInfo>
  1082. <Rows>
  1083. <Row>
  1084. <Col id="hardcd">fMidPrint</Col>
  1085. <Col id="hardcdnm">분류출력</Col>
  1086. <Col id="level">0</Col>
  1087. </Row>
  1088. </Rows>
  1089. </Dataset>
  1090. <Dataset id="ds_main_cond" firefirstcount="0" firenextcount="0" useclientlayout="false" updatecontrol="true" enableevent="true" loadkeymode="keep" loadfiltermode="keep" reversesubsum="false">
  1091. <ColumnInfo>
  1092. <Column id="bmkall" type="STRING" size="256"/>
  1093. </ColumnInfo>
  1094. <Rows>
  1095. <Row/>
  1096. </Rows>
  1097. </Dataset>
  1098. </Objects>
  1099. <Bind>
  1100. <BindItem id="item6" compid="txt_private" propid="text" datasetid="ds_init_privatetxt" columnid="privatetxt"/>
  1101. <BindItem id="item7" compid="grup_left.roundrect2.ipt_pid" propid="value" datasetid="ds_patinfo" columnid="pid"/>
  1102. <BindItem id="item8" compid="grup_left.roundrect2.ipt_hngnm" propid="value" datasetid="ds_patinfo" columnid="hngnm"/>
  1103. <BindItem id="item9" compid="grup_left.roundrect2.ipt_rrgstno1" propid="value" datasetid="ds_patinfo" columnid="rrgstno1"/>
  1104. <BindItem id="item10" compid="grup_left.roundrect2.ipt_rrgstno2" propid="value" datasetid="ds_patinfo" columnid="rrgstno2"/>
  1105. <BindItem id="item11" compid="grup_left.roundrect2.opt_age" propid="value" datasetid="ds_patinfo" columnid="agesex"/>
  1106. <BindItem id="item4" compid="grup_left.rdo_option1" propid="value" datasetid="ds_init_env" columnid="option"/>
  1107. <BindItem id="item5" compid="grup_left.rdo_option" propid="value" datasetid="ds_init_env" columnid="option"/>
  1108. <BindItem id="item12" compid="grup_left.roundrect2.cmb_dept" propid="value" datasetid="ds_init_etc" columnid="orddept"/>
  1109. <BindItem id="item13" compid="grup_left.switch1.rec.roundrect1.cmb_recformcd" propid="value" datasetid="ds_init_recformdata" columnid="formcd"/>
  1110. <BindItem id="item0" compid="grup_left.switch1.rec.roundrect1.input3" propid="value" datasetid="ds_init_recformdata" columnid="fromdd"/>
  1111. <BindItem id="item1" compid="grup_left.switch1.rec.roundrect1.input2" propid="value" datasetid="ds_init_recformdata" columnid="todd"/>
  1112. <BindItem id="item2" compid="rdo_lindx" propid="value" datasetid="ds_init_etc" columnid="tabflag"/>
  1113. <BindItem id="item14" compid="grup_left.switch1.grd.input5" propid="value" datasetid="ds_init_paging" columnid="fromdd"/>
  1114. <BindItem id="item15" compid="grup_left.switch1.grd.input4" propid="value" datasetid="ds_init_paging" columnid="todd"/>
  1115. <BindItem id="item16" compid="grup_left.switch1.grd.cmb_sort" propid="value" datasetid="ds_init_etc" columnid="sortkind"/>
  1116. <BindItem id="item17" compid="grup_left.switch1.grd.cbx_paging" propid="value" datasetid="ds_init_etc" columnid="pagingyn"/>
  1117. <BindItem id="item18" compid="bool_viewflag" propid="value" datasetid="ds_envinit" columnid="viewflag"/>
  1118. <BindItem id="item3" compid="rdo_instcd" propid="value" datasetid="ds_init_env" columnid="instcd"/>
  1119. </Bind>
  1120. <Script type="xscript4.0"><![CDATA[/***************************************************************************************
  1121. * System Name :
  1122. * Job Name :
  1123. * Creator :
  1124. * Make Date : 2014-08-28
  1125. * Description :
  1126. *---------------------------------------------------------------------------------------
  1127. * Modify Date Modifier Modify Description
  1128. *---------------------------------------------------------------------------------------
  1129. * 2014-08-28 Live Converter TF->XP
  1130. *
  1131. *---------------------------------------------------------------------------------------
  1132. ****************************************************************************************/
  1133. //=======================================================================================
  1134. // Lib Include
  1135. //---------------------------------------------------------------------------------------
  1136. include "com_commonxp::comm_main.xjs"
  1137. include "emr_commonxp::EMRCommon.xjs"
  1138. include "emr_recmngtxp::SMMRI03000.xjs"
  1139. include "emr_prcpmngtxp::MMO001.xjs"
  1140. //include "emr_prcpmngtxp::SMMMB01100.xjs"
  1141. include "emr_prcpmngtxp::SMMMO04100.xjs"
  1142. //=======================================================================================
  1143. // Global Form Variable
  1144. //---------------------------------------------------------------------------------------
  1145. var arErrorCode = new HashArray();
  1146. var popupendflag = "";
  1147. var chkflag = "";
  1148. var fso = inff_fileSystemObject();
  1149. //=======================================================================================
  1150. // Function
  1151. //---------------------------------------------------------------------------------------
  1152. /****************************************************************************************
  1153. * Argument : 01.sKey : 코드아이디
  1154. * : 02.sValue : 코드명
  1155. * Description : 공통코드를 가져온다.
  1156. ****************************************************************************************/
  1157. //=======================================================================================
  1158. // Transaction Callback
  1159. //---------------------------------------------------------------------------------------
  1160. /****************************************************************************************
  1161. * Argument : 01.sSvcId : 서비스 ID
  1162. * : 02.nErrorCode : 에러코드
  1163. * : 03.sErrorMsg : 에러메시지
  1164. * Description : tr_getCodeList의 콜백함수
  1165. ****************************************************************************************/
  1166. //=======================================================================================
  1167. // Event
  1168. //---------------------------------------------------------------------------------------
  1169. /****************************************************************************************
  1170. * Components :
  1171. * Components ID : button5
  1172. * Event : onlbuttonup
  1173. * Argument : 01.obj : Object Event has occurred
  1174. * : 02.e : Event Object
  1175. * Description :
  1176. ****************************************************************************************/
  1177. function SMMRI00400_onload(obj:Form, e:LoadEventInfo)
  1178. {
  1179. frmf_initForm(obj);
  1180. //makeReportPreview("100", "100", "500", "500", "grp_report");
  1181. fInitalize();
  1182. }
  1183. function rdo_lindx_onitemchanged(obj:Radio, e:ItemChangeEventInfo)
  1184. {
  1185. fGetRecMidIndx();
  1186. }
  1187. function grup_left_roundrec2_button3_onclick(obj:Button, e:ClickEventInfo)
  1188. {
  1189. fGetPatOrddept();
  1190. //2010/03/20 강지훈 수정 : fGetPatOrddept()안에서 fGetPatOrdHist을 호출하면서 조회가 멈추는 문제.
  1191. var option = ds_envinit_option.getColumn(0, "answcnt");//model.getValue("/root/envinit/option/answcnt");
  1192. if(option != "002"){
  1193. if(ds_init_env.getColumn(0, "option") != "F"){
  1194. ds_grd_reclist.clearData(); //model.removeNodeset("/root/copytmpinicert");
  1195. fGetPatOrdHist(null);
  1196. }else{
  1197. grup_left.switch1.rec.grd_reclist.setCellProperty("Head", 0, "expr", 0); //grd_reclist.fixedcellischeck(0,1)=false;
  1198. fGetDetlFormRec();
  1199. }
  1200. }
  1201. }
  1202. function grup_left_ipt_pid_onkeydown(obj:Edit, e:KeyEventInfo)
  1203. {
  1204. if(e.keycode == "13") {
  1205. var chkPidRtn = fPidKeyPress();
  1206. if (chkPidRtn)
  1207. {
  1208. fGetPatOrddept();
  1209. //2010/03/20 강지훈 수정 : fGetPatOrddept()안에서 fGetPatOrdHist을 호출하면서 조회가 멈추는 문제.
  1210. var option = ds_envinit_option.getColumn(0, "answcnt");
  1211. sysf_trace("option" + option);
  1212. if(option != "002" ){
  1213. if(ds_init_env.getColumn(0, "option") != "F"){
  1214. sysf_trace("ds_init_env.getColumn(0, \"option\") != \"F\"");
  1215. ds_grd_reclist.clearData();// model.removeNodeset("/root/copytmpinicert");
  1216. fGetPatOrdHist(null);
  1217. }else{
  1218. sysf_trace("ds_init_env.getColumn(0, \"option\") != \"F\" else");
  1219. grup_left.switch1.rec.grd_reclist.setCellProperty("Head", 0, "expr", 0); //grd_reclist.fixedcellischeck(0,1)=false;
  1220. fGetDetlFormRec();
  1221. }
  1222. }
  1223. }
  1224. // model.refresh();
  1225. }
  1226. }
  1227. function grup_left_roundrec2_btn_search_onclick(obj:Button, e:ClickEventInfo)
  1228. {
  1229. fPopPtinfo();
  1230. }
  1231. function grup_left_btn_mark_onclick(obj:Button, e:ClickEventInfo)
  1232. {
  1233. btn_sw_onchanged(obj, e);
  1234. }
  1235. function grup_left_btn_all_onclick(obj:Button, e:ClickEventInfo)
  1236. {
  1237. btn_sw_onchanged(obj, e);
  1238. }
  1239. function grup_left_btn_out_onclick(obj:Button, e:ClickEventInfo)
  1240. {
  1241. btn_sw_onchanged(obj, e);
  1242. }
  1243. function grup_left_btn_in_onclick(obj:Button, e:ClickEventInfo)
  1244. {
  1245. btn_sw_onchanged(obj, e);
  1246. }
  1247. function grup_left_btn_er_onclick(obj:Button, e:ClickEventInfo)
  1248. {
  1249. btn_sw_onchanged(obj, e);
  1250. }
  1251. function btn_sw_onchanged(obj:Button, e)
  1252. {
  1253. sysf_trace("***** btn_sw_onchanged *****");
  1254. // var tCnt = obj.getTabpageCount();
  1255. // var tIdx = obj.tabindex;
  1256. var tNm = obj.name;
  1257. grup_left.btn_mark.setSelectStatus(false);
  1258. grup_left.btn_all.setSelectStatus(false);
  1259. grup_left.btn_in.setSelectStatus(false);
  1260. grup_left.btn_out.setSelectStatus(false);
  1261. grup_left.btn_er.setSelectStatus(false);
  1262. obj.setSelectStatus(true);
  1263. if( tNm == "btn_mark" ){ // btn_mark
  1264. grup_left.switch1.tabindex = 1; // id = trv
  1265. fGetTreeView();
  1266. }else if( tNm == "btn_all"){ // btn_all
  1267. //grup_left.switch1.tabindex = 0; // id = grv
  1268. if( ds_init_env.getColumn(0, "option") == "F" ){
  1269. }else{
  1270. fGetPatOrdHist("ALL");
  1271. //첫번째수진 첫번째 기록 자동조회
  1272. if (ds_grd_pathist.rowcount > 0 && ds_init_env.getColumn(0, "option") == "D"){
  1273. ds_grd_pathist.rowposition = 0;
  1274. fGetRecMidIndx();
  1275. }
  1276. }
  1277. }else if( tNm == "btn_out" ){ // btn_out
  1278. //grup_left.switch1.tabindex = 0; // id = grv
  1279. if( ds_init_env.getColumn(0, "option") == "F" ){
  1280. // 기록지별 조회를 위한 Combo박스에 들어갈 서식 조회 2014.02.19
  1281. ds_grd_reclist.clearData(); //model.removeNodeset("/root/copytmpinicert");
  1282. //ds_init_recformdata
  1283. //ds_init_cmb_recformcd
  1284. var objColInfo = new Array();
  1285. objColInfo.push({col: "instcd", type:"string", size:256, val:sysf_getUserInfo("dutplceinstcd")});
  1286. objColInfo.push({col: "hardcd", type:"string", size:256, val:"5627"});
  1287. objColInfo.push({col: "ordtype", type:"string", size:256, val:"O"});
  1288. dsf_createDsRow("ds_send_recsrch", objColInfo);
  1289. var oParam = {};
  1290. oParam.id = "TRMRI08115";
  1291. oParam.service = "recmngtapp.IntegrityRec";
  1292. oParam.method = "reqGetHardCdList";
  1293. oParam.inds = "req=" + "ds_send_recsrch";
  1294. oParam.outds = "ds_init_cmb_recformcd" + "=hardcdlist";
  1295. oParam.async = true;//비동기
  1296. oParam.callback = "cf_TRMRI08115"
  1297. tranf_submit(oParam);
  1298. }else{
  1299. fGetPatOrdHist("O");
  1300. //첫번째수진 첫번째 기록 자동조회
  1301. if (grup_left.switch1.grd.grd_pathist.rowcount > 0 && ds_init_env.getColumn(0, "option") == "D"){
  1302. ds_grd_pathist.selectRow(1);
  1303. fGetRecMidIndx();
  1304. }
  1305. }
  1306. }else if( tNm == "btn_in" ){ // btn_in
  1307. //grup_left.switch1.tabindex = 0; // id = grv
  1308. if( ds_init_env.getColumn(0, "option") == "F" ){
  1309. // 기록지별 조회를 위한 Combo박스에 들어갈 서식 조회 2014.02.19
  1310. ds_grd_reclist.clearData();
  1311. var objColInfo = new Array();
  1312. objColInfo.push({col: "instcd", type:"string", size:256, val:sysf_getUserInfo("dutplceinstcd")});
  1313. objColInfo.push({col: "hardcd", type:"string", size:256, val:"5627"});
  1314. objColInfo.push({col: "ordtype", type:"string", size:256, val:"I"});
  1315. dsf_createDsRow("ds_send_recsrch", objColInfo);
  1316. var oParam = {};
  1317. oParam.id = "TRMRI08115";
  1318. oParam.service = "recmngtapp.IntegrityRec";
  1319. oParam.method = "reqGetHardCdList";
  1320. oParam.inds = "req=" + "ds_send_recsrch";
  1321. oParam.outds = "ds_init_cmb_recformcd" + "=hardcdlist";
  1322. oParam.async = true;//비동기
  1323. oParam.callback = "cf_TRMRI08115"
  1324. tranf_submit(oParam);
  1325. }else{
  1326. fGetPatOrdHist("I");
  1327. //첫번째수진 첫번째 기록 자동조회
  1328. if (grup_left.switch1.grd.grd_pathist.rowcount > 0 && ds_init_env.getColumn(0, "option") == "D"){
  1329. ds_grd_pathist.selectRow(1);
  1330. fGetRecMidIndx();
  1331. }
  1332. }
  1333. }else if( tNm == "btn_er" ){ // btn_er
  1334. //grup_left.switch1.tabindex = 0; // id = grv
  1335. if( ds_init_env.getColumn(0, "option") == "F" ){
  1336. }else{
  1337. fGetPatOrdHist("E");
  1338. //첫번째수진 첫번째 기록 자동조회
  1339. if (grup_left.switch1.grd.grd_pathist.rowcount > 0 && ds_init_env.getColumn(0, "option") == "D"){
  1340. ds_grd_pathist.selectRow(1);
  1341. fGetRecMidIndx();
  1342. }
  1343. }
  1344. }
  1345. }
  1346. function grup_left_roundrec2_ipt_rrgstno2_onkeydown(obj:Edit, e:KeyEventInfo)
  1347. {
  1348. fRgstno2KeyPress(e);
  1349. }
  1350. function grup_left_rdo_option1_onitemchanged(obj:Radio, e:ItemChangeEventInfo)
  1351. {
  1352. fSelectOption();
  1353. }
  1354. function grup_left_rdo_option_onitemchanged(obj:Radio, e:ItemChangeEventInfo)
  1355. {
  1356. fSelectOption();
  1357. }
  1358. function grup_left_btn_patedu_onclick(obj:Button, e:ClickEventInfo)
  1359. {
  1360. //20100405-kys-CAREPLAN LIST 연동추가
  1361. var pid = "";
  1362. var curpid = "";
  1363. pid = ds_result_patinfo.getColumn(0, "pid");
  1364. curpid = ds_patinfo.getColumn(0, "pid");
  1365. if(utlf_isNull(pid)){ //키인 입력한 pid가 없으면 상단정보 pid set
  1366. pid = model.getValue("/root/main/result/paminfo/list/pid");
  1367. }
  1368. if(utlf_isNull(pid)){
  1369. sysf_messageBox("환자가 조회되지 않았습니다.", "E");
  1370. return;
  1371. }else{
  1372. if(pid != curpid){
  1373. sysf_messageBox("조회한 환자와 등록번호 입력창의 등록번호가 상이합니다. 조회후 다시 시도해 주십시요.", "E");
  1374. return;
  1375. }
  1376. frmf_open("SMMRJ00200", "SMMRJ00200", null, null, null, null, null, null, null, null, null, null, "M");
  1377. }
  1378. }
  1379. function grup_left_button5_onclick(obj:Button, e:ClickEventInfo)
  1380. {
  1381. if (grup_paging.visible) {
  1382. grup_paging.visible = false;
  1383. } else {
  1384. grup_paging.visible = true;
  1385. }
  1386. }
  1387. function btn_copyprt_onclick(obj:Button, e:ClickEventInfo)
  1388. {
  1389. fAppcopy();
  1390. }
  1391. function button14_onclick(obj:Button, e:ClickEventInfo)
  1392. {
  1393. var parampid = grup_left.roundrect2.ipt_pid.value;
  1394. if(utlf_isNull(parampid))
  1395. {
  1396. sysf_messageBox("환자번호는", "I003");
  1397. }
  1398. else
  1399. {
  1400. frmf_setParameter("SMMRI00900_param",parampid);
  1401. frmf_open("SMMRI00900", "SMMRI00900", null, null, null, null, null, null, null, null, null, null, "M");
  1402. }
  1403. }
  1404. function btn_unprep_onclick(obj:Button, e:ClickEventInfo)
  1405. {
  1406. fOpenUnprep();
  1407. }
  1408. function btn_minmax_onclick(obj:Button, e:ClickEventInfo)
  1409. {
  1410. fMaxMin();
  1411. }
  1412. function SMMRI00400_onkeydown(obj:Form, e:KeyEventInfo)
  1413. {
  1414. if (e.keycode == "33") //PageUp
  1415. {
  1416. //fGetRec("prev");
  1417. grup_right.iviewerIemr.fn_ChartPageScroll("PageUp");
  1418. }
  1419. else if (e.keycode == "34") //PageDown
  1420. {
  1421. //fGetRec("next");
  1422. grup_right.iviewerIemr.fn_ChartPageScroll("PageDown");
  1423. }
  1424. /* 2013/02/15 LCtech 모듈 관련 주석 처리
  1425. else if (event.keyCode == "35") //End
  1426. {
  1427. if (event.ctrlKey)
  1428. {
  1429. fGetRec("end");
  1430. }
  1431. else
  1432. {
  1433. //fGetRec("midend");
  1434. iviewerIemr.window.javascript.fn_ChartPageScroll("End");
  1435. }
  1436. }
  1437. else if (event.keyCode == "36") //Home
  1438. {
  1439. if (event.ctrlKey)
  1440. {
  1441. fGetRec("first");
  1442. }
  1443. else
  1444. {
  1445. //fGetRec("midfirst");
  1446. iviewerIemr.window.javascript.fn_ChartPageScroll("Home");
  1447. }
  1448. }
  1449. */
  1450. else if (e.keycode == "38") //↑
  1451. {
  1452. fUpKeyBtn();
  1453. }
  1454. else if (e.keycode == "40") //↓
  1455. {
  1456. sysf_trace("1234");
  1457. fDownKeyBtn();
  1458. }
  1459. }
  1460. function button8_onclick(obj:Button, e:ClickEventInfo)
  1461. {
  1462. frmf_setParameter("SPMRI02400_prtrecinfo", "E▦900000000515710▦0900005822▩");
  1463. frmf_open("SPMRI02400", "SPMRI02400", null, null, null, null, null, null, null, null, null, null, "M");
  1464. }
  1465. function btn_setbmk_onclick(obj:Button, e:ClickEventInfo)
  1466. {
  1467. //2009-10-18 강지훈 추가 : 북마크기능 요청번호 7815
  1468. fSetBookmark();
  1469. }
  1470. function btn_prnt_onclick(obj:Button, e:ClickEventInfo)
  1471. {
  1472. fClickPrint();
  1473. }
  1474. function btn_newverform_onclick(obj:Button, e:ClickEventInfo)
  1475. {
  1476. frmf_open("SMMRB00101", "SMMRB00101", null, null, null, null, null, null, null, null, null, null, "M");
  1477. }
  1478. function button10_onclick(obj:Button, e:ClickEventInfo)
  1479. {
  1480. fAppreq();
  1481. }
  1482. function rdo_instcd_onitemchanged(obj:Radio, e:ItemChangeEventInfo)
  1483. {
  1484. var e = new ClickEventInfo;
  1485. grup_left.roundrect2.button3.onclick.fireEvent(grup_left.roundrect2.button3, e);
  1486. }
  1487. function btn_txtcopy_onclick(obj:Button, e:ClickEventInfo)
  1488. {
  1489. var currentpage = grup_right.iviewerIemr.ds_main_chartinfo.getColumn(0, "pagecurrent");
  1490. sysf_trace("***** btn_txtcopy currentpage : " + currentpage + " *****");
  1491. if( !utlf_isNull(currentpage) && currentpage != "0" ){
  1492. var imgflag = ds_paging_iniinfo.getColumn(currentpage -1, "imgflag");
  1493. sysf_trace("***** btn_txtcopy imgflag : " + imgflag + " *****");
  1494. if( imgflag == "N" ){
  1495. var signno = ds_paging_iniinfo.getColumn(currentpage -1, "signno");
  1496. var formcd = ds_paging_iniinfo.getColumn(currentpage -1, "formcd");
  1497. var formnm = ds_paging_iniinfo.getColumn(currentpage -1, "formnm");
  1498. var recdd = ds_paging_iniinfo.getColumn(currentpage -1, "recdd");
  1499. //var filenm = signno + currentpage + "_" + formcd + ".html" ;
  1500. var filenm = recdd + currentpage + "_" + formnm.substr(0,4) + ".html";
  1501. var foldernm = "C:\\Certrec" + sysf_getUserInfo("dutplceinstcd");
  1502. if (!utlf_isNull(foldernm)) {
  1503. var objColInfo = new Array();
  1504. objColInfo.push({col: "filepath", type:"string", size:256, val:filenm});
  1505. dsf_createDsRow("ds_reqfilepath", objColInfo);
  1506. objColInfo = new Array();
  1507. objColInfo.push({col: "filedata", type:"blob", size:256});
  1508. dsf_createDs("ds_filedata", objColInfo, true);
  1509. var oParam = {};
  1510. oParam.id = "TRMQP00605";
  1511. oParam.service = "prcpbaseapp.CpMngt";
  1512. oParam.method = "reqGetAttFileData";
  1513. oParam.inds = "req=" + "ds_reqfilepath";
  1514. oParam.outds = "ds_filedata" + "=attachfile";
  1515. oParam.async = false;
  1516. //oParam.callback = "cf_TRMQP00605"
  1517. tranf_submit(oParam);
  1518. // sysf_trace(ds_reqfilepath.saveXML());
  1519. // sysf_trace(ds_filedata.saveXML());
  1520. var extobj = new ExtCommon();
  1521. dsf_readFileFromDs(foldernm + "\\" + filenm, ds_filedata, 0, "filedata"); // 파일저장
  1522. extobj.executeProcess(foldernm + "\\" + filenm, "", "");
  1523. sysf_trace(foldernm + filenm);
  1524. // model.download(getActionURL("TRMQP00605")+"&filepath="+filenm,foldernm, false);
  1525. //window.showIEMenu(false);
  1526. // window.exec(foldernm+ "\\"+filenm);
  1527. //window.load(foldernm+ "\\"+filenm, "html" , "" , "caption:hidden");
  1528. // var popupWid = "notice";
  1529. // var w = 800;
  1530. // var h = 700;
  1531. //
  1532. // var leftPosition = (htmlwindow.screen.availWidth) ? (htmlwindow.screen.availWidth-w)/2 : 0;
  1533. // var topPosition = (htmlwindow.screen.availHeight) ? (htmlwindow.screen.availHeight-h)/2 : 0;
  1534. // var prop = "height=" + h + ",width=" + w + ",top=" + topPosition + ",left=" + leftPosition + ",scrollbars=no";
  1535. //
  1536. // var url = foldernm+ "\\"+filenm; // getActionURL("TRMQP00605")+"&filepath="+filenm;
  1537. //
  1538. // //htmlwindow.open(url,wid);
  1539. // openHtml(url, popupWid, prop);
  1540. }
  1541. }else{
  1542. sysf_messageBox("기록내용이 없거나, OCR일 경우 COPY불가","I");
  1543. return;
  1544. }
  1545. }else{
  1546. sysf_messageBox("기록을 선택한후 진행하십시오.","I");
  1547. return;
  1548. }
  1549. }
  1550. function btn_paging_onclick(obj:Button, e:ClickEventInfo)
  1551. {
  1552. grup_right.iviewerIemr.fClickNext();
  1553. }
  1554. function grup_left_roundrec2_ipt_rrgstno1_onkeydown(obj:MaskEdit, e:KeyEventInfo)
  1555. {
  1556. fRgstnoKeyPress();
  1557. }
  1558. function grup_left_cmb_dept_onkeydown(obj:Combo, e:KeyEventInfo)
  1559. {
  1560. //event.preventDefault();
  1561. }
  1562. function grup_left_cmb_dept_onitemchanged(obj:Combo, e:ItemChangeEventInfo)
  1563. {
  1564. sysf_trace("***** grup_left_cmb_dept_onitemchanged "+ ds_init_env.getColumn(0, "option"));
  1565. if(ds_init_env.getColumn(0, "option") != "F"){
  1566. fGetPatOrdHist(null);
  1567. }else{
  1568. grup_left.switch1.rec.grd_reclist.setCellProperty("Head", 0, "expr", 0); //grd_reclist.fixedcellischeck(0,1)=false;
  1569. fGetDetlFormRec();
  1570. }
  1571. }
  1572. function grup_left_switch1_grd_grd_midindx_oncelldblclick(obj:Grid, e:GridClickEventInfo)
  1573. {
  1574. //2014/04/15 이정택
  1575. var objColInfo = new Array();
  1576. objColInfo.push({col: "hardcdno", type:"string", size:256, val:"6000"});
  1577. objColInfo.push({col: "srchdd", type:"string", size:256, val:""});
  1578. dsf_createDsRow("ds_send_reqdata_hardcdno", objColInfo);
  1579. objColInfo = new Array();
  1580. objColInfo.push({col: "hardcdno", type:"string", size:256});
  1581. objColInfo.push({col: "trgtcd", type:"string", size:256});
  1582. objColInfo.push({col: "trgtcdnm", type:"string", size:256});
  1583. dsf_createDs("ds_hardcodeinfo", objColInfo);
  1584. var oParam = {};
  1585. oParam.id = "TRMMR01204";
  1586. oParam.service = "medirecapp.util";
  1587. oParam.method = "reqGetHardCodeInfo";
  1588. oParam.inds = "req=" + "ds_send_reqdata_hardcdno";
  1589. oParam.outds = "ds_hardcodeinfo" + "=item";
  1590. oParam.async = false;
  1591. oParam.callback = "cf_TRMMR01204"
  1592. tranf_submit(oParam);
  1593. if(ds_hardcodeinfo.getColumn(0, "trgtcd")=="Y"){
  1594. grup_left.switch1.grd.cmb_sort.enable=true;
  1595. fPaging();
  1596. }else{
  1597. ds_init_etc.setColumn(0, "sortkind", "A");
  1598. grup_left.switch1.grd.cmb_sort.enable=false;
  1599. fPagebtnCtl();
  1600. fDbClickMidIndx();
  1601. }
  1602. if(arErrorCode.pop("TRMMR01204") > -1){
  1603. //temp dataset delete
  1604. dsf_deleteDataSet("ds_send_reqdata_hardcdno");
  1605. dsf_deleteDataSet("ds_hardcodeinfo");
  1606. }
  1607. }
  1608. function grup_left_switch1_grd_grd_midindx_onrbuttondown(obj:Grid, e:GridMouseEventInfo)
  1609. {
  1610. fMidindxMouseRight(e);
  1611. }
  1612. function grup_left_switch1_grd_grd_midindx_onkeydown(obj:Grid, e:KeyEventInfo)
  1613. {
  1614. //event.preventDefault();
  1615. }
  1616. function grup_left_switch1_grd_button1_onclick(obj:Button, e:ClickEventInfo)
  1617. {
  1618. fGetRec("first");
  1619. }
  1620. function grup_left_switch1_grd_button2_onclick(obj:Button, e:ClickEventInfo)
  1621. {
  1622. fGetRec("midfirst");
  1623. }
  1624. function grup_left_switch1_grd_button4_onclick(obj:Button, e:ClickEventInfo)
  1625. {
  1626. fGetRec("midend");
  1627. }
  1628. function grup_left_switch1_grd_button6_onclick(obj:Button, e:ClickEventInfo)
  1629. {
  1630. fGetRec("end");
  1631. }
  1632. function grup_left_switch1_grd_button7_onclick(obj:Button, e:ClickEventInfo)
  1633. {
  1634. fGetRec("all");
  1635. }
  1636. function grup_left_switch1_grd_grd_pathist_oncelldblclick(obj:Grid, e:GridClickEventInfo)
  1637. {
  1638. if( e.row > -1 ){
  1639. fGetRecMidIndx(null, e);
  1640. }
  1641. var ctrl = grup_left.switch1.grd.grd_midindx;
  1642. if( ctrl != null )
  1643. {
  1644. ctrl.setFocus();
  1645. var e = new KeyEventInfo();
  1646. ctrl.onkeyup.fireEvent(ctrl, e);
  1647. }
  1648. }
  1649. function grup_left_switch1_grd_grd_pathist_onkeydown(obj:Grid, e:KeyEventInfo)
  1650. {
  1651. //event.preventDefault();
  1652. }
  1653. function grup_left_switch1_grd_datagrid3_oncelldblclick(obj:Grid, e:GridClickEventInfo)
  1654. {
  1655. if( e.row > -1 ) {
  1656. fDbclickDept();
  1657. }
  1658. }
  1659. function grup_left_switch1_grd_cbx_paging_onchanged(obj:CheckBox, e:CheckBoxChangeEventInfo)
  1660. {
  1661. if(grup_left.switch1.grd.cbx_paging.value=="Y"){
  1662. grup_left.switch1.grd.input4.enable = true;
  1663. grup_left.switch1.grd.input5.enable = true;
  1664. }else{
  1665. grup_left.switch1.grd.input4.enable = false;
  1666. grup_left.switch1.grd.input5.enable = false;
  1667. }
  1668. }
  1669. function grup_left_switch1_trv_trv_bookmark_oncelldblclick(obj:Grid, e:GridClickEventInfo)
  1670. {
  1671. fGetBookmarkItem();
  1672. }
  1673. function grup_left_switch1_trv_trv_bookmark_onrbuttondown(obj:Grid, e:GridMouseEventInfo)
  1674. {
  1675. if (event.button == 3) {
  1676. setPopupMenu("trv_bookmark", false, "/root/init/bmkrght/mouserght", "label", "func");
  1677. }
  1678. }
  1679. function grup_left_switch1_trv_chk_allbmk_onchanged(obj:CheckBox, e:CheckBoxChangeEventInfo)
  1680. {
  1681. fGetTreeView();
  1682. }
  1683. function grup_left_switch1_rec_btn_recsearch_onclick(obj:Button, e:ClickEventInfo)
  1684. {
  1685. fGetDetlFormRec();
  1686. }
  1687. function grup_left_switch1_rec_grd_reclist_oncelldblclick(obj:Grid, e:GridClickEventInfo)
  1688. {
  1689. if((grd_reclist.isCell(event.target) && grd_reclist.mouserow >= grd_reclist.fixedrows))
  1690. {
  1691. model.removenode("/root/send/ordddtxt");
  1692. fGetDetlFormRecDetail("1");
  1693. }
  1694. }
  1695. function grup_left_switch1_rec_grd_reclist_onkeydown(obj:Grid, e:KeyEventInfo)
  1696. {
  1697. //event.preventDefault();
  1698. }
  1699. function grup_left_switch1_rec_button9_onclick(obj:Button, e:ClickEventInfo)
  1700. {
  1701. if( model.getValue("/root/copytmpinicert/iniinfo[1]/recchk") == "true"){
  1702. for(var i = 1; i <= grd_reclist.rows-grd_reclist.fixedRows; i++ ){
  1703. model.setValue("/root/copytmpinicert/iniinfo["+ i +"]/recchk", "false");
  1704. }
  1705. }else{
  1706. for(var i = 1; i <= grd_reclist.rows-grd_reclist.fixedRows; i++ ){
  1707. model.setValue("/root/copytmpinicert/iniinfo["+ i +"]/recchk", "true");
  1708. }
  1709. }
  1710. model.refresh();
  1711. }
  1712. function grup_left_switch1_rec_button11_onclick(obj:Button, e:ClickEventInfo)
  1713. {
  1714. grup_right.iviewerIemr.cleanViewer();
  1715. var iexNodeCnt = ds_grd_reclist.getCaseCount("recchk == 'true'");;//getNodesetCnt(model, "/root/copytmpinicert/iniinfo[recchk = 'true']");
  1716. var ordddtxt = "";
  1717. var signnotxt = "";
  1718. var idx = 1;
  1719. if(iexNodeCnt>0){
  1720. for(var i = 0; i < ds_grd_reclist.rowcount; i++ ){
  1721. if( ds_grd_reclist.getColumn(i, "recchk") == "true" ){
  1722. if( idx == 1 ){
  1723. ordddtxt = "'" + ds_grd_reclist.getColumn(i, "orddd") + "'";
  1724. idx++;
  1725. }else{
  1726. ordddtxt = ordddtxt + ", '" + ds_grd_reclist.getColumn(i, "orddd") + "'";
  1727. }
  1728. }
  1729. }
  1730. ds_send.addColumn("signnotxt", "string");
  1731. ds_send.addColumn("ordddtxt", "string");
  1732. var nRow = 0;
  1733. if(ds_send.rowcount == 0) nRow = ds_send.addRow();
  1734. ds_send.setColumn(nRow, "signnotxt" , signnotxt );
  1735. ds_send.setColumn(nRow, "ordddtxt" , ordddtxt );
  1736. fGetDetlFormRecDetail("2");
  1737. }else{
  1738. sysf_messageBox("조회할 서식을 선택한 후 진행하십시오.", "C999");
  1739. return;
  1740. }
  1741. }
  1742. function cf_TRMRI03001(sSvcId, nErrorCode, sErrorMsg){
  1743. if(nErrorCode > -1) {
  1744. sysf_trace("***** cf_TRMRI03001 *****");
  1745. //sysf_trace(ds_init_rdo_lindx.saveXML());
  1746. //2010-03-20 오전 10:35:43 강지훈 수정 : 환경설정에 따라 조회가 되지않는 오류수정 : 긴급배포로인해 주석처리
  1747. //var dplistNode = instance1.selectSingleNode("/root/initinfo/dplist");
  1748. //if(dplistNode == null || dplistNode == ""){
  1749. //var dpCnt = getNodesetCount(model, "/root/initinfo/dplist");
  1750. //if (dpCnt == 0) {
  1751. // model.makeValue("/root/initinfo/dplist[1]/deptcd", "ALL");
  1752. // model.makeValue("/root/initinfo/dplist[1]/deptlist", "전체");
  1753. //}
  1754. //else{
  1755. // addComboInstance("/root/initinfo", "deptcd^deptnm", "ALL^전체", "dplist");
  1756. //}
  1757. // color change check column
  1758. ds_init_cmb_dept.addColumn("bgchk", "string");
  1759. frmf_addComboItem("grup_left.roundrect2.cmb_dept", "전체", "ALL");
  1760. frmf_addComboItem("rdo_lindx", "전체", "ALL");
  1761. ds_init_cmb_dept.setColumn(0, "deptengabbr", "전체");
  1762. ds_init_etc.setColumn(0, "tabflag", "ALL");
  1763. //rdo_lindx.index = 0;
  1764. rdo_lindx.visible = true;
  1765. // sysf_trace(ds_init_rdo_lindx.saveXML());
  1766. var sUserDeptcd = sysf_getUserInfo("dutplcecd");
  1767. var defdept = ds_envinit_defdept.getColumn(0, "answcnt");
  1768. if (defdept == "")
  1769. defdept = "002";
  1770. //해당과, 전체과 환경설정
  1771. if (defdept == "002")
  1772. {
  1773. ds_init_etc.setColumn(0, "orddept", "ALL");
  1774. ds_init_cmb_dept.rowposition = 0;
  1775. ds_init_cmb_dept.setColumn(0, "bgchk", "true");
  1776. }
  1777. else if (defdept == "001")
  1778. {
  1779. var itrgtNodeCnt = ds_init_cmb_dept.getCaseCount("deptcd == '"+ sUserDeptcd +"");
  1780. if (itrgtNodeCnt > 0){
  1781. ds_init_etc.setColumn(0, "orddept", sUserDeptcd);
  1782. var row = ds_init_cmb_dept.findRowAs("deptcd", sUserDeptcd);
  1783. ds_init_cmb_dept.rowposition = row;
  1784. ds_init_cmb_dept.setColumn(row, "bgchk", "true");
  1785. }else{
  1786. ds_init_etc.setColumn(0, "orddept", "ALL");
  1787. ds_init_cmb_dept.rowposition = 0;
  1788. ds_init_cmb_dept.setColumn(0, "bgchk", "true");
  1789. }
  1790. }
  1791. else
  1792. {
  1793. ds_init_etc.setColumn(0, "orddept", "ALL");
  1794. ds_init_cmb_dept.rowposition = 0;
  1795. ds_init_cmb_dept.setColumn(0, "bgchk", "true");
  1796. }
  1797. var option = ds_envinit_option.getColumn(0, "answcnt");
  1798. if (option == "")
  1799. option = "001";
  1800. var tab = ds_envinit_tab.getColumn(0, "answcnt");
  1801. if (tab == "")
  1802. tab = "001";
  1803. //수진이력, 진료과별, 서식지별(미개발)에 따른 조건 설정
  1804. if(option == "002" && tab != "005") //북마크가 아닌경우에 자동 조회
  1805. {
  1806. fDbclickDept();
  1807. }
  1808. }
  1809. }
  1810. function grup_left_switch1_rec_grd_reclist_onheadclick(obj:Grid, e:GridClickEventInfo)
  1811. {
  1812. sysf_trace("grup_left_switch1_rec_grd_reclist_onheadclick");
  1813. if (e.cell == 0) {
  1814. //grdf_addHeadClickHandler(obj,e, ds_grd_reclist ,true)
  1815. }
  1816. }
  1817. function cf_TRMRC00501(sSvcId, nErrorCode, sErrorMsg){
  1818. arErrorCode.push(sSvcId, nErrorCode);
  1819. sysf_trace("***** cf_TRMRC00501 *****");
  1820. }
  1821. function cf_TRPMC02500(sSvcId, nErrorCode, sErrorMsg){
  1822. arErrorCode.push(sSvcId, nErrorCode);
  1823. sysf_trace("***** cf_TRPMC02500 *****");
  1824. }
  1825. function cf_TRMRI00416(sSvcId, nErrorCode, sErrorMsg){
  1826. arErrorCode.push(sSvcId, nErrorCode);
  1827. sysf_trace("***** cf_TRMRI00416 *****");
  1828. }
  1829. function cf_TRMRI08115(sSvcId, nErrorCode, sErrorMsg){
  1830. arErrorCode.push(sSvcId, nErrorCode);
  1831. sysf_trace("***** cf_TRMRI08115 *****");
  1832. // temp dataset delete
  1833. dsf_deleteDataSet("ds_send_recsrch")
  1834. }
  1835. function cf_TRMRI03007(sSvcId, nErrorCode, sErrorMsg){
  1836. arErrorCode.push(sSvcId, nErrorCode);
  1837. sysf_trace("***** cf_TRMRI03007 *****");
  1838. }
  1839. function cf_TRMRI08114(sSvcId, nErrorCode, sErrorMsg){
  1840. arErrorCode.push(sSvcId, nErrorCode);
  1841. sysf_trace("***** cf_TRMRI08114 *****");
  1842. }
  1843. function cf_TRMRI03003(sSvcId, nErrorCode, sErrorMsg){
  1844. arErrorCode.push(sSvcId, nErrorCode);
  1845. sysf_trace("***** cf_TRMRI03003 *****");
  1846. }
  1847. function cf_TRMMR01204(sSvcId, nErrorCode, sErrorMsg){
  1848. arErrorCode.push(sSvcId, nErrorCode);
  1849. sysf_trace("***** cf_TRMMR01204 *****");
  1850. }
  1851. function cf_TRMRI03009(sSvcId, nErrorCode, sErrorMsg){
  1852. arErrorCode.push(sSvcId, nErrorCode);
  1853. sysf_trace("***** cf_TRMRI03009 *****");
  1854. }
  1855. function cf_TRMRI03010(sSvcId, nErrorCode, sErrorMsg){
  1856. arErrorCode.push(sSvcId, nErrorCode);
  1857. sysf_trace("***** cf_TRMRI03010 *****");
  1858. //xp code add : col id change!!!execprcpuniqno
  1859. if( !utlf_isNull(ds_paging_iniinfo.getColumnInfo("execprcpuniqno")))
  1860. ds_paging_iniinfo.updateColID("execprcpuniqno", "cmc_orderseqno");
  1861. dsf_setDefaultVal(ds_paging_iniinfo, "all");
  1862. //var certnodeList = instance1.selectNodes("/root/paging/iniinfo");
  1863. //sysf_trace(ds_paging_iniinfo.saveXML());
  1864. //if(certnodeList.length > 1 && certnodeList.length >= nodeposcnt){
  1865. if(ds_paging_iniinfo.rowcount > 1 && ds_paging_iniinfo.rowcount >= nodeposcnt){
  1866. multirecyn = "Y";
  1867. if(prevflag == "Y"){
  1868. nodeposcnt = ds_paging_iniinfo.rowcount;
  1869. }else{
  1870. nodeposcnt = 0; // 1->0
  1871. }
  1872. }else{
  1873. multirecyn = "N";
  1874. nodeposcnt = 0; // 1->0
  1875. }
  1876. //iviewerIemr.window.javascript.cleanViewer();
  1877. if(page_number!="1"){
  1878. //copyNodeset("/root/tmpinicert/iniinfo", "/root/paging/iniinfo", "append", model, model);
  1879. }else{
  1880. //iviewerIemr.window.javascript.cleanViewer();
  1881. //copyNodeset("/root/tmpinicert/iniinfo", "/root/paging/iniinfo", "replace", model, model);
  1882. }
  1883. if (ds_init_etc.getColumn(0, "recall") == "Y"){
  1884. fGetNextEmrImgRec_New();
  1885. }else{
  1886. fGetNextEmrImgRec_New();
  1887. }
  1888. ds_init_etc.setColumn(0, "recall", "N");
  1889. //frmf_closeLoadingBar();
  1890. }
  1891. function cf_TRMRI03004(sSvcId, nErrorCode, sErrorMsg){
  1892. arErrorCode.push(sSvcId, nErrorCode);
  1893. sysf_trace("***** cf_TRMRI03004 *****");
  1894. }
  1895. function ds_patinfo_onvaluechanged(obj:Dataset, e:DSColChangeEventInfo)
  1896. {
  1897. if( e.columnid == "pid" ){
  1898. //sysf_trace("***** ds_patinfo_onvaluechanged *****");
  1899. sysf_trace("***** ds_patinfo_onvaluechanged ***** value :" + e.oldvalue + " : " + e.newvalue);
  1900. chkflag = "true";
  1901. }
  1902. }
  1903. var isMouseClick = false;
  1904. function grup_left_roundrect2_cmb_dept_canitemchange(obj:Combo, e:ItemChangeEventInfo)
  1905. {
  1906. return isMouseClick;
  1907. }
  1908. function grup_left_roundrect2_cmb_dept_oncloseup(obj:Combo, e:ComboCloseUpEventInfo)
  1909. {
  1910. isMouseClick = false;
  1911. }
  1912. function grup_left_roundrect2_cmb_dept_onitemclick(obj:Combo, e:ListBoxClickEventInfo)
  1913. {
  1914. isMouseClick = true;
  1915. }
  1916. function grup_left_roundrect2_ipt_hngnm_onkeydown(obj:Edit, e:KeyEventInfo)
  1917. {
  1918. fPnmKeyPress();
  1919. }
  1920. function midmsrght_onmenuclick(obj:PopupMenu, e:MenuClickEventInfo)
  1921. {
  1922. eval(e.id + "()");
  1923. }
  1924. // function ds_paging_iniinfo_onload(obj:Dataset, e:DSLoadEventInfo)
  1925. // {
  1926. //
  1927. // }
  1928. function ds_paging_iniinfo_onload(obj:Dataset, e:DSLoadEventInfo)
  1929. {
  1930. // sysf_trace("******************************");
  1931. }
  1932. ]]></Script>
  1933. </Form>
  1934. </FDL>