123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955 |
- <?xml version="1.0" encoding="utf-8"?>
- <FDL version="1.5">
- <TypeDefinition url="..\..\..\default_typedef.xml"/>
- <Form id="SPAER01100" position="absolute 0 0 1126 251" titletext="사용자 화면 설정" oninit="SPAER01100_oninit" onload="SPAER01100_onload">
- <Layouts>
- <Layout>
- <Button position="absolute 938 222 1006 244" id="button1" class="btn4" visible="false" text="초기화" onclick="button1_onclick"/>
- <Button position="absolute 1009 222 1065 244" id="button2" class="btn4" text="저장" onclick="button2_onclick"/>
- <Button position="absolute 1068 222 1124 244" id="button3" class="btn4" text="취소" onclick="button3_onclick"/>
- <Div id="grp_body" taborder="1" text="grp_body" position="absolute 0 0 1125 216">
- <Layouts>
- <Layout>
- <Div id="group2" taborder="0" text="group2" position="absolute 0 0 1125 216" anchor="default">
- <Layouts>
- <Layout>
- <Tab id="switch1" taborder="0" onchanged="switch1_onchanged" tabindex="0" position="absolute 0 0 1124 216" anchor="default">
- <Tabpages>
- <Tabpage id="case1" text="전체처방">
- <Layouts>
- <Layout>
- <Grid id="grd_ordlist1" taborder="3" binddataset="ds_main_list_ordlist1" useinputpanel="false" position="absolute 0 0 1124 91" anchor="default">
- <Formats>
- <Format id="default">
- <Columns>
- <Column size="25" band="left"/>
- <Column size="16" band="left"/>
- <Column size="62" band="left"/>
- <Column size="61" band="left"/>
- <Column size="38" band="left"/>
- <Column size="60" band="left"/>
- <Column size="73"/>
- <Column size="58"/>
- <Column size="69"/>
- <Column size="40"/>
- <Column size="68"/>
- <Column size="42"/>
- <Column size="76"/>
- <Column size="124"/>
- <Column size="59"/>
- <Column size="35"/>
- <Column size="98"/>
- <Column size="41"/>
- <Column size="50"/>
- <Column size="102"/>
- <Column size="80"/>
- <Column size="137"/>
- <Column size="31"/>
- <Column size="31"/>
- <Column size="101"/>
- <Column size="62"/>
- <Column size="60"/>
- <Column size="68"/>
- <Column size="100"/>
- <Column size="100"/>
- <Column size="39"/>
- <Column size="49"/>
- <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"/>
- <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="100"/>
- <Column size="0"/>
- </Columns>
- <Rows>
- <Row size="24" band="head"/>
- <Row size="24"/>
- </Rows>
- <Band id="head">
- <Cell/>
- <Cell col="1"/>
- <Cell col="2" text="등록번호1"/>
- <Cell col="3" text="성명"/>
- <Cell col="4" text="S/A"/>
- <Cell col="5" text="주민번호"/>
- <Cell col="6" text="진료과"/>
- <Cell col="7" text="진료의"/>
- <Cell col="8" text="지정검사의"/>
- <Cell col="9" colspan="2" text="선택진료의" taborder="undefined"/>
- <Cell col="11" text="포터블"/>
- <Cell col="12" text="처방코드"/>
- <Cell col="13" text="처방일자"/>
- <Cell col="14" text="처방상태"/>
- <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="취소코드"/>
- <Cell col="28" text="전화번호1"/>
- <Cell col="29" text="전화번호2"/>
- <Cell col="30" text="키"/>
- <Cell col="31" text="몸무게"/>
- <Cell col="32" text="execprcpuniqno"/>
- <Cell col="33" text="prcpexecdeptcd"/>
- <Cell col="34" text="excuroomcd"/>
- <Cell col="35" text="inflag"/>
- <Cell col="36" text="rcptacptyn"/>
- <Cell col="37" text="ExecBaseFlag"/>
- <Cell col="38" text="excupartcd"/>
- <Cell col="39" text="modality"/>
- <Cell col="40" text="execrem"/>
- <Cell col="41" text="prcpdelivefact"/>
- <Cell col="42" text="carecnfmdd"/>
- <Cell col="43" text="prcpkindcd"/>
- <Cell col="44" text="rcptno"/>
- <Cell col="45" text="acptseqno"/>
- <Cell col="46" text="prcpgenrflag"/>
- <Cell col="47" text="orddd"/>
- <Cell col="48" text="orddeptcd"/>
- <Cell col="49" text="rcptdd"/>
- <Cell col="50" text="orddrid"/>
- <Cell col="51" text="prcpno"/>
- <Cell col="52" text="EqmtIFYn"/>
- <Cell col="53" text="basesuppdeptcd"/>
- <Cell col="54" text="cretno"/>
- <Cell col="55" text="wardcd"/>
- <Cell col="56" text="rsrvdt"/>
- <Cell col="57" text="rgstdeptcd"/>
- <Cell col="58" text="rgstrid"/>
- <Cell col="59" text="inclprcpcd"/>
- <Cell col="60" text="lrgcd"/>
- <Cell col="61" text="mdlcd"/>
- <Cell col="62" text="actorddd"/>
- <Cell col="63" text="examroomnm"/>
- <Cell col="64" text="prcphistno"/>
- <Cell col="65" text="pacsnocretyn"/>
- <Cell col="66" text="execprcpstatcd"/>
- <Cell col="67" text="caption1"/>
- <Cell col="68" text="caption2"/>
- <Cell col="69" text="caption3"/>
- <Cell col="70" text="cnclresncdnm"/>
- <Cell col="71" text="rsrvexmptmplcd"/>
- <Cell col="72" text="rrsgtno2"/>
- <Cell col="73" text="clincstdycd"/>
- <Cell col="74" text="aftrcptinfo"/>
- <Cell col="75" text="급비"/>
- <Cell col="76" text="급비"/>
- </Band>
- <Band id="body">
- <Cell celltype="head" text="expr:currow+1"/>
- <Cell col="1" displaytype="checkbox" edittype="checkbox" text="bind:check"/>
- <Cell col="2" text="bind:pid"/>
- <Cell col="3" text="bind:hngnm"/>
- <Cell col="4" text="bind:sna"/>
- <Cell col="5" text="bind:rrgstno1"/>
- <Cell col="6" text="bind:orddepthngnm"/>
- <Cell col="7" text="bind:orddrnm"/>
- <Cell col="8" text="bind:selectdrid"/>
- <Cell col="9" text="bind:choiordflag"/>
- <Cell col="10" displaytype="combo" edittype="combo" text="bind:specdrid" combodataset="ds_init_specdridlist" combocodecol="userid" combodatacol="usernm" enable="true"/>
- <Cell col="11" text="bind:portprcpflag"/>
- <Cell col="12" style="align:left;" text="bind:calcscorcd"/>
- <Cell col="13" displaytype="date" style="align:left;" text="bind:prcpdt" mask="yyyy-MM-dd HH:mm" calendardisplaynulltype="nulltext"/>
- <Cell col="14" style="align:left;" text="bind:statcd" enable="false"/>
- <Cell col="15" text="bind:rcptyn"/>
- <Cell col="16" displaytype="combo" edittype="combo" text="bind:excuroomcd" combodataset="ds_cmb_initexecroom" combocodecol="excuroomcdid" combodatacol="excuroomcdnm"/>
- <Cell col="17" text="bind:roomcd"/>
- <Cell col="18" text="bind:roomnm"/>
- <Cell col="19" displaytype="date" style="align:left;" text="bind:srchrsrvdt" wordwrap="char" mask="yyyy-MM-dd HH:mm" calendardisplaynulltype="nulltext"/>
- <Cell col="20" displaytype="date" text="bind:prcphopedd" calendardisplaynulltype="nulltext"/>
- <Cell col="21" style="align:left;" text="bind:prcpnm"/>
- <Cell col="22" text="bind:prcpqty"/>
- <Cell col="23" text="bind:execprcptims"/>
- <Cell col="24" displaytype="date" style="align:left;" text="bind:execdt" wordwrap="char" mask="yyyy-MM-dd HH:mm" calendardisplaynulltype="nulltext"/>
- <Cell col="25" displaytype="combo" edittype="combo" text="bind:execrid1" combodataset="ds_cmb_initexecrid" combocodecol="execrid1cdid" combodatacol="execrid1cdnm"/>
- <Cell col="26" text="bind:rsrvrnm"/>
- <Cell col="27" text="bind:basecd"/>
- <Cell col="28" text="bind:hometel"/>
- <Cell col="29" text="bind:mpphontel"/>
- <Cell col="30" text="bind:hight"/>
- <Cell col="31" text="bind:weight"/>
- <Cell col="32" text="bind:execprcpuniqno"/>
- <Cell col="33" text="bind:prcpexecdeptcd"/>
- <Cell col="34" text="bind:inflag"/>
- <Cell col="35" text="bind:rcptacptyn"/>
- <Cell col="36" text="bind:execbaseflag"/>
- <Cell col="37" text="bind:excupartcd"/>
- <Cell col="38" text="bind:modality"/>
- <Cell col="39" text="bind:execrem"/>
- <Cell col="40" text="bind:prcpdelivefact"/>
- <Cell col="41" text="bind:carecnfmdd"/>
- <Cell col="42" text="bind:prcpkindcd"/>
- <Cell col="43" text="bind:rcptno"/>
- <Cell col="44" text="bind:acptseqno"/>
- <Cell col="45" text="bind:prcpgenrflag"/>
- <Cell col="46" text="bind:orddd"/>
- <Cell col="47" text="bind:orddeptcd"/>
- <Cell col="48" text="bind:rcptdd"/>
- <Cell col="49" text="bind:orddrid"/>
- <Cell col="50" text="bind:prcpno"/>
- <Cell col="51" text="bind:eqmtifyn"/>
- <Cell col="52" text="bind:basesuppdeptcd"/>
- <Cell col="53" text="bind:cretno"/>
- <Cell col="54" text="bind:wardcd"/>
- <Cell col="55" text="bind:rsrvdt"/>
- <Cell col="56" text="bind:rgstdeptcd"/>
- <Cell col="57" text="bind:rgstrid"/>
- <Cell col="58" text="bind:inclprcpcd"/>
- <Cell col="59" text="bind:lrgcd"/>
- <Cell col="60" text="bind:mdlcd"/>
- <Cell col="61" text="bind:actorddd"/>
- <Cell col="62" text="bind:examroomnm"/>
- <Cell col="63" text="bind:prcphistno"/>
- <Cell col="64" text="bind:pacsnocretyn"/>
- <Cell col="65" text="bind:execprcpstatcd"/>
- <Cell col="66" text="bind:tmpldata"/>
- <Cell col="67" text="bind:prcpdd"/>
- <Cell col="68" text="bind:rsrvrid"/>
- <Cell col="69" text="bind:cnclresncdnm"/>
- <Cell col="70" text="bind:rsrvexmptmplcd"/>
- <Cell col="71" text="bind:rrgstno2"/>
- <Cell col="72" text="bind:clincstdycd"/>
- <Cell col="73" text="bind:aftrcptinfo"/>
- <Cell col="74" text="bind:unrsrvexecyn"/>
- <Cell col="75" displaytype="combo" edittype="combo" text="bind:insukind" combodataset="ds_init_P0008" combocodecol="cdid" combodatacol="cdnm" enable="false"/>
- <Cell col="76" text="bind:specdrid"/>
- </Band>
- </Format>
- </Formats>
- </Grid>
- <Grid id="grd_ordlist1_resize" taborder="4" binddataset="ds_temp_list_ordlist1" scrollpixel="all" useinputpanel="false" cellsizingtype="col" cellmovingtype="col" ondragmove="switch1_resize_ondragmove" position="absolute 0 98 1124 189" anchor="default">
- <Formats>
- <Format id="default">
- <Columns>
- <Column size="25" band="left"/>
- <Column size="16" band="left"/>
- <Column size="62" band="left"/>
- <Column size="61" band="left"/>
- <Column size="38" band="left"/>
- <Column size="60" band="left"/>
- <Column size="73"/>
- <Column size="58"/>
- <Column size="72"/>
- <Column size="40"/>
- <Column size="68"/>
- <Column size="42"/>
- <Column size="76"/>
- <Column size="124"/>
- <Column size="59"/>
- <Column size="35"/>
- <Column size="98"/>
- <Column size="41"/>
- <Column size="50"/>
- <Column size="102"/>
- <Column size="80"/>
- <Column size="137"/>
- <Column size="31"/>
- <Column size="31"/>
- <Column size="101"/>
- <Column size="62"/>
- <Column size="60"/>
- <Column size="68"/>
- <Column size="100"/>
- <Column size="100"/>
- <Column size="39"/>
- <Column size="49"/>
- <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"/>
- <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="100"/>
- <Column size="0"/>
- </Columns>
- <Rows>
- <Row size="24" band="head"/>
- <Row size="24"/>
- </Rows>
- <Band id="head">
- <Cell/>
- <Cell col="1"/>
- <Cell col="2" text="등록번호1"/>
- <Cell col="3" text="성명"/>
- <Cell col="4" text="S/A"/>
- <Cell col="5" text="주민번호"/>
- <Cell col="6" text="진료과"/>
- <Cell col="7" text="진료의"/>
- <Cell col="8" text="지정검사의"/>
- <Cell col="9" colspan="2" text="선택진료의" taborder="undefined"/>
- <Cell col="11" text="포터블"/>
- <Cell col="12" text="처방코드"/>
- <Cell col="13" text="처방일자"/>
- <Cell col="14" text="처방상태"/>
- <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="취소코드"/>
- <Cell col="28" text="전화번호1"/>
- <Cell col="29" text="전화번호2"/>
- <Cell col="30" text="키"/>
- <Cell col="31" text="몸무게"/>
- <Cell col="32" text="execprcpuniqno"/>
- <Cell col="33" text="prcpexecdeptcd"/>
- <Cell col="34" text="excuroomcd"/>
- <Cell col="35" text="inflag"/>
- <Cell col="36" text="rcptacptyn"/>
- <Cell col="37" text="ExecBaseFlag"/>
- <Cell col="38" text="excupartcd"/>
- <Cell col="39" text="modality"/>
- <Cell col="40" text="execrem"/>
- <Cell col="41" text="prcpdelivefact"/>
- <Cell col="42" text="carecnfmdd"/>
- <Cell col="43" text="prcpkindcd"/>
- <Cell col="44" text="rcptno"/>
- <Cell col="45" text="acptseqno"/>
- <Cell col="46" text="prcpgenrflag"/>
- <Cell col="47" text="orddd"/>
- <Cell col="48" text="orddeptcd"/>
- <Cell col="49" text="rcptdd"/>
- <Cell col="50" text="orddrid"/>
- <Cell col="51" text="prcpno"/>
- <Cell col="52" text="EqmtIFYn"/>
- <Cell col="53" text="basesuppdeptcd"/>
- <Cell col="54" text="cretno"/>
- <Cell col="55" text="wardcd"/>
- <Cell col="56" text="rsrvdt"/>
- <Cell col="57" text="rgstdeptcd"/>
- <Cell col="58" text="rgstrid"/>
- <Cell col="59" text="inclprcpcd"/>
- <Cell col="60" text="lrgcd"/>
- <Cell col="61" text="mdlcd"/>
- <Cell col="62" text="actorddd"/>
- <Cell col="63" text="examroomnm"/>
- <Cell col="64" text="prcphistno"/>
- <Cell col="65" text="pacsnocretyn"/>
- <Cell col="66" text="execprcpstatcd"/>
- <Cell col="67" text="caption1"/>
- <Cell col="68" text="caption2"/>
- <Cell col="69" text="caption3"/>
- <Cell col="70" text="cnclresncdnm"/>
- <Cell col="71" text="rsrvexmptmplcd"/>
- <Cell col="72" text="rrsgtno2"/>
- <Cell col="73" text="clincstdycd"/>
- <Cell col="74" text="aftrcptinfo"/>
- <Cell col="75" text="급비"/>
- <Cell col="76" text="급비"/>
- </Band>
- <Band id="body">
- <Cell celltype="head" text="expr:currow+1"/>
- <Cell col="1" displaytype="checkbox" edittype="checkbox" text="bind:check"/>
- <Cell col="2" text="bind:pid"/>
- <Cell col="3" text="bind:hngnm"/>
- <Cell col="4" text="bind:sna"/>
- <Cell col="5" text="bind:rrgstno1"/>
- <Cell col="6" text="bind:orddepthngnm"/>
- <Cell col="7" text="bind:orddrnm"/>
- <Cell col="8" text="bind:selectdrid"/>
- <Cell col="9" text="bind:choiordflag"/>
- <Cell col="10" displaytype="combo" edittype="combo" text="bind:specdrid" combodataset="ds_init_specdridlist" combocodecol="userid" combodatacol="usernm" enable="true"/>
- <Cell col="11" text="bind:portprcpflag"/>
- <Cell col="12" style="align:left;" text="bind:calcscorcd"/>
- <Cell col="13" displaytype="date" style="align:left;" text="bind:prcpdt" mask="yyyy-MM-dd HH:mm" calendardisplaynulltype="nulltext"/>
- <Cell col="14" style="align:left;" text="bind:statcd" enable="false"/>
- <Cell col="15" text="bind:rcptyn"/>
- <Cell col="16" displaytype="combo" edittype="combo" text="bind:excuroomcd" combodataset="ds_cmb_initexecroom" combocodecol="excuroomcdid" combodatacol="excuroomcdnm"/>
- <Cell col="17" text="bind:roomcd"/>
- <Cell col="18" text="bind:roomnm"/>
- <Cell col="19" displaytype="date" style="align:left;" text="bind:srchrsrvdt" wordwrap="char" mask="yyyy-MM-dd HH:mm" calendardisplaynulltype="nulltext"/>
- <Cell col="20" displaytype="date" text="bind:prcphopedd" calendardisplaynulltype="nulltext"/>
- <Cell col="21" style="align:left;" text="bind:prcpnm"/>
- <Cell col="22" text="bind:prcpqty"/>
- <Cell col="23" text="bind:execprcptims"/>
- <Cell col="24" displaytype="date" style="align:left;" text="bind:execdt" wordwrap="char" mask="yyyy-MM-dd HH:mm" calendardisplaynulltype="nulltext"/>
- <Cell col="25" displaytype="combo" edittype="combo" text="bind:execrid1" combodataset="ds_cmb_initexecrid" combocodecol="execrid1cdid" combodatacol="execrid1cdnm"/>
- <Cell col="26" text="bind:rsrvrnm"/>
- <Cell col="27" text="bind:basecd"/>
- <Cell col="28" text="bind:hometel"/>
- <Cell col="29" text="bind:mpphontel"/>
- <Cell col="30" text="bind:hight"/>
- <Cell col="31" text="bind:weight"/>
- <Cell col="32" text="bind:execprcpuniqno"/>
- <Cell col="33" text="bind:prcpexecdeptcd"/>
- <Cell col="34" text="bind:inflag"/>
- <Cell col="35" text="bind:rcptacptyn"/>
- <Cell col="36" text="bind:execbaseflag"/>
- <Cell col="37" text="bind:excupartcd"/>
- <Cell col="38" text="bind:modality"/>
- <Cell col="39" text="bind:execrem"/>
- <Cell col="40" text="bind:prcpdelivefact"/>
- <Cell col="41" text="bind:carecnfmdd"/>
- <Cell col="42" text="bind:prcpkindcd"/>
- <Cell col="43" text="bind:rcptno"/>
- <Cell col="44" text="bind:acptseqno"/>
- <Cell col="45" text="bind:prcpgenrflag"/>
- <Cell col="46" text="bind:orddd"/>
- <Cell col="47" text="bind:orddeptcd"/>
- <Cell col="48" text="bind:rcptdd"/>
- <Cell col="49" text="bind:orddrid"/>
- <Cell col="50" text="bind:prcpno"/>
- <Cell col="51" text="bind:eqmtifyn"/>
- <Cell col="52" text="bind:basesuppdeptcd"/>
- <Cell col="53" text="bind:cretno"/>
- <Cell col="54" text="bind:wardcd"/>
- <Cell col="55" text="bind:rsrvdt"/>
- <Cell col="56" text="bind:rgstdeptcd"/>
- <Cell col="57" text="bind:rgstrid"/>
- <Cell col="58" text="bind:inclprcpcd"/>
- <Cell col="59" text="bind:lrgcd"/>
- <Cell col="60" text="bind:mdlcd"/>
- <Cell col="61" text="bind:actorddd"/>
- <Cell col="62" text="bind:examroomnm"/>
- <Cell col="63" text="bind:prcphistno"/>
- <Cell col="64" text="bind:pacsnocretyn"/>
- <Cell col="65" text="bind:execprcpstatcd"/>
- <Cell col="66" text="bind:tmpldata"/>
- <Cell col="67" text="bind:prcpdd"/>
- <Cell col="68" text="bind:rsrvrid"/>
- <Cell col="69" text="bind:cnclresncdnm"/>
- <Cell col="70" text="bind:rsrvexmptmplcd"/>
- <Cell col="71" text="bind:rrgstno2"/>
- <Cell col="72" text="bind:clincstdycd"/>
- <Cell col="73" text="bind:aftrcptinfo"/>
- <Cell col="74" text="bind:unrsrvexecyn"/>
- <Cell col="75" displaytype="combo" edittype="combo" text="bind:insukind" combodataset="ds_init_P0008" combocodecol="cdid" combodatacol="cdnm" enable="false"/>
- <Cell col="76" text="bind:specdrid"/>
- </Band>
- </Format>
- </Formats>
- </Grid>
- </Layout>
- </Layouts>
- </Tabpage>
- <Tabpage id="case4" text="검사완료">
- <Layouts>
- <Layout>
- <Grid id="grd_ordlist4_resize" taborder="3" binddataset="ds_temp_list_ordlist4" scrollpixel="all" useinputpanel="false" cellsizingtype="col" cellmovingtype="col" ondragmove="switch1_resize_ondragmove" position="absolute 0 98 1124 189" anchor="default">
- <Formats>
- <Format id="default">
- <Columns>
- <Column size="25" band="left"/>
- <Column size="16" band="left"/>
- <Column size="62" band="left"/>
- <Column size="59" band="left"/>
- <Column size="40" band="left"/>
- <Column size="60" band="left"/>
- <Column size="85"/>
- <Column size="58"/>
- <Column size="74"/>
- <Column size="32"/>
- <Column size="68"/>
- <Column size="42"/>
- <Column size="70"/>
- <Column size="109"/>
- <Column size="70"/>
- <Column size="32"/>
- <Column size="100"/>
- <Column size="42"/>
- <Column size="50"/>
- <Column size="105"/>
- <Column size="80"/>
- <Column size="147"/>
- <Column size="31"/>
- <Column size="32"/>
- <Column size="59"/>
- <Column size="113"/>
- <Column size="62"/>
- <Column size="62"/>
- <Column size="100"/>
- <Column size="100"/>
- <Column size="39"/>
- <Column size="49"/>
- <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"/>
- <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="100"/>
- <Column size="0"/>
- </Columns>
- <Rows>
- <Row size="24" band="head"/>
- <Row size="24"/>
- </Rows>
- <Band id="head">
- <Cell/>
- <Cell col="1"/>
- <Cell col="2" text="등록번호4"/>
- <Cell col="3" text="성명"/>
- <Cell col="4" text="S/A"/>
- <Cell col="5" text="주민번호"/>
- <Cell col="6" text="진료과"/>
- <Cell col="7" text="진료의"/>
- <Cell col="8" text="지정검사의"/>
- <Cell col="9" colspan="2" text="선택진료의" taborder="undefined"/>
- <Cell col="11" text="포터블"/>
- <Cell col="12" text="처방코드"/>
- <Cell col="13" text="처방일자"/>
- <Cell col="14" text="처방상태"/>
- <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="취소코드"/>
- <Cell col="28" text="전화번호1"/>
- <Cell col="29" text="전화번호2"/>
- <Cell col="30" text="키"/>
- <Cell col="31" text="몸무게"/>
- <Cell col="32" text="execprcpuniqno"/>
- <Cell col="33" text="prcpexecdeptcd"/>
- <Cell col="34" text="excuroomcd"/>
- <Cell col="35" text="rgstdeptcd"/>
- <Cell col="36" text="rgstrid"/>
- <Cell col="37" text="inflag"/>
- <Cell col="38" text="rcptacptyn"/>
- <Cell col="39" text="ExecBaseFlag"/>
- <Cell col="40" text="lrgcd"/>
- <Cell col="41" text="mdlcd"/>
- <Cell col="42" text="excupartcd"/>
- <Cell col="43" text="modality"/>
- <Cell col="44" text="execrem"/>
- <Cell col="45" text="prcpdelivefact"/>
- <Cell col="46" text="carecnfmdd"/>
- <Cell col="47" text="excuroomnm"/>
- <Cell col="48" text="rgstdepthngnm"/>
- <Cell col="49" text="prcpkindcd"/>
- <Cell col="50" text="rcptno"/>
- <Cell col="51" text="acptseqno"/>
- <Cell col="52" text="prcpdelivefact"/>
- <Cell col="53" text="prcpgenrflag"/>
- <Cell col="54" text="orddd"/>
- <Cell col="55" text="rgstrid"/>
- <Cell col="56" text="orddrnm"/>
- <Cell col="57" text="orddeptcd"/>
- <Cell col="58" text="rcptdd"/>
- <Cell col="59" text="orddrid"/>
- <Cell col="60" text="prcpgenrflag"/>
- <Cell col="61" text="prcpno"/>
- <Cell col="62" text="EqmtIFYn"/>
- <Cell col="63" text="basesuppdeptcd"/>
- <Cell col="64" text="rsrvdt"/>
- <Cell col="65" text="inclprcpcd"/>
- <Cell col="66" text="caption1"/>
- <Cell col="67" text="caption2"/>
- <Cell col="68" text="caption3"/>
- <Cell col="69" text="caption4"/>
- <Cell col="70" text="caption5"/>
- <Cell col="71" text="caption6"/>
- <Cell col="72" text="cnclresncdnm"/>
- <Cell col="73" text="rsrvexmptmplcd"/>
- <Cell col="74" text="rrsgtno2"/>
- <Cell col="75" text="clincstdycd"/>
- <Cell col="76" text="execrid1"/>
- <Cell col="77" text="aftrcptinfo"/>
- <Cell col="78" text="급비"/>
- <Cell col="79" text="급비"/>
- </Band>
- <Band id="body">
- <Cell celltype="head" text="expr:currow+1"/>
- <Cell col="1" displaytype="checkbox" edittype="checkbox" text="bind:check" expr="expr:(check=="true"||check==1)?1:0"/>
- <Cell col="2" text="bind:pid"/>
- <Cell col="3" text="bind:hngnm"/>
- <Cell col="4" text="bind:sna"/>
- <Cell col="5" text="bind:rrgstno1"/>
- <Cell col="6" style="align:left;" text="bind:orddepthngnm"/>
- <Cell col="7" text="bind:orddrnm"/>
- <Cell col="8" displaytype="combo" edittype="combo" text="bind:selectdrid"/>
- <Cell col="9" displaytype="none" edittype="none" text="bind:choiordflag"/>
- <Cell col="10" displaytype="combo" edittype="combo" text="bind:specdrid" combodataset="ds_init_specdridlist" combocodecol="userid" combodatacol="usernm" enable="true"/>
- <Cell col="11" text="bind:portprcpflag"/>
- <Cell col="12" style="align:left;" text="bind:calcscorcd"/>
- <Cell col="13" displaytype="date" style="align:left;" text="bind:prcpdt" wordwrap="char" mask="yyyy-MM-dd HH:mm" calendardisplaynulltype="nulltext"/>
- <Cell col="14" style="align:left;" text="bind:statcd" enable="true"/>
- <Cell col="15" text="bind:rcptyn"/>
- <Cell col="16" displaytype="combo" edittype="combo" text="bind:excuroomcd" combodataset="ds_cmb_initexecroom" combocodecol="excuroomcdid" combodatacol="excuroomcdnm"/>
- <Cell col="17" text="bind:roomcd"/>
- <Cell col="18" text="bind:roomnm"/>
- <Cell col="19" displaytype="date" style="align:left;" text="bind:srchrsrvdt" wordwrap="char" mask="yyyy-MM-dd HH:mm" calendardisplaynulltype="nulltext"/>
- <Cell col="20" displaytype="date" text="bind:prcphopedd" calendardisplaynulltype="nulltext"/>
- <Cell col="21" style="align:left;" text="bind:prcpnm"/>
- <Cell col="22" text="bind:prcpqty"/>
- <Cell col="23" text="bind:execprcptims"/>
- <Cell col="24" text="bind:rsrvrnm"/>
- <Cell col="25" displaytype="date" style="align:left;" text="bind:execdt" wordwrap="char" mask="yyyy-MM-dd HH:mm" calendardisplaynulltype="nulltext"/>
- <Cell col="26" displaytype="none" edittype="none" text="bind:execrnm"/>
- <Cell col="27" text="bind:basecd"/>
- <Cell col="28" text="bind:hometel"/>
- <Cell col="29" text="bind:mpphontel"/>
- <Cell col="30" text="bind:hight"/>
- <Cell col="31" text="bind:weight"/>
- <Cell col="32" text="bind:execprcpuniqno"/>
- <Cell col="33" text="bind:prcpexecdeptcd"/>
- <Cell col="34" text="bind:rgstdeptcd"/>
- <Cell col="35" text="bind:rgstrid"/>
- <Cell col="36" text="bind:inflag"/>
- <Cell col="37" text="bind:rcptacptyn"/>
- <Cell col="38" text="bind:execbaseflag"/>
- <Cell col="39" text="bind:lrgcd"/>
- <Cell col="40" text="bind:mdlcd"/>
- <Cell col="41" text="bind:excupartcd"/>
- <Cell col="42" text="bind:modality"/>
- <Cell col="43" text="bind:execrem"/>
- <Cell col="44" text="bind:prcpdelivefact"/>
- <Cell col="45" text="bind:carecnfmdd"/>
- <Cell col="46" text="bind:excuroomnm"/>
- <Cell col="47" text="bind:rgstdepthngnm"/>
- <Cell col="48" text="bind:prcpkindcd"/>
- <Cell col="49" text="bind:rcptno"/>
- <Cell col="50" text="bind:acptseqno"/>
- <Cell col="51" text="bind:prcpdelivefact"/>
- <Cell col="52" text="bind:prcpgenrflag"/>
- <Cell col="53" text="bind:orddd"/>
- <Cell col="54" text="bind:rgstrid"/>
- <Cell col="55" text="bind:orddrnm"/>
- <Cell col="56" text="bind:orddeptcd"/>
- <Cell col="57" text="bind:rcptdd"/>
- <Cell col="58" text="bind:orddrid"/>
- <Cell col="59" text="bind:prcpgenrflag"/>
- <Cell col="60" text="bind:prcpno"/>
- <Cell col="61" text="bind:eqmtifyn"/>
- <Cell col="62" text="bind:basesuppdeptcd"/>
- <Cell col="63" text="bind:rsrvdt"/>
- <Cell col="64" text="bind:inclprcpcd"/>
- <Cell col="65" text="bind:examroomnm"/>
- <Cell col="66" text="bind:execprcpstatcd"/>
- <Cell col="67" text="bind:tmpldata"/>
- <Cell col="68" text="bind:prcpdd"/>
- <Cell col="69" text="bind:rsrvrid"/>
- <Cell col="70" text="bind:pacsnocretyn"/>
- <Cell col="71" text="bind:cnclresncdnm"/>
- <Cell col="72" text="bind:rsrvexmptmplcd"/>
- <Cell col="73" text="bind:rrgstno2"/>
- <Cell col="74" text="bind:clincstdycd"/>
- <Cell col="75" text="bind:execrid1"/>
- <Cell col="76" text="bind:aftrcptinfo"/>
- <Cell col="77" text="bind:unrsrvexecyn"/>
- <Cell col="78" displaytype="combo" edittype="combo" text="bind:insukind" combodataset="ds_init_P0008" combocodecol="cdid" combodatacol="cdnm" enable="false"/>
- <Cell col="79" text="bind:specdrid"/>
- </Band>
- </Format>
- </Formats>
- </Grid>
- <Grid id="grd_ordlist4" taborder="4" binddataset="ds_main_list_ordlist4" useinputpanel="false" position="absolute 0 0 1124 91" anchor="default">
- <Formats>
- <Format id="default">
- <Columns>
- <Column size="25" band="left"/>
- <Column size="16" band="left"/>
- <Column size="62" band="left"/>
- <Column size="59" band="left"/>
- <Column size="40" band="left"/>
- <Column size="60" band="left"/>
- <Column size="85"/>
- <Column size="58"/>
- <Column size="70"/>
- <Column size="35"/>
- <Column size="68"/>
- <Column size="42"/>
- <Column size="70"/>
- <Column size="109"/>
- <Column size="70"/>
- <Column size="32"/>
- <Column size="100"/>
- <Column size="42"/>
- <Column size="50"/>
- <Column size="105"/>
- <Column size="80"/>
- <Column size="147"/>
- <Column size="31"/>
- <Column size="32"/>
- <Column size="59"/>
- <Column size="113"/>
- <Column size="62"/>
- <Column size="62"/>
- <Column size="100"/>
- <Column size="100"/>
- <Column size="39"/>
- <Column size="49"/>
- <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"/>
- <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="100"/>
- <Column size="0"/>
- </Columns>
- <Rows>
- <Row size="24" band="head"/>
- <Row size="24"/>
- </Rows>
- <Band id="head">
- <Cell/>
- <Cell col="1"/>
- <Cell col="2" text="등록번호4"/>
- <Cell col="3" text="성명"/>
- <Cell col="4" text="S/A"/>
- <Cell col="5" text="주민번호"/>
- <Cell col="6" text="진료과"/>
- <Cell col="7" text="진료의"/>
- <Cell col="8" text="지정검사의"/>
- <Cell col="9" colspan="2" text="선택진료의" taborder="undefined"/>
- <Cell col="11" text="포터블"/>
- <Cell col="12" text="처방코드"/>
- <Cell col="13" text="처방일자"/>
- <Cell col="14" text="처방상태"/>
- <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="취소코드"/>
- <Cell col="28" text="전화번호1"/>
- <Cell col="29" text="전화번호2"/>
- <Cell col="30" text="키"/>
- <Cell col="31" text="몸무게"/>
- <Cell col="32" text="execprcpuniqno"/>
- <Cell col="33" text="prcpexecdeptcd"/>
- <Cell col="34" text="excuroomcd"/>
- <Cell col="35" text="rgstdeptcd"/>
- <Cell col="36" text="rgstrid"/>
- <Cell col="37" text="inflag"/>
- <Cell col="38" text="rcptacptyn"/>
- <Cell col="39" text="ExecBaseFlag"/>
- <Cell col="40" text="lrgcd"/>
- <Cell col="41" text="mdlcd"/>
- <Cell col="42" text="excupartcd"/>
- <Cell col="43" text="modality"/>
- <Cell col="44" text="execrem"/>
- <Cell col="45" text="prcpdelivefact"/>
- <Cell col="46" text="carecnfmdd"/>
- <Cell col="47" text="excuroomnm"/>
- <Cell col="48" text="rgstdepthngnm"/>
- <Cell col="49" text="prcpkindcd"/>
- <Cell col="50" text="rcptno"/>
- <Cell col="51" text="acptseqno"/>
- <Cell col="52" text="prcpdelivefact"/>
- <Cell col="53" text="prcpgenrflag"/>
- <Cell col="54" text="orddd"/>
- <Cell col="55" text="rgstrid"/>
- <Cell col="56" text="orddrnm"/>
- <Cell col="57" text="orddeptcd"/>
- <Cell col="58" text="rcptdd"/>
- <Cell col="59" text="orddrid"/>
- <Cell col="60" text="prcpgenrflag"/>
- <Cell col="61" text="prcpno"/>
- <Cell col="62" text="EqmtIFYn"/>
- <Cell col="63" text="basesuppdeptcd"/>
- <Cell col="64" text="rsrvdt"/>
- <Cell col="65" text="inclprcpcd"/>
- <Cell col="66" text="caption1"/>
- <Cell col="67" text="caption2"/>
- <Cell col="68" text="caption3"/>
- <Cell col="69" text="caption4"/>
- <Cell col="70" text="caption5"/>
- <Cell col="71" text="caption6"/>
- <Cell col="72" text="cnclresncdnm"/>
- <Cell col="73" text="rsrvexmptmplcd"/>
- <Cell col="74" text="rrsgtno2"/>
- <Cell col="75" text="clincstdycd"/>
- <Cell col="76" text="execrid1"/>
- <Cell col="77" text="aftrcptinfo"/>
- <Cell col="78" text="급비"/>
- <Cell col="79" text="급비"/>
- </Band>
- <Band id="body">
- <Cell celltype="head" text="expr:currow+1"/>
- <Cell col="1" displaytype="checkbox" edittype="checkbox" text="bind:check" expr="expr:(check=="true"||check==1)?1:0"/>
- <Cell col="2" text="bind:pid"/>
- <Cell col="3" text="bind:hngnm"/>
- <Cell col="4" text="bind:sna"/>
- <Cell col="5" text="bind:rrgstno1"/>
- <Cell col="6" style="align:left;" text="bind:orddepthngnm"/>
- <Cell col="7" text="bind:orddrnm"/>
- <Cell col="8" text="bind:selectdrid"/>
- <Cell col="9" displaytype="none" edittype="none" text="bind:choiordflag"/>
- <Cell col="10" displaytype="combo" edittype="combo" text="bind:specdrid" combodataset="ds_init_specdridlist" combocodecol="userid" combodatacol="usernm" enable="true"/>
- <Cell col="11" text="bind:portprcpflag"/>
- <Cell col="12" style="align:left;" text="bind:calcscorcd"/>
- <Cell col="13" displaytype="date" style="align:left;" text="bind:prcpdt" wordwrap="char" mask="yyyy-MM-dd HH:mm" calendardisplaynulltype="nulltext"/>
- <Cell col="14" style="align:left;" text="bind:statcd" enable="true"/>
- <Cell col="15" text="bind:rcptyn"/>
- <Cell col="16" displaytype="combo" edittype="combo" text="bind:excuroomcd" combodataset="ds_cmb_initexecroom" combocodecol="excuroomcdid" combodatacol="excuroomcdnm"/>
- <Cell col="17" text="bind:roomcd"/>
- <Cell col="18" text="bind:roomnm"/>
- <Cell col="19" displaytype="date" style="align:left;" text="bind:srchrsrvdt" wordwrap="char" mask="yyyy-MM-dd HH:mm" calendardisplaynulltype="nulltext"/>
- <Cell col="20" displaytype="date" text="bind:prcphopedd" calendardisplaynulltype="nulltext"/>
- <Cell col="21" style="align:left;" text="bind:prcpnm"/>
- <Cell col="22" text="bind:prcpqty"/>
- <Cell col="23" text="bind:execprcptims"/>
- <Cell col="24" text="bind:rsrvrnm"/>
- <Cell col="25" displaytype="date" style="align:left;" text="bind:execdt" wordwrap="char" mask="yyyy-MM-dd HH:mm" calendardisplaynulltype="nulltext"/>
- <Cell col="26" displaytype="none" edittype="none" text="bind:execrnm"/>
- <Cell col="27" text="bind:basecd"/>
- <Cell col="28" text="bind:hometel"/>
- <Cell col="29" text="bind:mpphontel"/>
- <Cell col="30" text="bind:hight"/>
- <Cell col="31" text="bind:weight"/>
- <Cell col="32" text="bind:execprcpuniqno"/>
- <Cell col="33" text="bind:prcpexecdeptcd"/>
- <Cell col="34" text="bind:rgstdeptcd"/>
- <Cell col="35" text="bind:rgstrid"/>
- <Cell col="36" text="bind:inflag"/>
- <Cell col="37" text="bind:rcptacptyn"/>
- <Cell col="38" text="bind:execbaseflag"/>
- <Cell col="39" text="bind:lrgcd"/>
- <Cell col="40" text="bind:mdlcd"/>
- <Cell col="41" text="bind:excupartcd"/>
- <Cell col="42" text="bind:modality"/>
- <Cell col="43" text="bind:execrem"/>
- <Cell col="44" text="bind:prcpdelivefact"/>
- <Cell col="45" text="bind:carecnfmdd"/>
- <Cell col="46" text="bind:excuroomnm"/>
- <Cell col="47" text="bind:rgstdepthngnm"/>
- <Cell col="48" text="bind:prcpkindcd"/>
- <Cell col="49" text="bind:rcptno"/>
- <Cell col="50" text="bind:acptseqno"/>
- <Cell col="51" text="bind:prcpdelivefact"/>
- <Cell col="52" text="bind:prcpgenrflag"/>
- <Cell col="53" text="bind:orddd"/>
- <Cell col="54" text="bind:rgstrid"/>
- <Cell col="55" text="bind:orddrnm"/>
- <Cell col="56" text="bind:orddeptcd"/>
- <Cell col="57" text="bind:rcptdd"/>
- <Cell col="58" text="bind:orddrid"/>
- <Cell col="59" text="bind:prcpgenrflag"/>
- <Cell col="60" text="bind:prcpno"/>
- <Cell col="61" text="bind:eqmtifyn"/>
- <Cell col="62" text="bind:basesuppdeptcd"/>
- <Cell col="63" text="bind:rsrvdt"/>
- <Cell col="64" text="bind:inclprcpcd"/>
- <Cell col="65" text="bind:examroomnm"/>
- <Cell col="66" text="bind:execprcpstatcd"/>
- <Cell col="67" text="bind:tmpldata"/>
- <Cell col="68" text="bind:prcpdd"/>
- <Cell col="69" text="bind:rsrvrid"/>
- <Cell col="70" text="bind:pacsnocretyn"/>
- <Cell col="71" text="bind:cnclresncdnm"/>
- <Cell col="72" text="bind:rsrvexmptmplcd"/>
- <Cell col="73" text="bind:rrgstno2"/>
- <Cell col="74" text="bind:clincstdycd"/>
- <Cell col="75" text="bind:execrid1"/>
- <Cell col="76" text="bind:aftrcptinfo"/>
- <Cell col="77" text="bind:unrsrvexecyn"/>
- <Cell col="78" displaytype="combo" edittype="combo" text="bind:insukind" combodataset="ds_init_P0008" combocodecol="cdid" combodatacol="cdnm" enable="false"/>
- <Cell col="79" text="bind:specdrid"/>
- </Band>
- </Format>
- </Formats>
- </Grid>
- </Layout>
- </Layouts>
- </Tabpage>
- <Tabpage id="case6" text="미예약">
- <Layouts>
- <Layout>
- <Grid id="grd_ordlist6" taborder="3" binddataset="ds_main_list_ordlist6" useinputpanel="false" position="absolute 0 0 1124 91" anchor="default">
- <Formats>
- <Format id="default">
- <Columns>
- <Column size="25" band="left"/>
- <Column size="16" band="left"/>
- <Column size="72" band="left"/>
- <Column size="70" band="left"/>
- <Column size="45" band="left"/>
- <Column size="60" band="left"/>
- <Column size="73"/>
- <Column size="58"/>
- <Column size="80"/>
- <Column size="40"/>
- <Column size="68"/>
- <Column size="42"/>
- <Column size="50"/>
- <Column size="80"/>
- <Column size="64"/>
- <Column size="43"/>
- <Column size="100"/>
- <Column size="70"/>
- <Column size="61"/>
- <Column size="116"/>
- <Column size="80"/>
- <Column size="165"/>
- <Column size="32"/>
- <Column size="34"/>
- <Column size="59"/>
- <Column size="0"/>
- <Column size="0"/>
- <Column size="54"/>
- <Column size="100"/>
- <Column size="70"/>
- <Column size="100"/>
- <Column size="100"/>
- <Column size="39"/>
- <Column size="49"/>
- <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"/>
- <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"/>
- <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="0"/>
- </Columns>
- <Rows>
- <Row size="24" band="head"/>
- <Row size="24"/>
- </Rows>
- <Band id="head">
- <Cell/>
- <Cell col="1"/>
- <Cell col="2" text="등록번호6"/>
- <Cell col="3" text="성명"/>
- <Cell col="4" text="S/A"/>
- <Cell col="5" text="주민번호"/>
- <Cell col="6" text="진료과"/>
- <Cell col="7" text="진료의"/>
- <Cell col="8" text="지정검사의"/>
- <Cell col="9" colspan="2" text="선택진료의" taborder="undefined"/>
- <Cell col="11" text="포터블"/>
- <Cell col="12" text="처방코드"/>
- <Cell col="13" text="처방일자"/>
- <Cell col="14" text="처방상태"/>
- <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="실시시간"/>
- <Cell col="28" text="실시자"/>
- <Cell col="29" text="취소코드"/>
- <Cell col="30" text="전화번호1"/>
- <Cell col="31" text="전화번호2"/>
- <Cell col="32" text="키"/>
- <Cell col="33" text="몸무게"/>
- <Cell col="34" text="execprcpuniqno"/>
- <Cell col="35" text="prcpexecdeptcd"/>
- <Cell col="36" text="excuroomcd"/>
- <Cell col="37" text="rgstdeptcd"/>
- <Cell col="38" text="rgstrid"/>
- <Cell col="39" text="inflag"/>
- <Cell col="40" text="rcptacptyn"/>
- <Cell col="41" text="ExecBaseFlag"/>
- <Cell col="42" text="lrgcd"/>
- <Cell col="43" text="mdlcd"/>
- <Cell col="44" text="excupartcd"/>
- <Cell col="45" text="modality"/>
- <Cell col="46" text="acptrem"/>
- <Cell col="47" text="execrem"/>
- <Cell col="48" text="prcpdelivefact"/>
- <Cell col="49" text="carecnfmdd"/>
- <Cell col="50" text="excuroomnm"/>
- <Cell col="51" text="rgstdepthngnm"/>
- <Cell col="52" text="prcpkindcd"/>
- <Cell col="53" text="rcptno"/>
- <Cell col="54" text="acptseqno"/>
- <Cell col="55" text="prcpdelivefact"/>
- <Cell col="56" text="execrid1"/>
- <Cell col="57" text="execrid2"/>
- <Cell col="58" text="execrid3"/>
- <Cell col="59" text="execrid4"/>
- <Cell col="60" text="prcpgenrflag"/>
- <Cell col="61" text="indd"/>
- <Cell col="62" text="rgstrid"/>
- <Cell col="63" text="orddrnm"/>
- <Cell col="64" text="orddeptcd"/>
- <Cell col="65" text="rcptdd"/>
- <Cell col="66" text="orddrid"/>
- <Cell col="67" text="prcpgenrflag"/>
- <Cell col="68" text="prcpno"/>
- <Cell col="69" text="EqmtIFYn"/>
- <Cell col="70" text="basesuppdeptcd"/>
- <Cell col="71" text="tmpldata"/>
- <Cell col="72" text="wardcd"/>
- <Cell col="73" text="prcpexecdeptcd"/>
- <Cell col="74" text="rsrvdt"/>
- <Cell col="75" text="prcphistno"/>
- <Cell col="76" text="inclprcpcd"/>
- <Cell col="77" text="actorddd"/>
- <Cell col="78" text="retno"/>
- <Cell col="79" text="pacsnocretyn"/>
- <Cell col="80" text="examroonm"/>
- <Cell col="81" text="execprcpstatcd"/>
- <Cell col="82" text="caption1"/>
- <Cell col="83" text="caption2"/>
- <Cell col="84" text="caption3"/>
- <Cell col="85" text="rsrvexmptmplcd"/>
- <Cell col="86" text="rrsgtno2"/>
- <Cell col="87" text="clincstdycd"/>
- <Cell col="88" text="aftrcptinfo"/>
- <Cell col="89" text="급비"/>
- <Cell col="90" text="급비"/>
- </Band>
- <Band id="body">
- <Cell celltype="head" text="expr:currow+1"/>
- <Cell col="1" displaytype="checkbox" edittype="checkbox" text="bind:check" expr="expr:(check=="true"||check==1)?1:0"/>
- <Cell col="2" text="bind:pid"/>
- <Cell col="3" text="bind:hngnm"/>
- <Cell col="4" text="bind:sna"/>
- <Cell col="5" text="bind:rrgstno1"/>
- <Cell col="6" style="align:left;" text="bind:orddepthngnm"/>
- <Cell col="7" text="bind:orddrnm"/>
- <Cell col="8" text="bind:selectdrid"/>
- <Cell col="9" text="bind:choiordflag"/>
- <Cell col="10" displaytype="combo" edittype="combo" text="bind:specdrid" combodataset="ds_init_specdridlist" combocodecol="userid" combodatacol="usernm" enable="true"/>
- <Cell col="11" text="bind:portprcpflag"/>
- <Cell col="12" text="bind:calcscorcd"/>
- <Cell col="13" displaytype="date" style="align:left;" text="bind:prcpdt" wordwrap="char" mask="yyyy-MM-dd HH:mm" calendardisplaynulltype="nulltext"/>
- <Cell col="14" style="align:left;" text="bind:statcd"/>
- <Cell col="15" text="bind:rcptyn"/>
- <Cell col="16" displaytype="combo" edittype="combo" text="bind:excuroomcd" combodataset="ds_cmb_initexecroom" combocodecol="excuroomcdid" combodatacol="excuroomcdnm"/>
- <Cell col="17" text="bind:roomcd"/>
- <Cell col="18" text="bind:roomnm"/>
- <Cell col="19" displaytype="date" text="bind:srchrsrvdt" mask="yyyy-MM-dd HH:mm" calendardisplaynulltype="nulltext"/>
- <Cell col="20" displaytype="date" text="bind:prcphopedd" calendardisplaynulltype="nulltext"/>
- <Cell col="21" style="align:left;" text="bind:prcpnm"/>
- <Cell col="22" text="bind:prcpqty"/>
- <Cell col="23" text="bind:execprcptims"/>
- <Cell col="24" displaytype="combo" edittype="combo" text="bind:rsrvid" combodataset="ds_cmb_initexecrid" combocodecol="execrid1cdid" combodatacol="execrid1cdnm"/>
- <Cell col="25" text="bind:rcptdd"/>
- <Cell col="26" text="bind:acptid"/>
- <Cell col="27" style="align:left;" text="bind:execdt" wordwrap="char"/>
- <Cell col="28" displaytype="combo" edittype="combo" text="bind:execrid1" combodataset="ds_cmb_initexecrid" combocodecol="execrid1cdid" combodatacol="execrid1cdnm"/>
- <Cell col="29" text="bind:basecd"/>
- <Cell col="30" text="bind:hometel"/>
- <Cell col="31" text="bind:mpphontel"/>
- <Cell col="32" text="bind:hight"/>
- <Cell col="33" text="bind:weight"/>
- <Cell col="34" text="bind:execprcpuniqno"/>
- <Cell col="35" text="bind:prcpexecdeptcd"/>
- <Cell col="36" text="bind:rgstdeptcd"/>
- <Cell col="37" text="bind:rgstrid"/>
- <Cell col="38" text="bind:inflag"/>
- <Cell col="39" text="bind:rcptacptyn"/>
- <Cell col="40" text="bind:execbaseflag"/>
- <Cell col="41" text="bind:lrgcd"/>
- <Cell col="42" text="bind:mdlcd"/>
- <Cell col="43" text="bind:excupartcd"/>
- <Cell col="44" text="bind:modality"/>
- <Cell col="45" text="bind:acptrem"/>
- <Cell col="46" text="bind:execrem"/>
- <Cell col="47" text="bind:prcpdelivefact"/>
- <Cell col="48" text="bind:carecnfmdd"/>
- <Cell col="49" text="bind:excuroomnm"/>
- <Cell col="50" text="bind:rgstdepthngnm"/>
- <Cell col="51" text="bind:prcpkindcd"/>
- <Cell col="52" text="bind:rcptno"/>
- <Cell col="53" text="bind:acptseqno"/>
- <Cell col="54" text="bind:prcpdelivefact"/>
- <Cell col="55" text="bind:execrid1"/>
- <Cell col="56" text="bind:execrid2"/>
- <Cell col="57" text="bind:execrid3"/>
- <Cell col="58" text="bind:execrid4"/>
- <Cell col="59" text="bind:prcpgenrflag"/>
- <Cell col="60" text="bind:orddd"/>
- <Cell col="61" text="bind:rgstrid"/>
- <Cell col="62" text="bind:orddrnm"/>
- <Cell col="63" text="bind:orddeptcd"/>
- <Cell col="64" text="bind:rcptdd"/>
- <Cell col="65" text="bind:orddrid"/>
- <Cell col="66" text="bind:prcpgenrflag"/>
- <Cell col="67" text="bind:prcpno"/>
- <Cell col="68" text="bind:eqmtifyn"/>
- <Cell col="69" text="bind:basesuppdeptcd"/>
- <Cell col="70" text="bind:tmpldata"/>
- <Cell col="71" text="bind:wardcd"/>
- <Cell col="72" text="bind:prcpexecdeptcd"/>
- <Cell col="73" text="bind:rsrvdt"/>
- <Cell col="74" text="bind:prcphistno"/>
- <Cell col="75" text="bind:inclprcpcd"/>
- <Cell col="76" text="bind:actorddd"/>
- <Cell col="77" text="bind:cretno"/>
- <Cell col="78" text="bind:pacsnocretyn"/>
- <Cell col="79" text="bind:examroomnm"/>
- <Cell col="80" text="bind:execprcpstatcd"/>
- <Cell col="81" text="bind:tmpldata"/>
- <Cell col="82" text="bind:prcpdd"/>
- <Cell col="83" text="bind:cnclresncdnm"/>
- <Cell col="84" text="bind:rsrvexmptmplcd"/>
- <Cell col="85" text="bind:rrgstno2"/>
- <Cell col="86" text="bind:clincstdycd"/>
- <Cell col="87" text="bind:aftrcptinfo"/>
- <Cell col="88" text="bind:unrsrvexecyn"/>
- <Cell col="89" displaytype="combo" edittype="combo" text="bind:insukind" combodataset="ds_init_P0008" combocodecol="cdid" combodatacol="cdnm" enable="false"/>
- <Cell col="90" text="bind:specdrid"/>
- </Band>
- </Format>
- </Formats>
- </Grid>
- <Grid id="grd_ordlist6_resize" taborder="4" binddataset="ds_temp_list_ordlist6" scrollpixel="all" useinputpanel="false" cellsizingtype="col" cellmovingtype="col" ondragmove="switch1_resize_ondragmove" position="absolute 0 98 1124 189" anchor="default">
- <Formats>
- <Format id="default">
- <Columns>
- <Column size="25" band="left"/>
- <Column size="16" band="left"/>
- <Column size="72" band="left"/>
- <Column size="70" band="left"/>
- <Column size="45" band="left"/>
- <Column size="60" band="left"/>
- <Column size="73"/>
- <Column size="58"/>
- <Column size="84"/>
- <Column size="40"/>
- <Column size="68"/>
- <Column size="42"/>
- <Column size="50"/>
- <Column size="80"/>
- <Column size="64"/>
- <Column size="43"/>
- <Column size="100"/>
- <Column size="70"/>
- <Column size="61"/>
- <Column size="116"/>
- <Column size="80"/>
- <Column size="165"/>
- <Column size="32"/>
- <Column size="34"/>
- <Column size="59"/>
- <Column size="0"/>
- <Column size="0"/>
- <Column size="54"/>
- <Column size="100"/>
- <Column size="70"/>
- <Column size="100"/>
- <Column size="100"/>
- <Column size="39"/>
- <Column size="49"/>
- <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"/>
- <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"/>
- <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="0"/>
- </Columns>
- <Rows>
- <Row size="24" band="head"/>
- <Row size="24"/>
- </Rows>
- <Band id="head">
- <Cell/>
- <Cell col="1"/>
- <Cell col="2" text="등록번호6"/>
- <Cell col="3" text="성명"/>
- <Cell col="4" text="S/A"/>
- <Cell col="5" text="주민번호"/>
- <Cell col="6" text="진료과"/>
- <Cell col="7" text="진료의"/>
- <Cell col="8" text="지정검사의"/>
- <Cell col="9" colspan="2" text="선택진료의" taborder="undefined"/>
- <Cell col="11" text="포터블"/>
- <Cell col="12" text="처방코드"/>
- <Cell col="13" text="처방일자"/>
- <Cell col="14" text="처방상태"/>
- <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="실시시간"/>
- <Cell col="28" text="실시자"/>
- <Cell col="29" text="취소코드"/>
- <Cell col="30" text="전화번호1"/>
- <Cell col="31" text="전화번호2"/>
- <Cell col="32" text="키"/>
- <Cell col="33" text="몸무게"/>
- <Cell col="34" text="execprcpuniqno"/>
- <Cell col="35" text="prcpexecdeptcd"/>
- <Cell col="36" text="excuroomcd"/>
- <Cell col="37" text="rgstdeptcd"/>
- <Cell col="38" text="rgstrid"/>
- <Cell col="39" text="inflag"/>
- <Cell col="40" text="rcptacptyn"/>
- <Cell col="41" text="ExecBaseFlag"/>
- <Cell col="42" text="lrgcd"/>
- <Cell col="43" text="mdlcd"/>
- <Cell col="44" text="excupartcd"/>
- <Cell col="45" text="modality"/>
- <Cell col="46" text="acptrem"/>
- <Cell col="47" text="execrem"/>
- <Cell col="48" text="prcpdelivefact"/>
- <Cell col="49" text="carecnfmdd"/>
- <Cell col="50" text="excuroomnm"/>
- <Cell col="51" text="rgstdepthngnm"/>
- <Cell col="52" text="prcpkindcd"/>
- <Cell col="53" text="rcptno"/>
- <Cell col="54" text="acptseqno"/>
- <Cell col="55" text="prcpdelivefact"/>
- <Cell col="56" text="execrid1"/>
- <Cell col="57" text="execrid2"/>
- <Cell col="58" text="execrid3"/>
- <Cell col="59" text="execrid4"/>
- <Cell col="60" text="prcpgenrflag"/>
- <Cell col="61" text="indd"/>
- <Cell col="62" text="rgstrid"/>
- <Cell col="63" text="orddrnm"/>
- <Cell col="64" text="orddeptcd"/>
- <Cell col="65" text="rcptdd"/>
- <Cell col="66" text="orddrid"/>
- <Cell col="67" text="prcpgenrflag"/>
- <Cell col="68" text="prcpno"/>
- <Cell col="69" text="EqmtIFYn"/>
- <Cell col="70" text="basesuppdeptcd"/>
- <Cell col="71" text="tmpldata"/>
- <Cell col="72" text="wardcd"/>
- <Cell col="73" text="prcpexecdeptcd"/>
- <Cell col="74" text="rsrvdt"/>
- <Cell col="75" text="prcphistno"/>
- <Cell col="76" text="inclprcpcd"/>
- <Cell col="77" text="actorddd"/>
- <Cell col="78" text="retno"/>
- <Cell col="79" text="pacsnocretyn"/>
- <Cell col="80" text="examroonm"/>
- <Cell col="81" text="execprcpstatcd"/>
- <Cell col="82" text="caption1"/>
- <Cell col="83" text="caption2"/>
- <Cell col="84" text="caption3"/>
- <Cell col="85" text="rsrvexmptmplcd"/>
- <Cell col="86" text="rrsgtno2"/>
- <Cell col="87" text="clincstdycd"/>
- <Cell col="88" text="aftrcptinfo"/>
- <Cell col="89" text="급비"/>
- <Cell col="90" text="급비"/>
- </Band>
- <Band id="body">
- <Cell celltype="head" text="expr:currow+1"/>
- <Cell col="1" displaytype="checkbox" edittype="checkbox" text="bind:check" expr="expr:(check=="true"||check==1)?1:0"/>
- <Cell col="2" text="bind:pid"/>
- <Cell col="3" text="bind:hngnm"/>
- <Cell col="4" text="bind:sna"/>
- <Cell col="5" text="bind:rrgstno1"/>
- <Cell col="6" style="align:left;" text="bind:orddepthngnm"/>
- <Cell col="7" text="bind:orddrnm"/>
- <Cell col="8" displaytype="combo" edittype="combo" text="bind:selectdrid"/>
- <Cell col="9" text="bind:choiordflag"/>
- <Cell col="10" displaytype="combo" edittype="combo" text="bind:specdrid" combodataset="ds_init_specdridlist" combocodecol="userid" combodatacol="usernm" enable="true"/>
- <Cell col="11" text="bind:portprcpflag"/>
- <Cell col="12" text="bind:calcscorcd"/>
- <Cell col="13" displaytype="date" style="align:left;" text="bind:prcpdt" wordwrap="char" mask="yyyy-MM-dd HH:mm" calendardisplaynulltype="nulltext"/>
- <Cell col="14" style="align:left;" text="bind:statcd"/>
- <Cell col="15" text="bind:rcptyn"/>
- <Cell col="16" displaytype="combo" edittype="combo" text="bind:excuroomcd" combodataset="ds_cmb_initexecroom" combocodecol="excuroomcdid" combodatacol="excuroomcdnm"/>
- <Cell col="17" text="bind:roomcd"/>
- <Cell col="18" text="bind:roomnm"/>
- <Cell col="19" displaytype="date" text="bind:srchrsrvdt" mask="yyyy-MM-dd HH:mm" calendardisplaynulltype="nulltext"/>
- <Cell col="20" displaytype="date" text="bind:prcphopedd" calendardisplaynulltype="nulltext"/>
- <Cell col="21" style="align:left;" text="bind:prcpnm"/>
- <Cell col="22" text="bind:prcpqty"/>
- <Cell col="23" text="bind:execprcptims"/>
- <Cell col="24" displaytype="combo" edittype="combo" text="bind:rsrvid" combodataset="ds_cmb_initexecrid" combocodecol="execrid1cdid" combodatacol="execrid1cdnm"/>
- <Cell col="25" text="bind:rcptdd"/>
- <Cell col="26" text="bind:acptid"/>
- <Cell col="27" style="align:left;" text="bind:execdt" wordwrap="char"/>
- <Cell col="28" displaytype="combo" edittype="combo" text="bind:execrid1" combodataset="ds_cmb_initexecrid" combocodecol="execrid1cdid" combodatacol="execrid1cdnm"/>
- <Cell col="29" text="bind:basecd"/>
- <Cell col="30" text="bind:hometel"/>
- <Cell col="31" text="bind:mpphontel"/>
- <Cell col="32" text="bind:hight"/>
- <Cell col="33" text="bind:weight"/>
- <Cell col="34" text="bind:execprcpuniqno"/>
- <Cell col="35" text="bind:prcpexecdeptcd"/>
- <Cell col="36" text="bind:rgstdeptcd"/>
- <Cell col="37" text="bind:rgstrid"/>
- <Cell col="38" text="bind:inflag"/>
- <Cell col="39" text="bind:rcptacptyn"/>
- <Cell col="40" text="bind:execbaseflag"/>
- <Cell col="41" text="bind:lrgcd"/>
- <Cell col="42" text="bind:mdlcd"/>
- <Cell col="43" text="bind:excupartcd"/>
- <Cell col="44" text="bind:modality"/>
- <Cell col="45" text="bind:acptrem"/>
- <Cell col="46" text="bind:execrem"/>
- <Cell col="47" text="bind:prcpdelivefact"/>
- <Cell col="48" text="bind:carecnfmdd"/>
- <Cell col="49" text="bind:excuroomnm"/>
- <Cell col="50" text="bind:rgstdepthngnm"/>
- <Cell col="51" text="bind:prcpkindcd"/>
- <Cell col="52" text="bind:rcptno"/>
- <Cell col="53" text="bind:acptseqno"/>
- <Cell col="54" text="bind:prcpdelivefact"/>
- <Cell col="55" text="bind:execrid1"/>
- <Cell col="56" text="bind:execrid2"/>
- <Cell col="57" text="bind:execrid3"/>
- <Cell col="58" text="bind:execrid4"/>
- <Cell col="59" text="bind:prcpgenrflag"/>
- <Cell col="60" text="bind:orddd"/>
- <Cell col="61" text="bind:rgstrid"/>
- <Cell col="62" text="bind:orddrnm"/>
- <Cell col="63" text="bind:orddeptcd"/>
- <Cell col="64" text="bind:rcptdd"/>
- <Cell col="65" text="bind:orddrid"/>
- <Cell col="66" text="bind:prcpgenrflag"/>
- <Cell col="67" text="bind:prcpno"/>
- <Cell col="68" text="bind:eqmtifyn"/>
- <Cell col="69" text="bind:basesuppdeptcd"/>
- <Cell col="70" text="bind:tmpldata"/>
- <Cell col="71" text="bind:wardcd"/>
- <Cell col="72" text="bind:prcpexecdeptcd"/>
- <Cell col="73" text="bind:rsrvdt"/>
- <Cell col="74" text="bind:prcphistno"/>
- <Cell col="75" text="bind:inclprcpcd"/>
- <Cell col="76" text="bind:actorddd"/>
- <Cell col="77" text="bind:cretno"/>
- <Cell col="78" text="bind:pacsnocretyn"/>
- <Cell col="79" text="bind:examroomnm"/>
- <Cell col="80" text="bind:execprcpstatcd"/>
- <Cell col="81" text="bind:tmpldata"/>
- <Cell col="82" text="bind:prcpdd"/>
- <Cell col="83" text="bind:cnclresncdnm"/>
- <Cell col="84" text="bind:rsrvexmptmplcd"/>
- <Cell col="85" text="bind:rrgstno2"/>
- <Cell col="86" text="bind:clincstdycd"/>
- <Cell col="87" text="bind:aftrcptinfo"/>
- <Cell col="88" text="bind:unrsrvexecyn"/>
- <Cell col="89" displaytype="combo" edittype="combo" text="bind:insukind" combodataset="ds_init_P0008" combocodecol="cdid" combodatacol="cdnm" enable="false"/>
- <Cell col="90" text="bind:specdrid"/>
- </Band>
- </Format>
- </Formats>
- </Grid>
- </Layout>
- </Layouts>
- </Tabpage>
- <Tabpage id="case3" text="대상자조회">
- <Layouts>
- <Layout>
- <Grid id="grd_ordlist3" taborder="3" binddataset="ds_main_list_ordlist3" useinputpanel="false" position="absolute 0 0 1124 91" anchor="default">
- <Formats>
- <Format id="default">
- <Columns>
- <Column size="25" band="left"/>
- <Column size="16" band="left"/>
- <Column size="62" band="left"/>
- <Column size="61" band="left"/>
- <Column size="38" band="left"/>
- <Column size="60" band="left"/>
- <Column size="73"/>
- <Column size="58"/>
- <Column size="72"/>
- <Column size="40"/>
- <Column size="68"/>
- <Column size="42"/>
- <Column size="76"/>
- <Column size="104"/>
- <Column size="70"/>
- <Column size="30"/>
- <Column size="83"/>
- <Column size="41"/>
- <Column size="50"/>
- <Column size="102"/>
- <Column size="80"/>
- <Column size="137"/>
- <Column size="31"/>
- <Column size="31"/>
- <Column size="101"/>
- <Column size="62"/>
- <Column size="60"/>
- <Column size="68"/>
- <Column size="100"/>
- <Column size="100"/>
- <Column size="39"/>
- <Column size="49"/>
- <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"/>
- <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="100"/>
- <Column size="0"/>
- </Columns>
- <Rows>
- <Row size="24" band="head"/>
- <Row size="24"/>
- </Rows>
- <Band id="head">
- <Cell/>
- <Cell col="1"/>
- <Cell col="2" text="등록번호3"/>
- <Cell col="3" text="성명"/>
- <Cell col="4" text="S/A"/>
- <Cell col="5" text="주민번호"/>
- <Cell col="6" text="진료과"/>
- <Cell col="7" text="진료의"/>
- <Cell col="8" text="지정검사의"/>
- <Cell col="9" colspan="2" text="선택진료의" taborder="undefined"/>
- <Cell col="11" text="포터블"/>
- <Cell col="12" text="처방코드"/>
- <Cell col="13" text="처방일자"/>
- <Cell col="14" text="처방상태"/>
- <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="취소코드"/>
- <Cell col="28" text="전화번호1"/>
- <Cell col="29" text="전화번호2"/>
- <Cell col="30" text="키"/>
- <Cell col="31" text="몸무게"/>
- <Cell col="32" text="execprcpuniqno"/>
- <Cell col="33" text="prcpexecdeptcd"/>
- <Cell col="34" text="excuroomcd"/>
- <Cell col="35" text="inflag"/>
- <Cell col="36" text="rcptacptyn"/>
- <Cell col="37" text="ExecBaseFlag"/>
- <Cell col="38" text="excupartcd"/>
- <Cell col="39" text="modality"/>
- <Cell col="40" text="execrem"/>
- <Cell col="41" text="prcpdelivefact"/>
- <Cell col="42" text="carecnfmdd"/>
- <Cell col="43" text="prcpkindcd"/>
- <Cell col="44" text="rcptno"/>
- <Cell col="45" text="acptseqno"/>
- <Cell col="46" text="prcpgenrflag"/>
- <Cell col="47" text="orddd"/>
- <Cell col="48" text="orddeptcd"/>
- <Cell col="49" text="rcptdd"/>
- <Cell col="50" text="orddrid"/>
- <Cell col="51" text="prcpno"/>
- <Cell col="52" text="EqmtIFYn"/>
- <Cell col="53" text="basesuppdeptcd"/>
- <Cell col="54" text="cretno"/>
- <Cell col="55" text="wardcd"/>
- <Cell col="56" text="rsrvdt"/>
- <Cell col="57" text="rgstdeptcd"/>
- <Cell col="58" text="rgstrid"/>
- <Cell col="59" text="inclprcpcd"/>
- <Cell col="60" text="lrgcd"/>
- <Cell col="61" text="mdlcd"/>
- <Cell col="62" text="actorddd"/>
- <Cell col="63" text="examroomnm"/>
- <Cell col="64" text="prcphistno"/>
- <Cell col="65" text="pacsnocretyn"/>
- <Cell col="66" text="execprcpstatcd"/>
- <Cell col="67" text="caption1"/>
- <Cell col="68" text="caption2"/>
- <Cell col="69" text="caption3"/>
- <Cell col="70" text="cnclresncdnm"/>
- <Cell col="71" text="rsrvexmptmplcd"/>
- <Cell col="72" text="rrsgtno2"/>
- <Cell col="73" text="clincstdycd"/>
- <Cell col="74" text="aftrcptinfo"/>
- <Cell col="75" text="급비"/>
- <Cell col="76" text="급비"/>
- </Band>
- <Band id="body">
- <Cell celltype="head" text="expr:currow+1"/>
- <Cell col="1" displaytype="checkbox" edittype="checkbox" text="bind:check" expr="expr:(check=="true"||check==1)?1:0"/>
- <Cell col="2" text="bind:pid"/>
- <Cell col="3" text="bind:hngnm"/>
- <Cell col="4" text="bind:sna"/>
- <Cell col="5" text="bind:rrgstno1"/>
- <Cell col="6" style="align:left;" text="bind:orddepthngnm"/>
- <Cell col="7" text="bind:orddrnm"/>
- <Cell col="8" text="bind:selectdrid"/>
- <Cell col="9" text="bind:choiordflag"/>
- <Cell col="10" displaytype="combo" edittype="combo" text="bind:specdrid" combodataset="ds_init_specdridlist" combocodecol="userid" combodatacol="usernm" enable="true"/>
- <Cell col="11" text="bind:portprcpflag"/>
- <Cell col="12" text="bind:calcscorcd"/>
- <Cell col="13" displaytype="date" style="align:left;" text="bind:prcpdt" wordwrap="char" mask="yyyy-MM-dd HH:mm" calendardisplaynulltype="nulltext"/>
- <Cell col="14" text="bind:statcd" enable="false"/>
- <Cell col="15" text="bind:rcptyn"/>
- <Cell col="16" displaytype="combo" edittype="combo" text="bind:excuroomcd" combodataset="ds_cmb_initexecroom" combocodecol="excuroomcdid" combodatacol="excuroomcdnm"/>
- <Cell col="17" style="align:left;" text="bind:roomcd"/>
- <Cell col="18" text="bind:roomnm"/>
- <Cell col="19" displaytype="date" text="bind:srchrsrvdt" mask="yyyy-MM-dd HH:mm" calendardisplaynulltype="nulltext"/>
- <Cell col="20" displaytype="date" text="bind:prcphopedd" calendardisplaynulltype="nulltext"/>
- <Cell col="21" style="align:left;" text="bind:prcpnm"/>
- <Cell col="22" text="bind:prcpqty"/>
- <Cell col="23" text="bind:execprcptims"/>
- <Cell col="24" displaytype="date" style="align:left;" text="bind:execdt" wordwrap="char" mask="yyyy-MM-dd HH:mm" calendardisplaynulltype="nulltext"/>
- <Cell col="25" displaytype="combo" edittype="combo" text="bind:execrid1" combodataset="ds_cmb_initexecrid" combocodecol="execrid1cdid" combodatacol="execrid1cdnm"/>
- <Cell col="26" text="bind:rsrvrnm"/>
- <Cell col="27" text="bind:basecd"/>
- <Cell col="28" text="bind:hometel"/>
- <Cell col="29" text="bind:mpphontel"/>
- <Cell col="30" text="bind:hight"/>
- <Cell col="31" text="bind:weight"/>
- <Cell col="32" text="bind:execprcpuniqno"/>
- <Cell col="33" text="bind:prcpexecdeptcd"/>
- <Cell col="34" text="bind:inflag"/>
- <Cell col="35" text="bind:rcptacptyn"/>
- <Cell col="36" text="bind:execbaseflag"/>
- <Cell col="37" text="bind:excupartcd"/>
- <Cell col="38" text="bind:modality"/>
- <Cell col="39" text="bind:execrem"/>
- <Cell col="40" text="bind:prcpdelivefact"/>
- <Cell col="41" text="bind:carecnfmdd"/>
- <Cell col="42" text="bind:prcpkindcd"/>
- <Cell col="43" text="bind:rcptno"/>
- <Cell col="44" text="bind:acptseqno"/>
- <Cell col="45" text="bind:prcpgenrflag"/>
- <Cell col="46" text="bind:orddd"/>
- <Cell col="47" text="bind:orddeptcd"/>
- <Cell col="48" text="bind:rcptdd"/>
- <Cell col="49" text="bind:orddrid"/>
- <Cell col="50" text="bind:prcpno"/>
- <Cell col="51" text="bind:eqmtifyn"/>
- <Cell col="52" text="bind:basesuppdeptcd"/>
- <Cell col="53" text="bind:cretno"/>
- <Cell col="54" text="bind:wardcd"/>
- <Cell col="55" text="bind:rsrvdt"/>
- <Cell col="56" text="bind:rgstdeptcd"/>
- <Cell col="57" text="bind:rgstrid"/>
- <Cell col="58" text="bind:inclprcpcd"/>
- <Cell col="59" text="bind:lrgcd"/>
- <Cell col="60" text="bind:mdlcd"/>
- <Cell col="61" text="bind:actorddd"/>
- <Cell col="62" text="bind:examroomnm"/>
- <Cell col="63" text="bind:prcphistno"/>
- <Cell col="64" text="bind:pacsnocretyn"/>
- <Cell col="65" text="bind:execprcpstatcd"/>
- <Cell col="66" text="bind:tmpldata"/>
- <Cell col="67" text="bind:prcpdd"/>
- <Cell col="68" text="bind:rsrvrid"/>
- <Cell col="69" text="bind:cnclresncdnm"/>
- <Cell col="70" text="bind:rsrvexmptmplcd"/>
- <Cell col="71" text="bind:rrgstno2"/>
- <Cell col="72" text="bind:clincstdycd"/>
- <Cell col="73" text="bind:aftrcptinfo"/>
- <Cell col="74" text="bind:unrsrvexecyn"/>
- <Cell col="75" displaytype="combo" edittype="combo" text="bind:insukind" combodataset="ds_init_P0008" combocodecol="cdid" combodatacol="cdnm" enable="false"/>
- <Cell col="76" text="bind:specdrid"/>
- </Band>
- </Format>
- </Formats>
- </Grid>
- <Grid id="grd_ordlist3_resize" taborder="4" binddataset="ds_temp_list_ordlist3" scrollpixel="all" useinputpanel="false" cellsizingtype="col" cellmovingtype="col" onrbuttonup="switch1_case3_grd_ordlist3_resize_onrbuttonup" ondragmove="switch1_resize_ondragmove" position="absolute 0 98 1124 189" anchor="default">
- <Formats>
- <Format id="default">
- <Columns>
- <Column size="25" band="left"/>
- <Column size="16" band="left"/>
- <Column size="62" band="left"/>
- <Column size="61" band="left"/>
- <Column size="38" band="left"/>
- <Column size="60" band="left"/>
- <Column size="73"/>
- <Column size="58"/>
- <Column size="81"/>
- <Column size="40"/>
- <Column size="68"/>
- <Column size="42"/>
- <Column size="76"/>
- <Column size="104"/>
- <Column size="70"/>
- <Column size="30"/>
- <Column size="83"/>
- <Column size="41"/>
- <Column size="50"/>
- <Column size="102"/>
- <Column size="80"/>
- <Column size="137"/>
- <Column size="31"/>
- <Column size="31"/>
- <Column size="101"/>
- <Column size="62"/>
- <Column size="60"/>
- <Column size="68"/>
- <Column size="100"/>
- <Column size="100"/>
- <Column size="39"/>
- <Column size="49"/>
- <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"/>
- <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="100"/>
- <Column size="0"/>
- </Columns>
- <Rows>
- <Row size="24" band="head"/>
- <Row size="24"/>
- </Rows>
- <Band id="head">
- <Cell displaytype="normal"/>
- <Cell col="1"/>
- <Cell col="2" text="등록번호3"/>
- <Cell col="3" text="성명"/>
- <Cell col="4" text="S/A"/>
- <Cell col="5" text="주민번호"/>
- <Cell col="6" text="진료과"/>
- <Cell col="7" text="진료의"/>
- <Cell col="8" text="지정검사의"/>
- <Cell col="9" colspan="2" text="선택진료의" taborder="undefined"/>
- <Cell col="11" text="포터블"/>
- <Cell col="12" text="처방코드"/>
- <Cell col="13" text="처방일자"/>
- <Cell col="14" text="처방상태"/>
- <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="취소코드"/>
- <Cell col="28" text="전화번호1"/>
- <Cell col="29" text="전화번호2"/>
- <Cell col="30" text="키"/>
- <Cell col="31" text="몸무게"/>
- <Cell col="32" text="execprcpuniqno"/>
- <Cell col="33" text="prcpexecdeptcd"/>
- <Cell col="34" text="excuroomcd"/>
- <Cell col="35" text="inflag"/>
- <Cell col="36" text="rcptacptyn"/>
- <Cell col="37" text="ExecBaseFlag"/>
- <Cell col="38" text="excupartcd"/>
- <Cell col="39" text="modality"/>
- <Cell col="40" text="execrem"/>
- <Cell col="41" text="prcpdelivefact"/>
- <Cell col="42" text="carecnfmdd"/>
- <Cell col="43" text="prcpkindcd"/>
- <Cell col="44" text="rcptno"/>
- <Cell col="45" text="acptseqno"/>
- <Cell col="46" text="prcpgenrflag"/>
- <Cell col="47" text="orddd"/>
- <Cell col="48" text="orddeptcd"/>
- <Cell col="49" text="rcptdd"/>
- <Cell col="50" text="orddrid"/>
- <Cell col="51" text="prcpno"/>
- <Cell col="52" text="EqmtIFYn"/>
- <Cell col="53" text="basesuppdeptcd"/>
- <Cell col="54" text="cretno"/>
- <Cell col="55" text="wardcd"/>
- <Cell col="56" text="rsrvdt"/>
- <Cell col="57" text="rgstdeptcd"/>
- <Cell col="58" text="rgstrid"/>
- <Cell col="59" text="inclprcpcd"/>
- <Cell col="60" text="lrgcd"/>
- <Cell col="61" text="mdlcd"/>
- <Cell col="62" text="actorddd"/>
- <Cell col="63" text="examroomnm"/>
- <Cell col="64" text="prcphistno"/>
- <Cell col="65" text="pacsnocretyn"/>
- <Cell col="66" text="execprcpstatcd"/>
- <Cell col="67" text="caption1"/>
- <Cell col="68" text="caption2"/>
- <Cell col="69" text="caption3"/>
- <Cell col="70" text="cnclresncdnm"/>
- <Cell col="71" text="rsrvexmptmplcd"/>
- <Cell col="72" text="rrsgtno2"/>
- <Cell col="73" text="clincstdycd"/>
- <Cell col="74" text="aftrcptinfo"/>
- <Cell col="75" text="급비"/>
- <Cell col="76" text="급비"/>
- </Band>
- <Band id="body">
- <Cell celltype="head" text="expr:currow+1"/>
- <Cell col="1" displaytype="checkbox" edittype="checkbox" text="bind:check" expr="expr:(check=="true"||check==1)?1:0"/>
- <Cell col="2" text="bind:pid"/>
- <Cell col="3" text="bind:hngnm"/>
- <Cell col="4" text="bind:sna"/>
- <Cell col="5" text="bind:rrgstno1"/>
- <Cell col="6" style="align:left;" text="bind:orddepthngnm"/>
- <Cell col="7" text="bind:orddrnm"/>
- <Cell col="8" displaytype="combo" edittype="combo" text="bind:selectdrid"/>
- <Cell col="9" text="bind:choiordflag"/>
- <Cell col="10" displaytype="combo" edittype="combo" text="bind:specdrid" combodataset="ds_init_specdridlist" combocodecol="userid" combodatacol="usernm" enable="true"/>
- <Cell col="11" text="bind:portprcpflag"/>
- <Cell col="12" text="bind:calcscorcd"/>
- <Cell col="13" displaytype="date" style="align:left;" text="bind:prcpdt" wordwrap="char" mask="yyyy-MM-dd HH:mm" calendardisplaynulltype="nulltext"/>
- <Cell col="14" text="bind:statcd" enable="false"/>
- <Cell col="15" text="bind:rcptyn"/>
- <Cell col="16" displaytype="combo" edittype="combo" text="bind:excuroomcd" combodataset="ds_cmb_initexecroom" combocodecol="excuroomcdid" combodatacol="excuroomcdnm"/>
- <Cell col="17" style="align:left;" text="bind:roomcd"/>
- <Cell col="18" text="bind:roomnm"/>
- <Cell col="19" displaytype="date" text="bind:srchrsrvdt" mask="yyyy-MM-dd HH:mm" calendardisplaynulltype="nulltext"/>
- <Cell col="20" displaytype="date" text="bind:prcphopedd" calendardisplaynulltype="nulltext"/>
- <Cell col="21" style="align:left;" text="bind:prcpnm"/>
- <Cell col="22" text="bind:prcpqty"/>
- <Cell col="23" text="bind:execprcptims"/>
- <Cell col="24" displaytype="date" style="align:left;" text="bind:execdt" wordwrap="char" mask="yyyy-MM-dd HH:mm" calendardisplaynulltype="nulltext"/>
- <Cell col="25" displaytype="combo" edittype="combo" text="bind:execrid1" combodataset="ds_cmb_initexecrid" combocodecol="execrid1cdid" combodatacol="execrid1cdnm"/>
- <Cell col="26" text="bind:rsrvrnm"/>
- <Cell col="27" text="bind:basecd"/>
- <Cell col="28" text="bind:hometel"/>
- <Cell col="29" text="bind:mpphontel"/>
- <Cell col="30" text="bind:hight"/>
- <Cell col="31" text="bind:weight"/>
- <Cell col="32" text="bind:execprcpuniqno"/>
- <Cell col="33" text="bind:prcpexecdeptcd"/>
- <Cell col="34" text="bind:inflag"/>
- <Cell col="35" text="bind:rcptacptyn"/>
- <Cell col="36" text="bind:execbaseflag"/>
- <Cell col="37" text="bind:excupartcd"/>
- <Cell col="38" text="bind:modality"/>
- <Cell col="39" text="bind:execrem"/>
- <Cell col="40" text="bind:prcpdelivefact"/>
- <Cell col="41" text="bind:carecnfmdd"/>
- <Cell col="42" text="bind:prcpkindcd"/>
- <Cell col="43" text="bind:rcptno"/>
- <Cell col="44" text="bind:acptseqno"/>
- <Cell col="45" text="bind:prcpgenrflag"/>
- <Cell col="46" text="bind:orddd"/>
- <Cell col="47" text="bind:orddeptcd"/>
- <Cell col="48" text="bind:rcptdd"/>
- <Cell col="49" text="bind:orddrid"/>
- <Cell col="50" text="bind:prcpno"/>
- <Cell col="51" text="bind:eqmtifyn"/>
- <Cell col="52" text="bind:basesuppdeptcd"/>
- <Cell col="53" text="bind:cretno"/>
- <Cell col="54" text="bind:wardcd"/>
- <Cell col="55" text="bind:rsrvdt"/>
- <Cell col="56" text="bind:rgstdeptcd"/>
- <Cell col="57" text="bind:rgstrid"/>
- <Cell col="58" text="bind:inclprcpcd"/>
- <Cell col="59" text="bind:lrgcd"/>
- <Cell col="60" text="bind:mdlcd"/>
- <Cell col="61" text="bind:actorddd"/>
- <Cell col="62" text="bind:examroomnm"/>
- <Cell col="63" text="bind:prcphistno"/>
- <Cell col="64" text="bind:pacsnocretyn"/>
- <Cell col="65" text="bind:execprcpstatcd"/>
- <Cell col="66" text="bind:tmpldata"/>
- <Cell col="67" text="bind:prcpdd"/>
- <Cell col="68" text="bind:rsrvrid"/>
- <Cell col="69" text="bind:cnclresncdnm"/>
- <Cell col="70" text="bind:rsrvexmptmplcd"/>
- <Cell col="71" text="bind:rrgstno2"/>
- <Cell col="72" text="bind:clincstdycd"/>
- <Cell col="73" text="bind:aftrcptinfo"/>
- <Cell col="74" text="bind:unrsrvexecyn"/>
- <Cell col="75" displaytype="combo" edittype="combo" text="bind:insukind" combodataset="ds_init_P0008" combocodecol="cdid" combodatacol="cdnm" enable="false"/>
- <Cell col="76" text="bind:specdrid"/>
- </Band>
- </Format>
- </Formats>
- </Grid>
- </Layout>
- </Layouts>
- </Tabpage>
- </Tabpages>
- </Tab>
- </Layout>
- </Layouts>
- </Div>
- </Layout>
- </Layouts>
- </Div>
- </Layout>
- </Layouts>
- <Objects>
- <Dataset id="ds_main_list_ordlist1" firefirstcount="0" firenextcount="0" useclientlayout="false" updatecontrol="true" enableevent="true" loadkeymode="keep" reversesubsum="false">
- <ColumnInfo>
- <Column id="check" type="STRING"/>
- <Column id="pid" type="STRING"/>
- <Column id="hngnm" type="STRING"/>
- <Column id="sna" type="STRING"/>
- <Column id="rrgstno1" type="STRING"/>
- <Column id="orddepthngnm" type="STRING"/>
- <Column id="orddrnm" type="STRING"/>
- <Column id="choiordflag" type="STRING"/>
- <Column id="specdrid" type="STRING"/>
- <Column id="portprcpflag" type="STRING"/>
- <Column id="calcscorcd" type="STRING"/>
- <Column id="prcpdt" type="STRING"/>
- <Column id="statcd" type="STRING"/>
- <Column id="roomcd" type="STRING"/>
- <Column id="srchrsrvdt" type="STRING"/>
- <Column id="prcphopedd" type="STRING"/>
- <Column id="prcpnm" type="STRING"/>
- <Column id="prcpqty" type="STRING"/>
- <Column id="execprcptims" type="STRING"/>
- <Column id="execdt" type="STRING"/>
- <Column id="execrid1" type="STRING"/>
- <Column id="rsrvrnm" type="STRING"/>
- <Column id="rcptyn" type="STRING"/>
- <Column id="basecd" type="STRING"/>
- <Column id="hometel" type="STRING"/>
- <Column id="mpphontel" type="STRING"/>
- <Column id="hight" type="STRING"/>
- <Column id="weight" type="STRING"/>
- <Column id="execprcpuniqno" type="STRING"/>
- <Column id="prcpexecdeptcd" type="STRING"/>
- <Column id="excuroomcd" type="STRING"/>
- <Column id="inflag" type="STRING"/>
- <Column id="rcptacptyn" type="STRING"/>
- <Column id="execbaseflag" type="STRING"/>
- <Column id="excupartcd" type="STRING"/>
- <Column id="modality" type="STRING"/>
- <Column id="execrem" type="STRING"/>
- <Column id="prcpdelivefact" type="STRING"/>
- <Column id="carecnfmdd" type="STRING"/>
- <Column id="prcpkindcd" type="STRING"/>
- <Column id="rcptno" type="STRING"/>
- <Column id="acptseqno" type="STRING"/>
- <Column id="prcpgenrflag" type="STRING"/>
- <Column id="orddd" type="STRING"/>
- <Column id="orddeptcd" type="STRING"/>
- <Column id="rcptdd" type="STRING"/>
- <Column id="orddrid" type="STRING"/>
- <Column id="prcpno" type="STRING"/>
- <Column id="eqmtifyn" type="STRING"/>
- <Column id="basesuppdeptcd" type="STRING"/>
- <Column id="cretno" type="STRING"/>
- <Column id="wardcd" type="STRING"/>
- <Column id="rsrvdt" type="STRING"/>
- <Column id="rgstdeptcd" type="STRING"/>
- <Column id="rgstrid" type="STRING"/>
- <Column id="inclprcpcd" type="STRING"/>
- <Column id="lrgcd" type="STRING"/>
- <Column id="mdlcd" type="STRING"/>
- <Column id="actorddd" type="STRING"/>
- <Column id="examroomnm" type="STRING"/>
- <Column id="prcphistno" type="STRING"/>
- <Column id="pacsnocretyn" type="STRING"/>
- <Column id="execprcpstatcd" type="STRING"/>
- <Column id="tmpldata" type="STRING"/>
- <Column id="prcpdd" type="STRING"/>
- <Column id="rsrvrid" type="STRING"/>
- <Column id="cnclresncdnm" type="STRING"/>
- <Column id="rsrvexmptmplcd" type="STRING"/>
- <Column id="rrgstno2" type="STRING"/>
- <Column id="clincstdycd" type="STRING"/>
- <Column id="aftrcptinfo" type="STRING"/>
- <Column id="unrsrvexecyn" type="STRING"/>
- <Column id="insukind" type="STRING"/>
- <Column id="selectdrid" type="STRING" size="256"/>
- </ColumnInfo>
- <Rows>
- <Row/>
- </Rows>
- </Dataset>
- <Dataset id="ds_main_list_ordlist4" firefirstcount="0" firenextcount="0" useclientlayout="false" updatecontrol="true" enableevent="true" loadkeymode="keep" reversesubsum="false">
- <ColumnInfo>
- <Column id="check" type="STRING"/>
- <Column id="pid" type="STRING"/>
- <Column id="hngnm" type="STRING"/>
- <Column id="sna" type="STRING"/>
- <Column id="rrgstno1" type="STRING"/>
- <Column id="orddepthngnm" type="STRING"/>
- <Column id="orddrnm" type="STRING"/>
- <Column id="portprcpflag" type="STRING"/>
- <Column id="calcscorcd" type="STRING"/>
- <Column id="prcpdt" type="STRING"/>
- <Column id="statcd" type="STRING"/>
- <Column id="roomcd" type="STRING"/>
- <Column id="srchrsrvdt" type="STRING"/>
- <Column id="prcphopedd" type="STRING"/>
- <Column id="prcpnm" type="STRING"/>
- <Column id="prcpqty" type="STRING"/>
- <Column id="rsrvrnm" type="STRING"/>
- <Column id="execdt" type="STRING"/>
- <Column id="execrnm" type="STRING"/>
- <Column id="rcptyn" type="STRING"/>
- <Column id="basecd" type="STRING"/>
- <Column id="hometel" type="STRING"/>
- <Column id="mpphontel" type="STRING"/>
- <Column id="hight" type="STRING"/>
- <Column id="weight" type="STRING"/>
- <Column id="execprcpuniqno" type="STRING"/>
- <Column id="prcpexecdeptcd" type="STRING"/>
- <Column id="excuroomcd" type="STRING"/>
- <Column id="rgstdeptcd" type="STRING"/>
- <Column id="rgstrid" type="STRING"/>
- <Column id="inflag" type="STRING"/>
- <Column id="rcptacptyn" type="STRING"/>
- <Column id="execbaseflag" type="STRING"/>
- <Column id="lrgcd" type="STRING"/>
- <Column id="mdlcd" type="STRING"/>
- <Column id="excupartcd" type="STRING"/>
- <Column id="modality" type="STRING"/>
- <Column id="execrem" type="STRING"/>
- <Column id="prcpdelivefact" type="STRING"/>
- <Column id="carecnfmdd" type="STRING"/>
- <Column id="excuroomnm" type="STRING"/>
- <Column id="rgstdepthngnm" type="STRING"/>
- <Column id="prcpkindcd" type="STRING"/>
- <Column id="rcptno" type="STRING"/>
- <Column id="acptseqno" type="STRING"/>
- <Column id="prcpdelivefact" type="STRING"/>
- <Column id="prcpgenrflag" type="STRING"/>
- <Column id="orddd" type="STRING"/>
- <Column id="rgstrid" type="STRING"/>
- <Column id="orddeptcd" type="STRING"/>
- <Column id="rcptdd" type="STRING"/>
- <Column id="orddrid" type="STRING"/>
- <Column id="prcpno" type="STRING"/>
- <Column id="eqmtifyn" type="STRING"/>
- <Column id="basesuppdeptcd" type="STRING"/>
- <Column id="rsrvdt" type="STRING"/>
- <Column id="rgstrid" type="STRING"/>
- <Column id="rgstdeptcd" type="STRING"/>
- <Column id="inclprcpcd" type="STRING"/>
- <Column id="examroomnm" type="STRING"/>
- <Column id="execprcpstatcd" type="STRING"/>
- <Column id="tmpldata" type="STRING"/>
- <Column id="prcpdd" type="STRING"/>
- <Column id="rsrvrid" type="STRING"/>
- <Column id="pacsnocretyn" type="STRING"/>
- <Column id="cnclresncdnm" type="STRING"/>
- <Column id="rsrvexmptmplcd" type="STRING"/>
- <Column id="rrgstno2" type="STRING"/>
- <Column id="clincstdycd" type="STRING"/>
- <Column id="execrid1" type="STRING"/>
- <Column id="aftrcptinfo" type="STRING"/>
- <Column id="unrsrvexecyn" type="STRING"/>
- <Column id="insukind" type="STRING"/>
- <Column id="selectdrid" type="STRING" size="256"/>
- </ColumnInfo>
- <Rows>
- <Row/>
- </Rows>
- </Dataset>
- <Dataset id="ds_main_list_ordlist6" firefirstcount="0" firenextcount="0" useclientlayout="false" updatecontrol="true" enableevent="true" loadkeymode="keep" reversesubsum="false">
- <ColumnInfo>
- <Column id="check" type="STRING"/>
- <Column id="pid" type="STRING"/>
- <Column id="hngnm" type="STRING"/>
- <Column id="sna" type="STRING"/>
- <Column id="rrgstno1" type="STRING"/>
- <Column id="orddepthngnm" type="STRING"/>
- <Column id="orddrnm" type="STRING"/>
- <Column id="portprcpflag" type="STRING"/>
- <Column id="calcscorcd" type="STRING"/>
- <Column id="prcpdt" type="STRING"/>
- <Column id="statcd" type="STRING"/>
- <Column id="roomcd" type="STRING"/>
- <Column id="srchrsrvdt" type="STRING"/>
- <Column id="prcphopedd" type="STRING"/>
- <Column id="prcpnm" type="STRING"/>
- <Column id="prcpqty" type="STRING"/>
- <Column id="execprcptims" type="STRING"/>
- <Column id="rsrvid" type="STRING"/>
- <Column id="rcptdd" type="STRING"/>
- <Column id="acptid" type="STRING"/>
- <Column id="execdt" type="STRING"/>
- <Column id="execrid1" type="STRING"/>
- <Column id="rcptyn" type="STRING"/>
- <Column id="basecd" type="STRING"/>
- <Column id="hometel" type="STRING"/>
- <Column id="mpphontel" type="STRING"/>
- <Column id="hight" type="STRING"/>
- <Column id="weight" type="STRING"/>
- <Column id="execprcpuniqno" type="STRING"/>
- <Column id="prcpexecdeptcd" type="STRING"/>
- <Column id="excuroomcd" type="STRING"/>
- <Column id="rgstdeptcd" type="STRING"/>
- <Column id="rgstrid" type="STRING"/>
- <Column id="inflag" type="STRING"/>
- <Column id="rcptacptyn" type="STRING"/>
- <Column id="execbaseflag" type="STRING"/>
- <Column id="lrgcd" type="STRING"/>
- <Column id="mdlcd" type="STRING"/>
- <Column id="excupartcd" type="STRING"/>
- <Column id="modality" type="STRING"/>
- <Column id="acptrem" type="STRING"/>
- <Column id="execrem" type="STRING"/>
- <Column id="prcpdelivefact" type="STRING"/>
- <Column id="carecnfmdd" type="STRING"/>
- <Column id="excuroomnm" type="STRING"/>
- <Column id="rgstdepthngnm" type="STRING"/>
- <Column id="prcpkindcd" type="STRING"/>
- <Column id="rcptno" type="STRING"/>
- <Column id="acptseqno" type="STRING"/>
- <Column id="prcpdelivefact" type="STRING"/>
- <Column id="execrid1" type="STRING"/>
- <Column id="execrid2" type="STRING"/>
- <Column id="execrid3" type="STRING"/>
- <Column id="execrid4" type="STRING"/>
- <Column id="prcpgenrflag" type="STRING"/>
- <Column id="orddd" type="STRING"/>
- <Column id="rgstrid" type="STRING"/>
- <Column id="orddeptcd" type="STRING"/>
- <Column id="rcptdd" type="STRING"/>
- <Column id="orddrid" type="STRING"/>
- <Column id="prcpgenrflag" type="STRING"/>
- <Column id="prcpno" type="STRING"/>
- <Column id="eqmtifyn" type="STRING"/>
- <Column id="basesuppdeptcd" type="STRING"/>
- <Column id="tmpldata" type="STRING"/>
- <Column id="wardcd" type="STRING"/>
- <Column id="prcpexecdeptcd" type="STRING"/>
- <Column id="rsrvdt" type="STRING"/>
- <Column id="prcphistno" type="STRING"/>
- <Column id="inclprcpcd" type="STRING"/>
- <Column id="actorddd" type="STRING"/>
- <Column id="cretno" type="STRING"/>
- <Column id="pacsnocretyn" type="STRING"/>
- <Column id="execprcpstatcd" type="STRING"/>
- <Column id="tmpldata" type="STRING"/>
- <Column id="prcpdd" type="STRING"/>
- <Column id="cnclresncdnm" type="STRING"/>
- <Column id="rsrvexmptmplcd" type="STRING"/>
- <Column id="rrgstno2" type="STRING"/>
- <Column id="clincstdycd" type="STRING"/>
- <Column id="aftrcptinfo" type="STRING"/>
- <Column id="unrsrvexecyn" type="STRING"/>
- <Column id="examroomnm" type="STRING"/>
- <Column id="insukind" type="STRING"/>
- <Column id="selectdrid" type="STRING" size="256"/>
- </ColumnInfo>
- <Rows>
- <Row/>
- </Rows>
- </Dataset>
- <Dataset id="ds_main_list_ordlist3" firefirstcount="0" firenextcount="0" useclientlayout="false" updatecontrol="true" enableevent="true" loadkeymode="keep" reversesubsum="false">
- <ColumnInfo>
- <Column id="check" type="STRING"/>
- <Column id="pid" type="STRING"/>
- <Column id="hngnm" type="STRING"/>
- <Column id="sna" type="STRING"/>
- <Column id="rrgstno1" type="STRING"/>
- <Column id="orddepthngnm" type="STRING"/>
- <Column id="orddrnm" type="STRING"/>
- <Column id="portprcpflag" type="STRING"/>
- <Column id="calcscorcd" type="STRING"/>
- <Column id="prcpdt" type="STRING"/>
- <Column id="statcd" type="STRING"/>
- <Column id="roomcd" type="STRING"/>
- <Column id="srchrsrvdt" type="STRING"/>
- <Column id="prcphopedd" type="STRING"/>
- <Column id="prcpnm" type="STRING"/>
- <Column id="prcpqty" type="STRING"/>
- <Column id="execdt" type="STRING"/>
- <Column id="execrid1" type="STRING"/>
- <Column id="rsrvrnm" type="STRING"/>
- <Column id="rcptyn" type="STRING"/>
- <Column id="basecd" type="STRING"/>
- <Column id="hometel" type="STRING"/>
- <Column id="mpphontel" type="STRING"/>
- <Column id="hight" type="STRING"/>
- <Column id="weight" type="STRING"/>
- <Column id="execprcpuniqno" type="STRING"/>
- <Column id="prcpexecdeptcd" type="STRING"/>
- <Column id="excuroomcd" type="STRING"/>
- <Column id="inflag" type="STRING"/>
- <Column id="rcptacptyn" type="STRING"/>
- <Column id="execbaseflag" type="STRING"/>
- <Column id="excupartcd" type="STRING"/>
- <Column id="modality" type="STRING"/>
- <Column id="execrem" type="STRING"/>
- <Column id="prcpdelivefact" type="STRING"/>
- <Column id="carecnfmdd" type="STRING"/>
- <Column id="prcpkindcd" type="STRING"/>
- <Column id="rcptno" type="STRING"/>
- <Column id="acptseqno" type="STRING"/>
- <Column id="prcpgenrflag" type="STRING"/>
- <Column id="orddd" type="STRING"/>
- <Column id="orddeptcd" type="STRING"/>
- <Column id="rcptdd" type="STRING"/>
- <Column id="orddrid" type="STRING"/>
- <Column id="prcpno" type="STRING"/>
- <Column id="eqmtifyn" type="STRING"/>
- <Column id="basesuppdeptcd" type="STRING"/>
- <Column id="cretno" type="STRING"/>
- <Column id="wardcd" type="STRING"/>
- <Column id="rsrvdt" type="STRING"/>
- <Column id="rgstdeptcd" type="STRING"/>
- <Column id="rgstrid" type="STRING"/>
- <Column id="inclprcpcd" type="STRING"/>
- <Column id="lrgcd" type="STRING"/>
- <Column id="mdlcd" type="STRING"/>
- <Column id="actorddd" type="STRING"/>
- <Column id="examroomnm" type="STRING"/>
- <Column id="prcphistno" type="STRING"/>
- <Column id="pacsnocretyn" type="STRING"/>
- <Column id="execprcpstatcd" type="STRING"/>
- <Column id="tmpldata" type="STRING"/>
- <Column id="prcpdd" type="STRING"/>
- <Column id="rsrvrid" type="STRING"/>
- <Column id="cnclresncdnm" type="STRING"/>
- <Column id="rsrvexmptmplcd" type="STRING"/>
- <Column id="rrgstno2" type="STRING"/>
- <Column id="clincstdycd" type="STRING"/>
- <Column id="aftrcptinfo" type="STRING"/>
- <Column id="unrsrvexecyn" type="STRING"/>
- <Column id="insukind" type="STRING"/>
- <Column id="selectdrid" type="STRING" size="256"/>
- </ColumnInfo>
- <Rows>
- <Row/>
- </Rows>
- </Dataset>
- <Dataset id="ds_main_cond" firefirstcount="0" firenextcount="0" useclientlayout="false" updatecontrol="true" enableevent="true" loadkeymode="keep" loadfiltermode="keep" reversesubsum="false">
- <ColumnInfo>
- <Column id="scrnid" type="STRING" size="256"/>
- <Column id="grdid" type="STRING" size="256"/>
- <Column id="caseid" type="STRING" size="256"/>
- <Column id="compscd" type="STRING" size="256"/>
- </ColumnInfo>
- <Rows>
- <Row>
- <Col id="scrnid"/>
- <Col id="grdid"/>
- <Col id="caseid"/>
- <Col id="compscd"/>
- </Row>
- </Rows>
- </Dataset>
- <Dataset id="ds_temp_list_ordlist1" firefirstcount="0" firenextcount="0" useclientlayout="false" updatecontrol="true" enableevent="true" loadkeymode="keep" reversesubsum="false">
- <ColumnInfo>
- <Column id="check" type="STRING"/>
- <Column id="pid" type="STRING"/>
- <Column id="hngnm" type="STRING"/>
- <Column id="sna" type="STRING"/>
- <Column id="rrgstno1" type="STRING"/>
- <Column id="orddepthngnm" type="STRING"/>
- <Column id="orddrnm" type="STRING"/>
- <Column id="choiordflag" type="STRING"/>
- <Column id="specdrid" type="STRING"/>
- <Column id="portprcpflag" type="STRING"/>
- <Column id="calcscorcd" type="STRING"/>
- <Column id="prcpdt" type="STRING"/>
- <Column id="statcd" type="STRING"/>
- <Column id="roomcd" type="STRING"/>
- <Column id="srchrsrvdt" type="STRING"/>
- <Column id="prcphopedd" type="STRING"/>
- <Column id="prcpnm" type="STRING"/>
- <Column id="prcpqty" type="STRING"/>
- <Column id="execprcptims" type="STRING"/>
- <Column id="execdt" type="STRING"/>
- <Column id="execrid1" type="STRING"/>
- <Column id="rsrvrnm" type="STRING"/>
- <Column id="rcptyn" type="STRING"/>
- <Column id="basecd" type="STRING"/>
- <Column id="hometel" type="STRING"/>
- <Column id="mpphontel" type="STRING"/>
- <Column id="hight" type="STRING"/>
- <Column id="weight" type="STRING"/>
- <Column id="execprcpuniqno" type="STRING"/>
- <Column id="prcpexecdeptcd" type="STRING"/>
- <Column id="excuroomcd" type="STRING"/>
- <Column id="inflag" type="STRING"/>
- <Column id="rcptacptyn" type="STRING"/>
- <Column id="execbaseflag" type="STRING"/>
- <Column id="excupartcd" type="STRING"/>
- <Column id="modality" type="STRING"/>
- <Column id="execrem" type="STRING"/>
- <Column id="prcpdelivefact" type="STRING"/>
- <Column id="carecnfmdd" type="STRING"/>
- <Column id="prcpkindcd" type="STRING"/>
- <Column id="rcptno" type="STRING"/>
- <Column id="acptseqno" type="STRING"/>
- <Column id="prcpgenrflag" type="STRING"/>
- <Column id="orddd" type="STRING"/>
- <Column id="orddeptcd" type="STRING"/>
- <Column id="rcptdd" type="STRING"/>
- <Column id="orddrid" type="STRING"/>
- <Column id="prcpno" type="STRING"/>
- <Column id="eqmtifyn" type="STRING"/>
- <Column id="basesuppdeptcd" type="STRING"/>
- <Column id="cretno" type="STRING"/>
- <Column id="wardcd" type="STRING"/>
- <Column id="rsrvdt" type="STRING"/>
- <Column id="rgstdeptcd" type="STRING"/>
- <Column id="rgstrid" type="STRING"/>
- <Column id="inclprcpcd" type="STRING"/>
- <Column id="lrgcd" type="STRING"/>
- <Column id="mdlcd" type="STRING"/>
- <Column id="actorddd" type="STRING"/>
- <Column id="examroomnm" type="STRING"/>
- <Column id="prcphistno" type="STRING"/>
- <Column id="pacsnocretyn" type="STRING"/>
- <Column id="execprcpstatcd" type="STRING"/>
- <Column id="tmpldata" type="STRING"/>
- <Column id="prcpdd" type="STRING"/>
- <Column id="rsrvrid" type="STRING"/>
- <Column id="cnclresncdnm" type="STRING"/>
- <Column id="rsrvexmptmplcd" type="STRING"/>
- <Column id="rrgstno2" type="STRING"/>
- <Column id="clincstdycd" type="STRING"/>
- <Column id="aftrcptinfo" type="STRING"/>
- <Column id="unrsrvexecyn" type="STRING"/>
- <Column id="insukind" type="STRING"/>
- <Column id="selectdrid" type="STRING" size="256"/>
- </ColumnInfo>
- <Rows>
- <Row/>
- </Rows>
- </Dataset>
- <Dataset id="ds_temp_list_ordlist4" firefirstcount="0" firenextcount="0" useclientlayout="false" updatecontrol="true" enableevent="true" loadkeymode="keep" reversesubsum="false">
- <ColumnInfo>
- <Column id="check" type="STRING"/>
- <Column id="pid" type="STRING"/>
- <Column id="hngnm" type="STRING"/>
- <Column id="sna" type="STRING"/>
- <Column id="rrgstno1" type="STRING"/>
- <Column id="orddepthngnm" type="STRING"/>
- <Column id="orddrnm" type="STRING"/>
- <Column id="portprcpflag" type="STRING"/>
- <Column id="calcscorcd" type="STRING"/>
- <Column id="prcpdt" type="STRING"/>
- <Column id="statcd" type="STRING"/>
- <Column id="roomcd" type="STRING"/>
- <Column id="srchrsrvdt" type="STRING"/>
- <Column id="prcphopedd" type="STRING"/>
- <Column id="prcpnm" type="STRING"/>
- <Column id="prcpqty" type="STRING"/>
- <Column id="rsrvrnm" type="STRING"/>
- <Column id="execdt" type="STRING"/>
- <Column id="execrnm" type="STRING"/>
- <Column id="rcptyn" type="STRING"/>
- <Column id="basecd" type="STRING"/>
- <Column id="hometel" type="STRING"/>
- <Column id="mpphontel" type="STRING"/>
- <Column id="hight" type="STRING"/>
- <Column id="weight" type="STRING"/>
- <Column id="execprcpuniqno" type="STRING"/>
- <Column id="prcpexecdeptcd" type="STRING"/>
- <Column id="excuroomcd" type="STRING"/>
- <Column id="rgstdeptcd" type="STRING"/>
- <Column id="rgstrid" type="STRING"/>
- <Column id="inflag" type="STRING"/>
- <Column id="rcptacptyn" type="STRING"/>
- <Column id="execbaseflag" type="STRING"/>
- <Column id="lrgcd" type="STRING"/>
- <Column id="mdlcd" type="STRING"/>
- <Column id="excupartcd" type="STRING"/>
- <Column id="modality" type="STRING"/>
- <Column id="execrem" type="STRING"/>
- <Column id="prcpdelivefact" type="STRING"/>
- <Column id="carecnfmdd" type="STRING"/>
- <Column id="excuroomnm" type="STRING"/>
- <Column id="rgstdepthngnm" type="STRING"/>
- <Column id="prcpkindcd" type="STRING"/>
- <Column id="rcptno" type="STRING"/>
- <Column id="acptseqno" type="STRING"/>
- <Column id="prcpdelivefact" type="STRING"/>
- <Column id="prcpgenrflag" type="STRING"/>
- <Column id="orddd" type="STRING"/>
- <Column id="rgstrid" type="STRING"/>
- <Column id="orddeptcd" type="STRING"/>
- <Column id="rcptdd" type="STRING"/>
- <Column id="orddrid" type="STRING"/>
- <Column id="prcpno" type="STRING"/>
- <Column id="eqmtifyn" type="STRING"/>
- <Column id="basesuppdeptcd" type="STRING"/>
- <Column id="rsrvdt" type="STRING"/>
- <Column id="rsrvrid" type="STRING"/>
- <Column id="inclprcpcd" type="STRING"/>
- <Column id="examroomnm" type="STRING"/>
- <Column id="execprcpstatcd" type="STRING"/>
- <Column id="tmpldata" type="STRING"/>
- <Column id="prcpdd" type="STRING"/>
- <Column id="rsrvrid" type="STRING"/>
- <Column id="pacsnocretyn" type="STRING"/>
- <Column id="cnclresncdnm" type="STRING"/>
- <Column id="rsrvexmptmplcd" type="STRING"/>
- <Column id="rrgstno2" type="STRING"/>
- <Column id="clincstdycd" type="STRING"/>
- <Column id="execrid1" type="STRING"/>
- <Column id="aftrcptinfo" type="STRING"/>
- <Column id="unrsrvexecyn" type="STRING"/>
- <Column id="insukind" type="STRING"/>
- <Column id="selectdrid" type="STRING" size="256"/>
- </ColumnInfo>
- <Rows>
- <Row/>
- </Rows>
- </Dataset>
- <Dataset id="ds_temp_list_ordlist6" firefirstcount="0" firenextcount="0" useclientlayout="false" updatecontrol="true" enableevent="true" loadkeymode="keep" reversesubsum="false">
- <ColumnInfo>
- <Column id="check" type="STRING"/>
- <Column id="pid" type="STRING"/>
- <Column id="hngnm" type="STRING"/>
- <Column id="sna" type="STRING"/>
- <Column id="rrgstno1" type="STRING"/>
- <Column id="orddepthngnm" type="STRING"/>
- <Column id="orddrnm" type="STRING"/>
- <Column id="portprcpflag" type="STRING"/>
- <Column id="calcscorcd" type="STRING"/>
- <Column id="prcpdt" type="STRING"/>
- <Column id="statcd" type="STRING"/>
- <Column id="roomcd" type="STRING"/>
- <Column id="srchrsrvdt" type="STRING"/>
- <Column id="prcphopedd" type="STRING"/>
- <Column id="prcpnm" type="STRING"/>
- <Column id="prcpqty" type="STRING"/>
- <Column id="execprcptims" type="STRING"/>
- <Column id="rsrvid" type="STRING"/>
- <Column id="rcptdd" type="STRING"/>
- <Column id="acptid" type="STRING"/>
- <Column id="execdt" type="STRING"/>
- <Column id="execrid1" type="STRING"/>
- <Column id="rcptyn" type="STRING"/>
- <Column id="basecd" type="STRING"/>
- <Column id="hometel" type="STRING"/>
- <Column id="mpphontel" type="STRING"/>
- <Column id="hight" type="STRING"/>
- <Column id="weight" type="STRING"/>
- <Column id="execprcpuniqno" type="STRING"/>
- <Column id="prcpexecdeptcd" type="STRING"/>
- <Column id="excuroomcd" type="STRING"/>
- <Column id="rgstdeptcd" type="STRING"/>
- <Column id="rgstrid" type="STRING"/>
- <Column id="inflag" type="STRING"/>
- <Column id="rcptacptyn" type="STRING"/>
- <Column id="execbaseflag" type="STRING"/>
- <Column id="lrgcd" type="STRING"/>
- <Column id="mdlcd" type="STRING"/>
- <Column id="excupartcd" type="STRING"/>
- <Column id="modality" type="STRING"/>
- <Column id="acptrem" type="STRING"/>
- <Column id="execrem" type="STRING"/>
- <Column id="prcpdelivefact" type="STRING"/>
- <Column id="carecnfmdd" type="STRING"/>
- <Column id="excuroomnm" type="STRING"/>
- <Column id="rgstdepthngnm" type="STRING"/>
- <Column id="prcpkindcd" type="STRING"/>
- <Column id="rcptno" type="STRING"/>
- <Column id="acptseqno" type="STRING"/>
- <Column id="prcpdelivefact" type="STRING"/>
- <Column id="execrid1" type="STRING"/>
- <Column id="execrid2" type="STRING"/>
- <Column id="execrid3" type="STRING"/>
- <Column id="execrid4" type="STRING"/>
- <Column id="prcpgenrflag" type="STRING"/>
- <Column id="orddd" type="STRING"/>
- <Column id="rgstrid" type="STRING"/>
- <Column id="orddeptcd" type="STRING"/>
- <Column id="rcptdd" type="STRING"/>
- <Column id="orddrid" type="STRING"/>
- <Column id="prcpgenrflag" type="STRING"/>
- <Column id="prcpno" type="STRING"/>
- <Column id="eqmtifyn" type="STRING"/>
- <Column id="basesuppdeptcd" type="STRING"/>
- <Column id="tmpldata" type="STRING"/>
- <Column id="wardcd" type="STRING"/>
- <Column id="prcpexecdeptcd" type="STRING"/>
- <Column id="rsrvdt" type="STRING"/>
- <Column id="prcphistno" type="STRING"/>
- <Column id="inclprcpcd" type="STRING"/>
- <Column id="actorddd" type="STRING"/>
- <Column id="cretno" type="STRING"/>
- <Column id="pacsnocretyn" type="STRING"/>
- <Column id="execprcpstatcd" type="STRING"/>
- <Column id="tmpldata" type="STRING"/>
- <Column id="prcpdd" type="STRING"/>
- <Column id="cnclresncdnm" type="STRING"/>
- <Column id="rsrvexmptmplcd" type="STRING"/>
- <Column id="rrgstno2" type="STRING"/>
- <Column id="clincstdycd" type="STRING"/>
- <Column id="aftrcptinfo" type="STRING"/>
- <Column id="unrsrvexecyn" type="STRING"/>
- <Column id="examroomnm" type="STRING"/>
- <Column id="insukind" type="STRING"/>
- <Column id="selectdrid" type="STRING" size="256"/>
- </ColumnInfo>
- <Rows>
- <Row/>
- </Rows>
- </Dataset>
- <Dataset id="ds_temp_list_ordlist3" firefirstcount="0" firenextcount="0" useclientlayout="false" updatecontrol="true" enableevent="true" loadkeymode="keep" reversesubsum="false">
- <ColumnInfo>
- <Column id="check" type="STRING"/>
- <Column id="pid" type="STRING"/>
- <Column id="hngnm" type="STRING"/>
- <Column id="sna" type="STRING"/>
- <Column id="rrgstno1" type="STRING"/>
- <Column id="orddepthngnm" type="STRING"/>
- <Column id="orddrnm" type="STRING"/>
- <Column id="portprcpflag" type="STRING"/>
- <Column id="calcscorcd" type="STRING"/>
- <Column id="prcpdt" type="STRING"/>
- <Column id="statcd" type="STRING"/>
- <Column id="roomcd" type="STRING"/>
- <Column id="srchrsrvdt" type="STRING"/>
- <Column id="prcphopedd" type="STRING"/>
- <Column id="prcpnm" type="STRING"/>
- <Column id="prcpqty" type="STRING"/>
- <Column id="execdt" type="STRING"/>
- <Column id="execrid1" type="STRING"/>
- <Column id="rsrvrnm" type="STRING"/>
- <Column id="rcptyn" type="STRING"/>
- <Column id="basecd" type="STRING"/>
- <Column id="hometel" type="STRING"/>
- <Column id="mpphontel" type="STRING"/>
- <Column id="hight" type="STRING"/>
- <Column id="weight" type="STRING"/>
- <Column id="execprcpuniqno" type="STRING"/>
- <Column id="prcpexecdeptcd" type="STRING"/>
- <Column id="excuroomcd" type="STRING"/>
- <Column id="inflag" type="STRING"/>
- <Column id="rcptacptyn" type="STRING"/>
- <Column id="execbaseflag" type="STRING"/>
- <Column id="excupartcd" type="STRING"/>
- <Column id="modality" type="STRING"/>
- <Column id="execrem" type="STRING"/>
- <Column id="prcpdelivefact" type="STRING"/>
- <Column id="carecnfmdd" type="STRING"/>
- <Column id="prcpkindcd" type="STRING"/>
- <Column id="rcptno" type="STRING"/>
- <Column id="acptseqno" type="STRING"/>
- <Column id="prcpgenrflag" type="STRING"/>
- <Column id="orddd" type="STRING"/>
- <Column id="orddeptcd" type="STRING"/>
- <Column id="rcptdd" type="STRING"/>
- <Column id="orddrid" type="STRING"/>
- <Column id="prcpno" type="STRING"/>
- <Column id="eqmtifyn" type="STRING"/>
- <Column id="basesuppdeptcd" type="STRING"/>
- <Column id="cretno" type="STRING"/>
- <Column id="wardcd" type="STRING"/>
- <Column id="rsrvdt" type="STRING"/>
- <Column id="rgstdeptcd" type="STRING"/>
- <Column id="rgstrid" type="STRING"/>
- <Column id="inclprcpcd" type="STRING"/>
- <Column id="lrgcd" type="STRING"/>
- <Column id="mdlcd" type="STRING"/>
- <Column id="actorddd" type="STRING"/>
- <Column id="examroomnm" type="STRING"/>
- <Column id="prcphistno" type="STRING"/>
- <Column id="pacsnocretyn" type="STRING"/>
- <Column id="execprcpstatcd" type="STRING"/>
- <Column id="tmpldata" type="STRING"/>
- <Column id="prcpdd" type="STRING"/>
- <Column id="rsrvrid" type="STRING"/>
- <Column id="cnclresncdnm" type="STRING"/>
- <Column id="rsrvexmptmplcd" type="STRING"/>
- <Column id="rrgstno2" type="STRING"/>
- <Column id="clincstdycd" type="STRING"/>
- <Column id="aftrcptinfo" type="STRING"/>
- <Column id="unrsrvexecyn" type="STRING"/>
- <Column id="insukind" type="STRING"/>
- <Column id="selectdrid" type="STRING" size="256"/>
- </ColumnInfo>
- <Rows>
- <Row/>
- </Rows>
- </Dataset>
- <Dataset id="ds_main_list_cnst" firefirstcount="0" firenextcount="0" useclientlayout="false" updatecontrol="true" enableevent="true" loadkeymode="keep" loadfiltermode="keep" reversesubsum="false"/>
- <Dataset id="ds_send" firefirstcount="0" firenextcount="0" useclientlayout="false" updatecontrol="true" enableevent="true" loadkeymode="keep" loadfiltermode="keep" reversesubsum="false"/>
- <Dataset id="ds_hidden" firefirstcount="0" firenextcount="0" useclientlayout="false" updatecontrol="true" enableevent="true" loadkeymode="keep" loadfiltermode="keep" reversesubsum="false"/>
- <Dataset id="ds_init_userscrnenvinfo_gridseq" firefirstcount="0" firenextcount="0" useclientlayout="false" updatecontrol="true" enableevent="true" loadkeymode="keep" loadfiltermode="keep" reversesubsum="false"/>
- <Dataset id="ds_temp_list_cnst" firefirstcount="0" firenextcount="0" useclientlayout="false" updatecontrol="true" enableevent="true" loadkeymode="keep" loadfiltermode="keep" reversesubsum="false"/>
- <Dataset id="ds_listval" firefirstcount="0" firenextcount="0" useclientlayout="false" updatecontrol="true" enableevent="true" loadkeymode="keep" loadfiltermode="keep" reversesubsum="false">
- <ColumnInfo>
- <Column id="refdata" type="STRING" size="256"/>
- <Column id="sizedata" type="STRING" size="256"/>
- </ColumnInfo>
- <Rows>
- <Row/>
- </Rows>
- </Dataset>
- </Objects>
- <Script type="xscript4.0"><![CDATA[/***************************************************************************************
- * System Name :
- * Job Name :
- * Creator :
- * Make Date : 2016-10-14
- * Description :
- *---------------------------------------------------------------------------------------
- * Modify Date Modifier Modify Description
- *---------------------------------------------------------------------------------------
- * 2016-10-14 Live Converter TF->XP
- *
- *---------------------------------------------------------------------------------------
- ****************************************************************************************/
- //=======================================================================================
- // Lib Include
- //---------------------------------------------------------------------------------------
- include "com_commonxp::comm_main.xjs";
- include "ast_examcurexp::SPAER01100.xjs";
- //=======================================================================================
- // Global Form Variable
- //---------------------------------------------------------------------------------------
- var arErrorCode = new HashArray();
- //=======================================================================================
- // Function
- //---------------------------------------------------------------------------------------
- /****************************************************************************************
- * Argument : N/A
- * Description : 컬럼 추가 드래그 종료
- ****************************************************************************************/
- function fAddColDragOver(obj:Grid, e:GridDragEventInfo){
- if(e.button == "lbutton")
- obj.style.cursor = "hand";
- else
- obj.style.cursor = "auto";
- }
-
- //=======================================================================================
- // Event
- //---------------------------------------------------------------------------------------
- /****************************************************************************************
- * Components : Form
- * Components ID : SPAER01100
- * Event : oninit
- * Argument : 01.obj : Object Event has occurred
- * : 02.e : Event Object
- * Description : 화면 처음 초기화시 폼초기화
- ****************************************************************************************/
- function SPAER01100_oninit(obj:Form, e:InitEventInfo)
- {
- frmf_initForm(obj); // 폼 초기화
- }
- /****************************************************************************************
- * Components : Form
- * Components ID : SPAER01100
- * Event : onload
- * Argument : 01.obj : Object Event has occurred
- * : 02.e : Event Object
- * Description : 화면 처음 초기화시 폼초기화
- ****************************************************************************************/
- function SPAER01100_onload(obj:Form, e:LoadEventInfo)
- {
- fInitialize_SPAER01100();
- }
- /****************************************************************************************
- * Components : Tab
- * Components ID : switch1
- * Event : onchanged
- * Argument : 01.obj : Object Event has occurred
- * : 02.e : Event Object
- * Description : 탭 선택 이벤트
- ****************************************************************************************/
- function switch1_onchanged(obj:Tab, e:TabIndexChangeEventInfo)
- {
- if(obj.tabindex == 0) {
- fClkBtnOfTopTab("case1", "grp_body.group2.switch1.case1.grd_ordlist1","01");
- } else if(obj.tabindex == 1) {
- fClkBtnOfTopTab("case4", "grp_body.group2.switch1.case4.grd_ordlist4","04");
- } else if(obj.tabindex == 2) {
- fClkBtnOfTopTab("case6", "grp_body.group2.switch1.case6.grd_ordlist6","06");
- } else if(obj.tabindex == 3) {
- fClkBtnOfTopTab("case3", "grp_body.group2.switch1.case3.grd_ordlist3","03");
- }
- }
- /****************************************************************************************
- * Components : Button
- * Components ID : button2
- * Event : onclick
- * Argument : 01.obj : Object Event has occurred
- * : 02.e : Event Object
- * Description : 저장
- ****************************************************************************************/
- function button2_onclick(obj:Button, e:ClickEventInfo)
- {
- fSaveOrderInfoCol();
- opener.frmf_setParameter("SPAER01100_rtn_useyn", "Y");
- this.close();
- }
- /****************************************************************************************
- * Components : Button
- * Components ID : button3
- * Event : onclick
- * Argument : 01.obj : Object Event has occurred
- * : 02.e : Event Object
- * Description : 취소
- ****************************************************************************************/
- function button3_onclick(obj:Button, e:ClickEventInfo)
- {
- opener.frmf_setParameter("SPAER01100_rtn_useyn", "N");
- this.close();
- }
- function switch1_resize_ondragmove(obj:Grid, e:GridDragEventInfo)
- {
- fAddColDragOver(obj, e);
- }
- function switch1_case3_grd_ordlist3_resize_onrbuttonup(obj:Grid, e:GridMouseEventInfo)
- {
- if(e.row > -1){
- grdf_setSelectedCell(obj, e); // 선택된 행 확실히 선택해줌
- pmn_menu1.trackPopup(e.screenX,e.screenY);
- }
-
- return true;
- }
- function button1_onclick(obj:Button, e:ClickEventInfo)
- {
-
- }
- ]]></Script>
- </Form>
- </FDL>
|