SMMNI02020_특수주사실외래항암업무.xfdl 103 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893
  1. <?xml version="1.0" encoding="utf-8"?>
  2. <FDL version="1.5">
  3. <TypeDefinition url="..\..\..\default_typedef.xml"/>
  4. <Form id="SMMNI02020" position="absolute 0 0 1200 790" titletext="외래항암업무" oninit="SMMNI02020_oninit" onload="SMMNI02020_onload">
  5. <Layouts>
  6. <Layout>
  7. <Div position="absolute 0 10 1195 754" id="group3" scrollbars="autoboth">
  8. <Layouts>
  9. <Layout>
  10. <Div position="absolute 5 95 580 128" id="group5" scrollbars="autoboth">
  11. <Layouts>
  12. <Layout>
  13. <Shape position="absolute 355 27 572 33" linetype="horizontal" id="line11" class="line_3" anchor="default"/>
  14. <Shape position="absolute 355 0 572 6" linetype="horizontal" id="line10" class="line_10" anchor="default"/>
  15. <Edit readonly="true" position="absolute 546 7 570 26" align="align:right middle;" id="opt_antdelive" anchor="default" class="output" style="padding:0 0 0 0;align:right middle;" oneditclick="group3_group5_opt_antdelive_oneditclick"/>
  16. <Static text="혈액불출준비" position="absolute 464 5 543 28" align="align:center middle;" id="caption15" class="cell_1" anchor="default" style="padding:0 0 0 5;font:Dotum,8;"/>
  17. <Static text="항암조제완료" position="absolute 355 5 434 28" align="align:center middle;" id="caption14" class="cell_1" anchor="default" style="padding:0 0 0 5;font:Dotum,8;"/>
  18. <Edit readonly="true" position="absolute 437 7 461 26" align="align:right middle;" id="opt_antprcpend" anchor="default" class="output" style="padding:0 0 0 0;align:right middle;" oneditclick="group3_group5_opt_antprcpend_oneditclick"/>
  19. <Shape position="absolute 5 7 305 28" id="roundrect4" class="roundrect_example" type="roundrectangle" anchor="default"/>
  20. <Static position="absolute 10 10 30 25" id="caption29" anchor="default" style="background:#ffff00ff;"/>
  21. <Static text="수납 VIP" position="absolute 35 10 90 25" id="caption30" anchor="default"/>
  22. <Static position="absolute 94 10 114 25" id="caption31" anchor="default" style="background:#ff99ccff;"/>
  23. <Static text="진찰료 후수납" position="absolute 120 10 200 25" id="caption32" anchor="default"/>
  24. <Static position="absolute 209 10 229 25" id="caption33" anchor="default" style="background:#ccffccff;"/>
  25. <Static text="오늘결과" position="absolute 235 10 300 25" id="caption34" anchor="default"/>
  26. </Layout>
  27. </Layouts>
  28. </Div>
  29. <TextArea position="absolute 892 75 1194 144" id="tar_memo" wordwrap="word"/>
  30. <Grid position="absolute 587 75 887 144" id="grd_snwinfo" binddataset="ds_main_rghtlist_snwinfolist" onmousemove="group3_grd_snwinfo_onmousemove" selecttype="multirow">
  31. <Formats>
  32. <Format id="default">
  33. <Columns>
  34. <Column size="140"/>
  35. <Column size="140"/>
  36. </Columns>
  37. <Rows>
  38. <Row size="0" band="head"/>
  39. <Row size="24"/>
  40. </Rows>
  41. <Band id="head">
  42. <Cell/>
  43. <Cell col="1"/>
  44. </Band>
  45. <Band id="body">
  46. <Cell style="align:left middle;" text="bind:diagcd"/>
  47. <Cell col="1" style="align:left middle;" text="bind:termhngnm"/>
  48. </Band>
  49. </Format>
  50. </Formats>
  51. </Grid>
  52. <Button position="absolute 950 339 992 358" id="btn_detlvw" class="btn2" text="상세" onclick="group3_btn_detlvw_onclick"/>
  53. <Tab position="absolute 587 149 1194 316" id="switch1" class="sw_box">
  54. <Tabpages>
  55. <Tabpage text="진료예약정보" id="case1">
  56. <Layouts>
  57. <Layout>
  58. <Shape position="absolute 5 11 603 17" linetype="horizontal" id="line6" class="line_10"/>
  59. <Grid position="absolute 5 15 604 140" id="grd_ordrsrv" binddataset="ds_main_rghtlist_ordrsrvlist" onmousemove="group3_switch1_case1_grd_ordrsrv_onmousemove" cellsizingtype="both" extendsizetype="row" autosizingtype="row" selecttype="multirow">
  60. <Formats>
  61. <Format id="default">
  62. <Columns>
  63. <Column size="100"/>
  64. <Column size="100"/>
  65. <Column size="70"/>
  66. <Column size="78"/>
  67. <Column size="60"/>
  68. <Column size="60"/>
  69. <Column size="213"/>
  70. <Column size="0"/>
  71. </Columns>
  72. <Rows>
  73. <Row size="24" band="head"/>
  74. <Row size="24"/>
  75. </Rows>
  76. <Band id="head">
  77. <Cell text="예약일시"/>
  78. <Cell col="1" text="센터"/>
  79. <Cell col="2" text="진료과"/>
  80. <Cell col="3" text="주치의"/>
  81. <Cell col="4" text="수납"/>
  82. <Cell col="5" text="수행"/>
  83. <Cell col="6" text="Remark"/>
  84. <Cell col="7" text="orddrid"/>
  85. </Band>
  86. <Band id="body">
  87. <Cell style="padding:3 2 1 2;" text="bind:rsrvdt" mask="####-##-## ##:##"/>
  88. <Cell col="1" style="align:left middle;" text="bind:centnm"/>
  89. <Cell col="2" style="align:left middle;padding:3 2 1 2;" text="bind:orddeptnm" wordwrap="word" autosizerow="limitmin"/>
  90. <Cell col="3" style="align:left middle;padding:3 2 1 2;" text="bind:usernm"/>
  91. <Cell col="4" style="align:left middle;padding:3 2 1 2;" text="bind:rcptflag"/>
  92. <Cell col="5" style="align:left middle;padding:3 2 1 2;" text="bind:execflag"/>
  93. <Cell col="6" style="align:left middle;padding:3 2 1 2;" text="bind:rem" wordwrap="word" autosizerow="limitmin"/>
  94. <Cell col="7" text="bind:orddrid"/>
  95. </Band>
  96. </Format>
  97. </Formats>
  98. </Grid>
  99. </Layout>
  100. </Layouts>
  101. </Tabpage>
  102. <Tabpage text="검사예약정보" id="case2">
  103. <Layouts>
  104. <Layout>
  105. <Shape position="absolute 5 11 594 17" linetype="horizontal" id="line13" class="line_10"/>
  106. <Grid position="absolute 5 15 603 140" id="grd_testrsrv" binddataset="ds_main_rghtlist_testrsrvlist" onmousemove="group3_switch1_case2_grd_testrsrv_onmousemove" autosizingtype="row" cellsizingtype="both" extendsizetype="row" selecttype="multirow">
  107. <Formats>
  108. <Format id="default">
  109. <Columns>
  110. <Column size="100"/>
  111. <Column size="65"/>
  112. <Column size="159"/>
  113. <Column size="60"/>
  114. <Column size="50"/>
  115. <Column size="53"/>
  116. <Column size="92"/>
  117. </Columns>
  118. <Rows>
  119. <Row size="24" band="head"/>
  120. <Row size="24"/>
  121. </Rows>
  122. <Band id="head">
  123. <Cell text="예약일시"/>
  124. <Cell col="1" text="처방코드"/>
  125. <Cell col="2" text="처방명"/>
  126. <Cell col="3" text="수행부서"/>
  127. <Cell col="4" text="수납"/>
  128. <Cell col="5" text="수행"/>
  129. <Cell col="6" text="Remark"/>
  130. </Band>
  131. <Band id="body">
  132. <Cell style="padding:3 2 1 2;" text="bind:rsrvdt" mask="####-##-## ##:##"/>
  133. <Cell col="1" style="align:left middle;padding:3 2 1 2;" text="bind:prcpcd" wordwrap="word"/>
  134. <Cell col="2" style="align:left middle;padding:3 2 1 2;" text="bind:prcpnm" wordwrap="word" autosizerow="limitmin"/>
  135. <Cell col="3" style="align:left middle;padding:3 2 1 2;" text="bind:execdept" wordwrap="word" autosizerow="limitmin"/>
  136. <Cell col="4" style="align:left middle;padding:3 2 1 2;" text="bind:rcptflag"/>
  137. <Cell col="5" style="align:left middle;padding:3 2 1 2;" text="bind:execflag"/>
  138. <Cell col="6" style="align:left middle;padding:3 2 1 2;" text="bind:rem"/>
  139. </Band>
  140. </Format>
  141. </Formats>
  142. </Grid>
  143. </Layout>
  144. </Layouts>
  145. </Tabpage>
  146. </Tabpages>
  147. </Tab>
  148. <Grid position="absolute 586 362 820 490" id="grd_ordsper" binddataset="ds_main_rghtlist_ordsperlist" onmousemove="group3_grd_ordsper_onmousemove" oncelldblclick="group3_grd_ordsper_oncelldblclick" cellsizingtype="both" extendsizetype="row" selecttype="multirow">
  149. <Formats>
  150. <Format id="default">
  151. <Columns>
  152. <Column size="25" band="left"/>
  153. <Column size="80"/>
  154. <Column size="100"/>
  155. <Column size="45"/>
  156. <Column size="66"/>
  157. <Column size="0"/>
  158. <Column size="0"/>
  159. </Columns>
  160. <Rows>
  161. <Row size="24" band="head"/>
  162. <Row size="24"/>
  163. </Rows>
  164. <Band id="head">
  165. <Cell/>
  166. <Cell col="1" text="처방일"/>
  167. <Cell col="2" text="센터"/>
  168. <Cell col="3" text="과"/>
  169. <Cell col="4" text="주치의"/>
  170. <Cell col="5" text="cretno"/>
  171. <Cell col="6" text="centcd"/>
  172. </Band>
  173. <Band id="body">
  174. <Cell celltype="head" expr="expr:currow + 1"/>
  175. <Cell col="1" style="align:left middle;" text="bind:actorddd" mask="####-##-##"/>
  176. <Cell col="2" style="align:left middle;" text="bind:centnm"/>
  177. <Cell col="3" style="align:left middle;" text="bind:depthngnm"/>
  178. <Cell col="4" style="align:left middle;" text="bind:usernm"/>
  179. <Cell col="5" text="bind:cretno"/>
  180. <Cell col="6" text="bind:centcd"/>
  181. </Band>
  182. </Format>
  183. </Formats>
  184. </Grid>
  185. <Static text="진료내역" position="absolute 586 342 664 358" align="align:left middle;" id="caption18" class="tit_2"/>
  186. <CheckBox position="absolute 680 338 750 358" id="chk_allterm" enable="false" visible="false" text="전체기간" truevalue="1" onclick="group3_chk_allterm_onclick"/>
  187. <Shape position="absolute 586 358 820 364" linetype="horizontal" id="line8" class="line_10"/>
  188. <Div position="absolute 0 10 582 70" align="align:center top;" id="group2">
  189. <Layouts>
  190. <Layout>
  191. <Shape position="absolute 0 0 582 60" id="roundrect1" type="roundrectangle" anchor="default"/>
  192. <Static text="수행부서 :" position="absolute 16 9 102 26" id="caption9" class="search_name" anchor="default"/>
  193. <Calendar position="absolute 308 8 415 27" id="ipt_dd" class="input_search" taborder="1" mask="yyyy-mm-dd" autoskip="true" autoselect="true" onchanged="group3_group2_ipt_dd_onchanged" anchor="default"/>
  194. <Static text="업무일자 :" position="absolute 218 9 304 26" id="caption2" class="search_name" anchor="default"/>
  195. <Button position="absolute 509 19 565 41" id="button1" class="btn1" taborder="3" text="조회" onclick="group3_group2_button1_onclick" anchor="default"/>
  196. <Shape position="absolute 496 20 502 42" linetype="vertical" id="line4" class="line_4" anchor="default"/>
  197. <Static text="시행여부 :" position="absolute 218 35 304 52" id="caption13" class="search_name" anchor="default"/>
  198. <Radio position="absolute 304 35 481 55" id="radio1" class="radio_search" taborder="2" columncount="3" codecolumn="codecolumn" datacolumn="datacolumn" onitemclick="group3_group2_radio1_onitemclick" anchor="default" rowcount="-1">
  199. <Dataset id="innerdataset">
  200. <ColumnInfo>
  201. <Column id="codecolumn"/>
  202. <Column id="datacolumn"/>
  203. </ColumnInfo>
  204. <Rows>
  205. <Row>
  206. <Col id="codecolumn">1</Col>
  207. <Col id="datacolumn">미시행</Col>
  208. </Row>
  209. <Row>
  210. <Col id="codecolumn">2</Col>
  211. <Col id="datacolumn">완료</Col>
  212. </Row>
  213. <Row>
  214. <Col id="codecolumn">3</Col>
  215. <Col id="datacolumn">전체</Col>
  216. </Row>
  217. </Rows>
  218. </Dataset>
  219. </Radio>
  220. <Edit readonly="true" position="absolute 105 8 205 27" id="opt_exec" class="output" anchor="default"/>
  221. <Combo position="absolute 435 5 535 24" id="cmb_endcontrl" class="combo_search" taborder="1" visible="false" innerdataset="@ds_init_P0453info" datacolumn="cdnm" codecolumn="cdid" anchor="default"/>
  222. <Combo position="absolute 105 35 205 54" id="combo1" codecolumn="codecolumn" datacolumn="datacolumn" onitemchanged="group3_group2_combo1_onitemchanged" anchor="default">
  223. <Dataset id="innerdataset">
  224. <ColumnInfo>
  225. <Column id="codecolumn"/>
  226. <Column id="datacolumn"/>
  227. </ColumnInfo>
  228. <Rows>
  229. <Row>
  230. <Col id="codecolumn">1</Col>
  231. <Col id="datacolumn">처방일자</Col>
  232. </Row>
  233. <Row>
  234. <Col id="codecolumn">2</Col>
  235. <Col id="datacolumn">예약일자</Col>
  236. </Row>
  237. </Rows>
  238. </Dataset>
  239. </Combo>
  240. <Static text="업무기준 :" position="absolute 16 35 102 52" id="caption6" class="search_name" anchor="default"/>
  241. </Layout>
  242. </Layouts>
  243. </Div>
  244. <Static text="당일 업무대상자 리스트" position="absolute 0 76 160 92" align="align:left middle;" id="caption10" class="tit_2"/>
  245. <Shape position="absolute 0 132 582 138" linetype="horizontal" id="line7" class="line_10"/>
  246. <Static text="전체" position="absolute 1060 148 1091 171" align="align:center middle;" id="caption11" class="cell_1" visible="false" style="padding:0 0 0 5;font:Dotum,8;"/>
  247. <Static text="주사" position="absolute 816 148 847 171" align="align:center middle;" id="caption4" class="cell_1" visible="false" style="padding:0 0 0 5;font:Dotum,8;"/>
  248. <Static text="예방" position="absolute 876 148 907 171" align="align:center middle;" id="caption5" class="cell_1" visible="false" style="padding:0 0 0 5;font:Dotum,8;"/>
  249. <Static text="항암" position="absolute 936 148 967 171" align="align:center middle;" id="caption7" class="cell_1" visible="false" style="padding:0 0 0 5;font:Dotum,8;"/>
  250. <Static text="혈액" position="absolute 997 148 1028 171" align="align:center middle;" id="caption12" class="cell_1" visible="false" style="padding:0 0 0 5;font:Dotum,8;"/>
  251. <Div position="absolute 588 10 1192 45" align="align:center top;" id="group1">
  252. <Layouts>
  253. <Layout>
  254. <Shape position="absolute 0 0 604 35" id="roundrect2" type="roundrectangle"/>
  255. <Static text="등록번호 :" position="absolute 7 9 93 26" id="caption3" class="search_name"/>
  256. <Button position="absolute 477 7 533 29" id="button3" class="btn1" text="조회" onclick="group3_group1_button3_onclick"/>
  257. <Shape position="absolute 468 7 474 29" linetype="vertical" id="line2" class="line_4"/>
  258. <Button position="absolute 536 7 592 29" id="button4" class="btn1" text="저장" onclick="group3_group1_button4_onclick"/>
  259. <Button position="absolute 184 9 200 25" id="button61" class="icon_search" text="" onclick="group3_group1_button61_onclick"/>
  260. <Edit position="absolute 96 8 181 27" id="ipt_pid" class="input_search" maxlength="10" onkeydown="group3_group1_ipt_pid_onkeydown"/>
  261. <Edit readonly="true" position="absolute 206 8 306 27" id="opt_hngnm" class="output"/>
  262. <Edit readonly="true" position="absolute 309 8 354 27" id="opt_gndrage" class="output"/>
  263. <Edit readonly="true" position="absolute 357 8 457 27" id="opt_rrgstno" class="output"/>
  264. </Layout>
  265. </Layouts>
  266. </Div>
  267. <Static text="상병정보" position="absolute 587 55 664 71" align="align:left middle;" id="caption8" class="tit_2"/>
  268. <Static text="메모&#13;&#10;" position="absolute 892 55 949 71" align="align:left middle;" id="caption16" class="tit_2" onclick="group3_caption16_onclick"/>
  269. <Shape position="absolute 587 71 887 77" linetype="horizontal" id="line3" class="line_10"/>
  270. <Shape position="absolute 892 71 1194 77" linetype="horizontal" id="line5" class="line_10"/>
  271. <Static text="미시행 주사내역" position="absolute 827 341 943 357" align="align:left middle;" id="caption19" class="tit_2"/>
  272. <Edit readonly="true" position="absolute 1094 150 1118 169" align="align:right middle;" id="opt_allseq" visible="false" class="output" style="align:right middle;" oneditclick="group3_opt_allseq_oneditclick"/>
  273. <Edit readonly="true" position="absolute 850 150 874 169" align="align:right middle;" id="opt_inj" visible="false" class="output" style="align:right middle;" oneditclick="group3_opt_inj_oneditclick"/>
  274. <Edit readonly="true" position="absolute 909 150 933 169" align="align:right middle;" id="opt_prvn" visible="false" class="output" style="align:right middle;" oneditclick="group3_opt_prvn_oneditclick"/>
  275. <Edit readonly="true" position="absolute 970 150 994 169" align="align:right middle;" id="opt_ant" visible="false" class="output" style="align:right middle;" oneditclick="group3_opt_ant_oneditclick"/>
  276. <Edit readonly="true" position="absolute 1031 150 1055 169" align="align:right middle;" id="opt_blod" visible="false" class="output" style="align:right middle;" oneditclick="group3_opt_blod_oneditclick"/>
  277. <Grid position="absolute 0 522 1194 742" id="grd_prcpdetl" class="datagrid2" binddataset="ds_main_prcpdetl_prcpdetllist" onmousemove="group3_grd_prcpdetl_onmousemove" cellsizingtype="both" extendsizetype="row" selecttype="multirow" oncellclick="group3_grd_prcpdetl_oncellclick" oncelldblclick="group3_grd_prcpdetl_oncelldblclick" oncloseup="group3_grd_prcpdetl_oncloseup" onlbuttonup="group3_grd_prcpdetl_onlbuttonup" autoenter="key">
  278. <Formats>
  279. <Format id="default">
  280. <Columns>
  281. <Column size="25" band="left"/>
  282. <Column size="30" band="left"/>
  283. <Column size="40" band="left"/>
  284. <Column size="60" band="left"/>
  285. <Column size="100" band="left"/>
  286. <Column size="200" band="left"/>
  287. <Column size="115" band="left"/>
  288. <Column size="0"/>
  289. <Column size="30"/>
  290. <Column size="60"/>
  291. <Column size="80"/>
  292. <Column size="30"/>
  293. <Column size="56"/>
  294. <Column size="30"/>
  295. <Column size="60"/>
  296. <Column size="100"/>
  297. <Column size="60"/>
  298. <Column size="100"/>
  299. <Column size="100"/>
  300. <Column size="80"/>
  301. <Column size="100"/>
  302. <Column size="100"/>
  303. <Column size="0"/>
  304. <Column size="0"/>
  305. <Column size="0"/>
  306. <Column size="0"/>
  307. <Column size="0"/>
  308. <Column size="0"/>
  309. <Column size="0"/>
  310. <Column size="0"/>
  311. <Column size="0"/>
  312. <Column size="0"/>
  313. <Column size="0"/>
  314. <Column size="0"/>
  315. <Column size="0"/>
  316. <Column size="0"/>
  317. <Column size="0"/>
  318. <Column size="0"/>
  319. <Column size="0"/>
  320. <Column size="0"/>
  321. <Column size="0"/>
  322. <Column size="0"/>
  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. </Columns>
  351. <Rows>
  352. <Row size="33" band="head"/>
  353. <Row size="24"/>
  354. </Rows>
  355. <Band id="head">
  356. <Cell/>
  357. <Cell col="1" displaytype="checkbox" edittype="checkbox"/>
  358. <Cell col="2" text="구분"/>
  359. <Cell col="3" text="상태"/>
  360. <Cell col="4" text="처방코드"/>
  361. <Cell col="5" text="처방명"/>
  362. <Cell col="6" style="padding:2 2 2 2;" text="용량/수량/횟수/투여경로" wordwrap="word"/>
  363. <Cell col="7" text="순번"/>
  364. <Cell col="8" text="Mix"/>
  365. <Cell col="9" text="전달사항"/>
  366. <Cell col="10" text="보관검체"/>
  367. <Cell col="11" text="AST"/>
  368. <Cell col="12" text="부위"/>
  369. <Cell col="13" text="차수"/>
  370. <Cell col="14" text="LOT No"/>
  371. <Cell col="15" text="예약일자"/>
  372. <Cell col="16" text="예약시간"/>
  373. <Cell col="17" text="처방일시"/>
  374. <Cell col="18" text="시행일시"/>
  375. <Cell col="19" text="시행자"/>
  376. <Cell col="20" text="시행부서"/>
  377. <Cell col="21" text="실시접수부서"/>
  378. <Cell col="22" text="원처방 MIX"/>
  379. <Cell col="23" text="처방일자"/>
  380. <Cell col="24" text="처방번호"/>
  381. <Cell col="25" text="처방이력번호"/>
  382. <Cell col="26" text="실시처방번호"/>
  383. <Cell col="27" text="실시처방유일번호"/>
  384. <Cell col="28" text="성분제제상태"/>
  385. <Cell col="29" text="등록일련번호"/>
  386. <Cell col="30" text="생성번호"/>
  387. <Cell col="31" text="진료과코드"/>
  388. <Cell col="32" text="진료의id"/>
  389. <Cell col="33" text="원예약일시"/>
  390. <Cell col="34" text="원예약일자"/>
  391. <Cell col="35" text="생성번호"/>
  392. <Cell col="36" text="처방종류코드"/>
  393. <Cell col="37" text="약품명칭"/>
  394. <Cell col="38" text="처방생성번호"/>
  395. <Cell col="39" text="실시처방진행상태"/>
  396. <Cell col="40" text="마감여부"/>
  397. <Cell col="41" text="연속처방50프로대상여부"/>
  398. <Cell col="42" text="의사접수여부"/>
  399. <Cell col="43" text="의사접수시각"/>
  400. <Cell col="44" text="수혈반납및폐기사유코드"/>
  401. <Cell col="45" text="성분제제상태"/>
  402. <Cell col="46" text="특수주사실처방여부"/>
  403. <Cell col="47" text="pid타입2파라미터"/>
  404. <Cell col="48" text="orddd타입2파라미터"/>
  405. <Cell col="49" text="cretno타입2파라미터"/>
  406. <Cell col="50" text="prcpdayno"/>
  407. <Cell col="51" text="ordtm"/>
  408. <Cell col="52" text="drugno"/>
  409. <Cell col="53" text="printyn"/>
  410. <Cell col="54" text="etcordflag"/>
  411. <Cell col="55" text="execrcptstatcd"/>
  412. <Cell col="56" text="enddd"/>
  413. <Cell col="57" text="pid"/>
  414. <Cell col="58" text="rcptchk"/>
  415. <Cell col="59" text="preexecdeptcd"/>
  416. <Cell col="60" text="oprc_orddd"/>
  417. <Cell col="61" text="oprc_cretno"/>
  418. <Cell col="62" text="oprc_orddeptcd"/>
  419. <Cell col="63" text="oprc_orddrid"/>
  420. <Cell col="64" text="pop_orddd"/>
  421. <Cell col="65" text="pop_cretno"/>
  422. <Cell col="66" text="pop_genrflagcd"/>
  423. <Cell col="67" text="centcd"/>
  424. <Cell col="68" text="subdeptcd"/>
  425. </Band>
  426. <Band id="body">
  427. <Cell celltype="head" expr="expr:currow + 1"/>
  428. <Cell col="1" displaytype="checkbox" edittype="checkbox" style="background:EXPR( endyn == 'Y' ? '#ffcccc' : (printyn == 'Y' &amp;&amp; execprcpstatcd != '610') ? '#FFFFCC' : '');background2:EXPR( endyn == 'Y' ? '#ffcccc' : (printyn == 'Y' &amp;&amp; execprcpstatcd != '610') ? '#FFFFCC' : '');" text="bind:flag" expr="expr:(flag == &quot;true&quot; || flag == 1) ? 1 : 0"/>
  429. <Cell col="2" displaytype="combo" edittype="none" style="padding:2 2 2 2;background:EXPR( endyn == 'Y' ? '#ffcccc' : (printyn == 'Y' &amp;&amp; execprcpstatcd != '610') ? '#FFFFCC' : '');background2:EXPR( endyn == 'Y' ? '#ffcccc' : (printyn == 'Y' &amp;&amp; execprcpstatcd != '610') ? '#FFFFCC' : '');" text="bind:prcpclscdnow" combodataset="ds_init_M0005info" combocodecol="cdid" combodatacol="cdnm" combodisplayrowcount="-1"/>
  430. <Cell col="3" displaytype="combo" edittype="none" style="padding:2 2 2 2;background:EXPR( endyn == 'Y' ? '#ffcccc' : (printyn == 'Y' &amp;&amp; execprcpstatcd != '610') ? '#FFFFCC' : '');background2:EXPR( endyn == 'Y' ? '#ffcccc' : (printyn == 'Y' &amp;&amp; execprcpstatcd != '610') ? '#FFFFCC' : '');" text="bind:stat" combodataset="ds_stat" combocodecol="value" combodatacol="label" combodisplayrowcount="-1"/>
  431. <Cell col="4" style="align:left middle;linetype:onlyhorz;background:EXPR( endyn == 'Y' ? '#ffcccc' : (printyn == 'Y' &amp;&amp; execprcpstatcd != '610') ? '#FFFFCC' : '');background2:EXPR( endyn == 'Y' ? '#ffcccc' : (printyn == 'Y' &amp;&amp; execprcpstatcd != '610') ? '#FFFFCC' : '');" text="bind:prcpcd"/>
  432. <Cell col="5" style="align:left middle;linetype:onlyhorz;background:EXPR( endyn == 'Y' ? '#ffcccc' : (printyn == 'Y' &amp;&amp; execprcpstatcd != '610') ? '#FFFFCC' : '');background2:EXPR( endyn == 'Y' ? '#ffcccc' : (printyn == 'Y' &amp;&amp; execprcpstatcd != '610') ? '#FFFFCC' : '');" text="bind:prcpnm"/>
  433. <Cell col="6" style="align:left middle;background:EXPR( endyn == 'Y' ? '#ffcccc' : (printyn == 'Y' &amp;&amp; execprcpstatcd != '610') ? '#FFFFCC' : '');background2:EXPR( endyn == 'Y' ? '#ffcccc' : (printyn == 'Y' &amp;&amp; execprcpstatcd != '610') ? '#FFFFCC' : '');" text="bind:datagroup"/>
  434. <Cell col="7" style="background:EXPR( endyn == 'Y' ? '#ffcccc' : (printyn == 'Y' &amp;&amp; execprcpstatcd != '610') ? '#FFFFCC' : '');background2:EXPR( endyn == 'Y' ? '#ffcccc' : (printyn == 'Y' &amp;&amp; execprcpstatcd != '610') ? '#FFFFCC' : '');" text="bind:prcprefseq"/>
  435. <Cell col="8" displaytype="text" edittype="text" style="background:EXPR( endyn == 'Y' ? '#ffcccc' : (printyn == 'Y' &amp;&amp; execprcpstatcd != '610') ? '#FFFFCC' : '');background2:EXPR( endyn == 'Y' ? '#ffcccc' : (printyn == 'Y' &amp;&amp; execprcpstatcd != '610') ? '#FFFFCC' : '');" text="bind:mix" editautoselect="true"/>
  436. <Cell col="9" style="align:left middle;background:EXPR( endyn == 'Y' ? '#ffcccc' : (printyn == 'Y' &amp;&amp; execprcpstatcd != '610') ? '#FFFFCC' : '');background2:EXPR( endyn == 'Y' ? '#ffcccc' : (printyn == 'Y' &amp;&amp; execprcpstatcd != '610') ? '#FFFFCC' : '');" text="bind:prcpdelivefact"/>
  437. <Cell col="10" style="background:EXPR( endyn == 'Y' ? '#ffcccc' : (printyn == 'Y' &amp;&amp; execprcpstatcd != '610') ? '#FFFFCC' : '');background2:EXPR( endyn == 'Y' ? '#ffcccc' : (printyn == 'Y' &amp;&amp; execprcpstatcd != '610') ? '#FFFFCC' : '');" text="bind:keepspc" mask="expr:!utlf_isNull(keepspc) ? '####-##-##' : ''"/>
  438. <Cell col="11" displaytype="combo" edittype="combo" style="background:EXPR( endyn == 'Y' ? '#ffcccc' : (printyn == 'Y' &amp;&amp; execprcpstatcd != '610') ? '#FFFFCC' : '');background2:EXPR( endyn == 'Y' ? '#ffcccc' : (printyn == 'Y' &amp;&amp; execprcpstatcd != '610') ? '#FFFFCC' : '');" text="bind:ast" combodataset="ds_ast" combocodecol="value" combodatacol="label" combodisplayrowcount="-1"/>
  439. <Cell col="12" displaytype="combo" edittype="combo" style="padding:2 2 2 2;background:EXPR( endyn == 'Y' ? '#ffcccc' : (printyn == 'Y' &amp;&amp; execprcpstatcd != '610') ? '#FFFFCC' : '');background2:EXPR( endyn == 'Y' ? '#ffcccc' : (printyn == 'Y' &amp;&amp; execprcpstatcd != '610') ? '#FFFFCC' : '');" text="bind:partflag" combodataset="ds_init_partflaglist" combocodecol="partflag" combodatacol="typenm" combodisplayrowcount="-1"/>
  440. <Cell col="13" displaytype="combo" edittype="combo" style="padding:2 2 2 2;background:EXPR( endyn == 'Y' ? '#ffcccc' : (printyn == 'Y' &amp;&amp; execprcpstatcd != '610') ? '#FFFFCC' : '');background2:EXPR( endyn == 'Y' ? '#ffcccc' : (printyn == 'Y' &amp;&amp; execprcpstatcd != '610') ? '#FFFFCC' : '');" text="bind:dgno" combodataset="ds_dgno" combocodecol="value" combodatacol="label" combodisplayrowcount="-1"/>
  441. <Cell col="14" displaytype="text" edittype="text" style="padding:2 2 2 2;background:EXPR( endyn == 'Y' ? '#ffcccc' : (printyn == 'Y' &amp;&amp; execprcpstatcd != '610') ? '#FFFFCC' : '');background2:EXPR( endyn == 'Y' ? '#ffcccc' : (printyn == 'Y' &amp;&amp; execprcpstatcd != '610') ? '#FFFFCC' : '');" text="bind:lotno" editautoselect="true"/>
  442. <Cell col="15" displaytype="date" edittype="date" style="align:left middle;padding:0 0 0 2;background:EXPR( endyn == 'Y' ? '#ffcccc' : (printyn == 'Y' &amp;&amp; execprcpstatcd != '610') ? '#FFFFCC' : '');background2:EXPR( endyn == 'Y' ? '#ffcccc' : (printyn == 'Y' &amp;&amp; execprcpstatcd != '610') ? '#FFFFCC' : '');" text="bind:actorddd" editautoselect="true" calendardisplay="display" calendardisplaynulltype="none"/>
  443. <Cell col="16" displaytype="combo" edittype="combo" style="padding:2 2 2 2;background:EXPR( endyn == 'Y' ? '#ffcccc' : (printyn == 'Y' &amp;&amp; execprcpstatcd != '610') ? '#FFFFCC' : '');background2:EXPR( endyn == 'Y' ? '#ffcccc' : (printyn == 'Y' &amp;&amp; execprcpstatcd != '610') ? '#FFFFCC' : '');" text="bind:rsrvtm" combodataset="ds_rsrvtm" combocodecol="value" combodatacol="label" combodisplayrowcount="-1"/>
  444. <Cell col="17" style="background:EXPR( endyn == 'Y' ? '#ffcccc' : (printyn == 'Y' &amp;&amp; execprcpstatcd != '610') ? '#FFFFCC' : '');background2:EXPR( endyn == 'Y' ? '#ffcccc' : (printyn == 'Y' &amp;&amp; execprcpstatcd != '610') ? '#FFFFCC' : '');" text="bind:orddd" mask="####-##-## ##:##"/>
  445. <Cell col="18" style="align:left middle;padding:2 2 2 2;background:EXPR( endyn == 'Y' ? '#ffcccc' : (printyn == 'Y' &amp;&amp; execprcpstatcd != '610') ? '#FFFFCC' : '');background2:EXPR( endyn == 'Y' ? '#ffcccc' : (printyn == 'Y' &amp;&amp; execprcpstatcd != '610') ? '#FFFFCC' : '');" text="bind:execdd" mask="expr:utlf_isNull(execdd) ? '' : String(execdd).length==14 ? '####-##-## ##:##' : ''"/>
  446. <Cell col="19" style="align:left middle;background:EXPR( endyn == 'Y' ? '#ffcccc' : (printyn == 'Y' &amp;&amp; execprcpstatcd != '610') ? '#FFFFCC' : '');background2:EXPR( endyn == 'Y' ? '#ffcccc' : (printyn == 'Y' &amp;&amp; execprcpstatcd != '610') ? '#FFFFCC' : '');" text="bind:execrid"/>
  447. <Cell col="20" style="align:left middle;" text="bind:execdeptcd"/>
  448. <Cell col="21" text="bind:preexecdeptnm"/>
  449. <Cell col="22" text="bind:prcpmixno"/>
  450. <Cell col="23" text="bind:prcpdd"/>
  451. <Cell col="24" text="bind:prcpno"/>
  452. <Cell col="25" text="bind:prcphistno"/>
  453. <Cell col="26" text="bind:execprcpno"/>
  454. <Cell col="27" text="bind:execprcpuniqno"/>
  455. <Cell col="28" text="bind:blodcomstat"/>
  456. <Cell col="29" text="bind:acptseqno"/>
  457. <Cell col="30" text="bind:actcretno"/>
  458. <Cell col="31" text="bind:orddeptcd"/>
  459. <Cell col="32" text="bind:orddrid"/>
  460. <Cell col="33" text="bind:rsrvtm_ord"/>
  461. <Cell col="34" text="bind:actorddd_ord"/>
  462. <Cell col="35" text="bind:cretno"/>
  463. <Cell col="36" edittype="none" text="bind:prcpclscd"/>
  464. <Cell col="37" text="bind:cdnm"/>
  465. <Cell col="38" text="bind:cretnos"/>
  466. <Cell col="39" text="bind:execprcpstatcd"/>
  467. <Cell col="40" text="bind:endyn"/>
  468. <Cell col="41" text="bind:act50yn"/>
  469. <Cell col="42" text="bind:dracptyn"/>
  470. <Cell col="43" text="bind:dracptdt"/>
  471. <Cell col="44" text="bind:etcprcpresncd"/>
  472. <Cell col="45" text="bind:blodcomstat"/>
  473. <Cell col="46" text="bind:drprcpetc2"/>
  474. <Cell col="47" text="bind:tp2pid"/>
  475. <Cell col="48" text="bind:tp2orddd"/>
  476. <Cell col="49" text="bind:tp2cretno"/>
  477. <Cell col="50" text="bind:prcpdayno"/>
  478. <Cell col="51" text="bind:ordtm"/>
  479. <Cell col="52" text="bind:drugno"/>
  480. <Cell col="53" text="bind:printyn"/>
  481. <Cell col="54" text="bind:etcordflag"/>
  482. <Cell col="55" text="bind:execrcptstatcd"/>
  483. <Cell col="56" text="bind:enddd"/>
  484. <Cell col="57" text="bind:pid"/>
  485. <Cell col="58" text="bind:rcptchk"/>
  486. <Cell col="59" text="bind:preexecdeptcd"/>
  487. <Cell col="60" text="bind:oprc_orddd"/>
  488. <Cell col="61" text="bind:oprc_cretno"/>
  489. <Cell col="62" text="bind:oprc_orddeptcd"/>
  490. <Cell col="63" text="bind:oprc_orddrid"/>
  491. <Cell col="64" text="bind:pop_orddd"/>
  492. <Cell col="65" text="bind:pop_cretno"/>
  493. <Cell col="66" text="bind:pop_genrflagcd"/>
  494. <Cell col="67" text="bind:centcd"/>
  495. <Cell col="68" text="bind:subdeptcd"/>
  496. </Band>
  497. </Format>
  498. </Formats>
  499. </Grid>
  500. <Button position="absolute 165 73 207 92" id="button2" class="btn2" text="상세" onclick="group3_button2_onclick"/>
  501. <Div position="absolute 0 492 1195 522" id="group4" scrollbars="none" style="background:white;">
  502. <Layouts>
  503. <Layout>
  504. <Button position="absolute 1101 5 1187 24" id="button15" class="btn2" visible="true" text="혈액불출관리" onclick="group3_group4_button15_onclick" anchor="default"/>
  505. <Button position="absolute 1034 5 1098 24" id="button5" class="btn2" visible="true" text="검체라벨" onclick="group3_group4_button5_onclick" anchor="default"/>
  506. <CheckBox position="absolute 266 4 362 24" id="checkbox3" visible="true" text="처방전+acting" truevalue="1" onclick="group3_group4_checkbox3_onclick" anchor="default"/>
  507. <Static text="처방 상세내역" position="absolute 0 7 111 23" id="caption1" class="tit_2" anchor="default"/>
  508. <Button position="absolute 365 5 440 24" id="button7" class="btn2" visible="true" text="처방전출력" onclick="group3_group4_button7_onclick" anchor="default"/>
  509. <Button position="absolute 900 5 964 24" id="button8" class="btn2" visible="true" text="TypeⅡ" onclick="group3_group4_button8_onclick" anchor="default"/>
  510. <Button position="absolute 644 5 730 24" id="button9" class="btn5" visible="true" text="변경내용저장" onclick="group3_group4_button9_onclick" anchor="default"/>
  511. <Shape position="absolute 0 24 1194 30" linetype="horizontal" id="line1" class="line_10" anchor="default"/>
  512. <Button position="absolute 967 5 1031 24" id="button10" class="btn2" visible="true" text="간호처방" anchor="default" onclick="group3_group4_button10_onclick"/>
  513. <Button position="absolute 443 5 496 24" id="button11" class="btn2" visible="true" text="Acting" anchor="default" onclick="group3_group4_button11_onclick"/>
  514. <Button position="absolute 577 5 641 24" id="button12" class="btn2" visible="true" text="항암전송" anchor="default" onclick="group3_group4_button12_onclick"/>
  515. <Button position="absolute 499 5 574 24" id="button13" class="btn2" visible="true" text="Acting취소" anchor="default" onclick="group3_group4_button13_onclick"/>
  516. <Button position="absolute 120 5 162 24" id="button16" class="btn2" text="상세" anchor="default" onclick="group3_group4_button16_onclick"/>
  517. <Button position="absolute 811 5 897 24" id="button17" class="btn2" visible="true" text="주사약집계표" anchor="default" onclick="group3_group4_button17_onclick"/>
  518. <CheckBox position="absolute 165 4 261 24" id="checkbox1" anchor="default" text="외래처방포함" truevalue="1" onclick="group3_group4_checkbox1_onclick"/>
  519. <Button position="absolute 733 5 797 24" id="btn_nrsdc" class="btn2" visible="false" text="반환요청" anchor="default" onclick="group3_group4_btn_nrsdc_onclick"/>
  520. </Layout>
  521. </Layouts>
  522. </Div>
  523. <Shape position="absolute 827 358 1195 364" linetype="horizontal" id="line12" class="line_10"/>
  524. <Edit readonly="true" position="absolute 550 55 574 74" align="align:right middle;" id="output1" visible="false" class="output" style="align:right middle;"/>
  525. <Grid position="absolute 827 362 1194 490" id="grd_injsper" binddataset="ds_main_rghtlist_injsperlist" onmousemove="group3_grd_injsper_onmousemove" oncelldblclick="group3_grd_injsper_oncelldblclick" cellsizingtype="both" extendsizetype="row">
  526. <Formats>
  527. <Format id="default">
  528. <Columns>
  529. <Column size="25" band="left"/>
  530. <Column size="110"/>
  531. <Column size="100"/>
  532. <Column size="45"/>
  533. <Column size="100"/>
  534. <Column size="200"/>
  535. <Column size="0"/>
  536. <Column size="100"/>
  537. <Column size="100"/>
  538. </Columns>
  539. <Rows>
  540. <Row size="24" band="head"/>
  541. <Row size="24"/>
  542. </Rows>
  543. <Band id="head">
  544. <Cell/>
  545. <Cell col="1" text="처방일시"/>
  546. <Cell col="2" text="센터"/>
  547. <Cell col="3" text="과"/>
  548. <Cell col="4" text="처방코드"/>
  549. <Cell col="5" text="처방명"/>
  550. <Cell col="6" text="예약일자"/>
  551. <Cell col="7" text="처방접수부서"/>
  552. <Cell col="8" text="실시접수부서"/>
  553. </Band>
  554. <Band id="body">
  555. <Cell celltype="head" expr="expr:currow + 1"/>
  556. <Cell col="1" style="align:left middle;" text="bind:orddd" mask="####-##-## ##:##"/>
  557. <Cell col="2" style="align:left middle;" text="bind:centnm"/>
  558. <Cell col="3" style="align:left middle;" text="bind:depthngnm"/>
  559. <Cell col="4" style="align:left middle;linetype:onlyhorz;" text="bind:prcpcd"/>
  560. <Cell col="5" style="align:left middle;" text="bind:prcpnm"/>
  561. <Cell col="6" style="align:left middle;" text="bind:actorddd"/>
  562. <Cell col="7" style="align:left middle;" text="bind:prcpexecdeptcd"/>
  563. <Cell col="8" style="align:left middle;" text="bind:execdeptcd"/>
  564. </Band>
  565. </Format>
  566. </Formats>
  567. </Grid>
  568. <Grid position="absolute 0 136 582 490" id="grd_biztrgtman" binddataset="ds_main_biztrgtman_biztrgtmanlist" onmousemove="group3_grd_biztrgtman_onmousemove" oncelldblclick="group3_grd_biztrgtman_oncelldblclick" onrbuttondown="group3_grd_biztrgtman_onrbuttondown" onrbuttonup="group3_grd_biztrgtman_onrbuttonup" cellsizingtype="both" extendsizetype="row" selecttype="multirow">
  569. <Formats>
  570. <Format id="default">
  571. <Columns>
  572. <Column size="25" band="left"/>
  573. <Column size="0"/>
  574. <Column size="59"/>
  575. <Column size="60"/>
  576. <Column size="41"/>
  577. <Column size="70"/>
  578. <Column size="100"/>
  579. <Column size="60"/>
  580. <Column size="70"/>
  581. <Column size="37"/>
  582. <Column size="0"/>
  583. <Column size="0"/>
  584. <Column size="0"/>
  585. </Columns>
  586. <Rows>
  587. <Row size="24" band="head"/>
  588. <Row size="24"/>
  589. </Rows>
  590. <Band id="head">
  591. <Cell/>
  592. <Cell col="1" text="구분"/>
  593. <Cell col="2" text="등록번호"/>
  594. <Cell col="3" text="환자명"/>
  595. <Cell col="4" text="S/A"/>
  596. <Cell col="5" text="센터"/>
  597. <Cell col="6" text="진료과"/>
  598. <Cell col="7" text="주치의"/>
  599. <Cell col="8" text="업무일자"/>
  600. <Cell col="9" text="시행"/>
  601. <Cell col="10" text="진료일자"/>
  602. <Cell col="11" text="생성번호"/>
  603. <Cell col="12" text="rrgstno"/>
  604. </Band>
  605. <Band id="body">
  606. <Cell celltype="head" expr="expr:currow + 1"/>
  607. <Cell col="1" displaytype="combo" edittype="none" style="background:EXPR(rcptchk == 'R'?&quot;#ffffff&quot;:rcptchk == 'Y'?&quot;#ccffcc&quot;:rcptchk == 'F'?&quot;#ff99cc&quot;:rcptchk == 'V'?&quot;#ffff00&quot;:&quot;&quot;);background2:EXPR(rcptchk == 'R'?&quot;#ffffff&quot;:rcptchk == 'Y'?&quot;#ccffcc&quot;:rcptchk == 'F'?&quot;#ff99cc&quot;:rcptchk == 'V'?&quot;#ffff00&quot;:&quot;&quot;);" text="bind:prcpclscd" combodataset="ds_init_M0005info" combocodecol="cdid" combodatacol="cdnm"/>
  608. <Cell col="2" style="background:EXPR(rcptchk == 'R'?&quot;#ffffff&quot;:rcptchk == 'Y'?&quot;#ccffcc&quot;:rcptchk == 'F'?&quot;#ff99cc&quot;:rcptchk == 'V'?&quot;#ffff00&quot;:&quot;&quot;);background2:EXPR(rcptchk == 'R'?&quot;#ffffff&quot;:rcptchk == 'Y'?&quot;#ccffcc&quot;:rcptchk == 'F'?&quot;#ff99cc&quot;:rcptchk == 'V'?&quot;#ffff00&quot;:&quot;&quot;);" text="bind:pid"/>
  609. <Cell col="3" style="background:EXPR(rcptchk == 'R'?&quot;#ffffff&quot;:rcptchk == 'Y'?&quot;#ccffcc&quot;:rcptchk == 'F'?&quot;#ff99cc&quot;:rcptchk == 'V'?&quot;#ffff00&quot;:&quot;&quot;);background2:EXPR(rcptchk == 'R'?&quot;#ffffff&quot;:rcptchk == 'Y'?&quot;#ccffcc&quot;:rcptchk == 'F'?&quot;#ff99cc&quot;:rcptchk == 'V'?&quot;#ffff00&quot;:&quot;&quot;);" text="bind:hngnm"/>
  610. <Cell col="4" style="background:EXPR(rcptchk == 'R'?&quot;#ffffff&quot;:rcptchk == 'Y'?&quot;#ccffcc&quot;:rcptchk == 'F'?&quot;#ff99cc&quot;:rcptchk == 'V'?&quot;#ffff00&quot;:&quot;&quot;);background2:EXPR(rcptchk == 'R'?&quot;#ffffff&quot;:rcptchk == 'Y'?&quot;#ccffcc&quot;:rcptchk == 'F'?&quot;#ff99cc&quot;:rcptchk == 'V'?&quot;#ffff00&quot;:&quot;&quot;);" text="bind:gndrage"/>
  611. <Cell col="5" style="background:EXPR(rcptchk == 'R'?&quot;#ffffff&quot;:rcptchk == 'Y'?&quot;#ccffcc&quot;:rcptchk == 'F'?&quot;#ff99cc&quot;:rcptchk == 'V'?&quot;#ffff00&quot;:&quot;&quot;);background2:EXPR(rcptchk == 'R'?&quot;#ffffff&quot;:rcptchk == 'Y'?&quot;#ccffcc&quot;:rcptchk == 'F'?&quot;#ff99cc&quot;:rcptchk == 'V'?&quot;#ffff00&quot;:&quot;&quot;);" text="bind:centnm"/>
  612. <Cell col="6" style="background:EXPR(rcptchk == 'R'?&quot;#ffffff&quot;:rcptchk == 'Y'?&quot;#ccffcc&quot;:rcptchk == 'F'?&quot;#ff99cc&quot;:rcptchk == 'V'?&quot;#ffff00&quot;:&quot;&quot;);background2:EXPR(rcptchk == 'R'?&quot;#ffffff&quot;:rcptchk == 'Y'?&quot;#ccffcc&quot;:rcptchk == 'F'?&quot;#ff99cc&quot;:rcptchk == 'V'?&quot;#ffff00&quot;:&quot;&quot;);" text="bind:depthngnm"/>
  613. <Cell col="7" style="background:EXPR(rcptchk == 'R'?&quot;#ffffff&quot;:rcptchk == 'Y'?&quot;#ccffcc&quot;:rcptchk == 'F'?&quot;#ff99cc&quot;:rcptchk == 'V'?&quot;#ffff00&quot;:&quot;&quot;);background2:EXPR(rcptchk == 'R'?&quot;#ffffff&quot;:rcptchk == 'Y'?&quot;#ccffcc&quot;:rcptchk == 'F'?&quot;#ff99cc&quot;:rcptchk == 'V'?&quot;#ffff00&quot;:&quot;&quot;);" text="bind:usernm"/>
  614. <Cell col="8" style="background:EXPR(rcptchk == 'R'?&quot;#ffffff&quot;:rcptchk == 'Y'?&quot;#ccffcc&quot;:rcptchk == 'F'?&quot;#ff99cc&quot;:rcptchk == 'V'?&quot;#ffff00&quot;:&quot;&quot;);background2:EXPR(rcptchk == 'R'?&quot;#ffffff&quot;:rcptchk == 'Y'?&quot;#ccffcc&quot;:rcptchk == 'F'?&quot;#ff99cc&quot;:rcptchk == 'V'?&quot;#ffff00&quot;:&quot;&quot;);" text="bind:workdd" mask="####-##-##"/>
  615. <Cell col="9" style="background:EXPR(rcptchk == 'R'?&quot;#ffffff&quot;:rcptchk == 'Y'?&quot;#ccffcc&quot;:rcptchk == 'F'?&quot;#ff99cc&quot;:rcptchk == 'V'?&quot;#ffff00&quot;:&quot;&quot;);background2:EXPR(rcptchk == 'R'?&quot;#ffffff&quot;:rcptchk == 'Y'?&quot;#ccffcc&quot;:rcptchk == 'F'?&quot;#ff99cc&quot;:rcptchk == 'V'?&quot;#ffff00&quot;:&quot;&quot;);" text="bind:execyn"/>
  616. <Cell col="10" style="background:EXPR(rcptchk == 'R'?&quot;#ffffff&quot;:rcptchk == 'Y'?&quot;#ccffcc&quot;:rcptchk == 'F'?&quot;#ff99cc&quot;:rcptchk == 'V'?&quot;#ffff00&quot;:&quot;&quot;);background2:EXPR(rcptchk == 'R'?&quot;#ffffff&quot;:rcptchk == 'Y'?&quot;#ccffcc&quot;:rcptchk == 'F'?&quot;#ff99cc&quot;:rcptchk == 'V'?&quot;#ffff00&quot;:&quot;&quot;);" text="bind:orddd"/>
  617. <Cell col="11" text="bind:cretno"/>
  618. <Cell col="12" text="bind:rrgstno"/>
  619. </Band>
  620. </Format>
  621. </Formats>
  622. </Grid>
  623. <Button position="absolute 1087 49 1191 71" id="button18" class="btn3" text="환자카드출력" onclick="group3_button18_onclick"/>
  624. <Button position="absolute 1002 49 1082 71" id="button19" class="btn3" text="환자라벨" onclick="group3_button19_onclick"/>
  625. <Div position="absolute 910 80 1104 130" id="grp_prtlabel" visible="false" style="background:#87cefaff;border:1 solid #333333ff ;">
  626. <Layouts>
  627. <Layout>
  628. <Static text="출력할 장수를 입력하십시오." position="absolute 0 5 188 21" id="caption21" class="tit_2"/>
  629. <MaskEdit position="absolute 27 25 87 44" id="ipt_cmpatprtcnt" class="input_default" taborder="9" mask="#####" onkeydown="group3_grp_prtlabel_ipt_cmpatprtcnt_onkeydown" limitbymask="both" style="align:left middle;" autoselect="true"/>
  630. <Button position="absolute 90 25 132 44" id="btn_prtlabel" class="btn5" taborder="22" text="확인" onclick="group3_grp_prtlabel_btn_prtlabel_onclick"/>
  631. <Button position="absolute 135 25 177 44" id="button20" class="btn5" taborder="22" text="취소" onclick="group3_grp_prtlabel_button20_onclick"/>
  632. </Layout>
  633. </Layouts>
  634. </Div>
  635. </Layout>
  636. </Layouts>
  637. </Div>
  638. <Div position="absolute 0 757 1194 784" id="grp_btn" scrollbars="autoboth">
  639. <Layouts>
  640. <Layout>
  641. <Shape position="absolute 0 2 1194 27" linetype="vertical" id="line9" class="line_6" visible="false"/>
  642. <Shape position="absolute 0 0 230 24" id="roundrect3" class="roundrect_example" type="roundrectangle"/>
  643. <Static position="absolute 20 4 37 21" id="caption63" style="background:#ffccccff;"/>
  644. <Static text="마감처방" position="absolute 39 5 90 21" id="caption64"/>
  645. <Static text="처방전출력" position="absolute 115 5 181 21" id="caption20"/>
  646. <Button position="absolute 1090 0 1182 22" id="button21" class="btn3" text="프린터설정" onclick="grp_btn_button21_onclick"/>
  647. <Static position="absolute 96 4 113 21" id="caption17" style="background:#ffffccff;"/>
  648. </Layout>
  649. </Layouts>
  650. </Div>
  651. <Static text="외래항암업무" position="absolute 0 0 205 20" id="capt_titl" class="tit_1"/>
  652. <PopupMenu id="pmnmenu1" idcolumn="func" captioncolumn="name" levelcolumn="level" onmenuclick="pmnmenu1_onmenuclick" position="absolute 1205 23 1327 85" innerdataset="@ds_init_menu_item" style="buttonsize:-1;"/>
  653. </Layout>
  654. </Layouts>
  655. <Objects>
  656. <Dataset id="ds_main_biztrgtman_biztrgtmanlist" firefirstcount="0" firenextcount="0" useclientlayout="false" updatecontrol="true" enableevent="true" loadkeymode="keep" loadfiltermode="keep" reversesubsum="false">
  657. <ColumnInfo>
  658. <Column id="prcpclscd" type="STRING" size="256"/>
  659. <Column id="pid" type="STRING" size="256"/>
  660. <Column id="hngnm" type="STRING" size="256"/>
  661. <Column id="gndrage" type="STRING" size="256"/>
  662. <Column id="depthngnm" type="STRING" size="256"/>
  663. <Column id="usernm" type="STRING" size="256"/>
  664. <Column id="orddd" type="STRING" size="256"/>
  665. <Column id="execyn" type="STRING" size="256"/>
  666. <Column id="ordtype" type="STRING" size="256"/>
  667. <Column id="cretno" type="STRING" size="256"/>
  668. <Column id="instcd" type="STRING" size="256"/>
  669. <Column id="acptseqno" type="STRING" size="256"/>
  670. <Column id="orgorddd" type="STRING" size="256"/>
  671. </ColumnInfo>
  672. <Rows>
  673. <Row>
  674. <Col id="prcpclscd"/>
  675. <Col id="pid"/>
  676. <Col id="hngnm"/>
  677. <Col id="gndrage"/>
  678. <Col id="depthngnm"/>
  679. <Col id="usernm"/>
  680. <Col id="orddd"/>
  681. <Col id="execyn"/>
  682. <Col id="ordtype"/>
  683. <Col id="cretno"/>
  684. <Col id="instcd"/>
  685. <Col id="acptseqno"/>
  686. <Col id="orgorddd"/>
  687. </Row>
  688. </Rows>
  689. </Dataset>
  690. <Dataset id="ds_main_biztrgtman_statslist" firefirstcount="0" firenextcount="0" useclientlayout="false" updatecontrol="true" enableevent="true" loadkeymode="keep" loadfiltermode="keep" reversesubsum="false">
  691. <ColumnInfo>
  692. <Column id="allseq" type="STRING" size="256"/>
  693. <Column id="inj" type="STRING" size="256"/>
  694. <Column id="prvn" type="STRING" size="256"/>
  695. <Column id="ant" type="STRING" size="256"/>
  696. <Column id="blod" type="STRING" size="256"/>
  697. <Column id="antprcpend" type="STRING" size="256"/>
  698. <Column id="antdelive" type="STRING" size="256"/>
  699. </ColumnInfo>
  700. <Rows>
  701. <Row>
  702. <Col id="allseq"/>
  703. <Col id="inj"/>
  704. <Col id="prvn"/>
  705. <Col id="ant"/>
  706. <Col id="blod"/>
  707. <Col id="antprcpend"/>
  708. <Col id="antdelive"/>
  709. </Row>
  710. </Rows>
  711. </Dataset>
  712. <Dataset id="ds_main_biztrgtman_endyninfo" firefirstcount="0" firenextcount="0" useclientlayout="false" updatecontrol="true" enableevent="true" loadkeymode="keep" loadfiltermode="keep" reversesubsum="false">
  713. <ColumnInfo>
  714. <Column id="endyn" type="STRING" size="256"/>
  715. </ColumnInfo>
  716. <Rows>
  717. <Row/>
  718. </Rows>
  719. </Dataset>
  720. <Dataset id="ds_main_leftref" firefirstcount="0" firenextcount="0" useclientlayout="false" updatecontrol="true" enableevent="true" loadkeymode="keep" loadfiltermode="keep" reversesubsum="false">
  721. <ColumnInfo>
  722. <Column id="exec" type="STRING" size="256"/>
  723. <Column id="bizdd" type="STRING" size="256"/>
  724. <Column id="execflag" type="STRING" size="256"/>
  725. <Column id="execnm" type="STRING" size="256"/>
  726. <Column id="workflag" type="STRING" size="256"/>
  727. </ColumnInfo>
  728. <Rows>
  729. <Row>
  730. <Col id="exec"/>
  731. <Col id="bizdd"/>
  732. <Col id="execflag">1</Col>
  733. <Col id="execnm"/>
  734. <Col id="workflag"/>
  735. </Row>
  736. </Rows>
  737. </Dataset>
  738. <Dataset id="ds_main_rghtref_rghtreflist" firefirstcount="0" firenextcount="0" useclientlayout="false" updatecontrol="true" enableevent="true" loadkeymode="keep" loadfiltermode="keep" reversesubsum="false">
  739. <ColumnInfo>
  740. <Column id="pid" type="STRING" size="256"/>
  741. <Column id="hngnm" type="STRING" size="256"/>
  742. <Column id="gndrage" type="STRING" size="256"/>
  743. <Column id="rrgstno" type="STRING" size="256"/>
  744. </ColumnInfo>
  745. <Rows>
  746. <Row>
  747. <Col id="pid"/>
  748. <Col id="hngnm"/>
  749. <Col id="gndrage"/>
  750. <Col id="rrgstno"/>
  751. </Row>
  752. </Rows>
  753. </Dataset>
  754. <Dataset id="ds_main_prcpdetl_prcpdetllist" firefirstcount="0" firenextcount="0" useclientlayout="false" updatecontrol="true" enableevent="true" loadkeymode="keep" loadfiltermode="keep" reversesubsum="false" oncolumnchanged="ds_main_prcpdetl_prcpdetllist_oncolumnchanged">
  755. <ColumnInfo>
  756. <Column id="flag" type="STRING" size="256"/>
  757. <Column id="prcpclscdnow" type="STRING" size="256"/>
  758. <Column id="stat" type="STRING" size="256"/>
  759. <Column id="prcpcd" type="STRING" size="256"/>
  760. <Column id="prcpnm" type="STRING" size="256"/>
  761. <Column id="datagroup" type="STRING" size="256"/>
  762. <Column id="prcprefseq" type="STRING" size="256"/>
  763. <Column id="mix" type="STRING" size="256"/>
  764. <Column id="prcpdelivefact" type="STRING" size="256"/>
  765. <Column id="keepspc" type="STRING" size="256"/>
  766. <Column id="ast" type="STRING" size="256"/>
  767. <Column id="partflag" type="STRING" size="256"/>
  768. <Column id="dgno" type="STRING" size="256"/>
  769. <Column id="lotno" type="STRING" size="256"/>
  770. <Column id="actorddd" type="STRING" size="256"/>
  771. <Column id="rsrvtm" type="STRING" size="256"/>
  772. <Column id="orddd" type="STRING" size="256"/>
  773. <Column id="execdd" type="STRING" size="256"/>
  774. <Column id="execrid" type="STRING" size="256"/>
  775. <Column id="prcpmixno" type="STRING" size="256"/>
  776. <Column id="prcpdd" type="STRING" size="256"/>
  777. <Column id="prcpno" type="STRING" size="256"/>
  778. <Column id="prcphistno" type="STRING" size="256"/>
  779. <Column id="execprcpno" type="STRING" size="256"/>
  780. <Column id="execprcpuniqno" type="STRING" size="256"/>
  781. <Column id="blodcomstat" type="STRING" size="256"/>
  782. <Column id="prcpmixno" type="STRING" size="256"/>
  783. <Column id="actcretno" type="STRING" size="256"/>
  784. <Column id="orddeptcd" type="STRING" size="256"/>
  785. <Column id="orddrid" type="STRING" size="256"/>
  786. <Column id="rsrvtm_ord" type="STRING" size="256"/>
  787. <Column id="actorddd_ord" type="STRING" size="256"/>
  788. <Column id="cretno" type="STRING" size="256"/>
  789. <Column id="prcpclscd" type="STRING" size="256"/>
  790. <Column id="cdnm" type="STRING" size="256"/>
  791. <Column id="cretnos" type="STRING" size="256"/>
  792. <Column id="execprcpstatcd" type="STRING" size="256"/>
  793. <Column id="endyn" type="STRING" size="256"/>
  794. <Column id="act50yn" type="STRING" size="256"/>
  795. <Column id="dracptyn" type="STRING" size="256"/>
  796. <Column id="dracptdt" type="STRING" size="256"/>
  797. <Column id="etcprcpresncd" type="STRING" size="256"/>
  798. <Column id="blodcomstat" type="STRING" size="256"/>
  799. <Column id="etcordflag" type="STRING" size="256"/>
  800. </ColumnInfo>
  801. <Rows>
  802. <Row>
  803. <Col id="flag"/>
  804. <Col id="prcpclscdnow"/>
  805. <Col id="stat"/>
  806. <Col id="prcpcd"/>
  807. <Col id="prcpnm"/>
  808. <Col id="datagroup"/>
  809. <Col id="prcprefseq"/>
  810. <Col id="mix"/>
  811. <Col id="prcpdelivefact"/>
  812. <Col id="keepspc"/>
  813. <Col id="ast"/>
  814. <Col id="partflag"/>
  815. <Col id="dgno"/>
  816. <Col id="lotno"/>
  817. <Col id="actorddd"/>
  818. <Col id="rsrvtm"/>
  819. <Col id="orddd"/>
  820. <Col id="execdd"/>
  821. <Col id="execrid"/>
  822. <Col id="prcpmixno"/>
  823. <Col id="prcpdd"/>
  824. <Col id="prcpno"/>
  825. <Col id="prcphistno"/>
  826. <Col id="execprcpno"/>
  827. <Col id="execprcpuniqno"/>
  828. <Col id="blodcomstat"/>
  829. <Col id="prcpmixno"/>
  830. <Col id="actcretno"/>
  831. <Col id="orddeptcd"/>
  832. <Col id="orddrid"/>
  833. <Col id="rsrvtm_ord"/>
  834. <Col id="actorddd_ord"/>
  835. <Col id="cretno"/>
  836. <Col id="prcpclscd"/>
  837. <Col id="cdnm"/>
  838. <Col id="cretnos"/>
  839. <Col id="execprcpstatcd"/>
  840. <Col id="endyn"/>
  841. <Col id="act50yn"/>
  842. <Col id="dracptyn"/>
  843. <Col id="dracptdt"/>
  844. <Col id="etcprcpresncd"/>
  845. <Col id="blodcomstat"/>
  846. <Col id="etcordflag"/>
  847. </Row>
  848. </Rows>
  849. </Dataset>
  850. <Dataset id="ds_main_rghtlist_ordsperlist" firefirstcount="0" firenextcount="0" useclientlayout="false" updatecontrol="true" enableevent="true" loadkeymode="keep" loadfiltermode="keep" reversesubsum="false">
  851. <ColumnInfo>
  852. <Column id="actorddd" type="STRING" size="256"/>
  853. <Column id="depthngnm" type="STRING" size="256"/>
  854. <Column id="usernm" type="STRING" size="256"/>
  855. </ColumnInfo>
  856. <Rows>
  857. <Row>
  858. <Col id="actorddd"/>
  859. <Col id="depthngnm"/>
  860. <Col id="usernm"/>
  861. </Row>
  862. </Rows>
  863. </Dataset>
  864. <Dataset id="ds_main_rghtlist_injsperlist" firefirstcount="0" firenextcount="0" useclientlayout="false" updatecontrol="true" enableevent="true" loadkeymode="keep" loadfiltermode="keep" reversesubsum="false">
  865. <ColumnInfo>
  866. <Column id="orddd" type="STRING" size="256"/>
  867. <Column id="depthngnm" type="STRING" size="256"/>
  868. <Column id="prcpcd" type="STRING" size="256"/>
  869. <Column id="prcpnm" type="STRING" size="256"/>
  870. <Column id="actorddd" type="STRING" size="256"/>
  871. <Column id="prcpexecdeptcd" type="STRING" size="256"/>
  872. <Column id="execdeptcd" type="STRING" size="256"/>
  873. </ColumnInfo>
  874. <Rows>
  875. <Row>
  876. <Col id="orddd"/>
  877. <Col id="depthngnm"/>
  878. <Col id="prcpcd"/>
  879. <Col id="prcpnm"/>
  880. <Col id="actorddd"/>
  881. <Col id="prcpexecdeptcd"/>
  882. <Col id="execdeptcd"/>
  883. </Row>
  884. </Rows>
  885. </Dataset>
  886. <Dataset id="ds_main_rghtlist_snwinfolist" firefirstcount="0" firenextcount="0" useclientlayout="false" updatecontrol="true" enableevent="true" loadkeymode="keep" loadfiltermode="keep" reversesubsum="false">
  887. <ColumnInfo>
  888. <Column id="diagcd" type="STRING" size="256"/>
  889. <Column id="termhngnm" type="STRING" size="256"/>
  890. </ColumnInfo>
  891. <Rows>
  892. <Row>
  893. <Col id="diagcd"/>
  894. <Col id="termhngnm"/>
  895. </Row>
  896. </Rows>
  897. </Dataset>
  898. <Dataset id="ds_main_rghtlist_ordrsrvlist" firefirstcount="0" firenextcount="0" useclientlayout="false" updatecontrol="true" enableevent="true" loadkeymode="keep" loadfiltermode="keep" reversesubsum="false">
  899. <ColumnInfo>
  900. <Column id="rsrvdt" type="STRING" size="256"/>
  901. <Column id="orddeptnm" type="STRING" size="256"/>
  902. <Column id="usernm" type="STRING" size="256"/>
  903. <Column id="rcptflag" type="STRING" size="256"/>
  904. <Column id="execflag" type="STRING" size="256"/>
  905. <Column id="rem" type="STRING" size="256"/>
  906. <Column id="orddrid" type="STRING" size="256"/>
  907. </ColumnInfo>
  908. <Rows>
  909. <Row>
  910. <Col id="rsrvdt"/>
  911. <Col id="orddeptnm"/>
  912. <Col id="usernm"/>
  913. <Col id="rcptflag"/>
  914. <Col id="execflag"/>
  915. <Col id="rem"/>
  916. <Col id="orddrid"/>
  917. </Row>
  918. </Rows>
  919. </Dataset>
  920. <Dataset id="ds_main_rghtlist_testrsrvlist" firefirstcount="0" firenextcount="0" useclientlayout="false" updatecontrol="true" enableevent="true" loadkeymode="keep" loadfiltermode="keep" reversesubsum="false">
  921. <ColumnInfo>
  922. <Column id="rsrvdt" type="STRING" size="256"/>
  923. <Column id="prcpcd" type="STRING" size="256"/>
  924. <Column id="prcpnm" type="STRING" size="256"/>
  925. <Column id="execdept" type="STRING" size="256"/>
  926. <Column id="rcptflag" type="STRING" size="256"/>
  927. <Column id="execflag" type="STRING" size="256"/>
  928. <Column id="rem" type="STRING" size="256"/>
  929. </ColumnInfo>
  930. <Rows>
  931. <Row>
  932. <Col id="rsrvdt"/>
  933. <Col id="prcpcd"/>
  934. <Col id="prcpnm"/>
  935. <Col id="execdept"/>
  936. <Col id="rcptflag"/>
  937. <Col id="execflag"/>
  938. <Col id="rem"/>
  939. </Row>
  940. </Rows>
  941. </Dataset>
  942. <Dataset id="ds_main_rghtlist_memolist" firefirstcount="0" firenextcount="0" useclientlayout="false" updatecontrol="true" enableevent="true" loadkeymode="keep" loadfiltermode="keep" reversesubsum="false">
  943. <ColumnInfo>
  944. <Column id="memocnts" type="STRING" size="256"/>
  945. <Column id="seqno" type="STRING" size="256"/>
  946. </ColumnInfo>
  947. <Rows>
  948. <Row/>
  949. </Rows>
  950. </Dataset>
  951. <Dataset id="ds_main" firefirstcount="0" firenextcount="0" useclientlayout="false" updatecontrol="true" enableevent="true" loadkeymode="keep" loadfiltermode="keep" reversesubsum="false" oncolumnchanged="ds_main_oncolumnchanged">
  952. <ColumnInfo>
  953. <Column id="allterm" type="STRING" size="256"/>
  954. <Column id="mpsacting" type="STRING" size="256"/>
  955. <Column id="tempuserinfo" type="STRING" size="256"/>
  956. <Column id="popupendflag" type="STRING" size="256"/>
  957. <Column id="addoprc" type="STRING" size="256"/>
  958. <Column id="cmpatprtcnt" type="STRING" size="256"/>
  959. </ColumnInfo>
  960. <Rows>
  961. <Row>
  962. <Col id="addoprc">1</Col>
  963. </Row>
  964. </Rows>
  965. </Dataset>
  966. <Dataset id="ds_main_userpopupinfo" firefirstcount="0" firenextcount="0" useclientlayout="false" updatecontrol="true" enableevent="true" loadkeymode="keep" loadfiltermode="keep" reversesubsum="false">
  967. <ColumnInfo>
  968. <Column id="param" type="STRING" size="256"/>
  969. <Column id="flag" type="STRING" size="256"/>
  970. <Column id="seachiem" type="STRING" size="256"/>
  971. </ColumnInfo>
  972. <Rows>
  973. <Row>
  974. <Col id="param">_OneS</Col>
  975. </Row>
  976. </Rows>
  977. </Dataset>
  978. <Dataset id="ds_main_patinfo_patinfolist" firefirstcount="0" firenextcount="0" useclientlayout="false" updatecontrol="true" enableevent="true" loadkeymode="keep" loadfiltermode="keep" reversesubsum="false"/>
  979. <Dataset id="ds_main_paminfo" firefirstcount="0" firenextcount="0" useclientlayout="false" updatecontrol="true" enableevent="true" loadkeymode="keep" loadfiltermode="keep" reversesubsum="false"/>
  980. <Dataset id="ds_main_cond_list" firefirstcount="0" firenextcount="0" useclientlayout="false" updatecontrol="true" enableevent="true" loadkeymode="keep" loadfiltermode="keep" reversesubsum="false">
  981. <ColumnInfo>
  982. <Column id="prcpdd" type="STRING" size="256"/>
  983. <Column id="prcpno" type="STRING" size="256"/>
  984. <Column id="prcphistno" type="STRING" size="256"/>
  985. <Column id="execprcpno" type="STRING" size="256"/>
  986. <Column id="instcd" type="STRING" size="256"/>
  987. <Column id="ioflag" type="STRING" size="256"/>
  988. </ColumnInfo>
  989. <Rows>
  990. <Row>
  991. <Col id="prcpdd"/>
  992. <Col id="prcpno"/>
  993. <Col id="prcphistno"/>
  994. <Col id="execprcpno"/>
  995. <Col id="instcd"/>
  996. <Col id="ioflag"/>
  997. </Row>
  998. </Rows>
  999. </Dataset>
  1000. <Dataset id="ds_send" firefirstcount="0" firenextcount="0" useclientlayout="false" updatecontrol="true" enableevent="true" loadkeymode="keep" loadfiltermode="keep" reversesubsum="false"/>
  1001. <Dataset id="ds_hidden_main" firefirstcount="0" firenextcount="0" useclientlayout="false" updatecontrol="true" enableevent="true" loadkeymode="keep" loadfiltermode="keep" reversesubsum="false"/>
  1002. <Dataset id="ds_init_menu_item" firefirstcount="0" firenextcount="0" useclientlayout="false" updatecontrol="true" enableevent="true" loadkeymode="keep" loadfiltermode="keep" reversesubsum="false">
  1003. <ColumnInfo>
  1004. <Column id="name" type="STRING" size="256"/>
  1005. <Column id="func" type="STRING" size="256"/>
  1006. <Column id="level" type="STRING" size="256"/>
  1007. </ColumnInfo>
  1008. <Rows>
  1009. <Row>
  1010. <Col id="name">환자진료정보조회</Col>
  1011. <Col id="func">fOpenPrcpSpec</Col>
  1012. <Col id="level">0</Col>
  1013. </Row>
  1014. <Row>
  1015. <Col id="name">환자카드출력</Col>
  1016. <Col id="func">fPreview</Col>
  1017. <Col id="level">0</Col>
  1018. </Row>
  1019. <Row>
  1020. <Col id="name">환자라벨출력</Col>
  1021. <Col id="func">fPrtLabel</Col>
  1022. <Col id="level">0</Col>
  1023. </Row>
  1024. </Rows>
  1025. </Dataset>
  1026. <Dataset id="ds_init" firefirstcount="0" firenextcount="0" useclientlayout="false" updatecontrol="true" enableevent="true" loadkeymode="keep" loadfiltermode="keep" reversesubsum="false">
  1027. <ColumnInfo>
  1028. <Column id="detlvw" type="STRING" size="256"/>
  1029. <Column id="detlvwa" type="STRING" size="256"/>
  1030. <Column id="detlvwb" type="STRING" size="256"/>
  1031. </ColumnInfo>
  1032. <Rows>
  1033. <Row>
  1034. <Col id="detlvw">p</Col>
  1035. <Col id="detlvwa">p</Col>
  1036. <Col id="detlvwb">p</Col>
  1037. </Row>
  1038. </Rows>
  1039. </Dataset>
  1040. <Dataset id="ds_init_partflaglist" firefirstcount="0" firenextcount="0" useclientlayout="false" updatecontrol="true" enableevent="true" loadkeymode="keep" loadfiltermode="keep" reversesubsum="false"/>
  1041. <Dataset id="ds_init_stats_statslists" firefirstcount="0" firenextcount="0" useclientlayout="false" updatecontrol="true" enableevent="true" loadkeymode="keep" loadfiltermode="keep" reversesubsum="false">
  1042. <ColumnInfo>
  1043. <Column id="allseqs" type="STRING" size="256"/>
  1044. <Column id="injs" type="STRING" size="256"/>
  1045. <Column id="prvns" type="STRING" size="256"/>
  1046. <Column id="ants" type="STRING" size="256"/>
  1047. <Column id="blods" type="STRING" size="256"/>
  1048. <Column id="antprcpends" type="STRING" size="256"/>
  1049. <Column id="antdelives" type="STRING" size="256"/>
  1050. </ColumnInfo>
  1051. <Rows>
  1052. <Row>
  1053. <Col id="allseqs"/>
  1054. <Col id="injs"/>
  1055. <Col id="prvns"/>
  1056. <Col id="ants"/>
  1057. <Col id="blods"/>
  1058. <Col id="antprcpends"/>
  1059. <Col id="antdelives"/>
  1060. </Row>
  1061. </Rows>
  1062. </Dataset>
  1063. <Dataset id="ds_init_acting_chking" firefirstcount="0" firenextcount="0" useclientlayout="false" updatecontrol="true" enableevent="true" loadkeymode="keep" loadfiltermode="keep" reversesubsum="false">
  1064. <ColumnInfo>
  1065. <Column id="actingchk" type="STRING" size="256"/>
  1066. </ColumnInfo>
  1067. <Rows>
  1068. <Row/>
  1069. </Rows>
  1070. </Dataset>
  1071. <Dataset id="ds_init_P0453info" firefirstcount="0" firenextcount="0" useclientlayout="false" updatecontrol="true" enableevent="true" loadkeymode="keep" loadfiltermode="keep" reversesubsum="false">
  1072. <ColumnInfo>
  1073. <Column id="cdid" type="STRING" size="256"/>
  1074. <Column id="cdnm" type="STRING" size="256"/>
  1075. </ColumnInfo>
  1076. </Dataset>
  1077. <Dataset id="ds_init_M0005info" firefirstcount="0" firenextcount="0" useclientlayout="false" updatecontrol="true" enableevent="true" loadkeymode="keep" loadfiltermode="keep" reversesubsum="false">
  1078. <ColumnInfo>
  1079. <Column id="cdnm" type="STRING" size="256"/>
  1080. <Column id="cdid" type="STRING" size="256"/>
  1081. </ColumnInfo>
  1082. </Dataset>
  1083. <Dataset id="ds_temp" firefirstcount="0" firenextcount="0" useclientlayout="false" updatecontrol="true" enableevent="true" loadkeymode="keep" loadfiltermode="keep" reversesubsum="false">
  1084. <ColumnInfo>
  1085. <Column id="deptcd" type="STRING" size="256"/>
  1086. <Column id="endyn" type="STRING" size="256"/>
  1087. </ColumnInfo>
  1088. <Rows>
  1089. <Row/>
  1090. </Rows>
  1091. </Dataset>
  1092. <Dataset id="ds_temp_prcpdetldata" firefirstcount="0" firenextcount="0" useclientlayout="false" updatecontrol="true" enableevent="true" loadkeymode="keep" loadfiltermode="keep" reversesubsum="false">
  1093. <ColumnInfo>
  1094. <Column id="pid" type="STRING" size="256"/>
  1095. <Column id="drugdd" type="STRING" size="256"/>
  1096. </ColumnInfo>
  1097. <Rows>
  1098. <Row/>
  1099. </Rows>
  1100. </Dataset>
  1101. <Dataset id="ds_target" firefirstcount="0" firenextcount="0" useclientlayout="false" updatecontrol="true" enableevent="true" loadkeymode="keep" loadfiltermode="keep" reversesubsum="false"/>
  1102. <Dataset id="ds_bmt_bmtinfo" firefirstcount="0" firenextcount="0" useclientlayout="false" updatecontrol="true" enableevent="true" loadkeymode="keep" loadfiltermode="keep" reversesubsum="false">
  1103. <ColumnInfo>
  1104. <Column id="pidflag" type="STRING" size="256"/>
  1105. <Column id="hngnm" type="STRING" size="256"/>
  1106. </ColumnInfo>
  1107. <Rows>
  1108. <Row/>
  1109. </Rows>
  1110. </Dataset>
  1111. <Dataset id="ds_nursdeptinfo_bmtinfo_nursdeptlist" firefirstcount="0" firenextcount="0" useclientlayout="false" updatecontrol="true" enableevent="true" loadkeymode="keep" loadfiltermode="keep" reversesubsum="false">
  1112. <ColumnInfo>
  1113. <Column id="deptcd" type="STRING" size="256"/>
  1114. <Column id="deptnm" type="STRING" size="256"/>
  1115. <Column id="deptflag" type="STRING" size="256"/>
  1116. </ColumnInfo>
  1117. <Rows>
  1118. <Row>
  1119. <Col id="deptcd"/>
  1120. <Col id="deptnm"/>
  1121. <Col id="deptflag"/>
  1122. </Row>
  1123. </Rows>
  1124. </Dataset>
  1125. <Dataset id="ds_nursdeptinfo_cncrinfo_nursdeptlist" firefirstcount="0" firenextcount="0" useclientlayout="false" updatecontrol="true" enableevent="true" loadkeymode="keep" loadfiltermode="keep" reversesubsum="false">
  1126. <ColumnInfo>
  1127. <Column id="deptcd" type="STRING" size="256"/>
  1128. <Column id="deptnm" type="STRING" size="256"/>
  1129. <Column id="deptflag" type="STRING" size="256"/>
  1130. </ColumnInfo>
  1131. <Rows>
  1132. <Row>
  1133. <Col id="deptcd"/>
  1134. <Col id="deptnm"/>
  1135. <Col id="deptflag"/>
  1136. </Row>
  1137. </Rows>
  1138. </Dataset>
  1139. <Dataset id="ds_stat" firefirstcount="0" firenextcount="0" useclientlayout="false" updatecontrol="true" enableevent="true" loadkeymode="keep" loadfiltermode="keep" reversesubsum="false">
  1140. <ColumnInfo>
  1141. <Column id="label" type="STRING" size="256"/>
  1142. <Column id="value" type="STRING" size="256"/>
  1143. </ColumnInfo>
  1144. <Rows>
  1145. <Row>
  1146. <Col id="label">조제보류</Col>
  1147. <Col id="value">1</Col>
  1148. </Row>
  1149. <Row>
  1150. <Col id="label">조제완료</Col>
  1151. <Col id="value">2</Col>
  1152. </Row>
  1153. <Row>
  1154. <Col id="label">준비</Col>
  1155. <Col id="value">3</Col>
  1156. </Row>
  1157. <Row>
  1158. <Col id="label">준비완료</Col>
  1159. <Col id="value">4</Col>
  1160. </Row>
  1161. <Row>
  1162. <Col id="label">출고</Col>
  1163. <Col id="value">5</Col>
  1164. </Row>
  1165. <Row>
  1166. <Col id="label">시행완료</Col>
  1167. <Col id="value">6</Col>
  1168. </Row>
  1169. <Row>
  1170. <Col id="label">반납의뢰</Col>
  1171. <Col id="value">7</Col>
  1172. </Row>
  1173. <Row>
  1174. <Col id="label">반납완료</Col>
  1175. <Col id="value">8</Col>
  1176. </Row>
  1177. <Row>
  1178. <Col id="label">폐기의뢰</Col>
  1179. <Col id="value">9</Col>
  1180. </Row>
  1181. <Row>
  1182. <Col id="label">폐기완료</Col>
  1183. <Col id="value">10</Col>
  1184. </Row>
  1185. <Row>
  1186. <Col id="label">접수</Col>
  1187. <Col id="value">11</Col>
  1188. </Row>
  1189. <Row>
  1190. <Col id="label">실시완료</Col>
  1191. <Col id="value">12</Col>
  1192. </Row>
  1193. <Row>
  1194. <Col id="label">전송완료</Col>
  1195. <Col id="value">13</Col>
  1196. </Row>
  1197. <Row>
  1198. <Col id="label">잔여폐기</Col>
  1199. <Col id="value">14</Col>
  1200. </Row>
  1201. </Rows>
  1202. </Dataset>
  1203. <Dataset id="ds_ast" firefirstcount="0" firenextcount="0" useclientlayout="false" updatecontrol="true" enableevent="true" loadkeymode="keep" loadfiltermode="keep" reversesubsum="false">
  1204. <ColumnInfo>
  1205. <Column id="label" type="STRING" size="256"/>
  1206. <Column id="value" type="STRING" size="256"/>
  1207. </ColumnInfo>
  1208. <Rows>
  1209. <Row>
  1210. <Col id="label">+</Col>
  1211. <Col id="value">+</Col>
  1212. </Row>
  1213. <Row>
  1214. <Col id="label">-</Col>
  1215. <Col id="value">-</Col>
  1216. </Row>
  1217. <Row/>
  1218. </Rows>
  1219. </Dataset>
  1220. <Dataset id="ds_dgno" firefirstcount="0" firenextcount="0" useclientlayout="false" updatecontrol="true" enableevent="true" loadkeymode="keep" loadfiltermode="keep" reversesubsum="false">
  1221. <ColumnInfo>
  1222. <Column id="label" type="STRING" size="256"/>
  1223. <Column id="value" type="STRING" size="256"/>
  1224. </ColumnInfo>
  1225. <Rows>
  1226. <Row>
  1227. <Col id="label">1차</Col>
  1228. <Col id="value">1</Col>
  1229. </Row>
  1230. <Row>
  1231. <Col id="label">2차</Col>
  1232. <Col id="value">2</Col>
  1233. </Row>
  1234. <Row>
  1235. <Col id="label">3차</Col>
  1236. <Col id="value">3</Col>
  1237. </Row>
  1238. <Row>
  1239. <Col id="label">4차</Col>
  1240. <Col id="value">4</Col>
  1241. </Row>
  1242. <Row>
  1243. <Col id="label">5차</Col>
  1244. <Col id="value">5</Col>
  1245. </Row>
  1246. </Rows>
  1247. </Dataset>
  1248. <Dataset id="ds_rsrvtm" firefirstcount="0" firenextcount="0" useclientlayout="false" updatecontrol="true" enableevent="true" loadkeymode="keep" loadfiltermode="keep" reversesubsum="false">
  1249. <ColumnInfo>
  1250. <Column id="label" type="STRING" size="256"/>
  1251. <Column id="value" type="STRING" size="256"/>
  1252. </ColumnInfo>
  1253. <Rows>
  1254. <Row>
  1255. <Col id="label">09:00</Col>
  1256. <Col id="value">090000</Col>
  1257. </Row>
  1258. <Row>
  1259. <Col id="label">10:00</Col>
  1260. <Col id="value">100000</Col>
  1261. </Row>
  1262. <Row>
  1263. <Col id="label">11:30</Col>
  1264. <Col id="value">113000</Col>
  1265. </Row>
  1266. <Row>
  1267. <Col id="label">14:00</Col>
  1268. <Col id="value">140000</Col>
  1269. </Row>
  1270. <Row>
  1271. <Col id="label">15:30</Col>
  1272. <Col id="value">153000</Col>
  1273. </Row>
  1274. <Row>
  1275. <Col id="label">-</Col>
  1276. <Col id="value">000000</Col>
  1277. </Row>
  1278. </Rows>
  1279. </Dataset>
  1280. <Dataset id="ds_temp_menudeptinfo" firefirstcount="0" firenextcount="0" useclientlayout="false" updatecontrol="true" enableevent="true" loadkeymode="keep" loadfiltermode="keep" reversesubsum="false"/>
  1281. <Dataset id="ds_menudeptinfo" firefirstcount="0" firenextcount="0" useclientlayout="false" updatecontrol="true" enableevent="true" loadkeymode="keep" loadfiltermode="keep" reversesubsum="false"/>
  1282. <Dataset id="ds_temp_prcpretn" firefirstcount="0" firenextcount="0" useclientlayout="false" updatecontrol="true" enableevent="true" loadkeymode="keep" loadfiltermode="keep" reversesubsum="false"/>
  1283. <Dataset id="ds_hidden" firefirstcount="0" firenextcount="0" useclientlayout="false" updatecontrol="true" enableevent="true" loadkeymode="keep" loadfiltermode="keep" reversesubsum="false"/>
  1284. <Dataset id="ds_insurinfo_insurlist" firefirstcount="0" firenextcount="0" useclientlayout="false" updatecontrol="true" enableevent="true" loadkeymode="keep" loadfiltermode="keep" reversesubsum="false"/>
  1285. <Dataset id="ds_hidden_main_biztrgtman_biztrgtmanlist" firefirstcount="0" firenextcount="0" useclientlayout="false" updatecontrol="true" enableevent="true" loadkeymode="keep" loadfiltermode="keep" reversesubsum="false"/>
  1286. <Dataset id="ds_hidden_main_biztrgtman_statslist" firefirstcount="0" firenextcount="0" useclientlayout="false" updatecontrol="true" enableevent="true" loadkeymode="keep" loadfiltermode="keep" reversesubsum="false"/>
  1287. <Dataset id="ds_hidden_main_biztrgtman_endyninfo" firefirstcount="0" firenextcount="0" useclientlayout="false" updatecontrol="true" enableevent="true" loadkeymode="keep" loadfiltermode="keep" reversesubsum="false"/>
  1288. <Dataset id="ds_hidden_main_leftref" firefirstcount="0" firenextcount="0" useclientlayout="false" updatecontrol="true" enableevent="true" loadkeymode="keep" loadfiltermode="keep" reversesubsum="false"/>
  1289. <Dataset id="ds_hidden_main_rghtref_rghtreflist" firefirstcount="0" firenextcount="0" useclientlayout="false" updatecontrol="true" enableevent="true" loadkeymode="keep" loadfiltermode="keep" reversesubsum="false"/>
  1290. <Dataset id="ds_hidden_main_prcpdetl_prcpdetllist" firefirstcount="0" firenextcount="0" useclientlayout="false" updatecontrol="true" enableevent="true" loadkeymode="keep" loadfiltermode="keep" reversesubsum="false"/>
  1291. <Dataset id="ds_hidden_main_rghtlist_ordsperlist" firefirstcount="0" firenextcount="0" useclientlayout="false" updatecontrol="true" enableevent="true" loadkeymode="keep" loadfiltermode="keep" reversesubsum="false"/>
  1292. <Dataset id="ds_hidden_main_rghtlist_injsperlist" firefirstcount="0" firenextcount="0" useclientlayout="false" updatecontrol="true" enableevent="true" loadkeymode="keep" loadfiltermode="keep" reversesubsum="false"/>
  1293. <Dataset id="ds_hidden_main_rghtlist_snwinfolist" firefirstcount="0" firenextcount="0" useclientlayout="false" updatecontrol="true" enableevent="true" loadkeymode="keep" loadfiltermode="keep" reversesubsum="false"/>
  1294. <Dataset id="ds_hidden_main_rghtlist_ordrsrvlist" firefirstcount="0" firenextcount="0" useclientlayout="false" updatecontrol="true" enableevent="true" loadkeymode="keep" loadfiltermode="keep" reversesubsum="false"/>
  1295. <Dataset id="ds_hidden_main_rghtlist_testrsrvlist" firefirstcount="0" firenextcount="0" useclientlayout="false" updatecontrol="true" enableevent="true" loadkeymode="keep" loadfiltermode="keep" reversesubsum="false"/>
  1296. <Dataset id="ds_hidden_main_rghtlist_memolist" firefirstcount="0" firenextcount="0" useclientlayout="false" updatecontrol="true" enableevent="true" loadkeymode="keep" loadfiltermode="keep" reversesubsum="false"/>
  1297. <Dataset id="ds_hidden_main_userpopupinfo" firefirstcount="0" firenextcount="0" useclientlayout="false" updatecontrol="true" enableevent="true" loadkeymode="keep" loadfiltermode="keep" reversesubsum="false"/>
  1298. <Dataset id="ds_hidden_main_patinfo_patinfolist" firefirstcount="0" firenextcount="0" useclientlayout="false" updatecontrol="true" enableevent="true" loadkeymode="keep" loadfiltermode="keep" reversesubsum="false"/>
  1299. <Dataset id="ds_hidden_main_paminfo" firefirstcount="0" firenextcount="0" useclientlayout="false" updatecontrol="true" enableevent="true" loadkeymode="keep" loadfiltermode="keep" reversesubsum="false"/>
  1300. <Dataset id="ds_hidden_main_cond_list" firefirstcount="0" firenextcount="0" useclientlayout="false" updatecontrol="true" enableevent="true" loadkeymode="keep" loadfiltermode="keep" reversesubsum="false"/>
  1301. <Dataset id="ds_temp_prtlabel" firefirstcount="0" firenextcount="0" useclientlayout="false" updatecontrol="true" enableevent="true" loadkeymode="keep" loadfiltermode="keep" reversesubsum="false"/>
  1302. <Dataset id="ds_barcdprntsetup" firefirstcount="0" firenextcount="0" useclientlayout="false" updatecontrol="true" enableevent="true" loadkeymode="keep" loadfiltermode="keep" reversesubsum="false"/>
  1303. <Dataset id="ds_savechangeinfo_rcptinfo" firefirstcount="0" firenextcount="0" useclientlayout="false" updatecontrol="true" enableevent="true" loadkeymode="keep" loadfiltermode="keep" reversesubsum="false"/>
  1304. <Dataset id="ds_send_anticncr" firefirstcount="0" firenextcount="0" useclientlayout="false" updatecontrol="true" enableevent="true" loadkeymode="keep" loadfiltermode="keep" reversesubsum="false"/>
  1305. <Dataset id="ds_send_report_for" firefirstcount="0" firenextcount="0" useclientlayout="false" updatecontrol="true" enableevent="true" loadkeymode="keep" loadfiltermode="keep" reversesubsum="false"/>
  1306. <Dataset id="ds_temp_prcpprt_prcpdetl" firefirstcount="0" firenextcount="0" useclientlayout="false" updatecontrol="true" enableevent="true" loadkeymode="keep" loadfiltermode="keep" reversesubsum="false"/>
  1307. <Dataset id="ds_send_report" firefirstcount="0" firenextcount="0" useclientlayout="false" updatecontrol="true" enableevent="true" loadkeymode="keep" loadfiltermode="keep" reversesubsum="false"/>
  1308. <Dataset id="ds_send_report_only" firefirstcount="0" firenextcount="0" useclientlayout="false" updatecontrol="true" enableevent="true" loadkeymode="keep" loadfiltermode="keep" reversesubsum="false"/>
  1309. <Dataset id="ds_hidden1_biztrgtman" firefirstcount="0" firenextcount="0" useclientlayout="false" updatecontrol="true" enableevent="true" loadkeymode="keep" loadfiltermode="keep" reversesubsum="false"/>
  1310. </Objects>
  1311. <Bind>
  1312. <BindItem id="item0" compid="group3.group5.opt_antdelive" propid="value" datasetid="ds_main_biztrgtman_statslist" columnid="antdelive"/>
  1313. <BindItem id="item1" compid="group3.group5.opt_antprcpend" propid="value" datasetid="ds_main_biztrgtman_statslist" columnid="antprcpend"/>
  1314. <BindItem id="item2" compid="group3.tar_memo" propid="value" datasetid="ds_main_rghtlist_memolist" columnid="memocnts"/>
  1315. <BindItem id="item3" compid="group3.chk_allterm" propid="value" datasetid="ds_main" columnid="allterm"/>
  1316. <BindItem id="item4" compid="group3.group2.ipt_dd" propid="value" datasetid="ds_main_leftref" columnid="bizdd"/>
  1317. <BindItem id="item5" compid="group3.group2.radio1" propid="value" datasetid="ds_main_leftref" columnid="execflag"/>
  1318. <BindItem id="item6" compid="group3.group2.opt_exec" propid="value" datasetid="ds_main_leftref" columnid="execnm"/>
  1319. <BindItem id="item7" compid="group3.group2.cmb_endcontrl" propid="value" datasetid="ds_temp" columnid="endyn"/>
  1320. <BindItem id="item8" compid="group3.group2.combo1" propid="value" datasetid="ds_main_leftref" columnid="workflag"/>
  1321. <BindItem id="item9" compid="group3.group1.ipt_pid" propid="value" datasetid="ds_main_rghtref_rghtreflist" columnid="pid"/>
  1322. <BindItem id="item10" compid="group3.group1.opt_hngnm" propid="value" datasetid="ds_main_rghtref_rghtreflist" columnid="hngnm"/>
  1323. <BindItem id="item11" compid="group3.group1.opt_gndrage" propid="value" datasetid="ds_main_rghtref_rghtreflist" columnid="gndrage"/>
  1324. <BindItem id="item12" compid="group3.group1.opt_rrgstno" propid="value" datasetid="ds_main_rghtref_rghtreflist" columnid="rrgstno"/>
  1325. <BindItem id="item13" compid="group3.opt_allseq" propid="value" datasetid="ds_main_biztrgtman_statslist" columnid="allseq"/>
  1326. <BindItem id="item14" compid="group3.opt_inj" propid="value" datasetid="ds_main_biztrgtman_statslist" columnid="inj"/>
  1327. <BindItem id="item15" compid="group3.opt_prvn" propid="value" datasetid="ds_main_biztrgtman_statslist" columnid="prvn"/>
  1328. <BindItem id="item16" compid="group3.opt_ant" propid="value" datasetid="ds_main_biztrgtman_statslist" columnid="ant"/>
  1329. <BindItem id="item17" compid="group3.opt_blod" propid="value" datasetid="ds_main_biztrgtman_statslist" columnid="blod"/>
  1330. <BindItem id="item18" compid="group3.group4.checkbox3" propid="value" datasetid="ds_main" columnid="mpsacting"/>
  1331. <BindItem id="item19" compid="group3.group4.checkbox1" propid="value" datasetid="ds_main" columnid="addoprc"/>
  1332. <BindItem id="item20" compid="group3.output1" propid="value" datasetid="ds_main_biztrgtman_endyninfo" columnid="endyn"/>
  1333. <BindItem id="item21" compid="group3.grp_prtlabel.ipt_cmpatprtcnt" propid="value" datasetid="ds_main" columnid="cmpatprtcnt"/>
  1334. </Bind>
  1335. <Script type="xscript4.0"><![CDATA[/***************************************************************************************
  1336. * System Name :
  1337. * Job Name :
  1338. * Creator :
  1339. * Make Date : 2015-11-13
  1340. * Description :
  1341. *---------------------------------------------------------------------------------------
  1342. * Modify Date Modifier Modify Description
  1343. *---------------------------------------------------------------------------------------
  1344. * 2015-11-13 Live Converter TF->XP
  1345. *
  1346. *---------------------------------------------------------------------------------------
  1347. ****************************************************************************************/
  1348. include "com_commonxp::comm_main.xjs";
  1349. include "emr_spclcarexp::MNS001.xjs";
  1350. include "emr_carecomxp::CareCom.xjs";
  1351. include "emr_injspecialroomxp::MNI001.xjs";
  1352. include "com_commodulexp::SSZFM00901.xjs";
  1353. include "lis_commonxp::LLZ001.xjs";
  1354. include "emr_injspecialroomxp::SMMNI02020.xjs";
  1355. var lv_screenx = 0;
  1356. var lv_screeny = 0;
  1357. var arErrorCode = new HashArray();
  1358. function cf_TRMNI02031(sSvcId, nErrorCode, sErrorMsg) {
  1359. arErrorCode.push(sSvcId, nErrorCode);
  1360. if(nErrorCode < 0) return;
  1361. utlf_addLog("***** cf_TRMNI02031 *****");
  1362. }
  1363. function cf_TRMNI02032(sSvcId, nErrorCode, sErrorMsg) {
  1364. arErrorCode.push(sSvcId, nErrorCode);
  1365. if(nErrorCode < 0) return;
  1366. utlf_addLog("***** cf_TRMNI02032 *****");
  1367. }
  1368. function cf_TRMNI02033(sSvcId, nErrorCode, sErrorMsg) {
  1369. arErrorCode.push(sSvcId, nErrorCode);
  1370. if(nErrorCode < 0) return;
  1371. utlf_addLog("***** cf_TRMNI02033 *****");
  1372. }
  1373. function cf_TRMNI02021(sSvcId, nErrorCode, sErrorMsg) {
  1374. arErrorCode.push(sSvcId, nErrorCode);
  1375. if(nErrorCode < 0) return;
  1376. utlf_addLog("***** cf_TRMNI02021 *****");
  1377. }
  1378. function cf_TRMNI02030(sSvcId, nErrorCode, sErrorMsg) {
  1379. arErrorCode.push(sSvcId, nErrorCode);
  1380. if(nErrorCode < 0) return;
  1381. utlf_addLog("***** cf_TRMNI02030 *****");
  1382. }
  1383. function cf_TRMNI02023(sSvcId, nErrorCode, sErrorMsg) {
  1384. arErrorCode.push(sSvcId, nErrorCode);
  1385. if(nErrorCode < 0) return;
  1386. utlf_addLog("***** cf_TRMNI02023 *****");
  1387. }
  1388. function cf_TRMNI02024(sSvcId, nErrorCode, sErrorMsg) {
  1389. arErrorCode.push(sSvcId, nErrorCode);
  1390. if(nErrorCode < 0) return;
  1391. utlf_addLog("***** cf_TRMNI02024 *****");
  1392. }
  1393. function cf_TXMNI02021(sSvcId, nErrorCode, sErrorMsg) {
  1394. arErrorCode.push(sSvcId, nErrorCode);
  1395. if(nErrorCode < 0) return;
  1396. utlf_addLog("***** cf_TXMNI02021 *****");
  1397. }
  1398. function cf_TRMNI02022(sSvcId, nErrorCode, sErrorMsg) {
  1399. arErrorCode.push(sSvcId, nErrorCode);
  1400. if(nErrorCode < 0) return;
  1401. utlf_addLog("***** cf_TRMNI02022 *****");
  1402. }
  1403. function cf_TRMNI02035(sSvcId, nErrorCode, sErrorMsg) {
  1404. arErrorCode.push(sSvcId, nErrorCode);
  1405. if(nErrorCode < 0) return;
  1406. utlf_addLog("***** cf_TRMNI02035 *****");
  1407. }
  1408. function cf_TRMNI02028(sSvcId, nErrorCode, sErrorMsg) {
  1409. arErrorCode.push(sSvcId, nErrorCode);
  1410. if(nErrorCode < 0) return;
  1411. utlf_addLog("***** cf_TRMNI02028 *****");
  1412. }
  1413. function cf_TXMNI02029(sSvcId, nErrorCode, sErrorMsg) {
  1414. arErrorCode.push(sSvcId, nErrorCode);
  1415. if(nErrorCode < 0) return;
  1416. utlf_addLog("***** cf_TXMNI02029 *****");
  1417. }
  1418. function cf_TXMNI02031(sSvcId, nErrorCode, sErrorMsg) {
  1419. arErrorCode.push(sSvcId, nErrorCode);
  1420. if(nErrorCode < 0) return;
  1421. utlf_addLog("***** cf_TXMNI02031 *****");
  1422. }
  1423. function cf_TXMNI02203(sSvcId, nErrorCode, sErrorMsg) {
  1424. arErrorCode.push(sSvcId, nErrorCode);
  1425. if(nErrorCode < 0) return;
  1426. utlf_addLog("***** cf_TXMNI02203 *****");
  1427. }
  1428. function cf_TXMNI02030(sSvcId, nErrorCode, sErrorMsg) {
  1429. arErrorCode.push(sSvcId, nErrorCode);
  1430. if(nErrorCode < 0) return;
  1431. utlf_addLog("***** cf_TXMNI02030 *****");
  1432. }
  1433. function cf_TXMNI02025(sSvcId, nErrorCode, sErrorMsg) {
  1434. arErrorCode.push(sSvcId, nErrorCode);
  1435. if(nErrorCode < 0) return;
  1436. utlf_addLog("***** cf_TXMNI02025 *****");
  1437. }
  1438. function SMMNI02020_oninit(obj:Form, e:InitEventInfo)
  1439. {
  1440. frmf_initForm(obj);
  1441. }
  1442. function SMMNI02020_onload(obj:Form, e:LoadEventInfo)
  1443. {
  1444. grdf_initGrid(group3.grd_prcpdetl);
  1445. grdf_initGrid(group3.switch1.case1.grd_ordrsrv);
  1446. grdf_initGrid(group3.switch1.case2.grd_testrsrv);
  1447. grdf_initGrid(group3.grd_ordsper);
  1448. grdf_initGrid(group3.grd_injsper);
  1449. grdf_initGrid(group3.grd_biztrgtman);
  1450. fInit();//20090217 dhkim 초기화 추가
  1451. }
  1452. function group3_group5_opt_antdelive_oneditclick(obj:Edit, e:EditClickEventInfo)
  1453. {
  1454. fStats("B5");
  1455. }
  1456. function group3_group5_opt_antprcpend_oneditclick(obj:Edit, e:EditClickEventInfo)
  1457. {
  1458. fStats("A71");
  1459. }
  1460. function group3_grd_snwinfo_onmousemove(obj:Grid, e:GridMouseEventInfo)
  1461. {
  1462. if(e.row >-1 && e.col > -1){
  1463. if(!utlf_isNull(group3.grd_snwinfo.getCellValue(e.row,e.col))){
  1464. group3.grd_snwinfo.tooltiptext = group3.grd_snwinfo.getCellValue(e.row,e.col);
  1465. }else{
  1466. group3.grd_snwinfo.tooltiptext ="";
  1467. }
  1468. }
  1469. }
  1470. function group3_btn_detlvw_onclick(obj:Button, e:ClickEventInfo)
  1471. {
  1472. fDetlVw("n");
  1473. }
  1474. function group3_switch1_case1_grd_ordrsrv_onmousemove(obj:Grid, e:GridMouseEventInfo)
  1475. {
  1476. if(e.row >-1 && e.col > -1){
  1477. if(!utlf_isNull(group3.switch1.case1.grd_ordrsrv.getCellValue(e.row,e.col))){
  1478. group3.switch1.case1.grd_ordrsrv.tooltiptext = group3.switch1.case1.grd_ordrsrv.getCellValue(e.row,e.col);
  1479. }else{
  1480. group3.switch1.case1.grd_ordrsrv.tooltiptext ="";
  1481. }
  1482. }
  1483. }
  1484. function group3_switch1_case2_grd_testrsrv_onmousemove(obj:Grid, e:GridMouseEventInfo)
  1485. {
  1486. if(e.row >-1 && e.col > -1){
  1487. if(!utlf_isNull(group3.switch1.case2.grd_testrsrv.getCellValue(e.row,e.col))){
  1488. group3.switch1.case2.grd_testrsrv.tooltiptext = group3.switch1.case2.grd_testrsrv.getCellValue(e.row,e.col);
  1489. }else{
  1490. group3.switch1.case2.grd_testrsrv.tooltiptext ="";
  1491. }
  1492. }
  1493. }
  1494. function group3_grd_ordsper_onmousemove(obj:Grid, e:GridMouseEventInfo)
  1495. {
  1496. if(e.row >-1 && e.col > -1){
  1497. if(!utlf_isNull(group3.grd_ordsper.getCellValue(e.row,e.col))){
  1498. group3.grd_ordsper.tooltiptext = group3.grd_ordsper.getCellValue(e.row,e.col);
  1499. }else{
  1500. group3.grd_ordsper.tooltiptext ="";
  1501. }
  1502. }
  1503. }
  1504. function group3_chk_allterm_onclick(obj:CheckBox, e:ClickEventInfo)
  1505. {
  1506. //fRghtDataList();
  1507. //hidden 푸는곳 없음..(주석처리)
  1508. }
  1509. function group3_group2_ipt_dd_onchanged(obj:Calendar, e:ChangeEventInfo)
  1510. {
  1511. fbiztrgtman("biztrgt");
  1512. }
  1513. function group3_group2_button1_onclick(obj:Button, e:ClickEventInfo)
  1514. {
  1515. fbiztrgtman("biztrgt");
  1516. }
  1517. function group3_group2_radio1_onitemclick(obj:Radio, e:RadioMouseEventInfo)
  1518. {
  1519. fbiztrgtman("biztrgt");
  1520. }
  1521. function group3_group2_combo1_onitemchanged(obj:Combo, e:ItemChangeEventInfo)
  1522. {
  1523. fbiztrgtman("biztrgt");
  1524. }
  1525. function group3_group1_button3_onclick(obj:Button, e:ClickEventInfo)
  1526. {
  1527. fRghtDataList();
  1528. }
  1529. function group3_group1_button4_onclick(obj:Button, e:ClickEventInfo)
  1530. {
  1531. fMemoInsert();
  1532. }
  1533. function group3_group1_button61_onclick(obj:Button, e:ClickEventInfo)
  1534. {
  1535. fPatSrch();
  1536. }
  1537. function group3_group1_ipt_pid_onkeydown(obj:Edit, e:KeyEventInfo)
  1538. {
  1539. if( e.keycode == 13 ){
  1540. obj.updateToDataset();
  1541. //20090629 dhkim 7/1고시변경으로 인한 리턴값 추가
  1542. var rtn = fpidref("new");
  1543. if(!rtn){
  1544. return false;
  1545. }
  1546. }
  1547. }
  1548. function group3_caption16_onclick(obj:Static, e:ClickEventInfo)
  1549. {
  1550. //20081121 dhkim 테스트중.
  1551. var userid = sysf_getUserId();
  1552. if(userid == 'DEV512' || userid == 'dev512' || userid == 'enr' || userid == 'ENR' || userid == '89031245' || userid == '92040240'){
  1553. frmf_open("SMMNI02021","SMMNI02021","","",1,15,128,"","","","","","M");
  1554. }
  1555. }
  1556. function group3_opt_allseq_oneditclick(obj:Edit, e:EditClickEventInfo)
  1557. {
  1558. fStats("allseq");
  1559. }
  1560. function group3_opt_inj_oneditclick(obj:Edit, e:EditClickEventInfo)
  1561. {
  1562. fStats("A6");
  1563. }
  1564. function group3_opt_prvn_oneditclick(obj:Edit, e:EditClickEventInfo)
  1565. {
  1566. fStats("A8");
  1567. }
  1568. function group3_opt_ant_oneditclick(obj:Edit, e:EditClickEventInfo)
  1569. {
  1570. fStats("A7");
  1571. }
  1572. function group3_opt_blod_oneditclick(obj:Edit, e:EditClickEventInfo)
  1573. {
  1574. fStats("B4");
  1575. }
  1576. function group3_grd_prcpdetl_onmousemove(obj:Grid, e:GridMouseEventInfo)
  1577. {
  1578. if(e.row >-1 && e.col > -1){
  1579. if(!utlf_isNull(group3.grd_prcpdetl.getCellValue(e.row,e.col))){
  1580. if(e.row >=0){
  1581. if(e.col ==9){
  1582. group3.grd_prcpdetl.tooltiptext = group3.grd_prcpdetl.getCellValue(e.row,group3.grd_prcpdetl.getBindCellIndex("body","prcpdelivefact"));
  1583. }else{
  1584. group3.grd_prcpdetl.tooltiptext = group3.grd_prcpdetl.getCellValue(e.row,e.col);
  1585. }
  1586. }
  1587. }else{
  1588. group3.grd_prcpdetl.tooltiptext ="";
  1589. }
  1590. }
  1591. }
  1592. function ds_main_prcpdetl_prcpdetllist_oncolumnchanged(obj:Dataset, e:DSColChangeEventInfo)
  1593. {
  1594. var iCol = group3.grd_prcpdetl.getBindCellIndex("body",e.columnid);
  1595. var iRow = ds_main_prcpdetl_prcpdetllist.rowposition;
  1596. if(iCol == 15){
  1597. rsrvdd();//예약일자 이전 날짜 체크
  1598. //20090723 dhkim 진단체크(hit 손주연대리님 요청)
  1599. //js단 수진의 진단 존재여부 check.
  1600. //진단이 있는 수진일 경우 해당 수진내역 return . 그렇지 않을 경우 POPUP 호출 => 수진선택 유도
  1601. fPopDiag(iRow);
  1602. }else if(iCol == 8 || iCol == 11 || iCol == 12 || iCol == 13 || iCol == 14 || iCol == 16 ){
  1603. frsrvtm(iCol+"");//부위, 차수, LOT, MIX, AST 예약시간동시적용
  1604. }else if(iCol == 1){
  1605. chkflag();//mix번호에 따른 동시 선택
  1606. }else{
  1607. return;
  1608. }
  1609. }
  1610. function group3_button2_onclick(obj:Button, e:ClickEventInfo)
  1611. {
  1612. fDetlVwa("n");
  1613. }
  1614. function group3_group4_button15_onclick(obj:Button, e:ClickEventInfo)
  1615. {
  1616. fopr();
  1617. }
  1618. function group3_group4_button5_onclick(obj:Button, e:ClickEventInfo)
  1619. {
  1620. frmf_modal("SMLLC00300","SMLLC00300","", 2, 50, 50, "", "", "", "", "", "", "M");
  1621. }
  1622. function group3_group4_checkbox3_onclick(obj:CheckBox, e:ClickEventInfo)
  1623. {
  1624. fMpsActing();
  1625. }
  1626. function group3_group4_button7_onclick(obj:Button, e:ClickEventInfo)
  1627. {
  1628. //20081217 dhkim
  1629. //처방전출력 액팅 호출하는부분 새로 변경후 테스트 중..
  1630. //fRexpert();//old버젼 주석처리
  1631. fPrcpRexpert();//new 버젼
  1632. }
  1633. function group3_group4_button8_onclick(obj:Button, e:ClickEventInfo)
  1634. {
  1635. var param= "";
  1636. var chkCnt = 0;
  1637. var acptyn = "";
  1638. for(var i = 0; i < ds_main_prcpdetl_prcpdetllist.rowcount; i++) {
  1639. acptyn = ds_main_prcpdetl_prcpdetllist.getColumn(i, "flag"); //채크여부 파악
  1640. if(acptyn == "1") {
  1641. chkCnt++;
  1642. }
  1643. }
  1644. if(chkCnt == 0) { //처방 선택 안됐을때 넘기는값
  1645. sysf_messageBox("처방이 선택되지", "E007");
  1646. return;
  1647. }
  1648. if(chkCnt > 0) {
  1649. //기본 param설정
  1650. param = fBaseMakeParameter();
  1651. frmf_setParameter("SMMNR03400_ParamBase", param);
  1652. //선택된 처방 값넘기기
  1653. param = fMakeParameter();
  1654. frmf_setParameter("SMMNR03400_ParamPrcp", param);
  1655. }
  1656. frmf_modal("SMMNR03400","SMMNR03400","", "", "", "", "", "", "", "", "", "", "M"); //팝업 호출
  1657. }
  1658. function group3_group4_button9_onclick(obj:Button, e:ClickEventInfo)
  1659. {
  1660. //20081217 dhkim
  1661. //변경내용저장로직 새로 변경후 테스트 중..
  1662. //fChangeSave();//old버젼 주석처리
  1663. fPrcpChangeSave();//new 버젼
  1664. }
  1665. function group3_group4_button10_onclick(obj:Button, e:ClickEventInfo)
  1666. {
  1667. frmf_modal("SMMNW10900","SMMNW10900","", "", "", "", "", "", "", "", "", "", "M");
  1668. }
  1669. function group3_group4_button11_onclick(obj:Button, e:ClickEventInfo)
  1670. {
  1671. //20081217 dhkim
  1672. //액팅로직 새로 변경후 테스트 중..
  1673. //fActing("Y");//old버젼 주석처리
  1674. fPrcpActing();//new 버젼
  1675. }
  1676. function group3_group4_button12_onclick(obj:Button, e:ClickEventInfo)
  1677. {
  1678. //20081217 dhkim
  1679. //항암전송시 변경내용저장 호출부분 새로 변경후 테스트 중..
  1680. //fAnticncr();//old버젼
  1681. fPrcpAntiCncr();//new 버젼
  1682. }
  1683. function group3_group4_button13_onclick(obj:Button, e:ClickEventInfo)
  1684. {
  1685. //20081217 dhkim
  1686. //액팅취소로직 새로 변경후 테스트 중..
  1687. //fActingCancel();//old버젼 주석처리
  1688. fPrcpActingCancel();//new 버젼
  1689. }
  1690. function group3_group4_button16_onclick(obj:Button, e:ClickEventInfo)
  1691. {
  1692. fDetlVwb("n");
  1693. }
  1694. function group3_group4_button17_onclick(obj:Button, e:ClickEventInfo)
  1695. {
  1696. //getUserInfo("dutplcecd")
  1697. //model.setValue("/root/temp/deptcd", model.getValue("/root/main/leftref/exec"));
  1698. //20090423
  1699. dsf_makeValue(ds_temp,"deptcd" , "string", ds_main_leftref.getColumn(0, "exec"));
  1700. var objArg = new Object();
  1701. objArg.arg_ds_temp = ds_temp;
  1702. frmf_open("SMADT10800", "SMADT10800", objArg, null, 0,20,150, null, null, null, null, null, "M");
  1703. }
  1704. function group3_group4_checkbox1_onclick(obj:CheckBox, e:ClickEventInfo)
  1705. {
  1706. fSearchPrcpDetail();
  1707. }
  1708. function group3_group4_btn_nrsdc_onclick(obj:Button, e:ClickEventInfo)
  1709. {
  1710. alert('개발중...');
  1711. //fReqPrcpDC();
  1712. }
  1713. function group3_grd_injsper_onmousemove(obj:Grid, e:GridMouseEventInfo)
  1714. {
  1715. if(e.row >-1 && e.col > -1){
  1716. if(!utlf_isNull(group3.grd_injsper.getCellValue(e.row,e.col))){
  1717. group3.grd_injsper.tooltiptext = group3.grd_injsper.getCellValue(e.row,e.col);
  1718. }else{
  1719. group3.grd_injsper.tooltiptext = "";
  1720. }
  1721. }
  1722. }
  1723. function group3_grd_injsper_oncelldblclick(obj:Grid, e:GridClickEventInfo)
  1724. {
  1725. if( e.row > -1 && e.col > -1 ){
  1726. //20090401 dhkim 상단정보설정
  1727. fSetTopInfo();
  1728. finjsper();
  1729. }
  1730. }
  1731. function group3_grd_biztrgtman_onmousemove(obj:Grid, e:GridMouseEventInfo)
  1732. {
  1733. if(e.row >-1 && e.col > -1){
  1734. if(!utlf_isNull(group3.grd_biztrgtman.getCellValue(e.row,e.col))){
  1735. group3.grd_biztrgtman.tooltiptext = group3.grd_biztrgtman.getCellValue(e.row,e.col);
  1736. }else{
  1737. group3.grd_biztrgtman.tooltiptext ="";
  1738. }
  1739. }
  1740. }
  1741. function group3_button18_onclick(obj:Button, e:ClickEventInfo)
  1742. {
  1743. //20090604 dhkim 변경요청사항
  1744. var pid = ds_main_rghtref_rghtreflist.getColumn(0, "pid");
  1745. var patnm = ds_main_rghtref_rghtreflist.getColumn(0, "hngnm");
  1746. var age = ds_main_rghtref_rghtreflist.getColumn(0, "gndrage");
  1747. var depthngnm = ds_main_rghtlist_ordsperlist.getColumn(ds_main_rghtlist_ordsperlist.rowposition, "depthngnm");
  1748. var orddrnm = ds_main_rghtlist_ordsperlist.getColumn(ds_main_rghtlist_ordsperlist.rowposition, "usernm");
  1749. if( utlf_isNull(pid) ){
  1750. sysf_messageBox('등록번호를 입력하세요.', 'E999');
  1751. return false;
  1752. }
  1753. fPreview('btn', pid, patnm, age, depthngnm, orddrnm);
  1754. }
  1755. function group3_button19_onclick(obj:Button, e:ClickEventInfo)
  1756. {
  1757. fPrtLabel(true);
  1758. }
  1759. function group3_grp_prtlabel_btn_prtlabel_onclick(obj:Button, e:ClickEventInfo)
  1760. {
  1761. //2010.02.25 dhkim - 환자라벨출력버튼클릭
  1762. fPrintLabel_SMMNI02020();
  1763. }
  1764. function group3_grp_prtlabel_button20_onclick(obj:Button, e:ClickEventInfo)
  1765. {
  1766. //2010.02.25 dhkim 추가
  1767. fCancelPrint_SMMNI02020();
  1768. }
  1769. function grp_btn_button21_onclick(obj:Button, e:ClickEventInfo)
  1770. {
  1771. // 바코드 프린터 설정_20100225 dhkim
  1772. var scrnid = "SMMNI02020";
  1773. ds_barcdprntsetup.clearData();
  1774. fGetBarCodeInfo(scrnid); // CareCom.js
  1775. var objArg = new Object();
  1776. objArg.arg_sSetupInfo = ds_barcdprntsetup.getColumn(0,"prntsetupinfo");
  1777. frmf_open("SPLLC90100", "SPLLC90100", objArg, null, "","","", null, null, null, null, null, "M");
  1778. }
  1779. ]]></Script>
  1780. </Form>
  1781. </FDL>