SMPIF00100_진료과개인처방별수정전후집계표조회.xfdl 133 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331
  1. <?xml version="1.0" encoding="utf-8"?>
  2. <FDL version="1.5">
  3. <TypeDefinition url="..\..\..\default_typedef.xml"/>
  4. <Form id="SMPIF00100" position="absolute 0 0 1202 764" titletext="진료과/개인/처방별 수정전후 집계표 조회" oninit="SMPIF00100_oninit" onload="SMPIF00100_onload">
  5. <Layouts>
  6. <Layout>
  7. <Div position="absolute 0 23 1202 739" id="grp_biz" scrollbars="autoboth" anchor="all">
  8. <Layouts>
  9. <Layout width="1202" height="728">
  10. <Div position="absolute 0 0 1202 49" align="align:center top;" id="grp_sea" class="div_SA" anchor="left top right">
  11. <Layouts>
  12. <Layout>
  13. <Static text="내원유형 :" position="absolute 496 17 582 34" id="caption2" class="search_name" anchor="left top"/>
  14. <Button position="absolute 1134 12 1190 34" id="button1" class="btn1" taborder="8" text="조회" anchor="top right" onclick="grp_biz_grp_sea_button1_onclick"/>
  15. <Shape position="absolute 1125 12 1131 34" linetype="vertical" id="line13" class="line_4" anchor="top right"/>
  16. <Static text="미수년월 :" position="absolute 179 17 265 34" id="caption3" class="search_name" anchor="left top"/>
  17. <Combo position="absolute 571 15 626 34" id="cmb_ioflag" class="combo_search" taborder="1" codecolumn="codecolumn" datacolumn="datacolumn" anchor="left top">
  18. <Dataset id="innerdataset">
  19. <ColumnInfo>
  20. <Column id="codecolumn"/>
  21. <Column id="datacolumn"/>
  22. </ColumnInfo>
  23. <Rows>
  24. <Row>
  25. <Col id="codecolumn">O</Col>
  26. <Col id="datacolumn">외래</Col>
  27. </Row>
  28. <Row>
  29. <Col id="codecolumn">I</Col>
  30. <Col id="datacolumn">입원</Col>
  31. </Row>
  32. </Rows>
  33. </Dataset>
  34. </Combo>
  35. <Static text="보험유형 :" position="absolute 640 17 731 34" id="caption4" class="search_name" anchor="left top"/>
  36. <Combo position="absolute 1015 4 1069 23" id="cmb_clamdg" class="combo_search" innerdataset="@ds_init_clamdglist" datacolumn="cdid" codecolumn="cdnm" anchor="left top"/>
  37. <Static text="청구분야 :" position="absolute 344 17 435 34" id="caption12" class="search_name" anchor="left top"/>
  38. <Combo position="absolute 425 15 480 34" id="cmb_ordfildcd" class="combo_search" taborder="6" innerdataset="@ds_init_P0291list" datacolumn="cdnm" codecolumn="cdid" anchor="left top"/>
  39. <Static text="청구구분 :" position="absolute 9 17 95 34" id="caption13" class="search_name" anchor="left top"/>
  40. <Combo position="absolute 88 15 163 34" id="cmb_clamflag" class="combo_search" codecolumn="codecolumn" datacolumn="datacolumn" anchor="left top">
  41. <Dataset id="innerdataset">
  42. <ColumnInfo>
  43. <Column id="codecolumn"/>
  44. <Column id="datacolumn"/>
  45. </ColumnInfo>
  46. <Rows>
  47. <Row>
  48. <Col id="codecolumn">0</Col>
  49. <Col id="datacolumn">원청구</Col>
  50. </Row>
  51. <Row>
  52. <Col id="codecolumn">1</Col>
  53. <Col id="datacolumn">보완청구</Col>
  54. </Row>
  55. <Row>
  56. <Col id="codecolumn">2</Col>
  57. <Col id="datacolumn">추가청구</Col>
  58. </Row>
  59. <Row>
  60. <Col id="codecolumn">4</Col>
  61. <Col id="datacolumn">누락청구</Col>
  62. </Row>
  63. <Row>
  64. <Col id="codecolumn">5</Col>
  65. <Col id="datacolumn">보완차액</Col>
  66. </Row>
  67. </Rows>
  68. </Dataset>
  69. </Combo>
  70. <Radio position="absolute 716 15 935 32" id="chk_insukindcd" columncount="5" rowcount="1" codecolumn="codecolumn" datacolumn="datacolumn" anchor="left top">
  71. <Dataset id="innerdataset">
  72. <ColumnInfo>
  73. <Column id="codecolumn"/>
  74. <Column id="datacolumn"/>
  75. </ColumnInfo>
  76. <Rows>
  77. <Row>
  78. <Col id="codecolumn">00</Col>
  79. <Col id="datacolumn">전체</Col>
  80. </Row>
  81. <Row>
  82. <Col id="codecolumn">11</Col>
  83. <Col id="datacolumn">보험</Col>
  84. </Row>
  85. <Row>
  86. <Col id="codecolumn">21</Col>
  87. <Col id="datacolumn">보호</Col>
  88. </Row>
  89. <Row>
  90. <Col id="codecolumn">31</Col>
  91. <Col id="datacolumn">자보</Col>
  92. </Row>
  93. <Row>
  94. <Col id="codecolumn">41</Col>
  95. <Col id="datacolumn">산재</Col>
  96. </Row>
  97. </Rows>
  98. </Dataset>
  99. </Radio>
  100. <Radio position="absolute 942 8 1012 43" id="radio1" columncount="1" rowcount="2" codecolumn="codecolumn" datacolumn="datacolumn" anchor="left top" onitemchanged="grp_biz_grp_sea_radio1_onitemchanged">
  101. <Dataset id="innerdataset">
  102. <ColumnInfo>
  103. <Column id="codecolumn"/>
  104. <Column id="datacolumn"/>
  105. </ColumnInfo>
  106. <Rows>
  107. <Row>
  108. <Col id="codecolumn">A</Col>
  109. <Col id="datacolumn">청구차수</Col>
  110. </Row>
  111. <Row>
  112. <Col id="codecolumn">B</Col>
  113. <Col id="datacolumn">차수선택</Col>
  114. </Row>
  115. </Rows>
  116. </Dataset>
  117. </Radio>
  118. <Edit position="absolute 1015 25 1035 44" id="input1" anchor="left top"/>
  119. <Edit position="absolute 1037 25 1057 44" id="input2" anchor="left top"/>
  120. <Edit position="absolute 1059 25 1079 44" id="input3" anchor="left top"/>
  121. <Edit position="absolute 1081 25 1101 44" id="input4" anchor="left top"/>
  122. <Edit position="absolute 1103 25 1123 44" id="input5" anchor="left top"/>
  123. <Button position="absolute 1070 5 1100 24" id="button14" class="icon_bottom" text="" anchor="left top" onclick="grp_biz_grp_sea_button14_onclick"/>
  124. <cp_monthCal id="ipt_fromdd" titletext="monthCalendar" taborder="9" text="cp_monthCal00" scrollbars="none" position="absolute 259 14 334 34" anchor="left top"/>
  125. </Layout>
  126. </Layouts>
  127. </Div>
  128. <Tab position="absolute 0 54 1202 716" id="switch1" class="sw_box" anchor="all" onchanged="grp_biz_switch1_onchanged">
  129. <Tabpages>
  130. <Tabpage text="과별/분야별" id="case1">
  131. <Layouts>
  132. <Layout>
  133. <Grid position="absolute 0 0 1202 635" id="grd_deptfild" binddataset="ds_main_list1_griddeptfild" oncelldblclick="grp_biz_switch1_case1_grd_deptfild_oncelldblclick" oncellclick="grp_biz_switch1_case1_grd_deptfild_oncellclick" onkeydown="grp_biz_switch1_case1_grd_deptfild_onkeydown" cellsizingtype="col" cellmovingtype="none" anchor="all">
  134. <Formats>
  135. <Format id="default">
  136. <Columns>
  137. <Column size="0" band="left"/>
  138. <Column size="0" band="left"/>
  139. <Column size="27" band="left"/>
  140. <Column size="155" band="left"/>
  141. <Column size="0"/>
  142. <Column size="55"/>
  143. <Column size="110"/>
  144. <Column size="127"/>
  145. <Column size="111"/>
  146. <Column size="119"/>
  147. <Column size="116"/>
  148. <Column size="95"/>
  149. <Column size="91"/>
  150. <Column size="93"/>
  151. <Column size="100"/>
  152. <Column size="96"/>
  153. <Column size="100"/>
  154. <Column size="100"/>
  155. <Column size="87"/>
  156. <Column size="103"/>
  157. <Column size="93"/>
  158. <Column size="100"/>
  159. <Column size="100"/>
  160. <Column size="55"/>
  161. <Column size="110"/>
  162. <Column size="113"/>
  163. <Column size="99"/>
  164. <Column size="95"/>
  165. <Column size="97"/>
  166. <Column size="100"/>
  167. <Column size="79"/>
  168. <Column size="100"/>
  169. <Column size="100"/>
  170. <Column size="89"/>
  171. <Column size="100"/>
  172. <Column size="55"/>
  173. <Column size="90"/>
  174. <Column size="55"/>
  175. <Column size="90"/>
  176. <Column size="87"/>
  177. <Column size="95"/>
  178. <Column size="83"/>
  179. <Column size="56"/>
  180. <Column size="90"/>
  181. <Column size="90"/>
  182. <Column size="100"/>
  183. <Column size="55"/>
  184. <Column size="110"/>
  185. <Column size="91"/>
  186. <Column size="93"/>
  187. <Column size="96"/>
  188. <Column size="92"/>
  189. <Column size="100"/>
  190. <Column size="93"/>
  191. <Column size="100"/>
  192. <Column size="100"/>
  193. <Column size="100"/>
  194. <Column size="100"/>
  195. </Columns>
  196. <Rows>
  197. <Row size="24" band="head"/>
  198. <Row size="24" band="head"/>
  199. <Row size="24"/>
  200. </Rows>
  201. <Band id="head">
  202. <Cell text="진료과코드"/>
  203. <Cell col="1" text="진료과명"/>
  204. <Cell col="2" rowspan="2" taborder="undefined"/>
  205. <Cell col="3" rowspan="2" text="진료과" taborder="undefined"/>
  206. <Cell col="4" text="청구분야"/>
  207. <Cell col="5" colspan="15" text="재원금액" taborder="undefined"/>
  208. <Cell col="20" rowspan="2" text="인수증액" taborder="undefined"/>
  209. <Cell col="21" rowspan="2" text="인수감액" taborder="undefined"/>
  210. <Cell col="22" rowspan="2" text="인수차액" taborder="undefined"/>
  211. <Cell col="23" colspan="12" text="심사 전(인수금액:급여항목에대한금액)" taborder="undefined"/>
  212. <Cell col="35" rowspan="2" text="보류건수" taborder="undefined"/>
  213. <Cell col="36" rowspan="2" text="보류금액" taborder="undefined"/>
  214. <Cell col="37" rowspan="2" text="삭제건수" taborder="undefined"/>
  215. <Cell col="38" rowspan="2" text="삭제금액" taborder="undefined"/>
  216. <Cell col="39" rowspan="2" text="보류+삭제건수" taborder="undefined"/>
  217. <Cell col="40" rowspan="2" text="보류+삭제금액" taborder="undefined"/>
  218. <Cell col="41" rowspan="2" text="자격수정건수" taborder="undefined"/>
  219. <Cell col="42" rowspan="2" text="추가건수" taborder="undefined"/>
  220. <Cell col="43" rowspan="2" text="청구증액" taborder="undefined"/>
  221. <Cell col="44" rowspan="2" text="청구감액" taborder="undefined"/>
  222. <Cell col="45" rowspan="2" text="청구차액" taborder="undefined"/>
  223. <Cell col="46" colspan="12" text="심사 후(청구금액)" taborder="undefined"/>
  224. <Cell row="1" text="진료과코드"/>
  225. <Cell row="1" col="1" text="진료과명"/>
  226. <Cell row="1" col="4" text="청구분야"/>
  227. <Cell row="1" col="5" text="(재)건수"/>
  228. <Cell row="1" col="6" text="(재)총진료비"/>
  229. <Cell row="1" col="7" text="(재)비급여총진료비"/>
  230. <Cell row="1" col="8" text="(재)본인부담총액"/>
  231. <Cell row="1" col="9" text="(재)급여총진료비"/>
  232. <Cell row="1" col="10" text="(재)급여본인부담금"/>
  233. <Cell row="1" col="11" text="(재)급여청구액"/>
  234. <Cell row="1" col="12" text="(재)상한액"/>
  235. <Cell row="1" col="13" text="(재)희귀지원금"/>
  236. <Cell row="1" col="14" text="(재)결핵지원금"/>
  237. <Cell row="1" col="15" text="(재)장애인"/>
  238. <Cell row="1" col="16" text="(재)긴급지원금"/>
  239. <Cell row="1" col="17" text="(재)지원금"/>
  240. <Cell row="1" col="18" text="(재)대불금"/>
  241. <Cell row="1" col="19" text="(재)약제상한차액"/>
  242. <Cell row="1" col="23" text="(전)건수"/>
  243. <Cell row="1" col="24" text="(전)총진료비"/>
  244. <Cell row="1" col="25" text="(전)본인부담"/>
  245. <Cell row="1" col="26" text="(전)청구액"/>
  246. <Cell row="1" col="27" text="(전)상한액"/>
  247. <Cell row="1" col="28" text="(전)희귀지원금"/>
  248. <Cell row="1" col="29" text="(전)결핵지원금"/>
  249. <Cell row="1" col="30" text="(전)장애인"/>
  250. <Cell row="1" col="31" text="(전)긴급지원금"/>
  251. <Cell row="1" col="32" text="(전)지원금"/>
  252. <Cell row="1" col="33" text="(전)대불금"/>
  253. <Cell row="1" col="34" text="(전)약제상한차액"/>
  254. <Cell row="1" col="46" text="(후)건수"/>
  255. <Cell row="1" col="47" text="(후)총진료비"/>
  256. <Cell row="1" col="48" text="(후)본인부담"/>
  257. <Cell row="1" col="49" text="(후)청구액"/>
  258. <Cell row="1" col="50" text="(후)상한액"/>
  259. <Cell row="1" col="51" text="(후)희귀지원금"/>
  260. <Cell row="1" col="52" text="(후)결핵지원금"/>
  261. <Cell row="1" col="53" text="(후)장애인"/>
  262. <Cell row="1" col="54" text="(후)긴급지원금"/>
  263. <Cell row="1" col="55" text="(후)지원금"/>
  264. <Cell row="1" col="56" text="(후)대불금"/>
  265. <Cell row="1" col="57" text="(후)약제상한차액"/>
  266. </Band>
  267. <Band id="body">
  268. <Cell text="bind:orddeptcd"/>
  269. <Cell col="1" text="bind:deptengabbr"/>
  270. <Cell col="2" celltype="head" expr="currow+1"/>
  271. <Cell col="3" displaytype="normal" style="background:EXPR(getRowLevel(currow) == 1 ? '#ffff00' : '#fffff');background2:EXPR(getRowLevel(currow) == 1 ? '#ffff00' : '#fffff');color:EXPR(getRowLevel(currow) == 1 ? '#0000ff' : '#000000');color2:EXPR(getRowLevel(currow) == 1 ? '#0000ff' : '#000000');" text="bind:depthngnm" editautoselect="false" editautoskip="false"/>
  272. <Cell col="4" style="background:EXPR(getRowLevel(currow) == 1 ? '#ffff00' : '#fffff');background2:EXPR(getRowLevel(currow) == 1 ? '#ffff00' : '#fffff');color:EXPR(getRowLevel(currow) == 1 ? '#0000ff' : '#000000');color2:EXPR(getRowLevel(currow) == 1 ? '#0000ff' : '#000000');" text="bind:ordfildcd"/>
  273. <Cell col="5" displaytype="number" style="background:EXPR(getRowLevel(currow) == 1 ? '#ffff00' : '#fffff');background2:EXPR(getRowLevel(currow) == 1 ? '#ffff00' : '#fffff');color:EXPR(getRowLevel(currow) == 1 ? '#0000ff' : '#000000');color2:EXPR(getRowLevel(currow) == 1 ? '#0000ff' : '#000000');" text="bind:inhospcnt" editautoselect="true" editautoskip="true"/>
  274. <Cell col="6" displaytype="number" style="background:EXPR(getRowLevel(currow) == 1 ? '#ffff00' : '#fffff');background2:EXPR(getRowLevel(currow) == 1 ? '#ffff00' : '#fffff');color:EXPR(getRowLevel(currow) == 1 ? '#0000ff' : '#000000');color2:EXPR(getRowLevel(currow) == 1 ? '#0000ff' : '#000000');" text="bind:inhosptotordamt"/>
  275. <Cell col="7" displaytype="number" style="background:EXPR(getRowLevel(currow) == 1 ? '#ffff00' : '#fffff');background2:EXPR(getRowLevel(currow) == 1 ? '#ffff00' : '#fffff');color:EXPR(getRowLevel(currow) == 1 ? '#0000ff' : '#000000');color2:EXPR(getRowLevel(currow) == 1 ? '#0000ff' : '#000000');" text="bind:inhospnopytotordamt"/>
  276. <Cell col="8" displaytype="number" style="background:EXPR(getRowLevel(currow) == 1 ? '#ffff00' : '#fffff');background2:EXPR(getRowLevel(currow) == 1 ? '#ffff00' : '#fffff');color:EXPR(getRowLevel(currow) == 1 ? '#0000ff' : '#000000');color2:EXPR(getRowLevel(currow) == 1 ? '#0000ff' : '#000000');" text="bind:inhospownbtotamt"/>
  277. <Cell col="9" displaytype="number" style="background:EXPR(getRowLevel(currow) == 1 ? '#ffff00' : '#fffff');background2:EXPR(getRowLevel(currow) == 1 ? '#ffff00' : '#fffff');color:EXPR(getRowLevel(currow) == 1 ? '#0000ff' : '#000000');color2:EXPR(getRowLevel(currow) == 1 ? '#0000ff' : '#000000');" text="bind:inhosppaytotordamt"/>
  278. <Cell col="10" displaytype="number" style="background:EXPR(getRowLevel(currow) == 1 ? '#ffff00' : '#fffff');background2:EXPR(getRowLevel(currow) == 1 ? '#ffff00' : '#fffff');color:EXPR(getRowLevel(currow) == 1 ? '#0000ff' : '#000000');color2:EXPR(getRowLevel(currow) == 1 ? '#0000ff' : '#000000');" text="bind:inhosppayownbamt"/>
  279. <Cell col="11" displaytype="number" style="background:EXPR(getRowLevel(currow) == 1 ? '#ffff00' : '#fffff');background2:EXPR(getRowLevel(currow) == 1 ? '#ffff00' : '#fffff');color:EXPR(getRowLevel(currow) == 1 ? '#0000ff' : '#000000');color2:EXPR(getRowLevel(currow) == 1 ? '#0000ff' : '#000000');" text="bind:inhosppayclamamt"/>
  280. <Cell col="12" displaytype="number" style="background:EXPR(getRowLevel(currow) == 1 ? '#ffff00' : '#fffff');background2:EXPR(getRowLevel(currow) == 1 ? '#ffff00' : '#fffff');color:EXPR(getRowLevel(currow) == 1 ? '#0000ff' : '#000000');color2:EXPR(getRowLevel(currow) == 1 ? '#0000ff' : '#000000');" text="bind:inhospownbmaxexamt"/>
  281. <Cell col="13" displaytype="number" style="background:EXPR(getRowLevel(currow) == 1 ? '#ffff00' : '#fffff');background2:EXPR(getRowLevel(currow) == 1 ? '#ffff00' : '#fffff');color:EXPR(getRowLevel(currow) == 1 ? '#0000ff' : '#000000');color2:EXPR(getRowLevel(currow) == 1 ? '#0000ff' : '#000000');" text="bind:hinhospsuppamt"/>
  282. <Cell col="14" displaytype="number" style="background:EXPR(getRowLevel(currow) == 1 ? '#ffff00' : '#fffff');background2:EXPR(getRowLevel(currow) == 1 ? '#ffff00' : '#fffff');color:EXPR(getRowLevel(currow) == 1 ? '#0000ff' : '#000000');color2:EXPR(getRowLevel(currow) == 1 ? '#0000ff' : '#000000');" text="bind:linhospsuppamt"/>
  283. <Cell col="15" displaytype="number" style="background:EXPR(getRowLevel(currow) == 1 ? '#ffff00' : '#fffff');background2:EXPR(getRowLevel(currow) == 1 ? '#ffff00' : '#fffff');color:EXPR(getRowLevel(currow) == 1 ? '#0000ff' : '#000000');color2:EXPR(getRowLevel(currow) == 1 ? '#0000ff' : '#000000');" text="bind:inhosphandcaprfund"/>
  284. <Cell col="16" displaytype="number" style="background:EXPR(getRowLevel(currow) == 1 ? '#ffff00' : '#fffff');background2:EXPR(getRowLevel(currow) == 1 ? '#ffff00' : '#fffff');color:EXPR(getRowLevel(currow) == 1 ? '#0000ff' : '#000000');color2:EXPR(getRowLevel(currow) == 1 ? '#0000ff' : '#000000');" text="bind:ginhospsuppamt"/>
  285. <Cell col="17" displaytype="number" style="background:EXPR(getRowLevel(currow) == 1 ? '#ffff00' : '#fffff');background2:EXPR(getRowLevel(currow) == 1 ? '#ffff00' : '#fffff');color:EXPR(getRowLevel(currow) == 1 ? '#0000ff' : '#000000');color2:EXPR(getRowLevel(currow) == 1 ? '#0000ff' : '#000000');" text="bind:inhospsuppamt"/>
  286. <Cell col="18" displaytype="number" style="background:EXPR(getRowLevel(currow) == 1 ? '#ffff00' : '#fffff');background2:EXPR(getRowLevel(currow) == 1 ? '#ffff00' : '#fffff');color:EXPR(getRowLevel(currow) == 1 ? '#0000ff' : '#000000');color2:EXPR(getRowLevel(currow) == 1 ? '#0000ff' : '#000000');" text="bind:inhospsubtamt"/>
  287. <Cell col="19" displaytype="number" style="background:EXPR(getRowLevel(currow) == 1 ? '#ffff00' : '#fffff');background2:EXPR(getRowLevel(currow) == 1 ? '#ffff00' : '#fffff');color:EXPR(getRowLevel(currow) == 1 ? '#0000ff' : '#000000');color2:EXPR(getRowLevel(currow) == 1 ? '#0000ff' : '#000000');" text="bind:inhosplimitdiffamt"/>
  288. <Cell col="20" displaytype="number" style="background:EXPR(getRowLevel(currow) == 1 ? '#ffff00' : '#fffff');background2:EXPR(getRowLevel(currow) == 1 ? '#ffff00' : '#fffff');color:EXPR(getRowLevel(currow) == 1 ? '#0000ff' : '#000000');color2:EXPR(getRowLevel(currow) == 1 ? '#0000ff' : '#000000');" text="bind:acptaddamt"/>
  289. <Cell col="21" displaytype="number" style="background:EXPR(getRowLevel(currow) == 1 ? '#ffff00' : '#fffff');background2:EXPR(getRowLevel(currow) == 1 ? '#ffff00' : '#fffff');color:EXPR(getRowLevel(currow) == 1 ? '#0000ff' : '#000000');color2:EXPR(getRowLevel(currow) == 1 ? '#0000ff' : '#000000');" text="bind:acptcutamt"/>
  290. <Cell col="22" displaytype="number" style="background:EXPR(getRowLevel(currow) == 1 ? '#ffff00' : '#fffff');background2:EXPR(getRowLevel(currow) == 1 ? '#ffff00' : '#fffff');color:EXPR(getRowLevel(currow) == 1 ? '#0000ff' : '#000000');color2:EXPR(getRowLevel(currow) == 1 ? '#0000ff' : '#000000');" text="bind:acptamt"/>
  291. <Cell col="23" displaytype="number" style="background:EXPR(getRowLevel(currow) == 1 ? '#ffff00' : '#fffff');background2:EXPR(getRowLevel(currow) == 1 ? '#ffff00' : '#fffff');color:EXPR(getRowLevel(currow) == 1 ? '#0000ff' : '#000000');color2:EXPR(getRowLevel(currow) == 1 ? '#0000ff' : '#000000');" text="bind:bfcnt"/>
  292. <Cell col="24" displaytype="number" style="background:EXPR(getRowLevel(currow) == 1 ? '#ffff00' : '#fffff');background2:EXPR(getRowLevel(currow) == 1 ? '#ffff00' : '#fffff');color:EXPR(getRowLevel(currow) == 1 ? '#0000ff' : '#000000');color2:EXPR(getRowLevel(currow) == 1 ? '#0000ff' : '#000000');" text="bind:bfmedcaretotamt"/>
  293. <Cell col="25" displaytype="number" style="background:EXPR(getRowLevel(currow) == 1 ? '#ffff00' : '#fffff');background2:EXPR(getRowLevel(currow) == 1 ? '#ffff00' : '#fffff');color:EXPR(getRowLevel(currow) == 1 ? '#0000ff' : '#000000');color2:EXPR(getRowLevel(currow) == 1 ? '#0000ff' : '#000000');" text="bind:bfownbamt"/>
  294. <Cell col="26" displaytype="number" style="background:EXPR(getRowLevel(currow) == 1 ? '#ffff00' : '#fffff');background2:EXPR(getRowLevel(currow) == 1 ? '#ffff00' : '#fffff');color:EXPR(getRowLevel(currow) == 1 ? '#0000ff' : '#000000');color2:EXPR(getRowLevel(currow) == 1 ? '#0000ff' : '#000000');" text="bind:bfinsuclamamt"/>
  295. <Cell col="27" displaytype="number" style="background:EXPR(getRowLevel(currow) == 1 ? '#ffff00' : '#fffff');background2:EXPR(getRowLevel(currow) == 1 ? '#ffff00' : '#fffff');color:EXPR(getRowLevel(currow) == 1 ? '#0000ff' : '#000000');color2:EXPR(getRowLevel(currow) == 1 ? '#0000ff' : '#000000');" text="bind:bfownbmaxexamt"/>
  296. <Cell col="28" displaytype="number" style="background:EXPR(getRowLevel(currow) == 1 ? '#ffff00' : '#fffff');background2:EXPR(getRowLevel(currow) == 1 ? '#ffff00' : '#fffff');color:EXPR(getRowLevel(currow) == 1 ? '#0000ff' : '#000000');color2:EXPR(getRowLevel(currow) == 1 ? '#0000ff' : '#000000');" text="bind:hbfsuppamt"/>
  297. <Cell col="29" displaytype="number" style="background:EXPR(getRowLevel(currow) == 1 ? '#ffff00' : '#fffff');background2:EXPR(getRowLevel(currow) == 1 ? '#ffff00' : '#fffff');color:EXPR(getRowLevel(currow) == 1 ? '#0000ff' : '#000000');color2:EXPR(getRowLevel(currow) == 1 ? '#0000ff' : '#000000');" text="bind:lbfsuppamt"/>
  298. <Cell col="30" displaytype="number" style="background:EXPR(getRowLevel(currow) == 1 ? '#ffff00' : '#fffff');background2:EXPR(getRowLevel(currow) == 1 ? '#ffff00' : '#fffff');color:EXPR(getRowLevel(currow) == 1 ? '#0000ff' : '#000000');color2:EXPR(getRowLevel(currow) == 1 ? '#0000ff' : '#000000');" text="bind:bfhandcaprfund"/>
  299. <Cell col="31" displaytype="number" style="background:EXPR(getRowLevel(currow) == 1 ? '#ffff00' : '#fffff');background2:EXPR(getRowLevel(currow) == 1 ? '#ffff00' : '#fffff');color:EXPR(getRowLevel(currow) == 1 ? '#0000ff' : '#000000');color2:EXPR(getRowLevel(currow) == 1 ? '#0000ff' : '#000000');" text="bind:gbfsuppamt"/>
  300. <Cell col="32" displaytype="number" style="background:EXPR(getRowLevel(currow) == 1 ? '#ffff00' : '#fffff');background2:EXPR(getRowLevel(currow) == 1 ? '#ffff00' : '#fffff');color:EXPR(getRowLevel(currow) == 1 ? '#0000ff' : '#000000');color2:EXPR(getRowLevel(currow) == 1 ? '#0000ff' : '#000000');" text="bind:bfsuppamt"/>
  301. <Cell col="33" displaytype="number" style="background:EXPR(getRowLevel(currow) == 1 ? '#ffff00' : '#fffff');background2:EXPR(getRowLevel(currow) == 1 ? '#ffff00' : '#fffff');color:EXPR(getRowLevel(currow) == 1 ? '#0000ff' : '#000000');color2:EXPR(getRowLevel(currow) == 1 ? '#0000ff' : '#000000');" text="bind:bfsubtamt"/>
  302. <Cell col="34" displaytype="number" style="background:EXPR(getRowLevel(currow) == 1 ? '#ffff00' : '#fffff');background2:EXPR(getRowLevel(currow) == 1 ? '#ffff00' : '#fffff');color:EXPR(getRowLevel(currow) == 1 ? '#0000ff' : '#000000');color2:EXPR(getRowLevel(currow) == 1 ? '#0000ff' : '#000000');" text="bind:bflimitdiffamt"/>
  303. <Cell col="35" displaytype="number" style="background:EXPR(getRowLevel(currow) == 1 ? '#ffff00' : '#fffff');background2:EXPR(getRowLevel(currow) == 1 ? '#ffff00' : '#fffff');color:EXPR(getRowLevel(currow) == 1 ? '#0000ff' : '#000000');color2:EXPR(getRowLevel(currow) == 1 ? '#0000ff' : '#000000');" text="bind:reservecnt"/>
  304. <Cell col="36" displaytype="number" style="background:EXPR(getRowLevel(currow) == 1 ? '#ffff00' : '#fffff');background2:EXPR(getRowLevel(currow) == 1 ? '#ffff00' : '#fffff');color:EXPR(getRowLevel(currow) == 1 ? '#0000ff' : '#000000');color2:EXPR(getRowLevel(currow) == 1 ? '#0000ff' : '#000000');" text="bind:reserveamtslt"/>
  305. <Cell col="37" displaytype="number" style="background:EXPR(getRowLevel(currow) == 1 ? '#ffff00' : '#fffff');background2:EXPR(getRowLevel(currow) == 1 ? '#ffff00' : '#fffff');color:EXPR(getRowLevel(currow) == 1 ? '#0000ff' : '#000000');color2:EXPR(getRowLevel(currow) == 1 ? '#0000ff' : '#000000');" text="bind:delcnt"/>
  306. <Cell col="38" displaytype="number" style="background:EXPR(getRowLevel(currow) == 1 ? '#ffff00' : '#fffff');background2:EXPR(getRowLevel(currow) == 1 ? '#ffff00' : '#fffff');color:EXPR(getRowLevel(currow) == 1 ? '#0000ff' : '#000000');color2:EXPR(getRowLevel(currow) == 1 ? '#0000ff' : '#000000');" text="bind:delamtrslt"/>
  307. <Cell col="39" displaytype="number" style="background:EXPR(getRowLevel(currow) == 1 ? '#ffff00' : '#fffff');background2:EXPR(getRowLevel(currow) == 1 ? '#ffff00' : '#fffff');color:EXPR(getRowLevel(currow) == 1 ? '#0000ff' : '#000000');color2:EXPR(getRowLevel(currow) == 1 ? '#0000ff' : '#000000');" text="bind:reserve_delcnt"/>
  308. <Cell col="40" displaytype="number" style="background:EXPR(getRowLevel(currow) == 1 ? '#ffff00' : '#fffff');background2:EXPR(getRowLevel(currow) == 1 ? '#ffff00' : '#fffff');color:EXPR(getRowLevel(currow) == 1 ? '#0000ff' : '#000000');color2:EXPR(getRowLevel(currow) == 1 ? '#0000ff' : '#000000');" text="bind:reserve_delamtrslt"/>
  309. <Cell col="41" displaytype="number" style="background:EXPR(getRowLevel(currow) == 1 ? '#ffff00' : '#fffff');background2:EXPR(getRowLevel(currow) == 1 ? '#ffff00' : '#fffff');color:EXPR(getRowLevel(currow) == 1 ? '#0000ff' : '#000000');color2:EXPR(getRowLevel(currow) == 1 ? '#0000ff' : '#000000');" text="bind:changecnt"/>
  310. <Cell col="42" displaytype="number" style="background:EXPR(getRowLevel(currow) == 1 ? '#ffff00' : '#fffff');background2:EXPR(getRowLevel(currow) == 1 ? '#ffff00' : '#fffff');color:EXPR(getRowLevel(currow) == 1 ? '#0000ff' : '#000000');color2:EXPR(getRowLevel(currow) == 1 ? '#0000ff' : '#000000');" text="bind:addcnt"/>
  311. <Cell col="43" displaytype="number" style="background:EXPR(getRowLevel(currow) == 1 ? '#ffff00' : '#fffff');background2:EXPR(getRowLevel(currow) == 1 ? '#ffff00' : '#fffff');" text="bind:clamaddamtrslt"/>
  312. <Cell col="44" displaytype="number" style="background:EXPR(getRowLevel(currow) == 1 ? '#ffff00' : '#fffff');background2:EXPR(getRowLevel(currow) == 1 ? '#ffff00' : '#fffff');" text="bind:clamcutamtrslt"/>
  313. <Cell col="45" displaytype="number" style="background:EXPR(getRowLevel(currow) == 1 ? '#ffff00' : '#fffff');background2:EXPR(getRowLevel(currow) == 1 ? '#ffff00' : '#fffff');" text="bind:clamamtrslt"/>
  314. <Cell col="46" displaytype="number" style="background:EXPR(getRowLevel(currow) == 1 ? '#ffff00' : '#fffff');background2:EXPR(getRowLevel(currow) == 1 ? '#ffff00' : '#fffff');" text="bind:afcnt"/>
  315. <Cell col="47" displaytype="number" style="background:EXPR(getRowLevel(currow) == 1 ? '#ffff00' : '#fffff');background2:EXPR(getRowLevel(currow) == 1 ? '#ffff00' : '#fffff');" text="bind:afmedcaretotamt"/>
  316. <Cell col="48" displaytype="number" style="background:EXPR(getRowLevel(currow) == 1 ? '#ffff00' : '#fffff');background2:EXPR(getRowLevel(currow) == 1 ? '#ffff00' : '#fffff');" text="bind:afownbamt"/>
  317. <Cell col="49" displaytype="number" style="background:EXPR(getRowLevel(currow) == 1 ? '#ffff00' : '#fffff');background2:EXPR(getRowLevel(currow) == 1 ? '#ffff00' : '#fffff');" text="bind:afinsuclamamt"/>
  318. <Cell col="50" displaytype="number" style="background:EXPR(getRowLevel(currow) == 1 ? '#ffff00' : '#fffff');background2:EXPR(getRowLevel(currow) == 1 ? '#ffff00' : '#fffff');" text="bind:afownbmaxexamt"/>
  319. <Cell col="51" displaytype="number" style="background:EXPR(getRowLevel(currow) == 1 ? '#ffff00' : '#fffff');background2:EXPR(getRowLevel(currow) == 1 ? '#ffff00' : '#fffff');" text="bind:hafsuppamt"/>
  320. <Cell col="52" displaytype="number" style="background:EXPR(getRowLevel(currow) == 1 ? '#ffff00' : '#fffff');background2:EXPR(getRowLevel(currow) == 1 ? '#ffff00' : '#fffff');" text="bind:lafsuppamt"/>
  321. <Cell col="53" displaytype="number" style="background:EXPR(getRowLevel(currow) == 1 ? '#ffff00' : '#fffff');background2:EXPR(getRowLevel(currow) == 1 ? '#ffff00' : '#fffff');" text="bind:afhandcaprfund"/>
  322. <Cell col="54" displaytype="number" style="background:EXPR(getRowLevel(currow) == 1 ? '#ffff00' : '#fffff');background2:EXPR(getRowLevel(currow) == 1 ? '#ffff00' : '#fffff');" text="bind:gafsuppamt"/>
  323. <Cell col="55" displaytype="number" style="background:EXPR(getRowLevel(currow) == 1 ? '#ffff00' : '#fffff');background2:EXPR(getRowLevel(currow) == 1 ? '#ffff00' : '#fffff');" text="bind:afsuppamt"/>
  324. <Cell col="56" displaytype="number" style="background:EXPR(getRowLevel(currow) == 1 ? '#ffff00' : '#fffff');background2:EXPR(getRowLevel(currow) == 1 ? '#ffff00' : '#fffff');" text="bind:afsubtamt"/>
  325. <Cell col="57" displaytype="number" style="background:EXPR(getRowLevel(currow) == 1 ? '#ffff00' : '#fffff');background2:EXPR(getRowLevel(currow) == 1 ? '#ffff00' : '#fffff');" text="bind:aflimitdiffamt"/>
  326. </Band>
  327. </Format>
  328. </Formats>
  329. </Grid>
  330. <Div position="absolute 743 18 983 200" id="grp_prtoption" visible="false" anchor="default" style="background:#ffffffff;border:1 solid #808080ff ;">
  331. <Layouts>
  332. <Layout width="240" height="182">
  333. <Static text="금액집계표 출력" position="absolute 2 4 146 26" id="caption81" class="tit_2" anchor="default"/>
  334. <Shape position="absolute 1 20 235 29" linetype="horizontal" id="line27" class="line_1" anchor="default" style="strokepen:3 solid #33bbbbff;"/>
  335. <Button position="absolute 178 155 234 177" id="button12" class="btn4" text="닫기" anchor="default" onclick="grp_biz_switch1_case1_grp_prtoption_button12_onclick"/>
  336. <Static text="진료 형태 :" position="absolute 4 28 128 45" id="caption18" class="search_name" visible="true" anchor="default"/>
  337. <Static text="출력 선택 :" position="absolute 4 53 128 70" id="caption19" class="search_name" visible="true" anchor="default"/>
  338. <Shape position="absolute -1 149 238 155" linetype="horizontal" id="line5" class="line_3" anchor="default"/>
  339. <Button position="absolute 119 155 175 177" id="button13" class="btn4" text="출력" anchor="default" onclick="grp_biz_switch1_case1_grp_prtoption_button13_onclick"/>
  340. <Radio position="absolute 99 28 199 48" id="radio2" columncount="2" codecolumn="codecolumn" datacolumn="datacolumn" anchor="default">
  341. <Dataset id="innerdataset">
  342. <ColumnInfo>
  343. <Column id="codecolumn"/>
  344. <Column id="datacolumn"/>
  345. </ColumnInfo>
  346. <Rows>
  347. <Row>
  348. <Col id="codecolumn">I</Col>
  349. <Col id="datacolumn">입원</Col>
  350. </Row>
  351. <Row>
  352. <Col id="codecolumn">O</Col>
  353. <Col id="datacolumn">외래</Col>
  354. </Row>
  355. </Rows>
  356. </Dataset>
  357. </Radio>
  358. <Radio position="absolute 99 53 234 73" id="radio3" columncount="3" codecolumn="codecolumn" datacolumn="datacolumn" anchor="default">
  359. <Dataset id="innerdataset">
  360. <ColumnInfo>
  361. <Column id="codecolumn"/>
  362. <Column id="datacolumn"/>
  363. </ColumnInfo>
  364. <Rows>
  365. <Row>
  366. <Col id="codecolumn">B</Col>
  367. <Col id="datacolumn">사전</Col>
  368. </Row>
  369. <Row>
  370. <Col id="codecolumn">A</Col>
  371. <Col id="datacolumn">사후</Col>
  372. </Row>
  373. <Row>
  374. <Col id="codecolumn">P</Col>
  375. <Col id="datacolumn">원무</Col>
  376. </Row>
  377. </Rows>
  378. </Dataset>
  379. </Radio>
  380. <Static text="미수 년월 :" position="absolute 4 102 95 119" id="caption7" class="search_name" anchor="default"/>
  381. <Combo position="absolute 98 77 173 96" id="prt_clamflag" class="combo_search" codecolumn="codecolumn" datacolumn="datacolumn" anchor="default">
  382. <Dataset id="innerdataset">
  383. <ColumnInfo>
  384. <Column id="codecolumn"/>
  385. <Column id="datacolumn"/>
  386. </ColumnInfo>
  387. <Rows>
  388. <Row>
  389. <Col id="codecolumn">0</Col>
  390. <Col id="datacolumn">원청구</Col>
  391. </Row>
  392. <Row>
  393. <Col id="codecolumn">1</Col>
  394. <Col id="datacolumn">보완청구</Col>
  395. </Row>
  396. <Row>
  397. <Col id="codecolumn">2</Col>
  398. <Col id="datacolumn">추가청구</Col>
  399. </Row>
  400. <Row>
  401. <Col id="codecolumn">4</Col>
  402. <Col id="datacolumn">누락청구</Col>
  403. </Row>
  404. <Row>
  405. <Col id="codecolumn">5</Col>
  406. <Col id="datacolumn">보완차액</Col>
  407. </Row>
  408. <Row>
  409. <Col id="codecolumn">6</Col>
  410. <Col id="datacolumn">보완삭제</Col>
  411. </Row>
  412. </Rows>
  413. </Dataset>
  414. </Combo>
  415. <Static text="청구 구분 :" position="absolute 4 78 95 95" id="caption8" class="search_name" anchor="default"/>
  416. <Static text="출력 구분 :" position="absolute 4 126 95 143" id="caption10" class="search_name" anchor="default"/>
  417. <Combo position="absolute 98 125 234 144" id="combo1" codecolumn="codecolumn" datacolumn="datacolumn" anchor="default">
  418. <Dataset id="innerdataset">
  419. <ColumnInfo>
  420. <Column id="codecolumn"/>
  421. <Column id="datacolumn"/>
  422. </ColumnInfo>
  423. <Rows>
  424. <Row>
  425. <Col id="codecolumn">1</Col>
  426. <Col id="datacolumn">구분별</Col>
  427. </Row>
  428. <Row>
  429. <Col id="codecolumn">2</Col>
  430. <Col id="datacolumn">구분별+분야별</Col>
  431. </Row>
  432. <Row>
  433. <Col id="codecolumn">3</Col>
  434. <Col id="datacolumn">치과</Col>
  435. </Row>
  436. </Rows>
  437. </Dataset>
  438. </Combo>
  439. <cp_monthCal id="prt_clamym" titletext="monthCalendar" taborder="4" text="cp_monthCal00" scrollbars="none" position="absolute 98 101 173 121"/>
  440. </Layout>
  441. </Layouts>
  442. </Div>
  443. </Layout>
  444. </Layouts>
  445. </Tabpage>
  446. <Tabpage text="개인별현황" id="case2">
  447. <Layouts>
  448. <Layout>
  449. <Grid position="absolute 0 0 1202 635" id="grd_indprescond" binddataset="ds_main_list2_gridindprescond" anchor="all" oncelldblclick="grp_biz_switch1_case2_grd_indprescond_oncelldblclick" oncellclick="grp_biz_switch1_case2_grd_indprescond_oncellclick" onkeydown="grp_biz_switch1_case2_grd_indprescond_onkeydown" cellsizingtype="col">
  450. <Formats>
  451. <Format id="default">
  452. <Columns>
  453. <Column size="24"/>
  454. <Column size="60"/>
  455. <Column size="0"/>
  456. <Column size="100"/>
  457. <Column size="53"/>
  458. <Column size="61"/>
  459. <Column size="46"/>
  460. <Column size="60"/>
  461. <Column size="69"/>
  462. <Column size="0"/>
  463. <Column size="40"/>
  464. <Column size="0"/>
  465. <Column size="0"/>
  466. <Column size="0"/>
  467. <Column size="70"/>
  468. <Column size="0"/>
  469. <Column size="0"/>
  470. <Column size="47"/>
  471. <Column size="0"/>
  472. <Column size="44"/>
  473. <Column size="48"/>
  474. <Column size="0"/>
  475. <Column size="58"/>
  476. <Column size="0"/>
  477. <Column size="93"/>
  478. <Column size="100"/>
  479. <Column size="100"/>
  480. <Column size="105"/>
  481. <Column size="112"/>
  482. <Column size="103"/>
  483. <Column size="76"/>
  484. <Column size="102"/>
  485. <Column size="100"/>
  486. <Column size="70"/>
  487. <Column size="100"/>
  488. <Column size="100"/>
  489. <Column size="81"/>
  490. <Column size="100"/>
  491. <Column size="60"/>
  492. <Column size="58"/>
  493. <Column size="61"/>
  494. <Column size="88"/>
  495. <Column size="117"/>
  496. <Column size="113"/>
  497. <Column size="92"/>
  498. <Column size="96"/>
  499. <Column size="100"/>
  500. <Column size="80"/>
  501. <Column size="100"/>
  502. <Column size="100"/>
  503. <Column size="69"/>
  504. <Column size="100"/>
  505. <Column size="61"/>
  506. <Column size="54"/>
  507. <Column size="57"/>
  508. <Column size="103"/>
  509. <Column size="112"/>
  510. <Column size="94"/>
  511. <Column size="65"/>
  512. <Column size="112"/>
  513. <Column size="100"/>
  514. <Column size="70"/>
  515. <Column size="100"/>
  516. <Column size="100"/>
  517. <Column size="73"/>
  518. <Column size="100"/>
  519. <Column size="0"/>
  520. </Columns>
  521. <Rows>
  522. <Row size="24" band="head"/>
  523. <Row size="24" band="head"/>
  524. <Row size="24"/>
  525. </Rows>
  526. <Band id="head">
  527. <Cell rowspan="2" taborder="undefined"/>
  528. <Cell col="1" rowspan="2" text="접수번호" taborder="undefined"/>
  529. <Cell col="2" text="접수일자"/>
  530. <Cell col="3" rowspan="2" text="심사상태" taborder="undefined"/>
  531. <Cell col="4" rowspan="2" text="명일련" taborder="undefined"/>
  532. <Cell col="5" colspan="18" text="청구정보" taborder="undefined"/>
  533. <Cell col="23" text="청구정보"/>
  534. <Cell col="24" colspan="14" text="재원금액" taborder="undefined"/>
  535. <Cell col="38" rowspan="2" text="인수증액" taborder="undefined"/>
  536. <Cell col="39" rowspan="2" text="인수감액" taborder="undefined"/>
  537. <Cell col="40" rowspan="2" text="인수차액" taborder="undefined"/>
  538. <Cell col="41" colspan="11" text="심사 전(인수금액)" taborder="undefined"/>
  539. <Cell col="52" rowspan="2" text="청구증액" taborder="undefined"/>
  540. <Cell col="53" rowspan="2" text="청구감액" taborder="undefined"/>
  541. <Cell col="54" rowspan="2" text="청구차액" taborder="undefined"/>
  542. <Cell col="55" colspan="11" text="심사 후(청구금액)" taborder="undefined"/>
  543. <Cell col="66" text="pidsn"/>
  544. <Cell row="1" col="2" text="접수일자"/>
  545. <Cell row="1" col="5" text="등록번호"/>
  546. <Cell row="1" col="6" text="수진자"/>
  547. <Cell row="1" col="7" text="청구년월"/>
  548. <Cell row="1" col="8" text="청구구분"/>
  549. <Cell row="1" col="9" text="청구차수"/>
  550. <Cell row="1" col="10" text="종별"/>
  551. <Cell row="1" col="11" text="조합기호"/>
  552. <Cell row="1" col="12" text="명칭"/>
  553. <Cell row="1" col="13" text="보조"/>
  554. <Cell row="1" col="14" text="본인부담율"/>
  555. <Cell row="1" col="15" text="진료분야"/>
  556. <Cell row="1" col="16" text="진료과코드"/>
  557. <Cell row="1" col="17" text="진료과"/>
  558. <Cell row="1" col="18" text="청구과코드"/>
  559. <Cell row="1" col="19" text="청구과"/>
  560. <Cell row="1" col="20" text="심사자"/>
  561. <Cell row="1" col="21" text="심사자코드"/>
  562. <Cell row="1" col="22" text="진료의명"/>
  563. <Cell row="1" col="23" text="진료의코드"/>
  564. <Cell row="1" col="24" text="(재)총진료비"/>
  565. <Cell row="1" col="25" text="(재)비급여진료비"/>
  566. <Cell row="1" col="26" text="(재)본인부담총액"/>
  567. <Cell row="1" col="27" text="(재)급여총진료비"/>
  568. <Cell row="1" col="28" text="(재)급여본인부담금"/>
  569. <Cell row="1" col="29" text="(재)급여청구액"/>
  570. <Cell row="1" col="30" text="(재)상한액"/>
  571. <Cell row="1" col="31" text="(재)희귀지원금"/>
  572. <Cell row="1" col="32" text="(재)결핵지원금"/>
  573. <Cell row="1" col="33" text="(재)장애인"/>
  574. <Cell row="1" col="34" text="(재)긴급지원금"/>
  575. <Cell row="1" col="35" text="(재)지원금"/>
  576. <Cell row="1" col="36" text="(재)대불금"/>
  577. <Cell row="1" col="37" text="(재)약제상한차액"/>
  578. <Cell row="1" col="41" text="(전)총진료비"/>
  579. <Cell row="1" col="42" text="(전)본인부담"/>
  580. <Cell row="1" col="43" text="(전)청구액"/>
  581. <Cell row="1" col="44" text="(전)상한액"/>
  582. <Cell row="1" col="45" text="(전)희귀지원금"/>
  583. <Cell row="1" col="46" text="(전)결핵지원금"/>
  584. <Cell row="1" col="47" text="(전)장애인"/>
  585. <Cell row="1" col="48" text="(전)긴급지원금"/>
  586. <Cell row="1" col="49" text="(전)지원금"/>
  587. <Cell row="1" col="50" text="(전)대불금"/>
  588. <Cell row="1" col="51" text="(전)약제상한차액"/>
  589. <Cell row="1" col="55" text="(후)총진료비"/>
  590. <Cell row="1" col="56" text="(후)본인부담"/>
  591. <Cell row="1" col="57" text="(후)청구액"/>
  592. <Cell row="1" col="58" text="(후)상한액"/>
  593. <Cell row="1" col="59" text="(후)희귀지원금"/>
  594. <Cell row="1" col="60" text="(후)결핵지원금"/>
  595. <Cell row="1" col="61" text="(후)장애인"/>
  596. <Cell row="1" col="62" text="(후)긴급지원금"/>
  597. <Cell row="1" col="63" text="(후)지원금"/>
  598. <Cell row="1" col="64" text="(후)대불금"/>
  599. <Cell row="1" col="65" text="(후)약제상한차액"/>
  600. <Cell row="1" col="66" text="pidsn"/>
  601. </Band>
  602. <Band id="body">
  603. <Cell celltype="head" expr="currow+1"/>
  604. <Cell col="1" text="bind:acptno"/>
  605. <Cell col="2" text="bind:acptdd"/>
  606. <Cell col="3" displaytype="combo" edittype="combo" style="align:center middle;" text="bind:judgendyn" combodataset="ds_init_P0151list" combocodecol="cdid" combodatacol="cdnm" enable="false"/>
  607. <Cell col="4" text="bind:docuseqno"/>
  608. <Cell col="5" text="bind:pid"/>
  609. <Cell col="6" text="bind:patnm"/>
  610. <Cell col="7" displaytype="date" text="bind:clamym" mask="yyyy-MM"/>
  611. <Cell col="8" displaytype="combo" edittype="combo" style="align:center middle;" text="bind:clamflagcd" combodataset="ds_init_P0155list" combocodecol="cdid" combodatacol="cdnm" enable="false"/>
  612. <Cell col="9" text="bind:clamdg"/>
  613. <Cell col="10" text="bind:insusubflag"/>
  614. <Cell col="11" text="bind:assomark"/>
  615. <Cell col="12" text="bind:nm"/>
  616. <Cell col="13" displaytype="combo" edittype="combo" text="bind:supp" enable="false"/>
  617. <Cell col="14" text="bind:apprate"/>
  618. <Cell col="15" displaytype="combo" edittype="combo" text="bind:ordfildcd" enable="false"/>
  619. <Cell col="16" text="bind:orddeptcd"/>
  620. <Cell col="17" text="bind:orddeptabbr"/>
  621. <Cell col="18" text="bind:clamdeptcd"/>
  622. <Cell col="19" displaytype="combo" edittype="combo" style="align:center middle;" text="bind:clamdeptabbr" combodataset="ds_init_P0471list" combocodecol="cdid" combodatacol="cdnm" enable="false"/>
  623. <Cell col="20" text="bind:judgrnm"/>
  624. <Cell col="21" text="bind:judgrid"/>
  625. <Cell col="22" text="bind:atdoctnm"/>
  626. <Cell col="23" text="bind:atdoctid"/>
  627. <Cell col="24" displaytype="number" text="bind:inhosptotordamt"/>
  628. <Cell col="25" displaytype="number" text="bind:inhospnopytotordamt"/>
  629. <Cell col="26" displaytype="number" text="bind:inhospownbtotamt"/>
  630. <Cell col="27" displaytype="number" text="bind:inhosppaytotordamt"/>
  631. <Cell col="28" displaytype="number" text="bind:inhosppayownbamt"/>
  632. <Cell col="29" displaytype="number" text="bind:inhosppayclamamt"/>
  633. <Cell col="30" displaytype="number" text="bind:inhospownbmaxexamt"/>
  634. <Cell col="31" displaytype="number" text="bind:hinhospsuppamt"/>
  635. <Cell col="32" displaytype="number" text="bind:linhospsuppamt"/>
  636. <Cell col="33" displaytype="number" text="bind:inhosphandcaprfund"/>
  637. <Cell col="34" displaytype="number" text="bind:ginhospsuppamt"/>
  638. <Cell col="35" displaytype="number" text="bind:inhospsuppamt"/>
  639. <Cell col="36" displaytype="number" text="bind:inhospsubtamt"/>
  640. <Cell col="37" displaytype="number" text="bind:inhosplimitdiffamt"/>
  641. <Cell col="38" displaytype="number" text="bind:acptaddamt"/>
  642. <Cell col="39" displaytype="number" text="bind:acptcutamt"/>
  643. <Cell col="40" displaytype="number" text="bind:acptamt"/>
  644. <Cell col="41" displaytype="number" text="bind:bfmedcaretotamt"/>
  645. <Cell col="42" displaytype="number" text="bind:bfownbamt"/>
  646. <Cell col="43" displaytype="number" text="bind:bfinsuclamamt"/>
  647. <Cell col="44" displaytype="number" text="bind:bfownbmaxexamt"/>
  648. <Cell col="45" displaytype="number" text="bind:hbfsuppamt"/>
  649. <Cell col="46" displaytype="number" text="bind:lbfsuppamt"/>
  650. <Cell col="47" displaytype="number" text="bind:bfhandcaprfund"/>
  651. <Cell col="48" displaytype="number" text="bind:gbfsuppamt"/>
  652. <Cell col="49" displaytype="number" text="bind:bfsuppamt"/>
  653. <Cell col="50" displaytype="number" text="bind:bfsubtamt"/>
  654. <Cell col="51" displaytype="number" text="bind:bflimitdiffamt"/>
  655. <Cell col="52" displaytype="number" text="bind:clamaddamtrslt"/>
  656. <Cell col="53" displaytype="number" text="bind:clamcutamtrslt"/>
  657. <Cell col="54" displaytype="number" text="bind:clamamtrslt"/>
  658. <Cell col="55" displaytype="number" text="bind:afmedcaretotamt"/>
  659. <Cell col="56" displaytype="number" text="bind:afownbamt"/>
  660. <Cell col="57" displaytype="number" text="bind:afinsuclamamt"/>
  661. <Cell col="58" displaytype="number" text="bind:afownbmaxexamt"/>
  662. <Cell col="59" displaytype="number" text="bind:hafsuppamt"/>
  663. <Cell col="60" displaytype="number" text="bind:lafsuppamt"/>
  664. <Cell col="61" displaytype="number" text="bind:afhandcaprfund"/>
  665. <Cell col="62" displaytype="number" text="bind:gafsuppamt"/>
  666. <Cell col="63" displaytype="number" text="bind:afsuppamt"/>
  667. <Cell col="64" displaytype="number" text="bind:afsubtamt"/>
  668. <Cell col="65" displaytype="number" text="bind:aflimitdiffamt"/>
  669. <Cell col="66" text="bind:pidsn"/>
  670. </Band>
  671. </Format>
  672. </Formats>
  673. </Grid>
  674. </Layout>
  675. </Layouts>
  676. </Tabpage>
  677. <Tabpage text="개인별처방내역" id="case3">
  678. <Layouts>
  679. <Layout>
  680. <Grid position="absolute 0 0 1202 635" id="grd_prcpspec" binddataset="ds_main_list3_gridindprcpspec" anchor="all" oncellclick="grp_biz_switch1_case3_grd_prcpspec_oncellclick" onkeydown="grp_biz_switch1_case3_grd_prcpspec_onkeydown" cellsizingtype="col">
  681. <Formats>
  682. <Format id="default">
  683. <Columns>
  684. <Column size="23"/>
  685. <Column size="40"/>
  686. <Column size="40"/>
  687. <Column size="90"/>
  688. <Column size="90"/>
  689. <Column size="90"/>
  690. <Column size="209"/>
  691. <Column size="95"/>
  692. <Column size="80"/>
  693. <Column size="50"/>
  694. <Column size="45"/>
  695. <Column size="95"/>
  696. <Column size="50"/>
  697. <Column size="45"/>
  698. <Column size="95"/>
  699. <Column size="100"/>
  700. <Column size="32"/>
  701. <Column size="67"/>
  702. </Columns>
  703. <Rows>
  704. <Row size="24" band="head"/>
  705. <Row size="24" band="head"/>
  706. <Row size="24"/>
  707. </Rows>
  708. <Band id="head">
  709. <Cell rowspan="2" taborder="undefined"/>
  710. <Cell col="1" colspan="2" text="항목" taborder="undefined"/>
  711. <Cell col="3" rowspan="2" text="그룹수가" taborder="undefined"/>
  712. <Cell col="4" rowspan="2" text="수가코드" taborder="undefined"/>
  713. <Cell col="5" rowspan="2" text="EDI코드" taborder="undefined"/>
  714. <Cell col="6" rowspan="2" text="한글명" taborder="undefined"/>
  715. <Cell col="7" rowspan="2" text="원무금액" taborder="undefined"/>
  716. <Cell col="8" rowspan="2" text="인수차액" taborder="undefined"/>
  717. <Cell col="9" colspan="3" text="심사전" taborder="undefined"/>
  718. <Cell col="12" colspan="3" text="심사후" taborder="undefined"/>
  719. <Cell col="15" rowspan="2" text="차액" taborder="undefined"/>
  720. <Cell col="16" rowspan="2" text="산정&#10;수정" taborder="undefined"/>
  721. <Cell col="17" rowspan="2" text="최종&#10;수정자" taborder="undefined"/>
  722. <Cell row="1" col="1" text="항"/>
  723. <Cell row="1" col="2" text="목"/>
  724. <Cell row="1" col="9" text="1일량"/>
  725. <Cell row="1" col="10" text="일수"/>
  726. <Cell row="1" col="11" text="금액"/>
  727. <Cell row="1" col="12" text="1일량"/>
  728. <Cell row="1" col="13" text="일수"/>
  729. <Cell row="1" col="14" text="금액"/>
  730. </Band>
  731. <Band id="body">
  732. <Cell celltype="head" expr="currow+1"/>
  733. <Cell col="1" text="bind:item1"/>
  734. <Cell col="2" text="bind:item2"/>
  735. <Cell col="3" text="bind:grupcalcscorcd"/>
  736. <Cell col="4" text="bind:snglcalcscorcd"/>
  737. <Cell col="5" text="bind:basecd"/>
  738. <Cell col="6" style="align:left middle;" text="bind:hngnm"/>
  739. <Cell col="7" displaytype="number" text="bind:rcptcalcamt"/>
  740. <Cell col="8" displaytype="number" text="bind:insudiffamt"/>
  741. <Cell col="9" displaytype="number" text="bind:bfrtims"/>
  742. <Cell col="10" displaytype="number" text="bind:bfrdayno"/>
  743. <Cell col="11" displaytype="number" text="bind:bframt"/>
  744. <Cell col="12" displaytype="number" text="bind:afttims"/>
  745. <Cell col="13" displaytype="number" text="bind:aftdayno"/>
  746. <Cell col="14" displaytype="number" text="bind:aftamt"/>
  747. <Cell col="15" displaytype="number" text="bind:difamt"/>
  748. <Cell col="16" text="bind:estmyn"/>
  749. <Cell col="17" text="bind:lastupdtrid"/>
  750. </Band>
  751. </Format>
  752. </Formats>
  753. </Grid>
  754. </Layout>
  755. </Layouts>
  756. </Tabpage>
  757. </Tabpages>
  758. </Tab>
  759. <Button position="absolute 694 57 791 76" id="button8" class="btn5" text="파일 다운로드" anchor="top right" onclick="grp_biz_button8_onclick"/>
  760. <Button position="absolute 617 57 692 76" id="button9" class="btn5" text="파일 생성" anchor="top right" onclick="grp_biz_button9_onclick"/>
  761. <Button position="absolute 884 57 964 76" id="button6" class="btn7" text="엑셀저장" anchor="top right" onclick="grp_biz_button6_onclick"/>
  762. <Button position="absolute 792 57 883 76" id="button5" class="btn6" text="집계표출력" anchor="top right" onclick="grp_biz_button5_onclick"/>
  763. <CheckBox position="absolute 375 61 394 76" id="bool1" anchor="left top" truevalue="Y" falsevalue="N"/>
  764. <Static text="접수번호 생성 유(결산용)" position="absolute 398 58 553 81" id="caption9" anchor="left top"/>
  765. </Layout>
  766. </Layouts>
  767. </Div>
  768. <Button position="absolute 966 80 1019 99" id="button2" class="btn2" text="셀카피" onclick="button2_onclick" anchor="top right"/>
  769. <Button position="absolute 1021 80 1074 99" id="button3" class="btn2" text="열카피" onclick="button3_onclick" anchor="top right"/>
  770. <Button position="absolute 1077 80 1130 99" id="button7" class="btn2" text="행카피" onclick="button7_onclick" anchor="top right"/>
  771. <Button position="absolute 1132 79 1200 99" id="button10" class="btn4" text="초기화" onclick="button10_onclick" anchor="top right"/>
  772. <Static text="▶ [심사상태조건] : 1. 재원:'R' 제외, 2. 심사전:'R' 제외, 3. 심사후:'D','N','R' 제외." position="absolute 1 744 541 760" id="caption1" style="color:#fa0413ff;font:Dotum,9,bold;" anchor="left bottom"/>
  773. <Static text="▶ 1. 심사(전)건수 = 재원(재)건수 + 추가건수, 2. 심사(후)건수 = 심사(전)건수 - (삭제+보류건수) + 자격수정건수" position="absolute 550 744 1185 760" id="caption5" style="color:#262626ff;" anchor="right bottom"/>
  774. <Static id="caption6" text="진료과/개인/처방별 수정전후 집계표 조회" class="tit_1" position="absolute 0 0 304 23"/>
  775. </Layout>
  776. </Layouts>
  777. <Objects>
  778. <Dataset id="ds_send_send_base" firefirstcount="0" firenextcount="0" useclientlayout="false" updatecontrol="true" enableevent="true" loadkeymode="keep" loadfiltermode="keep" reversesubsum="false">
  779. <ColumnInfo>
  780. <Column id="clamflag" type="STRING" size="256"/>
  781. <Column id="fromdd" type="STRING" size="256"/>
  782. <Column id="ordfildcd" type="STRING" size="256"/>
  783. <Column id="ioflag" type="STRING" size="256"/>
  784. <Column id="insukindcd" type="STRING" size="256"/>
  785. <Column id="srchond" type="STRING" size="256"/>
  786. <Column id="clamdg" type="STRING" size="256"/>
  787. <Column id="clamdg1" type="STRING" size="256"/>
  788. <Column id="clamdg2" type="STRING" size="256"/>
  789. <Column id="clamdg3" type="STRING" size="256"/>
  790. <Column id="clamdg4" type="STRING" size="256"/>
  791. <Column id="clamdg5" type="STRING" size="256"/>
  792. <Column id="calc" type="STRING" size="256"/>
  793. <Column id="insukindcd1" type="STRING" size="256"/>
  794. <Column id="insukindcd2" type="STRING" size="256"/>
  795. <Column id="insukindcd3" type="STRING" size="256"/>
  796. <Column id="insukindcd4" type="STRING" size="256"/>
  797. <Column id="insukindcd5" type="STRING" size="256"/>
  798. <Column id="ddflag" type="STRING" size="256"/>
  799. </ColumnInfo>
  800. <Rows>
  801. <Row/>
  802. </Rows>
  803. </Dataset>
  804. <Dataset id="ds_send_prtoption" firefirstcount="0" firenextcount="0" useclientlayout="false" updatecontrol="true" enableevent="true" loadkeymode="keep" loadfiltermode="keep" reversesubsum="false">
  805. <ColumnInfo>
  806. <Column id="ioflag" type="STRING" size="256"/>
  807. <Column id="judgtype" type="STRING" size="256"/>
  808. <Column id="clamflag" type="STRING" size="256"/>
  809. <Column id="clamym" type="STRING" size="256"/>
  810. <Column id="printtype" type="STRING" size="256"/>
  811. <Column id="calc" type="STRING" size="256"/>
  812. </ColumnInfo>
  813. <Rows>
  814. <Row>
  815. <Col id="ioflag">I</Col>
  816. <Col id="judgtype">B</Col>
  817. <Col id="clamflag">0</Col>
  818. <Col id="printtype">1</Col>
  819. </Row>
  820. </Rows>
  821. </Dataset>
  822. <Dataset id="ds_init_P0151list" firefirstcount="0" firenextcount="0" useclientlayout="false" updatecontrol="true" enableevent="true" loadkeymode="keep" loadfiltermode="keep" reversesubsum="false">
  823. <ColumnInfo>
  824. <Column id="cdnm" type="STRING" size="256"/>
  825. <Column id="cdid" type="STRING" size="256"/>
  826. </ColumnInfo>
  827. <Rows>
  828. <Row/>
  829. </Rows>
  830. </Dataset>
  831. <Dataset id="ds_init_P0155list" firefirstcount="0" firenextcount="0" useclientlayout="false" updatecontrol="true" enableevent="true" loadkeymode="keep" loadfiltermode="keep" reversesubsum="false">
  832. <ColumnInfo>
  833. <Column id="cdnm" type="STRING" size="256"/>
  834. <Column id="cdid" type="STRING" size="256"/>
  835. </ColumnInfo>
  836. <Rows>
  837. <Row/>
  838. </Rows>
  839. </Dataset>
  840. <Dataset id="ds_init_P0010list" firefirstcount="0" firenextcount="0" useclientlayout="false" updatecontrol="true" enableevent="true" loadkeymode="keep" loadfiltermode="keep" reversesubsum="false">
  841. <ColumnInfo>
  842. <Column id="cdnm" type="STRING" size="256"/>
  843. <Column id="cdid" type="STRING" size="256"/>
  844. </ColumnInfo>
  845. <Rows>
  846. <Row/>
  847. </Rows>
  848. </Dataset>
  849. <Dataset id="ds_init_P0471list" firefirstcount="0" firenextcount="0" useclientlayout="false" updatecontrol="true" enableevent="true" loadkeymode="keep" loadfiltermode="keep" reversesubsum="false">
  850. <ColumnInfo>
  851. <Column id="cdnm" type="STRING" size="256"/>
  852. <Column id="cdid" type="STRING" size="256"/>
  853. </ColumnInfo>
  854. <Rows>
  855. <Row/>
  856. </Rows>
  857. </Dataset>
  858. <Dataset id="ds_init_P0415list" firefirstcount="0" firenextcount="0" useclientlayout="false" updatecontrol="true" enableevent="true" loadkeymode="keep" loadfiltermode="keep" reversesubsum="false"/>
  859. <Dataset id="ds_init_P0426list" firefirstcount="0" firenextcount="0" useclientlayout="false" updatecontrol="true" enableevent="true" loadkeymode="keep" loadfiltermode="keep" reversesubsum="false"/>
  860. <Dataset id="ds_main_list1_griddeptfild" firefirstcount="0" firenextcount="0" useclientlayout="true" updatecontrol="true" enableevent="true" loadkeymode="keep" loadfiltermode="keep" reversesubsum="false">
  861. <ColumnInfo>
  862. <Column id="orddeptcd" type="STRING" size="256" prop="NONE"/>
  863. <Column id="depthngnm" type="STRING" size="256" sumtext="총계" prop="TEXT"/>
  864. <Column id="deptengabbr" type="STRING" size="256" sumtext="진료과약어"/>
  865. <Column id="ordfildcd" type="STRING" size="256" sumtext="청구분야" prop="NONE"/>
  866. <Column id="inhospcnt" type="BIGDECIMAL" size="256" sumtext="(재)건수"/>
  867. <Column id="inhosptotordamt" type="BIGDECIMAL" size="256" sumtext="(재)총진료비"/>
  868. <Column id="inhospnopytotordamt" type="BIGDECIMAL" size="256" sumtext="(재)비급여총진료비"/>
  869. <Column id="inhospownbtotamt" type="BIGDECIMAL" size="256" sumtext="(재)본인부담총액"/>
  870. <Column id="inhosppaytotordamt" type="BIGDECIMAL" size="256" sumtext="(재)급여총진료비"/>
  871. <Column id="inhosppayownbamt" type="BIGDECIMAL" size="256" sumtext="(재)급여본인부담금"/>
  872. <Column id="inhosppayclamamt" type="BIGDECIMAL" size="256" sumtext="(재)급여청구액"/>
  873. <Column id="inhospownbmaxexamt" type="BIGDECIMAL" size="256" sumtext="(재)상한액"/>
  874. <Column id="ginhospsuppamt" type="BIGDECIMAL" size="256" sumtext="(재)긴급지원금"/>
  875. <Column id="hinhospsuppamt" type="BIGDECIMAL" size="256" sumtext="(재)희귀지원금"/>
  876. <Column id="linhospsuppamt" type="BIGDECIMAL" size="256" sumtext="(재)결핵지원금"/>
  877. <Column id="inhospsuppamt" type="BIGDECIMAL" size="256" sumtext="(재)지원금"/>
  878. <Column id="inhosphandcaprfund" type="BIGDECIMAL" size="256" sumtext="(재)장애인"/>
  879. <Column id="inhosplimitdiffamt" type="BIGDECIMAL" size="256" sumtext="(재)약제상한차액"/>
  880. <Column id="inhospsubtamt" type="BIGDECIMAL" size="256" sumtext="(재)대불금"/>
  881. <Column id="omitcnt" type="BIGDECIMAL" size="256" sumtext="누락건수"/>
  882. <Column id="omitamt" type="BIGDECIMAL" size="256" sumtext="누락금액"/>
  883. <Column id="acptaddamt" type="BIGDECIMAL" size="256" sumtext="인수증액"/>
  884. <Column id="acptcutamt" type="BIGDECIMAL" size="256" sumtext="인수감액"/>
  885. <Column id="acptamt" type="BIGDECIMAL" size="256" sumtext="인수차액"/>
  886. <Column id="addcnt" type="BIGDECIMAL" size="256" sumtext="추가건수"/>
  887. <Column id="bfcnt" type="BIGDECIMAL" size="256" sumtext="(전)건수"/>
  888. <Column id="bfmedcaretotamt" type="BIGDECIMAL" size="256" sumtext="(전)총진료비"/>
  889. <Column id="bfownbamt" type="BIGDECIMAL" size="256" sumtext="(전)본인부담"/>
  890. <Column id="bfinsuclamamt" type="BIGDECIMAL" size="256" sumtext="(전)청구액"/>
  891. <Column id="bfownbmaxexamt" type="BIGDECIMAL" size="256" sumtext="(전)상한액"/>
  892. <Column id="gbfsuppamt" type="BIGDECIMAL" size="256" sumtext="(전)긴급지원금"/>
  893. <Column id="hbfsuppamt" type="BIGDECIMAL" size="256" sumtext="(전)희귀지원금"/>
  894. <Column id="lbfsuppamt" type="BIGDECIMAL" size="256" sumtext="(전)결핵지원금"/>
  895. <Column id="bfsuppamt" type="BIGDECIMAL" size="256" sumtext="(전)지원금"/>
  896. <Column id="bfhandcaprfund" type="BIGDECIMAL" size="256" sumtext="(전)장애인"/>
  897. <Column id="bflimitdiffamt" type="BIGDECIMAL" size="256" sumtext="(전)약제상한차액"/>
  898. <Column id="bfsubtamt" type="BIGDECIMAL" size="256" sumtext="(전)대불금"/>
  899. <Column id="reservecnt" type="BIGDECIMAL" size="256" sumtext="보류건수"/>
  900. <Column id="reserveamtslt" type="BIGDECIMAL" size="256" sumtext="보류금액"/>
  901. <Column id="delcnt" type="BIGDECIMAL" size="256" sumtext="삭제건수"/>
  902. <Column id="delamtrslt" type="BIGDECIMAL" size="256" sumtext="삭제금액"/>
  903. <Column id="reserve_delcnt" type="BIGDECIMAL" size="256" sumtext="보류+삭제건수"/>
  904. <Column id="reserve_delamtrslt" type="BIGDECIMAL" size="256" sumtext="보류+삭제금액"/>
  905. <Column id="changecnt" type="BIGDECIMAL" size="256" sumtext="자격수정건수"/>
  906. <Column id="clamaddamtrslt" type="BIGDECIMAL" size="256" sumtext="청구증액"/>
  907. <Column id="clamcutamtrslt" type="BIGDECIMAL" size="256" sumtext="청구감액"/>
  908. <Column id="clamamtrslt" type="BIGDECIMAL" size="256" sumtext="청구차액"/>
  909. <Column id="afcnt" type="BIGDECIMAL" size="256" sumtext="(후)건수"/>
  910. <Column id="afmedcaretotamt" type="BIGDECIMAL" size="256" sumtext="(후)총진료비"/>
  911. <Column id="afownbamt" type="BIGDECIMAL" size="256" sumtext="(후)본인부담"/>
  912. <Column id="afinsuclamamt" type="BIGDECIMAL" size="256" sumtext="(후)청구액"/>
  913. <Column id="afownbmaxexamt" type="BIGDECIMAL" size="256" sumtext="(후)상한금"/>
  914. <Column id="gafsuppamt" type="BIGDECIMAL" size="256" sumtext="(후)긴급지원금"/>
  915. <Column id="hafsuppamt" type="BIGDECIMAL" size="256" sumtext="(후)희귀지원금"/>
  916. <Column id="lafsuppamt" type="BIGDECIMAL" size="256" sumtext="(후)결핵지원금"/>
  917. <Column id="afsuppamt" type="BIGDECIMAL" size="256" sumtext="(후)지원금"/>
  918. <Column id="afhandcaprfund" type="BIGDECIMAL" size="256" sumtext="(후)장애인"/>
  919. <Column id="aflimitdiffamt" type="BIGDECIMAL" size="256" sumtext="(후)약제상한차액"/>
  920. <Column id="afsubtamt" type="BIGDECIMAL" size="256" sumtext="(후)대불금"/>
  921. <Column id="sumtypecd" type="STRING" size="256" sumtext="(후)대불금"/>
  922. <Column id="sum" type="STRING" size="256" prop="TEXT"/>
  923. <Column id="ordfildnm" type="STRING" size="256"/>
  924. </ColumnInfo>
  925. </Dataset>
  926. <Dataset id="ds_main_list2_gridindprescond" firefirstcount="0" firenextcount="0" useclientlayout="false" updatecontrol="true" enableevent="true" loadkeymode="keep" loadfiltermode="keep" reversesubsum="false">
  927. <ColumnInfo>
  928. <Column id="acptno" type="STRING" size="256" sumtext="접수번호"/>
  929. <Column id="judgendyn" type="STRING" size="256" sumtext="심사상태"/>
  930. <Column id="acptdd" type="STRING" size="256" sumtext="접수일자"/>
  931. <Column id="docuseqno" type="STRING" size="256" sumtext="명일련"/>
  932. <Column id="pid" type="STRING" size="256" sumtext="등록번호"/>
  933. <Column id="patnm" type="STRING" size="256" sumtext="수진자"/>
  934. <Column id="clamym" type="STRING" size="256" sumtext="청구월"/>
  935. <Column id="clamtypecd" type="STRING" size="256" sumtext="청구형태"/>
  936. <Column id="clamflagcd" type="STRING" size="256" sumtext="청구구분"/>
  937. <Column id="clamdg" type="STRING" size="256" sumtext="청구차수"/>
  938. <Column id="insusubflag" type="STRING" size="256" sumtext="종별"/>
  939. <Column id="assomark" type="STRING" size="256" sumtext="조합기호"/>
  940. <Column id="nm" type="STRING" size="256" sumtext="명칭"/>
  941. <Column id="supp" type="STRING" size="256" sumtext="보조"/>
  942. <Column id="apprate" type="STRING" size="256" sumtext="적용요율"/>
  943. <Column id="ordfildcd" type="STRING" size="256" sumtext="진료분야"/>
  944. <Column id="orddeptcd" type="STRING" size="256" sumtext="진료과"/>
  945. <Column id="orddeptabbr" type="STRING" size="256" sumtext="진료과약어"/>
  946. <Column id="clamdeptcd" type="STRING" size="256" sumtext="청구과"/>
  947. <Column id="clamdeptabbr" type="STRING" size="256" sumtext="청구과약어"/>
  948. <Column id="judgrnm" type="STRING" size="256" sumtext="심사자"/>
  949. <Column id="judgrid" type="STRING" size="256" sumtext="심사자코드"/>
  950. <Column id="atdoctnm" type="STRING" size="256" sumtext="주치의"/>
  951. <Column id="atdoctid" type="STRING" size="256" sumtext="주치의코드"/>
  952. <Column id="inhospcnt" type="STRING" size="256" sumtext="(재)건수"/>
  953. <Column id="inhosptotordamt" type="STRING" size="256" sumtext="(재)총진료비"/>
  954. <Column id="inhosppaytotordamt" type="STRING" size="256" sumtext="(재)급여진료비"/>
  955. <Column id="inhospnopytotordamt" type="STRING" size="256" sumtext="(재)비급여진료비"/>
  956. <Column id="inhospownbtotamt" type="STRING" size="256" sumtext="(재)본인부담액"/>
  957. <Column id="inhosppayownbamt" type="STRING" size="256" sumtext="(재)급여본인부담금"/>
  958. <Column id="inhosppayclamamt" type="STRING" size="256" sumtext="(재)급여청구액"/>
  959. <Column id="inhospownbmaxexamt" type="STRING" size="256" sumtext="(재)상한액"/>
  960. <Column id="ginhospsuppamt" type="STRING" size="256" sumtext="(재)긴급지원금"/>
  961. <Column id="hinhospsuppamt" type="STRING" size="256" sumtext="(재)희귀지원금"/>
  962. <Column id="linhospsuppamt" type="STRING" size="256" sumtext="(재)희귀지원금"/>
  963. <Column id="inhospsuppamt" type="STRING" size="256" sumtext="(재)지원금"/>
  964. <Column id="inhospsubtamt" type="STRING" size="256" sumtext="(재)대불금"/>
  965. <Column id="inhosphandcaprfund" type="STRING" size="256" sumtext="(재)장애인"/>
  966. <Column id="inhosplimitdiffamt" type="STRING" size="256" sumtext="(재)장애인"/>
  967. <Column id="omitcnt" type="STRING" size="256" sumtext="누락건수"/>
  968. <Column id="omitamt" type="STRING" size="256" sumtext="누락금액"/>
  969. <Column id="acptaddamt" type="STRING" size="256" sumtext="인수증액"/>
  970. <Column id="acptcutamt" type="STRING" size="256" sumtext="인수감액"/>
  971. <Column id="acptamt" type="STRING" size="256" sumtext="인수차액"/>
  972. <Column id="bfmedcaretotamt" type="STRING" size="256" sumtext="(전)총진료비"/>
  973. <Column id="bfownbamt" type="STRING" size="256" sumtext="(전)본인부담"/>
  974. <Column id="bfinsuclamamt" type="STRING" size="256" sumtext="(전)청구액"/>
  975. <Column id="bfownbmaxexamt" type="STRING" size="256" sumtext="(전)급여상한액"/>
  976. <Column id="gbfsuppamt" type="STRING" size="256" sumtext="(전)긴급지원금"/>
  977. <Column id="hbfsuppamt" type="STRING" size="256" sumtext="(전)희귀지원금"/>
  978. <Column id="lbfsuppamt" type="STRING" size="256" sumtext="(전)희귀지원금"/>
  979. <Column id="bfsuppamt" type="STRING" size="256" sumtext="(전)지원금"/>
  980. <Column id="bfsubtamt" type="STRING" size="256" sumtext="(전)대불금"/>
  981. <Column id="bfhandcaprfund" type="STRING" size="256" sumtext="(전)장애인"/>
  982. <Column id="bflimitdiffamt" type="STRING" size="256" sumtext="(전)장애인"/>
  983. <Column id="clamaddamtrslt" type="STRING" size="256" sumtext="청구증액"/>
  984. <Column id="clamcutamtrslt" type="STRING" size="256" sumtext="청구감액"/>
  985. <Column id="clamamtrslt" type="STRING" size="256" sumtext="청구차액"/>
  986. <Column id="afmedcaretotamt" type="STRING" size="256" sumtext="(후)총진료비"/>
  987. <Column id="afownbamt" type="STRING" size="256" sumtext="(후)본인부담"/>
  988. <Column id="afinsuclamamt" type="STRING" size="256" sumtext="(후)청구액"/>
  989. <Column id="afownbmaxexamt" type="STRING" size="256" sumtext="(후)상한액"/>
  990. <Column id="gafsuppamt" type="STRING" size="256" sumtext="(후)긴급지원금"/>
  991. <Column id="hafsuppamt" type="STRING" size="256" sumtext="(후)희귀지원금"/>
  992. <Column id="lafsuppamt" type="STRING" size="256" sumtext="(후)희귀지원금"/>
  993. <Column id="afsuppamt" type="STRING" size="256" sumtext="(후)지원금"/>
  994. <Column id="afsubtamt" type="STRING" size="256" sumtext="(후)대불금"/>
  995. <Column id="afhandcaprfund" type="STRING" size="256" sumtext="(후)장애인"/>
  996. <Column id="aflimitdiffamt" type="STRING" size="256" sumtext="(후)장애인"/>
  997. <Column id="pidsn" type="STRING" size="256" sumtext="환자일련"/>
  998. </ColumnInfo>
  999. </Dataset>
  1000. <Dataset id="ds_main_list3_gridindprcpspec" firefirstcount="0" firenextcount="0" useclientlayout="false" updatecontrol="true" enableevent="true" loadkeymode="keep" loadfiltermode="keep" reversesubsum="false">
  1001. <ColumnInfo>
  1002. <Column id="item1" type="STRING" size="256" sumtext="항"/>
  1003. <Column id="item2" type="STRING" size="256" sumtext="목"/>
  1004. <Column id="grupcalcscorcd" type="STRING" size="256" sumtext="그룹수가"/>
  1005. <Column id="snglcalcscorcd" type="STRING" size="256" sumtext="수가코드"/>
  1006. <Column id="basecd" type="STRING" size="256" sumtext="EDI코드"/>
  1007. <Column id="hngnm" type="STRING" size="256" sumtext="한글명"/>
  1008. <Column id="rcptcalcamt" type="STRING" size="256" sumtext="원무금액"/>
  1009. <Column id="insudiffamt" type="STRING" size="256" sumtext="인수차액"/>
  1010. <Column id="afttims" type="STRING" size="256" sumtext="심사후1일량"/>
  1011. <Column id="aftdayno" type="STRING" size="256" sumtext="심사후일수"/>
  1012. <Column id="aftamt" type="STRING" size="256" sumtext="심사후금액"/>
  1013. <Column id="bfrtims" type="STRING" size="256" sumtext="심사전1일량"/>
  1014. <Column id="bfrdayno" type="STRING" size="256" sumtext="심사전일수"/>
  1015. <Column id="bframt" type="STRING" size="256" sumtext="심사전금액"/>
  1016. <Column id="difamt" type="STRING" size="256" sumtext="차액"/>
  1017. <Column id="estmyn" type="STRING" size="256" sumtext="산정수정"/>
  1018. <Column id="lastupdtrid" type="STRING" size="256" sumtext="최종수정자"/>
  1019. </ColumnInfo>
  1020. </Dataset>
  1021. <Dataset id="ds_send_send_clamdg" firefirstcount="0" firenextcount="0" useclientlayout="false" updatecontrol="true" enableevent="true" loadkeymode="keep" loadfiltermode="keep" reversesubsum="false">
  1022. <ColumnInfo>
  1023. <Column id="dateflag" type="STRING" size="256" sumtext="날짜구분"/>
  1024. <Column id="fromdd" type="STRING" size="256" sumtext="시작일자"/>
  1025. <Column id="todd" type="STRING" size="256" sumtext="종료일자"/>
  1026. <Column id="ioflag" type="STRING" size="256" sumtext="내원유형"/>
  1027. <Column id="insukind" type="STRING" size="256" sumtext="보험유형"/>
  1028. <Column id="clamflag" type="STRING" size="256" sumtext="청구형태"/>
  1029. <Column id="clamdg" type="STRING" size="256" sumtext="청구차수"/>
  1030. <Column id="ordfildcd" type="STRING" size="256" sumtext="청구분야"/>
  1031. <Column id="acptno" type="STRING" size="256" sumtext="접수번호"/>
  1032. </ColumnInfo>
  1033. <Rows>
  1034. <Row/>
  1035. </Rows>
  1036. </Dataset>
  1037. <Dataset id="ds_init_clamdglist" firefirstcount="0" firenextcount="0" useclientlayout="false" updatecontrol="true" enableevent="true" loadkeymode="keep" loadfiltermode="keep" reversesubsum="false">
  1038. <ColumnInfo>
  1039. <Column id="cdnm" type="STRING" size="256"/>
  1040. <Column id="cdid" type="STRING" size="256"/>
  1041. </ColumnInfo>
  1042. <Rows>
  1043. <Row/>
  1044. </Rows>
  1045. </Dataset>
  1046. <Dataset id="ds_send_send_ind" firefirstcount="0" firenextcount="0" useclientlayout="false" updatecontrol="true" enableevent="true" loadkeymode="keep" loadfiltermode="keep" reversesubsum="false">
  1047. <ColumnInfo>
  1048. <Column id="ioflag" type="STRING" size="256"/>
  1049. <Column id="fromdd" type="STRING" size="256"/>
  1050. <Column id="clamflag" type="STRING" size="256"/>
  1051. <Column id="clamdg" type="STRING" size="256"/>
  1052. <Column id="insukindcd" type="STRING" size="256"/>
  1053. <Column id="ordfildcd" type="STRING" size="256"/>
  1054. <Column id="insukindcd1" type="STRING" size="256"/>
  1055. <Column id="insukindcd2" type="STRING" size="256"/>
  1056. <Column id="insukindcd3" type="STRING" size="256"/>
  1057. <Column id="insukindcd4" type="STRING" size="256"/>
  1058. <Column id="insukindcd5" type="STRING" size="256"/>
  1059. <Column id="calc" type="STRING" size="256"/>
  1060. <Column id="orddeptcd" type="STRING" size="256"/>
  1061. <Column id="sumtypecd" type="STRING" size="256"/>
  1062. </ColumnInfo>
  1063. <Rows>
  1064. <Row/>
  1065. </Rows>
  1066. </Dataset>
  1067. <Dataset id="ds_send_send_prcp" firefirstcount="0" firenextcount="0" useclientlayout="false" updatecontrol="true" enableevent="true" loadkeymode="keep" loadfiltermode="keep" reversesubsum="false">
  1068. <ColumnInfo>
  1069. <Column id="clamym" type="STRING" size="256"/>
  1070. <Column id="clamdg" type="STRING" size="256"/>
  1071. <Column id="pid" type="STRING" size="256"/>
  1072. <Column id="pidsn" type="STRING" size="256"/>
  1073. <Column id="orddeptcd" type="STRING" size="256"/>
  1074. <Column id="ioflag" type="STRING" size="256"/>
  1075. <Column id="clamflagcd" type="STRING" size="256"/>
  1076. <Column id="insukindcd" type="STRING" size="256"/>
  1077. <Column id="insukindcd1" type="STRING" size="256"/>
  1078. </ColumnInfo>
  1079. <Rows>
  1080. <Row/>
  1081. </Rows>
  1082. </Dataset>
  1083. <Dataset id="ds_init_P0291list" firefirstcount="0" firenextcount="0" useclientlayout="false" updatecontrol="true" enableevent="true" loadkeymode="keep" loadfiltermode="keep" reversesubsum="false">
  1084. <ColumnInfo>
  1085. <Column id="cdnm" type="STRING" size="256"/>
  1086. <Column id="cdid" type="STRING" size="256"/>
  1087. </ColumnInfo>
  1088. <Rows>
  1089. <Row/>
  1090. </Rows>
  1091. </Dataset>
  1092. <Dataset id="ds_main_list4_amtsumtable" firefirstcount="0" firenextcount="0" useclientlayout="false" updatecontrol="true" enableevent="true" loadkeymode="keep" loadfiltermode="keep" reversesubsum="false">
  1093. <ColumnInfo>
  1094. <Column id="insukind" type="STRING" size="256" sumtext="보험유형"/>
  1095. <Column id="insukindcd" type="STRING" size="256" sumtext="보험유형순서"/>
  1096. <Column id="ordfildnm" type="STRING" size="256" sumtext="청구과"/>
  1097. <Column id="ordfilddtlnm" type="STRING" size="256" sumtext="청구세부과"/>
  1098. <Column id="cnt" type="STRING" size="256" sumtext="청구건수"/>
  1099. <Column id="medcaretotamt" type="STRING" size="256" sumtext="급여총진료비"/>
  1100. <Column id="ownbamt" type="STRING" size="256" sumtext="본인부담액"/>
  1101. <Column id="insuclamamt" type="STRING" size="256" sumtext="청구액"/>
  1102. <Column id="ownbmaxexamt" type="STRING" size="256" sumtext="상한액"/>
  1103. <Column id="gsuppamt" type="STRING" size="256" sumtext="긴급복지지원금"/>
  1104. <Column id="hsuppamt" type="STRING" size="256" sumtext="희귀난치지원금"/>
  1105. <Column id="ksuppamt" type="STRING" size="256" sumtext="혈액지원금"/>
  1106. <Column id="suppamt" type="STRING" size="256" sumtext="지원금"/>
  1107. <Column id="handcaprfund" type="STRING" size="256" sumtext="장애인"/>
  1108. <Column id="subtamt" type="STRING" size="256" sumtext="대불금"/>
  1109. <Column id="totlimitdiffamt" type="STRING" size="256" sumtext="약제상한차액"/>
  1110. <Column id="clamamtrslt" type="STRING" size="256" sumtext="청구차액"/>
  1111. </ColumnInfo>
  1112. </Dataset>
  1113. </Objects>
  1114. <Bind>
  1115. <BindItem id="item0" compid="grp_biz.grp_sea.cmb_clamflag" propid="value" datasetid="ds_send_send_base" columnid="clamflag"/>
  1116. <BindItem id="item2" compid="grp_biz.grp_sea.cmb_ordfildcd" propid="value" datasetid="ds_send_send_base" columnid="ordfildcd"/>
  1117. <BindItem id="item3" compid="grp_biz.grp_sea.cmb_ioflag" propid="value" datasetid="ds_send_send_base" columnid="ioflag"/>
  1118. <BindItem id="item4" compid="grp_biz.grp_sea.chk_insukindcd" propid="value" datasetid="ds_send_send_base" columnid="insukindcd"/>
  1119. <BindItem id="item5" compid="grp_biz.grp_sea.radio1" propid="value" datasetid="ds_send_send_base" columnid="srchond"/>
  1120. <BindItem id="item6" compid="grp_biz.grp_sea.cmb_clamdg" propid="value" datasetid="ds_send_send_base" columnid="clamdg"/>
  1121. <BindItem id="item7" compid="grp_biz.grp_sea.input1" propid="value" datasetid="ds_send_send_base" columnid="clamdg1"/>
  1122. <BindItem id="item8" compid="grp_biz.grp_sea.input2" propid="value" datasetid="ds_send_send_base" columnid="clamdg2"/>
  1123. <BindItem id="item9" compid="grp_biz.grp_sea.input3" propid="value" datasetid="ds_send_send_base" columnid="clamdg3"/>
  1124. <BindItem id="item10" compid="grp_biz.grp_sea.input4" propid="value" datasetid="ds_send_send_base" columnid="clamdg4"/>
  1125. <BindItem id="item11" compid="grp_biz.grp_sea.input5" propid="value" datasetid="ds_send_send_base" columnid="clamdg5"/>
  1126. <BindItem id="item12" compid="grp_biz.bool1" propid="value" datasetid="ds_send_send_base" columnid="calc"/>
  1127. <BindItem id="item13" compid="grp_biz.switch1.case1.grp_prtoption.radio2" propid="value" datasetid="ds_send_prtoption" columnid="ioflag"/>
  1128. <BindItem id="item14" compid="grp_biz.switch1.case1.grp_prtoption.radio3" propid="value" datasetid="ds_send_prtoption" columnid="judgtype"/>
  1129. <BindItem id="item15" compid="grp_biz.switch1.case1.grp_prtoption.prt_clamflag" propid="value" datasetid="ds_send_prtoption" columnid="clamflag"/>
  1130. <BindItem id="item17" compid="grp_biz.switch1.case1.grp_prtoption.combo1" propid="value" datasetid="ds_send_prtoption" columnid="printtype"/>
  1131. </Bind>
  1132. <Script type="xscript4.0"><![CDATA[/***************************************************************************************
  1133. * System Name :
  1134. * Job Name :
  1135. * Creator :
  1136. * Make Date : 2016-05-24
  1137. * Description :
  1138. *---------------------------------------------------------------------------------------
  1139. * Modify Date Modifier Modify Description
  1140. *---------------------------------------------------------------------------------------
  1141. * 2016-05-24 Live Converter TF->XP
  1142. *
  1143. *---------------------------------------------------------------------------------------
  1144. ****************************************************************************************/
  1145. include "com_commonxp::comm_main.xjs";
  1146. include "pam_pamcomnxp::PAM001.xjs";
  1147. include "pam_pamcomnxp::PAM.xjs";
  1148. var col = "N";
  1149. function SMPIF00100_oninit(obj:Form, e:InitEventInfo)
  1150. {
  1151. frmf_initForm(obj);
  1152. }
  1153. function SMPIF00100_onload(obj:Form, e:LoadEventInfo)
  1154. {
  1155. grdf_initGrid(grp_biz.switch1.case1.grd_deptfild);
  1156. grdf_initGrid(grp_biz.switch1.case2.grd_indprescond);
  1157. grdf_initGrid(grp_biz.switch1.case3.grd_prcpspec);
  1158. grp_biz.grp_sea.ipt_fromdd.setCallEvent("grp_biz_grp_sea_ipt_fromdd_onchanged");
  1159. grp_biz.switch1.case1.grp_prtoption.prt_clamym.setCallEvent("grp_biz_switch1_case1_grp_prtoption_prt_clamym_onchanged");
  1160. CommCode_Load();
  1161. fInitialize();
  1162. }
  1163. function CommCode_Load()
  1164. {
  1165. var arrParam = [{dsNm: "ds_init_P0291list", cdGrpId: "P0291"}
  1166. ,{dsNm: "ds_init_P0155list", cdGrpId: "P0155"}
  1167. ,{dsNm: "ds_init_P0010list", cdGrpId: "P0010"}
  1168. ,{dsNm: "ds_init_P0426list", cdGrpId: "P0426"}
  1169. ,{dsNm: "ds_init_P0151list", cdGrpId: "P0151"}
  1170. ,{dsNm: "ds_init_P0471list", cdGrpId: "P0471"}]
  1171. appf_getCodeList(arrParam);
  1172. ds_init_P0291list.insertRow(0);
  1173. pamGetDeptCDDrIDList();
  1174. }
  1175. function fInitialize()
  1176. {
  1177. grdf_initGrid(grp_biz.switch1.case1.grd_deptfild);
  1178. grp_biz.grp_sea.cmb_ioflag.value = "I";
  1179. grp_biz.grp_sea.cmb_ordfildcd.value = "";
  1180. grp_biz.grp_sea.cmb_clamflag.value = "0";
  1181. grp_biz.grp_sea.ipt_fromdd.setData(String(utlf_getCurrentDate()).substr(0,6));
  1182. ds_send_send_base.setColumn(0,"fromdd",String(utlf_getCurrentDate()).substr(0,6));
  1183. grp_biz.grp_sea.cmb_clamdg.enable = true;
  1184. grp_biz.grp_sea.input1.enable = false;
  1185. grp_biz.grp_sea.input2.enable = false;
  1186. grp_biz.grp_sea.input3.enable = false;
  1187. grp_biz.grp_sea.input4.enable = false;
  1188. grp_biz.grp_sea.input5.enable = false;
  1189. grp_biz.grp_sea.input1.value = "";
  1190. grp_biz.grp_sea.input2.value = "";
  1191. grp_biz.grp_sea.input3.value = "";
  1192. grp_biz.grp_sea.input4.value = "";
  1193. grp_biz.grp_sea.input5.value = "";
  1194. grp_biz.grp_sea.chk_insukindcd.value = "11";
  1195. grp_biz.grp_sea.cmb_clamflag.visible = true;
  1196. ds_send_send_base.setColumn(0, "srchond", "A");
  1197. ds_send_send_base.setColumn(0, "calc", "Y");
  1198. grp_biz.button8.visible = false;
  1199. grp_biz.button9.visible = false;
  1200. grp_biz.grp_sea.button1.visible = true;
  1201. grp_biz.button6.visible = true;
  1202. ds_main_list1_griddeptfild.clearData();
  1203. ds_main_list2_gridindprescond.clearData();
  1204. ds_main_list3_gridindprcpspec.clearData();
  1205. ds_send_send_base.setColumn(0, "clamdg", "1");
  1206. }
  1207. function grp_biz_grp_sea_radio1_onitemchanged(obj:Radio, e:ItemChangeEventInfo)
  1208. {
  1209. var srchond = grp_biz.grp_sea.radio1.value;
  1210. if(srchond == "A")
  1211. {
  1212. grp_biz.grp_sea.cmb_clamdg.enable = true;
  1213. grp_biz.grp_sea.input1.enable = false;
  1214. grp_biz.grp_sea.input2.enable = false;
  1215. grp_biz.grp_sea.input3.enable = false;
  1216. grp_biz.grp_sea.input4.enable = false;
  1217. grp_biz.grp_sea.input5.enable = false;
  1218. grp_biz.grp_sea.input1.value = "";
  1219. grp_biz.grp_sea.input2.value = "";
  1220. grp_biz.grp_sea.input3.value = "";
  1221. grp_biz.grp_sea.input4.value = "";
  1222. grp_biz.grp_sea.input5.value = "";
  1223. }
  1224. else if(srchond == "B")
  1225. {
  1226. grp_biz.grp_sea.cmb_clamdg.value = "";
  1227. grp_biz.grp_sea.cmb_clamdg.enable = false;
  1228. grp_biz.grp_sea.input1.enable = true;
  1229. grp_biz.grp_sea.input2.enable = true;
  1230. grp_biz.grp_sea.input3.enable = true;
  1231. grp_biz.grp_sea.input4.enable = true;
  1232. grp_biz.grp_sea.input5.enable = true;
  1233. }
  1234. else
  1235. {
  1236. sysf_messageBox("차수 내역이 선택되지 않았습니다.", "E999", "");
  1237. return false;
  1238. }
  1239. }
  1240. function grp_biz_grp_sea_button14_onclick(obj:Button, e:ClickEventInfo)
  1241. {
  1242. ds_init_clamdglist.clearData();
  1243. fDateChk();
  1244. frmf_addComboItem("grp_biz.grp_sea.cmb_clamdg","전체","","above");
  1245. }
  1246. function fDateChk()
  1247. {
  1248. var dateflag;
  1249. var fromdd = ds_send_send_base.getColumn(0, "fromdd");
  1250. var ioflag = ds_send_send_base.getColumn(0, "ioflag");
  1251. var insukind = ds_send_send_base.getColumn(0, "insukindcd");
  1252. var clamflag = ds_send_send_base.getColumn(0, "clamflag");
  1253. var ordfildcd = ds_send_send_base.getColumn(0, "ordfildcd");
  1254. if(utlf_isNull(fromdd))
  1255. {
  1256. sysf_messageBox("기간의 시작일자를","C001");
  1257. grp_biz.grp_sea.ipt_fromdd.setFocus();
  1258. return;
  1259. }
  1260. else
  1261. {
  1262. ds_send_send_clamdg.setColumn(0, "fromdd", fromdd);
  1263. ds_send_send_clamdg.setColumn(0, "todd", fromdd);
  1264. ds_send_send_clamdg.setColumn(0, "ioflag", ioflag);
  1265. if(insukind == "21")
  1266. {
  1267. ds_send_send_clamdg.setColumn(0, "insukind", "21','22");
  1268. }
  1269. else
  1270. {
  1271. ds_send_send_clamdg.setColumn(0, "insukind", insukind);
  1272. }
  1273. ds_send_send_clamdg.setColumn(0, "clamflag", clamflag);
  1274. ds_send_send_clamdg.setColumn(0, "ordfildcd", ordfildcd);
  1275. if(clamflag == "0")
  1276. {
  1277. ds_send_send_clamdg.setColumn(0, "dateflag", "1");
  1278. }
  1279. else
  1280. {
  1281. ds_send_send_clamdg.setColumn(0, "dateflag", "2");
  1282. }
  1283. var oParam = {};
  1284. oParam.id = "TRPIF00105";
  1285. oParam.service = "clamuncoapp.ClamUnco";
  1286. oParam.method = "reqGetIndAllSpecClamDg";
  1287. oParam.inds = "req=ds_send_send_clamdg";
  1288. oParam.outds = "ds_init_clamdglist=clamdg";
  1289. oParam.async = false;
  1290. //oParam.callback = "cf_TRPIF00105";
  1291. tranf_submit(oParam);
  1292. if(ds_init_clamdglist.rowcount < 1)
  1293. {
  1294. sysf_messageBox("청구된 차수가 없습니다. 미수년월을 확인 해 주세요!.", "E999", "");
  1295. }
  1296. }
  1297. }
  1298. function grp_biz_grp_sea_ipt_fromdd_onchanged(r)
  1299. {
  1300. var date = eval(r).getData();
  1301. ds_send_send_base.setColumn(0, "fromdd", date);
  1302. }
  1303. //조회
  1304. function grp_biz_grp_sea_button1_onclick(obj:Button, e:ClickEventInfo)
  1305. {
  1306. if (ds_init_clamdglist.rowcount == 1)
  1307. {
  1308. ds_send_send_base.setColumn(0, "clamdg", "");
  1309. }
  1310. else if (ds_init_clamdglist.rowcount == 0)
  1311. {
  1312. ds_send_send_base.setColumn(0, "clamdg", "");
  1313. }
  1314. if(fSrchChk())
  1315. {
  1316. if(grp_biz.switch1.tabindex == 0)
  1317. {
  1318. var clamflag = ds_send_send_base.getColumn(0, "clamflag");
  1319. if (clamflag != "0")
  1320. {
  1321. ds_send_send_base.setColumn(0, "clamdg", "");
  1322. }
  1323. var oParam = {};
  1324. oParam.id = "TRPIF00101";
  1325. oParam.service = "clamuncoapp.ClamUnco";
  1326. oParam.method = "reqGetDeptFildList";
  1327. oParam.inds = "req=ds_send_send_base";
  1328. oParam.outds = "ds_main_list1_griddeptfild=griddeptfild";
  1329. oParam.async = false;
  1330. //oParam.callback = "cf_TRPIF00101";
  1331. tranf_submit(oParam);
  1332. fOrdFildCdFlag();
  1333. fDeptFildSubtotal();
  1334. ds_main_list1_griddeptfild.rowposition = -1;
  1335. }
  1336. if(grp_biz.switch1.tabindex == 1)
  1337. {
  1338. if(fSendIndCopy())
  1339. {
  1340. var oParam = {};
  1341. oParam.id = "TRPIF00102";
  1342. oParam.service = "clamuncoapp.ClamUnco";
  1343. oParam.method = "reqGetIndPresCond";
  1344. oParam.inds = "req=ds_send_send_ind";
  1345. oParam.outds = "ds_main_list2_gridindprescond=gridindprescond";
  1346. oParam.async = false;
  1347. //oParam.callback = "cf_TRPIF00102";
  1348. tranf_submit(oParam);
  1349. }
  1350. }
  1351. }
  1352. if(grp_biz.switch1.tabindex == 2)
  1353. {
  1354. sysf_messageBox("개인별처방내역의 조회는 개인별현황에서","I006");
  1355. }
  1356. }
  1357. function fDeptFildSubtotal()
  1358. {
  1359. ds_main_list1_griddeptfild.keystring = "G:sum";
  1360. }
  1361. function fSrchChk()
  1362. {
  1363. var insukindcd = ds_send_send_base.getColumn(0, "insukindcd");
  1364. var insukindcdlength = String(insukindcd).length;
  1365. if (insukindcd == "00")
  1366. {
  1367. ds_send_send_base.setColumn(0, "insukindcd1", "XX");
  1368. ds_send_send_base.setColumn(0, "insukindcd2", "XX");
  1369. ds_send_send_base.setColumn(0, "insukindcd3", "XX");
  1370. ds_send_send_base.setColumn(0, "insukindcd4", "XX");
  1371. ds_send_send_base.setColumn(0, "insukindcd5", "ALL");
  1372. }
  1373. else
  1374. {
  1375. if (insukindcdlength > 1)
  1376. {
  1377. var insukindcd1 = String(insukindcd).substr(0,2);
  1378. var insukindcd2 = String(insukindcd).substr(3,2);
  1379. var insukindcd3 = String(insukindcd).substr(6,2);
  1380. var insukindcd4 = String(insukindcd).substr(9,2);
  1381. ds_send_send_base.setColumn(0, "insukindcd1", insukindcd1);
  1382. ds_send_send_base.setColumn(0, "insukindcd2", insukindcd2);
  1383. ds_send_send_base.setColumn(0, "insukindcd3", insukindcd3);
  1384. ds_send_send_base.setColumn(0, "insukindcd4", insukindcd4);
  1385. if (insukindcd1 == "21" || insukindcd2 == "21" ||insukindcd3 == "21" ||insukindcd4 == "21")
  1386. {
  1387. ds_send_send_base.setColumn(0, "insukindcd5", "22");
  1388. }
  1389. else if (insukindcd1 == "11" || insukindcd2 == "11" ||insukindcd3 == "11" ||insukindcd4 == "11")
  1390. {
  1391. ds_send_send_base.setColumn(0, "insukindcd5", "42");
  1392. }
  1393. else
  1394. {
  1395. ds_send_send_base.setColumn(0, "insukindcd5", "XX");
  1396. }
  1397. if(utlf_isNull(ds_send_send_base.getColumn(0, "insukindcd1")))
  1398. {
  1399. ds_send_send_base.setColumn(0, "insukindcd1", "XX");
  1400. }
  1401. if(utlf_isNull(ds_send_send_base.getColumn(0, "insukindcd2")))
  1402. {
  1403. ds_send_send_base.setColumn(0, "insukindcd2", "XX");
  1404. }
  1405. if(utlf_isNull(ds_send_send_base.getColumn(0, "insukindcd3")))
  1406. {
  1407. ds_send_send_base.setColumn(0, "insukindcd3", "XX");
  1408. }
  1409. if(utlf_isNull(ds_send_send_base.getColumn(0, "insukindcd4")))
  1410. {
  1411. ds_send_send_base.setColumn(0, "insukindcd4", "XX");
  1412. }
  1413. }
  1414. }
  1415. var fromdd = ds_send_send_base.getColumn(0, "fromdd");
  1416. var clamdg1 = ds_send_send_base.getColumn(0, "clamdg1");
  1417. var clamdg2 = ds_send_send_base.getColumn(0, "clamdg2");
  1418. var clamdg3 = ds_send_send_base.getColumn(0, "clamdg3");
  1419. var clamdg4 = ds_send_send_base.getColumn(0, "clamdg4");
  1420. var clamdg5 = ds_send_send_base.getColumn(0, "clamdg5");
  1421. if(utlf_isNull(clamdg1)|| utlf_isNull(clamdg1))
  1422. {
  1423. ds_send_send_base.setColumn(0, "clamdg1", "0");
  1424. }
  1425. if(utlf_isNull(clamdg2)|| clamdg2 == " ")
  1426. {
  1427. ds_send_send_base.setColumn(0, "clamdg2", "0");
  1428. }
  1429. if(utlf_isNull(clamdg3)|| clamdg3 == " ")
  1430. {
  1431. ds_send_send_base.setColumn(0, "clamdg3", "0");
  1432. }
  1433. if(utlf_isNull(clamdg4)|| clamdg4 == " ")
  1434. {
  1435. ds_send_send_base.setColumn(0, "clamdg4", "0");
  1436. }
  1437. if(utlf_isNull(clamdg5)|| clamdg5 == " ")
  1438. {
  1439. ds_send_send_base.setColumn(0, "clamdg5", "0");
  1440. }
  1441. return true;
  1442. }
  1443. function fOrdFildCdFlag()
  1444. {
  1445. var rows = ds_main_list1_griddeptfild.rowcount;
  1446. var abbr1 = "0";
  1447. var abbr2 = "0";
  1448. var fild1 = "0";
  1449. var fild2 = "0";
  1450. for(var i = 0; i < rows; i++)
  1451. {
  1452. fild1 = ds_main_list1_griddeptfild.getColumn(i, "ordfildcd");
  1453. if(fild1 == "1")
  1454. {
  1455. ds_main_list1_griddeptfild.setColumn(i, "ordfildnm", "내과분야");
  1456. }
  1457. else if(fild1 == "2")
  1458. {
  1459. ds_main_list1_griddeptfild.setColumn(i, "ordfildnm", "외과분야");
  1460. }
  1461. else if(fild1 == "3")
  1462. {
  1463. ds_main_list1_griddeptfild.setColumn(i, "ordfildnm", "산소분야");
  1464. }
  1465. else if(fild1 == "4")
  1466. {
  1467. ds_main_list1_griddeptfild.setColumn(i, "ordfildnm", "안이분야");
  1468. }
  1469. else if(fild1 == "5")
  1470. {
  1471. ds_main_list1_griddeptfild.setColumn(i, "ordfildnm", "피비분야");
  1472. }
  1473. else if(fild1 == "6")
  1474. {
  1475. ds_main_list1_griddeptfild.setColumn(i, "ordfildnm", "치과분야");
  1476. }
  1477. else if(utlf_isNull(fild1))
  1478. {
  1479. ds_main_list1_griddeptfild.setColumn(i, "ordfildnm", "기타");
  1480. }
  1481. else if(fild1 == "B")
  1482. {
  1483. ds_main_list1_griddeptfild.setColumn(i, "ordfildnm", "완화의료");
  1484. }
  1485. else if(fild1 == "D")
  1486. {
  1487. ds_main_list1_griddeptfild.setColumn(i, "ordfildnm", "DRG");
  1488. }
  1489. else if(fild1 == "C")
  1490. {
  1491. ds_main_list1_griddeptfild.setColumn(i, "ordfildnm", "호스피스");
  1492. }
  1493. }
  1494. for(var i = 0; i < ds_main_list1_griddeptfild.rowcount; i++)
  1495. {
  1496. fild1 = ds_main_list1_griddeptfild.getColumn(i, "ordfildnm");
  1497. ds_main_list1_griddeptfild.filterstr = "ordfildnm == '"+fild1+"'";
  1498. var inhospcnt = ds_main_list1_griddeptfild.getSum("inhospcnt", 0, ds_main_list1_griddeptfild.rowcount);
  1499. var inhosptotordamt = ds_main_list1_griddeptfild.getSum("inhosptotordamt", 0, ds_main_list1_griddeptfild.rowcount);
  1500. var inhospnopytotordamt = ds_main_list1_griddeptfild.getSum("inhospnopytotordamt", 0, ds_main_list1_griddeptfild.rowcount);
  1501. var inhospownbtotamt = ds_main_list1_griddeptfild.getSum("inhospownbtotamt", 0, ds_main_list1_griddeptfild.rowcount);
  1502. var inhosppaytotordamt = ds_main_list1_griddeptfild.getSum("inhosppaytotordamt", 0, ds_main_list1_griddeptfild.rowcount);
  1503. var inhosppayownbamt = ds_main_list1_griddeptfild.getSum("inhosppayownbamt", 0, ds_main_list1_griddeptfild.rowcount);
  1504. var inhosppayclamamt = ds_main_list1_griddeptfild.getSum("inhosppayclamamt", 0, ds_main_list1_griddeptfild.rowcount);
  1505. var inhospownbmaxexamt = ds_main_list1_griddeptfild.getSum("inhospownbmaxexamt", 0, ds_main_list1_griddeptfild.rowcount);
  1506. var hinhospsuppamt = ds_main_list1_griddeptfild.getSum("hinhospsuppamt", 0, ds_main_list1_griddeptfild.rowcount);
  1507. var linhospsuppamt = ds_main_list1_griddeptfild.getSum("linhospsuppamt", 0, ds_main_list1_griddeptfild.rowcount);
  1508. var inhosphandcaprfund = ds_main_list1_griddeptfild.getSum("inhosphandcaprfund", 0, ds_main_list1_griddeptfild.rowcount);
  1509. var ginhospsuppamt = ds_main_list1_griddeptfild.getSum("ginhospsuppamt", 0, ds_main_list1_griddeptfild.rowcount);
  1510. var inhospsuppamt = ds_main_list1_griddeptfild.getSum("inhospsuppamt", 0, ds_main_list1_griddeptfild.rowcount);
  1511. var inhospsubtamt = ds_main_list1_griddeptfild.getSum("inhospsubtamt", 0, ds_main_list1_griddeptfild.rowcount);
  1512. var inhosplimitdiffamt = ds_main_list1_griddeptfild.getSum("inhosplimitdiffamt", 0, ds_main_list1_griddeptfild.rowcount);
  1513. var acptaddamt = ds_main_list1_griddeptfild.getSum("acptaddamt", 0, ds_main_list1_griddeptfild.rowcount);
  1514. var acptcutamt = ds_main_list1_griddeptfild.getSum("acptcutamt", 0, ds_main_list1_griddeptfild.rowcount);
  1515. var acptamt = ds_main_list1_griddeptfild.getSum("acptamt", 0, ds_main_list1_griddeptfild.rowcount);
  1516. var bfcnt = ds_main_list1_griddeptfild.getSum("bfcnt", 0, ds_main_list1_griddeptfild.rowcount);
  1517. var bfmedcaretotamt = ds_main_list1_griddeptfild.getSum("bfmedcaretotamt", 0, ds_main_list1_griddeptfild.rowcount);
  1518. var bfownbamt = ds_main_list1_griddeptfild.getSum("bfownbamt", 0, ds_main_list1_griddeptfild.rowcount);
  1519. var bfinsuclamamt = ds_main_list1_griddeptfild.getSum("bfinsuclamamt", 0, ds_main_list1_griddeptfild.rowcount);
  1520. var bfownbmaxexamt = ds_main_list1_griddeptfild.getSum("bfownbmaxexamt", 0, ds_main_list1_griddeptfild.rowcount);
  1521. var hbfsuppamt = ds_main_list1_griddeptfild.getSum("hbfsuppamt", 0, ds_main_list1_griddeptfild.rowcount);
  1522. var lbfsuppamt = ds_main_list1_griddeptfild.getSum("lbfsuppamt", 0, ds_main_list1_griddeptfild.rowcount);
  1523. var bfhandcaprfund = ds_main_list1_griddeptfild.getSum("bfhandcaprfund", 0, ds_main_list1_griddeptfild.rowcount);
  1524. var gbfsuppamt = ds_main_list1_griddeptfild.getSum("gbfsuppamt", 0, ds_main_list1_griddeptfild.rowcount);
  1525. var bfsuppamt = ds_main_list1_griddeptfild.getSum("bfsuppamt", 0, ds_main_list1_griddeptfild.rowcount);
  1526. var bfsubtamt = ds_main_list1_griddeptfild.getSum("bfsubtamt", 0, ds_main_list1_griddeptfild.rowcount);
  1527. var bflimitdiffamt = ds_main_list1_griddeptfild.getSum("bflimitdiffamt", 0, ds_main_list1_griddeptfild.rowcount);
  1528. var reserveamtslt = ds_main_list1_griddeptfild.getSum("reserveamtslt", 0, ds_main_list1_griddeptfild.rowcount);
  1529. var delcnt = ds_main_list1_griddeptfild.getSum("delcnt", 0, ds_main_list1_griddeptfild.rowcount);
  1530. var delamtrslt = ds_main_list1_griddeptfild.getSum("delamtrslt", 0, ds_main_list1_griddeptfild.rowcount);
  1531. var reserve_delcnt = ds_main_list1_griddeptfild.getSum("reserve_delcnt", 0, ds_main_list1_griddeptfild.rowcount);
  1532. var reserve_delamtrslt = ds_main_list1_griddeptfild.getSum("reserve_delamtrslt", 0, ds_main_list1_griddeptfild.rowcount);
  1533. var changecnt = ds_main_list1_griddeptfild.getSum("changecnt", 0, ds_main_list1_griddeptfild.rowcount);
  1534. var reservecnt = ds_main_list1_griddeptfild.getSum("reservecnt", 0, ds_main_list1_griddeptfild.rowcount);
  1535. var addcnt = ds_main_list1_griddeptfild.getSum("addcnt", 0, ds_main_list1_griddeptfild.rowcount);
  1536. var clamaddamtrslt = ds_main_list1_griddeptfild.getSum("clamaddamtrslt", 0, ds_main_list1_griddeptfild.rowcount);
  1537. var clamcutamtrslt = ds_main_list1_griddeptfild.getSum("clamcutamtrslt", 0, ds_main_list1_griddeptfild.rowcount);
  1538. var clamamtrslt = ds_main_list1_griddeptfild.getSum("clamamtrslt", 0, ds_main_list1_griddeptfild.rowcount);
  1539. var afcnt = ds_main_list1_griddeptfild.getSum("afcnt", 0, ds_main_list1_griddeptfild.rowcount);
  1540. var afmedcaretotamt = ds_main_list1_griddeptfild.getSum("afmedcaretotamt", 0, ds_main_list1_griddeptfild.rowcount);
  1541. var afownbamt = ds_main_list1_griddeptfild.getSum("afownbamt", 0, ds_main_list1_griddeptfild.rowcount);
  1542. var afinsuclamamt = ds_main_list1_griddeptfild.getSum("afinsuclamamt", 0, ds_main_list1_griddeptfild.rowcount);
  1543. var afownbmaxexamt = ds_main_list1_griddeptfild.getSum("afownbmaxexamt", 0, ds_main_list1_griddeptfild.rowcount);
  1544. var hafsuppamt = ds_main_list1_griddeptfild.getSum("hafsuppamt", 0, ds_main_list1_griddeptfild.rowcount);
  1545. var lafsuppamt = ds_main_list1_griddeptfild.getSum("lafsuppamt", 0, ds_main_list1_griddeptfild.rowcount);
  1546. var afhandcaprfund = ds_main_list1_griddeptfild.getSum("afhandcaprfund", 0, ds_main_list1_griddeptfild.rowcount);
  1547. var gafsuppamt = ds_main_list1_griddeptfild.getSum("gafsuppamt", 0, ds_main_list1_griddeptfild.rowcount);
  1548. var afsuppamt = ds_main_list1_griddeptfild.getSum("afsuppamt", 0, ds_main_list1_griddeptfild.rowcount);
  1549. var afsubtamt = ds_main_list1_griddeptfild.getSum("afsubtamt", 0, ds_main_list1_griddeptfild.rowcount);
  1550. var aflimitdiffamt = ds_main_list1_griddeptfild.getSum("aflimitdiffamt", 0, ds_main_list1_griddeptfild.rowcount);
  1551. ds_main_list1_griddeptfild.filterstr = "";
  1552. if(fild2 != fild1 && !utlf_isNull(fild1))
  1553. {
  1554. var addRow = ds_main_list1_griddeptfild.addRow();
  1555. ds_main_list1_griddeptfild.setColumn(addRow, "depthngnm", fild1);
  1556. ds_main_list1_griddeptfild.setColumn(addRow, "inhospcnt", inhospcnt);
  1557. ds_main_list1_griddeptfild.setColumn(addRow, "inhosptotordamt", inhosptotordamt);
  1558. ds_main_list1_griddeptfild.setColumn(addRow, "inhospnopytotordamt", inhospnopytotordamt);
  1559. ds_main_list1_griddeptfild.setColumn(addRow, "inhospownbtotamt", inhospownbtotamt);
  1560. ds_main_list1_griddeptfild.setColumn(addRow, "inhosppaytotordamt", inhosppaytotordamt);
  1561. ds_main_list1_griddeptfild.setColumn(addRow, "inhosppayownbamt", inhosppayownbamt);
  1562. ds_main_list1_griddeptfild.setColumn(addRow, "inhosppayclamamt", inhosppayclamamt);
  1563. ds_main_list1_griddeptfild.setColumn(addRow, "inhospownbmaxexamt", inhospownbmaxexamt);
  1564. ds_main_list1_griddeptfild.setColumn(addRow, "hinhospsuppamt", hinhospsuppamt);
  1565. ds_main_list1_griddeptfild.setColumn(addRow, "linhospsuppamt", linhospsuppamt);
  1566. ds_main_list1_griddeptfild.setColumn(addRow, "inhosphandcaprfund", inhosphandcaprfund);
  1567. ds_main_list1_griddeptfild.setColumn(addRow, "ginhospsuppamt", ginhospsuppamt);
  1568. ds_main_list1_griddeptfild.setColumn(addRow, "inhospsuppamt", inhospsuppamt);
  1569. ds_main_list1_griddeptfild.setColumn(addRow, "inhospsubtamt", inhospsubtamt);
  1570. ds_main_list1_griddeptfild.setColumn(addRow, "inhosplimitdiffamt", inhosplimitdiffamt);
  1571. ds_main_list1_griddeptfild.setColumn(addRow, "acptaddamt", acptaddamt);
  1572. ds_main_list1_griddeptfild.setColumn(addRow, "acptcutamt", acptcutamt);
  1573. ds_main_list1_griddeptfild.setColumn(addRow, "acptamt", acptamt);
  1574. ds_main_list1_griddeptfild.setColumn(addRow, "bfcnt", bfcnt);
  1575. ds_main_list1_griddeptfild.setColumn(addRow, "bfmedcaretotamt", bfmedcaretotamt);
  1576. ds_main_list1_griddeptfild.setColumn(addRow, "bfownbamt", bfownbamt);
  1577. ds_main_list1_griddeptfild.setColumn(addRow, "bfinsuclamamt", bfinsuclamamt);
  1578. ds_main_list1_griddeptfild.setColumn(addRow, "bfownbmaxexamt", bfownbmaxexamt);
  1579. ds_main_list1_griddeptfild.setColumn(addRow, "hbfsuppamt", hbfsuppamt);
  1580. ds_main_list1_griddeptfild.setColumn(addRow, "lbfsuppamt", lbfsuppamt);
  1581. ds_main_list1_griddeptfild.setColumn(addRow, "bfhandcaprfund", bfhandcaprfund);
  1582. ds_main_list1_griddeptfild.setColumn(addRow, "gbfsuppamt", gbfsuppamt);
  1583. ds_main_list1_griddeptfild.setColumn(addRow, "bfsuppamt", bfsuppamt);
  1584. ds_main_list1_griddeptfild.setColumn(addRow, "bfsubtamt", bfsubtamt);
  1585. ds_main_list1_griddeptfild.setColumn(addRow, "bflimitdiffamt", bflimitdiffamt);
  1586. ds_main_list1_griddeptfild.setColumn(addRow, "reservecnt", reservecnt);
  1587. ds_main_list1_griddeptfild.setColumn(addRow, "reserveamtslt", reserveamtslt);
  1588. ds_main_list1_griddeptfild.setColumn(addRow, "delcnt", delcnt);
  1589. ds_main_list1_griddeptfild.setColumn(addRow, "delamtrslt", delamtrslt);
  1590. ds_main_list1_griddeptfild.setColumn(addRow, "reserve_delcnt", reserve_delcnt);
  1591. ds_main_list1_griddeptfild.setColumn(addRow, "reserve_delamtrslt", reserve_delamtrslt);
  1592. ds_main_list1_griddeptfild.setColumn(addRow, "changecnt", changecnt);
  1593. ds_main_list1_griddeptfild.setColumn(addRow, "addcnt", addcnt);
  1594. ds_main_list1_griddeptfild.setColumn(addRow, "clamaddamtrslt", clamaddamtrslt);
  1595. ds_main_list1_griddeptfild.setColumn(addRow, "clamcutamtrslt", clamcutamtrslt);
  1596. ds_main_list1_griddeptfild.setColumn(addRow, "clamamtrslt", clamamtrslt);
  1597. ds_main_list1_griddeptfild.setColumn(addRow, "afcnt", afcnt);
  1598. ds_main_list1_griddeptfild.setColumn(addRow, "afmedcaretotamt", afmedcaretotamt);
  1599. ds_main_list1_griddeptfild.setColumn(addRow, "afownbamt", afownbamt);
  1600. ds_main_list1_griddeptfild.setColumn(addRow, "afinsuclamamt", afinsuclamamt);
  1601. ds_main_list1_griddeptfild.setColumn(addRow, "afownbmaxexamt", afownbmaxexamt);
  1602. ds_main_list1_griddeptfild.setColumn(addRow, "hafsuppamt", hafsuppamt);
  1603. ds_main_list1_griddeptfild.setColumn(addRow, "lafsuppamt", lafsuppamt);
  1604. ds_main_list1_griddeptfild.setColumn(addRow, "afhandcaprfund", afhandcaprfund);
  1605. ds_main_list1_griddeptfild.setColumn(addRow, "gafsuppamt", gafsuppamt);
  1606. ds_main_list1_griddeptfild.setColumn(addRow, "afsuppamt", afsuppamt);
  1607. ds_main_list1_griddeptfild.setColumn(addRow, "afsubtamt", afsubtamt);
  1608. ds_main_list1_griddeptfild.setColumn(addRow, "aflimitdiffamt", aflimitdiffamt);
  1609. ds_main_list1_griddeptfild.setColumn(addRow, "sum", "Y");
  1610. //ds_main_list1_griddeptfild.setColumn(addRow, "ordfildcd", "ZZ");
  1611. fild2 = fild1;
  1612. }
  1613. }
  1614. }
  1615. function fSendIndCopy()
  1616. {
  1617. ds_send_send_ind.setColumn(0, "ioflag", ds_send_send_base.getColumn(0, "ioflag"));
  1618. ds_send_send_ind.setColumn(0, "fromdd", ds_send_send_base.getColumn(0, "fromdd"));
  1619. ds_send_send_ind.setColumn(0, "clamflag", ds_send_send_base.getColumn(0, "clamflag"));
  1620. ds_send_send_ind.setColumn(0, "clamdg", ds_send_send_base.getColumn(0, "clamdg"));
  1621. ds_send_send_ind.setColumn(0, "insukindcd", ds_send_send_base.getColumn(0, "insukindcd"));
  1622. ds_send_send_ind.setColumn(0, "ordfildcd", ds_send_send_base.getColumn(0, "ordfildcd"));
  1623. ds_send_send_ind.setColumn(0, "insukindcd1", ds_send_send_base.getColumn(0, "insukindcd1"));
  1624. ds_send_send_ind.setColumn(0, "insukindcd2", ds_send_send_base.getColumn(0, "insukindcd2"));
  1625. ds_send_send_ind.setColumn(0, "insukindcd3", ds_send_send_base.getColumn(0, "insukindcd3"));
  1626. ds_send_send_ind.setColumn(0, "insukindcd4", ds_send_send_base.getColumn(0, "insukindcd4"));
  1627. ds_send_send_ind.setColumn(0, "insukindcd5", ds_send_send_base.getColumn(0, "insukindcd5"));
  1628. ds_send_send_ind.setColumn(0, "calc", ds_send_send_base.getColumn(0, "calc"));
  1629. return true;
  1630. }
  1631. function grp_biz_switch1_case1_grd_deptfild_oncelldblclick(obj:Grid, e:GridClickEventInfo)
  1632. {
  1633. var rows = ds_main_list1_griddeptfild.rowcount;
  1634. var chkrow = 1;
  1635. for(var i = 0; i < rows; i++)
  1636. {
  1637. var deptengabbr = ds_main_list1_griddeptfild.getColumn(i, "depthngnm");
  1638. if(String(deptengabbr).substr(2,2) == "분야")
  1639. {
  1640. chkrow = i;
  1641. break;
  1642. }
  1643. }
  1644. var row = ds_main_list1_griddeptfild.rowposition;
  1645. if(row > -1)
  1646. {
  1647. ds_send_send_ind.setColumn(0, "orddeptcd", ds_main_list1_griddeptfild.getColumn(row, "orddeptcd"));
  1648. ds_send_send_ind.setColumn(0, "sumtypecd", ds_main_list1_griddeptfild.getColumn(row, "sumtypecd"));
  1649. if(fSendIndCopy())
  1650. {
  1651. var clamflag = ds_send_send_base.getColumn(0, "clamflag");
  1652. var oParam = {};
  1653. oParam.id = "TRPIF00102";
  1654. oParam.service = "clamuncoapp.ClamUnco";
  1655. oParam.method = "reqGetIndPresCond";
  1656. oParam.inds = "req=ds_send_send_ind";
  1657. oParam.outds = "ds_main_list2_gridindprescond=gridindprescond";
  1658. oParam.async = false;
  1659. //oParam.callback = "cf_TRPIF00102";
  1660. tranf_submit(oParam);
  1661. grp_biz.switch1.tabindex = 1;
  1662. grp_biz.button8.visible = true;
  1663. grp_biz.button9.visible = true;
  1664. grp_biz.grp_sea.button1.visible = false;
  1665. }
  1666. }
  1667. }
  1668. function grp_biz_switch1_case2_grd_indprescond_oncelldblclick(obj:Grid, e:GridClickEventInfo)
  1669. {
  1670. var row = ds_main_list2_gridindprescond.rowposition;
  1671. var insukindcd = ds_send_send_base.getColumn(0, "insukindcd");
  1672. var insukindcd1 = "";
  1673. ds_send_send_prcp.setColumn(0, "clamym", ds_main_list2_gridindprescond.getColumn(row, "clamym"));
  1674. ds_send_send_prcp.setColumn(0, "clamdg", ds_main_list2_gridindprescond.getColumn(row, "clamdg"));
  1675. ds_send_send_prcp.setColumn(0, "pid", ds_main_list2_gridindprescond.getColumn(row, "pid"));
  1676. ds_send_send_prcp.setColumn(0, "pidsn", ds_main_list2_gridindprescond.getColumn(row, "pidsn"));
  1677. ds_send_send_prcp.setColumn(0, "orddeptcd", ds_main_list2_gridindprescond.getColumn(row, "orddeptcd"));
  1678. ds_send_send_prcp.setColumn(0, "ioflag", ds_send_send_base.getColumn(row, "ioflag"));
  1679. ds_send_send_prcp.setColumn(0, "clamflagcd", ds_send_send_base.getColumn(row, "clamflag"));
  1680. ds_send_send_prcp.setColumn(0, "insukindcd", insukindcd);
  1681. if (insukindcd == "21")
  1682. {
  1683. ds_send_send_prcp.setColumn(0, "insukindcd1", "22");
  1684. }
  1685. else if (insukindcd == "11")
  1686. {
  1687. ds_send_send_prcp.setColumn(0, "insukindcd1", "42");
  1688. }
  1689. else
  1690. {
  1691. ds_send_send_prcp.setColumn(0, "insukindcd1", "XX");
  1692. }
  1693. var oParam = {};
  1694. oParam.id = "TRPIF00106";
  1695. oParam.service = "clamuncoapp.ClamUnco";
  1696. oParam.method = "reqGetAftJudgDifAmtList";
  1697. oParam.inds = "req=ds_send_send_prcp";
  1698. oParam.outds = "ds_main_list3_gridindprcpspec=gridindprcpspec";
  1699. oParam.async = false;
  1700. //oParam.callback = "cf_TRPIF00106";
  1701. tranf_submit(oParam);
  1702. grp_biz.switch1.tabindex = 2;
  1703. grp_biz.button8.visible = false;
  1704. grp_biz.button9.visible = false;
  1705. grp_biz.grp_sea.button1.visible = false;
  1706. var nodeList = ds_main_list3_gridindprcpspec.rowcount;
  1707. if (nodeList < 0)
  1708. {
  1709. sysf_messageBox("수정된 처방내역이", "I004"); //I004=없습니다.
  1710. }
  1711. }
  1712. //집계표출력
  1713. function grp_biz_button5_onclick(obj:Button, e:ClickEventInfo)
  1714. {
  1715. var tmpfromdd = ds_send_send_base.getColumn(0, "fromdd");
  1716. ds_send_prtoption.setColumn(0, "calc", ds_send_send_base.getColumn(0, "calc"));
  1717. ds_send_prtoption.setColumn(0, "clamym", tmpfromdd);
  1718. grp_biz.switch1.case1.grp_prtoption.visible = true;
  1719. }
  1720. //출력
  1721. function grp_biz_switch1_case1_grp_prtoption_button13_onclick(obj:Button, e:ClickEventInfo)
  1722. {
  1723. var oParam = {};
  1724. oParam.id = "TRPIF00107";
  1725. oParam.service = "clamuncoapp.ClamUnco";
  1726. oParam.method = "reqGetAmtSumTable";
  1727. oParam.inds = "req=ds_send_prtoption";
  1728. oParam.outds = "ds_main_list4_amtsumtable=amtsumtable";
  1729. oParam.async = false;
  1730. //oParam.callback = "cf_TRPIF00107";
  1731. tranf_submit(oParam);
  1732. if (ds_main_list4_amtsumtable.rowcount == 0){
  1733. ds_main_list4_amtsumtable.addRow();
  1734. }
  1735. if(ds_send_prtoption.getColumn(0, "clamflag") == "5")
  1736. {
  1737. if(ds_send_prtoption.getColumn(0, "printtype") == "1")
  1738. {
  1739. var objDOM = rptf_createDOM(); // DOM 객체 설정
  1740. rptf_setNodeListToDOM(objDOM, "/root/main/list4/amtsumtable", ds_main_list4_amtsumtable);
  1741. rptf_setNodeListToDOM(objDOM, "/root/send/prtoption", ds_send_prtoption);
  1742. var objParam = new Object();
  1743. objParam.xml_data_XML1 = objDOM.documentElement.source;
  1744. var option =// "open=1;save=1;directprint=0;printdialog=0;print=1;zoom=0;";
  1745. rptf_exeReportPreview30(["RPPIF00101"],[objParam], option);
  1746. }
  1747. else
  1748. {
  1749. var objDOM = rptf_createDOM(); // DOM 객체 설정
  1750. rptf_setNodeListToDOM(objDOM, "/root/main/list4/amtsumtable", ds_main_list4_amtsumtable);
  1751. rptf_setNodeListToDOM(objDOM, "/root/send/prtoption", ds_send_prtoption);
  1752. var objParam = new Object();
  1753. objParam.xml_data_XML1 = objDOM.documentElement.source;
  1754. var option =// "open=1;save=1;directprint=0;printdialog=0;print=1;zoom=0;";
  1755. rptf_exeReportPreview30(["RPPIF00104"],[objParam], option);
  1756. }
  1757. }
  1758. else if(ds_send_prtoption.getColumn(0, "clamflag") == "6")
  1759. {
  1760. if(ds_send_prtoption.getColumn(0, "printtype") == "1")
  1761. {
  1762. var objDOM = rptf_createDOM(); // DOM 객체 설정
  1763. rptf_setNodeListToDOM(objDOM, "/root/main/list4/amtsumtable", ds_main_list4_amtsumtable);
  1764. rptf_setNodeListToDOM(objDOM, "/root/send/prtoption", ds_send_prtoption);
  1765. var objParam = new Object();
  1766. objParam.xml_data_XML1 = objDOM.documentElement.source;
  1767. var option =// "open=1;save=1;directprint=0;printdialog=0;print=1;zoom=0;";
  1768. rptf_exeReportPreview30(["RPPIF00102"],[objParam], option);
  1769. }
  1770. else
  1771. {
  1772. var objDOM = rptf_createDOM(); // DOM 객체 설정
  1773. rptf_setNodeListToDOM(objDOM, "/root/main/list4/amtsumtable", ds_main_list4_amtsumtable);
  1774. rptf_setNodeListToDOM(objDOM, "/root/send/prtoption", ds_send_prtoption);
  1775. var objParam = new Object();
  1776. objParam.xml_data_XML1 = objDOM.documentElement.source;
  1777. var option =// "open=1;save=1;directprint=0;printdialog=0;print=1;zoom=0;";
  1778. rptf_exeReportPreview30(["RPPIF00105"],[objParam], option);
  1779. }
  1780. }
  1781. else
  1782. {
  1783. if(ds_send_prtoption.getColumn(0, "printtype") == "1")
  1784. {
  1785. var objDOM = rptf_createDOM(); // DOM 객체 설정
  1786. rptf_setNodeListToDOM(objDOM, "/root/main/list4/amtsumtable", ds_main_list4_amtsumtable);
  1787. rptf_setNodeListToDOM(objDOM, "/root/send/prtoption", ds_send_prtoption);
  1788. var objParam = new Object();
  1789. objParam.xml_data_XML1 = objDOM.documentElement.source;
  1790. var option =// "open=1;save=1;directprint=0;printdialog=0;print=1;zoom=0;";
  1791. rptf_exeReportPreview30(["RPPIF00100"],[objParam], option);
  1792. }
  1793. else
  1794. {
  1795. var objDOM = rptf_createDOM(); // DOM 객체 설정
  1796. rptf_setNodeListToDOM(objDOM, "/root/main/list4/amtsumtable", ds_main_list4_amtsumtable);
  1797. rptf_setNodeListToDOM(objDOM, "/root/send/prtoption", ds_send_prtoption);
  1798. var objParam = new Object();
  1799. objParam.xml_data_XML1 = objDOM.documentElement.source;
  1800. var option =// "open=1;save=1;directprint=0;printdialog=0;print=1;zoom=0;";
  1801. rptf_exeReportPreview30(["RPPIF00103"],[objParam], option);
  1802. }
  1803. }
  1804. }
  1805. function grp_biz_switch1_case1_grp_prtoption_button12_onclick(obj:Button, e:ClickEventInfo)
  1806. {
  1807. grp_biz.switch1.case1.grp_prtoption.visible = false;
  1808. }
  1809. //엑셀저장
  1810. function grp_biz_button6_onclick(obj:Button, e:ClickEventInfo)
  1811. {
  1812. var today = utlf_getCurrentDate();
  1813. if(grp_biz.switch1.tabindex == 0)
  1814. {
  1815. if (ds_main_list1_griddeptfild.rowcount == 1)
  1816. {
  1817. return;
  1818. }
  1819. else if(ds_main_list1_griddeptfild.rowcount == 0)
  1820. {
  1821. sysf_messageBox("엑셀저장할 내역이", "I004"); ///엑셀저장할 내역이 없습니다.
  1822. }
  1823. else
  1824. {
  1825. grdf_exportExcel(grp_biz.switch1.case1.grd_deptfild, "과별-분야별현황 수정전후집계표 조회_"+today, "see");
  1826. }
  1827. }
  1828. else if(grp_biz.switch1.tabindex == 1)
  1829. {
  1830. if (ds_main_list2_gridindprescond.rowcount == 1)
  1831. {
  1832. return;
  1833. }
  1834. else if(ds_main_list2_gridindprescond.rowcount == 0)
  1835. {
  1836. sysf_messageBox("엑셀저장할 내역이", "I004"); ///엑셀저장할 내역이 없습니다.
  1837. }
  1838. else
  1839. {
  1840. grdf_exportExcel(grp_biz.switch1.case2.grd_indprescond, "개인별현황 수정전후집계표 조회_"+today, "see");
  1841. }
  1842. }
  1843. else if(grp_biz.switch1.tabindex == 2)
  1844. {
  1845. if (ds_main_list3_gridindprcpspec.rowcount == 1)
  1846. {
  1847. return;
  1848. }
  1849. else if(ds_main_list3_gridindprcpspec.rowcount == 0)
  1850. {
  1851. sysf_messageBox("엑셀저장할 내역이", "I004"); ///엑셀저장할 내역이 없습니다.
  1852. }
  1853. else
  1854. {
  1855. grdf_exportExcel(grp_biz.switch1.case3.grd_prcpspec, "개인별처방내역 수정전후집계표 조회_"+today, "see");
  1856. }
  1857. }
  1858. }
  1859. function button2_onclick(obj:Button, e:ClickEventInfo)
  1860. {
  1861. col = "N";
  1862. grp_biz.switch1.case1.grd_deptfild.selecttype = "multiarea";
  1863. grp_biz.switch1.case2.grd_indprescond.selecttype = "multiarea";
  1864. grp_biz.switch1.case3.grd_prcpspec.selecttype = "multiarea";
  1865. }
  1866. function button3_onclick(obj:Button, e:ClickEventInfo)
  1867. {
  1868. col = "Y";
  1869. grp_biz.switch1.case1.grd_deptfild.selecttype = "multiarea";
  1870. grp_biz.switch1.case2.grd_indprescond.selecttype = "multiarea";
  1871. grp_biz.switch1.case3.grd_prcpspec.selecttype = "multiarea";
  1872. }
  1873. function button7_onclick(obj:Button, e:ClickEventInfo)
  1874. {
  1875. col = "N";
  1876. grp_biz.switch1.case1.grd_deptfild.selecttype = "multirow";
  1877. grp_biz.switch1.case2.grd_indprescond.selecttype = "multirow";
  1878. grp_biz.switch1.case3.grd_prcpspec.selecttype = "multirow";
  1879. }
  1880. function grp_biz_switch1_case1_grd_deptfild_oncellclick(obj:Grid, e:GridClickEventInfo)
  1881. {
  1882. var lv_nAreaStartRow;
  1883. var lv_nAreaEndRow;
  1884. var lv_nAreaStartCol;
  1885. var lv_nAreaEndCol;
  1886. if(col == "Y")
  1887. {
  1888. lv_nAreaStartRow = 0;
  1889. lv_nAreaEndRow = parseInt(obj.rowcount-1);
  1890. lv_nAreaStartCol = parseInt(obj.currentcol);
  1891. lv_nAreaEndCol = parseInt(obj.currentcol);
  1892. grdf_initGridStyle(obj);
  1893. for(var nRow = lv_nAreaStartRow; nRow <= lv_nAreaEndRow; nRow++)
  1894. {
  1895. for(var nCell = lv_nAreaStartCol; nCell <= lv_nAreaEndCol; nCell++)
  1896. {
  1897. obj.setCellProperty("body",nCell,"background","#FFE7E5");
  1898. obj.setCellProperty("body",nCell,"background2","#FFE7E5");
  1899. }
  1900. }
  1901. }
  1902. else
  1903. {
  1904. grdf_initGridStyle(obj);
  1905. }
  1906. }
  1907. function grp_biz_switch1_case1_grd_deptfild_onkeydown(obj:Grid, e:KeyEventInfo)
  1908. {
  1909. if(col == "Y")
  1910. {
  1911. var CONST_SEPARATOR = " "; //컬럼별 구분자
  1912. var lv_oBindDs = eval(obj.binddataset);
  1913. var lv_sColID;
  1914. var lv_sVal;
  1915. var lv_sClipboard = "";
  1916. var lv_nAreaStartRow;
  1917. var lv_nAreaEndRow;
  1918. var lv_nAreaStartCol;
  1919. var lv_nAreaEndCol;
  1920. if(obj.selecttype == "multiarea")
  1921. {
  1922. lv_nAreaStartRow = 0;
  1923. lv_nAreaEndRow = parseInt(obj.rowcount-1);
  1924. lv_nAreaStartCol = parseInt(obj.currentcol);
  1925. lv_nAreaEndCol = parseInt(obj.currentcol);
  1926. }
  1927. for(var nRow = lv_nAreaStartRow; nRow <= lv_nAreaEndRow; nRow++)
  1928. {
  1929. for(var nCell = lv_nAreaStartCol; nCell <= lv_nAreaEndCol; nCell++)
  1930. {
  1931. lv_sColID = obj.getCellProperty("body",nCell,"text");
  1932. lv_sVal = obj.getCellValue(nRow,nCell);
  1933. lv_sClipboard = lv_sClipboard + lv_sVal + CONST_SEPARATOR;
  1934. }
  1935. lv_sClipboard = lv_sClipboard.substr(0,lv_sClipboard.length-1);
  1936. lv_sClipboard = lv_sClipboard +String.fromCharCode(10);
  1937. }
  1938. lv_sClipboard = lv_sClipboard.substr(0,lv_sClipboard.length-1);
  1939. iv_sClipboard = lv_sClipboard;
  1940. system.setClipboard("CF_TEXT",lv_sClipboard);
  1941. }
  1942. else
  1943. {
  1944. if (e.ctrlKey == true && e.keycode == 67 )
  1945. {
  1946. grdf_clipboardCopy(obj, "PAM");
  1947. }
  1948. }
  1949. }
  1950. function grp_biz_switch1_case2_grd_indprescond_oncellclick(obj:Grid, e:GridClickEventInfo)
  1951. {
  1952. var lv_nAreaStartRow;
  1953. var lv_nAreaEndRow;
  1954. var lv_nAreaStartCol;
  1955. var lv_nAreaEndCol;
  1956. if(col == "Y")
  1957. {
  1958. lv_nAreaStartRow = 0;
  1959. lv_nAreaEndRow = parseInt(obj.rowcount-1);
  1960. lv_nAreaStartCol = parseInt(obj.currentcol);
  1961. lv_nAreaEndCol = parseInt(obj.currentcol);
  1962. grdf_initGridStyle(obj);
  1963. for(var nRow = lv_nAreaStartRow; nRow <= lv_nAreaEndRow; nRow++)
  1964. {
  1965. for(var nCell = lv_nAreaStartCol; nCell <= lv_nAreaEndCol; nCell++)
  1966. {
  1967. obj.setCellProperty("body",nCell,"background","#FFE7E5");
  1968. obj.setCellProperty("body",nCell,"background2","#FFE7E5");
  1969. }
  1970. }
  1971. }
  1972. else
  1973. {
  1974. grdf_initGridStyle(obj);
  1975. }
  1976. }
  1977. function grp_biz_switch1_case2_grd_indprescond_onkeydown(obj:Grid, e:KeyEventInfo)
  1978. {
  1979. if(col == "Y")
  1980. {
  1981. var CONST_SEPARATOR = " "; //컬럼별 구분자
  1982. var lv_oBindDs = eval(obj.binddataset);
  1983. var lv_sColID;
  1984. var lv_sVal;
  1985. var lv_sClipboard = "";
  1986. var lv_nAreaStartRow;
  1987. var lv_nAreaEndRow;
  1988. var lv_nAreaStartCol;
  1989. var lv_nAreaEndCol;
  1990. if(obj.selecttype == "multiarea")
  1991. {
  1992. lv_nAreaStartRow = 0;
  1993. lv_nAreaEndRow = parseInt(obj.rowcount-1);
  1994. lv_nAreaStartCol = parseInt(obj.currentcol);
  1995. lv_nAreaEndCol = parseInt(obj.currentcol);
  1996. }
  1997. for(var nRow = lv_nAreaStartRow; nRow <= lv_nAreaEndRow; nRow++)
  1998. {
  1999. for(var nCell = lv_nAreaStartCol; nCell <= lv_nAreaEndCol; nCell++)
  2000. {
  2001. lv_sColID = obj.getCellProperty("body",nCell,"text");
  2002. lv_sVal = obj.getCellValue(nRow,nCell);
  2003. lv_sClipboard = lv_sClipboard + lv_sVal + CONST_SEPARATOR;
  2004. }
  2005. lv_sClipboard = lv_sClipboard.substr(0,lv_sClipboard.length-1);
  2006. lv_sClipboard = lv_sClipboard +String.fromCharCode(10);
  2007. }
  2008. lv_sClipboard = lv_sClipboard.substr(0,lv_sClipboard.length-1);
  2009. iv_sClipboard = lv_sClipboard;
  2010. system.setClipboard("CF_TEXT",lv_sClipboard);
  2011. }
  2012. else
  2013. {
  2014. if (e.ctrlKey == true && e.keycode == 67 )
  2015. {
  2016. grdf_clipboardCopy(obj, "PAM");
  2017. }
  2018. }
  2019. }
  2020. function grp_biz_switch1_case3_grd_prcpspec_oncellclick(obj:Grid, e:GridClickEventInfo)
  2021. {
  2022. var lv_nAreaStartRow;
  2023. var lv_nAreaEndRow;
  2024. var lv_nAreaStartCol;
  2025. var lv_nAreaEndCol;
  2026. if(col == "Y")
  2027. {
  2028. lv_nAreaStartRow = 0;
  2029. lv_nAreaEndRow = parseInt(obj.rowcount-1);
  2030. lv_nAreaStartCol = parseInt(obj.currentcol);
  2031. lv_nAreaEndCol = parseInt(obj.currentcol);
  2032. grdf_initGridStyle(obj);
  2033. for(var nRow = lv_nAreaStartRow; nRow <= lv_nAreaEndRow; nRow++)
  2034. {
  2035. for(var nCell = lv_nAreaStartCol; nCell <= lv_nAreaEndCol; nCell++)
  2036. {
  2037. obj.setCellProperty("body",nCell,"background","#FFE7E5");
  2038. obj.setCellProperty("body",nCell,"background2","#FFE7E5");
  2039. }
  2040. }
  2041. }
  2042. else
  2043. {
  2044. grdf_initGridStyle(obj);
  2045. }
  2046. }
  2047. function grp_biz_switch1_case3_grd_prcpspec_onkeydown(obj:Grid, e:KeyEventInfo)
  2048. {
  2049. if(col == "Y")
  2050. {
  2051. var CONST_SEPARATOR = " "; //컬럼별 구분자
  2052. var lv_oBindDs = eval(obj.binddataset);
  2053. var lv_sColID;
  2054. var lv_sVal;
  2055. var lv_sClipboard = "";
  2056. var lv_nAreaStartRow;
  2057. var lv_nAreaEndRow;
  2058. var lv_nAreaStartCol;
  2059. var lv_nAreaEndCol;
  2060. if(obj.selecttype == "multiarea")
  2061. {
  2062. lv_nAreaStartRow = 0;
  2063. lv_nAreaEndRow = parseInt(obj.rowcount-1);
  2064. lv_nAreaStartCol = parseInt(obj.currentcol);
  2065. lv_nAreaEndCol = parseInt(obj.currentcol);
  2066. }
  2067. for(var nRow = lv_nAreaStartRow; nRow <= lv_nAreaEndRow; nRow++)
  2068. {
  2069. for(var nCell = lv_nAreaStartCol; nCell <= lv_nAreaEndCol; nCell++)
  2070. {
  2071. lv_sColID = obj.getCellProperty("body",nCell,"text");
  2072. lv_sVal = obj.getCellValue(nRow,nCell);
  2073. lv_sClipboard = lv_sClipboard + lv_sVal + CONST_SEPARATOR;
  2074. }
  2075. lv_sClipboard = lv_sClipboard.substr(0,lv_sClipboard.length-1);
  2076. lv_sClipboard = lv_sClipboard +String.fromCharCode(10);
  2077. }
  2078. lv_sClipboard = lv_sClipboard.substr(0,lv_sClipboard.length-1);
  2079. iv_sClipboard = lv_sClipboard;
  2080. system.setClipboard("CF_TEXT",lv_sClipboard);
  2081. }
  2082. else
  2083. {
  2084. if (e.ctrlKey == true && e.keycode == 67 )
  2085. {
  2086. grdf_clipboardCopy(obj, "PAM");
  2087. }
  2088. }
  2089. }
  2090. function button10_onclick(obj:Button, e:ClickEventInfo)
  2091. {
  2092. fInitialize();
  2093. }
  2094. function grp_biz_button9_onclick(obj:Button, e:ClickEventInfo)
  2095. {
  2096. fSrchChk();
  2097. var oParam = {};
  2098. oParam.id = "TRPIF00104";
  2099. oParam.service = "clamuncoapp.ClamUnco";
  2100. oParam.method = "reqGetPresCondCreateFile";
  2101. oParam.inds = "req=ds_send_send_base";
  2102. oParam.outds = "";
  2103. oParam.async = false;
  2104. oParam.callback = "cf_TRPIF00104";
  2105. tranf_submit(oParam);
  2106. }
  2107. function cf_TRPIF00104(sSvcId, nErrorCode, sErrorMsg)
  2108. {
  2109. if(nErrorCode < 0)
  2110. {
  2111. sysf_messageBox("파일 생성시 오류가 발생하였습니다." , "E999");
  2112. }
  2113. else
  2114. {
  2115. sysf_messageBox("파일 생성이 완료 되었습니다." , "E999");
  2116. return;
  2117. }
  2118. }
  2119. function grp_biz_button8_onclick(obj:Button, e:ClickEventInfo)
  2120. {
  2121. var objDate = new Date();
  2122. var todd = objDate.addMonth(-1);
  2123. todd = objDate.toFormatString("%Y%m%d");
  2124. // zsbfOpenBatchLogPopup("clamcretmngtmgr.ClamDataCretMain",getCurrentDate(),todd.getDateFormat());
  2125. var objArg = new Object();
  2126. objArg.todd = todd;
  2127. objArg.execrid = sysf_getUserId();
  2128. objArg.prgmid = "ClamDataCretMain";
  2129. frmf_open("SPZSB00301", "SPZSB00301", objArg, "","","","","","","","","","M");
  2130. }
  2131. function grp_biz_switch1_onchanged(obj:Tab, e:TabIndexChangeEventInfo)
  2132. {
  2133. if(obj.tabindex == 0)
  2134. {
  2135. grp_biz.button8.visible = false;
  2136. grp_biz.button9.visible = false;
  2137. grp_biz.grp_sea.button1.visible = true;
  2138. }
  2139. else if(obj.tabindex == 1)
  2140. {
  2141. grp_biz.button8.visible = true;
  2142. grp_biz.button9.visible = true;
  2143. grp_biz.grp_sea.button1.visible = false;
  2144. }
  2145. else if(obj.tabindex == 2)
  2146. {
  2147. grp_biz.button8.visible = false;
  2148. grp_biz.button9.visible = false;
  2149. grp_biz.grp_sea.button1.visible = false;
  2150. }
  2151. }
  2152. function grp_biz_switch1_case1_grp_prtoption_prt_clamym_onchanged(r)
  2153. {
  2154. var date = eval(r).getData();
  2155. ds_send_prtoption.setColumn(0, "clamym", date);
  2156. }
  2157. ]]></Script>
  2158. </Form>
  2159. </FDL>