SMPIR30700_이의신청결과조회.xfdl 121 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004
  1. <?xml version="1.0" encoding="utf-8"?>
  2. <FDL version="1.5">
  3. <TypeDefinition url="..\..\..\default_typedef.xml"/>
  4. <Form id="SMPIR30700" position="absolute 0 0 1203 790" titletext="이의신청 결과 조회" oninit="SMPIR30700_oninit" onload="SMPIR30700_onload">
  5. <Layouts>
  6. <Layout>
  7. <Div position="absolute 0 20 1195 764" id="group6" scrollbars="autoboth" anchor="all">
  8. <Layouts>
  9. <Layout>
  10. <Static text="결정문서번호" position="absolute 0 116 91 139" align="align:left middle;" id="caption38" class="cell_1" anchor="default"/>
  11. <Static text="결정문서도착일자" position="absolute 257 116 370 139" align="align:left middle;" id="caption39" class="cell_1" anchor="default"/>
  12. <Grid position="absolute 0 171 1194 737" id="grd_rsltqry" class="datagrid2" binddataset="ds_main_list01_gridrsltqry" anchor="all" onexpanddown="group6_grd_rsltqry_onexpanddown" onrbuttondown="group6_grd_rsltqry_onrbuttondown" oncellclick="group6_grd_rsltqry_oncellclick" selecttype="multirow" cellsizingtype="col" onlbuttonup="group6_grd_rsltqry_onlbuttonup" oncelldblclick="group6_grd_rsltqry_oncelldblclick">
  13. <Formats>
  14. <Format id="default">
  15. <Columns>
  16. <Column size="21"/>
  17. <Column size="57"/>
  18. <Column size="56"/>
  19. <Column size="68"/>
  20. <Column size="70"/>
  21. <Column size="0"/>
  22. <Column size="48"/>
  23. <Column size="44"/>
  24. <Column size="72"/>
  25. <Column size="65"/>
  26. <Column size="57"/>
  27. <Column size="54"/>
  28. <Column size="80"/>
  29. <Column size="81"/>
  30. <Column size="112"/>
  31. <Column size="72"/>
  32. <Column size="108"/>
  33. <Column size="39"/>
  34. <Column size="37"/>
  35. <Column size="136"/>
  36. <Column size="90"/>
  37. <Column size="63"/>
  38. <Column size="70"/>
  39. <Column size="70"/>
  40. <Column size="75"/>
  41. <Column size="46"/>
  42. <Column size="46"/>
  43. <Column size="67"/>
  44. <Column size="70"/>
  45. <Column size="70"/>
  46. <Column size="75"/>
  47. <Column size="46"/>
  48. <Column size="46"/>
  49. <Column size="44"/>
  50. <Column size="70"/>
  51. <Column size="70"/>
  52. <Column size="75"/>
  53. <Column size="46"/>
  54. <Column size="46"/>
  55. <Column size="70"/>
  56. <Column size="70"/>
  57. <Column size="70"/>
  58. <Column size="63"/>
  59. <Column size="70"/>
  60. <Column size="70"/>
  61. <Column size="70"/>
  62. <Column size="0"/>
  63. <Column size="0"/>
  64. <Column size="0"/>
  65. <Column size="0"/>
  66. <Column size="0"/>
  67. <Column size="0"/>
  68. <Column size="0"/>
  69. <Column size="0"/>
  70. <Column size="0"/>
  71. <Column size="0"/>
  72. <Column size="0"/>
  73. </Columns>
  74. <Rows>
  75. <Row size="24" band="head"/>
  76. <Row size="24" band="head"/>
  77. <Row size="24"/>
  78. </Rows>
  79. <Band id="head">
  80. <Cell rowspan="2" taborder="undefined"/>
  81. <Cell col="1" rowspan="2" text="청구년월" taborder="undefined"/>
  82. <Cell col="2" rowspan="2" text="보험&#10;유형" taborder="undefined"/>
  83. <Cell col="3" rowspan="2" text="내원&#10;유형" taborder="undefined"/>
  84. <Cell col="4" rowspan="2" text="청구&#10;분야" taborder="undefined"/>
  85. <Cell col="5" text="청구&#10;분야"/>
  86. <Cell col="6" rowspan="2" text="청구&#10;구분" taborder="undefined"/>
  87. <Cell col="7" rowspan="2" text="청구&#10;차수" taborder="undefined"/>
  88. <Cell col="8" rowspan="2" text="이신&#10;구분" taborder="undefined"/>
  89. <Cell col="9" rowspan="2" text="접수번호" taborder="undefined"/>
  90. <Cell col="10" rowspan="2" text="심사차수" taborder="undefined"/>
  91. <Cell col="11" rowspan="2" text="묶음번호" taborder="undefined"/>
  92. <Cell col="12" rowspan="2" text="통보/결정서&#10;도착일자" taborder="undefined"/>
  93. <Cell col="13" rowspan="2" text="이의신청일자" taborder="undefined"/>
  94. <Cell col="14" rowspan="2" text="문서번호&#10;가의강" taborder="undefined"/>
  95. <Cell col="15" rowspan="2" text="결정문서&#10;도착일자" taborder="undefined"/>
  96. <Cell col="16" rowspan="2" text="결정문서&#10;번호" taborder="undefined"/>
  97. <Cell col="17" rowspan="2" text="이신&#10;완료&#10;여부" taborder="undefined"/>
  98. <Cell col="18" rowspan="2" text="완료&#10;여부" taborder="undefined"/>
  99. <Cell col="19" rowspan="2" text="메모" taborder="undefined"/>
  100. <Cell col="20" rowspan="2" text="총진료비" taborder="undefined"/>
  101. <Cell col="21" rowspan="2" text="조정&#10;삭감건수" taborder="undefined"/>
  102. <Cell col="22" colspan="3" text="조정삭감액" taborder="undefined"/>
  103. <Cell col="25" colspan="2" text="삭감율" taborder="undefined"/>
  104. <Cell col="27" rowspan="2" text="이의신청&#10;건수" taborder="undefined"/>
  105. <Cell col="28" colspan="5" text="이의신청액" taborder="undefined"/>
  106. <Cell col="33" rowspan="2" text="결정&#10;건수" taborder="undefined"/>
  107. <Cell col="34" colspan="5" text="인정액" taborder="undefined"/>
  108. <Cell col="39" colspan="3" text="불인정액" taborder="undefined"/>
  109. <Cell col="42" rowspan="2" text="보류건수" taborder="undefined"/>
  110. <Cell col="43" colspan="3" text="보류액" taborder="undefined"/>
  111. <Cell col="46" text="정산심사결정서&#10;도착일자"/>
  112. <Cell col="47" text="정산심사결정서&#10;도착일자"/>
  113. <Cell col="48" text="정산결정차액"/>
  114. <Cell col="49" text="정산결정차액"/>
  115. <Cell col="50" text="정산결정차액"/>
  116. <Cell col="51" text="인정액&#10;정산결정차액"/>
  117. <Cell col="52" text="인정액&#10;정산결정차액"/>
  118. <Cell col="53" text="청구번호"/>
  119. <Cell col="54" text="총진료비"/>
  120. <Cell col="55" text="원외심결&#10;심사차수"/>
  121. <Cell col="56" text="원외&#10;통보일자"/>
  122. <Cell row="1" col="5" text="청구&#10;분야"/>
  123. <Cell row="1" col="22" text="계"/>
  124. <Cell row="1" col="23" text="원내"/>
  125. <Cell row="1" col="24" text="원외"/>
  126. <Cell row="1" col="25" text="원내"/>
  127. <Cell row="1" col="26" text="원외"/>
  128. <Cell row="1" col="28" text="계"/>
  129. <Cell row="1" col="29" text="원내"/>
  130. <Cell row="1" col="30" text="원외"/>
  131. <Cell row="1" col="31" text="원내"/>
  132. <Cell row="1" col="32" text="원외"/>
  133. <Cell row="1" col="34" text="계"/>
  134. <Cell row="1" col="35" text="원내"/>
  135. <Cell row="1" col="36" text="원외"/>
  136. <Cell row="1" col="37" text="원내"/>
  137. <Cell row="1" col="38" text="원외"/>
  138. <Cell row="1" col="39" text="계"/>
  139. <Cell row="1" col="40" text="원내"/>
  140. <Cell row="1" col="41" text="원외"/>
  141. <Cell row="1" col="43" text="계"/>
  142. <Cell row="1" col="44" text="원내"/>
  143. <Cell row="1" col="45" text="원외"/>
  144. <Cell row="1" col="46" text="원내"/>
  145. <Cell row="1" col="47" text="원외"/>
  146. <Cell row="1" col="48" text="계"/>
  147. <Cell row="1" col="49" text="원내"/>
  148. <Cell row="1" col="50" text="원외"/>
  149. <Cell row="1" col="51" text="원내"/>
  150. <Cell row="1" col="52" text="원외"/>
  151. <Cell row="1" col="53" text="청구번호"/>
  152. <Cell row="1" col="54" text="총진료비"/>
  153. <Cell row="1" col="55" text="원외심결&#10;심사차수"/>
  154. <Cell row="1" col="56" text="원외&#10;통보일자"/>
  155. </Band>
  156. <Band id="body">
  157. <Cell celltype="head" expr="currow+1"/>
  158. <Cell col="1" displaytype="date" style="background:EXPR(obtappflag == '06' || obtappflag == '07' ? 'burlywood' : '#ffffff');background2:EXPR(obtappflag == '06' || obtappflag == '07' ? 'burlywood' : '#ffffff');" text="bind:clamym" mask="yyyy-MM"/>
  159. <Cell col="2" displaytype="combo" edittype="combo" style="align:center middle;background:EXPR(obtappflag == '06' || obtappflag == '07' ? 'burlywood' : '#ffffff');background2:EXPR(obtappflag == '06' || obtappflag == '07' ? 'burlywood' : '#ffffff');" text="bind:insukind" combodataset="ds_init_P0421list" combocodecol="cdid" combodatacol="cdnm" enable="false"/>
  160. <Cell col="3" displaytype="combo" edittype="combo" style="align:center middle;background:EXPR(obtappflag == '06' || obtappflag == '07' ? 'burlywood' : '#ffffff');background2:EXPR(obtappflag == '06' || obtappflag == '07' ? 'burlywood' : '#ffffff');" text="bind:chosflag" combodataset="ds_init_P0028list" combocodecol="cdid" combodatacol="cdnm" enable="false"/>
  161. <Cell col="4" displaytype="combo" edittype="combo" style="align:center middle;background:EXPR(obtappflag == '06' || obtappflag == '07' ? 'burlywood' : '#ffffff');background2:EXPR(obtappflag == '06' || obtappflag == '07' ? 'burlywood' : '#ffffff');" text="bind:sumtypecd" combodataset="ds_init_P0458list" combocodecol="cdid" combodatacol="cdnm" enable="false"/>
  162. <Cell col="5" displaytype="combo" edittype="combo" text="bind:ordfildcd" enable="false"/>
  163. <Cell col="6" displaytype="combo" edittype="combo" style="align:center middle;background:EXPR(obtappflag == '06' || obtappflag == '07' ? 'burlywood' : '#ffffff');background2:EXPR(obtappflag == '06' || obtappflag == '07' ? 'burlywood' : '#ffffff');" text="bind:clamflag" combodataset="ds_init_P0426list" combocodecol="cdid" combodatacol="cdnm" enable="false"/>
  164. <Cell col="7" style="background:EXPR(obtappflag == '06' || obtappflag == '07' ? 'burlywood' : '#ffffff');background2:EXPR(obtappflag == '06' || obtappflag == '07' ? 'burlywood' : '#ffffff');" text="bind:clamdegree"/>
  165. <Cell col="8" displaytype="combo" edittype="combo" style="align:center middle;background:EXPR(obtappflag == '06' || obtappflag == '07' ? 'burlywood' : '#ffffff');background2:EXPR(obtappflag == '06' || obtappflag == '07' ? 'burlywood' : '#ffffff');" text="bind:obtappflag" combodataset="ds_init_P0264list" combocodecol="cdid" combodatacol="cdnm" enable="false"/>
  166. <Cell col="9" style="background:EXPR(obtappflag == '06' || obtappflag == '07' ? 'burlywood' : '#ffffff');background2:EXPR(obtappflag == '06' || obtappflag == '07' ? 'burlywood' : '#ffffff');" text="bind:acptno"/>
  167. <Cell col="10" style="background:EXPR(obtappflag == '06' || obtappflag == '07' ? 'burlywood' : '#ffffff');background2:EXPR(obtappflag == '06' || obtappflag == '07' ? 'burlywood' : '#ffffff');" text="bind:judgdg"/>
  168. <Cell col="11" style="background:EXPR(obtappflag == '06' || obtappflag == '07' ? 'burlywood' : '#ffffff');background2:EXPR(obtappflag == '06' || obtappflag == '07' ? 'burlywood' : '#ffffff');" text="bind:setno"/>
  169. <Cell col="12" displaytype="date" style="background:EXPR(obtappflag == '06' || obtappflag == '07' ? 'burlywood' : '#ffffff');background2:EXPR(obtappflag == '06' || obtappflag == '07' ? 'burlywood' : '#ffffff');" text="bind:notidecirepldd" mask="yyyy-MM-dd"/>
  170. <Cell col="13" displaytype="date" style="background:EXPR(obtappflag == '06' || obtappflag == '07' ? 'burlywood' : '#ffffff');background2:EXPR(obtappflag == '06' || obtappflag == '07' ? 'burlywood' : '#ffffff');" text="bind:obtappdd" mask="yyyy-MM-dd"/>
  171. <Cell col="14" style="background:EXPR(obtappflag == '06' || obtappflag == '07' ? 'burlywood' : '#ffffff');background2:EXPR(obtappflag == '06' || obtappflag == '07' ? 'burlywood' : '#ffffff');" text="bind:obtappdocuno"/>
  172. <Cell col="15" displaytype="date" style="background:EXPR(obtappflag == '06' || obtappflag == '07' ? 'burlywood' : '#ffffff');background2:EXPR(obtappflag == '06' || obtappflag == '07' ? 'burlywood' : '#ffffff');" text="bind:decirepldd" mask="yyyy-MM-dd"/>
  173. <Cell col="16" style="background:EXPR(obtappflag == '06' || obtappflag == '07' ? 'burlywood' : '#ffffff');background2:EXPR(obtappflag == '06' || obtappflag == '07' ? 'burlywood' : '#ffffff');" text="bind:decidocuno"/>
  174. <Cell col="17" style="background:EXPR(obtappflag == '06' || obtappflag == '07' ? 'burlywood' : '#ffffff');background2:EXPR(obtappflag == '06' || obtappflag == '07' ? 'burlywood' : '#ffffff');" text="bind:obtappendyn"/>
  175. <Cell col="18" style="background:EXPR(obtappflag == '06' || obtappflag == '07' ? 'burlywood' : '#ffffff');background2:EXPR(obtappflag == '06' || obtappflag == '07' ? 'burlywood' : '#ffffff');" text="bind:endyn"/>
  176. <Cell col="19" displaytype="text" edittype="text" style="background:EXPR(obtappflag == '06' || obtappflag == '07' ? 'burlywood' : '#ffffff');background2:EXPR(obtappflag == '06' || obtappflag == '07' ? 'burlywood' : '#ffffff');" text="bind:rem" expandshow="show" enable="false"/>
  177. <Cell col="20" displaytype="number" style="background:EXPR(obtappflag == '06' || obtappflag == '07' ? 'burlywood' : '#ffffff');background2:EXPR(obtappflag == '06' || obtappflag == '07' ? 'burlywood' : '#ffffff');" text="bind:clclamamt"/>
  178. <Cell col="21" style="background:EXPR(obtappflag == '06' || obtappflag == '07' ? 'burlywood' : '#ffffff');background2:EXPR(obtappflag == '06' || obtappflag == '07' ? 'burlywood' : '#ffffff');" text="bind:adjtrdcnt"/>
  179. <Cell col="22" displaytype="number" style="background:EXPR(obtappflag == '06' || obtappflag == '07' ? 'burlywood' : '#ffffff');background2:EXPR(obtappflag == '06' || obtappflag == '07' ? 'burlywood' : '#ffffff');" text="bind:adjtrdtotamt"/>
  180. <Cell col="23" displaytype="number" style="background:EXPR(obtappflag == '06' || obtappflag == '07' ? 'burlywood' : '#ffffff');background2:EXPR(obtappflag == '06' || obtappflag == '07' ? 'burlywood' : '#ffffff');" text="bind:adjtrdamt"/>
  181. <Cell col="24" displaytype="number" style="background:EXPR(obtappflag == '06' || obtappflag == '07' ? 'burlywood' : '#ffffff');background2:EXPR(obtappflag == '06' || obtappflag == '07' ? 'burlywood' : '#ffffff');" text="bind:oprcpadjtrdamt"/>
  182. <Cell col="25" style="background:EXPR(obtappflag == '06' || obtappflag == '07' ? 'burlywood' : '#ffffff');background2:EXPR(obtappflag == '06' || obtappflag == '07' ? 'burlywood' : '#ffffff');" text="bind:adjtcutrate1"/>
  183. <Cell col="26" style="background:EXPR(obtappflag == '06' || obtappflag == '07' ? 'burlywood' : '#ffffff');background2:EXPR(obtappflag == '06' || obtappflag == '07' ? 'burlywood' : '#ffffff');" text="bind:adjtcutrate2"/>
  184. <Cell col="27" displaytype="number" style="background:EXPR(obtappflag == '06' || obtappflag == '07' ? 'burlywood' : '#ffffff');background2:EXPR(obtappflag == '06' || obtappflag == '07' ? 'burlywood' : '#ffffff');" text="bind:obtappcnt"/>
  185. <Cell col="28" displaytype="number" style="background:EXPR(obtappflag == '06' || obtappflag == '07' ? 'burlywood' : '#ffffff');background2:EXPR(obtappflag == '06' || obtappflag == '07' ? 'burlywood' : '#ffffff');" text="bind:obtapptotamt"/>
  186. <Cell col="29" displaytype="number" style="background:EXPR(obtappflag == '06' || obtappflag == '07' ? 'burlywood' : '#ffffff');background2:EXPR(obtappflag == '06' || obtappflag == '07' ? 'burlywood' : '#ffffff');" text="bind:obtappamt"/>
  187. <Cell col="30" displaytype="number" style="background:EXPR(obtappflag == '06' || obtappflag == '07' ? 'burlywood' : '#ffffff');background2:EXPR(obtappflag == '06' || obtappflag == '07' ? 'burlywood' : '#ffffff');" text="bind:oprcpobtaamt"/>
  188. <Cell col="31" style="background:EXPR(obtappflag == '06' || obtappflag == '07' ? 'burlywood' : '#ffffff');background2:EXPR(obtappflag == '06' || obtappflag == '07' ? 'burlywood' : '#ffffff');" text="bind:adjtcutrate1"/>
  189. <Cell col="32" style="background:EXPR(obtappflag == '06' || obtappflag == '07' ? 'burlywood' : '#ffffff');background2:EXPR(obtappflag == '06' || obtappflag == '07' ? 'burlywood' : '#ffffff');" text="bind:adjtcutrate2"/>
  190. <Cell col="33" displaytype="number" style="background:EXPR(obtappflag == '06' || obtappflag == '07' ? 'burlywood' : '#ffffff');background2:EXPR(obtappflag == '06' || obtappflag == '07' ? 'burlywood' : '#ffffff');" text="bind:decicnt"/>
  191. <Cell col="34" displaytype="number" style="background:EXPR(obtappflag == '06' || obtappflag == '07' ? 'burlywood' : '#ffffff');background2:EXPR(obtappflag == '06' || obtappflag == '07' ? 'burlywood' : '#ffffff');" text="bind:decitotamt"/>
  192. <Cell col="35" displaytype="number" style="background:EXPR(obtappflag == '06' || obtappflag == '07' ? 'burlywood' : '#ffffff');background2:EXPR(obtappflag == '06' || obtappflag == '07' ? 'burlywood' : '#ffffff');" text="bind:deciamt"/>
  193. <Cell col="36" displaytype="number" style="background:EXPR(obtappflag == '06' || obtappflag == '07' ? 'burlywood' : '#ffffff');background2:EXPR(obtappflag == '06' || obtappflag == '07' ? 'burlywood' : '#ffffff');" text="bind:oprcpdeciamt"/>
  194. <Cell col="37" style="background:EXPR(obtappflag == '06' || obtappflag == '07' ? 'burlywood' : '#ffffff');background2:EXPR(obtappflag == '06' || obtappflag == '07' ? 'burlywood' : '#ffffff');" text="bind:decirate"/>
  195. <Cell col="38" style="background:EXPR(obtappflag == '06' || obtappflag == '07' ? 'burlywood' : '#ffffff');background2:EXPR(obtappflag == '06' || obtappflag == '07' ? 'burlywood' : '#ffffff');" text="bind:oprcpdecirate"/>
  196. <Cell col="39" displaytype="number" style="background:EXPR(obtappflag == '06' || obtappflag == '07' ? 'burlywood' : '#ffffff');background2:EXPR(obtappflag == '06' || obtappflag == '07' ? 'burlywood' : '#ffffff');" text="bind:ndecitotamt"/>
  197. <Cell col="40" displaytype="number" style="background:EXPR(obtappflag == '06' || obtappflag == '07' ? 'burlywood' : '#ffffff');background2:EXPR(obtappflag == '06' || obtappflag == '07' ? 'burlywood' : '#ffffff');" text="bind:ndeciamt"/>
  198. <Cell col="41" displaytype="number" style="background:EXPR(obtappflag == '06' || obtappflag == '07' ? 'burlywood' : '#ffffff');background2:EXPR(obtappflag == '06' || obtappflag == '07' ? 'burlywood' : '#ffffff');" text="bind:noprcpdeciamt"/>
  199. <Cell col="42" displaytype="number" style="background:EXPR(obtappflag == '06' || obtappflag == '07' ? 'burlywood' : '#ffffff');background2:EXPR(obtappflag == '06' || obtappflag == '07' ? 'burlywood' : '#ffffff');" text="bind:retecnt"/>
  200. <Cell col="43" displaytype="number" style="background:EXPR(obtappflag == '06' || obtappflag == '07' ? 'burlywood' : '#ffffff');background2:EXPR(obtappflag == '06' || obtappflag == '07' ? 'burlywood' : '#ffffff');" text="bind:retetotamt"/>
  201. <Cell col="44" displaytype="number" style="background:EXPR(obtappflag == '06' || obtappflag == '07' ? 'burlywood' : '#ffffff');background2:EXPR(obtappflag == '06' || obtappflag == '07' ? 'burlywood' : '#ffffff');" text="bind:reteamt"/>
  202. <Cell col="45" displaytype="number" style="background:EXPR(obtappflag == '06' || obtappflag == '07' ? 'burlywood' : '#ffffff');background2:EXPR(obtappflag == '06' || obtappflag == '07' ? 'burlywood' : '#ffffff');" text="bind:oprcpreteamt"/>
  203. <Cell col="46" text="bind:calcrepldd" mask="yyyy-mm-dd"/>
  204. <Cell col="47" text="bind:oprcpcalcrepldd" mask="yyyy-mm-dd"/>
  205. <Cell col="48" text="bind:calcdecitotamt" mask="(-)#,###"/>
  206. <Cell col="49" text="bind:calcdeciamt" mask="(-)#,###"/>
  207. <Cell col="50" text="bind:oprcpcalcdeciamt" mask="(-)#,###"/>
  208. <Cell col="51" text="bind:calcdecidifamt" mask="(-)#,###"/>
  209. <Cell col="52" text="bind:oprcpcalcdecidifamt" mask="(-)#,###"/>
  210. <Cell col="53" text="bind:clamno"/>
  211. <Cell col="54" text="bind:clclamamt1" mask="(-)#,###"/>
  212. <Cell col="55" text="bind:oprcjrjudgdegree"/>
  213. <Cell col="56" text="bind:oprcnotidd" mask="yyyy-mm-dd"/>
  214. </Band>
  215. </Format>
  216. </Formats>
  217. </Grid>
  218. <Shape position="absolute 0 166 1194 172" linetype="horizontal" id="line12" class="line_1" anchor="left top right" style="strokepen:3 solid #33bbbbff;"/>
  219. <Button position="absolute 949 146 1076 165" id="button5" class="btn7" text="명일련별 엑셀저장" anchor="top right" onclick="group6_button5_onclick"/>
  220. <Static text="접수번호별 이의신청 결과" position="absolute 0 150 274 171" id="caption32" class="tit_2" anchor="default"/>
  221. <Div position="absolute 0 4 1195 113" align="align:center top;" id="group2" anchor="left top right" class="div_SA">
  222. <Layouts>
  223. <Layout>
  224. <Static text="보험유형 :" position="absolute 472 9 558 26" id="caption3" class="search_name" anchor="default"/>
  225. <Shape position="absolute 1087 20 1093 42" linetype="vertical" id="line13" class="line_4" anchor="top right"/>
  226. <Button position="absolute 1105 20 1173 42" id="btn_search" class="btn1" taborder="3" text="조 회" anchor="top right" onclick="group6_group2_btn_search_onclick"/>
  227. <Combo position="absolute 321 82 456 101" id="cmb_clamflag" class="combo_search" taborder="8" innerdataset="@ds_init_P0426list" datacolumn="cdnm" codecolumn="cdid" anchor="default"/>
  228. <Radio position="absolute 15 5 256 30" id="rdo_termflag1" class="radio_search" columncount="3" rowcount="1" codecolumn="codecolumn" datacolumn="datacolumn" anchor="default" onitemchanged="group6_group2_rdo_termflag1_onitemchanged">
  229. <Dataset id="innerdataset">
  230. <ColumnInfo>
  231. <Column id="codecolumn"/>
  232. <Column id="datacolumn"/>
  233. </ColumnInfo>
  234. <Rows>
  235. <Row>
  236. <Col id="codecolumn">1</Col>
  237. <Col id="datacolumn">심결통보일</Col>
  238. </Row>
  239. <Row>
  240. <Col id="codecolumn">2</Col>
  241. <Col id="datacolumn">이의신청일</Col>
  242. </Row>
  243. <Row>
  244. <Col id="codecolumn">3</Col>
  245. <Col id="datacolumn">청구년월</Col>
  246. </Row>
  247. </Rows>
  248. </Dataset>
  249. </Radio>
  250. <Static text="청구구분 :" position="absolute 213 83 324 100" id="caption1" class="search_name" anchor="default"/>
  251. <Radio position="absolute 559 6 800 29" id="rdo_insukind" class="radio_search" columncount="5" codecolumn="codecolumn" datacolumn="datacolumn" anchor="default">
  252. <Dataset id="innerdataset">
  253. <ColumnInfo>
  254. <Column id="codecolumn"/>
  255. <Column id="datacolumn"/>
  256. </ColumnInfo>
  257. <Rows>
  258. <Row>
  259. <Col id="codecolumn">1</Col>
  260. <Col id="datacolumn">전체</Col>
  261. </Row>
  262. <Row>
  263. <Col id="codecolumn">2</Col>
  264. <Col id="datacolumn">보험</Col>
  265. </Row>
  266. <Row>
  267. <Col id="codecolumn">3</Col>
  268. <Col id="datacolumn">보호</Col>
  269. </Row>
  270. <Row>
  271. <Col id="codecolumn">5</Col>
  272. <Col id="datacolumn">자보</Col>
  273. </Row>
  274. <Row>
  275. <Col id="codecolumn">4</Col>
  276. <Col id="datacolumn">산재</Col>
  277. </Row>
  278. </Rows>
  279. </Dataset>
  280. </Radio>
  281. <Static text="내원유형 :" position="absolute 472 33 565 50" id="caption7" class="search_name" anchor="default"/>
  282. <Static text="마감구분 :" position="absolute 472 58 558 75" id="caption11" class="search_name" anchor="default"/>
  283. <Radio position="absolute 559 53 726 76" id="rdo_endyn" class="radio_search" columncount="4" codecolumn="codecolumn" datacolumn="datacolumn" anchor="default">
  284. <Dataset id="innerdataset">
  285. <ColumnInfo>
  286. <Column id="codecolumn"/>
  287. <Column id="datacolumn"/>
  288. </ColumnInfo>
  289. <Rows>
  290. <Row>
  291. <Col id="codecolumn">1</Col>
  292. <Col id="datacolumn">전체</Col>
  293. </Row>
  294. <Row>
  295. <Col id="codecolumn">2</Col>
  296. <Col id="datacolumn">완료</Col>
  297. </Row>
  298. <Row>
  299. <Col id="codecolumn">3</Col>
  300. <Col id="datacolumn">미완료</Col>
  301. </Row>
  302. </Rows>
  303. </Dataset>
  304. </Radio>
  305. <Radio position="absolute 559 29 700 52" id="rdo_chosflag" class="radio_search" columncount="4" codecolumn="codecolumn" datacolumn="datacolumn" anchor="default">
  306. <Dataset id="innerdataset">
  307. <ColumnInfo>
  308. <Column id="codecolumn"/>
  309. <Column id="datacolumn"/>
  310. </ColumnInfo>
  311. <Rows>
  312. <Row>
  313. <Col id="codecolumn">1</Col>
  314. <Col id="datacolumn">전체</Col>
  315. </Row>
  316. <Row>
  317. <Col id="codecolumn">2</Col>
  318. <Col id="datacolumn">입원</Col>
  319. </Row>
  320. <Row>
  321. <Col id="codecolumn">3</Col>
  322. <Col id="datacolumn">외래</Col>
  323. </Row>
  324. </Rows>
  325. </Dataset>
  326. </Radio>
  327. <Static text="심사차수 :" position="absolute 1013 82 1099 99" id="caption12" class="search_name" anchor="top right"/>
  328. <Static text="~" position="absolute 356 10 368 27" id="caption2" class="search_no_b" anchor="default"/>
  329. <Calendar position="absolute 265 8 351 27" id="ipt_fromobtappdd" class="input_search" taborder="10" mask="yyyy-mm-dd" anchor="default" dateformat="yyyy-MM-dd" value="null" onchanged="group6_group2_ipt_fromobtappdd_onchanged"/>
  330. <Calendar position="absolute 369 9 455 28" id="ipt_toobtappdd" class="input_search" taborder="11" mask="yyyy-mm-dd" anchor="default" dateformat="yyyy-MM-dd" value="null"/>
  331. <Static text="청구분야 :" position="absolute 17 83 116 100" id="caption4" class="search_name" anchor="default"/>
  332. <Combo position="absolute 102 82 195 101" id="cmb_ordfildcd" class="combo_search" taborder="9" innerdataset="@ds_init_P0458list" datacolumn="cdnm" codecolumn="cdid" anchor="default"/>
  333. <Static text="접수번호 :" position="absolute 808 82 904 99" id="caption13" class="search_name" anchor="default"/>
  334. <Edit position="absolute 102 33 195 52" id="ipt_patunitsrch1" class="input_s_essential" anchor="default" onkeydown="group6_group2_ipt_patunitsrch1_onkeydown"/>
  335. <Static text="환자조회 :" position="absolute 17 34 112 51" id="caption18" class="search_name" anchor="default"/>
  336. <Edit position="absolute 1093 81 1183 100" id="ipt_judgdg" class="input_s_essential" taborder="1" anchor="top right" onkeydown="group6_group2_ipt_judgdg_onkeydown"/>
  337. <Edit position="absolute 910 80 1000 99" id="ipt_acptno" class="input_s_essential" taborder="2" anchor="default" onkeydown="group6_group2_ipt_acptno_onkeydown"/>
  338. <Combo position="absolute 691 80 794 99" id="cmb_obtappflag" class="combo_search" taborder="7" innerdataset="@ds_init_P0264list" datacolumn="cdnm" codecolumn="cdid" anchor="default" onitemchanged="group6_group2_cmb_obtappflag_onitemchanged"/>
  339. <Static text="이신구분 :" position="absolute 472 83 558 100" id="caption8" class="search_name" anchor="default"/>
  340. <Radio position="absolute 559 78 684 101" id="rdo_rejudgflag" class="radio_search" columncount="-1" codecolumn="codecolumn" datacolumn="datacolumn" anchor="default" rowcount="-1" onitemchanged="group6_group2_rdo_rejudgflag_onitemchanged">
  341. <Dataset id="innerdataset">
  342. <ColumnInfo>
  343. <Column id="codecolumn"/>
  344. <Column id="datacolumn"/>
  345. </ColumnInfo>
  346. <Rows>
  347. <Row>
  348. <Col id="codecolumn">1</Col>
  349. <Col id="datacolumn">전체</Col>
  350. </Row>
  351. <Row>
  352. <Col id="codecolumn">2</Col>
  353. <Col id="datacolumn">재심사제외</Col>
  354. </Row>
  355. </Rows>
  356. </Dataset>
  357. </Radio>
  358. <Static text="이의 신청자 :" position="absolute 213 34 332 51" id="caption15" class="search_name" anchor="default"/>
  359. <Edit position="absolute 321 33 456 52" id="ipt_obtapprid" class="input_search" anchor="default"/>
  360. <Static text="이상" position="absolute 1004 9 1034 29" id="caption40" anchor="default"/>
  361. <MaskEdit position="absolute 909 8 999 27" align="align:right middle;" id="ipt_obtappamt" class="input_search" mask="#,###" anchor="default"/>
  362. <Static text="인 정 액 :" position="absolute 808 32 911 49" id="caption10" class="search_name" anchor="default"/>
  363. <MaskEdit position="absolute 909 31 999 50" align="align:right middle;" id="ipt_recogamt" class="input_search" mask="#,###" anchor="default"/>
  364. <Static text="이상" position="absolute 1004 32 1034 52" id="caption14" anchor="default"/>
  365. <Static text="이의신청액 :" position="absolute 808 9 911 26" id="caption37" class="search_name" anchor="default"/>
  366. <Edit position="absolute 102 57 195 76" id="ipt_obtappdocuno" class="input_s_essential" anchor="default" onkeydown="group6_group2_ipt_obtappdocuno_onkeydown"/>
  367. <Static text="문서번호 :" position="absolute 17 58 103 75" id="caption16" class="search_name" anchor="default"/>
  368. <Edit position="absolute 321 57 456 76" id="ipt_srchdecidocuno" class="input_search" anchor="default"/>
  369. <Static text="결정문서번호 :" position="absolute 213 58 325 75" id="caption17" class="search_name" anchor="default"/>
  370. <Static text="이상" position="absolute 1004 57 1034 77" id="caption9" anchor="default"/>
  371. <MaskEdit position="absolute 909 56 999 75" align="align:right middle;" id="ipt_cuttotamt" class="input_search" mask="#,###" anchor="default"/>
  372. <Static text="삭감총액 :" position="absolute 808 57 909 74" id="caption19" class="search_name" anchor="default"/>
  373. </Layout>
  374. </Layouts>
  375. </Div>
  376. <Button position="absolute 1077 146 1193 165" id="button1" class="btn7" text="처방별 엑셀저장" anchor="top right" onclick="group6_button1_onclick"/>
  377. <Shape position="absolute 0 114 1194 120" linetype="horizontal" id="line9" class="line_3" anchor="left top right"/>
  378. <Button position="absolute 493 118 535 137" id="button6" class="btn2" taborder="6" text="저장" anchor="default" onclick="group6_button6_onclick"/>
  379. <Shape position="absolute 0 136 1194 142" linetype="horizontal" id="line11" class="line_3" anchor="left top right"/>
  380. <Edit position="absolute 93 118 255 137" align="align:right middle;" id="ipt_decidocuno" class="input_default" taborder="4" anchor="default" style="align:right middle;"/>
  381. <Calendar position="absolute 372 118 490 137" align="align:right middle;" id="ipt_decirepldd" class="input_default" taborder="4" mask="yyyy-mm-dd" anchor="default" dateformat="yyyy-MM-dd" value="null" style="align:right middle;"/>
  382. <Button position="absolute 867 146 947 165" id="button7" class="btn7" text="엑셀저장" anchor="top right" onclick="group6_button7_onclick"/>
  383. <CheckBox position="absolute 1088 62 1183 77" id="chk_delcntsum" anchor="top right" text="부제기간포함" truevalue="D" value="D"/>
  384. <Div position="absolute 875 275 1180 477" id="grp_memo" visible="false" anchor="default" style="background:#ffffffff;border:1 solid gainsboro ;">
  385. <Layouts>
  386. <Layout>
  387. <Static text="메모" position="absolute 6 1 124 23" id="cpt_text" class="tit_2" anchor="default"/>
  388. <Shape position="absolute 5 12 299 28" linetype="horizontal" id="line1" class="line_1" anchor="default" style="strokepen:3 solid #33bbbbff;"/>
  389. <TextArea position="absolute 5 22 299 176" align="align:left top;" id="txt_text" anchor="default" scrollbars="autovert" wordwrap="word"/>
  390. <Button position="absolute 243 177 299 199" id="btn_closememo" class="btn4" text="확인" anchor="default" onclick="group6_grp_memo_btn_closememo_onclick"/>
  391. </Layout>
  392. </Layouts>
  393. </Div>
  394. <Grid position="absolute 10 590 1180 700" align="align:center middle;" id="grd_pirhobtspec" class="datagrid2" visible="false" binddataset="ds_main_list03_gridobtrsltspec" anchor="default" cellsizingtype="col">
  395. <Formats>
  396. <Format id="default">
  397. <Columns>
  398. <Column size="26"/>
  399. <Column size="60"/>
  400. <Column size="80"/>
  401. <Column size="60"/>
  402. <Column size="60"/>
  403. <Column size="60"/>
  404. <Column size="70"/>
  405. <Column size="82"/>
  406. <Column size="71"/>
  407. <Column size="60"/>
  408. <Column size="40"/>
  409. <Column size="30"/>
  410. <Column size="40"/>
  411. <Column size="40"/>
  412. <Column size="40"/>
  413. <Column size="40"/>
  414. <Column size="70"/>
  415. <Column size="70"/>
  416. <Column size="200"/>
  417. <Column size="60"/>
  418. <Column size="50"/>
  419. <Column size="50"/>
  420. <Column size="50"/>
  421. <Column size="50"/>
  422. <Column size="50"/>
  423. <Column size="50"/>
  424. <Column size="50"/>
  425. <Column size="50"/>
  426. <Column size="63"/>
  427. <Column size="63"/>
  428. <Column size="63"/>
  429. <Column size="40"/>
  430. <Column size="40"/>
  431. <Column size="35"/>
  432. <Column size="35"/>
  433. <Column size="64"/>
  434. <Column size="64"/>
  435. <Column size="64"/>
  436. <Column size="40"/>
  437. <Column size="35"/>
  438. <Column size="35"/>
  439. <Column size="63"/>
  440. <Column size="63"/>
  441. <Column size="63"/>
  442. <Column size="63"/>
  443. <Column size="63"/>
  444. <Column size="63"/>
  445. <Column size="62"/>
  446. <Column size="63"/>
  447. <Column size="63"/>
  448. <Column size="40"/>
  449. <Column size="35"/>
  450. <Column size="35"/>
  451. <Column size="80"/>
  452. <Column size="63"/>
  453. <Column size="63"/>
  454. <Column size="63"/>
  455. <Column size="63"/>
  456. <Column size="59"/>
  457. <Column size="128"/>
  458. <Column size="50"/>
  459. <Column size="50"/>
  460. <Column size="50"/>
  461. <Column size="50"/>
  462. <Column size="50"/>
  463. <Column size="50"/>
  464. <Column size="50"/>
  465. <Column size="50"/>
  466. <Column size="50"/>
  467. <Column size="50"/>
  468. <Column size="50"/>
  469. <Column size="50"/>
  470. <Column size="74"/>
  471. <Column size="50"/>
  472. <Column size="75"/>
  473. <Column size="50"/>
  474. <Column size="50"/>
  475. <Column size="50"/>
  476. <Column size="67"/>
  477. <Column size="71"/>
  478. <Column size="100"/>
  479. <Column size="100"/>
  480. </Columns>
  481. <Rows>
  482. <Row size="31" band="head"/>
  483. <Row size="24" band="head"/>
  484. <Row size="24"/>
  485. </Rows>
  486. <Band id="head">
  487. <Cell rowspan="2" taborder="undefined"/>
  488. <Cell col="1" rowspan="2" text="진료과" taborder="undefined"/>
  489. <Cell col="2" rowspan="2" text="진료의" taborder="undefined"/>
  490. <Cell col="3" rowspan="2" text="명일련" taborder="undefined"/>
  491. <Cell col="4" rowspan="2" text="등록번호" taborder="undefined"/>
  492. <Cell col="5" rowspan="2" text="환자이름" taborder="undefined"/>
  493. <Cell col="6" rowspan="2" text="상병코드" taborder="undefined"/>
  494. <Cell col="7" rowspan="2" text="퇴원일자" taborder="undefined"/>
  495. <Cell col="8" rowspan="2" text="이의&#10;신청자코드" taborder="undefined"/>
  496. <Cell col="9" rowspan="2" text="이의&#10;신청자" taborder="undefined"/>
  497. <Cell col="10" rowspan="2" text="줄번호" taborder="undefined"/>
  498. <Cell col="11" rowspan="2" text="항" taborder="undefined"/>
  499. <Cell col="12" rowspan="2" text="구분" taborder="undefined"/>
  500. <Cell col="13" rowspan="2" text="구분2" taborder="undefined"/>
  501. <Cell col="14" rowspan="2" text="조정&#10;사유" taborder="undefined"/>
  502. <Cell col="15" rowspan="2" text="I, II&#10;구분" taborder="undefined"/>
  503. <Cell col="16" rowspan="2" text="처방코드" taborder="undefined"/>
  504. <Cell col="17" rowspan="2" text="EDI코드" taborder="undefined"/>
  505. <Cell col="18" rowspan="2" text="처방명칭" taborder="undefined"/>
  506. <Cell col="19" rowspan="2" text="단가" taborder="undefined"/>
  507. <Cell col="20" rowspan="2" text="청구&#10;수량" taborder="undefined"/>
  508. <Cell col="21" rowspan="2" text="청구&#10;1회량" taborder="undefined"/>
  509. <Cell col="22" rowspan="2" text="청구&#10;일투" taborder="undefined"/>
  510. <Cell col="23" rowspan="2" text="청구&#10;총투" taborder="undefined"/>
  511. <Cell col="24" rowspan="2" text="조정&#10;삭감&#10;수량" taborder="undefined"/>
  512. <Cell col="25" rowspan="2" text="조정&#10;1회량" taborder="undefined"/>
  513. <Cell col="26" rowspan="2" text="조정&#10;일투" taborder="undefined"/>
  514. <Cell col="27" rowspan="2" text="조정&#10;총투" taborder="undefined"/>
  515. <Cell col="28" colspan="3" text="조정삭감액" taborder="undefined"/>
  516. <Cell col="31" rowspan="2" text="이신&#10;수량" taborder="undefined"/>
  517. <Cell col="32" rowspan="2" text="이신&#10;1회량" taborder="undefined"/>
  518. <Cell col="33" rowspan="2" text="이의&#10;일투" taborder="undefined"/>
  519. <Cell col="34" rowspan="2" text="이의&#10;총투" taborder="undefined"/>
  520. <Cell col="35" colspan="3" text="이의신청액" taborder="undefined"/>
  521. <Cell col="38" rowspan="2" text="인정&#10;1회량" taborder="undefined"/>
  522. <Cell col="39" rowspan="2" text="인정&#10;일투" taborder="undefined"/>
  523. <Cell col="40" rowspan="2" text="인정&#10;총투" taborder="undefined"/>
  524. <Cell col="41" colspan="3" text="인정액" taborder="undefined"/>
  525. <Cell col="44" colspan="3" text="불인정액" taborder="undefined"/>
  526. <Cell col="47" colspan="3" text="보류액" taborder="undefined"/>
  527. <Cell col="50" rowspan="2" text="정산&#10;1회량" taborder="undefined"/>
  528. <Cell col="51" rowspan="2" text="정산&#10;일투" taborder="undefined"/>
  529. <Cell col="52" rowspan="2" text="정산&#10;총투" taborder="undefined"/>
  530. <Cell col="53" colspan="5" text="정산결정차액" taborder="undefined"/>
  531. <Cell col="58" rowspan="2" text="다음&#10;단계" taborder="undefined"/>
  532. <Cell col="59" rowspan="2" text="비고란" taborder="undefined"/>
  533. <Cell col="60" rowspan="2" text="청구&#10;년월" taborder="undefined"/>
  534. <Cell col="61" rowspan="2" text="보험&#10;유형" taborder="undefined"/>
  535. <Cell col="62" rowspan="2" text="내원&#10;유형" taborder="undefined"/>
  536. <Cell col="63" rowspan="2" text="청구&#10;분야" taborder="undefined"/>
  537. <Cell col="64" rowspan="2" text="청구&#10;구분" taborder="undefined"/>
  538. <Cell col="65" rowspan="2" text="청구&#10;차수" taborder="undefined"/>
  539. <Cell col="66" rowspan="2" text="이신&#10;구분" taborder="undefined"/>
  540. <Cell col="67" rowspan="2" text="접수&#10;번호" taborder="undefined"/>
  541. <Cell col="68" rowspan="2" text="심사&#10;차수" taborder="undefined"/>
  542. <Cell col="69" rowspan="2" text="묶음&#10;번호" taborder="undefined"/>
  543. <Cell col="70" rowspan="2" text="청구&#10;번호" taborder="undefined"/>
  544. <Cell col="71" rowspan="2" text="총&#10;진료비" taborder="undefined"/>
  545. <Cell col="72" rowspan="2" text="이의&#10;신청&#10;일자" taborder="undefined"/>
  546. <Cell col="73" rowspan="2" text="문서번호&#10;가의강" taborder="undefined"/>
  547. <Cell col="74" rowspan="2" text="결정문서&#10;도착일자" taborder="undefined"/>
  548. <Cell col="75" rowspan="2" text="결정&#10;문서&#10;번호" taborder="undefined"/>
  549. <Cell col="76" rowspan="2" text="이신&#10;완료&#10;여부" taborder="undefined"/>
  550. <Cell col="77" rowspan="2" text="완료&#10;여부" taborder="undefined"/>
  551. <Cell col="78" colspan="2" text="정산내역서&#10;도착일자" taborder="undefined"/>
  552. <Cell col="80" rowspan="2" text="원외심결&#10;심사차수" taborder="undefined"/>
  553. <Cell col="81" rowspan="2" text="원외&#10;통보일자" taborder="undefined"/>
  554. <Cell row="1" col="28" text="계"/>
  555. <Cell row="1" col="29" text="원내"/>
  556. <Cell row="1" col="30" text="원외"/>
  557. <Cell row="1" col="35" text="계"/>
  558. <Cell row="1" col="36" text="원내"/>
  559. <Cell row="1" col="37" text="원외"/>
  560. <Cell row="1" col="41" text="계"/>
  561. <Cell row="1" col="42" text="원내"/>
  562. <Cell row="1" col="43" text="원외"/>
  563. <Cell row="1" col="44" text="계"/>
  564. <Cell row="1" col="45" text="원내"/>
  565. <Cell row="1" col="46" text="원외"/>
  566. <Cell row="1" col="47" text="계"/>
  567. <Cell row="1" col="48" text="원내"/>
  568. <Cell row="1" col="49" text="원외"/>
  569. <Cell row="1" col="53" text="계"/>
  570. <Cell row="1" col="54" text="원내"/>
  571. <Cell row="1" col="55" text="원외"/>
  572. <Cell row="1" col="56" text="원내"/>
  573. <Cell row="1" col="57" text="원외"/>
  574. <Cell row="1" col="78" text="원내"/>
  575. <Cell row="1" col="79" text="원외"/>
  576. </Band>
  577. <Band id="body">
  578. <Cell celltype="head" expr="currow+1"/>
  579. <Cell col="1" text="bind:orddeptabbr"/>
  580. <Cell col="2" text="bind:atdoctnm"/>
  581. <Cell col="3" text="bind:docuseqno"/>
  582. <Cell col="4" text="bind:pid"/>
  583. <Cell col="5" text="bind:patnm"/>
  584. <Cell col="6" text="bind:maindiag"/>
  585. <Cell col="7" displaytype="date" text="bind:dschdd" mask="yyyy-MM-dd" calendardisplaynulltype="nulltext"/>
  586. <Cell col="8" text="bind:obtappid"/>
  587. <Cell col="9" text="bind:judgrnm"/>
  588. <Cell col="10" text="bind:lnno"/>
  589. <Cell col="11" text="bind:item"/>
  590. <Cell col="12" text="bind:division"/>
  591. <Cell col="13" text="bind:division2"/>
  592. <Cell col="14" text="bind:adjtresncd"/>
  593. <Cell col="15" text="bind:matractflag"/>
  594. <Cell col="16" text="bind:snglcalcscorcd"/>
  595. <Cell col="17" text="bind:edicd"/>
  596. <Cell col="18" text="bind:hngnm"/>
  597. <Cell col="19" displaytype="number" text="bind:unitcost"/>
  598. <Cell col="20" text="bind:clamqty"/>
  599. <Cell col="21" text="bind:clamonesqty"/>
  600. <Cell col="22" text="bind:clamone"/>
  601. <Cell col="23" text="bind:clamtot"/>
  602. <Cell col="24" text="bind:adjtrdqty"/>
  603. <Cell col="25" text="bind:adjtonesqty"/>
  604. <Cell col="26" text="bind:adjtone"/>
  605. <Cell col="27" text="bind:adjttot"/>
  606. <Cell col="28" displaytype="number" text="bind:adjtrdtotamt"/>
  607. <Cell col="29" displaytype="number" text="bind:adjtrdamt"/>
  608. <Cell col="30" displaytype="number" text="bind:oprcpadjtrdamt"/>
  609. <Cell col="31" text="bind:obtappqty"/>
  610. <Cell col="32" text="bind:obtapponesqty"/>
  611. <Cell col="33" displaytype="text" edittype="text" text="bind:obtappdayqty"/>
  612. <Cell col="34" displaytype="text" edittype="text" text="bind:obtapptotqty"/>
  613. <Cell col="35" displaytype="number" text="bind:obtapptotamt"/>
  614. <Cell col="36" displaytype="number" text="bind:obtappamt"/>
  615. <Cell col="37" displaytype="number" text="bind:oprcpobtappamt"/>
  616. <Cell col="38" displaytype="number" text="bind:recogonesqty"/>
  617. <Cell col="39" text="bind:recogdayqty"/>
  618. <Cell col="40" text="bind:recogtotqty"/>
  619. <Cell col="41" displaytype="number" text="bind:recogtotamt"/>
  620. <Cell col="42" displaytype="number" text="bind:recogamt"/>
  621. <Cell col="43" displaytype="number" text="bind:oprcprecogamt"/>
  622. <Cell col="44" displaytype="number" text="bind:nrecogtotamt"/>
  623. <Cell col="45" displaytype="number" text="bind:nrecogamt"/>
  624. <Cell col="46" displaytype="number" text="bind:noprcprecogamt"/>
  625. <Cell col="47" displaytype="number" text="bind:retetotamt"/>
  626. <Cell col="48" displaytype="number" text="bind:reteamt"/>
  627. <Cell col="49" displaytype="number" text="bind:oprcpreteamt"/>
  628. <Cell col="50" text="bind:calconesqty"/>
  629. <Cell col="51" text="bind:calcdayqty"/>
  630. <Cell col="52" text="bind:calctotqty"/>
  631. <Cell col="53" displaytype="number" text="bind:calcdecitotamt"/>
  632. <Cell col="54" displaytype="number" text="bind:calcdeciamt"/>
  633. <Cell col="55" displaytype="number" text="bind:oprcpcalcdeciamt"/>
  634. <Cell col="56" displaytype="number" text="bind:calcdecidifamt"/>
  635. <Cell col="57" displaytype="number" text="bind:oprcpcalcdecidifamt"/>
  636. <Cell col="58" text="bind:reclamyn"/>
  637. <Cell col="59" displaytype="text" edittype="text" text="bind:ordmemo"/>
  638. <Cell col="60" displaytype="date" text="bind:clamym" mask="yyyy-MM" calendardisplaynulltype="nulltext"/>
  639. <Cell col="61" text="bind:insukind"/>
  640. <Cell col="62" text="bind:chosflag"/>
  641. <Cell col="63" text="bind:ordfildcd"/>
  642. <Cell col="64" text="bind:clamflag"/>
  643. <Cell col="65" text="bind:clamdg"/>
  644. <Cell col="66" text="bind:obtappflag"/>
  645. <Cell col="67" text="bind:acptno"/>
  646. <Cell col="68" text="bind:judgdg"/>
  647. <Cell col="69" text="bind:setno"/>
  648. <Cell col="70" text="bind:clamno"/>
  649. <Cell col="71" displaytype="number" text="bind:clclamamt"/>
  650. <Cell col="72" displaytype="date" text="bind:obtappdd" mask="yyyy-MM-dd" calendardisplaynulltype="nulltext"/>
  651. <Cell col="73" text="bind:obtappdocuno"/>
  652. <Cell col="74" displaytype="date" text="bind:decirepldd" mask="yyyy-MM-dd" calendardisplaynulltype="nulltext"/>
  653. <Cell col="75" text="bind:decidocuno"/>
  654. <Cell col="76" text="bind:obtappendyn"/>
  655. <Cell col="77" text="bind:endyn"/>
  656. <Cell col="78" displaytype="date" text="bind:calcnotidd" mask="yyyy-MM-dd" calendardisplaynulltype="nulltext"/>
  657. <Cell col="79" displaytype="date" text="bind:oprccalcnotidd" mask="yyyy-MM-dd" calendardisplaynulltype="nulltext"/>
  658. <Cell col="80" text="bind:oprcjrjudgdegree"/>
  659. <Cell col="81" displaytype="date" text="bind:oprcnotidd" mask="yyyy-MM-dd" calendardisplaynulltype="nulltext"/>
  660. </Band>
  661. </Format>
  662. </Formats>
  663. </Grid>
  664. <Grid position="absolute 10 480 1179 590" align="align:center middle;" id="grd_griddocu" class="datagrid2" visible="false" binddataset="ds_main_list02_griddocu" anchor="default" cellsizingtype="col">
  665. <Formats>
  666. <Format id="default">
  667. <Columns>
  668. <Column size="29"/>
  669. <Column size="60"/>
  670. <Column size="80"/>
  671. <Column size="60"/>
  672. <Column size="60"/>
  673. <Column size="60"/>
  674. <Column size="70"/>
  675. <Column size="72"/>
  676. <Column size="71"/>
  677. <Column size="60"/>
  678. <Column size="40"/>
  679. <Column size="30"/>
  680. <Column size="40"/>
  681. <Column size="40"/>
  682. <Column size="40"/>
  683. <Column size="64"/>
  684. <Column size="46"/>
  685. <Column size="40"/>
  686. <Column size="40"/>
  687. <Column size="70"/>
  688. <Column size="70"/>
  689. <Column size="200"/>
  690. <Column size="64"/>
  691. <Column size="40"/>
  692. <Column size="35"/>
  693. <Column size="35"/>
  694. <Column size="63"/>
  695. <Column size="63"/>
  696. <Column size="63"/>
  697. <Column size="63"/>
  698. <Column size="52"/>
  699. <Column size="35"/>
  700. <Column size="35"/>
  701. <Column size="80"/>
  702. <Column size="63"/>
  703. <Column size="63"/>
  704. <Column size="59"/>
  705. <Column size="128"/>
  706. <Column size="50"/>
  707. <Column size="50"/>
  708. <Column size="50"/>
  709. <Column size="50"/>
  710. <Column size="76"/>
  711. <Column size="50"/>
  712. <Column size="69"/>
  713. <Column size="50"/>
  714. <Column size="50"/>
  715. <Column size="50"/>
  716. <Column size="74"/>
  717. <Column size="72"/>
  718. <Column size="55"/>
  719. <Column size="100"/>
  720. </Columns>
  721. <Rows>
  722. <Row size="28" band="head"/>
  723. <Row size="24" band="head"/>
  724. <Row size="24"/>
  725. </Rows>
  726. <Band id="head">
  727. <Cell rowspan="2" taborder="undefined"/>
  728. <Cell col="1" rowspan="2" text="진료과" taborder="undefined"/>
  729. <Cell col="2" rowspan="2" text="진료의" taborder="undefined"/>
  730. <Cell col="3" rowspan="2" text="명일련" taborder="undefined"/>
  731. <Cell col="4" rowspan="2" text="등록번호" taborder="undefined"/>
  732. <Cell col="5" rowspan="2" text="환자이름" taborder="undefined"/>
  733. <Cell col="6" rowspan="2" text="상병코드" taborder="undefined"/>
  734. <Cell col="7" rowspan="2" text="퇴원일자" taborder="undefined"/>
  735. <Cell col="8" rowspan="2" text="이의&#10;신청자코드" taborder="undefined"/>
  736. <Cell col="9" rowspan="2" text="이의&#10;신청자" taborder="undefined"/>
  737. <Cell col="10" colspan="3" text="조정삭감액" taborder="undefined"/>
  738. <Cell col="13" colspan="3" text="이의신청액" taborder="undefined"/>
  739. <Cell col="16" colspan="3" text="인정액" taborder="undefined"/>
  740. <Cell col="19" colspan="3" text="불인정액" taborder="undefined"/>
  741. <Cell col="22" colspan="3" text="보류액" taborder="undefined"/>
  742. <Cell col="25" colspan="3" text="정산결정차액" taborder="undefined"/>
  743. <Cell col="28" colspan="2" text="인정액-정산결정차액" taborder="undefined"/>
  744. <Cell col="30" rowspan="2" text="청구&#10;년월" taborder="undefined"/>
  745. <Cell col="31" rowspan="2" text="보험&#10;유형" taborder="undefined"/>
  746. <Cell col="32" rowspan="2" text="내원&#10;유형" taborder="undefined"/>
  747. <Cell col="33" rowspan="2" text="청구&#10;분야" taborder="undefined"/>
  748. <Cell col="34" rowspan="2" text="청구&#10;구분" taborder="undefined"/>
  749. <Cell col="35" rowspan="2" text="청구&#10;차수" taborder="undefined"/>
  750. <Cell col="36" rowspan="2" text="이신&#10;구분" taborder="undefined"/>
  751. <Cell col="37" rowspan="2" text="접수&#10;번호" taborder="undefined"/>
  752. <Cell col="38" rowspan="2" text="심사&#10;차수" taborder="undefined"/>
  753. <Cell col="39" rowspan="2" text="묶음&#10;번호" taborder="undefined"/>
  754. <Cell col="40" rowspan="2" text="청구&#10;번호" taborder="undefined"/>
  755. <Cell col="41" rowspan="2" text="총&#10;진료비" taborder="undefined"/>
  756. <Cell col="42" rowspan="2" text="이의&#10;신청&#10;일자" taborder="undefined"/>
  757. <Cell col="43" rowspan="2" text="문서번호&#10;가의강" taborder="undefined"/>
  758. <Cell col="44" rowspan="2" text="결정문서&#10;도착일자" taborder="undefined"/>
  759. <Cell col="45" rowspan="2" text="결정&#10;문서&#10;번호" taborder="undefined"/>
  760. <Cell col="46" rowspan="2" text="이신&#10;완료&#10;여부" taborder="undefined"/>
  761. <Cell col="47" rowspan="2" text="완료&#10;여부" taborder="undefined"/>
  762. <Cell col="48" colspan="2" text="정산내역서&#10;도착일자" taborder="undefined"/>
  763. <Cell col="50" rowspan="2" text="원외심결&#10;심사차수" taborder="undefined"/>
  764. <Cell col="51" rowspan="2" text="원외&#10;통보일자" taborder="undefined"/>
  765. <Cell row="1" col="10" text="계"/>
  766. <Cell row="1" col="11" text="원내"/>
  767. <Cell row="1" col="12" text="원외"/>
  768. <Cell row="1" col="13" text="계"/>
  769. <Cell row="1" col="14" text="원내"/>
  770. <Cell row="1" col="15" text="원외"/>
  771. <Cell row="1" col="16" text="계"/>
  772. <Cell row="1" col="17" text="원내"/>
  773. <Cell row="1" col="18" text="원외"/>
  774. <Cell row="1" col="19" text="계"/>
  775. <Cell row="1" col="20" text="원내"/>
  776. <Cell row="1" col="21" text="원외"/>
  777. <Cell row="1" col="22" text="계"/>
  778. <Cell row="1" col="23" text="원내"/>
  779. <Cell row="1" col="24" text="원외"/>
  780. <Cell row="1" col="25" text="계"/>
  781. <Cell row="1" col="26" text="원내"/>
  782. <Cell row="1" col="27" text="원외"/>
  783. <Cell row="1" col="28" text="원내"/>
  784. <Cell row="1" col="29" text="원외"/>
  785. <Cell row="1" col="48" text="원내"/>
  786. <Cell row="1" col="49" text="원외"/>
  787. </Band>
  788. <Band id="body">
  789. <Cell celltype="head" expr="currow+1"/>
  790. <Cell col="1" text="bind:orddeptabbr"/>
  791. <Cell col="2" text="bind:atdoctnm"/>
  792. <Cell col="3" text="bind:docuseqno"/>
  793. <Cell col="4" text="bind:pid"/>
  794. <Cell col="5" text="bind:patnm"/>
  795. <Cell col="6" text="bind:maindiag"/>
  796. <Cell col="7" displaytype="date" text="bind:dschdd" mask="yyyy-MM-dd" calendardisplaynulltype="nulltext"/>
  797. <Cell col="8" text="bind:obtappid"/>
  798. <Cell col="9" text="bind:judgrnm"/>
  799. <Cell col="10" displaytype="number" text="bind:adjtrdtotamt"/>
  800. <Cell col="11" displaytype="number" text="bind:adjtrdamt"/>
  801. <Cell col="12" displaytype="number" text="bind:oprcpadjtrdamt"/>
  802. <Cell col="13" displaytype="number" text="bind:obtapptotamt"/>
  803. <Cell col="14" displaytype="number" text="bind:obtappamt"/>
  804. <Cell col="15" displaytype="number" text="bind:oprcpobtappamt"/>
  805. <Cell col="16" displaytype="number" text="bind:recogtotamt"/>
  806. <Cell col="17" displaytype="number" text="bind:recogamt"/>
  807. <Cell col="18" displaytype="number" text="bind:oprcprecogamt"/>
  808. <Cell col="19" displaytype="number" text="bind:nrecogtotamt"/>
  809. <Cell col="20" displaytype="number" text="bind:nrecogamt"/>
  810. <Cell col="21" displaytype="number" text="bind:noprcprecogamt"/>
  811. <Cell col="22" displaytype="number" text="bind:retetotamt"/>
  812. <Cell col="23" displaytype="number" text="bind:reteamt"/>
  813. <Cell col="24" displaytype="number" text="bind:oprcpreteamt"/>
  814. <Cell col="25" displaytype="number" text="bind:calcdecitotamt"/>
  815. <Cell col="26" displaytype="number" text="bind:calcdeciamt"/>
  816. <Cell col="27" displaytype="number" text="bind:oprcpcalcdeciamt"/>
  817. <Cell col="28" displaytype="number" text="bind:calcdecidifamt"/>
  818. <Cell col="29" displaytype="number" text="bind:oprcpcalcdecidifamt"/>
  819. <Cell col="30" displaytype="date" text="bind:clamym" mask="yyyy-MM" calendardisplaynulltype="nulltext"/>
  820. <Cell col="31" text="bind:insukind"/>
  821. <Cell col="32" text="bind:chosflag"/>
  822. <Cell col="33" text="bind:ordfildcd"/>
  823. <Cell col="34" text="bind:clamflag"/>
  824. <Cell col="35" text="bind:clamdg"/>
  825. <Cell col="36" text="bind:obtappflag"/>
  826. <Cell col="37" text="bind:acptno"/>
  827. <Cell col="38" text="bind:judgdg"/>
  828. <Cell col="39" text="bind:setno"/>
  829. <Cell col="40" text="bind:clamno"/>
  830. <Cell col="41" displaytype="number" text="bind:clclamamt"/>
  831. <Cell col="42" displaytype="date" text="bind:obtappdd" mask="yyyy-MM-dd" calendardisplaynulltype="nulltext"/>
  832. <Cell col="43" text="bind:obtappdocuno"/>
  833. <Cell col="44" displaytype="date" text="bind:decirepldd" mask="yyyy-MM-dd" calendardisplaynulltype="nulltext"/>
  834. <Cell col="45" text="bind:decidocuno"/>
  835. <Cell col="46" text="bind:obtappendyn"/>
  836. <Cell col="47" text="bind:endyn"/>
  837. <Cell col="48" displaytype="date" text="bind:calcnotidd" mask="yyyy-MM-dd" calendardisplaynulltype="nulltext"/>
  838. <Cell col="49" displaytype="date" text="bind:oprccalcnotidd" mask="yyyy-MM-dd" calendardisplaynulltype="nulltext"/>
  839. <Cell col="50" text="bind:oprcjrjudgdegree"/>
  840. <Cell col="51" displaytype="date" text="bind:oprcnotidd" mask="yyyy-MM-dd" calendardisplaynulltype="nulltext"/>
  841. </Band>
  842. </Format>
  843. </Formats>
  844. </Grid>
  845. <Static text="** 접수번호, 심사차수, 문서번호, 등록번호로 조회시 기간 등 조회조건은 무시됩니다. **" position="absolute 703 120 1193 136" id="caption6" anchor="top right" style="background:#f5feb8ff 0;color:#fa0413ff;font:Dotum,8,bold;"/>
  846. </Layout>
  847. </Layouts>
  848. </Div>
  849. <Div position="absolute 0 757 1194 784" id="grp_btn" anchor="left right bottom">
  850. <Layouts>
  851. <Layout>
  852. <Shape position="absolute 0 0 1194 6" linetype="horizontal" id="line32" class="line_6" anchor="left right bottom"/>
  853. <Button position="absolute 3 5 107 27" id="button3" class="btn3" text="이의신청 조회" onclick="grp_btn_button3_onclick"/>
  854. <Button position="absolute 1138 4 1194 26" id="button4" class="btn4" text="닫기" anchor="right bottom" onclick="grp_btn_button4_onclick"/>
  855. <Button position="absolute 1069 4 1137 26" id="btn_init" class="btn4" taborder="22" text="초기화" anchor="right bottom" onclick="grp_btn_btn_init_onclick"/>
  856. </Layout>
  857. </Layouts>
  858. </Div>
  859. <Static id="cap_title" text="이의신청 결과 조회" class="tit_1" position="absolute 0 0 216 23"/>
  860. <PopupMenu id="pmn_menu1" innerdataset="ds_menu" idcolumn="func" captioncolumn="label" levelcolumn="level" onmenuclick="pmn_menu1_onmenuclick" onmouseleave="pmn_menu1_onmouseleave" position="absolute 1224 50 1367 73"/>
  861. </Layout>
  862. </Layouts>
  863. <Objects>
  864. <Dataset id="ds_send_send_dataqry" firefirstcount="0" firenextcount="0" useclientlayout="false" updatecontrol="true" enableevent="true" loadkeymode="keep" loadfiltermode="keep" reversesubsum="false">
  865. <ColumnInfo>
  866. <Column id="termflag1" type="STRING" size="256"/>
  867. <Column id="fromobtappdd" type="STRING" size="256"/>
  868. <Column id="toobtappdd" type="STRING" size="256"/>
  869. <Column id="patunitsrch1" type="STRING" size="256"/>
  870. <Column id="obtappdocuno" type="STRING" size="256"/>
  871. <Column id="ordfildcd" type="STRING" size="256"/>
  872. <Column id="obtapprid" type="STRING" size="256"/>
  873. <Column id="decidocuno" type="STRING" size="256"/>
  874. <Column id="clamflag" type="STRING" size="256"/>
  875. <Column id="insukind" type="STRING" size="256"/>
  876. <Column id="chosflag" type="STRING" size="256"/>
  877. <Column id="obtapprsltendflag" type="STRING" size="256"/>
  878. <Column id="rejudgflag" type="STRING" size="256"/>
  879. <Column id="obtappflag" type="STRING" size="256"/>
  880. <Column id="obtappamt" type="STRING" size="256"/>
  881. <Column id="recogamt" type="STRING" size="256"/>
  882. <Column id="cuttotamt" type="STRING" size="256"/>
  883. <Column id="acptno" type="STRING" size="256"/>
  884. <Column id="delcntsum" type="STRING" size="256"/>
  885. <Column id="judgdg" type="STRING" size="256"/>
  886. <Column id="srchflag" type="STRING" size="256"/>
  887. <Column id="patunitsrch2" type="STRING" size="256"/>
  888. </ColumnInfo>
  889. <Rows>
  890. <Row>
  891. <Col id="insukind">1</Col>
  892. <Col id="chosflag">1</Col>
  893. <Col id="obtapprsltendflag">3</Col>
  894. <Col id="rejudgflag">1</Col>
  895. <Col id="termflag1"/>
  896. </Row>
  897. </Rows>
  898. </Dataset>
  899. <Dataset id="ds_main_list04_deciinfo" firefirstcount="0" firenextcount="0" useclientlayout="false" updatecontrol="true" enableevent="true" loadkeymode="keep" loadfiltermode="keep" reversesubsum="false">
  900. <ColumnInfo>
  901. <Column id="decirepldd" type="STRING" size="256"/>
  902. <Column id="decidocuno" type="STRING" size="256"/>
  903. </ColumnInfo>
  904. <Rows>
  905. <Row/>
  906. </Rows>
  907. </Dataset>
  908. <Dataset id="ds_main_list01_gridrsltqry" firefirstcount="0" firenextcount="0" useclientlayout="true" updatecontrol="true" enableevent="true" loadkeymode="keep" loadfiltermode="keep" reversesubsum="false">
  909. <ColumnInfo>
  910. <Column id="clamym" type="STRING" size="256" sumtext="청구년월"/>
  911. <Column id="insukind" type="STRING" size="256" sumtext="보험유형"/>
  912. <Column id="chosflag" type="STRING" size="256" sumtext="입원외래구분"/>
  913. <Column id="ordfildcd" type="STRING" size="256" sumtext="진료분야"/>
  914. <Column id="clamflag" type="STRING" size="256" sumtext="청구구분"/>
  915. <Column id="clamdegree" type="STRING" size="256" sumtext="청구차수"/>
  916. <Column id="obtappflag" type="STRING" size="256" sumtext="이의신청구분"/>
  917. <Column id="acptno" type="STRING" size="256" sumtext="접수번호"/>
  918. <Column id="judgdg" type="STRING" size="256" sumtext="심사차수"/>
  919. <Column id="setno" type="STRING" size="256" sumtext="묶음번호"/>
  920. <Column id="notidecirepldd" type="STRING" size="256" sumtext="통보/결정서도착일"/>
  921. <Column id="obtappdd" type="STRING" size="256" sumtext="이의신청일"/>
  922. <Column id="obtappdocuno" type="STRING" size="256" sumtext="이의신청문서번호"/>
  923. <Column id="decirepldd" type="STRING" size="256" sumtext="결정회신일자"/>
  924. <Column id="decidocuno" type="STRING" size="256" sumtext="결정문서번호"/>
  925. <Column id="obtappendyn" type="STRING" size="256" sumtext="이신완료여부"/>
  926. <Column id="endyn" type="STRING" size="256" sumtext="종결여부"/>
  927. <Column id="rem" type="STRING" size="256" sumtext="비고"/>
  928. <Column id="clclamamt" type="STRING" size="256" sumtext="요양급여비용총액"/>
  929. <Column id="adjtrdcnt" type="STRING" size="256" sumtext="조정삭감건수"/>
  930. <Column id="adjtrdtotamt" type="STRING" size="256" sumtext="조정삭감액_계"/>
  931. <Column id="adjtrdamt" type="STRING" size="256" sumtext="조정삭감액_원내"/>
  932. <Column id="oprcpadjtrdamt" type="STRING" size="256" sumtext="조정삭감액_원외"/>
  933. <Column id="adjtcutrate" type="STRING" size="256" sumtext="조정삭감율_계"/>
  934. <Column id="adjtcutrate1" type="STRING" size="256" sumtext="조정삭감율_원내"/>
  935. <Column id="adjtcutrate2" type="STRING" size="256" sumtext="조정삭감율_원외"/>
  936. <Column id="obtappcnt" type="STRING" size="256" sumtext="이의신청건수"/>
  937. <Column id="obtapptotamt" type="STRING" size="256" sumtext="이의신청액_계"/>
  938. <Column id="obtappamt" type="STRING" size="256" sumtext="이의신청액_원내"/>
  939. <Column id="oprcpobtaamt" type="STRING" size="256" sumtext="이의신청액_원외"/>
  940. <Column id="obtappcutrate" type="STRING" size="256" sumtext="이의신청율_계"/>
  941. <Column id="obtappcutrate1" type="STRING" size="256" sumtext="이의신청율_원내"/>
  942. <Column id="obtappcutrate2" type="STRING" size="256" sumtext="이의신청율_원외"/>
  943. <Column id="decicnt" type="STRING" size="256" sumtext="결정건수"/>
  944. <Column id="decitotamt" type="STRING" size="256" sumtext="인정액_계"/>
  945. <Column id="deciamt" type="STRING" size="256" sumtext="인정액_원내"/>
  946. <Column id="oprcpdeciamt" type="STRING" size="256" sumtext="인정액_원외"/>
  947. <Column id="decirate" type="STRING" size="256" sumtext="인정율_원내"/>
  948. <Column id="oprcpdecirate" type="STRING" size="256" sumtext="인정율_원외"/>
  949. <Column id="ndecitotamt" type="STRING" size="256" sumtext="불인정액_계"/>
  950. <Column id="ndeciamt" type="STRING" size="256" sumtext="불인정액_원내"/>
  951. <Column id="noprcpdeciamt" type="STRING" size="256" sumtext="불인정액_원외"/>
  952. <Column id="retecnt" type="STRING" size="256" sumtext="보류건수"/>
  953. <Column id="retetotamt" type="STRING" size="256" sumtext="보류액_계"/>
  954. <Column id="reteamt" type="STRING" size="256" sumtext="보류액_원내"/>
  955. <Column id="oprcpreteamt" type="STRING" size="256" sumtext="보류액_원외"/>
  956. <Column id="calcrepldd" type="STRING" size="256" sumtext="정산내역서도착일자_원내"/>
  957. <Column id="oprcpcalcrepldd" type="STRING" size="256" sumtext="정산내역서도착일자_원외"/>
  958. <Column id="calcdecitotamt" type="STRING" size="256" sumtext="정산결정차액_계"/>
  959. <Column id="calcdeciamt" type="STRING" size="256" sumtext="정산결정차액_원내"/>
  960. <Column id="oprcpcalcdeciamt" type="STRING" size="256" sumtext="정산결정차액_원외"/>
  961. <Column id="calcdecidifamt" type="STRING" size="256" sumtext="인정액_정산결정차액_원내"/>
  962. <Column id="oprcpcalcdecidifamt" type="STRING" size="256" sumtext="인정액_정산결정차액_원외"/>
  963. <Column id="clamno" type="STRING" size="256" sumtext="청구번호"/>
  964. <Column id="clclamamt1" type="STRING" size="256" sumtext="총진료비"/>
  965. <Column id="oprcjrjudgdegree" type="STRING" size="256" sumtext="원외심결심사차수"/>
  966. <Column id="oprcnotidd" type="STRING" size="256" sumtext="원외통보일자"/>
  967. <Column id="oprcnotidd" type="STRING" size="256" sumtext="원외통보일자"/>
  968. <Column id="sumtypecd" type="STRING" size="256" sumtext="청구분야"/>
  969. </ColumnInfo>
  970. </Dataset>
  971. <Dataset id="ds_hidden" firefirstcount="0" firenextcount="0" useclientlayout="false" updatecontrol="true" enableevent="true" loadkeymode="keep" loadfiltermode="keep" reversesubsum="false">
  972. <ColumnInfo>
  973. <Column id="memo" type="STRING" size="256"/>
  974. </ColumnInfo>
  975. <Rows>
  976. <Row/>
  977. </Rows>
  978. </Dataset>
  979. <Dataset id="ds_main_list02_griddocu" firefirstcount="0" firenextcount="0" useclientlayout="false" updatecontrol="true" enableevent="true" loadkeymode="keep" loadfiltermode="keep" reversesubsum="false">
  980. <ColumnInfo>
  981. <Column id="orddeptcd" type="STRING" size="256" sumtext="진료과"/>
  982. <Column id="orddeptabbr" type="STRING" size="256" sumtext="진료과약어"/>
  983. <Column id="atdoct" type="STRING" size="256" sumtext="주치의코드"/>
  984. <Column id="atdoctnm" type="STRING" size="256" sumtext="주치의"/>
  985. <Column id="docuseqno" type="STRING" size="256" sumtext="명세서일련번호"/>
  986. <Column id="pid" type="STRING" size="256" sumtext="등록번호"/>
  987. <Column id="patnm" type="STRING" size="256" sumtext="수진자명"/>
  988. <Column id="maindiag" type="STRING" size="256" sumtext="주상병"/>
  989. <Column id="dschdd" type="STRING" size="256" sumtext="퇴원일자"/>
  990. <Column id="obtappid" type="STRING" size="256" sumtext="이의신청자"/>
  991. <Column id="judgrnm" type="STRING" size="256" sumtext="이의신청자명"/>
  992. <Column id="adjtrdtotamt" type="STRING" size="256" sumtext="조정삭감액계"/>
  993. <Column id="adjtrdamt" type="STRING" size="256" sumtext="조정삭감액원내"/>
  994. <Column id="oprcpadjtrdamt" type="STRING" size="256" sumtext="조정삭감액원외"/>
  995. <Column id="obtapptotamt" type="STRING" size="256" sumtext="이의신청액계"/>
  996. <Column id="obtappamt" type="STRING" size="256" sumtext="이의신청액원내"/>
  997. <Column id="oprcpobtappamt" type="STRING" size="256" sumtext="이의신청액원외"/>
  998. <Column id="recogtotamt" type="STRING" size="256" sumtext="인정액계"/>
  999. <Column id="recogamt" type="STRING" size="256" sumtext="인정액"/>
  1000. <Column id="oprcprecogamt" type="STRING" size="256" sumtext="인정액(원외)"/>
  1001. <Column id="nrecogtotamt" type="STRING" size="256" sumtext="불인정액계"/>
  1002. <Column id="nrecogamt" type="STRING" size="256" sumtext="불인정액"/>
  1003. <Column id="noprcprecogamt" type="STRING" size="256" sumtext="불인정액(원외)"/>
  1004. <Column id="retetotamt" type="STRING" size="256" sumtext="보류액계"/>
  1005. <Column id="reteamt" type="STRING" size="256" sumtext="보류액"/>
  1006. <Column id="oprcpreteamt" type="STRING" size="256" sumtext="보류액(원외)"/>
  1007. <Column id="calcdecitotamt" type="STRING" size="256" sumtext="정산결정차액계"/>
  1008. <Column id="calcdeciamt" type="STRING" size="256" sumtext="정산결정차액"/>
  1009. <Column id="oprcpcalcdeciamt" type="STRING" size="256" sumtext="정산결정차액(원외)"/>
  1010. <Column id="calcdecidifamt" type="STRING" size="256" sumtext="인정정산결정차액"/>
  1011. <Column id="oprcpcalcdecidifamt" type="STRING" size="256" sumtext="인정정산결정차액(원외)"/>
  1012. <Column id="clamym" type="STRING" size="256" sumtext="청구년월"/>
  1013. <Column id="insukind" type="STRING" size="256" sumtext="보험유형"/>
  1014. <Column id="chosflag" type="STRING" size="256" sumtext="내원유형"/>
  1015. <Column id="ordfildcd" type="STRING" size="256" sumtext="청구분야"/>
  1016. <Column id="clamflag" type="STRING" size="256" sumtext="청구구분"/>
  1017. <Column id="clamdg" type="STRING" size="256" sumtext="청구차수"/>
  1018. <Column id="obtappflag" type="STRING" size="256" sumtext="이신구분"/>
  1019. <Column id="acptno" type="STRING" size="256" sumtext="접수번호"/>
  1020. <Column id="judgdg" type="STRING" size="256" sumtext="심사차수"/>
  1021. <Column id="setno" type="STRING" size="256" sumtext="묶음번호"/>
  1022. <Column id="clamno" type="STRING" size="256" sumtext="청구번호"/>
  1023. <Column id="clclamamt" type="STRING" size="256" sumtext="총진료비"/>
  1024. <Column id="obtappdd" type="STRING" size="256" sumtext="이신일자"/>
  1025. <Column id="obtappdocuno" type="STRING" size="256" sumtext="문서번호가의강"/>
  1026. <Column id="decirepldd" type="STRING" size="256" sumtext="결정문서번호도착일"/>
  1027. <Column id="decidocuno" type="STRING" size="256" sumtext="결정문서번호"/>
  1028. <Column id="obtappendyn" type="STRING" size="256" sumtext="이신완료여부"/>
  1029. <Column id="endyn" type="STRING" size="256" sumtext="완료여부"/>
  1030. <Column id="calcnotidd" type="STRING" size="256" sumtext="정산내역도착일원내"/>
  1031. <Column id="oprccalcnotidd" type="STRING" size="256" sumtext="정산내역도착일원외"/>
  1032. <Column id="oprcjrjudgdegree" type="STRING" size="256" sumtext="원외심결심사차수"/>
  1033. <Column id="oprcnotidd" type="STRING" size="256" sumtext="원외통보일자"/>
  1034. </ColumnInfo>
  1035. </Dataset>
  1036. <Dataset id="ds_main_list03_gridobtrsltspec" firefirstcount="0" firenextcount="0" useclientlayout="false" updatecontrol="true" enableevent="true" loadkeymode="keep" loadfiltermode="keep" reversesubsum="false">
  1037. <ColumnInfo>
  1038. <Column id="orddeptcd" type="STRING" size="256" sumtext="진료과"/>
  1039. <Column id="orddeptabbr" type="STRING" size="256" sumtext="진료과약어"/>
  1040. <Column id="atdoct" type="STRING" size="256" sumtext="주치의코드"/>
  1041. <Column id="atdoctnm" type="STRING" size="256" sumtext="주치의"/>
  1042. <Column id="docuseqno" type="STRING" size="256" sumtext="명세서일련번호"/>
  1043. <Column id="pid" type="STRING" size="256" sumtext="등록번호"/>
  1044. <Column id="patnm" type="STRING" size="256" sumtext="수진자명"/>
  1045. <Column id="maindiag" type="STRING" size="256" sumtext="주상병"/>
  1046. <Column id="dschdd" type="STRING" size="256" sumtext="퇴원일자"/>
  1047. <Column id="obtappid" type="STRING" size="256" sumtext="이의신청자"/>
  1048. <Column id="judgrnm" type="STRING" size="256" sumtext="이의신청자명"/>
  1049. <Column id="lnno" type="STRING" size="256" sumtext="줄번호"/>
  1050. <Column id="item" type="STRING" size="256" sumtext="항"/>
  1051. <Column id="division" type="STRING" size="256" sumtext="구분"/>
  1052. <Column id="division2" type="STRING" size="256" sumtext="구분"/>
  1053. <Column id="adjtresncd" type="STRING" size="256" sumtext="조정사유"/>
  1054. <Column id="matractflag" type="STRING" size="256" sumtext="I/II구분"/>
  1055. <Column id="snglcalcscorcd" type="STRING" size="256" sumtext="처방코드"/>
  1056. <Column id="edicd" type="STRING" size="256" sumtext="EDI코드"/>
  1057. <Column id="hngnm" type="STRING" size="256" sumtext="처방명칭"/>
  1058. <Column id="unitcost" type="STRING" size="256" sumtext="단가"/>
  1059. <Column id="clamqty" type="STRING" size="256" sumtext="청구수량"/>
  1060. <Column id="clamonesqty" type="STRING" size="256" sumtext="청구1회량"/>
  1061. <Column id="clamone" type="STRING" size="256" sumtext="청구일투"/>
  1062. <Column id="clamtot" type="STRING" size="256" sumtext="청구총투"/>
  1063. <Column id="adjtrdqty" type="STRING" size="256" sumtext="조정삭감수량"/>
  1064. <Column id="adjtonesqty" type="STRING" size="256" sumtext="조정1회량"/>
  1065. <Column id="adjtone" type="STRING" size="256" sumtext="조정일투"/>
  1066. <Column id="adjttot" type="STRING" size="256" sumtext="조정총투"/>
  1067. <Column id="adjtrdtotamt" type="STRING" size="256" sumtext="조정삭감액계"/>
  1068. <Column id="adjtrdamt" type="STRING" size="256" sumtext="조정삭감액원내"/>
  1069. <Column id="oprcpadjtrdamt" type="STRING" size="256" sumtext="조정삭감액원외"/>
  1070. <Column id="obtappqty" type="STRING" size="256" sumtext="이신수량"/>
  1071. <Column id="obtapponesqty" type="STRING" size="256" sumtext="이신1회량"/>
  1072. <Column id="obtappdayqty" type="STRING" size="256" sumtext="이의신청일투"/>
  1073. <Column id="obtapptotqty" type="STRING" size="256" sumtext="이의신청총투"/>
  1074. <Column id="obtapptotamt" type="STRING" size="256" sumtext="이의신청액계"/>
  1075. <Column id="obtappamt" type="STRING" size="256" sumtext="이의신청액원내"/>
  1076. <Column id="oprcpobtappamt" type="STRING" size="256" sumtext="이의신청액원외"/>
  1077. <Column id="recogonesqty" type="STRING" size="256" sumtext="인정1회량"/>
  1078. <Column id="recogdayqty" type="STRING" size="256" sumtext="인정일투"/>
  1079. <Column id="recogtotqty" type="STRING" size="256" sumtext="인정총투"/>
  1080. <Column id="recogtotamt" type="STRING" size="256" sumtext="인정액계"/>
  1081. <Column id="recogamt" type="STRING" size="256" sumtext="인정액"/>
  1082. <Column id="oprcprecogamt" type="STRING" size="256" sumtext="인정액(원외)"/>
  1083. <Column id="nrecogtotamt" type="STRING" size="256" sumtext="불인정액계"/>
  1084. <Column id="nrecogamt" type="STRING" size="256" sumtext="불인정액"/>
  1085. <Column id="noprcprecogamt" type="STRING" size="256" sumtext="불인정액(원외)"/>
  1086. <Column id="retetotamt" type="STRING" size="256" sumtext="보류액계"/>
  1087. <Column id="reteamt" type="STRING" size="256" sumtext="보류액"/>
  1088. <Column id="oprcpreteamt" type="STRING" size="256" sumtext="보류액(원외)"/>
  1089. <Column id="calconesqty" type="STRING" size="256" sumtext="정산1회량"/>
  1090. <Column id="calcdayqty" type="STRING" size="256" sumtext="정산일투"/>
  1091. <Column id="calctotqty" type="STRING" size="256" sumtext="정산총투"/>
  1092. <Column id="calcdecitotamt" type="STRING" size="256" sumtext="정산결정차액계"/>
  1093. <Column id="calcdeciamt" type="STRING" size="256" sumtext="정산결정차액"/>
  1094. <Column id="oprcpcalcdeciamt" type="STRING" size="256" sumtext="정산결정차액(원외)"/>
  1095. <Column id="calcdecidifamt" type="STRING" size="256" sumtext="인정정산결정차액"/>
  1096. <Column id="oprcpcalcdecidifamt" type="STRING" size="256" sumtext="인정정산결정차액(원외)"/>
  1097. <Column id="reclamyn" type="STRING" size="256" sumtext="다음단계"/>
  1098. <Column id="ordmemo" type="STRING" size="256" sumtext="처방별메모"/>
  1099. <Column id="clamym" type="STRING" size="256" sumtext="청구년월"/>
  1100. <Column id="insukind" type="STRING" size="256" sumtext="보험유형"/>
  1101. <Column id="chosflag" type="STRING" size="256" sumtext="내원유형"/>
  1102. <Column id="ordfildcd" type="STRING" size="256" sumtext="청구분야"/>
  1103. <Column id="clamflag" type="STRING" size="256" sumtext="청구구분"/>
  1104. <Column id="clamdg" type="STRING" size="256" sumtext="청구차수"/>
  1105. <Column id="obtappflag" type="STRING" size="256" sumtext="이신구분"/>
  1106. <Column id="acptno" type="STRING" size="256" sumtext="접수번호"/>
  1107. <Column id="judgdg" type="STRING" size="256" sumtext="심사차수"/>
  1108. <Column id="setno" type="STRING" size="256" sumtext="묶음번호"/>
  1109. <Column id="clamno" type="STRING" size="256" sumtext="청구번호"/>
  1110. <Column id="clclamamt" type="STRING" size="256" sumtext="총진료비"/>
  1111. <Column id="obtappdd" type="STRING" size="256" sumtext="이신일자"/>
  1112. <Column id="obtappdocuno" type="STRING" size="256" sumtext="문서번호가의강"/>
  1113. <Column id="decirepldd" type="STRING" size="256" sumtext="결정문서번호도착일"/>
  1114. <Column id="decidocuno" type="STRING" size="256" sumtext="결정문서번호"/>
  1115. <Column id="obtappendyn" type="STRING" size="256" sumtext="이신완료여부"/>
  1116. <Column id="endyn" type="STRING" size="256" sumtext="완료여부"/>
  1117. <Column id="calcnotidd" type="STRING" size="256" sumtext="정산내역도착일원내"/>
  1118. <Column id="oprccalcnotidd" type="STRING" size="256" sumtext="정산내역도착일원외"/>
  1119. <Column id="oprcjrjudgdegree" type="STRING" size="256" sumtext="원외심결심사차수"/>
  1120. <Column id="oprcnotidd" type="STRING" size="256" sumtext="원외통보일자"/>
  1121. </ColumnInfo>
  1122. </Dataset>
  1123. <Dataset id="ds_init_P0458list" firefirstcount="0" firenextcount="0" useclientlayout="false" updatecontrol="true" enableevent="true" loadkeymode="keep" loadfiltermode="keep" reversesubsum="false">
  1124. <ColumnInfo>
  1125. <Column id="cdnm" type="STRING" size="256"/>
  1126. <Column id="cdid" type="STRING" size="256"/>
  1127. </ColumnInfo>
  1128. </Dataset>
  1129. <Dataset id="ds_init_P0426list" firefirstcount="0" firenextcount="0" useclientlayout="false" updatecontrol="true" enableevent="true" loadkeymode="keep" loadfiltermode="keep" reversesubsum="false">
  1130. <ColumnInfo>
  1131. <Column id="cdnm" type="STRING" size="256"/>
  1132. <Column id="cdid" type="STRING" size="256"/>
  1133. </ColumnInfo>
  1134. </Dataset>
  1135. <Dataset id="ds_init_P0264list" firefirstcount="0" firenextcount="0" useclientlayout="false" updatecontrol="true" enableevent="true" loadkeymode="keep" loadfiltermode="keep" reversesubsum="false">
  1136. <ColumnInfo>
  1137. <Column id="cdnm" type="STRING" size="256"/>
  1138. <Column id="cdid" type="STRING" size="256"/>
  1139. </ColumnInfo>
  1140. </Dataset>
  1141. <Dataset id="ds_init_P0421list" firefirstcount="0" firenextcount="0" useclientlayout="false" updatecontrol="true" enableevent="true" loadkeymode="keep" loadfiltermode="keep" reversesubsum="false">
  1142. <ColumnInfo>
  1143. <Column id="cdnm" type="STRING" size="256"/>
  1144. <Column id="cdid" type="STRING" size="256"/>
  1145. </ColumnInfo>
  1146. </Dataset>
  1147. <Dataset id="ds_init_P0028list" firefirstcount="0" firenextcount="0" useclientlayout="false" updatecontrol="true" enableevent="true" loadkeymode="keep" loadfiltermode="keep" reversesubsum="false">
  1148. <ColumnInfo>
  1149. <Column id="cdnm" type="STRING" size="256"/>
  1150. <Column id="cdid" type="STRING" size="256"/>
  1151. </ColumnInfo>
  1152. </Dataset>
  1153. <Dataset id="ds_init_P0008list" firefirstcount="0" firenextcount="0" useclientlayout="false" updatecontrol="true" enableevent="true" loadkeymode="keep" loadfiltermode="keep" reversesubsum="false"/>
  1154. <Dataset id="ds_init_P0291list" firefirstcount="0" firenextcount="0" useclientlayout="false" updatecontrol="true" enableevent="true" loadkeymode="keep" loadfiltermode="keep" reversesubsum="false"/>
  1155. <Dataset id="ds_init_P0121list" firefirstcount="0" firenextcount="0" useclientlayout="false" updatecontrol="true" enableevent="true" loadkeymode="keep" loadfiltermode="keep" reversesubsum="false"/>
  1156. <Dataset id="ds_menu" firefirstcount="0" firenextcount="0" useclientlayout="false" updatecontrol="true" enableevent="true" loadkeymode="keep" loadfiltermode="keep" reversesubsum="false">
  1157. <ColumnInfo>
  1158. <Column id="label" type="STRING" size="256"/>
  1159. <Column id="func" type="STRING" size="256"/>
  1160. <Column id="level" type="STRING" size="256"/>
  1161. </ColumnInfo>
  1162. <Rows>
  1163. <Row>
  1164. <Col id="label">이의신청 결과상세 조회</Col>
  1165. <Col id="func">fGridObtAppRsltSpec</Col>
  1166. <Col id="level">0</Col>
  1167. </Row>
  1168. </Rows>
  1169. </Dataset>
  1170. <Dataset id="ds_source_obtapprsltspec" firefirstcount="0" firenextcount="0" useclientlayout="false" updatecontrol="true" enableevent="true" loadkeymode="keep" loadfiltermode="keep" reversesubsum="false">
  1171. <ColumnInfo>
  1172. <Column id="clamno" type="STRING" size="256"/>
  1173. <Column id="acptno" type="STRING" size="256"/>
  1174. <Column id="judgdg" type="STRING" size="256"/>
  1175. <Column id="setno" type="STRING" size="256"/>
  1176. <Column id="notidd" type="STRING" size="256"/>
  1177. <Column id="rejudgflag" type="STRING" size="256"/>
  1178. <Column id="obtappflag" type="STRING" size="256"/>
  1179. <Column id="obtappdocuno" type="STRING" size="256"/>
  1180. <Column id="obtappdd" type="STRING" size="256"/>
  1181. <Column id="decidocuno" type="STRING" size="256"/>
  1182. <Column id="decirepldd" type="STRING" size="256"/>
  1183. <Column id="endyn" type="STRING" size="256"/>
  1184. </ColumnInfo>
  1185. <Rows>
  1186. <Row/>
  1187. </Rows>
  1188. </Dataset>
  1189. <Dataset id="ds_source" firefirstcount="0" firenextcount="0" useclientlayout="false" updatecontrol="true" enableevent="true" loadkeymode="keep" loadfiltermode="keep" reversesubsum="false">
  1190. <ColumnInfo>
  1191. <Column id="judgdg" type="STRING" size="256"/>
  1192. <Column id="clamno" type="STRING" size="256"/>
  1193. <Column id="acptno" type="STRING" size="256"/>
  1194. <Column id="obtappflag" type="STRING" size="256"/>
  1195. <Column id="rem" type="STRING" size="256"/>
  1196. </ColumnInfo>
  1197. <Rows>
  1198. <Row/>
  1199. </Rows>
  1200. </Dataset>
  1201. <Dataset id="ds_hidden_sppir30210_rslt" firefirstcount="0" firenextcount="0" useclientlayout="false" updatecontrol="true" enableevent="true" loadkeymode="keep" loadfiltermode="keep" reversesubsum="false">
  1202. <ColumnInfo>
  1203. <Column id="rem" type="STRING" size="256"/>
  1204. </ColumnInfo>
  1205. <Rows>
  1206. <Row/>
  1207. </Rows>
  1208. </Dataset>
  1209. <Dataset id="ds_send_send_deciinfo" firefirstcount="0" firenextcount="0" useclientlayout="false" updatecontrol="true" enableevent="true" loadkeymode="keep" loadfiltermode="keep" reversesubsum="false">
  1210. <ColumnInfo>
  1211. <Column id="clamno" type="STRING" size="256"/>
  1212. <Column id="judgdg" type="STRING" size="256"/>
  1213. <Column id="acptno" type="STRING" size="256"/>
  1214. <Column id="obtappflag" type="STRING" size="256"/>
  1215. <Column id="status" type="STRING" size="256"/>
  1216. <Column id="decidocuno" type="STRING" size="256"/>
  1217. <Column id="obtappdocuno" type="STRING" size="256"/>
  1218. <Column id="decirepldd" type="STRING" size="256"/>
  1219. </ColumnInfo>
  1220. <Rows>
  1221. <Row/>
  1222. </Rows>
  1223. </Dataset>
  1224. <Dataset id="ds_send_selectlist" firefirstcount="0" firenextcount="0" useclientlayout="false" updatecontrol="true" enableevent="true" loadkeymode="keep" loadfiltermode="keep" reversesubsum="false">
  1225. <ColumnInfo>
  1226. <Column id="judgdg" type="STRING" size="256"/>
  1227. <Column id="clamno" type="STRING" size="256"/>
  1228. <Column id="acptno" type="STRING" size="256"/>
  1229. <Column id="obtappflag" type="STRING" size="256"/>
  1230. </ColumnInfo>
  1231. </Dataset>
  1232. <Dataset id="ds_send_send_prcp" firefirstcount="0" firenextcount="0" useclientlayout="false" updatecontrol="true" enableevent="true" loadkeymode="keep" loadfiltermode="keep" reversesubsum="false">
  1233. <ColumnInfo>
  1234. <Column id="judgdg" type="STRING" size="256"/>
  1235. <Column id="clamno" type="STRING" size="256"/>
  1236. <Column id="acptno" type="STRING" size="256"/>
  1237. <Column id="obtappflag" type="STRING" size="256"/>
  1238. </ColumnInfo>
  1239. </Dataset>
  1240. <Dataset id="ds_source_obtappqry" firefirstcount="0" firenextcount="0" useclientlayout="false" updatecontrol="true" enableevent="true" loadkeymode="keep" loadfiltermode="keep" reversesubsum="false">
  1241. <ColumnInfo>
  1242. <Column id="termflag1" type="STRING" size="256"/>
  1243. <Column id="fromobtappdd" type="STRING" size="256"/>
  1244. <Column id="toobtappdd" type="STRING" size="256"/>
  1245. <Column id="clamflag" type="STRING" size="256"/>
  1246. <Column id="judgdg" type="STRING" size="256"/>
  1247. <Column id="ordfildcd" type="STRING" size="256"/>
  1248. <Column id="acptno" type="STRING" size="256"/>
  1249. <Column id="obtappflag" type="STRING" size="256"/>
  1250. <Column id="obtappdocuno" type="STRING" size="256"/>
  1251. <Column id="chosflag" type="STRING" size="256"/>
  1252. <Column id="insukind" type="STRING" size="256"/>
  1253. <Column id="rejudgflag" type="STRING" size="256"/>
  1254. <Column id="adjtamt" type="STRING" size="256"/>
  1255. <Column id="judgrid" type="STRING" size="256"/>
  1256. <Column id="resttime" type="STRING" size="256"/>
  1257. <Column id="obtappendflag" type="STRING" size="256"/>
  1258. <Column id="patunitsrch1" type="STRING" size="256"/>
  1259. <Column id="patunitsrch2" type="STRING" size="256"/>
  1260. </ColumnInfo>
  1261. <Rows>
  1262. <Row/>
  1263. </Rows>
  1264. </Dataset>
  1265. </Objects>
  1266. <Bind>
  1267. <BindItem id="item0" compid="group6.group2.rdo_termflag1" propid="value" datasetid="ds_send_send_dataqry" columnid="termflag1"/>
  1268. <BindItem id="item1" compid="group6.group2.ipt_patunitsrch1" propid="value" datasetid="ds_send_send_dataqry" columnid="patunitsrch1"/>
  1269. <BindItem id="item2" compid="group6.group2.ipt_obtappdocuno" propid="value" datasetid="ds_send_send_dataqry" columnid="obtappdocuno"/>
  1270. <BindItem id="item3" compid="group6.group2.cmb_ordfildcd" propid="value" datasetid="ds_send_send_dataqry" columnid="ordfildcd"/>
  1271. <BindItem id="item4" compid="group6.group2.ipt_fromobtappdd" propid="value" datasetid="ds_send_send_dataqry" columnid="fromobtappdd"/>
  1272. <BindItem id="item5" compid="group6.group2.ipt_toobtappdd" propid="value" datasetid="ds_send_send_dataqry" columnid="toobtappdd"/>
  1273. <BindItem id="item6" compid="group6.group2.ipt_obtapprid" propid="value" datasetid="ds_send_send_dataqry" columnid="obtapprid"/>
  1274. <BindItem id="item7" compid="group6.group2.ipt_srchdecidocuno" propid="value" datasetid="ds_send_send_dataqry" columnid="decidocuno"/>
  1275. <BindItem id="item8" compid="group6.group2.cmb_clamflag" propid="value" datasetid="ds_send_send_dataqry" columnid="clamflag"/>
  1276. <BindItem id="item9" compid="group6.group2.rdo_insukind" propid="value" datasetid="ds_send_send_dataqry" columnid="insukind"/>
  1277. <BindItem id="item10" compid="group6.group2.rdo_chosflag" propid="value" datasetid="ds_send_send_dataqry" columnid="chosflag"/>
  1278. <BindItem id="item11" compid="group6.group2.rdo_endyn" propid="value" datasetid="ds_send_send_dataqry" columnid="obtapprsltendflag"/>
  1279. <BindItem id="item12" compid="group6.group2.rdo_rejudgflag" propid="value" datasetid="ds_send_send_dataqry" columnid="rejudgflag"/>
  1280. <BindItem id="item13" compid="group6.group2.cmb_obtappflag" propid="value" datasetid="ds_send_send_dataqry" columnid="obtappflag"/>
  1281. <BindItem id="item14" compid="group6.group2.ipt_obtappamt" propid="value" datasetid="ds_send_send_dataqry" columnid="obtappamt"/>
  1282. <BindItem id="item15" compid="group6.group2.ipt_recogamt" propid="value" datasetid="ds_send_send_dataqry" columnid="recogamt"/>
  1283. <BindItem id="item16" compid="group6.group2.ipt_cuttotamt" propid="value" datasetid="ds_send_send_dataqry" columnid="cuttotamt"/>
  1284. <BindItem id="item17" compid="group6.group2.ipt_acptno" propid="value" datasetid="ds_send_send_dataqry" columnid="acptno"/>
  1285. <BindItem id="item18" compid="group6.chk_delcntsum" propid="value" datasetid="ds_send_send_dataqry" columnid="delcntsum"/>
  1286. <BindItem id="item19" compid="group6.group2.ipt_judgdg" propid="value" datasetid="ds_send_send_dataqry" columnid="judgdg"/>
  1287. <BindItem id="item20" compid="group6.ipt_decirepldd" propid="value" datasetid="ds_main_list04_deciinfo" columnid="decirepldd"/>
  1288. <BindItem id="item21" compid="group6.ipt_decidocuno" propid="value" datasetid="ds_main_list04_deciinfo" columnid="decidocuno"/>
  1289. <BindItem id="item22" compid="group6.grp_memo.txt_text" propid="value" datasetid="ds_hidden" columnid="memo"/>
  1290. </Bind>
  1291. <Script type="xscript4.0"><![CDATA[/***************************************************************************************
  1292. * System Name :
  1293. * Job Name :
  1294. * Creator :
  1295. * Make Date : 2016-05-24
  1296. * Description :
  1297. *---------------------------------------------------------------------------------------
  1298. * Modify Date Modifier Modify Description
  1299. *---------------------------------------------------------------------------------------
  1300. * 2016-05-24 Live Converter TF->XP
  1301. *
  1302. *---------------------------------------------------------------------------------------
  1303. ****************************************************************************************/
  1304. include "com_commonxp::comm_main.xjs";
  1305. include "pam_pamcomnxp::PAM001.xjs";
  1306. include "pam_pamcomnxp::PAM.xjs";
  1307. function SMPIR30700_oninit(obj:Form, e:InitEventInfo)
  1308. {
  1309. frmf_initForm(obj);
  1310. }
  1311. function SMPIR30700_onload(obj:Form, e:LoadEventInfo)
  1312. {
  1313. grdf_setToolTipBind(group6.grd_rsltqry);
  1314. CommCode_Load();
  1315. if(!frmf_checkOpener())
  1316. {
  1317. group6.group2.rdo_termflag1.index = 0;
  1318. group6.group2.rdo_insukind.index = 0;
  1319. group6.group2.rdo_chosflag.index = 0;
  1320. group6.group2.rdo_endyn.index = 2;
  1321. group6.group2.rdo_rejudgflag.index = 0;
  1322. group6.chk_delcntsum.value = 0;
  1323. var today = utlf_getCurrentDate();
  1324. ds_send_send_dataqry.setColumn(0, "fromobtappdd", today);
  1325. ds_send_send_dataqry.setColumn(0, "toobtappdd", today);
  1326. ds_send_send_dataqry.setColumn(0, "delcntsum", "D");
  1327. }
  1328. else
  1329. {
  1330. if(!utlf_isNull(ds_send_send_dataqry.getColumn(0, "acptno")))
  1331. {
  1332. ds_send_send_dataqry.setColumn(0, "srchflag", "2");
  1333. var oParam = {};
  1334. oParam.id = "TRPIR30700";
  1335. oParam.service = "cutmngtapp.CutMngt";
  1336. oParam.method = "reqReqObtAppRsltList";
  1337. oParam.inds = "req=ds_send_send_dataqry";
  1338. oParam.outds = "ds_main_list01_gridrsltqry=gridrsltqry";
  1339. oParam.async = false;
  1340. //oParam.callback = "cf_TRPIR30700";
  1341. tranf_submit(oParam);
  1342. }
  1343. }
  1344. }
  1345. function CommCode_Load()
  1346. {
  1347. var arrParam = [{dsNm: "ds_init_P0121list", cdGrpId: "P0121"}
  1348. ,{dsNm: "ds_init_P0291list", cdGrpId: "P0291"}
  1349. ,{dsNm: "ds_init_P0264list", cdGrpId: "P0264"}
  1350. ,{dsNm: "ds_init_P0008list", cdGrpId: "P0008"}
  1351. ,{dsNm: "ds_init_P0028list", cdGrpId: "P0028"}]
  1352. appf_getCodeList(arrParam);
  1353. pamGetDeptCDDrIDList();
  1354. var arrParam = [{dsNm: "ds_init_P0421list", cdGrpId: "P0421"}
  1355. ,{dsNm: "ds_init_P0426list", cdGrpId: "P0426"}
  1356. ,{dsNm: "ds_init_P0458list", cdGrpId: "P0458"}]
  1357. appf_getCodeList(arrParam);
  1358. pamGetDeptCDDrIDList();
  1359. }
  1360. function group6_group2_rdo_termflag1_onitemchanged(obj:Radio, e:ItemChangeEventInfo)
  1361. {
  1362. var termflag1 = "";
  1363. var value = ds_send_send_dataqry.getColumn(0, "termflag1");
  1364. var fromobtappdd = ds_send_send_dataqry.getColumn(0, "fromobtappdd");
  1365. var toobtappdd = ds_send_send_dataqry.getColumn(0, "toobtappdd");
  1366. if(termflag1 == value)
  1367. {
  1368. ds_send_send_dataqry.setColumn(0, "termflag1", "");
  1369. termflag1 = "";
  1370. return
  1371. }
  1372. if(value == "3" || value == "4")
  1373. {
  1374. group6.group2.ipt_fromobtappdd.dateformat = "yyyy-MM";
  1375. group6.group2.ipt_fromobtappdd.editformat = "yyyy-MM";
  1376. group6.group2.ipt_toobtappdd.dateformat = "yyyy-MM";
  1377. group6.group2.ipt_toobtappdd.editformat = "yyyy-MM";
  1378. if(!utlf_isNull(fromobtappdd))
  1379. {
  1380. ds_send_send_dataqry.setColumn(0, "fromobtappdd", String(fromobtappdd).substr(0,6));
  1381. }
  1382. if(!utlf_isNull(toobtappdd))
  1383. {
  1384. ds_send_send_dataqry.setColumn(0, "toobtappdd", String(toobtappdd).substr(0,6));
  1385. }
  1386. }
  1387. else
  1388. {
  1389. group6.group2.ipt_fromobtappdd.dateformat = "yyyy-MM-dd";
  1390. group6.group2.ipt_fromobtappdd.editformat = "yyyy-MM-dd";
  1391. group6.group2.ipt_toobtappdd.dateformat = "yyyy-MM-dd";
  1392. group6.group2.ipt_toobtappdd.editformat = "yyyy-MM-dd";
  1393. if(!utlf_isNull(fromobtappdd) && String(fromobtappdd).length == 6)
  1394. {
  1395. ds_send_send_dataqry.setColumn(0, "fromobtappdd", fromobtappdd+"01");
  1396. }
  1397. if(!utlf_isNull(toobtappdd) && String(toobtappdd).length == 6)
  1398. {
  1399. ds_send_send_dataqry.setColumn(0, "toobtappdd", toobtappdd+"31");
  1400. }
  1401. }
  1402. termflag1 = value;
  1403. group6.group2.ipt_fromobtappdd.setFocus();
  1404. }
  1405. function group6_group2_ipt_fromobtappdd_onchanged(obj:Calendar, e:ChangeEventInfo)
  1406. {
  1407. ds_send_send_dataqry.setColumn(0, "fromobtappdd", obj.value);
  1408. ds_send_send_dataqry.setColumn(0, "toobtappdd", ds_send_send_dataqry.getColumn(0, "fromobtappdd"));
  1409. }
  1410. function group6_group2_ipt_patunitsrch1_onkeydown(obj:Edit, e:KeyEventInfo)
  1411. {
  1412. if(e.keycode == 13)
  1413. {
  1414. if(!utlf_isNull(obj.value))
  1415. {
  1416. obj.updateToDataset();
  1417. fGetInAftJudgTrgtManList();
  1418. group6_group2_btn_search_onclick();
  1419. }
  1420. }
  1421. }
  1422. function fGetInAftJudgTrgtManList()
  1423. {
  1424. var patunitsrch1 = ds_send_send_dataqry.getColumn(0, "patunitsrch1");
  1425. ds_send_send_dataqry.setColumn(0, "patunitsrch1", patunitsrch1);
  1426. if(utlf_isNull(patunitsrch1))
  1427. {
  1428. ds_send_send_dataqry.setColumn(0, "patunitsrch2", "");
  1429. }
  1430. else if(patunitsrch1.isNumber())
  1431. {
  1432. ds_send_send_dataqry.setColumn(0, "patunitsrch2", "pidSrch");
  1433. }
  1434. else
  1435. {
  1436. if(String(patunitsrch1).length > 1)
  1437. {
  1438. ds_send_send_dataqry.setColumn(0, "patunitsrch2", "nmSrch");
  1439. }
  1440. else
  1441. {
  1442. ds_send_send_dataqry.setColumn(0, "patunitsrch2", "");
  1443. sysf_messageBox("환자로 조회시 검색할 환자이름은 2글자 이상", "C001");
  1444. return;
  1445. }
  1446. }
  1447. }
  1448. //조회
  1449. function group6_group2_btn_search_onclick(obj:Button, e:ClickEventInfo)
  1450. {
  1451. if(fChkSend())
  1452. {
  1453. ds_main_list01_gridrsltqry.clearData();
  1454. ds_main_list04_deciinfo.setColumn(0, "decirepldd", "");
  1455. ds_main_list04_deciinfo.setColumn(0, "decidocuno", "");
  1456. fSrchFlag();
  1457. var oParam = {};
  1458. oParam.id = "TRPIR30700";
  1459. oParam.service = "cutmngtapp.CutMngt";
  1460. oParam.method = "reqReqObtAppRsltList";
  1461. oParam.inds = "req=ds_send_send_dataqry";
  1462. oParam.outds = "ds_main_list01_gridrsltqry=gridrsltqry";
  1463. oParam.async = false;
  1464. //oParam.callback = "cf_TRPIR30700";
  1465. tranf_submit(oParam);
  1466. // setRowStyle("grd_rsltqry", "7","06","obtappflag","equal"); //row의 색상을 변경한다.
  1467. // setRowStyle("grd_rsltqry", "7","07","obtappflag","equal"); //row의 색상을 변경한다.
  1468. }
  1469. }
  1470. function fSrchFlag()
  1471. {
  1472. var chk1 = ds_send_send_dataqry.getColumn(0, "patunitsrch1");
  1473. var chk2 = ds_send_send_dataqry.getColumn(0, "obtappdocuno");
  1474. var chk3 = ds_send_send_dataqry.getColumn(0, "acptno");
  1475. var chk4 = ds_send_send_dataqry.getColumn(0, "judgdg");
  1476. if(!utlf_isNull(chk1))
  1477. {
  1478. ds_send_send_dataqry.setColumn(0, "srchflag", "2")
  1479. }
  1480. else if(!utlf_isNull(chk2))
  1481. {
  1482. ds_send_send_dataqry.setColumn(0, "srchflag", "2");
  1483. }
  1484. else if(!utlf_isNull(chk3))
  1485. {
  1486. ds_send_send_dataqry.setColumn(0, "srchflag", "2");
  1487. }
  1488. else if(!utlf_isNull(chk4))
  1489. {
  1490. ds_send_send_dataqry.setColumn(0, "srchflag", "2");
  1491. }
  1492. else
  1493. {
  1494. ds_send_send_dataqry.setColumn(0, "srchflag", "1");
  1495. }
  1496. return true;
  1497. }
  1498. function fChkSend()
  1499. {
  1500. if(utlf_isNull(ds_send_send_dataqry.getColumn(0, "judgdg")) && ds_send_send_dataqry.getColumn(0, "acptno"))
  1501. {
  1502. if(ds_send_send_dataqry.getColumn(0, "termflag1") == "2")
  1503. {
  1504. if(utlf_isNull(ds_send_send_dataqry.getColumn(0, "fromobtappdd")))
  1505. {
  1506. alert("결과수신일자(From)를 입력해 주세요");
  1507. group6.group2.ipt_fromobtappdd.setFocus();
  1508. return false;
  1509. }
  1510. if(utlf_isNull(ds_send_send_dataqry.getColumn(0, "toobtappdd")))
  1511. {
  1512. alert("결과수신일자(To)를 입력해 주세요");
  1513. group6.group2.ipt_toobtappdd.setFocus();
  1514. return false;
  1515. }
  1516. }
  1517. else
  1518. {
  1519. if(utlf_isNull(ds_send_send_dataqry.getColumn(0, "fromobtappdd")))
  1520. {
  1521. alert("이의신청일자(From)를 입력해 주세요");
  1522. group6.group2.ipt_fromobtappdd.setFocus();
  1523. return false;
  1524. }
  1525. if(utlf_isNull(ds_send_send_dataqry.getColumn(0, "toobtappdd")))
  1526. {
  1527. alert("이의신청일자(To)를 입력해 주세요");
  1528. group6.group2.ipt_toobtappdd.setFocus();
  1529. return false;
  1530. }
  1531. }
  1532. }
  1533. if(utlf_isNull(ds_send_send_dataqry.getColumn(0, "termflag1")) && utlf_isNull(ds_send_send_dataqry.getColumn(0, "fromobtappdd")) && utlf_isNull(ds_send_send_dataqry.getColumn(0, "toobtappdd")))
  1534. {
  1535. if(utlf_isNull(ds_send_send_dataqry.getColumn(0, "judgdg")))
  1536. {
  1537. alert("심사차수를 입력해 주세요");
  1538. group6.group2.ipt_judgdg.setFocus();
  1539. return false;
  1540. }
  1541. if(utlf_isNull(ds_send_send_dataqry.getColumn(0, "acptno")))
  1542. {
  1543. alert("접수번호를 입력해 주세요");
  1544. group6.group2.ipt_acptno.setFocus();
  1545. return false;
  1546. }
  1547. }
  1548. return true;
  1549. }
  1550. function group6_group2_ipt_obtappdocuno_onkeydown(obj:Edit, e:KeyEventInfo)
  1551. {
  1552. if(e.keycode == 13)
  1553. {
  1554. group6_group2_btn_search_onclick();
  1555. }
  1556. }
  1557. function group6_group2_rdo_rejudgflag_onitemchanged(obj:Radio, e:ItemChangeEventInfo)
  1558. {
  1559. ds_send_send_dataqry.setColumn(0, "obtappflag", "");
  1560. }
  1561. function group6_group2_cmb_obtappflag_onitemchanged(obj:Combo, e:ItemChangeEventInfo)
  1562. {
  1563. ds_send_send_dataqry.setColumn(0, "rejudgflag", "");
  1564. }
  1565. function group6_group2_ipt_acptno_onkeydown(obj:Edit, e:KeyEventInfo)
  1566. {
  1567. if(e.keycode == 13)
  1568. {
  1569. group6_group2_btn_search_onclick();
  1570. }
  1571. }
  1572. function group6_group2_ipt_judgdg_onkeydown(obj:Edit, e:KeyEventInfo)
  1573. {
  1574. if(e.keycode == 13)
  1575. {
  1576. group6_group2_btn_search_onclick();
  1577. }
  1578. }
  1579. function group6_grd_rsltqry_oncelldblclick(obj:Grid, e:GridClickEventInfo)
  1580. {
  1581. var curr_row = e.row;
  1582. ds_source_obtapprsltspec.setColumn(0, "clamno", ds_main_list01_gridrsltqry.getColumn(curr_row, "clamno"));
  1583. ds_source_obtapprsltspec.setColumn(0, "acptno", ds_main_list01_gridrsltqry.getColumn(curr_row, "acptno"));
  1584. ds_source_obtapprsltspec.setColumn(0, "judgdg", ds_main_list01_gridrsltqry.getColumn(curr_row, "judgdg"));
  1585. ds_source_obtapprsltspec.setColumn(0, "setno", ds_main_list01_gridrsltqry.getColumn(curr_row, "setno"));
  1586. ds_source_obtapprsltspec.setColumn(0, "notidd", ds_main_list01_gridrsltqry.getColumn(curr_row, "notidecirepldd"));
  1587. ds_source_obtapprsltspec.setColumn(0, "rejudgflag", "");
  1588. ds_source_obtapprsltspec.setColumn(0, "obtappflag", ds_main_list01_gridrsltqry.getColumn(curr_row, "obtappflag"));
  1589. ds_source_obtapprsltspec.setColumn(0, "obtappdocuno", ds_main_list01_gridrsltqry.getColumn(curr_row, "obtappdocuno"));
  1590. ds_source_obtapprsltspec.setColumn(0, "obtappdd", ds_main_list01_gridrsltqry.getColumn(curr_row, "obtappdd"));
  1591. ds_source_obtapprsltspec.setColumn(0, "decidocuno", ds_main_list01_gridrsltqry.getColumn(curr_row, "decidocuno"));
  1592. ds_source_obtapprsltspec.setColumn(0, "decirepldd", ds_main_list01_gridrsltqry.getColumn(curr_row, "decirepldd"));
  1593. ds_source_obtapprsltspec.setColumn(0, "endyn", ds_main_list01_gridrsltqry.getColumn(curr_row, "endyn"));
  1594. var objArg = new Object();
  1595. objArg.arg_ds_send_send_obtmlist= ds_source_obtapprsltspec;
  1596. frmf_modal("SMPIR30800", "SMPIR30800", objArg, "", "", "", "", "", "", "", "", "", "M");
  1597. group6_group2_btn_search_onclick();
  1598. }
  1599. function group6_grd_rsltqry_onexpanddown(obj:Grid, e:GridMouseEventInfo)
  1600. {
  1601. ds_source.setColumn(0, "judgdg", ds_main_list01_gridrsltqry.getColumn(e.row, "judgdg"));
  1602. ds_source.setColumn(0, "clamno", ds_main_list01_gridrsltqry.getColumn(e.row, "clamno"));
  1603. ds_source.setColumn(0, "acptno", ds_main_list01_gridrsltqry.getColumn(e.row, "acptno"));
  1604. ds_source.setColumn(0, "obtappflag", ds_main_list01_gridrsltqry.getColumn(e.row, "obtappflag"));
  1605. ds_source.setColumn(0, "rem", ds_main_list01_gridrsltqry.getColumn(e.row, "rem"));
  1606. var objArg = new Object();
  1607. objArg.arg_ds_send = ds_source;
  1608. frmf_modal("SPPIR30210", "SPPIR30210", objArg, "", "", "", "", "", "", "", "", "", "M");
  1609. group6_group2_btn_search_onclick();
  1610. }
  1611. function fGridObtAppRsltSpec()
  1612. {
  1613. var curr_row = ds_main_list01_gridrsltqry.rowposition;
  1614. ds_source_obtapprsltspec.clearData();
  1615. ds_source_obtapprsltspec.addRow();
  1616. ds_source_obtapprsltspec.setColumn(0, "judgdg", ds_main_list01_gridrsltqry.getColumn(curr_row, "judgdg"));
  1617. ds_source_obtapprsltspec.setColumn(0, "clamno", ds_main_list01_gridrsltqry.getColumn(curr_row, "clamno"));
  1618. ds_source_obtapprsltspec.setColumn(0, "acptno", ds_main_list01_gridrsltqry.getColumn(curr_row, "acptno"));
  1619. ds_source_obtapprsltspec.setColumn(0, "obtappflag", ds_main_list01_gridrsltqry.getColumn(curr_row, "obtappflag"));
  1620. ds_source_obtapprsltspec.setColumn(0, "obtappdocuno", ds_main_list01_gridrsltqry.getColumn(curr_row, "obtappdocuno"));
  1621. ds_source_obtapprsltspec.setColumn(0, "endyn", ds_main_list01_gridrsltqry.getColumn(curr_row, "endyn"));
  1622. var objArg = new Object();
  1623. objArg.arg_ds_send_send_find = ds_source_obtapprsltspec;
  1624. frmf_modal("SMPIR30900", "SMPIR30900", objArg, "", "", "", "", "", "", "", "", "", "M");
  1625. }
  1626. function group6_grd_rsltqry_onrbuttondown(obj:Grid, e:GridMouseEventInfo)
  1627. {
  1628. pmn_menu1.trackPopup(e.screenX,e.screenY);
  1629. }
  1630. function pmn_menu1_onmenuclick(obj:PopupMenu, e:MenuClickEventInfo)
  1631. {
  1632. eval(e.id +"();");
  1633. }
  1634. function pmn_menu1_onmouseleave(obj:PopupMenu, e:MenuMouseEventInfo)
  1635. {
  1636. obj.closePopup();
  1637. }
  1638. function group6_grd_rsltqry_oncellclick(obj:Grid, e:GridClickEventInfo)
  1639. {
  1640. var curr_row = e.row;
  1641. var decidocuno = ds_main_list01_gridrsltqry.getColumn(curr_row, "decidocuno");
  1642. var decirepldd = ds_main_list01_gridrsltqry.getColumn(curr_row, "decirepldd");
  1643. ds_main_list04_deciinfo.setColumn(0, "decidocuno", "");
  1644. ds_main_list04_deciinfo.setColumn(0, "decirepldd", "");
  1645. ds_main_list04_deciinfo.setColumn(0, "decidocuno", decidocuno);
  1646. ds_main_list04_deciinfo.setColumn(0, "decirepldd", decirepldd);
  1647. if(ds_main_list01_gridrsltqry.rowcount < 3)
  1648. {
  1649. return;
  1650. }
  1651. var curr_row = e.row;
  1652. if (e.col == obj.getBindCellIndex("Body", "rem"))
  1653. {
  1654. var memo = ds_main_list01_gridrsltqry.getColumn(curr_row, "rem");
  1655. ds_hidden.setColumn(0, "memo", memo);
  1656. group6.grp_memo.bringToFront();
  1657. group6.grp_memo.visible = true;
  1658. }
  1659. }
  1660. function group6_grp_memo_btn_closememo_onclick(obj:Button, e:ClickEventInfo)
  1661. {
  1662. group6.grp_memo.visible = false;
  1663. }
  1664. function group6_button6_onclick(obj:Button, e:ClickEventInfo)
  1665. {
  1666. var curr_row = ds_main_list01_gridrsltqry.rowposition;
  1667. var status = "update";
  1668. if(curr_row > -1)
  1669. {
  1670. var judgdg = ds_main_list01_gridrsltqry.getColumn(curr_row, "judgdg");
  1671. var clamno = ds_main_list01_gridrsltqry.getColumn(curr_row, "clamno");
  1672. var acptno = ds_main_list01_gridrsltqry.getColumn(curr_row, "acptno");
  1673. var obtappflag = ds_main_list01_gridrsltqry.getColumn(curr_row, "obtappflag");
  1674. var obtappdocuno = ds_main_list01_gridrsltqry.getColumn(curr_row, "obtappdocuno");
  1675. var decidocuno = ds_main_list04_deciinfo.getColumn(0, "decidocuno");
  1676. var decirepldd = ds_main_list04_deciinfo.getColumn(0, "decirepldd");
  1677. ds_send_send_deciinfo.setColumn(0, "judgdg", judgdg);
  1678. ds_send_send_deciinfo.setColumn(0, "clamno", clamno);
  1679. ds_send_send_deciinfo.setColumn(0, "acptno", acptno);
  1680. ds_send_send_deciinfo.setColumn(0, "obtappflag", obtappflag);
  1681. ds_send_send_deciinfo.setColumn(0, "status", status);
  1682. ds_send_send_deciinfo.setColumn(0, "decidocuno", decidocuno);
  1683. ds_send_send_deciinfo.setColumn(0, "decirepldd", decirepldd);
  1684. ds_send_send_deciinfo.setColumn(0, "obtappdocuno", obtappdocuno);
  1685. var oParam = {};
  1686. oParam.id = "TXPIR30701";
  1687. oParam.service = "cutmngtapp.CutMngt";
  1688. oParam.method = "reqSetDeciInfo";
  1689. oParam.inds = "req=ds_send_send_deciinfo";
  1690. oParam.outds = "";
  1691. oParam.async = false;
  1692. //oParam.callback = "cf_TXPIR30701";
  1693. tranf_submit(oParam);
  1694. ds_main_list04_deciinfo.setColumn(0, "decirepldd", "");
  1695. ds_main_list01_gridrsltqry.clearData();
  1696. if(fChkSend())
  1697. {
  1698. var oParam = {};
  1699. oParam.id = "TRPIR30700";
  1700. oParam.service = "cutmngtapp.CutMngt";
  1701. oParam.method = "reqReqObtAppRsltList";
  1702. oParam.inds = "req=ds_send_send_dataqry";
  1703. oParam.outds = "ds_main_list01_gridrsltqry=gridrsltqry";
  1704. oParam.async = false;
  1705. //oParam.callback = "cf_TRPIR30700";
  1706. tranf_submit(oParam);
  1707. }
  1708. }
  1709. else
  1710. {
  1711. sysf_messageBox("결정정보를 저장할 ROW를 ","C002");
  1712. }
  1713. }
  1714. function grp_btn_button3_onclick(obj:Button, e:ClickEventInfo)
  1715. {
  1716. var curr_row = ds_main_list01_gridrsltqry.rowcount;
  1717. ds_source_obtappqry.setColumn(0, "termflag1", ds_send_send_dataqry.getColumn(0, "termflag1"));
  1718. ds_source_obtappqry.setColumn(0, "fromobtappdd", ds_send_send_dataqry.getColumn(0, "fromobtappdd").toDate().getAddDate(-90).getDateFormat("YYYYMMDD"));
  1719. ds_source_obtappqry.setColumn(0, "toobtappdd", ds_send_send_dataqry.getColumn(0, "toobtappdd"));
  1720. ds_source_obtappqry.setColumn(0, "clamflag", ds_send_send_dataqry.getColumn(0, "clamflag"));
  1721. ds_source_obtappqry.setColumn(0, "judgdg", ds_send_send_dataqry.getColumn(0, "judgdg"));
  1722. ds_source_obtappqry.setColumn(0, "acptno", ds_send_send_dataqry.getColumn(0, "acptno"));
  1723. ds_source_obtappqry.setColumn(0, "ordfildcd", ds_send_send_dataqry.getColumn(0, "ordfildcd"));
  1724. ds_source_obtappqry.setColumn(0, "obtappflag", ds_send_send_dataqry.getColumn(0, "obtappflag"));
  1725. ds_source_obtappqry.setColumn(0, "obtappdocuno", ds_send_send_dataqry.getColumn(0, "obtappdocuno"));
  1726. ds_source_obtappqry.setColumn(0, "chosflag", ds_send_send_dataqry.getColumn(0, "chosflag"));
  1727. ds_source_obtappqry.setColumn(0, "insukind", ds_send_send_dataqry.getColumn(0, "insukind"));
  1728. ds_source_obtappqry.setColumn(0, "rejudgflag", ds_send_send_dataqry.getColumn(0, "rejudgflag"));
  1729. ds_source_obtappqry.setColumn(0, "judgrid", ds_send_send_dataqry.getColumn(0, "obtapprid"));
  1730. ds_source_obtappqry.setColumn(0, "adjtamt", ds_send_send_dataqry.getColumn(0, "cuttotamt"));
  1731. ds_source_obtappqry.setColumn(0, "resttime", "");
  1732. ds_source_obtappqry.setColumn(0, "obtappendflag", "");
  1733. ds_source_obtappqry.setColumn(0, "patunitsrch1", ds_send_send_dataqry.getColumn(0, "patunitsrch1"));
  1734. ds_source_obtappqry.setColumn(0, "patunitsrch2", ds_send_send_dataqry.getColumn(0, "patunitsrch2"));
  1735. var objArg = new Object();
  1736. objArg.arg_ds_send= ds_source_obtappqry;
  1737. frmf_modal("SMPIR30200", "SMPIR30200", objArg, "", "", "", "", "", "", "", "", "", "M");
  1738. }
  1739. function grp_btn_btn_init_onclick(obj:Button, e:ClickEventInfo)
  1740. {
  1741. fInitialize();
  1742. }
  1743. function grp_btn_button4_onclick(obj:Button, e:ClickEventInfo)
  1744. {
  1745. this.close();
  1746. }
  1747. function fInitialize()
  1748. {
  1749. var curDate = utlf_getCurrentDate();
  1750. group6.group2.rdo_insukind.index = 0;
  1751. ds_send_send_dataqry.setColumn(0, "fromobtappdd", curDate);
  1752. ds_send_send_dataqry.setColumn(0, "toobtappdd", curDate);
  1753. ds_send_send_dataqry.setColumn(0, "patunitsrch1", "");
  1754. ds_send_send_dataqry.setColumn(0, "obtapprid", "");
  1755. ds_send_send_dataqry.setColumn(0, "obtappdocuno", "");
  1756. ds_send_send_dataqry.setColumn(0, "decidocuno", "");
  1757. group6.group2.rdo_chosflag.index = 0;
  1758. group6.group2.rdo_endyn.index = 0;
  1759. group6.group2.cmb_ordfildcd.value = "";
  1760. group6.group2.cmb_clamflag.value = "";
  1761. group6.group2.rdo_rejudgflag.index = 0;
  1762. group6.group2.cmb_obtappflag.value = "";
  1763. ds_send_send_dataqry.setColumn(0, "obtappamt", "");
  1764. ds_send_send_dataqry.setColumn(0, "recogamt", "");
  1765. ds_send_send_dataqry.setColumn(0, "cuttotamt", "");
  1766. ds_send_send_dataqry.setColumn(0, "delcntsum", "");
  1767. ds_send_send_dataqry.setColumn(0, "acptno", "");
  1768. ds_send_send_dataqry.setColumn(0, "judgdg", "");
  1769. ds_main_list04_deciinfo.setColumn(0, "decidocuno", "");
  1770. ds_main_list04_deciinfo.setColumn(0, "decirepldd", "");
  1771. ds_send_send_dataqry.setColumn(0, "delcntsum", "D");
  1772. ds_main_list01_gridrsltqry.clearData();
  1773. ds_main_list02_griddocu.clearData();
  1774. ds_main_list03_gridobtrsltspec.clearData();
  1775. }
  1776. function group6_button7_onclick(obj:Button, e:ClickEventInfo)
  1777. {
  1778. var today = utlf_getCurrentDate();
  1779. if(ds_main_list01_gridrsltqry.rowcount == 2)
  1780. {
  1781. return;
  1782. }
  1783. if(ds_main_list01_gridrsltqry.rowcount == 0)
  1784. {
  1785. sysf_messageBox("엑셀저장할 내역이", "I004"); ///엑셀저장할 내역이 없습니다.
  1786. }
  1787. else
  1788. {
  1789. grdf_exportExcel(group6.grd_rsltqry, "이의신청결과조회-접수번호별이의신청결과_"+today, "see");
  1790. }
  1791. }
  1792. function group6_button5_onclick(obj:Button, e:ClickEventInfo)
  1793. {
  1794. var selectCnt = grdf_getSelectedRows(group6.grd_rsltqry);
  1795. if (selectCnt == 0)
  1796. {
  1797. alert("선택후 다시 시도해 주세요");
  1798. return;
  1799. }
  1800. ds_send_selectlist.clearData();
  1801. for(var i = 0; i < selectCnt.length; i++)
  1802. {
  1803. var m_row = selectCnt[i];
  1804. var sel = ds_send_selectlist.addRow();
  1805. ds_send_selectlist.setColumn(sel, "judgdg", ds_main_list01_gridrsltqry.getColumn(m_row, "judgdg"));
  1806. ds_send_selectlist.setColumn(sel, "clamno", ds_main_list01_gridrsltqry.getColumn(m_row, "clamno"));
  1807. ds_send_selectlist.setColumn(sel, "acptno", ds_main_list01_gridrsltqry.getColumn(m_row, "acptno"));
  1808. ds_send_selectlist.setColumn(sel, "obtappflag", ds_main_list01_gridrsltqry.getColumn(m_row, "obtappflag"));
  1809. }
  1810. var oParam = {};
  1811. oParam.id = "TRPIR30701";
  1812. oParam.service = "cutmngtapp.CutMngt";
  1813. oParam.method = "reqGetObtAppRsltDocuExcelList";
  1814. oParam.inds = "req=ds_send_selectlist";
  1815. oParam.outds = "ds_main_list02_griddocu=griddocu";
  1816. oParam.async = false;
  1817. //oParam.callback = "cf_TRPIR30701";
  1818. tranf_submit(oParam);
  1819. var today = utlf_getCurrentDate();
  1820. if (ds_main_list02_griddocu.rowcount == 2)
  1821. {
  1822. return;
  1823. }
  1824. if(ds_main_list02_griddocu.rowcount == 0)
  1825. {
  1826. sysf_messageBox("엑셀저장할 내역이", "I004"); ///엑셀저장할 내역이 없습니다.
  1827. }
  1828. else
  1829. {
  1830. grdf_exportExcel(group6.grd_griddocu, "이의신청결과조회-명일련별이의신청결과_"+today, "see");
  1831. }
  1832. }
  1833. function group6_button1_onclick(obj:Button, e:ClickEventInfo)
  1834. {
  1835. var selectCnt = grdf_getSelectedRows(group6.grd_rsltqry);
  1836. if (selectCnt == 0)
  1837. {
  1838. alert("선택후 다시 시도해 주세요");
  1839. return;
  1840. }
  1841. ds_send_send_prcp.clearData();
  1842. for(var i = 0; i < selectCnt.length; i++)
  1843. {
  1844. var m_row = selectCnt[i];
  1845. var sel = ds_send_send_prcp.addRow();
  1846. ds_send_send_prcp.setColumn(sel, "judgdg", ds_main_list01_gridrsltqry.getColumn(m_row, "judgdg"));
  1847. ds_send_send_prcp.setColumn(sel, "clamno", ds_main_list01_gridrsltqry.getColumn(m_row, "clamno"));
  1848. ds_send_send_prcp.setColumn(sel, "acptno", ds_main_list01_gridrsltqry.getColumn(m_row, "acptno"));
  1849. ds_send_send_prcp.setColumn(sel, "obtappflag", ds_main_list01_gridrsltqry.getColumn(m_row, "obtappflag"));
  1850. }
  1851. var oParam = {};
  1852. oParam.id = "TRPIR30702";
  1853. oParam.service = "cutmngtapp.CutMngt";
  1854. oParam.method = "reqGetObtAppRsltPrcpExcelList";
  1855. oParam.inds = "req=ds_send_send_prcp";
  1856. oParam.outds = "ds_main_list03_gridobtrsltspec=gridobtrsltspec";
  1857. oParam.async = false;
  1858. //oParam.callback = "cf_TRPIR30702";
  1859. tranf_submit(oParam);
  1860. var today = utlf_getCurrentDate();
  1861. if (ds_main_list03_gridobtrsltspec.rowcount == 2)
  1862. {
  1863. return;
  1864. }
  1865. if(ds_main_list03_gridobtrsltspec.rowcount == 0)
  1866. {
  1867. sysf_messageBox("엑셀저장할 내역이", "I004"); ///엑셀저장할 내역이 없습니다.
  1868. }
  1869. else
  1870. {
  1871. grdf_exportExcel(group6.grd_pirhobtspec, "이의신청결과-처방별엑셀저장_"+today, "see");
  1872. }
  1873. }
  1874. ]]></Script>
  1875. </Form>
  1876. </FDL>