123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126312731283129313031313132313331343135313631373138313931403141314231433144314531463147314831493150315131523153315431553156315731583159316031613162316331643165316631673168316931703171317231733174317531763177317831793180318131823183318431853186318731883189319031913192319331943195319631973198319932003201320232033204320532063207320832093210321132123213321432153216321732183219322032213222322332243225322632273228322932303231323232333234323532363237323832393240324132423243324432453246324732483249325032513252325332543255325632573258325932603261326232633264326532663267326832693270327132723273327432753276327732783279328032813282328332843285328632873288328932903291329232933294329532963297329832993300330133023303330433053306330733083309331033113312331333143315331633173318331933203321332233233324332533263327332833293330333133323333333433353336333733383339334033413342334333443345334633473348334933503351335233533354335533563357335833593360336133623363336433653366336733683369337033713372337333743375337633773378337933803381338233833384338533863387338833893390339133923393339433953396339733983399340034013402340334043405340634073408340934103411341234133414341534163417341834193420342134223423342434253426342734283429343034313432343334343435343634373438343934403441344234433444344534463447344834493450345134523453345434553456345734583459346034613462346334643465346634673468346934703471347234733474347534763477347834793480348134823483348434853486348734883489349034913492349334943495349634973498349935003501350235033504350535063507350835093510351135123513351435153516351735183519352035213522352335243525352635273528352935303531353235333534353535363537353835393540354135423543354435453546354735483549355035513552355335543555355635573558355935603561356235633564356535663567356835693570357135723573357435753576357735783579358035813582358335843585358635873588358935903591359235933594359535963597359835993600360136023603360436053606360736083609361036113612361336143615361636173618361936203621362236233624362536263627362836293630363136323633363436353636363736383639364036413642364336443645364636473648364936503651365236533654365536563657365836593660366136623663366436653666366736683669367036713672367336743675367636773678367936803681368236833684368536863687368836893690369136923693369436953696369736983699370037013702370337043705370637073708370937103711371237133714371537163717371837193720372137223723372437253726372737283729373037313732373337343735373637373738373937403741374237433744374537463747374837493750375137523753375437553756375737583759376037613762376337643765376637673768376937703771377237733774377537763777377837793780378137823783378437853786378737883789379037913792379337943795379637973798379938003801380238033804380538063807380838093810381138123813381438153816381738183819382038213822382338243825382638273828382938303831383238333834383538363837383838393840384138423843384438453846384738483849385038513852385338543855385638573858385938603861386238633864386538663867386838693870387138723873387438753876387738783879388038813882388338843885388638873888388938903891389238933894389538963897389838993900390139023903390439053906390739083909391039113912391339143915391639173918391939203921392239233924392539263927392839293930393139323933393439353936393739383939394039413942394339443945394639473948394939503951395239533954395539563957395839593960396139623963396439653966396739683969397039713972397339743975397639773978397939803981398239833984398539863987398839893990399139923993399439953996399739983999400040014002400340044005400640074008400940104011 |
- <?xml version="1.0" encoding="utf-8"?>
- <FDL version="1.5">
- <TypeDefinition url="..\..\..\default_typedef.xml"/>
- <Form id="SPMMB01100_사용자화면설정" classname="SPMMB01100_사용자화면설정" inheritanceid="" position="absolute 0 0 1129 367" titletext="사용자화면설정" oninit="SPMMB01100_oninit" onload="SPMMB01100_onload">
- <Layouts>
- <Layout>
- <Tab id="Tab00" taborder="0" tabindex="3" scrollbars="autoboth" position="absolute 0 0 1129 332" anchor="all" onchanged="Tab00_onchanged">
- <Tabpages>
- <Tabpage id="out" text="외래">
- <Layouts>
- <Layout width="1129" height="305">
- <Grid id="grd_outpatlist_basic" taborder="1" useinputpanel="false" position="absolute 3 30 1127 97" anchor="left top right" binddataset="ds_basicOut" selecttype="multiarea" scrollpixel="all">
- <Formats>
- <Format id="default">
- <Columns>
- <Column size="20"/>
- <Column size="45"/>
- <Column size="70"/>
- <Column size="56"/>
- <Column size="55"/>
- <Column size="70"/>
- <Column size="75"/>
- <Column size="55"/>
- <Column size="70"/>
- <Column size="70"/>
- <Column size="80"/>
- <Column size="0"/>
- <Column size="65"/>
- <Column size="65"/>
- <Column size="146"/>
- <Column size="0"/>
- <Column size="55"/>
- <Column size="55"/>
- <Column size="75"/>
- <Column size="75"/>
- <Column size="75"/>
- <Column size="55"/>
- <Column size="75"/>
- <Column size="0"/>
- <Column size="60"/>
- <Column size="0"/>
- <Column size="100"/>
- <Column size="100"/>
- <Column size="100"/>
- <Column size="0"/>
- <Column size="85"/>
- <Column size="0"/>
- <Column size="77"/>
- <Column size="0"/>
- <Column size="0"/>
- <Column size="70"/>
- <Column size="79"/>
- <Column size="0"/>
- <Column size="0"/>
- <Column size="0"/>
- <Column size="0"/>
- <Column size="100"/>
- <Column size="100"/>
- <Column size="70"/>
- <Column size="0"/>
- <Column size="0"/>
- <Column size="0"/>
- <Column size="0"/>
- <Column size="0"/>
- <Column size="0"/>
- <Column size="0"/>
- <Column size="0"/>
- <Column size="0"/>
- <Column size="0"/>
- <Column size="0"/>
- <Column size="0"/>
- <Column size="0"/>
- <Column size="150"/>
- <Column size="0"/>
- <Column size="0"/>
- <Column size="0"/>
- <Column size="0"/>
- </Columns>
- <Rows>
- <Row size="24" band="head"/>
- <Row size="24"/>
- </Rows>
- <Band id="head">
- <Cell/>
- <Cell col="1" text="혈액형"/>
- <Cell col="2" text="질병군분류"/>
- <Cell col="3" text="구분"/>
- <Cell col="4" text="시간"/>
- <Cell col="5" text="성명"/>
- <Cell col="6" text="등록번호"/>
- <Cell col="7" text="S/A"/>
- <Cell col="8" text="의료협력"/>
- <Cell col="9" text="회신상태"/>
- <Cell col="10" text="센터"/>
- <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="관심"/>
- <Cell col="31" text="제한항생제"/>
- <Cell col="32" text="협진"/>
- <Cell col="33" text="CP여부"/>
- <Cell col="34" text="One Stop"/>
- <Cell col="35" text="Donor W/U"/>
- <Cell col="36" text="PreWork Up"/>
- <Cell col="37" text="BMT예정일"/>
- <Cell col="38" text="이식형태"/>
- <Cell col="39" text="BMT Day"/>
- <Cell col="40" text="Post Cx Day"/>
- <Cell col="41" text="사전심사"/>
- <Cell col="42" text="선택진료여부"/>
- <Cell col="43" text="진료상태"/>
- <Cell col="44" text="orddd"/>
- <Cell col="45" text="cretno"/>
- <Cell col="46" text="instcd"/>
- <Cell col="47" text="acptseqno"/>
- <Cell col="48" text="orgorddd"/>
- <Cell col="49" text="repltype"/>
- <Cell col="50" text="수납VIP사유코드"/>
- <Cell col="51" text="수납VIP사유"/>
- <Cell col="52" text="medamtpostyn"/>
- <Cell col="53" text="민원여부"/>
- <Cell col="54" text="color"/>
- <Cell col="55" text="orddrid"/>
- <Cell col="56" text="centcode"/>
- <Cell col="57" text="환자메모"/>
- <Cell col="58" text="다학제"/>
- <Cell col="59" text="POD"/>
- <Cell col="60" text="처방의"/>
- <Cell col="61" text="수혜자"/>
- </Band>
- <Band id="body">
- <Cell celltype="head" text="expr:currow + 1"/>
- <Cell col="1" text="bind:btype"/>
- <Cell col="2" text="bind:drginfo"/>
- <Cell col="3" text="bind:elbulbodstat"/>
- <Cell col="4" text="bind:ordtm"/>
- <Cell col="5" text="bind:hngnm"/>
- <Cell col="6" text="bind:pid"/>
- <Cell col="7" text="bind:sexage"/>
- <Cell col="8" text="bind:refer"/>
- <Cell col="9" text="bind:replstat"/>
- <Cell col="10" text="bind:centcd"/>
- <Cell col="11" text="bind:subdeptcd"/>
- <Cell col="12" text="bind:orddrnm"/>
- <Cell col="13" text="bind:fsexamflag"/>
- <Cell col="14" text="bind:diagnm"/>
- <Cell col="15" text="bind:recentdiagnm"/>
- <Cell col="16" text="bind:anodeptyn"/>
- <Cell col="17" text="bind:spclflag"/>
- <Cell col="18" text="bind:testrslt"/>
- <Cell col="19" text="bind:rsrvflag"/>
- <Cell col="20" text="bind:etcordflag"/>
- <Cell col="21" text="bind:serdiag"/>
- <Cell col="22" text="bind:insukind"/>
- <Cell col="23" text="bind:prcptdayaftrcptyn"/>
- <Cell col="24" text="bind:preexamyn"/>
- <Cell col="25" text="bind:rsrvordtm"/>
- <Cell col="26" text="bind:nursacptdt"/>
- <Cell col="27" text="bind:ordstartdt"/>
- <Cell col="28" text="bind:dracptdt"/>
- <Cell col="29" text="bind:trsmrem"/>
- <Cell col="30" text="bind:conctypenm"/>
- <Cell col="31" text="bind:antidrugflag"/>
- <Cell col="32" text="bind:coordflag"/>
- <Cell col="33" text="bind:cpyn"/>
- <Cell col="34" text="bind:onestop"/>
- <Cell col="35" text="bind:dnoracptyn"/>
- <Cell col="36" text="bind:preworkup"/>
- <Cell col="37" text="bind:hsctpreday"/>
- <Cell col="38" text="bind:transtype"/>
- <Cell col="39" text="bind:hsctday"/>
- <Cell col="40" text="bind:postcxday"/>
- <Cell col="41" text="bind:bfjudgvalue"/>
- <Cell col="42" text="bind:specordtype"/>
- <Cell col="43" text="bind:ordstate"/>
- <Cell col="44" text="bind:orddd"/>
- <Cell col="45" text="bind:cretno"/>
- <Cell col="46" text="bind:instcd"/>
- <Cell col="47" text="bind:acptseqno"/>
- <Cell col="48" text="bind:orgorddd"/>
- <Cell col="49" text="bind:repltype"/>
- <Cell col="50" text="bind:rcptvipresncd"/>
- <Cell col="51" text="bind:rcptvipetcresn"/>
- <Cell col="52" text="bind:medamtpostyn"/>
- <Cell col="53" text="bind:civilap"/>
- <Cell col="54" text="bind:color"/>
- <Cell col="55" text="bind:orddrid"/>
- <Cell col="56" text="bind:centcode"/>
- <Cell col="57" text="bind:patmemo"/>
- <Cell col="58" text="bind:multiord"/>
- <Cell col="59" text="bind:pod"/>
- <Cell col="60" text="bind:prcprgstnm"/>
- <Cell col="61" text="bind:recipient"/>
- </Band>
- </Format>
- </Formats>
- </Grid>
- <Grid id="grd_outpatlist" taborder="2" useinputpanel="false" position="absolute 3 132 1127 199" anchor="left top right" binddataset="ds_AllOut" selecttype="multiarea" onrbuttondown="Tab00_grd_onrbuttondown" ondrag="Tab00_grd_ondrag" ondragmove="Tab00_grd_ondragmove" scrollpixel="all" cellsizingtype="col">
- <Formats>
- <Format id="default">
- <Columns>
- <Column size="20"/>
- <Column size="45"/>
- <Column size="70"/>
- <Column size="56"/>
- <Column size="55"/>
- <Column size="70"/>
- <Column size="75"/>
- <Column size="55"/>
- <Column size="70"/>
- <Column size="70"/>
- <Column size="80"/>
- <Column size="0"/>
- <Column size="65"/>
- <Column size="65"/>
- <Column size="146"/>
- <Column size="146"/>
- <Column size="55"/>
- <Column size="55"/>
- <Column size="75"/>
- <Column size="75"/>
- <Column size="75"/>
- <Column size="50"/>
- <Column size="55"/>
- <Column size="75"/>
- <Column size="0"/>
- <Column size="60"/>
- <Column size="0"/>
- <Column size="100"/>
- <Column size="100"/>
- <Column size="100"/>
- <Column size="0"/>
- <Column size="85"/>
- <Column size="0"/>
- <Column size="77"/>
- <Column size="0"/>
- <Column size="0"/>
- <Column size="70"/>
- <Column size="79"/>
- <Column size="0"/>
- <Column size="0"/>
- <Column size="0"/>
- <Column size="0"/>
- <Column size="100"/>
- <Column size="100"/>
- <Column size="70"/>
- <Column size="0"/>
- <Column size="0"/>
- <Column size="0"/>
- <Column size="0"/>
- <Column size="0"/>
- <Column size="0"/>
- <Column size="0"/>
- <Column size="0"/>
- <Column size="0"/>
- <Column size="0"/>
- <Column size="0"/>
- <Column size="0"/>
- <Column size="0"/>
- <Column size="150"/>
- <Column size="50"/>
- <Column size="50"/>
- <Column size="70"/>
- <Column size="100"/>
- <Column size="40"/>
- </Columns>
- <Rows>
- <Row size="24" band="head"/>
- <Row size="24"/>
- </Rows>
- <Band id="head">
- <Cell/>
- <Cell col="1" text="혈액형"/>
- <Cell col="2" text="질병군분류"/>
- <Cell col="3" text="구분"/>
- <Cell col="4" text="시간"/>
- <Cell col="5" text="성명"/>
- <Cell col="6" text="등록번호"/>
- <Cell col="7" text="S/A"/>
- <Cell col="8" text="의료협력"/>
- <Cell col="9" text="회신상태"/>
- <Cell col="10" text="센터"/>
- <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="전달사항"/>
- <Cell col="31" text="관심"/>
- <Cell col="32" text="제한항생제"/>
- <Cell col="33" text="협진"/>
- <Cell col="34" text="CP여부"/>
- <Cell col="35" text="One Stop"/>
- <Cell col="36" text="Donor W/U"/>
- <Cell col="37" text="PreWork Up"/>
- <Cell col="38" text="BMT예정일"/>
- <Cell col="39" text="이식형태"/>
- <Cell col="40" text="BMT Day"/>
- <Cell col="41" text="Post Cx Day"/>
- <Cell col="42" text="사전심사"/>
- <Cell col="43" text="선택진료여부"/>
- <Cell col="44" text="진료상태"/>
- <Cell col="45" text="orddd"/>
- <Cell col="46" text="cretno"/>
- <Cell col="47" text="instcd"/>
- <Cell col="48" text="acptseqno"/>
- <Cell col="49" text="orgorddd"/>
- <Cell col="50" text="repltype"/>
- <Cell col="51" text="수납VIP사유코드"/>
- <Cell col="52" text="수납VIP사유"/>
- <Cell col="53" text="medamtpostyn"/>
- <Cell col="54" text="민원여부"/>
- <Cell col="55" text="color"/>
- <Cell col="56" text="orddrid"/>
- <Cell col="57" text="centcode"/>
- <Cell col="58" text="환자메모"/>
- <Cell col="59" text="다학제"/>
- <Cell col="60" text="POD"/>
- <Cell col="61" text="처방의"/>
- <Cell col="62" text="수혜자"/>
- <Cell col="63" text="치과 통계"/>
- </Band>
- <Band id="body">
- <Cell celltype="head" text="expr:currow + 1"/>
- <Cell col="1" text="bind:btype"/>
- <Cell col="2" text="bind:drginfo"/>
- <Cell col="3" text="bind:elbulbodstat" tooltiptype="mouse,mouseleave" tooltiptext="예약 진행 상태(미접수, 접수, 대기, 완료)"/>
- <Cell col="4" text="bind:ordtm" tooltiptype="mouse,mouseleave" tooltiptext="외래 진료 예약시간"/>
- <Cell col="5" text="bind:hngnm" tooltiptype="mouse,mouseleave" tooltiptext="환자 성명"/>
- <Cell col="6" text="bind:pid" tooltiptype="mouse,mouseleave" tooltiptext="환자 차트번호"/>
- <Cell col="7" text="bind:sexage" tooltiptype="mouse,mouseleave" tooltiptext="성별/나이"/>
- <Cell col="8" text="bind:refer" tooltiptype="mouse,mouseleave" tooltiptext="협력의뢰 기관"/>
- <Cell col="9" text="bind:replstat" tooltiptype="mouse,mouseleave" tooltiptext="협력의뢰 회신상태"/>
- <Cell col="10" text="bind:centcd" tooltiptype="mouse,mouseleave" tooltiptext="진료 센터명"/>
- <Cell col="11" text="bind:subdeptcd"/>
- <Cell col="12" text="bind:orddrnm" tooltiptype="mouse,mouseleave" tooltiptext="진료 의사명"/>
- <Cell col="13" text="bind:fsexamflag" tooltiptype="mouse,mouseleave" tooltiptext="병원초진/과초진/재진 구분"/>
- <Cell col="14" text="bind:diagnm" tooltiptype="mouse,mouseleave" tooltiptext="당일 진단명"/>
- <Cell col="15" text="bind:recentdiagnm" tooltiptype="mouse,mouseleave" tooltiptext="최근 처방을 발행한 진료일의 진단명"/>
- <Cell col="16" text="bind:anodeptyn" tooltiptype="mouse,mouseleave" tooltiptext="당일 타과 진료여부"/>
- <Cell col="17" text="bind:spclflag" tooltiptype="mouse,mouseleave" tooltiptext="환자별 특이사항 존재 여부"/>
- <Cell col="18" text="bind:testrslt" tooltiptype="mouse,mouseleave" tooltiptext="당일 발생검사 중에서 검사결과가 있는지 여부"/>
- <Cell col="19" text="bind:rsrvflag" tooltiptype="mouse,mouseleave" tooltiptext="당일접수/과예약/방문예약/전화예약"/>
- <Cell col="20" text="bind:etcordflag" tooltiptype="mouse,mouseleave" tooltiptext="보호자대진/가정간호/물리치료/주사"/>
- <Cell col="21" text="bind:outmisu"/>
- <Cell col="22" text="bind:serdiag" tooltiptype="mouse,mouseleave" tooltiptext="중증적용여부"/>
- <Cell col="23" text="bind:insukind" tooltiptype="mouse,mouseleave" tooltiptext="보험유형"/>
- <Cell col="24" text="bind:prcptdayaftrcptyn"/>
- <Cell col="25" text="bind:preexamyn" tooltiptype="mouse,mouseleave" tooltiptext="이전 진료일에 검사처방 존재여부"/>
- <Cell col="26" text="bind:rsrvordtm" tooltiptype="mouse,mouseleave" tooltiptext="외래 진료 예약시간"/>
- <Cell col="27" text="bind:nursacptdt" tooltiptype="mouse,mouseleave" tooltiptext="외래 간호에서 환자 도착시간"/>
- <Cell col="28" text="bind:ordstartdt" tooltiptype="mouse,mouseleave" tooltiptext="진료대상자에서 환자를 선택한 시간"/>
- <Cell col="29" text="bind:dracptdt" tooltiptype="mouse,mouseleave" tooltiptext="진단 및 처방 최초 인증저장시간"/>
- <Cell col="30" text="bind:trsmrem"/>
- <Cell col="31" text="bind:conctypenm" tooltiptype="mouse,mouseleave" tooltiptext="진료과 및 의사별 관심환자정보"/>
- <Cell col="32" text="bind:antidrugflag"/>
- <Cell col="33" text="bind:coordflag" tooltiptype="mouse,mouseleave" tooltiptext="협진"/>
- <Cell col="34" text="bind:cpyn"/>
- <Cell col="35" text="bind:onestop"/>
- <Cell col="36" text="bind:dnoracptyn" tooltiptype="mouse,mouseleave" tooltiptext="장기이식 기증자 접수 여부"/>
- <Cell col="37" text="bind:preworkup" tooltiptype="mouse,mouseleave" tooltiptext="prework up 처방여부"/>
- <Cell col="38" text="bind:hsctpreday"/>
- <Cell col="39" text="bind:transtype"/>
- <Cell col="40" text="bind:hsctday"/>
- <Cell col="41" text="bind:postcxday"/>
- <Cell col="42" text="bind:bfjudgvalue" tooltiptype="mouse,mouseleave" tooltiptext="심사대기/수정요구/심사승인"/>
- <Cell col="43" text="bind:specordtype" tooltiptype="mouse,mouseleave" tooltiptext="일괄선택위임/부분선택위임"/>
- <Cell col="44" text="bind:ordstate" tooltiptype="mouse,mouseleave" tooltiptext="대기/처방없음/기록없음/완료"/>
- <Cell col="45" text="bind:orddd"/>
- <Cell col="46" text="bind:cretno"/>
- <Cell col="47" text="bind:instcd"/>
- <Cell col="48" text="bind:acptseqno"/>
- <Cell col="49" text="bind:orgorddd"/>
- <Cell col="50" text="bind:repltype"/>
- <Cell col="51" text="bind:rcptvipresncd"/>
- <Cell col="52" text="bind:rcptvipetcresn"/>
- <Cell col="53" text="bind:medamtpostyn"/>
- <Cell col="54" text="bind:civilap"/>
- <Cell col="55" text="bind:color"/>
- <Cell col="56" text="bind:orddrid"/>
- <Cell col="57" text="bind:centcode"/>
- <Cell col="58" text="bind:patmemo"/>
- <Cell col="59" text="bind:multiord"/>
- <Cell col="60" text="bind:pod"/>
- <Cell col="61" text="bind:prcprgstnm"/>
- <Cell col="62" text="bind:recipient"/>
- <Cell col="63" text="bind:handidentalimg"/>
- </Band>
- </Format>
- </Formats>
- </Grid>
- <Grid id="grd_outpatlist_resize" taborder="3" useinputpanel="false" position="absolute 3 234 1127 301" anchor="left top right" binddataset="ds_ResizeOut" selecttype="multiarea" onrbuttondown="Tab00_grd_resize_onrbuttondown" cellmovingtype="col" cellsizingtype="col" dragscrolltype="both" ondrop="Tab00_grd_resize_ondrop" ondragmove="Tab00_grd_resize_ondragmove" scrollpixel="all">
- <Formats>
- <Format id="default">
- <Columns>
- <Column size="20"/>
- <Column size="45"/>
- <Column size="70"/>
- <Column size="56"/>
- <Column size="55"/>
- <Column size="70"/>
- <Column size="75"/>
- <Column size="55"/>
- <Column size="70"/>
- <Column size="70"/>
- <Column size="80"/>
- <Column size="70"/>
- <Column size="65"/>
- <Column size="65"/>
- <Column size="146"/>
- <Column size="0"/>
- <Column size="55"/>
- <Column size="55"/>
- <Column size="75"/>
- <Column size="75"/>
- <Column size="75"/>
- <Column size="0"/>
- <Column size="55"/>
- <Column size="75"/>
- <Column size="0"/>
- <Column size="60"/>
- <Column size="0"/>
- <Column size="100"/>
- <Column size="100"/>
- <Column size="100"/>
- <Column size="0"/>
- <Column size="85"/>
- <Column size="0"/>
- <Column size="77"/>
- <Column size="0"/>
- <Column size="0"/>
- <Column size="70"/>
- <Column size="79"/>
- <Column size="0"/>
- <Column size="0"/>
- <Column size="0"/>
- <Column size="0"/>
- <Column size="100"/>
- <Column size="100"/>
- <Column size="70"/>
- <Column size="0"/>
- <Column size="0"/>
- <Column size="0"/>
- <Column size="0"/>
- <Column size="0"/>
- <Column size="0"/>
- <Column size="0"/>
- <Column size="0"/>
- <Column size="0"/>
- <Column size="0"/>
- <Column size="0"/>
- <Column size="0"/>
- <Column size="0"/>
- <Column size="150"/>
- <Column size="0"/>
- <Column size="0"/>
- <Column size="0"/>
- <Column size="0"/>
- <Column size="40"/>
- </Columns>
- <Rows>
- <Row size="24" band="head"/>
- <Row size="24"/>
- </Rows>
- <Band id="head">
- <Cell/>
- <Cell col="1" text="혈액형"/>
- <Cell col="2" text="질병군분류"/>
- <Cell col="3" text="구분"/>
- <Cell col="4" text="시간"/>
- <Cell col="5" text="성명"/>
- <Cell col="6" text="등록번호"/>
- <Cell col="7" text="S/A"/>
- <Cell col="8" text="의료협력"/>
- <Cell col="9" text="회신상태"/>
- <Cell col="10" text="센터"/>
- <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="전달사항"/>
- <Cell col="31" text="관심"/>
- <Cell col="32" text="제한항생제"/>
- <Cell col="33" text="협진"/>
- <Cell col="34" text="CP여부"/>
- <Cell col="35" text="One Stop"/>
- <Cell col="36" text="Donor W/U"/>
- <Cell col="37" text="PreWork Up"/>
- <Cell col="38" text="BMT예정일"/>
- <Cell col="39" text="이식형태"/>
- <Cell col="40" text="BMT Day"/>
- <Cell col="41" text="Post Cx Day"/>
- <Cell col="42" text="사전심사"/>
- <Cell col="43" text="선택진료여부"/>
- <Cell col="44" text="진료상태"/>
- <Cell col="45" text="orddd"/>
- <Cell col="46" text="cretno"/>
- <Cell col="47" text="instcd"/>
- <Cell col="48" text="acptseqno"/>
- <Cell col="49" text="orgorddd"/>
- <Cell col="50" text="repltype"/>
- <Cell col="51" text="수납VIP사유코드"/>
- <Cell col="52" text="수납VIP사유"/>
- <Cell col="53" text="medamtpostyn"/>
- <Cell col="54" text="민원여부"/>
- <Cell col="55" text="color"/>
- <Cell col="56" text="orddrid"/>
- <Cell col="57" text="centcode"/>
- <Cell col="58" text="환자메모"/>
- <Cell col="59" text="다학제"/>
- <Cell col="60" text="POD"/>
- <Cell col="61" text="처방의"/>
- <Cell col="62" text="수혜자"/>
- <Cell col="63" text="치과 통계"/>
- </Band>
- <Band id="body">
- <Cell celltype="head" text="expr:currow + 1"/>
- <Cell col="1" text="bind:btype"/>
- <Cell col="2" text="bind:drginfo"/>
- <Cell col="3" text="bind:elbulbodstat"/>
- <Cell col="4" text="bind:ordtm"/>
- <Cell col="5" text="bind:hngnm"/>
- <Cell col="6" text="bind:pid"/>
- <Cell col="7" text="bind:sexage"/>
- <Cell col="8" text="bind:refer"/>
- <Cell col="9" text="bind:replstat"/>
- <Cell col="10" text="bind:centcd"/>
- <Cell col="11" text="bind:subdeptcd"/>
- <Cell col="12" text="bind:orddrnm"/>
- <Cell col="13" text="bind:fsexamflag"/>
- <Cell col="14" text="bind:diagnm"/>
- <Cell col="15" text="bind:recentdiagnm"/>
- <Cell col="16" text="bind:anodeptyn"/>
- <Cell col="17" text="bind:spclflag"/>
- <Cell col="18" text="bind:testrslt"/>
- <Cell col="19" text="bind:rsrvflag"/>
- <Cell col="20" text="bind:etcordflag"/>
- <Cell col="21" text="bind:outmisu"/>
- <Cell col="22" text="bind:serdiag"/>
- <Cell col="23" text="bind:insukind"/>
- <Cell col="24" text="bind:prcptdayaftrcptyn"/>
- <Cell col="25" text="bind:preexamyn"/>
- <Cell col="26" text="bind:rsrvordtm"/>
- <Cell col="27" text="bind:nursacptdt"/>
- <Cell col="28" text="bind:ordstartdt"/>
- <Cell col="29" text="bind:dracptdt"/>
- <Cell col="30" text="bind:trsmrem"/>
- <Cell col="31" text="bind:conctypenm"/>
- <Cell col="32" text="bind:antidrugflag"/>
- <Cell col="33" text="bind:coordflag"/>
- <Cell col="34" text="bind:cpyn"/>
- <Cell col="35" text="bind:onestop"/>
- <Cell col="36" text="bind:dnoracptyn"/>
- <Cell col="37" text="bind:preworkup"/>
- <Cell col="38" text="bind:hsctpreday"/>
- <Cell col="39" text="bind:transtype"/>
- <Cell col="40" text="bind:hsctday"/>
- <Cell col="41" text="bind:postcxday"/>
- <Cell col="42" text="bind:bfjudgvalue"/>
- <Cell col="43" text="bind:specordtype"/>
- <Cell col="44" text="bind:ordstate"/>
- <Cell col="45" text="bind:orddd"/>
- <Cell col="46" text="bind:cretno"/>
- <Cell col="47" text="bind:instcd"/>
- <Cell col="48" text="bind:acptseqno"/>
- <Cell col="49" text="bind:orgorddd"/>
- <Cell col="50" text="bind:repltype"/>
- <Cell col="51" text="bind:rcptvipresncd"/>
- <Cell col="52" text="bind:rcptvipetcresn"/>
- <Cell col="53" text="bind:medamtpostyn"/>
- <Cell col="54" text="bind:civilap"/>
- <Cell col="55" text="bind:color"/>
- <Cell col="56" text="bind:orddrid"/>
- <Cell col="57" text="bind:centcode"/>
- <Cell col="58" text="bind:patmemo"/>
- <Cell col="59" text="bind:multiord"/>
- <Cell col="60" text="bind:pod"/>
- <Cell col="61" text="bind:prcprgstnm"/>
- <Cell col="62" text="bind:recipient"/>
- <Cell col="63" text="bind:handidentalimg"/>
- </Band>
- </Format>
- </Formats>
- </Grid>
- </Layout>
- </Layouts>
- </Tabpage>
- <Tabpage id="in" text="입원">
- <Layouts>
- <Layout width="1129" height="305">
- <Grid id="grd_inpatlist_basic" taborder="1" useinputpanel="false" position="absolute 3 30 1127 97" anchor="left top right" binddataset="ds_basicIn" selecttype="multiarea">
- <Formats>
- <Format id="default">
- <Columns>
- <Column size="20"/>
- <Column size="0"/>
- <Column size="0"/>
- <Column size="0"/>
- <Column size="45"/>
- <Column size="70"/>
- <Column size="30"/>
- <Column size="55"/>
- <Column size="0"/>
- <Column size="0"/>
- <Column size="100"/>
- <Column size="65"/>
- <Column size="45"/>
- <Column size="35"/>
- <Column size="35"/>
- <Column size="75"/>
- <Column size="70"/>
- <Column size="65"/>
- <Column size="0"/>
- <Column size="90"/>
- <Column size="0"/>
- <Column size="55"/>
- <Column size="0"/>
- <Column size="55"/>
- <Column size="150"/>
- <Column size="100"/>
- <Column size="0"/>
- <Column size="39"/>
- <Column size="41"/>
- <Column size="55"/>
- <Column size="75"/>
- <Column size="50"/>
- <Column size="50"/>
- <Column size="63"/>
- <Column size="66"/>
- <Column size="64"/>
- <Column size="70"/>
- <Column size="70"/>
- <Column size="70"/>
- <Column size="76"/>
- <Column size="0"/>
- <Column size="64"/>
- <Column size="0"/>
- <Column size="0"/>
- <Column size="0"/>
- <Column size="0"/>
- <Column size="0"/>
- <Column size="0"/>
- <Column size="0"/>
- <Column size="0"/>
- <Column size="0"/>
- <Column size="0"/>
- <Column size="0"/>
- <Column size="0"/>
- <Column size="0"/>
- <Column size="0"/>
- </Columns>
- <Rows>
- <Row size="24" band="head"/>
- <Row size="24"/>
- </Rows>
- <Band id="head">
- <Cell/>
- <Cell col="1" text="indd"/>
- <Cell col="2" text="cretno"/>
- <Cell col="3" text="seqno"/>
- <Cell col="4" text="혈액형"/>
- <Cell col="5" text="질병군분류"/>
- <Cell col="6" text="메모"/>
- <Cell col="7" text="병실"/>
- <Cell col="8" text="color"/>
- <Cell col="9" text="성명"/>
- <Cell col="10" text="환자명"/>
- <Cell col="11" text="등록번호"/>
- <Cell col="12" text="S/A"/>
- <Cell col="13" text="HD"/>
- <Cell col="14" text="POD"/>
- <Cell col="15" text="AD"/>
- <Cell col="16" text="의료협력"/>
- <Cell col="17" text="회신상태"/>
- <Cell col="18" text="orddeptcd"/>
- <Cell col="19" text="진료과"/>
- <Cell col="20" text="세부과"/>
- <Cell col="21" text="전문의"/>
- <Cell col="22" text="MEDISPCLID"/>
- <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="최종처방일"/>
- <Cell col="31" text="DRG"/>
- <Cell col="32" text="CP여부"/>
- <Cell col="33" text="보험유형"/>
- <Cell col="34" text="퇴원구분"/>
- <Cell col="35" text="관심"/>
- <Cell col="36" text="Transfer"/>
- <Cell col="37" text="협진팀"/>
- <Cell col="38" text="제한항생제"/>
- <Cell col="39" text="PreWork Up"/>
- <Cell col="40" text="BMT예정일"/>
- <Cell col="41" text="이식형태"/>
- <Cell col="42" text="BMT Day"/>
- <Cell col="43" text="Post Cx Day"/>
- <Cell col="44" text="선택진료여부"/>
- <Cell col="45" text="전일기록 SO"/>
- <Cell col="46" text="전일기록 A"/>
- <Cell col="47" text="전일기록 P"/>
- <Cell col="48" text="혈액"/>
- <Cell col="49" text="접촉"/>
- <Cell col="50" text="공기"/>
- <Cell col="51" text="비말"/>
- <Cell col="52" text="재태기간"/>
- <Cell col="53" text="중증"/>
- <Cell col="54" text="당직인계"/>
- <Cell col="55" text="Lab"/>
- </Band>
- <Band id="body">
- <Cell celltype="head" text="expr:currow + 1"/>
- <Cell col="1" text="bind:indd"/>
- <Cell col="2" text="bind:cretno"/>
- <Cell col="3" text="bind:seqno"/>
- <Cell col="4" text="bind:btype"/>
- <Cell col="5" text="bind:drginfo"/>
- <Cell col="6" class="text_center;" text="bind:memo"/>
- <Cell col="7" class="text_center;" text="bind:roomcd"/>
- <Cell col="8" text="bind:color"/>
- <Cell col="9" class="text_center;" text="bind:hngnm"/>
- <Cell col="10" class="text_center;" text="bind:dispnm2"/>
- <Cell col="11" class="text_center;" text="bind:pid"/>
- <Cell col="12" class="text_center;" text="bind:sa"/>
- <Cell col="13" class="text_center;" text="bind:hd"/>
- <Cell col="14" class="text_center;" text="bind:pod"/>
- <Cell col="15" class="text_center;" text="bind:ad"/>
- <Cell col="16" class="text_center;" text="bind:refer"/>
- <Cell col="17" class="text_center;" text="bind:replstat"/>
- <Cell col="18" text="bind:orddeptcd"/>
- <Cell col="19" class="text_center;" text="bind:deptnm"/>
- <Cell col="20" class="text_center;" text="bind:subdeptnm"/>
- <Cell col="21" class="text_center;" text="bind:medispclnm"/>
- <Cell col="22" text="bind:medispclid"/>
- <Cell col="23" class="text_center;" text="bind:atdoctnm"/>
- <Cell col="24" class="text_center;" text="bind:diagnm"/>
- <Cell col="25" class="text_center;" text="bind:opnm"/>
- <Cell col="26" text="bind:testrslt"/>
- <Cell col="27" class="text_center;" text="bind:cnst"/>
- <Cell col="28" text="bind:spclflag"/>
- <Cell col="29" text="bind:dayregular"/>
- <Cell col="30" class="text_center;" text="bind:lastprcpdd"/>
- <Cell col="31" class="text_center;" text="bind:drgyn"/>
- <Cell col="32" class="text_center;" text="bind:cpyn"/>
- <Cell col="33" class="text_center;" text="bind:insukind"/>
- <Cell col="34" class="text_center;" text="bind:dschnoti"/>
- <Cell col="35" text="bind:conctypenm"/>
- <Cell col="36" text="bind:transfer"/>
- <Cell col="37" text="bind:coopteamcd"/>
- <Cell col="38" text="bind:antidrugflag"/>
- <Cell col="39" text="bind:preworkup"/>
- <Cell col="40" text="bind:hsctpreday"/>
- <Cell col="41" text="bind:transtype"/>
- <Cell col="42" text="bind:hsctday"/>
- <Cell col="43" text="bind:postcxday"/>
- <Cell col="44" text="bind:specordtype"/>
- <Cell col="45" text="bind:recsubjective"/>
- <Cell col="46" text="bind:recaccess"/>
- <Cell col="47" text="bind:recplan"/>
- <Cell col="48" text="bind:disp1img"/>
- <Cell col="49" text="bind:disp2img"/>
- <Cell col="50" text="bind:disp3img"/>
- <Cell col="51" text="bind:disp4img"/>
- <Cell col="52" text="bind:prgweekcnt"/>
- <Cell col="53" text="bind:recovwardnm"/>
- <Cell col="54" text="bind:recnightduty"/>
- <Cell col="55" text="bind:childlab"/>
- </Band>
- </Format>
- </Formats>
- </Grid>
- <Grid id="grd_inpatlist" taborder="2" useinputpanel="false" position="absolute 3 132 1127 199" anchor="left top right" binddataset="ds_AllIn" selecttype="multiarea" onrbuttondown="Tab00_grd_onrbuttondown" selectbandtype="default" ondrag="Tab00_grd_ondrag" ondragmove="Tab00_grd_ondragmove" cellsizingtype="col">
- <Formats>
- <Format id="default">
- <Columns>
- <Column size="20"/>
- <Column size="0"/>
- <Column size="0"/>
- <Column size="0"/>
- <Column size="45"/>
- <Column size="70"/>
- <Column size="30"/>
- <Column size="55"/>
- <Column size="0"/>
- <Column size="0"/>
- <Column size="100"/>
- <Column size="65"/>
- <Column size="45"/>
- <Column size="35"/>
- <Column size="35"/>
- <Column size="75"/>
- <Column size="70"/>
- <Column size="65"/>
- <Column size="0"/>
- <Column size="90"/>
- <Column size="0"/>
- <Column size="55"/>
- <Column size="0"/>
- <Column size="55"/>
- <Column size="150"/>
- <Column size="100"/>
- <Column size="0"/>
- <Column size="39"/>
- <Column size="41"/>
- <Column size="55"/>
- <Column size="75"/>
- <Column size="50"/>
- <Column size="50"/>
- <Column size="63"/>
- <Column size="66"/>
- <Column size="64"/>
- <Column size="70"/>
- <Column size="70"/>
- <Column size="70"/>
- <Column size="76"/>
- <Column size="0"/>
- <Column size="64"/>
- <Column size="0"/>
- <Column size="0"/>
- <Column size="100"/>
- <Column size="115"/>
- <Column size="115"/>
- <Column size="115"/>
- <Column size="25"/>
- <Column size="25"/>
- <Column size="25"/>
- <Column size="25"/>
- <Column size="60"/>
- <Column size="35"/>
- <Column size="115"/>
- <Column size="200"/>
- </Columns>
- <Rows>
- <Row size="24" band="head"/>
- <Row size="24"/>
- </Rows>
- <Band id="head">
- <Cell/>
- <Cell col="1" text="indd"/>
- <Cell col="2" text="cretno"/>
- <Cell col="3" text="seqno"/>
- <Cell col="4" text="혈액형"/>
- <Cell col="5" text="질병군분류"/>
- <Cell col="6" text="메모"/>
- <Cell col="7" text="병실"/>
- <Cell col="8" text="color"/>
- <Cell col="9" text="성명"/>
- <Cell col="10" text="환자명"/>
- <Cell col="11" text="등록번호"/>
- <Cell col="12" text="S/A"/>
- <Cell col="13" text="HD"/>
- <Cell col="14" text="POD"/>
- <Cell col="15" text="AD"/>
- <Cell col="16" text="의료협력"/>
- <Cell col="17" text="회신상태"/>
- <Cell col="18" text="orddeptcd"/>
- <Cell col="19" text="진료과"/>
- <Cell col="20" text="세부과"/>
- <Cell col="21" text="전문의"/>
- <Cell col="22" text="MEDISPCLID"/>
- <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="최종처방일"/>
- <Cell col="31" text="DRG"/>
- <Cell col="32" text="CP여부"/>
- <Cell col="33" text="보험유형"/>
- <Cell col="34" text="퇴원구분"/>
- <Cell col="35" text="관심"/>
- <Cell col="36" text="Transfer"/>
- <Cell col="37" text="협진팀"/>
- <Cell col="38" text="제한항생제"/>
- <Cell col="39" text="PreWork Up"/>
- <Cell col="40" text="BMT예정일"/>
- <Cell col="41" text="이식형태"/>
- <Cell col="42" text="BMT Day"/>
- <Cell col="43" text="Post Cx Day"/>
- <Cell col="44" text="선택진료여부"/>
- <Cell col="45" text="전일기록 SO"/>
- <Cell col="46" text="전일기록 A"/>
- <Cell col="47" text="전일기록 P"/>
- <Cell col="48" text="혈액"/>
- <Cell col="49" text="접촉"/>
- <Cell col="50" text="공기"/>
- <Cell col="51" text="비말"/>
- <Cell col="52" text="재태기간"/>
- <Cell col="53" text="중증"/>
- <Cell col="54" text="당직인계"/>
- <Cell col="55" text="Lab"/>
- </Band>
- <Band id="body">
- <Cell celltype="head" text="expr:currow + 1"/>
- <Cell col="1" text="bind:indd"/>
- <Cell col="2" text="bind:cretno"/>
- <Cell col="3" text="bind:seqno"/>
- <Cell col="4" text="bind:btype"/>
- <Cell col="5" text="bind:drginfo"/>
- <Cell col="6" class="text_center;" text="bind:memo"/>
- <Cell col="7" class="text_center;" text="bind:roomcd"/>
- <Cell col="8" text="bind:color"/>
- <Cell col="9" class="text_center;" text="bind:hngnm"/>
- <Cell col="10" class="text_center;" text="bind:dispnm2"/>
- <Cell col="11" class="text_center;" text="bind:pid"/>
- <Cell col="12" class="text_center;" text="bind:sa"/>
- <Cell col="13" class="text_center;" text="bind:hd"/>
- <Cell col="14" class="text_center;" text="bind:pod"/>
- <Cell col="15" class="text_center;" text="bind:ad"/>
- <Cell col="16" class="text_center;" text="bind:refer"/>
- <Cell col="17" class="text_center;" text="bind:replstat"/>
- <Cell col="18" text="bind:orddeptcd"/>
- <Cell col="19" class="text_center;" text="bind:deptnm"/>
- <Cell col="20" class="text_center;" text="bind:subdeptnm"/>
- <Cell col="21" class="text_center;" text="bind:medispclnm"/>
- <Cell col="22" text="bind:medispclid"/>
- <Cell col="23" class="text_center;" text="bind:atdoctnm"/>
- <Cell col="24" class="text_center;" text="bind:diagnm"/>
- <Cell col="25" class="text_center;" text="bind:opnm"/>
- <Cell col="26" text="bind:testrslt"/>
- <Cell col="27" class="text_center;" text="bind:cnst"/>
- <Cell col="28" text="bind:spclflag"/>
- <Cell col="29" text="bind:dayregular"/>
- <Cell col="30" class="text_center;" text="bind:lastprcpdd"/>
- <Cell col="31" class="text_center;" text="bind:drgyn"/>
- <Cell col="32" class="text_center;" text="bind:cpyn"/>
- <Cell col="33" class="text_center;" text="bind:insukind"/>
- <Cell col="34" class="text_center;" text="bind:dschnoti"/>
- <Cell col="35" text="bind:conctypenm"/>
- <Cell col="36" text="bind:transfer"/>
- <Cell col="37" text="bind:coopteamcd"/>
- <Cell col="38" text="bind:antidrugflag"/>
- <Cell col="39" text="bind:preworkup"/>
- <Cell col="40" text="bind:hsctpreday"/>
- <Cell col="41" text="bind:transtype"/>
- <Cell col="42" text="bind:hsctday"/>
- <Cell col="43" text="bind:postcxday"/>
- <Cell col="44" text="bind:specordtype"/>
- <Cell col="45" text="bind:recsubjective"/>
- <Cell col="46" text="bind:recaccess"/>
- <Cell col="47" text="bind:recplan"/>
- <Cell col="48" text="bind:disp1img"/>
- <Cell col="49" text="bind:disp2img"/>
- <Cell col="50" text="bind:disp3img"/>
- <Cell col="51" text="bind:disp4img"/>
- <Cell col="52" text="bind:prgweekcnt"/>
- <Cell col="53" text="bind:recovwardnm"/>
- <Cell col="54" text="bind:recnightduty"/>
- <Cell col="55" text="bind:childlab"/>
- </Band>
- </Format>
- </Formats>
- </Grid>
- <Grid id="grd_inpatlist_resize" taborder="3" useinputpanel="false" position="absolute 3 234 1127 301" anchor="left top right" binddataset="ds_ResizeIn" selecttype="multiarea" onrbuttondown="Tab00_grd_resize_onrbuttondown" cellmovingtype="col" cellsizingtype="col" dragscrolltype="both" ondrop="Tab00_grd_resize_ondrop" ondragmove="Tab00_grd_resize_ondragmove">
- <Formats>
- <Format id="default">
- <Columns>
- <Column size="20"/>
- <Column size="0"/>
- <Column size="0"/>
- <Column size="0"/>
- <Column size="45"/>
- <Column size="70"/>
- <Column size="30"/>
- <Column size="55"/>
- <Column size="0"/>
- <Column size="0"/>
- <Column size="100"/>
- <Column size="65"/>
- <Column size="45"/>
- <Column size="35"/>
- <Column size="35"/>
- <Column size="75"/>
- <Column size="70"/>
- <Column size="65"/>
- <Column size="0"/>
- <Column size="90"/>
- <Column size="0"/>
- <Column size="55"/>
- <Column size="0"/>
- <Column size="55"/>
- <Column size="150"/>
- <Column size="100"/>
- <Column size="0"/>
- <Column size="39"/>
- <Column size="41"/>
- <Column size="55"/>
- <Column size="75"/>
- <Column size="50"/>
- <Column size="50"/>
- <Column size="63"/>
- <Column size="66"/>
- <Column size="64"/>
- <Column size="70"/>
- <Column size="70"/>
- <Column size="70"/>
- <Column size="76"/>
- <Column size="0"/>
- <Column size="64"/>
- <Column size="0"/>
- <Column size="0"/>
- <Column size="96"/>
- <Column size="0"/>
- <Column size="0"/>
- <Column size="0"/>
- <Column size="0"/>
- <Column size="0"/>
- <Column size="0"/>
- <Column size="0"/>
- <Column size="0"/>
- <Column size="0"/>
- <Column size="0"/>
- <Column size="0"/>
- </Columns>
- <Rows>
- <Row size="24" band="head"/>
- <Row size="24"/>
- </Rows>
- <Band id="head">
- <Cell/>
- <Cell col="1" text="indd"/>
- <Cell col="2" text="cretno"/>
- <Cell col="3" text="seqno"/>
- <Cell col="4" text="혈액형"/>
- <Cell col="5" text="질병군분류"/>
- <Cell col="6" text="메모"/>
- <Cell col="7" text="병실"/>
- <Cell col="8" text="color"/>
- <Cell col="9" text="성명"/>
- <Cell col="10" text="환자명"/>
- <Cell col="11" text="등록번호"/>
- <Cell col="12" text="S/A"/>
- <Cell col="13" text="HD"/>
- <Cell col="14" text="POD"/>
- <Cell col="15" text="AD"/>
- <Cell col="16" text="의료협력"/>
- <Cell col="17" text="회신상태"/>
- <Cell col="18" text="orddeptcd"/>
- <Cell col="19" text="진료과"/>
- <Cell col="20" text="세부과"/>
- <Cell col="21" text="전문의"/>
- <Cell col="22" text="MEDISPCLID"/>
- <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="최종처방일"/>
- <Cell col="31" text="DRG"/>
- <Cell col="32" text="CP여부"/>
- <Cell col="33" text="보험유형"/>
- <Cell col="34" text="퇴원구분"/>
- <Cell col="35" text="관심"/>
- <Cell col="36" text="Transfer"/>
- <Cell col="37" text="협진팀"/>
- <Cell col="38" text="제한항생제"/>
- <Cell col="39" text="PreWork Up"/>
- <Cell col="40" text="BMT예정일"/>
- <Cell col="41" text="이식형태"/>
- <Cell col="42" text="BMT Day"/>
- <Cell col="43" text="Post Cx Day"/>
- <Cell col="44" text="선택진료여부"/>
- <Cell col="45" text="전일기록 SO"/>
- <Cell col="46" text="전일기록 A"/>
- <Cell col="47" text="전일기록 P"/>
- <Cell col="48" text="혈액"/>
- <Cell col="49" text="접촉"/>
- <Cell col="50" text="공기"/>
- <Cell col="51" text="비말"/>
- <Cell col="52" text="재태기간"/>
- <Cell col="53" text="중증"/>
- <Cell col="54" text="당직인계"/>
- <Cell col="55" text="Lab"/>
- </Band>
- <Band id="body">
- <Cell celltype="head" text="expr:currow + 1"/>
- <Cell col="1" text="bind:indd"/>
- <Cell col="2" text="bind:cretno"/>
- <Cell col="3" text="bind:seqno"/>
- <Cell col="4" text="bind:btype"/>
- <Cell col="5" text="bind:drginfo"/>
- <Cell col="6" class="text_center;" text="bind:memo"/>
- <Cell col="7" class="text_center;" text="bind:roomcd"/>
- <Cell col="8" text="bind:color"/>
- <Cell col="9" class="text_center;" text="bind:hngnm"/>
- <Cell col="10" class="text_center;" text="bind:dispnm2"/>
- <Cell col="11" class="text_center;" text="bind:pid"/>
- <Cell col="12" class="text_center;" text="bind:sa"/>
- <Cell col="13" class="text_center;" text="bind:hd"/>
- <Cell col="14" class="text_center;" text="bind:pod"/>
- <Cell col="15" class="text_center;" text="bind:ad"/>
- <Cell col="16" class="text_center;" text="bind:refer"/>
- <Cell col="17" class="text_center;" text="bind:replstat"/>
- <Cell col="18" text="bind:orddeptcd"/>
- <Cell col="19" class="text_center;" text="bind:deptnm"/>
- <Cell col="20" class="text_center;" text="bind:subdeptnm"/>
- <Cell col="21" class="text_center;" text="bind:medispclnm"/>
- <Cell col="22" text="bind:medispclid"/>
- <Cell col="23" class="text_center;" text="bind:atdoctnm"/>
- <Cell col="24" class="text_center;" text="bind:diagnm"/>
- <Cell col="25" class="text_center;" text="bind:opnm"/>
- <Cell col="26" text="bind:testrslt"/>
- <Cell col="27" class="text_center;" text="bind:cnst"/>
- <Cell col="28" text="bind:spclflag"/>
- <Cell col="29" text="bind:dayregular"/>
- <Cell col="30" class="text_center;" text="bind:lastprcpdd"/>
- <Cell col="31" class="text_center;" text="bind:drgyn"/>
- <Cell col="32" class="text_center;" text="bind:cpyn"/>
- <Cell col="33" class="text_center;" text="bind:insukind"/>
- <Cell col="34" class="text_center;" text="bind:dschnoti"/>
- <Cell col="35" text="bind:conctypenm"/>
- <Cell col="36" text="bind:transfer"/>
- <Cell col="37" text="bind:coopteamcd"/>
- <Cell col="38" text="bind:antidrugflag"/>
- <Cell col="39" text="bind:preworkup"/>
- <Cell col="40" text="bind:hsctpreday"/>
- <Cell col="41" text="bind:transtype"/>
- <Cell col="42" text="bind:hsctday"/>
- <Cell col="43" text="bind:postcxday"/>
- <Cell col="44" text="bind:specordtype"/>
- <Cell col="45" text="bind:recsubjective"/>
- <Cell col="46" text="bind:recaccess"/>
- <Cell col="47" text="bind:recplan"/>
- <Cell col="48" text="bind:disp1img"/>
- <Cell col="49" text="bind:disp2img"/>
- <Cell col="50" text="bind:disp3img"/>
- <Cell col="51" text="bind:disp4img"/>
- <Cell col="52" text="bind:prgweekcnt"/>
- <Cell col="53" text="bind:recovwardnm"/>
- <Cell col="54" text="bind:recnightduty"/>
- <Cell col="55" text="bind:childlab"/>
- </Band>
- </Format>
- </Formats>
- </Grid>
- </Layout>
- </Layouts>
- </Tabpage>
- <Tabpage id="er" text="응급">
- <Layouts>
- <Layout>
- <Grid id="grd_erpatlist_basic" taborder="1" useinputpanel="false" position="absolute 3 30 1127 97" anchor="left top right" binddataset="ds_basicEr" selecttype="multiarea">
- <Formats>
- <Format id="default">
- <Columns>
- <Column size="20"/>
- <Column size="45"/>
- <Column size="70"/>
- <Column size="46"/>
- <Column size="30"/>
- <Column size="55"/>
- <Column size="45"/>
- <Column size="50"/>
- <Column size="30"/>
- <Column size="65"/>
- <Column size="35"/>
- <Column size="35"/>
- <Column size="0"/>
- <Column size="0"/>
- <Column size="100"/>
- <Column size="45"/>
- <Column size="80"/>
- <Column size="55"/>
- <Column size="55"/>
- <Column size="80"/>
- <Column size="0"/>
- <Column size="55"/>
- <Column size="0"/>
- <Column size="145"/>
- <Column size="145"/>
- <Column size="47"/>
- <Column size="112"/>
- <Column size="100"/>
- <Column size="104"/>
- <Column size="65"/>
- <Column size="65"/>
- <Column size="70"/>
- <Column size="67"/>
- <Column size="80"/>
- <Column size="0"/>
- <Column size="50"/>
- <Column size="0"/>
- <Column size="0"/>
- <Column size="0"/>
- <Column size="0"/>
- <Column size="0"/>
- <Column size="0"/>
- <Column size="0"/>
- <Column size="0"/>
- <Column size="0"/>
- <Column size="0"/>
- <Column size="0"/>
- <Column size="0"/>
- <Column size="0"/>
- <Column size="0"/>
- <Column size="0"/>
- <Column size="0"/>
- <Column size="0"/>
- <Column size="0"/>
- </Columns>
- <Rows>
- <Row size="24" band="head"/>
- <Row size="24"/>
- </Rows>
- <Band id="head">
- <Cell/>
- <Cell col="1" text="혈액형"/>
- <Cell col="2" text="질병군분류"/>
- <Cell col="3" text="BED"/>
- <Cell col="4" text="특이"/>
- <Cell col="5" text="의사결정"/>
- <Cell col="6" text="입원장"/>
- <Cell col="7" text="배정병실"/>
- <Cell col="8" text="상태"/>
- <Cell col="9" text="등록번호"/>
- <Cell col="10" text="중증"/>
- <Cell col="11" text="Triage"/>
- <Cell col="12" text="성명"/>
- <Cell col="13" text="KTAS"/>
- <Cell col="14" text="환자명"/>
- <Cell col="15" text="S/A"/>
- <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="Remark"/>
- <Cell col="27" text="Remark2"/>
- <Cell col="28" text="내원일시"/>
- <Cell col="29" text="인턴1"/>
- <Cell col="30" text="인턴2"/>
- <Cell col="31" text="Call Time"/>
- <Cell col="32" text="Visit Time"/>
- <Cell col="33" text="체류시간"/>
- <Cell col="34" text="선택진료여부"/>
- <Cell col="35" text="DRG"/>
- <Cell col="36" text="indd"/>
- <Cell col="37" text="cretno"/>
- <Cell col="38" text="orddeptcd"/>
- <Cell col="39" text="visitno"/>
- <Cell col="40" text="rrgstno1"/>
- <Cell col="41" text="color"/>
- <Cell col="42" text="adrvcolor"/>
- <Cell col="43" text="recovwardcd"/>
- <Cell col="44" text="actsymp"/>
- <Cell col="45" text="dschdclrtyn"/>
- <Cell col="46" text="tmcolorm"/>
- <Cell col="47" text="staytime"/>
- <Cell col="48" text="prcpcolor"/>
- <Cell col="49" text="혈액"/>
- <Cell col="50" text="접촉"/>
- <Cell col="51" text="공기"/>
- <Cell col="52" text="비말"/>
- <Cell col="53" text="재내원"/>
- </Band>
- <Band id="body">
- <Cell celltype="head" text="expr:currow + 1"/>
- <Cell col="1" text="bind:btype"/>
- <Cell col="2" text="bind:drginfo"/>
- <Cell col="3" text="bind:bed"/>
- <Cell col="4" text="bind:spclflag"/>
- <Cell col="5" text="bind:adflag"/>
- <Cell col="6" text="bind:adrvflag"/>
- <Cell col="7" style="align:center middle;" text="bind:assgroom"/>
- <Cell col="8" text="bind:patstat"/>
- <Cell col="9" text="bind:pid"/>
- <Cell col="10" text="bind:recovwardnm"/>
- <Cell col="11" text="bind:serdiagflag"/>
- <Cell col="12" text="bind:hngnm"/>
- <Cell col="13" text="bind:serdiagflag2"/>
- <Cell col="14" text="bind:dispnm2"/>
- <Cell col="15" text="bind:sa"/>
- <Cell col="16" text="bind:ordindeptnm"/>
- <Cell col="17" text="bind:medispclnm"/>
- <Cell col="18" text="bind:atdoctnm"/>
- <Cell col="19" text="bind:orddeptnm"/>
- <Cell col="20" text="bind:erorddeptcd"/>
- <Cell col="21" text="bind:orddoctnm"/>
- <Cell col="22" text="bind:orddoctid"/>
- <Cell col="23" text="bind:diagnm"/>
- <Cell col="24" text="bind:mainsynom"/>
- <Cell col="25" text="bind:roomcd"/>
- <Cell col="26" text="bind:remark1"/>
- <Cell col="27" text="bind:remark2"/>
- <Cell col="28" text="bind:chosdd"/>
- <Cell col="29" text="bind:internnm1"/>
- <Cell col="30" text="bind:internnm2"/>
- <Cell col="31" text="bind:calltm"/>
- <Cell col="32" text="bind:visttm"/>
- <Cell col="33" text="bind:staytm"/>
- <Cell col="34" text="bind:specordtype"/>
- <Cell col="35" text="bind:drgyn"/>
- <Cell col="36" text="bind:indd"/>
- <Cell col="37" text="bind:cretno"/>
- <Cell col="38" text="bind:orddeptcd"/>
- <Cell col="39" text="bind:visitno"/>
- <Cell col="40" text="bind:rrgstno1"/>
- <Cell col="41" text="bind:color"/>
- <Cell col="42" text="bind:adrvcolor"/>
- <Cell col="43" text="bind:recovwardcd"/>
- <Cell col="44" text="bind:actsymp"/>
- <Cell col="45" text="bind:dschdclrtyn"/>
- <Cell col="46" text="bind:tmcolor"/>
- <Cell col="47" text="bind:staytime"/>
- <Cell col="48" text="bind:prcpcolor"/>
- <Cell col="49" text="bind:disp1img"/>
- <Cell col="50" text="bind:disp2img"/>
- <Cell col="51" text="bind:disp3img"/>
- <Cell col="52" text="bind:disp4img"/>
- <Cell col="53" text="bind:revisit"/>
- </Band>
- </Format>
- </Formats>
- </Grid>
- <Grid id="grd_erpatlist" taborder="2" useinputpanel="false" position="absolute 3 132 1127 199" anchor="left top right" binddataset="ds_AllEr" selecttype="multiarea" onrbuttondown="Tab00_grd_onrbuttondown" selectbandtype="default" ondrag="Tab00_grd_ondrag" ondragmove="Tab00_grd_ondragmove" cellsizingtype="col">
- <Formats>
- <Format id="default">
- <Columns>
- <Column size="20"/>
- <Column size="45"/>
- <Column size="70"/>
- <Column size="46"/>
- <Column size="30"/>
- <Column size="55"/>
- <Column size="45"/>
- <Column size="50"/>
- <Column size="30"/>
- <Column size="65"/>
- <Column size="35"/>
- <Column size="35"/>
- <Column size="0"/>
- <Column size="40"/>
- <Column size="100"/>
- <Column size="45"/>
- <Column size="80"/>
- <Column size="55"/>
- <Column size="55"/>
- <Column size="80"/>
- <Column size="0"/>
- <Column size="55"/>
- <Column size="0"/>
- <Column size="145"/>
- <Column size="145"/>
- <Column size="47"/>
- <Column size="112"/>
- <Column size="100"/>
- <Column size="104"/>
- <Column size="65"/>
- <Column size="65"/>
- <Column size="70"/>
- <Column size="67"/>
- <Column size="80"/>
- <Column size="100"/>
- <Column size="50"/>
- <Column size="0"/>
- <Column size="0"/>
- <Column size="0"/>
- <Column size="0"/>
- <Column size="0"/>
- <Column size="0"/>
- <Column size="0"/>
- <Column size="0"/>
- <Column size="0"/>
- <Column size="0"/>
- <Column size="0"/>
- <Column size="0"/>
- <Column size="0"/>
- <Column size="25"/>
- <Column size="25"/>
- <Column size="25"/>
- <Column size="25"/>
- <Column size="40"/>
- <Column size="30"/>
- <Column size="40"/>
- </Columns>
- <Rows>
- <Row size="24" band="head"/>
- <Row size="24"/>
- </Rows>
- <Band id="head">
- <Cell/>
- <Cell col="1" text="혈액형"/>
- <Cell col="2" text="질병군분류"/>
- <Cell col="3" text="BED"/>
- <Cell col="4" text="특이"/>
- <Cell col="5" text="의사결정"/>
- <Cell col="6" text="입원장"/>
- <Cell col="7" text="배정병실"/>
- <Cell col="8" text="상태"/>
- <Cell col="9" text="등록번호"/>
- <Cell col="10" text="중증"/>
- <Cell col="11" text="Triage"/>
- <Cell col="12" text="성명"/>
- <Cell col="13" text="KTAS"/>
- <Cell col="14" text="환자명"/>
- <Cell col="15" text="S/A"/>
- <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="Remark"/>
- <Cell col="27" text="Remark2"/>
- <Cell col="28" text="내원일시"/>
- <Cell col="29" text="인턴1"/>
- <Cell col="30" text="인턴2"/>
- <Cell col="31" text="Call Time"/>
- <Cell col="32" text="Visit Time"/>
- <Cell col="33" text="체류시간"/>
- <Cell col="34" text="선택진료여부"/>
- <Cell col="35" text="DRG"/>
- <Cell col="36" text="indd"/>
- <Cell col="37" text="cretno"/>
- <Cell col="38" text="orddeptcd"/>
- <Cell col="39" text="visitno"/>
- <Cell col="40" text="rrgstno1"/>
- <Cell col="41" text="color"/>
- <Cell col="42" text="adrvcolor"/>
- <Cell col="43" text="recovwardcd"/>
- <Cell col="44" text="actsymp"/>
- <Cell col="45" text="dschdclrtyn"/>
- <Cell col="46" text="tmcolorm"/>
- <Cell col="47" text="staytime"/>
- <Cell col="48" text="prcpcolor"/>
- <Cell col="49" text="혈액"/>
- <Cell col="50" text="접촉"/>
- <Cell col="51" text="공기"/>
- <Cell col="52" text="비말"/>
- <Cell col="53" text="재내원"/>
- <Cell col="54" text="호출"/>
- <Cell col="55" text="COVID"/>
- </Band>
- <Band id="body">
- <Cell celltype="head" text="expr:currow + 1"/>
- <Cell col="1" text="bind:btype"/>
- <Cell col="2" text="bind:drginfo"/>
- <Cell col="3" text="bind:bed"/>
- <Cell col="4" text="bind:spclflag"/>
- <Cell col="5" text="bind:adflag"/>
- <Cell col="6" text="bind:adrvflag"/>
- <Cell col="7" style="align:center middle;" text="bind:assgroom"/>
- <Cell col="8" text="bind:patstat"/>
- <Cell col="9" text="bind:pid"/>
- <Cell col="10" text="bind:recovwardnm"/>
- <Cell col="11" text="bind:serdiagflag"/>
- <Cell col="12" text="bind:hngnm"/>
- <Cell col="13" text="bind:serdiagflag2"/>
- <Cell col="14" text="bind:dispnm2"/>
- <Cell col="15" text="bind:sa"/>
- <Cell col="16" text="bind:ordindeptnm"/>
- <Cell col="17" text="bind:medispclnm"/>
- <Cell col="18" text="bind:atdoctnm"/>
- <Cell col="19" text="bind:orddeptnm"/>
- <Cell col="20" text="bind:erorddeptcd"/>
- <Cell col="21" text="bind:orddoctnm"/>
- <Cell col="22" text="bind:orddoctid"/>
- <Cell col="23" text="bind:diagnm"/>
- <Cell col="24" text="bind:mainsynom"/>
- <Cell col="25" text="bind:roomcd"/>
- <Cell col="26" text="bind:remark1"/>
- <Cell col="27" text="bind:remark2"/>
- <Cell col="28" text="bind:chosdd"/>
- <Cell col="29" text="bind:internnm1"/>
- <Cell col="30" text="bind:internnm2"/>
- <Cell col="31" text="bind:calltm"/>
- <Cell col="32" text="bind:visttm"/>
- <Cell col="33" text="bind:staytm"/>
- <Cell col="34" text="bind:specordtype"/>
- <Cell col="35" text="bind:drgyn"/>
- <Cell col="36" text="bind:indd"/>
- <Cell col="37" text="bind:cretno"/>
- <Cell col="38" text="bind:orddeptcd"/>
- <Cell col="39" text="bind:visitno"/>
- <Cell col="40" text="bind:rrgstno1"/>
- <Cell col="41" text="bind:color"/>
- <Cell col="42" text="bind:adrvcolor"/>
- <Cell col="43" text="bind:recovwardcd"/>
- <Cell col="44" text="bind:actsymp"/>
- <Cell col="45" text="bind:dschdclrtyn"/>
- <Cell col="46" text="bind:tmcolor"/>
- <Cell col="47" text="bind:staytime"/>
- <Cell col="48" text="bind:prcpcolor"/>
- <Cell col="49" text="bind:disp1img"/>
- <Cell col="50" text="bind:disp2img"/>
- <Cell col="51" text="bind:disp3img"/>
- <Cell col="52" text="bind:disp4img"/>
- <Cell col="53" text="bind:revisit"/>
- <Cell col="54" text="bind:ercallstatus"/>
- <Cell col="55" text="bind:covidlis"/>
- </Band>
- </Format>
- </Formats>
- </Grid>
- <Grid id="grd_erpatlist_resize" taborder="3" useinputpanel="false" position="absolute 3 234 1127 301" anchor="left top right" binddataset="ds_ResizeEr" selecttype="multiarea" onrbuttondown="Tab00_grd_resize_onrbuttondown" cellmovingtype="col" cellsizingtype="col" dragscrolltype="both" ondrop="Tab00_grd_resize_ondrop" ondragmove="Tab00_grd_resize_ondragmove">
- <Formats>
- <Format id="default">
- <Columns>
- <Column size="20"/>
- <Column size="45"/>
- <Column size="70"/>
- <Column size="46"/>
- <Column size="30"/>
- <Column size="55"/>
- <Column size="45"/>
- <Column size="30"/>
- <Column size="65"/>
- <Column size="35"/>
- <Column size="35"/>
- <Column size="0"/>
- <Column size="0"/>
- <Column size="100"/>
- <Column size="45"/>
- <Column size="80"/>
- <Column size="55"/>
- <Column size="55"/>
- <Column size="80"/>
- <Column size="0"/>
- <Column size="55"/>
- <Column size="0"/>
- <Column size="145"/>
- <Column size="145"/>
- <Column size="47"/>
- <Column size="112"/>
- <Column size="100"/>
- <Column size="104"/>
- <Column size="65"/>
- <Column size="65"/>
- <Column size="70"/>
- <Column size="67"/>
- <Column size="80"/>
- <Column size="100"/>
- <Column size="50"/>
- <Column size="0"/>
- <Column size="0"/>
- <Column size="0"/>
- <Column size="0"/>
- <Column size="0"/>
- <Column size="0"/>
- <Column size="0"/>
- <Column size="0"/>
- <Column size="0"/>
- <Column size="0"/>
- <Column size="0"/>
- <Column size="0"/>
- <Column size="0"/>
- <Column size="0"/>
- <Column size="0"/>
- <Column size="0"/>
- <Column size="0"/>
- <Column size="0"/>
- <Column size="50"/>
- <Column size="30"/>
- <Column size="40"/>
- </Columns>
- <Rows>
- <Row size="24" band="head"/>
- <Row size="24"/>
- </Rows>
- <Band id="head">
- <Cell/>
- <Cell col="1" text="혈액형"/>
- <Cell col="2" text="질병군분류"/>
- <Cell col="3" text="BED"/>
- <Cell col="4" text="특이"/>
- <Cell col="5" text="의사결정"/>
- <Cell col="6" text="입원장"/>
- <Cell col="7" text="상태"/>
- <Cell col="8" text="등록번호"/>
- <Cell col="9" text="중증"/>
- <Cell col="10" text="Triage"/>
- <Cell col="11" text="성명"/>
- <Cell col="12" text="KTAS"/>
- <Cell col="13" text="환자명"/>
- <Cell col="14" text="S/A"/>
- <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="Remark"/>
- <Cell col="26" text="Remark2"/>
- <Cell col="27" text="내원일시"/>
- <Cell col="28" text="인턴1"/>
- <Cell col="29" text="인턴2"/>
- <Cell col="30" text="Call Time"/>
- <Cell col="31" text="Visit Time"/>
- <Cell col="32" text="체류시간"/>
- <Cell col="33" text="선택진료여부"/>
- <Cell col="34" text="DRG"/>
- <Cell col="35" text="indd"/>
- <Cell col="36" text="cretno"/>
- <Cell col="37" text="orddeptcd"/>
- <Cell col="38" text="visitno"/>
- <Cell col="39" text="rrgstno1"/>
- <Cell col="40" text="color"/>
- <Cell col="41" text="adrvcolor"/>
- <Cell col="42" text="recovwardcd"/>
- <Cell col="43" text="actsymp"/>
- <Cell col="44" text="dschdclrtyn"/>
- <Cell col="45" text="tmcolorm"/>
- <Cell col="46" text="staytime"/>
- <Cell col="47" text="prcpcolor"/>
- <Cell col="48" text="혈액"/>
- <Cell col="49" text="접촉"/>
- <Cell col="50" text="공기"/>
- <Cell col="51" text="비말"/>
- <Cell col="52" text="재내원"/>
- <Cell col="53" text="배정병실"/>
- <Cell col="54" text="호출"/>
- <Cell col="55" text="COVID"/>
- </Band>
- <Band id="body">
- <Cell celltype="head" text="expr:currow + 1"/>
- <Cell col="1" text="bind:btype"/>
- <Cell col="2" text="bind:drginfo"/>
- <Cell col="3" text="bind:bed"/>
- <Cell col="4" text="bind:spclflag"/>
- <Cell col="5" text="bind:adflag"/>
- <Cell col="6" text="bind:adrvflag"/>
- <Cell col="7" text="bind:patstat"/>
- <Cell col="8" text="bind:pid"/>
- <Cell col="9" text="bind:recovwardnm"/>
- <Cell col="10" text="bind:serdiagflag"/>
- <Cell col="11" text="bind:hngnm"/>
- <Cell col="12" text="bind:serdiagflag2"/>
- <Cell col="13" text="bind:dispnm2"/>
- <Cell col="14" text="bind:sa"/>
- <Cell col="15" text="bind:ordindeptnm"/>
- <Cell col="16" text="bind:medispclnm"/>
- <Cell col="17" text="bind:atdoctnm"/>
- <Cell col="18" text="bind:orddeptnm"/>
- <Cell col="19" text="bind:erorddeptcd"/>
- <Cell col="20" text="bind:orddoctnm"/>
- <Cell col="21" text="bind:orddoctid"/>
- <Cell col="22" text="bind:diagnm"/>
- <Cell col="23" text="bind:mainsynom"/>
- <Cell col="24" text="bind:roomcd"/>
- <Cell col="25" text="bind:remark1"/>
- <Cell col="26" text="bind:remark2"/>
- <Cell col="27" text="bind:chosdd"/>
- <Cell col="28" text="bind:internnm1"/>
- <Cell col="29" text="bind:internnm2"/>
- <Cell col="30" text="bind:calltm"/>
- <Cell col="31" text="bind:visttm"/>
- <Cell col="32" text="bind:staytm"/>
- <Cell col="33" text="bind:specordtype"/>
- <Cell col="34" text="bind:drgyn"/>
- <Cell col="35" text="bind:indd"/>
- <Cell col="36" text="bind:cretno"/>
- <Cell col="37" text="bind:orddeptcd"/>
- <Cell col="38" text="bind:visitno"/>
- <Cell col="39" text="bind:rrgstno1"/>
- <Cell col="40" text="bind:color"/>
- <Cell col="41" text="bind:adrvcolor"/>
- <Cell col="42" text="bind:recovwardcd"/>
- <Cell col="43" text="bind:actsymp"/>
- <Cell col="44" text="bind:dschdclrtyn"/>
- <Cell col="45" text="bind:tmcolor"/>
- <Cell col="46" text="bind:staytime"/>
- <Cell col="47" text="bind:prcpcolor"/>
- <Cell col="48" text="bind:disp1img"/>
- <Cell col="49" text="bind:disp2img"/>
- <Cell col="50" text="bind:disp3img"/>
- <Cell col="51" text="bind:disp4img"/>
- <Cell col="52" text="bind:revisit"/>
- <Cell col="53" style="align:center middle;" text="bind:assgroom"/>
- <Cell col="54" text="bind:ercallstatus"/>
- <Cell col="55" text="bind:covidlis"/>
- </Band>
- </Format>
- </Formats>
- </Grid>
- </Layout>
- </Layouts>
- </Tabpage>
- <Tabpage id="op" text="수술">
- <Layouts>
- <Layout width="1129" height="305">
- <Grid id="grd_oppatlist_basic" taborder="1" useinputpanel="false" position="absolute 3 30 1127 97" anchor="left top right" binddataset="ds_basicOp" selecttype="multiarea">
- <Formats>
- <Format id="default">
- <Columns>
- <Column size="20"/>
- <Column size="45"/>
- <Column size="70"/>
- <Column size="49"/>
- <Column size="70"/>
- <Column size="55"/>
- <Column size="55"/>
- <Column size="55"/>
- <Column size="55"/>
- <Column size="80"/>
- <Column size="80"/>
- <Column size="65"/>
- <Column size="0"/>
- <Column size="100"/>
- <Column size="45"/>
- <Column size="120"/>
- <Column size="100"/>
- <Column size="50"/>
- <Column size="40"/>
- <Column size="50"/>
- <Column size="60"/>
- <Column size="55"/>
- <Column size="67"/>
- <Column size="55"/>
- <Column size="0"/>
- <Column size="80"/>
- <Column size="40"/>
- <Column size="75"/>
- <Column size="0"/>
- <Column size="0"/>
- <Column size="0"/>
- <Column size="0"/>
- <Column size="0"/>
- <Column size="0"/>
- <Column size="50"/>
- <Column size="50"/>
- <Column size="50"/>
- <Column size="0"/>
- <Column size="0"/>
- <Column size="0"/>
- <Column size="0"/>
- <Column size="0"/>
- <Column size="0"/>
- <Column size="0"/>
- <Column size="0"/>
- <Column size="0"/>
- <Column size="0"/>
- <Column size="0"/>
- <Column size="0"/>
- <Column size="0"/>
- </Columns>
- <Rows>
- <Row size="24" band="head"/>
- <Row size="24"/>
- </Rows>
- <Band id="head">
- <Cell/>
- <Cell col="1" text="혈액형"/>
- <Cell col="2" text="질병군분류"/>
- <Cell col="3" text="상태"/>
- <Cell col="4" text="수술방"/>
- <Cell col="5" text="입실"/>
- <Cell col="6" text="시작시간"/>
- <Cell col="7" text="종료시간"/>
- <Cell col="8" text="소요시간"/>
- <Cell col="9" text="진료과"/>
- <Cell col="10" text="집도과"/>
- <Cell col="11" text="등록번호"/>
- <Cell col="12" text="성명"/>
- <Cell col="13" text="환자명"/>
- <Cell col="14" text="S/A"/>
- <Cell col="15" text="수술명"/>
- <Cell col="16" text="진단명"/>
- <Cell col="17" text="병실"/>
- <Cell col="18" text="CP"/>
- <Cell col="19" text="DRG"/>
- <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="PreWork Up"/>
- <Cell col="28" text="BMT예정일"/>
- <Cell col="29" text="이식형태"/>
- <Cell col="30" text="BMT day"/>
- <Cell col="31" text="instcd"/>
- <Cell col="32" text="Post Cx Day"/>
- <Cell col="33" text="선택진료여부"/>
- <Cell col="34" text="PCA"/>
- <Cell col="35" text="키"/>
- <Cell col="36" text="몸무게"/>
- <Cell col="37" text="무통마취여부"/>
- <Cell col="38" text="퇴실"/>
- <Cell col="39" text="oprsrvno"/>
- <Cell col="40" text="ophistno"/>
- <Cell col="41" text="opcnfmdd"/>
- <Cell col="42" text="perfdeptcd"/>
- <Cell col="43" text="perfdrid"/>
- <Cell col="44" text="c-line"/>
- <Cell col="45" text="외상"/>
- <Cell col="46" text="혈액"/>
- <Cell col="47" text="접촉"/>
- <Cell col="48" text="공기"/>
- <Cell col="49" text="비말"/>
- </Band>
- <Band id="body">
- <Cell celltype="head" text="expr:currow + 1"/>
- <Cell col="1" text="bind:btype"/>
- <Cell col="2" text="bind:drginfo"/>
- <Cell col="3" text="bind:ioflag"/>
- <Cell col="4" text="bind:oproomnm"/>
- <Cell col="5" text="bind:patinroomdt"/>
- <Cell col="6" text="bind:opfromtmcd"/>
- <Cell col="7" text="bind:opendtmcd"/>
- <Cell col="8" text="bind:opusetm"/>
- <Cell col="9" text="bind:orddeptcd"/>
- <Cell col="10" text="bind:perfdeptnm"/>
- <Cell col="11" text="bind:pid"/>
- <Cell col="12" text="bind:hngnm"/>
- <Cell col="13" text="bind:dispnm2"/>
- <Cell col="14" text="bind:sa"/>
- <Cell col="15" text="bind:opnm"/>
- <Cell col="16" text="bind:diagnm"/>
- <Cell col="17" text="bind:roomcd"/>
- <Cell col="18" text="bind:cpflag"/>
- <Cell col="19" text="bind:drgyn"/>
- <Cell col="20" text="bind:anstreqflag"/>
- <Cell col="21" text="bind:anstdrnm"/>
- <Cell col="22" text="bind:opstatcd"/>
- <Cell col="23" text="bind:perfdrnm"/>
- <Cell col="24" text="bind:waittime"/>
- <Cell col="25" text="bind:conctypenm"/>
- <Cell col="26" text="bind:spclflag"/>
- <Cell col="27" text="bind:preworkup"/>
- <Cell col="28" text="bind:hsctpreday"/>
- <Cell col="29" text="bind:trsntype"/>
- <Cell col="30" text="bind:hsctday"/>
- <Cell col="31" text="bind:instcd"/>
- <Cell col="32" text="bind:postcxday"/>
- <Cell col="33" text="bind:specordtype"/>
- <Cell col="34" text="bind:pcaflag"/>
- <Cell col="35" text="bind:height"/>
- <Cell col="36" text="bind:weight"/>
- <Cell col="37" text="bind:painlessflag"/>
- <Cell col="38" text="bind:patoutroomdt"/>
- <Cell col="39" text="bind:oprsrvno"/>
- <Cell col="40" text="bind:ophistno"/>
- <Cell col="41" text="bind:opcnfmdd"/>
- <Cell col="42" text="bind:perfdeptcd"/>
- <Cell col="43" text="bind:perfdrid"/>
- <Cell col="44" text="bind:veininfo"/>
- <Cell col="45" text="bind:trpatyn"/>
- <Cell col="46" text="bind:disp1img"/>
- <Cell col="47" text="bind:disp2img"/>
- <Cell col="48" text="bind:disp3img"/>
- <Cell col="49" text="bind:disp4img"/>
- </Band>
- </Format>
- </Formats>
- </Grid>
- <Grid id="grd_oppatlist" taborder="2" useinputpanel="false" position="absolute 3 132 1127 199" anchor="left top right" binddataset="ds_AllOp" selecttype="multiarea" onrbuttondown="Tab00_grd_onrbuttondown" selectbandtype="default" ondrag="Tab00_grd_ondrag" ondragmove="Tab00_grd_ondragmove" cellsizingtype="col">
- <Formats>
- <Format id="default">
- <Columns>
- <Column size="20"/>
- <Column size="45"/>
- <Column size="70"/>
- <Column size="49"/>
- <Column size="70"/>
- <Column size="55"/>
- <Column size="55"/>
- <Column size="55"/>
- <Column size="55"/>
- <Column size="80"/>
- <Column size="80"/>
- <Column size="65"/>
- <Column size="0"/>
- <Column size="100"/>
- <Column size="45"/>
- <Column size="120"/>
- <Column size="100"/>
- <Column size="50"/>
- <Column size="40"/>
- <Column size="50"/>
- <Column size="60"/>
- <Column size="55"/>
- <Column size="67"/>
- <Column size="55"/>
- <Column size="0"/>
- <Column size="80"/>
- <Column size="40"/>
- <Column size="75"/>
- <Column size="0"/>
- <Column size="0"/>
- <Column size="0"/>
- <Column size="0"/>
- <Column size="0"/>
- <Column size="100"/>
- <Column size="50"/>
- <Column size="50"/>
- <Column size="50"/>
- <Column size="0"/>
- <Column size="0"/>
- <Column size="0"/>
- <Column size="0"/>
- <Column size="0"/>
- <Column size="0"/>
- <Column size="100"/>
- <Column size="60"/>
- <Column size="55"/>
- <Column size="25"/>
- <Column size="25"/>
- <Column size="25"/>
- <Column size="25"/>
- <Column size="60"/>
- <Column size="60"/>
- <Column size="100"/>
- <Column size="100"/>
- <Column size="100"/>
- </Columns>
- <Rows>
- <Row size="24" band="head"/>
- <Row size="24"/>
- </Rows>
- <Band id="head">
- <Cell/>
- <Cell col="1" text="혈액형"/>
- <Cell col="2" text="질병군분류"/>
- <Cell col="3" text="상태"/>
- <Cell col="4" text="수술방"/>
- <Cell col="5" text="입실"/>
- <Cell col="6" text="시작시간"/>
- <Cell col="7" text="종료시간"/>
- <Cell col="8" text="소요시간"/>
- <Cell col="9" text="진료과"/>
- <Cell col="10" text="집도과"/>
- <Cell col="11" text="등록번호"/>
- <Cell col="12" text="성명"/>
- <Cell col="13" text="환자명"/>
- <Cell col="14" text="S/A"/>
- <Cell col="15" text="수술명"/>
- <Cell col="16" text="진단명"/>
- <Cell col="17" text="병실"/>
- <Cell col="18" text="CP"/>
- <Cell col="19" text="DRG"/>
- <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="PreWork Up"/>
- <Cell col="28" text="BMT예정일"/>
- <Cell col="29" text="이식형태"/>
- <Cell col="30" text="BMT day"/>
- <Cell col="31" text="instcd"/>
- <Cell col="32" text="Post Cx Day"/>
- <Cell col="33" text="선택진료여부"/>
- <Cell col="34" text="PCA"/>
- <Cell col="35" text="키"/>
- <Cell col="36" text="몸무게"/>
- <Cell col="37" text="무통마취여부"/>
- <Cell col="38" text="oprsrvno"/>
- <Cell col="39" text="ophistno"/>
- <Cell col="40" text="opcnfmdd"/>
- <Cell col="41" text="perfdeptcd"/>
- <Cell col="42" text="perfdrid"/>
- <Cell col="43" text="c-line"/>
- <Cell col="44" text="외상"/>
- <Cell col="45" text="퇴실"/>
- <Cell col="46" text="혈액"/>
- <Cell col="47" text="접촉"/>
- <Cell col="48" text="공기"/>
- <Cell col="49" text="비말"/>
- <Cell col="50" text="환자분류1"/>
- <Cell col="51" text="환자분류2"/>
- <Cell col="52" text="마취 코멘트"/>
- <Cell col="53" text="마취계획"/>
- <Cell col="54" text="마취과전달사항"/>
- </Band>
- <Band id="body">
- <Cell celltype="head" text="expr:currow + 1"/>
- <Cell col="1" text="bind:btype"/>
- <Cell col="2" text="bind:drginfo"/>
- <Cell col="3" text="bind:ioflag"/>
- <Cell col="4" text="bind:oproomnm"/>
- <Cell col="5" text="bind:patinroomdt"/>
- <Cell col="6" text="bind:opfromtmcd"/>
- <Cell col="7" text="bind:opendtmcd"/>
- <Cell col="8" text="bind:opusetm"/>
- <Cell col="9" text="bind:orddeptcd"/>
- <Cell col="10" text="bind:perfdeptnm"/>
- <Cell col="11" text="bind:pid"/>
- <Cell col="12" text="bind:hngnm"/>
- <Cell col="13" text="bind:dispnm2"/>
- <Cell col="14" text="bind:sa"/>
- <Cell col="15" text="bind:opnm"/>
- <Cell col="16" text="bind:diagnm"/>
- <Cell col="17" text="bind:roomcd"/>
- <Cell col="18" text="bind:cpflag"/>
- <Cell col="19" text="bind:drgyn"/>
- <Cell col="20" text="bind:anstreqflag"/>
- <Cell col="21" text="bind:anstdrnm"/>
- <Cell col="22" text="bind:opstatcd"/>
- <Cell col="23" text="bind:perfdrnm"/>
- <Cell col="24" text="bind:waittime"/>
- <Cell col="25" text="bind:conctypenm"/>
- <Cell col="26" text="bind:spclflag"/>
- <Cell col="27" text="bind:preworkup"/>
- <Cell col="28" text="bind:hsctpreday"/>
- <Cell col="29" text="bind:trsntype"/>
- <Cell col="30" text="bind:hsctday"/>
- <Cell col="31" text="bind:instcd"/>
- <Cell col="32" text="bind:postcxday"/>
- <Cell col="33" text="bind:specordtype"/>
- <Cell col="34" text="bind:pcaflag"/>
- <Cell col="35" text="bind:height"/>
- <Cell col="36" text="bind:weight"/>
- <Cell col="37" text="bind:painlessflag"/>
- <Cell col="38" text="bind:oprsrvno"/>
- <Cell col="39" text="bind:ophistno"/>
- <Cell col="40" text="bind:opcnfmdd"/>
- <Cell col="41" text="bind:perfdeptcd"/>
- <Cell col="42" text="bind:perfdrid"/>
- <Cell col="43" style="align:center middle;" text="bind:veininfo"/>
- <Cell col="44" style="align:center middle;" text="bind:trpatyn"/>
- <Cell col="45" text="bind:patoutroomdt"/>
- <Cell col="46" text="bind:disp1img"/>
- <Cell col="47" text="bind:disp2img"/>
- <Cell col="48" text="bind:disp3img"/>
- <Cell col="49" text="bind:disp4img"/>
- <Cell col="50" text="bind:anstclassify1"/>
- <Cell col="51" text="bind:anstclassify2"/>
- <Cell col="52" style="align:left top;" text="bind:anstcmt"/>
- <Cell col="53" style="align:left top;" text="bind:anstplan"/>
- <Cell col="54" style="align:left top;" text="bind:anstdelivefact"/>
- </Band>
- </Format>
- </Formats>
- </Grid>
- <Grid id="grd_oppatlist_resize" taborder="3" useinputpanel="false" position="absolute 3 234 1127 301" anchor="left top right" binddataset="ds_ResizeOp" selecttype="multiarea" onrbuttondown="Tab00_grd_resize_onrbuttondown" cellmovingtype="col" cellsizingtype="col" dragscrolltype="both" ondrop="Tab00_grd_resize_ondrop" ondragmove="Tab00_grd_resize_ondragmove">
- <Formats>
- <Format id="default">
- <Columns>
- <Column size="20"/>
- <Column size="45"/>
- <Column size="70"/>
- <Column size="49"/>
- <Column size="70"/>
- <Column size="55"/>
- <Column size="55"/>
- <Column size="55"/>
- <Column size="55"/>
- <Column size="80"/>
- <Column size="80"/>
- <Column size="65"/>
- <Column size="0"/>
- <Column size="100"/>
- <Column size="45"/>
- <Column size="120"/>
- <Column size="100"/>
- <Column size="50"/>
- <Column size="40"/>
- <Column size="50"/>
- <Column size="60"/>
- <Column size="55"/>
- <Column size="67"/>
- <Column size="55"/>
- <Column size="0"/>
- <Column size="80"/>
- <Column size="40"/>
- <Column size="75"/>
- <Column size="0"/>
- <Column size="0"/>
- <Column size="0"/>
- <Column size="0"/>
- <Column size="0"/>
- <Column size="0"/>
- <Column size="50"/>
- <Column size="50"/>
- <Column size="50"/>
- <Column size="0"/>
- <Column size="0"/>
- <Column size="0"/>
- <Column size="0"/>
- <Column size="0"/>
- <Column size="0"/>
- <Column size="0"/>
- <Column size="0"/>
- <Column size="0"/>
- <Column size="0"/>
- <Column size="0"/>
- <Column size="0"/>
- <Column size="0"/>
- <Column size="60"/>
- <Column size="60"/>
- <Column size="100"/>
- <Column size="100"/>
- <Column size="100"/>
- </Columns>
- <Rows>
- <Row size="24" band="head"/>
- <Row size="24"/>
- </Rows>
- <Band id="head">
- <Cell/>
- <Cell col="1" text="혈액형"/>
- <Cell col="2" text="질병군분류"/>
- <Cell col="3" text="상태"/>
- <Cell col="4" text="수술방"/>
- <Cell col="5" text="입실"/>
- <Cell col="6" text="시작시간"/>
- <Cell col="7" text="종료시간"/>
- <Cell col="8" text="소요시간"/>
- <Cell col="9" text="진료과"/>
- <Cell col="10" text="집도과"/>
- <Cell col="11" text="등록번호"/>
- <Cell col="12" text="성명"/>
- <Cell col="13" text="환자명"/>
- <Cell col="14" text="S/A"/>
- <Cell col="15" text="수술명"/>
- <Cell col="16" text="진단명"/>
- <Cell col="17" text="병실"/>
- <Cell col="18" text="CP"/>
- <Cell col="19" text="DRG"/>
- <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="PreWork Up"/>
- <Cell col="28" text="BMT예정일"/>
- <Cell col="29" text="이식형태"/>
- <Cell col="30" text="BMT day"/>
- <Cell col="31" text="instcd"/>
- <Cell col="32" text="Post Cx Day"/>
- <Cell col="33" text="선택진료여부"/>
- <Cell col="34" text="PCA"/>
- <Cell col="35" text="키"/>
- <Cell col="36" text="몸무게"/>
- <Cell col="37" text="무통마취여부"/>
- <Cell col="38" text="퇴실"/>
- <Cell col="39" text="oprsrvno"/>
- <Cell col="40" text="ophistno"/>
- <Cell col="41" text="opcnfmdd"/>
- <Cell col="42" text="perfdeptcd"/>
- <Cell col="43" text="perfdrid"/>
- <Cell col="44" text="c-line"/>
- <Cell col="45" text="외상"/>
- <Cell col="46" text="혈액"/>
- <Cell col="47" text="접촉"/>
- <Cell col="48" text="공기"/>
- <Cell col="49" text="비말"/>
- <Cell col="50" text="환자분류1"/>
- <Cell col="51" text="환자분류2"/>
- <Cell col="52" text="마취 코멘트"/>
- <Cell col="53" text="마취계획"/>
- <Cell col="54" text="마취과 전달사항"/>
- </Band>
- <Band id="body">
- <Cell celltype="head" text="expr:currow + 1"/>
- <Cell col="1" text="bind:btype"/>
- <Cell col="2" text="bind:drginfo"/>
- <Cell col="3" text="bind:ioflag"/>
- <Cell col="4" text="bind:oproomnm"/>
- <Cell col="5" text="bind:patinroomdt"/>
- <Cell col="6" text="bind:opfromtmcd"/>
- <Cell col="7" text="bind:opendtmcd"/>
- <Cell col="8" text="bind:opusetm"/>
- <Cell col="9" text="bind:orddeptcd"/>
- <Cell col="10" text="bind:perfdeptnm"/>
- <Cell col="11" text="bind:pid"/>
- <Cell col="12" text="bind:hngnm"/>
- <Cell col="13" text="bind:dispnm2"/>
- <Cell col="14" text="bind:sa"/>
- <Cell col="15" text="bind:opnm"/>
- <Cell col="16" text="bind:diagnm"/>
- <Cell col="17" text="bind:roomcd"/>
- <Cell col="18" text="bind:cpflag"/>
- <Cell col="19" text="bind:drgyn"/>
- <Cell col="20" text="bind:anstreqflag"/>
- <Cell col="21" text="bind:anstdrnm"/>
- <Cell col="22" text="bind:opstatcd"/>
- <Cell col="23" text="bind:perfdrnm"/>
- <Cell col="24" text="bind:waittime"/>
- <Cell col="25" text="bind:conctypenm"/>
- <Cell col="26" text="bind:spclflag"/>
- <Cell col="27" text="bind:preworkup"/>
- <Cell col="28" text="bind:hsctpreday"/>
- <Cell col="29" text="bind:trsntype"/>
- <Cell col="30" text="bind:hsctday"/>
- <Cell col="31" text="bind:instcd"/>
- <Cell col="32" text="bind:postcxday"/>
- <Cell col="33" text="bind:specordtype"/>
- <Cell col="34" text="bind:pcaflag"/>
- <Cell col="35" text="bind:height"/>
- <Cell col="36" text="bind:weight"/>
- <Cell col="37" text="bind:painlessflag"/>
- <Cell col="38" text="bind:patoutroomdt"/>
- <Cell col="39" text="bind:oprsrvno"/>
- <Cell col="40" text="bind:ophistno"/>
- <Cell col="41" text="bind:opcnfmdd"/>
- <Cell col="42" text="bind:perfdeptcd"/>
- <Cell col="43" text="bind:perfdrid"/>
- <Cell col="44" text="bind:veininfo"/>
- <Cell col="45" text="bind:trpatyn"/>
- <Cell col="46" text="bind:disp1img"/>
- <Cell col="47" text="bind:disp2img"/>
- <Cell col="48" text="bind:disp3img"/>
- <Cell col="49" text="bind:disp3img"/>
- <Cell col="50" text="bind:anstclassify1"/>
- <Cell col="51" text="bind:anstclassify2"/>
- <Cell col="52" style="align:left top;" text="bind:anstcmt"/>
- <Cell col="53" style="align:left top;" text="bind:anstplan"/>
- <Cell col="54" style="align:left top;" text="bind:anstdelivefact"/>
- </Band>
- </Format>
- </Formats>
- </Grid>
- </Layout>
- </Layouts>
- </Tabpage>
- <Tabpage id="srch" text="환자검색">
- <Layouts>
- <Layout>
- <Grid id="grd_srchpatlist_basic" taborder="1" useinputpanel="false" position="absolute 3 30 1127 97" anchor="left top right" binddataset="ds_basicSrch" selecttype="multiarea">
- <Formats>
- <Format id="default">
- <Columns>
- <Column size="20"/>
- <Column size="0"/>
- <Column size="0"/>
- <Column size="0"/>
- <Column size="0"/>
- <Column size="0"/>
- <Column size="0"/>
- <Column size="65"/>
- <Column size="0"/>
- <Column size="100"/>
- <Column size="45"/>
- <Column size="85"/>
- <Column size="100"/>
- <Column size="95"/>
- <Column size="0"/>
- <Column size="55"/>
- <Column size="55"/>
- <Column size="200"/>
- <Column size="70"/>
- <Column size="60"/>
- <Column size="55"/>
- <Column size="65"/>
- <Column size="65"/>
- <Column size="35"/>
- <Column size="70"/>
- <Column size="0"/>
- <Column size="0"/>
- <Column size="0"/>
- <Column size="0"/>
- </Columns>
- <Rows>
- <Row size="24" band="head"/>
- <Row size="24"/>
- </Rows>
- <Band id="head">
- <Cell/>
- <Cell col="1" text="caption1"/>
- <Cell col="2" text="caption2"/>
- <Cell col="3" text="caption3"/>
- <Cell col="4" text="caption4"/>
- <Cell col="5" text="caption5"/>
- <Cell col="6" text="caption7"/>
- <Cell col="7" text="등록번호"/>
- <Cell col="8" text="성명"/>
- <Cell col="9" text="환자명"/>
- <Cell col="10" text="S/A"/>
- <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="PreWork Up"/>
- <Cell col="25" text="BMT예정일"/>
- <Cell col="26" text="이식형태"/>
- <Cell col="27" text="BMT Day"/>
- <Cell col="28" text="Post Cx Day"/>
- </Band>
- <Band id="body">
- <Cell celltype="head" text="expr:currow + 1"/>
- <Cell col="1" text="bind:cretno"/>
- <Cell col="2" text="bind:ioflag"/>
- <Cell col="3" text="bind:instcd"/>
- <Cell col="4" text="bind:ordtype"/>
- <Cell col="5" text="bind:rrgstno1"/>
- <Cell col="6" text="bind:orddrid"/>
- <Cell col="7" text="bind:pid"/>
- <Cell col="8" text="bind:hngnm"/>
- <Cell col="9" text="bind:dispnm2"/>
- <Cell col="10" text="bind:sa"/>
- <Cell col="11" text="bind:orddd"/>
- <Cell col="12" text="bind:centcd"/>
- <Cell col="13" text="bind:orddeptcd"/>
- <Cell col="14" text="bind:subdeptcd"/>
- <Cell col="15" text="bind:orddrnm"/>
- <Cell col="16" text="bind:roomcd"/>
- <Cell col="17" text="bind:diagnm"/>
- <Cell col="18" text="bind:insukind"/>
- <Cell col="19" text="bind:rsrv"/>
- <Cell col="20" text="bind:cnst"/>
- <Cell col="21" text="bind:stat"/>
- <Cell col="22" text="bind:conctypenm"/>
- <Cell col="23" text="bind:spclflag"/>
- <Cell col="24" text="bind:preworkup"/>
- <Cell col="25" text="bind:hsctpredd"/>
- <Cell col="26" text="bind:trnpttype"/>
- <Cell col="27" text="bind:hsctday"/>
- <Cell col="28" text="bind:postcxday"/>
- </Band>
- </Format>
- </Formats>
- </Grid>
- <Grid id="grd_srchpatlist" taborder="2" useinputpanel="false" position="absolute 3 132 1127 199" anchor="left top right" binddataset="ds_AllSrch" selecttype="multiarea" onrbuttondown="Tab00_grd_onrbuttondown" selectbandtype="default" ondrag="Tab00_grd_ondrag" ondragmove="Tab00_grd_ondragmove" cellsizingtype="col">
- <Formats>
- <Format id="default">
- <Columns>
- <Column size="20"/>
- <Column size="0"/>
- <Column size="0"/>
- <Column size="0"/>
- <Column size="0"/>
- <Column size="0"/>
- <Column size="0"/>
- <Column size="65"/>
- <Column size="0"/>
- <Column size="100"/>
- <Column size="45"/>
- <Column size="85"/>
- <Column size="100"/>
- <Column size="95"/>
- <Column size="0"/>
- <Column size="55"/>
- <Column size="55"/>
- <Column size="200"/>
- <Column size="70"/>
- <Column size="60"/>
- <Column size="55"/>
- <Column size="65"/>
- <Column size="65"/>
- <Column size="35"/>
- <Column size="70"/>
- <Column size="0"/>
- <Column size="0"/>
- <Column size="0"/>
- <Column size="0"/>
- </Columns>
- <Rows>
- <Row size="24" band="head"/>
- <Row size="24"/>
- </Rows>
- <Band id="head">
- <Cell/>
- <Cell col="1" text="caption1"/>
- <Cell col="2" text="caption2"/>
- <Cell col="3" text="caption3"/>
- <Cell col="4" text="caption4"/>
- <Cell col="5" text="caption5"/>
- <Cell col="6" text="caption7"/>
- <Cell col="7" text="등록번호"/>
- <Cell col="8" text="성명"/>
- <Cell col="9" text="환자명"/>
- <Cell col="10" text="S/A"/>
- <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="PreWork Up"/>
- <Cell col="25" text="BMT예정일"/>
- <Cell col="26" text="이식형태"/>
- <Cell col="27" text="BMT Day"/>
- <Cell col="28" text="Post Cx Day"/>
- </Band>
- <Band id="body">
- <Cell celltype="head" text="expr:currow + 1"/>
- <Cell col="1" text="bind:cretno"/>
- <Cell col="2" text="bind:ioflag"/>
- <Cell col="3" text="bind:instcd"/>
- <Cell col="4" text="bind:ordtype"/>
- <Cell col="5" text="bind:rrgstno1"/>
- <Cell col="6" text="bind:orddrid"/>
- <Cell col="7" text="bind:pid"/>
- <Cell col="8" text="bind:hngnm"/>
- <Cell col="9" text="bind:dispnm2"/>
- <Cell col="10" text="bind:sa"/>
- <Cell col="11" text="bind:orddd"/>
- <Cell col="12" text="bind:centcd"/>
- <Cell col="13" text="bind:orddeptcd"/>
- <Cell col="14" text="bind:subdeptcd"/>
- <Cell col="15" text="bind:orddrnm"/>
- <Cell col="16" text="bind:roomcd"/>
- <Cell col="17" text="bind:diagnm"/>
- <Cell col="18" text="bind:insukind"/>
- <Cell col="19" text="bind:rsrv"/>
- <Cell col="20" text="bind:cnst"/>
- <Cell col="21" text="bind:stat"/>
- <Cell col="22" text="bind:conctypenm"/>
- <Cell col="23" text="bind:spclflag"/>
- <Cell col="24" text="bind:preworkup"/>
- <Cell col="25" text="bind:hsctpredd"/>
- <Cell col="26" text="bind:trnpttype"/>
- <Cell col="27" text="bind:hsctday"/>
- <Cell col="28" text="bind:postcxday"/>
- </Band>
- </Format>
- </Formats>
- </Grid>
- <Grid id="grd_srchpatlist_resize" taborder="3" useinputpanel="false" position="absolute 3 234 1127 301" anchor="left top right" binddataset="ds_ResizeSrch" selecttype="multiarea" onrbuttondown="Tab00_grd_resize_onrbuttondown" cellmovingtype="col" cellsizingtype="col" dragscrolltype="both" ondrop="Tab00_grd_resize_ondrop" ondragmove="Tab00_grd_resize_ondragmove">
- <Formats>
- <Format id="default">
- <Columns>
- <Column size="20"/>
- <Column size="0"/>
- <Column size="0"/>
- <Column size="0"/>
- <Column size="0"/>
- <Column size="0"/>
- <Column size="0"/>
- <Column size="65"/>
- <Column size="0"/>
- <Column size="100"/>
- <Column size="45"/>
- <Column size="85"/>
- <Column size="100"/>
- <Column size="95"/>
- <Column size="0"/>
- <Column size="55"/>
- <Column size="55"/>
- <Column size="200"/>
- <Column size="70"/>
- <Column size="60"/>
- <Column size="55"/>
- <Column size="65"/>
- <Column size="65"/>
- <Column size="35"/>
- <Column size="70"/>
- <Column size="0"/>
- <Column size="0"/>
- <Column size="0"/>
- <Column size="0"/>
- </Columns>
- <Rows>
- <Row size="24" band="head"/>
- <Row size="24"/>
- </Rows>
- <Band id="head">
- <Cell/>
- <Cell col="1" text="caption1"/>
- <Cell col="2" text="caption2"/>
- <Cell col="3" text="caption3"/>
- <Cell col="4" text="caption4"/>
- <Cell col="5" text="caption5"/>
- <Cell col="6" text="caption7"/>
- <Cell col="7" text="등록번호"/>
- <Cell col="8" text="성명"/>
- <Cell col="9" text="환자명"/>
- <Cell col="10" text="S/A"/>
- <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="PreWork Up"/>
- <Cell col="25" text="BMT예정일"/>
- <Cell col="26" text="이식형태"/>
- <Cell col="27" text="BMT Day"/>
- <Cell col="28" text="Post Cx Day"/>
- </Band>
- <Band id="body">
- <Cell celltype="head" text="expr:currow + 1"/>
- <Cell col="1" text="bind:cretno"/>
- <Cell col="2" text="bind:ioflag"/>
- <Cell col="3" text="bind:instcd"/>
- <Cell col="4" text="bind:ordtype"/>
- <Cell col="5" text="bind:rrgstno1"/>
- <Cell col="6" text="bind:orddrid"/>
- <Cell col="7" text="bind:pid"/>
- <Cell col="8" text="bind:hngnm"/>
- <Cell col="9" text="bind:dispnm2"/>
- <Cell col="10" text="bind:sa"/>
- <Cell col="11" text="bind:orddd"/>
- <Cell col="12" text="bind:centcd"/>
- <Cell col="13" text="bind:orddeptcd"/>
- <Cell col="14" text="bind:subdeptcd"/>
- <Cell col="15" text="bind:orddrnm"/>
- <Cell col="16" text="bind:roomcd"/>
- <Cell col="17" text="bind:diagnm"/>
- <Cell col="18" text="bind:insukind"/>
- <Cell col="19" text="bind:rsrv"/>
- <Cell col="20" text="bind:cnst"/>
- <Cell col="21" text="bind:stat"/>
- <Cell col="22" text="bind:conctypenm"/>
- <Cell col="23" text="bind:spclflag"/>
- <Cell col="24" text="bind:preworkup"/>
- <Cell col="25" text="bind:hsctpredd"/>
- <Cell col="26" text="bind:trnpttype"/>
- <Cell col="27" text="bind:hsctday"/>
- <Cell col="28" text="bind:postcxday"/>
- </Band>
- </Format>
- </Formats>
- </Grid>
- </Layout>
- </Layouts>
- </Tabpage>
- <Tabpage id="cnst" text="의뢰">
- <Layouts>
- <Layout>
- <Grid id="grd_cnstpatlist_basic" taborder="0" binddataset="ds_basicCnst" useinputpanel="false" selecttype="multiarea" position="absolute 3 30 1127 97" anchor="left top right">
- <Formats>
- <Format id="default">
- <Columns>
- <Column size="20"/>
- <Column size="45"/>
- <Column size="75"/>
- <Column size="0"/>
- <Column size="100"/>
- <Column size="45"/>
- <Column size="60"/>
- <Column size="131"/>
- <Column size="110"/>
- <Column size="50"/>
- <Column size="60"/>
- <Column size="110"/>
- <Column size="285"/>
- <Column size="60"/>
- <Column size="0"/>
- <Column size="0"/>
- <Column size="0"/>
- <Column size="0"/>
- <Column size="0"/>
- <Column size="0"/>
- </Columns>
- <Rows>
- <Row size="24" band="head"/>
- <Row size="24"/>
- </Rows>
- <Band id="head">
- <Cell/>
- <Cell col="1" text="응급"/>
- <Cell col="2" text="등록번호"/>
- <Cell col="3" text="성명"/>
- <Cell col="4" text="환자명"/>
- <Cell col="5" text="S/A"/>
- <Cell col="6" text="의뢰의사"/>
- <Cell col="7" text="의뢰과"/>
- <Cell col="8" text="의뢰일시"/>
- <Cell col="9" text="병실"/>
- <Cell col="10" text="회신여부"/>
- <Cell col="11" text="회신일시"/>
- <Cell col="12" text="진단명"/>
- <Cell col="13" text="회신의사"/>
- <Cell col="14" text="formrecseq"/>
- <Cell col="15" text="acptorddd"/>
- <Cell col="16" text="acptcretno"/>
- <Cell col="17" text="orddd"/>
- <Cell col="18" text="cretno"/>
- <Cell col="19" text="ioflag"/>
- </Band>
- <Band id="body">
- <Cell celltype="head" text="expr:currow + 1"/>
- <Cell col="1" text="bind:eryn"/>
- <Cell col="2" text="bind:pid"/>
- <Cell col="3" text="bind:hngnm"/>
- <Cell col="4" text="bind:dispnm2"/>
- <Cell col="5" text="bind:sa"/>
- <Cell col="6" text="bind:requsernm"/>
- <Cell col="7" text="bind:reqdeptnm"/>
- <Cell col="8" text="bind:reqdt"/>
- <Cell col="9" text="bind:roomcd"/>
- <Cell col="10" text="bind:replyn"/>
- <Cell col="11" text="bind:recvtm"/>
- <Cell col="12" text="bind:termengnm"/>
- <Cell col="13" text="bind:recvusernm"/>
- <Cell col="14" text="bind:formrecseq"/>
- <Cell col="15" text="bind:acptorddd"/>
- <Cell col="16" text="bind:acptcretno"/>
- <Cell col="17" text="bind:orddd"/>
- <Cell col="18" text="bind:cretno"/>
- <Cell col="19" text="bind:ioflag"/>
- </Band>
- </Format>
- </Formats>
- </Grid>
- <Grid id="grd_cnstpatlist" taborder="1" binddataset="ds_AllCnst" useinputpanel="false" selecttype="multiarea" onrbuttondown="Tab00_grd_onrbuttondown" ondrag="Tab00_grd_ondrag" ondragmove="Tab00_grd_ondragmove" position="absolute 3 132 1127 199" anchor="left top right" cellsizingtype="col">
- <Formats>
- <Format id="default">
- <Columns>
- <Column size="20"/>
- <Column size="45"/>
- <Column size="75"/>
- <Column size="0"/>
- <Column size="100"/>
- <Column size="45"/>
- <Column size="60"/>
- <Column size="131"/>
- <Column size="110"/>
- <Column size="50"/>
- <Column size="60"/>
- <Column size="110"/>
- <Column size="285"/>
- <Column size="60"/>
- <Column size="0"/>
- <Column size="0"/>
- <Column size="0"/>
- <Column size="0"/>
- <Column size="0"/>
- <Column size="0"/>
- </Columns>
- <Rows>
- <Row size="24" band="head"/>
- <Row size="24"/>
- </Rows>
- <Band id="head">
- <Cell/>
- <Cell col="1" text="응급"/>
- <Cell col="2" text="등록번호"/>
- <Cell col="3" text="성명"/>
- <Cell col="4" text="환자명"/>
- <Cell col="5" text="S/A"/>
- <Cell col="6" text="의뢰의사"/>
- <Cell col="7" text="의뢰과"/>
- <Cell col="8" text="의뢰일시"/>
- <Cell col="9" text="병실"/>
- <Cell col="10" text="회신여부"/>
- <Cell col="11" text="회신일시"/>
- <Cell col="12" text="진단명"/>
- <Cell col="13" text="회신의사"/>
- <Cell col="14" text="formrecseq"/>
- <Cell col="15" text="acptorddd"/>
- <Cell col="16" text="acptcretno"/>
- <Cell col="17" text="orddd"/>
- <Cell col="18" text="cretno"/>
- <Cell col="19" text="ioflag"/>
- </Band>
- <Band id="body">
- <Cell celltype="head" text="expr:currow + 1"/>
- <Cell col="1" text="bind:eryn"/>
- <Cell col="2" text="bind:pid"/>
- <Cell col="3" text="bind:hngnm"/>
- <Cell col="4" text="bind:dispnm2"/>
- <Cell col="5" text="bind:sa"/>
- <Cell col="6" text="bind:requsernm"/>
- <Cell col="7" text="bind:reqdeptnm"/>
- <Cell col="8" text="bind:reqdt"/>
- <Cell col="9" text="bind:roomcd"/>
- <Cell col="10" text="bind:replyn"/>
- <Cell col="11" text="bind:recvtm"/>
- <Cell col="12" text="bind:termengnm"/>
- <Cell col="13" text="bind:recvusernm"/>
- <Cell col="14" text="bind:formrecseq"/>
- <Cell col="15" text="bind:acptorddd"/>
- <Cell col="16" text="bind:acptcretno"/>
- <Cell col="17" text="bind:orddd"/>
- <Cell col="18" text="bind:cretno"/>
- <Cell col="19" text="bind:ioflag"/>
- </Band>
- </Format>
- </Formats>
- </Grid>
- <Grid id="grd_cnstpatlist_resize" taborder="2" binddataset="ds_ResizeCnst" useinputpanel="false" selecttype="multiarea" cellsizingtype="col" cellmovingtype="col" onrbuttondown="Tab00_grd_resize_onrbuttondown" ondragmove="Tab00_grd_resize_ondragmove" ondrop="Tab00_grd_resize_ondrop" position="absolute 3 234 1127 301" anchor="left top right">
- <Formats>
- <Format id="default">
- <Columns>
- <Column size="20"/>
- <Column size="45"/>
- <Column size="75"/>
- <Column size="0"/>
- <Column size="100"/>
- <Column size="45"/>
- <Column size="60"/>
- <Column size="131"/>
- <Column size="110"/>
- <Column size="50"/>
- <Column size="60"/>
- <Column size="110"/>
- <Column size="285"/>
- <Column size="60"/>
- <Column size="0"/>
- <Column size="0"/>
- <Column size="0"/>
- <Column size="0"/>
- <Column size="0"/>
- <Column size="0"/>
- </Columns>
- <Rows>
- <Row size="24" band="head"/>
- <Row size="24"/>
- </Rows>
- <Band id="head">
- <Cell/>
- <Cell col="1" text="응급"/>
- <Cell col="2" text="등록번호"/>
- <Cell col="3" text="성명"/>
- <Cell col="4" text="환자명"/>
- <Cell col="5" text="S/A"/>
- <Cell col="6" text="의뢰의사"/>
- <Cell col="7" text="의뢰과"/>
- <Cell col="8" text="의뢰일시"/>
- <Cell col="9" text="병실"/>
- <Cell col="10" text="회신여부"/>
- <Cell col="11" text="회신일시"/>
- <Cell col="12" text="진단명"/>
- <Cell col="13" text="회신의사"/>
- <Cell col="14" text="formrecseq"/>
- <Cell col="15" text="acptorddd"/>
- <Cell col="16" text="acptcretno"/>
- <Cell col="17" text="orddd"/>
- <Cell col="18" text="cretno"/>
- <Cell col="19" text="ioflag"/>
- </Band>
- <Band id="body">
- <Cell celltype="head" text="expr:currow + 1"/>
- <Cell col="1" text="bind:eryn"/>
- <Cell col="2" text="bind:pid"/>
- <Cell col="3" text="bind:hngnm"/>
- <Cell col="4" text="bind:dispnm2"/>
- <Cell col="5" text="bind:sa"/>
- <Cell col="6" text="bind:requsernm"/>
- <Cell col="7" text="bind:reqdeptnm"/>
- <Cell col="8" text="bind:reqdt"/>
- <Cell col="9" text="bind:roomcd"/>
- <Cell col="10" text="bind:replyn"/>
- <Cell col="11" text="bind:recvtm"/>
- <Cell col="12" text="bind:termengnm"/>
- <Cell col="13" text="bind:recvusernm"/>
- <Cell col="14" text="bind:formrecseq"/>
- <Cell col="15" text="bind:acptorddd"/>
- <Cell col="16" text="bind:acptcretno"/>
- <Cell col="17" text="bind:orddd"/>
- <Cell col="18" text="bind:cretno"/>
- <Cell col="19" text="bind:ioflag"/>
- </Band>
- </Format>
- </Formats>
- </Grid>
- </Layout>
- </Layouts>
- </Tabpage>
- </Tabpages>
- </Tab>
- <Static id="Static00" text="기본설정" position="absolute 5 37 85 57" class="tit_2"/>
- <Static id="Static01" text="전체설정" class="tit_2" position="absolute 5 138 85 158"/>
- <Static id="Static02" text="컬럼추가(먼저 데이터영역을 선택한 후 마우스 오른쪽 버튼을 눌러 컬럼추가 또는 사용자 설정으로 마우스 드레그)가 가능 합니다." position="absolute 130 138 840 158"/>
- <Static id="Static03" text="사용자설정" class="tit_2" position="absolute 5 239 101 259"/>
- <Static id="Static04" text="컬럼삭제, 컬럼고정(데이터 영역에서 마우스 오른쪽버튼), 컬럼 순서변경(원하는 위치로 제목 드레그), 컬럼 사이즈변경(컬럼 사이의 분리선 드레그)이 가능 합니다." position="absolute 130 239 1024 259"/>
- <Button id="Button00" taborder="1" text="전체설정" position="absolute 832 341 912 361" class="btn4" anchor="right bottom" onclick="Button00_onclick"/>
- <Button id="Button01" taborder="2" text="기본설정" class="btn4" position="absolute 916 341 996 361" anchor="right bottom" onclick="Button01_onclick"/>
- <Button id="Button02" taborder="3" text="저장" class="btn4" position="absolute 1000 341 1056 361" anchor="right bottom" onclick="Button02_onclick"/>
- <Button id="Button03" taborder="4" text="취소" class="btn3" position="absolute 1060 341 1116 361" anchor="right bottom" onclick="Button03_onclick"/>
- <Static id="Static05" text="컬럼고정 기능은 왼쪽부터 ☜ 표시 된 컬럼까지 고정 됩니다." position="absolute 122 347 492 367" anchor="right bottom"/>
- <PopupMenu id="pmn_menu1" position="absolute 1144 159 1212 185" innerdataset="@ds_menu1" idcolumn="hardcd" captioncolumn="hardcdnm" levelcolumn="level" onmenuclick="pmn_menu1_onmenuclick"/>
- <PopupMenu id="pmn_menu2" position="absolute 1144 262 1232 330" innerdataset="@ds_menu2" idcolumn="hardcd" levelcolumn="level" captioncolumn="hardcdnm" onmenuclick="pmn_menu2_onmenuclick"/>
- </Layout>
- </Layouts>
- <Objects>
- <Dataset id="ds_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"/>
- </ColumnInfo>
- <Rows>
- <Row>
- <Col id="scrnid"/>
- <Col id="grdid"/>
- <Col id="caseid"/>
- </Row>
- </Rows>
- </Dataset>
- <Dataset id="ds_reqBasic" firefirstcount="0" firenextcount="0" useclientlayout="false" updatecontrol="true" enableevent="true" loadkeymode="keep" loadfiltermode="keep" reversesubsum="false">
- <ColumnInfo>
- <Column id="scrnid" type="STRING" size="256" sumtext="화면ID"/>
- <Column id="compscd" type="STRING" size="256" sumtext="화면ID"/>
- <Column id="userid" type="STRING" size="256" sumtext="사용자ID"/>
- </ColumnInfo>
- </Dataset>
- <Dataset id="ds_gridseqBasic" firefirstcount="0" firenextcount="0" useclientlayout="false" updatecontrol="true" enableevent="true" loadkeymode="keep" loadfiltermode="keep" reversesubsum="false">
- <ColumnInfo>
- <Column id="compscd" type="STRING" size="256" sumtext="구성코드"/>
- <Column id="compscnts" type="STRING" size="256" sumtext="구성내용"/>
- <Column id="frozencol" type="STRING" size="256" sumtext="컬럼고정필드명"/>
- <Column id="compsrefcnts" type="STRING" size="256" sumtext="구성참조내용"/>
- <Column id="compssizecnts" type="STRING" size="256" sumtext="구성크기내용"/>
- </ColumnInfo>
- </Dataset>
- <Dataset id="ds_reqResize" firefirstcount="0" firenextcount="0" useclientlayout="false" updatecontrol="true" enableevent="true" loadkeymode="keep" loadfiltermode="keep" reversesubsum="false">
- <ColumnInfo>
- <Column id="scrnid" type="STRING" size="256" sumtext="화면ID"/>
- <Column id="compscd" type="STRING" size="256" sumtext="화면ID"/>
- <Column id="userid" type="STRING" size="256" sumtext="사용자ID"/>
- </ColumnInfo>
- </Dataset>
- <Dataset id="ds_gridseqResize" firefirstcount="0" firenextcount="0" useclientlayout="false" updatecontrol="true" enableevent="true" loadkeymode="keep" loadfiltermode="keep" reversesubsum="false">
- <ColumnInfo>
- <Column id="compscd" type="STRING" size="256" sumtext="구성코드"/>
- <Column id="compscnts" type="STRING" size="256" sumtext="구성내용"/>
- <Column id="frozencol" type="STRING" size="256" sumtext="컬럼고정필드명"/>
- <Column id="compsrefcnts" type="STRING" size="256" sumtext="구성참조내용"/>
- <Column id="compssizecnts" type="STRING" size="256" sumtext="구성크기내용"/>
- </ColumnInfo>
- </Dataset>
- <Dataset id="ds_menu1" firefirstcount="0" firenextcount="0" useclientlayout="false" updatecontrol="true" enableevent="true" loadkeymode="keep" loadfiltermode="keep" reversesubsum="false">
- <ColumnInfo>
- <Column id="hardcd" type="STRING" size="256"/>
- <Column id="hardcdnm" type="STRING" size="256"/>
- <Column id="level" type="STRING" size="256"/>
- </ColumnInfo>
- <Rows>
- <Row>
- <Col id="hardcd">fAddColOfGrd</Col>
- <Col id="hardcdnm">컬럼 추가</Col>
- <Col id="level">0</Col>
- </Row>
- </Rows>
- </Dataset>
- <Dataset id="ds_menu2" firefirstcount="0" firenextcount="0" useclientlayout="false" updatecontrol="true" enableevent="true" loadkeymode="keep" loadfiltermode="keep" reversesubsum="false">
- <ColumnInfo>
- <Column id="hardcd" type="STRING" size="256"/>
- <Column id="hardcdnm" type="STRING" size="256"/>
- <Column id="level" type="STRING" size="256"/>
- </ColumnInfo>
- <Rows>
- <Row>
- <Col id="hardcd">fDelColOfGrd</Col>
- <Col id="hardcdnm">컬럼 삭제</Col>
- <Col id="level">0</Col>
- </Row>
- <Row>
- <Col id="hardcdnm">-</Col>
- <Col id="level">0</Col>
- <Col id="hardcd"/>
- </Row>
- <Row>
- <Col id="hardcdnm">컬럼고정 설정</Col>
- <Col id="hardcd">fSetFrozenColOfGrd</Col>
- <Col id="level">0</Col>
- </Row>
- <Row>
- <Col id="hardcdnm">컬럼고정 취소</Col>
- <Col id="hardcd">fCancelFrozenColOfGrd</Col>
- <Col id="level">0</Col>
- </Row>
- </Rows>
- </Dataset>
- <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"/>
- <Column id="frozencol" type="STRING" size="256"/>
- </ColumnInfo>
- <Rows>
- <Row/>
- </Rows>
- </Dataset>
- <Dataset id="ds_savedata" firefirstcount="0" firenextcount="0" useclientlayout="false" updatecontrol="true" enableevent="true" loadkeymode="keep" loadfiltermode="keep" reversesubsum="false">
- <ColumnInfo>
- <Column id="compscd" type="STRING" size="256" sumtext="구성코드"/>
- <Column id="compscnts" type="STRING" size="256" sumtext="구성내용"/>
- <Column id="compsrefcnts" type="STRING" size="256" sumtext="구성참조내용"/>
- <Column id="compssizecnts" type="STRING" size="256" sumtext="구성크기내용"/>
- <Column id="scrnid" type="STRING" size="256" sumtext="화면ID"/>
- <Column id="frozencol" type="STRING" size="256" sumtext="고정컬럼"/>
- </ColumnInfo>
- </Dataset>
- <Dataset id="ds_basicOut" firefirstcount="0" firenextcount="0" useclientlayout="false" updatecontrol="true" enableevent="true" loadkeymode="keep" loadfiltermode="keep" reversesubsum="false">
- <ColumnInfo>
- <Column id="elbulbodstat" type="STRING" size="256"/>
- <Column id="ordtm" type="STRING" size="256"/>
- <Column id="hngnm" type="STRING" size="256"/>
- <Column id="pid" type="STRING" size="256"/>
- <Column id="sexage" type="STRING" size="256"/>
- <Column id="refer" type="STRING" size="256"/>
- <Column id="replstat" type="STRING" size="256"/>
- <Column id="centcd" type="STRING" size="256"/>
- <Column id="subdeptcd" type="STRING" size="256"/>
- <Column id="orddrnm" type="STRING" size="256"/>
- <Column id="fsexamflag" type="STRING" size="256"/>
- <Column id="diagnm" type="STRING" size="256"/>
- <Column id="recentdiagnm" type="STRING" size="256"/>
- <Column id="anodeptyn" type="STRING" size="256"/>
- <Column id="spclflag" type="STRING" size="256"/>
- <Column id="testrslt" type="STRING" size="256"/>
- <Column id="rsrvflag" type="STRING" size="256"/>
- <Column id="etcordflag" type="STRING" size="256"/>
- <Column id="serdiag" type="STRING" size="256"/>
- <Column id="insukind" type="STRING" size="256"/>
- <Column id="prcptdayaftrcptyn" type="STRING" size="256"/>
- <Column id="preexamyn" type="STRING" size="256"/>
- <Column id="rsrvordtm" type="STRING" size="256"/>
- <Column id="nursacptdt" type="STRING" size="256"/>
- <Column id="ordstartdt" type="STRING" size="256"/>
- <Column id="dracptdt" type="STRING" size="256"/>
- <Column id="trsmrem" type="STRING" size="256"/>
- <Column id="conctypenm" type="STRING" size="256"/>
- <Column id="antidrugflag" type="STRING" size="256"/>
- <Column id="coordflag" type="STRING" size="256"/>
- <Column id="cpyn" type="STRING" size="256"/>
- <Column id="onestop" type="STRING" size="256"/>
- <Column id="dnoracptyn" type="STRING" size="256"/>
- <Column id="preworkup" type="STRING" size="256"/>
- <Column id="hsctpreday" type="STRING" size="256"/>
- <Column id="transtype" type="STRING" size="256"/>
- <Column id="hsctday" type="STRING" size="256"/>
- <Column id="postcxday" type="STRING" size="256"/>
- <Column id="bfjudgvalue" type="STRING" size="256"/>
- <Column id="specordtype" type="STRING" size="256"/>
- <Column id="ordstate" type="STRING" size="256"/>
- <Column id="patmemo" type="STRING" size="4000" sumtext="환자메모"/>
- <Column id="orddd" type="STRING" size="256"/>
- <Column id="cretno" type="STRING" size="256"/>
- <Column id="instcd" type="STRING" size="256"/>
- <Column id="acptseqno" type="STRING" size="256"/>
- <Column id="orgorddd" type="STRING" size="256"/>
- <Column id="repltype" type="STRING" size="256"/>
- <Column id="rcptvipresncd" type="STRING" size="256"/>
- <Column id="rcptvipetcresn" type="STRING" size="256"/>
- <Column id="medamtpostyn" type="STRING" size="256"/>
- <Column id="civilap" type="STRING" size="256"/>
- <Column id="color" type="STRING" size="256"/>
- <Column id="orddrid" type="STRING" size="256"/>
- <Column id="centcode" type="STRING" size="256"/>
- <Column id="multiord" type="STRING" size="256"/>
- <Column id="pod" type="STRING" size="256"/>
- <Column id="prcprgstnm" type="STRING" size="256" sumtext="처방의"/>
- <Column id="btype" type="STRING" size="256" sumtext="혈액형"/>
- <Column id="recipient" type="STRING" size="256" sumtext="수혜자"/>
- <Column id="drginfo" type="STRING" size="256" sumtext="질병군분류"/>
- </ColumnInfo>
- <Rows>
- <Row/>
- </Rows>
- </Dataset>
- <Dataset id="ds_AllOut" firefirstcount="0" firenextcount="0" useclientlayout="false" updatecontrol="true" enableevent="true" loadkeymode="keep" loadfiltermode="keep" reversesubsum="false">
- <ColumnInfo>
- <Column id="elbulbodstat" type="STRING" size="256"/>
- <Column id="ordtm" type="STRING" size="256"/>
- <Column id="hngnm" type="STRING" size="256"/>
- <Column id="pid" type="STRING" size="256"/>
- <Column id="sexage" type="STRING" size="256"/>
- <Column id="refer" type="STRING" size="256"/>
- <Column id="replstat" type="STRING" size="256"/>
- <Column id="centcd" type="STRING" size="256"/>
- <Column id="subdeptcd" type="STRING" size="256"/>
- <Column id="orddrnm" type="STRING" size="256"/>
- <Column id="fsexamflag" type="STRING" size="256"/>
- <Column id="diagnm" type="STRING" size="256"/>
- <Column id="recentdiagnm" type="STRING" size="256"/>
- <Column id="anodeptyn" type="STRING" size="256"/>
- <Column id="spclflag" type="STRING" size="256"/>
- <Column id="testrslt" type="STRING" size="256"/>
- <Column id="rsrvflag" type="STRING" size="256"/>
- <Column id="etcordflag" type="STRING" size="256"/>
- <Column id="serdiag" type="STRING" size="256"/>
- <Column id="insukind" type="STRING" size="256"/>
- <Column id="prcptdayaftrcptyn" type="STRING" size="256"/>
- <Column id="preexamyn" type="STRING" size="256"/>
- <Column id="rsrvordtm" type="STRING" size="256"/>
- <Column id="nursacptdt" type="STRING" size="256"/>
- <Column id="ordstartdt" type="STRING" size="256"/>
- <Column id="dracptdt" type="STRING" size="256"/>
- <Column id="trsmrem" type="STRING" size="256"/>
- <Column id="conctypenm" type="STRING" size="256"/>
- <Column id="antidrugflag" type="STRING" size="256"/>
- <Column id="coordflag" type="STRING" size="256"/>
- <Column id="cpyn" type="STRING" size="256"/>
- <Column id="onestop" type="STRING" size="256"/>
- <Column id="dnoracptyn" type="STRING" size="256"/>
- <Column id="preworkup" type="STRING" size="256"/>
- <Column id="hsctpreday" type="STRING" size="256"/>
- <Column id="transtype" type="STRING" size="256"/>
- <Column id="hsctday" type="STRING" size="256"/>
- <Column id="postcxday" type="STRING" size="256"/>
- <Column id="bfjudgvalue" type="STRING" size="256"/>
- <Column id="specordtype" type="STRING" size="256"/>
- <Column id="ordstate" type="STRING" size="256"/>
- <Column id="patmemo" type="STRING" size="4000" sumtext="환자메모"/>
- <Column id="orddd" type="STRING" size="256"/>
- <Column id="cretno" type="STRING" size="256"/>
- <Column id="instcd" type="STRING" size="256"/>
- <Column id="acptseqno" type="STRING" size="256"/>
- <Column id="orgorddd" type="STRING" size="256"/>
- <Column id="repltype" type="STRING" size="256"/>
- <Column id="rcptvipresncd" type="STRING" size="256"/>
- <Column id="rcptvipetcresn" type="STRING" size="256"/>
- <Column id="medamtpostyn" type="STRING" size="256"/>
- <Column id="civilap" type="STRING" size="256"/>
- <Column id="color" type="STRING" size="256"/>
- <Column id="orddrid" type="STRING" size="256"/>
- <Column id="centcode" type="STRING" size="256"/>
- <Column id="multiord" type="STRING" size="256"/>
- <Column id="pod" type="STRING" size="256"/>
- <Column id="prcprgstnm" type="STRING" size="256" sumtext="처방의"/>
- <Column id="btype" type="STRING" size="256" sumtext="혈액형"/>
- <Column id="recipient" type="STRING" size="256" sumtext="수혜자"/>
- <Column id="outmisu" type="STRING" size="256"/>
- <Column id="handidentalimg" type="STRING" size="256"/>
- <Column id="drginfo" type="STRING" size="256" sumtext="질병군분류"/>
- </ColumnInfo>
- <Rows>
- <Row/>
- </Rows>
- </Dataset>
- <Dataset id="ds_ResizeOut" firefirstcount="0" firenextcount="0" useclientlayout="false" updatecontrol="true" enableevent="true" loadkeymode="keep" loadfiltermode="keep" reversesubsum="false">
- <ColumnInfo>
- <Column id="elbulbodstat" type="STRING" size="256"/>
- <Column id="ordtm" type="STRING" size="256"/>
- <Column id="hngnm" type="STRING" size="256"/>
- <Column id="pid" type="STRING" size="256"/>
- <Column id="sexage" type="STRING" size="256"/>
- <Column id="refer" type="STRING" size="256"/>
- <Column id="replstat" type="STRING" size="256"/>
- <Column id="centcd" type="STRING" size="256"/>
- <Column id="subdeptcd" type="STRING" size="256"/>
- <Column id="orddrnm" type="STRING" size="256"/>
- <Column id="fsexamflag" type="STRING" size="256"/>
- <Column id="diagnm" type="STRING" size="256"/>
- <Column id="recentdiagnm" type="STRING" size="256"/>
- <Column id="anodeptyn" type="STRING" size="256"/>
- <Column id="spclflag" type="STRING" size="256"/>
- <Column id="testrslt" type="STRING" size="256"/>
- <Column id="rsrvflag" type="STRING" size="256"/>
- <Column id="etcordflag" type="STRING" size="256"/>
- <Column id="serdiag" type="STRING" size="256"/>
- <Column id="insukind" type="STRING" size="256"/>
- <Column id="prcptdayaftrcptyn" type="STRING" size="256"/>
- <Column id="preexamyn" type="STRING" size="256"/>
- <Column id="rsrvordtm" type="STRING" size="256"/>
- <Column id="nursacptdt" type="STRING" size="256"/>
- <Column id="ordstartdt" type="STRING" size="256"/>
- <Column id="dracptdt" type="STRING" size="256"/>
- <Column id="trsmrem" type="STRING" size="256"/>
- <Column id="conctypenm" type="STRING" size="256"/>
- <Column id="antidrugflag" type="STRING" size="256"/>
- <Column id="coordflag" type="STRING" size="256"/>
- <Column id="cpyn" type="STRING" size="256"/>
- <Column id="onestop" type="STRING" size="256"/>
- <Column id="dnoracptyn" type="STRING" size="256"/>
- <Column id="preworkup" type="STRING" size="256"/>
- <Column id="hsctpreday" type="STRING" size="256"/>
- <Column id="transtype" type="STRING" size="256"/>
- <Column id="hsctday" type="STRING" size="256"/>
- <Column id="postcxday" type="STRING" size="256"/>
- <Column id="bfjudgvalue" type="STRING" size="256"/>
- <Column id="specordtype" type="STRING" size="256"/>
- <Column id="ordstate" type="STRING" size="256"/>
- <Column id="patmemo" type="STRING" size="4000" sumtext="환자메모"/>
- <Column id="orddd" type="STRING" size="256"/>
- <Column id="cretno" type="STRING" size="256"/>
- <Column id="instcd" type="STRING" size="256"/>
- <Column id="acptseqno" type="STRING" size="256"/>
- <Column id="orgorddd" type="STRING" size="256"/>
- <Column id="repltype" type="STRING" size="256"/>
- <Column id="rcptvipresncd" type="STRING" size="256"/>
- <Column id="rcptvipetcresn" type="STRING" size="256"/>
- <Column id="medamtpostyn" type="STRING" size="256"/>
- <Column id="civilap" type="STRING" size="256"/>
- <Column id="color" type="STRING" size="256"/>
- <Column id="orddrid" type="STRING" size="256"/>
- <Column id="centcode" type="STRING" size="256"/>
- <Column id="multiord" type="STRING" size="256"/>
- <Column id="pod" type="STRING" size="256"/>
- <Column id="prcprgstnm" type="STRING" size="256" sumtext="처방의"/>
- <Column id="btype" type="STRING" size="256" sumtext="혈액형"/>
- <Column id="recipient" type="STRING" size="256" sumtext="수혜자"/>
- <Column id="outmisu" type="STRING" size="256"/>
- <Column id="handidentalimg" type="STRING" size="256"/>
- <Column id="drginfo" type="STRING" size="256" sumtext="질병군분류"/>
- </ColumnInfo>
- <Rows>
- <Row/>
- </Rows>
- </Dataset>
- <Dataset id="ds_basicIn" firefirstcount="0" firenextcount="0" useclientlayout="false" updatecontrol="true" enableevent="true" loadkeymode="keep" loadfiltermode="keep" reversesubsum="false">
- <ColumnInfo>
- <Column id="indd" type="STRING"/>
- <Column id="cretno" type="STRING"/>
- <Column id="seqno" type="STRING"/>
- <Column id="memo" type="STRING"/>
- <Column id="roomcd" type="STRING"/>
- <Column id="color" type="STRING"/>
- <Column id="hngnm" type="STRING"/>
- <Column id="dispnm2" type="STRING"/>
- <Column id="pid" type="STRING"/>
- <Column id="sa" type="STRING"/>
- <Column id="hd" type="STRING"/>
- <Column id="pod" type="STRING"/>
- <Column id="ad" type="STRING"/>
- <Column id="refer" type="STRING"/>
- <Column id="replstat" type="STRING"/>
- <Column id="orddeptcd" type="STRING"/>
- <Column id="deptnm" type="STRING"/>
- <Column id="subdeptnm" type="STRING"/>
- <Column id="medispclnm" type="STRING"/>
- <Column id="medispclid" type="STRING"/>
- <Column id="atdoctnm" type="STRING"/>
- <Column id="diagnm" type="STRING"/>
- <Column id="opnm" type="STRING"/>
- <Column id="testrslt" type="STRING"/>
- <Column id="cnst" type="STRING"/>
- <Column id="spclflag" type="STRING"/>
- <Column id="dayregular" type="STRING"/>
- <Column id="lastprcpdd" type="STRING"/>
- <Column id="drgyn" type="STRING"/>
- <Column id="cpyn" type="STRING"/>
- <Column id="insukind" type="STRING"/>
- <Column id="dschnoti" type="STRING"/>
- <Column id="conctypenm" type="STRING"/>
- <Column id="transfer" type="STRING"/>
- <Column id="coopteamcd" type="STRING"/>
- <Column id="antidrugflag" type="STRING"/>
- <Column id="preworkup" type="STRING"/>
- <Column id="hsctpreday" type="STRING"/>
- <Column id="transtype" type="STRING"/>
- <Column id="hsctday" type="STRING"/>
- <Column id="postcxday" type="STRING"/>
- <Column id="specordtype" type="STRING"/>
- <Column id="ordtype" type="STRING"/>
- <Column id="recsubjective" type="STRING"/>
- <Column id="recaccess" type="STRING"/>
- <Column id="recplan" type="STRING"/>
- <Column id="drginfo" type="STRING" size="256" sumtext="DRG구분"/>
- <Column id="btype" type="STRING" size="256" sumtext="혈액형"/>
- <Column id="disp1img" type="STRING" size="256" sumtext="혈액주의"/>
- <Column id="disp2img" type="STRING" size="256" sumtext="접촉주의"/>
- <Column id="disp3img" type="STRING" size="256" sumtext="호흡기주의"/>
- <Column id="prgweekcnt" type="STRING" size="256" sumtext="재태기간"/>
- <Column id="recovwardnm" type="STRING" size="256" sumtext="중증응급"/>
- <Column id="recnightduty" type="STRING" size="256" sumtext="당직인계"/>
- <Column id="childlab" type="STRING" size="256" sumtext="소아혈종LAB"/>
- </ColumnInfo>
- <Rows>
- <Row/>
- </Rows>
- </Dataset>
- <Dataset id="ds_AllIn" firefirstcount="0" firenextcount="0" useclientlayout="false" updatecontrol="true" enableevent="true" loadkeymode="keep" reversesubsum="false">
- <ColumnInfo>
- <Column id="indd" type="STRING"/>
- <Column id="cretno" type="STRING"/>
- <Column id="seqno" type="STRING"/>
- <Column id="memo" type="STRING"/>
- <Column id="roomcd" type="STRING"/>
- <Column id="color" type="STRING"/>
- <Column id="hngnm" type="STRING"/>
- <Column id="dispnm2" type="STRING"/>
- <Column id="pid" type="STRING"/>
- <Column id="sa" type="STRING"/>
- <Column id="hd" type="STRING"/>
- <Column id="pod" type="STRING"/>
- <Column id="ad" type="STRING"/>
- <Column id="refer" type="STRING"/>
- <Column id="replstat" type="STRING"/>
- <Column id="orddeptcd" type="STRING"/>
- <Column id="deptnm" type="STRING"/>
- <Column id="subdeptnm" type="STRING"/>
- <Column id="medispclnm" type="STRING"/>
- <Column id="medispclid" type="STRING"/>
- <Column id="atdoctnm" type="STRING"/>
- <Column id="diagnm" type="STRING"/>
- <Column id="opnm" type="STRING"/>
- <Column id="testrslt" type="STRING"/>
- <Column id="cnst" type="STRING"/>
- <Column id="spclflag" type="STRING"/>
- <Column id="dayregular" type="STRING"/>
- <Column id="lastprcpdd" type="STRING"/>
- <Column id="drgyn" type="STRING"/>
- <Column id="cpyn" type="STRING"/>
- <Column id="insukind" type="STRING"/>
- <Column id="dschnoti" type="STRING"/>
- <Column id="conctypenm" type="STRING"/>
- <Column id="transfer" type="STRING"/>
- <Column id="coopteamcd" type="STRING"/>
- <Column id="antidrugflag" type="STRING"/>
- <Column id="preworkup" type="STRING"/>
- <Column id="hsctpreday" type="STRING"/>
- <Column id="transtype" type="STRING"/>
- <Column id="hsctday" type="STRING"/>
- <Column id="postcxday" type="STRING"/>
- <Column id="specordtype" type="STRING"/>
- <Column id="ordtype" type="STRING"/>
- <Column id="recsubjective" type="STRING"/>
- <Column id="recaccess" type="STRING"/>
- <Column id="recplan" type="STRING"/>
- <Column id="drginfo" type="STRING" size="256" sumtext="DRG구분"/>
- <Column id="btype" type="STRING" size="256" sumtext="혈액형"/>
- <Column id="disp1img" type="STRING" size="256" sumtext="혈액주의"/>
- <Column id="disp2img" type="STRING" size="256" sumtext="접촉주의"/>
- <Column id="disp3img" type="STRING" size="256" sumtext="호흡기주의"/>
- <Column id="prgweekcnt" type="STRING" size="256" sumtext="재태기간"/>
- <Column id="recovwardnm" type="STRING" size="256" sumtext="중증응급"/>
- <Column id="recnightduty" type="STRING" size="256" sumtext="당직인계"/>
- <Column id="childlab" type="STRING" size="256" sumtext="소아혈종LAB"/>
- </ColumnInfo>
- <Rows>
- <Row/>
- </Rows>
- </Dataset>
- <Dataset id="ds_ResizeIn" firefirstcount="0" firenextcount="0" useclientlayout="false" updatecontrol="true" enableevent="true" loadkeymode="keep" reversesubsum="false">
- <ColumnInfo>
- <Column id="indd" type="STRING"/>
- <Column id="cretno" type="STRING"/>
- <Column id="seqno" type="STRING"/>
- <Column id="memo" type="STRING"/>
- <Column id="roomcd" type="STRING"/>
- <Column id="color" type="STRING"/>
- <Column id="hngnm" type="STRING"/>
- <Column id="dispnm2" type="STRING"/>
- <Column id="pid" type="STRING"/>
- <Column id="sa" type="STRING"/>
- <Column id="hd" type="STRING"/>
- <Column id="pod" type="STRING"/>
- <Column id="ad" type="STRING"/>
- <Column id="refer" type="STRING"/>
- <Column id="replstat" type="STRING"/>
- <Column id="orddeptcd" type="STRING"/>
- <Column id="deptnm" type="STRING"/>
- <Column id="subdeptnm" type="STRING"/>
- <Column id="medispclnm" type="STRING"/>
- <Column id="medispclid" type="STRING"/>
- <Column id="atdoctnm" type="STRING"/>
- <Column id="diagnm" type="STRING"/>
- <Column id="opnm" type="STRING"/>
- <Column id="testrslt" type="STRING"/>
- <Column id="cnst" type="STRING"/>
- <Column id="spclflag" type="STRING"/>
- <Column id="dayregular" type="STRING"/>
- <Column id="lastprcpdd" type="STRING"/>
- <Column id="drgyn" type="STRING"/>
- <Column id="cpyn" type="STRING"/>
- <Column id="insukind" type="STRING"/>
- <Column id="dschnoti" type="STRING"/>
- <Column id="conctypenm" type="STRING"/>
- <Column id="transfer" type="STRING"/>
- <Column id="coopteamcd" type="STRING"/>
- <Column id="antidrugflag" type="STRING"/>
- <Column id="preworkup" type="STRING"/>
- <Column id="hsctpreday" type="STRING"/>
- <Column id="transtype" type="STRING"/>
- <Column id="hsctday" type="STRING"/>
- <Column id="postcxday" type="STRING"/>
- <Column id="specordtype" type="STRING"/>
- <Column id="ordtype" type="STRING"/>
- <Column id="recsubjective" type="STRING"/>
- <Column id="recaccess" type="STRING"/>
- <Column id="recplan" type="STRING"/>
- <Column id="drginfo" type="STRING" size="256" sumtext="DRG구분"/>
- <Column id="btype" type="STRING" size="256" sumtext="혈액형"/>
- <Column id="disp1img" type="STRING" size="256" sumtext="혈액주의"/>
- <Column id="disp2img" type="STRING" size="256" sumtext="접촉주의"/>
- <Column id="disp3img" type="STRING" size="256" sumtext="호흡기주의"/>
- <Column id="prgweekcnt" type="STRING" size="256" sumtext="재태기간"/>
- <Column id="recovwardnm" type="STRING" size="256" sumtext="중증응급"/>
- <Column id="recnightduty" type="STRING" size="256" sumtext="당직인계"/>
- <Column id="childlab" type="STRING" size="256" sumtext="소아혈종LAB"/>
- </ColumnInfo>
- <Rows>
- <Row/>
- </Rows>
- </Dataset>
- <Dataset id="ds_basicEr" firefirstcount="0" firenextcount="0" useclientlayout="false" updatecontrol="true" enableevent="true" loadkeymode="keep" reversesubsum="false">
- <ColumnInfo>
- <Column id="bed" type="STRING"/>
- <Column id="spclflag" type="STRING"/>
- <Column id="adflag" type="STRING"/>
- <Column id="adrvflag" type="STRING"/>
- <Column id="patstat" type="STRING"/>
- <Column id="pid" type="STRING"/>
- <Column id="recovwardnm" type="STRING"/>
- <Column id="serdiagflag" type="STRING"/>
- <Column id="serdiagflag2" type="STRING"/>
- <Column id="hngnm" type="STRING"/>
- <Column id="dispnm2" type="STRING"/>
- <Column id="sa" type="STRING"/>
- <Column id="ordindeptnm" type="STRING"/>
- <Column id="medispclnm" type="STRING"/>
- <Column id="atdoctnm" type="STRING"/>
- <Column id="orddeptnm" type="STRING"/>
- <Column id="erorddeptcd" type="STRING"/>
- <Column id="orddoctnm" type="STRING"/>
- <Column id="orddoctid" type="STRING"/>
- <Column id="diagnm" type="STRING"/>
- <Column id="mainsynom" type="STRING"/>
- <Column id="roomcd" type="STRING"/>
- <Column id="remark1" type="STRING"/>
- <Column id="remark2" type="STRING"/>
- <Column id="chosdd" type="STRING"/>
- <Column id="internnm1" type="STRING"/>
- <Column id="internnm2" type="STRING"/>
- <Column id="calltm" type="STRING"/>
- <Column id="visttm" type="STRING"/>
- <Column id="staytm" type="STRING"/>
- <Column id="specordtype" type="STRING"/>
- <Column id="drgyn" type="STRING"/>
- <Column id="indd" type="STRING"/>
- <Column id="cretno" type="STRING"/>
- <Column id="orddeptcd" type="STRING"/>
- <Column id="visitno" type="STRING"/>
- <Column id="rrgstno1" type="STRING"/>
- <Column id="color" type="STRING"/>
- <Column id="adrvcolor" type="STRING"/>
- <Column id="recovwardcd" type="STRING"/>
- <Column id="actsymp" type="STRING"/>
- <Column id="dschdclrtyn" type="STRING"/>
- <Column id="tmcolor" type="STRING"/>
- <Column id="staytime" type="STRING"/>
- <Column id="prcpcolor" type="STRING"/>
- <Column id="drginfo" type="STRING" size="256" sumtext="DRG구분"/>
- <Column id="btype" type="STRING" size="256" sumtext="혈액형"/>
- <Column id="disp1img" type="STRING" size="256" sumtext="혈액주의"/>
- <Column id="disp2img" type="STRING" size="256" sumtext="접촉주의"/>
- <Column id="disp3img" type="STRING" size="256" sumtext="호흡기주의"/>
- <Column id="revisit" type="STRING" size="256" sumtext="재내원"/>
- <Column id="assgroom" type="STRING" size="256" sumtext="압원의뢰서 배정 병실"/>
- </ColumnInfo>
- <Rows>
- <Row/>
- </Rows>
- </Dataset>
- <Dataset id="ds_AllEr" firefirstcount="0" firenextcount="0" useclientlayout="false" updatecontrol="true" enableevent="true" loadkeymode="keep" reversesubsum="false">
- <ColumnInfo>
- <Column id="bed" type="STRING"/>
- <Column id="spclflag" type="STRING"/>
- <Column id="adflag" type="STRING"/>
- <Column id="adrvflag" type="STRING"/>
- <Column id="patstat" type="STRING"/>
- <Column id="pid" type="STRING"/>
- <Column id="recovwardnm" type="STRING"/>
- <Column id="serdiagflag" type="STRING"/>
- <Column id="serdiagflag2" type="STRING"/>
- <Column id="hngnm" type="STRING"/>
- <Column id="dispnm2" type="STRING"/>
- <Column id="sa" type="STRING"/>
- <Column id="ordindeptnm" type="STRING"/>
- <Column id="medispclnm" type="STRING"/>
- <Column id="atdoctnm" type="STRING"/>
- <Column id="orddeptnm" type="STRING"/>
- <Column id="erorddeptcd" type="STRING"/>
- <Column id="orddoctnm" type="STRING"/>
- <Column id="orddoctid" type="STRING"/>
- <Column id="diagnm" type="STRING"/>
- <Column id="mainsynom" type="STRING"/>
- <Column id="roomcd" type="STRING"/>
- <Column id="remark1" type="STRING"/>
- <Column id="remark2" type="STRING"/>
- <Column id="chosdd" type="STRING"/>
- <Column id="internnm1" type="STRING"/>
- <Column id="internnm2" type="STRING"/>
- <Column id="calltm" type="STRING"/>
- <Column id="visttm" type="STRING"/>
- <Column id="staytm" type="STRING"/>
- <Column id="specordtype" type="STRING"/>
- <Column id="drgyn" type="STRING"/>
- <Column id="indd" type="STRING"/>
- <Column id="cretno" type="STRING"/>
- <Column id="orddeptcd" type="STRING"/>
- <Column id="visitno" type="STRING"/>
- <Column id="rrgstno1" type="STRING"/>
- <Column id="color" type="STRING"/>
- <Column id="adrvcolor" type="STRING"/>
- <Column id="recovwardcd" type="STRING"/>
- <Column id="actsymp" type="STRING"/>
- <Column id="dschdclrtyn" type="STRING"/>
- <Column id="tmcolor" type="STRING"/>
- <Column id="staytime" type="STRING"/>
- <Column id="prcpcolor" type="STRING"/>
- <Column id="drginfo" type="STRING" size="256" sumtext="DRG구분"/>
- <Column id="btype" type="STRING" size="256" sumtext="혈액형"/>
- <Column id="disp1img" type="STRING" size="256" sumtext="혈액주의"/>
- <Column id="disp2img" type="STRING" size="256" sumtext="접촉주의"/>
- <Column id="disp3img" type="STRING" size="256" sumtext="호흡기주의"/>
- <Column id="revisit" type="STRING" size="256" sumtext="재내원"/>
- <Column id="assgroom" type="STRING" size="256" sumtext="입원의뢰서 배정 병실"/>
- <Column id="ercallstatus" type="STRING" size="256" sumtext="응급실 호출 상태"/>
- <Column id="covidlis" type="STRING" size="256" sumtext="코로나 검사"/>
- </ColumnInfo>
- <Rows>
- <Row/>
- </Rows>
- </Dataset>
- <Dataset id="ds_ResizeEr" firefirstcount="0" firenextcount="0" useclientlayout="false" updatecontrol="true" enableevent="true" loadkeymode="keep" reversesubsum="false">
- <ColumnInfo>
- <Column id="bed" type="STRING"/>
- <Column id="spclflag" type="STRING"/>
- <Column id="adflag" type="STRING"/>
- <Column id="adrvflag" type="STRING"/>
- <Column id="patstat" type="STRING"/>
- <Column id="pid" type="STRING"/>
- <Column id="recovwardnm" type="STRING"/>
- <Column id="serdiagflag" type="STRING"/>
- <Column id="serdiagflag2" type="STRING"/>
- <Column id="hngnm" type="STRING"/>
- <Column id="dispnm2" type="STRING"/>
- <Column id="sa" type="STRING"/>
- <Column id="ordindeptnm" type="STRING"/>
- <Column id="medispclnm" type="STRING"/>
- <Column id="atdoctnm" type="STRING"/>
- <Column id="orddeptnm" type="STRING"/>
- <Column id="erorddeptcd" type="STRING"/>
- <Column id="orddoctnm" type="STRING"/>
- <Column id="orddoctid" type="STRING"/>
- <Column id="diagnm" type="STRING"/>
- <Column id="mainsynom" type="STRING"/>
- <Column id="roomcd" type="STRING"/>
- <Column id="remark1" type="STRING"/>
- <Column id="remark2" type="STRING"/>
- <Column id="chosdd" type="STRING"/>
- <Column id="internnm1" type="STRING"/>
- <Column id="internnm2" type="STRING"/>
- <Column id="calltm" type="STRING"/>
- <Column id="visttm" type="STRING"/>
- <Column id="staytm" type="STRING"/>
- <Column id="specordtype" type="STRING"/>
- <Column id="drgyn" type="STRING"/>
- <Column id="indd" type="STRING"/>
- <Column id="cretno" type="STRING"/>
- <Column id="orddeptcd" type="STRING"/>
- <Column id="visitno" type="STRING"/>
- <Column id="rrgstno1" type="STRING"/>
- <Column id="color" type="STRING"/>
- <Column id="adrvcolor" type="STRING"/>
- <Column id="recovwardcd" type="STRING"/>
- <Column id="actsymp" type="STRING"/>
- <Column id="dschdclrtyn" type="STRING"/>
- <Column id="tmcolor" type="STRING"/>
- <Column id="staytime" type="STRING"/>
- <Column id="prcpcolor" type="STRING"/>
- <Column id="drginfo" type="STRING" size="256" sumtext="DRG구분"/>
- <Column id="btype" type="STRING" size="256" sumtext="혈액형"/>
- <Column id="disp1img" type="STRING" size="256" sumtext="혈액주의"/>
- <Column id="disp2img" type="STRING" size="256" sumtext="접촉주의"/>
- <Column id="disp3img" type="STRING" size="256" sumtext="호흡기주의"/>
- <Column id="revisit" type="STRING" size="256" sumtext="재내원"/>
- <Column id="assgroom" type="STRING" size="256" sumtext="입원의뢰서 배정 병실"/>
- <Column id="ercallstatus" type="STRING" size="256" sumtext="응급실 호출 상태"/>
- <Column id="covidlis" type="STRING" size="256" sumtext="코로나 검사"/>
- </ColumnInfo>
- <Rows>
- <Row/>
- </Rows>
- </Dataset>
- <Dataset id="ds_basicOp" firefirstcount="0" firenextcount="0" useclientlayout="false" updatecontrol="true" enableevent="true" loadkeymode="keep" reversesubsum="false">
- <ColumnInfo>
- <Column id="ioflag" type="STRING"/>
- <Column id="oproomnm" type="STRING"/>
- <Column id="patinroomdt" type="STRING"/>
- <Column id="patoutroomdt" type="STRING"/>
- <Column id="opfromtmcd" type="STRING"/>
- <Column id="opendtmcd" type="STRING"/>
- <Column id="opusetm" type="STRING"/>
- <Column id="orddeptcd" type="STRING"/>
- <Column id="perfdeptnm" type="STRING"/>
- <Column id="pid" type="STRING"/>
- <Column id="hngnm" type="STRING"/>
- <Column id="dispnm2" type="STRING"/>
- <Column id="sa" type="STRING"/>
- <Column id="opnm" type="STRING"/>
- <Column id="diagnm" type="STRING"/>
- <Column id="roomcd" type="STRING"/>
- <Column id="cpflag" type="STRING"/>
- <Column id="drgyn" type="STRING"/>
- <Column id="anstreqflag" type="STRING"/>
- <Column id="anstdrnm" type="STRING"/>
- <Column id="opstatcd" type="STRING"/>
- <Column id="perfdrnm" type="STRING"/>
- <Column id="waittime" type="STRING"/>
- <Column id="conctypenm" type="STRING"/>
- <Column id="spclflag" type="STRING"/>
- <Column id="preworkup" type="STRING"/>
- <Column id="hsctpreday" type="STRING"/>
- <Column id="trsntype" type="STRING"/>
- <Column id="hsctday" type="STRING"/>
- <Column id="instcd" type="STRING"/>
- <Column id="postcxday" type="STRING"/>
- <Column id="specordtype" type="STRING"/>
- <Column id="pcaflag" type="STRING"/>
- <Column id="height" type="STRING"/>
- <Column id="weight" type="STRING"/>
- <Column id="painlessflag" type="STRING"/>
- <Column id="oprsrvno" type="STRING"/>
- <Column id="ophistno" type="STRING"/>
- <Column id="opcnfmdd" type="STRING"/>
- <Column id="perfdeptcd" type="STRING"/>
- <Column id="perfdrid" type="STRING"/>
- <Column id="drginfo" type="STRING" size="256" sumtext="DRG구분"/>
- <Column id="veininfo" type="STRING" size="256" sumtext="중심정맥삽관동의서상태"/>
- <Column id="trpatyn" type="STRING" size="256" sumtext="외상횐자여부"/>
- <Column id="btype" type="STRING" size="256" sumtext="혈액형"/>
- <Column id="disp1img" type="STRING" size="256" sumtext="혈액주의"/>
- <Column id="disp2img" type="STRING" size="256" sumtext="접촉주의"/>
- <Column id="disp3img" type="STRING" size="256" sumtext="호흡기주의"/>
- </ColumnInfo>
- <Rows>
- <Row/>
- </Rows>
- </Dataset>
- <Dataset id="ds_AllOp" firefirstcount="0" firenextcount="0" useclientlayout="false" updatecontrol="true" enableevent="true" loadkeymode="keep" reversesubsum="false">
- <ColumnInfo>
- <Column id="ioflag" type="STRING"/>
- <Column id="oproomnm" type="STRING"/>
- <Column id="patinroomdt" type="STRING"/>
- <Column id="patoutroomdt" type="STRING"/>
- <Column id="opfromtmcd" type="STRING"/>
- <Column id="opendtmcd" type="STRING"/>
- <Column id="opusetm" type="STRING"/>
- <Column id="orddeptcd" type="STRING"/>
- <Column id="perfdeptnm" type="STRING"/>
- <Column id="pid" type="STRING"/>
- <Column id="hngnm" type="STRING"/>
- <Column id="dispnm2" type="STRING"/>
- <Column id="sa" type="STRING"/>
- <Column id="opnm" type="STRING"/>
- <Column id="diagnm" type="STRING"/>
- <Column id="roomcd" type="STRING"/>
- <Column id="cpflag" type="STRING"/>
- <Column id="drgyn" type="STRING"/>
- <Column id="anstreqflag" type="STRING"/>
- <Column id="anstdrnm" type="STRING"/>
- <Column id="opstatcd" type="STRING"/>
- <Column id="perfdrnm" type="STRING"/>
- <Column id="waittime" type="STRING"/>
- <Column id="conctypenm" type="STRING"/>
- <Column id="spclflag" type="STRING"/>
- <Column id="preworkup" type="STRING"/>
- <Column id="hsctpreday" type="STRING"/>
- <Column id="trsntype" type="STRING"/>
- <Column id="hsctday" type="STRING"/>
- <Column id="instcd" type="STRING"/>
- <Column id="postcxday" type="STRING"/>
- <Column id="specordtype" type="STRING"/>
- <Column id="pcaflag" type="STRING"/>
- <Column id="height" type="STRING"/>
- <Column id="weight" type="STRING"/>
- <Column id="painlessflag" type="STRING"/>
- <Column id="oprsrvno" type="STRING"/>
- <Column id="ophistno" type="STRING"/>
- <Column id="opcnfmdd" type="STRING"/>
- <Column id="perfdeptcd" type="STRING"/>
- <Column id="perfdrid" type="STRING"/>
- <Column id="drginfo" type="STRING" size="256" sumtext="DRG구분"/>
- <Column id="veininfo" type="STRING" size="256" sumtext="중심정맥삽관동의서상태"/>
- <Column id="trpatyn" type="STRING" size="256" sumtext="외상횐자여부"/>
- <Column id="btype" type="STRING" size="256" sumtext="혈액형"/>
- <Column id="disp1img" type="STRING" size="256" sumtext="혈액주의"/>
- <Column id="disp2img" type="STRING" size="256" sumtext="접촉주의"/>
- <Column id="disp3img" type="STRING" size="256" sumtext="호흡기주의"/>
- <Column id="anstcmt" type="STRING" size="256" sumtext="마취과 코멘트"/>
- <Column id="anstplan" type="STRING" size="256" sumtext="마취계획"/>
- <Column id="anstdelivefact" type="STRING" size="256" sumtext="마취과전달사항"/>
- </ColumnInfo>
- <Rows>
- <Row/>
- </Rows>
- </Dataset>
- <Dataset id="ds_ResizeOp" firefirstcount="0" firenextcount="0" useclientlayout="false" updatecontrol="true" enableevent="true" loadkeymode="keep" reversesubsum="false">
- <ColumnInfo>
- <Column id="ioflag" type="STRING"/>
- <Column id="oproomnm" type="STRING"/>
- <Column id="patinroomdt" type="STRING"/>
- <Column id="patoutroomdt" type="STRING"/>
- <Column id="opfromtmcd" type="STRING"/>
- <Column id="opendtmcd" type="STRING"/>
- <Column id="opusetm" type="STRING"/>
- <Column id="orddeptcd" type="STRING"/>
- <Column id="perfdeptnm" type="STRING"/>
- <Column id="pid" type="STRING"/>
- <Column id="hngnm" type="STRING"/>
- <Column id="dispnm2" type="STRING"/>
- <Column id="sa" type="STRING"/>
- <Column id="opnm" type="STRING"/>
- <Column id="diagnm" type="STRING"/>
- <Column id="roomcd" type="STRING"/>
- <Column id="cpflag" type="STRING"/>
- <Column id="drgyn" type="STRING"/>
- <Column id="anstreqflag" type="STRING"/>
- <Column id="anstdrnm" type="STRING"/>
- <Column id="opstatcd" type="STRING"/>
- <Column id="perfdrnm" type="STRING"/>
- <Column id="waittime" type="STRING"/>
- <Column id="conctypenm" type="STRING"/>
- <Column id="spclflag" type="STRING"/>
- <Column id="preworkup" type="STRING"/>
- <Column id="hsctpreday" type="STRING"/>
- <Column id="trsntype" type="STRING"/>
- <Column id="hsctday" type="STRING"/>
- <Column id="instcd" type="STRING"/>
- <Column id="postcxday" type="STRING"/>
- <Column id="specordtype" type="STRING"/>
- <Column id="pcaflag" type="STRING"/>
- <Column id="height" type="STRING"/>
- <Column id="weight" type="STRING"/>
- <Column id="painlessflag" type="STRING"/>
- <Column id="oprsrvno" type="STRING"/>
- <Column id="ophistno" type="STRING"/>
- <Column id="opcnfmdd" type="STRING"/>
- <Column id="perfdeptcd" type="STRING"/>
- <Column id="perfdrid" type="STRING"/>
- <Column id="drginfo" type="STRING" size="256" sumtext="DRG구분"/>
- <Column id="veininfo" type="STRING" size="256" sumtext="중심정맥삽관동의서상태"/>
- <Column id="trpatyn" type="STRING" size="256" sumtext="외상횐자여부"/>
- <Column id="btype" type="STRING" size="256" sumtext="혈액형"/>
- <Column id="disp1img" type="STRING" size="256" sumtext="혈액주의"/>
- <Column id="disp2img" type="STRING" size="256" sumtext="접촉주의"/>
- <Column id="disp3img" type="STRING" size="256" sumtext="호흡기주의"/>
- <Column id="anstcmt" type="STRING" size="256"/>
- <Column id="anstplan" type="STRING" size="256"/>
- <Column id="anstdelivefact" type="STRING" size="256"/>
- </ColumnInfo>
- <Rows>
- <Row/>
- </Rows>
- </Dataset>
- <Dataset id="ds_basicSrch" firefirstcount="0" firenextcount="0" useclientlayout="false" updatecontrol="true" enableevent="true" loadkeymode="keep" reversesubsum="false">
- <ColumnInfo>
- <Column id="cretno" type="STRING"/>
- <Column id="ioflag" type="STRING"/>
- <Column id="instcd" type="STRING"/>
- <Column id="ordtype" type="STRING"/>
- <Column id="rrgstno1" type="STRING"/>
- <Column id="orddrid" type="STRING"/>
- <Column id="pid" type="STRING"/>
- <Column id="hngnm" type="STRING"/>
- <Column id="dispnm2" type="STRING"/>
- <Column id="sa" type="STRING"/>
- <Column id="orddd" type="STRING"/>
- <Column id="centcd" type="STRING"/>
- <Column id="orddeptcd" type="STRING"/>
- <Column id="subdeptcd" type="STRING"/>
- <Column id="orddrnm" type="STRING"/>
- <Column id="roomcd" type="STRING"/>
- <Column id="diagnm" type="STRING"/>
- <Column id="insukind" type="STRING"/>
- <Column id="rsrv" type="STRING"/>
- <Column id="cnst" type="STRING"/>
- <Column id="stat" type="STRING"/>
- <Column id="conctypenm" type="STRING"/>
- <Column id="spclflag" type="STRING"/>
- <Column id="preworkup" type="STRING"/>
- <Column id="hsctpredd" type="STRING"/>
- <Column id="trnpttype" type="STRING"/>
- <Column id="hsctday" type="STRING"/>
- <Column id="postcxday" type="STRING"/>
- </ColumnInfo>
- <Rows>
- <Row/>
- </Rows>
- </Dataset>
- <Dataset id="ds_AllSrch" firefirstcount="0" firenextcount="0" useclientlayout="false" updatecontrol="true" enableevent="true" loadkeymode="keep" reversesubsum="false">
- <ColumnInfo>
- <Column id="cretno" type="STRING"/>
- <Column id="ioflag" type="STRING"/>
- <Column id="instcd" type="STRING"/>
- <Column id="ordtype" type="STRING"/>
- <Column id="rrgstno1" type="STRING"/>
- <Column id="orddrid" type="STRING"/>
- <Column id="pid" type="STRING"/>
- <Column id="hngnm" type="STRING"/>
- <Column id="dispnm2" type="STRING"/>
- <Column id="sa" type="STRING"/>
- <Column id="orddd" type="STRING"/>
- <Column id="centcd" type="STRING"/>
- <Column id="orddeptcd" type="STRING"/>
- <Column id="subdeptcd" type="STRING"/>
- <Column id="orddrnm" type="STRING"/>
- <Column id="roomcd" type="STRING"/>
- <Column id="diagnm" type="STRING"/>
- <Column id="insukind" type="STRING"/>
- <Column id="rsrv" type="STRING"/>
- <Column id="cnst" type="STRING"/>
- <Column id="stat" type="STRING"/>
- <Column id="conctypenm" type="STRING"/>
- <Column id="spclflag" type="STRING"/>
- <Column id="preworkup" type="STRING"/>
- <Column id="hsctpredd" type="STRING"/>
- <Column id="trnpttype" type="STRING"/>
- <Column id="hsctday" type="STRING"/>
- <Column id="postcxday" type="STRING"/>
- </ColumnInfo>
- <Rows>
- <Row/>
- </Rows>
- </Dataset>
- <Dataset id="ds_ResizeSrch" firefirstcount="0" firenextcount="0" useclientlayout="false" updatecontrol="true" enableevent="true" loadkeymode="keep" reversesubsum="false">
- <ColumnInfo>
- <Column id="cretno" type="STRING"/>
- <Column id="ioflag" type="STRING"/>
- <Column id="instcd" type="STRING"/>
- <Column id="ordtype" type="STRING"/>
- <Column id="rrgstno1" type="STRING"/>
- <Column id="orddrid" type="STRING"/>
- <Column id="pid" type="STRING"/>
- <Column id="hngnm" type="STRING"/>
- <Column id="dispnm2" type="STRING"/>
- <Column id="sa" type="STRING"/>
- <Column id="orddd" type="STRING"/>
- <Column id="centcd" type="STRING"/>
- <Column id="orddeptcd" type="STRING"/>
- <Column id="subdeptcd" type="STRING"/>
- <Column id="orddrnm" type="STRING"/>
- <Column id="roomcd" type="STRING"/>
- <Column id="diagnm" type="STRING"/>
- <Column id="insukind" type="STRING"/>
- <Column id="rsrv" type="STRING"/>
- <Column id="cnst" type="STRING"/>
- <Column id="stat" type="STRING"/>
- <Column id="conctypenm" type="STRING"/>
- <Column id="spclflag" type="STRING"/>
- <Column id="preworkup" type="STRING"/>
- <Column id="hsctpredd" type="STRING"/>
- <Column id="trnpttype" type="STRING"/>
- <Column id="hsctday" type="STRING"/>
- <Column id="postcxday" type="STRING"/>
- </ColumnInfo>
- <Rows>
- <Row/>
- </Rows>
- </Dataset>
- <Dataset id="ds_basicCnst" firefirstcount="0" firenextcount="0" useclientlayout="false" updatecontrol="true" enableevent="true" loadkeymode="keep" reversesubsum="false">
- <ColumnInfo>
- <Column id="eryn" type="STRING"/>
- <Column id="pid" type="STRING"/>
- <Column id="hngnm" type="STRING"/>
- <Column id="dispnm2" type="STRING"/>
- <Column id="sa" type="STRING"/>
- <Column id="requsernm" type="STRING"/>
- <Column id="reqdeptnm" type="STRING"/>
- <Column id="reqdt" type="STRING"/>
- <Column id="roomcd" type="STRING"/>
- <Column id="replyn" type="STRING"/>
- <Column id="recvtm" type="STRING"/>
- <Column id="termengnm" type="STRING"/>
- <Column id="recvusernm" type="STRING"/>
- <Column id="formrecseq" type="STRING"/>
- <Column id="acptorddd" type="STRING"/>
- <Column id="acptcretno" type="STRING"/>
- <Column id="orddd" type="STRING"/>
- <Column id="cretno" type="STRING"/>
- <Column id="ioflag" type="STRING"/>
- </ColumnInfo>
- <Rows>
- <Row/>
- </Rows>
- </Dataset>
- <Dataset id="ds_AllCnst" firefirstcount="0" firenextcount="0" useclientlayout="false" updatecontrol="true" enableevent="true" loadkeymode="keep" reversesubsum="false">
- <ColumnInfo>
- <Column id="eryn" type="STRING"/>
- <Column id="pid" type="STRING"/>
- <Column id="hngnm" type="STRING"/>
- <Column id="dispnm2" type="STRING"/>
- <Column id="sa" type="STRING"/>
- <Column id="requsernm" type="STRING"/>
- <Column id="reqdeptnm" type="STRING"/>
- <Column id="reqdt" type="STRING"/>
- <Column id="roomcd" type="STRING"/>
- <Column id="replyn" type="STRING"/>
- <Column id="recvtm" type="STRING"/>
- <Column id="termengnm" type="STRING"/>
- <Column id="recvusernm" type="STRING"/>
- <Column id="formrecseq" type="STRING"/>
- <Column id="acptorddd" type="STRING"/>
- <Column id="acptcretno" type="STRING"/>
- <Column id="orddd" type="STRING"/>
- <Column id="cretno" type="STRING"/>
- <Column id="ioflag" type="STRING"/>
- </ColumnInfo>
- <Rows>
- <Row/>
- </Rows>
- </Dataset>
- <Dataset id="ds_ResizeCnst" firefirstcount="0" firenextcount="0" useclientlayout="false" updatecontrol="true" enableevent="true" loadkeymode="keep" reversesubsum="false">
- <ColumnInfo>
- <Column id="eryn" type="STRING"/>
- <Column id="pid" type="STRING"/>
- <Column id="hngnm" type="STRING"/>
- <Column id="dispnm2" type="STRING"/>
- <Column id="sa" type="STRING"/>
- <Column id="requsernm" type="STRING"/>
- <Column id="reqdeptnm" type="STRING"/>
- <Column id="reqdt" type="STRING"/>
- <Column id="roomcd" type="STRING"/>
- <Column id="replyn" type="STRING"/>
- <Column id="recvtm" type="STRING"/>
- <Column id="termengnm" type="STRING"/>
- <Column id="recvusernm" type="STRING"/>
- <Column id="formrecseq" type="STRING"/>
- <Column id="acptorddd" type="STRING"/>
- <Column id="acptcretno" type="STRING"/>
- <Column id="orddd" type="STRING"/>
- <Column id="cretno" type="STRING"/>
- <Column id="ioflag" type="STRING"/>
- </ColumnInfo>
- <Rows>
- <Row/>
- </Rows>
- </Dataset>
- </Objects>
- <Script type="xscript4.0"><![CDATA[/*
- - ▩▩▩▩▩▩▩▩▩▩▩▩▩▩▩▩▩▩▩▩▩▩▩▩▩▩▩▩▩▩▩▩▩▩▩▩▩▩▩▩▩▩▩▩
- 진료대상자 화면설정 ( SPMMB01100_진료대상자 화면설정.xfdl - JScript )
- - ▩▩▩▩▩▩▩▩▩▩▩▩▩▩▩▩▩▩▩▩▩▩▩▩▩▩▩▩▩▩▩▩▩▩▩▩▩▩▩▩▩▩▩▩
- */
- include "com_commonxp::comm_main.xjs";
- include "emr_prcpmngtxp::MMO001.xjs";
- include "emr_prcpmngtxp::SPMMB01100.xjs";
- function SPMMB01100_oninit(obj:Form, e:InitEventInfo)
- {
- frmf_initForm(obj);
- }
- function SPMMB01100_onload(obj:Form, e:LoadEventInfo)
- {
- fInitialize_SPMMB01100();
- }
- function Tab00_onchanged(obj:Tab, e:TabIndexChangeEventInfo)
- {
- switch(obj.tabindex) {
- case 0:
- default:
- fClkBtnOfTopTab("out", "grd_outpatlist", "SMMMO04200");
- break;
- case 1:
- fClkBtnOfTopTab("in", "grd_inpatlist", "SMMMO04300");
- break;
- case 2:
- fClkBtnOfTopTab("er", "grd_erpatlist", "SMMMO04400");
- break;
- case 3:
- fClkBtnOfTopTab("op", "grd_oppatlist", "SMMMO04500");
- break;
- case 4:
- fClkBtnOfTopTab("srch", "grd_srchpatlist", "SMMMO04700");
- break;
- case 5:
- fClkBtnOfTopTab("cnst", "grd_cnstpatlist", "SMMMO04800");
- break;
- }
- }
- function pmn_menu1_onmenuclick(obj:PopupMenu, e:MenuClickEventInfo)
- {
- eval(e.id + "()");
- }
- function pmn_menu2_onmenuclick(obj:PopupMenu, e:MenuClickEventInfo)
- {
- eval(e.id + "()");
- }
- function Tab00_grd_ondrag(obj:Grid, e:GridDragEventInfo)
- {
- if(e.row < 0 || e.col < 0) return false;
- fAddColDragStart(obj, e);
- return true;
- }
- function Tab00_grd_ondragmove(obj:Grid, e:GridDragEventInfo)
- {
- fAddColDragOver(obj, e);
- }
- function Tab00_grd_onrbuttondown(obj:Grid, e:GridMouseEventInfo)
- {
- if(e.row < 0) return;
-
- grdf_setSelectedCell(obj, e);
-
- pmn_menu1.trackPopup(e.screenX,e.screenY);
- }
- function Tab00_grd_resize_ondragmove(obj:Grid, e:GridDragEventInfo)
- {
- fAddColDragOver(obj, e);
- }
- function Tab00_grd_resize_ondrop(obj:Grid, e:GridDragEventInfo)
- {
- if(e.row < 0 || e.col < 0) return;
-
- eval(getCurrentGridId(e.sourceobject.name)).style.cursor = obj.style.cursor = "auto";
- fAddColDrop(obj, e);
- }
- function Tab00_grd_resize_onrbuttondown(obj:Grid, e:GridMouseEventInfo)
- {
- if(e.row < 0) return;
-
- grdf_setSelectedCell(obj, e);
-
- pmn_menu2.trackPopup(e.screenX,e.screenY);
- }
- function Button00_onclick(obj:Button, e:ClickEventInfo)
- {
- fAppOrderOfCol("ALL");
- }
- function Button01_onclick(obj:Button, e:ClickEventInfo)
- {
- fAppOrderOfCol("BASIC");
- }
- function Button02_onclick(obj:Button, e:ClickEventInfo)
- {
- fSaveOrderInfoCol();
- opener.frmf_setParameter("SPMMB01100_rtn_useyn", "Y");
- close();
- }
- function Button03_onclick(obj:Button, e:ClickEventInfo)
- {
- opener.frmf_setParameter("SPMMB01100_rtn_useyn", "N");
- close();
- }
- function getCurrentGridId (sGrdid) {
- var caseid = ds_cond.getColumn(0, "caseid");
- var grdid = (utlf_isNull(sGrdid)) ? ds_cond.getColumn(0, "grdid") : sGrdid;
- return "Tab00." + caseid + "." + grdid;
- }]]></Script>
- </Form>
- </FDL>
|