123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331 |
- <?xml version="1.0" encoding="utf-8"?>
- <FDL version="1.5">
- <TypeDefinition url="..\..\..\default_typedef.xml"/>
- <Form id="SMPIF00100" position="absolute 0 0 1202 764" titletext="진료과/개인/처방별 수정전후 집계표 조회" oninit="SMPIF00100_oninit" onload="SMPIF00100_onload">
- <Layouts>
- <Layout>
- <Div position="absolute 0 23 1202 739" id="grp_biz" scrollbars="autoboth" anchor="all">
- <Layouts>
- <Layout width="1202" height="728">
- <Div position="absolute 0 0 1202 49" align="align:center top;" id="grp_sea" class="div_SA" anchor="left top right">
- <Layouts>
- <Layout>
- <Static text="내원유형 :" position="absolute 496 17 582 34" id="caption2" class="search_name" anchor="left top"/>
- <Button position="absolute 1134 12 1190 34" id="button1" class="btn1" taborder="8" text="조회" anchor="top right" onclick="grp_biz_grp_sea_button1_onclick"/>
- <Shape position="absolute 1125 12 1131 34" linetype="vertical" id="line13" class="line_4" anchor="top right"/>
- <Static text="미수년월 :" position="absolute 179 17 265 34" id="caption3" class="search_name" anchor="left top"/>
- <Combo position="absolute 571 15 626 34" id="cmb_ioflag" class="combo_search" taborder="1" codecolumn="codecolumn" datacolumn="datacolumn" anchor="left top">
- <Dataset id="innerdataset">
- <ColumnInfo>
- <Column id="codecolumn"/>
- <Column id="datacolumn"/>
- </ColumnInfo>
- <Rows>
- <Row>
- <Col id="codecolumn">O</Col>
- <Col id="datacolumn">외래</Col>
- </Row>
- <Row>
- <Col id="codecolumn">I</Col>
- <Col id="datacolumn">입원</Col>
- </Row>
- </Rows>
- </Dataset>
- </Combo>
- <Static text="보험유형 :" position="absolute 640 17 731 34" id="caption4" class="search_name" anchor="left top"/>
- <Combo position="absolute 1015 4 1069 23" id="cmb_clamdg" class="combo_search" innerdataset="@ds_init_clamdglist" datacolumn="cdid" codecolumn="cdnm" anchor="left top"/>
- <Static text="청구분야 :" position="absolute 344 17 435 34" id="caption12" class="search_name" anchor="left top"/>
- <Combo position="absolute 425 15 480 34" id="cmb_ordfildcd" class="combo_search" taborder="6" innerdataset="@ds_init_P0291list" datacolumn="cdnm" codecolumn="cdid" anchor="left top"/>
- <Static text="청구구분 :" position="absolute 9 17 95 34" id="caption13" class="search_name" anchor="left top"/>
- <Combo position="absolute 88 15 163 34" id="cmb_clamflag" class="combo_search" codecolumn="codecolumn" datacolumn="datacolumn" anchor="left top">
- <Dataset id="innerdataset">
- <ColumnInfo>
- <Column id="codecolumn"/>
- <Column id="datacolumn"/>
- </ColumnInfo>
- <Rows>
- <Row>
- <Col id="codecolumn">0</Col>
- <Col id="datacolumn">원청구</Col>
- </Row>
- <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">4</Col>
- <Col id="datacolumn">누락청구</Col>
- </Row>
- <Row>
- <Col id="codecolumn">5</Col>
- <Col id="datacolumn">보완차액</Col>
- </Row>
- </Rows>
- </Dataset>
- </Combo>
- <Radio position="absolute 716 15 935 32" id="chk_insukindcd" columncount="5" rowcount="1" codecolumn="codecolumn" datacolumn="datacolumn" anchor="left top">
- <Dataset id="innerdataset">
- <ColumnInfo>
- <Column id="codecolumn"/>
- <Column id="datacolumn"/>
- </ColumnInfo>
- <Rows>
- <Row>
- <Col id="codecolumn">00</Col>
- <Col id="datacolumn">전체</Col>
- </Row>
- <Row>
- <Col id="codecolumn">11</Col>
- <Col id="datacolumn">보험</Col>
- </Row>
- <Row>
- <Col id="codecolumn">21</Col>
- <Col id="datacolumn">보호</Col>
- </Row>
- <Row>
- <Col id="codecolumn">31</Col>
- <Col id="datacolumn">자보</Col>
- </Row>
- <Row>
- <Col id="codecolumn">41</Col>
- <Col id="datacolumn">산재</Col>
- </Row>
- </Rows>
- </Dataset>
- </Radio>
- <Radio position="absolute 942 8 1012 43" id="radio1" columncount="1" rowcount="2" codecolumn="codecolumn" datacolumn="datacolumn" anchor="left top" onitemchanged="grp_biz_grp_sea_radio1_onitemchanged">
- <Dataset id="innerdataset">
- <ColumnInfo>
- <Column id="codecolumn"/>
- <Column id="datacolumn"/>
- </ColumnInfo>
- <Rows>
- <Row>
- <Col id="codecolumn">A</Col>
- <Col id="datacolumn">청구차수</Col>
- </Row>
- <Row>
- <Col id="codecolumn">B</Col>
- <Col id="datacolumn">차수선택</Col>
- </Row>
- </Rows>
- </Dataset>
- </Radio>
- <Edit position="absolute 1015 25 1035 44" id="input1" anchor="left top"/>
- <Edit position="absolute 1037 25 1057 44" id="input2" anchor="left top"/>
- <Edit position="absolute 1059 25 1079 44" id="input3" anchor="left top"/>
- <Edit position="absolute 1081 25 1101 44" id="input4" anchor="left top"/>
- <Edit position="absolute 1103 25 1123 44" id="input5" anchor="left top"/>
- <Button position="absolute 1070 5 1100 24" id="button14" class="icon_bottom" text="" anchor="left top" onclick="grp_biz_grp_sea_button14_onclick"/>
- <cp_monthCal id="ipt_fromdd" titletext="monthCalendar" taborder="9" text="cp_monthCal00" scrollbars="none" position="absolute 259 14 334 34" anchor="left top"/>
- </Layout>
- </Layouts>
- </Div>
- <Tab position="absolute 0 54 1202 716" id="switch1" class="sw_box" anchor="all" onchanged="grp_biz_switch1_onchanged">
- <Tabpages>
- <Tabpage text="과별/분야별" id="case1">
- <Layouts>
- <Layout>
- <Grid position="absolute 0 0 1202 635" id="grd_deptfild" binddataset="ds_main_list1_griddeptfild" oncelldblclick="grp_biz_switch1_case1_grd_deptfild_oncelldblclick" oncellclick="grp_biz_switch1_case1_grd_deptfild_oncellclick" onkeydown="grp_biz_switch1_case1_grd_deptfild_onkeydown" cellsizingtype="col" cellmovingtype="none" anchor="all">
- <Formats>
- <Format id="default">
- <Columns>
- <Column size="0" band="left"/>
- <Column size="0" band="left"/>
- <Column size="27" band="left"/>
- <Column size="155" band="left"/>
- <Column size="0"/>
- <Column size="55"/>
- <Column size="110"/>
- <Column size="127"/>
- <Column size="111"/>
- <Column size="119"/>
- <Column size="116"/>
- <Column size="95"/>
- <Column size="91"/>
- <Column size="93"/>
- <Column size="100"/>
- <Column size="96"/>
- <Column size="100"/>
- <Column size="100"/>
- <Column size="87"/>
- <Column size="103"/>
- <Column size="93"/>
- <Column size="100"/>
- <Column size="100"/>
- <Column size="55"/>
- <Column size="110"/>
- <Column size="113"/>
- <Column size="99"/>
- <Column size="95"/>
- <Column size="97"/>
- <Column size="100"/>
- <Column size="79"/>
- <Column size="100"/>
- <Column size="100"/>
- <Column size="89"/>
- <Column size="100"/>
- <Column size="55"/>
- <Column size="90"/>
- <Column size="55"/>
- <Column size="90"/>
- <Column size="87"/>
- <Column size="95"/>
- <Column size="83"/>
- <Column size="56"/>
- <Column size="90"/>
- <Column size="90"/>
- <Column size="100"/>
- <Column size="55"/>
- <Column size="110"/>
- <Column size="91"/>
- <Column size="93"/>
- <Column size="96"/>
- <Column size="92"/>
- <Column size="100"/>
- <Column size="93"/>
- <Column size="100"/>
- <Column size="100"/>
- <Column size="100"/>
- <Column size="100"/>
- </Columns>
- <Rows>
- <Row size="24" band="head"/>
- <Row size="24" band="head"/>
- <Row size="24"/>
- </Rows>
- <Band id="head">
- <Cell text="진료과코드"/>
- <Cell col="1" text="진료과명"/>
- <Cell col="2" rowspan="2" taborder="undefined"/>
- <Cell col="3" rowspan="2" text="진료과" taborder="undefined"/>
- <Cell col="4" text="청구분야"/>
- <Cell col="5" colspan="15" text="재원금액" taborder="undefined"/>
- <Cell col="20" rowspan="2" text="인수증액" taborder="undefined"/>
- <Cell col="21" rowspan="2" text="인수감액" taborder="undefined"/>
- <Cell col="22" rowspan="2" text="인수차액" taborder="undefined"/>
- <Cell col="23" colspan="12" 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" colspan="12" text="심사 후(청구금액)" taborder="undefined"/>
- <Cell row="1" text="진료과코드"/>
- <Cell row="1" col="1" text="진료과명"/>
- <Cell row="1" col="4" text="청구분야"/>
- <Cell row="1" col="5" text="(재)건수"/>
- <Cell row="1" col="6" text="(재)총진료비"/>
- <Cell row="1" col="7" text="(재)비급여총진료비"/>
- <Cell row="1" col="8" text="(재)본인부담총액"/>
- <Cell row="1" col="9" text="(재)급여총진료비"/>
- <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="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="30" text="(전)장애인"/>
- <Cell row="1" col="31" text="(전)긴급지원금"/>
- <Cell row="1" col="32" text="(전)지원금"/>
- <Cell row="1" col="33" text="(전)대불금"/>
- <Cell row="1" col="34" 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="(후)대불금"/>
- <Cell row="1" col="57" text="(후)약제상한차액"/>
- </Band>
- <Band id="body">
- <Cell text="bind:orddeptcd"/>
- <Cell col="1" text="bind:deptengabbr"/>
- <Cell col="2" celltype="head" expr="currow+1"/>
- <Cell col="3" displaytype="normal" style="background:EXPR(getRowLevel(currow) == 1 ? '#ffff00' : '#fffff');background2:EXPR(getRowLevel(currow) == 1 ? '#ffff00' : '#fffff');color:EXPR(getRowLevel(currow) == 1 ? '#0000ff' : '#000000');color2:EXPR(getRowLevel(currow) == 1 ? '#0000ff' : '#000000');" text="bind:depthngnm" editautoselect="false" editautoskip="false"/>
- <Cell col="4" style="background:EXPR(getRowLevel(currow) == 1 ? '#ffff00' : '#fffff');background2:EXPR(getRowLevel(currow) == 1 ? '#ffff00' : '#fffff');color:EXPR(getRowLevel(currow) == 1 ? '#0000ff' : '#000000');color2:EXPR(getRowLevel(currow) == 1 ? '#0000ff' : '#000000');" text="bind:ordfildcd"/>
- <Cell col="5" displaytype="number" style="background:EXPR(getRowLevel(currow) == 1 ? '#ffff00' : '#fffff');background2:EXPR(getRowLevel(currow) == 1 ? '#ffff00' : '#fffff');color:EXPR(getRowLevel(currow) == 1 ? '#0000ff' : '#000000');color2:EXPR(getRowLevel(currow) == 1 ? '#0000ff' : '#000000');" text="bind:inhospcnt" editautoselect="true" editautoskip="true"/>
- <Cell col="6" displaytype="number" style="background:EXPR(getRowLevel(currow) == 1 ? '#ffff00' : '#fffff');background2:EXPR(getRowLevel(currow) == 1 ? '#ffff00' : '#fffff');color:EXPR(getRowLevel(currow) == 1 ? '#0000ff' : '#000000');color2:EXPR(getRowLevel(currow) == 1 ? '#0000ff' : '#000000');" text="bind:inhosptotordamt"/>
- <Cell col="7" displaytype="number" style="background:EXPR(getRowLevel(currow) == 1 ? '#ffff00' : '#fffff');background2:EXPR(getRowLevel(currow) == 1 ? '#ffff00' : '#fffff');color:EXPR(getRowLevel(currow) == 1 ? '#0000ff' : '#000000');color2:EXPR(getRowLevel(currow) == 1 ? '#0000ff' : '#000000');" text="bind:inhospnopytotordamt"/>
- <Cell col="8" displaytype="number" style="background:EXPR(getRowLevel(currow) == 1 ? '#ffff00' : '#fffff');background2:EXPR(getRowLevel(currow) == 1 ? '#ffff00' : '#fffff');color:EXPR(getRowLevel(currow) == 1 ? '#0000ff' : '#000000');color2:EXPR(getRowLevel(currow) == 1 ? '#0000ff' : '#000000');" text="bind:inhospownbtotamt"/>
- <Cell col="9" displaytype="number" style="background:EXPR(getRowLevel(currow) == 1 ? '#ffff00' : '#fffff');background2:EXPR(getRowLevel(currow) == 1 ? '#ffff00' : '#fffff');color:EXPR(getRowLevel(currow) == 1 ? '#0000ff' : '#000000');color2:EXPR(getRowLevel(currow) == 1 ? '#0000ff' : '#000000');" text="bind:inhosppaytotordamt"/>
- <Cell col="10" displaytype="number" style="background:EXPR(getRowLevel(currow) == 1 ? '#ffff00' : '#fffff');background2:EXPR(getRowLevel(currow) == 1 ? '#ffff00' : '#fffff');color:EXPR(getRowLevel(currow) == 1 ? '#0000ff' : '#000000');color2:EXPR(getRowLevel(currow) == 1 ? '#0000ff' : '#000000');" text="bind:inhosppayownbamt"/>
- <Cell col="11" displaytype="number" style="background:EXPR(getRowLevel(currow) == 1 ? '#ffff00' : '#fffff');background2:EXPR(getRowLevel(currow) == 1 ? '#ffff00' : '#fffff');color:EXPR(getRowLevel(currow) == 1 ? '#0000ff' : '#000000');color2:EXPR(getRowLevel(currow) == 1 ? '#0000ff' : '#000000');" text="bind:inhosppayclamamt"/>
- <Cell col="12" displaytype="number" style="background:EXPR(getRowLevel(currow) == 1 ? '#ffff00' : '#fffff');background2:EXPR(getRowLevel(currow) == 1 ? '#ffff00' : '#fffff');color:EXPR(getRowLevel(currow) == 1 ? '#0000ff' : '#000000');color2:EXPR(getRowLevel(currow) == 1 ? '#0000ff' : '#000000');" text="bind:inhospownbmaxexamt"/>
- <Cell col="13" displaytype="number" style="background:EXPR(getRowLevel(currow) == 1 ? '#ffff00' : '#fffff');background2:EXPR(getRowLevel(currow) == 1 ? '#ffff00' : '#fffff');color:EXPR(getRowLevel(currow) == 1 ? '#0000ff' : '#000000');color2:EXPR(getRowLevel(currow) == 1 ? '#0000ff' : '#000000');" text="bind:hinhospsuppamt"/>
- <Cell col="14" displaytype="number" style="background:EXPR(getRowLevel(currow) == 1 ? '#ffff00' : '#fffff');background2:EXPR(getRowLevel(currow) == 1 ? '#ffff00' : '#fffff');color:EXPR(getRowLevel(currow) == 1 ? '#0000ff' : '#000000');color2:EXPR(getRowLevel(currow) == 1 ? '#0000ff' : '#000000');" text="bind:linhospsuppamt"/>
- <Cell col="15" displaytype="number" style="background:EXPR(getRowLevel(currow) == 1 ? '#ffff00' : '#fffff');background2:EXPR(getRowLevel(currow) == 1 ? '#ffff00' : '#fffff');color:EXPR(getRowLevel(currow) == 1 ? '#0000ff' : '#000000');color2:EXPR(getRowLevel(currow) == 1 ? '#0000ff' : '#000000');" text="bind:inhosphandcaprfund"/>
- <Cell col="16" displaytype="number" style="background:EXPR(getRowLevel(currow) == 1 ? '#ffff00' : '#fffff');background2:EXPR(getRowLevel(currow) == 1 ? '#ffff00' : '#fffff');color:EXPR(getRowLevel(currow) == 1 ? '#0000ff' : '#000000');color2:EXPR(getRowLevel(currow) == 1 ? '#0000ff' : '#000000');" text="bind:ginhospsuppamt"/>
- <Cell col="17" displaytype="number" style="background:EXPR(getRowLevel(currow) == 1 ? '#ffff00' : '#fffff');background2:EXPR(getRowLevel(currow) == 1 ? '#ffff00' : '#fffff');color:EXPR(getRowLevel(currow) == 1 ? '#0000ff' : '#000000');color2:EXPR(getRowLevel(currow) == 1 ? '#0000ff' : '#000000');" text="bind:inhospsuppamt"/>
- <Cell col="18" displaytype="number" style="background:EXPR(getRowLevel(currow) == 1 ? '#ffff00' : '#fffff');background2:EXPR(getRowLevel(currow) == 1 ? '#ffff00' : '#fffff');color:EXPR(getRowLevel(currow) == 1 ? '#0000ff' : '#000000');color2:EXPR(getRowLevel(currow) == 1 ? '#0000ff' : '#000000');" text="bind:inhospsubtamt"/>
- <Cell col="19" displaytype="number" style="background:EXPR(getRowLevel(currow) == 1 ? '#ffff00' : '#fffff');background2:EXPR(getRowLevel(currow) == 1 ? '#ffff00' : '#fffff');color:EXPR(getRowLevel(currow) == 1 ? '#0000ff' : '#000000');color2:EXPR(getRowLevel(currow) == 1 ? '#0000ff' : '#000000');" text="bind:inhosplimitdiffamt"/>
- <Cell col="20" displaytype="number" style="background:EXPR(getRowLevel(currow) == 1 ? '#ffff00' : '#fffff');background2:EXPR(getRowLevel(currow) == 1 ? '#ffff00' : '#fffff');color:EXPR(getRowLevel(currow) == 1 ? '#0000ff' : '#000000');color2:EXPR(getRowLevel(currow) == 1 ? '#0000ff' : '#000000');" text="bind:acptaddamt"/>
- <Cell col="21" displaytype="number" style="background:EXPR(getRowLevel(currow) == 1 ? '#ffff00' : '#fffff');background2:EXPR(getRowLevel(currow) == 1 ? '#ffff00' : '#fffff');color:EXPR(getRowLevel(currow) == 1 ? '#0000ff' : '#000000');color2:EXPR(getRowLevel(currow) == 1 ? '#0000ff' : '#000000');" text="bind:acptcutamt"/>
- <Cell col="22" displaytype="number" style="background:EXPR(getRowLevel(currow) == 1 ? '#ffff00' : '#fffff');background2:EXPR(getRowLevel(currow) == 1 ? '#ffff00' : '#fffff');color:EXPR(getRowLevel(currow) == 1 ? '#0000ff' : '#000000');color2:EXPR(getRowLevel(currow) == 1 ? '#0000ff' : '#000000');" text="bind:acptamt"/>
- <Cell col="23" displaytype="number" style="background:EXPR(getRowLevel(currow) == 1 ? '#ffff00' : '#fffff');background2:EXPR(getRowLevel(currow) == 1 ? '#ffff00' : '#fffff');color:EXPR(getRowLevel(currow) == 1 ? '#0000ff' : '#000000');color2:EXPR(getRowLevel(currow) == 1 ? '#0000ff' : '#000000');" text="bind:bfcnt"/>
- <Cell col="24" displaytype="number" style="background:EXPR(getRowLevel(currow) == 1 ? '#ffff00' : '#fffff');background2:EXPR(getRowLevel(currow) == 1 ? '#ffff00' : '#fffff');color:EXPR(getRowLevel(currow) == 1 ? '#0000ff' : '#000000');color2:EXPR(getRowLevel(currow) == 1 ? '#0000ff' : '#000000');" text="bind:bfmedcaretotamt"/>
- <Cell col="25" displaytype="number" style="background:EXPR(getRowLevel(currow) == 1 ? '#ffff00' : '#fffff');background2:EXPR(getRowLevel(currow) == 1 ? '#ffff00' : '#fffff');color:EXPR(getRowLevel(currow) == 1 ? '#0000ff' : '#000000');color2:EXPR(getRowLevel(currow) == 1 ? '#0000ff' : '#000000');" text="bind:bfownbamt"/>
- <Cell col="26" displaytype="number" style="background:EXPR(getRowLevel(currow) == 1 ? '#ffff00' : '#fffff');background2:EXPR(getRowLevel(currow) == 1 ? '#ffff00' : '#fffff');color:EXPR(getRowLevel(currow) == 1 ? '#0000ff' : '#000000');color2:EXPR(getRowLevel(currow) == 1 ? '#0000ff' : '#000000');" text="bind:bfinsuclamamt"/>
- <Cell col="27" displaytype="number" style="background:EXPR(getRowLevel(currow) == 1 ? '#ffff00' : '#fffff');background2:EXPR(getRowLevel(currow) == 1 ? '#ffff00' : '#fffff');color:EXPR(getRowLevel(currow) == 1 ? '#0000ff' : '#000000');color2:EXPR(getRowLevel(currow) == 1 ? '#0000ff' : '#000000');" text="bind:bfownbmaxexamt"/>
- <Cell col="28" displaytype="number" style="background:EXPR(getRowLevel(currow) == 1 ? '#ffff00' : '#fffff');background2:EXPR(getRowLevel(currow) == 1 ? '#ffff00' : '#fffff');color:EXPR(getRowLevel(currow) == 1 ? '#0000ff' : '#000000');color2:EXPR(getRowLevel(currow) == 1 ? '#0000ff' : '#000000');" text="bind:hbfsuppamt"/>
- <Cell col="29" displaytype="number" style="background:EXPR(getRowLevel(currow) == 1 ? '#ffff00' : '#fffff');background2:EXPR(getRowLevel(currow) == 1 ? '#ffff00' : '#fffff');color:EXPR(getRowLevel(currow) == 1 ? '#0000ff' : '#000000');color2:EXPR(getRowLevel(currow) == 1 ? '#0000ff' : '#000000');" text="bind:lbfsuppamt"/>
- <Cell col="30" displaytype="number" style="background:EXPR(getRowLevel(currow) == 1 ? '#ffff00' : '#fffff');background2:EXPR(getRowLevel(currow) == 1 ? '#ffff00' : '#fffff');color:EXPR(getRowLevel(currow) == 1 ? '#0000ff' : '#000000');color2:EXPR(getRowLevel(currow) == 1 ? '#0000ff' : '#000000');" text="bind:bfhandcaprfund"/>
- <Cell col="31" displaytype="number" style="background:EXPR(getRowLevel(currow) == 1 ? '#ffff00' : '#fffff');background2:EXPR(getRowLevel(currow) == 1 ? '#ffff00' : '#fffff');color:EXPR(getRowLevel(currow) == 1 ? '#0000ff' : '#000000');color2:EXPR(getRowLevel(currow) == 1 ? '#0000ff' : '#000000');" text="bind:gbfsuppamt"/>
- <Cell col="32" displaytype="number" style="background:EXPR(getRowLevel(currow) == 1 ? '#ffff00' : '#fffff');background2:EXPR(getRowLevel(currow) == 1 ? '#ffff00' : '#fffff');color:EXPR(getRowLevel(currow) == 1 ? '#0000ff' : '#000000');color2:EXPR(getRowLevel(currow) == 1 ? '#0000ff' : '#000000');" text="bind:bfsuppamt"/>
- <Cell col="33" displaytype="number" style="background:EXPR(getRowLevel(currow) == 1 ? '#ffff00' : '#fffff');background2:EXPR(getRowLevel(currow) == 1 ? '#ffff00' : '#fffff');color:EXPR(getRowLevel(currow) == 1 ? '#0000ff' : '#000000');color2:EXPR(getRowLevel(currow) == 1 ? '#0000ff' : '#000000');" text="bind:bfsubtamt"/>
- <Cell col="34" displaytype="number" style="background:EXPR(getRowLevel(currow) == 1 ? '#ffff00' : '#fffff');background2:EXPR(getRowLevel(currow) == 1 ? '#ffff00' : '#fffff');color:EXPR(getRowLevel(currow) == 1 ? '#0000ff' : '#000000');color2:EXPR(getRowLevel(currow) == 1 ? '#0000ff' : '#000000');" text="bind:bflimitdiffamt"/>
- <Cell col="35" displaytype="number" style="background:EXPR(getRowLevel(currow) == 1 ? '#ffff00' : '#fffff');background2:EXPR(getRowLevel(currow) == 1 ? '#ffff00' : '#fffff');color:EXPR(getRowLevel(currow) == 1 ? '#0000ff' : '#000000');color2:EXPR(getRowLevel(currow) == 1 ? '#0000ff' : '#000000');" text="bind:reservecnt"/>
- <Cell col="36" displaytype="number" style="background:EXPR(getRowLevel(currow) == 1 ? '#ffff00' : '#fffff');background2:EXPR(getRowLevel(currow) == 1 ? '#ffff00' : '#fffff');color:EXPR(getRowLevel(currow) == 1 ? '#0000ff' : '#000000');color2:EXPR(getRowLevel(currow) == 1 ? '#0000ff' : '#000000');" text="bind:reserveamtslt"/>
- <Cell col="37" displaytype="number" style="background:EXPR(getRowLevel(currow) == 1 ? '#ffff00' : '#fffff');background2:EXPR(getRowLevel(currow) == 1 ? '#ffff00' : '#fffff');color:EXPR(getRowLevel(currow) == 1 ? '#0000ff' : '#000000');color2:EXPR(getRowLevel(currow) == 1 ? '#0000ff' : '#000000');" text="bind:delcnt"/>
- <Cell col="38" displaytype="number" style="background:EXPR(getRowLevel(currow) == 1 ? '#ffff00' : '#fffff');background2:EXPR(getRowLevel(currow) == 1 ? '#ffff00' : '#fffff');color:EXPR(getRowLevel(currow) == 1 ? '#0000ff' : '#000000');color2:EXPR(getRowLevel(currow) == 1 ? '#0000ff' : '#000000');" text="bind:delamtrslt"/>
- <Cell col="39" displaytype="number" style="background:EXPR(getRowLevel(currow) == 1 ? '#ffff00' : '#fffff');background2:EXPR(getRowLevel(currow) == 1 ? '#ffff00' : '#fffff');color:EXPR(getRowLevel(currow) == 1 ? '#0000ff' : '#000000');color2:EXPR(getRowLevel(currow) == 1 ? '#0000ff' : '#000000');" text="bind:reserve_delcnt"/>
- <Cell col="40" displaytype="number" style="background:EXPR(getRowLevel(currow) == 1 ? '#ffff00' : '#fffff');background2:EXPR(getRowLevel(currow) == 1 ? '#ffff00' : '#fffff');color:EXPR(getRowLevel(currow) == 1 ? '#0000ff' : '#000000');color2:EXPR(getRowLevel(currow) == 1 ? '#0000ff' : '#000000');" text="bind:reserve_delamtrslt"/>
- <Cell col="41" displaytype="number" style="background:EXPR(getRowLevel(currow) == 1 ? '#ffff00' : '#fffff');background2:EXPR(getRowLevel(currow) == 1 ? '#ffff00' : '#fffff');color:EXPR(getRowLevel(currow) == 1 ? '#0000ff' : '#000000');color2:EXPR(getRowLevel(currow) == 1 ? '#0000ff' : '#000000');" text="bind:changecnt"/>
- <Cell col="42" displaytype="number" style="background:EXPR(getRowLevel(currow) == 1 ? '#ffff00' : '#fffff');background2:EXPR(getRowLevel(currow) == 1 ? '#ffff00' : '#fffff');color:EXPR(getRowLevel(currow) == 1 ? '#0000ff' : '#000000');color2:EXPR(getRowLevel(currow) == 1 ? '#0000ff' : '#000000');" text="bind:addcnt"/>
- <Cell col="43" displaytype="number" style="background:EXPR(getRowLevel(currow) == 1 ? '#ffff00' : '#fffff');background2:EXPR(getRowLevel(currow) == 1 ? '#ffff00' : '#fffff');" text="bind:clamaddamtrslt"/>
- <Cell col="44" displaytype="number" style="background:EXPR(getRowLevel(currow) == 1 ? '#ffff00' : '#fffff');background2:EXPR(getRowLevel(currow) == 1 ? '#ffff00' : '#fffff');" text="bind:clamcutamtrslt"/>
- <Cell col="45" displaytype="number" style="background:EXPR(getRowLevel(currow) == 1 ? '#ffff00' : '#fffff');background2:EXPR(getRowLevel(currow) == 1 ? '#ffff00' : '#fffff');" text="bind:clamamtrslt"/>
- <Cell col="46" displaytype="number" style="background:EXPR(getRowLevel(currow) == 1 ? '#ffff00' : '#fffff');background2:EXPR(getRowLevel(currow) == 1 ? '#ffff00' : '#fffff');" text="bind:afcnt"/>
- <Cell col="47" displaytype="number" style="background:EXPR(getRowLevel(currow) == 1 ? '#ffff00' : '#fffff');background2:EXPR(getRowLevel(currow) == 1 ? '#ffff00' : '#fffff');" text="bind:afmedcaretotamt"/>
- <Cell col="48" displaytype="number" style="background:EXPR(getRowLevel(currow) == 1 ? '#ffff00' : '#fffff');background2:EXPR(getRowLevel(currow) == 1 ? '#ffff00' : '#fffff');" text="bind:afownbamt"/>
- <Cell col="49" displaytype="number" style="background:EXPR(getRowLevel(currow) == 1 ? '#ffff00' : '#fffff');background2:EXPR(getRowLevel(currow) == 1 ? '#ffff00' : '#fffff');" text="bind:afinsuclamamt"/>
- <Cell col="50" displaytype="number" style="background:EXPR(getRowLevel(currow) == 1 ? '#ffff00' : '#fffff');background2:EXPR(getRowLevel(currow) == 1 ? '#ffff00' : '#fffff');" text="bind:afownbmaxexamt"/>
- <Cell col="51" displaytype="number" style="background:EXPR(getRowLevel(currow) == 1 ? '#ffff00' : '#fffff');background2:EXPR(getRowLevel(currow) == 1 ? '#ffff00' : '#fffff');" text="bind:hafsuppamt"/>
- <Cell col="52" displaytype="number" style="background:EXPR(getRowLevel(currow) == 1 ? '#ffff00' : '#fffff');background2:EXPR(getRowLevel(currow) == 1 ? '#ffff00' : '#fffff');" text="bind:lafsuppamt"/>
- <Cell col="53" displaytype="number" style="background:EXPR(getRowLevel(currow) == 1 ? '#ffff00' : '#fffff');background2:EXPR(getRowLevel(currow) == 1 ? '#ffff00' : '#fffff');" text="bind:afhandcaprfund"/>
- <Cell col="54" displaytype="number" style="background:EXPR(getRowLevel(currow) == 1 ? '#ffff00' : '#fffff');background2:EXPR(getRowLevel(currow) == 1 ? '#ffff00' : '#fffff');" text="bind:gafsuppamt"/>
- <Cell col="55" displaytype="number" style="background:EXPR(getRowLevel(currow) == 1 ? '#ffff00' : '#fffff');background2:EXPR(getRowLevel(currow) == 1 ? '#ffff00' : '#fffff');" text="bind:afsuppamt"/>
- <Cell col="56" displaytype="number" style="background:EXPR(getRowLevel(currow) == 1 ? '#ffff00' : '#fffff');background2:EXPR(getRowLevel(currow) == 1 ? '#ffff00' : '#fffff');" text="bind:afsubtamt"/>
- <Cell col="57" displaytype="number" style="background:EXPR(getRowLevel(currow) == 1 ? '#ffff00' : '#fffff');background2:EXPR(getRowLevel(currow) == 1 ? '#ffff00' : '#fffff');" text="bind:aflimitdiffamt"/>
- </Band>
- </Format>
- </Formats>
- </Grid>
- <Div position="absolute 743 18 983 200" id="grp_prtoption" visible="false" anchor="default" style="background:#ffffffff;border:1 solid #808080ff ;">
- <Layouts>
- <Layout width="240" height="182">
- <Static text="금액집계표 출력" position="absolute 2 4 146 26" id="caption81" class="tit_2" anchor="default"/>
- <Shape position="absolute 1 20 235 29" linetype="horizontal" id="line27" class="line_1" anchor="default" style="strokepen:3 solid #33bbbbff;"/>
- <Button position="absolute 178 155 234 177" id="button12" class="btn4" text="닫기" anchor="default" onclick="grp_biz_switch1_case1_grp_prtoption_button12_onclick"/>
- <Static text="진료 형태 :" position="absolute 4 28 128 45" id="caption18" class="search_name" visible="true" anchor="default"/>
- <Static text="출력 선택 :" position="absolute 4 53 128 70" id="caption19" class="search_name" visible="true" anchor="default"/>
- <Shape position="absolute -1 149 238 155" linetype="horizontal" id="line5" class="line_3" anchor="default"/>
- <Button position="absolute 119 155 175 177" id="button13" class="btn4" text="출력" anchor="default" onclick="grp_biz_switch1_case1_grp_prtoption_button13_onclick"/>
- <Radio position="absolute 99 28 199 48" id="radio2" columncount="2" codecolumn="codecolumn" datacolumn="datacolumn" anchor="default">
- <Dataset id="innerdataset">
- <ColumnInfo>
- <Column id="codecolumn"/>
- <Column id="datacolumn"/>
- </ColumnInfo>
- <Rows>
- <Row>
- <Col id="codecolumn">I</Col>
- <Col id="datacolumn">입원</Col>
- </Row>
- <Row>
- <Col id="codecolumn">O</Col>
- <Col id="datacolumn">외래</Col>
- </Row>
- </Rows>
- </Dataset>
- </Radio>
- <Radio position="absolute 99 53 234 73" id="radio3" columncount="3" codecolumn="codecolumn" datacolumn="datacolumn" anchor="default">
- <Dataset id="innerdataset">
- <ColumnInfo>
- <Column id="codecolumn"/>
- <Column id="datacolumn"/>
- </ColumnInfo>
- <Rows>
- <Row>
- <Col id="codecolumn">B</Col>
- <Col id="datacolumn">사전</Col>
- </Row>
- <Row>
- <Col id="codecolumn">A</Col>
- <Col id="datacolumn">사후</Col>
- </Row>
- <Row>
- <Col id="codecolumn">P</Col>
- <Col id="datacolumn">원무</Col>
- </Row>
- </Rows>
- </Dataset>
- </Radio>
- <Static text="미수 년월 :" position="absolute 4 102 95 119" id="caption7" class="search_name" anchor="default"/>
- <Combo position="absolute 98 77 173 96" id="prt_clamflag" class="combo_search" codecolumn="codecolumn" datacolumn="datacolumn" anchor="default">
- <Dataset id="innerdataset">
- <ColumnInfo>
- <Column id="codecolumn"/>
- <Column id="datacolumn"/>
- </ColumnInfo>
- <Rows>
- <Row>
- <Col id="codecolumn">0</Col>
- <Col id="datacolumn">원청구</Col>
- </Row>
- <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">4</Col>
- <Col id="datacolumn">누락청구</Col>
- </Row>
- <Row>
- <Col id="codecolumn">5</Col>
- <Col id="datacolumn">보완차액</Col>
- </Row>
- <Row>
- <Col id="codecolumn">6</Col>
- <Col id="datacolumn">보완삭제</Col>
- </Row>
- </Rows>
- </Dataset>
- </Combo>
- <Static text="청구 구분 :" position="absolute 4 78 95 95" id="caption8" class="search_name" anchor="default"/>
- <Static text="출력 구분 :" position="absolute 4 126 95 143" id="caption10" class="search_name" anchor="default"/>
- <Combo position="absolute 98 125 234 144" id="combo1" 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>
- </Combo>
- <cp_monthCal id="prt_clamym" titletext="monthCalendar" taborder="4" text="cp_monthCal00" scrollbars="none" position="absolute 98 101 173 121"/>
- </Layout>
- </Layouts>
- </Div>
- </Layout>
- </Layouts>
- </Tabpage>
- <Tabpage text="개인별현황" id="case2">
- <Layouts>
- <Layout>
- <Grid position="absolute 0 0 1202 635" id="grd_indprescond" binddataset="ds_main_list2_gridindprescond" anchor="all" oncelldblclick="grp_biz_switch1_case2_grd_indprescond_oncelldblclick" oncellclick="grp_biz_switch1_case2_grd_indprescond_oncellclick" onkeydown="grp_biz_switch1_case2_grd_indprescond_onkeydown" cellsizingtype="col">
- <Formats>
- <Format id="default">
- <Columns>
- <Column size="24"/>
- <Column size="60"/>
- <Column size="0"/>
- <Column size="100"/>
- <Column size="53"/>
- <Column size="61"/>
- <Column size="46"/>
- <Column size="60"/>
- <Column size="69"/>
- <Column size="0"/>
- <Column size="40"/>
- <Column size="0"/>
- <Column size="0"/>
- <Column size="0"/>
- <Column size="70"/>
- <Column size="0"/>
- <Column size="0"/>
- <Column size="47"/>
- <Column size="0"/>
- <Column size="44"/>
- <Column size="48"/>
- <Column size="0"/>
- <Column size="58"/>
- <Column size="0"/>
- <Column size="93"/>
- <Column size="100"/>
- <Column size="100"/>
- <Column size="105"/>
- <Column size="112"/>
- <Column size="103"/>
- <Column size="76"/>
- <Column size="102"/>
- <Column size="100"/>
- <Column size="70"/>
- <Column size="100"/>
- <Column size="100"/>
- <Column size="81"/>
- <Column size="100"/>
- <Column size="60"/>
- <Column size="58"/>
- <Column size="61"/>
- <Column size="88"/>
- <Column size="117"/>
- <Column size="113"/>
- <Column size="92"/>
- <Column size="96"/>
- <Column size="100"/>
- <Column size="80"/>
- <Column size="100"/>
- <Column size="100"/>
- <Column size="69"/>
- <Column size="100"/>
- <Column size="61"/>
- <Column size="54"/>
- <Column size="57"/>
- <Column size="103"/>
- <Column size="112"/>
- <Column size="94"/>
- <Column size="65"/>
- <Column size="112"/>
- <Column size="100"/>
- <Column size="70"/>
- <Column size="100"/>
- <Column size="100"/>
- <Column size="73"/>
- <Column size="100"/>
- <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" text="접수일자"/>
- <Cell col="3" rowspan="2" text="심사상태" taborder="undefined"/>
- <Cell col="4" rowspan="2" text="명일련" taborder="undefined"/>
- <Cell col="5" colspan="18" text="청구정보" taborder="undefined"/>
- <Cell col="23" text="청구정보"/>
- <Cell col="24" colspan="14" 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" colspan="11" text="심사 전(인수금액)" taborder="undefined"/>
- <Cell col="52" rowspan="2" text="청구증액" taborder="undefined"/>
- <Cell col="53" rowspan="2" text="청구감액" taborder="undefined"/>
- <Cell col="54" rowspan="2" text="청구차액" taborder="undefined"/>
- <Cell col="55" colspan="11" text="심사 후(청구금액)" taborder="undefined"/>
- <Cell col="66" text="pidsn"/>
- <Cell row="1" col="2" text="접수일자"/>
- <Cell row="1" col="5" text="등록번호"/>
- <Cell row="1" col="6" text="수진자"/>
- <Cell row="1" col="7" text="청구년월"/>
- <Cell row="1" col="8" text="청구구분"/>
- <Cell row="1" col="9" text="청구차수"/>
- <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="30" text="(재)상한액"/>
- <Cell row="1" col="31" text="(재)희귀지원금"/>
- <Cell row="1" col="32" text="(재)결핵지원금"/>
- <Cell row="1" col="33" 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="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="50" text="(전)대불금"/>
- <Cell row="1" col="51" text="(전)약제상한차액"/>
- <Cell row="1" col="55" text="(후)총진료비"/>
- <Cell row="1" col="56" text="(후)본인부담"/>
- <Cell row="1" col="57" text="(후)청구액"/>
- <Cell row="1" col="58" text="(후)상한액"/>
- <Cell row="1" col="59" text="(후)희귀지원금"/>
- <Cell row="1" col="60" text="(후)결핵지원금"/>
- <Cell row="1" col="61" text="(후)장애인"/>
- <Cell row="1" col="62" text="(후)긴급지원금"/>
- <Cell row="1" col="63" text="(후)지원금"/>
- <Cell row="1" col="64" text="(후)대불금"/>
- <Cell row="1" col="65" text="(후)약제상한차액"/>
- <Cell row="1" col="66" text="pidsn"/>
- </Band>
- <Band id="body">
- <Cell celltype="head" expr="currow+1"/>
- <Cell col="1" text="bind:acptno"/>
- <Cell col="2" text="bind:acptdd"/>
- <Cell col="3" displaytype="combo" edittype="combo" style="align:center middle;" text="bind:judgendyn" combodataset="ds_init_P0151list" combocodecol="cdid" combodatacol="cdnm" enable="false"/>
- <Cell col="4" text="bind:docuseqno"/>
- <Cell col="5" text="bind:pid"/>
- <Cell col="6" text="bind:patnm"/>
- <Cell col="7" displaytype="date" text="bind:clamym" mask="yyyy-MM"/>
- <Cell col="8" displaytype="combo" edittype="combo" style="align:center middle;" text="bind:clamflagcd" combodataset="ds_init_P0155list" combocodecol="cdid" combodatacol="cdnm" enable="false"/>
- <Cell col="9" text="bind:clamdg"/>
- <Cell col="10" text="bind:insusubflag"/>
- <Cell col="11" text="bind:assomark"/>
- <Cell col="12" text="bind:nm"/>
- <Cell col="13" displaytype="combo" edittype="combo" text="bind:supp" enable="false"/>
- <Cell col="14" text="bind:apprate"/>
- <Cell col="15" displaytype="combo" edittype="combo" text="bind:ordfildcd" enable="false"/>
- <Cell col="16" text="bind:orddeptcd"/>
- <Cell col="17" text="bind:orddeptabbr"/>
- <Cell col="18" text="bind:clamdeptcd"/>
- <Cell col="19" displaytype="combo" edittype="combo" style="align:center middle;" text="bind:clamdeptabbr" combodataset="ds_init_P0471list" combocodecol="cdid" combodatacol="cdnm" enable="false"/>
- <Cell col="20" text="bind:judgrnm"/>
- <Cell col="21" text="bind:judgrid"/>
- <Cell col="22" text="bind:atdoctnm"/>
- <Cell col="23" text="bind:atdoctid"/>
- <Cell col="24" displaytype="number" text="bind:inhosptotordamt"/>
- <Cell col="25" displaytype="number" text="bind:inhospnopytotordamt"/>
- <Cell col="26" displaytype="number" text="bind:inhospownbtotamt"/>
- <Cell col="27" displaytype="number" text="bind:inhosppaytotordamt"/>
- <Cell col="28" displaytype="number" text="bind:inhosppayownbamt"/>
- <Cell col="29" displaytype="number" text="bind:inhosppayclamamt"/>
- <Cell col="30" displaytype="number" text="bind:inhospownbmaxexamt"/>
- <Cell col="31" displaytype="number" text="bind:hinhospsuppamt"/>
- <Cell col="32" displaytype="number" text="bind:linhospsuppamt"/>
- <Cell col="33" displaytype="number" text="bind:inhosphandcaprfund"/>
- <Cell col="34" displaytype="number" text="bind:ginhospsuppamt"/>
- <Cell col="35" displaytype="number" text="bind:inhospsuppamt"/>
- <Cell col="36" displaytype="number" text="bind:inhospsubtamt"/>
- <Cell col="37" displaytype="number" text="bind:inhosplimitdiffamt"/>
- <Cell col="38" displaytype="number" text="bind:acptaddamt"/>
- <Cell col="39" displaytype="number" text="bind:acptcutamt"/>
- <Cell col="40" displaytype="number" text="bind:acptamt"/>
- <Cell col="41" displaytype="number" text="bind:bfmedcaretotamt"/>
- <Cell col="42" displaytype="number" text="bind:bfownbamt"/>
- <Cell col="43" displaytype="number" text="bind:bfinsuclamamt"/>
- <Cell col="44" displaytype="number" text="bind:bfownbmaxexamt"/>
- <Cell col="45" displaytype="number" text="bind:hbfsuppamt"/>
- <Cell col="46" displaytype="number" text="bind:lbfsuppamt"/>
- <Cell col="47" displaytype="number" text="bind:bfhandcaprfund"/>
- <Cell col="48" displaytype="number" text="bind:gbfsuppamt"/>
- <Cell col="49" displaytype="number" text="bind:bfsuppamt"/>
- <Cell col="50" displaytype="number" text="bind:bfsubtamt"/>
- <Cell col="51" displaytype="number" text="bind:bflimitdiffamt"/>
- <Cell col="52" displaytype="number" text="bind:clamaddamtrslt"/>
- <Cell col="53" displaytype="number" text="bind:clamcutamtrslt"/>
- <Cell col="54" displaytype="number" text="bind:clamamtrslt"/>
- <Cell col="55" displaytype="number" text="bind:afmedcaretotamt"/>
- <Cell col="56" displaytype="number" text="bind:afownbamt"/>
- <Cell col="57" displaytype="number" text="bind:afinsuclamamt"/>
- <Cell col="58" displaytype="number" text="bind:afownbmaxexamt"/>
- <Cell col="59" displaytype="number" text="bind:hafsuppamt"/>
- <Cell col="60" displaytype="number" text="bind:lafsuppamt"/>
- <Cell col="61" displaytype="number" text="bind:afhandcaprfund"/>
- <Cell col="62" displaytype="number" text="bind:gafsuppamt"/>
- <Cell col="63" displaytype="number" text="bind:afsuppamt"/>
- <Cell col="64" displaytype="number" text="bind:afsubtamt"/>
- <Cell col="65" displaytype="number" text="bind:aflimitdiffamt"/>
- <Cell col="66" text="bind:pidsn"/>
- </Band>
- </Format>
- </Formats>
- </Grid>
- </Layout>
- </Layouts>
- </Tabpage>
- <Tabpage text="개인별처방내역" id="case3">
- <Layouts>
- <Layout>
- <Grid position="absolute 0 0 1202 635" id="grd_prcpspec" binddataset="ds_main_list3_gridindprcpspec" anchor="all" oncellclick="grp_biz_switch1_case3_grd_prcpspec_oncellclick" onkeydown="grp_biz_switch1_case3_grd_prcpspec_onkeydown" cellsizingtype="col">
- <Formats>
- <Format id="default">
- <Columns>
- <Column size="23"/>
- <Column size="40"/>
- <Column size="40"/>
- <Column size="90"/>
- <Column size="90"/>
- <Column size="90"/>
- <Column size="209"/>
- <Column size="95"/>
- <Column size="80"/>
- <Column size="50"/>
- <Column size="45"/>
- <Column size="95"/>
- <Column size="50"/>
- <Column size="45"/>
- <Column size="95"/>
- <Column size="100"/>
- <Column size="32"/>
- <Column size="67"/>
- </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" colspan="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="EDI코드" 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" colspan="3" text="심사전" taborder="undefined"/>
- <Cell col="12" colspan="3" 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 row="1" col="1" text="항"/>
- <Cell row="1" col="2" text="목"/>
- <Cell row="1" col="9" text="1일량"/>
- <Cell row="1" col="10" text="일수"/>
- <Cell row="1" col="11" text="금액"/>
- <Cell row="1" col="12" text="1일량"/>
- <Cell row="1" col="13" text="일수"/>
- <Cell row="1" col="14" text="금액"/>
- </Band>
- <Band id="body">
- <Cell celltype="head" expr="currow+1"/>
- <Cell col="1" text="bind:item1"/>
- <Cell col="2" text="bind:item2"/>
- <Cell col="3" text="bind:grupcalcscorcd"/>
- <Cell col="4" text="bind:snglcalcscorcd"/>
- <Cell col="5" text="bind:basecd"/>
- <Cell col="6" style="align:left middle;" text="bind:hngnm"/>
- <Cell col="7" displaytype="number" text="bind:rcptcalcamt"/>
- <Cell col="8" displaytype="number" text="bind:insudiffamt"/>
- <Cell col="9" displaytype="number" text="bind:bfrtims"/>
- <Cell col="10" displaytype="number" text="bind:bfrdayno"/>
- <Cell col="11" displaytype="number" text="bind:bframt"/>
- <Cell col="12" displaytype="number" text="bind:afttims"/>
- <Cell col="13" displaytype="number" text="bind:aftdayno"/>
- <Cell col="14" displaytype="number" text="bind:aftamt"/>
- <Cell col="15" displaytype="number" text="bind:difamt"/>
- <Cell col="16" text="bind:estmyn"/>
- <Cell col="17" text="bind:lastupdtrid"/>
- </Band>
- </Format>
- </Formats>
- </Grid>
- </Layout>
- </Layouts>
- </Tabpage>
- </Tabpages>
- </Tab>
- <Button position="absolute 694 57 791 76" id="button8" class="btn5" text="파일 다운로드" anchor="top right" onclick="grp_biz_button8_onclick"/>
- <Button position="absolute 617 57 692 76" id="button9" class="btn5" text="파일 생성" anchor="top right" onclick="grp_biz_button9_onclick"/>
- <Button position="absolute 884 57 964 76" id="button6" class="btn7" text="엑셀저장" anchor="top right" onclick="grp_biz_button6_onclick"/>
- <Button position="absolute 792 57 883 76" id="button5" class="btn6" text="집계표출력" anchor="top right" onclick="grp_biz_button5_onclick"/>
- <CheckBox position="absolute 375 61 394 76" id="bool1" anchor="left top" truevalue="Y" falsevalue="N"/>
- <Static text="접수번호 생성 유(결산용)" position="absolute 398 58 553 81" id="caption9" anchor="left top"/>
- </Layout>
- </Layouts>
- </Div>
- <Button position="absolute 966 80 1019 99" id="button2" class="btn2" text="셀카피" onclick="button2_onclick" anchor="top right"/>
- <Button position="absolute 1021 80 1074 99" id="button3" class="btn2" text="열카피" onclick="button3_onclick" anchor="top right"/>
- <Button position="absolute 1077 80 1130 99" id="button7" class="btn2" text="행카피" onclick="button7_onclick" anchor="top right"/>
- <Button position="absolute 1132 79 1200 99" id="button10" class="btn4" text="초기화" onclick="button10_onclick" anchor="top right"/>
- <Static text="▶ [심사상태조건] : 1. 재원:'R' 제외, 2. 심사전:'R' 제외, 3. 심사후:'D','N','R' 제외." position="absolute 1 744 541 760" id="caption1" style="color:#fa0413ff;font:Dotum,9,bold;" anchor="left bottom"/>
- <Static text="▶ 1. 심사(전)건수 = 재원(재)건수 + 추가건수, 2. 심사(후)건수 = 심사(전)건수 - (삭제+보류건수) + 자격수정건수" position="absolute 550 744 1185 760" id="caption5" style="color:#262626ff;" anchor="right bottom"/>
- <Static id="caption6" text="진료과/개인/처방별 수정전후 집계표 조회" class="tit_1" position="absolute 0 0 304 23"/>
- </Layout>
- </Layouts>
- <Objects>
- <Dataset id="ds_send_send_base" firefirstcount="0" firenextcount="0" useclientlayout="false" updatecontrol="true" enableevent="true" loadkeymode="keep" loadfiltermode="keep" reversesubsum="false">
- <ColumnInfo>
- <Column id="clamflag" type="STRING" size="256"/>
- <Column id="fromdd" type="STRING" size="256"/>
- <Column id="ordfildcd" type="STRING" size="256"/>
- <Column id="ioflag" type="STRING" size="256"/>
- <Column id="insukindcd" type="STRING" size="256"/>
- <Column id="srchond" type="STRING" size="256"/>
- <Column id="clamdg" type="STRING" size="256"/>
- <Column id="clamdg1" type="STRING" size="256"/>
- <Column id="clamdg2" type="STRING" size="256"/>
- <Column id="clamdg3" type="STRING" size="256"/>
- <Column id="clamdg4" type="STRING" size="256"/>
- <Column id="clamdg5" type="STRING" size="256"/>
- <Column id="calc" type="STRING" size="256"/>
- <Column id="insukindcd1" type="STRING" size="256"/>
- <Column id="insukindcd2" type="STRING" size="256"/>
- <Column id="insukindcd3" type="STRING" size="256"/>
- <Column id="insukindcd4" type="STRING" size="256"/>
- <Column id="insukindcd5" type="STRING" size="256"/>
- <Column id="ddflag" type="STRING" size="256"/>
- </ColumnInfo>
- <Rows>
- <Row/>
- </Rows>
- </Dataset>
- <Dataset id="ds_send_prtoption" firefirstcount="0" firenextcount="0" useclientlayout="false" updatecontrol="true" enableevent="true" loadkeymode="keep" loadfiltermode="keep" reversesubsum="false">
- <ColumnInfo>
- <Column id="ioflag" type="STRING" size="256"/>
- <Column id="judgtype" type="STRING" size="256"/>
- <Column id="clamflag" type="STRING" size="256"/>
- <Column id="clamym" type="STRING" size="256"/>
- <Column id="printtype" type="STRING" size="256"/>
- <Column id="calc" type="STRING" size="256"/>
- </ColumnInfo>
- <Rows>
- <Row>
- <Col id="ioflag">I</Col>
- <Col id="judgtype">B</Col>
- <Col id="clamflag">0</Col>
- <Col id="printtype">1</Col>
- </Row>
- </Rows>
- </Dataset>
- <Dataset id="ds_init_P0151list" 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>
- <Rows>
- <Row/>
- </Rows>
- </Dataset>
- <Dataset id="ds_init_P0155list" 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>
- <Rows>
- <Row/>
- </Rows>
- </Dataset>
- <Dataset id="ds_init_P0010list" 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>
- <Rows>
- <Row/>
- </Rows>
- </Dataset>
- <Dataset id="ds_init_P0471list" 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>
- <Rows>
- <Row/>
- </Rows>
- </Dataset>
- <Dataset id="ds_init_P0415list" firefirstcount="0" firenextcount="0" useclientlayout="false" updatecontrol="true" enableevent="true" loadkeymode="keep" loadfiltermode="keep" reversesubsum="false"/>
- <Dataset id="ds_init_P0426list" firefirstcount="0" firenextcount="0" useclientlayout="false" updatecontrol="true" enableevent="true" loadkeymode="keep" loadfiltermode="keep" reversesubsum="false"/>
- <Dataset id="ds_main_list1_griddeptfild" firefirstcount="0" firenextcount="0" useclientlayout="true" updatecontrol="true" enableevent="true" loadkeymode="keep" loadfiltermode="keep" reversesubsum="false">
- <ColumnInfo>
- <Column id="orddeptcd" type="STRING" size="256" prop="NONE"/>
- <Column id="depthngnm" type="STRING" size="256" sumtext="총계" prop="TEXT"/>
- <Column id="deptengabbr" type="STRING" size="256" sumtext="진료과약어"/>
- <Column id="ordfildcd" type="STRING" size="256" sumtext="청구분야" prop="NONE"/>
- <Column id="inhospcnt" type="BIGDECIMAL" size="256" sumtext="(재)건수"/>
- <Column id="inhosptotordamt" type="BIGDECIMAL" size="256" sumtext="(재)총진료비"/>
- <Column id="inhospnopytotordamt" type="BIGDECIMAL" size="256" sumtext="(재)비급여총진료비"/>
- <Column id="inhospownbtotamt" type="BIGDECIMAL" size="256" sumtext="(재)본인부담총액"/>
- <Column id="inhosppaytotordamt" type="BIGDECIMAL" size="256" sumtext="(재)급여총진료비"/>
- <Column id="inhosppayownbamt" type="BIGDECIMAL" size="256" sumtext="(재)급여본인부담금"/>
- <Column id="inhosppayclamamt" type="BIGDECIMAL" size="256" sumtext="(재)급여청구액"/>
- <Column id="inhospownbmaxexamt" type="BIGDECIMAL" size="256" sumtext="(재)상한액"/>
- <Column id="ginhospsuppamt" type="BIGDECIMAL" size="256" sumtext="(재)긴급지원금"/>
- <Column id="hinhospsuppamt" type="BIGDECIMAL" size="256" sumtext="(재)희귀지원금"/>
- <Column id="linhospsuppamt" type="BIGDECIMAL" size="256" sumtext="(재)결핵지원금"/>
- <Column id="inhospsuppamt" type="BIGDECIMAL" size="256" sumtext="(재)지원금"/>
- <Column id="inhosphandcaprfund" type="BIGDECIMAL" size="256" sumtext="(재)장애인"/>
- <Column id="inhosplimitdiffamt" type="BIGDECIMAL" size="256" sumtext="(재)약제상한차액"/>
- <Column id="inhospsubtamt" type="BIGDECIMAL" size="256" sumtext="(재)대불금"/>
- <Column id="omitcnt" type="BIGDECIMAL" size="256" sumtext="누락건수"/>
- <Column id="omitamt" type="BIGDECIMAL" size="256" sumtext="누락금액"/>
- <Column id="acptaddamt" type="BIGDECIMAL" size="256" sumtext="인수증액"/>
- <Column id="acptcutamt" type="BIGDECIMAL" size="256" sumtext="인수감액"/>
- <Column id="acptamt" type="BIGDECIMAL" size="256" sumtext="인수차액"/>
- <Column id="addcnt" type="BIGDECIMAL" size="256" sumtext="추가건수"/>
- <Column id="bfcnt" type="BIGDECIMAL" size="256" sumtext="(전)건수"/>
- <Column id="bfmedcaretotamt" type="BIGDECIMAL" size="256" sumtext="(전)총진료비"/>
- <Column id="bfownbamt" type="BIGDECIMAL" size="256" sumtext="(전)본인부담"/>
- <Column id="bfinsuclamamt" type="BIGDECIMAL" size="256" sumtext="(전)청구액"/>
- <Column id="bfownbmaxexamt" type="BIGDECIMAL" size="256" sumtext="(전)상한액"/>
- <Column id="gbfsuppamt" type="BIGDECIMAL" size="256" sumtext="(전)긴급지원금"/>
- <Column id="hbfsuppamt" type="BIGDECIMAL" size="256" sumtext="(전)희귀지원금"/>
- <Column id="lbfsuppamt" type="BIGDECIMAL" size="256" sumtext="(전)결핵지원금"/>
- <Column id="bfsuppamt" type="BIGDECIMAL" size="256" sumtext="(전)지원금"/>
- <Column id="bfhandcaprfund" type="BIGDECIMAL" size="256" sumtext="(전)장애인"/>
- <Column id="bflimitdiffamt" type="BIGDECIMAL" size="256" sumtext="(전)약제상한차액"/>
- <Column id="bfsubtamt" type="BIGDECIMAL" size="256" sumtext="(전)대불금"/>
- <Column id="reservecnt" type="BIGDECIMAL" size="256" sumtext="보류건수"/>
- <Column id="reserveamtslt" type="BIGDECIMAL" size="256" sumtext="보류금액"/>
- <Column id="delcnt" type="BIGDECIMAL" size="256" sumtext="삭제건수"/>
- <Column id="delamtrslt" type="BIGDECIMAL" size="256" sumtext="삭제금액"/>
- <Column id="reserve_delcnt" type="BIGDECIMAL" size="256" sumtext="보류+삭제건수"/>
- <Column id="reserve_delamtrslt" type="BIGDECIMAL" size="256" sumtext="보류+삭제금액"/>
- <Column id="changecnt" type="BIGDECIMAL" size="256" sumtext="자격수정건수"/>
- <Column id="clamaddamtrslt" type="BIGDECIMAL" size="256" sumtext="청구증액"/>
- <Column id="clamcutamtrslt" type="BIGDECIMAL" size="256" sumtext="청구감액"/>
- <Column id="clamamtrslt" type="BIGDECIMAL" size="256" sumtext="청구차액"/>
- <Column id="afcnt" type="BIGDECIMAL" size="256" sumtext="(후)건수"/>
- <Column id="afmedcaretotamt" type="BIGDECIMAL" size="256" sumtext="(후)총진료비"/>
- <Column id="afownbamt" type="BIGDECIMAL" size="256" sumtext="(후)본인부담"/>
- <Column id="afinsuclamamt" type="BIGDECIMAL" size="256" sumtext="(후)청구액"/>
- <Column id="afownbmaxexamt" type="BIGDECIMAL" size="256" sumtext="(후)상한금"/>
- <Column id="gafsuppamt" type="BIGDECIMAL" size="256" sumtext="(후)긴급지원금"/>
- <Column id="hafsuppamt" type="BIGDECIMAL" size="256" sumtext="(후)희귀지원금"/>
- <Column id="lafsuppamt" type="BIGDECIMAL" size="256" sumtext="(후)결핵지원금"/>
- <Column id="afsuppamt" type="BIGDECIMAL" size="256" sumtext="(후)지원금"/>
- <Column id="afhandcaprfund" type="BIGDECIMAL" size="256" sumtext="(후)장애인"/>
- <Column id="aflimitdiffamt" type="BIGDECIMAL" size="256" sumtext="(후)약제상한차액"/>
- <Column id="afsubtamt" type="BIGDECIMAL" size="256" sumtext="(후)대불금"/>
- <Column id="sumtypecd" type="STRING" size="256" sumtext="(후)대불금"/>
- <Column id="sum" type="STRING" size="256" prop="TEXT"/>
- <Column id="ordfildnm" type="STRING" size="256"/>
- </ColumnInfo>
- </Dataset>
- <Dataset id="ds_main_list2_gridindprescond" firefirstcount="0" firenextcount="0" useclientlayout="false" updatecontrol="true" enableevent="true" loadkeymode="keep" loadfiltermode="keep" reversesubsum="false">
- <ColumnInfo>
- <Column id="acptno" type="STRING" size="256" sumtext="접수번호"/>
- <Column id="judgendyn" type="STRING" size="256" sumtext="심사상태"/>
- <Column id="acptdd" 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="clamym" type="STRING" size="256" sumtext="청구월"/>
- <Column id="clamtypecd" type="STRING" size="256" sumtext="청구형태"/>
- <Column id="clamflagcd" type="STRING" size="256" sumtext="청구구분"/>
- <Column id="clamdg" type="STRING" size="256" sumtext="청구차수"/>
- <Column id="insusubflag" type="STRING" size="256" sumtext="종별"/>
- <Column id="assomark" type="STRING" size="256" sumtext="조합기호"/>
- <Column id="nm" type="STRING" size="256" sumtext="명칭"/>
- <Column id="supp" type="STRING" size="256" sumtext="보조"/>
- <Column id="apprate" type="STRING" size="256" sumtext="적용요율"/>
- <Column id="ordfildcd" type="STRING" size="256" sumtext="진료분야"/>
- <Column id="orddeptcd" type="STRING" size="256" sumtext="진료과"/>
- <Column id="orddeptabbr" type="STRING" size="256" sumtext="진료과약어"/>
- <Column id="clamdeptcd" type="STRING" size="256" sumtext="청구과"/>
- <Column id="clamdeptabbr" type="STRING" size="256" sumtext="청구과약어"/>
- <Column id="judgrnm" type="STRING" size="256" sumtext="심사자"/>
- <Column id="judgrid" type="STRING" size="256" sumtext="심사자코드"/>
- <Column id="atdoctnm" type="STRING" size="256" sumtext="주치의"/>
- <Column id="atdoctid" type="STRING" size="256" sumtext="주치의코드"/>
- <Column id="inhospcnt" type="STRING" size="256" sumtext="(재)건수"/>
- <Column id="inhosptotordamt" type="STRING" size="256" sumtext="(재)총진료비"/>
- <Column id="inhosppaytotordamt" type="STRING" size="256" sumtext="(재)급여진료비"/>
- <Column id="inhospnopytotordamt" type="STRING" size="256" sumtext="(재)비급여진료비"/>
- <Column id="inhospownbtotamt" type="STRING" size="256" sumtext="(재)본인부담액"/>
- <Column id="inhosppayownbamt" type="STRING" size="256" sumtext="(재)급여본인부담금"/>
- <Column id="inhosppayclamamt" type="STRING" size="256" sumtext="(재)급여청구액"/>
- <Column id="inhospownbmaxexamt" type="STRING" size="256" sumtext="(재)상한액"/>
- <Column id="ginhospsuppamt" type="STRING" size="256" sumtext="(재)긴급지원금"/>
- <Column id="hinhospsuppamt" type="STRING" size="256" sumtext="(재)희귀지원금"/>
- <Column id="linhospsuppamt" type="STRING" size="256" sumtext="(재)희귀지원금"/>
- <Column id="inhospsuppamt" type="STRING" size="256" sumtext="(재)지원금"/>
- <Column id="inhospsubtamt" type="STRING" size="256" sumtext="(재)대불금"/>
- <Column id="inhosphandcaprfund" type="STRING" size="256" sumtext="(재)장애인"/>
- <Column id="inhosplimitdiffamt" type="STRING" size="256" sumtext="(재)장애인"/>
- <Column id="omitcnt" type="STRING" size="256" sumtext="누락건수"/>
- <Column id="omitamt" type="STRING" size="256" sumtext="누락금액"/>
- <Column id="acptaddamt" type="STRING" size="256" sumtext="인수증액"/>
- <Column id="acptcutamt" type="STRING" size="256" sumtext="인수감액"/>
- <Column id="acptamt" type="STRING" size="256" sumtext="인수차액"/>
- <Column id="bfmedcaretotamt" type="STRING" size="256" sumtext="(전)총진료비"/>
- <Column id="bfownbamt" type="STRING" size="256" sumtext="(전)본인부담"/>
- <Column id="bfinsuclamamt" type="STRING" size="256" sumtext="(전)청구액"/>
- <Column id="bfownbmaxexamt" type="STRING" size="256" sumtext="(전)급여상한액"/>
- <Column id="gbfsuppamt" type="STRING" size="256" sumtext="(전)긴급지원금"/>
- <Column id="hbfsuppamt" type="STRING" size="256" sumtext="(전)희귀지원금"/>
- <Column id="lbfsuppamt" type="STRING" size="256" sumtext="(전)희귀지원금"/>
- <Column id="bfsuppamt" type="STRING" size="256" sumtext="(전)지원금"/>
- <Column id="bfsubtamt" type="STRING" size="256" sumtext="(전)대불금"/>
- <Column id="bfhandcaprfund" type="STRING" size="256" sumtext="(전)장애인"/>
- <Column id="bflimitdiffamt" type="STRING" size="256" sumtext="(전)장애인"/>
- <Column id="clamaddamtrslt" type="STRING" size="256" sumtext="청구증액"/>
- <Column id="clamcutamtrslt" type="STRING" size="256" sumtext="청구감액"/>
- <Column id="clamamtrslt" type="STRING" size="256" sumtext="청구차액"/>
- <Column id="afmedcaretotamt" type="STRING" size="256" sumtext="(후)총진료비"/>
- <Column id="afownbamt" type="STRING" size="256" sumtext="(후)본인부담"/>
- <Column id="afinsuclamamt" type="STRING" size="256" sumtext="(후)청구액"/>
- <Column id="afownbmaxexamt" type="STRING" size="256" sumtext="(후)상한액"/>
- <Column id="gafsuppamt" type="STRING" size="256" sumtext="(후)긴급지원금"/>
- <Column id="hafsuppamt" type="STRING" size="256" sumtext="(후)희귀지원금"/>
- <Column id="lafsuppamt" type="STRING" size="256" sumtext="(후)희귀지원금"/>
- <Column id="afsuppamt" type="STRING" size="256" sumtext="(후)지원금"/>
- <Column id="afsubtamt" type="STRING" size="256" sumtext="(후)대불금"/>
- <Column id="afhandcaprfund" type="STRING" size="256" sumtext="(후)장애인"/>
- <Column id="aflimitdiffamt" type="STRING" size="256" sumtext="(후)장애인"/>
- <Column id="pidsn" type="STRING" size="256" sumtext="환자일련"/>
- </ColumnInfo>
- </Dataset>
- <Dataset id="ds_main_list3_gridindprcpspec" firefirstcount="0" firenextcount="0" useclientlayout="false" updatecontrol="true" enableevent="true" loadkeymode="keep" loadfiltermode="keep" reversesubsum="false">
- <ColumnInfo>
- <Column id="item1" type="STRING" size="256" sumtext="항"/>
- <Column id="item2" type="STRING" size="256" sumtext="목"/>
- <Column id="grupcalcscorcd" type="STRING" size="256" sumtext="그룹수가"/>
- <Column id="snglcalcscorcd" type="STRING" size="256" sumtext="수가코드"/>
- <Column id="basecd" type="STRING" size="256" sumtext="EDI코드"/>
- <Column id="hngnm" type="STRING" size="256" sumtext="한글명"/>
- <Column id="rcptcalcamt" type="STRING" size="256" sumtext="원무금액"/>
- <Column id="insudiffamt" type="STRING" size="256" sumtext="인수차액"/>
- <Column id="afttims" type="STRING" size="256" sumtext="심사후1일량"/>
- <Column id="aftdayno" type="STRING" size="256" sumtext="심사후일수"/>
- <Column id="aftamt" type="STRING" size="256" sumtext="심사후금액"/>
- <Column id="bfrtims" type="STRING" size="256" sumtext="심사전1일량"/>
- <Column id="bfrdayno" type="STRING" size="256" sumtext="심사전일수"/>
- <Column id="bframt" type="STRING" size="256" sumtext="심사전금액"/>
- <Column id="difamt" type="STRING" size="256" sumtext="차액"/>
- <Column id="estmyn" type="STRING" size="256" sumtext="산정수정"/>
- <Column id="lastupdtrid" type="STRING" size="256" sumtext="최종수정자"/>
- </ColumnInfo>
- </Dataset>
- <Dataset id="ds_send_send_clamdg" firefirstcount="0" firenextcount="0" useclientlayout="false" updatecontrol="true" enableevent="true" loadkeymode="keep" loadfiltermode="keep" reversesubsum="false">
- <ColumnInfo>
- <Column id="dateflag" type="STRING" size="256" sumtext="날짜구분"/>
- <Column id="fromdd" type="STRING" size="256" sumtext="시작일자"/>
- <Column id="todd" type="STRING" size="256" sumtext="종료일자"/>
- <Column id="ioflag" type="STRING" size="256" sumtext="내원유형"/>
- <Column id="insukind" type="STRING" size="256" sumtext="보험유형"/>
- <Column id="clamflag" type="STRING" size="256" sumtext="청구형태"/>
- <Column id="clamdg" type="STRING" size="256" sumtext="청구차수"/>
- <Column id="ordfildcd" type="STRING" size="256" sumtext="청구분야"/>
- <Column id="acptno" type="STRING" size="256" sumtext="접수번호"/>
- </ColumnInfo>
- <Rows>
- <Row/>
- </Rows>
- </Dataset>
- <Dataset id="ds_init_clamdglist" 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>
- <Rows>
- <Row/>
- </Rows>
- </Dataset>
- <Dataset id="ds_send_send_ind" firefirstcount="0" firenextcount="0" useclientlayout="false" updatecontrol="true" enableevent="true" loadkeymode="keep" loadfiltermode="keep" reversesubsum="false">
- <ColumnInfo>
- <Column id="ioflag" type="STRING" size="256"/>
- <Column id="fromdd" type="STRING" size="256"/>
- <Column id="clamflag" type="STRING" size="256"/>
- <Column id="clamdg" type="STRING" size="256"/>
- <Column id="insukindcd" type="STRING" size="256"/>
- <Column id="ordfildcd" type="STRING" size="256"/>
- <Column id="insukindcd1" type="STRING" size="256"/>
- <Column id="insukindcd2" type="STRING" size="256"/>
- <Column id="insukindcd3" type="STRING" size="256"/>
- <Column id="insukindcd4" type="STRING" size="256"/>
- <Column id="insukindcd5" type="STRING" size="256"/>
- <Column id="calc" type="STRING" size="256"/>
- <Column id="orddeptcd" type="STRING" size="256"/>
- <Column id="sumtypecd" type="STRING" size="256"/>
- </ColumnInfo>
- <Rows>
- <Row/>
- </Rows>
- </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="clamym" type="STRING" size="256"/>
- <Column id="clamdg" type="STRING" size="256"/>
- <Column id="pid" type="STRING" size="256"/>
- <Column id="pidsn" type="STRING" size="256"/>
- <Column id="orddeptcd" type="STRING" size="256"/>
- <Column id="ioflag" type="STRING" size="256"/>
- <Column id="clamflagcd" type="STRING" size="256"/>
- <Column id="insukindcd" type="STRING" size="256"/>
- <Column id="insukindcd1" type="STRING" size="256"/>
- </ColumnInfo>
- <Rows>
- <Row/>
- </Rows>
- </Dataset>
- <Dataset id="ds_init_P0291list" 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>
- <Rows>
- <Row/>
- </Rows>
- </Dataset>
- <Dataset id="ds_main_list4_amtsumtable" firefirstcount="0" firenextcount="0" useclientlayout="false" updatecontrol="true" enableevent="true" loadkeymode="keep" loadfiltermode="keep" reversesubsum="false">
- <ColumnInfo>
- <Column id="insukind" type="STRING" size="256" sumtext="보험유형"/>
- <Column id="insukindcd" type="STRING" size="256" sumtext="보험유형순서"/>
- <Column id="ordfildnm" type="STRING" size="256" sumtext="청구과"/>
- <Column id="ordfilddtlnm" type="STRING" size="256" sumtext="청구세부과"/>
- <Column id="cnt" type="STRING" size="256" sumtext="청구건수"/>
- <Column id="medcaretotamt" type="STRING" size="256" sumtext="급여총진료비"/>
- <Column id="ownbamt" type="STRING" size="256" sumtext="본인부담액"/>
- <Column id="insuclamamt" type="STRING" size="256" sumtext="청구액"/>
- <Column id="ownbmaxexamt" type="STRING" size="256" sumtext="상한액"/>
- <Column id="gsuppamt" type="STRING" size="256" sumtext="긴급복지지원금"/>
- <Column id="hsuppamt" type="STRING" size="256" sumtext="희귀난치지원금"/>
- <Column id="ksuppamt" type="STRING" size="256" sumtext="혈액지원금"/>
- <Column id="suppamt" type="STRING" size="256" sumtext="지원금"/>
- <Column id="handcaprfund" type="STRING" size="256" sumtext="장애인"/>
- <Column id="subtamt" type="STRING" size="256" sumtext="대불금"/>
- <Column id="totlimitdiffamt" type="STRING" size="256" sumtext="약제상한차액"/>
- <Column id="clamamtrslt" type="STRING" size="256" sumtext="청구차액"/>
- </ColumnInfo>
- </Dataset>
- </Objects>
- <Bind>
- <BindItem id="item0" compid="grp_biz.grp_sea.cmb_clamflag" propid="value" datasetid="ds_send_send_base" columnid="clamflag"/>
- <BindItem id="item2" compid="grp_biz.grp_sea.cmb_ordfildcd" propid="value" datasetid="ds_send_send_base" columnid="ordfildcd"/>
- <BindItem id="item3" compid="grp_biz.grp_sea.cmb_ioflag" propid="value" datasetid="ds_send_send_base" columnid="ioflag"/>
- <BindItem id="item4" compid="grp_biz.grp_sea.chk_insukindcd" propid="value" datasetid="ds_send_send_base" columnid="insukindcd"/>
- <BindItem id="item5" compid="grp_biz.grp_sea.radio1" propid="value" datasetid="ds_send_send_base" columnid="srchond"/>
- <BindItem id="item6" compid="grp_biz.grp_sea.cmb_clamdg" propid="value" datasetid="ds_send_send_base" columnid="clamdg"/>
- <BindItem id="item7" compid="grp_biz.grp_sea.input1" propid="value" datasetid="ds_send_send_base" columnid="clamdg1"/>
- <BindItem id="item8" compid="grp_biz.grp_sea.input2" propid="value" datasetid="ds_send_send_base" columnid="clamdg2"/>
- <BindItem id="item9" compid="grp_biz.grp_sea.input3" propid="value" datasetid="ds_send_send_base" columnid="clamdg3"/>
- <BindItem id="item10" compid="grp_biz.grp_sea.input4" propid="value" datasetid="ds_send_send_base" columnid="clamdg4"/>
- <BindItem id="item11" compid="grp_biz.grp_sea.input5" propid="value" datasetid="ds_send_send_base" columnid="clamdg5"/>
- <BindItem id="item12" compid="grp_biz.bool1" propid="value" datasetid="ds_send_send_base" columnid="calc"/>
- <BindItem id="item13" compid="grp_biz.switch1.case1.grp_prtoption.radio2" propid="value" datasetid="ds_send_prtoption" columnid="ioflag"/>
- <BindItem id="item14" compid="grp_biz.switch1.case1.grp_prtoption.radio3" propid="value" datasetid="ds_send_prtoption" columnid="judgtype"/>
- <BindItem id="item15" compid="grp_biz.switch1.case1.grp_prtoption.prt_clamflag" propid="value" datasetid="ds_send_prtoption" columnid="clamflag"/>
- <BindItem id="item17" compid="grp_biz.switch1.case1.grp_prtoption.combo1" propid="value" datasetid="ds_send_prtoption" columnid="printtype"/>
- </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";
- var col = "N";
- function SMPIF00100_oninit(obj:Form, e:InitEventInfo)
- {
- frmf_initForm(obj);
- }
- function SMPIF00100_onload(obj:Form, e:LoadEventInfo)
- {
- grdf_initGrid(grp_biz.switch1.case1.grd_deptfild);
- grdf_initGrid(grp_biz.switch1.case2.grd_indprescond);
- grdf_initGrid(grp_biz.switch1.case3.grd_prcpspec);
-
- grp_biz.grp_sea.ipt_fromdd.setCallEvent("grp_biz_grp_sea_ipt_fromdd_onchanged");
- grp_biz.switch1.case1.grp_prtoption.prt_clamym.setCallEvent("grp_biz_switch1_case1_grp_prtoption_prt_clamym_onchanged");
-
- CommCode_Load();
-
- fInitialize();
- }
- function CommCode_Load()
- {
- var arrParam = [{dsNm: "ds_init_P0291list", cdGrpId: "P0291"}
- ,{dsNm: "ds_init_P0155list", cdGrpId: "P0155"}
- ,{dsNm: "ds_init_P0010list", cdGrpId: "P0010"}
- ,{dsNm: "ds_init_P0426list", cdGrpId: "P0426"}
- ,{dsNm: "ds_init_P0151list", cdGrpId: "P0151"}
- ,{dsNm: "ds_init_P0471list", cdGrpId: "P0471"}]
-
- appf_getCodeList(arrParam);
-
- ds_init_P0291list.insertRow(0);
-
- pamGetDeptCDDrIDList();
- }
- function fInitialize()
- {
- grdf_initGrid(grp_biz.switch1.case1.grd_deptfild);
- grp_biz.grp_sea.cmb_ioflag.value = "I";
- grp_biz.grp_sea.cmb_ordfildcd.value = "";
- grp_biz.grp_sea.cmb_clamflag.value = "0";
- grp_biz.grp_sea.ipt_fromdd.setData(String(utlf_getCurrentDate()).substr(0,6));
- ds_send_send_base.setColumn(0,"fromdd",String(utlf_getCurrentDate()).substr(0,6));
-
- grp_biz.grp_sea.cmb_clamdg.enable = true;
- grp_biz.grp_sea.input1.enable = false;
- grp_biz.grp_sea.input2.enable = false;
- grp_biz.grp_sea.input3.enable = false;
- grp_biz.grp_sea.input4.enable = false;
- grp_biz.grp_sea.input5.enable = false;
-
- grp_biz.grp_sea.input1.value = "";
- grp_biz.grp_sea.input2.value = "";
- grp_biz.grp_sea.input3.value = "";
- grp_biz.grp_sea.input4.value = "";
- grp_biz.grp_sea.input5.value = "";
-
- grp_biz.grp_sea.chk_insukindcd.value = "11";
-
- grp_biz.grp_sea.cmb_clamflag.visible = true;
-
- ds_send_send_base.setColumn(0, "srchond", "A");
- ds_send_send_base.setColumn(0, "calc", "Y");
-
- grp_biz.button8.visible = false;
- grp_biz.button9.visible = false;
- grp_biz.grp_sea.button1.visible = true;
- grp_biz.button6.visible = true;
-
- ds_main_list1_griddeptfild.clearData();
- ds_main_list2_gridindprescond.clearData();
- ds_main_list3_gridindprcpspec.clearData();
-
- ds_send_send_base.setColumn(0, "clamdg", "1");
- }
- function grp_biz_grp_sea_radio1_onitemchanged(obj:Radio, e:ItemChangeEventInfo)
- {
- var srchond = grp_biz.grp_sea.radio1.value;
-
- if(srchond == "A")
- {
- grp_biz.grp_sea.cmb_clamdg.enable = true;
-
- grp_biz.grp_sea.input1.enable = false;
- grp_biz.grp_sea.input2.enable = false;
- grp_biz.grp_sea.input3.enable = false;
- grp_biz.grp_sea.input4.enable = false;
- grp_biz.grp_sea.input5.enable = false;
-
- grp_biz.grp_sea.input1.value = "";
- grp_biz.grp_sea.input2.value = "";
- grp_biz.grp_sea.input3.value = "";
- grp_biz.grp_sea.input4.value = "";
- grp_biz.grp_sea.input5.value = "";
- }
- else if(srchond == "B")
- {
- grp_biz.grp_sea.cmb_clamdg.value = "";
- grp_biz.grp_sea.cmb_clamdg.enable = false;
-
- grp_biz.grp_sea.input1.enable = true;
- grp_biz.grp_sea.input2.enable = true;
- grp_biz.grp_sea.input3.enable = true;
- grp_biz.grp_sea.input4.enable = true;
- grp_biz.grp_sea.input5.enable = true;
- }
- else
- {
- sysf_messageBox("차수 내역이 선택되지 않았습니다.", "E999", "");
- return false;
- }
- }
- function grp_biz_grp_sea_button14_onclick(obj:Button, e:ClickEventInfo)
- {
- ds_init_clamdglist.clearData();
-
- fDateChk();
-
- frmf_addComboItem("grp_biz.grp_sea.cmb_clamdg","전체","","above");
- }
- function fDateChk()
- {
- var dateflag;
- var fromdd = ds_send_send_base.getColumn(0, "fromdd");
- var ioflag = ds_send_send_base.getColumn(0, "ioflag");
- var insukind = ds_send_send_base.getColumn(0, "insukindcd");
- var clamflag = ds_send_send_base.getColumn(0, "clamflag");
- var ordfildcd = ds_send_send_base.getColumn(0, "ordfildcd");
-
- if(utlf_isNull(fromdd))
- {
- sysf_messageBox("기간의 시작일자를","C001");
- grp_biz.grp_sea.ipt_fromdd.setFocus();
- return;
- }
- else
- {
- ds_send_send_clamdg.setColumn(0, "fromdd", fromdd);
- ds_send_send_clamdg.setColumn(0, "todd", fromdd);
- ds_send_send_clamdg.setColumn(0, "ioflag", ioflag);
-
- if(insukind == "21")
- {
- ds_send_send_clamdg.setColumn(0, "insukind", "21','22");
- }
- else
- {
- ds_send_send_clamdg.setColumn(0, "insukind", insukind);
- }
-
- ds_send_send_clamdg.setColumn(0, "clamflag", clamflag);
- ds_send_send_clamdg.setColumn(0, "ordfildcd", ordfildcd);
-
- if(clamflag == "0")
- {
- ds_send_send_clamdg.setColumn(0, "dateflag", "1");
- }
- else
- {
- ds_send_send_clamdg.setColumn(0, "dateflag", "2");
- }
-
- var oParam = {};
- oParam.id = "TRPIF00105";
- oParam.service = "clamuncoapp.ClamUnco";
- oParam.method = "reqGetIndAllSpecClamDg";
- oParam.inds = "req=ds_send_send_clamdg";
- oParam.outds = "ds_init_clamdglist=clamdg";
- oParam.async = false;
- //oParam.callback = "cf_TRPIF00105";
- tranf_submit(oParam);
-
-
- if(ds_init_clamdglist.rowcount < 1)
- {
- sysf_messageBox("청구된 차수가 없습니다. 미수년월을 확인 해 주세요!.", "E999", "");
- }
- }
- }
- function grp_biz_grp_sea_ipt_fromdd_onchanged(r)
- {
-
- var date = eval(r).getData();
- ds_send_send_base.setColumn(0, "fromdd", date);
- }
- //조회
- function grp_biz_grp_sea_button1_onclick(obj:Button, e:ClickEventInfo)
- {
- if (ds_init_clamdglist.rowcount == 1)
- {
- ds_send_send_base.setColumn(0, "clamdg", "");
- }
- else if (ds_init_clamdglist.rowcount == 0)
- {
- ds_send_send_base.setColumn(0, "clamdg", "");
- }
- if(fSrchChk())
- {
- if(grp_biz.switch1.tabindex == 0)
- {
- var clamflag = ds_send_send_base.getColumn(0, "clamflag");
- if (clamflag != "0")
- {
- ds_send_send_base.setColumn(0, "clamdg", "");
- }
- var oParam = {};
- oParam.id = "TRPIF00101";
- oParam.service = "clamuncoapp.ClamUnco";
- oParam.method = "reqGetDeptFildList";
- oParam.inds = "req=ds_send_send_base";
- oParam.outds = "ds_main_list1_griddeptfild=griddeptfild";
- oParam.async = false;
- //oParam.callback = "cf_TRPIF00101";
- tranf_submit(oParam);
-
- fOrdFildCdFlag();
-
- fDeptFildSubtotal();
- ds_main_list1_griddeptfild.rowposition = -1;
-
- }
- if(grp_biz.switch1.tabindex == 1)
- {
- if(fSendIndCopy())
- {
- var oParam = {};
- oParam.id = "TRPIF00102";
- oParam.service = "clamuncoapp.ClamUnco";
- oParam.method = "reqGetIndPresCond";
- oParam.inds = "req=ds_send_send_ind";
- oParam.outds = "ds_main_list2_gridindprescond=gridindprescond";
- oParam.async = false;
- //oParam.callback = "cf_TRPIF00102";
- tranf_submit(oParam);
- }
- }
- }
- if(grp_biz.switch1.tabindex == 2)
- {
- sysf_messageBox("개인별처방내역의 조회는 개인별현황에서","I006");
- }
- }
- function fDeptFildSubtotal()
- {
- ds_main_list1_griddeptfild.keystring = "G:sum";
- }
- function fSrchChk()
- {
- var insukindcd = ds_send_send_base.getColumn(0, "insukindcd");
- var insukindcdlength = String(insukindcd).length;
-
- if (insukindcd == "00")
- {
- ds_send_send_base.setColumn(0, "insukindcd1", "XX");
- ds_send_send_base.setColumn(0, "insukindcd2", "XX");
- ds_send_send_base.setColumn(0, "insukindcd3", "XX");
- ds_send_send_base.setColumn(0, "insukindcd4", "XX");
- ds_send_send_base.setColumn(0, "insukindcd5", "ALL");
- }
- else
- {
- if (insukindcdlength > 1)
- {
- var insukindcd1 = String(insukindcd).substr(0,2);
- var insukindcd2 = String(insukindcd).substr(3,2);
- var insukindcd3 = String(insukindcd).substr(6,2);
- var insukindcd4 = String(insukindcd).substr(9,2);
-
- ds_send_send_base.setColumn(0, "insukindcd1", insukindcd1);
- ds_send_send_base.setColumn(0, "insukindcd2", insukindcd2);
- ds_send_send_base.setColumn(0, "insukindcd3", insukindcd3);
- ds_send_send_base.setColumn(0, "insukindcd4", insukindcd4);
-
-
- if (insukindcd1 == "21" || insukindcd2 == "21" ||insukindcd3 == "21" ||insukindcd4 == "21")
- {
- ds_send_send_base.setColumn(0, "insukindcd5", "22");
- }
- else if (insukindcd1 == "11" || insukindcd2 == "11" ||insukindcd3 == "11" ||insukindcd4 == "11")
- {
- ds_send_send_base.setColumn(0, "insukindcd5", "42");
- }
- else
- {
- ds_send_send_base.setColumn(0, "insukindcd5", "XX");
- }
-
- if(utlf_isNull(ds_send_send_base.getColumn(0, "insukindcd1")))
- {
- ds_send_send_base.setColumn(0, "insukindcd1", "XX");
- }
- if(utlf_isNull(ds_send_send_base.getColumn(0, "insukindcd2")))
- {
- ds_send_send_base.setColumn(0, "insukindcd2", "XX");
- }
- if(utlf_isNull(ds_send_send_base.getColumn(0, "insukindcd3")))
- {
- ds_send_send_base.setColumn(0, "insukindcd3", "XX");
- }
- if(utlf_isNull(ds_send_send_base.getColumn(0, "insukindcd4")))
- {
- ds_send_send_base.setColumn(0, "insukindcd4", "XX");
- }
- }
- }
-
- var fromdd = ds_send_send_base.getColumn(0, "fromdd");
-
- var clamdg1 = ds_send_send_base.getColumn(0, "clamdg1");
- var clamdg2 = ds_send_send_base.getColumn(0, "clamdg2");
- var clamdg3 = ds_send_send_base.getColumn(0, "clamdg3");
- var clamdg4 = ds_send_send_base.getColumn(0, "clamdg4");
- var clamdg5 = ds_send_send_base.getColumn(0, "clamdg5");
-
- if(utlf_isNull(clamdg1)|| utlf_isNull(clamdg1))
- {
- ds_send_send_base.setColumn(0, "clamdg1", "0");
- }
- if(utlf_isNull(clamdg2)|| clamdg2 == " ")
- {
- ds_send_send_base.setColumn(0, "clamdg2", "0");
- }
- if(utlf_isNull(clamdg3)|| clamdg3 == " ")
- {
- ds_send_send_base.setColumn(0, "clamdg3", "0");
- }
- if(utlf_isNull(clamdg4)|| clamdg4 == " ")
- {
- ds_send_send_base.setColumn(0, "clamdg4", "0");
- }
- if(utlf_isNull(clamdg5)|| clamdg5 == " ")
- {
- ds_send_send_base.setColumn(0, "clamdg5", "0");
- }
- return true;
- }
- function fOrdFildCdFlag()
- {
- var rows = ds_main_list1_griddeptfild.rowcount;
- var abbr1 = "0";
- var abbr2 = "0";
- var fild1 = "0";
- var fild2 = "0";
-
- for(var i = 0; i < rows; i++)
- {
- fild1 = ds_main_list1_griddeptfild.getColumn(i, "ordfildcd");
-
- if(fild1 == "1")
- {
- ds_main_list1_griddeptfild.setColumn(i, "ordfildnm", "내과분야");
- }
- else if(fild1 == "2")
- {
- ds_main_list1_griddeptfild.setColumn(i, "ordfildnm", "외과분야");
- }
- else if(fild1 == "3")
- {
- ds_main_list1_griddeptfild.setColumn(i, "ordfildnm", "산소분야");
- }
- else if(fild1 == "4")
- {
- ds_main_list1_griddeptfild.setColumn(i, "ordfildnm", "안이분야");
- }
- else if(fild1 == "5")
- {
- ds_main_list1_griddeptfild.setColumn(i, "ordfildnm", "피비분야");
- }
- else if(fild1 == "6")
- {
- ds_main_list1_griddeptfild.setColumn(i, "ordfildnm", "치과분야");
- }
- else if(utlf_isNull(fild1))
- {
- ds_main_list1_griddeptfild.setColumn(i, "ordfildnm", "기타");
- }
- else if(fild1 == "B")
- {
- ds_main_list1_griddeptfild.setColumn(i, "ordfildnm", "완화의료");
- }
- else if(fild1 == "D")
- {
- ds_main_list1_griddeptfild.setColumn(i, "ordfildnm", "DRG");
- }
- else if(fild1 == "C")
- {
- ds_main_list1_griddeptfild.setColumn(i, "ordfildnm", "호스피스");
- }
- }
-
- for(var i = 0; i < ds_main_list1_griddeptfild.rowcount; i++)
- {
- fild1 = ds_main_list1_griddeptfild.getColumn(i, "ordfildnm");
-
- ds_main_list1_griddeptfild.filterstr = "ordfildnm == '"+fild1+"'";
-
- var inhospcnt = ds_main_list1_griddeptfild.getSum("inhospcnt", 0, ds_main_list1_griddeptfild.rowcount);
- var inhosptotordamt = ds_main_list1_griddeptfild.getSum("inhosptotordamt", 0, ds_main_list1_griddeptfild.rowcount);
- var inhospnopytotordamt = ds_main_list1_griddeptfild.getSum("inhospnopytotordamt", 0, ds_main_list1_griddeptfild.rowcount);
- var inhospownbtotamt = ds_main_list1_griddeptfild.getSum("inhospownbtotamt", 0, ds_main_list1_griddeptfild.rowcount);
- var inhosppaytotordamt = ds_main_list1_griddeptfild.getSum("inhosppaytotordamt", 0, ds_main_list1_griddeptfild.rowcount);
- var inhosppayownbamt = ds_main_list1_griddeptfild.getSum("inhosppayownbamt", 0, ds_main_list1_griddeptfild.rowcount);
- var inhosppayclamamt = ds_main_list1_griddeptfild.getSum("inhosppayclamamt", 0, ds_main_list1_griddeptfild.rowcount);
- var inhospownbmaxexamt = ds_main_list1_griddeptfild.getSum("inhospownbmaxexamt", 0, ds_main_list1_griddeptfild.rowcount);
- var hinhospsuppamt = ds_main_list1_griddeptfild.getSum("hinhospsuppamt", 0, ds_main_list1_griddeptfild.rowcount);
- var linhospsuppamt = ds_main_list1_griddeptfild.getSum("linhospsuppamt", 0, ds_main_list1_griddeptfild.rowcount);
- var inhosphandcaprfund = ds_main_list1_griddeptfild.getSum("inhosphandcaprfund", 0, ds_main_list1_griddeptfild.rowcount);
- var ginhospsuppamt = ds_main_list1_griddeptfild.getSum("ginhospsuppamt", 0, ds_main_list1_griddeptfild.rowcount);
- var inhospsuppamt = ds_main_list1_griddeptfild.getSum("inhospsuppamt", 0, ds_main_list1_griddeptfild.rowcount);
- var inhospsubtamt = ds_main_list1_griddeptfild.getSum("inhospsubtamt", 0, ds_main_list1_griddeptfild.rowcount);
- var inhosplimitdiffamt = ds_main_list1_griddeptfild.getSum("inhosplimitdiffamt", 0, ds_main_list1_griddeptfild.rowcount);
- var acptaddamt = ds_main_list1_griddeptfild.getSum("acptaddamt", 0, ds_main_list1_griddeptfild.rowcount);
- var acptcutamt = ds_main_list1_griddeptfild.getSum("acptcutamt", 0, ds_main_list1_griddeptfild.rowcount);
- var acptamt = ds_main_list1_griddeptfild.getSum("acptamt", 0, ds_main_list1_griddeptfild.rowcount);
- var bfcnt = ds_main_list1_griddeptfild.getSum("bfcnt", 0, ds_main_list1_griddeptfild.rowcount);
- var bfmedcaretotamt = ds_main_list1_griddeptfild.getSum("bfmedcaretotamt", 0, ds_main_list1_griddeptfild.rowcount);
- var bfownbamt = ds_main_list1_griddeptfild.getSum("bfownbamt", 0, ds_main_list1_griddeptfild.rowcount);
- var bfinsuclamamt = ds_main_list1_griddeptfild.getSum("bfinsuclamamt", 0, ds_main_list1_griddeptfild.rowcount);
- var bfownbmaxexamt = ds_main_list1_griddeptfild.getSum("bfownbmaxexamt", 0, ds_main_list1_griddeptfild.rowcount);
- var hbfsuppamt = ds_main_list1_griddeptfild.getSum("hbfsuppamt", 0, ds_main_list1_griddeptfild.rowcount);
- var lbfsuppamt = ds_main_list1_griddeptfild.getSum("lbfsuppamt", 0, ds_main_list1_griddeptfild.rowcount);
- var bfhandcaprfund = ds_main_list1_griddeptfild.getSum("bfhandcaprfund", 0, ds_main_list1_griddeptfild.rowcount);
- var gbfsuppamt = ds_main_list1_griddeptfild.getSum("gbfsuppamt", 0, ds_main_list1_griddeptfild.rowcount);
- var bfsuppamt = ds_main_list1_griddeptfild.getSum("bfsuppamt", 0, ds_main_list1_griddeptfild.rowcount);
- var bfsubtamt = ds_main_list1_griddeptfild.getSum("bfsubtamt", 0, ds_main_list1_griddeptfild.rowcount);
- var bflimitdiffamt = ds_main_list1_griddeptfild.getSum("bflimitdiffamt", 0, ds_main_list1_griddeptfild.rowcount);
- var reserveamtslt = ds_main_list1_griddeptfild.getSum("reserveamtslt", 0, ds_main_list1_griddeptfild.rowcount);
- var delcnt = ds_main_list1_griddeptfild.getSum("delcnt", 0, ds_main_list1_griddeptfild.rowcount);
- var delamtrslt = ds_main_list1_griddeptfild.getSum("delamtrslt", 0, ds_main_list1_griddeptfild.rowcount);
- var reserve_delcnt = ds_main_list1_griddeptfild.getSum("reserve_delcnt", 0, ds_main_list1_griddeptfild.rowcount);
- var reserve_delamtrslt = ds_main_list1_griddeptfild.getSum("reserve_delamtrslt", 0, ds_main_list1_griddeptfild.rowcount);
- var changecnt = ds_main_list1_griddeptfild.getSum("changecnt", 0, ds_main_list1_griddeptfild.rowcount);
- var reservecnt = ds_main_list1_griddeptfild.getSum("reservecnt", 0, ds_main_list1_griddeptfild.rowcount);
-
- var addcnt = ds_main_list1_griddeptfild.getSum("addcnt", 0, ds_main_list1_griddeptfild.rowcount);
- var clamaddamtrslt = ds_main_list1_griddeptfild.getSum("clamaddamtrslt", 0, ds_main_list1_griddeptfild.rowcount);
- var clamcutamtrslt = ds_main_list1_griddeptfild.getSum("clamcutamtrslt", 0, ds_main_list1_griddeptfild.rowcount);
- var clamamtrslt = ds_main_list1_griddeptfild.getSum("clamamtrslt", 0, ds_main_list1_griddeptfild.rowcount);
- var afcnt = ds_main_list1_griddeptfild.getSum("afcnt", 0, ds_main_list1_griddeptfild.rowcount);
- var afmedcaretotamt = ds_main_list1_griddeptfild.getSum("afmedcaretotamt", 0, ds_main_list1_griddeptfild.rowcount);
- var afownbamt = ds_main_list1_griddeptfild.getSum("afownbamt", 0, ds_main_list1_griddeptfild.rowcount);
- var afinsuclamamt = ds_main_list1_griddeptfild.getSum("afinsuclamamt", 0, ds_main_list1_griddeptfild.rowcount);
- var afownbmaxexamt = ds_main_list1_griddeptfild.getSum("afownbmaxexamt", 0, ds_main_list1_griddeptfild.rowcount);
- var hafsuppamt = ds_main_list1_griddeptfild.getSum("hafsuppamt", 0, ds_main_list1_griddeptfild.rowcount);
- var lafsuppamt = ds_main_list1_griddeptfild.getSum("lafsuppamt", 0, ds_main_list1_griddeptfild.rowcount);
- var afhandcaprfund = ds_main_list1_griddeptfild.getSum("afhandcaprfund", 0, ds_main_list1_griddeptfild.rowcount);
- var gafsuppamt = ds_main_list1_griddeptfild.getSum("gafsuppamt", 0, ds_main_list1_griddeptfild.rowcount);
- var afsuppamt = ds_main_list1_griddeptfild.getSum("afsuppamt", 0, ds_main_list1_griddeptfild.rowcount);
- var afsubtamt = ds_main_list1_griddeptfild.getSum("afsubtamt", 0, ds_main_list1_griddeptfild.rowcount);
- var aflimitdiffamt = ds_main_list1_griddeptfild.getSum("aflimitdiffamt", 0, ds_main_list1_griddeptfild.rowcount);
-
- ds_main_list1_griddeptfild.filterstr = "";
-
- if(fild2 != fild1 && !utlf_isNull(fild1))
- {
- var addRow = ds_main_list1_griddeptfild.addRow();
-
- ds_main_list1_griddeptfild.setColumn(addRow, "depthngnm", fild1);
- ds_main_list1_griddeptfild.setColumn(addRow, "inhospcnt", inhospcnt);
- ds_main_list1_griddeptfild.setColumn(addRow, "inhosptotordamt", inhosptotordamt);
- ds_main_list1_griddeptfild.setColumn(addRow, "inhospnopytotordamt", inhospnopytotordamt);
- ds_main_list1_griddeptfild.setColumn(addRow, "inhospownbtotamt", inhospownbtotamt);
- ds_main_list1_griddeptfild.setColumn(addRow, "inhosppaytotordamt", inhosppaytotordamt);
- ds_main_list1_griddeptfild.setColumn(addRow, "inhosppayownbamt", inhosppayownbamt);
- ds_main_list1_griddeptfild.setColumn(addRow, "inhosppayclamamt", inhosppayclamamt);
- ds_main_list1_griddeptfild.setColumn(addRow, "inhospownbmaxexamt", inhospownbmaxexamt);
- ds_main_list1_griddeptfild.setColumn(addRow, "hinhospsuppamt", hinhospsuppamt);
- ds_main_list1_griddeptfild.setColumn(addRow, "linhospsuppamt", linhospsuppamt);
- ds_main_list1_griddeptfild.setColumn(addRow, "inhosphandcaprfund", inhosphandcaprfund);
- ds_main_list1_griddeptfild.setColumn(addRow, "ginhospsuppamt", ginhospsuppamt);
- ds_main_list1_griddeptfild.setColumn(addRow, "inhospsuppamt", inhospsuppamt);
- ds_main_list1_griddeptfild.setColumn(addRow, "inhospsubtamt", inhospsubtamt);
- ds_main_list1_griddeptfild.setColumn(addRow, "inhosplimitdiffamt", inhosplimitdiffamt);
- ds_main_list1_griddeptfild.setColumn(addRow, "acptaddamt", acptaddamt);
- ds_main_list1_griddeptfild.setColumn(addRow, "acptcutamt", acptcutamt);
- ds_main_list1_griddeptfild.setColumn(addRow, "acptamt", acptamt);
- ds_main_list1_griddeptfild.setColumn(addRow, "bfcnt", bfcnt);
- ds_main_list1_griddeptfild.setColumn(addRow, "bfmedcaretotamt", bfmedcaretotamt);
- ds_main_list1_griddeptfild.setColumn(addRow, "bfownbamt", bfownbamt);
- ds_main_list1_griddeptfild.setColumn(addRow, "bfinsuclamamt", bfinsuclamamt);
- ds_main_list1_griddeptfild.setColumn(addRow, "bfownbmaxexamt", bfownbmaxexamt);
- ds_main_list1_griddeptfild.setColumn(addRow, "hbfsuppamt", hbfsuppamt);
- ds_main_list1_griddeptfild.setColumn(addRow, "lbfsuppamt", lbfsuppamt);
- ds_main_list1_griddeptfild.setColumn(addRow, "bfhandcaprfund", bfhandcaprfund);
- ds_main_list1_griddeptfild.setColumn(addRow, "gbfsuppamt", gbfsuppamt);
- ds_main_list1_griddeptfild.setColumn(addRow, "bfsuppamt", bfsuppamt);
- ds_main_list1_griddeptfild.setColumn(addRow, "bfsubtamt", bfsubtamt);
- ds_main_list1_griddeptfild.setColumn(addRow, "bflimitdiffamt", bflimitdiffamt);
- ds_main_list1_griddeptfild.setColumn(addRow, "reservecnt", reservecnt);
- ds_main_list1_griddeptfild.setColumn(addRow, "reserveamtslt", reserveamtslt);
- ds_main_list1_griddeptfild.setColumn(addRow, "delcnt", delcnt);
- ds_main_list1_griddeptfild.setColumn(addRow, "delamtrslt", delamtrslt);
- ds_main_list1_griddeptfild.setColumn(addRow, "reserve_delcnt", reserve_delcnt);
- ds_main_list1_griddeptfild.setColumn(addRow, "reserve_delamtrslt", reserve_delamtrslt);
- ds_main_list1_griddeptfild.setColumn(addRow, "changecnt", changecnt);
-
- ds_main_list1_griddeptfild.setColumn(addRow, "addcnt", addcnt);
- ds_main_list1_griddeptfild.setColumn(addRow, "clamaddamtrslt", clamaddamtrslt);
- ds_main_list1_griddeptfild.setColumn(addRow, "clamcutamtrslt", clamcutamtrslt);
- ds_main_list1_griddeptfild.setColumn(addRow, "clamamtrslt", clamamtrslt);
- ds_main_list1_griddeptfild.setColumn(addRow, "afcnt", afcnt);
- ds_main_list1_griddeptfild.setColumn(addRow, "afmedcaretotamt", afmedcaretotamt);
- ds_main_list1_griddeptfild.setColumn(addRow, "afownbamt", afownbamt);
- ds_main_list1_griddeptfild.setColumn(addRow, "afinsuclamamt", afinsuclamamt);
- ds_main_list1_griddeptfild.setColumn(addRow, "afownbmaxexamt", afownbmaxexamt);
- ds_main_list1_griddeptfild.setColumn(addRow, "hafsuppamt", hafsuppamt);
- ds_main_list1_griddeptfild.setColumn(addRow, "lafsuppamt", lafsuppamt);
- ds_main_list1_griddeptfild.setColumn(addRow, "afhandcaprfund", afhandcaprfund);
- ds_main_list1_griddeptfild.setColumn(addRow, "gafsuppamt", gafsuppamt);
- ds_main_list1_griddeptfild.setColumn(addRow, "afsuppamt", afsuppamt);
- ds_main_list1_griddeptfild.setColumn(addRow, "afsubtamt", afsubtamt);
- ds_main_list1_griddeptfild.setColumn(addRow, "aflimitdiffamt", aflimitdiffamt);
-
- ds_main_list1_griddeptfild.setColumn(addRow, "sum", "Y");
- //ds_main_list1_griddeptfild.setColumn(addRow, "ordfildcd", "ZZ");
-
- fild2 = fild1;
- }
- }
- }
- function fSendIndCopy()
- {
- ds_send_send_ind.setColumn(0, "ioflag", ds_send_send_base.getColumn(0, "ioflag"));
- ds_send_send_ind.setColumn(0, "fromdd", ds_send_send_base.getColumn(0, "fromdd"));
- ds_send_send_ind.setColumn(0, "clamflag", ds_send_send_base.getColumn(0, "clamflag"));
- ds_send_send_ind.setColumn(0, "clamdg", ds_send_send_base.getColumn(0, "clamdg"));
- ds_send_send_ind.setColumn(0, "insukindcd", ds_send_send_base.getColumn(0, "insukindcd"));
- ds_send_send_ind.setColumn(0, "ordfildcd", ds_send_send_base.getColumn(0, "ordfildcd"));
- ds_send_send_ind.setColumn(0, "insukindcd1", ds_send_send_base.getColumn(0, "insukindcd1"));
- ds_send_send_ind.setColumn(0, "insukindcd2", ds_send_send_base.getColumn(0, "insukindcd2"));
- ds_send_send_ind.setColumn(0, "insukindcd3", ds_send_send_base.getColumn(0, "insukindcd3"));
- ds_send_send_ind.setColumn(0, "insukindcd4", ds_send_send_base.getColumn(0, "insukindcd4"));
- ds_send_send_ind.setColumn(0, "insukindcd5", ds_send_send_base.getColumn(0, "insukindcd5"));
- ds_send_send_ind.setColumn(0, "calc", ds_send_send_base.getColumn(0, "calc"));
-
- return true;
- }
- function grp_biz_switch1_case1_grd_deptfild_oncelldblclick(obj:Grid, e:GridClickEventInfo)
- {
- var rows = ds_main_list1_griddeptfild.rowcount;
-
- var chkrow = 1;
-
- for(var i = 0; i < rows; i++)
- {
- var deptengabbr = ds_main_list1_griddeptfild.getColumn(i, "depthngnm");
-
- if(String(deptengabbr).substr(2,2) == "분야")
- {
- chkrow = i;
- break;
- }
- }
- var row = ds_main_list1_griddeptfild.rowposition;
-
- if(row > -1)
- {
- ds_send_send_ind.setColumn(0, "orddeptcd", ds_main_list1_griddeptfild.getColumn(row, "orddeptcd"));
- ds_send_send_ind.setColumn(0, "sumtypecd", ds_main_list1_griddeptfild.getColumn(row, "sumtypecd"));
-
- if(fSendIndCopy())
- {
- var clamflag = ds_send_send_base.getColumn(0, "clamflag");
-
- var oParam = {};
- oParam.id = "TRPIF00102";
- oParam.service = "clamuncoapp.ClamUnco";
- oParam.method = "reqGetIndPresCond";
- oParam.inds = "req=ds_send_send_ind";
- oParam.outds = "ds_main_list2_gridindprescond=gridindprescond";
- oParam.async = false;
- //oParam.callback = "cf_TRPIF00102";
- tranf_submit(oParam);
-
- grp_biz.switch1.tabindex = 1;
-
- grp_biz.button8.visible = true;
- grp_biz.button9.visible = true;
- grp_biz.grp_sea.button1.visible = false;
- }
- }
- }
- function grp_biz_switch1_case2_grd_indprescond_oncelldblclick(obj:Grid, e:GridClickEventInfo)
- {
- var row = ds_main_list2_gridindprescond.rowposition;
-
- var insukindcd = ds_send_send_base.getColumn(0, "insukindcd");
- var insukindcd1 = "";
-
- ds_send_send_prcp.setColumn(0, "clamym", ds_main_list2_gridindprescond.getColumn(row, "clamym"));
- ds_send_send_prcp.setColumn(0, "clamdg", ds_main_list2_gridindprescond.getColumn(row, "clamdg"));
- ds_send_send_prcp.setColumn(0, "pid", ds_main_list2_gridindprescond.getColumn(row, "pid"));
- ds_send_send_prcp.setColumn(0, "pidsn", ds_main_list2_gridindprescond.getColumn(row, "pidsn"));
- ds_send_send_prcp.setColumn(0, "orddeptcd", ds_main_list2_gridindprescond.getColumn(row, "orddeptcd"));
- ds_send_send_prcp.setColumn(0, "ioflag", ds_send_send_base.getColumn(row, "ioflag"));
- ds_send_send_prcp.setColumn(0, "clamflagcd", ds_send_send_base.getColumn(row, "clamflag"));
- ds_send_send_prcp.setColumn(0, "insukindcd", insukindcd);
-
- if (insukindcd == "21")
- {
- ds_send_send_prcp.setColumn(0, "insukindcd1", "22");
- }
- else if (insukindcd == "11")
- {
- ds_send_send_prcp.setColumn(0, "insukindcd1", "42");
- }
- else
- {
- ds_send_send_prcp.setColumn(0, "insukindcd1", "XX");
- }
-
-
- var oParam = {};
- oParam.id = "TRPIF00106";
- oParam.service = "clamuncoapp.ClamUnco";
- oParam.method = "reqGetAftJudgDifAmtList";
- oParam.inds = "req=ds_send_send_prcp";
- oParam.outds = "ds_main_list3_gridindprcpspec=gridindprcpspec";
- oParam.async = false;
- //oParam.callback = "cf_TRPIF00106";
- tranf_submit(oParam);
-
- grp_biz.switch1.tabindex = 2;
-
- grp_biz.button8.visible = false;
- grp_biz.button9.visible = false;
- grp_biz.grp_sea.button1.visible = false;
-
- var nodeList = ds_main_list3_gridindprcpspec.rowcount;
-
- if (nodeList < 0)
- {
- sysf_messageBox("수정된 처방내역이", "I004"); //I004=없습니다.
- }
- }
- //집계표출력
- function grp_biz_button5_onclick(obj:Button, e:ClickEventInfo)
- {
- var tmpfromdd = ds_send_send_base.getColumn(0, "fromdd");
- ds_send_prtoption.setColumn(0, "calc", ds_send_send_base.getColumn(0, "calc"));
- ds_send_prtoption.setColumn(0, "clamym", tmpfromdd);
- grp_biz.switch1.case1.grp_prtoption.visible = true;
- }
- //출력
- function grp_biz_switch1_case1_grp_prtoption_button13_onclick(obj:Button, e:ClickEventInfo)
- {
- var oParam = {};
- oParam.id = "TRPIF00107";
- oParam.service = "clamuncoapp.ClamUnco";
- oParam.method = "reqGetAmtSumTable";
- oParam.inds = "req=ds_send_prtoption";
- oParam.outds = "ds_main_list4_amtsumtable=amtsumtable";
- oParam.async = false;
- //oParam.callback = "cf_TRPIF00107";
- tranf_submit(oParam);
-
- if (ds_main_list4_amtsumtable.rowcount == 0){
- ds_main_list4_amtsumtable.addRow();
- }
-
- if(ds_send_prtoption.getColumn(0, "clamflag") == "5")
- {
- if(ds_send_prtoption.getColumn(0, "printtype") == "1")
- {
- var objDOM = rptf_createDOM(); // DOM 객체 설정
- rptf_setNodeListToDOM(objDOM, "/root/main/list4/amtsumtable", ds_main_list4_amtsumtable);
- rptf_setNodeListToDOM(objDOM, "/root/send/prtoption", ds_send_prtoption);
-
- var objParam = new Object();
- objParam.xml_data_XML1 = objDOM.documentElement.source;
-
- var option =// "open=1;save=1;directprint=0;printdialog=0;print=1;zoom=0;";
-
- rptf_exeReportPreview30(["RPPIF00101"],[objParam], option);
- }
- else
- {
- var objDOM = rptf_createDOM(); // DOM 객체 설정
- rptf_setNodeListToDOM(objDOM, "/root/main/list4/amtsumtable", ds_main_list4_amtsumtable);
- rptf_setNodeListToDOM(objDOM, "/root/send/prtoption", ds_send_prtoption);
-
- var objParam = new Object();
- objParam.xml_data_XML1 = objDOM.documentElement.source;
-
- var option =// "open=1;save=1;directprint=0;printdialog=0;print=1;zoom=0;";
-
- rptf_exeReportPreview30(["RPPIF00104"],[objParam], option);
- }
- }
- else if(ds_send_prtoption.getColumn(0, "clamflag") == "6")
- {
- if(ds_send_prtoption.getColumn(0, "printtype") == "1")
- {
- var objDOM = rptf_createDOM(); // DOM 객체 설정
- rptf_setNodeListToDOM(objDOM, "/root/main/list4/amtsumtable", ds_main_list4_amtsumtable);
- rptf_setNodeListToDOM(objDOM, "/root/send/prtoption", ds_send_prtoption);
-
- var objParam = new Object();
- objParam.xml_data_XML1 = objDOM.documentElement.source;
-
- var option =// "open=1;save=1;directprint=0;printdialog=0;print=1;zoom=0;";
-
- rptf_exeReportPreview30(["RPPIF00102"],[objParam], option);
- }
- else
- {
- var objDOM = rptf_createDOM(); // DOM 객체 설정
- rptf_setNodeListToDOM(objDOM, "/root/main/list4/amtsumtable", ds_main_list4_amtsumtable);
- rptf_setNodeListToDOM(objDOM, "/root/send/prtoption", ds_send_prtoption);
-
- var objParam = new Object();
- objParam.xml_data_XML1 = objDOM.documentElement.source;
-
- var option =// "open=1;save=1;directprint=0;printdialog=0;print=1;zoom=0;";
-
- rptf_exeReportPreview30(["RPPIF00105"],[objParam], option);
- }
- }
- else
- {
- if(ds_send_prtoption.getColumn(0, "printtype") == "1")
- {
- var objDOM = rptf_createDOM(); // DOM 객체 설정
- rptf_setNodeListToDOM(objDOM, "/root/main/list4/amtsumtable", ds_main_list4_amtsumtable);
- rptf_setNodeListToDOM(objDOM, "/root/send/prtoption", ds_send_prtoption);
-
- var objParam = new Object();
- objParam.xml_data_XML1 = objDOM.documentElement.source;
-
- var option =// "open=1;save=1;directprint=0;printdialog=0;print=1;zoom=0;";
-
- rptf_exeReportPreview30(["RPPIF00100"],[objParam], option);
- }
- else
- {
- var objDOM = rptf_createDOM(); // DOM 객체 설정
- rptf_setNodeListToDOM(objDOM, "/root/main/list4/amtsumtable", ds_main_list4_amtsumtable);
- rptf_setNodeListToDOM(objDOM, "/root/send/prtoption", ds_send_prtoption);
-
- var objParam = new Object();
- objParam.xml_data_XML1 = objDOM.documentElement.source;
-
- var option =// "open=1;save=1;directprint=0;printdialog=0;print=1;zoom=0;";
-
- rptf_exeReportPreview30(["RPPIF00103"],[objParam], option);
- }
- }
- }
- function grp_biz_switch1_case1_grp_prtoption_button12_onclick(obj:Button, e:ClickEventInfo)
- {
- grp_biz.switch1.case1.grp_prtoption.visible = false;
- }
- //엑셀저장
- function grp_biz_button6_onclick(obj:Button, e:ClickEventInfo)
- {
- var today = utlf_getCurrentDate();
-
-
- if(grp_biz.switch1.tabindex == 0)
- {
- if (ds_main_list1_griddeptfild.rowcount == 1)
- {
- return;
- }
- else if(ds_main_list1_griddeptfild.rowcount == 0)
- {
- sysf_messageBox("엑셀저장할 내역이", "I004"); ///엑셀저장할 내역이 없습니다.
- }
- else
- {
- grdf_exportExcel(grp_biz.switch1.case1.grd_deptfild, "과별-분야별현황 수정전후집계표 조회_"+today, "see");
- }
- }
- else if(grp_biz.switch1.tabindex == 1)
- {
- if (ds_main_list2_gridindprescond.rowcount == 1)
- {
- return;
- }
- else if(ds_main_list2_gridindprescond.rowcount == 0)
- {
- sysf_messageBox("엑셀저장할 내역이", "I004"); ///엑셀저장할 내역이 없습니다.
- }
- else
- {
- grdf_exportExcel(grp_biz.switch1.case2.grd_indprescond, "개인별현황 수정전후집계표 조회_"+today, "see");
- }
- }
- else if(grp_biz.switch1.tabindex == 2)
- {
- if (ds_main_list3_gridindprcpspec.rowcount == 1)
- {
- return;
- }
- else if(ds_main_list3_gridindprcpspec.rowcount == 0)
- {
- sysf_messageBox("엑셀저장할 내역이", "I004"); ///엑셀저장할 내역이 없습니다.
- }
- else
- {
- grdf_exportExcel(grp_biz.switch1.case3.grd_prcpspec, "개인별처방내역 수정전후집계표 조회_"+today, "see");
- }
- }
- }
- function button2_onclick(obj:Button, e:ClickEventInfo)
- {
- col = "N";
- grp_biz.switch1.case1.grd_deptfild.selecttype = "multiarea";
- grp_biz.switch1.case2.grd_indprescond.selecttype = "multiarea";
- grp_biz.switch1.case3.grd_prcpspec.selecttype = "multiarea";
- }
- function button3_onclick(obj:Button, e:ClickEventInfo)
- {
- col = "Y";
- grp_biz.switch1.case1.grd_deptfild.selecttype = "multiarea";
- grp_biz.switch1.case2.grd_indprescond.selecttype = "multiarea";
- grp_biz.switch1.case3.grd_prcpspec.selecttype = "multiarea";
- }
- function button7_onclick(obj:Button, e:ClickEventInfo)
- {
- col = "N";
- grp_biz.switch1.case1.grd_deptfild.selecttype = "multirow";
- grp_biz.switch1.case2.grd_indprescond.selecttype = "multirow";
- grp_biz.switch1.case3.grd_prcpspec.selecttype = "multirow";
- }
- function grp_biz_switch1_case1_grd_deptfild_oncellclick(obj:Grid, e:GridClickEventInfo)
- {
- var lv_nAreaStartRow;
- var lv_nAreaEndRow;
- var lv_nAreaStartCol;
- var lv_nAreaEndCol;
- if(col == "Y")
- {
- lv_nAreaStartRow = 0;
- lv_nAreaEndRow = parseInt(obj.rowcount-1);
- lv_nAreaStartCol = parseInt(obj.currentcol);
- lv_nAreaEndCol = parseInt(obj.currentcol);
-
- grdf_initGridStyle(obj);
-
- for(var nRow = lv_nAreaStartRow; nRow <= lv_nAreaEndRow; nRow++)
- {
- for(var nCell = lv_nAreaStartCol; nCell <= lv_nAreaEndCol; nCell++)
- {
- obj.setCellProperty("body",nCell,"background","#FFE7E5");
- obj.setCellProperty("body",nCell,"background2","#FFE7E5");
- }
- }
- }
- else
- {
- grdf_initGridStyle(obj);
- }
- }
- function grp_biz_switch1_case1_grd_deptfild_onkeydown(obj:Grid, e:KeyEventInfo)
- {
- if(col == "Y")
- {
- var CONST_SEPARATOR = " "; //컬럼별 구분자
- var lv_oBindDs = eval(obj.binddataset);
- var lv_sColID;
- var lv_sVal;
- var lv_sClipboard = "";
- var lv_nAreaStartRow;
- var lv_nAreaEndRow;
- var lv_nAreaStartCol;
- var lv_nAreaEndCol;
-
- if(obj.selecttype == "multiarea")
- {
- lv_nAreaStartRow = 0;
- lv_nAreaEndRow = parseInt(obj.rowcount-1);
- lv_nAreaStartCol = parseInt(obj.currentcol);
- lv_nAreaEndCol = parseInt(obj.currentcol);
- }
-
- for(var nRow = lv_nAreaStartRow; nRow <= lv_nAreaEndRow; nRow++)
- {
- for(var nCell = lv_nAreaStartCol; nCell <= lv_nAreaEndCol; nCell++)
- {
- lv_sColID = obj.getCellProperty("body",nCell,"text");
- lv_sVal = obj.getCellValue(nRow,nCell);
- lv_sClipboard = lv_sClipboard + lv_sVal + CONST_SEPARATOR;
- }
- lv_sClipboard = lv_sClipboard.substr(0,lv_sClipboard.length-1);
- lv_sClipboard = lv_sClipboard +String.fromCharCode(10);
- }
- lv_sClipboard = lv_sClipboard.substr(0,lv_sClipboard.length-1);
-
- iv_sClipboard = lv_sClipboard;
-
- system.setClipboard("CF_TEXT",lv_sClipboard);
- }
- else
- {
- if (e.ctrlKey == true && e.keycode == 67 )
- {
- grdf_clipboardCopy(obj, "PAM");
- }
- }
- }
- function grp_biz_switch1_case2_grd_indprescond_oncellclick(obj:Grid, e:GridClickEventInfo)
- {
- var lv_nAreaStartRow;
- var lv_nAreaEndRow;
- var lv_nAreaStartCol;
- var lv_nAreaEndCol;
- if(col == "Y")
- {
- lv_nAreaStartRow = 0;
- lv_nAreaEndRow = parseInt(obj.rowcount-1);
- lv_nAreaStartCol = parseInt(obj.currentcol);
- lv_nAreaEndCol = parseInt(obj.currentcol);
-
- grdf_initGridStyle(obj);
-
- for(var nRow = lv_nAreaStartRow; nRow <= lv_nAreaEndRow; nRow++)
- {
- for(var nCell = lv_nAreaStartCol; nCell <= lv_nAreaEndCol; nCell++)
- {
- obj.setCellProperty("body",nCell,"background","#FFE7E5");
- obj.setCellProperty("body",nCell,"background2","#FFE7E5");
- }
- }
- }
- else
- {
- grdf_initGridStyle(obj);
- }
- }
- function grp_biz_switch1_case2_grd_indprescond_onkeydown(obj:Grid, e:KeyEventInfo)
- {
- if(col == "Y")
- {
- var CONST_SEPARATOR = " "; //컬럼별 구분자
- var lv_oBindDs = eval(obj.binddataset);
- var lv_sColID;
- var lv_sVal;
- var lv_sClipboard = "";
- var lv_nAreaStartRow;
- var lv_nAreaEndRow;
- var lv_nAreaStartCol;
- var lv_nAreaEndCol;
-
- if(obj.selecttype == "multiarea")
- {
- lv_nAreaStartRow = 0;
- lv_nAreaEndRow = parseInt(obj.rowcount-1);
- lv_nAreaStartCol = parseInt(obj.currentcol);
- lv_nAreaEndCol = parseInt(obj.currentcol);
- }
-
- for(var nRow = lv_nAreaStartRow; nRow <= lv_nAreaEndRow; nRow++)
- {
- for(var nCell = lv_nAreaStartCol; nCell <= lv_nAreaEndCol; nCell++)
- {
- lv_sColID = obj.getCellProperty("body",nCell,"text");
- lv_sVal = obj.getCellValue(nRow,nCell);
- lv_sClipboard = lv_sClipboard + lv_sVal + CONST_SEPARATOR;
- }
- lv_sClipboard = lv_sClipboard.substr(0,lv_sClipboard.length-1);
- lv_sClipboard = lv_sClipboard +String.fromCharCode(10);
- }
- lv_sClipboard = lv_sClipboard.substr(0,lv_sClipboard.length-1);
-
- iv_sClipboard = lv_sClipboard;
-
- system.setClipboard("CF_TEXT",lv_sClipboard);
- }
- else
- {
- if (e.ctrlKey == true && e.keycode == 67 )
- {
- grdf_clipboardCopy(obj, "PAM");
- }
- }
- }
- function grp_biz_switch1_case3_grd_prcpspec_oncellclick(obj:Grid, e:GridClickEventInfo)
- {
- var lv_nAreaStartRow;
- var lv_nAreaEndRow;
- var lv_nAreaStartCol;
- var lv_nAreaEndCol;
- if(col == "Y")
- {
- lv_nAreaStartRow = 0;
- lv_nAreaEndRow = parseInt(obj.rowcount-1);
- lv_nAreaStartCol = parseInt(obj.currentcol);
- lv_nAreaEndCol = parseInt(obj.currentcol);
-
- grdf_initGridStyle(obj);
-
- for(var nRow = lv_nAreaStartRow; nRow <= lv_nAreaEndRow; nRow++)
- {
- for(var nCell = lv_nAreaStartCol; nCell <= lv_nAreaEndCol; nCell++)
- {
- obj.setCellProperty("body",nCell,"background","#FFE7E5");
- obj.setCellProperty("body",nCell,"background2","#FFE7E5");
- }
- }
- }
- else
- {
- grdf_initGridStyle(obj);
- }
- }
- function grp_biz_switch1_case3_grd_prcpspec_onkeydown(obj:Grid, e:KeyEventInfo)
- {
- if(col == "Y")
- {
- var CONST_SEPARATOR = " "; //컬럼별 구분자
- var lv_oBindDs = eval(obj.binddataset);
- var lv_sColID;
- var lv_sVal;
- var lv_sClipboard = "";
- var lv_nAreaStartRow;
- var lv_nAreaEndRow;
- var lv_nAreaStartCol;
- var lv_nAreaEndCol;
-
- if(obj.selecttype == "multiarea")
- {
- lv_nAreaStartRow = 0;
- lv_nAreaEndRow = parseInt(obj.rowcount-1);
- lv_nAreaStartCol = parseInt(obj.currentcol);
- lv_nAreaEndCol = parseInt(obj.currentcol);
- }
-
- for(var nRow = lv_nAreaStartRow; nRow <= lv_nAreaEndRow; nRow++)
- {
- for(var nCell = lv_nAreaStartCol; nCell <= lv_nAreaEndCol; nCell++)
- {
- lv_sColID = obj.getCellProperty("body",nCell,"text");
- lv_sVal = obj.getCellValue(nRow,nCell);
- lv_sClipboard = lv_sClipboard + lv_sVal + CONST_SEPARATOR;
- }
- lv_sClipboard = lv_sClipboard.substr(0,lv_sClipboard.length-1);
- lv_sClipboard = lv_sClipboard +String.fromCharCode(10);
- }
- lv_sClipboard = lv_sClipboard.substr(0,lv_sClipboard.length-1);
-
- iv_sClipboard = lv_sClipboard;
-
- system.setClipboard("CF_TEXT",lv_sClipboard);
- }
- else
- {
- if (e.ctrlKey == true && e.keycode == 67 )
- {
- grdf_clipboardCopy(obj, "PAM");
- }
- }
- }
- function button10_onclick(obj:Button, e:ClickEventInfo)
- {
- fInitialize();
- }
- function grp_biz_button9_onclick(obj:Button, e:ClickEventInfo)
- {
- fSrchChk();
-
- var oParam = {};
- oParam.id = "TRPIF00104";
- oParam.service = "clamuncoapp.ClamUnco";
- oParam.method = "reqGetPresCondCreateFile";
- oParam.inds = "req=ds_send_send_base";
- oParam.outds = "";
- oParam.async = false;
- oParam.callback = "cf_TRPIF00104";
- tranf_submit(oParam);
- }
- function cf_TRPIF00104(sSvcId, nErrorCode, sErrorMsg)
- {
- if(nErrorCode < 0)
- {
- sysf_messageBox("파일 생성시 오류가 발생하였습니다." , "E999");
- }
- else
- {
- sysf_messageBox("파일 생성이 완료 되었습니다." , "E999");
- return;
- }
- }
- function grp_biz_button8_onclick(obj:Button, e:ClickEventInfo)
- {
- var objDate = new Date();
- var todd = objDate.addMonth(-1);
- todd = objDate.toFormatString("%Y%m%d");
-
- // zsbfOpenBatchLogPopup("clamcretmngtmgr.ClamDataCretMain",getCurrentDate(),todd.getDateFormat());
- var objArg = new Object();
- objArg.todd = todd;
- objArg.execrid = sysf_getUserId();
- objArg.prgmid = "ClamDataCretMain";
- frmf_open("SPZSB00301", "SPZSB00301", objArg, "","","","","","","","","","M");
- }
- function grp_biz_switch1_onchanged(obj:Tab, e:TabIndexChangeEventInfo)
- {
- if(obj.tabindex == 0)
- {
- grp_biz.button8.visible = false;
- grp_biz.button9.visible = false;
- grp_biz.grp_sea.button1.visible = true;
- }
- else if(obj.tabindex == 1)
- {
- grp_biz.button8.visible = true;
- grp_biz.button9.visible = true;
- grp_biz.grp_sea.button1.visible = false;
- }
- else if(obj.tabindex == 2)
- {
- grp_biz.button8.visible = false;
- grp_biz.button9.visible = false;
- grp_biz.grp_sea.button1.visible = false;
- }
- }
- function grp_biz_switch1_case1_grp_prtoption_prt_clamym_onchanged(r)
- {
- var date = eval(r).getData();
- ds_send_prtoption.setColumn(0, "clamym", date);
- }
- ]]></Script>
- </Form>
- </FDL>
|