123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806 |
- <?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>의료급여심사결과통보서조회</xhtml:title>
- <model id="model1">
- <instance id="instance1">
- <root xmlns="">
- <main>
- <list01>
- <gridpiehf601>
- <judgdg/>
- <clamno/>
- <notidd/>
- <chosflag/>
- <ordfildcd/>
- <acptno/>
- <setno/>
- <jqtotordamtsum/>
- <jqsecuinstbamtsum/>
- <jrsltcnt/>
- <jrjudgdeciamt/>
- <adjtamtsum/>
- <realcutamt/>
- <cutrate/>
- <ordym/>
- <clamdd/>
- <acptdd/>
- <rem/>
- <ordterm/>
- <judgchrgdeptnm/>
- <judgchrgjonm/>
- <judgchrgnm/>
- <tel/>
- <verflag/>
- <clamseqno/>
- <corpmark/>
- <suppcd/>
- <hospnm/>
- </gridpiehf601>
- </list01>
- <list02>
- <gridpiehf602>
- <judgdg/>
- <clamno/>
- <acptno/>
- <docuseqno/>
- <pid/>
- <patnm/>
- <ordtype/>
- <medcarekindflag/>
- <spclmark/>
- <maindiagcd/>
- <ordopendd/>
- <jradjtsum1/>
- <jradjtsum2/>
- <fixrateflag/>
- <docuseqrem/>
- <inchosdayno/>
- <medcaredayno/>
- <ordtims/>
- <judgchrgjonm/>
- <procinstmark/>
- <procinstmarknm/>
- <hshdnm/>
- <patrrgstno/>
- <kind/>
- <spec/>
- <clmcstotamt/>
- <clownbamt/>
- <clseqmttotamt/>
- <clsubtamt/>
- <clhandicaprfund/>
- <clsecuinstbamt/>
- <clownbmaxexamt/>
- <jrmcstotamt/>
- <jrownbamt/>
- <jrsecuinstbamt/>
- <jrtrudirecpamt/>
- <jrjudgdeciamt/>
- <jrsubtamt/>
- <jrhandicaprfund/>
- <jrrtnamt/>
- <jraddchrgamt/>
- <jrownbmaxexamt/>
- <docuseqrem/>
- <docuseqno2/>
- <cldruglimitdiffamtsum/>
- <clpatmcstotamtsum/>
- <jrdruglimitdiffamtsum/>
- <jrpatmcstotamtsum/>
- <adjtresn/>
- </gridpiehf602>
- <gridpiehf604>
- <jqcntsum/>
- <jqtotordamtsum/>
- <jqownbamtsum/>
- <jqownbmaxexamtsum/>
- <jqsubtaamtsum/>
- <jqhandicaprfundsum/>
- <jqsecuinstbamtsum/>
- <jqqualcnfmtcntsum/>
- <jqownbrtnamtsum/>
- <jqownaddbamtsum/>
- <jqtrudirecpamtsum/>
- <jqjudgdeciamtsum/>
- <jrcntsum/>
- <jrtotordamtsum/>
- <jrownbamtsum/>
- <jrownbmaxexamtsum/>
- <jrsubtaamtsum/>
- <jrhandicaprfundsum/>
- <jrsecuinstbamtsum/>
- <jrqualcnfmtcntsum/>
- <jrownbrtnamtsum/>
- <jrownaddbamtsum/>
- <jrtrudirecpamtsum/>
- <jrjudgdeciamtsum/>
- <picntsum/>
- <pitotordamtsum/>
- <rucntsum/>
- <rutotordamtsum/>
- <jradjtsum1/>
- <jradjtsum2/>
- <ruadjtamtsum/>
- <rucutrate/>
- <ruclclamamt/>
- <piclclamamt/>
- <jqdruglimitdiffamtsum/>
- <jrdruglimitdiffamtsum/>
- <jqpatmcstotamtsum/>
- <jrpatmcstotamtsum/>
- <jqdruglimitdiffamtadjtsum/>
- <jrdruglimitdiffamtadjtsum/>
- </gridpiehf604>
- <remdata>
- <rem/>
- </remdata>
- </list02>
- <list03>
- <gridpiehf602amt>
- <clmcstotamt/>
- <clownbamt/>
- <clownbmaxexamt/>
- <clsubtamt/>
- <clhandicaprfund/>
- <clsecuinstbamt/>
- <clseqmttotamt/>
- <jrmcstotamt/>
- <jrownbamt/>
- <jrownbmaxexamt/>
- <jrsubtamt/>
- <jrhandicaprfund/>
- <jrsecuinstbamt/>
- <jrrtnamt/>
- <jraddchrgamt/>
- <jrtrudirecpamt/>
- <jrjudgdeciamt/>
- <jradjtsum1/>
- <jradjtsum2/>
- <jradjtsumtotal/>
- <cutrate/>
- <adjtresn/>
- <cldruglimitdiffamtsum/>
- <jrdruglimitdiffamtsum/>
- <clpatmcstotamtsum/>
- <jrpatmcstotamtsum/>
- </gridpiehf602amt>
- <gridpiehf603>
- <lnno/>
- <item/>
- <adjtresn/>
- <actmatrflag/>
- <code/>
- <ordnm/>
- <unitcost/>
- <dayqtyrt/>
- <totqtyrt/>
- <adjtamt/>
- <jidetlresncd/>
- <relbase/>
- <rem/>
- <judgdg/>
- <clamno/>
- <acptno/>
- <docuseqno/>
- <snglcalcscorcd/>
- <druglimitdiffamtadjtamt/>
- <limitdiffamt/>
- </gridpiehf603>
- <gridpiehf605>
- <lnno/>
- <prcpcd/>
- <prcpnm/>
- <trustcorpmark/>
- <trudirecpamt/>
- <tretcd/>
- <rem/>
- </gridpiehf605>
- <gridpiehf606>
- <mpsno/>
- <lnno/>
- <resn/>
- <prcpcd/>
- <prcpnm/>
- <adjttims/>
- <rem/>
- </gridpiehf606>
- </list03>
- <popupflag/>
- <list04>
- <rem/>
- </list04>
- </main>
- <send>
- <termflag/>
- <fromterm/>
- <toterm/>
- <acptno/>
- <chosflag/>
- <clamno/>
- <ordfildcd/>
- <sendf601>
- <judgdg/>
- <acptno/>
- <setno/>
- <clamseqno/>
- <clamno/>
- </sendf601>
- <sendf603>
- <judgdg/>
- <acptno/>
- <setno/>
- <clamseqno/>
- <clamno/>
- <docuseqno/>
- </sendf603>
- <send_clamno>
- <acptno/>
- </send_clamno>
- <send_rem>
- <judgdg/>
- <acptno/>
- <setno/>
- <clamseqno/>
- <clamno/>
- </send_rem>
- <summary/>
- <searchgridrow>
- <docuseqno/>
- <patnm/>
- </searchgridrow>
- <numflag/>
- <srchnum/>
- <clamdgfrom/>
- <clamdgto/>
- <clamflag/>
- <clamym/>
- </send>
- <popupdata>
- <popupmenu>
- <grd_f601>
- <item>
- <name>의료급여심결 삭제</name>
- <func>fDeleteF060</func>
- </item>
- </grd_f601>
- </popupmenu>
- </popupdata>
- <init>
- <P0028list>
- <P0028>
- <cdid/>
- <cdnm/>
- </P0028>
- </P0028list>
- <P0235list>
- <P0235>
- <cdid/>
- <cdnm/>
- </P0235>
- </P0235list>
- <P0425list>
- <P0425>
- <cdid/>
- <cdnm/>
- </P0425>
- </P0425list>
- <P0155list>
- <P0155>
- <cdid/>
- <cdnm/>
- </P0155>
- </P0155list>
- <clamdg/>
- <clamdgfrom/>
- <clamdgto/>
- </init>
- <hidden>
- <list01>
- <list_clamno>
- <claminfo>
- <clamno/>
- <ordfildcd/>
- <ioflag/>
- </claminfo>
- </list_clamno>
- </list01>
- <prnt1>
- <f601/>
- </prnt1>
- </hidden>
- <source>
- <judgdg/>
- <clamno/>
- <acptno/>
- <docuseqno/>
- <lnno/>
- <adjtresn/>
- <workflag/>
- </source>
- <source_CutOrdRgst/>
- <temp>
- <data1>
- <hospnm/>
- <corpmark/>
- <ordfildcd/>
- <chosflag/>
- <ordym/>
- <notidd/>
- <clamno/>
- <setno/>
- <acptno/>
- <judgdg/>
- </data1>
- <data2>
- <docuseqno/>
- <medcarekindflag/>
- <patnm/>
- <pid/>
- <hshdnm/>
- <procinstmarknm/>
- <patrrgstno/>
- <procinstmark/>
- <kind/>
- <spec/>
- <ordopendd/>
- <inchosdayno/>
- <ordtims/>
- <clmcstotamt/>
- <jrmcstotamt/>
- <clownbamt/>
- <jrownbamt/>
- <clhandicaprfund/>
- <jrhandicaprfund/>
- <clsecuinstbamt/>
- <jrsecuinstbamt/>
- <clsubtamt/>
- <jrrtnamt/>
- <jraddchrgamt/>
- <jrjudgdeciamt/>
- <adjtresn/>
- </data2>
- </temp>
- </root>
- </instance>
- <submission id="TRPIE01101" mediatype="application/x-www-form-urlencoded" method="post" ref="/root/send" resultref="/root/main/list01"/>
- <submission id="TRPIE01102" mediatype="application/x-www-form-urlencoded" method="post" ref="/root/send/sendf601" resultref="/root/main/list02"/>
- <submission id="TRPIE01103" mediatype="application/x-www-form-urlencoded" method="post" ref="/root/send/sendf603" resultref="/root/main/list03"/>
- <submission id="TRZBC00101" mediatype="application/x-www-form-urlencoded" method="post"/>
- <submission id="TRPIE01104" mediatype="application/x-www-form-urlencoded" method="post" ref="/root/send/send_clamno" resultref="/root/hidden/list01/claminfo"/>
- <submission id="TRPID20407" mediatype="application/x-www-form-urlencoded" method="post" ref="root/send" resultref="/root/init/clamdg"/>
- </model>
- <script type="javascript" ev:event="xforms-ready">
- <![CDATA[
- // 1. 노드 초기화
- Node_Init();
-
- // 2. 공통코드 조회
- CommCode_Load();
- ]]>
- </script>
- <script type="javascript" src="../../../com/commonweb/js/common.js"/>
- <script type="javascript" src="../../../com/commonweb/js/tfHelper.js"/>
- <script type="javascript" src="../../../com/commonweb/js/dateHelper.js"/>
- <script type="javascript" src="../../../com/basiccodeweb/js/ZBC001.js"/>
- <script type="javascript">
- <![CDATA[
- function Node_Init() {
- rdo_chosflag.select(0);
- rdo_numflag.select(1);
- rdo_termflag.select(2);
-
- model.removeNodeset("/root/main/list01/gridpiehf601");
- model.removeNodeset("/root/main/list02/gridpiehf602");
- model.removeNodeset("/root/main/list02/gridpiehf604");
- model.removeNodeset("/root/main/list02/remdata");
- model.removeNodeset("/root/main/list03/gridpiehf602amt");
- model.removeNodeset("/root/main/list03/gridpiehf603");
- model.removeNodeset("/root/main/list03/gridpiehf605");
- model.removeNodeset("/root/main/list03/gridpiehf606");
-
- model.setFocus("ipt_fromterm");
-
- model.refresh();
-
- // 다른 화면에서 팝업으로 호출하는 경우 자동조회
- // 호출화면 : SMPIS00100_청구및자료수집이력조회, SMPIS00200_월별환자조회, SMPIF20100_개인별모든내역보기, SMPIF20300_개인별청구및심결내역조회, SPPIE00720_심결요약보기
- var srchnum = model.getValue("/root/send/summary/srchnum");
- if (srchnum != "") {
- ipt_fromterm.disabled = false;
- ipt_toterm.disabled = false;
-
- model.setValue("/root/send/numflag", model.getValue("/root/send/summary/numflag"));
- model.setValue("/root/send/termflag", model.getValue("/root/send/summary/termflag"));
- model.setValue("/root/send/fromterm", model.getValue("/root/send/summary/fromterm"));
- model.setValue("/root/send/toterm", model.getValue("/root/send/summary/toterm"));
- model.setValue("/root/send/srchnum", model.getValue("/root/send/summary/srchnum"));
- model.setValue("/root/send/clamno", model.getValue("/root/send/summary/clamno"));
- model.refresh();
- submit("TRPIE01101");
- }
- }
-
- // 공통코드 Load작업
- function CommCode_Load() {
- zbcfGetCodeList(new Array("P0028","P0235","P0425", "P0155"), new Array("/root/init/P0028list", "/root/init/P0235list","/root/init/P0425list", "/root/init/P0155list"));
- model.refresh();
- }
-
- function Search(){
- // model.resetInstanceNode("/root/main/list01");
- // model.resetInstanceNode("/root/main/list02");
- // model.resetInstanceNode("/root/main/list03");
- model.removeNodeset("/root/main/list01");
- model.removeNodeset("/root/main/list02");
- model.removeNodeset("/root/main/list03");
- model.refresh();
-
- submit("TRPIE01101");
-
- grd_f601.colStyle(7,"data","background-color") = "#ccccff";
- grd_f601.colStyle(8,"data","background-color") = "#ccbbff";
- grd_f601.colStyle(9,"data","background-color") = "#ccaaff";
- grd_f601.colStyle(10,"data","background-color") = "#cc99ff";
- grd_f601.colStyle(12,"data","background-color") = "#cc88ff";
-
- btn_acptno.selected = true;
- model.toggle("case1");
-
- Search_Step();
- }
-
- // 의사전달삭감처방등록관리
- function fGridCutOrdRgst() {
-
- var selectCnt = 0;
- selectCnt = grd_pirhobtspec.selectedRows;
- var grd_nodeSet = grd_pirhobtspec.nodeset;
- var destNode = instance1.selectSingleNode("/root/source_CutOrdRgst");
- var srcNode;
-
- for (var i = 0; i < selectCnt; i++ ) {
- // srcNode = instance1.selectSingleNode(grd_nodeSet + "[" + grd_pirhobtspec.selectedRow(i) + "]");
- srcNode = instance1.selectSingleNode(grd_nodeSet + "[" + (grd_pirhobtspec.selectedRow(i) - grd_pirhobtspec.fixedRows + 1) + "]");
- model.duplicate(destNode, srcNode);
- }
-
- // window.load("../../../pam/edimngtweb/xrw/SPPIR30310_의사삭감전달처방등록관리.xrw", "modeless", "pop", "", "/root/source_CutOrdRgst", "/root/hidden");
- window.load("../../../pam/edimngtweb/xrw/SPPIR30310_의사삭감전달처방등록관리.xrw", "modeless", "pop", "", "/root/source_CutOrdRgst", "/root/main/cuodlist");
-
- }
-
- function fInitialize(){
- model.resetInstanceNode("/root/send");
- // 기간 라디오 버튼
- model.setValue("/root/send/termflag",'3');
- // 내원유형 라디오 버튼
- model.setValue("/root/send/chosflag",'A');
-
- model.removeNodeset("/root/main/list01/gridpiehf601");
- model.removeNodeset("/root/main/list02/gridpiehf602");
- model.removeNodeset("/root/main/list02/gridpiehf604");
- model.removeNodeset("/root/main/list02/remdata/rem");
- model.removeNodeset("/root/main/list03/gridpiehf602sum");
- model.removeNodeset("/root/main/list03/gridpiehf603");
- model.removeNodeset("/root/main/list03/gridpiehf606");
- model.removeNodeset("/root/main/list03/gridpiehf605");
-
- model.setFocus("ipt_fromterm");
-
- model.refresh();
- }
-
- // 의료급여심결통보서 삭제
- function fDeleteF060() {
-
- if (grd_f601.row >= grd_f601.fixedRows ) {
-
- // 1. 삭제할 접수반송증 데이터를 만든다.
- var rows = grd_f601.selectedRows;
- var cnt = 1;
- for (var i = 0; i < rows; i++) {
- var sel = grd_f601.selectedRow(i);
- model.makeValue("/root/hidden/sppie00810/list/data[" + cnt + "]/openflag", "f060");
- model.makeValue("/root/hidden/sppie00810/list/data[" + cnt + "]/rsrvflag", "Y");
- model.makeValue("/root/hidden/sppie00810/list/data[" + cnt + "]/uncoflag", "Y");
- model.makeValue("/root/hidden/sppie00810/list/data[" + cnt + "]/cutflag", "Y");
- model.makeValue("/root/hidden/sppie00810/list/data[" + cnt + "]/judgdg", model.getValue("/root/main/list01/gridpiehf601[" + sel + "]/judgdg"));
- model.makeValue("/root/hidden/sppie00810/list/data[" + cnt + "]/acptno", model.getValue("/root/main/list01/gridpiehf601[" + sel + "]/acptno"));
- model.makeValue("/root/hidden/sppie00810/list/data[" + cnt + "]/setno", model.getValue("/root/main/list01/gridpiehf601[" + sel + "]/setno"));
- model.makeValue("/root/hidden/sppie00810/list/data[" + cnt + "]/clamseqno", model.getValue("/root/main/list01/gridpiehf601[" + sel + "]/clamseqno"));
- model.makeValue("/root/hidden/sppie00810/list/data[" + cnt + "]/clamno", model.getValue("/root/main/list01/gridpiehf601[" + sel + "]/clamno"));
- cnt++;
- }
-
- // 2. 수신테이블 삭제 팝업 호출
- modal("SPPIE00810", "", "10", "10", "SPPIE00810", "/root/hidden/sppie00810" ,"/root/main", "", "");
-
- }
- }
-
- function Search_Step() {
- var rtn = null;
-
- if (grd_f601.rows > 1) {
- var row = 1;
-
- var t01 = grd_f601.textmatrix(row, 1); // 심사차수
- var t06 = grd_f601.textmatrix(row, 6); // 접수번호
- var t07 = grd_f601.textmatrix(row, 7); // 묶음번호
- var t23 = grd_f601.textmatrix(row,23); // 청일련
- var t02 = grd_f601.textmatrix(row, 2); // 청구번호
-
- // 비고란을 왼쪽 하단에 별도로 보여주기위한 추가부분
- var t16 = grd_f601.textmatrix(row,16); // rem
- model.setValue( "instance('instance1')/send/sendf601/judgdg", t01 );
- model.setValue( "instance('instance1')/send/sendf601/acptno", t06 );
- model.setValue( "instance('instance1')/send/sendf601/setno", t07 );
- model.setValue( "instance('instance1')/send/sendf601/clamseqno", t23 );
- model.setValue( "instance('instance1')/send/sendf601/clamno", t02 );
-
- // 수신팝업을 위한 팝업
- // model.setValue("/root/send/send_rem/judgdg",model.getValue("/root/main/list01/gridpiehf601/judgdg"));
- // model.setValue("/root/send/send_rem/clamno",model.getValue("/root/main/list01/gridpiehf601/clamno"));
- // model.setValue("/root/send/send_rem/acptno",model.getValue("/root/main/list01/gridpiehf601/acptno"));
-
- model.setValue("/root/send/send_rem/judgdg", t01);
- model.setValue("/root/send/send_rem/acptno", t06);
- model.setValue("/root/send/send_rem/setno", t07);
- model.setValue("/root/send/send_rem/clamseqno", t23);
- model.setValue("/root/send/send_rem/clamno", t02);
-
- model.removeNodeset("/root/main/list02/gridpiehf602");
- model.removeNodeset("/root/main/list02/gridpiehf604");
- model.removeNodeset("/root/main/list02/remdata");
- model.removeNodeset("/root/main/list03/gridpiehf603");
- model.refresh();
-
- rtn = submit("TRPIE01102");
-
- grd_f602.colStyle(12,"data","background-color") = "#ccff99";
- grd_f602.colStyle(13,"data","background-color") = "#ccff88";
- // grd_f602.colStyle(14,"data","background-color") = "#ccff77";
- // grd_f602.colStyle(15,"data","background-color") = "#ccff66";
-
- grd_f602.colStyle(27,"data","background-color") = "#ccccff";
- grd_f602.colStyle(28,"data","background-color") = "#ccbbff";
- grd_f602.colStyle(29,"data","background-color") = "#ccaaff";
- grd_f602.colStyle(30,"data","background-color") = "#cc99ff";
- grd_f602.colStyle(31,"data","background-color") = "#cc88ff";
- grd_f602.colStyle(32,"data","background-color") = "#cc77ff";
- grd_f602.colStyle(33,"data","background-color") = "#cc66ff";
-
- grd_f602.colStyle(34,"data","background-color") = "#ccccff";
- grd_f602.colStyle(35,"data","background-color") = "#ccbbff";
- grd_f602.colStyle(36,"data","background-color") = "#ccaaff";
- grd_f602.colStyle(37,"data","background-color") = "#cc99ff";
- grd_f602.colStyle(38,"data","background-color") = "#cc88ff";
- grd_f602.colStyle(39,"data","background-color") = "#cc77ff";
- grd_f602.colStyle(40,"data","background-color") = "#cc66ff";
- grd_f602.colStyle(41,"data","background-color") = "#cc55ff";
-
- grd_f602.colStyle(42,"data","background-color") = "#ccccff";
- grd_f602.colStyle(43,"data","background-color") = "#ccbbff";
- btn_acptno.selected = true;
- model.toggle("case1");
-
- /* if(rtn){
- //교체 할 자식 노드가 있는 부모 노드 선택
- var node = instance1.selectSingleNode("/root/main/list02");
- //자식 노드 교체
- node.replaceChild(instance1.root.main.tmp.gridpiehf602, instance1.root.main.list02.gridpiehf602);
-
- }
- model.refresh(); */
- }
-
- rtn = null;
-
- if (grd_f602.rows > 2 ) {
- var row = 2; // fixedRows 가 2 여서 얘는 최초 row 번호를 2로 잡는다.
-
- var t1 = grd_f602.textmatrix(row,1); // 심사차수
- var t2 = grd_f602.textmatrix(row,2); // 접수번호
- var t3 = grd_f602.textmatrix(row,3); // 묶음번호
- var t4 = grd_f602.textmatrix(row,4); // 청일련
- var t5 = grd_f602.textmatrix(row,5); // 청구번호
- var t6 = grd_f602.textmatrix(row,6); // 명세서일련번호2
- model.setValue( "instance('instance1')/send/sendf603/judgdg", t1 );
- model.setValue( "instance('instance1')/send/sendf603/acptno", t2 );
- model.setValue( "instance('instance1')/send/sendf603/setno", t3 );
- model.setValue( "instance('instance1')/send/sendf603/clamseqno", t4 );
- model.setValue( "instance('instance1')/send/sendf603/clamno", t5 );
- model.setValue( "instance('instance1')/send/sendf603/docuseqno", t6 );
-
- model.removeNodeset("/root/main/list03/gridpiehf602sum");
- model.removeNodeset("/root/main/list03/gridpiehf603");
- model.removeNodeset("/root/main/list03/gridpiehf606");
- model.removeNodeset("/root/main/list03/gridpiehf605");
- model.refresh();
-
- rtn = submit("TRPIE01103");
-
- grd_f603.colStyle(10,"data","background-color") = "#ccff99";
- grd_f603.colStyle(11,"data","background-color") = "#ccff88";
-
- // 20080818 정숙희
- if (grd_f603.rows > 1) {
- btn_603.selected= true;
- model.toggle("603");
- }
- else if (grd_f606.rows > 1) {
- btn_606.selected= true;
- model.toggle("606");
- }
- else if (grd_f605.rows > 1) {
- btn_605.selected= true;
- model.toggle("605");
- }
-
- btn_acptno.selected = true; // 접수번호별 상태로 선택
- // model.toggle("case2");
- }
- }
-
- function pidfGetClamdg() {
-
- var check = model.getValue("/root/send/termflag");
-
- if ( model.getValue("/root/send/fromterm") > model.getValue("/root/send/toterm") ) {
- messageBox("종료일은 시작일보다 클 수 ", "I004");
- model.setValue("/root/send/toterm","")
- }
-
- if(check == "2"){
- if(model.getValue("/root/send/fromterm") != "" || model.getValue("/root/send/toterm") != ""){
- model.removeNodeset("/root/init/clamdg");
- model.makeNode("/root/init/clamdg");
- model.setValue("/root/send/clamym",model.getValue("/root/send/fromterm"));
- model.removeNodeset("/root/send/ioflag");
- model.makeNode("/root/send/ioflag");
- model.setValue("/root/send/ioflag", model.getValue("/root/send/chosflag"));
- submit("TRPID20407");
- model.copyNode("/root/init/clamdgfrom","/root/init/clamdg");
- cmb_clamdgfrom.refresh();
- cmb_clamdgfrom.select(0);
-
- model.setValue("/root/send/clamym",model.getValue("/root/send/toterm"));
- submit("TRPID20407");
- model.copyNode("/root/init/clamdgto","/root/init/clamdg");
- addComboItem("cmb_clamdgfrom","전체","","above");
- addComboItem("cmb_clamdgto","전체","","above");
- cmb_clamdgto.refresh();
- cmb_clamdgto.select(0);
- }
- }
-
- }
-
- // 청구년월 차수 기간 체크
- function fChkClamym()
- {
- var fromym = model.getValue("/root/send/fromterm");
- var toym = model.getValue("/root/send/toterm");
- var check = model.getValue("/root/send/termflag");
-
- if(check == "2"){
- if ( fromym != toym ){
-
- cmb_clamdgfrom.value = "";
- cmb_clamdgto.value = "";
- cmb_clamdgfrom.disabled = true;
- cmb_clamdgto.disabled = true;
-
- }else{
- cmb_clamdgfrom.disabled = false;
- cmb_clamdgto.disabled = false;
- cmb_clamdgfrom.select(0);
- cmb_clamdgto.select(0);
- }
- cmb_clamdgto.refresh();
- cmb_clamdgfrom.refresh();
- }
- }
- ]]>
- </script>
- </xhtml:head>
- <xhtml:body guideline="1,1194;" style="margin-left:8; margin-top:0; margin-right:8; margin-bottom:0; ">
- <group id="group1" style="left:0px; top:0px; width:1195px; height:13px; ">
- <caption id="caption6" class="tit_1" style="left:0px; top:0px; width:800px; height:14px; ">의료급여심사결과통보서(F060)</caption>
- </group>
- <group id="grp_btn" scroll="auto" style="left:0px; top:757px; width:1195px; height:27px; ">
- <line id="line32" class="line_6" style="x1:0px; y1:0px; x2:1194px; y2:0px; "/>
- <line id="line31" class="line_6" style="x1:0px; y1:0px; x2:1194px; y2:0px; "/>
- <button id="button1" class="btn4_letter3" visibility="visible" style="left:1127px; top:5px; width:68px; height:22px; ">
- <caption>초기화</caption>
- <script type="javascript" ev:event="DOMActivate">
- <![CDATA[
- fInitialize();
- ]]>
- </script>
- </button>
- </group>
- <group id="group4" scroll="auto" style="left:0px; top:13px; width:1195px; height:748px; ">
- <datagrid id="grd_f601" nodeset="/root/main/list01/gridpiehf601" caption="심사차수^청구번호^통보일자^내원^분야^접수번호^묶음번호^심결건수^심사결정액^조정금액합계^실삭감액^삭감율^진료월^청구일자^접수일자^참조란^진료기간^심사담당부^심사담당조^심사담당자^전화번호^VER^청구서일련번호^요양기관기호^지원^기관명^비고" colsep="^" colwidth="58, 72, 68, 38, 50, 57, 58, 60, 80, 80, 80, 59, 55, 71, 71, 80, 138, 75, 75, 74, 75, 47, 100, 86, 37, 100" dataheight="23" ellipsis="true" explorerbar="sortshowmove" focuscolor="#b9e5fb" mergecellsfixedrows="bycolrec" rowheader="seq" rowheight="35" rowsep="|" tooltip="true" style="left:295px; top:85px; width:899px; height:247px; text-align:center; ">
- <col ref="judgdg" style="text-align:center; "/>
- <col ref="clamno" style="text-align:center; "/>
- <col ref="notidd" format="yyyy-mm-dd"/>
- <col disabled="true" ref="chosflag" type="combo" style="text-align:center; ">
- <choices>
- <itemset nodeset="/root/init/P0028list/P0028">
- <label ref="cdnm"/>
- <value ref="cdid"/>
- </itemset>
- </choices>
- </col>
- <col disabled="true" ref="ordfildcd" type="combo" style="text-align:center; ">
- <choices>
- <itemset nodeset="/root/init/P0425list/P0425">
- <label ref="cdnm"/>
- <value ref="cdid"/>
- </itemset>
- </choices>
- </col>
- <col ref="acptno" style="text-align:center; "/>
- <col ref="setno" style="text-align:center; "/>
- <col ref="jrsltcnt" format="#,###" style="text-align:right; "/>
- <col ref="jrjudgdeciamt" format="(-)#,###" style="text-align:right; "/>
- <col ref="adjtamtsum" format="(-)#,###" style="text-align:right; "/>
- <col ref="realcutamt" visibility="hidden" format="(-)#,###" style="text-align:right; "/>
- <col ref="cutrate" visibility="visible" style="text-align:right; "/>
- <col ref="ordym" style="text-align:center; "/>
- <col ref="clamdd" visibility="hidden" format="yyyy-mm-dd"/>
- <col ref="acptdd" format="yyyy-mm-dd"/>
- <col ref="rem" type="inputbutton" style="text-align:center; "/>
- <script type="javascript" ev:event="onbuttonclick">
- <![CDATA[
- model.setValue("/root/main/list04/rem", grd_f601.valueMatrix(grd_f601.row,grd_f601.col));
- modal("SPPIE00200", "", "400", "400" ,"", "/root/main/list04/rem", "/root/send/textno");
- ]]>
- </script>
- <col ref="ordterm" style="text-align:center; "/>
- <col ref="judgchrgdeptnm" style="text-align:center; "/>
- <col ref="judgchrgjonm" style="text-align:center; "/>
- <col ref="judgchrgnm" style="text-align:center; "/>
- <col ref="tel" style="text-align:center; "/>
- <col ref="verflag" style="text-align:center; "/>
- <col ref="clamseqno" style="text-align:center; "/>
- <col ref="corpmark" style="text-align:center; "/>
- <col ref="suppcd" style="text-align:center; "/>
- <col ref="hospnm" style="text-align:left; "/>
- <script type="javascript" ev:event="onclick">
- <![CDATA[
- var rtn = null;
-
- if (grd_f601.isCell(event.target) && grd_f601.row >= grd_f601.fixedRows) {
- var row = grd_f601.selectedRow(0);
-
-
- /*
- var t01 = grd_f601.textmatrix(row, 1); // 심사차수
- var t06 = grd_f601.textmatrix(row, 6); // 접수번호
- var t07 = grd_f601.textmatrix(row, 7); // 묶음번호
- var t23 = grd_f601.textmatrix(row,23); // 청일련
- var t02 = grd_f601.textmatrix(row, 2); // 청구번호
- */
- var irow = grd_f601.row;
- var t01 = model.getValue("/root/main/list01/gridpiehf601[" + irow + "]/judgdg"); // 심사차수
- var t06 = model.getValue("/root/main/list01/gridpiehf601[" + irow + "]/acptno"); // 접수번호
- var t07 = model.getValue("/root/main/list01/gridpiehf601[" + irow + "]/setno"); // 묶음번호
- var t23 = model.getValue("/root/main/list01/gridpiehf601[" + irow + "]/clamseqno"); // 청일련
- var t02 = model.getValue("/root/main/list01/gridpiehf601[" + irow + "]/clamno"); // 청구번호
-
- //의료보험 진료비심사결과통지서 보고서작성을 위한 value 얻기
- var notidd = model.getValue("/root/main/list01/gridpiehf601[" + irow + "]/notidd"); //통보일자
- var ordym = model.getValue("/root/main/list01/gridpiehf601[" + irow + "]/ordym"); //진료년월
- var chosflag = model.getValue("/root/main/list01/gridpiehf601[" + irow + "]/chosflag"); //내원
- var ordfildcd = model.getValue("/root/main/list01/gridpiehf601[" + irow + "]/ordfildcd"); //분야
- var corpmark = model.getValue("/root/main/list01/gridpiehf601[" + irow + "]/corpmark"); //요양기관기호
- var hospnm = model.getValue("/root/main/list01/gridpiehf601[" + irow + "]/hospnm"); //기관명
-
- model.setValue("/root/temp/data1/judgdg" , t01);
- model.setValue("/root/temp/data1/acptno" , t06);
- model.setValue("/root/temp/data1/setno" , t07);
- model.setValue("/root/temp/data1/clamno" , t02);
- model.setValue("/root/temp/data1/notidd" , notidd);
- model.setValue("/root/temp/data1/ordym" , ordym);
- model.setValue("/root/temp/data1/chosflag" , chosflag);
- model.setValue("/root/temp/data1/ordfildcd" , ordfildcd);
- model.setValue("/root/temp/data1/corpmark" , corpmark);
- model.setValue("/root/temp/data1/hospnm" , hospnm);
- // 비고란을 왼쪽 하단에 별도로 보여주기위한 추가부분
- var t16 = grd_f601.textmatrix(row,16); // rem
- model.setValue( "instance('instance1')/send/sendf601/judgdg", t01 );
- model.setValue( "instance('instance1')/send/sendf601/acptno", t06 );
- model.setValue( "instance('instance1')/send/sendf601/setno", t07 );
- model.setValue( "instance('instance1')/send/sendf601/clamseqno", t23 );
- model.setValue( "instance('instance1')/send/sendf601/clamno", t02 );
-
- // 수신팝업을 위한 팝업
- // model.setValue("/root/send/send_rem/judgdg",model.getValue("/root/main/list01/gridpiehf601/judgdg"));
- // model.setValue("/root/send/send_rem/clamno",model.getValue("/root/main/list01/gridpiehf601/clamno"));
- // model.setValue("/root/send/send_rem/acptno",model.getValue("/root/main/list01/gridpiehf601/acptno"));
-
- model.setValue("/root/send/send_rem/judgdg", t01);
- model.setValue("/root/send/send_rem/acptno", t06);
- model.setValue("/root/send/send_rem/setno", t07);
- model.setValue("/root/send/send_rem/clamseqno", t23);
- model.setValue("/root/send/send_rem/clamno", t02);
-
- model.removeNodeset("/root/main/list02/gridpiehf602");
- model.removeNodeset("/root/main/list02/gridpiehf604");
- model.removeNodeset("/root/main/list02/remdata");
- model.removeNodeset("/root/main/list03/gridpiehf603");
- model.refresh();
-
- rtn = submit("TRPIE01102");
-
- grd_f602.colStyle(12,"data","background-color") = "#ccff99";
- grd_f602.colStyle(13,"data","background-color") = "#ccff88";
- // grd_f602.colStyle(14,"data","background-color") = "#ccff77";
- // grd_f602.colStyle(15,"data","background-color") = "#ccff66";
-
- grd_f602.colStyle(27,"data","background-color") = "#ccccff";
- grd_f602.colStyle(28,"data","background-color") = "#ccbbff";
- grd_f602.colStyle(29,"data","background-color") = "#ccaaff";
- grd_f602.colStyle(30,"data","background-color") = "#cc99ff";
- grd_f602.colStyle(31,"data","background-color") = "#cc88ff";
- grd_f602.colStyle(32,"data","background-color") = "#cc77ff";
- grd_f602.colStyle(33,"data","background-color") = "#cc66ff";
-
- grd_f602.colStyle(34,"data","background-color") = "#ccccff";
- grd_f602.colStyle(35,"data","background-color") = "#ccbbff";
- grd_f602.colStyle(36,"data","background-color") = "#ccaaff";
- grd_f602.colStyle(37,"data","background-color") = "#cc99ff";
- grd_f602.colStyle(38,"data","background-color") = "#cc88ff";
- grd_f602.colStyle(39,"data","background-color") = "#cc77ff";
- grd_f602.colStyle(40,"data","background-color") = "#cc66ff";
- grd_f602.colStyle(41,"data","background-color") = "#cc55ff";
-
- grd_f602.colStyle(42,"data","background-color") = "#ccccff";
- grd_f602.colStyle(43,"data","background-color") = "#ccbbff";
- btn_acptno.selected = true;
- model.toggle("case1");
-
- /* if(rtn){
- //교체 할 자식 노드가 있는 부모 노드 선택
- var node = instance1.selectSingleNode("/root/main/list02");
- //자식 노드 교체
- node.replaceChild(instance1.root.main.tmp.gridpiehf602, instance1.root.main.list02.gridpiehf602);
-
- }
- model.refresh(); */
-
- }
- ]]>
- </script>
- <toggle case="case1" ev:event="onclick"/>
- <script type="javascript" ev:event="onaftersort">
- <![CDATA[
- grd_f601.gridToInstance(); // Sort 된 Grid 상의 Data 순서와 Instance Node 상의 Data 순서를 동일하게 맞춰준다.
- ]]>
- </script>
- <script type="javascript" ev:event="onmousedown">
- <![CDATA[
- if (event.button == 3) { // 3 : 오른쪽 버튼
- if (grd_f601.isCell(event.target) && grd_f601.mouseRow >= grd_f601.fixedrows) {
- setPopupMenu("grd_f601", false, "/root/popupdata/popupmenu/grd_f601/item", "name", "func"); // (tfHelper.js) 컨트롤에서 사용자 팝업 설정 함수
- }
- }
- ]]>
- </script>
- <script type="javascript" ev:event="DOMFocusOut">
- <![CDATA[
- initPopupMenu(); // (tfHelper.js) 사용자 팝업 설정 초기화
- ]]>
- </script>
- <script type="javascript" ev:event="oncopy">
- <![CDATA[
- grid_oncopy();
- ]]>
- </script>
- </datagrid>
- <caption id="caption36" class="tit_2" style="left:300px; top:65px; width:115px; height:13px; ">F060.1(청구서)</caption>
- <line id="line27" class="line_1" style="x1:295px; y1:80px; x2:1194px; y2:80px; "/>
- <datagrid id="grd_f602" nodeset="/root/main/list02/gridpiehf602" caption="심사차수^접수번호^묶음번호^청일련^청구번호^(docuseqno2)^명일련^등록번호^수진자^진료형태^종별구분^특정기호^주상병^진료개시일^조정합계 I^조정합계 II^정액정율구분^입원일수^급여일수^처방횟수^심사담당조^보장기관기호^보장기관명^세대주^주민번호^유형I^내역^청구^청구^청구^청구^청구^청구^청구^청구^청구^청구^청구^청구^청구^심결^심결^심결^심결^심결^심결^심결^심결^심결^심결^심결^심결^심결^심결^심결^심결^환불금^추가징수금^비고^삭감사유|심사차수^접수번호^묶음번호^청일련^청구번호^(docuseqno2)^명일련^등록번호^수진자^진료형태^종별구분^특정기호^주상병^진료개시일^조정합계 I^조정합계 II^정액정율구분^입원일수^급여일수^처방횟수^심사담당조^보장기관기호^보장기관명^세대주^주민번호^유형I^내역^급여총액^본인부담금^특수장비^대불신청금^장애인의료비^보장기관부담금^상한액초과금^약제상한차액총액^수진자요양급여총액^100/100본인부담금총액^100분의100미만청구총액^100분의100미만청구본인일부부담금^100분의100미만청구청구액^급여총액^본인부담금^보장기관부담금^위탁검사^심사결정액^대불신청금^장애인의료비^상한액초과금^약제상한차액총액^수진자요양급여총액^100/100본인부담금총액^100분의100미만심결총액^100분의100미만심결본인일부부담금^100분의100미만심결청구액^상계환급금^상계추가부담금^환불금^추가징수금^비고^삭감사유" colsep="^" colwidth="50, 50, 50, 50, 50, 100, 49, 56, 54, 54, 70, 57, 57, 74, 82, 86, 91, 64, 64, 64, 77, 100, 112, 70, 100, 75, 76, 100, 100, 100, 100, 100, 100, 100, 110, 120, 128, 151, 204, 160, 100, 100, 100, 100, 100, 100, 100, 100, 110, 120, 135, 138, 204, 156, 100, 100, 100, 100, 80, 70" dataheight="23" ellipsis="true" explorerbar="sortshowmove" focuscolor="#b9e5fb" mergecellsfixedrows="bycolrec" rowheader="seq" rowheight="35" rowsep="|" tooltip="true" style="left:295px; top:369px; width:899px; height:216px; ">
- <col ref="judgdg" visibility="hidden"/>
- <col ref="acptno" visibility="hidden"/>
- <col ref="setno" visibility="hidden"/>
- <col ref="clamseqno" visibility="hidden"/>
- <col ref="clamno" visibility="hidden"/>
- <col ref="docuseqno2" visibility="hidden"/>
- <col ref="docuseqno" style="text-align:center; "/>
- <col ref="pid" style="text-align:center; "/>
- <col ref="patnm" style="text-align:center; "/>
- <col ref="ordtype" style="text-align:center; "/>
- <col ref="medcarekindflag" style="text-align:center; "/>
- <col ref="spclmark" style="text-align:center; "/>
- <col ref="maindiagcd" style="text-align:center; "/>
- <col ref="ordopendd" format="yyyy-mm-dd" style="text-align:center; "/>
- <col ref="jradjtsum1" format="(-)#,###" style="text-align:right; background-color:transparent; "/>
- <col ref="jradjtsum2" format="(-)#,###" style="text-align:right; background-color:transparent; "/>
- <col ref="fixrateflag" style="text-align:center; "/>
- <col ref="inchosdayno" style="text-align:right; "/>
- <col ref="medcaredayno" style="text-align:right; "/>
- <col ref="ordtims" style="text-align:right; "/>
- <col ref="judgchrgjonm" style="text-align:center; "/>
- <col ref="procinstmark" style="text-align:center; "/>
- <col ref="procinstmarknm" style="text-align:left; "/>
- <col ref="hshdnm" style="text-align:center; "/>
- <col ref="patrrgstno" style="text-align:center; "/>
- <col ref="kind" style="text-align:center; "/>
- <col ref="spec" style="text-align:center; "/>
- <col ref="clmcstotamt" format="(-)#,###" style="text-align:right; "/>
- <col ref="clownbamt" format="(-)#,###" style="text-align:right; "/>
- <col ref="clseqmttotamt" format="(-)#,###" style="text-align:right; "/>
- <col ref="clsubtamt" format="(-)#,###" style="text-align:right; "/>
- <col ref="clhandicaprfund" format="(-)#,###" style="text-align:right; "/>
- <col ref="clsecuinstbamt" format="(-)#,###" style="text-align:right; "/>
- <col ref="clownbmaxexamt" format="(-)#,###" style="text-align:right; "/>
- <col ref="cldruglimitdiffamtsum" format="(-)#,###" style="text-align:right; "/>
- <col ref="clpatmcstotamtsum" format="(-)#,###" style="text-align:right; "/>
- <col ref="clinsu100ownbamt" 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="jrmcstotamt" format="(-)#,###" style="text-align:right; "/>
- <col ref="jrownbamt" format="(-)#,###" style="text-align:right; "/>
- <col ref="jrsecuinstbamt" format="(-)#,###" style="text-align:right; "/>
- <col ref="jrtrudirecpamt" format="(-)#,###" style="text-align:right; "/>
- <col ref="jrjudgdeciamt" format="(-)#,###" style="text-align:right; "/>
- <col ref="jrsubtamt" format="(-)#,###" style="text-align:right; "/>
- <col ref="jrhandicaprfund" format="(-)#,###" style="text-align:right; "/>
- <col ref="jrownbmaxexamt" format="(-)#,###" style="text-align:right; "/>
- <col ref="jrdruglimitdiffamtsum" format="(-)#,###" style="text-align:right; "/>
- <col ref="jrpatmcstotamtsum" format="(-)#,###" style="text-align:right; "/>
- <col ref="jrinsu100ownbamt" 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="jrstfrtnamt" format="(-)#,###" style="text-align:right; "/>
- <col ref="jrstfaddbamt" format="(-)#,###" style="text-align:right; "/>
- <col ref="jrrtnamt" format="(-)#,###" style="text-align:right; "/>
- <col ref="jraddchrgamt" format="(-)#,###" style="text-align:right; "/>
- <col ref="docuseqrem" type="inputbutton" style="text-align:center; "/>
- <col ref="adjtresn" style="text-align:center; "/>
- <script type="javascript" ev:event="onbuttonclick">
- <![CDATA[
- model.setValue("/root/main/list04/rem", grd_f602.valueMatrix(grd_f602.row,grd_f602.col));
- modal("SPPIE00200", "", "400", "400" ,"", "/root/main/list04/rem", "/root/send/textno");
- ]]>
- </script>
- <script type="javascript" ev:event="onclick">
- <![CDATA[
- var rtn = null;
-
- if (grd_f602.isCell(event.target) && grd_f602.row >= grd_f602.fixedRows ) {
- var row = grd_f602.selectedRow(0);
-
- var t1 = grd_f602.textmatrix(row,1); // 심사차수
- var t2 = grd_f602.textmatrix(row,2); // 접수번호
- var t3 = grd_f602.textmatrix(row,3); // 묶음번호
- var t4 = grd_f602.textmatrix(row,4); // 청일련
- var t5 = grd_f602.textmatrix(row,5); // 청구번호
- var t6 = grd_f602.textmatrix(row,6); // 명세서일련번호2
- model.setValue( "instance('instance1')/send/sendf603/judgdg", t1 );
- model.setValue( "instance('instance1')/send/sendf603/acptno", t2 );
- model.setValue( "instance('instance1')/send/sendf603/setno", t3 );
- model.setValue( "instance('instance1')/send/sendf603/clamseqno", t4 );
- model.setValue( "instance('instance1')/send/sendf603/clamno", t5 );
- model.setValue( "instance('instance1')/send/sendf603/docuseqno", t6 );
-
- model.removeNodeset("/root/main/list03/gridpiehf602sum");
- model.removeNodeset("/root/main/list03/gridpiehf603");
- model.removeNodeset("/root/main/list03/gridpiehf606");
- model.removeNodeset("/root/main/list03/gridpiehf605");
- model.refresh();
-
- rtn = submit("TRPIE01103");
-
- grd_f603.colStyle(10,"data","background-color") = "#ccff99";
- grd_f603.colStyle(11,"data","background-color") = "#ccff88";
-
- // 20080818 정숙희
- if (grd_f603.rows > 1) {
- btn_603.selected= true;
- model.toggle("603");
- }
- else if (grd_f606.rows > 1) {
- btn_606.selected= true;
- model.toggle("606");
- }
- else if (grd_f605.rows > 1) {
- btn_605.selected= true;
- model.toggle("605");
- }
-
- btn_pid.selected = true;
- model.toggle("case2");
- }
- ]]>
- </script>
- <toggle case="case2" ev:event="onclick"/>
- <script type="javascript" ev:event="onaftersort">
- <![CDATA[
- grd_f602.gridToInstance(); // Sort 된 Grid 상의 Data 순서와 Instance Node 상의 Data 순서를 동일하게 맞춰준다.
- ]]>
- </script>
- <script type="javascript" ev:event="oncopy">
- <![CDATA[
- grid_oncopy();
- ]]>
- </script>
- </datagrid>
- <caption id="caption37" class="tit_2" style="left:300px; top:349px; width:125px; height:13px; ">F060.2(명세서)</caption>
- <line id="line28" class="line_1" style="x1:295px; y1:364px; x2:1194px; y2:364px; "/>
- <switch id="swt_sum" class="sw_box" style="left:0px; top:77px; width:291px; height:666px; ">
- <case id="case1" selected="true">
- <input id="input60" ref="/root/main/list02/gridpiehf604/jrhandicaprfundsum" class="input_default" format="(-)#,###" style="left:212px; top:128px; width:74px; height:19px; text-align:right; background-color:#ccccff; "/>
- <input id="input71" ref="/root/main/list02/gridpiehf604/jradjtsum1" class="input_default" format="(-)#,###" style="left:212px; top:528px; width:74px; height:19px; text-align:right; background-color:#ccff99; "/>
- <input id="input50" class="input_default" format="(-)#,###" style="left:136; top:228px; width:75; height:19px; text-align:right; background-color:#eaeaea; "/>
- <input id="input61" ref="/root/main/list02/gridpiehf604/jrqualcnfmtcntsum" class="input_default" format="(-)#,###" style="left:212px; top:208px; width:74px; height:19px; text-align:right; background-color:#ccccff; "/>
- <caption id="caption60" class="cell_1" style="left:4px; top:527px; width:130px; height:19px; text-align:right; vertical-align:middle; ">조정금액 I</caption>
- <line id="line52" class="line_2" style="x1:4px; y1:606px; x2:285px; y2:606px; "/>
- <input id="input72" ref="/root/main/list02/gridpiehf604/ruadjtamtsum" class="input_default" format="(-)#,###" style="left:212px; top:568px; width:74px; height:19px; text-align:right; background-color:#ccff99; "/>
- <input id="input51" class="input_default" format="#,###" style="left:136px; top:588px; width:75px; height:19px; text-align:right; background-color:#eaeaea; "/>
- <input id="input62" ref="/root/main/list02/gridpiehf604/picntsum" class="input_default" format="(-)#,###" style="left:136px; top:468px; width:75px; height:19px; text-align:right; background-color:#ffcccc; "/>
- <input id="input73" ref="/root/main/list02/gridpiehf604/piclclamamt" class="input_default" format="(-)#,###" style="left:136px; top:508px; width:75px; height:19px; text-align:right; background-color:#ffcccc; "/>
- <caption id="caption61" class="cell_1" style="left:4px; top:467px; width:130px; height:19px; text-align:right; vertical-align:middle; ">건수</caption>
- <caption id="caption51" class="cell_1" style="left:4px; top:587px; width:130px; height:19px; text-align:right; vertical-align:middle; ">삭감율</caption>
- <input id="input52" ref="/root/main/list02/gridpiehf604/jrsubtaamtsum" class="input_default" format="(-)#,###" style="left:212px; top:108px; width:74px; height:19px; text-align:right; background-color:#ccccff; "/>
- <input id="input63" class="input_default" format="#,###" style="left:136px; top:548px; width:75px; height:19px; text-align:right; background-color:#eaeaea; "/>
- <input id="input74" ref="/root/main/list02/gridpiehf604/pitotordamtsum" class="input_default" format="(-)#,###" style="left:136px; top:488px; width:75px; height:19px; text-align:right; background-color:#ffcccc; "/>
- <input id="input42" ref="/root/main/list02/gridpiehf604/jqownbamtsum" class="input_default" format="(-)#,###" style="left:136px; top:68px; width:75px; height:19px; text-align:right; background-color:#ccccff; "/>
- <caption id="caption41" class="cell_1" style="left:4px; top:4px; width:130px; height:23px; vertical-align:middle; "/>
- <caption id="caption52" class="cell_1" style="left:4px; top:227px; width:130px; height:19px; text-align:right; vertical-align:middle; ">본인부담환급금</caption>
- <input id="input53" ref="/root/main/list02/gridpiehf604/jrownbrtnamtsum" class="input_default" format="(-)#,###" style="left:212px; top:228px; width:74px; height:19px; text-align:right; background-color:#ccccff; "/>
- <line id="line44" class="line_2" style="x1:4px; y1:26px; x2:286px; y2:26px; "/>
- <input id="input64" ref="/root/main/list02/gridpiehf604/jrownaddbamtsum" class="input_default" format="(-)#,###" style="left:212px; top:248px; width:74px; height:19px; text-align:right; background-color:#ccccff; "/>
- <input id="input75" class="input_default" format="#,###" style="left:136px; top:528px; width:75px; height:19px; text-align:right; background-color:#eaeaea; "/>
- <input id="input43" ref="/root/main/list02/gridpiehf604/jqtotordamtsum" class="input_default" format="(-)#,###" style="left:136px; top:48px; width:75px; height:19px; text-align:right; background-color:#ccccff; "/>
- <caption id="caption42" class="cell_1" style="left:4px; top:48px; width:130px; height:19px; text-align:right; vertical-align:middle; ">의료급여비용총액</caption>
- <input id="input54" ref="/root/main/list02/gridpiehf604/rucutrate" class="input_default" style="left:212px; top:588px; width:74px; height:19px; text-align:right; background-color:#ccff99; "/>
- <caption id="caption53" class="cell_1" style="left:135px; top:4px; width:76px; height:23px; text-align:center; vertical-align:middle; ">청구사항</caption>
- <line id="line45" class="line_2" style="x1:4px; y1:456px; x2:285px; y2:456px; "/>
- <input id="input65" class="input_default" format="#,###" style="left:136px; top:568px; width:75px; height:19px; text-align:right; background-color:#eaeaea; "/>
- <caption id="caption64" class="cell_1" style="left:4px; top:567px; width:130px; height:19px; text-align:right; vertical-align:middle; ">조정금액합계</caption>
- <line id="line35" class="line_3" style="x1:4px; y1:661px; x2:286px; y2:661px; "/>
- <input id="input44" ref="/root/main/list02/gridpiehf604/jqownbmaxexamtsum" class="input_default" format="(-)#,###" style="left:136px; top:88px; width:75px; height:19px; text-align:right; background-color:#ccccff; "/>
- <caption id="caption43" class="cell_1" style="left:4px; top:87px; width:130px; height:19px; text-align:right; vertical-align:middle; ">본인부담상한초과금</caption>
- <input id="input55" ref="/root/main/list02/gridpiehf604/jrownbamtsum" class="input_default" format="(-)#,###" style="left:212px; top:68px; width:74px; height:19px; text-align:right; background-color:#ccccff; "/>
- <caption id="caption54" class="cell_1" style="left:212px; top:4px; width:74px; height:23px; text-align:center; vertical-align:middle; ">심결사항</caption>
- <input id="input66" class="input_default" format="(-)#,###" style="left:136; top:248px; width:75; height:19px; text-align:right; background-color:#eaeaea; "/>
- <input id="input45" ref="/root/main/list02/gridpiehf604/jqcntsum" class="input_default" format="(-)#,###" style="left:136px; top:28px; width:75px; height:19px; text-align:right; background-color:#ccccff; "/>
- <caption id="caption44" class="cell_1" style="left:4px; top:28px; width:130px; height:19px; text-align:right; vertical-align:middle; ">건수</caption>
- <input id="input56" ref="/root/main/list02/gridpiehf604/jrtotordamtsum" class="input_default" format="(-)#,###" style="left:212px; top:48px; width:74px; height:19px; text-align:right; background-color:#ccccff; "/>
- <input id="input67" ref="/root/main/list02/gridpiehf604/ruclclamamt" class="input_default" format="(-)#,###" style="left:212px; top:508px; width:74px; height:19px; text-align:right; background-color:#ccff99; "/>
- <caption id="caption55" class="cell_1" style="left:4px; top:247px; width:130px; height:19px; text-align:right; vertical-align:middle; ">본인추가부담금</caption>
- <line id="line37" class="line_3" style="x1:4px; y1:4px; x2:286px; y2:4px; "/>
- <caption id="caption45" class="cell_1" style="left:4px; top:67px; width:130px; height:19px; text-align:right; vertical-align:middle; ">본인부담금</caption>
- <input id="input46" ref="/root/main/list02/gridpiehf604/jqsecuinstbamtsum" class="input_default" format="(-)#,###" style="left:136; top:188px; width:75; height:19px; text-align:right; background-color:#ccccff; "/>
- <input id="input57" ref="/root/main/list02/gridpiehf604/jrownbmaxexamtsum" class="input_default" format="(-)#,###" style="left:212px; top:88px; width:74px; height:19px; text-align:right; background-color:#ccccff; "/>
- <input id="input68" ref="/root/main/list02/gridpiehf604/rutotordamtsum" class="input_default" format="(-)#,###" style="left:212px; top:488px; width:74px; height:19px; text-align:right; background-color:#ccff99; "/>
- <caption id="caption56" class="cell_1" style="left:4px; top:547px; width:130px; height:19px; text-align:right; vertical-align:middle; ">조정금액 II</caption>
- <caption id="caption46" class="cell_1" style="left:4px; top:187px; width:130px; height:19px; text-align:right; vertical-align:middle; ">보장기관부담금</caption>
- <input id="input47" ref="/root/main/list02/gridpiehf604/jqhandicaprfundsum" class="input_default" format="(-)#,###" style="left:136px; top:128px; width:75px; height:19px; text-align:right; background-color:#ccccff; "/>
- <input id="input58" ref="/root/main/list02/gridpiehf604/jrcntsum" class="input_default" format="(-)#,###" style="left:212px; top:28px; width:74px; height:19px; text-align:right; background-color:#ccccff; "/>
- <input id="input69" ref="/root/main/list02/gridpiehf604/jradjtsum2" class="input_default" format="(-)#,###" style="left:212px; top:548px; width:74px; height:19px; text-align:right; background-color:#ccff99; "/>
- <caption id="caption57" class="cell_1" style="left:4px; top:507px; width:130px; height:19px; text-align:right; vertical-align:middle; ">보장기관부담금</caption>
- <caption id="caption47" class="cell_1" style="left:4px; top:127px; width:130px; height:19px; text-align:right; vertical-align:middle; ">장애인의료비</caption>
- <input id="input48" class="input_default" format="(-)#,###" style="left:136; top:208px; width:75; height:19px; text-align:right; background-color:#eaeaea; "/>
- <input id="input59" ref="/root/main/list02/gridpiehf604/jrsecuinstbamtsum" class="input_default" format="(-)#,###" style="left:212px; top:188px; width:74px; height:19px; text-align:right; background-color:#ccccff; "/>
- <caption id="caption58" class="cell_1" style="left:4px; top:447px; width:130px; height:19px; vertical-align:middle; "/>
- <caption id="caption48" class="cell_1" style="left:4px; top:207px; width:130px; height:19px; text-align:right; vertical-align:middle; ">자격확인대상건수</caption>
- <input id="input49" ref="/root/main/list02/gridpiehf604/jqsubtaamtsum" class="input_default" format="(-)#,###" style="left:136px; top:108px; width:75px; height:19px; text-align:right; background-color:#ccccff; "/>
- <caption id="caption59" class="cell_1" style="left:4px; top:487px; width:130px; height:19px; text-align:right; vertical-align:middle; ">의료급여비용총액</caption>
- <caption id="caption49" class="cell_1" style="left:4px; top:107px; width:130px; height:19px; text-align:right; vertical-align:middle; ">대불신청금</caption>
- <input id="input70" ref="/root/main/list02/gridpiehf604/rucntsum" class="input_default" format="(-)#,###" style="left:212px; top:468px; width:74px; height:19px; text-align:right; background-color:#ccff99; "/>
- <caption id="caption50" class="cell_1" style="left:212px; top:448px; width:74px; height:19px; text-align:center; vertical-align:middle; ">삭감내역</caption>
- <caption id="caption62" class="cell_1" style="left:135px; top:448px; width:76px; height:19px; text-align:center; vertical-align:middle; ">불능/보류</caption>
- <input id="input90" class="input_default" format="(-)#,###" style="left:136; top:268px; width:75; height:19px; text-align:right; background-color:#eaeaea; "/>
- <input id="input92" ref="/root/main/list02/gridpiehf604/jrjudgdeciamtsum" class="input_default" format="(-)#,###" style="left:212px; top:288px; width:74px; height:19px; text-align:right; background-color:#ccccff; "/>
- <input id="input93" ref="/root/main/list02/gridpiehf604/jrtrudirecpamtsum" class="input_default" format="(-)#,###" style="left:212px; top:268px; width:74px; height:19px; text-align:right; background-color:#ccccff; "/>
- <caption id="caption65" class="cell_1" style="left:4px; top:267px; width:130px; height:19px; text-align:right; vertical-align:middle; ">위탁검사직접지급금</caption>
- <input id="input105" class="input_default" format="(-)#,###" style="left:136; top:288px; width:75; height:19px; text-align:right; background-color:#eaeaea; "/>
- <caption id="caption67" class="cell_1" style="left:4px; top:287px; width:130px; height:19px; text-align:right; vertical-align:middle; ">심사결정액</caption>
- <input id="input3" ref="/root/main/list02/gridpiehf604/jrdruglimitdiffamtsum" class="input_default" format="(-)#,###" style="left:212px; top:148px; width:74px; height:19px; text-align:right; background-color:#ccccff; "/>
- <input id="input4" ref="/root/main/list02/gridpiehf604/jqdruglimitdiffamtsum" class="input_default" format="(-)#,###" style="left:136px; top:148px; width:75px; height:19px; text-align:right; background-color:#ccccff; "/>
- <caption id="caption7" class="cell_1" style="left:5px; top:147px; width:130px; height:19px; text-align:right; vertical-align:middle; ">약제상한차액</caption>
- <caption id="caption8" class="cell_1" style="left:5px; top:167px; width:130px; height:19px; text-align:right; vertical-align:middle; ">수진자요양급여비총액</caption>
- <input id="input5" ref="/root/main/list02/gridpiehf604/jrpatmcstotamtsum" class="input_default" format="(-)#,###" style="left:212px; top:168px; width:74px; height:19px; text-align:right; background-color:#ccccff; "/>
- <input id="input6" ref="/root/main/list02/gridpiehf604/jqpatmcstotamtsum" class="input_default" format="(-)#,###" style="left:136px; top:168px; width:75px; height:19px; text-align:right; background-color:#ccccff; "/>
- <caption id="caption9" class="cell_1" style="left:5px; top:608px; width:130px; height:19px; text-align:right; vertical-align:middle; ">약제상한차액조정금액</caption>
- <input id="input7" ref="/root/main/list02/gridpiehf604/jqdruglimitdiffamtadjtsum" class="input_default" format="(-)#,###" style="left:136px; top:608px; width:75px; height:19px; text-align:right; background-color:#ffcccc; "/>
- <input id="input8" ref="/root/main/list02/gridpiehf604/jrdruglimitdiffamtadjtsum" class="input_default" format="(-)#,###" style="left:212px; top:608px; width:74px; height:19px; text-align:right; background-color:#ccff99; "/>
- <caption id="caption92" class="cell_1" style="left:4px; top:407px; width:130px; height:19px; text-align:right; vertical-align:middle; ">상계환급금</caption>
- <caption id="caption93" class="cell_1" style="left:4px; top:427px; width:130px; height:19px; text-align:right; vertical-align:middle; ">상계추가부담금</caption>
- <input id="input130" class="input_default" format="(-)#,###" style="left:136px; top:408px; width:75px; height:19px; text-align:right; background-color:#eaeaea; "/>
- <input id="input120" ref="/root/main/list02/gridpiehf604/clblwtotownamtsum" class="input_default" format="(-)#,###" style="left:136px; top:308px; width:75px; height:19px; text-align:right; background-color:#ccccff; "/>
- <input id="input131" class="input_default" format="(-)#,###" style="left:136px; top:428px; width:75px; height:19px; text-align:right; background-color:#eaeaea; "/>
- <input id="input132" ref="/root/main/list02/gridpiehf604/jrstfaddbamtsum" class="input_default" format="(-)#,###" style="left:212px; top:428px; width:74px; height:19px; text-align:right; background-color:#ccccff; "/>
- <input id="input121" ref="/root/main/list02/gridpiehf604/clblwownbamtsum" class="input_default" format="(-)#,###" style="left:136px; top:328px; width:75px; height:19px; text-align:right; background-color:#ccccff; "/>
- <input id="input122" ref="/root/main/list02/gridpiehf604/jrblwownbamtsum" class="input_default" format="(-)#,###" style="left:212px; top:328px; width:74px; height:19px; text-align:right; background-color:#ccccff; "/>
- <input id="input123" ref="/root/main/list02/gridpiehf604/clblwinsuclamamtsum" class="input_default" format="(-)#,###" style="left:136px; top:348px; width:75px; height:19px; text-align:right; background-color:#ccccff; "/>
- <caption id="caption88" class="cell_1" style="left:30px; top:347px; width:104px; height:19px; text-align:right; vertical-align:middle; ">청구액</caption>
- <input id="input124" ref="/root/main/list02/gridpiehf604/jrblwinsuclamamtsum" class="input_default" format="(-)#,###" style="left:212px; top:348px; width:74px; height:19px; text-align:right; background-color:#ccccff; "/>
- <caption id="caption89" class="cell_1" style="left:30px; top:367px; width:104px; height:19px; font-size:10pt; text-align:right; vertical-align:middle; ">추가부담금</caption>
- <input id="input125" ref="/root/main/list02/gridpiehf604/jrstfrtnamtsum" class="input_default" format="(-)#,###" style="left:212px; top:408px; width:74px; height:19px; text-align:right; background-color:#ccccff; "/>
- <caption id="caption1" class="cell_1" style="left:30px; top:307px; width:104px; height:19px; text-align:right; vertical-align:middle; ">총진료비</caption>
- <input id="input126" ref="/root/main/list02/gridpiehf604/jrblwownaddbamtsum" class="input_default" format="(-)#,###" style="left:212px; top:368px; width:74px; height:19px; text-align:right; background-color:#ccccff; "/>
- <input id="input127" class="input_default" format="(-)#,###" style="left:136px; top:388px; width:75px; height:19px; text-align:right; background-color:#eaeaea; "/>
- <input id="input128" ref="/root/main/list02/gridpiehf604/jrblwownbrtnamtsum" class="input_default" format="(-)#,###" style="left:212px; top:388px; width:74px; height:19px; text-align:right; background-color:#ccccff; "/>
- <input id="input129" class="input_default" format="(-)#,###" style="left:136px; top:368px; width:75px; height:19px; text-align:right; background-color:#eaeaea; "/>
- <input id="input119" ref="/root/main/list02/gridpiehf604/jrblwtotownamtsum" class="input_default" format="(-)#,###" style="left:212px; top:308px; width:74px; height:19px; text-align:right; background-color:#ccccff; "/>
- <caption id="caption90" class="cell_1" style="left:30px; top:387px; width:104px; height:19px; text-align:right; vertical-align:middle; ">부담환급금</caption>
- <caption id="caption80" class="cell_1" style="left:30px; top:327px; width:104px; height:19px; font-size:9pt; text-align:right; vertical-align:middle; ">본인부담금</caption>
- <caption id="caption91" class="cell_1" style="left:4px; top:307px; width:25px; height:99px; text-align:center; vertical-align:middle; ">
- <![CDATA[100
- /
- 100
- 미만]]>
- </caption>
- </case>
- <case id="case2">
- <caption id="caption81" class="cell_1" style="left:4px; top:188px; width:130px; height:19px; text-align:right; vertical-align:middle; ">환불금</caption>
- <caption id="caption70" class="cell_1" style="left:4px; top:228px; width:130px; height:19px; text-align:right; vertical-align:middle; ">위탁검사직접지급금</caption>
- <input id="input82" class="input_default" style="left:137px; top:448px; width:73px; height:19px; text-align:right; background-color:#eaeaea; "/>
- <caption id="caption82" class="cell_1" style="left:4px; top:488px; width:130px; height:19px; text-align:right; vertical-align:middle; ">삭감율</caption>
- <input id="input94" ref="/root/main/list03/gridpiehf602amt/clsubtamt" class="input_default" format="(-)#,###" style="left:137px; top:88px; width:73px; height:19px; text-align:right; background-color:#ccccff; "/>
- <input id="input83" class="input_default" style="left:137px; top:488px; width:73px; height:19px; text-align:right; background-color:#eaeaea; "/>
- <caption id="caption83" class="cell_1" style="left:4px; top:128px; width:130px; height:19px; text-align:right; vertical-align:middle; ">보장기관부담금</caption>
- <input id="input95" ref="/root/main/list03/gridpiehf602amt/jrownbmaxexamt" class="input_default" format="(-)#,###" style="left:213; top:68px; width:73px; height:19px; text-align:right; background-color:#ccccff; "/>
- <caption id="caption72" class="cell_1" style="left:4px; top:48px; width:130px; height:19px; text-align:right; vertical-align:middle; ">본인부담금</caption>
- <input id="input84" ref="/root/main/list03/gridpiehf602amt/jrhandicaprfund" class="input_default" format="(-)#,###" style="left:213; top:108px; width:73px; height:19px; text-align:right; background-color:#ccccff; "/>
- <input id="input85" ref="/root/main/list03/gridpiehf602amt/adjtresn" class="input_default" style="left:213px; top:508px; width:73px; height:19px; text-align:right; background-color:#ffcccc; "/>
- <caption id="caption84" class="cell_1" style="left:4px; top:428px; width:130px; height:19px; text-align:right; vertical-align:middle; ">조정금액 I</caption>
- <input id="input96" ref="/root/main/list03/gridpiehf602amt/clseqmttotamt" class="input_default" format="(-)#,###" style="left:137px; top:408px; width:73px; height:19px; text-align:right; background-color:#ccccff; "/>
- <caption id="caption73" class="cell_1" style="left:135px; top:4px; width:76px; height:23px; text-align:center; vertical-align:middle; ">청구사항</caption>
- <caption id="caption63" class="cell_1" style="left:5px; top:508px; width:130px; height:19px; text-align:right; vertical-align:middle; ">불능/보류사유</caption>
- <caption id="caption85" class="cell_1" style="left:4px; top:208px; width:130px; height:19px; text-align:right; vertical-align:middle; ">추가징수금</caption>
- <input id="input97" ref="/root/main/list03/gridpiehf602amt/clmcstotamt" class="input_default" format="(-)#,###" style="left:137px; top:28px; width:73px; height:19px; text-align:right; background-color:#ccccff; "/>
- <input id="input86" class="input_default" style="left:137px; top:468px; width:73px; height:19px; text-align:right; background-color:#eaeaea; "/>
- <caption id="caption86" class="cell_1" style="left:4px; top:468px; width:130px; height:19px; text-align:right; vertical-align:middle; ">조정금액합계</caption>
- <input id="input98" ref="/root/main/list03/gridpiehf602amt/jrownbamt" class="input_default" format="(-)#,###" style="left:213; top:48px; width:73px; height:19px; text-align:right; background-color:#ccccff; "/>
- <caption id="caption75" class="cell_1" style="left:4px; top:88px; width:130px; height:19px; text-align:right; vertical-align:middle; ">대불신청금</caption>
- <input id="input87" ref="/root/main/list03/gridpiehf602amt/clownbmaxexamt" class="input_default" format="(-)#,###" style="left:137px; top:68px; width:73px; height:19px; text-align:right; background-color:#ccccff; "/>
- <input id="input76" ref="/root/main/list03/gridpiehf602amt/jrsecuinstbamt" class="input_default" format="(-)#,###" style="left:213; top:128px; width:73px; height:19px; text-align:right; background-color:#ccccff; "/>
- <input id="input77" class="input_default" style="left:137px; top:428px; width:73px; height:19px; text-align:right; background-color:#eaeaea; "/>
- <caption id="caption87" class="cell_1" style="left:4px; top:108px; width:130px; height:19px; text-align:right; vertical-align:middle; ">장애인의료비</caption>
- <input id="input100" class="input_default" style="left:137px; top:188px; width:73px; height:19px; text-align:right; background-color:#eaeaea; "/>
- <input id="input99" ref="/root/main/list03/gridpiehf602amt/cutrate" class="input_default" style="left:213px; top:488px; width:73px; height:19px; text-align:right; background-color:#ccff99; "/>
- <caption id="caption76" class="cell_1" style="left:212px; top:4px; width:74px; height:23px; text-align:center; vertical-align:middle; ">심결사항</caption>
- <input id="input88" ref="/root/main/list03/gridpiehf602amt/jrtrudirecpamt" class="input_default" format="(-)#,###" style="left:213; top:228px; width:73px; height:19px; text-align:right; background-color:#ccccff; "/>
- <input id="input101" ref="/root/main/list03/gridpiehf602amt/jrsubtamt" class="input_default" format="(-)#,###" style="left:213; top:88px; width:73px; height:19px; text-align:right; background-color:#ccccff; "/>
- <caption id="caption77" class="cell_1" style="left:4px; top:28px; width:130px; height:19px; text-align:right; vertical-align:middle; ">의료급여비용총액</caption>
- <input id="input89" class="input_default" style="left:213px; top:408px; width:73px; height:19px; text-align:right; background-color:#eaeaea; "/>
- <caption id="caption66" class="cell_1" style="left:4px; top:448px; width:130px; height:19px; text-align:right; vertical-align:middle; ">조정금액 II</caption>
- <input id="input78" class="input_default" style="left:137px; top:228px; width:73px; height:19px; text-align:right; background-color:#eaeaea; "/>
- <input id="input102" ref="/root/main/list03/gridpiehf602amt/jradjtsumtotal" class="input_default" format="(-)#,###" style="left:213px; top:468px; width:73px; height:19px; text-align:right; background-color:#ccff99; "/>
- <caption id="caption78" class="cell_1" style="left:4px; top:408px; width:130px; height:19px; text-align:right; vertical-align:middle; ">특수장비총액</caption>
- <input id="input79" ref="/root/main/list03/gridpiehf602amt/jraddchrgamt" class="input_default" format="(-)#,###" style="left:213; top:208px; width:73px; height:19px; text-align:right; background-color:#ccccff; "/>
- <input id="input103" ref="/root/main/list03/gridpiehf602amt/clsecuinstbamt" class="input_default" format="(-)#,###" style="left:137px; top:128px; width:73px; height:19px; text-align:right; background-color:#ccccff; "/>
- <caption id="caption79" class="cell_1" style="left:4px; top:68px; width:130px; height:19px; text-align:right; vertical-align:middle; ">본인부담상한초과금</caption>
- <input id="input104" ref="/root/main/list03/gridpiehf602amt/jrmcstotamt" class="input_default" format="(-)#,###" style="left:213; top:28px; width:73px; height:19px; text-align:right; background-color:#ccccff; "/>
- <caption id="caption69" class="cell_1" style="left:4px; top:4px; width:130px; height:23px; vertical-align:middle; "/>
- <input id="input106" class="input_default" style="left:137px; top:208px; width:73px; height:19px; text-align:right; background-color:#eaeaea; "/>
- <input id="input107" ref="/root/main/list03/gridpiehf602amt/jrrtnamt" class="input_default" format="(-)#,###" style="left:213; top:188px; width:73px; height:19px; text-align:right; background-color:#ccccff; "/>
- <input id="input108" ref="/root/main/list03/gridpiehf602amt/clhandicaprfund" class="input_default" format="(-)#,###" style="left:137px; top:108px; width:73px; height:19px; text-align:right; background-color:#ccccff; "/>
- <input id="input80" ref="/root/main/list03/gridpiehf602amt/jradjtsum1" class="input_default" format="(-)#,###" style="left:213px; top:428px; width:73px; height:19px; text-align:right; background-color:#ccff99; "/>
- <input id="input109" ref="/root/main/list03/gridpiehf602amt/jradjtsum2" class="input_default" format="(-)#,###" style="left:213px; top:448px; width:73px; height:19px; text-align:right; background-color:#ccff99; "/>
- <input id="input91" ref="/root/main/list03/gridpiehf602amt/clownbamt" class="input_default" format="(-)#,###" style="left:137px; top:48px; width:73px; height:19px; text-align:right; background-color:#ccccff; "/>
- <line id="line60" class="line_2" style="x1:4px; y1:26px; x2:286px; y2:26px; "/>
- <input id="input81" class="input_default" style="left:137px; top:508px; width:73px; height:19px; text-align:right; background-color:#eaeaea; "/>
- <line id="line67" class="line_3" style="x1:4px; y1:4px; x2:286px; y2:4px; "/>
- <caption id="caption3" class="cell_1" style="left:4px; top:248px; width:130px; height:19px; text-align:right; vertical-align:middle; ">심사결정액</caption>
- <input id="input1" class="input_default" style="left:137px; top:248px; width:73px; height:19px; text-align:right; background-color:#eaeaea; "/>
- <input id="input2" ref="/root/main/list03/gridpiehf602amt/jrjudgdeciamt" class="input_default" format="(-)#,###" style="left:213px; top:248px; width:73px; height:19px; text-align:right; background-color:#ccccff; "/>
- <caption id="caption10" class="cell_1" style="left:4px; top:148px; width:130px; height:19px; text-align:right; vertical-align:middle; ">약제상한차액</caption>
- <input id="input9" ref="/root/main/list03/gridpiehf602amt/jrdruglimitdiffamtsum" class="input_default" format="(-)#,###" style="left:213; top:148px; width:73px; height:19px; text-align:right; background-color:#ccccff; "/>
- <input id="input10" ref="/root/main/list03/gridpiehf602amt/cldruglimitdiffamtsum" class="input_default" format="(-)#,###" style="left:137px; top:148px; width:73px; height:19px; text-align:right; background-color:#ccccff; "/>
- <input id="input11" ref="/root/main/list03/gridpiehf602amt/jrpatmcstotamtsum" class="input_default" format="(-)#,###" style="left:213; top:168px; width:73px; height:19px; text-align:right; background-color:#ccccff; "/>
- <input id="input12" ref="/root/main/list03/gridpiehf602amt/clpatmcstotamtsum" class="input_default" format="(-)#,###" style="left:137px; top:168px; width:73px; height:19px; text-align:right; background-color:#ccccff; "/>
- <caption id="caption11" class="cell_1" style="left:4px; top:168px; width:130px; height:19px; text-align:right; vertical-align:middle; ">수진자요양급여비총액</caption>
- <input id="input140" ref="/root/main/list03/gridpiehf602amt/jrblwtotownamt" class="input_default" format="(-)#,###" style="left:213px; top:268px; width:73px; height:19px; text-align:right; background-color:#ccccff; "/>
- <caption id="caption94" class="cell_1" style="left:29px; top:308px; width:105px; height:19px; text-align:right; vertical-align:middle; ">청구액</caption>
- <input id="input141" class="input_default" format="#,###" style="left:137px; top:348px; width:73px; height:19px; text-align:right; background-color:#eaeaea; "/>
- <caption id="caption95" class="cell_1" style="left:29px; top:268px; width:105px; height:19px; text-align:right; vertical-align:middle; ">총진료비</caption>
- <input id="input142" ref="/root/main/list03/gridpiehf602amt/jrblwownbrtnamt" class="input_default" format="(-)#,###" style="left:213px; top:348px; width:73px; height:19px; text-align:right; background-color:#ccccff; "/>
- <caption id="caption96" class="cell_1" style="left:29px; top:288px; width:105px; height:19px; text-align:right; vertical-align:middle; ">본인부담금</caption>
- <input id="input143" class="input_default" format="#,###" style="left:137px; top:388px; width:73px; height:19px; text-align:right; background-color:#eaeaea; "/>
- <caption id="caption97" class="cell_1" style="left:29px; top:328px; width:105px; height:19px; text-align:right; vertical-align:middle; ">본인추가환급금</caption>
- <input id="input144" ref="/root/main/list03/gridpiehf602amt/jrstfrtnamt" class="input_default" format="(-)#,###" style="left:213px; top:368px; width:73px; height:19px; text-align:right; background-color:#ccccff; "/>
- <input id="input133" class="input_default" format="#,###" style="left:137px; top:328px; width:73px; height:19px; text-align:right; background-color:#eaeaea; "/>
- <caption id="caption98" class="cell_1" style="left:3px; top:268px; width:25px; height:99px; text-align:center; vertical-align:middle; ">
- <![CDATA[100
- /
- 100
- 미만]]>
- </caption>
- <input id="input145" class="input_default" format="#,###" style="left:137px; top:368px; width:73px; height:19px; text-align:right; background-color:#eaeaea; "/>
- <input id="input134" ref="/root/main/list03/gridpiehf602amt/jrblwinsuclamamt" class="input_default" format="(-)#,###" style="left:213px; top:308px; width:73px; height:19px; text-align:right; background-color:#ccccff; "/>
- <caption id="caption99" class="cell_1" style="left:29px; top:348px; width:105px; height:19px; text-align:right; vertical-align:middle; ">본인부담환급금</caption>
- <input id="input146" ref="/root/main/list03/gridpiehf602amt/jrstfaddbamt" class="input_default" format="(-)#,###" style="left:213px; top:388px; width:73px; height:19px; text-align:right; background-color:#ccccff; "/>
- <input id="input135" ref="/root/main/list03/gridpiehf602amt/clblwtotownamt" class="input_default" format="#,###" style="left:137px; top:268px; width:73px; height:19px; text-align:right; background-color:#ccccff; "/>
- <input id="input136" ref="/root/main/list03/gridpiehf602amt/clblwinsuclamamt" class="input_default" format="#,###" style="left:137px; top:308px; width:73px; height:19px; text-align:right; background-color:#ccccff; "/>
- <input id="input137" ref="/root/main/list03/gridpiehf602amt/jrblwownaddbamt" class="input_default" format="(-)#,###" style="left:213px; top:328px; width:73px; height:19px; text-align:right; background-color:#ccccff; "/>
- <input id="input138" ref="/root/main/list03/gridpiehf602amt/jrblwownbamt" class="input_default" format="(-)#,###" style="left:213px; top:288px; width:73px; height:19px; text-align:right; background-color:#ccccff; "/>
- <input id="input139" ref="/root/main/list03/gridpiehf602amt/clblwownbamt" class="input_default" format="#,###" style="left:137px; top:288px; width:73px; height:19px; text-align:right; background-color:#ccccff; "/>
- <caption id="caption100" class="cell_1" style="left:4px; top:368px; width:130px; height:19px; text-align:right; vertical-align:middle; ">상계환급금</caption>
- <caption id="caption101" class="cell_1" style="left:4px; top:388px; width:130px; height:19px; text-align:right; vertical-align:middle; ">상계추가부담금</caption>
- </case>
- <case id="case3" style="left:0px; top:0px; width:100.00%; height:100.00%; ">
- <button id="button2" class="btn2_letter6" style="left:199px; top:5px; width:86px; height:19px; ">
- <caption>수신비고팝업</caption>
- <script type="javascript" ev:event="DOMActivate">
- <![CDATA[
- modal("SPPIE01110", 1, 1, 1, "SPPIE01110", "/root/send/send_rem", "/root/send/send_rem");
- ]]>
- </script>
- </button>
- <line id="line29" class="line_1" x="10" style="x1:5px; y1:25px; x2:285px; y2:25px; "/>
- <caption id="caption38" class="tit_2" style="left:5px; top:10px; width:70px; height:13px; ">참조란</caption>
- <textarea id="textarea1" ref="/root/main/list02/remdata/rem" scroll="auto" style="left:5px; top:30px; width:280px; height:629px; "/>
- </case>
- </switch>
- <button id="btn_acptno" class="btn_sw" group="tab" selected="true" style="left:0px; top:56px; width:85px; height:22px; ">
- <caption>접수번호별</caption>
- <toggle case="case1" ev:event="onclick"/>
- </button>
- <button id="btn_pid" class="btn_sw" group="tab" style="left:85px; top:56px; width:85px; height:22px; ">
- <caption>개인별</caption>
- <toggle case="case2" ev:event="onclick"/>
- </button>
- <group id="group5" style="left:0px; top:5px; width:1194px; height:50px; vertical-align:top; ">
- <shape id="roundrect2" class="roundrect_search" appearance="roundrect" ellipsewidth="10" ellipseheight="10" style="left:0px; top:0px; width:1194px; height:50px; background-color:#fffbf2; border-color:#ffd799; "/>
- <caption id="caption30" class="search_name" style="left:695px; top:5px; width:90px; height:17px; ">청구분야 :</caption>
- <input id="ipt_fromterm" ref="/root/send/fromterm" class="input_search" inputtype="date" style="left:207px; top:15px; width:85px; height:19px; ">
- <script type="javascript" ev:event="DOMFocusOut">
- <![CDATA[
- //model.setValue("/root/send/toterm",model.getValue("/root/send/fromterm"));
- model.refresh();
- pidfGetClamdg();
- fChkClamym();
- // model.setFocus("ipt_toterm");
- ]]>
- </script>
- </input>
- <select1 id="rdo_termflag" ref="/root/send/termflag" class="radio_search" appearance="full" cols="3" rows="1" overflow="visible" style="left:0px; top:15px; width:208px; height:17px; border-style:none; ">
- <choices>
- <item>
- <label>심사차수</label>
- <value>1</value>
- </item>
- <item>
- <label>청구년월</label>
- <value>2</value>
- </item>
- <item>
- <label>통보일자</label>
- <value>3</value>
- </item>
- </choices>
- <script type="javascript" ev:event="xforms-select">
- <![CDATA[
- if (rdo_termflag.value == 1) {
- ipt_fromterm.attribute("maxlength") = 8;
- ipt_toterm.attribute("maxlength") = 8;
- ipt_fromterm.attribute("format") = "";
- ipt_toterm.attribute("format") = "";
- ipt_fromterm.attribute("inputtype") = "";
- ipt_toterm.attribute("inputtype") = "";
- model.setValue("/root/send/fromterm", "");
- model.setValue("/root/send/toterm", "");
-
- cmb_clamdgfrom.value = "";
- cmb_clamdgto.value = "";
- cmb_clamdgfrom.disabled = true;
- cmb_clamdgto.disabled = true;
- }
- else if (rdo_termflag.value == 2) {
- ipt_fromterm.attribute("format") = "yyyy-mm";
- ipt_toterm.attribute("format") = "yyyy-mm";
- ipt_fromterm.attribute("inputtype") = "date";
- ipt_toterm.attribute("inputtype") = "date";
- model.setValue("/root/send/fromterm", getCurrentDate().substr(0,6));
- model.setValue("/root/send/toterm", getCurrentDate().substr(0,6));
-
- if (ipt_fromterm.value.length >= 7) {
- // 사용자에게 에러 메시지를 보여주고 'YYYYMM'형식으로 변환시킨다.
- messageBox("진료년월을 'YYYYMM'형식으로 입력해 주십시오.", "C009");
- ipt_fromterm.value = ipt_fromterm.value.substr(0,6);
- ipt_toterm.value = ipt_toterm.value.substr(0,6);
- }
- cmb_clamdgfrom.disabled = false;
- cmb_clamdgto.disabled = false;
- cmb_clamdgfrom.select(0);
- cmb_clamdgto.select(0);
- }
- else if (rdo_termflag.value == 3) {
- ipt_fromterm.attribute("format") = "yyyy-mm-dd";
- ipt_toterm.attribute("format") = "yyyy-mm-dd";
- ipt_fromterm.attribute("inputtype") = "date";
- ipt_toterm.attribute("inputtype") = "date";
- model.setValue("/root/send/fromterm", getCurrentDate());
- model.setValue("/root/send/toterm", getCurrentDate());
-
- cmb_clamdgfrom.value = "";
- cmb_clamdgto.value = "";
- cmb_clamdgfrom.disabled = true;
- cmb_clamdgto.disabled = true;
- }
-
- model.setFocus("ipt_fromterm");
- model.refresh();
- ]]>
- </script>
- </select1>
- <select1 id="cmb_ordfildcd" ref="/root/send/ordfildcd" class="combo_search" appearance="minimal" style="left:785px; top:5px; width:95px; height:19px; ">
- <choices>
- <itemset nodeset="/root/init/P0425list/P0425">
- <label ref="cdnm"/>
- <value ref="cdid"/>
- </itemset>
- </choices>
- </select1>
- <input id="ipt_acptno" ref="/root/send/acptno" class="input_search" visibility="hidden" style="left:380px; top:5px; width:75px; height:19px; ">
- <script type="javascript" ev:event="onkeyup">
- <![CDATA[
- inputEnterKey("button108", "DOMActivate");
- ]]>
- </script>
- </input>
- <caption id="caption34" class="search_name" visibility="hidden" style="left:290px; top:5px; width:90px; height:17px; ">접수번호 :</caption>
- <select1 id="rdo_chosflag" ref="/root/send/chosflag" class="radio_search" appearance="full" cols="3" rows="1" overflow="visible" style="left:980px; top:18px; width:135px; height:17px; border-style:none; ">
- <choices>
- <item>
- <label>전체</label>
- <value>A</value>
- </item>
- <item>
- <label>입원</label>
- <value>I</value>
- </item>
- <item>
- <label>외래</label>
- <value>O</value>
- </item>
- </choices>
- </select1>
- <caption id="caption68" class="search_name" style="left:890px; top:18px; width:90px; height:17px; ">내원유형 :</caption>
- <caption id="caption71" class="search_name" visibility="hidden" style="left:290px; top:28px; width:93px; height:17px; ">청구번호 :</caption>
- <select1 id="cmb_clamno" ref="/root/send/clamno" class="combo_search" visibility="hidden" appearance="minimal" style="left:380px; top:27px; width:75px; height:19px; ">
- <choices>
- <itemset nodeset="/root/hidden/list01/list_clamno/claminfo">
- <label ref="clamno"/>
- <value ref="clamno"/>
- </itemset>
- </choices>
- </select1>
- <line id="line13" class="line_4" style="x1:1123px; y1:12px; x2:1123px; y2:38px; border-color:#ffe4bb; border-left-style:solid; "/>
- <button id="btn_search" class="btn1_letter2" style="left:1133px; top:14px; width:56px; height:22px; ">
- <caption>조회</caption>
- <script type="javascript" ev:event="DOMActivate">
- <![CDATA[
- Search();
- ]]>
- </script>
- <toggle case="case1" ev:event="onclick"/>
- </button>
- <caption id="caption31" style="left:351px; top:16px; width:15px; height:15px; ">~</caption>
- <input id="ipt_toterm" ref="/root/send/toterm" class="input_search" inputtype="date" style="left:365px; top:15px; width:95px; height:19px; ">
- <script type="javascript" ev:event="DOMFocusOut">
- <![CDATA[
- //model.setFocus("rdo_numflag");
- //model.refresh();
- pidfGetClamdg();
- fChkClamym();
- ]]>
- </script>
- </input>
- <select1 id="rdo_numflag" ref="/root/send/numflag" class="radio_search" appearance="full" cols="1" rows="2" overflow="visible" style="left:525px; top:9px; width:70px; height:32px; 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-select">
- <![CDATA[
- // if (rdo_numflag.value == 2) {
- // model.setFocus("ipt_srchnum");
- // }
- // else {
- // model.setFocus("ipt_srchnum");
- // }
- model.setFocus("ipt_srchnum");
- model.setFocus("ipt_srchnum");
- ]]>
- </script>
- </select1>
- <input id="ipt_srchnum" ref="/root/send/srchnum" class="input_search" navindex="4" style="left:600px; top:16px; width:90px; height:19px; ">
- <script type="javascript" ev:event="onkeypress">
- <![CDATA[
- // 수정이력/2008.11.26/강종태/ 엔터 입력시 그리드 처음행을 기준으로 모두 펼침
- if (event.keyCode == "13") { // Enter 입력 시에
- setInputNodeCurText(); // 현재 인풋값 노드 반영
- Search();
- }
- ]]>
- </script>
- </input>
- <select1 id="cmb_clamdgto" ref="/root/send/clamdgto" class="combo_search" appearance="minimal" style="left:462px; top:15px; width:55px; height:19px; ">
- <choices>
- <itemset nodeset="/root/init/clamdgto/clamdglist">
- <label ref="clamdgnm"/>
- <value ref="clamdgcd"/>
- </itemset>
- </choices>
- <script type="javascript" ev:event="xforms-value-changed">
- <![CDATA[
- model.setValue("/root/send/clamdgfrom", model.getValue("/root/send/clamdgto"));
- model.refresh();
- ]]>
- </script>
- </select1>
- <select1 id="cmb_clamdgfrom" ref="/root/send/clamdgfrom" class="combo_search" appearance="minimal" style="left:294px; top:15px; width:55px; height:19px; ">
- <choices>
- <itemset nodeset="/root/init/clamdgfrom/clamdglist">
- <label ref="clamdgnm"/>
- <value ref="clamdgcd"/>
- </itemset>
- </choices>
- <script type="javascript" ev:event="xforms-value-changed">
- <![CDATA[
- model.setValue("/root/send/clamdgto", model.getValue("/root/send/clamdgfrom"));
- model.refresh();
- ]]>
- </script>
- </select1>
- <select1 id="cmb_clamflag" ref="/root/send/clamflag" class="combo_search" appearance="minimal" style="left:785px; top:30px; width:95px; height:19px; ">
- <choices>
- <itemset nodeset="/root/init/P0155list/P0155">
- <label ref="cdnm"/>
- <value ref="cdid"/>
- </itemset>
- </choices>
- </select1>
- <caption id="caption5" class="search_name" style="left:695px; top:30px; width:86px; height:17px; ">청구구분 :</caption>
- </group>
- <switch id="switch1" class="sw_box" style="left:295px; top:620px; width:899px; height:120px; ">
- <case id="603" selected="true">
- <datagrid id="grd_f603" nodeset="/root/main/list03/gridpiehf603" caption="줄번호^항^조정사유^I,II항^수가코드^코드^처방명칭^단가^일투^총투^1회투약인정량^조정금액^약제상한차액조정금액^약제상한가^심사불능세부사유코드^관련근거^비고^(judgdg)^(clamno)^(acptno)^(docuseqno)" colsep="^" colwidth="51, 34, 61, 37, 84, 69, 202, 70, 41, 42, 100, 67, 130, 100, 130, 69, 80, 100, 100, 100, 100" dataheight="23" ellipsis="true" explorerbar="sortshowmove" focuscolor="#b9e5fb" mergecellsfixedrows="bycolrec" rowheader="seq" rowheight="35" rowsep="|" tooltip="true" style="left:0px; top:5px; width:894px; height:110px; ">
- <col ref="lnno" style="text-align:center; "/>
- <col ref="item" style="text-align:center; "/>
- <col ref="adjtresn" style="text-align:center; "/>
- <col ref="matractflag" style="text-align:center; "/>
- <col ref="snglcalcscorcd" style="text-align:center; "/>
- <col ref="code" style="text-align:center; "/>
- <col ref="ordnm" style="text-align:center; "/>
- <col ref="unitcost" format="(-)#,###" style="text-align:right; "/>
- <col ref="dayqtyrt" style="text-align:right; "/>
- <col ref="totqtyrt" style="text-align:right; "/>
- <col ref="dsgrcogqty" style="text-align:right; "/>
- <col ref="adjtamt" format="(-)#,###" style="text-align:right; "/>
- <col ref="druglimitdiffamtadjtamt" format="(-)#,###" style="text-align:right; "/>
- <col ref="limitdiffamt" format="(-)#,###" style="text-align:right; "/>
- <col ref="jidetlresncd" style="text-align:center; "/>
- <col ref="relbase" style="text-align:center; "/>
- <col ref="rem" type="inputbutton" style="text-align:left; "/>
- <script type="javascript" ev:event="onbuttonclick">
- <![CDATA[
- model.setValue("/root/main/list04/rem", grd_f603.valueMatrix(grd_f603.row,grd_f603.col));
- modal("SPPIE00200", "", "400", "400" ,"", "/root/main/list04/rem", "/root/send/textno");
- ]]>
- </script>
- <col ref="judgdg" visibility="hidden"/>
- <col ref="clamno" visibility="hidden"/>
- <col ref="acptno" visibility="hidden"/>
- <col ref="docuseqno" visibility="hidden"/>
- <script type="javascript" ev:event="ondblclick">
- <![CDATA[
- // 2008-05-29 우선 의사삭감처방전달 기능 삭제(윤영옥's Confirm)
- // model.setValue("/root/source/judgdg", model.getValue("/root/main/list03/gridpiehf603/judgdg"));
- // model.setValue("/root/source/clamno", model.getValue("/root/main/list03/gridpiehf603/clamno"));
- // model.setValue("/root/source/acptno", model.getValue("/root/main/list03/gridpiehf603/acptno"));
- // model.setValue("/root/source/docuseqno", model.getValue("/root/main/list03/gridpiehf603/docuseqno"));
- // // 이의신청구분
- // model.setValue("/root/source/lnno", model.getValue("/root/main/list03/gridpiehf603/lnno"));
- // model.setValue("/root/source/adjtresn", model.getValue("/root/main/list03/gridpiehf603/adjtresn"));
- // model.setValue("/root/source/workflag", "medcarenoti");
- //
- // //팝업창
- // modal("SPPIR30320", 1, "", "", "SPPIR30320", "/root/source", "/root/send/send_adjtord");
- ]]>
- </script>
- <script type="javascript" ev:event="oncopy">
- <![CDATA[
- grid_oncopy();
- ]]>
- </script>
- </datagrid>
- </case>
- <case id="606">
- <datagrid id="grd_f606" nodeset="/root/main/list03/gridpiehf606" caption="처방전교부번호^줄번호^사유^코드^처방명칭^조정횟수^비고^비고" colsep="^" colwidth="115, 100, 100, 100, 100, 107, 273" dataheight="23" defaultrows="2" explorerbar="sortshowmove" focuscolor="#b9e5fb" mergecellsfixedrows="bycolrec" rowheader="seq" rowheight="35" rowsep="|" style="left:10px; top:5px; width:879px; height:110px; ">
- <col ref="mpsno" style="text-align:center; "/>
- <col ref="lnno"/>
- <col ref="resn"/>
- <col ref="edicd"/>
- <col ref="ordnm"/>
- <col ref="adjttims" style="text-align:right; "/>
- <col ref="rem" style="text-align:center; "/>
- <script type="javascript" ev:event="oncopy">
- <![CDATA[
- grid_oncopy();
- ]]>
- </script>
- </datagrid>
- </case>
- <case id="605">
- <datagrid id="grd_f605" nodeset="/root/main/list03/gridpiehf605" caption="줄번호^코드^처방명칭^수탁기관기호^위탁검사직접지급금^처리코드^비고^비고" colsep="^" colwidth="59, 101, 100, 100, 132, 84, 318" dataheight="23" defaultrows="2" explorerbar="sortshowmove" focuscolor="#b9e5fb" mergecellsfixedrows="bycolrec" rowheader="seq" rowheight="35" rowsep="|" style="left:10px; top:5px; width:879px; height:110px; ">
- <col ref="lnno"/>
- <col ref="prcpcd" style="text-align:left; "/>
- <col ref="prcpnm" style="text-align:left; "/>
- <col ref="trustcorpmark" style="text-align:center; "/>
- <col ref="trudirecpamt" style="text-align:right; "/>
- <col ref="tretcd" style="text-align:center; "/>
- <col ref="rem" style="text-align:left; "/>
- <script type="javascript" ev:event="oncopy">
- <![CDATA[
- grid_oncopy();
- ]]>
- </script>
- </datagrid>
- </case>
- </switch>
- <button id="btn_606" class="btn_sw" group="tab" style="left:425px; top:599px; width:134px; height:22px; ">
- <caption>F060.6(원외처방)</caption>
- <toggle case="606" ev:event="onclick"/>
- </button>
- <button id="btn_603" class="btn_sw" group="tab" selected="true" style="left:295px; top:599px; width:130px; height:22px; ">
- <caption>F060.3(삭감처방)</caption>
- <toggle case="603" ev:event="onclick"/>
- </button>
- <button id="btn_605" class="btn_sw" group="tab" style="left:559px; top:599px; width:127px; height:22px; ">
- <caption>F060.5(위탁검사)</caption>
- <toggle case="605" ev:event="onclick"/>
- </button>
- <button id="button108" class="btn2_letter13" visibility="hidden" style="left:390px; top:295px; width:163px; height:19px; ">
- <caption>[콤보박스]청구번호 내려받기</caption>
- <!-- - 2007.05.30 / 화면수정 / 청구년월을 획득하기위한 [Enter] 이벤트 핸들러 -->
- <script type="javascript" ev:event="DOMActivate">
- <![CDATA[
- // 가비지 데이터 삭제
- model.removenode("/root/hidden/list01/list_clamno");
- model.resetInstanceNode("/root/hidden/list01/list_clamno");
-
- if (ipt_acptno.value.length < 7) {
- messageBox("접수번호는 반드시 7자리를","C001");
- return false;
- }
- model.refresh();
-
- // 접수번호로 청구번호(ClamNo)정보를 조회한다.
- var acptno = model.getValue("/root/send/acptno");
-
- model.setValue("/root/send/send_clamno/acptno", acptno);
-
- submit("TRPIE01104");
- if (cmb_clamno.length == 1) {
- cmb_clamno.value = model.getValue("/root/hidden/list01/list_clamno/claminfo/clamno");
- cmb_ordfildcd.value = model.getValue("/root/hidden/list01/list_clamno/claminfo/ordfildcd");
- rdo_chosflag.value = model.getValue("/root/hidden/list01/list_clamno/claminfo/ioflag");
- Search();
- }
- else {
- model.setFocus("cmb_clamno");
- }
-
- ]]>
- </script>
- </button>
- <caption id="caption2" class="cell_1" style="left:857px; top:340px; width:85px; height:23px; vertical-align:middle; ">명일련 찾기</caption>
- <input id="ipt_docuseqno1" ref="/root/send/searchgridrow/docuseqno" class="input_default" style="left:943px; top:341px; width:111px; height:19px; ">
- <script type="javascript" ev:event="onkeyup">
- <![CDATA[
- // [ENTER] 키 입력하는 경우
- if (event.keyCode == "13") {
- setInputNodeCurText();
- var docuseqno = ipt_docuseqno1.value;
- var rows = grd_f602.rows;
- for (var i=1; i<rows; i++) {
- if (grd_f602.valueMatrix(i,grd_f602.colRef("docuseqno")) == docuseqno) {
- grd_f602.row = i; // 하이라이트 주기
- grd_f602.topRow = i; // 맨 윗줄로 옮김
-
- return false;
- }
- }
- }
- ]]>
- </script>
- </input>
- <button id="button14" class="btn2_letter6" visibility="hidden" style="left:857px; top:598px; width:86px; height:19px; ">
- <caption>심사화면보기</caption>
- </button>
- <button id="button26" class="btn2_letter2" style="left:1152px; top:59px; width:42px; height:19px; ">
- <caption>출력</caption>
- <script type="javascript" ev:event="DOMActivate">
- <![CDATA[
-
- model.removenode("/root/hidden/prnt1");
- model.makeNode("/root/hidden/prnt1");
-
- // 1. 출력 데이터 생성
- for (var i = 1; i < grd_f601.rows; i++) {
-
- model.makeValue("/root/hidden/prnt1/f601["+i+"]/judgdg", grd_f601.valueMatrix(i, grd_f601.colRef("judgdg"))); // 심사차수
- model.makeValue("/root/hidden/prnt1/f601["+i+"]/clamno", grd_f601.valueMatrix(i, grd_f601.colRef("clamno"))); // 청구번호
- model.makeValue("/root/hidden/prnt1/f601["+i+"]/notidd", grd_f601.valueMatrix(i, grd_f601.colRef("notidd"))); // 통보일자
- model.makeValue("/root/hidden/prnt1/f601["+i+"]/chosflag", grd_f601.labelMatrix(i, grd_f601.colRef("chosflag"))); // 내원
- model.makeValue("/root/hidden/prnt1/f601["+i+"]/ordfildcd", grd_f601.labelMatrix(i, grd_f601.colRef("ordfildcd"))); // 분야
- model.makeValue("/root/hidden/prnt1/f601["+i+"]/acptno", grd_f601.valueMatrix(i, grd_f601.colRef("acptno"))); // 접수번호
- model.makeValue("/root/hidden/prnt1/f601["+i+"]/setno", grd_f601.valueMatrix(i, grd_f601.colRef("setno"))); // 묶음번호
- model.makeValue("/root/hidden/prnt1/f601["+i+"]/jqtotordamtsum", model.getValue("/root/main/list01/gridpiehf601[" + i + "]/jqtotordamtsum")); // 청구급여비용총액
- model.makeValue("/root/hidden/prnt1/f601["+i+"]/jqsecuinstbamtsum", model.getValue("/root/main/list01/gridpiehf601[" + i + "]/jqsecuinstbamtsum")); // 청구액
- model.makeValue("/root/hidden/prnt1/f601["+i+"]/jrsltcnt", grd_f601.valueMatrix(i, grd_f601.colRef("jrsltcnt"))); // 심결건수
- model.makeValue("/root/hidden/prnt1/f601["+i+"]/jrjudgdeciamt", grd_f601.valueMatrix(i, grd_f601.colRef("jrjudgdeciamt"))); // 심사결정액
- model.makeValue("/root/hidden/prnt1/f601["+i+"]/adjtamtsum", grd_f601.valueMatrix(i, grd_f601.colRef("adjtamtsum"))); // 조정금액합계
- model.makeValue("/root/hidden/prnt1/f601["+i+"]/cutrate", grd_f601.valueMatrix(i, grd_f601.colRef("cutrate"))); // 삭감율
- model.makeValue("/root/hidden/prnt1/f601["+i+"]/ordym", grd_f601.valueMatrix(i, grd_f601.colRef("ordym"))); // 진료월
- model.makeValue("/root/hidden/prnt1/f601["+i+"]/acptdd", grd_f601.valueMatrix(i, grd_f601.colRef("acptdd"))); // 접수일자
-
- }
-
- // 2. 보고서 호출
- exeReportPreview("RPPIE01110", "XMLSTR", "","", "false","","","","","false");
-
- ]]>
- </script>
- </button>
- <button id="button4" class="btn2_letter2" style="left:1152px; top:343px; width:42px; height:19px; ">
- <caption>출력</caption>
- <script type="javascript" ev:event="DOMActivate">
- <![CDATA[
- exeReportPreview("RPPIE01120", "XMLSTR", "","", "false","","","","","false");
- ]]>
- </script>
- </button>
- <button id="button5" class="btn2_letter4" style="left:1085px; top:343px; width:64px; height:19px; ">
- <caption>엑셀저장</caption>
- <script type="javascript" ev:event="DOMActivate">
- <![CDATA[
- var fileName = window.fileDialog("save", ",", false, "F060_2", "xls", "Excel Files(*.xls)|*.xls|All Files (*.*)|*.*");
-
- if (fileName != "") {
- grd_f602.saveExcel(fileName, "SheetName", true, true, "", "", "");
- }
- ]]>
- </script>
- </button>
- <button id="button6" class="btn2_letter2" style="left:1152px; top:599px; width:42px; height:19px; ">
- <caption>출력</caption>
- <script type="javascript" ev:event="DOMActivate">
- <![CDATA[
- exeReportPreview("RPPIE01130", "XMLSTR", "","", "false","","","","","false");
- ]]>
- </script>
- </button>
- <button id="button7" class="btn2_letter4" style="left:1085px; top:599px; width:64px; height:19px; ">
- <caption>엑셀저장</caption>
- <script type="javascript" ev:event="DOMActivate">
- <![CDATA[
- var fileName = window.fileDialog("save", ",", false, "F060_3", "xls", "Excel Files(*.xls)|*.xls|All Files (*.*)|*.*");
-
- if (fileName != "") {
- grd_f603.saveExcel(fileName, "SheetName", true, true, "", "", "");
- }
- ]]>
- </script>
- </button>
- <button id="button8" class="btn2_letter3" style="left:921px; top:59px; width:53px; height:19px; ">
- <caption>셀카피</caption>
- <script type="javascript" ev:event="onclick">
- <![CDATA[
- grd_f601.attribute("selectionmode") = "free";
- grd_f602.attribute("selectionmode") = "free";
- grd_f603.attribute("selectionmode") = "free";
- grd_f606.attribute("selectionmode") = "free";
- grd_f605.attribute("selectionmode") = "free";
- ]]>
- </script>
- </button>
- <button id="button9" class="btn2_letter3" style="left:975px; top:59px; width:53px; height:19px; ">
- <caption>열카피</caption>
- <script type="javascript" ev:event="onclick">
- <![CDATA[
- grd_f601.attribute("selectionmode") = "bycol";
- grd_f602.attribute("selectionmode") = "bycol";
- grd_f603.attribute("selectionmode") = "bycol";
- grd_f606.attribute("selectionmode") = "bycol";
- grd_f605.attribute("selectionmode") = "bycol";
- ]]>
- </script>
- </button>
- <button id="button10" class="btn2_letter3" style="left:1030px; top:59px; width:53px; height:19px; ">
- <caption>행카피</caption>
- <script type="javascript" ev:event="onclick">
- <![CDATA[
- grd_f601.attribute("selectionmode") = "byrow";
- grd_f602.attribute("selectionmode") = "byrow";
- grd_f603.attribute("selectionmode") = "byrow";
- grd_f606.attribute("selectionmode") = "byrow";
- grd_f605.attribute("selectionmode") = "byrow";
- ]]>
- </script>
- </button>
- <button id="button12" class="btn2_letter4" style="left:1085px; top:59px; width:64px; height:19px; ">
- <caption>엑셀저장</caption>
- <script type="javascript" ev:event="DOMActivate">
- <![CDATA[
- var fileName = window.fileDialog("save", ",", false, "F060_1", "xls", "Excel Files(*.xls)|*.xls|All Files (*.*)|*.*");
-
- if (fileName != "") {
- grd_f601.saveExcel(fileName, "SheetName", true, true, "", "", "");
- }
- ]]>
- </script>
- </button>
- <line id="line2" class="line_3" style="x1:857px; y1:366px; x2:1054px; y2:366px; "/>
- <line id="line3" class="line_3" style="x1:857px; y1:339px; x2:1054px; y2:339px; "/>
- <caption id="caption4" class="cell_1" style="left:650px; top:340px; width:85px; height:23px; vertical-align:middle; ">수진자 찾기</caption>
- <input id="ipt_patnm1" ref="/root/send/searchgridrow/patnm" class="input_default" style="left:736px; top:341px; width:111px; height:19px; ">
- <script type="javascript" ev:event="onkeyup">
- <![CDATA[
- // [ENTER] 키 입력하는 경우
- if (event.keyCode == "13") {
- setInputNodeCurText();
- var patnm = ipt_patnm1.value;
- var rows = grd_f602.rows;
- for (var i=1; i<rows; i++) {
- if (grd_f602.valueMatrix(i,grd_f602.colRef("patnm")) == patnm) {
- grd_f602.row = i; // 하이라이트 주기
- grd_f602.topRow = i; // 맨 윗줄로 옮김
-
- return false;
- }
- }
- }
- ]]>
- </script>
- </input>
- <line id="line5" class="line_3" style="x1:650px; y1:344px; x2:847px; y2:344px; "/>
- <button id="button11" class="btn2_letter2" style="left:878px; top:59px; width:42px; height:19px; ">
- <caption>출력</caption>
- <script type="javascript" ev:event="DOMActivate">
- <![CDATA[
- copyNodeListType("/root/temp/data2" , "/root/main/list02/gridpiehf602[medcarekindflag = '" + "6" + "']", "replace" , model , model);
-
- exeReportPreview("RPPIE01100", "XMLSTR", "","", "false","","","","","false");
- ]]>
- </script>
- </button>
- <button id="button16" class="btn_sw" group="tab" style="left:170px; top:56px; width:85px; height:22px; ">
- <caption>참조란</caption>
- <toggle case="case3" ev:event="onclick"/>
- </button>
- </group>
- </xhtml:body>
- </xhtml:html>
|