123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004 |
- <?xml version="1.0" encoding="utf-8"?>
- <FDL version="1.5">
- <TypeDefinition url="..\..\..\default_typedef.xml"/>
- <Form id="SMPIR30700" position="absolute 0 0 1203 790" titletext="이의신청 결과 조회" oninit="SMPIR30700_oninit" onload="SMPIR30700_onload">
- <Layouts>
- <Layout>
- <Div position="absolute 0 20 1195 764" id="group6" scrollbars="autoboth" anchor="all">
- <Layouts>
- <Layout>
- <Static text="결정문서번호" position="absolute 0 116 91 139" align="align:left middle;" id="caption38" class="cell_1" anchor="default"/>
- <Static text="결정문서도착일자" position="absolute 257 116 370 139" align="align:left middle;" id="caption39" class="cell_1" anchor="default"/>
- <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">
- <Formats>
- <Format id="default">
- <Columns>
- <Column size="21"/>
- <Column size="57"/>
- <Column size="56"/>
- <Column size="68"/>
- <Column size="70"/>
- <Column size="0"/>
- <Column size="48"/>
- <Column size="44"/>
- <Column size="72"/>
- <Column size="65"/>
- <Column size="57"/>
- <Column size="54"/>
- <Column size="80"/>
- <Column size="81"/>
- <Column size="112"/>
- <Column size="72"/>
- <Column size="108"/>
- <Column size="39"/>
- <Column size="37"/>
- <Column size="136"/>
- <Column size="90"/>
- <Column size="63"/>
- <Column size="70"/>
- <Column size="70"/>
- <Column size="75"/>
- <Column size="46"/>
- <Column size="46"/>
- <Column size="67"/>
- <Column size="70"/>
- <Column size="70"/>
- <Column size="75"/>
- <Column size="46"/>
- <Column size="46"/>
- <Column size="44"/>
- <Column size="70"/>
- <Column size="70"/>
- <Column size="75"/>
- <Column size="46"/>
- <Column size="46"/>
- <Column size="70"/>
- <Column size="70"/>
- <Column size="70"/>
- <Column size="63"/>
- <Column size="70"/>
- <Column size="70"/>
- <Column size="70"/>
- <Column size="0"/>
- <Column size="0"/>
- <Column size="0"/>
- <Column size="0"/>
- <Column size="0"/>
- <Column size="0"/>
- <Column size="0"/>
- <Column size="0"/>
- <Column size="0"/>
- <Column size="0"/>
- <Column size="0"/>
- </Columns>
- <Rows>
- <Row size="24" band="head"/>
- <Row size="24" band="head"/>
- <Row size="24"/>
- </Rows>
- <Band id="head">
- <Cell rowspan="2" taborder="undefined"/>
- <Cell col="1" rowspan="2" text="청구년월" taborder="undefined"/>
- <Cell col="2" rowspan="2" text="보험 유형" taborder="undefined"/>
- <Cell col="3" rowspan="2" text="내원 유형" taborder="undefined"/>
- <Cell col="4" rowspan="2" text="청구 분야" taborder="undefined"/>
- <Cell col="5" text="청구 분야"/>
- <Cell col="6" rowspan="2" text="청구 구분" taborder="undefined"/>
- <Cell col="7" rowspan="2" text="청구 차수" taborder="undefined"/>
- <Cell col="8" rowspan="2" text="이신 구분" taborder="undefined"/>
- <Cell col="9" rowspan="2" text="접수번호" taborder="undefined"/>
- <Cell col="10" rowspan="2" text="심사차수" taborder="undefined"/>
- <Cell col="11" rowspan="2" text="묶음번호" taborder="undefined"/>
- <Cell col="12" rowspan="2" text="통보/결정서 도착일자" taborder="undefined"/>
- <Cell col="13" rowspan="2" text="이의신청일자" taborder="undefined"/>
- <Cell col="14" rowspan="2" text="문서번호 가의강" taborder="undefined"/>
- <Cell col="15" rowspan="2" text="결정문서 도착일자" taborder="undefined"/>
- <Cell col="16" rowspan="2" text="결정문서 번호" taborder="undefined"/>
- <Cell col="17" rowspan="2" text="이신 완료 여부" taborder="undefined"/>
- <Cell col="18" rowspan="2" text="완료 여부" taborder="undefined"/>
- <Cell col="19" rowspan="2" text="메모" taborder="undefined"/>
- <Cell col="20" rowspan="2" text="총진료비" taborder="undefined"/>
- <Cell col="21" rowspan="2" text="조정 삭감건수" taborder="undefined"/>
- <Cell col="22" colspan="3" text="조정삭감액" taborder="undefined"/>
- <Cell col="25" colspan="2" text="삭감율" taborder="undefined"/>
- <Cell col="27" rowspan="2" text="이의신청 건수" taborder="undefined"/>
- <Cell col="28" colspan="5" text="이의신청액" taborder="undefined"/>
- <Cell col="33" rowspan="2" text="결정 건수" taborder="undefined"/>
- <Cell col="34" colspan="5" text="인정액" taborder="undefined"/>
- <Cell col="39" colspan="3" text="불인정액" taborder="undefined"/>
- <Cell col="42" rowspan="2" text="보류건수" taborder="undefined"/>
- <Cell col="43" colspan="3" text="보류액" taborder="undefined"/>
- <Cell col="46" text="정산심사결정서 도착일자"/>
- <Cell col="47" text="정산심사결정서 도착일자"/>
- <Cell col="48" text="정산결정차액"/>
- <Cell col="49" text="정산결정차액"/>
- <Cell col="50" text="정산결정차액"/>
- <Cell col="51" text="인정액 정산결정차액"/>
- <Cell col="52" text="인정액 정산결정차액"/>
- <Cell col="53" text="청구번호"/>
- <Cell col="54" text="총진료비"/>
- <Cell col="55" text="원외심결 심사차수"/>
- <Cell col="56" text="원외 통보일자"/>
- <Cell row="1" col="5" text="청구 분야"/>
- <Cell row="1" col="22" text="계"/>
- <Cell row="1" col="23" text="원내"/>
- <Cell row="1" col="24" text="원외"/>
- <Cell row="1" col="25" text="원내"/>
- <Cell row="1" col="26" text="원외"/>
- <Cell row="1" col="28" text="계"/>
- <Cell row="1" col="29" text="원내"/>
- <Cell row="1" col="30" text="원외"/>
- <Cell row="1" col="31" text="원내"/>
- <Cell row="1" col="32" text="원외"/>
- <Cell row="1" col="34" text="계"/>
- <Cell row="1" col="35" text="원내"/>
- <Cell row="1" col="36" text="원외"/>
- <Cell row="1" col="37" text="원내"/>
- <Cell row="1" col="38" text="원외"/>
- <Cell row="1" col="39" text="계"/>
- <Cell row="1" col="40" text="원내"/>
- <Cell row="1" col="41" text="원외"/>
- <Cell row="1" col="43" text="계"/>
- <Cell row="1" col="44" text="원내"/>
- <Cell row="1" col="45" text="원외"/>
- <Cell row="1" col="46" text="원내"/>
- <Cell row="1" col="47" text="원외"/>
- <Cell row="1" col="48" text="계"/>
- <Cell row="1" col="49" text="원내"/>
- <Cell row="1" col="50" text="원외"/>
- <Cell row="1" col="51" text="원내"/>
- <Cell row="1" col="52" text="원외"/>
- <Cell row="1" col="53" text="청구번호"/>
- <Cell row="1" col="54" text="총진료비"/>
- <Cell row="1" col="55" text="원외심결 심사차수"/>
- <Cell row="1" col="56" text="원외 통보일자"/>
- </Band>
- <Band id="body">
- <Cell celltype="head" expr="currow+1"/>
- <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"/>
- <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"/>
- <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"/>
- <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"/>
- <Cell col="5" displaytype="combo" edittype="combo" text="bind:ordfildcd" enable="false"/>
- <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"/>
- <Cell col="7" style="background:EXPR(obtappflag == '06' || obtappflag == '07' ? 'burlywood' : '#ffffff');background2:EXPR(obtappflag == '06' || obtappflag == '07' ? 'burlywood' : '#ffffff');" text="bind:clamdegree"/>
- <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"/>
- <Cell col="9" style="background:EXPR(obtappflag == '06' || obtappflag == '07' ? 'burlywood' : '#ffffff');background2:EXPR(obtappflag == '06' || obtappflag == '07' ? 'burlywood' : '#ffffff');" text="bind:acptno"/>
- <Cell col="10" style="background:EXPR(obtappflag == '06' || obtappflag == '07' ? 'burlywood' : '#ffffff');background2:EXPR(obtappflag == '06' || obtappflag == '07' ? 'burlywood' : '#ffffff');" text="bind:judgdg"/>
- <Cell col="11" style="background:EXPR(obtappflag == '06' || obtappflag == '07' ? 'burlywood' : '#ffffff');background2:EXPR(obtappflag == '06' || obtappflag == '07' ? 'burlywood' : '#ffffff');" text="bind:setno"/>
- <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"/>
- <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"/>
- <Cell col="14" style="background:EXPR(obtappflag == '06' || obtappflag == '07' ? 'burlywood' : '#ffffff');background2:EXPR(obtappflag == '06' || obtappflag == '07' ? 'burlywood' : '#ffffff');" text="bind:obtappdocuno"/>
- <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"/>
- <Cell col="16" style="background:EXPR(obtappflag == '06' || obtappflag == '07' ? 'burlywood' : '#ffffff');background2:EXPR(obtappflag == '06' || obtappflag == '07' ? 'burlywood' : '#ffffff');" text="bind:decidocuno"/>
- <Cell col="17" style="background:EXPR(obtappflag == '06' || obtappflag == '07' ? 'burlywood' : '#ffffff');background2:EXPR(obtappflag == '06' || obtappflag == '07' ? 'burlywood' : '#ffffff');" text="bind:obtappendyn"/>
- <Cell col="18" style="background:EXPR(obtappflag == '06' || obtappflag == '07' ? 'burlywood' : '#ffffff');background2:EXPR(obtappflag == '06' || obtappflag == '07' ? 'burlywood' : '#ffffff');" text="bind:endyn"/>
- <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"/>
- <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"/>
- <Cell col="21" style="background:EXPR(obtappflag == '06' || obtappflag == '07' ? 'burlywood' : '#ffffff');background2:EXPR(obtappflag == '06' || obtappflag == '07' ? 'burlywood' : '#ffffff');" text="bind:adjtrdcnt"/>
- <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"/>
- <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"/>
- <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"/>
- <Cell col="25" style="background:EXPR(obtappflag == '06' || obtappflag == '07' ? 'burlywood' : '#ffffff');background2:EXPR(obtappflag == '06' || obtappflag == '07' ? 'burlywood' : '#ffffff');" text="bind:adjtcutrate1"/>
- <Cell col="26" style="background:EXPR(obtappflag == '06' || obtappflag == '07' ? 'burlywood' : '#ffffff');background2:EXPR(obtappflag == '06' || obtappflag == '07' ? 'burlywood' : '#ffffff');" text="bind:adjtcutrate2"/>
- <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"/>
- <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"/>
- <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"/>
- <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"/>
- <Cell col="31" style="background:EXPR(obtappflag == '06' || obtappflag == '07' ? 'burlywood' : '#ffffff');background2:EXPR(obtappflag == '06' || obtappflag == '07' ? 'burlywood' : '#ffffff');" text="bind:adjtcutrate1"/>
- <Cell col="32" style="background:EXPR(obtappflag == '06' || obtappflag == '07' ? 'burlywood' : '#ffffff');background2:EXPR(obtappflag == '06' || obtappflag == '07' ? 'burlywood' : '#ffffff');" text="bind:adjtcutrate2"/>
- <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"/>
- <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"/>
- <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"/>
- <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"/>
- <Cell col="37" style="background:EXPR(obtappflag == '06' || obtappflag == '07' ? 'burlywood' : '#ffffff');background2:EXPR(obtappflag == '06' || obtappflag == '07' ? 'burlywood' : '#ffffff');" text="bind:decirate"/>
- <Cell col="38" style="background:EXPR(obtappflag == '06' || obtappflag == '07' ? 'burlywood' : '#ffffff');background2:EXPR(obtappflag == '06' || obtappflag == '07' ? 'burlywood' : '#ffffff');" text="bind:oprcpdecirate"/>
- <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"/>
- <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"/>
- <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"/>
- <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"/>
- <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"/>
- <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"/>
- <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"/>
- <Cell col="46" text="bind:calcrepldd" mask="yyyy-mm-dd"/>
- <Cell col="47" text="bind:oprcpcalcrepldd" mask="yyyy-mm-dd"/>
- <Cell col="48" text="bind:calcdecitotamt" mask="(-)#,###"/>
- <Cell col="49" text="bind:calcdeciamt" mask="(-)#,###"/>
- <Cell col="50" text="bind:oprcpcalcdeciamt" mask="(-)#,###"/>
- <Cell col="51" text="bind:calcdecidifamt" mask="(-)#,###"/>
- <Cell col="52" text="bind:oprcpcalcdecidifamt" mask="(-)#,###"/>
- <Cell col="53" text="bind:clamno"/>
- <Cell col="54" text="bind:clclamamt1" mask="(-)#,###"/>
- <Cell col="55" text="bind:oprcjrjudgdegree"/>
- <Cell col="56" text="bind:oprcnotidd" mask="yyyy-mm-dd"/>
- </Band>
- </Format>
- </Formats>
- </Grid>
- <Shape position="absolute 0 166 1194 172" linetype="horizontal" id="line12" class="line_1" anchor="left top right" style="strokepen:3 solid #33bbbbff;"/>
- <Button position="absolute 949 146 1076 165" id="button5" class="btn7" text="명일련별 엑셀저장" anchor="top right" onclick="group6_button5_onclick"/>
- <Static text="접수번호별 이의신청 결과" position="absolute 0 150 274 171" id="caption32" class="tit_2" anchor="default"/>
- <Div position="absolute 0 4 1195 113" align="align:center top;" id="group2" anchor="left top right" class="div_SA">
- <Layouts>
- <Layout>
- <Static text="보험유형 :" position="absolute 472 9 558 26" id="caption3" class="search_name" anchor="default"/>
- <Shape position="absolute 1087 20 1093 42" linetype="vertical" id="line13" class="line_4" anchor="top right"/>
- <Button position="absolute 1105 20 1173 42" id="btn_search" class="btn1" taborder="3" text="조 회" anchor="top right" onclick="group6_group2_btn_search_onclick"/>
- <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"/>
- <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">
- <Dataset id="innerdataset">
- <ColumnInfo>
- <Column id="codecolumn"/>
- <Column id="datacolumn"/>
- </ColumnInfo>
- <Rows>
- <Row>
- <Col id="codecolumn">1</Col>
- <Col id="datacolumn">심결통보일</Col>
- </Row>
- <Row>
- <Col id="codecolumn">2</Col>
- <Col id="datacolumn">이의신청일</Col>
- </Row>
- <Row>
- <Col id="codecolumn">3</Col>
- <Col id="datacolumn">청구년월</Col>
- </Row>
- </Rows>
- </Dataset>
- </Radio>
- <Static text="청구구분 :" position="absolute 213 83 324 100" id="caption1" class="search_name" anchor="default"/>
- <Radio position="absolute 559 6 800 29" id="rdo_insukind" class="radio_search" columncount="5" codecolumn="codecolumn" datacolumn="datacolumn" anchor="default">
- <Dataset id="innerdataset">
- <ColumnInfo>
- <Column id="codecolumn"/>
- <Column id="datacolumn"/>
- </ColumnInfo>
- <Rows>
- <Row>
- <Col id="codecolumn">1</Col>
- <Col id="datacolumn">전체</Col>
- </Row>
- <Row>
- <Col id="codecolumn">2</Col>
- <Col id="datacolumn">보험</Col>
- </Row>
- <Row>
- <Col id="codecolumn">3</Col>
- <Col id="datacolumn">보호</Col>
- </Row>
- <Row>
- <Col id="codecolumn">5</Col>
- <Col id="datacolumn">자보</Col>
- </Row>
- <Row>
- <Col id="codecolumn">4</Col>
- <Col id="datacolumn">산재</Col>
- </Row>
- </Rows>
- </Dataset>
- </Radio>
- <Static text="내원유형 :" position="absolute 472 33 565 50" id="caption7" class="search_name" anchor="default"/>
- <Static text="마감구분 :" position="absolute 472 58 558 75" id="caption11" class="search_name" anchor="default"/>
- <Radio position="absolute 559 53 726 76" id="rdo_endyn" class="radio_search" columncount="4" codecolumn="codecolumn" datacolumn="datacolumn" anchor="default">
- <Dataset id="innerdataset">
- <ColumnInfo>
- <Column id="codecolumn"/>
- <Column id="datacolumn"/>
- </ColumnInfo>
- <Rows>
- <Row>
- <Col id="codecolumn">1</Col>
- <Col id="datacolumn">전체</Col>
- </Row>
- <Row>
- <Col id="codecolumn">2</Col>
- <Col id="datacolumn">완료</Col>
- </Row>
- <Row>
- <Col id="codecolumn">3</Col>
- <Col id="datacolumn">미완료</Col>
- </Row>
- </Rows>
- </Dataset>
- </Radio>
- <Radio position="absolute 559 29 700 52" id="rdo_chosflag" class="radio_search" columncount="4" codecolumn="codecolumn" datacolumn="datacolumn" anchor="default">
- <Dataset id="innerdataset">
- <ColumnInfo>
- <Column id="codecolumn"/>
- <Column id="datacolumn"/>
- </ColumnInfo>
- <Rows>
- <Row>
- <Col id="codecolumn">1</Col>
- <Col id="datacolumn">전체</Col>
- </Row>
- <Row>
- <Col id="codecolumn">2</Col>
- <Col id="datacolumn">입원</Col>
- </Row>
- <Row>
- <Col id="codecolumn">3</Col>
- <Col id="datacolumn">외래</Col>
- </Row>
- </Rows>
- </Dataset>
- </Radio>
- <Static text="심사차수 :" position="absolute 1013 82 1099 99" id="caption12" class="search_name" anchor="top right"/>
- <Static text="~" position="absolute 356 10 368 27" id="caption2" class="search_no_b" anchor="default"/>
- <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"/>
- <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"/>
- <Static text="청구분야 :" position="absolute 17 83 116 100" id="caption4" class="search_name" anchor="default"/>
- <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"/>
- <Static text="접수번호 :" position="absolute 808 82 904 99" id="caption13" class="search_name" anchor="default"/>
- <Edit position="absolute 102 33 195 52" id="ipt_patunitsrch1" class="input_s_essential" anchor="default" onkeydown="group6_group2_ipt_patunitsrch1_onkeydown"/>
- <Static text="환자조회 :" position="absolute 17 34 112 51" id="caption18" class="search_name" anchor="default"/>
- <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"/>
- <Edit position="absolute 910 80 1000 99" id="ipt_acptno" class="input_s_essential" taborder="2" anchor="default" onkeydown="group6_group2_ipt_acptno_onkeydown"/>
- <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"/>
- <Static text="이신구분 :" position="absolute 472 83 558 100" id="caption8" class="search_name" anchor="default"/>
- <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">
- <Dataset id="innerdataset">
- <ColumnInfo>
- <Column id="codecolumn"/>
- <Column id="datacolumn"/>
- </ColumnInfo>
- <Rows>
- <Row>
- <Col id="codecolumn">1</Col>
- <Col id="datacolumn">전체</Col>
- </Row>
- <Row>
- <Col id="codecolumn">2</Col>
- <Col id="datacolumn">재심사제외</Col>
- </Row>
- </Rows>
- </Dataset>
- </Radio>
- <Static text="이의 신청자 :" position="absolute 213 34 332 51" id="caption15" class="search_name" anchor="default"/>
- <Edit position="absolute 321 33 456 52" id="ipt_obtapprid" class="input_search" anchor="default"/>
- <Static text="이상" position="absolute 1004 9 1034 29" id="caption40" anchor="default"/>
- <MaskEdit position="absolute 909 8 999 27" align="align:right middle;" id="ipt_obtappamt" class="input_search" mask="#,###" anchor="default"/>
- <Static text="인 정 액 :" position="absolute 808 32 911 49" id="caption10" class="search_name" anchor="default"/>
- <MaskEdit position="absolute 909 31 999 50" align="align:right middle;" id="ipt_recogamt" class="input_search" mask="#,###" anchor="default"/>
- <Static text="이상" position="absolute 1004 32 1034 52" id="caption14" anchor="default"/>
- <Static text="이의신청액 :" position="absolute 808 9 911 26" id="caption37" class="search_name" anchor="default"/>
- <Edit position="absolute 102 57 195 76" id="ipt_obtappdocuno" class="input_s_essential" anchor="default" onkeydown="group6_group2_ipt_obtappdocuno_onkeydown"/>
- <Static text="문서번호 :" position="absolute 17 58 103 75" id="caption16" class="search_name" anchor="default"/>
- <Edit position="absolute 321 57 456 76" id="ipt_srchdecidocuno" class="input_search" anchor="default"/>
- <Static text="결정문서번호 :" position="absolute 213 58 325 75" id="caption17" class="search_name" anchor="default"/>
- <Static text="이상" position="absolute 1004 57 1034 77" id="caption9" anchor="default"/>
- <MaskEdit position="absolute 909 56 999 75" align="align:right middle;" id="ipt_cuttotamt" class="input_search" mask="#,###" anchor="default"/>
- <Static text="삭감총액 :" position="absolute 808 57 909 74" id="caption19" class="search_name" anchor="default"/>
- </Layout>
- </Layouts>
- </Div>
- <Button position="absolute 1077 146 1193 165" id="button1" class="btn7" text="처방별 엑셀저장" anchor="top right" onclick="group6_button1_onclick"/>
- <Shape position="absolute 0 114 1194 120" linetype="horizontal" id="line9" class="line_3" anchor="left top right"/>
- <Button position="absolute 493 118 535 137" id="button6" class="btn2" taborder="6" text="저장" anchor="default" onclick="group6_button6_onclick"/>
- <Shape position="absolute 0 136 1194 142" linetype="horizontal" id="line11" class="line_3" anchor="left top right"/>
- <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;"/>
- <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;"/>
- <Button position="absolute 867 146 947 165" id="button7" class="btn7" text="엑셀저장" anchor="top right" onclick="group6_button7_onclick"/>
- <CheckBox position="absolute 1088 62 1183 77" id="chk_delcntsum" anchor="top right" text="부제기간포함" truevalue="D" value="D"/>
- <Div position="absolute 875 275 1180 477" id="grp_memo" visible="false" anchor="default" style="background:#ffffffff;border:1 solid gainsboro ;">
- <Layouts>
- <Layout>
- <Static text="메모" position="absolute 6 1 124 23" id="cpt_text" class="tit_2" anchor="default"/>
- <Shape position="absolute 5 12 299 28" linetype="horizontal" id="line1" class="line_1" anchor="default" style="strokepen:3 solid #33bbbbff;"/>
- <TextArea position="absolute 5 22 299 176" align="align:left top;" id="txt_text" anchor="default" scrollbars="autovert" wordwrap="word"/>
- <Button position="absolute 243 177 299 199" id="btn_closememo" class="btn4" text="확인" anchor="default" onclick="group6_grp_memo_btn_closememo_onclick"/>
- </Layout>
- </Layouts>
- </Div>
- <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">
- <Formats>
- <Format id="default">
- <Columns>
- <Column size="26"/>
- <Column size="60"/>
- <Column size="80"/>
- <Column size="60"/>
- <Column size="60"/>
- <Column size="60"/>
- <Column size="70"/>
- <Column size="82"/>
- <Column size="71"/>
- <Column size="60"/>
- <Column size="40"/>
- <Column size="30"/>
- <Column size="40"/>
- <Column size="40"/>
- <Column size="40"/>
- <Column size="40"/>
- <Column size="70"/>
- <Column size="70"/>
- <Column size="200"/>
- <Column size="60"/>
- <Column size="50"/>
- <Column size="50"/>
- <Column size="50"/>
- <Column size="50"/>
- <Column size="50"/>
- <Column size="50"/>
- <Column size="50"/>
- <Column size="50"/>
- <Column size="63"/>
- <Column size="63"/>
- <Column size="63"/>
- <Column size="40"/>
- <Column size="40"/>
- <Column size="35"/>
- <Column size="35"/>
- <Column size="64"/>
- <Column size="64"/>
- <Column size="64"/>
- <Column size="40"/>
- <Column size="35"/>
- <Column size="35"/>
- <Column size="63"/>
- <Column size="63"/>
- <Column size="63"/>
- <Column size="63"/>
- <Column size="63"/>
- <Column size="63"/>
- <Column size="62"/>
- <Column size="63"/>
- <Column size="63"/>
- <Column size="40"/>
- <Column size="35"/>
- <Column size="35"/>
- <Column size="80"/>
- <Column size="63"/>
- <Column size="63"/>
- <Column size="63"/>
- <Column size="63"/>
- <Column size="59"/>
- <Column size="128"/>
- <Column size="50"/>
- <Column size="50"/>
- <Column size="50"/>
- <Column size="50"/>
- <Column size="50"/>
- <Column size="50"/>
- <Column size="50"/>
- <Column size="50"/>
- <Column size="50"/>
- <Column size="50"/>
- <Column size="50"/>
- <Column size="50"/>
- <Column size="74"/>
- <Column size="50"/>
- <Column size="75"/>
- <Column size="50"/>
- <Column size="50"/>
- <Column size="50"/>
- <Column size="67"/>
- <Column size="71"/>
- <Column size="100"/>
- <Column size="100"/>
- </Columns>
- <Rows>
- <Row size="31" band="head"/>
- <Row size="24" band="head"/>
- <Row size="24"/>
- </Rows>
- <Band id="head">
- <Cell rowspan="2" taborder="undefined"/>
- <Cell col="1" rowspan="2" text="진료과" taborder="undefined"/>
- <Cell col="2" rowspan="2" text="진료의" taborder="undefined"/>
- <Cell col="3" rowspan="2" text="명일련" taborder="undefined"/>
- <Cell col="4" rowspan="2" text="등록번호" taborder="undefined"/>
- <Cell col="5" rowspan="2" text="환자이름" taborder="undefined"/>
- <Cell col="6" rowspan="2" text="상병코드" taborder="undefined"/>
- <Cell col="7" rowspan="2" text="퇴원일자" taborder="undefined"/>
- <Cell col="8" rowspan="2" text="이의 신청자코드" taborder="undefined"/>
- <Cell col="9" rowspan="2" text="이의 신청자" taborder="undefined"/>
- <Cell col="10" rowspan="2" text="줄번호" taborder="undefined"/>
- <Cell col="11" rowspan="2" text="항" taborder="undefined"/>
- <Cell col="12" rowspan="2" text="구분" taborder="undefined"/>
- <Cell col="13" rowspan="2" text="구분2" taborder="undefined"/>
- <Cell col="14" rowspan="2" text="조정 사유" taborder="undefined"/>
- <Cell col="15" rowspan="2" text="I, II 구분" taborder="undefined"/>
- <Cell col="16" rowspan="2" text="처방코드" taborder="undefined"/>
- <Cell col="17" rowspan="2" text="EDI코드" taborder="undefined"/>
- <Cell col="18" rowspan="2" text="처방명칭" taborder="undefined"/>
- <Cell col="19" rowspan="2" text="단가" taborder="undefined"/>
- <Cell col="20" rowspan="2" text="청구 수량" taborder="undefined"/>
- <Cell col="21" rowspan="2" text="청구 1회량" taborder="undefined"/>
- <Cell col="22" rowspan="2" text="청구 일투" taborder="undefined"/>
- <Cell col="23" rowspan="2" text="청구 총투" taborder="undefined"/>
- <Cell col="24" rowspan="2" text="조정 삭감 수량" taborder="undefined"/>
- <Cell col="25" rowspan="2" text="조정 1회량" taborder="undefined"/>
- <Cell col="26" rowspan="2" text="조정 일투" taborder="undefined"/>
- <Cell col="27" rowspan="2" text="조정 총투" taborder="undefined"/>
- <Cell col="28" colspan="3" text="조정삭감액" taborder="undefined"/>
- <Cell col="31" rowspan="2" text="이신 수량" taborder="undefined"/>
- <Cell col="32" rowspan="2" text="이신 1회량" taborder="undefined"/>
- <Cell col="33" rowspan="2" text="이의 일투" taborder="undefined"/>
- <Cell col="34" rowspan="2" text="이의 총투" taborder="undefined"/>
- <Cell col="35" colspan="3" text="이의신청액" taborder="undefined"/>
- <Cell col="38" rowspan="2" text="인정 1회량" taborder="undefined"/>
- <Cell col="39" rowspan="2" text="인정 일투" taborder="undefined"/>
- <Cell col="40" rowspan="2" text="인정 총투" taborder="undefined"/>
- <Cell col="41" colspan="3" text="인정액" taborder="undefined"/>
- <Cell col="44" colspan="3" text="불인정액" taborder="undefined"/>
- <Cell col="47" colspan="3" text="보류액" taborder="undefined"/>
- <Cell col="50" rowspan="2" text="정산 1회량" taborder="undefined"/>
- <Cell col="51" rowspan="2" text="정산 일투" taborder="undefined"/>
- <Cell col="52" rowspan="2" text="정산 총투" taborder="undefined"/>
- <Cell col="53" colspan="5" text="정산결정차액" taborder="undefined"/>
- <Cell col="58" rowspan="2" text="다음 단계" taborder="undefined"/>
- <Cell col="59" rowspan="2" text="비고란" taborder="undefined"/>
- <Cell col="60" rowspan="2" text="청구 년월" taborder="undefined"/>
- <Cell col="61" rowspan="2" text="보험 유형" taborder="undefined"/>
- <Cell col="62" rowspan="2" text="내원 유형" taborder="undefined"/>
- <Cell col="63" rowspan="2" text="청구 분야" taborder="undefined"/>
- <Cell col="64" rowspan="2" text="청구 구분" taborder="undefined"/>
- <Cell col="65" rowspan="2" text="청구 차수" taborder="undefined"/>
- <Cell col="66" rowspan="2" text="이신 구분" taborder="undefined"/>
- <Cell col="67" rowspan="2" text="접수 번호" taborder="undefined"/>
- <Cell col="68" rowspan="2" text="심사 차수" taborder="undefined"/>
- <Cell col="69" rowspan="2" text="묶음 번호" taborder="undefined"/>
- <Cell col="70" rowspan="2" text="청구 번호" taborder="undefined"/>
- <Cell col="71" rowspan="2" text="총 진료비" taborder="undefined"/>
- <Cell col="72" rowspan="2" text="이의 신청 일자" taborder="undefined"/>
- <Cell col="73" rowspan="2" text="문서번호 가의강" taborder="undefined"/>
- <Cell col="74" rowspan="2" text="결정문서 도착일자" taborder="undefined"/>
- <Cell col="75" rowspan="2" text="결정 문서 번호" taborder="undefined"/>
- <Cell col="76" rowspan="2" text="이신 완료 여부" taborder="undefined"/>
- <Cell col="77" rowspan="2" text="완료 여부" taborder="undefined"/>
- <Cell col="78" colspan="2" text="정산내역서 도착일자" taborder="undefined"/>
- <Cell col="80" rowspan="2" text="원외심결 심사차수" taborder="undefined"/>
- <Cell col="81" rowspan="2" text="원외 통보일자" taborder="undefined"/>
- <Cell row="1" col="28" text="계"/>
- <Cell row="1" col="29" text="원내"/>
- <Cell row="1" col="30" text="원외"/>
- <Cell row="1" col="35" text="계"/>
- <Cell row="1" col="36" text="원내"/>
- <Cell row="1" col="37" text="원외"/>
- <Cell row="1" col="41" text="계"/>
- <Cell row="1" col="42" text="원내"/>
- <Cell row="1" col="43" text="원외"/>
- <Cell row="1" col="44" text="계"/>
- <Cell row="1" col="45" text="원내"/>
- <Cell row="1" col="46" text="원외"/>
- <Cell row="1" col="47" text="계"/>
- <Cell row="1" col="48" text="원내"/>
- <Cell row="1" col="49" text="원외"/>
- <Cell row="1" col="53" text="계"/>
- <Cell row="1" col="54" text="원내"/>
- <Cell row="1" col="55" text="원외"/>
- <Cell row="1" col="56" text="원내"/>
- <Cell row="1" col="57" text="원외"/>
- <Cell row="1" col="78" text="원내"/>
- <Cell row="1" col="79" text="원외"/>
- </Band>
- <Band id="body">
- <Cell celltype="head" expr="currow+1"/>
- <Cell col="1" text="bind:orddeptabbr"/>
- <Cell col="2" text="bind:atdoctnm"/>
- <Cell col="3" text="bind:docuseqno"/>
- <Cell col="4" text="bind:pid"/>
- <Cell col="5" text="bind:patnm"/>
- <Cell col="6" text="bind:maindiag"/>
- <Cell col="7" displaytype="date" text="bind:dschdd" mask="yyyy-MM-dd" calendardisplaynulltype="nulltext"/>
- <Cell col="8" text="bind:obtappid"/>
- <Cell col="9" text="bind:judgrnm"/>
- <Cell col="10" text="bind:lnno"/>
- <Cell col="11" text="bind:item"/>
- <Cell col="12" text="bind:division"/>
- <Cell col="13" text="bind:division2"/>
- <Cell col="14" text="bind:adjtresncd"/>
- <Cell col="15" text="bind:matractflag"/>
- <Cell col="16" text="bind:snglcalcscorcd"/>
- <Cell col="17" text="bind:edicd"/>
- <Cell col="18" text="bind:hngnm"/>
- <Cell col="19" displaytype="number" text="bind:unitcost"/>
- <Cell col="20" text="bind:clamqty"/>
- <Cell col="21" text="bind:clamonesqty"/>
- <Cell col="22" text="bind:clamone"/>
- <Cell col="23" text="bind:clamtot"/>
- <Cell col="24" text="bind:adjtrdqty"/>
- <Cell col="25" text="bind:adjtonesqty"/>
- <Cell col="26" text="bind:adjtone"/>
- <Cell col="27" text="bind:adjttot"/>
- <Cell col="28" displaytype="number" text="bind:adjtrdtotamt"/>
- <Cell col="29" displaytype="number" text="bind:adjtrdamt"/>
- <Cell col="30" displaytype="number" text="bind:oprcpadjtrdamt"/>
- <Cell col="31" text="bind:obtappqty"/>
- <Cell col="32" text="bind:obtapponesqty"/>
- <Cell col="33" displaytype="text" edittype="text" text="bind:obtappdayqty"/>
- <Cell col="34" displaytype="text" edittype="text" text="bind:obtapptotqty"/>
- <Cell col="35" displaytype="number" text="bind:obtapptotamt"/>
- <Cell col="36" displaytype="number" text="bind:obtappamt"/>
- <Cell col="37" displaytype="number" text="bind:oprcpobtappamt"/>
- <Cell col="38" displaytype="number" text="bind:recogonesqty"/>
- <Cell col="39" text="bind:recogdayqty"/>
- <Cell col="40" text="bind:recogtotqty"/>
- <Cell col="41" displaytype="number" text="bind:recogtotamt"/>
- <Cell col="42" displaytype="number" text="bind:recogamt"/>
- <Cell col="43" displaytype="number" text="bind:oprcprecogamt"/>
- <Cell col="44" displaytype="number" text="bind:nrecogtotamt"/>
- <Cell col="45" displaytype="number" text="bind:nrecogamt"/>
- <Cell col="46" displaytype="number" text="bind:noprcprecogamt"/>
- <Cell col="47" displaytype="number" text="bind:retetotamt"/>
- <Cell col="48" displaytype="number" text="bind:reteamt"/>
- <Cell col="49" displaytype="number" text="bind:oprcpreteamt"/>
- <Cell col="50" text="bind:calconesqty"/>
- <Cell col="51" text="bind:calcdayqty"/>
- <Cell col="52" text="bind:calctotqty"/>
- <Cell col="53" displaytype="number" text="bind:calcdecitotamt"/>
- <Cell col="54" displaytype="number" text="bind:calcdeciamt"/>
- <Cell col="55" displaytype="number" text="bind:oprcpcalcdeciamt"/>
- <Cell col="56" displaytype="number" text="bind:calcdecidifamt"/>
- <Cell col="57" displaytype="number" text="bind:oprcpcalcdecidifamt"/>
- <Cell col="58" text="bind:reclamyn"/>
- <Cell col="59" displaytype="text" edittype="text" text="bind:ordmemo"/>
- <Cell col="60" displaytype="date" text="bind:clamym" mask="yyyy-MM" calendardisplaynulltype="nulltext"/>
- <Cell col="61" text="bind:insukind"/>
- <Cell col="62" text="bind:chosflag"/>
- <Cell col="63" text="bind:ordfildcd"/>
- <Cell col="64" text="bind:clamflag"/>
- <Cell col="65" text="bind:clamdg"/>
- <Cell col="66" text="bind:obtappflag"/>
- <Cell col="67" text="bind:acptno"/>
- <Cell col="68" text="bind:judgdg"/>
- <Cell col="69" text="bind:setno"/>
- <Cell col="70" text="bind:clamno"/>
- <Cell col="71" displaytype="number" text="bind:clclamamt"/>
- <Cell col="72" displaytype="date" text="bind:obtappdd" mask="yyyy-MM-dd" calendardisplaynulltype="nulltext"/>
- <Cell col="73" text="bind:obtappdocuno"/>
- <Cell col="74" displaytype="date" text="bind:decirepldd" mask="yyyy-MM-dd" calendardisplaynulltype="nulltext"/>
- <Cell col="75" text="bind:decidocuno"/>
- <Cell col="76" text="bind:obtappendyn"/>
- <Cell col="77" text="bind:endyn"/>
- <Cell col="78" displaytype="date" text="bind:calcnotidd" mask="yyyy-MM-dd" calendardisplaynulltype="nulltext"/>
- <Cell col="79" displaytype="date" text="bind:oprccalcnotidd" mask="yyyy-MM-dd" calendardisplaynulltype="nulltext"/>
- <Cell col="80" text="bind:oprcjrjudgdegree"/>
- <Cell col="81" displaytype="date" text="bind:oprcnotidd" mask="yyyy-MM-dd" calendardisplaynulltype="nulltext"/>
- </Band>
- </Format>
- </Formats>
- </Grid>
- <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">
- <Formats>
- <Format id="default">
- <Columns>
- <Column size="29"/>
- <Column size="60"/>
- <Column size="80"/>
- <Column size="60"/>
- <Column size="60"/>
- <Column size="60"/>
- <Column size="70"/>
- <Column size="72"/>
- <Column size="71"/>
- <Column size="60"/>
- <Column size="40"/>
- <Column size="30"/>
- <Column size="40"/>
- <Column size="40"/>
- <Column size="40"/>
- <Column size="64"/>
- <Column size="46"/>
- <Column size="40"/>
- <Column size="40"/>
- <Column size="70"/>
- <Column size="70"/>
- <Column size="200"/>
- <Column size="64"/>
- <Column size="40"/>
- <Column size="35"/>
- <Column size="35"/>
- <Column size="63"/>
- <Column size="63"/>
- <Column size="63"/>
- <Column size="63"/>
- <Column size="52"/>
- <Column size="35"/>
- <Column size="35"/>
- <Column size="80"/>
- <Column size="63"/>
- <Column size="63"/>
- <Column size="59"/>
- <Column size="128"/>
- <Column size="50"/>
- <Column size="50"/>
- <Column size="50"/>
- <Column size="50"/>
- <Column size="76"/>
- <Column size="50"/>
- <Column size="69"/>
- <Column size="50"/>
- <Column size="50"/>
- <Column size="50"/>
- <Column size="74"/>
- <Column size="72"/>
- <Column size="55"/>
- <Column size="100"/>
- </Columns>
- <Rows>
- <Row size="28" band="head"/>
- <Row size="24" band="head"/>
- <Row size="24"/>
- </Rows>
- <Band id="head">
- <Cell rowspan="2" taborder="undefined"/>
- <Cell col="1" rowspan="2" text="진료과" taborder="undefined"/>
- <Cell col="2" rowspan="2" text="진료의" taborder="undefined"/>
- <Cell col="3" rowspan="2" text="명일련" taborder="undefined"/>
- <Cell col="4" rowspan="2" text="등록번호" taborder="undefined"/>
- <Cell col="5" rowspan="2" text="환자이름" taborder="undefined"/>
- <Cell col="6" rowspan="2" text="상병코드" taborder="undefined"/>
- <Cell col="7" rowspan="2" text="퇴원일자" taborder="undefined"/>
- <Cell col="8" rowspan="2" text="이의 신청자코드" taborder="undefined"/>
- <Cell col="9" rowspan="2" text="이의 신청자" taborder="undefined"/>
- <Cell col="10" colspan="3" text="조정삭감액" taborder="undefined"/>
- <Cell col="13" colspan="3" text="이의신청액" taborder="undefined"/>
- <Cell col="16" colspan="3" text="인정액" taborder="undefined"/>
- <Cell col="19" colspan="3" text="불인정액" taborder="undefined"/>
- <Cell col="22" colspan="3" text="보류액" taborder="undefined"/>
- <Cell col="25" colspan="3" text="정산결정차액" taborder="undefined"/>
- <Cell col="28" colspan="2" text="인정액-정산결정차액" taborder="undefined"/>
- <Cell col="30" rowspan="2" text="청구 년월" taborder="undefined"/>
- <Cell col="31" rowspan="2" text="보험 유형" taborder="undefined"/>
- <Cell col="32" rowspan="2" text="내원 유형" taborder="undefined"/>
- <Cell col="33" rowspan="2" text="청구 분야" taborder="undefined"/>
- <Cell col="34" rowspan="2" text="청구 구분" taborder="undefined"/>
- <Cell col="35" rowspan="2" text="청구 차수" taborder="undefined"/>
- <Cell col="36" rowspan="2" text="이신 구분" taborder="undefined"/>
- <Cell col="37" rowspan="2" text="접수 번호" taborder="undefined"/>
- <Cell col="38" rowspan="2" text="심사 차수" taborder="undefined"/>
- <Cell col="39" rowspan="2" text="묶음 번호" taborder="undefined"/>
- <Cell col="40" rowspan="2" text="청구 번호" taborder="undefined"/>
- <Cell col="41" rowspan="2" text="총 진료비" taborder="undefined"/>
- <Cell col="42" rowspan="2" text="이의 신청 일자" taborder="undefined"/>
- <Cell col="43" rowspan="2" text="문서번호 가의강" taborder="undefined"/>
- <Cell col="44" rowspan="2" text="결정문서 도착일자" taborder="undefined"/>
- <Cell col="45" rowspan="2" text="결정 문서 번호" taborder="undefined"/>
- <Cell col="46" rowspan="2" text="이신 완료 여부" taborder="undefined"/>
- <Cell col="47" rowspan="2" text="완료 여부" taborder="undefined"/>
- <Cell col="48" colspan="2" text="정산내역서 도착일자" taborder="undefined"/>
- <Cell col="50" rowspan="2" text="원외심결 심사차수" taborder="undefined"/>
- <Cell col="51" rowspan="2" text="원외 통보일자" taborder="undefined"/>
- <Cell row="1" col="10" text="계"/>
- <Cell row="1" col="11" text="원내"/>
- <Cell row="1" col="12" text="원외"/>
- <Cell row="1" col="13" text="계"/>
- <Cell row="1" col="14" text="원내"/>
- <Cell row="1" col="15" text="원외"/>
- <Cell row="1" col="16" text="계"/>
- <Cell row="1" col="17" text="원내"/>
- <Cell row="1" col="18" text="원외"/>
- <Cell row="1" col="19" text="계"/>
- <Cell row="1" col="20" text="원내"/>
- <Cell row="1" col="21" text="원외"/>
- <Cell row="1" col="22" text="계"/>
- <Cell row="1" col="23" text="원내"/>
- <Cell row="1" col="24" text="원외"/>
- <Cell row="1" col="25" text="계"/>
- <Cell row="1" col="26" text="원내"/>
- <Cell row="1" col="27" text="원외"/>
- <Cell row="1" col="28" text="원내"/>
- <Cell row="1" col="29" text="원외"/>
- <Cell row="1" col="48" text="원내"/>
- <Cell row="1" col="49" text="원외"/>
- </Band>
- <Band id="body">
- <Cell celltype="head" expr="currow+1"/>
- <Cell col="1" text="bind:orddeptabbr"/>
- <Cell col="2" text="bind:atdoctnm"/>
- <Cell col="3" text="bind:docuseqno"/>
- <Cell col="4" text="bind:pid"/>
- <Cell col="5" text="bind:patnm"/>
- <Cell col="6" text="bind:maindiag"/>
- <Cell col="7" displaytype="date" text="bind:dschdd" mask="yyyy-MM-dd" calendardisplaynulltype="nulltext"/>
- <Cell col="8" text="bind:obtappid"/>
- <Cell col="9" text="bind:judgrnm"/>
- <Cell col="10" displaytype="number" text="bind:adjtrdtotamt"/>
- <Cell col="11" displaytype="number" text="bind:adjtrdamt"/>
- <Cell col="12" displaytype="number" text="bind:oprcpadjtrdamt"/>
- <Cell col="13" displaytype="number" text="bind:obtapptotamt"/>
- <Cell col="14" displaytype="number" text="bind:obtappamt"/>
- <Cell col="15" displaytype="number" text="bind:oprcpobtappamt"/>
- <Cell col="16" displaytype="number" text="bind:recogtotamt"/>
- <Cell col="17" displaytype="number" text="bind:recogamt"/>
- <Cell col="18" displaytype="number" text="bind:oprcprecogamt"/>
- <Cell col="19" displaytype="number" text="bind:nrecogtotamt"/>
- <Cell col="20" displaytype="number" text="bind:nrecogamt"/>
- <Cell col="21" displaytype="number" text="bind:noprcprecogamt"/>
- <Cell col="22" displaytype="number" text="bind:retetotamt"/>
- <Cell col="23" displaytype="number" text="bind:reteamt"/>
- <Cell col="24" displaytype="number" text="bind:oprcpreteamt"/>
- <Cell col="25" displaytype="number" text="bind:calcdecitotamt"/>
- <Cell col="26" displaytype="number" text="bind:calcdeciamt"/>
- <Cell col="27" displaytype="number" text="bind:oprcpcalcdeciamt"/>
- <Cell col="28" displaytype="number" text="bind:calcdecidifamt"/>
- <Cell col="29" displaytype="number" text="bind:oprcpcalcdecidifamt"/>
- <Cell col="30" displaytype="date" text="bind:clamym" mask="yyyy-MM" calendardisplaynulltype="nulltext"/>
- <Cell col="31" text="bind:insukind"/>
- <Cell col="32" text="bind:chosflag"/>
- <Cell col="33" text="bind:ordfildcd"/>
- <Cell col="34" text="bind:clamflag"/>
- <Cell col="35" text="bind:clamdg"/>
- <Cell col="36" text="bind:obtappflag"/>
- <Cell col="37" text="bind:acptno"/>
- <Cell col="38" text="bind:judgdg"/>
- <Cell col="39" text="bind:setno"/>
- <Cell col="40" text="bind:clamno"/>
- <Cell col="41" displaytype="number" text="bind:clclamamt"/>
- <Cell col="42" displaytype="date" text="bind:obtappdd" mask="yyyy-MM-dd" calendardisplaynulltype="nulltext"/>
- <Cell col="43" text="bind:obtappdocuno"/>
- <Cell col="44" displaytype="date" text="bind:decirepldd" mask="yyyy-MM-dd" calendardisplaynulltype="nulltext"/>
- <Cell col="45" text="bind:decidocuno"/>
- <Cell col="46" text="bind:obtappendyn"/>
- <Cell col="47" text="bind:endyn"/>
- <Cell col="48" displaytype="date" text="bind:calcnotidd" mask="yyyy-MM-dd" calendardisplaynulltype="nulltext"/>
- <Cell col="49" displaytype="date" text="bind:oprccalcnotidd" mask="yyyy-MM-dd" calendardisplaynulltype="nulltext"/>
- <Cell col="50" text="bind:oprcjrjudgdegree"/>
- <Cell col="51" displaytype="date" text="bind:oprcnotidd" mask="yyyy-MM-dd" calendardisplaynulltype="nulltext"/>
- </Band>
- </Format>
- </Formats>
- </Grid>
- <Static text="** 접수번호, 심사차수, 문서번호, 등록번호로 조회시 기간 등 조회조건은 무시됩니다. **" position="absolute 703 120 1193 136" id="caption6" anchor="top right" style="background:#f5feb8ff 0;color:#fa0413ff;font:Dotum,8,bold;"/>
- </Layout>
- </Layouts>
- </Div>
- <Div position="absolute 0 757 1194 784" id="grp_btn" anchor="left right bottom">
- <Layouts>
- <Layout>
- <Shape position="absolute 0 0 1194 6" linetype="horizontal" id="line32" class="line_6" anchor="left right bottom"/>
- <Button position="absolute 3 5 107 27" id="button3" class="btn3" text="이의신청 조회" onclick="grp_btn_button3_onclick"/>
- <Button position="absolute 1138 4 1194 26" id="button4" class="btn4" text="닫기" anchor="right bottom" onclick="grp_btn_button4_onclick"/>
- <Button position="absolute 1069 4 1137 26" id="btn_init" class="btn4" taborder="22" text="초기화" anchor="right bottom" onclick="grp_btn_btn_init_onclick"/>
- </Layout>
- </Layouts>
- </Div>
- <Static id="cap_title" text="이의신청 결과 조회" class="tit_1" position="absolute 0 0 216 23"/>
- <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"/>
- </Layout>
- </Layouts>
- <Objects>
- <Dataset id="ds_send_send_dataqry" firefirstcount="0" firenextcount="0" useclientlayout="false" updatecontrol="true" enableevent="true" loadkeymode="keep" loadfiltermode="keep" reversesubsum="false">
- <ColumnInfo>
- <Column id="termflag1" type="STRING" size="256"/>
- <Column id="fromobtappdd" type="STRING" size="256"/>
- <Column id="toobtappdd" type="STRING" size="256"/>
- <Column id="patunitsrch1" type="STRING" size="256"/>
- <Column id="obtappdocuno" type="STRING" size="256"/>
- <Column id="ordfildcd" type="STRING" size="256"/>
- <Column id="obtapprid" type="STRING" size="256"/>
- <Column id="decidocuno" type="STRING" size="256"/>
- <Column id="clamflag" type="STRING" size="256"/>
- <Column id="insukind" type="STRING" size="256"/>
- <Column id="chosflag" type="STRING" size="256"/>
- <Column id="obtapprsltendflag" type="STRING" size="256"/>
- <Column id="rejudgflag" type="STRING" size="256"/>
- <Column id="obtappflag" type="STRING" size="256"/>
- <Column id="obtappamt" type="STRING" size="256"/>
- <Column id="recogamt" type="STRING" size="256"/>
- <Column id="cuttotamt" type="STRING" size="256"/>
- <Column id="acptno" type="STRING" size="256"/>
- <Column id="delcntsum" type="STRING" size="256"/>
- <Column id="judgdg" type="STRING" size="256"/>
- <Column id="srchflag" type="STRING" size="256"/>
- <Column id="patunitsrch2" type="STRING" size="256"/>
- </ColumnInfo>
- <Rows>
- <Row>
- <Col id="insukind">1</Col>
- <Col id="chosflag">1</Col>
- <Col id="obtapprsltendflag">3</Col>
- <Col id="rejudgflag">1</Col>
- <Col id="termflag1"/>
- </Row>
- </Rows>
- </Dataset>
- <Dataset id="ds_main_list04_deciinfo" firefirstcount="0" firenextcount="0" useclientlayout="false" updatecontrol="true" enableevent="true" loadkeymode="keep" loadfiltermode="keep" reversesubsum="false">
- <ColumnInfo>
- <Column id="decirepldd" type="STRING" size="256"/>
- <Column id="decidocuno" type="STRING" size="256"/>
- </ColumnInfo>
- <Rows>
- <Row/>
- </Rows>
- </Dataset>
- <Dataset id="ds_main_list01_gridrsltqry" firefirstcount="0" firenextcount="0" useclientlayout="true" updatecontrol="true" enableevent="true" loadkeymode="keep" loadfiltermode="keep" reversesubsum="false">
- <ColumnInfo>
- <Column id="clamym" type="STRING" size="256" sumtext="청구년월"/>
- <Column id="insukind" type="STRING" size="256" sumtext="보험유형"/>
- <Column id="chosflag" type="STRING" size="256" sumtext="입원외래구분"/>
- <Column id="ordfildcd" type="STRING" size="256" sumtext="진료분야"/>
- <Column id="clamflag" type="STRING" size="256" sumtext="청구구분"/>
- <Column id="clamdegree" type="STRING" size="256" sumtext="청구차수"/>
- <Column id="obtappflag" type="STRING" size="256" sumtext="이의신청구분"/>
- <Column id="acptno" type="STRING" size="256" sumtext="접수번호"/>
- <Column id="judgdg" type="STRING" size="256" sumtext="심사차수"/>
- <Column id="setno" type="STRING" size="256" sumtext="묶음번호"/>
- <Column id="notidecirepldd" type="STRING" size="256" sumtext="통보/결정서도착일"/>
- <Column id="obtappdd" type="STRING" size="256" sumtext="이의신청일"/>
- <Column id="obtappdocuno" type="STRING" size="256" sumtext="이의신청문서번호"/>
- <Column id="decirepldd" type="STRING" size="256" sumtext="결정회신일자"/>
- <Column id="decidocuno" type="STRING" size="256" sumtext="결정문서번호"/>
- <Column id="obtappendyn" type="STRING" size="256" sumtext="이신완료여부"/>
- <Column id="endyn" type="STRING" size="256" sumtext="종결여부"/>
- <Column id="rem" type="STRING" size="256" sumtext="비고"/>
- <Column id="clclamamt" type="STRING" size="256" sumtext="요양급여비용총액"/>
- <Column id="adjtrdcnt" type="STRING" size="256" sumtext="조정삭감건수"/>
- <Column id="adjtrdtotamt" type="STRING" size="256" sumtext="조정삭감액_계"/>
- <Column id="adjtrdamt" type="STRING" size="256" sumtext="조정삭감액_원내"/>
- <Column id="oprcpadjtrdamt" type="STRING" size="256" sumtext="조정삭감액_원외"/>
- <Column id="adjtcutrate" type="STRING" size="256" sumtext="조정삭감율_계"/>
- <Column id="adjtcutrate1" type="STRING" size="256" sumtext="조정삭감율_원내"/>
- <Column id="adjtcutrate2" type="STRING" size="256" sumtext="조정삭감율_원외"/>
- <Column id="obtappcnt" type="STRING" size="256" sumtext="이의신청건수"/>
- <Column id="obtapptotamt" type="STRING" size="256" sumtext="이의신청액_계"/>
- <Column id="obtappamt" type="STRING" size="256" sumtext="이의신청액_원내"/>
- <Column id="oprcpobtaamt" type="STRING" size="256" sumtext="이의신청액_원외"/>
- <Column id="obtappcutrate" type="STRING" size="256" sumtext="이의신청율_계"/>
- <Column id="obtappcutrate1" type="STRING" size="256" sumtext="이의신청율_원내"/>
- <Column id="obtappcutrate2" type="STRING" size="256" sumtext="이의신청율_원외"/>
- <Column id="decicnt" type="STRING" size="256" sumtext="결정건수"/>
- <Column id="decitotamt" type="STRING" size="256" sumtext="인정액_계"/>
- <Column id="deciamt" type="STRING" size="256" sumtext="인정액_원내"/>
- <Column id="oprcpdeciamt" type="STRING" size="256" sumtext="인정액_원외"/>
- <Column id="decirate" type="STRING" size="256" sumtext="인정율_원내"/>
- <Column id="oprcpdecirate" type="STRING" size="256" sumtext="인정율_원외"/>
- <Column id="ndecitotamt" type="STRING" size="256" sumtext="불인정액_계"/>
- <Column id="ndeciamt" type="STRING" size="256" sumtext="불인정액_원내"/>
- <Column id="noprcpdeciamt" type="STRING" size="256" sumtext="불인정액_원외"/>
- <Column id="retecnt" type="STRING" size="256" sumtext="보류건수"/>
- <Column id="retetotamt" type="STRING" size="256" sumtext="보류액_계"/>
- <Column id="reteamt" type="STRING" size="256" sumtext="보류액_원내"/>
- <Column id="oprcpreteamt" type="STRING" size="256" sumtext="보류액_원외"/>
- <Column id="calcrepldd" type="STRING" size="256" sumtext="정산내역서도착일자_원내"/>
- <Column id="oprcpcalcrepldd" type="STRING" size="256" sumtext="정산내역서도착일자_원외"/>
- <Column id="calcdecitotamt" type="STRING" size="256" sumtext="정산결정차액_계"/>
- <Column id="calcdeciamt" type="STRING" size="256" sumtext="정산결정차액_원내"/>
- <Column id="oprcpcalcdeciamt" type="STRING" size="256" sumtext="정산결정차액_원외"/>
- <Column id="calcdecidifamt" type="STRING" size="256" sumtext="인정액_정산결정차액_원내"/>
- <Column id="oprcpcalcdecidifamt" type="STRING" size="256" sumtext="인정액_정산결정차액_원외"/>
- <Column id="clamno" type="STRING" size="256" sumtext="청구번호"/>
- <Column id="clclamamt1" type="STRING" size="256" sumtext="총진료비"/>
- <Column id="oprcjrjudgdegree" type="STRING" size="256" sumtext="원외심결심사차수"/>
- <Column id="oprcnotidd" type="STRING" size="256" sumtext="원외통보일자"/>
- <Column id="oprcnotidd" type="STRING" size="256" sumtext="원외통보일자"/>
- <Column id="sumtypecd" type="STRING" size="256" sumtext="청구분야"/>
- </ColumnInfo>
- </Dataset>
- <Dataset id="ds_hidden" firefirstcount="0" firenextcount="0" useclientlayout="false" updatecontrol="true" enableevent="true" loadkeymode="keep" loadfiltermode="keep" reversesubsum="false">
- <ColumnInfo>
- <Column id="memo" type="STRING" size="256"/>
- </ColumnInfo>
- <Rows>
- <Row/>
- </Rows>
- </Dataset>
- <Dataset id="ds_main_list02_griddocu" firefirstcount="0" firenextcount="0" useclientlayout="false" updatecontrol="true" enableevent="true" loadkeymode="keep" loadfiltermode="keep" reversesubsum="false">
- <ColumnInfo>
- <Column id="orddeptcd" type="STRING" size="256" sumtext="진료과"/>
- <Column id="orddeptabbr" type="STRING" size="256" sumtext="진료과약어"/>
- <Column id="atdoct" type="STRING" size="256" sumtext="주치의코드"/>
- <Column id="atdoctnm" type="STRING" size="256" sumtext="주치의"/>
- <Column id="docuseqno" type="STRING" size="256" sumtext="명세서일련번호"/>
- <Column id="pid" type="STRING" size="256" sumtext="등록번호"/>
- <Column id="patnm" type="STRING" size="256" sumtext="수진자명"/>
- <Column id="maindiag" type="STRING" size="256" sumtext="주상병"/>
- <Column id="dschdd" type="STRING" size="256" sumtext="퇴원일자"/>
- <Column id="obtappid" type="STRING" size="256" sumtext="이의신청자"/>
- <Column id="judgrnm" type="STRING" size="256" sumtext="이의신청자명"/>
- <Column id="adjtrdtotamt" type="STRING" size="256" sumtext="조정삭감액계"/>
- <Column id="adjtrdamt" type="STRING" size="256" sumtext="조정삭감액원내"/>
- <Column id="oprcpadjtrdamt" type="STRING" size="256" sumtext="조정삭감액원외"/>
- <Column id="obtapptotamt" type="STRING" size="256" sumtext="이의신청액계"/>
- <Column id="obtappamt" type="STRING" size="256" sumtext="이의신청액원내"/>
- <Column id="oprcpobtappamt" type="STRING" size="256" sumtext="이의신청액원외"/>
- <Column id="recogtotamt" type="STRING" size="256" sumtext="인정액계"/>
- <Column id="recogamt" type="STRING" size="256" sumtext="인정액"/>
- <Column id="oprcprecogamt" type="STRING" size="256" sumtext="인정액(원외)"/>
- <Column id="nrecogtotamt" type="STRING" size="256" sumtext="불인정액계"/>
- <Column id="nrecogamt" type="STRING" size="256" sumtext="불인정액"/>
- <Column id="noprcprecogamt" type="STRING" size="256" sumtext="불인정액(원외)"/>
- <Column id="retetotamt" type="STRING" size="256" sumtext="보류액계"/>
- <Column id="reteamt" type="STRING" size="256" sumtext="보류액"/>
- <Column id="oprcpreteamt" type="STRING" size="256" sumtext="보류액(원외)"/>
- <Column id="calcdecitotamt" type="STRING" size="256" sumtext="정산결정차액계"/>
- <Column id="calcdeciamt" type="STRING" size="256" sumtext="정산결정차액"/>
- <Column id="oprcpcalcdeciamt" type="STRING" size="256" sumtext="정산결정차액(원외)"/>
- <Column id="calcdecidifamt" type="STRING" size="256" sumtext="인정정산결정차액"/>
- <Column id="oprcpcalcdecidifamt" type="STRING" size="256" sumtext="인정정산결정차액(원외)"/>
- <Column id="clamym" type="STRING" size="256" sumtext="청구년월"/>
- <Column id="insukind" type="STRING" size="256" sumtext="보험유형"/>
- <Column id="chosflag" type="STRING" size="256" sumtext="내원유형"/>
- <Column id="ordfildcd" type="STRING" size="256" sumtext="청구분야"/>
- <Column id="clamflag" type="STRING" size="256" sumtext="청구구분"/>
- <Column id="clamdg" type="STRING" size="256" sumtext="청구차수"/>
- <Column id="obtappflag" type="STRING" size="256" sumtext="이신구분"/>
- <Column id="acptno" type="STRING" size="256" sumtext="접수번호"/>
- <Column id="judgdg" type="STRING" size="256" sumtext="심사차수"/>
- <Column id="setno" type="STRING" size="256" sumtext="묶음번호"/>
- <Column id="clamno" type="STRING" size="256" sumtext="청구번호"/>
- <Column id="clclamamt" type="STRING" size="256" sumtext="총진료비"/>
- <Column id="obtappdd" type="STRING" size="256" sumtext="이신일자"/>
- <Column id="obtappdocuno" type="STRING" size="256" sumtext="문서번호가의강"/>
- <Column id="decirepldd" type="STRING" size="256" sumtext="결정문서번호도착일"/>
- <Column id="decidocuno" type="STRING" size="256" sumtext="결정문서번호"/>
- <Column id="obtappendyn" type="STRING" size="256" sumtext="이신완료여부"/>
- <Column id="endyn" type="STRING" size="256" sumtext="완료여부"/>
- <Column id="calcnotidd" type="STRING" size="256" sumtext="정산내역도착일원내"/>
- <Column id="oprccalcnotidd" type="STRING" size="256" sumtext="정산내역도착일원외"/>
- <Column id="oprcjrjudgdegree" type="STRING" size="256" sumtext="원외심결심사차수"/>
- <Column id="oprcnotidd" type="STRING" size="256" sumtext="원외통보일자"/>
- </ColumnInfo>
- </Dataset>
- <Dataset id="ds_main_list03_gridobtrsltspec" firefirstcount="0" firenextcount="0" useclientlayout="false" updatecontrol="true" enableevent="true" loadkeymode="keep" loadfiltermode="keep" reversesubsum="false">
- <ColumnInfo>
- <Column id="orddeptcd" type="STRING" size="256" sumtext="진료과"/>
- <Column id="orddeptabbr" type="STRING" size="256" sumtext="진료과약어"/>
- <Column id="atdoct" type="STRING" size="256" sumtext="주치의코드"/>
- <Column id="atdoctnm" type="STRING" size="256" sumtext="주치의"/>
- <Column id="docuseqno" type="STRING" size="256" sumtext="명세서일련번호"/>
- <Column id="pid" type="STRING" size="256" sumtext="등록번호"/>
- <Column id="patnm" type="STRING" size="256" sumtext="수진자명"/>
- <Column id="maindiag" type="STRING" size="256" sumtext="주상병"/>
- <Column id="dschdd" type="STRING" size="256" sumtext="퇴원일자"/>
- <Column id="obtappid" type="STRING" size="256" sumtext="이의신청자"/>
- <Column id="judgrnm" type="STRING" size="256" sumtext="이의신청자명"/>
- <Column id="lnno" type="STRING" size="256" sumtext="줄번호"/>
- <Column id="item" type="STRING" size="256" sumtext="항"/>
- <Column id="division" type="STRING" size="256" sumtext="구분"/>
- <Column id="division2" type="STRING" size="256" sumtext="구분"/>
- <Column id="adjtresncd" type="STRING" size="256" sumtext="조정사유"/>
- <Column id="matractflag" type="STRING" size="256" sumtext="I/II구분"/>
- <Column id="snglcalcscorcd" type="STRING" size="256" sumtext="처방코드"/>
- <Column id="edicd" type="STRING" size="256" sumtext="EDI코드"/>
- <Column id="hngnm" type="STRING" size="256" sumtext="처방명칭"/>
- <Column id="unitcost" type="STRING" size="256" sumtext="단가"/>
- <Column id="clamqty" type="STRING" size="256" sumtext="청구수량"/>
- <Column id="clamonesqty" type="STRING" size="256" sumtext="청구1회량"/>
- <Column id="clamone" type="STRING" size="256" sumtext="청구일투"/>
- <Column id="clamtot" type="STRING" size="256" sumtext="청구총투"/>
- <Column id="adjtrdqty" type="STRING" size="256" sumtext="조정삭감수량"/>
- <Column id="adjtonesqty" type="STRING" size="256" sumtext="조정1회량"/>
- <Column id="adjtone" type="STRING" size="256" sumtext="조정일투"/>
- <Column id="adjttot" type="STRING" size="256" sumtext="조정총투"/>
- <Column id="adjtrdtotamt" type="STRING" size="256" sumtext="조정삭감액계"/>
- <Column id="adjtrdamt" type="STRING" size="256" sumtext="조정삭감액원내"/>
- <Column id="oprcpadjtrdamt" type="STRING" size="256" sumtext="조정삭감액원외"/>
- <Column id="obtappqty" type="STRING" size="256" sumtext="이신수량"/>
- <Column id="obtapponesqty" type="STRING" size="256" sumtext="이신1회량"/>
- <Column id="obtappdayqty" type="STRING" size="256" sumtext="이의신청일투"/>
- <Column id="obtapptotqty" type="STRING" size="256" sumtext="이의신청총투"/>
- <Column id="obtapptotamt" type="STRING" size="256" sumtext="이의신청액계"/>
- <Column id="obtappamt" type="STRING" size="256" sumtext="이의신청액원내"/>
- <Column id="oprcpobtappamt" type="STRING" size="256" sumtext="이의신청액원외"/>
- <Column id="recogonesqty" type="STRING" size="256" sumtext="인정1회량"/>
- <Column id="recogdayqty" type="STRING" size="256" sumtext="인정일투"/>
- <Column id="recogtotqty" type="STRING" size="256" sumtext="인정총투"/>
- <Column id="recogtotamt" type="STRING" size="256" sumtext="인정액계"/>
- <Column id="recogamt" type="STRING" size="256" sumtext="인정액"/>
- <Column id="oprcprecogamt" type="STRING" size="256" sumtext="인정액(원외)"/>
- <Column id="nrecogtotamt" type="STRING" size="256" sumtext="불인정액계"/>
- <Column id="nrecogamt" type="STRING" size="256" sumtext="불인정액"/>
- <Column id="noprcprecogamt" type="STRING" size="256" sumtext="불인정액(원외)"/>
- <Column id="retetotamt" type="STRING" size="256" sumtext="보류액계"/>
- <Column id="reteamt" type="STRING" size="256" sumtext="보류액"/>
- <Column id="oprcpreteamt" type="STRING" size="256" sumtext="보류액(원외)"/>
- <Column id="calconesqty" type="STRING" size="256" sumtext="정산1회량"/>
- <Column id="calcdayqty" type="STRING" size="256" sumtext="정산일투"/>
- <Column id="calctotqty" type="STRING" size="256" sumtext="정산총투"/>
- <Column id="calcdecitotamt" type="STRING" size="256" sumtext="정산결정차액계"/>
- <Column id="calcdeciamt" type="STRING" size="256" sumtext="정산결정차액"/>
- <Column id="oprcpcalcdeciamt" type="STRING" size="256" sumtext="정산결정차액(원외)"/>
- <Column id="calcdecidifamt" type="STRING" size="256" sumtext="인정정산결정차액"/>
- <Column id="oprcpcalcdecidifamt" type="STRING" size="256" sumtext="인정정산결정차액(원외)"/>
- <Column id="reclamyn" type="STRING" size="256" sumtext="다음단계"/>
- <Column id="ordmemo" type="STRING" size="256" sumtext="처방별메모"/>
- <Column id="clamym" type="STRING" size="256" sumtext="청구년월"/>
- <Column id="insukind" type="STRING" size="256" sumtext="보험유형"/>
- <Column id="chosflag" type="STRING" size="256" sumtext="내원유형"/>
- <Column id="ordfildcd" type="STRING" size="256" sumtext="청구분야"/>
- <Column id="clamflag" type="STRING" size="256" sumtext="청구구분"/>
- <Column id="clamdg" type="STRING" size="256" sumtext="청구차수"/>
- <Column id="obtappflag" type="STRING" size="256" sumtext="이신구분"/>
- <Column id="acptno" type="STRING" size="256" sumtext="접수번호"/>
- <Column id="judgdg" type="STRING" size="256" sumtext="심사차수"/>
- <Column id="setno" type="STRING" size="256" sumtext="묶음번호"/>
- <Column id="clamno" type="STRING" size="256" sumtext="청구번호"/>
- <Column id="clclamamt" type="STRING" size="256" sumtext="총진료비"/>
- <Column id="obtappdd" type="STRING" size="256" sumtext="이신일자"/>
- <Column id="obtappdocuno" type="STRING" size="256" sumtext="문서번호가의강"/>
- <Column id="decirepldd" type="STRING" size="256" sumtext="결정문서번호도착일"/>
- <Column id="decidocuno" type="STRING" size="256" sumtext="결정문서번호"/>
- <Column id="obtappendyn" type="STRING" size="256" sumtext="이신완료여부"/>
- <Column id="endyn" type="STRING" size="256" sumtext="완료여부"/>
- <Column id="calcnotidd" type="STRING" size="256" sumtext="정산내역도착일원내"/>
- <Column id="oprccalcnotidd" type="STRING" size="256" sumtext="정산내역도착일원외"/>
- <Column id="oprcjrjudgdegree" type="STRING" size="256" sumtext="원외심결심사차수"/>
- <Column id="oprcnotidd" type="STRING" size="256" sumtext="원외통보일자"/>
- </ColumnInfo>
- </Dataset>
- <Dataset id="ds_init_P0458list" firefirstcount="0" firenextcount="0" useclientlayout="false" updatecontrol="true" enableevent="true" loadkeymode="keep" loadfiltermode="keep" reversesubsum="false">
- <ColumnInfo>
- <Column id="cdnm" type="STRING" size="256"/>
- <Column id="cdid" type="STRING" size="256"/>
- </ColumnInfo>
- </Dataset>
- <Dataset id="ds_init_P0426list" firefirstcount="0" firenextcount="0" useclientlayout="false" updatecontrol="true" enableevent="true" loadkeymode="keep" loadfiltermode="keep" reversesubsum="false">
- <ColumnInfo>
- <Column id="cdnm" type="STRING" size="256"/>
- <Column id="cdid" type="STRING" size="256"/>
- </ColumnInfo>
- </Dataset>
- <Dataset id="ds_init_P0264list" firefirstcount="0" firenextcount="0" useclientlayout="false" updatecontrol="true" enableevent="true" loadkeymode="keep" loadfiltermode="keep" reversesubsum="false">
- <ColumnInfo>
- <Column id="cdnm" type="STRING" size="256"/>
- <Column id="cdid" type="STRING" size="256"/>
- </ColumnInfo>
- </Dataset>
- <Dataset id="ds_init_P0421list" firefirstcount="0" firenextcount="0" useclientlayout="false" updatecontrol="true" enableevent="true" loadkeymode="keep" loadfiltermode="keep" reversesubsum="false">
- <ColumnInfo>
- <Column id="cdnm" type="STRING" size="256"/>
- <Column id="cdid" type="STRING" size="256"/>
- </ColumnInfo>
- </Dataset>
- <Dataset id="ds_init_P0028list" firefirstcount="0" firenextcount="0" useclientlayout="false" updatecontrol="true" enableevent="true" loadkeymode="keep" loadfiltermode="keep" reversesubsum="false">
- <ColumnInfo>
- <Column id="cdnm" type="STRING" size="256"/>
- <Column id="cdid" type="STRING" size="256"/>
- </ColumnInfo>
- </Dataset>
- <Dataset id="ds_init_P0008list" firefirstcount="0" firenextcount="0" useclientlayout="false" updatecontrol="true" enableevent="true" loadkeymode="keep" loadfiltermode="keep" reversesubsum="false"/>
- <Dataset id="ds_init_P0291list" firefirstcount="0" firenextcount="0" useclientlayout="false" updatecontrol="true" enableevent="true" loadkeymode="keep" loadfiltermode="keep" reversesubsum="false"/>
- <Dataset id="ds_init_P0121list" firefirstcount="0" firenextcount="0" useclientlayout="false" updatecontrol="true" enableevent="true" loadkeymode="keep" loadfiltermode="keep" reversesubsum="false"/>
- <Dataset id="ds_menu" firefirstcount="0" firenextcount="0" useclientlayout="false" updatecontrol="true" enableevent="true" loadkeymode="keep" loadfiltermode="keep" reversesubsum="false">
- <ColumnInfo>
- <Column id="label" type="STRING" size="256"/>
- <Column id="func" type="STRING" size="256"/>
- <Column id="level" type="STRING" size="256"/>
- </ColumnInfo>
- <Rows>
- <Row>
- <Col id="label">이의신청 결과상세 조회</Col>
- <Col id="func">fGridObtAppRsltSpec</Col>
- <Col id="level">0</Col>
- </Row>
- </Rows>
- </Dataset>
- <Dataset id="ds_source_obtapprsltspec" firefirstcount="0" firenextcount="0" useclientlayout="false" updatecontrol="true" enableevent="true" loadkeymode="keep" loadfiltermode="keep" reversesubsum="false">
- <ColumnInfo>
- <Column id="clamno" type="STRING" size="256"/>
- <Column id="acptno" type="STRING" size="256"/>
- <Column id="judgdg" type="STRING" size="256"/>
- <Column id="setno" type="STRING" size="256"/>
- <Column id="notidd" type="STRING" size="256"/>
- <Column id="rejudgflag" type="STRING" size="256"/>
- <Column id="obtappflag" type="STRING" size="256"/>
- <Column id="obtappdocuno" type="STRING" size="256"/>
- <Column id="obtappdd" type="STRING" size="256"/>
- <Column id="decidocuno" type="STRING" size="256"/>
- <Column id="decirepldd" type="STRING" size="256"/>
- <Column id="endyn" type="STRING" size="256"/>
- </ColumnInfo>
- <Rows>
- <Row/>
- </Rows>
- </Dataset>
- <Dataset id="ds_source" firefirstcount="0" firenextcount="0" useclientlayout="false" updatecontrol="true" enableevent="true" loadkeymode="keep" loadfiltermode="keep" reversesubsum="false">
- <ColumnInfo>
- <Column id="judgdg" type="STRING" size="256"/>
- <Column id="clamno" type="STRING" size="256"/>
- <Column id="acptno" type="STRING" size="256"/>
- <Column id="obtappflag" type="STRING" size="256"/>
- <Column id="rem" type="STRING" size="256"/>
- </ColumnInfo>
- <Rows>
- <Row/>
- </Rows>
- </Dataset>
- <Dataset id="ds_hidden_sppir30210_rslt" firefirstcount="0" firenextcount="0" useclientlayout="false" updatecontrol="true" enableevent="true" loadkeymode="keep" loadfiltermode="keep" reversesubsum="false">
- <ColumnInfo>
- <Column id="rem" type="STRING" size="256"/>
- </ColumnInfo>
- <Rows>
- <Row/>
- </Rows>
- </Dataset>
- <Dataset id="ds_send_send_deciinfo" firefirstcount="0" firenextcount="0" useclientlayout="false" updatecontrol="true" enableevent="true" loadkeymode="keep" loadfiltermode="keep" reversesubsum="false">
- <ColumnInfo>
- <Column id="clamno" type="STRING" size="256"/>
- <Column id="judgdg" type="STRING" size="256"/>
- <Column id="acptno" type="STRING" size="256"/>
- <Column id="obtappflag" type="STRING" size="256"/>
- <Column id="status" type="STRING" size="256"/>
- <Column id="decidocuno" type="STRING" size="256"/>
- <Column id="obtappdocuno" type="STRING" size="256"/>
- <Column id="decirepldd" type="STRING" size="256"/>
- </ColumnInfo>
- <Rows>
- <Row/>
- </Rows>
- </Dataset>
- <Dataset id="ds_send_selectlist" firefirstcount="0" firenextcount="0" useclientlayout="false" updatecontrol="true" enableevent="true" loadkeymode="keep" loadfiltermode="keep" reversesubsum="false">
- <ColumnInfo>
- <Column id="judgdg" type="STRING" size="256"/>
- <Column id="clamno" type="STRING" size="256"/>
- <Column id="acptno" type="STRING" size="256"/>
- <Column id="obtappflag" type="STRING" size="256"/>
- </ColumnInfo>
- </Dataset>
- <Dataset id="ds_send_send_prcp" firefirstcount="0" firenextcount="0" useclientlayout="false" updatecontrol="true" enableevent="true" loadkeymode="keep" loadfiltermode="keep" reversesubsum="false">
- <ColumnInfo>
- <Column id="judgdg" type="STRING" size="256"/>
- <Column id="clamno" type="STRING" size="256"/>
- <Column id="acptno" type="STRING" size="256"/>
- <Column id="obtappflag" type="STRING" size="256"/>
- </ColumnInfo>
- </Dataset>
- <Dataset id="ds_source_obtappqry" firefirstcount="0" firenextcount="0" useclientlayout="false" updatecontrol="true" enableevent="true" loadkeymode="keep" loadfiltermode="keep" reversesubsum="false">
- <ColumnInfo>
- <Column id="termflag1" type="STRING" size="256"/>
- <Column id="fromobtappdd" type="STRING" size="256"/>
- <Column id="toobtappdd" type="STRING" size="256"/>
- <Column id="clamflag" type="STRING" size="256"/>
- <Column id="judgdg" type="STRING" size="256"/>
- <Column id="ordfildcd" type="STRING" size="256"/>
- <Column id="acptno" type="STRING" size="256"/>
- <Column id="obtappflag" type="STRING" size="256"/>
- <Column id="obtappdocuno" type="STRING" size="256"/>
- <Column id="chosflag" type="STRING" size="256"/>
- <Column id="insukind" type="STRING" size="256"/>
- <Column id="rejudgflag" type="STRING" size="256"/>
- <Column id="adjtamt" type="STRING" size="256"/>
- <Column id="judgrid" type="STRING" size="256"/>
- <Column id="resttime" type="STRING" size="256"/>
- <Column id="obtappendflag" type="STRING" size="256"/>
- <Column id="patunitsrch1" type="STRING" size="256"/>
- <Column id="patunitsrch2" type="STRING" size="256"/>
- </ColumnInfo>
- <Rows>
- <Row/>
- </Rows>
- </Dataset>
- </Objects>
- <Bind>
- <BindItem id="item0" compid="group6.group2.rdo_termflag1" propid="value" datasetid="ds_send_send_dataqry" columnid="termflag1"/>
- <BindItem id="item1" compid="group6.group2.ipt_patunitsrch1" propid="value" datasetid="ds_send_send_dataqry" columnid="patunitsrch1"/>
- <BindItem id="item2" compid="group6.group2.ipt_obtappdocuno" propid="value" datasetid="ds_send_send_dataqry" columnid="obtappdocuno"/>
- <BindItem id="item3" compid="group6.group2.cmb_ordfildcd" propid="value" datasetid="ds_send_send_dataqry" columnid="ordfildcd"/>
- <BindItem id="item4" compid="group6.group2.ipt_fromobtappdd" propid="value" datasetid="ds_send_send_dataqry" columnid="fromobtappdd"/>
- <BindItem id="item5" compid="group6.group2.ipt_toobtappdd" propid="value" datasetid="ds_send_send_dataqry" columnid="toobtappdd"/>
- <BindItem id="item6" compid="group6.group2.ipt_obtapprid" propid="value" datasetid="ds_send_send_dataqry" columnid="obtapprid"/>
- <BindItem id="item7" compid="group6.group2.ipt_srchdecidocuno" propid="value" datasetid="ds_send_send_dataqry" columnid="decidocuno"/>
- <BindItem id="item8" compid="group6.group2.cmb_clamflag" propid="value" datasetid="ds_send_send_dataqry" columnid="clamflag"/>
- <BindItem id="item9" compid="group6.group2.rdo_insukind" propid="value" datasetid="ds_send_send_dataqry" columnid="insukind"/>
- <BindItem id="item10" compid="group6.group2.rdo_chosflag" propid="value" datasetid="ds_send_send_dataqry" columnid="chosflag"/>
- <BindItem id="item11" compid="group6.group2.rdo_endyn" propid="value" datasetid="ds_send_send_dataqry" columnid="obtapprsltendflag"/>
- <BindItem id="item12" compid="group6.group2.rdo_rejudgflag" propid="value" datasetid="ds_send_send_dataqry" columnid="rejudgflag"/>
- <BindItem id="item13" compid="group6.group2.cmb_obtappflag" propid="value" datasetid="ds_send_send_dataqry" columnid="obtappflag"/>
- <BindItem id="item14" compid="group6.group2.ipt_obtappamt" propid="value" datasetid="ds_send_send_dataqry" columnid="obtappamt"/>
- <BindItem id="item15" compid="group6.group2.ipt_recogamt" propid="value" datasetid="ds_send_send_dataqry" columnid="recogamt"/>
- <BindItem id="item16" compid="group6.group2.ipt_cuttotamt" propid="value" datasetid="ds_send_send_dataqry" columnid="cuttotamt"/>
- <BindItem id="item17" compid="group6.group2.ipt_acptno" propid="value" datasetid="ds_send_send_dataqry" columnid="acptno"/>
- <BindItem id="item18" compid="group6.chk_delcntsum" propid="value" datasetid="ds_send_send_dataqry" columnid="delcntsum"/>
- <BindItem id="item19" compid="group6.group2.ipt_judgdg" propid="value" datasetid="ds_send_send_dataqry" columnid="judgdg"/>
- <BindItem id="item20" compid="group6.ipt_decirepldd" propid="value" datasetid="ds_main_list04_deciinfo" columnid="decirepldd"/>
- <BindItem id="item21" compid="group6.ipt_decidocuno" propid="value" datasetid="ds_main_list04_deciinfo" columnid="decidocuno"/>
- <BindItem id="item22" compid="group6.grp_memo.txt_text" propid="value" datasetid="ds_hidden" columnid="memo"/>
- </Bind>
- <Script type="xscript4.0"><![CDATA[/***************************************************************************************
- * System Name :
- * Job Name :
- * Creator :
- * Make Date : 2016-05-24
- * Description :
- *---------------------------------------------------------------------------------------
- * Modify Date Modifier Modify Description
- *---------------------------------------------------------------------------------------
- * 2016-05-24 Live Converter TF->XP
- *
- *---------------------------------------------------------------------------------------
- ****************************************************************************************/
- include "com_commonxp::comm_main.xjs";
- include "pam_pamcomnxp::PAM001.xjs";
- include "pam_pamcomnxp::PAM.xjs";
- function SMPIR30700_oninit(obj:Form, e:InitEventInfo)
- {
- frmf_initForm(obj);
- }
- function SMPIR30700_onload(obj:Form, e:LoadEventInfo)
- {
- grdf_setToolTipBind(group6.grd_rsltqry);
-
- CommCode_Load();
-
- if(!frmf_checkOpener())
- {
- group6.group2.rdo_termflag1.index = 0;
- group6.group2.rdo_insukind.index = 0;
- group6.group2.rdo_chosflag.index = 0;
- group6.group2.rdo_endyn.index = 2;
- group6.group2.rdo_rejudgflag.index = 0;
- group6.chk_delcntsum.value = 0;
-
-
- var today = utlf_getCurrentDate();
-
- ds_send_send_dataqry.setColumn(0, "fromobtappdd", today);
- ds_send_send_dataqry.setColumn(0, "toobtappdd", today);
- ds_send_send_dataqry.setColumn(0, "delcntsum", "D");
- }
- else
- {
- if(!utlf_isNull(ds_send_send_dataqry.getColumn(0, "acptno")))
- {
- ds_send_send_dataqry.setColumn(0, "srchflag", "2");
- var oParam = {};
- oParam.id = "TRPIR30700";
- oParam.service = "cutmngtapp.CutMngt";
- oParam.method = "reqReqObtAppRsltList";
- oParam.inds = "req=ds_send_send_dataqry";
- oParam.outds = "ds_main_list01_gridrsltqry=gridrsltqry";
- oParam.async = false;
- //oParam.callback = "cf_TRPIR30700";
- tranf_submit(oParam);
- }
- }
-
- }
- function CommCode_Load()
- {
- var arrParam = [{dsNm: "ds_init_P0121list", cdGrpId: "P0121"}
- ,{dsNm: "ds_init_P0291list", cdGrpId: "P0291"}
- ,{dsNm: "ds_init_P0264list", cdGrpId: "P0264"}
- ,{dsNm: "ds_init_P0008list", cdGrpId: "P0008"}
- ,{dsNm: "ds_init_P0028list", cdGrpId: "P0028"}]
-
- appf_getCodeList(arrParam);
-
- pamGetDeptCDDrIDList();
-
- var arrParam = [{dsNm: "ds_init_P0421list", cdGrpId: "P0421"}
- ,{dsNm: "ds_init_P0426list", cdGrpId: "P0426"}
- ,{dsNm: "ds_init_P0458list", cdGrpId: "P0458"}]
-
- appf_getCodeList(arrParam);
-
- pamGetDeptCDDrIDList();
- }
- function group6_group2_rdo_termflag1_onitemchanged(obj:Radio, e:ItemChangeEventInfo)
- {
- var termflag1 = "";
- var value = ds_send_send_dataqry.getColumn(0, "termflag1");
- var fromobtappdd = ds_send_send_dataqry.getColumn(0, "fromobtappdd");
- var toobtappdd = ds_send_send_dataqry.getColumn(0, "toobtappdd");
-
- if(termflag1 == value)
- {
- ds_send_send_dataqry.setColumn(0, "termflag1", "");
- termflag1 = "";
- return
- }
- if(value == "3" || value == "4")
- {
- group6.group2.ipt_fromobtappdd.dateformat = "yyyy-MM";
- group6.group2.ipt_fromobtappdd.editformat = "yyyy-MM";
-
- group6.group2.ipt_toobtappdd.dateformat = "yyyy-MM";
- group6.group2.ipt_toobtappdd.editformat = "yyyy-MM";
-
- if(!utlf_isNull(fromobtappdd))
- {
- ds_send_send_dataqry.setColumn(0, "fromobtappdd", String(fromobtappdd).substr(0,6));
- }
-
- if(!utlf_isNull(toobtappdd))
- {
- ds_send_send_dataqry.setColumn(0, "toobtappdd", String(toobtappdd).substr(0,6));
- }
- }
- else
- {
- group6.group2.ipt_fromobtappdd.dateformat = "yyyy-MM-dd";
- group6.group2.ipt_fromobtappdd.editformat = "yyyy-MM-dd";
-
- group6.group2.ipt_toobtappdd.dateformat = "yyyy-MM-dd";
- group6.group2.ipt_toobtappdd.editformat = "yyyy-MM-dd";
-
- if(!utlf_isNull(fromobtappdd) && String(fromobtappdd).length == 6)
- {
- ds_send_send_dataqry.setColumn(0, "fromobtappdd", fromobtappdd+"01");
- }
-
- if(!utlf_isNull(toobtappdd) && String(toobtappdd).length == 6)
- {
- ds_send_send_dataqry.setColumn(0, "toobtappdd", toobtappdd+"31");
- }
-
- }
- termflag1 = value;
-
- group6.group2.ipt_fromobtappdd.setFocus();
- }
- function group6_group2_ipt_fromobtappdd_onchanged(obj:Calendar, e:ChangeEventInfo)
- {
- ds_send_send_dataqry.setColumn(0, "fromobtappdd", obj.value);
- ds_send_send_dataqry.setColumn(0, "toobtappdd", ds_send_send_dataqry.getColumn(0, "fromobtappdd"));
- }
- function group6_group2_ipt_patunitsrch1_onkeydown(obj:Edit, e:KeyEventInfo)
- {
- if(e.keycode == 13)
- {
- if(!utlf_isNull(obj.value))
- {
- obj.updateToDataset();
-
- fGetInAftJudgTrgtManList();
- group6_group2_btn_search_onclick();
- }
- }
- }
- function fGetInAftJudgTrgtManList()
- {
- var patunitsrch1 = ds_send_send_dataqry.getColumn(0, "patunitsrch1");
-
- ds_send_send_dataqry.setColumn(0, "patunitsrch1", patunitsrch1);
-
- if(utlf_isNull(patunitsrch1))
- {
- ds_send_send_dataqry.setColumn(0, "patunitsrch2", "");
- }
- else if(patunitsrch1.isNumber())
- {
- ds_send_send_dataqry.setColumn(0, "patunitsrch2", "pidSrch");
- }
- else
- {
- if(String(patunitsrch1).length > 1)
- {
- ds_send_send_dataqry.setColumn(0, "patunitsrch2", "nmSrch");
- }
- else
- {
- ds_send_send_dataqry.setColumn(0, "patunitsrch2", "");
- sysf_messageBox("환자로 조회시 검색할 환자이름은 2글자 이상", "C001");
- return;
- }
- }
- }
- //조회
- function group6_group2_btn_search_onclick(obj:Button, e:ClickEventInfo)
- {
- if(fChkSend())
- {
- ds_main_list01_gridrsltqry.clearData();
-
- ds_main_list04_deciinfo.setColumn(0, "decirepldd", "");
- ds_main_list04_deciinfo.setColumn(0, "decidocuno", "");
-
- fSrchFlag();
-
- var oParam = {};
- oParam.id = "TRPIR30700";
- oParam.service = "cutmngtapp.CutMngt";
- oParam.method = "reqReqObtAppRsltList";
- oParam.inds = "req=ds_send_send_dataqry";
- oParam.outds = "ds_main_list01_gridrsltqry=gridrsltqry";
- oParam.async = false;
- //oParam.callback = "cf_TRPIR30700";
- tranf_submit(oParam);
- // setRowStyle("grd_rsltqry", "7","06","obtappflag","equal"); //row의 색상을 변경한다.
- // setRowStyle("grd_rsltqry", "7","07","obtappflag","equal"); //row의 색상을 변경한다.
- }
- }
- function fSrchFlag()
- {
- var chk1 = ds_send_send_dataqry.getColumn(0, "patunitsrch1");
- var chk2 = ds_send_send_dataqry.getColumn(0, "obtappdocuno");
- var chk3 = ds_send_send_dataqry.getColumn(0, "acptno");
- var chk4 = ds_send_send_dataqry.getColumn(0, "judgdg");
-
- if(!utlf_isNull(chk1))
- {
- ds_send_send_dataqry.setColumn(0, "srchflag", "2")
- }
- else if(!utlf_isNull(chk2))
- {
- ds_send_send_dataqry.setColumn(0, "srchflag", "2");
- }
- else if(!utlf_isNull(chk3))
- {
- ds_send_send_dataqry.setColumn(0, "srchflag", "2");
- }
- else if(!utlf_isNull(chk4))
- {
- ds_send_send_dataqry.setColumn(0, "srchflag", "2");
- }
- else
- {
- ds_send_send_dataqry.setColumn(0, "srchflag", "1");
- }
- return true;
- }
- function fChkSend()
- {
- if(utlf_isNull(ds_send_send_dataqry.getColumn(0, "judgdg")) && ds_send_send_dataqry.getColumn(0, "acptno"))
- {
- if(ds_send_send_dataqry.getColumn(0, "termflag1") == "2")
- {
- if(utlf_isNull(ds_send_send_dataqry.getColumn(0, "fromobtappdd")))
- {
- alert("결과수신일자(From)를 입력해 주세요");
- group6.group2.ipt_fromobtappdd.setFocus();
- return false;
- }
-
- if(utlf_isNull(ds_send_send_dataqry.getColumn(0, "toobtappdd")))
- {
- alert("결과수신일자(To)를 입력해 주세요");
- group6.group2.ipt_toobtappdd.setFocus();
- return false;
- }
- }
- else
- {
- if(utlf_isNull(ds_send_send_dataqry.getColumn(0, "fromobtappdd")))
- {
- alert("이의신청일자(From)를 입력해 주세요");
- group6.group2.ipt_fromobtappdd.setFocus();
- return false;
- }
- if(utlf_isNull(ds_send_send_dataqry.getColumn(0, "toobtappdd")))
- {
- alert("이의신청일자(To)를 입력해 주세요");
- group6.group2.ipt_toobtappdd.setFocus();
- return false;
- }
- }
- }
-
- 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")))
- {
- if(utlf_isNull(ds_send_send_dataqry.getColumn(0, "judgdg")))
- {
- alert("심사차수를 입력해 주세요");
- group6.group2.ipt_judgdg.setFocus();
- return false;
- }
- if(utlf_isNull(ds_send_send_dataqry.getColumn(0, "acptno")))
- {
- alert("접수번호를 입력해 주세요");
- group6.group2.ipt_acptno.setFocus();
- return false;
- }
- }
- return true;
- }
- function group6_group2_ipt_obtappdocuno_onkeydown(obj:Edit, e:KeyEventInfo)
- {
- if(e.keycode == 13)
- {
- group6_group2_btn_search_onclick();
- }
- }
- function group6_group2_rdo_rejudgflag_onitemchanged(obj:Radio, e:ItemChangeEventInfo)
- {
- ds_send_send_dataqry.setColumn(0, "obtappflag", "");
- }
- function group6_group2_cmb_obtappflag_onitemchanged(obj:Combo, e:ItemChangeEventInfo)
- {
- ds_send_send_dataqry.setColumn(0, "rejudgflag", "");
- }
- function group6_group2_ipt_acptno_onkeydown(obj:Edit, e:KeyEventInfo)
- {
- if(e.keycode == 13)
- {
- group6_group2_btn_search_onclick();
- }
- }
- function group6_group2_ipt_judgdg_onkeydown(obj:Edit, e:KeyEventInfo)
- {
- if(e.keycode == 13)
- {
- group6_group2_btn_search_onclick();
- }
- }
- function group6_grd_rsltqry_oncelldblclick(obj:Grid, e:GridClickEventInfo)
- {
- var curr_row = e.row;
-
- ds_source_obtapprsltspec.setColumn(0, "clamno", ds_main_list01_gridrsltqry.getColumn(curr_row, "clamno"));
- ds_source_obtapprsltspec.setColumn(0, "acptno", ds_main_list01_gridrsltqry.getColumn(curr_row, "acptno"));
- ds_source_obtapprsltspec.setColumn(0, "judgdg", ds_main_list01_gridrsltqry.getColumn(curr_row, "judgdg"));
- ds_source_obtapprsltspec.setColumn(0, "setno", ds_main_list01_gridrsltqry.getColumn(curr_row, "setno"));
- ds_source_obtapprsltspec.setColumn(0, "notidd", ds_main_list01_gridrsltqry.getColumn(curr_row, "notidecirepldd"));
-
- ds_source_obtapprsltspec.setColumn(0, "rejudgflag", "");
- ds_source_obtapprsltspec.setColumn(0, "obtappflag", ds_main_list01_gridrsltqry.getColumn(curr_row, "obtappflag"));
- ds_source_obtapprsltspec.setColumn(0, "obtappdocuno", ds_main_list01_gridrsltqry.getColumn(curr_row, "obtappdocuno"));
- ds_source_obtapprsltspec.setColumn(0, "obtappdd", ds_main_list01_gridrsltqry.getColumn(curr_row, "obtappdd"));
- ds_source_obtapprsltspec.setColumn(0, "decidocuno", ds_main_list01_gridrsltqry.getColumn(curr_row, "decidocuno"));
- ds_source_obtapprsltspec.setColumn(0, "decirepldd", ds_main_list01_gridrsltqry.getColumn(curr_row, "decirepldd"));
-
- ds_source_obtapprsltspec.setColumn(0, "endyn", ds_main_list01_gridrsltqry.getColumn(curr_row, "endyn"));
-
- var objArg = new Object();
- objArg.arg_ds_send_send_obtmlist= ds_source_obtapprsltspec;
-
- frmf_modal("SMPIR30800", "SMPIR30800", objArg, "", "", "", "", "", "", "", "", "", "M");
-
- group6_group2_btn_search_onclick();
- }
- function group6_grd_rsltqry_onexpanddown(obj:Grid, e:GridMouseEventInfo)
- {
- ds_source.setColumn(0, "judgdg", ds_main_list01_gridrsltqry.getColumn(e.row, "judgdg"));
- ds_source.setColumn(0, "clamno", ds_main_list01_gridrsltqry.getColumn(e.row, "clamno"));
- ds_source.setColumn(0, "acptno", ds_main_list01_gridrsltqry.getColumn(e.row, "acptno"));
- ds_source.setColumn(0, "obtappflag", ds_main_list01_gridrsltqry.getColumn(e.row, "obtappflag"));
- ds_source.setColumn(0, "rem", ds_main_list01_gridrsltqry.getColumn(e.row, "rem"));
- var objArg = new Object();
- objArg.arg_ds_send = ds_source;
-
- frmf_modal("SPPIR30210", "SPPIR30210", objArg, "", "", "", "", "", "", "", "", "", "M");
-
- group6_group2_btn_search_onclick();
- }
- function fGridObtAppRsltSpec()
- {
- var curr_row = ds_main_list01_gridrsltqry.rowposition;
-
- ds_source_obtapprsltspec.clearData();
- ds_source_obtapprsltspec.addRow();
-
- ds_source_obtapprsltspec.setColumn(0, "judgdg", ds_main_list01_gridrsltqry.getColumn(curr_row, "judgdg"));
- ds_source_obtapprsltspec.setColumn(0, "clamno", ds_main_list01_gridrsltqry.getColumn(curr_row, "clamno"));
- ds_source_obtapprsltspec.setColumn(0, "acptno", ds_main_list01_gridrsltqry.getColumn(curr_row, "acptno"));
- ds_source_obtapprsltspec.setColumn(0, "obtappflag", ds_main_list01_gridrsltqry.getColumn(curr_row, "obtappflag"));
- ds_source_obtapprsltspec.setColumn(0, "obtappdocuno", ds_main_list01_gridrsltqry.getColumn(curr_row, "obtappdocuno"));
- ds_source_obtapprsltspec.setColumn(0, "endyn", ds_main_list01_gridrsltqry.getColumn(curr_row, "endyn"));
-
- var objArg = new Object();
- objArg.arg_ds_send_send_find = ds_source_obtapprsltspec;
-
- frmf_modal("SMPIR30900", "SMPIR30900", objArg, "", "", "", "", "", "", "", "", "", "M");
- }
- function group6_grd_rsltqry_onrbuttondown(obj:Grid, e:GridMouseEventInfo)
- {
- pmn_menu1.trackPopup(e.screenX,e.screenY);
- }
- function pmn_menu1_onmenuclick(obj:PopupMenu, e:MenuClickEventInfo)
- {
- eval(e.id +"();");
- }
- function pmn_menu1_onmouseleave(obj:PopupMenu, e:MenuMouseEventInfo)
- {
- obj.closePopup();
- }
- function group6_grd_rsltqry_oncellclick(obj:Grid, e:GridClickEventInfo)
- {
- var curr_row = e.row;
- var decidocuno = ds_main_list01_gridrsltqry.getColumn(curr_row, "decidocuno");
- var decirepldd = ds_main_list01_gridrsltqry.getColumn(curr_row, "decirepldd");
-
- ds_main_list04_deciinfo.setColumn(0, "decidocuno", "");
- ds_main_list04_deciinfo.setColumn(0, "decirepldd", "");
-
- ds_main_list04_deciinfo.setColumn(0, "decidocuno", decidocuno);
- ds_main_list04_deciinfo.setColumn(0, "decirepldd", decirepldd);
-
- if(ds_main_list01_gridrsltqry.rowcount < 3)
- {
- return;
- }
-
- var curr_row = e.row;
-
- if (e.col == obj.getBindCellIndex("Body", "rem"))
- {
- var memo = ds_main_list01_gridrsltqry.getColumn(curr_row, "rem");
-
- ds_hidden.setColumn(0, "memo", memo);
-
- group6.grp_memo.bringToFront();
- group6.grp_memo.visible = true;
- }
- }
- function group6_grp_memo_btn_closememo_onclick(obj:Button, e:ClickEventInfo)
- {
- group6.grp_memo.visible = false;
- }
- function group6_button6_onclick(obj:Button, e:ClickEventInfo)
- {
- var curr_row = ds_main_list01_gridrsltqry.rowposition;
- var status = "update";
-
- if(curr_row > -1)
- {
- var judgdg = ds_main_list01_gridrsltqry.getColumn(curr_row, "judgdg");
- var clamno = ds_main_list01_gridrsltqry.getColumn(curr_row, "clamno");
- var acptno = ds_main_list01_gridrsltqry.getColumn(curr_row, "acptno");
- var obtappflag = ds_main_list01_gridrsltqry.getColumn(curr_row, "obtappflag");
- var obtappdocuno = ds_main_list01_gridrsltqry.getColumn(curr_row, "obtappdocuno");
- var decidocuno = ds_main_list04_deciinfo.getColumn(0, "decidocuno");
- var decirepldd = ds_main_list04_deciinfo.getColumn(0, "decirepldd");
- ds_send_send_deciinfo.setColumn(0, "judgdg", judgdg);
- ds_send_send_deciinfo.setColumn(0, "clamno", clamno);
- ds_send_send_deciinfo.setColumn(0, "acptno", acptno);
- ds_send_send_deciinfo.setColumn(0, "obtappflag", obtappflag);
- ds_send_send_deciinfo.setColumn(0, "status", status);
- ds_send_send_deciinfo.setColumn(0, "decidocuno", decidocuno);
- ds_send_send_deciinfo.setColumn(0, "decirepldd", decirepldd);
- ds_send_send_deciinfo.setColumn(0, "obtappdocuno", obtappdocuno);
- var oParam = {};
- oParam.id = "TXPIR30701";
- oParam.service = "cutmngtapp.CutMngt";
- oParam.method = "reqSetDeciInfo";
- oParam.inds = "req=ds_send_send_deciinfo";
- oParam.outds = "";
- oParam.async = false;
- //oParam.callback = "cf_TXPIR30701";
- tranf_submit(oParam);
-
- ds_main_list04_deciinfo.setColumn(0, "decirepldd", "");
- ds_main_list01_gridrsltqry.clearData();
-
- if(fChkSend())
- {
- var oParam = {};
- oParam.id = "TRPIR30700";
- oParam.service = "cutmngtapp.CutMngt";
- oParam.method = "reqReqObtAppRsltList";
- oParam.inds = "req=ds_send_send_dataqry";
- oParam.outds = "ds_main_list01_gridrsltqry=gridrsltqry";
- oParam.async = false;
- //oParam.callback = "cf_TRPIR30700";
- tranf_submit(oParam);
- }
- }
- else
- {
- sysf_messageBox("결정정보를 저장할 ROW를 ","C002");
- }
- }
- function grp_btn_button3_onclick(obj:Button, e:ClickEventInfo)
- {
- var curr_row = ds_main_list01_gridrsltqry.rowcount;
-
- ds_source_obtappqry.setColumn(0, "termflag1", ds_send_send_dataqry.getColumn(0, "termflag1"));
- ds_source_obtappqry.setColumn(0, "fromobtappdd", ds_send_send_dataqry.getColumn(0, "fromobtappdd").toDate().getAddDate(-90).getDateFormat("YYYYMMDD"));
- ds_source_obtappqry.setColumn(0, "toobtappdd", ds_send_send_dataqry.getColumn(0, "toobtappdd"));
- ds_source_obtappqry.setColumn(0, "clamflag", ds_send_send_dataqry.getColumn(0, "clamflag"));
- ds_source_obtappqry.setColumn(0, "judgdg", ds_send_send_dataqry.getColumn(0, "judgdg"));
- ds_source_obtappqry.setColumn(0, "acptno", ds_send_send_dataqry.getColumn(0, "acptno"));
- ds_source_obtappqry.setColumn(0, "ordfildcd", ds_send_send_dataqry.getColumn(0, "ordfildcd"));
- ds_source_obtappqry.setColumn(0, "obtappflag", ds_send_send_dataqry.getColumn(0, "obtappflag"));
- ds_source_obtappqry.setColumn(0, "obtappdocuno", ds_send_send_dataqry.getColumn(0, "obtappdocuno"));
- ds_source_obtappqry.setColumn(0, "chosflag", ds_send_send_dataqry.getColumn(0, "chosflag"));
- ds_source_obtappqry.setColumn(0, "insukind", ds_send_send_dataqry.getColumn(0, "insukind"));
- ds_source_obtappqry.setColumn(0, "rejudgflag", ds_send_send_dataqry.getColumn(0, "rejudgflag"));
- ds_source_obtappqry.setColumn(0, "judgrid", ds_send_send_dataqry.getColumn(0, "obtapprid"));
- ds_source_obtappqry.setColumn(0, "adjtamt", ds_send_send_dataqry.getColumn(0, "cuttotamt"));
- ds_source_obtappqry.setColumn(0, "resttime", "");
- ds_source_obtappqry.setColumn(0, "obtappendflag", "");
- ds_source_obtappqry.setColumn(0, "patunitsrch1", ds_send_send_dataqry.getColumn(0, "patunitsrch1"));
- ds_source_obtappqry.setColumn(0, "patunitsrch2", ds_send_send_dataqry.getColumn(0, "patunitsrch2"));
-
- var objArg = new Object();
- objArg.arg_ds_send= ds_source_obtappqry;
-
- frmf_modal("SMPIR30200", "SMPIR30200", objArg, "", "", "", "", "", "", "", "", "", "M");
- }
- function grp_btn_btn_init_onclick(obj:Button, e:ClickEventInfo)
- {
- fInitialize();
- }
- function grp_btn_button4_onclick(obj:Button, e:ClickEventInfo)
- {
- this.close();
- }
- function fInitialize()
- {
- var curDate = utlf_getCurrentDate();
-
- group6.group2.rdo_insukind.index = 0;
-
- ds_send_send_dataqry.setColumn(0, "fromobtappdd", curDate);
- ds_send_send_dataqry.setColumn(0, "toobtappdd", curDate);
-
- ds_send_send_dataqry.setColumn(0, "patunitsrch1", "");
- ds_send_send_dataqry.setColumn(0, "obtapprid", "");
- ds_send_send_dataqry.setColumn(0, "obtappdocuno", "");
- ds_send_send_dataqry.setColumn(0, "decidocuno", "");
-
- group6.group2.rdo_chosflag.index = 0;
- group6.group2.rdo_endyn.index = 0;
-
- group6.group2.cmb_ordfildcd.value = "";
- group6.group2.cmb_clamflag.value = "";
-
- group6.group2.rdo_rejudgflag.index = 0;
-
- group6.group2.cmb_obtappflag.value = "";
-
- ds_send_send_dataqry.setColumn(0, "obtappamt", "");
- ds_send_send_dataqry.setColumn(0, "recogamt", "");
- ds_send_send_dataqry.setColumn(0, "cuttotamt", "");
-
- ds_send_send_dataqry.setColumn(0, "delcntsum", "");
- ds_send_send_dataqry.setColumn(0, "acptno", "");
- ds_send_send_dataqry.setColumn(0, "judgdg", "");
-
- ds_main_list04_deciinfo.setColumn(0, "decidocuno", "");
- ds_main_list04_deciinfo.setColumn(0, "decirepldd", "");
-
- ds_send_send_dataqry.setColumn(0, "delcntsum", "D");
-
- ds_main_list01_gridrsltqry.clearData();
- ds_main_list02_griddocu.clearData();
- ds_main_list03_gridobtrsltspec.clearData();
- }
- function group6_button7_onclick(obj:Button, e:ClickEventInfo)
- {
- var today = utlf_getCurrentDate();
-
- if(ds_main_list01_gridrsltqry.rowcount == 2)
- {
- return;
- }
-
- if(ds_main_list01_gridrsltqry.rowcount == 0)
- {
- sysf_messageBox("엑셀저장할 내역이", "I004"); ///엑셀저장할 내역이 없습니다.
- }
- else
- {
- grdf_exportExcel(group6.grd_rsltqry, "이의신청결과조회-접수번호별이의신청결과_"+today, "see");
- }
- }
- function group6_button5_onclick(obj:Button, e:ClickEventInfo)
- {
- var selectCnt = grdf_getSelectedRows(group6.grd_rsltqry);
-
- if (selectCnt == 0)
- {
- alert("선택후 다시 시도해 주세요");
- return;
- }
-
- ds_send_selectlist.clearData();
-
- for(var i = 0; i < selectCnt.length; i++)
- {
- var m_row = selectCnt[i];
- var sel = ds_send_selectlist.addRow();
-
- ds_send_selectlist.setColumn(sel, "judgdg", ds_main_list01_gridrsltqry.getColumn(m_row, "judgdg"));
- ds_send_selectlist.setColumn(sel, "clamno", ds_main_list01_gridrsltqry.getColumn(m_row, "clamno"));
- ds_send_selectlist.setColumn(sel, "acptno", ds_main_list01_gridrsltqry.getColumn(m_row, "acptno"));
- ds_send_selectlist.setColumn(sel, "obtappflag", ds_main_list01_gridrsltqry.getColumn(m_row, "obtappflag"));
- }
- var oParam = {};
- oParam.id = "TRPIR30701";
- oParam.service = "cutmngtapp.CutMngt";
- oParam.method = "reqGetObtAppRsltDocuExcelList";
- oParam.inds = "req=ds_send_selectlist";
- oParam.outds = "ds_main_list02_griddocu=griddocu";
- oParam.async = false;
- //oParam.callback = "cf_TRPIR30701";
- tranf_submit(oParam);
- var today = utlf_getCurrentDate();
-
- if (ds_main_list02_griddocu.rowcount == 2)
- {
- return;
- }
-
- if(ds_main_list02_griddocu.rowcount == 0)
- {
- sysf_messageBox("엑셀저장할 내역이", "I004"); ///엑셀저장할 내역이 없습니다.
- }
- else
- {
- grdf_exportExcel(group6.grd_griddocu, "이의신청결과조회-명일련별이의신청결과_"+today, "see");
- }
- }
- function group6_button1_onclick(obj:Button, e:ClickEventInfo)
- {
- var selectCnt = grdf_getSelectedRows(group6.grd_rsltqry);
-
- if (selectCnt == 0)
- {
- alert("선택후 다시 시도해 주세요");
- return;
- }
-
- ds_send_send_prcp.clearData();
-
- for(var i = 0; i < selectCnt.length; i++)
- {
- var m_row = selectCnt[i];
- var sel = ds_send_send_prcp.addRow();
-
- ds_send_send_prcp.setColumn(sel, "judgdg", ds_main_list01_gridrsltqry.getColumn(m_row, "judgdg"));
- ds_send_send_prcp.setColumn(sel, "clamno", ds_main_list01_gridrsltqry.getColumn(m_row, "clamno"));
- ds_send_send_prcp.setColumn(sel, "acptno", ds_main_list01_gridrsltqry.getColumn(m_row, "acptno"));
- ds_send_send_prcp.setColumn(sel, "obtappflag", ds_main_list01_gridrsltqry.getColumn(m_row, "obtappflag"));
- }
-
- var oParam = {};
- oParam.id = "TRPIR30702";
- oParam.service = "cutmngtapp.CutMngt";
- oParam.method = "reqGetObtAppRsltPrcpExcelList";
- oParam.inds = "req=ds_send_send_prcp";
- oParam.outds = "ds_main_list03_gridobtrsltspec=gridobtrsltspec";
- oParam.async = false;
- //oParam.callback = "cf_TRPIR30702";
- tranf_submit(oParam);
- var today = utlf_getCurrentDate();
-
- if (ds_main_list03_gridobtrsltspec.rowcount == 2)
- {
- return;
- }
-
- if(ds_main_list03_gridobtrsltspec.rowcount == 0)
- {
- sysf_messageBox("엑셀저장할 내역이", "I004"); ///엑셀저장할 내역이 없습니다.
- }
- else
- {
- grdf_exportExcel(group6.grd_pirhobtspec, "이의신청결과-처방별엑셀저장_"+today, "see");
- }
- }
- ]]></Script>
- </Form>
- </FDL>
|