123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839 |
- <?xml version="1.0" encoding="utf-8" standalone="no"?>
- <FDL version="1.5">
- <TypeDefinition url="..\..\..\default_typedef.xml"/>
- <Form id="SMPMC02401" position="absolute 0 0 1196 784" titletext="응급대불관리" onload="SMPMC02401_onload">
- <Layouts>
- <Layout>
- <Static id="caption11" text="인적사항" class="tit_2" position="absolute 0 33 74 50" anchor="left top"/>
- <Shape id="line1" class="line_10" position="absolute 0 130 1194 134" anchor="left top right"/>
- <Shape id="line5" class="line_10" position="absolute 0 50 1194 54" anchor="left top right"/>
- <Edit id="ipt_pid" taborder="1" onkeydown="group3_ipt_pid_onkeydown" class="input_essential" position="absolute 109 56 229 75" onkeypress="group3_ipt_pid_onkeypress" anchor="left top" autoselect="true"/>
- <Edit id="ipt_rrgstno1" taborder="2" onkeydown="group3_ipt_rrgstno1_onkeydown" class="input_essential" position="absolute 370 56 450 75" onkeypress="group3_ipt_rrgstno1_onkeypress" autoskip="false" enable="false" anchor="left top"/>
- <Button id="btn_ptbsrrgstno" taborder="3" onclick="group3_btn_ptbsrrgstno_onclick" class="icon_search" position="absolute 537 57 553 73" anchor="left top"/>
- <Edit id="opt_address" taborder="4" readonly="true" class="output_fix" position="absolute 834 56 1195 75" style="background:URL('theme://images/bg_edit_R.png') stretch 5,5;" enable="false" anchor="left top right"/>
- <Edit id="opt_zipcd1" taborder="5" readonly="true" class="output_fix" position="absolute 738 56 783 75" style="background:URL('theme://images/bg_edit_R.png') stretch 5,5;" enable="false" anchor="left top"/>
- <Edit id="opt_zipcd2" taborder="6" readonly="true" class="output_fix" position="absolute 786 56 831 75" style="background:URL('theme://images/bg_edit_R.png') stretch 5,5;" enable="false" anchor="left top"/>
- <Button id="btn_ptbshngnm" taborder="7" onclick="group3_btn_ptbshngnm_onclick" class="icon_search" position="absolute 233 83 249 99" anchor="left top"/>
- <Edit id="opt_hometel" taborder="8" readonly="true" class="output_fix" position="absolute 370 82 490 101" style="background:URL('theme://images/bg_edit_R.png') stretch 5,5;" enable="false" anchor="left top"/>
- <Edit id="opt_detladdr" taborder="9" readonly="true" class="output_fix" position="absolute 738 82 1195 101" style="background:URL('theme://images/bg_edit_R.png') stretch 5,5;" enable="false" anchor="left top right"/>
- <Static id="caption33" text="성명[한글]" class="cell_1" position="absolute 0 80 106 103" style="padding:0 0 0 3;align:left middle;" anchor="left top"/>
- <Static id="caption13" text="하위주소" class="cell_1" position="absolute 645 80 735 103" style="padding:0 0 0 3;align:left middle;" anchor="left top"/>
- <Edit id="opt_age" taborder="10" readonly="true" class="output_fix" position="absolute 600 56 641 75" style="background:URL('theme://images/bg_edit_R.png') stretch 5,5;" enable="false" anchor="left top"/>
- <Static id="caption14" text="연락처/휴대폰" class="cell_1" position="absolute 252 80 367 103" style="padding:0 0 0 3;align:left middle;" anchor="left top"/>
- <Edit id="opt_mpphontel" taborder="11" readonly="true" class="output_fix" position="absolute 494 82 614 101" style="background:URL('theme://images/bg_edit_R.png') stretch 5,5;" enable="false" anchor="left top"/>
- <Edit id="ipt_hngnm" taborder="12" onkeydown="group3_ipt_hngnm_onkeydown" class="input_essential" position="absolute 109 82 229 101" onkeypress="group3_ipt_hngnm_onkeypress" enable="false" anchor="left top"/>
- <Shape id="line2" class="line_2" position="absolute 0 78 1194 81" anchor="left top right"/>
- <Static id="caption8" text="주소" class="cell_1" position="absolute 645 54 735 77" style="padding:0 0 0 3;align:left middle;" anchor="left top"/>
- <Shape id="line8" class="line_3" position="absolute 0 104 1194 107" anchor="left top right"/>
- <Static id="caption18" text="주민번호/성별/나이" class="cell_1" position="absolute 252 54 367 77" style="padding:0 0 0 3;align:left middle;" anchor="left top"/>
- <Static id="caption9" text="환자번호" class="cell_1" position="absolute 0 54 106 77" style="padding:0 0 0 3;align:left middle;" anchor="left top"/>
- <Edit id="opt_sex" taborder="13" readonly="true" class="output_fix" position="absolute 556 56 597 75" style="background:URL('theme://images/bg_edit_R.png') stretch 5,5;" enable="false" anchor="left top"/>
- <Button id="btn_ojpid" taborder="14" onclick="group3_btn_ojpid_onclick" class="icon_search" position="absolute 233 57 249 73" anchor="left top"/>
- <Edit id="opt_rrgstno2" taborder="15" readonly="true" class="output_fix" position="absolute 454 56 534 75" style="background:URL('theme://images/bg_edit_R.png') stretch 5,5;" enable="false" anchor="left top"/>
- <Static id="caption1" text="응급관련 수진이력정보(응급실 수진 및 응급실 경유 입원)" class="tit_2" position="absolute 0 113 365 131" anchor="left top"/>
- <Static id="caption2" text="대불기간/대불금 처리" class="tit_3" position="absolute 0 254 150 273" anchor="left top"/>
- <Static id="caption3" text="처방내역" class="tit_2" position="absolute 0 320 90 338" anchor="left top"/>
- <Button id="button4" taborder="16" text="리스트" onclick="group3_button4_onclick" class="btn2" position="absolute 889 314 948 336" anchor="top right"/>
- <Button id="button5" taborder="17" text="명세서출력" onclick="group3_button5_onclick" class="btn6" position="absolute 950 314 1041 336" anchor="top right"/>
- <Button id="button6" taborder="18" text="샘생성" onclick="group3_button6_onclick" class="btn2" position="absolute 1043 314 1102 336" anchor="top right"/>
- <Button id="button7" taborder="19" text="통합기록조회" onclick="group3_button7_onclick" class="btn2" position="absolute 1104 314 1194 336" anchor="top right"/>
- <Static id="caption10" text="총진료비" class="cell_2" position="absolute 849 731 909 751" anchor="top right"/>
- <Static id="caption12" text="본인부담액" class="cell_2" position="absolute 1024 731 1099 751" style="align:left ;" anchor="top right"/>
- <Shape id="line3" class="line_10" position="absolute 0 337 1194 341" anchor="left top right"/>
- <Edit id="opt_totordamt" taborder="20" readonly="true" class="output_fix" position="absolute 912 731 1007 750" style="align:right ;" anchor="top right"/>
- <Edit id="opt_ownbamt" taborder="21" readonly="true" class="output_fix" position="absolute 1102 731 1192 750" style="align:right ;" anchor="top right"/>
- <Grid id="grd_iscl" class="datagrid2" taborder="22" binddataset="ds_main_h_iscl_iscl" useinputpanel="false" onrbuttondown="group3_grd_iscl_onrbuttondown" oncellclick="group3_grd_iscl_oncellclick" position="absolute 0 341 1194 726" anchor="all">
- <Formats>
- <Format id="default">
- <Columns>
- <Column size="25"/>
- <Column size="0"/>
- <Column size="0"/>
- <Column size="0"/>
- <Column size="0"/>
- <Column size="27"/>
- <Column size="25"/>
- <Column size="25"/>
- <Column size="0"/>
- <Column size="0"/>
- <Column size="0"/>
- <Column size="25"/>
- <Column size="0"/>
- <Column size="22"/>
- <Column size="84"/>
- <Column size="80"/>
- <Column size="65"/>
- <Column size="0"/>
- <Column size="35"/>
- <Column size="32"/>
- <Column size="23"/>
- <Column size="197"/>
- <Column size="40"/>
- <Column size="70"/>
- <Column size="70"/>
- <Column size="32"/>
- <Column size="19"/>
- <Column size="50"/>
- <Column size="39"/>
- <Column size="30"/>
- <Column size="45"/>
- <Column size="30"/>
- <Column size="66"/>
- <Column size="26"/>
- <Column size="66"/>
- <Column size="66"/>
- <Column size="75"/>
- <Column size="66"/>
- <Column size="100"/>
- <Column size="100"/>
- <Column size="100"/>
- <Column size="100"/>
- <Column size="60"/>
- <Column size="115"/>
- <Column size="100"/>
- <Column size="0"/>
- <Column size="62"/>
- <Column size="62"/>
- <Column size="100"/>
- <Column size="62"/>
- <Column size="119"/>
- <Column size="169"/>
- <Column size="40"/>
- <Column size="100"/>
- <Column size="65"/>
- <Column size="32"/>
- <Column size="31"/>
- <Column size="47"/>
- <Column size="47"/>
- <Column size="82"/>
- <Column size="0"/>
- <Column size="0"/>
- <Column size="0"/>
- <Column size="0"/>
- <Column size="0"/>
- <Column size="0"/>
- <Column size="0"/>
- <Column size="0"/>
- <Column size="0"/>
- <Column size="0"/>
- <Column size="0"/>
- <Column size="0"/>
- <Column size="0"/>
- <Column size="0"/>
- <Column size="0"/>
- <Column size="0"/>
- <Column size="0"/>
- <Column size="0"/>
- <Column size="100"/>
- <Column size="100"/>
- <Column size="100"/>
- <Column size="100"/>
- <Column size="100"/>
- <Column size="100"/>
- <Column size="100"/>
- <Column size="0"/>
- <Column size="100"/>
- <Column size="100"/>
- <Column size="100"/>
- <Column size="100"/>
- <Column size="100"/>
- <Column size="100"/>
- <Column size="88"/>
- <Column size="30"/>
- <Column size="81"/>
- <Column size="82"/>
- <Column size="115"/>
- <Column size="0"/>
- <Column size="0"/>
- <Column size="0"/>
- <Column size="0"/>
- <Column size="60"/>
- <Column size="60"/>
- <Column size="60"/>
- <Column size="60"/>
- <Column size="60"/>
- <Column size="60"/>
- <Column size="0"/>
- <Column size="0"/>
- <Column size="0"/>
- <Column size="0"/>
- <Column size="0"/>
- <Column size="0"/>
- <Column size="0"/>
- <Column size="0"/>
- <Column size="0"/>
- <Column size="0"/>
- <Column size="0"/>
- <Column size="0"/>
- <Column size="0"/>
- <Column size="0"/>
- <Column size="0"/>
- <Column size="0"/>
- <Column size="0"/>
- <Column size="0"/>
- <Column size="0"/>
- <Column size="0"/>
- <Column size="0"/>
- <Column size="0"/>
- <Column size="0"/>
- <Column size="0"/>
- </Columns>
- <Rows>
- <Row size="33" band="head"/>
- <Row size="25"/>
- <Row size="27" band="summ"/>
- </Rows>
- <Band id="head">
- <Cell/>
- <Cell col="1" text="선 별"/>
- <Cell col="2" text="문 제"/>
- <Cell col="3" text="선 택"/>
- <Cell col="4" text="S"/>
- <Cell col="5" text="IO"/>
- <Cell col="6" text="항"/>
- <Cell col="7" text="목"/>
- <Cell col="8" text="진료일자"/>
- <Cell col="9" text="execdd"/>
- <Cell col="10" text="시행일시"/>
- <Cell col="11" text="시 행"/>
- <Cell col="12" text="항목"/>
- <Cell col="13" text="G"/>
- <Cell col="14" text="그룹코드"/>
- <Cell col="15" text="수가코드"/>
- <Cell col="16" text="EDI코드"/>
- <Cell col="17" text="산정 분류"/>
- <Cell col="18" text="산정 의미"/>
- <Cell col="19" text="산정 코드"/>
- <Cell col="20" text="@"/>
- <Cell col="21" text="한글명"/>
- <Cell col="22" text="급"/>
- <Cell col="23" text="보험"/>
- <Cell col="24" text="보조"/>
- <Cell col="25" text="재료 행위"/>
- <Cell col="26" text="퇴"/>
- <Cell col="27" text="단가"/>
- <Cell col="28" text="1회량"/>
- <Cell col="29" text="횟수"/>
- <Cell col="30" text="1일량 (일투)"/>
- <Cell col="31" text="일수 총투"/>
- <Cell col="32" text="금액"/>
- <Cell col="33" text="선 택"/>
- <Cell col="34" text="종별가산 단가"/>
- <Cell col="35" text="선택가산 단가"/>
- <Cell col="36" text="가산단가"/>
- <Cell col="37" text="총진료비"/>
- <Cell col="38" text="본인부담금"/>
- <Cell col="39" text="종별가산 SUM"/>
- <Cell col="40" text="선택가산 SUM"/>
- <Cell col="41" text="가산 SUM"/>
- <Cell col="42" text="처방 상태"/>
- <Cell col="43" text="처방일시"/>
- <Cell col="44" text="처방번호"/>
- <Cell col="45" text="처방과코드"/>
- <Cell col="46" text="처방과"/>
- <Cell col="47" text="입력자"/>
- <Cell col="48" text="실시자"/>
- <Cell col="49" text="최종심사자"/>
- <Cell col="50" text="최종심사일시"/>
- <Cell col="51" text="처방명"/>
- <Cell col="52" text="수정 사유"/>
- <Cell col="53" text="치식"/>
- <Cell col="54" text="확인 코드"/>
- <Cell col="55" text="CP 여부"/>
- <Cell col="56" text="PRN"/>
- <Cell col="57" text="포터블"/>
- <Cell col="58" text="기왕증 (진료)"/>
- <Cell col="59" text="마취시간"/>
- <Cell col="60" text="수정사유명칭"/>
- <Cell col="61" text="edicdflag"/>
- <Cell col="62" text="ediunitcost"/>
- <Cell col="63" text="적용일자"/>
- <Cell col="64" text="pid"/>
- <Cell col="65" text="indd"/>
- <Cell col="66" text="cretno"/>
- <Cell col="67" text="calcseqno"/>
- <Cell col="68" text="calcscorseqno"/>
- <Cell col="69" text="mskind"/>
- <Cell col="70" text="oldmskind"/>
- <Cell col="71" text="그룹 항목"/>
- <Cell col="72" text="처방계산구분"/>
- <Cell col="73" text="그룹싱글여부"/>
- <Cell col="74" text="처방일시"/>
- <Cell col="75" text="처방순번"/>
- <Cell col="76" text="실시순번"/>
- <Cell col="77" text="수가점수"/>
- <Cell col="78" text="가산금액"/>
- <Cell col="79" text="가산점수"/>
- <Cell col="80" text="퇴장방지금액"/>
- <Cell col="81" text="퇴장방지여부"/>
- <Cell col="82" text="처방수량"/>
- <Cell col="83" text="처방횟수"/>
- <Cell col="84" text="처방일수"/>
- <Cell col="85" text="처방구분(I,O,E)"/>
- <Cell col="86" text="급여총액"/>
- <Cell col="87" text="급여보험자부담금"/>
- <Cell col="88" text="급여본인부담금"/>
- <Cell col="89" text="급여본인부담율"/>
- <Cell col="90" text="점당단가"/>
- <Cell col="91" text="전액본인"/>
- <Cell col="92" text="비급여금액"/>
- <Cell col="93" text="NC"/>
- <Cell col="94" text="저함량배수 사유코드"/>
- <Cell col="95" text="용법_검체"/>
- <Cell col="96" text="예약일시"/>
- <Cell col="97" text="그룹 순번"/>
- <Cell col="98" text="특진"/>
- <Cell col="99" text="보험유형"/>
- <Cell col="100" text="보조유형"/>
- <Cell col="101" text="급비"/>
- <Cell col="102" text="처방분류1"/>
- <Cell col="103" text="처방분류2"/>
- <Cell col="104" text="처방분류3"/>
- <Cell col="105" text="수정여부"/>
- <Cell col="106" text="aftercretno"/>
- <Cell col="107" text="payflagyn"/>
- <Cell col="108" text="estmyn"/>
- <Cell col="109" text="spcordyn"/>
- <Cell col="110" text="nochargeyn"/>
- <Cell col="111" text="ordinptflag"/>
- <Cell col="112" text="ordchangeyn"/>
- <Cell col="113" text="probordchangeyn"/>
- <Cell col="114" text="chkflag"/>
- <Cell col="115" text="bfjudgadjtresncd"/>
- <Cell col="116" text="execchangeyn"/>
- <Cell col="117" text="opprcpyn"/>
- <Cell col="118" text="execdeptprcpyn"/>
- <Cell col="119" text="specaddflag"/>
- <Cell col="120" text="cretyn"/>
- <Cell col="121" text="ordaddinptflag"/>
- <Cell col="122" text="opansflagcd"/>
- <Cell col="123" text="nigtprcpflag"/>
- <Cell col="124" text="erprcpflag"/>
- <Cell col="125" text="opansyn"/>
- <Cell col="126" text="angioyn"/>
- <Cell col="127" text="gsorddryn"/>
- <Cell col="128" text="angioflagcd"/>
- <Cell col="129" text="gsorddr"/>
- <Cell col="130" text="hosinhosoutflag"/>
- </Band>
- <Band id="body">
- <Cell celltype="head"/>
- <Cell col="1" text="bind:spcljudgyn"/>
- <Cell col="2" text="bind:probordyn"/>
- <Cell col="3" text="bind:unitspecyn"/>
- <Cell col="4" text="bind:seq"/>
- <Cell col="5" style="align:left middle;" text="bind:ordtype"/>
- <Cell col="6" style="align:left middle;" text="bind:ediitem1"/>
- <Cell col="7" style="align:left middle;" text="bind:ediitem2"/>
- <Cell col="8" displaytype="date" text="bind:orddd" mask="yyyy-MM-dd" calendardisplaynulltype="nulltext"/>
- <Cell col="9" displaytype="date" text="bind:execdd" mask="yyyy-MM-dd" calendardisplaynulltype="nulltext"/>
- <Cell col="10" displaytype="date" text="bind:newexecdd" mask="yyyy-MM-dd HH:mm" calendardisplaynulltype="nulltext"/>
- <Cell col="11" style="align:center middle;" text="bind:execstat"/>
- <Cell col="12" text="bind:snglcalcscorcls"/>
- <Cell col="13" style="align:left middle;" text="bind:grupflag"/>
- <Cell col="14" style="align:left middle;" text="bind:grupcalcscorcd"/>
- <Cell col="15" style="align:left middle;" text="bind:snglcalcscorcd"/>
- <Cell col="16" style="align:left middle;" text="bind:edicd"/>
- <Cell col="17" text="bind:estmcls"/>
- <Cell col="18" style="align:left middle;" text="bind:estmmncd" editlimit="5"/>
- <Cell col="19" style="align:left middle;" text="bind:estmcd"/>
- <Cell col="20" style="align:left middle;" text="bind:pay100"/>
- <Cell col="21" style="align:left middle;" text="bind:hngnm"/>
- <Cell col="22" displaytype="combo" edittype="combo" style="font:dotum,9,bold;" text="bind:payflag" combodataset="ds_init_payflag" combocodecol="value" combodatacol="label"/>
- <Cell col="23" displaytype="combo" edittype="combo" style="font:dotum,9,bold;" text="bind:insukind" combodataset="ds_init_insukind" combocodecol="cd" combodatacol="nm"/>
- <Cell col="24" displaytype="combo" edittype="combo" style="font:dotum,9,bold;" text="bind:suppkind" combodataset="dsft_init_suppkind" combocodecol="cd" combodatacol="nm"/>
- <Cell col="25" displaytype="combo" text="bind:matractflag" combodataset="ds_init_matractflag" combocodecol="value" combodatacol="label"/>
- <Cell col="26" style="align:center middle;" text="bind:dschdrugflag"/>
- <Cell col="27" displaytype="number" text="bind:appunitcost" mask="9,999"/>
- <Cell col="28" displaytype="number" edittype="masknumber" text="bind:calcqty" mask="9999.00"/>
- <Cell col="29" displaytype="number" edittype="masknumber" text="bind:calctims" mask="999"/>
- <Cell col="30" displaytype="number" text="bind:daydrugqty" mask="9,999.00"/>
- <Cell col="31" displaytype="number" text="bind:calcdays" mask="999"/>
- <Cell col="32" displaytype="number" text="bind:calcamt" mask="9,999"/>
- <Cell col="33" text="bind:unitspecyn"/>
- <Cell col="34" displaytype="number" text="bind:unithospaddamt" mask="9,999"/>
- <Cell col="35" displaytype="number" text="bind:unitspecamt" mask="9,999"/>
- <Cell col="36" displaytype="number" text="bind:unitaddamt" mask="9,999"/>
- <Cell col="37" displaytype="number" text="bind:totordamt" mask="9,999"/>
- <Cell col="38" displaytype="number" text="bind:ownbamt" mask="9,999"/>
- <Cell col="39" displaytype="number" text="bind:hospaddamt" mask="9,999"/>
- <Cell col="40" displaytype="number" text="bind:specamt" mask="9,999"/>
- <Cell col="41" displaytype="number" text="bind:estmamt" mask="9,999"/>
- <Cell col="42" style="align:center middle;" text="bind:execprcpstatcd"/>
- <Cell col="43" displaytype="date" text="bind:rgstdt" mask="yyyy-MM-dd hh:mm:ss" calendardisplaynulltype="none"/>
- <Cell col="44" displaytype="text" text="bind:prcpno"/>
- <Cell col="45" text="bind:orddeptcd"/>
- <Cell col="46" style="align:left middle;" text="bind:orddeptnm"/>
- <Cell col="47" style="align:left middle;" text="bind:fstrgstrid"/>
- <Cell col="48" style="align:left middle;" text="bind:execrid"/>
- <Cell col="49" style="align:left middle;" text="bind:lastupdtrid"/>
- <Cell col="50" displaytype="date" text="bind:lastupdtdt" mask="yyyy-MM-dd hh:mm:ss" calendardisplaynulltype="none"/>
- <Cell col="51" style="align:left middle;" text="bind:ordnm"/>
- <Cell col="52" style="align:left middle;" text="bind:judgadjtresncd"/>
- <Cell col="53" style="align:left middle;" text="bind:tootfact"/>
- <Cell col="54" style="align:left middle;" text="bind:cnfmcd"/>
- <Cell col="55" style="align:left middle;" text="bind:cpflag"/>
- <Cell col="56" style="align:left middle;" text="bind:prnprcpflag"/>
- <Cell col="57" style="align:left middle;" text="bind:portprcpflag"/>
- <Cell col="58" style="align:left middle;" text="bind:anamneflag"/>
- <Cell col="59" style="align:left middle;" text="bind:ansttm"/>
- <Cell col="60" text="bind:judgadjtresncdnm"/>
- <Cell col="61" text="bind:edicdflag"/>
- <Cell col="62" text="bind:ediunitcost"/>
- <Cell col="63" text="bind:updtdd"/>
- <Cell col="64" text="bind:pid"/>
- <Cell col="65" text="bind:indd"/>
- <Cell col="66" text="bind:cretno"/>
- <Cell col="67" text="bind:calcseqno"/>
- <Cell col="68" text="bind:calcscorseqno"/>
- <Cell col="69" text="bind:mskind"/>
- <Cell col="70" text="bind:oldmskind"/>
- <Cell col="71" text="bind:grupcalcscorcls"/>
- <Cell col="72" text="bind:ordcalcflag"/>
- <Cell col="73" text="bind:grupsnglfag"/>
- <Cell col="74" text="bind:prcpdd"/>
- <Cell col="75" text="bind:prcphistno"/>
- <Cell col="76" text="bind:execprcpno"/>
- <Cell col="77" text="bind:exectm"/>
- <Cell col="78" style="align:right middle;background:#c0c0c0ff;" text="bind:calcscorpnt"/>
- <Cell col="79" style="align:right middle;background:#c0c0c0ff;" text="bind:estmpnt"/>
- <Cell col="80" style="align:right middle;background:#c0c0c0ff;" text="bind:exitprvntdrugamt"/>
- <Cell col="81" style="align:right middle;background:#c0c0c0ff;" text="bind:exitprvntdrugyn"/>
- <Cell col="82" style="align:right middle;background:#c0c0c0ff;" text="bind:ordqty"/>
- <Cell col="83" style="align:right middle;background:#c0c0c0ff;" text="bind:ordtims"/>
- <Cell col="84" style="align:right middle;background:#c0c0c0ff;" text="bind:orddays"/>
- <Cell col="85" style="background:#c0c0c0ff;" text="bind:ordtype"/>
- <Cell col="86" style="align:right middle;background:#c0c0c0ff;" text="bind:payamt"/>
- <Cell col="87" style="align:right middle;background:#c0c0c0ff;" text="bind:payinsubamt"/>
- <Cell col="88" style="align:right middle;background:#c0c0c0ff;" text="bind:payownbamt"/>
- <Cell col="89" style="align:right middle;background:#c0c0c0ff;" text="bind:payownbrate"/>
- <Cell col="90" style="align:right middle;background:#c0c0c0ff;" text="bind:pntunitcost"/>
- <Cell col="91" style="align:right middle;background:#c0c0c0ff;" text="bind:allownbamt"/>
- <Cell col="92" style="align:right middle;background:#c0c0c0ff;" text="bind:nopyamt"/>
- <Cell col="93" style="align:center middle;" text="bind:freeflag"/>
- <Cell col="94" style="align:center middle;" text="bind:lowdrugresncd"/>
- <Cell col="95" style="align:center middle;" text="bind:drugmthdspccd"/>
- <Cell col="96" displaytype="date" style="align:left middle;" text="bind:rsrvdd" mask="yyyy-MM-dd hh:mm:dd" calendardisplaynulltype="none"/>
- <Cell col="97" text="bind:grupseqno"/>
- <Cell col="98" text="bind:specordyn"/>
- <Cell col="99" text="bind:insukind"/>
- <Cell col="100" text="bind:suppkind"/>
- <Cell col="101" style="align:center middle;" text="bind:pynpy"/>
- <Cell col="102" style="align:center middle;" text="bind:earncls1"/>
- <Cell col="103" style="align:center middle;" text="bind:earncls2"/>
- <Cell col="104" style="align:center middle;" text="bind:earncls3"/>
- <Cell col="105" style="align:center middle;" text="bind:editflag"/>
- <Cell col="106" style="align:center middle;" text="bind:aftercretno"/>
- <Cell col="107" text="bind:payflagyn"/>
- <Cell col="108" text="bind:estmyn"/>
- <Cell col="109" text="bind:spcordyn"/>
- <Cell col="110" text="bind:nochargeyn"/>
- <Cell col="111" text="bind:ordinptflag"/>
- <Cell col="112" text="bind:ordchangeyn"/>
- <Cell col="113" text="bind:probordchangeyn"/>
- <Cell col="114" text="bind:chkflag"/>
- <Cell col="115" text="bind:bfjudgadjtresncd"/>
- <Cell col="116" text="bind:execchangeyn"/>
- <Cell col="117" text="bind:opprcpyn"/>
- <Cell col="118" text="bind:execdeptprcpyn"/>
- <Cell col="119" text="bind:specaddflag"/>
- <Cell col="120" text="bind:cretyn"/>
- <Cell col="121" text="bind:ordaddinptflag"/>
- <Cell col="122" text="bind:opansflagcd"/>
- <Cell col="123" text="bind:nigtprcpflag"/>
- <Cell col="124" text="bind:erprcpflag"/>
- <Cell col="125" text="bind:opansyn"/>
- <Cell col="126" text="bind:angioyn"/>
- <Cell col="127" text="bind:gsorddryn"/>
- <Cell col="128" text="bind:angioflagcd"/>
- <Cell col="129" text="bind:gsorddr"/>
- <Cell col="130" text="bind:hosinhosoutflag"/>
- </Band>
- <Band id="summary">
- <Cell/>
- <Cell col="1"/>
- <Cell col="2"/>
- <Cell col="3"/>
- <Cell col="4"/>
- <Cell col="5" style="font:dotum,9,bold;" text="계"/>
- <Cell col="6"/>
- <Cell col="7"/>
- <Cell col="8"/>
- <Cell col="9"/>
- <Cell col="10"/>
- <Cell col="11"/>
- <Cell col="12"/>
- <Cell col="13"/>
- <Cell col="14"/>
- <Cell col="15"/>
- <Cell col="16"/>
- <Cell col="17"/>
- <Cell col="18"/>
- <Cell col="19"/>
- <Cell col="20"/>
- <Cell col="21"/>
- <Cell col="22"/>
- <Cell col="23"/>
- <Cell col="24"/>
- <Cell col="25"/>
- <Cell col="26"/>
- <Cell col="27"/>
- <Cell col="28"/>
- <Cell col="29"/>
- <Cell col="30"/>
- <Cell col="31"/>
- <Cell col="32"/>
- <Cell col="33"/>
- <Cell col="34"/>
- <Cell col="35" displaytype="number" style="font:dotum,9,bold;" expr="expr:getSum('unitspecamt')" mask="#,##0"/>
- <Cell col="36" displaytype="number" style="font:dotum,9,bold;" expr="expr:getSum('unitaddamt')" mask="#,##0"/>
- <Cell col="37" displaytype="number" style="font:dotum,9,bold;" expr="expr:getSum('totordamt')" mask="#,##0"/>
- <Cell col="38" displaytype="number" style="font:dotum,9,bold;" expr="expr:getSum('ownbamt')" mask="#,##0"/>
- <Cell col="39" displaytype="number" style="font:dotum,9,bold;" expr="expr:getSum('hospaddamt')" mask="#,##0"/>
- <Cell col="40" displaytype="number" style="font:dotum,9,bold;" expr="expr:getSum('specamt')" mask="#,##0"/>
- <Cell col="41" displaytype="number" style="font:dotum,9,bold;" expr="expr:getSum('estmamt')" mask="#,##0"/>
- <Cell col="42"/>
- <Cell col="43"/>
- <Cell col="44"/>
- <Cell col="45"/>
- <Cell col="46"/>
- <Cell col="47"/>
- <Cell col="48"/>
- <Cell col="49"/>
- <Cell col="50"/>
- <Cell col="51"/>
- <Cell col="52"/>
- <Cell col="53"/>
- <Cell col="54"/>
- <Cell col="55"/>
- <Cell col="56"/>
- <Cell col="57"/>
- <Cell col="58"/>
- <Cell col="59"/>
- <Cell col="60"/>
- <Cell col="61"/>
- <Cell col="62"/>
- <Cell col="63"/>
- <Cell col="64"/>
- <Cell col="65"/>
- <Cell col="66"/>
- <Cell col="67"/>
- <Cell col="68"/>
- <Cell col="69"/>
- <Cell col="70"/>
- <Cell col="71"/>
- <Cell col="72"/>
- <Cell col="73"/>
- <Cell col="74"/>
- <Cell col="75"/>
- <Cell col="76"/>
- <Cell col="77"/>
- <Cell col="78"/>
- <Cell col="79"/>
- <Cell col="80"/>
- <Cell col="81"/>
- <Cell col="82"/>
- <Cell col="83"/>
- <Cell col="84"/>
- <Cell col="85"/>
- <Cell col="86"/>
- <Cell col="87"/>
- <Cell col="88"/>
- <Cell col="89"/>
- <Cell col="90"/>
- <Cell col="91"/>
- <Cell col="92"/>
- <Cell col="93"/>
- <Cell col="94"/>
- <Cell col="95"/>
- <Cell col="96"/>
- <Cell col="97"/>
- <Cell col="98"/>
- <Cell col="99"/>
- <Cell col="100"/>
- <Cell col="101"/>
- <Cell col="102"/>
- <Cell col="103"/>
- <Cell col="104"/>
- <Cell col="105"/>
- <Cell col="106"/>
- <Cell col="107"/>
- <Cell col="108"/>
- <Cell col="109"/>
- <Cell col="110"/>
- <Cell col="111"/>
- <Cell col="112"/>
- <Cell col="113"/>
- <Cell col="114"/>
- <Cell col="115"/>
- <Cell col="116"/>
- <Cell col="117"/>
- <Cell col="118"/>
- <Cell col="119"/>
- <Cell col="120"/>
- <Cell col="121"/>
- <Cell col="122"/>
- <Cell col="123"/>
- <Cell col="124"/>
- <Cell col="125"/>
- <Cell col="126"/>
- <Cell col="127"/>
- <Cell col="128"/>
- <Cell col="129"/>
- <Cell col="130"/>
- </Band>
- </Format>
- </Formats>
- </Grid>
- <Grid id="grd_admi" taborder="23" binddataset="ds_main_h_admi_admi" useinputpanel="false" oncellclick="group3_grd_admi_oncellclick" position="absolute 0 134 1194 250" anchor="left top right">
- <Formats>
- <Format id="default">
- <Columns>
- <Column size="0"/>
- <Column size="70"/>
- <Column size="70"/>
- <Column size="70"/>
- <Column size="70"/>
- <Column size="90"/>
- <Column size="55"/>
- <Column size="35"/>
- <Column size="35"/>
- <Column size="100"/>
- <Column size="55"/>
- <Column size="75"/>
- <Column size="75"/>
- <Column size="70"/>
- <Column size="70"/>
- <Column size="70"/>
- <Column size="70"/>
- <Column size="82"/>
- <Column size="75"/>
- <Column size="40"/>
- <Column size="110"/>
- <Column size="70"/>
- <Column size="70"/>
- <Column size="70"/>
- <Column size="70"/>
- <Column size="65"/>
- <Column size="80"/>
- <Column size="55"/>
- </Columns>
- <Rows>
- <Row size="24" band="head"/>
- <Row size="24"/>
- </Rows>
- <Band id="head">
- <Cell text="√"/>
- <Cell col="1" colspan="2" text="진료기간" taborder="undefined"/>
- <Cell col="3" colspan="2" text="수납기간" taborder="undefined"/>
- <Cell col="5" text="진료과"/>
- <Cell col="6" text="진료의"/>
- <Cell col="7" text="유형"/>
- <Cell col="8" colspan="2" text="보조" taborder="undefined"/>
- <Cell col="10" text="퇴원병실"/>
- <Cell col="11" text="총진료비"/>
- <Cell col="12" text="본인부담액"/>
- <Cell col="13" colspan="2" text="대불적용일자" taborder="undefined"/>
- <Cell col="15" text="청구일자"/>
- <Cell col="16" text="대불청구액"/>
- <Cell col="17" text="대불입금일자"/>
- <Cell col="18" text="대불입금액"/>
- <Cell col="19" text="계정"/>
- <Cell col="20" text="계정명"/>
- <Cell col="21" text="미수금"/>
- <Cell col="22" text="입금액"/>
- <Cell col="23" text="대손액"/>
- <Cell col="24" text="미수잔액"/>
- <Cell col="25" text="접수번호"/>
- <Cell col="26" text="심사차수"/>
- <Cell col="27" text="명일련"/>
- </Band>
- <Band id="body">
- <Cell displaytype="checkbox" text="bind:admi_ckbox"/>
- <Cell col="1" displaytype="date" style="align:center middle;" text="bind:admi_fromdd" mask="yyyy-MM-dd" calendardisplaynulltype="none"/>
- <Cell col="2" displaytype="date" style="align:center middle;" text="bind:admi_todd" mask="yyyy-MM-dd" calendardisplaynulltype="none"/>
- <Cell col="3" displaytype="date" style="align:center middle;" text="bind:admi_incalcfromdd" mask="yyyy-MM-dd" calendardisplaynulltype="none"/>
- <Cell col="4" displaytype="date" style="align:center middle;" text="bind:admi_incalcenddd" mask="yyyy-MM-dd" calendardisplaynulltype="none"/>
- <Cell col="5" style="align:left middle;" text="bind:admi_orddeptcdnm"/>
- <Cell col="6" style="align:left middle;" text="bind:admi_medispclidnm"/>
- <Cell col="7" style="align:left middle;" text="bind:admi_insukind"/>
- <Cell col="8" style="align:left middle;" text="bind:admi_suppkind"/>
- <Cell col="9" displaytype="combo" style="align:left middle;" text="bind:admi_suppkind" combodataset="ds_init_suppkind" combocodecol="cd" combodatacol="nm"/>
- <Cell col="10" displaytype="normal" style="align:left middle;" text="bind:admi_roomcd"/>
- <Cell col="11" displaytype="number" style="align:right middle;" text="bind:admi_totamt" mask="9,999"/>
- <Cell col="12" displaytype="number" style="align:right middle;" text="bind:admi_totownamt" mask="9,999"/>
- <Cell col="13" displaytype="date" text="bind:admi_appfromdd" mask="yyyy-MM-dd" calendardisplaynulltype="nulltext"/>
- <Cell col="14" displaytype="date" text="bind:admi_appenddd" mask="yyyy-MM-dd" calendardisplaynulltype="nulltext"/>
- <Cell col="15" displaytype="date" style="align:left middle;" text="bind:admi_clamdd" mask="yyyy-MM-dd" calendardisplaynulltype="none"/>
- <Cell col="16" displaytype="number" style="align:right middle;" text="bind:admi_erdebtamt" mask="9,999"/>
- <Cell col="17" displaytype="date" text="bind:admi_rcptdd_espm" mask="yyyy-MM-dd" calendardisplaynulltype="nulltext"/>
- <Cell col="18" displaytype="number" style="align:right middle;" text="bind:admi_rcptamt_espm" mask="9,999"/>
- <Cell col="19" style="align:left middle;" text="bind:admi_uncocd"/>
- <Cell col="20" displaytype="combo" text="bind:admi_uncocd" combodataset="ds_init_uncocd" combocodecol="cd" combodatacol="nm"/>
- <Cell col="21" displaytype="number" style="align:right middle;" text="bind:admi_uncoamt" mask="9,999"/>
- <Cell col="22" displaytype="number" style="align:right middle;" text="bind:admi_uncorcptamt" mask="9,999"/>
- <Cell col="23" displaytype="number" style="align:right middle;" text="bind:admi_uncodebtamt" mask="9,999"/>
- <Cell col="24" displaytype="number" style="align:right middle;" text="bind:admi_uncorestamt" mask="9,999"/>
- <Cell col="25" style="align:left middle;" text="bind:clbs_acptno"/>
- <Cell col="26" style="align:left middle;" text="bind:clbs_judgdg"/>
- <Cell col="27" style="align:left middle;" text="bind:clbs_docuseqno"/>
- </Band>
- </Format>
- </Formats>
- </Grid>
- <Static id="caption16" text="※ 색표시된 컬럼은 수정가능하고 한글명에서 우측버튼 누르면 처방 삭제가 가능합니다." position="absolute 0 731 485 751" anchor="left bottom"/>
- <Grid id="grd_samfile" taborder="24" binddataset="ds_hidden_rcv_h_samfile_samfile" useinputpanel="false" visible="false" position="absolute 1105 416 1175 486">
- <Formats>
- <Format id="default">
- <Columns>
- <Column size="60"/>
- </Columns>
- <Rows>
- <Row size="24" band="head"/>
- <Row size="24"/>
- </Rows>
- <Band id="head">
- <Cell text="caption1"/>
- </Band>
- <Band id="body">
- <Cell text="bind:sum1"/>
- </Band>
- </Format>
- </Formats>
- </Grid>
- <Div id="grp" taborder="25" class="div_SA2" position="absolute 0 272 1194 312" anchor="left top right">
- <Layouts>
- <Layout>
- <Button id="button1" taborder="7" text="조회" onclick="group3_button1_onclick" class="btn1" position="absolute 327 10 383 32" anchor="left top"/>
- <Static id="caption7" text="~" position="absolute 217 11 237 31" style="align:center ;" anchor="left top"/>
- <Static id="caption4" text="대불적용일자 :" class="search_name" position="absolute 9 13 121 30" anchor="left top"/>
- <Static id="caption5" text="대불청구액 :" class="search_name" position="absolute 621 13 705 30" anchor="left top"/>
- <Shape id="line4" linetype="vertical" class="line_4" position="absolute 392 11 395 31" anchor="left top"/>
- <Calendar id="ipt_fromdd" taborder="8" dateformat="yyyy-MM-dd" class="input_search" position="absolute 129 11 214 30" anchor="left top" autoselect="true" autoskip="true"/>
- <Calendar id="ipt_todd" taborder="9" dateformat="yyyy-MM-dd" class="input_search" position="absolute 237 11 322 30" anchor="left top" autoselect="true" autoskip="true"/>
- <MaskEdit id="ipt_debt" taborder="10" mask="(-)#,###" class="input_search" position="absolute 713 11 793 30" style="font:,,bold;align:right ;color:#ff0066;" anchor="left top"/>
- <Static id="caption15" text="청구일자 :" class="search_name" position="absolute 413 13 487 30" anchor="left top"/>
- <Calendar id="ipt_clamdd" taborder="11" dateformat="yyyy-MM-dd" class="input_search" position="absolute 498 11 593 30" style="font:,,bold;align:center ;color:#ff0066;" mask="yyyy-mm-dd" anchor="left top"/>
- <Static id="caption17" text="입금일자 :" class="search_name" position="absolute 820 13 894 30" anchor="left top"/>
- <Static id="caption19" text="입금액 :" class="search_name" position="absolute 1014 13 1078 30" anchor="left top"/>
- <Calendar id="ipt_rcptdd_espm" taborder="12" dateformat="yyyy-MM-dd" class="input_search" position="absolute 899 11 994 30" style="font:,,bold;align:center ;color:#ff0066;" anchor="left top" autoselect="true" autoskip="true"/>
- <MaskEdit id="ipt_rcptamt_espm" taborder="13" mask="9,999999999999999" class="input_search" position="absolute 1089 11 1169 30" style="color:#ff0066ff;align:right middle;font:Dotum,9,bold;" anchor="left top" type="number" maskchar=" "/>
- </Layout>
- </Layouts>
- </Div>
- <Static id="caption6" text="응급대불관리" class="tit_1" position="absolute 0 0 120 25" anchor="left top"/>
- <Button id="button2" taborder="26" text="초기화" onclick="group5_button2_onclick" class="btn4" position="absolute 1126 757 1194 779" anchor="right bottom"/>
- <Shape id="line32" class="line_6" position="absolute 0 752 1194 755" anchor="left right bottom"/>
- <Button id="btn_calc" taborder="27" text="처방계산" onclick="group5_btn_calc_onclick" class="btn4" position="absolute 988 757 1068 779" anchor="right bottom"/>
- <Button id="btn_save" taborder="28" text="저장" onclick="group5_btn_save_onclick" class="btn4" position="absolute 1069 757 1125 779" anchor="right bottom"/>
- </Layout>
- </Layouts>
- <Objects>
- <Dataset id="ds_init_P0083list" firefirstcount="0" firenextcount="0" useclientlayout="false" updatecontrol="true" enableevent="true" loadkeymode="keep" loadfiltermode="keep" reversesubsum="keep">
- <ColumnInfo/>
- </Dataset>
- <Dataset id="ds_popupmenu_iscl_item" firefirstcount="0" firenextcount="0" useclientlayout="false" updatecontrol="true" enableevent="true" loadkeymode="keep" loadfiltermode="keep" reversesubsum="keep">
- <ColumnInfo>
- <Column id="hardcdnm" type="STRING" size="256"/>
- <Column id="hardcd" type="STRING" size="256"/>
- </ColumnInfo>
- <Rows>
- <Row>
- <Col id="hardcdnm">행삭제</Col>
- <Col id="hardcd">fRowDelete</Col>
- </Row>
- </Rows>
- </Dataset>
- <Dataset id="ds_hidden_clbs" firefirstcount="0" firenextcount="0" useclientlayout="false" updatecontrol="true" enableevent="true" loadkeymode="keep" loadfiltermode="keep" reversesubsum="keep">
- <ColumnInfo>
- <Column id="totcnt" type="STRING" size="256"/>
- </ColumnInfo>
- <Rows>
- <Row>
- <Col id="totcnt"/>
- </Row>
- </Rows>
- </Dataset>
- <Dataset id="ds_main_patinfo" firefirstcount="0" firenextcount="0" useclientlayout="false" updatecontrol="true" enableevent="true" loadkeymode="keep" loadfiltermode="keep" reversesubsum="keep">
- <ColumnInfo>
- <Column id="patinfolist" type="STRING" size="256"/>
- </ColumnInfo>
- <Rows>
- <Row>
- <Col id="patinfolist"/>
- </Row>
- </Rows>
- </Dataset>
- <Dataset id="ds_main_h_iscl_sum_iscl_sum" firefirstcount="0" firenextcount="0" useclientlayout="false" updatecontrol="true" enableevent="true" loadkeymode="keep" loadfiltermode="keep" reversesubsum="keep">
- <ColumnInfo>
- <Column id="totordamt" type="STRING" size="256"/>
- <Column id="ownbamt" type="STRING" size="256"/>
- </ColumnInfo>
- <Rows>
- <Row>
- <Col id="totordamt"/>
- <Col id="ownbamt"/>
- </Row>
- </Rows>
- </Dataset>
- <Dataset id="ds_main_h_iscl_iscl" firefirstcount="0" firenextcount="0" useclientlayout="false" updatecontrol="true" enableevent="true" loadkeymode="keep" loadfiltermode="keep" reversesubsum="keep">
- <ColumnInfo/>
- </Dataset>
- <Dataset id="ds_main" firefirstcount="0" firenextcount="0" useclientlayout="false" updatecontrol="true" enableevent="true" loadkeymode="keep" loadfiltermode="keep" reversesubsum="keep">
- <ColumnInfo>
- <Column id="popupendflag" type="STRING" size="256"/>
- </ColumnInfo>
- <Rows>
- <Row/>
- </Rows>
- </Dataset>
- <Dataset id="ds_popupmenu_iscl" firefirstcount="0" firenextcount="0" useclientlayout="false" updatecontrol="true" enableevent="true" loadkeymode="keep" loadfiltermode="keep" reversesubsum="keep">
- <ColumnInfo/>
- </Dataset>
- <Dataset id="ds_main_h_admi" firefirstcount="0" firenextcount="0" useclientlayout="false" updatecontrol="true" enableevent="true" loadkeymode="keep" loadfiltermode="keep" reversesubsum="keep">
- <ColumnInfo/>
- </Dataset>
- <Dataset id="ds_init" firefirstcount="0" firenextcount="0" useclientlayout="false" updatecontrol="true" enableevent="true" loadkeymode="keep" loadfiltermode="keep" reversesubsum="keep">
- <ColumnInfo/>
- </Dataset>
- <Dataset id="ds_main_h_samfile" firefirstcount="0" firenextcount="0" useclientlayout="false" updatecontrol="true" enableevent="true" loadkeymode="keep" loadfiltermode="keep" reversesubsum="keep">
- <ColumnInfo>
- <Column id="samfile" type="STRING" size="256"/>
- </ColumnInfo>
- <Rows>
- <Row>
- <Col id="samfile"/>
- </Row>
- </Rows>
- </Dataset>
- <Dataset id="ds_temp" firefirstcount="0" firenextcount="0" useclientlayout="false" updatecontrol="true" enableevent="true" loadkeymode="keep" loadfiltermode="keep" reversesubsum="keep">
- <ColumnInfo>
- <Column id="temp" type="STRING" size="256"/>
- </ColumnInfo>
- </Dataset>
- <Dataset id="ds_send" firefirstcount="0" firenextcount="0" useclientlayout="false" updatecontrol="true" enableevent="true" loadkeymode="keep" loadfiltermode="keep" reversesubsum="keep">
- <ColumnInfo>
- <Column id="data2" type="STRING" size="256"/>
- </ColumnInfo>
- </Dataset>
- <Dataset id="ds_popupmenu" firefirstcount="0" firenextcount="0" useclientlayout="false" updatecontrol="true" enableevent="true" loadkeymode="keep" loadfiltermode="keep" reversesubsum="keep">
- <ColumnInfo/>
- </Dataset>
- <Dataset id="ds_send_data1" firefirstcount="0" firenextcount="0" useclientlayout="false" updatecontrol="true" enableevent="true" loadkeymode="keep" loadfiltermode="keep" reversesubsum="keep">
- <ColumnInfo>
- <Column id="pid" type="STRING" size="256"/>
- <Column id="indd" type="STRING" size="256"/>
- <Column id="cretno" type="STRING" size="256"/>
- <Column id="insukind" type="STRING" size="256"/>
- <Column id="appfromdd" type="STRING" size="256"/>
- <Column id="apptodd" type="STRING" size="256"/>
- <Column id="calcpayflag" type="STRING" size="256"/>
- <Column id="clamdd" type="STRING" size="256"/>
- <Column id="erdebtamt" type="STRING" size="256"/>
- <Column id="rcptdd" type="STRING" size="256"/>
- <Column id="rcptno" type="STRING" size="256"/>
- <Column id="rcptseqno" type="STRING" size="256"/>
- <Column id="rcptdd_espm" type="STRING" size="256"/>
- <Column id="rcptamt_espm" type="STRING" size="256"/>
- <Column id="clamym" type="STRING" size="256"/>
- <Column id="clamdg" type="STRING" size="256"/>
- <Column id="pidsn" type="STRING" size="256"/>
- </ColumnInfo>
- <Rows>
- <Row>
- <Col id="pid"/>
- <Col id="indd"/>
- <Col id="cretno"/>
- <Col id="insukind"/>
- <Col id="appfromdd"/>
- <Col id="apptodd"/>
- <Col id="calcpayflag"/>
- <Col id="clamdd"/>
- <Col id="erdebtamt"/>
- <Col id="rcptdd"/>
- <Col id="rcptno"/>
- <Col id="rcptseqno"/>
- <Col id="rcptdd_espm"/>
- <Col id="rcptamt_espm"/>
- <Col id="clamym"/>
- <Col id="clamdg"/>
- <Col id="pidsn"/>
- </Row>
- </Rows>
- </Dataset>
- <Dataset id="ds_send_data3" firefirstcount="0" firenextcount="0" useclientlayout="false" updatecontrol="true" enableevent="true" loadkeymode="keep" loadfiltermode="keep" reversesubsum="keep">
- <ColumnInfo>
- <Column id="req" type="STRING" size="256"/>
- <Column id="h_iscl" type="STRING" size="256"/>
- </ColumnInfo>
- <Rows>
- <Row>
- <Col id="req"/>
- <Col id="h_iscl"/>
- </Row>
- </Rows>
- </Dataset>
- <Dataset id="ds_send_data4" firefirstcount="0" firenextcount="0" useclientlayout="false" updatecontrol="true" enableevent="true" loadkeymode="keep" loadfiltermode="keep" reversesubsum="keep">
- <ColumnInfo>
- <Column id="srchcond" type="STRING" size="256"/>
- <Column id="pid" type="STRING" size="256"/>
- <Column id="hngnm" type="STRING" size="256"/>
- <Column id="rrgstno1" type="STRING" size="256"/>
- <Column id="rrgstno2" type="STRING" size="256"/>
- <Column id="autoflag" type="STRING" size="256"/>
- </ColumnInfo>
- <Rows>
- <Row>
- <Col id="srchcond"/>
- <Col id="pid"/>
- <Col id="hngnm"/>
- <Col id="rrgstno1"/>
- <Col id="rrgstno2"/>
- <Col id="autoflag"/>
- </Row>
- </Rows>
- </Dataset>
- <Dataset id="ds_main_ptbs" firefirstcount="0" firenextcount="0" useclientlayout="false" updatecontrol="true" enableevent="true" loadkeymode="keep" loadfiltermode="keep" reversesubsum="keep">
- <ColumnInfo>
- <Column id="ptbs_status" type="STRING" size="256"/>
- <Column id="ptbs_pid" type="STRING" size="256"/>
- <Column id="ptbs_hngnm" type="STRING" size="256"/>
- <Column id="ptbs_engnm" type="STRING" size="256"/>
- <Column id="ptbs_rrgstno1" type="STRING" size="256"/>
- <Column id="ptbs_rrgstno2" type="STRING" size="256"/>
- <Column id="ptbs_brthdd" type="STRING" size="256"/>
- <Column id="ptbs_sex" type="STRING" size="256"/>
- <Column id="ptbs_age" type="STRING" size="256"/>
- <Column id="ptbs_hometel" type="STRING" size="256"/>
- <Column id="ptbs_mpphontel" type="STRING" size="256"/>
- <Column id="ptbs_zipcd1" type="STRING" size="256"/>
- <Column id="ptbs_zipcd2" type="STRING" size="256"/>
- <Column id="ptbs_zipcdseq" type="STRING" size="256"/>
- <Column id="ptbs_zipnm" type="STRING" size="256"/>
- <Column id="ptbs_detladdr" type="STRING" size="256"/>
- <Column id="ptbs_forgeryn" type="STRING" size="256"/>
- <Column id="ptbs_recmyn" type="STRING" size="256"/>
- <Column id="ptbs_recmerid" type="STRING" size="256"/>
- <Column id="ptbs_vipyn" type="STRING" size="256"/>
- <Column id="ptbs_religncd" type="STRING" size="256"/>
- <Column id="ptbs_remfact" type="STRING" size="256"/>
- <Column id="ptbs_inhospyn" type="STRING" size="256"/>
- </ColumnInfo>
- <Rows>
- <Row>
- <Col id="ptbs_status"/>
- <Col id="ptbs_pid"/>
- <Col id="ptbs_hngnm"/>
- <Col id="ptbs_engnm"/>
- <Col id="ptbs_rrgstno1"/>
- <Col id="ptbs_rrgstno2"/>
- <Col id="ptbs_brthdd"/>
- <Col id="ptbs_sex"/>
- <Col id="ptbs_age"/>
- <Col id="ptbs_hometel"/>
- <Col id="ptbs_mpphontel"/>
- <Col id="ptbs_zipcd1"/>
- <Col id="ptbs_zipcd2"/>
- <Col id="ptbs_zipcdseq"/>
- <Col id="ptbs_zipnm"/>
- <Col id="ptbs_detladdr"/>
- <Col id="ptbs_forgeryn"/>
- <Col id="ptbs_recmyn"/>
- <Col id="ptbs_recmerid"/>
- <Col id="ptbs_vipyn"/>
- <Col id="ptbs_religncd"/>
- <Col id="ptbs_remfact"/>
- <Col id="ptbs_inhospyn"/>
- </Row>
- </Rows>
- </Dataset>
- <Dataset id="ds_hidden" firefirstcount="0" firenextcount="0" useclientlayout="false" updatecontrol="true" enableevent="true" loadkeymode="keep" loadfiltermode="keep" reversesubsum="keep">
- <ColumnInfo>
- <Column id="list1" type="STRING" size="256"/>
- <Column id="list2" type="STRING" size="256"/>
- <Column id="list3" type="STRING" size="256"/>
- <Column id="list4" type="STRING" size="256"/>
- <Column id="list5" type="STRING" size="256"/>
- </ColumnInfo>
- </Dataset>
- <Dataset id="ds_send_report1" firefirstcount="0" firenextcount="0" useclientlayout="false" updatecontrol="true" enableevent="true" loadkeymode="keep" loadfiltermode="keep" reversesubsum="keep">
- <ColumnInfo>
- <Column id="list1" type="STRING" size="256"/>
- <Column id="list2" type="STRING" size="256"/>
- <Column id="list3" type="STRING" size="256"/>
- <Column id="list4" type="STRING" size="256"/>
- <Column id="list5" type="STRING" size="256"/>
- </ColumnInfo>
- <Rows>
- <Row>
- <Col id="list1"/>
- <Col id="list2"/>
- <Col id="list3"/>
- <Col id="list4"/>
- <Col id="list5"/>
- </Row>
- </Rows>
- </Dataset>
- <Dataset id="ds_send_report2" firefirstcount="0" firenextcount="0" useclientlayout="false" updatecontrol="true" enableevent="true" loadkeymode="keep" loadfiltermode="keep" reversesubsum="keep">
- <ColumnInfo>
- <Column id="list1" type="STRING" size="256"/>
- <Column id="list5" type="STRING" size="256"/>
- </ColumnInfo>
- <Rows>
- <Row>
- <Col id="list1"/>
- <Col id="list5"/>
- </Row>
- </Rows>
- </Dataset>
- <Dataset id="ds_main_h_iscl_sum" firefirstcount="0" firenextcount="0" useclientlayout="false" updatecontrol="true" enableevent="true" loadkeymode="keep" loadfiltermode="keep" reversesubsum="keep">
- <ColumnInfo/>
- </Dataset>
- <Dataset id="ds_init_P0083list_P0083" firefirstcount="0" firenextcount="0" useclientlayout="false" updatecontrol="true" enableevent="true" loadkeymode="keep" loadfiltermode="keep" reversesubsum="keep">
- <ColumnInfo>
- <Column id="cdnm" type="STRING" size="256"/>
- <Column id="cdid" type="STRING" size="256"/>
- </ColumnInfo>
- <Rows>
- <Row>
- <Col id="cdnm"/>
- <Col id="cdid"/>
- </Row>
- </Rows>
- </Dataset>
- <Dataset id="ds_main_h_admi_admi" firefirstcount="0" firenextcount="0" useclientlayout="false" updatecontrol="true" enableevent="true" loadkeymode="keep" loadfiltermode="keep" reversesubsum="keep">
- <ColumnInfo>
- <Column id="admi_ckbox" type="STRING" size="256"/>
- <Column id="admi_fromdd" type="STRING" size="256"/>
- <Column id="admi_todd" type="STRING" size="256"/>
- <Column id="admi_orddeptcd" type="STRING" size="256"/>
- <Column id="admi_orddeptcdnm" type="STRING" size="256"/>
- <Column id="admi_medispclid" type="STRING" size="256"/>
- <Column id="admi_insukind" type="STRING" size="256"/>
- <Column id="admi_suppkind" type="STRING" size="256"/>
- <Column id="admi_roomcd" type="STRING" size="256"/>
- <Column id="admi_totamt" type="STRING" size="256"/>
- <Column id="admi_totownamt" type="STRING" size="256"/>
- <Column id="admi_uncocd" type="STRING" size="256"/>
- <Column id="admi_uncocdnm" type="STRING" size="256"/>
- <Column id="admi_uncoamt" type="STRING" size="256"/>
- <Column id="admi_uncorcptamt" type="STRING" size="256"/>
- <Column id="admi_uncodebtamt" type="STRING" size="256"/>
- <Column id="admi_uncorestamt" type="STRING" size="256"/>
- <Column id="admi_rcptdd" type="STRING" size="256"/>
- <Column id="admi_rcptno" type="STRING" size="256"/>
- <Column id="admi_rcptseqno" type="STRING" size="256"/>
- <Column id="admi_rcptseqno" type="STRING" size="256"/>
- <Column id="admi_erdebtamt" type="STRING" size="256"/>
- <Column id="admi_indd" type="STRING" size="256"/>
- <Column id="admi_cretno" type="STRING" size="256"/>
- <Column id="clbs_acptno" type="STRING" size="256"/>
- <Column id="clbs_judgdg" type="STRING" size="256"/>
- <Column id="clbs_docuseqno" type="STRING" size="256"/>
- </ColumnInfo>
- <Rows>
- <Row>
- <Col id="admi_ckbox"/>
- <Col id="admi_fromdd"/>
- <Col id="admi_todd"/>
- <Col id="admi_orddeptcd"/>
- <Col id="admi_orddeptcdnm"/>
- <Col id="admi_medispclid"/>
- <Col id="admi_insukind"/>
- <Col id="admi_suppkind"/>
- <Col id="admi_roomcd"/>
- <Col id="admi_totamt"/>
- <Col id="admi_totownamt"/>
- <Col id="admi_uncocd"/>
- <Col id="admi_uncocdnm"/>
- <Col id="admi_uncoamt"/>
- <Col id="admi_uncorcptamt"/>
- <Col id="admi_uncodebtamt"/>
- <Col id="admi_uncorestamt"/>
- <Col id="admi_rcptdd"/>
- <Col id="admi_rcptno"/>
- <Col id="admi_rcptseqno"/>
- <Col id="admi_rcptseqno"/>
- <Col id="admi_erdebtamt"/>
- <Col id="admi_indd"/>
- <Col id="admi_cretno"/>
- <Col id="clbs_acptno"/>
- <Col id="clbs_judgdg"/>
- <Col id="clbs_docuseqno"/>
- </Row>
- </Rows>
- </Dataset>
- <Dataset id="ds_hidden_rcv_h_admi" firefirstcount="0" firenextcount="0" useclientlayout="false" updatecontrol="true" enableevent="true" loadkeymode="keep" loadfiltermode="keep" reversesubsum="false"/>
- <Dataset id="ds_send_data3_h_iscl" firefirstcount="0" firenextcount="0" useclientlayout="false" updatecontrol="true" enableevent="true" loadkeymode="keep" loadfiltermode="keep" reversesubsum="false"/>
- <Dataset id="ds_hidden_rcv_h_iscl_iscl" firefirstcount="0" firenextcount="0" useclientlayout="false" updatecontrol="true" enableevent="true" loadkeymode="keep" loadfiltermode="keep" reversesubsum="false"/>
- <Dataset id="ds_hidden_rcv_h_iscl_sum_iscl_sum" firefirstcount="0" firenextcount="0" useclientlayout="false" updatecontrol="true" enableevent="true" loadkeymode="keep" loadfiltermode="keep" reversesubsum="false"/>
- <Dataset id="ds_send_data3_req" firefirstcount="0" firenextcount="0" useclientlayout="false" updatecontrol="true" enableevent="true" loadkeymode="keep" loadfiltermode="keep" reversesubsum="false"/>
- <Dataset id="ds_send_data2" firefirstcount="0" firenextcount="0" useclientlayout="false" updatecontrol="true" enableevent="true" loadkeymode="keep" loadfiltermode="keep" reversesubsum="false"/>
- <Dataset id="ds_temp_mech" firefirstcount="0" firenextcount="0" useclientlayout="false" updatecontrol="true" enableevent="true" loadkeymode="keep" loadfiltermode="keep" reversesubsum="false"/>
- <Dataset id="ds_init_insukind" firefirstcount="0" firenextcount="0" useclientlayout="false" updatecontrol="true" enableevent="true" loadkeymode="keep" loadfiltermode="keep" reversesubsum="false"/>
- <Dataset id="ds_init_disccd" firefirstcount="0" firenextcount="0" useclientlayout="false" updatecontrol="true" enableevent="true" loadkeymode="keep" loadfiltermode="keep" reversesubsum="false"/>
- <Dataset id="ds_init_suppkind" firefirstcount="0" firenextcount="0" useclientlayout="false" updatecontrol="true" enableevent="true" loadkeymode="keep" loadfiltermode="keep" reversesubsum="false"/>
- <Dataset id="ds_init_orddeptcd" firefirstcount="0" firenextcount="0" useclientlayout="false" updatecontrol="true" enableevent="true" loadkeymode="keep" loadfiltermode="keep" reversesubsum="false"/>
- <Dataset id="ds_init_orddrid" firefirstcount="0" firenextcount="0" useclientlayout="false" updatecontrol="true" enableevent="true" loadkeymode="keep" loadfiltermode="keep" reversesubsum="false"/>
- <Dataset id="ds_init_reducd" firefirstcount="0" firenextcount="0" useclientlayout="false" updatecontrol="true" enableevent="true" loadkeymode="keep" loadfiltermode="keep" reversesubsum="false"/>
- <Dataset id="ds_init_uncocd" firefirstcount="0" firenextcount="0" useclientlayout="false" updatecontrol="true" enableevent="true" loadkeymode="keep" loadfiltermode="keep" reversesubsum="false"/>
- <Dataset id="ds_init_proccd" firefirstcount="0" firenextcount="0" useclientlayout="false" updatecontrol="true" enableevent="true" loadkeymode="keep" loadfiltermode="keep" reversesubsum="false"/>
- <Dataset id="ds_init_subjno" firefirstcount="0" firenextcount="0" useclientlayout="false" updatecontrol="true" enableevent="true" loadkeymode="keep" loadfiltermode="keep" reversesubsum="false"/>
- <Dataset id="ds_init_rcptflag" firefirstcount="0" firenextcount="0" useclientlayout="false" updatecontrol="true" enableevent="true" loadkeymode="keep" loadfiltermode="keep" reversesubsum="false"/>
- <Dataset id="ds_node_bk_main" firefirstcount="0" firenextcount="0" useclientlayout="false" updatecontrol="true" enableevent="true" loadkeymode="keep" loadfiltermode="keep" reversesubsum="false"/>
- <Dataset id="ds_node_bk_send" firefirstcount="0" firenextcount="0" useclientlayout="false" updatecontrol="true" enableevent="true" loadkeymode="keep" loadfiltermode="keep" reversesubsum="false"/>
- <Dataset id="ds_hidden_rcv_h_admi_admi" firefirstcount="0" firenextcount="0" useclientlayout="false" updatecontrol="true" enableevent="true" loadkeymode="keep" loadfiltermode="keep" reversesubsum="false"/>
- <Dataset id="ds_hidden_list1_main" firefirstcount="0" firenextcount="0" useclientlayout="false" updatecontrol="true" enableevent="true" loadkeymode="keep" loadfiltermode="keep" reversesubsum="false"/>
- <Dataset id="ds_hidden_list2_diag" firefirstcount="0" firenextcount="0" useclientlayout="false" updatecontrol="true" enableevent="true" loadkeymode="keep" loadfiltermode="keep" reversesubsum="false"/>
- <Dataset id="ds_hidden_list3_amt" firefirstcount="0" firenextcount="0" useclientlayout="false" updatecontrol="true" enableevent="true" loadkeymode="keep" loadfiltermode="keep" reversesubsum="false"/>
- <Dataset id="ds_hidden_list4_prcp" firefirstcount="0" firenextcount="0" useclientlayout="false" updatecontrol="true" enableevent="true" loadkeymode="keep" loadfiltermode="keep" reversesubsum="false"/>
- <Dataset id="ds_hidden_list5_prcp_sub" firefirstcount="0" firenextcount="0" useclientlayout="false" updatecontrol="true" enableevent="true" loadkeymode="keep" loadfiltermode="keep" reversesubsum="false"/>
- <Dataset id="ds_send_report1_list1_main" firefirstcount="0" firenextcount="0" useclientlayout="false" updatecontrol="true" enableevent="true" loadkeymode="keep" loadfiltermode="keep" reversesubsum="false"/>
- <Dataset id="ds_send_report1_list2_diag" firefirstcount="0" firenextcount="0" useclientlayout="false" updatecontrol="true" enableevent="true" loadkeymode="keep" loadfiltermode="keep" reversesubsum="false"/>
- <Dataset id="ds_send_report1_list3_amt" firefirstcount="0" firenextcount="0" useclientlayout="false" updatecontrol="true" enableevent="true" loadkeymode="keep" loadfiltermode="keep" reversesubsum="false"/>
- <Dataset id="ds_send_report1_list4_prcp" firefirstcount="0" firenextcount="0" useclientlayout="false" updatecontrol="true" enableevent="true" loadkeymode="keep" loadfiltermode="keep" reversesubsum="false"/>
- <Dataset id="ds_send_report1_list5_prcp_sub" firefirstcount="0" firenextcount="0" useclientlayout="false" updatecontrol="true" enableevent="true" loadkeymode="keep" loadfiltermode="keep" reversesubsum="false"/>
- <Dataset id="ds_send_report2_list1_main" firefirstcount="0" firenextcount="0" useclientlayout="false" updatecontrol="true" enableevent="true" loadkeymode="keep" loadfiltermode="keep" reversesubsum="false"/>
- <Dataset id="ds_send_report2_list2_diag" firefirstcount="0" firenextcount="0" useclientlayout="false" updatecontrol="true" enableevent="true" loadkeymode="keep" loadfiltermode="keep" reversesubsum="false"/>
- <Dataset id="ds_send_report2_list3_amt" firefirstcount="0" firenextcount="0" useclientlayout="false" updatecontrol="true" enableevent="true" loadkeymode="keep" loadfiltermode="keep" reversesubsum="false"/>
- <Dataset id="ds_send_report2_list4_prcp" firefirstcount="0" firenextcount="0" useclientlayout="false" updatecontrol="true" enableevent="true" loadkeymode="keep" loadfiltermode="keep" reversesubsum="false"/>
- <Dataset id="ds_send_report2_list5_prcp_sub" firefirstcount="0" firenextcount="0" useclientlayout="false" updatecontrol="true" enableevent="true" loadkeymode="keep" loadfiltermode="keep" reversesubsum="false"/>
- <Dataset id="ds_node_bk_send_report1_list1_main" firefirstcount="0" firenextcount="0" useclientlayout="false" updatecontrol="true" enableevent="true" loadkeymode="keep" loadfiltermode="keep" reversesubsum="false"/>
- <Dataset id="ds_node_bk_send_report1_list2_diag" firefirstcount="0" firenextcount="0" useclientlayout="false" updatecontrol="true" enableevent="true" loadkeymode="keep" loadfiltermode="keep" reversesubsum="false"/>
- <Dataset id="ds_node_bk_send_report1_list3_amt" firefirstcount="0" firenextcount="0" useclientlayout="false" updatecontrol="true" enableevent="true" loadkeymode="keep" loadfiltermode="keep" reversesubsum="false"/>
- <Dataset id="ds_node_bk_send_report1_list4_prcp" firefirstcount="0" firenextcount="0" useclientlayout="false" updatecontrol="true" enableevent="true" loadkeymode="keep" loadfiltermode="keep" reversesubsum="false"/>
- <Dataset id="ds_node_bk_send_report1_list5_prcp_sub" firefirstcount="0" firenextcount="0" useclientlayout="false" updatecontrol="true" enableevent="true" loadkeymode="keep" loadfiltermode="keep" reversesubsum="false"/>
- <Dataset id="ds_node_bk_send_report2_list1_main" firefirstcount="0" firenextcount="0" useclientlayout="false" updatecontrol="true" enableevent="true" loadkeymode="keep" loadfiltermode="keep" reversesubsum="false"/>
- <Dataset id="ds_node_bk_send_report2_list2_diag" firefirstcount="0" firenextcount="0" useclientlayout="false" updatecontrol="true" enableevent="true" loadkeymode="keep" loadfiltermode="keep" reversesubsum="false"/>
- <Dataset id="ds_node_bk_send_report2_list3_amt" firefirstcount="0" firenextcount="0" useclientlayout="false" updatecontrol="true" enableevent="true" loadkeymode="keep" loadfiltermode="keep" reversesubsum="false"/>
- <Dataset id="ds_node_bk_send_report2_list4_prcp" firefirstcount="0" firenextcount="0" useclientlayout="false" updatecontrol="true" enableevent="true" loadkeymode="keep" loadfiltermode="keep" reversesubsum="false"/>
- <Dataset id="ds_node_bk_send_report2_list5_prcp_sub" firefirstcount="0" firenextcount="0" useclientlayout="false" updatecontrol="true" enableevent="true" loadkeymode="keep" loadfiltermode="keep" reversesubsum="false"/>
- <Dataset id="Dataset00" firefirstcount="0" firenextcount="0" useclientlayout="false" updatecontrol="true" enableevent="true" loadkeymode="keep" loadfiltermode="keep" reversesubsum="false"/>
- <Dataset id="ds_node_bk_send_data2" firefirstcount="0" firenextcount="0" useclientlayout="false" updatecontrol="true" enableevent="true" loadkeymode="keep" loadfiltermode="keep" reversesubsum="false"/>
- <Dataset id="ds_hidden_rcv_ptbs" firefirstcount="0" firenextcount="0" useclientlayout="false" updatecontrol="true" enableevent="true" loadkeymode="keep" loadfiltermode="keep" reversesubsum="false"/>
- <Dataset id="Dataset01" firefirstcount="0" firenextcount="0" useclientlayout="false" updatecontrol="true" enableevent="true" loadkeymode="keep" loadfiltermode="keep" reversesubsum="false"/>
- <Dataset id="Dataset02" firefirstcount="0" firenextcount="0" useclientlayout="false" updatecontrol="true" enableevent="true" loadkeymode="keep" loadfiltermode="keep" reversesubsum="false"/>
- <Dataset id="ds_init_payflag" firefirstcount="0" firenextcount="0" useclientlayout="false" updatecontrol="true" enableevent="true" loadkeymode="keep" loadfiltermode="keep" reversesubsum="false">
- <ColumnInfo>
- <Column id="label" type="STRING" size="256"/>
- <Column id="value" type="STRING" size="256"/>
- </ColumnInfo>
- <Rows>
- <Row>
- <Col id="label">급</Col>
- <Col id="value">0</Col>
- </Row>
- <Row>
- <Col id="label">100</Col>
- <Col id="value">1</Col>
- </Row>
- <Row>
- <Col id="label">비</Col>
- <Col id="value">2</Col>
- </Row>
- </Rows>
- </Dataset>
- <Dataset id="ds_init_matractflag" firefirstcount="0" firenextcount="0" useclientlayout="false" updatecontrol="true" enableevent="true" loadkeymode="keep" loadfiltermode="keep" reversesubsum="false">
- <ColumnInfo>
- <Column id="label" type="STRING" size="256"/>
- <Column id="value" type="STRING" size="256"/>
- </ColumnInfo>
- <Rows>
- <Row>
- <Col id="label">원외</Col>
- <Col id="value">0</Col>
- </Row>
- <Row>
- <Col id="label">재료</Col>
- <Col id="value">1</Col>
- </Row>
- <Row>
- <Col id="label">가O</Col>
- <Col id="value">2</Col>
- </Row>
- <Row>
- <Col id="label">가X</Col>
- <Col id="value">3</Col>
- </Row>
- <Row>
- <Col id="label">약제</Col>
- <Col id="value">4</Col>
- </Row>
- <Row>
- <Col id="label">위탁</Col>
- <Col id="value">5</Col>
- </Row>
- <Row>
- <Col id="label">약제</Col>
- <Col id="value">6</Col>
- </Row>
- </Rows>
- </Dataset>
- <FilteredDataset id="dsft_init_suppkind" enableevent="true" loadkeymode="keep" loadfiltermode="keep" reversesubsum="false" binddataset="@ds_init_suppkind"/>
- <Dataset id="ds_patinfolist" firefirstcount="0" firenextcount="0" useclientlayout="false" updatecontrol="true" enableevent="true" loadkeymode="keep" loadfiltermode="keep" reversesubsum="false"/>
- </Objects>
- <Bind>
- <BindItem id="item0" compid="ipt_pid" propid="value" datasetid="ds_main_ptbs" columnid="ptbs_pid"/>
- <BindItem id="item1" compid="ipt_rrgstno1" propid="value" datasetid="ds_main_ptbs" columnid="ptbs_rrgstno1"/>
- <BindItem id="item2" compid="opt_address" propid="value" datasetid="ds_main_ptbs" columnid="ptbs_zipnm"/>
- <BindItem id="item3" compid="opt_zipcd1" propid="value" datasetid="ds_main_ptbs" columnid="ptbs_zipcd1"/>
- <BindItem id="item4" compid="opt_zipcd2" propid="value" datasetid="ds_main_ptbs" columnid="ptbs_zipcd2"/>
- <BindItem id="item5" compid="opt_hometel" propid="value" datasetid="ds_main_ptbs" columnid="ptbs_hometel"/>
- <BindItem id="item6" compid="opt_detladdr" propid="value" datasetid="ds_main_ptbs" columnid="ptbs_detladdr"/>
- <BindItem id="item7" compid="opt_age" propid="value" datasetid="ds_main_ptbs" columnid="ptbs_age"/>
- <BindItem id="item8" compid="opt_mpphontel" propid="value" datasetid="ds_main_ptbs" columnid="ptbs_mpphontel"/>
- <BindItem id="item9" compid="ipt_hngnm" propid="value" datasetid="ds_main_ptbs" columnid="ptbs_hngnm"/>
- <BindItem id="item10" compid="opt_sex" propid="value" datasetid="ds_main_ptbs" columnid="ptbs_sex"/>
- <BindItem id="item11" compid="opt_rrgstno2" propid="value" datasetid="ds_main_ptbs" columnid="ptbs_rrgstno2"/>
- <BindItem id="item15" compid="opt_totordamt" propid="value" datasetid="ds_main_h_iscl_sum_iscl_sum" columnid="totordamt"/>
- <BindItem id="item16" compid="opt_ownbamt" propid="value" datasetid="ds_main_h_iscl_sum_iscl_sum" columnid="ownbamt"/>
- </Bind>
- <Script type="xscript4.0"><![CDATA[include "com_commonxp::comm_main.xjs"
- include "com_basiccodexp::ZBC001.xjs"
- include "pam_pamcomnxp::PAM001.xjs"
- var arErrorCode = new HashArray();
- function SMPMC02401_onload(obj: Form, e: LoadEventInfo) {
- frmf_initForm(obj);
- grdf_setRowTypeIcon(grd_iscl, 0);
- ds_main.clearData();
- ds_main.addRow();
- fInitialize();
- //원무사용 기초코드 조회 cache기능 추가
- if (frmf_copyFromCache("TRPAMCOM01_depttree", ds_init_orddeptcd)) {
- frmf_copyFromCache("TRPAMCOM01_disccdtree", ds_init_disccd);
- frmf_copyFromCache("TRPAMCOM01_insukindtree", ds_init_insukind);
- frmf_copyFromCache("TRPAMCOM01_suppkindtree", ds_init_suppkind);
- frmf_copyFromCache("TRPAMCOM01_depttree", ds_init_orddeptcd);
- frmf_copyFromCache("TRPAMCOM01_orddridtree", ds_init_orddrid);
- frmf_copyFromCache("TRPAMCOM01_reducdtree", ds_init_reducd);
- frmf_copyFromCache("TRPAMCOM01_uncocdtree", ds_init_uncocd);
- frmf_copyFromCache("TRPAMCOM01_proccdtree", ds_init_proccd);
- frmf_copyFromCache("TRPAMCOM01_subjnotree", ds_init_subjno);
- frmf_copyFromCache("TRPAMCOM01_rcptflagtree", ds_init_rcptflag);
- }
- else {
- ds_hidden.clearData();
- dsf_makeValue(ds_hidden, "sess_posinstcd", "string", sysf_getUserInfo("dutplceinstcd"));
- var oParam = {};
- oParam.id = "TRPAMCOM01";
- oParam.service = "pamcomnapp.PamComn";
- oParam.method = "reqGetComCD";
- oParam.inds = "req=ds_hidden";
- oParam.outds = "ds_init_disccd=disccd " +
- "ds_init_insukind=insukind " +
- "ds_init_suppkind=suppkind " +
- "ds_init_orddeptcd=orddeptcd " +
- "ds_init_orddrid=orddrid " +
- "ds_init_reducd=reducd " +
- "ds_init_uncocd=uncocd " +
- "ds_init_proccd=proccd " +
- "ds_init_subjno=subjno " +
- "ds_init_rcptflag=rcptflag";
- oParam.async = false;
- oParam.callback = "cf_TRPAMCOM01";
- tranf_submit(oParam);
- if (arErrorCode.pop("TRPAMCOM01") > -1) {
- frmf_storeIntoCache("TRPAMCOM01_depttree", ds_init_orddeptcd);
- frmf_storeIntoCache("TRPAMCOM01_disccdtree", ds_init_disccd);
- frmf_storeIntoCache("TRPAMCOM01_insukindtree", ds_init_insukind);
- frmf_storeIntoCache("TRPAMCOM01_suppkindtree", ds_init_suppkind);
- frmf_storeIntoCache("TRPAMCOM01_depttree", ds_init_orddeptcd);
- frmf_storeIntoCache("TRPAMCOM01_orddridtree", ds_init_orddrid);
- frmf_storeIntoCache("TRPAMCOM01_reducdtree", ds_init_reducd);
- frmf_storeIntoCache("TRPAMCOM01_uncocdtree", ds_init_uncocd);
- frmf_storeIntoCache("TRPAMCOM01_proccdtree", ds_init_proccd);
- frmf_storeIntoCache("TRPAMCOM01_subjnotree", ds_init_subjno);
- frmf_storeIntoCache("TRPAMCOM01_rcptflagtree", ds_init_rcptflag);
- }
- }
- frmf_createPopupMenuDs("pmn_menu", "pmn_menu_onmenuclick", ds_popupmenu_iscl_item);
- }
- function pmn_menu_onmenuclick(obj: PopupMenu, e: MenuClickEventInfo) {
- eval(e.id + "()");
- }
- function cf_TRPAMCOM01(sSvcId, nErrorCode, sErrorMsg) {
- arErrorCode.push(sSvcId, nErrorCode);
- }
- // header파일 중 SMPMC02401.js 파일 시작
- //SMPMC02401_응급대불관리.xrw 20100204 조영상
- //화면 처음에 열릴떄 딱 한번만 실행! 이후실행하면 안됨!
- function fInitialize() {
- ds_node_bk_main.clearData();
- ds_node_bk_send_data2.clearData();
- ds_node_bk_main.copyData(ds_main);
- ds_node_bk_send_report1_list1_main.copyData(ds_send_report1_list1_main);
- ds_node_bk_send_report1_list2_diag.copyData(ds_send_report1_list2_diag);
- ds_node_bk_send_report1_list3_amt.copyData(ds_send_report1_list3_amt);
- ds_node_bk_send_report1_list4_prcp.copyData(ds_send_report1_list4_prcp);
- ds_node_bk_send_report1_list5_prcp_sub.copyData(ds_send_report1_list5_prcp_sub);
- ds_node_bk_send_report2_list1_main.copyData(ds_send_report2_list1_main);
- ds_node_bk_send_report2_list2_diag.copyData(ds_send_report2_list2_diag);
- ds_node_bk_send_report2_list3_amt.copyData(ds_send_report2_list3_amt);
- ds_node_bk_send_report2_list4_prcp.copyData(ds_send_report2_list4_prcp);
- ds_node_bk_send_report2_list5_prcp_sub.copyData(ds_send_report2_list5_prcp_sub);
- }
- function fOJBaseInfoRef() {
- if ( ds_main.getColumn(0, "popupendflag") == "ok" )
- {
- ds_send_data1.setColumn(0, "pid", ds_patinfolist.getColumn(0, "pid"));
- fGetPatInfo();
- }
- else if ( ds_main.getColumn(0, "popupendflag") == "pass" )
- {
- ds_send_data1.setColumn(0, "pid", ds_main_ptbs.getColumn(0, "ptbs_pid"));
- fGetPatInfo();
- }
- else {
- ds_main_ptbs.clearData();
- ds_main_ptbs.addRow();
- return false;
- }
- }
- //환자 인적사항, 응급대불신청내역조회
- function fGetPatInfo() {
- var oParam = {};
- oParam.id = "TRPMC02404";
- oParam.service = "patinfomngtapp.ERSubtApp";
- oParam.method = "reqGetPatinfo_erubud";
- oParam.inds = "req=ds_send_data1";
- oParam.outds = "ds_hidden_rcv_ptbs=ptbs ds_hidden_rcv_h_admi_admi=admi";
- oParam.async = false;
- oParam.callback = "cf_TRPMC02404";
- tranf_submit(oParam);
- if (arErrorCode.pop("TRPMC02404") > -1) {
- ds_main_h_admi_admi.clearData();
- ds_main_h_iscl_iscl.clearData(); // 인적 사항 조회
- var iptbscnt = ds_hidden_rcv_ptbs.rowcount;
- if (iptbscnt > 0) {
- dsf_copyDsWithPrefix(ds_main_ptbs, ds_hidden_rcv_ptbs, "ptbs_");
- ds_main_ptbs.updateColID("ptbs_ptbs_pid", "ptbs_pid");
- }
- // 수진이력 조회
- dsf_copyDsWithPrefix(ds_main_h_admi_admi, ds_hidden_rcv_h_admi_admi, "admi_");
- if (!utlf_isNull(ds_main_h_admi_admi.getColumnInfo("admi_acptno")))
- ds_main_h_admi_admi.updateColID("admi_acptno", "clbs_acptno");
- else
- ds_main_h_admi_admi.addColumn("admi_acptno", "string");
- if (!utlf_isNull(ds_main_h_admi_admi.getColumnInfo("admi_judgdg")))
- ds_main_h_admi_admi.updateColID("admi_judgdg", "clbs_judgdg");
- else
- ds_main_h_admi_admi.addColumn("admi_judgdg", "string");
- if (!utlf_isNull(ds_main_h_admi_admi.getColumnInfo("admi_docuseqno")))
- ds_main_h_admi_admi.updateColID("admi_docuseqno", "clbs_docuseqno");
- else
- ds_main_h_admi_admi.addColumn("admi_docuseqno", "string");
- if (!utlf_isNull(ds_main_h_admi_admi.getColumnInfo("admi_clamym")))
- ds_main_h_admi_admi.updateColID("admi_clamym", "clbs_clamym");
- else
- ds_main_h_admi_admi.addColumn("admi_clamym", "string");
- if (!utlf_isNull(ds_main_h_admi_admi.getColumnInfo("admi_clamd")))
- ds_main_h_admi_admi.updateColID("admi_clamd", "clbs_clamd");
- else
- ds_main_h_admi_admi.addColumn("admi_clamd", "string");
- if (!utlf_isNull(ds_main_h_admi_admi.getColumnInfo("admi_pidsn")))
- ds_main_h_admi_admi.updateColID("admi_pidsn", "clbs_pidsn");
- else
- ds_main_h_admi_admi.addColumn("admi_pidsn", "string");
- }
- }
- function cf_TRPMC02404(sSvcId, nErrorCode, sErrorMsg) {
- arErrorCode.push(sSvcId, nErrorCode);
- }
- function fSearchIscl() {
- var oParam = {};
- oParam.id = "TRPMC02405";
- oParam.service = "patinfomngtapp.ERSubtApp";
- oParam.method = "reqGetErIscl";
- oParam.inds = "req=ds_send_data1";
- oParam.outds = "ds_hidden_rcv_h_iscl_iscl=iscl ds_main_h_iscl_sum_iscl_sum=iscl_sum";
- oParam.async = false;
- tranf_submit(oParam);
- fGetIscl();
- }
- //처방내역조회
- function fGetIscl() {
- dsf_setDefaultVal(ds_hidden_rcv_h_iscl_iscl, "estmmncd:0000,hosinresncd:00,hosinhosoutflag:-");
- ds_main_h_iscl_iscl.copyData(ds_hidden_rcv_h_iscl_iscl);
- ds_main_h_iscl_sum_iscl_sum.copyData(ds_main_h_iscl_sum_iscl_sum);
- fEactlistClick0();
- }
- //재계산
- function fChgPayFlag() {
- ds_send_data2.copyData(ds_node_bk_send_data2);
- //보험단가,자보단가,식대급여단가적용등에 대한 재계산
- var iSelRow = 0;
- for (var a = 0; a < ds_main_h_iscl_iscl.rowcount; a++) {
- if (ds_main_h_iscl_iscl.getRowType(a) == Dataset.ROWTYPE_UPDATE) {
- ds_send_data2.copyRow(0, ds_main_h_iscl_iscl, a);
- }
- }
- var oParam = {};
- oParam.id = "TXPMC02403";
- oParam.service = "aftjudgapp.InAftJudg";
- oParam.method = "reqGetERCalcScorCd";
- oParam.inds = "req=ds_send_data2";
- oParam.outds = "ds_temp_mech=mech";
- oParam.async = false;
- oParam.callback = "cf_TXPMC02403";
- tranf_submit(oParam);
- if (arErrorCode.pop("TXPMC02403") > -1) {
- b = 1;
- for (var a = 0; a < ds_main_h_iscl_iscl.rowcount; a++) {
- if (ds_main_h_iscl_iscl.getRowType(a) == Dataset.ROWTYPE_UPDATE) {
- ds_main_h_iscl_iscl.setColumn(a, "appunitcost", ds_temp_mech.getColumn(b, "unitcost"));
- ds_main_h_iscl_iscl.setColumn(a, "totordamt", ds_temp_mech.getColumn(b, "totordamt"));
- ds_main_h_iscl_iscl.setColumn(a, "ownbamt", ds_temp_mech.getColumn(b, "ownbamt"));
- ds_main_h_iscl_iscl.setColumn(a, "payamt", ds_temp_mech.getColumn(b, "payamt"));
- ds_main_h_iscl_iscl.setColumn(a, "payownbamt", ds_temp_mech.getColumn(b, "payownbamt"));
- ds_main_h_iscl_iscl.setColumn(a, "payinsubamt", ds_temp_mech.getColumn(b, "payinsubamt"));
- ds_main_h_iscl_iscl.setColumn(a, "nopyamt", ds_temp_mech.getColumn(b, "nopyamt"));
- ds_main_h_iscl_iscl.setColumn(a, "nopyownbamt", ds_temp_mech.getColumn(b, "nopyownbamt"));
- ds_main_h_iscl_iscl.setColumn(a, "nopyinsubamt", ds_temp_mech.getColumn(b, "nopyinsubamt"));
- ds_main_h_iscl_iscl.setColumn(a, "specamt", ds_temp_mech.getColumn(b, "specamt"));
- ds_main_h_iscl_iscl.setColumn(a, "specownbamt", ds_temp_mech.getColumn(b, "specownbamt"));
- ds_main_h_iscl_iscl.setColumn(a, "specinsubamt", ds_temp_mech.getColumn(b, "specinsubamt"));
- b = b + 1;
- }
- }
- ds_temp_mech.clearData();
- }
- //행삭제 부분처리
- for (var a = 0; a < ds_main_h_iscl_iscl.rowcount; a++) {
- if (ds_main_h_iscl_iscl.getRowType(a) == Dataset.ROWTYPE_DELETE) {
- ds_main_h_iscl_iscl.deleteRow(a);
- }
- }
- }
- function cf_TXPMC02403(sSvcId, nErrorCode, sErrorMsg) {
- arErrorCode.push(sSvcId, nErrorCode);
- }
- function fRowDelete() {
- var iRow = ds_main_h_iscl_iscl.rowposition;
- grdf_setStatus(grd_iscl, "D", [iRow]);
- }
- //실시내역 클릭시
- function fEactlistClick0() {
- var iRow = ds_main_h_iscl_iscl.rowposition;
- var iscl_insukind = ds_main_h_iscl_iscl.getColumn(iRow, "insukind");
- dsft_init_suppkind.filterstr = "up == '" + iscl_insukind + "' && (io == 'A' || io == 'I') ";
- }
- //내역저장
- function fSave() {
- var iRow = ds_main_h_admi_admi.rowposition;
- if (utlf_transNullToEmpty(ds_main_h_admi_admi.getColumn(iRow, "clbs_judgdg")) == "" ||
- ds_main_h_admi_admi.getColumn(iRow, "clbs_judgdg") == "-") {
- var rtn = sysf_messageBox("심사차수가 없습니다. 저장하시겠습니까?", "Q999");
- if (rtn == 7) { // Yes : 6 / No : 7 / Cancel : 2
- return;
- }
- }
- ds_send_data3_req.clearData();
- dsf_makeValue(ds_send_data3_req, "pid", "string", ds_send_data1.getColumn(0, "pid"));
- dsf_makeValue(ds_send_data3_req, "indd", "string", ds_send_data1.getColumn(0, "indd"));
- dsf_makeValue(ds_send_data3_req, "cretno", "string", ds_send_data1.getColumn(0, "cretno"));
- dsf_makeValue(ds_send_data3_req, "insukind", "string", ds_send_data1.getColumn(0, "insukind"));
- dsf_makeValue(ds_send_data3_req, "appfromdd", "string", ds_send_data1.getColumn(0, "appfromdd"));
- dsf_makeValue(ds_send_data3_req, "apptodd", "string", ds_send_data1.getColumn(0, "apptodd"));
- dsf_makeValue(ds_send_data3_req, "rcptdd", "string", ds_send_data1.getColumn(0, "rcptdd"));
- dsf_makeValue(ds_send_data3_req, "rcptno", "string", ds_send_data1.getColumn(0, "rcptno"));
- dsf_makeValue(ds_send_data3_req, "rcptseqno", "string", ds_send_data1.getColumn(0, "rcptseqno"));
- dsf_makeValue(ds_send_data3_req, "clamdd", "string", ds_send_data1.getColumn(0, "clamdd"));
- dsf_makeValue(ds_send_data3_req, "erdebtamt", "string", ds_send_data1.getColumn(0, "erdebtamt"));
- dsf_makeValue(ds_send_data3_req, "rcptdd_espm", "string", ds_send_data1.getColumn(0, "rcptdd_espm"));
- dsf_makeValue(ds_send_data3_req, "rcptamt_espm", "string", ds_send_data1.getColumn(0, "rcptamt_espm"));
- ds_send_data3_h_iscl.copyData(ds_main_h_iscl_iscl);
- //if(submit("TXPMC02404")) {
- var oParam = {};
- oParam.id = "TXPMC02404";
- oParam.service = "patinfomngtapp.ERSubtApp";
- oParam.method = "reqSetErBudAmt";
- oParam.inds = "req=ds_send_data3_req iscl=ds_send_data3_h_iscl";
- oParam.outds = "ds_hidden_rcv_h_admi_admi=admi ds_hidden_rcv_h_iscl_iscl=iscl ds_hidden_rcv_h_iscl_sum_iscl_sum=iscl_sum";
- oParam.async = false;
- oParam.callback = "cf_TXPMC02404";
- tranf_submit(oParam);
- if (arErrorCode.pop("TXPMC02404") > -1) {
- // 수진이력 조회
- dsf_copyDsWithPrefix(ds_main_h_admi_admi, ds_hidden_rcv_h_admi_admi, "admi_");
- ds_main_h_admi_admi.updateColID("admi_clamym", "clbs_clamym");
- ds_main_h_admi_admi.updateColID("admi_clamdg", "clbs_clamdg");
- ds_main_h_admi_admi.updateColID("admi_pidsn", "clbs_pidsn");
- ds_main_h_admi_admi.updateColID("admi_judgdg", "clbs_judgdg");
- fGetIscl();
- }
- }
- function cf_TXPMC02404(sSvcId, nErrorCode, sErrorMsg) {
- arErrorCode.push(sSvcId, nErrorCode);
- }
- //명세서 출력
- function fDetailPrint() {
- var oParam = {};
- oParam.id = "TRPMC02406";
- oParam.service = "patinfomngtapp.ERSubtApp";
- oParam.method = "reqGetPatClamDocuPrntData1";
- oParam.inds = "req=ds_send_data1";
- oParam.outds = "ds_hidden_list1_main=main ds_hidden_list2_diag=diag ds_hidden_list3_amt=amt ds_hidden_list4_prcp=prcp ds_hidden_list5_prcp_sub=prcp_sub";
- oParam.async = false;
- oParam.callback = "cf_TRPMC02406";
- tranf_submit(oParam);
- if (arErrorCode.pop("TRPMC02406") > -1) {
- ds_send_report1_list1_main.copyData(ds_hidden_list1_main);
- ds_send_report1_list2_diag.copyData(ds_hidden_list2_diag);
- ds_send_report1_list3_amt.copyData(ds_hidden_list3_amt);
- ds_send_report1_list4_prcp.copyData(ds_hidden_list4_prcp);
- ds_send_report1_list5_prcp_sub.copyData(ds_hidden_list5_prcp_sub);
- var objDOM1 = rptf_createDOM();
- var objParam = new Object();
- rptf_setNodeListToDOM(objDOM1, "root/send/report1/list1/main", ds_hidden_list1_main);
- rptf_setNodeListToDOM(objDOM1, "root/send/report1/list2/diag", ds_hidden_list2_diag);
- rptf_setNodeListToDOM(objDOM1, "root/send/report1/list3/amt", ds_hidden_list3_amt);
- rptf_setNodeListToDOM(objDOM1, "root/send/report1/list4/prcp", ds_hidden_list4_prcp);
- rptf_setNodeListToDOM(objDOM1, "root/send/report1/list6/clsp", ds_hidden_list5_prcp_sub);
- objParam.xml_data_XML1 = objDOM1.documentElement.source;
- var objDOM2 = rptf_createDOM();
- objParam.xml_data_XML2 = objDOM2.documentElement.source;
- rptf_setNodeListToDOM(objDOM2, "root/send/report1/list4/prcp", ds_hidden_list4_prcp);
- var option = "open=1;save=1;directprint=0;printdialog=1;print=1;zoom=0";
- rptf_exeReportPreview30(["RPPMC02405"], [objParam], option);
- // 6. 보고서(나머지)로 데이터 보내기(뒷장의 존재유무를 sorting1 값으로 판단한다. 이전에는 edicd로 했는데 소계에서는 빈값이어서 변경함)
- var sorting1 = ds_hidden_list5_prcp_sub.getColumn(0, "prcp_sub_sorting1");
- if (sorting1 != "") {
- ds_send_report2_list1_main.copyData(ds_hidden_list1);
- ds_send_report2_list5_prcp_sub.copyData(ds_hidden_list5_prcp_sub);
- ds_send_report1_list2_diag.copyData(ds_hidden_list2_diag);
- var objParam = new Object();
- var objDOM1 = rptf_createDOM();
- rptf_setNodeListToDOM(objDOM1, "root/send/report2/list1/main", ds_send_report2_list1_main);
- rptf_setNodeListToDOM(objDOM1, "root/send/report2/list5/prcp_sub", ds_send_report2_list5_prcp_sub);
- objParam.xml_data_XML1 = objDOM.documentElement.source;
- var objDOM2 = rptf_createDOM();
- rptf_setNodeListToDOM(objDOM2, "root/send/report1/list2/diag", ds_send_report1_list2_diag);
- objParam.xml_data_XML2 = objDOM2.documentElement.source;
- var option = "open=1;save=1;directprint=0;printdialog=1;print=1;zoom=0";
- rptf_exeReportPreview30(["RPPMC02406"], [objParam], option);
- }
- ds_send_report1_list1_main.copyData(ds_node_bk_send_report1_list1_main);
- ds_send_report1_list2_diag.copyData(ds_node_bk_send_report1_list2_diag);
- ds_send_report1_list3_amt.copyData(ds_node_bk_send_report1_list3_amt);
- ds_send_report1_list4_prcp.copyData(ds_node_bk_send_report1_list4_prcp);
- ds_send_report1_list5_prcp_sub.copyData(ds_node_bk_send_report1_list5_prcp_sub);
- ds_send_report2_list1_main.copyData(ds_node_bk_send_report2_list1_main);
- ds_send_report2_list2_diag.copyData(ds_node_bk_send_report2_list2_diag);
- ds_send_report2_list3_amt.copyData(ds_node_bk_send_report2_list3_amt);
- ds_send_report2_list4_prcp.copyData(ds_node_bk_send_report2_list4_prcp);
- ds_send_report2_list5_prcp_sub.copyData(ds_node_bk_send_report2_list5_prcp_sub);
- }
- }
- function cf_TRPMC02406(sSvcId, nErrorCode, sErrorMsg) {
- arErrorCode.push(sSvcId, nErrorCode);
- }
- //리스트 호출
- function fPopUpList() {
- frmf_modal("SMPMC02402", "SMPMC02402", "", "", "", "", "", "", "", "", "", "", "M");
- }
- //샘파일 생성
- function fCreateSamFile() {
- var oParam = {};
- oParam.id = "TRPMC02408";
- oParam.service = "patinfomngtapp.ERSubtApp";
- oParam.method = "reqGetErubudSamFile";
- oParam.inds = "req=ds_send_data1";
- oParam.outds = "ds_hidden_rcv_h_samfile_samfile=samfile";
- oParam.async = false;
- tranf_submit(oParam);
-
- var fileName = "C:\\file_upload\\" + "save.txt";
- ds_hidden_rcv_h_samfile_samfile.saveText(fileName, "\n", "|", "'", false, true);
- }
- //통합기록조회
- function fBtn_SMMRI00400() {
- var wndobj = frmf_findPopup("SMMRI00400"); //getOpenWindow
- if (wndobj != null) {
- frmf_setParameter("SMMRI00400_param_pid", ds_main_ptbs.getColumn(0, "ptbs_pid"));
- fInitalize();
- }
- else {
- frmf_setParameter("SMMRI00400_param_chosflag", "I");
- frmf_setParameter("SMMRI00400_param_pid", ds_main_ptbs.getColumn(0, "ptbs_pid"));
- frmf_modal("SMMRI00400", "SMMRI00400", "", "", "1", "", "", "", "", "left:0; right:200; width:750; height:800;", "", "", "M");
- }
- }
- // header파일 중 SMPMC02401.js 파일 끝
- function group3_ipt_pid_onkeydown(obj: Edit, e: KeyEventInfo) {
- if (e.keycode == 13) {
- obj.updateToDataset();
- btn_ojpid.setFocus();
- dsf_makeValue(ds_main, "popupendflag", "string", "");
- ds_main.setColumn(0, "popupendflag", "pass");
- fOJBaseInfoRef();
- }
- }
- function group3_ipt_rrgstno1_onkeydown(obj: Edit, e: KeyEventInfo) {
- if (e.keycode == 13) {
- obj.updateToDataset();
- ds_send_data4.setColumn(0, "autoflag", "Y");
- btn_ptbsrrgstno.click();
- }
- }
- function group3_btn_ptbsrrgstno_onclick(obj: Button, e: ClickEventInfo) {
- var ptbs_rrgstno1 = utlf_transNullToEmpty(ds_main_ptbs.getColumn(0, "ptbs_rrgstno1"));
- var ptbs_rrgstno2 = utlf_transNullToEmpty(ds_main_ptbs.getColumn(0, "ptbs_rrgstno2"));
- if ((ptbs_rrgstno1 == "" || ptbs_rrgstno1 == " ") && (ptbs_rrgstno2 == "" || ptbs_rrgstno2 == " ")) {
- ds_send_data4.clearData();
- ds_send_data4.addRow();
- }
- else {
- ds_send_data4.setColumn(0, "rrgstno1", ds_main_ptbs.getColumn(0, "ptbs_rrgstno1"));
- ds_send_data4.setColumn(0, "rrgstno2", ds_main_ptbs.getColumn(0, "ptbs_rrgstno2"));
- ds_send_data4.setColumn(0, "srchcond", "3")
- }
- var objArg = new Object();
- objArg.arg_ds_send = ds_send_data4;
- frmf_modal("SPPMC02500", "SPPMC02500", objArg, "", "1", "150", "150", "", "", "", "", "", "M");
- ds_send_data4.clearData();
- ds_send_data4.addRow();
- fOJBaseInfoRef();
- }
- function group3_btn_ptbshngnm_onclick(obj: Button, e: ClickEventInfo) {
- var ptbs_hngnm = utlf_transNullToEmpty(ds_main_ptbs.getColumn(0, "ptbs_hngnm"));
- if (ptbs_hngnm == "" || ptbs_hngnm == " ") {
- ds_send_data4.clearData();
- ds_send_data4.addRow();
- }
- else {
- ds_send_data4.setColumn(0, "hngnm", ds_main_ptbs.getColumn(0, "ptbs_hngnm"));
- ds_send_data4.setColumn(0, "srchcond", "2");
- }
- var objArg = new Object();
- objArg.arg_ds_send = ds_send_data4;
- frmf_modal("SPPMC02500", "SPPMC02500", objArg, "", "1", "150", "150", "", "", "", "", "", "M");
- ds_send_data4.clearData();
- ds_send_data4.addRow();
- fOJBaseInfoRef();
- }
- function group3_ipt_hngnm_onkeydown(obj: Edit, e: KeyEventInfo) {
- if (e.keycode == 13) {
- obj.updateToDataset();
- ds_send_data4.setColumn(0, "autoflag", "Y");
- btn_ptbshngnm.click()
- }
- }
- function group3_btn_ojpid_onclick(obj: Button, e: ClickEventInfo) {
- var ptbs_pid = utlf_transNullToEmpty(ds_main_ptbs.getColumn(0, "ptbs_pid"));
- if (ptbs_pid == "" || ptbs_pid == " ") {
- ds_send_data4.clearData();
- ds_send_data4.addRow();
- }
- else {
- ds_send_data4.setColumn(0, "pid", ds_main_ptbs.getColumn(0, "ptbs_pid"));
- ds_send_data4.setColumn(0, "srchcond", "1");
- }
- var objArg = new Object();
- objArg.arg_ds_send = ds_send_data4;
- frmf_modal("SPPMC02500", "SPPMC02500", objArg, "", "1", "150", "150", "", "", "", "", "", "M");
- ds_send_data4.clearData();
- ds_send_data4.addRow();
- fOJBaseInfoRef();
- }
- function group3_button1_onclick(obj: Button, e: ClickEventInfo) {
- fSearchIscl();
- }
- function group3_button4_onclick(obj: Button, e: ClickEventInfo) {
- fPopUpList();
- }
- function group3_button5_onclick(obj: Button, e: ClickEventInfo) {
- fDetailPrint();
- }
- function group3_button6_onclick(obj: Button, e: ClickEventInfo) {
- fCreateSamFile();
- }
- function group3_button7_onclick(obj: Button, e: ClickEventInfo) {
- fBtn_SMMRI00400();
- }
- function group3_grd_iscl_oncellclick(obj: Grid, e: GridClickEventInfo) {
- fEactlistClick0();
- }
- function group3_grd_admi_oncellclick(obj: Grid, e: GridClickEventInfo) {
- if (e.row >= 0 && e.col >= 0) {
- var iRow = ds_main_h_admi_admi.rowposition;
- ds_send_data1.setColumn(0, "pid", ds_main_h_admi_admi.getColumn(iRow, "admi_pid"));
- ds_send_data1.setColumn(0, "indd", ds_main_h_admi_admi.getColumn(iRow, "admi_indd"));
- ds_send_data1.setColumn(0, "cretno", ds_main_h_admi_admi.getColumn(iRow, "admi_cretno"));
- ds_send_data1.setColumn(0, "insukind", ds_main_h_admi_admi.getColumn(iRow, "admi_insukind"));
- if (ds_main_h_admi_admi.getColumn(iRow, "admi_appfromdd") == "00000000") {
- ds_send_data1.setColumn(0, "appfromdd", ds_main_h_admi_admi.getColumn(iRow, "admi_fromdd"));
- }
- else {
- ds_send_data1.setColumn(0, "appfromdd", ds_main_h_admi_admi.getColumn(iRow, "admi_appfromdd"));
- }
- if (ds_main_h_admi_admi.getColumn(iRow, "admi_appenddd") == "00000000") {
- ds_send_data1.setColumn(0, "apptodd", ds_main_h_admi_admi.getColumn(iRow, "admi_todd"));
- }
- else {
- ds_send_data1.setColumn(0, "apptodd", ds_main_h_admi_admi.getColumn(iRow, "admi_appenddd"));
- }
- ds_send_data1.setColumn(0, "calcpayflag", "%");
- ds_send_data1.setColumn(0, "clamdd", ds_main_h_admi_admi.getColumn(iRow, "admi_clamdd"));
- ds_send_data1.setColumn(0, "erdebtamt", ds_main_h_admi_admi.getColumn(iRow, "admi_erdebtamt"));
- ds_send_data1.setColumn(0, "rcptdd_espm", ds_main_h_admi_admi.getColumn(iRow, "admi_rcptdd_espm"));
- ds_send_data1.setColumn(0, "rcptamt_espm", ds_main_h_admi_admi.getColumn(iRow, "admi_rcptamt_espm"));
- ds_send_data1.setColumn(0, "rcptdd", ds_main_h_admi_admi.getColumn(iRow, "admi_rcptdd"));
- ds_send_data1.setColumn(0, "rcptno", ds_main_h_admi_admi.getColumn(iRow, "admi_rcptno"));
- ds_send_data1.setColumn(0, "rcptseqno", ds_main_h_admi_admi.getColumn(iRow, "admi_rcptseqno"));
- ds_send_data1.setColumn(0, "clamym", ds_main_h_admi_admi.getColumn(iRow, "clbs_clamym")); //admi_clamym --> clbs_clamym
- ds_send_data1.setColumn(0, "clamdg", ds_main_h_admi_admi.getColumn(iRow, "clbs_clamdg")); //admi_clamdg --> clbs_clamdg
- ds_send_data1.setColumn(0, "pidsn", ds_main_h_admi_admi.getColumn(iRow, "clbs_pidsn")); //admi_pidsn --> clbs_pidsn
- fSearchIscl();
- }
- }
- function group5_button2_onclick(obj: Button, e: ClickEventInfo) {
- fInitialize();
- }
- function group5_btn_calc_onclick(obj: Button, e: ClickEventInfo) {
- fChgPayFlag();
- }
- function group5_btn_save_onclick(obj: Button, e: ClickEventInfo) {
- fSave();
- }
- function group3_grd_iscl_onrbuttondown(obj: Grid, e: GridMouseEventInfo) {
- pmn_menu.trackPopup(e.screenX, e.screenY);
- return true;
- }]]></Script>
- </Form>
- </FDL>
|