123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126312731283129313031313132313331343135313631373138313931403141314231433144314531463147314831493150315131523153315431553156315731583159316031613162316331643165316631673168316931703171317231733174317531763177317831793180318131823183318431853186318731883189319031913192319331943195319631973198319932003201320232033204320532063207320832093210321132123213321432153216321732183219322032213222322332243225322632273228322932303231323232333234323532363237323832393240324132423243324432453246324732483249325032513252325332543255325632573258325932603261326232633264326532663267326832693270327132723273327432753276327732783279328032813282328332843285328632873288328932903291329232933294329532963297329832993300330133023303330433053306330733083309331033113312331333143315331633173318331933203321332233233324332533263327332833293330333133323333333433353336333733383339334033413342334333443345334633473348334933503351335233533354335533563357335833593360336133623363336433653366336733683369337033713372337333743375337633773378337933803381338233833384338533863387338833893390339133923393339433953396339733983399340034013402340334043405340634073408340934103411341234133414341534163417341834193420342134223423342434253426342734283429343034313432343334343435343634373438343934403441344234433444344534463447344834493450345134523453345434553456345734583459346034613462346334643465346634673468346934703471347234733474347534763477 |
- <?xml version="1.0" encoding="EUC-KR"?>
- <?xml-stylesheet type="text/css" href="../../../com/commonweb/css/common.css" ?>
- <xhtml:html xmlns:xhtml="http://www.w3.org/1999/xhtml" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns="http://www.w3.org/2002/01/xforms" xmlns:ev="http://www.w3.org/2001/xml-events">
- <xhtml:head>
- <xhtml:title>개인별미수관리(SMPIF30100)</xhtml:title>
- <model id="model1">
- <instance id="instance1">
- <root xmlns="">
- <send>
- <clamym_mtrt>
- <searchflag>1</searchflag>
- <clamym/>
- <acptno/>
- </clamym_mtrt>
- <acptno_mtrt>
- <searchflag>2</searchflag>
- <acptno/>
- <clamym/>
- </acptno_mtrt>
- <clam_mtrt>
- <clamym/>
- <acptno/>
- <judgdg/>
- <instcd/>
- <clamno/>
- <offset/>
- <pagesize>10000</pagesize>
- <insukind/>
- <filesaveyn/>
- <docuseqnofrom/>
- <docuseqnoto/>
- </clam_mtrt>
- <clam_med>
- <acptno/>
- <clamym/>
- <clamno/>
- <judgdg/>
- <cpcd/>
- <assocd/>
- <instcd/>
- <offset/>
- <pagesize>10000</pagesize>
- <docuseqnofrom/>
- <docuseqnoto/>
- </clam_med>
- <acptclam>
- <searchflag>1</searchflag>
- <item01/>
- <item02/>
- <instcd/>
- <cpcd/>
- <assocd/>
- <clamno/>
- </acptclam>
- <srchcond>
- <searchflag>1</searchflag>
- <srchcond01/>
- <srchcond02/>
- <instcd/>
- <clamno/>
- <insukind/>
- <srchcond03/>
- </srchcond>
- <searchgridrow>
- <docuseqno/>
- <pid/>
- <patnm/>
- </searchgridrow>
- <searchgridrowmed>
- <docuseqno/>
- <pid/>
- <patnm/>
- </searchgridrowmed>
- <inducs>
- <termflag>1</termflag>
- <srchcond01/>
- <srchcond02/>
- <clamno/>
- <insukind>41</insukind>
- </inducs>
- </send>
- <init>
- <gubun_clamym/>
- <gubun_acptno/>
- <acptmed>1</acptmed>
- <clamddmed/>
- <prepatnm/>
- <prepatnmcnt/>
- <P0008list>
- <P0008>
- <cdnm/>
- <cdid/>
- </P0008>
- </P0008list>
- <P0485list>
- <P0485>
- <cdnm/>
- <cdid/>
- </P0485>
- </P0485list>
- <P0121list>
- <P0121>
- <cdnm/>
- <cdid/>
- </P0121>
- </P0121list>
- <P0455list>
- <P0455>
- <cdnm/>
- <cdid/>
- </P0455>
- </P0455list>
- </init>
- <main>
- <list00>
- <list00_acptno>
- <acptno01>
- <acptno/>
- </acptno01>
- </list00_acptno>
- <list00_clamym>
- <clamym01>
- <clamym/>
- </clamym01>
- </list00_clamym>
- <srchcond>
- <srchcond02/>
- <srchcond03/>
- </srchcond>
- <acptnocnt>
- <cnt/>
- </acptnocnt>
- <clamno>
- <clamno/>
- </clamno>
- </list00>
- <list01>
- <judgdg01>
- <judgdg/>
- <acptdd/>
- </judgdg01>
- <decoseq>
- <judgdg/>
- <decoseq/>
- </decoseq>
- </list01>
- <list01temp>
- <judgdg01>
- <judgdg>전체</judgdg>
- </judgdg01>
- </list01temp>
- <list02>
- <gridpifmiunc00>
- <instcd/>
- <ordym/>
- <clamym/>
- <clamflagnm/>
- <ioflag/>
- <ordfildnm/>
- <clamno/>
- <clamcnt/>
- <clmcstotamt/>
- <clownbamt/>
- <clclamamt/>
- <clownbmaxexcnt/>
- <clownbmaxexamt/>
- <sumtypecd/>
- <acptdd/>
- </gridpifmiunc00>
- </list02>
- <list03>
- <gridpifmiunc01>
- <judgdg/>
- <clamcnt/>
- <clmcstotamt/>
- <clownbamt/>
- <clclamamt/>
- <clownbmaxexcnt/>
- <clownbmaxexamt/>
- <clsuppcnt/>
- <clsuppamt/>
- <jrsltcnt/>
- <jrownbamt/>
- <jrownbrtnamt/>
- <jrownaddbamt/>
- <jrtrudirecpamt/>
- <clamamt2/>
- <jrownbmaxexamt/>
- <jrsuppamt/>
- <jrjudgdeciamt/>
- <resdnretecnt/>
- <resdnreteamt/>
- <retecnt/>
- <retetotordamt/>
- <reteamt/>
- <retemaxexamt/>
- <retesuppamt/>
- <sendcnt/>
- <sendtotordamt/>
- <sendamt/>
- <sendmaxexamt/>
- <sendmaxexcnt/>
- <sendsuppamt/>
- <sendsuppcnt/>
- <cutcnt/>
- <adjtamt/>
- <orgreduamt/>
- <clhandicaprfund/>
- <jrhandicaprfund/>
- <jrhandicaprfundcnt/>
- <retehandicaprfund/>
- <sendhandicaprfund/>
- <clhandicaprfundcnt/>
- </gridpifmiunc01>
- </list03>
- <list04>
- <gridpifmiunc02>
- <clamym/>
- <decoseq/>
- <instcd/>
- <judgdg/>
- <acptno/>
- <clamno/>
- <firstresdnrete/>
- <resdnrete/>
- <clamdeptnm/>
- <orddeptnm/>
- <docuseqno/>
- <pid/>
- <patnm/>
- <patrrgstno/>
- <clmcstotamt/>
- <clownbamt/>
- <clclamamt/>
- <clownbmaxexamt/>
- <clsuppamt/>
- <clhandicaprfund/>
- <jrmcstotamt/>
- <jrownbamt/>
- <jrjudgdeciamt/>
- <jrownbmaxexamt/>
- <jrsuppamt/>
- <jrhandicaprfund/>
- <adjtamt1/>
- <adjtamt2/>
- <adjtamtsum/>
- <adjtresn1/>
- <adjtresn2/>
- <orgreduamt/>
- <jrownaddbamt/>
- <orddridnm/>
- <insukind/>
- <insdnm/>
- <corpmark/>
- <corpmarknm/>
- <fixrateyn/>
- <chosindayno/>
- <ordfromdd/>
- <statflag/>
- <clamdg/>
- <pidsn/>
- </gridpifmiunc02>
- <gridpifmiuncbyinducs>
- <clamym/>
- <decoseq/>
- <instcd/>
- <judgdg/>
- <acptno/>
- <clamno/>
- <firstresdnrete/>
- <clamdeptnm/>
- <orddeptnm/>
- <docuseqno/>
- <pid/>
- <patnm/>
- <patrrgstno/>
- <clamflag/>
- <clclamamt/>
- <jrjudgdeciamt/>
- <adjtamtsum/>
- <maindiagcd/>
- <orddrid/>
- <insukind/>
- <insuno/>
- <insunm/>
- <certno/>
- <cretfromdd/>
- <ordfromdd/>
- <chosindayno/>
- <acptno/>
- <judgdg/>
- <ioflag/>
- <statflag/>
- <pidsn/>
- </gridpifmiuncbyinducs>
- </list04>
- <list05>
- <gridpifmiunc03>
- </gridpifmiunc03>
- </list05>
- <list00med>
- <list00_acptclam>
- <acptclam01>
- <acptclam/>
- </acptclam01>
- <acptnocnt>
- <cnt/>
- </acptnocnt>
- </list00_acptclam>
- <list00_cpcd>
- <cpcd01>
- <cpcd/>
- <cpnm/>
- </cpcd01>
- </list00_cpcd>
- <list00_assocd>
- <assocd01>
- <assocd/>
- <assonm/>
- </assocd01>
- </list00_assocd>
- </list00med>
- <list01med>
- <judgdg01>
- <judgdg/>
- </judgdg01>
- <decoseq>
- <judgdg/>
- <decoseq/>
- </decoseq>
- </list01med>
- <list02med>
- <gridpifmmiun00>
- <instcd/>
- <ordym/>
- <clamym/>
- <clamflagnm/>
- <ioflag/>
- <ordfildnm/>
- <clamno/>
- <clamcnt/>
- <clamtotordamt/>
- <clamownbamt/>
- <clamamt/>
- <clhandicaprfund/>
- </gridpifmmiun00>
- </list02med>
- <list03med>
- <gridpifmmiun01>
- <judgdg/>
- <clamno/>
- <clamcnt/>
- <clmcstotamt/>
- <clownbamt/>
- <clsecuinstbamt/>
- <clhandicaprfund/>
- <jrsltcnt/>
- <jrmcstotamt/>
- <jrownbamt/>
- <jrrtnamt/>
- <jraddchrgamt/>
- <jrtrudirecpamt/>
- <clamamt2/>
- <jrjudgdeciamt/>
- <jrsubtamt/>
- <jrhandicaprfund/>
- <qualretecnt/>
- <qualretetotordamt/>
- <qualreteamt/>
- <qualretehandicaprfund/>
- <judgretecnt/>
- <judgretetotordamt/>
- <judgreteamt/>
- <judgretehandicaprfund/>
- <sendcnt/>
- <sendtotordamt/>
- <sendamt/>
- <sendhandicaprfund/>
- <cutcnt/>
- <adjtamt/>
- <orgreduamt/>
- </gridpifmmiun01>
- </list03med>
- <list04med>
- <gridpifmmiun02>
- <clamym/>
- <decoseq/>
- <instcd/>
- <clamno/>
- <qualrete/>
- <depoflag/>
- <clamdeptnm/>
- <orddeptnm/>
- <docuseqno/>
- <pid/>
- <patnm/>
- <patrrgstno/>
- <clmcstotamt/>
- <clownbamt/>
- <clsecuinstbamt/>
- <clhandicaprfund/>
- <jrmcstotamt/>
- <jrownbamt/>
- <jrjudgdeciamt/>
- <jrhandicaprfund/>
- <jradjtsum1/>
- <jradjtsum2/>
- <jradjtsum/>
- <adjtresn1/>
- <adjtresn2/>
- <instreductamt/>
- <handicapcvrtamt/>
- <orgreduamt/>
- <jraddchrgamt/>
- <diagcd/>
- <orddridnm/>
- <orddrid/>
- <insukind/>
- <procinstmark/>
- <procinstmarknm/>
- <fixrateflag/>
- <chosindayno/>
- <oprcpdayno/>
- <ordfromdd/>
- <spclcd/>
- <acptno/>
- <judgdg/>
- <ioflag/>
- <clamdg/>
- <pidsn/>
- </gridpifmmiun02>
- </list04med>
- <list05med>
- <gridpifmmiun03/>
- </list05med>
- <result_list05/>
- <inducs>
- <list00>
- <srchcond>
- <srchcond02/>
- </srchcond>
- <acptnocnt>
- <cnt/>
- </acptnocnt>
- </list00>
- </inducs>
- <list001>
- <U0001>
- <clamno/>
- </U0001>
- <U0002>
- <judgdg/>
- </U0002>
- </list001>
- </main>
- <temp>
- <csv>
- <gridpifmiunc02/>
- </csv>
- </temp>
- </root>
- </instance>
- <submission id="TRZBC00102" mediatype="application/x-www-form-urlencoded" method="post" replace="instance"/>
- <submission id="TRPIF30101" mediatype="application/x-www-form-urlencoded" method="post" ref="/root/send/srchcond" resultref="/root/main/list00"/>
- <submission id="TRPIF30102" mediatype="application/x-www-form-urlencoded" method="post" ref="/root/send/acptno_mtrt" resultref="/root/main/list00/list00_clamym"/>
- <submission id="TRPIF30103" mediatype="application/x-www-form-urlencoded" method="post" ref="/root/send/clam_mtrt" resultref="/root/main/list01"/>
- <submission id="TRPIF30104" mediatype="application/x-www-form-urlencoded" method="post" ref="/root/send/clam_mtrt" resultref="/root/main/list02"/>
- <submission id="TRPIF30105" mediatype="application/x-www-form-urlencoded" method="post" ref="/root/send/clam_mtrt" resultref="/root/main/list03"/>
- <submission id="TRPIF30106" mediatype="application/x-www-form-urlencoded" method="post" ref="/root/send/clam_mtrt" add="bottom" resultref="/root/main/list04"/>
- <submission id="TRPIF30107" mediatype="application/x-www-form-urlencoded" method="post" ref="/root/send/acptclam" resultref="/root/main/list00med/list00_acptclam"/>
- <submission id="TRPIF30108" mediatype="application/x-www-form-urlencoded" method="post" ref="/root/send/acptclam" resultref="/root/main/list00med/list00_cpcd"/>
- <submission id="TRPIF30109" mediatype="application/x-www-form-urlencoded" method="post" ref="/root/send/acptclam" resultref="/root/main/list00med/list00_assocd"/>
- <submission id="TRPIF30110" mediatype="application/x-www-form-urlencoded" method="post" ref="/root/send/clam_med" resultref="/root/main/list01med"/>
- <submission id="TRPIF30115" mediatype="application/x-www-form-urlencoded" method="post" ref="/root/send/clam_med" resultref="/root/main/list02med"/>
- <submission id="TRPIF30116" mediatype="application/x-www-form-urlencoded" method="post" ref="/root/send/clam_med" resultref="/root/main/list03med"/>
- <submission id="TRPIF30117" mediatype="application/x-www-form-urlencoded" method="post" ref="/root/send/clam_med" add="bottom" resultref="/root/main/list04med"/>
- <submission id="TRPIF30118" mediatype="application/x-www-form-urlencoded" method="post" ref="/root/send/clam_mtrt" resultref="/root/temp/csv"/>
- <submission id="TXPIF30101" mediatype="application/x-www-form-urlencoded" method="post" ref="/root/main/list05" resultref="/root/main/result_list05"/>
- <submission id="TXPIF30102" mediatype="application/x-www-form-urlencoded" method="post" ref="/root/main/list05med" resultref="/root/result"/>
- </model>
- <script type="javascript" src="../../../com/commonweb/js/common.js"/>
- <script type="javascript" src="../../../com/commonweb/js/tfHelper.js"/>
- <script type="javascript" src="../../../com/basiccodeweb/js/ZBC001.js"/>
- <script type="javascript" ev:event="xforms-ready">
- <![CDATA[
- model.toggle("case1");
- model.setFocus("ipt_srchcond01");
- // 보험유형
- zbcfGetCodeList(
- new Array("P0008", "P0485", "P0121", "P0455"),
- new Array("/root/init/P0008list", "/root/init/P0485list", "/root/init/P0121list", "/root/init/P0455list")
- ,false
- );
- // Session_Init();
- // rdo_clamym.value = '1' ;
- ]]>
- </script>
- <script type="javascript">
- <![CDATA[
- var flag = "Y";
- var flagmed = "Y";
-
- function Session_Init() {
- // var vinstcd = getUserInfo("posinstcd");
- // model.setValue("/root/send/send_mtrt/instcd", vinstcd);
- // model.setValue("/root/send/send_mtrt00/instcd", vinstcd);
- }
- function Instance_Init() {
- model.resetInstanceNode("/root/main/list01");
- model.resetInstanceNode("/root/main/list02");
- model.resetInstanceNode("/root/main/list03");
- model.removeNodeSet("/root/main/list04");
- cmb_judgdg.value = ""; // 값을 비워줘야 그냥 조회버튼 클릭시 심사차수가 콤보에 세팅되면서 1개차수만 존재시 자동으로 명일련별 청구사항까지 조회하게 됨.
- model.refresh();
- }
- function Instancemed_Init() {
- // model.resetInstanceNode("/root/main/list01med");
- // model.resetInstanceNode("/root/main/list02med");
- model.resetInstanceNode("/root/main/list03med");
- model.removeNodeSet("/root/main/list04med");
- cmb_judgdgmed.value = ""; // 값을 비워줘야 그냥 조회버튼 클릭시 심사차수가 콤보에 세팅되면서 1개차수만 존재시 자동으로 명일련별 청구사항까지 조회하게 됨.
- model.refresh();
- }
-
- // 요양급여(보험) 팝업전 심사차수 체크
- function chkJudgdg(btnnum) {
- if(rdo_srchcond.value == "" || cmb_judgdg.value == "없음") {
- messageBox("조회할 심결데이터가","I004");
- return false;
- }
- if(btnnum == "1" || btnnum == "2" || btnnum == "3" || btnnum == "4" || btnnum == "5") {
- if(rdo_srchcond.value != "" & (cmb_judgdg.value == "" || cmb_judgdg.value == "전체")) {
- messageBox("하나의 심사차수를","C002");
- model.setFocus("cmb_judgdg");
- return false;
- }
- }
- return true;
- }
-
- // 의료급여(보호) 팝업전 심사차수 체크
- function chkJudgdgMed(btnnum) {
- if(rdo_acptnomed.value == "" || cmb_judgdgmed.value == "없음") {
- messageBox("조회할 심결데이터가","I004");
- return false;
- }
- if(btnnum == "1" || btnnum == "2" || btnnum == "4") {
- if(rdo_acptnomed.value != "" & (cmb_judgdgmed.value == "" || cmb_judgdgmed.value == "전체")) {
- messageBox("하나의 심사차수를","C002");
- model.setFocus("cmb_judgdgmed");
- return false;
- }
- }
- return true;
- }
-
- // 산재 팝업전 심사차수 체크
- function chkIndsJudgdg(btnnum) {
- if(rdo_indusrchcond.value == "" || combo2.value == "없음") {
- messageBox("조회할 심결데이터가","I004");
- return false;
- }
- if(btnnum == "1" || btnnum == "2" || btnnum == "3" || btnnum == "4" || btnnum == "5") {
- if(rdo_indusrchcond.value != "" & (combo2.value == "" || combo2.value == "전체")) {
- messageBox("하나의 심사차수를","C002");
- model.setFocus("combo2");
- return false;
- }
- }
- return true;
- }
-
- // 조회실행메소드
- function search() {
- Instance_Init() ;
- model.resetInstanceNode("/root/send/clam_mtrt/judgdg");
- model.refresh();
-
- if(rdo_srchcond.value == "1") {
- var vacptno = ipt_srchcond01.value;
- var vclamym = cmb_srchcond02.value;
-
- if(vacptno == ""){
- messageBox("접수번호를 반드시","C001");
- model.setFocus("ipt_srchcond01");
- return false ;
- }
-
- if(vclamym == ""){
- messageBox("청구년월을 반드시","C002");
- model.setFocus("cmb_srchcond02");
- return false ;
- }
-
- model.setValue("/root/send/clam_mtrt/clamym", vclamym) ;
- model.setValue("/root/send/clam_mtrt/acptno", vacptno) ;
- model.setValue("/root/send/clam_mtrt/insukind", model.getValue("/root/send/srchcond/insukind")) ;
-
- } else if(rdo_srchcond.value == "2") {
- var vclamym = ipt_srchcond01.value;
- var vacptno = cmb_srchcond02.value;
-
- if(vclamym == ""){
- messageBox("청구년월을 반드시","C001");
- model.setFocus("ipt_srchcond01");
- return false ;
- }
- if(vacptno == ""){
- messageBox("접수번호를 반드시","C002");
- model.setFocus("cmb_srchcond02");
- return false ;
- }
-
- model.setValue("/root/send/clam_mtrt/clamym", vclamym) ;
- model.setValue("/root/send/clam_mtrt/acptno", vacptno) ;
- model.setValue("/root/send/clam_mtrt/insukind", model.getValue("/root/send/srchcond/insukind")) ;
-
- } else {
- messageBox("조회조건을","I007");
- return false ;
- }
-
- submit("TRPIF30103") ; //심사차수
- submit("TRPIF30104") ; //청구내역
- //submit("TRPIF30106") ; //명세서별 조회
-
- model.setValue("/root/send/clam_mtrt/clamno", model.getValue("/root/main/list02/gridpifmiunc00/clamno")) ;
- model.setValue("/root/send/clam_mtrt/instcd", model.getValue("/root/main/list02/gridpifmiunc00/instcd"));
-
- // 2007.12.07 페이지단위 조회를 위한 값 0으로 세팅
- model.setValue("/root/send/clam_mtrt/offset",0);
-
- if(cmb_judgdg.length == 0) {
- //submit("TRPIF30104") ; //청구내역
- submit("TRPIF30105") ; //청구내역
- submit("TRPIF30106") ; //명세서별 조회(청구데이터만 조회)
- model.makeNode("/root/main/list01/judgdg01/judgdg");
- model.setValue("/root/main/list01/judgdg01/judgdg","없음");
- cmb_judgdg.value = model.getValue("/root/main/list01/judgdg01/judgdg");
- model.refresh();
- //submit("TRPIF30106") ; //명세서별 조회
- } else if(cmb_judgdg.length == 1) {
- cmb_judgdg.select(0);
- cmb_judgdg.select(0);
- //searchByJudgdg();
- } else if(cmb_judgdg.length >1) {
- //copyNodeType("/root/main/list01/judgdg01","/root/main/list01temp/judgdg01","before");
-
- //addComboItem("cmb_judgdg", " ", "전체");
- cmb_judgdg.value = model.getValue("/root/main/list01/judgdg01[0]/judgdg");
- cmb_judgdg.value = model.getValue("/root/main/list01/judgdg01[0]/judgdg");
- model.refresh();
- model.setFocus("cmb_judgdg");
- cmb_judgdg.select(0);
-
- }
- }
-
- // 심사차수 선택시 실행되는 함수(보험)
- function searchByJudgdg() {
- //model.resetInstanceNode("/root/main/list03");
- //model.resetInstanceNode("/root/main/list04");
-
- model.removenode("/root/main/list03");
- model.removenode("/root/main/list04");
-
- model.setValue("/root/send/clam_mtrt/insukind", model.getValue("/root/send/srchcond/insukind"));
- model.refresh();
-
- //model.removeNodeset("/root/main/list02/gridpifmiunc00");
- //model.removeNodeset("/root/main/list03/gridpifmiunc01");
- //model.removeNodeset("/root/main/list04/gridpifmiunc02");
-
-
- //submit("TRPIF30103") ; //심사차수
- //submit("TRPIF30104") ; //청구내역
- //submit("TRPIF30106") ; //명세서별 조회
-
- //model.setValue("/root/send/clam_mtrt/clamno", model.getValue("/root/main/list02/gridpifmiunc00/clamno")) ;
- //model.setValue("/root/send/clam_mtrt/instcd", model.getValue("/root/main/list02/gridpifmiunc00/instcd"));
-
- /*if(cmb_judgdg.length == 0) {
- submit("TRPIF30106") ; //명세서별 조회
- model.makeNode("/root/main/list01/judgdg01/judgdg");
- model.setValue("/root/main/list01/judgdg01/judgdg","없음");
- cmb_judgdg.value = model.getValue("/root/main/list01/judgdg01/judgdg");
- model.refresh();
- //submit("TRPIF30106") ; //명세서별 조회
- } else if(cmb_judgdg.length == 1) {
- submit("TRPIF30105") ; //심결내역
- submit("TRPIF30106") ; //명세서별 조회
- } else {
- copyNodeType("/root/main/list01/judgdg01","/root/main/list01temp/judgdg01","before");
- cmb_judgdg.value = model.getValue("/root/main/list01/judgdg01[0]/judgdg");
- model.refresh();
- }*/
-
- var vjudgdg = model.getValue("/root/send/clam_mtrt/judgdg");
-
- if (vjudgdg == "") {
- messageBox("심사차수를","I007");
- model.setfocus("cmb_judgdg");
- return false;
- }
-
- // submit("TRPIF30104") ; //청구내역
- submit("TRPIF30105") ; //심결내역
- submit("TRPIF30106") ; //명세서별 조회
-
- //autoScrollYN();
-
- // grd_pifmiunc02.rebuild();
- /*
- var vstatflag, vadjtresn, i ;
- var vmiunc02rows = grd_pifmiunc02.rows ;
- for ( i = 1; i < vmiunc02rows; i++ ) {
- vstatflag = model.getValue("/root/main/list04/gridpifmiunc02[" + i + "]/statflag");
- vadjtresn = model.getValue("/root/main/list04/gridpifmiunc02[" + i + "]/adjtresn");
-
- if(grd_pifmiunc02.valueMatrix(i,7) == "Y") {
- grd_pifmiunc02.isReadOnly(i,7) = true;
- }
-
- switch (vstatflag) {
- case "01" :
- if(vadjtresn > "") {
- grd_pifmiunc02.rowStyle(i,"data","color") = "#ff0000" ;//빨강 삭감
- }
- break ;
- case "02" :
- grd_pifmiunc02.rowStyle(i,"data","color") = "#0000ff" ;//파랑 심사보류
- break ;
- case "04" :
- grd_pifmiunc02.rowStyle(i,"data","color") = "#800080" ;//보라 반송
- break ;
- default :
- // grd_pifmiunc02.
- // grd_pifmiunc02.rowStyle(i,"data","color") = "#ff6600" ;//검정
- break ;
- }
- }*/
- }
-
-
-
- // 보호의 조회실행 함수
- function searchProc(callflag) {
- Instancemed_Init() ;
- /*
- model.resetInstanceNode("/root/main/list01med");
- model.resetInstanceNode("/root/main/list02med");
- model.resetInstanceNode("/root/main/list03med");
- model.resetInstanceNode("/root/main/list04med");
- */
-
- var vsearchflag = model.getValue("/root/send/acptclam/searchflag");
-
- //model.refresh();
-
- // 페이지단위 조회를 위한 값 0으로 세팅
- model.setValue("/root/send/clam_mtrt/offset",0);
-
- // 2010.01.26 이놈이 여기에 있어서 될일이 아니다. 이제서야 셋팅하면 청구사항은 언제 셋팅해서 조회하란 말이냐?
- // if(rdo_acptnomed.value == "1") {
- // model.setValue("/root/send/clam_med/acptno", model.getValue("/root/send/acptclam/item01")) ;
- // model.setValue("/root/send/clam_med/clamym", model.getValue("/root/send/acptclam/item02")) ;
- // } else if(rdo_acptnomed.value == "2") {
- // model.setValue("/root/send/clam_med/acptno", model.getValue("/root/send/acptclam/item02")) ;
- // model.setValue("/root/send/clam_med/clamym", model.getValue("/root/send/acptclam/item01")) ;
- // }
- /////////////////////////////// 요기까지임
- model.setValue("/root/send/clam_med/cpcd", model.getValue("/root/send/acptclam/cpcd")) ;
- model.setValue("/root/send/clam_med/assocd", model.getValue("/root/send/acptclam/assocd")) ;
-
- submit("TRPIF30110") ; //심사차수
- // submit("TRPIF30115") ; //청구내역
-
- //submit("TRPIF30117") ; //명세서조회
-
- // 2007.12.07 페이지단위 조회를 위한 값 0으로 세팅
- model.setValue("/root/send/clam_med/offset",0);
-
- if(cmb_judgdgmed.length == 0) {
- submit("TRPIF30116") ; //심결내역
- submit("TRPIF30117") ; //명세서별 조회
- model.makeNode("/root/main/list01med/judgdg01/judgdg");
- model.setValue("/root/main/list01med/judgdg01/judgdg","없음");
- cmb_judgdgmed.value = model.getValue("/root/main/list01med/judgdg01/judgdg");
- model.refresh();
- //submit("TRPIF30106") ; //명세서별 조회
- } else if(cmb_judgdgmed.length == 1) {
- //cmb_judgdgmed.value = model.getValue("/root/main/list01med/judgdg01[1]/judgdg");
- //model.refresh();
- cmb_judgdgmed.select(0);
- /*if(callflag == "cpcd" || callflag == "assocd") {
- searchMedByJudgdg();
- }*/
- } else if(cmb_judgdgmed.length > 1) {
- //copyNodeType("/root/main/list01med/judgdg01","/root/main/list01temp/judgdg01","before");
- addComboItem("cmb_judgdgmed", " ", "전체");
- cmb_judgdgmed.value = model.getValue("/root/main/list01med/judgdg01[0]/judgdg");
- model.refresh();
- }
-
- }
-
- // 심사차수 선택시 실행되는 함수(보호)
- function searchMedByJudgdg() {
- var vjudgdg = model.getValue("/root/send/clam_med/judgdg");
-
- model.removeNodeset("/root/main/list03med");
- model.removeNodeset("/root/main/list04med");
-
- if (vjudgdg == "") {
- alert("심사차수 확인하세요") ;
- model.setfocus("cmb_judgdg");
- return false;
- }
-
- // submit("TRPIF30115") ; //청구내역
- submit("TRPIF30116") ; //심결내역
- submit("TRPIF30117") ; //명세서
-
- grd_pifmmiun02.rebuild();
-
- autoScrollYNMed();
-
- }
-
- // ****************************************// 요양급여 다음 페이지 자동 조회 관련 메소드 ****************************************//
- // 스크롤바 마지막까지 내릴시 다음 페이지 자동조회하기
- function fSubmitOnScroll() {
- autoScrollYN();
- if(flag == "Y") {
- if(grd_pifmiunc02.vscroll.attribute("max") == grd_pifmiunc02.vscroll.attribute("pos")) {
- // end of scroll
- model.setValue("/root/send/clam_mtrt/offset", Number(grd_pifmiunc02.rows)-1); // grid의 header row는 제외
- submit("TRPIF30106");
- grd_pifmiunc02.dispatch("onmouseup"); // 스크롤바 처리를 위한 이벤트 발생
- }
- }
- }
-
- // 명일련으로 바로가기 데이터 못찾았을시 다음페이지 불러와서 다시 재조회하는 function
- function researchgrid(item1, item2) {
- flag = "N";
- var endrow = grd_pifmiunc02.rows;
- fSubmitOnScroll2();
- model.refresh();
-
- var rows = grd_pifmiunc02.rows;
- var cnt = 0;
-
- if(endrow < rows-1) {
- // 명일련으로 바로가기 시도할 경우
- if(item1 == "docuseqno") {
- for(var i=endrow;i<rows;i++) {
- if(grd_pifmiunc02.valueMatrix(i,10) == item2) {
- //grd_pifmiunc02.select(i,9) = true;
- grd_pifmiunc02.row = i;
- grd_pifmiunc02.topRow = i;
- cnt++;
- flag = "Y";
- return false;
- }
- }
- }
-
- // 등록번호로 바로가기 시도할 경우
- if(item1 == "pid") {
- for(var i=endrow;i<rows;i++) {
- if(grd_pifmiunc02.valueMatrix(i,11) == item2) {
- //grd_pifmiunc02.select(i,9) = true;
- grd_pifmiunc02.row = i;
- grd_pifmiunc02.topRow = i;
- cnt++;
- flag = "Y";
- return false;
- }
- }
- }
-
- // 수진자명으로 바로가기 시도할 경우
- if(item1 == "patnm") {
- for(var i=endrow;i<rows;i++) {
- if(model.getValue("/root/main/list04/gridpifmiunc02["+i+"]/patnm") == item2) {
- //if(grd_pifmiunc02.valueMatrix(i,12) == item2) {
- //grd_pifmiunc02.select(i,9) = true;
- grd_pifmiunc02.row = i;
- grd_pifmiunc02.topRow = i;
- cnt++;
- flag = "Y";
- return false;
- }
- }
- }
-
- if(cnt == 0) {
- researchgrid(item1,item2);
- }
- } else {
- if(item1 == "docuseqno") {
- messageBox("찾으시는 명일련이","I004");
- }
- if(item1 == "pid") {
- messageBox("찾으시는 등록번호가","I004");
- }
- if(item1 == "patnm") {
- messageBox("찾으시는 수진자가","I004");
- }
-
- return false;
- }
-
-
- }
-
- // 명일련으로 그리드 데이터 바로찾기할때 그리드에 해당 데이터 없을시 다음 페이지 자동 조회후 다시 명일련으로 자동 조회
- function fSubmitOnScroll2() {
- model.setValue("/root/send/clam_mtrt/offset", Number(grd_pifmiunc02.rows)-1); // grid의 header row는 제외
- submit("TRPIF30106");
- grd_pifmiunc02.dispatch("onmouseup"); // 스크롤바 처리를 위한 이벤트 발생
- }
-
-
-
-
- // ****************************************// 의료급여 다음 페이지 자동 조회 관련 메소드 ****************************************//
- // 스크롤바 마지막까지 내릴시 다음 페이지 자동조회하기
- function fSubmitOnScrollMed(flag) {
- autoScrollYNMed();
- if(flagmed == "Y") {
- if(grd_pifmmiun02.vscroll.attribute("max") == grd_pifmmiun02.vscroll.attribute("pos")) {
- // end of scroll
- model.setValue("/root/send/clam_med/offset", Number(grd_pifmmiun02.rows)-1); // grid의 header row는 제외
- submit("TRPIF30117");
- grd_pifmmiun02.dispatch("onmouseup"); // 스크롤바 처리를 위한 이벤트 발생
- }
- }
- }
-
- // 명일련으로 바로가기 데이터 못찾았을시 다음페이지 불러와서 다시 재조회하는 function
- function researchgridmed(item1, item2) {
- flagmed = "N";
- var endrow = grd_pifmmiun02.rows;
- fSubmitOnScroll2Med();
- model.refresh();
-
- var rows = grd_pifmmiun02.rows;
- var cnt = 0;
- if(endrow < rows) {
- // 명일련으로 바로가기 시도할 경우
- if(item1 == "docuseqno") {
- for(var i=endrow;i<rows;i++) {
- if(model.getValue("/root/main/list04med/gridpifmmiun02["+i+"]/docuseqno") == item2) {
- //grd_pifmiunc02.select(i,9) = true;
- grd_pifmmiun02.row = i;
- grd_pifmmiun02.topRow = i;
- cnt++;
- flagmed = "Y";
- return false;
- }
- }
- if(cnt == 0) {
- researchgridmed(docuseqno);
- }
- }
-
- // 등록번호로 바로가기 시도할 경우
- if(item1 == "pid") {
- for(var i=endrow;i<rows;i++) {
- if(model.getValue("/root/main/list04med/gridpifmmiun02["+i+"]/pid") == item2) {
- //grd_pifmiunc02.select(i,9) = true;
- grd_pifmmiun02.row = i;
- grd_pifmmiun02.topRow = i;
- cnt++;
- flagmed = "Y";
- return false;
- }
- }
- if(cnt == 0) {
- researchgridmed(docuseqno);
- }
- }
-
- // 수진자명으로 바로가기 시도할 경우
- if(item1 == "patnm") {
- for(var i=endrow;i<rows;i++) {
- if(model.getValue("/root/main/list04med/gridpifmmiun02["+i+"]/patnm") == item2) {
- //grd_pifmiunc02.select(i,9) = true;
- grd_pifmmiun02.row = i;
- grd_pifmmiun02.topRow = i;
- cnt++;
- flagmed = "Y";
- return false;
- }
- }
- if(cnt == 0) {
- researchgridmed(item1, item2);
- }
- }
-
- } else {
- if(item1 == "docuseqno") {
- messageBox("찾으시는 명일련이","I004");
- }
- if(item1 == "pid") {
- messageBox("찾으시는 등록번호가","I004");
- }
- if(item1 == "patnm") {
- messageBox("찾으시는 수진자가","I004");
- }
- return false;
- }
- }
-
- // 명일련으로 그리드 데이터 바로찾기할때 그리드에 해당 데이터 없을시 다음 페이지 자동 조회후 다시 명일련으로 자동 조회
- function fSubmitOnScroll2Med() {
- model.setValue("/root/send/clam_med/offset", Number(grd_pifmmiun02.rows)-1); // grid의 header row는 제외
- submit("TRPIF30117");
- grd_pifmmiun02.dispatch("onmouseup"); // 스크롤바 처리를 위한 이벤트 발생
- }
-
-
- // 2008.01.10 이창재. 요양급여 조회결과 그리드의 스크롤 관련 자동조회여부
- function autoScrollYN() {
- // 조회결과 갯수를 페이지사이즈로 나눈 나머지가 0이 아니면 더이상 조회할 데이터가 없다는 것이므로 스크롤시 자동조회 기능 없앰.
- if((grd_pifmiunc02.rows-1)%Number(model.getValue("/root/send/clam_mtrt/pagesize")) != 0) {
- flag = "N";
- } else {
- flag = "Y";
- }
- }
-
- // 2008.01.10 이창재. 의료급여 조회결과 그리드의 스크롤 관련 자동조회여부
- function autoScrollYNMed() {
- // 조회결과 갯수를 페이지사이즈로 나눈 나머지가 0이 아니면 더이상 조회할 데이터가 없다는 것이므로 스크롤시 자동조회 기능 없앰.
- if((grd_pifmmiun02.rows-1)%Number(model.getValue("/root/send/clam_med/pagesize")) != 0) {
- flagmed = "N";
- }
- }
-
- function fclaminfoserch() {
- model.resetInstanceNode("/root/main/list00med/list00_cpcd");
- model.resetInstanceNode("/root/main/list00med/list00_assocd");
- model.resetInstanceNode("/root/main/list01med");
- model.resetInstanceNode("/root/main/list02med");
- model.resetInstanceNode("/root/main/list03med");
- model.resetInstanceNode("/root/main/list04med");
-
- // cmb_cpcd.value = "";
- // cmb_assocd.value = "";
-
- model.setValue("/root/send/acptclam/cpcd", "");
- model.setValue("/root/send/acptclam/assocd", "");
-
- // 2010.01.26 조회시에 셋팅되게 되어 있던걸 이쪽으로 옮겼다. 청구사항 조회시 얘네들이 셋팅 되어 있어야 하니까.
- if(rdo_acptnomed.value == "1") {
- model.setValue("/root/send/clam_med/acptno", model.getValue("/root/send/acptclam/item01")) ;
- model.setValue("/root/send/clam_med/clamym", model.getValue("/root/send/acptclam/item02")) ;
- } else if(rdo_acptnomed.value == "2") {
- model.setValue("/root/send/clam_med/acptno", model.getValue("/root/send/acptclam/item02")) ;
- model.setValue("/root/send/clam_med/clamym", model.getValue("/root/send/acptclam/item01")) ;
- }
- // model.setValue("/root/send/clam_med/cpcd", model.getValue("/root/send/acptclam/cpcd")) ;
- // model.setValue("/root/send/clam_med/assocd", model.getValue("/root/send/acptclam/assocd")) ;
- //////////////////////////////////// 요기까지임.
-
- /// 청구사항 조회
- if(submit("TRPIF30115")) { //청구내역
- model.setValue("/root/send/acptclam/clamno", model.getValue("/root/main/list02med/gridpifmmiun00/clamno"));
- model.setValue("/root/send/clam_med/clamno", model.getValue("/root/main/list02med/gridpifmmiun00/clamno")) ;
- submit("TRPIF30108") ; // 해당 접수번호에 존재하는 시도코드 조회
- model.setValue("/root/send/clam_med/cpcd", model.getValue("/root/send/acptclam/cpcd")) ;
- model.setValue("/root/send/clam_med/assocd", model.getValue("/root/send/acptclam/assocd")) ;
- }
- /*if(cmb_cpcd.length > 0) {
- model.setFocus("cmb_cpcd");
- //cmb_cpcd.select(0);
- }*/
-
- if(cmb_cpcd.length > 0) {
- addComboItem("cmb_cpcd"," ");
- model.setFocus("cmb_cpcd");
- }
-
- searchProc();
- }
- ]]>
- </script>
- </xhtml:head>
- <xhtml:body guideline="1,1192;" style="margin-left:8; margin-top:0; margin-right:8; margin-bottom:0; ">
- <group id="group1" style="left:0px; top:0px; width:1194px; height:13px; ">
- <caption id="caption6" class="tit_1" style="left:0px; top:0px; width:254px; height:14px; ">개인별미수관리</caption>
- </group>
- <group id="group3" scroll="auto" style="left:0px; top:13px; width:1195px; height:722px; ">
- <col type="checkbox"/>
- <switch id="switch1" style="left:0px; top:36px; width:1194px; height:679px; ">
- <case id="case1" class="sw_box" selected="true" style="left:0px; top:0px; width:1194px; height:695px; ">
- <datagrid id="grd_pifmiunc02" nodeset="/root/main/list04/gridpifmiunc02" class="datagrid2" caption="청구월^미수일련번호^기관기호^심사차수^접수번호^청구번호^기존주민보류^주민
보류^청구과^진료과^명일련^등록번호^수진자^주민번호^청구
총진료비^청구
본인부담^청구액^100미만 청구
총진료비^100미만 청구
본인부담^100미만 청구액^청구상한금^청구지원금^청구장애인^심결
총진료비^심결
본인부담^심사결정액^100미만 심결
총진료비^100미만 심결
본인부담^100미만 심결
청구액^심결상한금^심결지원금^심결장애인^조정소계I^조정소계II^조정삭감액^조정사유^조정사유^실삭감액^본인
추가부담금^진료의^산재유형^피보험자^기관기호^기관명^구분
(정률)^내원
일수^요양개시일^상태
구분" colsep="^" colwidth="30, 30, 30, 37, 30, 30, 30, 30, 45, 45, 45, 70, 60, 100, 80, 80, 80, 100, 100, 100, 80, 80, 74, 80, 80, 80, 100, 100, 100, 79, 80, 73, 80, 80, 80, 30, 30, 80, 80, 50, 60, 60, 80, 100, 40, 40, 80, 40, 100, 100" dataheight="25" defaultrows="1" explorerbar="sortshowmove" extendlastcol="false" mergecellsfixedrows="bycolrec" rowheader="seq" rowheight="1" rowsep="|" style="left:0px; top:369px; width:1192px; height:276px; ">
- <col ref="clamym" visibility="hidden"/>
- <col ref="decoseq" visibility="hidden"/>
- <col ref="instcd" visibility="hidden"/>
- <col ref="judgdg" visibility="hidden"/>
- <col ref="acptno" visibility="hidden"/>
- <col ref="clamno" visibility="hidden"/>
- <col ref="firstresdnrete" visibility="hidden"/>
- <col checkvalue="Y,N" ref="resdnrete" type="checkbox"/>
- <col ref="clamdeptnm"/>
- <col ref="orddeptnm" style="text-align:center; "/>
- <col ref="docuseqno" style="text-align:center; "/>
- <col ref="pid" style="text-align:center; "/>
- <col ref="patnm" style="text-align:center; "/>
- <col ref="patrrgstno" format="999999-9999999" style="text-align:center; "/>
- <col ref="clmcstotamt" format="(-)#,###" style="text-align:right; "/>
- <col ref="clownbamt" format="(-)#,###" style="text-align:right; "/>
- <col ref="clclamamt" format="(-)#,###" style="text-align:right; "/>
- <col ref="clblwtotownamt" format="(-)#,###" style="text-align:right; "/>
- <col ref="clblwownbamt" format="(-)#,###" style="text-align:right; "/>
- <col ref="clblwinsuclamamt" format="(-)#,###" style="text-align:right; "/>
- <col ref="clownbmaxexamt" format="(-)#,###" style="text-align:right; "/>
- <col ref="clsuppamt" format="(-)#,###" style="text-align:right; "/>
- <col ref="clhandicaprfund" format="(-)#,###" style="text-align:right; "/>
- <col ref="jrmcstotamt" format="(-)#,###" style="text-align:right; "/>
- <col ref="jrownbamt" format="(-)#,###" style="text-align:right; "/>
- <col ref="jrjudgdeciamt" format="(-)#,###" style="text-align:right; "/>
- <col ref="jrblwtotownamt" format="(-)#,###" style="text-align:right; "/>
- <col ref="jrblwownbamt" format="(-)#,###" style="text-align:right; "/>
- <col ref="jrblwinsuclamamt" format="(-)#,###" style="text-align:right; "/>
- <col ref="jrownbmaxexamt" format="(-)#,###" style="text-align:right; "/>
- <col ref="jrsuppamt" format="(-)#,###" style="text-align:right; "/>
- <col ref="jrhandicaprfund" format="(-)#,###" style="text-align:right; "/>
- <col ref="adjtamt1" format="(-)#,###" style="text-align:right; "/>
- <col ref="adjtamt2" format="(-)#,###" style="text-align:right; "/>
- <col ref="adjtamtsum" format="(-)#,###" style="text-align:right; "/>
- <col ref="adjtresn1" style="text-align:center; "/>
- <col ref="adjtresn2" style="text-align:center; "/>
- <col ref="orgreduamt" format="(-)#,###" style="text-align:right; "/>
- <col ref="jrownaddbamt" format="(-)#,###" style="text-align:right; "/>
- <col ref="orddridnm" style="text-align:center; "/>
- <col disabled="true" ref="insukind" type="combo" style="text-align:center; ">
- <choices>
- <itemset nodeset="/root/init/P0008list/P0008">
- <label ref="cdnm"/>
- <value ref="cdid"/>
- </itemset>
- </choices>
- </col>
- <col ref="insdnm" style="text-align:center; "/>
- <col ref="corpmark"/>
- <col ref="corpmarknm"/>
- <col ref="fixrateyn" style="text-align:center; "/>
- <col ref="chosindayno" format="#,###" style="text-align:right; "/>
- <col ref="ordfromdd" format="yyyy-mm-dd" style="text-align:center; "/>
- <col ref="statflag" visibility="hidden" style="text-align:center; "/>
- <col ref="clamdg" visibility="hidden"/>
- <col ref="pidsn" visibility="hidden"/>
- <script type="javascript" ev:event="onclick">
- <![CDATA[
- var vrowindex, vcolindex, vresdnrete, vstatflag ;
- vrowindex = grd_pifmiunc02.row;
- vcolindex = grd_pifmiunc02.col;
-
- if(vrowindex > 1 && vcolindex == 8) {
-
- // vresdnrete = model.getValue("/root/main/list04/gridpifmiunc02[" + vrowindex + "]/resdnrete") ;
-
- // if (vresdnrete == 'N' ) return ;
-
- vstatflag = model.getValue("/root/main/list04/gridpifmiunc02[" + vrowindex + "]/statflag") ;
-
- //vstatflag = '02' 심사보류, '03' 주민보류, '04' 반송(개발자 정의코드)
- if (vstatflag == "02") {
- messageBox("심사보류건은 선택할 수","I004");
- model.setValue("/root/main/list04/gridpifmiunc02[" + vrowindex + "]/resdnrete", "N") ;
- return ;
- }
-
- if (vstatflag == "03") {
- messageBox("주민보류 삭제는 주민보류 팝업화면에서만","I006");
- model.setValue("/root/main/list04/gridpifmiunc02[" + vrowindex + "]/resdnrete", "Y") ;
- return ;
- }
-
- if (vstatflag == "04" ) {
- messageBox("반송건은 선택할 수","I004");
- model.setValue("/root/main/list04/gridpifmiunc02[" + vrowindex + "]/resdnrete", "N") ;
- return ;
- }
- }
- ]]>
- </script>
- <!--script type="javascript" ev:event="onscroll">
- <![CDATA[
- fSubmitOnScroll(flag); // 스크롤바 맨밑에 왔을시 자동실행되어 다음 페이지 조회해옴
- ]]>
- </script-->
- <script type="javascript" ev:event="oncopy">
- <![CDATA[
- grid_oncopy();
- ]]>
- </script>
- <script type="javascript" ev:event="onaftersort">
- <![CDATA[
- grd_pifmiunc02.gridToInstance();
- ]]>
- </script>
- </datagrid>
- <group id="group4" style="left:0px; top:5px; width:1192px; height:35px; vertical-align:top; ">
- <shape id="roundrect3" class="roundrect_search" appearance="roundrect" ellipsewidth="10" ellipseheight="10" style="left:0px; top:0px; width:1192px; height:35px; background-color:#fffbf2; border-color:#ffd799; "/>
- <button id="button15" class="btn1_letter2" style="left:1122px; top:7px; width:56px; height:22px; ">
- <caption>조회</caption>
- <script type="javascript" ev:event="onclick">
- <![CDATA[
- model.removenode("/root/main/list04");
- submit("TRPIF30106") ; //명세서별 조회(청구데이터만 조회)
- // search();
- ]]>
- </script>
- </button>
- <line id="line2" class="line_4" style="x1:1106px; y1:7px; x2:1106px; y2:29px; border-color:#ffe4bb; border-left-style:solid; "/>
- <input id="ipt_srchcond01" ref="/root/send/srchcond/srchcond01" class="input_s_essential" inputtype="button" maxlength="7" style="left:174px; top:8px; width:105px; height:19px; ">
- <script type="javascript" ev:event="DOMFocusOut">
- <![CDATA[
- if(ipt_srchcond01.value == "") {
- return false;
- }
- //if(event.keyCode == "13") {
- // setInputNodeCurText();
- // model.removenode("/root/main/list00");
- model.resetInstanceNode("/root/main/list00");
- model.removenode("/root/main/list01");
- model.removenode("/root/main/list02");
- model.removenode("/root/main/list03");
- model.removenode("/root/main/list04");
- model.setValue("/root/send/clam_mtrt/docuseqnofrom", "");
- model.setValue("/root/send/clam_mtrt/docuseqnoto", "");
-
- // model.resetInstanceNode("/root/main/list01");
- // model.resetInstanceNode("/root/main/list02");
- // model.resetInstanceNode("/root/main/list03");
- // model.resetInstanceNode("/root/main/list04");
- model.setValue("/root/send/srchcond/srchcond02","");
- // model.setValue("/root/send/srchcond/srchcond03","");
- model.setValue("/root/send/srchcond/insukind","11");
- model.refresh();
-
- var srchflag = model.getValue("/root/send/srchcond/searchflag");
-
- if(srchflag == "1") {
- if (ipt_srchcond01.value == "") {
- messageBox("접수번호를","C001") ;
- model.setfocus("ipt_srchcond01");
- return false;
- }
- }
-
- if(srchflag == "2") {
- if (ipt_srchcond01.value == "") {
- messageBox("청구년월을","C001") ;
- model.setfocus("ipt_srchcond01");
- return false;
- }
- }
- // Session_Init();
- // model.setValue("/root/send/send_mtrt/searchflag", "2") ;
- submit("TRPIF30101") ;
-
- if(ipt_acptnocnt.value > 1) {
- opt_comment.visible = true;
- opt_comment.value = "[ 같은 접수번호가 여러개("+ipt_acptnocnt.value+"개) 있습니다. ]";
- } else {
- opt_comment.visible = false;
- }
- // model.setfocus("cmb_clamymlist");
- if(cmb_srchcond02.length > 0) {
- if(cmb_srchcond02.length == 1) {
- cmb_srchcond02.select(0);
- } else {
- model.setFocus("cmb_srchcond02");
- }
- // search();
- }
- //}
- ]]>
- </script>
- <script type="javascript" ev:event="onbuttonclick">
- <![CDATA[
-
- var srchflag = model.getValue("/root/send/srchcond/searchflag");
-
- //조회조건이 청구년월일 경우 버튼 동작 안하도록 설정
- if(srchflag == "2") {
- return false;
- }
-
- model.makeNode("/root/send/send01/termflag");
- model.makeNode("/root/send/send01/fromdd");
- model.makeNode("/root/send/send01/todd");
- model.makeNode("/root/send/send01/insukind");
- model.makeNode("/root/send/send01/acptno");
- model.setValue("/root/send/send01/insukind","11");
- setParameter("SPPIF30302_RTNTYPE", "P");
-
- modal("SPPIF30302", 1, 1, 1, "SPPIF30302", "/root/send/send01", "/root/send");
-
- model.setValue("/root/send/srchcond/srchcond01", getParameter("SPPIF30302_acptno"));
-
- model.removeNodeset("/root/send/send01");
- clearParameter("SPPIF30302_RTNTYPE");
- clearParameter("SPPIF30302_acptno");
-
- ipt_srchcond01.refresh();
- if( model.getValue("/root/send/srchcond/srchcond01") != '' ){
- //ipt_srchcond01.dispatch("DOMFocusOut");
- model.setFocus("cmb_srchcond02");
- }
-
- ]]>
- </script>
- </input>
- <select1 id="cmb_srchcond02" ref="/root/send/srchcond/srchcond02" class="combo_search" appearance="minimal" style="left:280px; top:8px; width:100px; height:19px; ">
- <choices>
- <itemset nodeset="/root/main/list00/srchcond">
- <label ref="srchcond02"/>
- <value ref="srchcond02"/>
- </itemset>
- </choices>
- <script type="javascript" ev:event="xforms-select">
- <![CDATA[
- search();
- ]]>
- </script>
- </select1>
- <select1 id="rdo_srchcond" ref="/root/send/srchcond/searchflag" class="radio_search" appearance="full" cols="2" overflow="visible" style="left:15px; top:9px; width:145px; height:17px; font-weight:bold; border-style:none; ">
- <choices>
- <item>
- <label>접수번호</label>
- <value>1</value>
- </item>
- <item>
- <label>청구년월</label>
- <value>2</value>
- </item>
- </choices>
- <script type="javascript" ev:event="xforms-value-changed">
- <![CDATA[
- if(rdo_srchcond.value == "1") {
- model.resetInstanceNode("/root/main/list00");
- ipt_srchcond01.value = "";
- ipt_srchcond01.attribute("maxlength") = 7;
- model.refresh();
- } else {
- model.resetInstanceNode("/root/main/list00");
- ipt_srchcond01.value = "";
- ipt_srchcond01.attribute("maxlength") = 6;
- model.refresh();
- }
- model.setFocus("ipt_srchcond01");
- //model.setValue("/root/send/acptclam/searchflag", "1");
- ]]>
- </script>
- </select1>
- <input id="ipt_acptnocnt" ref="/root/main/list00/acptnocnt/cnt" visibility="hidden" style="left:820px; top:10px; width:30px; height:19px; "/>
- <output id="opt_comment" visibility="hidden" style="left:595px; top:8px; width:220px; height:19px; color:#999999; "/>
- <input id="input87" ref="/root/main/list02/gridpifmiunc00/acptdd" class="input_s_essential" style="left:491px; top:8px; width:90px; height:19px; "/>
- <caption id="caption115" class="search_name" style="left:399px; top:9px; width:86px; height:17px; ">접수일자 :</caption>
- <caption id="caption119" class="search_name" style="left:855px; top:9px; width:86px; height:17px; ">명일련 :</caption>
- <input id="ipt_docuseqnofrom" ref="/root/send/clam_mtrt/docuseqnofrom" class="input_search" style="left:930px; top:8px; width:70px; height:19px; ">
- <script type="javascript" ev:event="onkeydown">
- <![CDATA[
- if(event.keyCode == "13") { // enter key
- setInputNodeCurText();
- ipt_docuseqnoto.value = ipt_docuseqnofrom.value;
- model.refreshpart("/root/send/clam_mtrt");
- }
- ]]>
- </script>
- </input>
- <input id="ipt_docuseqnoto" ref="/root/send/clam_mtrt/docuseqnoto" class="input_search" style="left:1021px; top:8px; width:70px; height:19px; "/>
- <caption id="caption121" style="left:1005px; top:10px; width:15px; height:20px; ">~</caption>
- </group>
- <line id="line8" class="line_2" style="x1:0px; y1:216px; x2:205px; y2:216px; "/>
- <line id="line9" class="line_1" style="x1:1016px; y1:164px; x2:1192px; y2:164px; "/>
- <input id="input8" ref="/root/main/list03/gridpifmiunc01/sendtotordamt" class="input_default" format="(-)#,###" style="left:922px; top:195px; width:87px; height:19px; text-align:right; "/>
- <caption id="caption50" class="cell_1" style="left:212px; top:293px; width:96px; height:23px; vertical-align:middle; ">청구액</caption>
- <line id="line20" class="line_2" style="x1:821px; y1:217px; x2:1008px; y2:217px; "/>
- <line id="line21" class="line_2" style="x1:821px; y1:241px; x2:1008px; y2:241px; "/>
- <line id="line10" class="line_3" style="x1:0px; y1:140px; x2:218px; y2:140px; "/>
- <caption id="caption41" class="tit_2" style="left:827px; top:149px; width:129px; height:13px; ">반송내역사항</caption>
- <input id="input20" ref="/root/main/list03/gridpifmiunc01/sendsuppcnt" class="input_default" format="#,###" style="left:921px; top:270px; width:28px; height:19px; text-align:right; "/>
- <caption id="caption30" class="cell_1" style="left:821px; top:219px; width:98px; height:23px; vertical-align:middle; ">[반송] 반송액</caption>
- <line id="line22" class="line_2" style="x1:821px; y1:266px; x2:1008px; y2:266px; "/>
- <line id="line11" class="line_2" style="x1:0px; y1:241px; x2:205px; y2:241px; "/>
- <caption id="caption42" class="tit_2" style="left:1020px; top:149px; width:110px; height:13px; ">삭감내역사항</caption>
- <caption id="caption31" class="cell_1" style="left:821px; top:194px; width:98px; height:23px; vertical-align:middle; ">[반송] 총진료비</caption>
- <input id="input10" ref="/root/main/list03/gridpifmiunc01/sendsuppamt" class="input_default" format="(-)#,###" style="left:950px; top:270px; width:59px; height:19px; text-align:right; "/>
- <line id="line12" class="line_2" style="x1:0px; y1:266px; x2:205px; y2:266px; "/>
- <input id="input11" ref="/root/main/list03/gridpifmiunc01/jrownaddbamt" class="input_default" format="(-)#,###" style="left:311px; top:246px; width:92px; height:19px; text-align:right; "/>
- <caption id="caption32" class="cell_1" style="left:1016px; top:219px; width:85px; height:23px; vertical-align:middle; ">실삭감액</caption>
- <line id="line24" class="line_2" style="x1:1017px; y1:192px; x2:1191px; y2:192px; "/>
- <caption id="caption1" class="tit_2" style="left:5px; top:98px; width:160px; height:13px; ">심사차수별 미수관리</caption>
- <input id="input12" ref="/root/main/list03/gridpifmiunc01/sendmaxexamt" class="input_default" format="(-)#,###" style="left:950px; top:245px; width:59px; height:19px; text-align:right; "/>
- <input id="input23" ref="/root/main/list03/gridpifmiunc01/sendamt" class="input_default" format="(-)#,###" style="left:922px; top:221px; width:87px; height:19px; text-align:right; "/>
- <line id="line14" class="line_2" style="x1:212px; y1:192px; x2:616px; y2:192px; "/>
- <line id="line25" class="line_2" style="x1:1017px; y1:217px; x2:1191px; y2:217px; "/>
- <caption id="caption11" class="cell_1" style="left:0px; top:218px; width:85px; height:23px; vertical-align:middle; ">본인부담금</caption>
- <caption id="caption22" class="cell_1" style="left:0px; top:243px; width:85px; height:23px; vertical-align:middle; ">청구액</caption>
- <input id="input13" ref="/root/main/list03/gridpifmiunc01/sendcnt" class="input_default" format="#,###" style="left:922px; top:171px; width:87px; height:19px; text-align:right; "/>
- <caption id="caption23" class="cell_1" style="left:821px; top:243px; width:98px; height:23px; vertical-align:middle; ">[반송] 상한액</caption>
- <caption id="caption34" class="cell_1" style="left:1016px; top:194px; width:85px; height:23px; vertical-align:middle; ">조정금액</caption>
- <input id="input24" ref="/root/main/list03/gridpifmiunc01/cutcnt" class="input_default" format="#,###" style="left:1104px; top:171px; width:88px; height:19px; text-align:right; "/>
- <caption id="caption12" class="cell_1" style="left:1009px; top:118px; width:85px; height:21px; vertical-align:middle; background-color:#ffff99; ">수진자</caption>
- <caption id="caption13" class="cell_1" style="left:212px; top:169px; width:96px; height:23px; vertical-align:middle; ">건수</caption>
- <input id="input14" ref="/root/main/list03/gridpifmiunc01/jrownbrtnamt" class="input_default" format="(-)#,###" style="left:311px; top:221px; width:92px; height:19px; text-align:right; "/>
- <caption id="caption24" class="cell_1" style="left:821px; top:268px; width:98px; height:23px; vertical-align:middle; ">[반송] 지원금</caption>
- <input id="input25" ref="/root/main/list03/gridpifmiunc01/adjtamt" class="input_default" format="(-)#,###" style="left:1104px; top:195px; width:88px; height:19px; text-align:right; "/>
- <select1 id="cmb_judgdg" ref="/root/send/clam_mtrt/judgdg" class="combo_default" appearance="minimal" style="left:118px; top:119px; width:100px; height:19px; ">
- <choices>
- <itemset nodeset="/root/main/list01/judgdg01">
- <label ref="judgdg"/>
- <value ref="judgdg"/>
- </itemset>
- </choices>
- <script type="javascript" ev:event="xforms-select">
- <![CDATA[
- if(cmb_judgdg.value == "없음") {
- return false;
- } else {
- model.removenode("/root/main/list03");
- model.removenode("/root/main/list04");
-
- model.setValue("/root/send/clam_mtrt/insukind", model.getValue("/root/send/srchcond/insukind"));
- model.refresh();
-
- var vjudgdg = model.getValue("/root/send/clam_mtrt/judgdg");
-
- if (vjudgdg == "") {
- messageBox("심사차수를","I007");
- model.setfocus("cmb_judgdg");
- return false;
- }
-
- // submit("TRPIF30104") ; //청구내역
- submit("TRPIF30105") ; //심결내역
- // submit("TRPIF30106") ; //명세서별 조회
- // searchByJudgdg();
- }
- ]]>
- </script>
- </select1>
- <caption id="caption4" class="cell_1" style="left:0px; top:169px; width:85px; height:23px; vertical-align:middle; ">건수</caption>
- <caption id="caption25" class="cell_1" style="left:212px; top:218px; width:96px; height:23px; vertical-align:middle; ">본인부담환급금</caption>
- <input id="input15" ref="/root/main/list03/gridpifmiunc01/jrsltcnt" class="input_default" format="#,###" style="left:311px; top:171px; width:92px; height:19px; text-align:right; "/>
- <caption id="caption14" class="cell_1" style="left:808px; top:117px; width:85px; height:23px; vertical-align:middle; background-color:#ffff99; ">등록번호</caption>
- <line id="line1" class="line_1" style="x1:0px; y1:113px; x2:1192px; y2:113px; "/>
- <caption id="caption5" class="tit_2" style="left:6px; top:150px; width:78px; height:13px; ">청구사항</caption>
- <caption id="caption15" class="cell_1" style="left:212px; top:268px; width:96px; height:23px; vertical-align:middle; ">위탁검사지급금</caption>
- <input id="input27" ref="/root/main/list03/gridpifmiunc01/jrtrudirecpamt" class="input_default" format="(-)#,###" style="left:311px; top:271px; width:92px; height:19px; text-align:right; "/>
- <caption id="caption37" class="cell_1" style="left:1016px; top:169px; width:85px; height:23px; vertical-align:middle; ">건수</caption>
- <caption id="caption26" class="cell_1" style="left:0px; top:194px; width:85px; height:23px; vertical-align:middle; ">총진료비</caption>
- <input id="input16" ref="/root/main/list03/gridpifmiunc01/clownbamt" class="input_default" format="(-)#,###" style="left:88px; top:219px; width:117px; height:19px; text-align:right; "/>
- <line id="line29" class="line_3" style="x1:0px; y1:340px; x2:205px; y2:340px; "/>
- <line id="line3" class="line_1" style="x1:212px; y1:164px; x2:616px; y2:164px; "/>
- <input id="input17" ref="/root/main/list03/gridpifmiunc01/jrownbamt" class="input_default" format="(-)#,###" style="left:311px; top:196px; width:92px; height:19px; text-align:right; "/>
- <input id="input39" ref="/root/main/list03/gridpifmiunc01/clamamt2" class="input_default" format="(-)#,###" style="left:311px; top:295px; width:92px; height:19px; text-align:right; "/>
- <caption id="caption7" class="cell_1" style="left:407px; top:194px; width:90px; height:23px; vertical-align:middle; ">지원금 | 소계</caption>
- <input id="input2" ref="/root/main/list03/gridpifmiunc01/jrjudgdeciamt" class="input_default" format="(-)#,###" style="left:500px; top:221px; width:116px; height:19px; text-align:right; "/>
- <line id="line19" class="line_2" style="x1:821px; y1:192px; x2:1008px; y2:192px; "/>
- <caption id="caption16" class="cell_1" style="left:606px; top:117px; width:85px; height:23px; vertical-align:middle; background-color:#ffff99; ">명일련</caption>
- <caption id="caption27" class="cell_1" style="left:0px; top:117px; width:115px; height:23px; vertical-align:middle; ">심사차수</caption>
- <caption id="caption39" class="tit_2" style="left:221px; top:149px; width:78px; height:13px; ">심결사항</caption>
- <caption id="caption17" class="cell_1" style="left:212px; top:194px; width:96px; height:23px; vertical-align:middle; ">본인부담금</caption>
- <caption id="caption28" class="cell_1" style="left:821px; top:169px; width:98px; height:23px; vertical-align:middle; ">[반송] 건수</caption>
- <line id="line4" class="line_1" style="x1:0px; y1:164px; x2:205px; y2:164px; "/>
- <input id="input3" ref="/root/main/list03/gridpifmiunc01/clamcnt" class="input_default" format="#,###" style="left:88px; top:171px; width:117px; height:19px; text-align:right; "/>
- <input id="input18" ref="/root/main/list03/gridpifmiunc01/clmcstotamt" class="input_default" format="(-)#,###" style="left:88px; top:195px; width:117px; height:19px; text-align:right; "/>
- <caption id="caption9" class="cell_1" style="left:212px; top:243px; width:96px; height:23px; vertical-align:middle; ">본인추가부담금</caption>
- <caption id="caption18" class="cell_1" style="left:407px; top:219px; width:90px; height:23px; vertical-align:middle; ">심사결정액</caption>
- <line id="line5" class="line_2" style="x1:0px; y1:192px; x2:205px; y2:192px; "/>
- <line id="line6" class="line_1" style="x1:821px; y1:164px; x2:1009px; y2:164px; "/>
- <caption id="caption19" class="cell_1" style="left:0px; top:293px; width:85px; height:23px; vertical-align:middle; ">지원금 | 소계</caption>
- <line id="line7" class="line_3" style="x1:606px; y1:139px; x2:1192px; y2:139px; "/>
- <input id="input6" ref="/root/main/list03/gridpifmiunc01/clclamamt" class="input_default" format="(-)#,###" style="left:88px; top:245px; width:117px; height:19px; text-align:right; "/>
- <input id="input55" ref="/root/main/list03/gridpifmiunc01/clsuppcnt" class="input_default" format="#,###" style="left:88px; top:295px; width:37px; height:19px; text-align:right; "/>
- <input id="input56" ref="/root/main/list03/gridpifmiunc01/orgreduamt" class="input_default" format="(-)#,###" style="left:1104px; top:221px; width:88px; height:19px; text-align:right; "/>
- <line id="line66" class="line_1" style="x1:0px; y1:60px; x2:1192px; y2:60px; "/>
- <caption id="caption86" class="cell_1" style="left:606px; top:64px; width:85px; height:23px; vertical-align:middle; ">내원유형</caption>
- <caption id="caption87" class="cell_1" style="left:1009px; top:65px; width:85px; height:23px; vertical-align:middle; ">청구번호</caption>
- <line id="line67" class="line_3" style="x1:0px; y1:88px; x2:1192px; y2:88px; "/>
- <input id="input60" ref="/root/main/list02/gridpifmiunc00/clamym" class="input_default" format="yyyy-mm" style="left:88px; top:66px; width:111px; height:19px; "/>
- <input id="input61" ref="/root/main/list02/gridpifmiunc00/clamflagnm" class="input_default" style="left:492px; top:66px; width:111px; height:19px; "/>
- <caption id="caption88" class="cell_1" style="left:1px; top:65px; width:85px; height:23px; vertical-align:middle; ">청구년월</caption>
- <input id="input63" ref="/root/main/list02/gridpifmiunc00/ordfildnm" class="input_default" style="left:895px; top:66px; width:111px; height:19px; "/>
- <input id="input64" ref="/root/main/list02/gridpifmiunc00/ordym" class="input_default" format="yyyy-mm" style="left:290px; top:66px; width:111px; height:19px; "/>
- <input id="input65" ref="/root/main/list02/gridpifmiunc00/ioflag" class="input_default" style="left:694px; top:66px; width:111px; height:19px; "/>
- <input id="input66" ref="/root/main/list02/gridpifmiunc00/clamno" class="input_default" style="left:1097px; top:66px; width:92px; height:19px; "/>
- <caption id="caption90" class="cell_1" style="left:404px; top:65px; width:85px; height:23px; vertical-align:middle; ">청구구분</caption>
- <caption id="caption91" class="cell_1" style="left:202px; top:64px; width:85px; height:23px; vertical-align:middle; ">미수월</caption>
- <caption id="caption92" class="tit_2" style="left:6px; top:45px; width:111px; height:13px; ">심사결정사항</caption>
- <caption id="caption93" class="cell_1" style="left:808px; top:65px; width:85px; height:23px; vertical-align:middle; ">진료분야</caption>
- <line id="line30" class="line_3" style="x1:212px; y1:340px; x2:402px; y2:340px; "/>
- <line id="line31" class="line_3" style="x1:821px; y1:315px; x2:1009px; y2:315px; "/>
- <line id="line32" class="line_3" style="x1:1016px; y1:243px; x2:1192px; y2:243px; "/>
- <line id="line16" class="line_2" style="x1:212px; y1:242px; x2:402px; y2:242px; "/>
- <line id="line17" class="line_2" style="x1:212px; y1:267px; x2:402px; y2:267px; "/>
- <line id="line18" class="line_2" style="x1:212px; y1:292px; x2:402px; y2:292px; "/>
- <line id="line70" class="line_3" style="x1:407px; y1:242px; x2:616px; y2:242px; "/>
- <group id="group6" scroll="auto" style="left:0px; top:647px; width:1192px; height:27px; ">
- <line id="line26" class="line_6" style="x1:0px; y1:0px; x2:1192px; y2:0px; "/>
- <button id="button1" class="btn3_letter6" style="left:0px; top:5px; width:104px; height:22px; ">
- <caption>주민보류관리</caption>
- <script type="javascript" ev:event="onclick">
- <![CDATA[
- // var i, j = 0, vresdnrete ;
- // var vrowcount = grd_piehf202.rows ;
-
- // for (i = 1; i < vrowcount ; i++) {
- // vresdnrete = model.getValue("/root/main/list02/gridpiehf202[" + i + "]/resdnrete");
- // if (vresdnrete == "Y") {
- // j = j + 1 ;
- // model.setValue("/root/main/list03/gridpiehf202lnk[" + i + "]/judgdg", model.getValue("/root/main/list02/gridpiehf202/judgdg"));
- // model.setValue("/root/main/list03/gridpiehf202lnk[" + i + "]/acptno", model.getValue("/root/main/list02/gridpiehf202/acptno"));
- // model.setValue("/root/main/list03/gridpiehf202lnk[" + i + "]/clamno", model.getValue("/root/main/list02/gridpiehf202/clamno"));
- // model.setValue("/root/main/list03/gridpiehf202lnk[" + i + "]/docuseqno", model.getValue("/root/main/list02/gridpiehf202/docuseqno"));
- // model.makeNode( "/root/main/list03/gridpiehf202lnk[" + j + "]/judgdg");
- // model.makeNode( "/root/main/list03/gridpiehf202lnk[" + j + "]/acptno");
- // model.makeNode( "/root/main/list03/gridpiehf202lnk[" + j + "]/clamno");
- // model.makeNode( "/root/main/list03/gridpiehf202lnk[" + j + "]/docuseqno");
-
- // model.setValue("/root/main/list03/gridpiehf202lnk[" + j + "]/judgdg", model.getValue("/root/main/list02/gridpiehf202[" + i + "]/judgdg"));
- // model.setValue("/root/main/list03/gridpiehf202lnk[" + j + "]/acptno", model.getValue("/root/main/list02/gridpiehf202[" + i + "]/acptno"));
- // model.setValue("/root/main/list03/gridpiehf202lnk[" + j + "]/clamno", model.getValue("/root/main/list02/gridpiehf202[" + i+ "]/clamno"));
- // model.setValue("/root/main/list03/gridpiehf202lnk[" + j + "]/docuseqno", model.getValue("/root/main/list02/gridpiehf202[" + i + "]/docuseqno"));
- // }
- // }
- if(chkJudgdg("1")) {
- for(var i=0;i<cmb_judgdg.length;i++) {
- if(cmb_judgdg.value == model.getValue("/root/main/list01/decoseq["+i+"]/judgdg")) {
- model.makeNode("/root/send/clam_mtrt/decoseq");
- model.setValue("/root/send/clam_mtrt/decoseq", model.getValue("/root/main/list01/decoseq["+i+"]/decoseq"));
- }
- }
- modal("SMPIF30110", 1, 1, 1, "SMPIF30110", "/root/send/clam_mtrt", "/root/send/sendlnk");
- }
- ]]>
- </script>
- </button>
- <button id="btn_send" class="btn3_letter4" style="left:209px; top:5px; width:80px; height:22px; ">
- <caption>반송관리</caption>
- <script type="javascript" ev:event="onclick">
- <![CDATA[
- if(chkJudgdg("3")) {
- model.makeNode("/root/send/clam_mtrt/screenflag");
- model.setValue("/root/send/clam_mtrt/screenflag","bohum");
- for(var i=1;i<=cmb_judgdg.length;i++) {
- if(cmb_judgdg.value == model.getValue("/root/main/list01/decoseq["+i+"]/judgdg")) {
- model.makeNode("/root/send/clam_mtrt/decoseq");
- model.setValue("/root/send/clam_mtrt/decoseq", model.getValue("/root/main/list01/decoseq["+i+"]/decoseq"));
- }
- }
- modal("SMPIF30130", 1, 1, 1, "SMPIF30130", "/root/send/clam_mtrt", "/root/send/sendlnk");
- }
- ]]>
- </script>
- </button>
- <button id="btn_judgrete" class="btn3_letter6" style="left:104px; top:5px; width:104px; height:22px; ">
- <caption>심사보류관리</caption>
- <script type="javascript" ev:event="onclick">
- <![CDATA[
- if(chkJudgdg("2")) {
- for(var i=1;i<=cmb_judgdg.length;i++) {
- if(cmb_judgdg.value == model.getValue("/root/main/list01/decoseq["+i+"]/judgdg")) {
- model.makeNode("/root/send/clam_mtrt/decoseq");
- model.setValue("/root/send/clam_mtrt/decoseq", model.getValue("/root/main/list01/decoseq["+i+"]/decoseq"));
- }
- }
- modal("SMPIF30120", 1, 1, 1, "SMPIF30120", "/root/send/clam_mtrt", "/root/send/sendlnk");
- }
- ]]>
- </script>
- </button>
- <button id="btn_save" class="btn4_letter2" style="left:1135px; top:5px; width:56px; height:22px; ">
- <caption>저장</caption>
- <script type="javascript" ev:event="onclick">
- <![CDATA[
- var vjudgdg = model.getValue("/root/send/clam_mtrt/judgdg") ;
-
- if(cmb_judgdg.length > 0) {
- if (vjudgdg == "") {
- messageBox("심사차수를","C002");
- model.setFocus("cmb_judgdg");
- return ;
- }
- }
-
- model.setValue("/root/main/list05/gridpifmiunc03", grd_pifmiunc02.getUpdateData());
-
- if(submit("TXPIF30101")) {
- //model.removeNodeset("/root/main/list02");
- // model.removeNodeset("/root/main/list03");
- model.removeNodeset("/root/main/list04");
- model.refresh();
- // submit("TRPIF30105"); //청구내역 조회 // 2010.03.12 명세서만 조회되게 요청함.
- submit("TRPIF30106"); //명세서별 조회
- messageBox("저장 ","I002") ;
- }
- ]]>
- </script>
- </button>
- <button id="button2" class="btn3_letter5" style="left:290px; top:5px; width:84px; height:22px; ">
- <caption>상한금관리</caption>
- <script type="javascript" ev:event="onclick">
- <![CDATA[
- // 2010.03.29 접수증만 와도 대상자를 보여주세요.
- // if(chkJudgdg("4")) {
- model.makeNode("/root/send/clam_mtrt/screenflag");
- model.setValue("/root/send/clam_mtrt/screenflag","bohum");
- model.makeNode("/root/send/clam_mtrt/openflag");
- model.setValue("/root/send/clam_mtrt/openflag","상한금");
- model.makeNode("/root/send/clam_mtrt/inddepoflag"); // 2010.03.05 상한금 플레그 추가
- model.setValue("/root/send/clam_mtrt/inddepoflag","06"); // 2010.03.05 상한금 플레그 추가
- for(var i=1;i<=cmb_judgdg.length;i++) {
- if(cmb_judgdg.value == model.getValue("/root/main/list01/decoseq["+i+"]/judgdg")) {
- model.makeNode("/root/send/clam_mtrt/decoseq");
- model.setValue("/root/send/clam_mtrt/decoseq", model.getValue("/root/main/list01/decoseq["+i+"]/decoseq"));
- }
- }
- modal("SMPIF30170", 1, 1, 1, "SMPIF30170", "/root/send/clam_mtrt", "/root/send");
- // }
- ]]>
- </script>
- </button>
- <button id="button6" class="btn3_letter5" style="left:383px; top:5px; width:92px; height:22px; ">
- <caption>지원금관리</caption>
- <script type="javascript" ev:event="onclick">
- <![CDATA[
- // 2010.03.29 접수증만 와도 대상자를 보여주세요.
- // if(chkJudgdg("5")) {
- model.makeNode("/root/send/clam_mtrt/screenflag");
- model.setValue("/root/send/clam_mtrt/screenflag","bohum");
- model.makeNode("/root/send/clam_mtrt/openflag");
- model.setValue("/root/send/clam_mtrt/openflag","지원금");
- for(var i=1;i<=cmb_judgdg.length;i++) {
- if(cmb_judgdg.value == model.getValue("/root/main/list01/decoseq["+i+"]/judgdg")) {
- model.makeNode("/root/send/clam_mtrt/decoseq");
- model.setValue("/root/send/clam_mtrt/decoseq", model.getValue("/root/main/list01/decoseq["+i+"]/decoseq"));
- }
- }
- modal("SMPIF30180", 1, 1, 1, "SMPIF30180", "/root/send/clam_mtrt", "/root/send");
- // }
- ]]>
- </script>
- </button>
- <button id="button22" class="btn3_letter5" style="left:477px; top:5px; width:92px; height:22px; ">
- <caption>장애인관리</caption>
- <script type="javascript" ev:event="onclick">
- <![CDATA[
- //if(chkJudgdgMed("2")) {
- model.setValue("/root/send/clam_med/acptno",model.getValue("/root/send/clam_mtrt/acptno"));
-
- if ( model.getValue("/root/send/clam_mtrt/judgdg") != "없음" ) {
- model.setValue("/root/send/clam_med/judgdg",model.getValue("/root/send/clam_mtrt/judgdg"));
- }
-
- model.setValue("/root/send/clam_med/clamno",model.getValue("/root/send/clam_mtrt/clamno"));
- modal("SMPIF30150", 1, 1, 1, "SMPIF30150", "/root/send", "/root/send/sendlnk");
- //}
- ]]>
- </script>
- </button>
- </group>
- <caption id="caption8" class="tit_2" style="left:6px; top:349px; width:178px; height:13px; ">명세서일련번호별 청구사항</caption>
- <line id="line13" class="line_1" style="x1:0px; y1:364px; x2:1192px; y2:364px; "/>
- <input id="ipt_docuseqno1" ref="/root/send/searchgridrow/docuseqno" class="input_default" style="left:694px; top:118px; width:111px; height:19px; ">
- <script type="javascript" ev:event="onkeyup">
- <![CDATA[
- if(event.keyCode == "13") {
- setInputNodeCurText();
- //ipt_docuseqno1.value = "";
- ipt_pid1.value = "";
- ipt_patnm.value = "";
- var docuseqno = ipt_docuseqno1.value;
- var cnt = 0;
-
- /*if(docuseqno.length == 0) {
- return false;
- } else if(docuseqno.length == 1) {
- docuseqno = "0000"+docuseqno;
- } else if(docuseqno.length == 2) {
- docuseqno = "000"+docuseqno;
- } else if(docuseqno.length == 3) {
- docuseqno = "00"+docuseqno;
- } else if(docuseqno.length == 4) {
- docuseqno = "0"+docuseqno;
- } else if(docuseqno.length == 5) {
- docuseqno = docuseqno;
- } else if(docuseqno.length > 5) {
- messageBox("명세서일련번호는 최대 5자리","E008");
- ipt_docuseqno2.value = "";
- return false;
- }*/
-
- if(docuseqno.length > 5) {
- messageBox("명세서일련번호는 최대 5자리","E008");
- ipt_docuseqno2.value = "";
- return false;
- }
-
- flag = "N";
-
- var rows = grd_pifmiunc02.rows;
-
- for(var i=1;i<rows;i++) {
- //if(model.getValue("/root/main/list04/gridpifmiunc02["+i+"]/docuseqno") == docuseqno) {
- if(grd_pifmiunc02.valueMatrix(i,11) == docuseqno) {
- //grd_pifmiunc02.select(i,9) = true;
- grd_pifmiunc02.row = i;
- grd_pifmiunc02.topRow = i;
- cnt++;
- flag = "Y";
- return false;
- }
- }
-
- if(cnt == 0) {
- messageBox("찾는 명일련이","I004");
- model.setFocus("ipt_docuseqno1");
- //researchgrid("docuseqno",docuseqno);
- }
- }
- ]]>
- </script>
- </input>
- <input id="ipt_pid1" ref="/root/send/searchgridrow/pid" class="input_default" style="left:895px; top:118px; width:111px; height:19px; ">
- <script type="javascript" ev:event="onkeyup">
- <![CDATA[
- if(event.keyCode == "13") {
- setInputNodeCurText();
- ipt_docuseqno1.value = "";
- //ipt_pid1.value = "";
- ipt_patnm.value = "";
-
- var pid = ipt_pid1.value;
- var rows = grd_pifmiunc02.rows;
- var cnt = 0;
-
- flag = "N";
-
- for(var i=1;i<rows;i++) {
- //if(model.getValue("/root/main/list04/gridpifmiunc02["+i+"]/pid") == pid) {
- if(grd_pifmiunc02.valueMatrix(i,12) == pid) {
- grd_pifmiunc02.row = i;
- grd_pifmiunc02.topRow = i;
- cnt++;
- flag = "Y";
- return false;
- }
- }
-
- if(cnt == 0) {
- messageBox("찾는 등록번호가","I004");
- model.setFocus("ipt_pid1");
- //researchgrid("pid",pid);
- }
- }
- ]]>
- </script>
- </input>
- <input id="ipt_patnm" ref="/root/send/searchgridrow/patnm" class="input_default" style="left:1097px; top:118px; width:92px; height:19px; ">
- <script type="javascript" ev:event="onkeyup">
- <![CDATA[
- if(event.keyCode == "13") {
- setInputNodeCurText();
- ipt_docuseqno1.value = "";
- ipt_pid1.value = "";
- //ipt_patnm.value = "";
- var patnm = ipt_patnm.value;
- var rows = grd_pifmiunc02.rows;
- var cnt = 0;
-
- flag = "N";
-
- if(model.getValue("/root/init/prepatnm") == "") {
- for(var i=1;i<rows;i++) {
- //if(model.getValue("/root/main/list04/gridpifmiunc02["+i+"]/patnm") == patnm) {
- if(grd_pifmiunc02.valueMatrix(i,13) == patnm) {
- grd_pifmiunc02.row = i;
- grd_pifmiunc02.topRow = i;
- model.setValue("/root/init/prepatnmcnt",i);
- cnt++;
- flag = "Y";
- break;
- }
- }
- model.setValue("/root/init/prepatnm",ipt_patnm.value);
- } else {
- if(patnm == model.getValue("/root/init/prepatnm")) {
- for(var i=Number(model.getValue("root/init/prepatnmcnt"))+1;i<rows;i++) {
- //if(model.getValue("/root/main/list04/gridpifmiunc02["+i+"]/patnm") == patnm) {
- if(grd_pifmiunc02.valueMatrix(i,13) == patnm) {
- grd_pifmiunc02.row = i;
- grd_pifmiunc02.topRow = i;
- model.setValue("/root/init/prepatnmcnt",i);
- cnt++;
- flag = "Y";
- break;
- }
- }
- } else {
- for(var i=1;i<rows;i++) {
- //if(model.getValue("/root/main/list04/gridpifmiunc02["+i+"]/patnm") == patnm) {
- if(grd_pifmiunc02.valueMatrix(i,13) == patnm) {
- grd_pifmiunc02.row = i;
- grd_pifmiunc02.topRow = i;
- model.setValue("/root/init/prepatnmcnt",i);
- cnt++;
- flag = "Y";
- break;
- }
- }
- model.setValue("/root/init/prepatnm",ipt_patnm.value);
- }
- }
-
- if(cnt == 0) {
- messageBox("찾는 명일련이","I004");
- model.setFocus("ipt_patnm");
- //researchgrid("patnm",patnm);
- }
- }
- ]]>
- </script>
- </input>
- <caption id="caption45" class="tit_2" style="left:413px; top:247px; width:129px; height:13px; ">주민보류사항</caption>
- <line id="line52" class="line_1" style="x1:407px; y1:262px; x2:616px; y2:262px; "/>
- <input id="input1" ref="/root/main/list03/gridpifmiunc01/resdnretecnt" class="input_default" format="#,###" style="left:498px; top:269px; width:118px; height:19px; text-align:right; "/>
- <caption id="caption54" class="cell_1" style="left:407px; top:267px; width:88px; height:23px; vertical-align:middle; ">[보류] 건수</caption>
- <line id="line54" class="line_2" style="x1:408px; y1:291px; x2:615px; y2:291px; "/>
- <caption id="caption59" class="cell_1" style="left:407px; top:293px; width:88px; height:23px; vertical-align:middle; ">[보류] 보류액</caption>
- <input id="input30" ref="/root/main/list03/gridpifmiunc01/resdnreteamt" class="input_default" format="(-)#,###" style="left:498px; top:294px; width:118px; height:19px; text-align:right; "/>
- <line id="line77" class="line_3" style="x1:407px; y1:315px; x2:616px; y2:315px; "/>
- <button id="button12" class="btn2_letter4" style="left:1127px; top:343px; width:64px; height:19px; ">
- <caption>엑셀저장</caption>
- <script type="javascript" ev:event="onclick">
- <![CDATA[
- var today = new Date();
-
- var yy = today.getYear()+"";
- var mm = today.getMonth()+1;
- var dd = today.getDate();
-
- if(mm < 10) { mm = "0"+mm; } else { mm = mm+""; }
- if(dd < 10) { dd = "0" + dd; } else { dd = dd + ""; }
-
- var tmp = yy+mm+dd;
- //var fileName = window.fileDialog("save", ",", false, "개인별미수관리(보험)_"+tmp, "xls", "Excel Files(*.xls)|*.xls|All Files (*.*)|*.*");
- /*
- var clamym = model.getValue("/root/send/clam_mtrt/clamym");
- var acptno = model.getValue("/root/send/clam_mtrt/acptno");
- var judgdg = model.getValue("/root/send/clam_mtrt/judgdg");
- var clamno = model.getValue("/root/send/clam_mtrt/clamno");
- var offset = model.getValue("/root/send/clam_mtrt/offset");
- var pagesize = model.getValue("/root/send/clam_mtrt/pagesize");
- var insukind = model.getValue("/root/send/clam_mtrt/insukind");
- var instcd = model.getValue("/root/send/clam_mtrt/instcd");
-
- var param = "&clamym="+clamym+"&acptno="+acptno+"&judgdg="+judgdg+"&clamno="+clamno+"&offset="+offset+"&pagesize="+pagesize+"&insukind="+insukind+"&instcd="+instcd+"&filesaveyn=Y";
- download("TRPIF30118",param,"개인별미수관리(보험)_"+tmp+".csv",true);
- */
- //var fileName = window.fileDialog("save", ",", false, "개인별미수관리(보험)_"+tmp, "xls", "Excel Files(*.xls)|*.xls|All Files (*.*)|*.*");
-
- var fileName = window.fileDialog("save", "|", true, "개인별미수관리(보험)_"+tmp, "", "Excel Files(*.xls)|*.xls");
-
- if (fileName != "") {
- grd_pifmiunc02.saveExcel(fileName, "SheetName", true, true, "", "", "");
- }
- ]]>
- </script>
- </button>
- <input id="input32" ref="/root/main/list03/gridpifmiunc01/clownbmaxexcnt" class="input_default" format="#,###" style="left:88px; top:270px; width:37px; height:19px; text-align:right; "/>
- <caption id="caption65" class="cell_1" style="left:0px; top:268px; width:85px; height:23px; vertical-align:middle; ">상한액 | 소계</caption>
- <line id="line78" class="line_2" style="x1:5px; y1:292px; x2:205px; y2:292px; "/>
- <input id="input53" ref="/root/main/list03/gridpifmiunc01/sendmaxexcnt" class="input_default" format="#,###" style="left:921px; top:245px; width:28px; height:19px; text-align:right; "/>
- <caption id="caption66" class="cell_1" style="left:407px; top:169px; width:90px; height:23px; vertical-align:middle; ">상한액 | 소계</caption>
- <line id="line79" class="line_2" style="x1:212px; y1:218px; x2:616px; y2:218px; "/>
- <input id="input62" ref="/root/main/list03/gridpifmiunc01/clownbmaxexamt" class="input_default" format="(-)#,###" style="left:128px; top:270px; width:77px; height:19px; text-align:right; "/>
- <input id="input70" ref="/root/main/list03/gridpifmiunc01/clsuppamt" class="input_default" format="(-)#,###" style="left:128px; top:295px; width:77px; height:19px; text-align:right; "/>
- <input id="input72" ref="/root/main/list03/gridpifmiunc01/jrsuppamt" class="input_default" format="(-)#,###" style="left:500px; top:196px; width:116px; height:19px; text-align:right; "/>
- <input id="input73" ref="/root/main/list03/gridpifmiunc01/jrownbmaxexamt" class="input_default" format="(-)#,###" style="left:500px; top:171px; width:116px; height:19px; text-align:right; "/>
- <input id="input74" ref="/root/main/list03/gridpifmiunc01/retetotordamt" class="input_default" format="(-)#,###" style="left:725px; top:195px; width:89px; height:19px; text-align:right; "/>
- <line id="line80" class="line_3" style="x1:624px; y1:315px; x2:814px; y2:315px; "/>
- <line id="line81" class="line_2" style="x1:624px; y1:217px; x2:813px; y2:217px; "/>
- <line id="line82" class="line_2" style="x1:624px; y1:241px; x2:813px; y2:241px; "/>
- <line id="line83" class="line_2" style="x1:624px; y1:266px; x2:813px; y2:266px; "/>
- <caption id="caption71" class="cell_1" style="left:624px; top:219px; width:98px; height:23px; vertical-align:middle; ">[심.보] 보류액</caption>
- <caption id="caption74" class="tit_2" style="left:630px; top:149px; width:129px; height:13px; ">심사보류사항</caption>
- <input id="input76" ref="/root/main/list03/gridpifmiunc01/retesuppamt" class="input_default" format="(-)#,###" style="left:725px; top:270px; width:89px; height:19px; text-align:right; "/>
- <caption id="caption83" class="cell_1" style="left:624px; top:194px; width:99px; height:23px; vertical-align:middle; ">[심.보] 총진료비</caption>
- <input id="input77" ref="/root/main/list03/gridpifmiunc01/reteamt" class="input_default" format="(-)#,###" style="left:725px; top:221px; width:89px; height:19px; text-align:right; "/>
- <input id="input78" ref="/root/main/list03/gridpifmiunc01/retemaxexamt" class="input_default" format="(-)#,###" style="left:725px; top:245px; width:89px; height:19px; text-align:right; "/>
- <caption id="caption89" class="cell_1" style="left:624px; top:243px; width:98px; height:23px; vertical-align:middle; ">[심.보] 상한액</caption>
- <input id="input79" ref="/root/main/list03/gridpifmiunc01/retecnt" class="input_default" format="#,###" style="left:725px; top:171px; width:89px; height:19px; text-align:right; "/>
- <caption id="caption95" class="cell_1" style="left:624px; top:268px; width:98px; height:23px; vertical-align:middle; ">[심.보] 지원금</caption>
- <line id="line85" class="line_2" style="x1:624px; y1:192px; x2:813px; y2:192px; "/>
- <caption id="caption103" class="cell_1" style="left:624px; top:169px; width:98px; height:23px; vertical-align:middle; ">[심.보] 건수</caption>
- <line id="line86" class="line_1" style="x1:624px; y1:164px; x2:814px; y2:164px; "/>
- <button id="button7" class="btn2_letter6" style="left:1039px; top:343px; width:86px; height:19px; ">
- <caption>Open Excel</caption>
- <script type="javascript" ev:event="DOMActivate">
- <![CDATA[
- try {
- window.exec("excel");
- } catch(e) {
- alert(e);
- }
- ]]>
- </script>
- </button>
- <button id="button10" class="btn2_letter3" style="left:929px; top:343px; width:53px; height:19px; ">
- <caption>열카피</caption>
- <script type="javascript" ev:event="onclick">
- <![CDATA[
- grd_pifmiunc02.attribute("selectionmode") = "bycol";
- ]]>
- </script>
- </button>
- <button id="button11" class="btn2_letter3" style="left:984px; top:343px; width:53px; height:19px; ">
- <caption>행카피</caption>
- <script type="javascript" ev:event="onclick">
- <![CDATA[
- grd_pifmiunc02.attribute("selectionmode") = "byrow";
- ]]>
- </script>
- </button>
- <button id="button13" class="btn2_letter3" style="left:874px; top:343px; width:53px; height:19px; ">
- <caption>셀카피</caption>
- <script type="javascript" ev:event="onclick">
- <![CDATA[
- grd_pifmiunc02.attribute("selectionmode") = "free";
- ]]>
- </script>
- </button>
- <caption id="caption36" style="left:510px; top:119px; width:75px; height:20px; color:#3366ff; ">
- <![CDATA[바로가기 ==>]]>
- </caption>
- <caption id="caption106" class="cell_1" style="left:0px; top:317px; width:85px; height:23px; vertical-align:middle; ">장애인기금</caption>
- <input id="input80" ref="/root/main/list03/gridpifmiunc01/clhandicaprfund" class="input_default" format="(-)#,###" style="left:128px; top:319px; width:77px; height:19px; text-align:right; "/>
- <caption id="caption107" class="cell_1" style="left:212px; top:317px; width:96px; height:23px; vertical-align:middle; ">장애인기금</caption>
- <input id="input81" ref="/root/main/list03/gridpifmiunc01/jrhandicaprfund" class="input_default" format="(-)#,###" style="left:342px; top:319px; width:61px; height:19px; text-align:right; "/>
- <caption id="caption109" class="cell_1" style="left:625px; top:292px; width:99px; height:23px; vertical-align:middle; ">[심.보] 장애인금</caption>
- <input id="input83" ref="/root/main/list03/gridpifmiunc01/retehandicaprfund" class="input_default" format="(-)#,###" style="left:726px; top:294px; width:89px; height:19px; text-align:right; "/>
- <input id="input85" ref="/root/main/list03/gridpifmiunc01/sendhandicaprfund" class="input_default" format="(-)#,###" style="left:922px; top:294px; width:87px; height:19px; text-align:right; "/>
- <caption id="caption114" class="cell_1" style="left:821px; top:292px; width:98px; height:23px; vertical-align:middle; ">[반송] 장애인금</caption>
- <input id="input88" ref="/root/main/list03/gridpifmiunc01/clhandicaprfundcnt" class="input_default" format="#,###" style="left:88px; top:319px; width:37px; height:19px; text-align:right; "/>
- <input id="input92" ref="/root/main/list03/gridpifmiunc01/jrhandicaprfundcnt" class="input_default" format="(-)#,###" style="left:310px; top:319px; width:30px; height:19px; text-align:right; "/>
- </case>
- <case id="case2" class="sw_box">
- <datagrid id="grd_pifmmiun02" nodeset="/root/main/list04med/gridpifmmiun02" class="datagrid2" caption="청구월^미수일련번호^기관코드^청구번호^자격
보류^입금
구분^청구과^진료과^명일련^등록번호^수진자^주민번호^청구총진료비^청구본인부담^청구액^청구
장애인기금^심결총진료비^심결본인부담^심사결정액^심결
장애인기금^조정소계I^조정소계II^조정삭감액^조정사유^조정사유^기관삭감액^장애인전환금^실삭감액^본인
추가부담금^주상병^진료의^진료의
코드^보험유형^기관
기호^기관명^정액
정율^내원
일수^투약
일수^요양개시일^특정기호^접수번호^심사차수^내원
유형" colsep="^" colwidth="28, 35, 30, 33, 35, 35, 45, 45, 45, 70, 50, 95, 80, 80, 80, 80, 80, 80, 80, 80, 80, 80, 80, 30, 30, 80, 80, 80, 80, 50, 50, 60, 90, 50, 120, 40, 50, 50, 80, 76, 70, 70, 40, 100, 100" dataheight="25" defaultrows="2" ellipsis="true" explorerbar="sortshowmove" extendlastcol="false" fixedcols="12" mergecellsfixedrows="bycolrec" rowheader="seq" rowheight="1" rowsep="|" tooltip="true" style="left:0px; top:380px; width:1192px; height:260px; ">
- <col ref="clamym" visibility="hidden"/>
- <col ref="decoseq" visibility="hidden"/>
- <col ref="instcd" visibility="hidden"/>
- <col ref="clamno" visibility="hidden"/>
- <col checkvalue="Y,N" ref="qualrete" type="checkbox"/>
- <col ref="depoflag" style="text-align:center; "/>
- <col ref="clamdeptnm" style="text-align:center; "/>
- <col ref="orddeptnm" style="text-align:center; "/>
- <col ref="docuseqno" style="text-align:center; "/>
- <col ref="pid" style="text-align:center; "/>
- <col ref="patnm" style="text-align:center; "/>
- <col ref="patrrgstno" format="999999-9999999" style="text-align:center; "/>
- <col ref="clmcstotamt" format="(-)#,###" style="text-align:right; "/>
- <col ref="clownbamt" format="(-)#,###" style="text-align:right; "/>
- <col ref="clsecuinstbamt" format="(-)#,###" style="text-align:right; "/>
- <col ref="clhandicaprfund" format="(-)#,###" style="text-align:right; "/>
- <col ref="jrmcstotamt" format="(-)#,###" style="text-align:right; "/>
- <col ref="jrownbamt" format="(-)#,###" style="text-align:right; "/>
- <col ref="jrjudgdeciamt" format="(-)#,###" style="text-align:right; "/>
- <col ref="jrhandicaprfund" format="(-)#,###" style="text-align:right; "/>
- <col ref="jradjtsum1" format="(-)#,###" style="text-align:right; "/>
- <col ref="jradjtsum2" format="(-)#,###" style="text-align:right; "/>
- <col ref="jradjtsum" format="(-)#,###" style="text-align:right; "/>
- <col ref="adjtresn1" format="#,###" style="text-align:center; "/>
- <col ref="adjtresn2" format="#,###" style="text-align:center; "/>
- <col ref="instreductamt" format="(-)#,###" style="text-align:right; "/>
- <col ref="handicapcvrtamt" format="(-)#,###" style="text-align:right; "/>
- <col ref="orgreduamt" format="(-)#,###" style="text-align:right; "/>
- <col ref="jraddchrgamt" format="(-)#,###" style="text-align:right; "/>
- <col ref="diagcd"/>
- <col ref="orddridnm" style="text-align:center; "/>
- <col ref="orddrid" style="text-align:center; "/>
- <col ref="insukind" style="text-align:center; "/>
- <col ref="procinstmark"/>
- <col ref="procinstmarknm"/>
- <col ref="fixrateflag" style="text-align:center; "/>
- <col ref="chosindayno" style="text-align:right; "/>
- <col ref="oprcpdayno" style="text-align:right; "/>
- <col ref="ordfromdd" format="yyyy-mm-dd" style="text-align:center; "/>
- <col ref="spclcd"/>
- <col ref="acptno" style="text-align:center; "/>
- <col ref="judgdg" style="text-align:center; "/>
- <col ref="ioflag" style="text-align:center; "/>
- <col ref="clamdg" visibility="hidden"/>
- <col ref="pidsn" visibility="hidden"/>
- <script type="javascript" ev:event="onscroll">
- <![CDATA[
- fSubmitOnScrollMed(flagmed);
- ]]>
- </script>
- <script type="javascript" ev:event="oncopy">
- <![CDATA[
- grid_oncopy();
- ]]>
- </script>
- <script type="javascript" ev:event="onaftersort">
- <![CDATA[
- grd_pifmmiun02.gridToInstance();
- ]]>
- </script>
- </datagrid>
- <group id="group5" style="left:0px; top:5px; width:1192px; height:65px; vertical-align:top; ">
- <shape id="roundrect1" class="roundrect_search" appearance="roundrect" ellipsewidth="10" ellipseheight="10" style="left:0px; top:0px; width:1192px; height:65px; background-color:#fffbf2; border-color:#ffd799; "/>
- <line id="line34" class="line_4" style="x1:1106px; y1:7px; x2:1106px; y2:56px; border-color:#ffe4bb; border-left-style:solid; "/>
- <input id="ipt_medacptno" ref="/root/send/acptclam/item01" class="input_s_essential" inputtype="button" maxlength="7" style="left:169px; top:8px; width:100px; height:19px; ">
- <script type="javascript" ev:event="DOMFocusOut">
- <![CDATA[
- if(ipt_medacptno.value == "") {
- return false;
- }
-
- //if(event.keyCode == "13") {
- // setInputNodeCurText();
- // model.removenode("/root/main/list00med");
- // model.removenode("/root/main/list04med");
- model.resetInstanceNode("/root/main/list00med");
- model.resetInstanceNode("/root/main/list01med");
- model.resetInstanceNode("/root/main/list02med");
- model.resetInstanceNode("/root/main/list03med");
- model.removenode("/root/main/list04med");
- model.refresh();
-
- cmb_clamddmed.value = "";
- cmb_cpcd.value = "";
- cmb_assocd.value = "";
-
- model.setValue("/root/send/acptclam/item02", "");
- model.setValue("/root/send/acptclam/cpcd", "");
- model.setValue("/root/send/acptclam/assocd", "");
-
- model.refresh();
-
- if(rdo_acptnomed.value == "1") {
- if (ipt_medacptno.value == "") {
- messageBox("접수번호를","C001");
- model.setfocus("ipt_medacptno");
- return false;
- }
- }
-
- if(rdo_acptnomed.value == "2") {
- if (ipt_medacptno.value == "") {
- messageBox("청구년월을","C001");
- model.setfocus("ipt_medacptno");
- return false;
- }
- }
- // Session_Init();
- // model.setValue("/root/send/send_mtrt/searchflag", "2") ;
- // srchcond2 조회
- submit("TRPIF30107") ;
- if(ipt_acptnocntmed.value > 1) {
- opt_commentmed.visible = true;
- opt_commentmed.value = "[ 접수번호가 여러개("+ipt_acptnocntmed.value+"개) 있습니다. ]";
- } else {
- opt_commentmed.visible = false;
- }
- // model.setfocus("cmb_clamymlist");
- if(cmb_clamddmed.length > 0) {
- // cmb_clamddmed.select(0);
- // submit("TRPIF30108") ; // 시도 조회
- cmb_clamddmed.select(0);
- }
-
- fclaminfoserch();
- //}
-
- ]]>
- </script>
- <script type="javascript" ev:event="onbuttonclick">
- <![CDATA[
-
- //조회조건이 청구년월일 경우 버튼 동작 안하도록 설정
- if(rdo_acptnomed.value == "2") {
- return false;
- }
-
- model.makeNode("/root/send/send01/termflag");
- model.makeNode("/root/send/send01/fromdd");
- model.makeNode("/root/send/send01/todd");
- model.makeNode("/root/send/send01/insukind");
- model.makeNode("/root/send/send01/acptno");
- model.setValue("/root/send/send01/insukind","21");
- setParameter("SPPIF30302_RTNTYPE", "P");
-
- modal("SPPIF30302", 1, 1, 1, "SPPIF30302", "/root/send/send01", "/root/send");
-
- model.setValue("/root/send/acptclam/item01", getParameter("SPPIF30302_acptno"));
-
- model.removeNodeset("/root/send/send01");
- clearParameter("SPPIF30302_RTNTYPE");
- clearParameter("SPPIF30302_acptno");
-
- ipt_medacptno.refresh();
- if( model.getValue("/root/send/acptclam/item01") != '' ){
- //ipt_srchcond01.dispatch("DOMFocusOut");
- model.setFocus("cmb_clamddmed");
- }
-
- ]]>
- </script>
- </input>
- <caption id="caption84" class="search_name" style="left:655px; top:9px; width:86px; height:17px; ">시도별 :</caption>
- <caption id="caption85" class="search_name" style="left:840px; top:9px; width:86px; height:17px; ">시군구별 :</caption>
- <select1 id="cmb_clamddmed" ref="/root/send/acptclam/item02" class="combo_search" appearance="minimal" style="left:270px; top:8px; width:100px; height:19px; ">
- <choices>
- <itemset nodeset="/root/main/list00med/list00_acptclam/acptclam01">
- <label ref="acptclam"/>
- <value ref="acptclam"/>
- </itemset>
- </choices>
- <script type="javascript" ev:event="xforms-value-changed">
- <![CDATA[
- fclaminfoserch();
- ]]>
- </script>
- </select1>
- <select1 id="rdo_acptnomed" ref="/root/send/acptclam/searchflag" class="radio_search" appearance="full" cols="2" overflow="visible" style="left:15px; top:9px; width:145px; height:17px; font-weight:bold; border-style:none; ">
- <choices>
- <item>
- <label>접수번호</label>
- <value>1</value>
- </item>
- <item>
- <label>청구년월</label>
- <value>2</value>
- </item>
- </choices>
- <script type="javascript" ev:event="xforms-value-changed">
- <![CDATA[
- if(rdo_acptnomed.value == "1") {
- model.resetInstanceNode("/root/send/acptclam/item01");
- model.resetInstanceNode("/root/send/acptclam/item02");
- model.resetInstanceNode("/root/send/acptclam/cpcd");
- model.resetInstanceNode("/root/send/acptclam/assocd");
- ipt_medacptno.attribute("maxlength") = 7;
- model.refresh();
- model.setFocus("ipt_medacptno");
- } else {
- model.resetInstanceNode("/root/send/acptclam/item01");
- model.resetInstanceNode("/root/send/acptclam/item02");
- model.resetInstanceNode("/root/send/acptclam/cpcd");
- model.resetInstanceNode("/root/send/acptclam/assocd");
- ipt_medacptno.attribute("maxlength") = 6;
- model.refresh();
- model.setFocus("ipt_medacptno");
- }
- ]]>
- </script>
- </select1>
- <select1 id="cmb_cpcd" ref="/root/send/acptclam/cpcd" class="combo_search" appearance="minimal" style="left:730px; top:8px; width:100px; height:19px; ">
- <choices>
- <itemset nodeset="/root/main/list00med/list00_cpcd/cpcd01">
- <label ref="cpnm"/>
- <value ref="cpcd"/>
- </itemset>
- </choices>
- <script type="javascript" ev:event="xforms-select">
- <![CDATA[
- // model.resetInstanceNode("/root/main/list01med");
- // model.resetInstanceNode("/root/main/list02med");
- // model.resetInstanceNode("/root/main/list03med");
- // model.resetInstanceNode("/root/main/list04med");
- // model.resetInstanceNode("/root/main/list00med/list00_assocd");
- model.setValue("/root/send/acptclam/assocd","");
- cmb_assocd.value = "";
-
- submit("TRPIF30109") ;
- /* if(cmb_assocd.length > 0) {
- //cmb_assocd.select(0);
- model.setFocus("btn_searchmed");
- }
- */
- if(cmb_assocd.length > 0) {
- addComboItem("cmb_assocd"," ");
- model.setFocus("cmb_assocd");
- // cmb_assocd.select(0);
- // submit("TRPIF30401"); //조회시작
- }
-
- searchProc("cpcd");
- ]]>
- </script>
- </select1>
- <button id="btn_searchmed" class="btn1_letter2" style="left:1122px; top:22px; width:56px; height:22px; ">
- <caption>조회</caption>
- <script type="javascript" ev:event="onclick">
- <![CDATA[
- if(rdo_acptnomed.value == "1") {
- if(ipt_medacptno.value == "") {
- messageBox("접수번호를","C001");
- model.setFocus("ipt_medacptno");
- return false;
- } else if(cmb_clamddmed.value == "") {
- messageBox("청구년월을","C002");
- model.setFocus("ipt_medacptno");
- return false;
- }
- } else if(rdo_acptnomed.value == "2") {
- if(ipt_medacptno.value == "") {
- messageBox("청구년월을","C001");
- model.setFocus("ipt_medacptno");
- return false;
- } else if(cmb_clamddmed.value == "") {
- messageBox("접수번호를","C002");
- model.setFocus("ipt_medacptno");
- return false;
- }
- } else {
- return false;
- }
-
- // 시도코드가 없으면 조회 불가
- if(cmb_cpcd.length == 0) {
- messageBox("시도코드가","I004");
- return false;
- }
- searchProc();
- ]]>
- </script>
- </button>
- <select1 id="cmb_assocd" ref="/root/send/acptclam/assocd" class="combo_search" appearance="minimal" style="left:930px; top:8px; width:155px; height:19px; ">
- <choices>
- <itemset nodeset="/root/main/list00med/list00_assocd/assocd01">
- <label ref="assonm"/>
- <value ref="assocd"/>
- </itemset>
- </choices>
- <script type="javascript" ev:event="xforms-select">
- <![CDATA[
- searchProc("assocd");
- ]]>
- </script>
- </select1>
- <output id="opt_commentmed" visibility="hidden" style="left:380px; top:8px; width:265px; height:19px; color:#999999; "/>
- <input id="input89" ref="/root/send/clam_med/docuseqnofrom" class="input_search" style="left:930px; top:35px; width:70px; height:19px; "/>
- <input id="input91" ref="/root/send/clam_med/docuseqnoto" class="input_search" style="left:1016px; top:35px; width:70px; height:19px; "/>
- <caption id="caption123" class="search_name" style="left:840px; top:36px; width:86px; height:17px; ">명일련 :</caption>
- <caption id="caption124" style="left:1001px; top:37px; width:15px; height:20px; ">~</caption>
- </group>
- <line id="line35" class="line_2" style="x1:0px; y1:246px; x2:188px; y2:246px; "/>
- <line id="line36" class="line_1" style="x1:1010px; y1:194px; x2:1192px; y2:194px; "/>
- <input id="input29" ref="/root/main/list03med/gridpifmmiun01/sendtotordamt" class="input_default" format="(-)#,###" style="left:921px; top:226px; width:85px; height:19px; text-align:right; "/>
- <caption id="caption35" class="cell_1" style="left:406px; top:199px; width:101px; height:23px; vertical-align:middle; ">청구액 소계</caption>
- <line id="line38" class="line_2" style="x1:805px; y1:247px; x2:1005px; y2:247px; "/>
- <line id="line40" class="line_2" style="x1:805px; y1:271px; x2:1005px; y2:271px; "/>
- <caption id="caption40" class="tit_2" style="left:811px; top:179px; width:133px; height:13px; ">반송사항</caption>
- <input id="input31" ref="/root/main/list03med/gridpifmmiun01/jrjudgdeciamt" class="input_default" format="#,###" style="left:509px; top:225px; width:85px; height:19px; text-align:right; "/>
- <caption id="caption43" class="cell_1" style="left:805px; top:249px; width:113px; height:23px; vertical-align:middle; ">[반송] 지급반송액</caption>
- <line id="line43" class="line_2" style="x1:805px; y1:296px; x2:1005px; y2:296px; "/>
- <line id="line44" class="line_2" style="x1:0px; y1:271px; x2:188px; y2:271px; "/>
- <caption id="caption44" class="tit_2" style="left:1015px; top:179px; width:130px; height:13px; ">삭감내역사항</caption>
- <caption id="caption46" class="cell_1" style="left:805px; top:224px; width:113px; height:23px; vertical-align:middle; ">[반송] 총진료비</caption>
- <line id="line45" class="line_2" style="x1:805px; y1:321px; x2:1005px; y2:321px; "/>
- <input id="input34" ref="/root/main/list03med/gridpifmmiun01/jraddchrgamt" class="input_default" format="(-)#,###" style="left:318px; top:301px; width:85px; height:19px; text-align:right; "/>
- <caption id="caption53" class="cell_1" style="left:1011px; top:199px; width:90px; height:23px; vertical-align:middle; ">건수 소계</caption>
- <line id="line47" class="line_2" style="x1:1012px; y1:192px; x2:1190px; y2:192px; "/>
- <input id="input36" ref="/root/main/list03med/gridpifmmiun01/sendhandicaprfund" class="input_default" format="(-)#,###" style="left:921px; top:275px; width:85px; height:19px; text-align:right; "/>
- <input id="input37" ref="/root/main/list03med/gridpifmmiun01/sendamt" class="input_default" format="(-)#,###" style="left:921px; top:251px; width:85px; height:19px; text-align:right; "/>
- <line id="line49" class="line_2" style="x1:195px; y1:247px; x2:594px; y2:247px; "/>
- <line id="line50" class="line_2" style="x1:1012px; y1:217px; x2:1190px; y2:217px; "/>
- <caption id="caption56" class="cell_1" style="left:0px; top:248px; width:100px; height:23px; vertical-align:middle; ">본인부담금 소계</caption>
- <caption id="caption57" class="cell_1" style="left:0px; top:273px; width:100px; height:23px; vertical-align:middle; ">청구액 소계</caption>
- <input id="input38" ref="/root/main/list03med/gridpifmmiun01/sendcnt" class="input_default" format="#,###" style="left:921px; top:200px; width:85px; height:19px; text-align:right; "/>
- <caption id="caption58" class="cell_1" style="left:805px; top:273px; width:113px; height:23px; vertical-align:middle; ">[반송] 장애인</caption>
- <input id="input40" ref="/root/main/list03med/gridpifmmiun01/judgreteamt" class="input_default" format="(-)#,###" style="left:921px; top:300px; width:85px; height:19px; text-align:right; "/>
- <line id="line51" class="line_2" style="x1:195px; y1:272px; x2:594px; y2:272px; "/>
- <caption id="caption61" class="cell_1" style="left:194px; top:199px; width:121px; height:23px; vertical-align:middle; ">건수소계</caption>
- <input id="input41" ref="/root/main/list03med/gridpifmmiun01/jrrtnamt" class="input_default" format="(-)#,###" style="left:318px; top:276px; width:85px; height:19px; text-align:right; "/>
- <caption id="caption62" class="cell_1" style="left:805px; top:298px; width:113px; height:23px; vertical-align:middle; ">[심사] 지급보류액</caption>
- <input id="input42" ref="/root/main/list03med/gridpifmmiun01/judgretehandicaprfund" class="input_default" format="(-)#,###" style="left:921px; top:324px; width:85px; height:19px; text-align:right; "/>
- <caption id="caption63" class="cell_1" style="left:0px; top:199px; width:100px; height:23px; vertical-align:middle; ">건수소계</caption>
- <caption id="caption64" class="cell_1" style="left:194px; top:274px; width:121px; height:23px; vertical-align:middle; ">본인부담환급금 소계</caption>
- <input id="input43" ref="/root/main/list03med/gridpifmmiun01/jrsltcnt" class="input_default" format="#,###" style="left:318px; top:200px; width:85px; height:19px; text-align:right; "/>
- <line id="line55" class="line_2" style="x1:194px; y1:322px; x2:399px; y2:322px; "/>
- <caption id="caption68" class="tit_2" style="left:6px; top:180px; width:78px; height:13px; ">청구사항</caption>
- <caption id="caption69" class="cell_1" style="left:194px; top:324px; width:121px; height:23px; vertical-align:middle; ">위탁검사지급금 소계</caption>
- <input id="input44" ref="/root/main/list03med/gridpifmmiun01/jrtrudirecpamt" class="input_default" format="(-)#,###" style="left:318px; top:326px; width:85px; height:19px; text-align:right; "/>
- <caption id="caption70" class="cell_1" style="left:805px; top:323px; width:113px; height:23px; vertical-align:middle; ">[심사] 장애인</caption>
- <line id="line58" class="line_2" style="x1:194px; y1:347px; x2:399px; y2:347px; "/>
- <caption id="caption72" class="cell_1" style="left:0px; top:224px; width:100px; height:23px; vertical-align:middle; ">총진료비 소계</caption>
- <input id="input46" ref="/root/main/list03med/gridpifmmiun01/clownbamt" class="input_default" format="(-)#,###" style="left:103px; top:250px; width:85px; height:19px; text-align:right; "/>
- <line id="line59" class="line_3" style="x1:0px; y1:321px; x2:189px; y2:321px; "/>
- <line id="line60" class="line_1" style="x1:193px; y1:194px; x2:594px; y2:194px; "/>
- <input id="input47" ref="/root/main/list03med/gridpifmmiun01/jrownbamt" class="input_default" format="(-)#,###" style="left:318px; top:251px; width:85px; height:19px; text-align:right; "/>
- <input id="input48" ref="/root/main/list03med/gridpifmmiun01/clamamt2" class="input_default" format="(-)#,###" style="left:509px; top:200px; width:85px; height:19px; text-align:right; "/>
- <caption id="caption73" class="cell_1" style="left:406px; top:224px; width:100px; height:23px; vertical-align:middle; ">심사결정액 소계</caption>
- <input id="input49" ref="/root/main/list03med/gridpifmmiun01/jrsubtamt" class="input_default" format="(-)#,###" style="left:509px; top:251px; width:85px; height:19px; text-align:right; "/>
- <line id="line61" class="line_2" style="x1:805px; y1:222px; x2:1005px; y2:222px; "/>
- <caption id="caption77" class="tit_2" style="left:203px; top:179px; width:78px; height:13px; ">심결사항</caption>
- <caption id="caption78" class="cell_1" style="left:194px; top:249px; width:121px; height:23px; vertical-align:middle; ">본인부담금 소계</caption>
- <caption id="caption79" class="cell_1" style="left:406px; top:274px; width:100px; height:23px; vertical-align:middle; ">장애금 소계</caption>
- <caption id="caption80" class="cell_1" style="left:805px; top:199px; width:113px; height:23px; vertical-align:middle; ">[반송] 건수</caption>
- <line id="line62" class="line_1" style="x1:0px; y1:194px; x2:189px; y2:194px; "/>
- <input id="input50" ref="/root/main/list03med/gridpifmmiun01/clamcnt" class="input_default" format="#,###" style="left:103px; top:200px; width:85px; height:19px; text-align:right; "/>
- <input id="input51" ref="/root/main/list03med/gridpifmmiun01/clmcstotamt" class="input_default" format="(-)#,###" style="left:103px; top:226px; width:85px; height:19px; text-align:right; "/>
- <caption id="caption81" class="cell_1" style="left:194px; top:299px; width:121px; height:23px; vertical-align:middle; ">본인추가부담금 소계</caption>
- <caption id="caption82" class="cell_1" style="left:406px; top:249px; width:100px; height:23px; vertical-align:middle; ">대불금 소계</caption>
- <input id="input52" ref="/root/main/list03med/gridpifmmiun01/jrhandicaprfund" class="input_default" format="(-)#,###" style="left:509px; top:276px; width:85px; height:19px; text-align:right; "/>
- <line id="line63" class="line_2" style="x1:0px; y1:222px; x2:188px; y2:222px; "/>
- <line id="line64" class="line_1" style="x1:804px; y1:194px; x2:1006px; y2:194px; "/>
- <input id="input54" ref="/root/main/list03med/gridpifmmiun01/clsecuinstbamt" class="input_default" format="(-)#,###" style="left:103px; top:275px; width:85px; height:19px; text-align:right; "/>
- <input id="input57" ref="/root/main/list03med/gridpifmmiun01/cutcnt" class="input_default" format="#,###" style="left:1104px; top:200px; width:85px; height:19px; text-align:right; "/>
- <caption id="caption55" class="tit_2" style="left:6px; top:75px; width:111px; height:13px; ">청구사항</caption>
- <input id="input33" ref="/root/main/list02med/gridpifmmiun00/ordym" class="input_default" format="yyyy-mm" style="left:88px; top:96px; width:111px; height:19px; "/>
- <caption id="caption60" class="cell_1" style="left:808px; top:95px; width:85px; height:23px; vertical-align:middle; ">진료분야</caption>
- <input id="input35" ref="/root/main/list02med/gridpifmmiun00/clamflagnm" class="input_default" style="left:492px; top:96px; width:111px; height:19px; "/>
- <input id="input67" ref="/root/main/list02med/gridpifmmiun00/ordfildnm" class="input_default" style="left:895px; top:96px; width:111px; height:19px; "/>
- <line id="line42" class="line_3" style="x1:0px; y1:170px; x2:218px; y2:170px; "/>
- <line id="line57" class="line_1" style="x1:0px; y1:90px; x2:1192px; y2:90px; "/>
- <input id="input68" ref="/root/main/list02med/gridpifmmiun00/clamym" class="input_default" format="yyyy-mm" style="left:290px; top:96px; width:111px; height:19px; "/>
- <input id="input69" ref="/root/main/list02med/gridpifmmiun00/ioflag" class="input_default" style="left:694px; top:96px; width:111px; height:19px; "/>
- <caption id="caption67" class="cell_1" style="left:606px; top:94px; width:85px; height:23px; vertical-align:middle; ">내원유형</caption>
- <line id="line65" class="line_3" style="x1:0px; y1:118px; x2:1192px; y2:118px; "/>
- <input id="input71" ref="/root/main/list02med/gridpifmmiun00/clamno" class="input_default" style="left:1097px; top:96px; width:92px; height:19px; "/>
- <caption id="caption75" class="cell_1" style="left:1009px; top:95px; width:85px; height:23px; vertical-align:middle; ">청구번호</caption>
- <caption id="caption76" class="tit_2" style="left:5px; top:128px; width:160px; height:13px; ">심사차수별 미수관리</caption>
- <caption id="caption94" class="cell_1" style="left:1px; top:95px; width:85px; height:23px; vertical-align:middle; ">진료년월</caption>
- <caption id="caption96" class="cell_1" style="left:1009px; top:148px; width:85px; height:21px; vertical-align:middle; background-color:#ffff99; ">수진자</caption>
- <select1 id="cmb_judgdgmed" ref="/root/send/clam_med/judgdg" class="combo_default" appearance="minimal" style="left:118px; top:149px; width:100px; height:19px; ">
- <choices>
- <itemset nodeset="/root/main/list01med/judgdg01">
- <label ref="judgdg"/>
- <value ref="judgdg"/>
- </itemset>
- </choices>
- <script type="javascript" ev:event="xforms-select">
- <![CDATA[
- var judgdg = cmb_judgdgmed.value;
-
- // 미수일련번호를 의료급여의 인스턴스 폴더인 clam_med에 세팅
- for(var i=0;i<cmb_judgdgmed.length;i++) {
- if(judgdg == model.getValue("/root/main/list01med/decoseq["+i+"]/judgdg")) {
- model.makeNode("/root/send/clam_med/decoseq");
- model.setValue("/root/send/clam_med/decoseq", model.getValue("/root/main/list01med/decoseq["+i+"]/decoseq"));
- }
- }
- searchMedByJudgdg();
- //submit("TRPIF30115") ; //청구내역
- //submit("TRPIF30116") ; //심결내역
- //submit("TRPIF30117") ; //명세서
- ]]>
- </script>
- </select1>
- <line id="line68" class="line_1" style="x1:0px; y1:143px; x2:1192px; y2:143px; "/>
- <caption id="caption97" class="cell_1" style="left:808px; top:147px; width:85px; height:23px; vertical-align:middle; background-color:#ffff99; ">등록번호</caption>
- <caption id="caption98" class="cell_1" style="left:606px; top:147px; width:85px; height:23px; vertical-align:middle; background-color:#ffff99; ">명일련</caption>
- <caption id="caption99" class="cell_1" style="left:0px; top:147px; width:115px; height:23px; vertical-align:middle; ">심사차수</caption>
- <caption id="caption100" class="cell_1" style="left:404px; top:95px; width:85px; height:23px; vertical-align:middle; ">청구구분</caption>
- <caption id="caption101" class="cell_1" style="left:202px; top:94px; width:85px; height:23px; vertical-align:middle; ">미수월</caption>
- <line id="line69" class="line_3" style="x1:607px; y1:169px; x2:1192px; y2:169px; "/>
- <line id="line27" class="line_3" style="x1:406px; y1:297px; x2:594px; y2:297px; "/>
- <line id="line41" class="line_3" style="x1:1011px; y1:272px; x2:1191px; y2:272px; "/>
- <line id="line39" class="line_3" style="x1:806px; y1:345px; x2:1006px; y2:345px; "/>
- <line id="line37" class="line_3" style="x1:194px; y1:346px; x2:404px; y2:346px; "/>
- <line id="line46" class="line_1" style="x1:0px; y1:375px; x2:1192px; y2:375px; "/>
- <caption id="caption10" class="tit_2" style="left:6px; top:360px; width:178px; height:13px; ">명세서일련번호별 청구사항</caption>
- <group id="group7" scroll="auto" ref="/root/main/list04med/gridpifmmiun02" style="left:0px; top:647px; width:1192px; height:27px; ">
- <line id="line48" class="line_6" style="x1:0px; y1:0px; x2:1192px; y2:0px; "/>
- <button id="button4" class="btn3_letter6" style="left:0px; top:5px; width:104px; height:22px; ">
- <caption>자격보류관리</caption>
- <script type="javascript" ev:event="onclick">
- <![CDATA[
- if(chkJudgdgMed("1")) {
- modal("SMPIF30140", 1, 1, 1, "SMPIF30140", "/root/send/clam_med", "/root/send/sendlnk");
- }
- ]]>
- </script>
- </button>
- <button id="button5" class="btn3_letter4" style="left:345px; top:5px; width:80px; height:22px; ">
- <caption>반송관리</caption>
- <script type="javascript" ev:event="onclick">
- <![CDATA[
- if(chkJudgdgMed("4")) {
- //model.setValue("/root/send/clam_med/instcd",model.getValue("/root/main/list02med/gridpifmmiun00/instcd"));
- model.makeNode("/root/send/clam_med/screenflag");
- model.setValue("/root/send/clam_med/screenflag", "boho");
- modal("SMPIF30130", 1, 1, 1, "SMPIF30130", "/root/send/clam_med", "/root/send/sendlnk");
- }
- ]]>
- </script>
- </button>
- <button id="button8" class="btn3_letter6" style="left:238px; top:5px; width:104px; height:22px; ">
- <caption>심사보류관리</caption>
- <script type="javascript" ev:event="onclick">
- <![CDATA[
- if(chkJudgdgMed("3")) {
- for(var i=1;i<=cmb_judgdgmed.length;i++) {
- if(cmb_judgdgmed.value == model.getValue("/root/main/list01med/decoseq["+i+"]/judgdg")) {
- model.makeNode("/root/send/clam_med/decoseq");
- model.setValue("/root/send/clam_med/decoseq", model.getValue("/root/main/list01med/decoseq["+i+"]/decoseq"));
- }
- }
- modal("SMPIF30160", 1, 1, 1, "SMPIF30160", "/root/send/clam_med", "/root/send/sendlnk");
- }
- ]]>
- </script>
- </button>
- <button id="button9" class="btn3_letter8" style="left:106px; top:5px; width:128px; height:22px; ">
- <caption>장애인/대불금관리</caption>
- <script type="javascript" ev:event="onclick">
- <![CDATA[
- if(chkJudgdgMed("2")) {
- modal("SMPIF30150", 1, 1, 1, "SMPIF30150", "/root/send", "/root/send/sendlnk");
- }
- ]]>
- </script>
- </button>
- </group>
- <input id="input4" ref="/root/main/list03med/gridpifmmiun01/clhandicaprfund" class="input_default" format="(-)#,###" style="left:103px; top:300px; width:85px; height:19px; text-align:right; "/>
- <caption id="caption2" class="cell_1" style="left:0px; top:298px; width:100px; height:23px; vertical-align:middle; ">장애인 소계</caption>
- <caption id="caption3" class="cell_1" style="left:1011px; top:224px; width:90px; height:23px; vertical-align:middle; ">조정금액 소계</caption>
- <input id="input7" ref="/root/main/list03med/gridpifmmiun01/adjtamt" class="input_default" format="(-)#,###" style="left:1104px; top:226px; width:85px; height:19px; text-align:right; "/>
- <input id="input26" ref="/root/main/list03med/gridpifmmiun01/orgreduamt" class="input_default" format="(-)#,###" style="left:1104px; top:251px; width:85px; height:19px; text-align:right; "/>
- <caption id="caption20" class="cell_1" style="left:1011px; top:249px; width:90px; height:23px; vertical-align:middle; ">실삭감액 소계</caption>
- <line id="line56" class="line_2" style="x1:0px; y1:296px; x2:188px; y2:296px; "/>
- <input id="ipt_docuseqno2" ref="/root/send/searchgridrowmed/docuseqno" class="input_default" style="left:694px; top:148px; width:111px; height:19px; ">
- <script type="javascript" ev:event="onkeyup">
- <![CDATA[
- if(event.keyCode == "13") {
- setInputNodeCurText();
- //ipt_docuseqno2.value = "";
- ipt_pid2.value = "";
- ipt_patnmmed.value = "";
- var docuseqno = ipt_docuseqno2.value;
- var cnt = 0;
-
- /*if(docuseqno.length == 0) {
- return false;
- } else if(docuseqno.length == 1) {
- docuseqno = "0000"+docuseqno;
- } else if(docuseqno.length == 2) {
- docuseqno = "000"+docuseqno;
- } else if(docuseqno.length == 3) {
- docuseqno = "00"+docuseqno;
- } else if(docuseqno.length == 4) {
- docuseqno = "0"+docuseqno;
- } else if(docuseqno.length == 5) {
- docuseqno = docuseqno;
- } else if(docuseqno.length > 5) {
- messageBox("명세서일련번호는 최대 5자리","E008");
- ipt_docuseqno2.value = "";
- return false;
- }*/
-
- if(docuseqno.length > 5) {
- messageBox("명세서일련번호는 최대 5자리","E008");
- ipt_docuseqno2.value = "";
- return false;
- }
-
- flagmed = "N";
-
- var rows = grd_pifmmiun02.rows;
-
- for(var i=1;i<rows;i++) {
- if(model.getValue("/root/main/list04med/gridpifmmiun02["+i+"]/docuseqno") == docuseqno) {
- grd_pifmmiun02.row = i;
- grd_pifmmiun02.topRow = i;
- cnt++;
- flagmed = "Y";
- return false;
- }
- }
-
- if(cnt == 0) {
- researchgridmed("docuseqno", docuseqno);
- }
- }
- ]]>
- </script>
- </input>
- <input id="ipt_pid2" ref="/root/send/searchgridrowmed/pid" class="input_default" style="left:895px; top:148px; width:111px; height:19px; ">
- <script type="javascript" ev:event="onkeyup">
- <![CDATA[
- if(event.keyCode == "13") {
- setInputNodeCurText();
- ipt_docuseqno2.value = "";
- //ipt_pid2.value = "";
- ipt_patnmmed.value = "";
- var pid = ipt_pid2.value;
- var rows = grd_pifmmiun02.rows;
- var cnt = 0;
-
- flagmed = "N";
-
- for(var i=1;i<rows;i++) {
- if(model.getValue("/root/main/list04med/gridpifmmiun02["+i+"]/pid") == pid) {
- grd_pifmmiun02.row = i;
- grd_pifmmiun02.topRow = i;
- cnt++;
- flagmed = "Y";
- return false;
- }
- }
-
- if(cnt == 0) {
- researchgridmed("pid", pid);
- }
- }
- ]]>
- </script>
- </input>
- <caption id="caption21" class="cell_1" style="left:599px; top:323px; width:113px; height:23px; vertical-align:middle; ">[심사] 총진료비</caption>
- <line id="line33" class="line_2" style="x1:599px; y1:271px; x2:800px; y2:271px; "/>
- <line id="line71" class="line_1" style="x1:598px; y1:194px; x2:800px; y2:194px; "/>
- <caption id="caption29" class="cell_1" style="left:599px; top:298px; width:113px; height:23px; vertical-align:middle; ">[심사] 건수</caption>
- <line id="line72" class="line_2" style="x1:599px; y1:296px; x2:800px; y2:296px; "/>
- <caption id="caption33" class="tit_2" style="left:605px; top:179px; width:199px; height:13px; ">자격(보류,반송)/심사보류사항</caption>
- <input id="input21" ref="/root/main/list03med/gridpifmmiun01/judgretetotordamt" class="input_default" format="(-)#,###" style="left:715px; top:324px; width:85px; height:19px; text-align:right; "/>
- <line id="line73" class="line_2" style="x1:599px; y1:321px; x2:800px; y2:321px; "/>
- <input id="input22" ref="/root/main/list03med/gridpifmmiun01/judgretecnt" class="input_default" format="#,###" style="left:715px; top:300px; width:85px; height:19px; text-align:right; "/>
- <caption id="caption38" class="cell_1" style="left:599px; top:249px; width:113px; height:23px; vertical-align:middle; ">[자격] 지급보류액</caption>
- <input id="input28" ref="/root/main/list03med/gridpifmmiun01/qualretehandicaprfund" class="input_default" format="(-)#,###" style="left:715px; top:275px; width:85px; height:19px; text-align:right; "/>
- <caption id="caption47" class="cell_1" style="left:599px; top:224px; width:113px; height:23px; vertical-align:middle; ">[자격] 총진료비</caption>
- <line id="line74" class="line_2" style="x1:599px; y1:247px; x2:800px; y2:247px; "/>
- <line id="line75" class="line_3" style="x1:600px; y1:345px; x2:800px; y2:345px; "/>
- <caption id="caption51" class="cell_1" style="left:599px; top:273px; width:113px; height:23px; vertical-align:middle; ">[자격] 장애인</caption>
- <input id="input45" ref="/root/main/list03med/gridpifmmiun01/qualreteamt" class="input_default" format="(-)#,###" style="left:715px; top:251px; width:85px; height:19px; text-align:right; "/>
- <input id="input58" ref="/root/main/list03med/gridpifmmiun01/qualretecnt" class="input_default" format="#,###" style="left:715px; top:200px; width:85px; height:19px; text-align:right; "/>
- <input id="input59" ref="/root/main/list03med/gridpifmmiun01/qualretetotordamt" class="input_default" format="(-)#,###" style="left:715px; top:226px; width:85px; height:19px; text-align:right; "/>
- <caption id="caption52" class="cell_1" style="left:599px; top:199px; width:113px; height:23px; vertical-align:middle; ">[자격] 건수</caption>
- <line id="line76" class="line_2" style="x1:599px; y1:222px; x2:800px; y2:222px; "/>
- <input id="ipt_acptnocntmed" ref="/root/main/list00med/list00_acptclam/acptnocnt/cnt" visibility="hidden" style="left:380px; top:35px; width:115px; height:19px; "/>
- <input id="ipt_patnmmed" ref="/root/send/searchgridrowmed/patnm" class="input_default" style="left:1097px; top:148px; width:92px; height:19px; ">
- <script type="javascript" ev:event="onkeyup">
- <![CDATA[
- if(event.keyCode == "13") {
- setInputNodeCurText();
- ipt_docuseqno2.value = "";
- ipt_pid2.value = "";
- //ipt_patnmmed.value = "";
- var patnm = ipt_patnmmed.value;
- var rows = grd_pifmmiun02.rows;
- var cnt = 0;
-
- flagmed = "N";
-
- if(model.getValue("/root/init/prepatnm") == "") {
- for(var i=1;i<rows;i++) {
- if(model.getValue("/root/main/list04med/gridpifmmiun02["+i+"]/patnm") == patnm) {
- grd_pifmmiun02.row =i;
- grd_pifmmiun02.topRow = i;
- model.setValue("/root/init/prepatnmcnt",i);
- cnt++;
- flagmed = "Y";
- break;
- }
- }
- model.setValue("/root/init/prepatnm",patnm);
- if(cnt == 0) {
- researchgridmed("patnm", patnm);
- }
- } else {
- if(patnm == model.getValue("/root/init/prepatnm")) {
- for(var i=Number(model.getValue("root/init/prepatnmcnt"))+1;i<rows;i++) {
- if(model.getValue("/root/main/list04med/gridpifmmiun02["+i+"]/patnm") == patnm) {
- grd_pifmmiun02.row = i;
- grd_pifmmiun02.topRow = i;
- model.setValue("/root/init/prepatnmcnt",i);
- cnt++;
- flagmed = "Y";
- break;
- }
- }
-
- if(cnt == 0) {
- researchgridmed("patnm", patnm);
- }
- } else {
- for(var i=1;i<rows;i++) {
- if(model.getValue("/root/main/list04med/gridpifmmiun02["+i+"]/patnm") == patnm) {
- grd_pifmmiun02.row = i;
- grd_pifmmiun02.topRow = i;
- model.setValue("/root/init/prepatnmcnt",i);
- cnt++;
- flagmed = "Y";
- break;
- }
- }
- model.setValue("/root/init/prepatnm",patnm);
- if(cnt == 0) {
- researchgridmed("patnm", patnm);
- }
- }
- }
-
- }
- ]]>
- </script>
- <script type="javascript" ev:event="xforms-value-changed">
- <![CDATA[
- if(event.keyCode == "13") {
- setInputNodeCurText();
- var patnm = ipt_patnmmed.value;
- var rows = grd_pifmmiun02.rows;
- for(var i=1;i<rows;i++) {
- if(model.getValue("/root/main/list04med/gridpifmmiun02["+i+"]/patnm") == patnm) {
- grd_pifmmiun02.select(i,11) = true;
- grd_pifmmiun02.topRow = i;
- }
- }
- }
- ]]>
- </script>
- </input>
- <button id="button3" class="btn2_letter4" style="left:1127px; top:354px; width:64px; height:19px; ">
- <caption>엑셀저장</caption>
- <script type="javascript" ev:event="onclick">
- <![CDATA[
- var today = new Date();
-
- var yy = today.getYear()+"";
- var mm = today.getMonth()+1;
- var dd = today.getDate();
-
- if(mm < 10) { mm = "0"+mm; } else { mm = mm+""; }
- if(dd < 10) { dd = "0" + dd; } else { dd = dd + ""; }
-
- var tmp = yy+mm+dd;
- var fileName = window.fileDialog("save", ",", false, "개인별미수관리(보호)_"+tmp, "xls", "Excel Files(*.xls)|*.xls|All Files (*.*)|*.*");
- if (fileName != "") { grd_pifmmiun02.saveExcel(fileName, "SheetName", true, true, "", "", ""); }
- ]]>
- </script>
- </button>
- <button id="button14" class="btn2_letter6" style="left:1039px; top:354px; width:86px; height:19px; ">
- <caption>Open Excel</caption>
- <script type="javascript" ev:event="DOMActivate">
- <![CDATA[
- try {
- window.exec("excel");
- } catch(e) {
- alert(e);
- }
- ]]>
- </script>
- </button>
- <button id="button16" class="btn2_letter3" style="left:929px; top:354px; width:53px; height:19px; ">
- <caption>열카피</caption>
- <script type="javascript" ev:event="onclick">
- <![CDATA[
- grd_pifmmiun02.attribute("selectionmode") = "bycol";
- ]]>
- </script>
- </button>
- <button id="button17" class="btn2_letter3" style="left:984px; top:354px; width:53px; height:19px; ">
- <caption>행카피</caption>
- <script type="javascript" ev:event="onclick">
- <![CDATA[
- grd_pifmmiun02.attribute("selectionmode") = "byrow";
- ]]>
- </script>
- </button>
- <button id="button18" class="btn2_letter3" style="left:874px; top:354px; width:53px; height:19px; ">
- <caption>셀카피</caption>
- <script type="javascript" ev:event="onclick">
- <![CDATA[
- grd_pifmmiun02.attribute("selectionmode") = "free";
- ]]>
- </script>
- </button>
- <line id="line15" class="line_2" style="x1:195px; y1:222px; x2:594px; y2:222px; "/>
- <caption id="caption102" class="cell_1" style="left:194px; top:224px; width:121px; height:23px; vertical-align:middle; ">총진료비 소계</caption>
- <input id="input9" ref="/root/main/list03med/gridpifmmiun01/jrmcstotamt" class="input_default" format="(-)#,###" style="left:318px; top:226px; width:85px; height:19px; text-align:right; "/>
- <button id="button21" class="btn5_letter3" style="left:819px; top:354px; width:53px; height:19px; ">
- <caption>틀해제</caption>
- <script type="javascript" ev:event="onclick">
- <![CDATA[
- grd_pifmmiun02.fixedCols = 1;
- model.refresh();
- ]]>
- </script>
- </button>
- <button id="fixedcolsbtn" class="btn5_letter3" style="left:764px; top:354px; width:53px; height:19px; ">
- <caption>틀고정</caption>
- <script type="javascript" ev:event="onclick">
- <![CDATA[
- grd_pifmmiun02.fixedCols = 12;
- model.refresh();
- ]]>
- </script>
- </button>
- </case>
- <case id="case3">
- <caption id="caption48" class="tit_2" style="left:6px; top:45px; width:111px; height:13px; ">심사결정사항</caption>
- <input id="input5" ref="/root/main/list02/gridpifmiunc00/ordym" class="input_default" format="yyyy-mm" style="left:88px; top:66px; width:111px; height:19px; "/>
- <caption id="caption49" class="cell_1" style="left:477px; top:169px; width:110px; height:23px; vertical-align:middle; ">건수</caption>
- <line id="line23" class="line_2" style="x1:477px; y1:192px; x2:709px; y2:192px; "/>
- <line id="line84" class="line_3" style="x1:238px; y1:217px; x2:470px; y2:217px; "/>
- <caption id="caption104" class="cell_1" style="left:808px; top:65px; width:85px; height:23px; vertical-align:middle; ">산재유형</caption>
- <input id="input19" ref="/root/main/list02/gridpifmiunc00/clamflagnm" class="input_default" style="left:492px; top:66px; width:111px; height:19px; "/>
- <input id="input75" ref="/root/main/list03/gridpifmiunc01/sendtotordamt" class="input_default" format="(-)#,###" style="left:829px; top:195px; width:120px; height:19px; text-align:right; "/>
- <line id="line87" class="line_1" style="x1:955px; y1:164px; x2:1191px; y2:164px; "/>
- <line id="line88" class="line_1" style="x1:477px; y1:164px; x2:710px; y2:164px; "/>
- <caption id="caption105" class="cell_1" style="left:477px; top:194px; width:111px; height:23px; vertical-align:middle; ">보류액</caption>
- <line id="line89" class="line_3" style="x1:716px; y1:217px; x2:949px; y2:217px; "/>
- <input id="input82" ref="/root/main/list03/gridpifmiunc01/retetotordamt" class="input_default" format="(-)#,###" style="left:590px; top:195px; width:120px; height:19px; text-align:right; "/>
- <line id="line92" class="line_3" style="x1:955px; y1:243px; x2:1191px; y2:243px; "/>
- <input id="input84" ref="/root/main/list02/gridpifmiunc00/sumtypecd" class="input_default" style="left:895px; top:66px; width:111px; height:19px; "/>
- <line id="line93" class="line_3" style="x1:0px; y1:140px; x2:218px; y2:140px; "/>
- <caption id="caption108" class="tit_2" style="left:480px; top:149px; width:129px; height:13px; ">지급보류사항</caption>
- <input id="input86" ref="/root/main/list02/gridpifmiunc00/clamym" class="input_default" format="yyyy-mm" style="left:290px; top:66px; width:111px; height:19px; "/>
- <line id="line96" class="line_1" style="x1:0px; y1:60px; x2:1192px; y2:60px; "/>
- <caption id="caption110" class="tit_2" style="left:719px; top:149px; width:129px; height:13px; ">지급불능사항</caption>
- <input id="input90" ref="/root/main/list02/gridpifmiunc00/ioflag" class="input_default" style="left:694px; top:66px; width:111px; height:19px; "/>
- <line id="line100" class="line_3" style="x1:0px; y1:88px; x2:1192px; y2:88px; "/>
- <caption id="caption111" class="cell_1" style="left:606px; top:64px; width:85px; height:23px; vertical-align:middle; ">내원유형</caption>
- <caption id="caption112" class="cell_1" style="left:716px; top:194px; width:110px; height:23px; vertical-align:middle; ">불능액</caption>
- <caption id="caption113" class="tit_2" style="left:956px; top:149px; width:110px; height:14px; ">삭감내역</caption>
- <line id="line103" class="line_1" style="x1:0px; y1:280px; x2:1192px; y2:280px; "/>
- <input id="input93" ref="/root/main/list02/gridpifmiunc00/clamno" class="input_default" style="left:1097px; top:66px; width:92px; height:19px; "/>
- <caption id="caption116" class="cell_1" style="left:1009px; top:65px; width:85px; height:23px; vertical-align:middle; ">청구번호</caption>
- <caption id="caption117" class="tit_2" style="left:5px; top:98px; width:160px; height:13px; ">심사차수별 미수관리</caption>
- <line id="line104" class="line_2" style="x1:956px; y1:192px; x2:1190px; y2:192px; "/>
- <caption id="caption118" class="cell_1" style="left:955px; top:219px; width:110px; height:23px; vertical-align:middle; ">삭감율</caption>
- <button id="button19" class="btn2_letter6" style="left:1039px; top:259px; width:86px; height:19px; ">
- <caption>Open Excel</caption>
- <script type="javascript" ev:event="DOMActivate">
- <![CDATA[
- try {
- window.exec("excel");
- } catch(e) {
- alert(e);
- }
- ]]>
- </script>
- </button>
- <caption id="caption120" class="cell_1" style="left:1px; top:65px; width:85px; height:23px; vertical-align:middle; ">진료년월</caption>
- <input id="input97" ref="/root/main/list03/gridpifmiunc01/orgreduamt" class="input_default" format="(-)#,###" style="left:1068px; top:221px; width:120px; height:19px; text-align:right; "/>
- <line id="line105" class="line_2" style="x1:956px; y1:217px; x2:1190px; y2:217px; "/>
- <line id="line106" class="line_2" style="x1:239px; y1:192px; x2:470px; y2:192px; "/>
- <input id="input100" ref="/root/main/list03/gridpifmiunc01/retecnt" class="input_default" format="#,###" style="left:590px; top:171px; width:120px; height:19px; text-align:right; "/>
- <input id="ipt_pid3" ref="/root/send/searchgridrow/pid" class="input_default" style="left:895px; top:118px; width:111px; height:19px; ">
- <script type="javascript" ev:event="onkeyup">
- <![CDATA[
- if(event.keyCode == "13") {
- setInputNodeCurText();
- ipt_docuseqno3.value = "";
- //ipt_pid1.value = "";
- ipt_patnm3.value = "";
-
- var pid = ipt_pid3.value;
- var rows = grd_inducsclamspec.rows;
- var cnt = 0;
-
- flag = "N";
-
- for(var i=1;i<rows;i++) {
- //if(model.getValue("/root/main/list04/gridpifmiunc02["+i+"]/pid") == pid) {
- if(grd_inducsclamspec.valueMatrix(i,11) == pid) {
- grd_inducsclamspec.row = i;
- grd_inducsclamspec.topRow = i;
- cnt++;
- flag = "Y";
- return false;
- }
- }
-
- if(cnt == 0) {
- messageBox("찾는 등록번호가","I004");
- model.setFocus("ipt_pid3");
- //researchgrid("pid",pid);
- }
- }
- ]]>
- </script>
- </input>
- <input id="ipt_docuseqno3" ref="/root/send/searchgridrow/docuseqno" class="input_default" style="left:694px; top:118px; width:111px; height:19px; ">
- <script type="javascript" ev:event="onkeyup">
- <![CDATA[
- if(event.keyCode == "13") {
- setInputNodeCurText();
- //ipt_docuseqno1.value = "";
- ipt_pid3.value = "";
- ipt_patnm3.value = "";
- var docuseqno = ipt_docuseqno3.value;
- var cnt = 0;
-
- /*if(docuseqno.length == 0) {
- return false;
- } else if(docuseqno.length == 1) {
- docuseqno = "0000"+docuseqno;
- } else if(docuseqno.length == 2) {
- docuseqno = "000"+docuseqno;
- } else if(docuseqno.length == 3) {
- docuseqno = "00"+docuseqno;
- } else if(docuseqno.length == 4) {
- docuseqno = "0"+docuseqno;
- } else if(docuseqno.length == 5) {
- docuseqno = docuseqno;
- } else if(docuseqno.length > 5) {
- messageBox("명세서일련번호는 최대 5자리","E008");
- ipt_docuseqno2.value = "";
- return false;
- }*/
-
- if(docuseqno.length > 5) {
- messageBox("명세서일련번호는 최대 5자리","E008");
- ipt_docuseqno3.value = "";
- return false;
- }
-
- flag = "N";
-
- var rows = grd_inducsclamspec.rows;
-
- for(var i=1;i<rows;i++) {
- //if(model.getValue("/root/main/list04/gridpifmiunc02["+i+"]/docuseqno") == docuseqno) {
- if(grd_inducsclamspec.valueMatrix(i,10) == docuseqno) {
- //grd_pifmiunc02.select(i,9) = true;
- grd_inducsclamspec.row = i;
- grd_inducsclamspec.topRow = i;
- cnt++;
- flag = "Y";
- return false;
- }
- }
-
- if(cnt == 0) {
- messageBox("찾는 명일련이","I004");
- model.setFocus("ipt_docuseqno3");
- //researchgrid("docuseqno",docuseqno);
- }
- }
- ]]>
- </script>
- </input>
- <caption id="caption125" class="cell_1" style="left:1009px; top:118px; width:85px; height:21px; vertical-align:middle; background-color:#ffff99; ">수진자</caption>
- <input id="input103" ref="/root/main/list03/gridpifmiunc01/cutcnt" class="input_default" format="#,###" style="left:1068px; top:171px; width:120px; height:19px; text-align:right; "/>
- <caption id="caption126" class="cell_1" style="left:955px; top:194px; width:110px; height:23px; vertical-align:middle; ">삭감액</caption>
- <input id="input104" ref="/root/main/list03/gridpifmiunc01/sendcnt" class="input_default" format="#,###" style="left:829px; top:171px; width:120px; height:19px; text-align:right; "/>
- <group id="group2" style="left:0px; top:5px; width:1192px; height:35px; vertical-align:top; ">
- <shape id="roundrect2" class="roundrect_search" appearance="roundrect" ellipsewidth="10" ellipseheight="10" style="left:0px; top:0px; width:1192px; height:35px; background-color:#fffbf2; border-color:#ffd799; "/>
- <button id="button20" class="btn1_letter2" style="left:1122px; top:7px; width:56px; height:22px; ">
- <caption>조회</caption>
- <script type="javascript" ev:event="onclick">
- <![CDATA[
- // search();
- model.removeNodeSet("/root/main/list04");
- submit("TRPIF30106") ;
- model.refresh();
- // Instance_Init() ;
- // model.resetInstanceNode("/root/send/clam_mtrt/judgdg");
- // model.refresh();
- //
- // if(rdo_indusrchcond.value == "1") {
- // var vacptno = ipt_indusrchcond03.value;
- // var vclamym = cmb_indusrchcond03.value;
- //
- // if(vacptno == ""){
- // messageBox("접수번호를 반드시","C001");
- // model.setFocus("ipt_indusrchcond03");
- // return false ;
- // }
- //
- // if(vclamym == ""){
- // messageBox("청구년월을 반드시","C002");
- // model.setFocus("cmb_indusrchcond03");
- // return false ;
- // }
- //
- // model.setValue("/root/send/clam_mtrt/clamym", vclamym) ;
- // model.setValue("/root/send/clam_mtrt/acptno", vacptno) ;
- // model.setValue("/root/send/clam_mtrt/insukind", model.getValue("/root/send/srchcond/insukind")) ;
- //
- // } else if(rdo_indusrchcond.value == "2") {
- // var vclamym = ipt_indusrchcond03.value;
- // var vacptno = cmb_indusrchcond03.value;
- //
- // if(vclamym == ""){
- // messageBox("청구년월을 반드시","C001");
- // model.setFocus("ipt_indusrchcond03");
- // return false ;
- // }
- // if(vacptno == ""){
- // messageBox("접수번호를 반드시","C002");
- // model.setFocus("cmb_indusrchcond03");
- // return false ;
- // }
- //
- // model.setValue("/root/send/clam_mtrt/clamym", vclamym) ;
- // model.setValue("/root/send/clam_mtrt/acptno", vacptno) ;
- // model.setValue("/root/send/clam_mtrt/insukind", model.getValue("/root/send/srchcond/insukind")) ;
- //
- // } else {
- // messageBox("조회조건을","I007");
- // return false ;
- // }
- //
- // submit("TRPIF30103") ; //심사차수
- // submit("TRPIF30104") ; //청구내역
- //
- // model.setValue("/root/send/clam_mtrt/clamno", model.getValue("/root/main/list02/gridpifmiunc00/clamno")) ;
- // model.setValue("/root/send/clam_mtrt/instcd", model.getValue("/root/main/list02/gridpifmiunc00/instcd"));
- //
- // // 2007.12.07 페이지단위 조회를 위한 값 0으로 세팅
- // model.setValue("/root/send/clam_mtrt/offset",0);
- //
- // if(combo2.length == 0) {
- // //submit("TRPIF30104") ; //청구내역
- // submit("TRPIF30105") ; //청구내역
- // submit("TRPIF30106") ; //명세서별 조회(청구데이터만 조회)
- // model.makeNode("/root/main/list01/judgdg01/judgdg");
- // model.setValue("/root/main/list01/judgdg01/judgdg","없음");
- // combo2.value = model.getValue("/root/main/list01/judgdg01/judgdg");
- // model.refresh();
- // //submit("TRPIF30106") ; //명세서별 조회
- // } else if(combo2.length == 1) {
- // combo2.select(0);
- // //searchByJudgdg();
- // } else if(combo2.length >1) {
- // //copyNodeType("/root/main/list01/judgdg01","/root/main/list01temp/judgdg01","before");
- //
- // //addComboItem("cmb_judgdg", " ", "전체");
- // combo2.value = model.getValue("/root/main/list01/judgdg01[0]/judgdg");
- // model.refresh();
- // model.setFocus("cmb_judgdg");
- // combo2.select(0);
- //
- // }
- ]]>
- </script>
- </button>
- <line id="line107" class="line_4" style="x1:1106px; y1:7px; x2:1106px; y2:29px; border-color:#ffe4bb; border-left-style:solid; "/>
- <select1 id="rdo_indusrchcond" ref="/root/send/srchcond/searchflag" class="radio_search" appearance="full" cols="2" overflow="visible" style="left:15px; top:9px; width:145px; height:17px; font-weight:bold; border-style:none; ">
- <choices>
- <item>
- <label>접수번호</label>
- <value>1</value>
- </item>
- <item>
- <label>청구년월</label>
- <value>2</value>
- </item>
- </choices>
- <script type="javascript" ev:event="xforms-value-changed">
- <![CDATA[
- if(rdo_indusrchcond.value == "1") {
- model.resetInstanceNode("/root/main/list00");
- ipt_indusrchcond03.value = "";
- ipt_indusrchcond03.attribute("maxlength") = 15;
- ipt_indusrchcond03.attribute("inputtype") = "button";
- model.refresh();
- } else {
- model.resetInstanceNode("/root/main/list00");
- ipt_indusrchcond03.value = "";
- ipt_indusrchcond03.attribute("maxlength") = 6;
- ipt_indusrchcond03.attribute("inputtype") = "";
- model.refresh();
- }
- model.setFocus("ipt_indusrchcond03");
- //model.setValue("/root/send/acptclam/searchflag", "1");
- ]]>
- </script>
- </select1>
- <input id="ipt_indusrchcond03" ref="/root/send/srchcond/srchcond01" class="input_s_essential" inputtype="button" maxlength="15" style="left:174px; top:8px; width:120px; height:19px; ">
- <script type="javascript" ev:event="DOMFocusOut">
- <![CDATA[
- if(ipt_srchcond01.value == "") {
- return false;
- }
- //if(event.keyCode == "13") {
- // setInputNodeCurText();
- // model.removenode("/root/main/list00");
- model.resetInstanceNode("/root/main/list00");
- model.removenode("/root/main/list01");
- model.removenode("/root/main/list02");
- model.removenode("/root/main/list03");
- model.removenode("/root/main/list04");
-
- // model.resetInstanceNode("/root/main/list01");
- // model.resetInstanceNode("/root/main/list02");
- // model.resetInstanceNode("/root/main/list03");
- // model.resetInstanceNode("/root/main/list04");
- model.setValue("/root/send/srchcond/srchcond02","");
- model.setValue("/root/send/srchcond/insukind","41");
- model.refresh();
-
- var srchflag = model.getValue("/root/send/srchcond/searchflag");
-
- if(srchflag == "1") {
- if (ipt_srchcond01.value == "") {
- messageBox("접수번호를","C001") ;
- model.setfocus("ipt_srchcond01");
- return false;
- }
- }
-
- if(srchflag == "2") {
- if (ipt_srchcond01.value == "") {
- messageBox("청구년월을","C001") ;
- model.setfocus("ipt_srchcond01");
- return false;
- }
- }
- // Session_Init();
- // model.setValue("/root/send/send_mtrt/searchflag", "2") ;
- submit("TRPIF30101") ;
- if(ipt_acptnocnt.value > 1) {
- opt_comment.visible = true;
- opt_comment.value = "[ 같은 접수번호가 여러개("+ipt_acptnocnt.value+"개) 있습니다. ]";
- } else {
- opt_comment.visible = false;
- }
- // model.setfocus("cmb_clamymlist");
- if(cmb_srchcond02.length > 0) {
- if(cmb_srchcond02.length == 1) {
- cmb_srchcond02.select(0);
- } else {
- model.setFocus("cmb_srchcond02");
- }
- // search();
- }
- //}
- ]]>
- </script>
- <script type="javascript" ev:event="onbuttonclick">
- <![CDATA[
- var srchflag = model.getValue("/root/send/srchcond/searchflag");
-
- //조회조건이 청구년월일 경우 버튼 동작 안하도록 설정
- if(srchflag == "2") {
- return false;
- }
-
- model.makeNode("/root/send/send01/termflag");
- model.makeNode("/root/send/send01/fromdd");
- model.makeNode("/root/send/send01/todd");
- model.makeNode("/root/send/send01/insukind");
- model.makeNode("/root/send/send01/acptno");
- model.setValue("/root/send/send01/insukind","41");
- setParameter("SPPIF30302_RTNTYPE", "P");
-
- modal("SPPIF30302", 1, 1, 1, "SPPIF30302", "/root/send/send01", "/root/send");
-
- model.setValue("/root/send/srchcond/srchcond01", getParameter("SPPIF30302_acptno"));
-
- model.removeNodeset("/root/send/send01");
- clearParameter("SPPIF30302_RTNTYPE");
- clearParameter("SPPIF30302_acptno");
-
- ipt_indusrchcond03.refresh();
- if( model.getValue("/root/send/srchcond/srchcond01") != '' ){
- //ipt_srchcond01.dispatch("DOMFocusOut");
- model.setFocus("cmb_indusrchcond03");
- }
-
- ]]>
- </script>
- </input>
- <select1 id="cmb_indusrchcond03" ref="/root/send/srchcond/srchcond02" class="combo_search" appearance="minimal" style="left:295px; top:8px; width:100px; height:19px; ">
- <choices>
- <itemset nodeset="/root/main/list00/srchcond">
- <label ref="srchcond02"/>
- <value ref="srchcond02"/>
- </itemset>
- </choices>
- <script type="javascript" ev:event="xforms-select">
- <![CDATA[
- search();
- ]]>
- </script>
- </select1>
- <input id="ipt_acptnocntinducs" ref="/root/main/list00/acptnocnt/cnt" visibility="hidden" style="left:725px; top:8px; width:115px; height:19px; "/>
- <output id="opt_commentinducs" visibility="hidden" style="left:410px; top:8px; width:220px; height:19px; color:#999999; "/>
- </group>
- <input id="ipt_patnm3" ref="/root/send/searchgridrow/patnm" class="input_default" style="left:1097px; top:118px; width:92px; height:19px; ">
- <script type="javascript" ev:event="onkeyup">
- <![CDATA[
- if(event.keyCode == "13") {
- setInputNodeCurText();
- ipt_docuseqno3.value = "";
- ipt_pid3.value = "";
- //ipt_patnm.value = "";
- var patnm = ipt_patnm3.value;
- var rows = grd_inducsclamspec.rows;
- var cnt = 0;
-
- flag = "N";
-
- if(model.getValue("/root/init/prepatnm") == "") {
- for(var i=1;i<rows;i++) {
- //if(model.getValue("/root/main/list04/gridpifmiunc02["+i+"]/patnm") == patnm) {
- if(grd_inducsclamspec.valueMatrix(i,12) == patnm) {
- grd_inducsclamspec.row = i;
- grd_inducsclamspec.topRow = i;
- model.setValue("/root/init/prepatnmcnt",i);
- cnt++;
- flag = "Y";
- break;
- }
- }
- model.setValue("/root/init/prepatnm",ipt_patnm3.value);
- } else {
- if(patnm == model.getValue("/root/init/prepatnm")) {
- for(var i=Number(model.getValue("root/init/prepatnmcnt"))+1;i<rows;i++) {
- //if(model.getValue("/root/main/list04/gridpifmiunc02["+i+"]/patnm") == patnm) {
- if(grd_inducsclamspec.valueMatrix(i,12) == patnm) {
- grd_inducsclamspec.row = i;
- grd_inducsclamspec.topRow = i;
- model.setValue("/root/init/prepatnmcnt",i);
- cnt++;
- flag = "Y";
- break;
- }
- }
- } else {
- for(var i=1;i<rows;i++) {
- //if(model.getValue("/root/main/list04/gridpifmiunc02["+i+"]/patnm") == patnm) {
- if(grd_inducsclamspec.valueMatrix(i,12) == patnm) {
- grd_inducsclamspec.row = i;
- grd_inducsclamspec.topRow = i;
- model.setValue("/root/init/prepatnmcnt",i);
- cnt++;
- flag = "Y";
- break;
- }
- }
- model.setValue("/root/init/prepatnm",ipt_patnm3.value);
- }
- }
-
- if(cnt == 0) {
- messageBox("찾는 수진자가","I004");
- model.setFocus("ipt_patnm3");
- //researchgrid("patnm",patnm);
- }
- }
- ]]>
- </script>
- </input>
- <caption id="caption128" class="cell_1" style="left:0px; top:169px; width:110px; height:23px; vertical-align:middle; ">건수</caption>
- <input id="input108" ref="/root/main/list03/gridpifmiunc01/adjtamt" class="input_default" format="(-)#,###" style="left:1068px; top:195px; width:120px; height:19px; text-align:right; "/>
- <caption id="caption130" class="cell_1" style="left:238px; top:169px; width:110px; height:23px; vertical-align:middle; ">건수</caption>
- <caption id="caption131" style="left:510px; top:119px; width:75px; height:20px; color:#3366ff; ">
- <![CDATA[바로가기 ==>]]>
- </caption>
- <caption id="caption132" class="tit_2" style="left:3px; top:150px; width:78px; height:13px; ">청구사항</caption>
- <line id="line111" class="line_1" style="x1:0px; y1:113px; x2:1192px; y2:113px; "/>
- <caption id="caption133" class="cell_1" style="left:808px; top:117px; width:85px; height:23px; vertical-align:middle; background-color:#ffff99; ">등록번호</caption>
- <input id="input110" ref="/root/main/list03/gridpifmiunc01/jrsltcnt" class="input_default" format="#,###" style="left:351px; top:171px; width:120px; height:19px; text-align:right; "/>
- <line id="line113" class="line_3" style="x1:0px; y1:217px; x2:233px; y2:217px; "/>
- <caption id="caption136" class="cell_1" style="left:0px; top:194px; width:110px; height:23px; vertical-align:middle; ">청구액</caption>
- <caption id="caption137" class="cell_1" style="left:955px; top:169px; width:110px; height:23px; vertical-align:middle; ">건수</caption>
- <button id="button27" class="btn2_letter3" style="left:929px; top:259px; width:53px; height:19px; ">
- <caption>열카피</caption>
- <script type="javascript" ev:event="onclick">
- <![CDATA[
- grd_inducsclamspec.attribute("selectionmode") = "bycol";
- ]]>
- </script>
- </button>
- <caption id="caption139" class="cell_1" style="left:0px; top:117px; width:115px; height:23px; vertical-align:middle; ">심사차수</caption>
- <caption id="caption140" class="cell_1" style="left:606px; top:117px; width:85px; height:23px; vertical-align:middle; background-color:#ffff99; ">명일련</caption>
- <line id="line114" class="line_2" style="x1:716px; y1:192px; x2:948px; y2:192px; "/>
- <input id="input116" ref="/root/main/list03/gridpifmiunc01/jrownbamt" class="input_default" format="(-)#,###" style="left:351px; top:196px; width:120px; height:19px; text-align:right; "/>
- <line id="line115" class="line_1" style="x1:238px; y1:164px; x2:471px; y2:164px; "/>
- <button id="button28" class="btn2_letter3" style="left:984px; top:259px; width:53px; height:19px; ">
- <caption>행카피</caption>
- <script type="javascript" ev:event="onclick">
- <![CDATA[
- grd_inducsclamspec.attribute("selectionmode") = "byrow";
- ]]>
- </script>
- </button>
- <line id="line116" class="line_3" style="x1:477px; y1:217px; x2:710px; y2:217px; "/>
- <caption id="caption142" class="tit_2" style="left:6px; top:265px; width:178px; height:13px; ">명세서일련번호별 청구사항</caption>
- <input id="input117" ref="/root/main/list03/gridpifmiunc01/clmcstotamt" class="input_default" format="(-)#,###" style="left:113px; top:195px; width:120px; height:19px; text-align:right; "/>
- <input id="input118" ref="/root/main/list03/gridpifmiunc01/clamcnt" class="input_default" format="#,###" style="left:113px; top:171px; width:120px; height:19px; text-align:right; "/>
- <line id="line117" class="line_1" style="x1:0px; y1:164px; x2:233px; y2:164px; "/>
- <caption id="caption143" class="cell_1" style="left:716px; top:169px; width:110px; height:23px; vertical-align:middle; ">건수</caption>
- <caption id="caption144" class="cell_1" style="left:238px; top:194px; width:110px; height:23px; vertical-align:middle; ">지급결정액</caption>
- <caption id="caption145" class="tit_2" style="left:241px; top:149px; width:95px; height:14px; ">심결사항</caption>
- <select1 id="combo2" ref="/root/send/clam_mtrt/judgdg" class="combo_default" appearance="minimal" style="left:118px; top:119px; width:100px; height:19px; ">
- <choices>
- <itemset nodeset="/root/main/list01/judgdg01">
- <label ref="judgdg"/>
- <value ref="judgdg"/>
- </itemset>
- </choices>
- <script type="javascript" ev:event="xforms-select">
- <![CDATA[
- if(cmb_judgdg.value == "없음") {
- return false;
- } else {
- searchByJudgdg();
- }
- ]]>
- </script>
- </select1>
- <button id="button29" class="btn2_letter4" style="left:1127px; top:259px; width:64px; height:19px; ">
- <caption>엑셀저장</caption>
- <script type="javascript" ev:event="onclick">
- <![CDATA[
- var today = new Date();
-
- var yy = today.getYear()+"";
- var mm = today.getMonth()+1;
- var dd = today.getDate();
-
- if(mm < 10) { mm = "0"+mm; } else { mm = mm+""; }
- if(dd < 10) { dd = "0" + dd; } else { dd = dd + ""; }
-
- var tmp = yy+mm+dd;
- var fileName = window.fileDialog("save", ",", false, "개인별미수관리(산재)_"+tmp, "xls", "Excel Files(*.xls)|*.xls|All Files (*.*)|*.*");
- if (fileName != "") { grd_inducsclamspec.saveExcel(fileName, "SheetName", true, true, "", "", ""); }
- ]]>
- </script>
- </button>
- <line id="line120" class="line_2" style="x1:0px; y1:192px; x2:233px; y2:192px; "/>
- <button id="button30" class="btn2_letter3" style="left:874px; top:259px; width:53px; height:19px; ">
- <caption>셀카피</caption>
- <script type="javascript" ev:event="onclick">
- <![CDATA[
- grd_inducsclamspec.attribute("selectionmode") = "free";
- ]]>
- </script>
- </button>
- <caption id="caption148" class="cell_1" style="left:404px; top:65px; width:85px; height:23px; vertical-align:middle; ">청구구분</caption>
- <line id="line122" class="line_1" style="x1:716px; y1:164px; x2:949px; y2:164px; "/>
- <caption id="caption150" class="cell_1" style="left:202px; top:64px; width:85px; height:23px; vertical-align:middle; ">청구월</caption>
- <line id="line124" class="line_3" style="x1:606px; y1:139px; x2:1192px; y2:139px; "/>
- <datagrid id="grd_inducsclamspec" nodeset="/root/main/list04/gridpifmiuncbyinducs" class="datagrid2" caption="청구월^미수일련번호^기관기호^심사차수^접수번호^청구번호^기존주민보류^청구과^진료과^명일련^등록번호^수진자^주민번호^진료구분^청구액^지급결정액^삭감액^주상병^진료의명^보험유형^산재유형^사업장기호^사업장명^관리지사^재해발생일자^병원진료개시일^진료기간^접수번호^심사차수^내원유형^상태
구분^조정사유" colsep="^" colwidth="30, 30, 30, 37, 30, 30, 30, 80, 45, 45, 70, 60, 100, 59, 80, 80, 80, 80, 80, 80, 87, 80, 80, 80, 80, 80, 35, 100, 70, 61, 40, 225" dataheight="25" defaultrows="1" explorerbar="sortshowmove" extendlastcol="false" mergecellsfixedrows="bycolrec" rowheader="seq" rowheight="1" rowsep="|" style="left:0px; top:285px; width:1192px; height:355px; ">
- <col ref="clamym" visibility="hidden"/>
- <col ref="decoseq" visibility="hidden"/>
- <col ref="instcd" visibility="hidden"/>
- <col ref="judgdg" visibility="hidden"/>
- <col ref="acptno" visibility="hidden"/>
- <col ref="clamno" visibility="hidden"/>
- <col ref="firstresdnrete" visibility="hidden"/>
- <col ref="clamdeptnm"/>
- <col ref="orddeptnm" style="text-align:center; "/>
- <col ref="docuseqno" style="text-align:center; "/>
- <col ref="pid" style="text-align:center; "/>
- <col ref="patnm" style="text-align:center; "/>
- <col ref="patrrgstno" format="999999-9999999" style="text-align:center; "/>
- <col disabled="true" ref="clamflag" type="combo" format="(-)#,###" style="text-align:right; ">
- <choices>
- <itemset nodeset="/root/init/P0121list/P0121">
- <label ref="cdnm"/>
- <value ref="cdid"/>
- </itemset>
- </choices>
- </col>
- <col ref="clclamamt" format="(-)#,###" style="text-align:right; "/>
- <col ref="jrjudgdeciamt" format="(-)#,###" style="text-align:right; "/>
- <col ref="adjtamtsum" format="(-)#,###" style="text-align:right; "/>
- <col ref="maindiagcd" style="text-align:left; "/>
- <col ref="orddrid" style="text-align:center; "/>
- <col disabled="true" ref="insukind" type="combo" style="text-align:center; ">
- <choices>
- <itemset nodeset="/root/init/P0008list/P0008">
- <label ref="cdnm"/>
- <value ref="cdid"/>
- </itemset>
- </choices>
- </col>
- <col ref="suppkind" style="text-align:center; "/>
- <col ref="insuno" style="text-align:left; "/>
- <col ref="insunm" style="text-align:left; "/>
- <col ref="certno" style="text-align:left; "/>
- <col ref="cretfromdd" format="yyyy-mm-dd" style="text-align:center; "/>
- <col ref="ordfromdd" format="yyyy-mm-dd" style="text-align:center; "/>
- <col ref="chosindayno" format="(-)#,###" style="text-align:right; "/>
- <col ref="acptno" style="text-align:center; "/>
- <col ref="judgdg" style="text-align:center; "/>
- <col disabled="true" ref="ioflag" type="combo" style="text-align:center; ">
- <choices>
- <itemset nodeset="/root/init/P0485list/P0485">
- <label ref="cdnm"/>
- <value ref="cdid"/>
- </itemset>
- </choices>
- </col>
- <col ref="statflag" visibility="hidden" style="text-align:center; "/>
- <col disabled="true" ref="adjtresn" type="combo">
- <choices>
- <itemset nodeset="/root/init/P0455list/P0455">
- <label ref="cdnm"/>
- <value ref="cdid"/>
- </itemset>
- </choices>
- </col>
- <script type="javascript" ev:event="onclick">
- <![CDATA[
- var vrowindex, vcolindex, vresdnrete, vstatflag ;
- vrowindex = grd_pifmiunc02.row;
- vcolindex = grd_pifmiunc02.col;
- if(vrowindex < 1 || vcolindex < 8) return ;
- // vresdnrete = model.getValue("/root/main/list04/gridpifmiunc02[" + vrowindex + "]/resdnrete") ;
- // if (vresdnrete == 'N' ) return ;
- vstatflag = model.getValue("/root/main/list04/gridpifmiunc02[" + vrowindex + "]/statflag") ;
-
- //vstatflag = '02' 심사보류, '03' 주민보류, '04' 반송(개발자 정의코드)
- if (vstatflag == "02") {
- messageBox("심사보류건은 선택할 수","I004");
- model.setValue("/root/main/list04/gridpifmiunc02[" + vrowindex + "]/resdnrete", "N") ;
- return ;
- }
-
- if (vstatflag == "03") {
- messageBox("주민보류 삭제는 주민보류 팝업화면에서만","I006");
- model.setValue("/root/main/list04/gridpifmiunc02[" + vrowindex + "]/resdnrete", "Y") ;
- return ;
- }
-
- if (vstatflag == "04" ) {
- messageBox("반송건은 선택할 수","I004");
- model.setValue("/root/main/list04/gridpifmiunc02[" + vrowindex + "]/resdnrete", "N") ;
- return ;
- }
- ]]>
- </script>
- <!--script type="javascript" ev:event="onscroll">
- <![CDATA[
- fSubmitOnScroll(flag); // 스크롤바 맨밑에 왔을시 자동실행되어 다음 페이지 조회해옴
- ]]>
- </script-->
- <script type="javascript" ev:event="oncopy">
- <![CDATA[
- grid_oncopy();
- ]]>
- </script>
- <script type="javascript" ev:event="onaftersort">
- <![CDATA[
- grd_inducsclamspec.gridToInstance();
- ]]>
- </script>
- </datagrid>
- <group id="group8" scroll="auto" style="left:0px; top:647px; width:1192px; height:27px; ">
- <line id="line28" class="line_6" style="x1:0px; y1:0px; x2:1192px; y2:0px; "/>
- <button id="button23" class="btn3_letter4" style="left:0px; top:5px; width:80px; height:22px; ">
- <caption>반송관리</caption>
- <script type="javascript" ev:event="onclick">
- <![CDATA[
- if(chkJudgdg("3")) {
- model.makeNode("/root/send/clam_mtrt/screenflag");
- model.setValue("/root/send/clam_mtrt/screenflag","bohum");
- for(var i=1;i<=cmb_judgdg.length;i++) {
- if(cmb_judgdg.value == model.getValue("/root/main/list01/decoseq["+i+"]/judgdg")) {
- model.makeNode("/root/send/clam_mtrt/decoseq");
- model.setValue("/root/send/clam_mtrt/decoseq", model.getValue("/root/main/list01/decoseq["+i+"]/decoseq"));
- }
- }
- modal("SMPIF30130", 1, 1, 1, "SMPIF30130", "/root/send/clam_mtrt", "/root/send/sendlnk");
- }
- ]]>
- </script>
- </button>
- <button id="button25" class="btn4_letter2" style="left:1135px; top:5px; width:56px; height:22px; ">
- <caption>저장</caption>
- <script type="javascript" ev:event="onclick">
- <![CDATA[
- var vjudgdg = model.getValue("/root/send/clam_mtrt/judgdg") ;
-
- if(combo2.length > 0) {
- if (vjudgdg == "") {
- messageBox("심사차수를","C002");
- model.setFocus("combo2");
- return ;
- }
- }
-
- model.setValue("/root/main/list05/gridpifmiunc03", grd_inducsclamspec.getUpdateData());
-
- if(submit("TXPIF30101")) {
- model.removeNodeset("/root/main/list02");
- model.removeNodeset("/root/main/list03");
- model.removeNodeset("/root/main/list04");
- model.refresh();
- submit("TRPIF30105"); //청구내역 조회
- submit("TRPIF30106"); //명세서별 조회
- messageBox("저장 ","I002") ;
- }
- ]]>
- </script>
- </button>
- </group>
- </case>
- </switch>
- <button id="btn_case1" class="btn_sw" group="tab" selected="true" style="left:0px; top:15px; width:120px; height:22px; ">
- <caption>요양급여(보험)</caption>
- <script type="javascript" ev:event="onclick">
- <![CDATA[
- model.toggle("case1");
- // model.setFocus("ipt_indusrchcond03");
- model.resetInstanceNode("/root/send/srchcond");
- model.removenode("/root/main/list00");
- model.removenode("/root/main/list01");
- model.removenode("/root/main/list02");
- model.removenode("/root/main/list03");
- model.removenode("/root/main/list04");
- model.removenode("/root/main/list05");
-
- model.setValue("/root/send/srchcond/searchflag","1");
- model.refresh();
- model.setFocus("ipt_srchcond01");
- // model.setValue("/root/init/case_flag", "1") ;
- ]]>
- </script>
- </button>
- <button id="btn_case2" class="btn_sw" group="tab" style="left:120px; top:15px; width:120px; height:22px; ">
- <caption>의료급여(보호)</caption>
- <script type="javascript" ev:event="onclick">
- <![CDATA[
- model.toggle("case2");
- model.setFocus("ipt_medacptno");
- // model.setValue("/root/init/case_flag", "2") ;
- ]]>
- </script>
- </button>
- <button id="btn_case3" class="btn_sw" group="tab" style="left:240px; top:15px; width:120px; height:22px; ">
- <caption>산업재해</caption>
- <script type="javascript" ev:event="onclick">
- <![CDATA[
- model.toggle("case3");
- model.setFocus("ipt_indusrchcond03");
- model.resetInstanceNode("/root/send/srchcond");
- model.removenode("/root/main/list00");
- model.removenode("/root/main/list01");
- model.removenode("/root/main/list02");
- model.removenode("/root/main/list03");
- model.removenode("/root/main/list04");
- model.removenode("/root/main/list05");
-
- model.setValue("/root/send/srchcond/searchflag","1");
- model.refresh();
- //model.setFocus("ipt_medacptno");
- // model.setValue("/root/init/case_flag", "2") ;
- ]]>
- </script>
- </button>
- </group>
- </xhtml:body>
- </xhtml:html>
|