123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126312731283129313031313132313331343135313631373138313931403141314231433144314531463147314831493150315131523153315431553156315731583159316031613162316331643165316631673168316931703171317231733174317531763177317831793180318131823183318431853186318731883189319031913192319331943195319631973198319932003201320232033204320532063207320832093210321132123213321432153216321732183219322032213222322332243225322632273228322932303231323232333234323532363237323832393240324132423243324432453246324732483249325032513252325332543255325632573258325932603261326232633264326532663267326832693270327132723273327432753276327732783279328032813282328332843285328632873288328932903291329232933294329532963297329832993300330133023303330433053306330733083309331033113312331333143315331633173318331933203321332233233324332533263327332833293330333133323333333433353336333733383339334033413342334333443345334633473348334933503351335233533354335533563357335833593360336133623363336433653366336733683369337033713372337333743375337633773378337933803381338233833384338533863387338833893390339133923393339433953396339733983399340034013402340334043405340634073408340934103411341234133414341534163417341834193420342134223423342434253426342734283429343034313432343334343435343634373438343934403441344234433444344534463447344834493450345134523453345434553456345734583459346034613462346334643465346634673468346934703471347234733474347534763477347834793480348134823483348434853486348734883489349034913492349334943495349634973498349935003501350235033504350535063507350835093510351135123513351435153516351735183519352035213522352335243525352635273528352935303531353235333534353535363537353835393540354135423543354435453546354735483549355035513552355335543555355635573558355935603561356235633564356535663567356835693570357135723573357435753576357735783579358035813582358335843585358635873588358935903591359235933594359535963597359835993600360136023603360436053606360736083609361036113612361336143615361636173618361936203621362236233624362536263627362836293630363136323633363436353636363736383639364036413642364336443645364636473648364936503651365236533654365536563657365836593660366136623663366436653666366736683669367036713672367336743675367636773678367936803681368236833684368536863687368836893690369136923693369436953696369736983699370037013702370337043705370637073708370937103711371237133714371537163717371837193720372137223723372437253726372737283729373037313732373337343735373637373738373937403741374237433744374537463747374837493750375137523753375437553756375737583759376037613762376337643765376637673768376937703771377237733774377537763777377837793780378137823783378437853786378737883789379037913792379337943795379637973798379938003801380238033804380538063807380838093810381138123813381438153816381738183819382038213822382338243825382638273828382938303831383238333834383538363837383838393840384138423843384438453846384738483849385038513852385338543855385638573858385938603861386238633864386538663867386838693870387138723873387438753876387738783879388038813882388338843885388638873888388938903891389238933894389538963897389838993900390139023903390439053906390739083909391039113912391339143915391639173918391939203921392239233924392539263927392839293930393139323933393439353936393739383939394039413942394339443945394639473948394939503951395239533954395539563957395839593960396139623963396439653966396739683969397039713972397339743975397639773978397939803981398239833984398539863987398839893990399139923993399439953996399739983999400040014002400340044005400640074008400940104011401240134014401540164017401840194020402140224023402440254026402740284029403040314032403340344035403640374038403940404041404240434044404540464047404840494050405140524053405440554056405740584059406040614062406340644065406640674068406940704071407240734074407540764077407840794080408140824083408440854086408740884089409040914092409340944095409640974098409941004101410241034104410541064107410841094110411141124113411441154116411741184119412041214122412341244125412641274128412941304131413241334134413541364137413841394140414141424143414441454146414741484149415041514152415341544155415641574158415941604161416241634164416541664167416841694170417141724173417441754176417741784179418041814182418341844185418641874188418941904191419241934194419541964197419841994200420142024203420442054206420742084209421042114212421342144215421642174218421942204221422242234224422542264227422842294230423142324233423442354236423742384239424042414242424342444245424642474248424942504251425242534254425542564257425842594260426142624263426442654266426742684269427042714272427342744275427642774278427942804281428242834284428542864287428842894290429142924293429442954296429742984299430043014302430343044305430643074308430943104311431243134314431543164317431843194320432143224323432443254326432743284329433043314332433343344335433643374338433943404341434243434344434543464347434843494350435143524353435443554356435743584359436043614362436343644365436643674368436943704371437243734374437543764377437843794380438143824383438443854386438743884389439043914392439343944395439643974398439944004401440244034404440544064407440844094410441144124413441444154416441744184419442044214422442344244425442644274428442944304431443244334434443544364437443844394440444144424443444444454446444744484449445044514452445344544455445644574458445944604461446244634464446544664467446844694470447144724473447444754476447744784479448044814482448344844485448644874488448944904491449244934494449544964497449844994500450145024503450445054506450745084509451045114512451345144515451645174518451945204521452245234524452545264527452845294530453145324533453445354536453745384539454045414542454345444545454645474548454945504551455245534554455545564557455845594560456145624563456445654566456745684569457045714572457345744575457645774578457945804581458245834584458545864587458845894590459145924593459445954596459745984599460046014602460346044605460646074608460946104611461246134614461546164617461846194620462146224623462446254626462746284629463046314632463346344635463646374638463946404641464246434644464546464647464846494650465146524653465446554656465746584659466046614662466346644665466646674668466946704671467246734674467546764677467846794680468146824683468446854686468746884689469046914692469346944695469646974698469947004701470247034704470547064707470847094710471147124713471447154716471747184719472047214722472347244725472647274728472947304731473247334734473547364737473847394740474147424743474447454746474747484749475047514752475347544755475647574758475947604761476247634764476547664767476847694770477147724773477447754776477747784779478047814782478347844785478647874788478947904791479247934794479547964797479847994800480148024803480448054806480748084809481048114812481348144815481648174818481948204821482248234824482548264827482848294830483148324833483448354836483748384839484048414842484348444845484648474848484948504851485248534854485548564857485848594860486148624863486448654866486748684869487048714872487348744875487648774878487948804881488248834884488548864887488848894890489148924893489448954896489748984899490049014902490349044905490649074908490949104911491249134914491549164917491849194920492149224923492449254926492749284929493049314932493349344935493649374938493949404941494249434944494549464947494849494950495149524953495449554956495749584959496049614962496349644965496649674968496949704971497249734974497549764977497849794980498149824983498449854986498749884989499049914992499349944995499649974998499950005001500250035004500550065007500850095010501150125013501450155016501750185019502050215022502350245025502650275028502950305031503250335034503550365037503850395040504150425043504450455046504750485049505050515052505350545055505650575058505950605061506250635064506550665067506850695070507150725073507450755076507750785079508050815082508350845085508650875088508950905091509250935094509550965097509850995100510151025103510451055106510751085109511051115112511351145115511651175118511951205121512251235124512551265127512851295130513151325133 |
- <?xml version="1.0" encoding="utf-8"?>
- <FDL version="1.5">
- <TypeDefinition url="..\..\..\default_typedef.xml"/>
- <Form id="SMMRD00100" position="absolute 0 0 1195 805" titletext="암환자관리" oninit="SMMRD00100_oninit" onload="SMMRD00100_onload">
- <Layouts>
- <Layout>
- <Tab position="absolute 0 26 1190 799" id="switch1" onchanged="switch1_onchanged">
- <Tabpages>
- <Tabpage text="암등록환자조회" id="case1">
- <Layouts>
- <Layout>
- <Shape position="absolute 0 5 1185 65" id="roundrect2" type="roundrectangle"/>
- <Button position="absolute 1120 25 1176 47" id="button2" class="btn1" text="조회" onclick="switch1_case1_button2_onclick"/>
- <Combo position="absolute 725 13 825 32" id="cmb_srchcncrrgst" class="combo_search" innerdataset="@ds_init_srchcncrrgst_deptinfo" datacolumn="depthngnm" codecolumn="deptcd" onitemchanged="switch1_case1_cmb_srchcncrrgst_onitemchanged"/>
- <Combo position="absolute 945 13 1045 32" id="cmb_drinfo" class="combo_search" innerdataset="@ds_init_srchcncrrgst_drinfo" datacolumn="drnm" codecolumn="drid"/>
- <Calendar position="absolute 385 13 485 32" id="input13" class="input_search" autoselect="true"/>
- <Static text="내원구분 :" position="absolute 20 14 106 31" id="caption56" class="search_name"/>
- <Calendar position="absolute 500 13 600 32" id="input14" class="input_search" autoselect="true"/>
- <Static text="진료과 :" position="absolute 650 14 736 31" id="cap_orddept" class="search_name"/>
- <Static text="담당교수 :" position="absolute 870 14 956 31" id="caption59" class="search_name"/>
- <Radio position="absolute 107 13 245 33" id="rdo_ordtype" class="radio_search" columncount="-1" rowcount="-1" codecolumn="codecolumn" datacolumn="datacolumn" onitemchanged="switch1_case1_rdo_ordtype_onitemchanged">
- <Dataset id="innerdataset">
- <ColumnInfo>
- <Column id="codecolumn"/>
- <Column id="datacolumn"/>
- </ColumnInfo>
- <Rows>
- <Row>
- <Col id="codecolumn">A</Col>
- <Col id="datacolumn">전체</Col>
- </Row>
- <Row>
- <Col id="codecolumn">O</Col>
- <Col id="datacolumn">외래</Col>
- </Row>
- <Row>
- <Col id="codecolumn">I</Col>
- <Col id="datacolumn">퇴원</Col>
- </Row>
- </Rows>
- </Dataset>
- </Radio>
- <Shape position="absolute 1096 18 1102 55" linetype="vertical" id="line4" class="line_4"/>
- <Grid position="absolute 0 90 1185 740" id="grd_cncrrgstlist" binddataset="ds_main_cncrrgstpatlist_list" oncelldblclick="switch1_case1_grd_cncrrgstlist_oncelldblclick" autoenter="key" selecttype="multirow">
- <Formats>
- <Format id="default">
- <Columns>
- <Column size="24"/>
- <Column size="59"/>
- <Column size="70"/>
- <Column size="66"/>
- <Column size="0"/>
- <Column size="0"/>
- <Column size="68"/>
- <Column size="80"/>
- <Column size="0"/>
- <Column size="120"/>
- <Column size="0"/>
- <Column size="60"/>
- <Column size="90"/>
- <Column size="90"/>
- <Column size="90"/>
- <Column size="60"/>
- <Column size="285"/>
- <Column size="80"/>
- <Column size="80"/>
- <Column size="80"/>
- </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="담당교수ID"/>
- <Cell col="11" text="진단코드"/>
- <Cell col="12" text="암등록번호"/>
- <Cell col="13" text="ICD10"/>
- <Cell col="14" text="중증등록코드" wordwrap="word"/>
- <Cell col="15" text="대상제외"/>
- <Cell col="16" text="대상제외사유"/>
- <Cell col="17" text="사망일자"/>
- <Cell col="18" text="사망장소"/>
- <Cell col="19" text="사망원인"/>
- </Band>
- <Band id="body">
- <Cell celltype="head" expr="expr:currow + 1"/>
- <Cell col="1" displaytype="combo" edittype="combo" style="padding:1 2 1 2;" text="bind:ordtype" combodataset="ds_cbo_ordtype" combocodecol="value" combodatacol="label" enable="false"/>
- <Cell col="2" text="bind:fsexam"/>
- <Cell col="3" text="bind:pid"/>
- <Cell col="4" text="bind:cretno"/>
- <Cell col="5" displaytype="date" edittype="date" text="bind:orddd"/>
- <Cell col="6" text="bind:patnm"/>
- <Cell col="7" displaytype="date" text="bind:dschdd" calendardisplaynulltype="none" enable="false"/>
- <Cell col="8" text="bind:orddeptcd"/>
- <Cell col="9" text="bind:orddeptnm"/>
- <Cell col="10" text="bind:orddrid"/>
- <Cell col="11" style="align:left top;padding:5 2 1 2;" text="bind:diagcd" wordwrap="word"/>
- <Cell col="12" style="align:left top;padding:5 2 1 2;" text="bind:cncr_histno" wordwrap="word"/>
- <Cell col="13" style="align:left top;padding:5 2 1 2;" text="bind:icd10cd" wordwrap="word"/>
- <Cell col="14" style="align:left top;padding:5 2 1 2;" text="bind:serdiagno" wordwrap="word"/>
- <Cell col="15" displaytype="combo" edittype="combo" style="padding:1 2 1 2;" text="bind:cncrexptflag" combodataset="ds_cbo_cncrexptflag" combocodecol="value" combodatacol="label"/>
- <Cell col="16" displaytype="text" edittype="text" style="align:left top;padding:5 2 1 2;" text="bind:cncrexpt" wordwrap="word" editautoselect="true"/>
- <Cell col="17" displaytype="date" text="bind:dethdd" calendardisplaynulltype="none"/>
- <Cell col="18" displaytype="combo" text="bind:dethplcecd" combodataset="ds_main_common_M0173" combocodecol="cdid" combodatacol="cdnm"/>
- <Cell col="19" text="bind:dethcause"/>
- </Band>
- </Format>
- </Formats>
- </Grid>
- <Static text="~" position="absolute 486 14 498 31" id="caption60" class="search_no_b"/>
- <Radio position="absolute 107 39 537 56" id="radio1" class="radio_search" columncount="-1" rowcount="-1" codecolumn="codecolumn" datacolumn="datacolumn" style="textpadding:0 5 0 3;" onitemchanged="switch1_case1_radio1_onitemchanged">
- <Dataset id="innerdataset">
- <ColumnInfo>
- <Column id="codecolumn"/>
- <Column id="datacolumn"/>
- </ColumnInfo>
- <Rows>
- <Row>
- <Col id="codecolumn">1</Col>
- <Col id="datacolumn">암등록대상 LIST 조회</Col>
- </Row>
- <Row>
- <Col id="codecolumn">2</Col>
- <Col id="datacolumn">암등록환자조회</Col>
- </Row>
- <Row>
- <Col id="codecolumn">3</Col>
- <Col id="datacolumn">미등록자료</Col>
- </Row>
- <Row>
- <Col id="codecolumn">4</Col>
- <Col id="datacolumn">대상제외자료</Col>
- </Row>
- </Rows>
- </Dataset>
- </Radio>
- <Static text="조회옵션 :" position="absolute 20 40 106 57" id="caption49" class="search_name"/>
- <Button position="absolute 1072 68 1127 89" id="button15" class="btn7" text="엑셀" onclick="switch1_case1_button15_onclick"/>
- <Button position="absolute 1129 67 1185 89" id="button16" class="btn4" text="저장" onclick="switch1_case1_button16_onclick"/>
- <Static id="caption67" text="사망일자 :" class="search_name" position="absolute 650 38 736 55"/>
- <Calendar id="input29" taborder="1" class="input_search" position="absolute 740 37 840 56" autoselect="true"/>
- <Static id="caption66" text="~" class="search_no_b" position="absolute 843 38 855 55"/>
- <Calendar id="input30" taborder="2" class="input_search" position="absolute 855 37 955 56" autoselect="true"/>
- <CheckBox id="checkbox1" taborder="3" position="absolute 543 37 616 57" text="사망환자" onclick="switch1_case1_checkbox1_onclick"/>
- <Static id="cap_orddd" text="진료일자 :" class="search_name" position="absolute 284 14 370 31"/>
- </Layout>
- </Layouts>
- </Tabpage>
- <Tabpage text="암환자등록" position="absolute 0 0 1190 745" id="case2">
- <Layouts>
- <Layout>
- <Combo position="absolute 164 667 302 686" align="align:left middle;" id="cmb_regimen1" class="combo_default" innerdataset="@ds_main_common_M0182" datacolumn="cdnm" codecolumn="cdid" onitemchanged="switch1_case2_cmb_regimen1_onitemchanged"/>
- <Edit position="absolute 97 111 140 130" id="ipt_sex" class="input_default" autoselect="true"/>
- <Button position="absolute 1155 92 1171 108" id="button26" class="icon_search" text="" onclick="switch1_case2_button26_onclick"/>
- <Static text="진단일자" position="absolute 400 382 493 401" align="align:center middle;" id="caption223" class="cell_1"/>
- <Static text="암번호별 이력조회(History)" position="absolute 1 219 187 236" id="caption234" class="tit_2"/>
- <Edit position="absolute 143 111 186 130" id="ipt_age" class="input_default" autoselect="true"/>
- <Static text="진단병원" position="absolute 400 404 493 423" align="align:center middle;" id="caption224" class="cell_1"/>
- <Combo position="absolute 112 426 202 445" align="align:left middle;" id="cmb_sickstat" class="combo_essential" innerdataset="@ds_main_common_M0172" datacolumn="cdnm" codecolumn="cdid" onitemchanged="switch1_case2_cmb_sickstat_onitemchanged"/>
- <Combo position="absolute 164 689 302 708" align="align:left middle;" id="cmb_regimen2" class="combo_default" innerdataset="@ds_hidden_cncrpatrgst_rerntmetstaspart_regimen2" datacolumn="cdnm" codecolumn="cdid" onitemchanged="switch1_case2_cmb_regimen2_onitemchanged"/>
- <Edit position="absolute 567 111 622 130" id="ipt_zipcode1" class="input_default" autoselect="true"/>
- <Static text="기타진단병원" position="absolute 400 426 493 445" align="align:center middle;" id="caption225" class="cell_1"/>
- <Static text="직업" position="absolute 0 155 95 196" align="align:center middle;" id="caption40" class="cell_1"/>
- <Edit position="absolute 687 448 777 467" id="ipt_icd10cd" class="input_essential" autoselect="true" onkeydown="switch1_case2_ipt_icd10cd_onkeydown"/>
- <Edit position="absolute 624 111 679 130" id="ipt_zipcode2" class="input_default" autoselect="true"/>
- <Static text="M-Code" position="absolute 595 404 685 423" align="align:center middle;" id="caption41" class="cell_1"/>
- <Static text="퇴원일자" position="absolute 235 67 330 86" align="align:center middle;" id="caption30" class="cell_1"/>
- <Edit position="absolute 705 111 937 130" id="ipt_addr" class="input_default" autoselect="true"/>
- <Static text="환자상태 정보" position="absolute 1 361 147 378" id="caption216" class="tit_2"/>
- <Edit position="absolute 495 426 592 445" id="ipt_etcdiaghospnm" class="input_default" autoselect="true"/>
- <Static text="ECOG" position="absolute 0 645 110 664" align="align:center middle;" id="caption31" class="cell_1"/>
- <Edit position="absolute 567 177 702 196" id="ipt_hometel" class="input_default" autoselect="true"/>
- <Edit position="absolute 332 133 467 152" id="ipt_totinhospdayno" class="input_default" autoselect="true"/>
- <Static text="사망원인" position="absolute 205 426 305 445" align="align:center middle;" id="caption20" class="cell_1"/>
- <Edit position="absolute 1037 89 1092 108" id="input1" class="input_default" autoselect="true"/>
- <Shape position="absolute 598 550 1178 556" linetype="horizontal" id="line78" class="line_10"/>
- <Static text="M" position="absolute 972 426 1062 445" align="align:center middle;" id="caption32" class="cell_1"/>
- <Edit position="absolute 940 133 1172 152" id="ipt_detaddr" class="input_default" autoselect="true"/>
- <Static text="입원과담당교수" position="absolute 705 89 800 108" align="align:center middle;" id="caption21" class="cell_1"/>
- <Static text="전화번호" position="absolute 470 177 565 196" align="align:center middle;" id="caption10" class="cell_1"/>
- <Static text="N" position="absolute 972 404 1062 423" align="align:center middle;" id="caption1" class="cell_1"/>
- <Edit position="absolute 97 45 192 64" id="ipt_pid" class="input_essential" taborder="1" autoselect="true" onkeydown="switch1_case2_ipt_pid_onkeydown"/>
- <Static text="성명" position="absolute 0 67 95 86" align="align:center middle;" id="caption190" class="cell_1"/>
- <Edit position="absolute 1094 89 1149 108" id="input5" class="input_default" autoselect="true"/>
- <Edit position="absolute 940 111 1172 130" id="input8" class="input_default" autoselect="true"/>
- <Shape position="absolute 0 377 202 383" linetype="horizontal" id="line79" class="line_10"/>
- <Static text="전이부위2" position="absolute 0 579 110 598" align="align:center middle;" id="caption229" class="cell_1"/>
- <Static text="기타병기구분" position="absolute 972 470 1062 489" align="align:center middle;" id="caption44" class="cell_1"/>
- <Static text="입원일자" position="absolute 235 89 330 108" align="align:center middle;" id="caption33" class="cell_1"/>
- <Edit position="absolute 307 426 397 445" id="ipt_dethcascd" class="input_default" autoselect="true"/>
- <Static text="생존기간(년/월)" position="absolute 205 448 305 467" align="align:center middle;" id="caption22" class="cell_1"/>
- <Static text="사망일자" position="absolute 205 404 305 423" align="align:center middle;" id="caption11" class="cell_1"/>
- <Static text="외래진료과" position="absolute 470 45 565 64" align="align:center middle;" id="caption2" class="cell_1"/>
- <Shape position="absolute 0 40 937 46" linetype="horizontal" id="line69" class="line_10"/>
- <Static text="주민번호" position="absolute 0 89 95 108" align="align:center middle;" id="caption191" class="cell_1"/>
- <Edit position="absolute 97 89 162 108" id="ipt_rrgstno1" class="input_essential" autoselect="true"/>
- <Static text="다발성원발암 여부" position="absolute 0 404 111 423" align="align:center middle;" id="caption219" class="cell_1"/>
- <Static text="병기" position="absolute 972 448 1062 467" align="align:center middle;" id="caption34" class="cell_1"/>
- <Edit position="absolute 567 155 702 174" id="ipt_mpphontel" class="input_default" autoselect="true"/>
- <Edit position="absolute 687 404 757 423" id="ipt_morphcd1" class="input_essential" autoselect="true" onkeydown="switch1_case2_ipt_morphcd1_onkeydown"/>
- <Calendar position="absolute 307 404 397 423" id="ipt_dethdd" class="input_default" autoselect="true" onchanged="switch1_case2_ipt_dethdd_onchanged"/>
- <Static text="재원일수" position="absolute 235 133 330 152" align="align:center middle;" id="caption23" class="cell_1"/>
- <Static text="분화도" position="absolute 595 470 685 489" align="align:center middle;" id="caption12" class="cell_1"/>
- <Combo position="absolute 567 67 702 86" id="cmb_dschorddept" class="combo_default" innerdataset="ds_main_common_dsch_dschdeptlist_dept" datacolumn="depthngnm" codecolumn="deptcd" onitemchanged="switch1_case2_cmb_dschorddept_onitemchanged"/>
- <Static text="휴대전화" position="absolute 940 155 1035 174" align="align:center middle;" id="caption3" class="cell_1"/>
- <Static text="성별/나이/연대" position="absolute 0 111 95 130" align="align:center middle;" id="caption192" class="cell_1"/>
- <Combo position="absolute 112 404 202 423" id="cmb_prmycncryn" class="combo_default" codecolumn="codecolumn" datacolumn="datacolumn" onitemchanged="switch1_case2_cmb_prmycncryn_onitemchanged">
- <Dataset id="innerdataset">
- <ColumnInfo>
- <Column id="codecolumn"/>
- <Column id="datacolumn"/>
- </ColumnInfo>
- <Rows>
- <Row>
- <Col id="codecolumn">Y</Col>
- <Col id="datacolumn">Y</Col>
- </Row>
- <Row>
- <Col id="codecolumn">N</Col>
- <Col id="datacolumn">N</Col>
- </Row>
- </Rows>
- </Dataset>
- </Combo>
- <Static text="입원회차" position="absolute 235 111 330 130" align="align:center middle;" id="caption35" class="cell_1"/>
- <Static text="결혼" position="absolute 0 133 95 152" align="align:center middle;" id="caption24" class="cell_1"/>
- <Combo position="absolute 1084 382 1173 401" align="align:left middle;" id="cmb_t" class="combo_default" innerdataset="@ds_main_common_M0174" datacolumn="cdnm" codecolumn="cdid" onitemchanged="switch1_case2_cmb_t_onitemchanged"/>
- <Edit position="absolute 687 382 757 401" id="ipt_tophcd" class="input_essential" autoselect="true" onkeydown="switch1_case2_ipt_tophcd_onkeydown"/>
- <Static text="최종진단방법" position="absolute 0 490 111 509" align="align:center middle;" id="caption13" class="cell_1"/>
- <Static text="ICD-10" position="absolute 595 448 685 467" align="align:center middle;" id="caption4" class="cell_1"/>
- <Edit position="absolute 1037 177 1172 196" id="input9" class="input_default" autoselect="true"/>
- <Edit position="absolute 112 382 202 401" id="ipt_cncrno" class="input_default" autoselect="true"/>
- <Edit position="absolute 332 111 467 130" id="ipt_indg" class="input_default" autoselect="true"/>
- <Static text="외국인여부" position="absolute 235 155 330 174" align="align:center middle;" id="caption25" class="cell_1"/>
- <Combo position="absolute 1084 404 1173 423" align="align:left middle;" id="cmb_n" class="combo_default" innerdataset="@ds_main_common_M0393" datacolumn="cdnm" codecolumn="cdid" onitemchanged="switch1_case2_cmb_n_onitemchanged"/>
- <Static text="외래진료의" position="absolute 705 45 800 64" align="align:center middle;" id="caption5" class="cell_1"/>
- <Static text="주소" position="absolute 470 111 565 152" align="align:center middle;" id="caption194" class="cell_1"/>
- <Combo position="absolute 567 45 702 64" id="cmb_outorddept" class="combo_default" innerdataset="ds_main_common_out_outdeptlist_dept" datacolumn="depthngnm" codecolumn="deptcd" onitemchanged="switch1_case2_cmb_outorddept_onitemchanged"/>
- <Static text="Regimen1" position="absolute 0 667 110 686" align="align:center middle;" id="caption26" class="cell_1"/>
- <Combo position="absolute 1084 426 1173 445" align="align:left middle;" id="cmb_m" class="combo_default" innerdataset="@ds_main_common_M0175" datacolumn="cdnm" codecolumn="cdid" onitemchanged="switch1_case2_cmb_m_onitemchanged"/>
- <Static text="입원과" position="absolute 470 89 565 108" align="align:center middle;" id="caption15" class="cell_1"/>
- <Static text="T" position="absolute 972 382 1062 401" align="align:center middle;" id="caption38" class="cell_1"/>
- <Combo position="absolute 802 45 937 64" id="cmb_outorddr" class="combo_default" innerdataset="ds_hidden_pathumtrainfo_cncrpatinfo_outorddr_user" datacolumn="usernm" codecolumn="userid"/>
- <Static text="Seer" position="absolute 595 492 685 511" align="align:center middle;" id="caption27" class="cell_1"/>
- <Combo position="absolute 97 155 232 174" id="cmb_job1" class="combo_default" innerdataset="@ds_main_common_M0149" datacolumn="cdnm" codecolumn="cdid"/>
- <Edit position="absolute 567 133 937 152" id="input10" class="input_default" autoselect="true"/>
- <Static text="휴대전화" position="absolute 470 155 565 174" align="align:center middle;" id="caption16" class="cell_1"/>
- <Static text="사망장소" position="absolute 205 382 305 401" align="align:center middle;" id="caption7" class="cell_1"/>
- <Calendar position="absolute 495 382 592 401" id="ipt_diagdd" class="input_essential" autoselect="true" onchanged="switch1_case2_ipt_diagdd_onchanged"/>
- <Static text="행려환자" position="absolute 235 177 330 196" align="align:center middle;" id="caption39" class="cell_1"/>
- <Combo position="absolute 567 89 702 108" id="cmb_inorddept" class="combo_default" innerdataset="ds_main_common_in_indeptlist_dept" datacolumn="depthngnm" codecolumn="deptcd" onitemchanged="switch1_case2_cmb_inorddept_onitemchanged"/>
- <Static text="외래진료일자" position="absolute 235 45 330 64" align="align:center middle;" id="caption28" class="cell_1"/>
- <Edit position="absolute 1037 155 1172 174" id="input11" class="input_default" autoselect="true"/>
- <Combo position="absolute 1084 448 1173 467" align="align:left middle;" id="cmb_staging" class="combo_default" innerdataset="@ds_main_common_M0176" datacolumn="cdnm" codecolumn="cdid" onitemchanged="switch1_case2_cmb_staging_onitemchanged"/>
- <Calendar position="absolute 112 448 202 467" id="ipt_cureopendd" class="input_default" autoselect="true" onchanged="switch1_case2_ipt_cureopendd_onchanged"/>
- <Static text="치료개시일자" position="absolute 0 448 111 467" align="align:center middle;" id="caption17" class="cell_1"/>
- <Static text="T-Code" position="absolute 595 382 685 401" align="align:center middle;" id="caption8" class="cell_1"/>
- <Static text="전이부위3" position="absolute 0 601 110 620" align="align:center middle;" id="caption230" class="cell_1"/>
- <Static text="본원치료방법" position="absolute 598 534 780 550" id="caption241" class="tit_2"/>
- <Combo position="absolute 802 89 937 108" id="cmb_inorddr" class="combo_default" innerdataset="ds_hidden_pathumtrainfo_cncrpatinfo_inorddr_user" datacolumn="usernm" codecolumn="userid"/>
- <Static text="Regimen2" position="absolute 0 689 110 708" align="align:center middle;" id="caption29" class="cell_1"/>
- <Combo position="absolute 802 67 937 86" id="cmb_dschorddr" class="combo_default" innerdataset="ds_hidden_pathumtrainfo_cncrpatinfo_dschorddr_user" datacolumn="usernm" codecolumn="userid"/>
- <Static text="퇴원과" position="absolute 470 67 565 86" align="align:center middle;" id="caption9" class="cell_1"/>
- <Static text="환자정보" position="absolute 1 24 96 41" id="caption187" class="tit_2"/>
- <Edit position="absolute 97 67 232 86" id="ipt_patnm" class="input_essential" autoselect="true"/>
- <Static text="암등록번호" position="absolute 0 382 111 401" align="align:center middle;" id="caption220" class="cell_1"/>
- <Static text="전이부위4" position="absolute 0 623 110 642" align="align:center middle;" id="caption231" class="cell_1"/>
- <Shape position="absolute 0 235 593 241" linetype="horizontal" id="line81" class="line_10"/>
- <Combo position="absolute 164 645 302 664" align="align:left middle;" id="cmb_ecog" class="combo_default" innerdataset="@ds_main_common_M0320" datacolumn="cdnm" codecolumn="cdid" onitemchanged="switch1_case2_cmb_ecog_onitemchanged"/>
- <Static text="퇴원과담당교수" position="absolute 705 67 800 86" align="align:center middle;" id="caption19" class="cell_1"/>
- <Edit position="absolute 307 448 352 467" id="ipt_yearcnt" class="input_default" autoselect="true"/>
- <Static text="원격전이부위" position="absolute 1 536 182 553" id="caption188" class="tit_2"/>
- <Button position="absolute 214 47 230 63" id="btn_rgstpid" class="icon_search" text="" onclick="switch1_case2_btn_rgstpid_onclick"/>
- <Static text="등록시 질병상태" position="absolute 0 426 111 445" align="align:center middle;" id="caption221" class="cell_1"/>
- <Combo position="absolute 332 155 467 174" id="cmb_forgnerflag" class="combo_default" codecolumn="codecolumn" datacolumn="datacolumn">
- <Dataset id="innerdataset">
- <ColumnInfo>
- <Column id="codecolumn"/>
- <Column id="datacolumn"/>
- </ColumnInfo>
- <Rows>
- <Row>
- <Col id="codecolumn">N</Col>
- <Col id="datacolumn">내국인</Col>
- </Row>
- <Row>
- <Col id="codecolumn">Y</Col>
- <Col id="datacolumn">외국인</Col>
- </Row>
- <Row>
- <Col id="codecolumn">X</Col>
- <Col id="datacolumn">불명</Col>
- </Row>
- </Rows>
- </Dataset>
- </Combo>
- <Grid position="absolute 0 240 593 340" id="grd_cncrhist" binddataset="ds_main_humaninfo_cncrhist_histlist" oncelldblclick="switch1_case2_grd_cncrhist_oncelldblclick" cellclickbound="control">
- <Formats>
- <Format id="default">
- <Columns>
- <Column size="24"/>
- <Column size="0"/>
- <Column size="0"/>
- <Column size="0"/>
- <Column size="100"/>
- <Column size="0"/>
- <Column size="0"/>
- <Column size="0"/>
- <Column size="70"/>
- <Column size="100"/>
- <Column size="100"/>
- <Column size="100"/>
- <Column size="100"/>
- <Column size="100"/>
- <Column size="100"/>
- <Column size="100"/>
- <Column size="0"/>
- <Column size="0"/>
- <Column size="0"/>
- <Column size="0"/>
- <Column size="0"/>
- <Column size="0"/>
- <Column size="0"/>
- <Column size="0"/>
- <Column size="0"/>
- <Column size="0"/>
- <Column size="0"/>
- <Column size="0"/>
- <Column size="0"/>
- <Column size="0"/>
- <Column size="0"/>
- <Column size="0"/>
- <Column size="0"/>
- <Column size="0"/>
- <Column size="0"/>
- <Column size="0"/>
- <Column size="0"/>
- <Column size="0"/>
- <Column size="0"/>
- <Column size="0"/>
- <Column size="0"/>
- <Column size="0"/>
- <Column size="0"/>
- <Column size="0"/>
- <Column size="0"/>
- <Column size="0"/>
- <Column size="0"/>
- <Column size="0"/>
- <Column size="0"/>
- <Column size="0"/>
- <Column size="0"/>
- <Column size="0"/>
- <Column size="0"/>
- <Column size="0"/>
- <Column size="0"/>
- <Column size="0"/>
- <Column size="0"/>
- <Column size="0"/>
- <Column size="0"/>
- <Column size="0"/>
- <Column size="0"/>
- <Column size="0"/>
- <Column size="0"/>
- <Column size="0"/>
- <Column size="0"/>
- <Column size="0"/>
- <Column size="0"/>
- <Column size="0"/>
- <Column size="0"/>
- <Column size="0"/>
- <Column size="0"/>
- <Column size="0"/>
- <Column size="0"/>
- <Column size="0"/>
- <Column size="0"/>
- <Column size="0"/>
- <Column size="0"/>
- <Column size="0"/>
- <Column size="0"/>
- <Column size="0"/>
- <Column size="0"/>
- <Column size="0"/>
- <Column size="0"/>
- <Column size="0"/>
- <Column size="0"/>
- <Column size="0"/>
- <Column size="0"/>
- <Column size="0"/>
- <Column size="0"/>
- <Column size="0"/>
- <Column size="0"/>
- <Column size="0"/>
- <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="T-CODE"/>
- <Cell col="10" text="M-CODE1"/>
- <Cell col="11" text="M-CODE2"/>
- <Cell col="12" text="진단일자"/>
- <Cell col="13" text="ICD-10"/>
- <Cell col="14" text="퇴원일자"/>
- <Cell col="15" text="외래진료일자"/>
- <Cell col="16" text="입원회차"/>
- <Cell col="17" text="재원일수"/>
- <Cell col="18" text="환자이름"/>
- <Cell col="19" text="주민번호1"/>
- <Cell col="20" text="주민번호2"/>
- <Cell col="21" text="연대"/>
- <Cell col="22" text="성별"/>
- <Cell col="23" text="나이"/>
- <Cell col="24" text="전화번호"/>
- <Cell col="25" text="휴대전화"/>
- <Cell col="26" text="우편번호1"/>
- <Cell col="27" text="우편번호2"/>
- <Cell col="28" text="주소"/>
- <Cell col="29" text="상세주소"/>
- <Cell col="30" text="결혼여부"/>
- <Cell col="31" text="외국인여부"/>
- <Cell col="32" text="직업1"/>
- <Cell col="33" text="기타직업"/>
- <Cell col="34" text="연고자성명"/>
- <Cell col="35" text="관계"/>
- <Cell col="36" text="연고자우편번호1"/>
- <Cell col="37" text="연고자우편번호2"/>
- <Cell col="38" text="연고자주소"/>
- <Cell col="39" text="연고자상세주소"/>
- <Cell col="40" text="연고자전화번호"/>
- <Cell col="41" text="연고자휴대전화"/>
- <Cell col="42" text="행려환자구분"/>
- <Cell col="43" text="다발성원발암여부"/>
- <Cell col="44" text="질병상태"/>
- <Cell col="45" text="치료개시일자"/>
- <Cell col="46" text="사망장소"/>
- <Cell col="47" text="사망일자"/>
- <Cell col="48" text="사망원인"/>
- <Cell col="49" text="생존기간(년)"/>
- <Cell col="50" text="생존기간(월)"/>
- <Cell col="51" text="진단병원"/>
- <Cell col="52" text="기타진단병원"/>
- <Cell col="53" text="진단담당의ID"/>
- <Cell col="54" text="진단담당의"/>
- <Cell col="55" text="최종진단방법"/>
- <Cell col="56" text="임상검사"/>
- <Cell col="57" text="임상검사기타내용"/>
- <Cell col="58" text="외래진료과"/>
- <Cell col="59" text="외래진료의"/>
- <Cell col="60" text="입원일자"/>
- <Cell col="61" text="입원진료과"/>
- <Cell col="62" text="입원진료의"/>
- <Cell col="63" text="퇴원과"/>
- <Cell col="64" text="퇴원진료의"/>
- <Cell col="65" text="T-SEQNO"/>
- <Cell col="66" text="T-CODENM"/>
- <Cell col="67" text="M-SEQNO1"/>
- <Cell col="68" text="M-CODE1NM"/>
- <Cell col="69" text="M-SEQNO2"/>
- <Cell col="70" text="M-CODE2NM"/>
- <Cell col="71" text="ICD10명"/>
- <Cell col="72" text="분화도"/>
- <Cell col="73" text="SEER"/>
- <Cell col="74" text="T"/>
- <Cell col="75" text="N"/>
- <Cell col="76" text="M"/>
- <Cell col="77" text="병기"/>
- <Cell col="78" text="기타병기구분"/>
- <Cell col="79" text="기타병기내용"/>
- <Cell col="80" text="전이부위1"/>
- <Cell col="81" text="전이부위순번1"/>
- <Cell col="82" text="전이부위2"/>
- <Cell col="83" text="전이부위순번2"/>
- <Cell col="84" text="전이부위3"/>
- <Cell col="85" text="전위부위순번3"/>
- <Cell col="86" text="전이부위4"/>
- <Cell col="87" text="전이부위순번4"/>
- <Cell col="88" text="ECOG"/>
- <Cell col="89" text="REGIMEN1"/>
- <Cell col="90" text="REGIMEN2"/>
- <Cell col="91" text="최초등록자ID"/>
- <Cell col="92" text="최초등록자"/>
- <Cell col="93" text="최초등록일시"/>
- <Cell col="94" text="최종등록자ID"/>
- <Cell col="95" text="최종등록자"/>
- <Cell col="96" text="최종수정일시"/>
- <Cell col="97" text="진단경로"/>
- <Cell col="98" text="편측성"/>
- <Cell col="99" text="진단명(기타)"/>
- </Band>
- <Band id="body">
- <Cell celltype="head" expr="expr:currow + 1"/>
- <Cell col="1" text="bind:cncrno" enable="false"/>
- <Cell col="2" text="bind:cncrhistno" enable="false"/>
- <Cell col="3" text="bind:seqno" enable="false"/>
- <Cell col="4" style="align:left middle;" text="bind:cncr_histno" enable="false"/>
- <Cell col="5" text="bind:instcd" enable="false"/>
- <Cell col="6" text="bind:pid" enable="false"/>
- <Cell col="7" text="bind:cretno" enable="false"/>
- <Cell col="8" displaytype="combo" edittype="combo" style="padding:1 2 1 2;" text="bind:ordtype" combodataset="ds_cbo_ordtype2" combocodecol="value" combodatacol="label" enable="false"/>
- <Cell col="9" style="align:left top;padding:5 2 1 2;" text="bind:tophcd" wordwrap="word" enable="false"/>
- <Cell col="10" style="align:left top;padding:5 2 1 2;" text="bind:morphcd1" wordwrap="word" enable="false"/>
- <Cell col="11" style="align:left top;padding:5 2 1 2;" text="bind:morphcd2" wordwrap="word" enable="false"/>
- <Cell col="12" displaytype="date" text="bind:diagdd" calendardisplaynulltype="none" enable="false"/>
- <Cell col="13" style="align:left top;padding:5 2 1 2;" text="bind:icd10cd" wordwrap="word" enable="false"/>
- <Cell col="14" displaytype="date" text="bind:dschdd" calendardisplaynulltype="none" enable="false"/>
- <Cell col="15" displaytype="date" text="bind:orddd" calendardisplaynulltype="none" enable="false"/>
- <Cell col="16" text="bind:indg" enable="false"/>
- <Cell col="17" text="bind:totinhospdayno" enable="false"/>
- <Cell col="18" text="bind:pnm" enable="false"/>
- <Cell col="19" text="bind:rrgstno1" enable="false"/>
- <Cell col="20" text="bind:rrgstno2" enable="false"/>
- <Cell col="21" text="bind:epoch" enable="false"/>
- <Cell col="22" text="bind:sex" enable="false"/>
- <Cell col="23" text="bind:age" enable="false"/>
- <Cell col="24" text="bind:hometel" enable="false"/>
- <Cell col="25" text="bind:mpphontel" enable="false"/>
- <Cell col="26" text="bind:zipcode1" enable="false"/>
- <Cell col="27" text="bind:zipcode2" enable="false"/>
- <Cell col="28" text="bind:addr" enable="false"/>
- <Cell col="29" text="bind:detaddr" enable="false"/>
- <Cell col="30" displaytype="combo" edittype="combo" text="bind:maryflag" enable="false"/>
- <Cell col="31" text="bind:forgnerflag" enable="false"/>
- <Cell col="32" text="bind:job1" enable="false"/>
- <Cell col="33" text="bind:etcjob" enable="false"/>
- <Cell col="34" text="bind:reluserhngnm" enable="false"/>
- <Cell col="35" text="bind:relation" enable="false"/>
- <Cell col="36" text="bind:relzipcd1" enable="false"/>
- <Cell col="37" text="bind:relzipcd2" enable="false"/>
- <Cell col="38" text="bind:refaddr" enable="false"/>
- <Cell col="39" text="bind:reldetaddr" enable="false"/>
- <Cell col="40" text="bind:relhometel" enable="false"/>
- <Cell col="41" text="bind:relmpphontel" enable="false"/>
- <Cell col="42" text="bind:travoflag" enable="false"/>
- <Cell col="43" text="bind:prmycncryn" enable="false"/>
- <Cell col="44" text="bind:sickstatcd" enable="false"/>
- <Cell col="45" text="bind:cureopendd" mask="yyyy-mm-dd" enable="false"/>
- <Cell col="46" text="bind:dethplcecd" enable="false"/>
- <Cell col="47" text="bind:dethdd" mask="yyyy-mm-dd" enable="false"/>
- <Cell col="48" text="bind:dethcause" enable="false"/>
- <Cell col="49" text="bind:yearcnt" enable="false"/>
- <Cell col="50" text="bind:monthcnt" enable="false"/>
- <Cell col="51" text="bind:diaghospcd" enable="false"/>
- <Cell col="52" text="bind:etcdiaghospnm" enable="false"/>
- <Cell col="53" text="bind:diagdrid" enable="false"/>
- <Cell col="54" text="bind:diagdrnm" enable="false"/>
- <Cell col="55" text="bind:lastdiagmthdcd" enable="false"/>
- <Cell col="56" text="bind:clinical" enable="false"/>
- <Cell col="57" text="bind:etcclinical" enable="false"/>
- <Cell col="58" text="bind:outorddept" enable="false"/>
- <Cell col="59" text="bind:outorddr" enable="false"/>
- <Cell col="60" text="bind:indd" mask="yyyy-mm-dd" enable="false"/>
- <Cell col="61" text="bind:inorddept" enable="false"/>
- <Cell col="62" text="bind:inorddr" enable="false"/>
- <Cell col="63" text="bind:dschorddept" enable="false"/>
- <Cell col="64" text="bind:dschorddr" enable="false"/>
- <Cell col="65" text="bind:tophseqno" enable="false"/>
- <Cell col="66" text="bind:tophnm" enable="false"/>
- <Cell col="67" text="bind:morphseqno1" enable="false"/>
- <Cell col="68" text="bind:morphnm1" enable="false"/>
- <Cell col="69" text="bind:morphseqno2" enable="false"/>
- <Cell col="70" text="bind:morphnm2" enable="false"/>
- <Cell col="71" text="bind:icd10nm" enable="false"/>
- <Cell col="72" text="bind:difrntgrdecd" enable="false"/>
- <Cell col="73" text="bind:seer" enable="false"/>
- <Cell col="74" text="bind:t" enable="false"/>
- <Cell col="75" text="bind:n" enable="false"/>
- <Cell col="76" text="bind:m" enable="false"/>
- <Cell col="77" text="bind:stagingcd" enable="false"/>
- <Cell col="78" text="bind:etcstagflagcd" enable="false"/>
- <Cell col="79" text="bind:etcstagcnts" enable="false"/>
- <Cell col="80" text="bind:rerntmetstaspartcd1" enable="false"/>
- <Cell col="81" text="bind:rerntmetstaspartseq1" enable="false"/>
- <Cell col="82" text="bind:rerntmetstaspartcd2" enable="false"/>
- <Cell col="83" text="bind:rerntmetstaspartseq2" enable="false"/>
- <Cell col="84" text="bind:rerntmetstaspartcd3" enable="false"/>
- <Cell col="85" text="bind:rerntmetstaspartseq3" enable="false"/>
- <Cell col="86" text="bind:rerntmetstaspartcd4" enable="false"/>
- <Cell col="87" text="bind:rerntmetstaspartseq4" enable="false"/>
- <Cell col="88" text="bind:ecog" enable="false"/>
- <Cell col="89" text="bind:regimen1" enable="false"/>
- <Cell col="90" text="bind:regimen2" enable="false"/>
- <Cell col="91" text="bind:fstrgstrid" enable="false"/>
- <Cell col="92" text="bind:fstrgstrnm" enable="false"/>
- <Cell col="93" text="bind:fstrgstdt" mask="yyyy-mm-dd hh:mi:ss" enable="false"/>
- <Cell col="94" text="bind:lastupdtrid" enable="false"/>
- <Cell col="95" text="bind:lastrgstrnm" enable="false"/>
- <Cell col="96" text="bind:lastupdtdt" enable="false"/>
- <Cell col="97" text="bind:diagroute" enable="false"/>
- <Cell col="98" text="bind:laterality" enable="false"/>
- <Cell col="99" text="bind:etcdiagroute" enable="false"/>
- </Band>
- </Format>
- </Formats>
- </Grid>
- <Static text="등록번호" position="absolute 0 45 95 64" align="align:center middle;" id="caption189" class="cell_1"/>
- <Static text="연고자주소" position="absolute 940 89 1035 108" align="align:center middle;" id="caption200" class="cell_1"/>
- <Button position="absolute 683 114 699 130" id="button25" class="icon_search" text="" onclick="switch1_case2_button25_onclick"/>
- <Static text="전화번호" position="absolute 940 177 1035 196" align="align:center middle;" id="caption211" class="cell_1"/>
- <Static text="전이부위1" position="absolute 0 557 110 576" align="align:center middle;" id="caption233" class="cell_1"/>
- <Shape position="absolute 0 552 302 558" linetype="horizontal" id="line83" class="line_10"/>
- <Button position="absolute 1059 1 1115 23" id="button5" class="btn4" text="삭제" onclick="switch1_case2_button5_onclick"/>
- <Static text="중증등록환자정보" position="absolute 595 219 741 237" id="caption45" class="tit_2"/>
- <Edit position="absolute 1037 45 1172 64" id="ipt_relausernm" class="input_default" autoselect="true"/>
- <Static text="연고자성명" position="absolute 940 45 1035 64" align="align:center middle;" id="caption101" class="cell_1"/>
- <Static text="관계" position="absolute 940 67 1035 86" align="align:center middle;" id="caption102" class="cell_1"/>
- <Combo position="absolute 1037 67 1172 86" id="cmb_relation" class="combo_default" innerdataset="@ds_main_common_M0072" datacolumn="cdnm" codecolumn="cdid"/>
- <Combo position="absolute 739 492 969 511" align="align:left middle;" id="cmb_seer" class="combo_essential" innerdataset="@ds_main_common_M0184" datacolumn="cdnm" codecolumn="cdid" onitemchanged="switch1_case2_cmb_seer_onitemchanged"/>
- <Combo position="absolute 739 470 969 489" align="align:left middle;" id="cmb_difrntgrde" class="input_essential" innerdataset="@ds_main_common_M0183" datacolumn="cdnm" codecolumn="cdid" onitemchanged="switch1_case2_cmb_difrntgrde_onitemchanged"/>
- <Combo position="absolute 307 382 397 401" align="align:left middle;" id="cmb_dethplce" class="combo_default" innerdataset="@ds_main_common_M0173" datacolumn="cdnm" codecolumn="cdid"/>
- <Combo position="absolute 112 490 202 509" id="cmb_lastdiagmthd" class="combo_essential" innerdataset="@ds_main_common_M0179" datacolumn="cdnm" codecolumn="cdid" onitemchanged="switch1_case2_cmb_lastdiagmthd_onitemchanged"/>
- <Shape position="absolute 596 235 1180 241" linetype="horizontal" id="line6" class="line_10"/>
- <Shape position="absolute 205 377 397 383" linetype="horizontal" id="line7" class="line_10"/>
- <Static text="등록구분" position="absolute 0 470 111 489" align="align:center middle;" id="caption97" class="cell_1"/>
- <Edit position="absolute 352 448 397 467" id="ipt_monthcnt" class="input_default" autoselect="true"/>
- <Static text="사망정보" position="absolute 205 361 351 378" id="caption98" class="tit_2"/>
- <Static text="진단정보" position="absolute 400 361 546 378" id="caption99" class="tit_2"/>
- <Static text="M-Code2" position="absolute 595 511 685 530" align="align:center middle;" id="caption100" class="cell_1" visible="false"/>
- <Edit position="absolute 687 511 757 530" id="ipt_morphcd2" class="input_essential" visible="false" autoselect="true" onkeydown="switch1_case2_ipt_morphcd2_onkeydown"/>
- <Shape position="absolute 400 377 1173 383" linetype="horizontal" id="line9" class="line_10"/>
- <Static text="기타병기내용" position="absolute 972 492 1062 511" align="align:center middle;" id="caption103" class="cell_1"/>
- <Static text="내원전치료" position="absolute 307 534 488 550" id="caption113" class="tit_2"/>
- <Shape position="absolute 306 550 594 556" linetype="horizontal" id="line8" class="line_10"/>
- <Edit position="absolute 779 448 969 467" id="ipt_icd10nm" class="input_essential" autoselect="true"/>
- <Edit position="absolute 687 470 737 489" id="ipt_difrntgrdecd" class="input_essential" autoselect="true" onkeydown="switch1_case2_ipt_difrntgrdecd_onkeydown"/>
- <Edit position="absolute 687 492 737 511" id="ipt_seercd" class="input_essential" autoselect="true" onkeydown="switch1_case2_ipt_seercd_onkeydown"/>
- <Edit position="absolute 1063 382 1083 401" id="ipt_tcd" class="input_default" autoselect="true" onkeydown="switch1_case2_ipt_tcd_onkeydown"/>
- <Edit position="absolute 1063 404 1083 423" id="ipt_ncd" class="input_default" autoselect="true" onkeydown="switch1_case2_ipt_ncd_onkeydown"/>
- <Edit position="absolute 1063 426 1083 445" id="ipt_mcd" class="input_default" autoselect="true" onkeydown="switch1_case2_ipt_mcd_onkeydown"/>
- <Edit position="absolute 1063 448 1083 467" id="ipt_stagcd" class="input_default" autoselect="true" onkeydown="switch1_case2_ipt_stagcd_onkeydown"/>
- <Edit position="absolute 1063 470 1083 489" id="ipt_etcstagflagcd" class="input_default" autoselect="true" onkeydown="switch1_case2_ipt_etcstagflagcd_onkeydown"/>
- <Edit position="absolute 1063 492 1173 511" id="ipt_etcstagcnts" class="input_default" autoselect="true"/>
- <Edit position="absolute 112 557 162 576" id="ipt_rerntmetstaspartcd1" class="input_default" autoselect="true" onkeydown="switch1_case2_ipt_rerntmetstaspartcd1_onkeydown"/>
- <Edit position="absolute 112 579 162 598" id="ipt_rerntmetstaspartcd2" class="input_default" autoselect="true" onkeydown="switch1_case2_ipt_rerntmetstaspartcd2_onkeydown"/>
- <Edit position="absolute 112 601 162 620" id="ipt_rerntmetstaspartcd3" class="input_default" autoselect="true" onkeydown="switch1_case2_ipt_rerntmetstaspartcd3_onkeydown"/>
- <Edit position="absolute 112 623 162 642" id="ipt_rerntmetstaspartcd4" class="input_default" autoselect="true" onkeydown="switch1_case2_ipt_rerntmetstaspartcd4_onkeydown"/>
- <Edit position="absolute 112 645 162 664" id="ipt_ecogcd" class="input_default" autoselect="true" onkeydown="switch1_case2_ipt_ecogcd_onkeydown"/>
- <Edit position="absolute 112 667 162 686" id="ipt_regimencd1" class="input_default" autoselect="true" onkeydown="switch1_case2_ipt_regimencd1_onkeydown"/>
- <Edit position="absolute 112 689 162 708" id="ipt_regimencd2" class="input_default" autoselect="true" onkeydown="switch1_case2_ipt_regimencd2_onkeydown"/>
- <Radio position="absolute 112 470 200 490" id="rdo_flag" columncount="3" rowcount="1" codecolumn="codecolumn" datacolumn="datacolumn" onitemchanged="switch1_case2_rdo_flag_onitemchanged">
- <Dataset id="innerdataset">
- <ColumnInfo>
- <Column id="codecolumn"/>
- <Column id="datacolumn"/>
- </ColumnInfo>
- <Rows>
- <Row>
- <Col id="codecolumn">1</Col>
- <Col id="datacolumn">1차</Col>
- </Row>
- <Row>
- <Col id="codecolumn">2</Col>
- <Col id="datacolumn">추적</Col>
- </Row>
- </Rows>
- </Dataset>
- </Radio>
- <Button position="absolute 1117 1 1173 23" id="button1" class="btn4" text="저장" onclick="switch1_case2_button1_onclick"/>
- <Button position="absolute 987 1 1055 23" id="button3" class="btn4" text="초기화" onclick="switch1_case2_button3_onclick"/>
- <Static text="연고자정보" position="absolute 940 24 1054 42" id="caption14" class="tit_2"/>
- <Shape position="absolute 940 40 1172 46" linetype="horizontal" id="line1" class="line_10"/>
- <Grid position="absolute 595 240 1180 340" id="datagrid2" binddataset="ds_main_humaninfo_doainfo_list" cellclickbound="control" selecttype="row" autoenter="none" readonly="false">
- <Formats>
- <Format id="default">
- <Columns>
- <Column size="24"/>
- <Column size="79"/>
- <Column size="70"/>
- <Column size="54"/>
- <Column size="159"/>
- <Column size="100"/>
- <Column size="100"/>
- <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="진단확정일"/>
- </Band>
- <Band id="body">
- <Cell celltype="head" expr="expr:currow + 1"/>
- <Cell col="1" style="align:left top;padding:5 2 1 2;" text="bind:serdiagno"/>
- <Cell col="2" displaytype="text" edittype="none" text="bind:pid"/>
- <Cell col="3" edittype="none" text="bind:hngnm"/>
- <Cell col="4" style="align:left top;padding:5 2 1 2;" text="bind:strcnfmmthd" wordwrap="word"/>
- <Cell col="5" style="align:left top;padding:5 2 1 2;" text="bind:maindiagcd" wordwrap="word"/>
- <Cell col="6" style="align:left top;padding:5 2 1 2;" text="bind:healcarediagcd" wordwrap="word"/>
- <Cell col="7" style="align:left top;padding:5 2 1 2;" text="bind:edidiagcd" wordwrap="word"/>
- <Cell col="8" displaytype="date" text="bind:genrdd" calendardisplaynulltype="none"/>
- <Cell col="9" displaytype="date" text="bind:cncrdiagcnfmdd" calendardisplaynulltype="none"/>
- </Band>
- </Format>
- </Formats>
- </Grid>
- <Edit position="absolute 164 89 232 108" id="ipt_rrgstno2" class="input_essential" autoselect="true" onkillfocus="switch1_case2_ipt_rrgstno2_onkillfocus"/>
- <Radio position="absolute 332 177 467 196" id="rdo_travoflag" columncount="2" rowcount="1" codecolumn="codecolumn" datacolumn="datacolumn">
- <Dataset id="innerdataset">
- <ColumnInfo>
- <Column id="codecolumn"/>
- <Column id="datacolumn"/>
- </ColumnInfo>
- <Rows>
- <Row>
- <Col id="codecolumn">Y</Col>
- <Col id="datacolumn">Y</Col>
- </Row>
- <Row>
- <Col id="codecolumn">N</Col>
- <Col id="datacolumn">N</Col>
- </Row>
- </Rows>
- </Dataset>
- </Radio>
- <Grid position="absolute 600 205 1180 265" id="datagrid4" visible="false" binddataset="ds_main_humaninfo_outpatinfo_patlist">
- <Formats>
- <Format id="default">
- <Columns>
- <Column size="24"/>
- <Column size="50"/>
- <Column size="50"/>
- <Column size="50"/>
- <Column size="50"/>
- <Column size="49"/>
- <Column size="50"/>
- <Column size="50"/>
- <Column size="50"/>
- <Column size="50"/>
- <Column size="0"/>
- <Column size="50"/>
- <Column size="50"/>
- <Column size="50"/>
- <Column size="50"/>
- <Column size="50"/>
- <Column size="50"/>
- <Column size="50"/>
- <Column size="50"/>
- <Column size="50"/>
- <Column size="50"/>
- </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="주민번호1"/>
- <Cell col="5" text="주민번호2"/>
- <Cell col="6" text="성별"/>
- <Cell col="7" text="나이"/>
- <Cell col="8" text="결혼"/>
- <Cell col="9" text="우편번호1"/>
- <Cell col="10" text="우편번호2"/>
- <Cell col="11" text="주소1"/>
- <Cell col="12" text="주소2"/>
- <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="직업1"/>
- </Band>
- <Band id="body">
- <Cell celltype="head" expr="expr:currow + 1"/>
- <Cell col="1" text="bind:pid"/>
- <Cell col="2" text="bind:cretno"/>
- <Cell col="3" text="bind:pnm"/>
- <Cell col="4" text="bind:rrgstno1"/>
- <Cell col="5" text="bind:rrgstno2"/>
- <Cell col="6" text="bind:sex"/>
- <Cell col="7" text="bind:age"/>
- <Cell col="8" text="bind:maryflag"/>
- <Cell col="9" text="bind:zipcode1"/>
- <Cell col="10" text="bind:zipcode2"/>
- <Cell col="11" text="bind:addr"/>
- <Cell col="12" text="bind:detaddr"/>
- <Cell col="13" text="bind:hometel"/>
- <Cell col="14" text="bind:mpphontel"/>
- <Cell col="15" text="bind:orddd"/>
- <Cell col="16" text="bind:outorddept"/>
- <Cell col="17" text="bind:outorddr"/>
- <Cell col="18" text="bind:forgnerflag"/>
- <Cell col="19" text="bind:travoflag"/>
- <Cell col="20" text="bind:job1"/>
- </Band>
- </Format>
- </Formats>
- </Grid>
- <Grid position="absolute 70 210 580 275" id="datagrid5" visible="false" binddataset="ds_main_humaninfo_inpatinfo_patlist">
- <Formats>
- <Format id="default">
- <Columns>
- <Column size="24"/>
- <Column size="50"/>
- <Column size="50"/>
- <Column size="50"/>
- <Column size="50"/>
- <Column size="50"/>
- <Column size="50"/>
- <Column size="50"/>
- <Column size="50"/>
- <Column size="50"/>
- <Column size="50"/>
- <Column size="50"/>
- <Column size="50"/>
- <Column size="50"/>
- <Column size="50"/>
- <Column size="50"/>
- <Column size="50"/>
- <Column size="50"/>
- <Column size="50"/>
- <Column size="50"/>
- <Column size="50"/>
- <Column size="50"/>
- <Column size="50"/>
- <Column size="50"/>
- <Column size="50"/>
- <Column size="50"/>
- <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="주민번호1"/>
- <Cell col="5" text="주민번호2"/>
- <Cell col="6" text="성별"/>
- <Cell col="7" text="나이"/>
- <Cell col="8" text="결혼"/>
- <Cell col="9" text="우편번호1"/>
- <Cell col="10" text="우편번호2"/>
- <Cell col="11" text="주소1"/>
- <Cell col="12" text="주소2"/>
- <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="직업1"/>
- <Cell col="26" text="기타직업"/>
- </Band>
- <Band id="body">
- <Cell celltype="head" expr="expr:currow + 1"/>
- <Cell col="1" text="bind:pid"/>
- <Cell col="2" text="bind:cretno"/>
- <Cell col="3" text="bind:pnm"/>
- <Cell col="4" text="bind:rrgstno1"/>
- <Cell col="5" text="bind:rrgstno2"/>
- <Cell col="6" text="bind:sex"/>
- <Cell col="7" text="bind:age"/>
- <Cell col="8" text="bind:maryflag"/>
- <Cell col="9" text="bind:zipcode1"/>
- <Cell col="10" text="bind:zipcode2"/>
- <Cell col="11" text="bind:addr"/>
- <Cell col="12" text="bind:detaddr"/>
- <Cell col="13" text="bind:hometel"/>
- <Cell col="14" text="bind:mpphontel"/>
- <Cell col="15" text="bind:indd"/>
- <Cell col="16" text="bind:inorddept"/>
- <Cell col="17" text="bind:inorddr"/>
- <Cell col="18" text="bind:indg"/>
- <Cell col="19" text="bind:totinhospdayno"/>
- <Cell col="20" text="bind:dschdd"/>
- <Cell col="21" text="bind:dschorddept"/>
- <Cell col="22" text="bind:dschorddr"/>
- <Cell col="23" text="bind:forgnerflag"/>
- <Cell col="24" text="bind:travoflag"/>
- <Cell col="25" text="bind:job1"/>
- <Cell col="26" text="bind:etcjob"/>
- </Band>
- </Format>
- </Formats>
- </Grid>
- <Combo position="absolute 332 45 467 64" id="cmb_outorddd" class="combo_default" innerdataset="@ds_main_humaninfo_outpatinfo_patlist" datacolumn="disporddd" codecolumn="code" onitemchanged="switch1_case2_cmb_outorddd_onitemchanged"/>
- <Combo position="absolute 332 89 467 108" id="cmb_indd" class="combo_default" innerdataset="@ds_main_humaninfo_inpatinfo_patlist" datacolumn="dispindd" codecolumn="indd" onitemchanged="switch1_case2_cmb_indd_onitemchanged"/>
- <Combo position="absolute 332 67 467 86" id="cmb_dschdd" class="combo_default" innerdataset="@ds_main_humaninfo_inpatinfo_patlist" datacolumn="dispdschdd" codecolumn="dschdd" onitemchanged="switch1_case2_cmb_dschdd_onitemchanged"/>
- <Grid position="absolute 306 555 594 715" id="grd_bfiocure" binddataset="ds_main_cncrpatrgst_cureinfo_chosbfcuremthd" autoenter="select" cellclickbound="control" oncloseup="switch1_case2_grd_bfiocure_oncloseup">
- <Formats>
- <Format id="default">
- <Columns>
- <Column size="24"/>
- <Column size="30"/>
- <Column size="135"/>
- <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="치료일자"/>
- </Band>
- <Band id="body">
- <Cell celltype="head" expr="expr:currow + 1"/>
- <Cell col="1" displaytype="text" edittype="text" text="bind:code"/>
- <Cell col="2" displaytype="combo" edittype="combo" style="padding:1 2 1 2;" text="bind:chosbfcuremthd" combodataset="ds_main_common_M0177" combocodecol="cdid" combodatacol="cdnm" combodisplayrowcount="20"/>
- <Cell col="3" displaytype="date" edittype="date" text="bind:chosbfcuredd" editautoselect="true" calendardisplaynulltype="none"/>
- </Band>
- </Format>
- </Formats>
- </Grid>
- <Grid position="absolute 598 555 887 715" id="grd_prmypart" binddataset="ds_main_cncrpatrgst_cureinfo_prmypart" autoenter="select" oncloseup="switch1_case2_grd_prmypart_oncloseup">
- <Formats>
- <Format id="default">
- <Columns>
- <Column size="30"/>
- <Column size="155"/>
- <Column size="100"/>
- </Columns>
- <Rows>
- <Row size="24" band="head"/>
- <Row size="24"/>
- </Rows>
- <Band id="head">
- <Cell text="코드"/>
- <Cell col="1" text="원발부위치료방법"/>
- <Cell col="2" text="치료일자"/>
- </Band>
- <Band id="body">
- <Cell displaytype="text" edittype="text" text="bind:code"/>
- <Cell col="1" displaytype="combo" edittype="combo" style="align:left middle;padding:1 2 1 2;" text="bind:prmypartcd" wordwrap="none" combodataset="ds_main_common_M0394" combocodecol="cdid" combodatacol="cdnm" combodisplayrowcount="20"/>
- <Cell col="2" displaytype="date" edittype="date" text="bind:prmypartcuredd" editautoselect="true" calendardisplaynulltype="none"/>
- </Band>
- </Format>
- </Formats>
- </Grid>
- <Grid position="absolute 889 555 1178 715" id="grd_metstaspart" binddataset="ds_main_cncrpatrgst_cureinfo_metstaspart" autoenter="select" oncloseup="switch1_case2_grd_metstaspart_oncloseup">
- <Formats>
- <Format id="default">
- <Columns>
- <Column size="30"/>
- <Column size="155"/>
- <Column size="100"/>
- </Columns>
- <Rows>
- <Row size="24" band="head"/>
- <Row size="24"/>
- </Rows>
- <Band id="head">
- <Cell text="코드"/>
- <Cell col="1" text="전이부위치료방법"/>
- <Cell col="2" text="치료일자"/>
- </Band>
- <Band id="body">
- <Cell displaytype="text" edittype="text" text="bind:code"/>
- <Cell col="1" displaytype="combo" edittype="combo" style="padding:1 2 1 2;" text="bind:metstaspartcd" combodataset="ds_main_common_M0394" combocodecol="cdid" combodatacol="cdnm" combodisplayrowcount="20"/>
- <Cell col="2" displaytype="date" edittype="date" text="bind:metstaspartdd" editautoselect="true" calendardisplaynulltype="none"/>
- </Band>
- </Format>
- </Formats>
- </Grid>
- <Combo position="absolute 495 404 592 423" id="cmb_diaghospinfo" class="combo_default" innerdataset="@ds_main_common_Z0007" datacolumn="cdnm" codecolumn="cdid"/>
- <Combo position="absolute 97 133 232 152" id="cmb_maryflag" class="combo_default" innerdataset="@ds_main_common_M0151" datacolumn="cdnm" codecolumn="cdid"/>
- <Combo position="absolute 1084 470 1173 489" align="align:left middle;" id="cmb_etcstagflag" class="combo_default" innerdataset="@ds_main_common_M0395" datacolumn="cdnm" codecolumn="cdid" onitemchanged="switch1_case2_cmb_etcstagflag_onitemchanged"/>
- <Edit position="absolute 189 111 232 130" id="ipt_epoch" class="input_default" autoselect="true"/>
- <Shape position="absolute 0 195 1172 201" linetype="horizontal" id="line2" class="line_3"/>
- <Edit position="absolute 97 177 232 196" id="cmb_etcjob" class="input_default" autoselect="true"/>
- <Edit position="absolute 495 490 592 509" id="ipt_clin" class="input_default" enable="false" autoselect="true"/>
- <Static text="임상검사(기타)" position="absolute 400 490 493 509" align="align:center middle;" id="caption48" class="cell_1"/>
- <Shape position="absolute 0 510 1172 516" linetype="horizontal" id="line3" class="line_3"/>
- <Edit position="absolute 310 515 400 534" id="input12" class="input_default" visible="false" autoselect="true"/>
- <Static text="* 암등록자 :" position="absolute 248 720 328 740" id="caption54" style="font:Dotum,9,bold;"/>
- <Static text="* 암등록일시 :" position="absolute 3 720 96 740" id="caption55" style="font:Dotum,9,bold;"/>
- <Static position="absolute 95 720 240 740" id="cap_rgstdt" mask="yyyy-mm-dd hh:mm:ss"/>
- <Static position="absolute 325 720 605 740" id="cap_rgstrnm"/>
- <Button position="absolute 765 1 881 23" id="button19" class="btn3" text="질병및수술분류" onclick="switch1_case2_button19_onclick"/>
- <Button position="absolute 599 1 679 23" id="button6" class="btn3" text="퇴원분석" onclick="switch1_case2_button6_onclick"/>
- <Button position="absolute 683 1 763 23" id="button7" class="btn3" text="미비관리" onclick="switch1_case2_button7_onclick"/>
- <Button position="absolute 387 1 491 23" id="button8" class="btn3" text="통합기록조회" onclick="switch1_case2_button8_onclick"/>
- <Button position="absolute 480 530 533 549" id="button11" class="btn2" text="행추가" onclick="switch1_case2_button11_onclick"/>
- <Button position="absolute 540 530 593 549" id="button9" class="btn2" text="행삭제" onclick="switch1_case2_button9_onclick"/>
- <Button position="absolute 835 530 888 549" id="button10" class="btn2" text="행삭제" onclick="switch1_case2_button10_onclick"/>
- <Button position="absolute 775 530 828 549" id="button12" class="btn2" text="행추가" onclick="switch1_case2_button12_onclick"/>
- <Button position="absolute 1120 530 1173 549" id="button13" class="btn2" text="행삭제" onclick="switch1_case2_button13_onclick"/>
- <Button position="absolute 1065 530 1116 549" id="button14" class="btn2" text="행추가" onclick="switch1_case2_button14_onclick"/>
- <Edit position="absolute 670 382 685 401" id="input15" class="input_default" visible="false" autoselect="true"/>
- <Edit position="absolute 759 382 969 401" id="ipt_tophinfo" class="input_essential" autoselect="true"/>
- <Edit position="absolute 759 404 969 423" id="ipt_morphinfo1" class="input_essential" autoselect="true"/>
- <Edit position="absolute 670 404 685 423" id="input19" class="input_default" visible="false" autoselect="true"/>
- <Edit position="absolute 759 511 969 530" id="ipt_morphinfo2" class="input_essential" visible="false" autoselect="true"/>
- <Edit position="absolute 670 511 685 530" id="input21" class="input_default" visible="false"/>
- <Edit position="absolute 96 557 111 576" id="input22" class="input_default" visible="false" autoselect="true"/>
- <Edit position="absolute 164 557 302 576" id="ipt_rerntmetstaspart1" class="input_default" autoselect="true"/>
- <Edit position="absolute 96 579 111 598" id="input24" class="input_default" visible="false" autoselect="true"/>
- <Edit position="absolute 164 579 302 598" id="ipt_rerntmetstaspart2" class="input_default" autoselect="true"/>
- <Edit position="absolute 96 601 111 620" id="input26" class="input_default" visible="false" autoselect="true"/>
- <Edit position="absolute 164 601 302 620" id="ipt_rerntmetstaspart3" class="input_default" autoselect="true"/>
- <Edit position="absolute 96 623 111 642" id="input28" class="input_default" visible="false" autoselect="true"/>
- <Edit position="absolute 164 623 302 642" id="ipt_rerntmetstaspart4" class="input_default" autoselect="true"/>
- <Shape position="absolute 0 400 1174 406" linetype="horizontal" id="line5" class="line_2"/>
- <Shape position="absolute 0 422 1174 428" linetype="horizontal" id="line10" class="line_2"/>
- <Shape position="absolute 0 444 1174 450" linetype="horizontal" id="line12" class="line_2"/>
- <Shape position="absolute 0 466 1174 472" linetype="horizontal" id="line13" class="line_2"/>
- <Shape position="absolute 400 487 1173 493" linetype="horizontal" id="line14" class="line_2"/>
- <Shape position="absolute 0 575 301 581" linetype="horizontal" id="line15" class="line_2"/>
- <Shape position="absolute 0 597 301 603" linetype="horizontal" id="line16" class="line_2"/>
- <Shape position="absolute 0 619 301 625" linetype="horizontal" id="line17" class="line_2"/>
- <Shape position="absolute 0 641 301 647" linetype="horizontal" id="line18" class="line_2"/>
- <Shape position="absolute 0 663 301 669" linetype="horizontal" id="line19" class="line_2"/>
- <Shape position="absolute 0 685 301 691" linetype="horizontal" id="line20" class="line_2"/>
- <Shape position="absolute 0 63 1174 69" linetype="horizontal" id="line21" class="line_2"/>
- <Shape position="absolute 0 85 1174 91" linetype="horizontal" id="line22" class="line_2"/>
- <Shape position="absolute 0 107 1174 113" linetype="horizontal" id="line23" class="line_2"/>
- <Shape position="absolute 0 129 467 135" linetype="horizontal" id="line24" class="line_2"/>
- <Shape position="absolute 568 129 1171 135" linetype="horizontal" id="line25" class="line_2"/>
- <Shape position="absolute 0 151 1174 157" linetype="horizontal" id="line26" class="line_2"/>
- <Shape position="absolute 97 173 1171 179" linetype="horizontal" id="line27" class="line_2"/>
- <Shape position="absolute 0 707 302 713" linetype="horizontal" id="line28" class="line_3"/>
- <Button position="absolute 492 1 596 23" id="button17" class="btn3" text="통합결과조회" onclick="switch1_case2_button17_onclick"/>
- <CheckBox position="absolute 194 46 211 66" id="chk_cretchknum" truevalue="true" falsevalue="false"/>
- <Button position="absolute 882 1 986 23" id="button18" class="btn3" text="CA등록번호" onclick="switch1_case2_button18_onclick"/>
- <Static text="진단담당의" position="absolute 400 513 493 532" align="align:center middle;" id="caption57" class="cell_1" visible="false"/>
- <Edit position="absolute 495 513 592 532" id="ipt_diagdrid" class="input_default" visible="false" autoselect="true"/>
- <Static text="진단경로" position="absolute 400 447 493 466" align="align:center middle;" id="caption58" class="cell_1" visible="true"/>
- <Combo position="absolute 495 447 592 466" align="align:left middle;" id="combo1" class="combo_essential" innerdataset="@ds_main_common_M0740" datacolumn="cdnm" codecolumn="cdid" onitemchanged="switch1_case2_combo1_onitemchanged"/>
- <Static text="편측성" position="absolute 595 426 685 445" align="align:center middle;" id="caption61" class="cell_1"/>
- <Combo position="absolute 688 426 970 445" align="align:left middle;" id="combo2" class="combo_essential" enable="false" innerdataset="ds_main_common_M0750" datacolumn="cdnm" codecolumn="cdid" autoselect="true"/>
- <Static text="진단경로(기타)" position="absolute 205 470 305 489" align="align:center middle;" id="caption62" class="cell_1"/>
- <Edit position="absolute 309 470 592 489" id="ipt_etcdiagroute" class="input_default" enable="false" autoselect="true"/>
- <cp_checkboxList id="chk_clin" titletext="CheckBox List" taborder="2" text="cp_checkboxList00" scrollbars="none" position="absolute 205 490 398 510" style="background:transparent; " col="1" row="1" cellspacing="2" vcellspacing="0" itemWidth="100" itemHeight="20" overflow="visible" enable="false"/>
- </Layout>
- </Layouts>
- </Tabpage>
- <Tabpage text="암환자통계관리" id="case3">
- <Layouts>
- <Layout>
- <Shape position="absolute 0 5 1185 90" id="roundrect1" type="roundrectangle"/>
- <Combo position="absolute 944 15 1029 34" id="cmb_orddrlist" class="combo_search" innerdataset="@ds_hidden_cncrpatref_orddrinfo_drlist" datacolumn="drnm" codecolumn="drid"/>
- <Edit position="absolute 941 40 986 59" id="input7" class="input_search" autoselect="true" onkeydown="switch1_case3_input7_onkeydown"/>
- <Static text="등록번호 :" position="absolute 310 93 398 110" id="caption50" class="search_name" visible="false"/>
- <Static text="성 명 :" position="absolute 535 93 625 110" id="caption51" class="search_name" visible="false"/>
- <Static text="내원구분 :" position="absolute 7 15 95 32" id="caption96" class="search_name"/>
- <Shape position="absolute 1106 22 1112 74" linetype="vertical" id="line11" class="line_4"/>
- <Edit position="absolute 606 93 691 112" id="input42" class="input_search" visible="false" autoselect="true" onkeydown="switch1_case3_input42_onkeydown"/>
- <Static text="주민번호 :" position="absolute 775 93 865 110" id="caption52" class="search_name" visible="false"/>
- <Button position="absolute 953 93 969 109" id="btn_rgstsrch" class="icon_search" visible="false" text="" onclick="switch1_case3_btn_rgstsrch_onclick"/>
- <Static text="~" position="absolute 232 39 244 56" id="caption42" class="search_no_b"/>
- <Static text="나이 :" position="absolute 140 40 200 57" id="caption53" class="search_name"/>
- <Button position="absolute 1125 37 1181 59" id="btn_r_cncrlist" class="btn1" text="조회" onclick="switch1_case3_btn_r_cncrlist_onclick"/>
- <Button position="absolute 486 93 502 109" id="btn_pidsrch" class="icon_search" visible="false" text="" onclick="switch1_case3_btn_pidsrch_onclick"/>
- <MaskEdit position="absolute 863 93 948 112" id="input43" class="input_search" visible="false" mask="999999-9999999" autoselect="true" onkeydown="switch1_case3_input43_onkeydown"/>
- <Static text="ICD10 :" position="absolute 870 40 945 57" id="caption43" class="search_name"/>
- <Combo position="absolute 671 15 806 34" id="cmb_srchdept" class="combo_search" innerdataset="@ds_hidden_cncrpatref_orddeptinfo_orddeptlist" datacolumn="depthngnm" codecolumn="deptcd" onitemchanged="switch1_case3_cmb_srchdept_onitemchanged"/>
- <Grid position="absolute 0 115 1186 740" id="grd_cncrpatlist" binddataset="ds_main_cncrpatlist_list" oncelldblclick="switch1_case3_grd_cncrpatlist_oncelldblclick">
- <Formats>
- <Format id="default">
- <Columns>
- <Column size="24"/>
- <Column size="70"/>
- <Column size="80"/>
- <Column size="50"/>
- <Column size="100"/>
- <Column size="100"/>
- <Column size="50"/>
- <Column size="65"/>
- <Column size="65"/>
- <Column size="65"/>
- <Column size="100"/>
- <Column size="100"/>
- <Column size="200"/>
- <Column size="150"/>
- <Column size="80"/>
- <Column size="80"/>
- <Column size="90"/>
- <Column size="58"/>
- <Column size="100"/>
- <Column size="100"/>
- <Column size="200"/>
- <Column size="86"/>
- <Column size="54"/>
- <Column size="100"/>
- <Column size="200"/>
- <Column size="100"/>
- <Column size="90"/>
- <Column size="70"/>
- <Column size="70"/>
- <Column size="150"/>
- <Column size="150"/>
- <Column size="80"/>
- <Column size="82"/>
- <Column size="51"/>
- <Column size="70"/>
- <Column size="90"/>
- <Column size="90"/>
- <Column size="120"/>
- <Column size="80"/>
- <Column size="84"/>
- <Column size="90"/>
- <Column size="70"/>
- <Column size="80"/>
- <Column size="200"/>
- <Column size="100"/>
- <Column size="150"/>
- <Column size="200"/>
- <Column size="75"/>
- <Column size="100"/>
- <Column size="70"/>
- <Column size="100"/>
- <Column size="72"/>
- <Column size="100"/>
- <Column size="70"/>
- <Column size="100"/>
- <Column size="116"/>
- <Column size="129"/>
- <Column size="70"/>
- <Column size="114"/>
- <Column size="128"/>
- <Column size="114"/>
- <Column size="100"/>
- <Column size="70"/>
- <Column size="70"/>
- <Column size="100"/>
- <Column size="100"/>
- <Column size="109"/>
- <Column size="145"/>
- <Column size="100"/>
- <Column size="100"/>
- <Column size="100"/>
- <Column size="100"/>
- <Column size="100"/>
- <Column size="124"/>
- <Column size="120"/>
- <Column size="100"/>
- <Column size="100"/>
- <Column size="100"/>
- <Column size="90"/>
- <Column size="100"/>
- <Column size="100"/>
- <Column size="100"/>
- <Column size="100"/>
- <Column size="100"/>
- <Column size="100"/>
- <Column size="100"/>
- <Column size="100"/>
- <Column size="100"/>
- <Column size="100"/>
- <Column size="100"/>
- <Column size="100"/>
- <Column size="100"/>
- <Column size="100"/>
- <Column size="100"/>
- <Column size="100"/>
- <Column size="100"/>
- <Column size="100"/>
- <Column size="100"/>
- <Column size="100"/>
- <Column size="100"/>
- <Column size="100"/>
- <Column size="100"/>
- <Column size="0"/>
- <Column size="0"/>
- <Column size="0"/>
- <Column size="0"/>
- <Column size="0"/>
- <Column size="0"/>
- <Column size="0"/>
- <Column size="100"/>
- <Column size="0"/>
- <Column size="100"/>
- <Column size="0"/>
- </Columns>
- <Rows>
- <Row size="26" band="head"/>
- <Row size="24"/>
- </Rows>
- <Band id="head">
- <Cell/>
- <Cell col="1" text="병원코드"/>
- <Cell col="2" text="등록번호"/>
- <Cell col="3" text="나이1"/>
- <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="직업2"/>
- <Cell col="11" text="직업기술"/>
- <Cell col="12" text="주소지"/>
- <Cell col="13" text="세부주소"/>
- <Cell col="14" text="지역구분"/>
- <Cell col="15" text="우편번호"/>
- <Cell col="16" text="초진년월일"/>
- <Cell col="17" text="진단경로"/>
- <Cell col="18" text="진단경로(기타)"/>
- <Cell col="19" text="원발부위코드"/>
- <Cell col="20" text="원발부위설명"/>
- <Cell col="21" text="원발부위"/>
- <Cell col="22" text="편측성"/>
- <Cell col="23" text="조직학코드"/>
- <Cell col="24" text="조직학설명"/>
- <Cell col="25" text="조직학"/>
- <Cell col="26" text="분화도"/>
- <Cell col="27" text="사망일자"/>
- <Cell col="28" text="사망원인"/>
- <Cell col="29" text="진단방법"/>
- <Cell col="30" text="진단방법1"/>
- <Cell col="31" text="진단방법2"/>
- <Cell col="32" text="치료시행여부"/>
- <Cell col="33" text="요법"/>
- <Cell col="34" text="기타치료"/>
- <Cell col="35" text="출생연대"/>
- <Cell col="36" text="입원(외래)일자"/>
- <Cell col="37" text="퇴원일자"/>
- <Cell col="38" text="자료등록년도"/>
- <Cell col="39" text="입력일자"/>
- <Cell col="40" text="입력자"/>
- <Cell col="41" text="면허번호"/>
- <Cell col="42" text="SeerCode"/>
- <Cell col="43" text="Seer 설명"/>
- <Cell col="44" text="기타병기구분"/>
- <Cell col="45" text="STAGE"/>
- <Cell col="46" text="병기"/>
- <Cell col="47" text="기타병기내용" wordwrap="none"/>
- <Cell col="48" text="전이부위1"/>
- <Cell col="49" text="전위부위설명1" wordwrap="word"/>
- <Cell col="50" text="전위부위2"/>
- <Cell col="51" text="전위부위설명2"/>
- <Cell col="52" text="전위부위3"/>
- <Cell col="53" text="전위부위설명3"/>
- <Cell col="54" text="전위부위4"/>
- <Cell col="55" text="전위부위설명4"/>
- <Cell col="56" text="CA등록번호"/>
- <Cell col="57" text="다발성원발암"/>
- <Cell col="58" text="나이2"/>
- <Cell col="59" text="입원(외래)과"/>
- <Cell col="60" text="입원(외래)과담당교수"/>
- <Cell col="61" text="퇴원과"/>
- <Cell col="62" text="퇴원과담당교수"/>
- <Cell col="63" text="입원회차"/>
- <Cell col="64" text="재원일수"/>
- <Cell col="65" text="결혼코드"/>
- <Cell col="66" text="초재진구분"/>
- <Cell col="67" text="등록당시 질병상태"/>
- <Cell col="68" text="최초진단병원"/>
- <Cell col="69" text="기타진단병원"/>
- <Cell col="70" text="최초진단의"/>
- <Cell col="71" text="사망장소"/>
- <Cell col="72" text="ICD-10(T-Code)"/>
- <Cell col="73" text="ICD-10(M-Code)"/>
- <Cell col="74" text="ICD-O-3(M-Code)"/>
- <Cell col="75" text="순서(ICD-O-3)"/>
- <Cell col="76" text="ECOG"/>
- <Cell col="77" text="Regimen1"/>
- <Cell col="78" text="Regimen2"/>
- <Cell col="79" text="치료개시일"/>
- <Cell col="80" text="내원전치료1"/>
- <Cell col="81" text="치료일자1"/>
- <Cell col="82" text="내원전치료2"/>
- <Cell col="83" text="치료일자2"/>
- <Cell col="84" text="내원전치료3"/>
- <Cell col="85" text="치료일자3"/>
- <Cell col="86" text="본원치료(원발)1"/>
- <Cell col="87" text="치료일자4"/>
- <Cell col="88" text="본원치료(원발)2"/>
- <Cell col="89" text="치료일자5"/>
- <Cell col="90" text="본원치료(원발)3"/>
- <Cell col="91" text="치료일자6"/>
- <Cell col="92" text="본원치료(원발)4"/>
- <Cell col="93" text="치료일자7"/>
- <Cell col="94" text="본원치료(전이)1"/>
- <Cell col="95" text="치료일자8"/>
- <Cell col="96" text="본원치료(전이)2"/>
- <Cell col="97" text="치료일자9"/>
- <Cell col="98" text="본원치료(전이)3"/>
- <Cell col="99" text="치료일자10"/>
- <Cell col="100" text="본원치료(전이)4"/>
- <Cell col="101" text="치료일자11"/>
- <Cell col="102" text="연고자(성명)"/>
- <Cell col="103" text="연고자(관계)"/>
- <Cell col="104" text="연고자(우편번호)"/>
- <Cell col="105" text="연고자(주소)"/>
- <Cell col="106" text="연고자(상세주소)"/>
- <Cell col="107" text="연고자(휴대전화)"/>
- <Cell col="108" text="연고자(전화번호)"/>
- <Cell col="109" text="내원구분"/>
- <Cell col="110" text="cncr_histno"/>
- <Cell col="111" text="생존기간"/>
- <Cell col="112" text="전화번호"/>
- </Band>
- <Band id="body">
- <Cell celltype="head" expr="expr:currow + 1"/>
- <Cell col="1" text="bind:hospcd" enable="false"/>
- <Cell col="2" text="bind:pid"/>
- <Cell col="3" text="bind:age"/>
- <Cell col="4" text="bind:rrgstno"/>
- <Cell col="5" text="bind:hngnm"/>
- <Cell col="6" text="bind:sex"/>
- <Cell col="7" text="bind:forgneryn"/>
- <Cell col="8" text="bind:wandereryn"/>
- <Cell col="9" text="bind:jobcd1"/>
- <Cell col="10" style="align:left top;padding:5 2 1 2;" text="bind:jobcd2" wordwrap="word"/>
- <Cell col="11" style="align:left top;padding:5 2 1 2;" text="bind:jobetc" wordwrap="word"/>
- <Cell col="12" style="align:left top;padding:5 2 1 2;" text="bind:addr" wordwrap="word"/>
- <Cell col="13" style="align:left top;padding:5 2 1 2;" text="bind:detaddr" wordwrap="word"/>
- <Cell col="14" text="bind:area"/>
- <Cell col="15" text="bind:zipcd"/>
- <Cell col="16" text="bind:diagdd"/>
- <Cell col="17" text="bind:diagroute"/>
- <Cell col="18" text="bind:etcdiagroute"/>
- <Cell col="19" style="align:left top;padding:5 2 1 2;" text="bind:tophcd" wordwrap="word"/>
- <Cell col="20" style="align:left top;padding:5 2 1 2;" text="bind:topengnm" wordwrap="word"/>
- <Cell col="21" style="align:left top;padding:5 2 1 2;" text="bind:topblank" wordwrap="word"/>
- <Cell col="22" text="bind:laterality"/>
- <Cell col="23" style="align:left top;padding:5 2 1 2;" text="bind:morphcd" wordwrap="word"/>
- <Cell col="24" style="align:left top;padding:5 2 1 2;" text="bind:morphengnm" wordwrap="word"/>
- <Cell col="25" text="bind:morphblack"/>
- <Cell col="26" text="bind:difrntgrdecd"/>
- <Cell col="27" displaytype="date" text="bind:dethdd" calendardisplaynulltype="none"/>
- <Cell col="28" text="bind:dethcause"/>
- <Cell col="29" text="bind:lastdiagmthdcd"/>
- <Cell col="30" text="bind:clinical"/>
- <Cell col="31" text="bind:etcclinical"/>
- <Cell col="32" text="bind:remedychk"/>
- <Cell col="33" text="bind:remedy"/>
- <Cell col="34" text="bind:etccure"/>
- <Cell col="35" text="bind:brithyear"/>
- <Cell col="36" text="bind:orddd"/>
- <Cell col="37" text="bind:dschdd"/>
- <Cell col="38" text="bind:cncryear"/>
- <Cell col="39" text="bind:lastdt"/>
- <Cell col="40" text="bind:lastusernm"/>
- <Cell col="41" text="bind:licenceno"/>
- <Cell col="42" text="bind:seer"/>
- <Cell col="43" style="align:left top;padding:5 2 1 2;" text="bind:seernm" wordwrap="word"/>
- <Cell col="44" displaytype="combo" edittype="combo" style="padding:1 2 1 2;" text="bind:etcstagflagcd" wordwrap="none" combodataset="ds_main_common_M0395" combocodecol="cdid" combodatacol="cdnm"/>
- <Cell col="45" style="align:left top;padding:5 2 1 2;" text="bind:stage" wordwrap="word"/>
- <Cell col="46" style="align:left top;padding:5 2 1 2;" text="bind:stagingcd" wordwrap="word"/>
- <Cell col="47" style="align:left top;padding:5 2 1 2;" text="bind:etcstagcnts" wordwrap="word"/>
- <Cell col="48" style="align:left top;padding:5 2 1 2;" text="bind:rerntmetstaspartcd1" wordwrap="word"/>
- <Cell col="49" style="align:left top;padding:5 2 1 2;" text="bind:tplengnm1" wordwrap="word"/>
- <Cell col="50" style="align:left top;padding:5 2 1 2;" text="bind:rerntmetstaspartcd2" wordwrap="word"/>
- <Cell col="51" style="align:left top;padding:5 2 1 2;" text="bind:tplengnm2" wordwrap="word"/>
- <Cell col="52" style="align:left top;padding:5 2 1 2;" text="bind:rerntmetstaspartcd3" wordwrap="word"/>
- <Cell col="53" style="align:left top;padding:5 2 1 2;" text="bind:tplengnm3" wordwrap="word"/>
- <Cell col="54" style="align:left top;padding:5 2 1 2;" text="bind:rerntmetstaspartcd4" wordwrap="word"/>
- <Cell col="55" style="align:left top;padding:5 2 1 2;" text="bind:tplengnm4" wordwrap="word"/>
- <Cell col="56" text="bind:cncrno"/>
- <Cell col="57" text="bind:prmycncryn"/>
- <Cell col="58" text="bind:age2"/>
- <Cell col="59" text="bind:orddeptnm"/>
- <Cell col="60" text="bind:orddrnm"/>
- <Cell col="61" text="bind:dschdeptnm"/>
- <Cell col="62" text="bind:dschdrnm"/>
- <Cell col="63" text="bind:indg"/>
- <Cell col="64" text="bind:totinhospdayno"/>
- <Cell col="65" text="bind:maryflag"/>
- <Cell col="66" text="bind:fsexamflag"/>
- <Cell col="67" text="bind:sickstatcd"/>
- <Cell col="68" text="bind:diaghospcd"/>
- <Cell col="69" text="bind:etcdiaghospnm"/>
- <Cell col="70" text="bind:diagdrid"/>
- <Cell col="71" text="bind:dethplcecd"/>
- <Cell col="72" text="bind:icd10cd"/>
- <Cell col="73" text="bind:morphcd2"/>
- <Cell col="74" text="bind:morphcd1"/>
- <Cell col="75" text="bind:morphseqno1"/>
- <Cell col="76" text="bind:ecog"/>
- <Cell col="77" text="bind:regimen1"/>
- <Cell col="78" text="bind:regimen2"/>
- <Cell col="79" displaytype="date" text="bind:cureopendd" calendardisplaynulltype="none"/>
- <Cell col="80" text="bind:chosbfcurecd1"/>
- <Cell col="81" text="bind:chosbfcuredd1"/>
- <Cell col="82" text="bind:chosbfcurecd2"/>
- <Cell col="83" text="bind:chosbfcuredd2"/>
- <Cell col="84" text="bind:chosbfcurecd3"/>
- <Cell col="85" text="bind:chosbfcuredd3"/>
- <Cell col="86" text="bind:prmypartcurecd1"/>
- <Cell col="87" text="bind:prmypartcuredd1"/>
- <Cell col="88" text="bind:prmypartcurecd2"/>
- <Cell col="89" text="bind:prmypartcuredd2"/>
- <Cell col="90" text="bind:prmypartcurecd3"/>
- <Cell col="91" text="bind:prmypartcuredd3"/>
- <Cell col="92" text="bind:prmypartcurecd4"/>
- <Cell col="93" text="bind:prmypartcuredd4"/>
- <Cell col="94" text="bind:metstaspartcurecd1"/>
- <Cell col="95" text="bind:metstaspartcuredd1"/>
- <Cell col="96" text="bind:metstaspartcurecd2"/>
- <Cell col="97" text="bind:metstaspartcuredd2"/>
- <Cell col="98" text="bind:metstaspartcurecd3"/>
- <Cell col="99" text="bind:metstaspartcuredd3"/>
- <Cell col="100" text="bind:metstaspartcurecd4"/>
- <Cell col="101" text="bind:metstaspartcuredd4"/>
- <Cell col="102" text="bind:reluserhngnm"/>
- <Cell col="103" text="bind:relation"/>
- <Cell col="104" text="bind:relzipcd"/>
- <Cell col="105" text="bind:reladdr"/>
- <Cell col="106" text="bind:reldetaddr"/>
- <Cell col="107" text="bind:relmpphontel"/>
- <Cell col="108" text="bind:relhometel"/>
- <Cell col="109" text="bind:ordtype"/>
- <Cell col="110" text="bind:cncr_histno"/>
- <Cell col="111" text="bind:dethmonth"/>
- <Cell col="112" text="bind:phontel"/>
- </Band>
- </Format>
- </Formats>
- </Grid>
- <Static text="~" position="absolute 452 17 464 34" id="caption46" class="search_no_b"/>
- <Button position="absolute 1135 93 1186 114" id="btn_excel" class="btn7" text="엑셀" onclick="switch1_case3_btn_excel_onclick"/>
- <Static text="통계자료검색 :" position="absolute 7 65 119 82" id="caption47" class="search_name"/>
- <Static text="M-CODE :" position="absolute 590 40 686 57" id="caption36" class="search_name"/>
- <Combo position="absolute 67 40 132 59" id="combo4" class="combo_search" codecolumn="codecolumn" datacolumn="datacolumn">
- <Dataset id="innerdataset">
- <ColumnInfo>
- <Column id="codecolumn"/>
- <Column id="datacolumn"/>
- </ColumnInfo>
- <Rows>
- <Row>
- <Col id="codecolumn">A</Col>
- <Col id="datacolumn">전체</Col>
- </Row>
- <Row>
- <Col id="codecolumn">M</Col>
- <Col id="datacolumn">남자</Col>
- </Row>
- <Row>
- <Col id="codecolumn">F</Col>
- <Col id="datacolumn">여자</Col>
- </Row>
- </Rows>
- </Dataset>
- </Combo>
- <Button position="absolute 695 93 711 109" id="btn_patnmsrch" class="icon_search" visible="false" text="" onclick="switch1_case3_btn_patnmsrch_onclick"/>
- <Static text="T-CODE :" position="absolute 305 40 400 57" id="caption37" class="search_name"/>
- <Static text="진료과 :" position="absolute 591 15 665 32" id="cap_dept" class="search_name"/>
- <Static text="담당교수 :" position="absolute 870 15 944 32" id="cap_dr" class="search_name"/>
- <Edit position="absolute 200 40 230 59" id="input2" class="input_search" autoselect="true"/>
- <Edit position="absolute 247 40 277 59" id="input4" class="input_search" autoselect="true"/>
- <Radio position="absolute 94 15 231 32" id="radio3" columncount="-1" rowcount="-1" codecolumn="codecolumn" datacolumn="datacolumn" onitemchanged="switch1_case3_radio3_onitemchanged">
- <Dataset id="innerdataset">
- <ColumnInfo>
- <Column id="codecolumn"/>
- <Column id="datacolumn"/>
- </ColumnInfo>
- <Rows>
- <Row>
- <Col id="codecolumn">A</Col>
- <Col id="datacolumn">전체</Col>
- </Row>
- <Row>
- <Col id="codecolumn">I</Col>
- <Col id="datacolumn">퇴원</Col>
- </Row>
- <Row>
- <Col id="codecolumn">O</Col>
- <Col id="datacolumn">외래</Col>
- </Row>
- </Rows>
- </Dataset>
- </Radio>
- <Edit position="absolute 398 40 450 59" id="input3" class="input_search" autoselect="true" onkeydown="switch1_case3_input3_onkeydown"/>
- <Static text="성별 :" position="absolute 7 40 67 57" id="caption18" class="search_name"/>
- <Edit position="absolute 398 93 483 112" id="ipt_appmanid01" class="input_search" visible="false" autoselect="true" onkeydown="switch1_case3_ipt_appmanid01_onkeydown"/>
- <Calendar position="absolute 361 15 449 34" id="ipt_fromdd" class="input_essential" autoselect="true"/>
- <Calendar position="absolute 464 15 552 34" id="ipt_todd" class="input_essential" autoselect="true"/>
- <Edit position="absolute 686 40 738 59" id="input6" class="input_search" autoselect="true" onkeydown="switch1_case3_input6_onkeydown"/>
- <Edit position="absolute 562 40 589 59" id="input16" class="input_search" visible="false" autoselect="true"/>
- <Edit position="absolute 452 40 567 59" id="input17" class="input_search" autoselect="true"/>
- <Edit position="absolute 841 40 868 59" id="input18" class="input_search" visible="false" autoselect="true" onkeydown="switch1_case3_input18_onkeydown"/>
- <Edit position="absolute 740 40 855 59" id="input20" class="input_search" autoselect="true"/>
- <Edit position="absolute 988 40 1103 59" id="input23" class="input_search" autoselect="true"/>
- <Static text="암등록번호 :" position="absolute 306 65 410 82" id="caption63" class="search_name"/>
- <Edit position="absolute 408 65 473 84" align="align:center middle;" id="input25" class="input_search" autoselect="true"/>
- <Edit position="absolute 493 65 558 84" align="align:center middle;" id="input27" class="input_search" autoselect="true"/>
- <Static text="~" position="absolute 478 65 490 82" id="caption64" class="search_no_b"/>
- <Static text="* 암등록번호는 뒷 네자리만 입력하십시요. (ex. 2014-0101 -> 0101로 검색)" position="absolute 565 67 973 87" id="caption65"/>
- <cp_checkboxList id="checkbox2" titletext="CheckBox List" taborder="1" text="cp_checkboxList00" scrollbars="none" position="absolute 113 63 301 83" style="background:transparent; " col="1" row="1" cellspacing="2" vcellspacing="0" itemWidth="100" itemHeight="20" overflow="visible"/>
- <Combo id="Combo00" taborder="2" position="absolute 273 15 358 35" codecolumn="codecolumn" datacolumn="datacolumn" index="-1">
- <Dataset id="innerdataset">
- <ColumnInfo>
- <Column id="codecolumn" size="256"/>
- <Column id="datacolumn" size="256"/>
- </ColumnInfo>
- <Rows>
- <Row>
- <Col id="codecolumn">A</Col>
- <Col id="datacolumn">진료일자</Col>
- </Row>
- <Row>
- <Col id="codecolumn">B</Col>
- <Col id="datacolumn">등록일자</Col>
- </Row>
- </Rows>
- </Dataset>
- </Combo>
- </Layout>
- </Layouts>
- </Tabpage>
- </Tabpages>
- </Tab>
- <Static id="caption6" text="암환자관리" class="tit_1" position="absolute 0 0 189 25"/>
- </Layout>
- </Layouts>
- <Objects>
- <Dataset id="ds_main_cncrpatref" firefirstcount="0" firenextcount="0" useclientlayout="false" updatecontrol="true" enableevent="true" loadkeymode="keep" loadfiltermode="keep" reversesubsum="false">
- <ColumnInfo>
- <Column id="ioflag" type="STRING" size="256"/>
- <Column id="sexflag" type="STRING" size="256"/>
- <Column id="fromdd" type="STRING" size="256"/>
- <Column id="todd" type="STRING" size="256"/>
- <Column id="pid" type="STRING" size="256"/>
- <Column id="pnm" type="STRING" size="256"/>
- <Column id="prgstno" type="STRING" size="256"/>
- <Column id="refopt" type="STRING" size="256"/>
- <Column id="srchflag" type="STRING" size="256"/>
- <Column id="tophcd" type="STRING" size="256"/>
- <Column id="tophnm" type="STRING" size="256"/>
- <Column id="tophseq" type="STRING" size="256"/>
- <Column id="morphcd" type="STRING" size="256"/>
- <Column id="morphnm" type="STRING" size="256"/>
- <Column id="morphseq" type="STRING" size="256"/>
- <Column id="icd10cd" type="STRING" size="256"/>
- <Column id="icd10nm" type="STRING" size="256"/>
- <Column id="fromage" type="STRING" size="256"/>
- <Column id="toage" type="STRING" size="256"/>
- <Column id="cncrnofrdd" type="STRING" size="256"/>
- <Column id="cncrnotodd" type="STRING" size="256"/>
- <Column id="skind" type="STRING" size="256"/>
- </ColumnInfo>
- <Rows>
- <Row>
- <Col id="ioflag">A</Col>
- <Col id="sexflag">A</Col>
- <Col id="fromdd"/>
- <Col id="todd"/>
- <Col id="pid"/>
- <Col id="pnm"/>
- <Col id="prgstno"/>
- <Col id="refopt"/>
- <Col id="srchflag"/>
- <Col id="tophcd"/>
- <Col id="tophnm"/>
- <Col id="tophseq"/>
- <Col id="morphcd"/>
- <Col id="morphnm"/>
- <Col id="morphseq"/>
- <Col id="icd10cd"/>
- <Col id="icd10nm"/>
- <Col id="fromage"/>
- <Col id="toage"/>
- <Col id="cncrnofrdd"/>
- <Col id="cncrnotodd"/>
- </Row>
- </Rows>
- </Dataset>
- <Dataset id="ds_main_cncrpatref_orddrinfo_drlist" firefirstcount="0" firenextcount="0" useclientlayout="false" updatecontrol="true" enableevent="true" loadkeymode="keep" loadfiltermode="keep" reversesubsum="false">
- <ColumnInfo>
- <Column id="drid" type="STRING" size="256"/>
- <Column id="drnm" type="STRING" size="256"/>
- </ColumnInfo>
- <Rows>
- <Row>
- <Col id="drid"/>
- <Col id="drnm"/>
- </Row>
- </Rows>
- </Dataset>
- <Dataset id="ds_main_cncrpatref_orddeptinfo_orddeptlist" firefirstcount="0" firenextcount="0" useclientlayout="false" updatecontrol="true" enableevent="true" loadkeymode="keep" loadfiltermode="keep" reversesubsum="false">
- <ColumnInfo>
- <Column id="depthngnm" type="STRING" size="256"/>
- <Column id="deptcd" type="STRING" size="256"/>
- </ColumnInfo>
- <Rows>
- <Row>
- <Col id="depthngnm"/>
- <Col id="deptcd"/>
- </Row>
- </Rows>
- </Dataset>
- <Dataset id="ds_main_pathumtrainfo_cncrpatinfo" firefirstcount="0" firenextcount="0" useclientlayout="false" updatecontrol="true" enableevent="true" loadkeymode="keep" loadfiltermode="keep" reversesubsum="false">
- <ColumnInfo>
- <Column id="pid" type="STRING" size="256"/>
- <Column id="pnm" type="STRING" size="256"/>
- <Column id="cretno" type="STRING" size="256"/>
- <Column id="ordtype" type="STRING" size="256"/>
- <Column id="rrgstno1" type="STRING" size="256"/>
- <Column id="rrgstno2" type="STRING" size="256"/>
- <Column id="job1" type="STRING" size="256"/>
- <Column id="etcjob" type="STRING" size="256"/>
- <Column id="forgnerflag" type="STRING" size="256"/>
- <Column id="hometel" type="STRING" size="256"/>
- <Column id="mpphontel" type="STRING" size="256"/>
- <Column id="sex" type="STRING" size="256"/>
- <Column id="age" type="STRING" size="256"/>
- <Column id="maryflag" type="STRING" size="256"/>
- <Column id="zipcode1" type="STRING" size="256"/>
- <Column id="zipcode2" type="STRING" size="256"/>
- <Column id="addr" type="STRING" size="256"/>
- <Column id="detaddr" type="STRING" size="256"/>
- <Column id="orddd" type="STRING" size="256"/>
- <Column id="outorddept" type="STRING" size="256"/>
- <Column id="outorddr" type="STRING" size="256"/>
- <Column id="dschdd" type="STRING" size="256"/>
- <Column id="dschorddept" type="STRING" size="256"/>
- <Column id="dschorddr" type="STRING" size="256"/>
- <Column id="indd" type="STRING" size="256"/>
- <Column id="inorddept" type="STRING" size="256"/>
- <Column id="inorddr" type="STRING" size="256"/>
- <Column id="indg" type="STRING" size="256"/>
- <Column id="totinhospdayno" type="STRING" size="256"/>
- <Column id="travoflag" type="STRING" size="256"/>
- <Column id="epoch" type="STRING" size="256"/>
- <Column id="code" type="STRING" size="256"/>
- </ColumnInfo>
- <Rows>
- <Row>
- <Col id="pid"/>
- <Col id="pnm"/>
- <Col id="cretno"/>
- <Col id="ordtype"/>
- <Col id="rrgstno1"/>
- <Col id="rrgstno2"/>
- <Col id="job1"/>
- <Col id="etcjob"/>
- <Col id="forgnerflag"/>
- <Col id="hometel"/>
- <Col id="mpphontel"/>
- <Col id="sex"/>
- <Col id="age"/>
- <Col id="maryflag"/>
- <Col id="zipcode1"/>
- <Col id="zipcode2"/>
- <Col id="addr"/>
- <Col id="detaddr"/>
- <Col id="orddd"/>
- <Col id="outorddept"/>
- <Col id="outorddr"/>
- <Col id="dschdd"/>
- <Col id="dschorddept"/>
- <Col id="dschorddr"/>
- <Col id="indd"/>
- <Col id="inorddept"/>
- <Col id="inorddr"/>
- <Col id="indg"/>
- <Col id="totinhospdayno"/>
- <Col id="travoflag"/>
- <Col id="epoch"/>
- <Col id="code"/>
- </Row>
- </Rows>
- </Dataset>
- <Dataset id="ds_main_pathumtrainfo_relationinfo" firefirstcount="0" firenextcount="0" useclientlayout="false" updatecontrol="true" enableevent="true" loadkeymode="keep" loadfiltermode="keep" reversesubsum="false">
- <ColumnInfo>
- <Column id="relausernm" type="STRING" size="256"/>
- <Column id="relation" type="STRING" size="256"/>
- <Column id="zipcode1" type="STRING" size="256"/>
- <Column id="zipcode2" type="STRING" size="256"/>
- <Column id="addr" type="STRING" size="256"/>
- <Column id="detaddr" type="STRING" size="256"/>
- <Column id="hometel" type="STRING" size="256"/>
- <Column id="mpphontel" type="STRING" size="256"/>
- </ColumnInfo>
- <Rows>
- <Row>
- <Col id="relausernm"/>
- <Col id="relation"/>
- <Col id="zipcode1"/>
- <Col id="zipcode2"/>
- <Col id="addr"/>
- <Col id="detaddr"/>
- <Col id="hometel"/>
- <Col id="mpphontel"/>
- </Row>
- </Rows>
- </Dataset>
- <Dataset id="ds_main_cncrpatrgst_regstatus" firefirstcount="0" firenextcount="0" useclientlayout="false" updatecontrol="true" enableevent="true" loadkeymode="keep" loadfiltermode="keep" reversesubsum="false">
- <ColumnInfo>
- <Column id="flag" type="STRING" size="256"/>
- <Column id="prmycncryn" type="STRING" size="256"/>
- <Column id="sickstat" type="STRING" size="256"/>
- <Column id="cureopendd" type="STRING" size="256"/>
- <Column id="seqno" type="STRING" size="256"/>
- </ColumnInfo>
- <Rows>
- <Row>
- <Col id="flag"/>
- <Col id="prmycncryn"/>
- <Col id="sickstat"/>
- <Col id="cureopendd"/>
- <Col id="seqno"/>
- </Row>
- </Rows>
- </Dataset>
- <Dataset id="ds_main_cncrpatrgst_regstatus_cncrnoinfo" firefirstcount="0" firenextcount="0" useclientlayout="false" updatecontrol="true" enableevent="true" loadkeymode="keep" loadfiltermode="keep" reversesubsum="false">
- <ColumnInfo>
- <Column id="cncrno" type="STRING" size="256"/>
- </ColumnInfo>
- <Rows>
- <Row>
- <Col id="cncrno"/>
- </Row>
- </Rows>
- </Dataset>
- <Dataset id="ds_main_cncrpatrgst_rerntmetstaspart" firefirstcount="0" firenextcount="0" useclientlayout="false" updatecontrol="true" enableevent="true" loadkeymode="keep" loadfiltermode="keep" reversesubsum="false">
- <ColumnInfo>
- <Column id="rerntmetstaspartcd1" type="STRING" size="256"/>
- <Column id="rerntmetstaspartnm1" type="STRING" size="256"/>
- <Column id="rerntmetstaspart1" type="STRING" size="256"/>
- <Column id="rerntmetstaspartcd2" type="STRING" size="256"/>
- <Column id="rerntmetstaspartnm2" type="STRING" size="256"/>
- <Column id="rerntmetstaspart2" type="STRING" size="256"/>
- <Column id="rerntmetstaspartcd3" type="STRING" size="256"/>
- <Column id="rerntmetstaspartnm3" type="STRING" size="256"/>
- <Column id="rerntmetstaspart3" type="STRING" size="256"/>
- <Column id="rerntmetstaspartcd4" type="STRING" size="256"/>
- <Column id="rerntmetstaspartnm4" type="STRING" size="256"/>
- <Column id="rerntmetstaspart4" type="STRING" size="256"/>
- <Column id="ecogcd" type="STRING" size="256"/>
- <Column id="ecog" type="STRING" size="256"/>
- <Column id="regimencd1" type="STRING" size="256"/>
- <Column id="regimen1" type="STRING" size="256"/>
- <Column id="regimencd2" type="STRING" size="256"/>
- <Column id="regimen2" type="STRING" size="256"/>
- </ColumnInfo>
- <Rows>
- <Row>
- <Col id="rerntmetstaspartcd1"/>
- <Col id="rerntmetstaspartnm1"/>
- <Col id="rerntmetstaspart1"/>
- <Col id="rerntmetstaspartcd2"/>
- <Col id="rerntmetstaspartnm2"/>
- <Col id="rerntmetstaspart2"/>
- <Col id="rerntmetstaspartcd3"/>
- <Col id="rerntmetstaspartnm3"/>
- <Col id="rerntmetstaspart3"/>
- <Col id="rerntmetstaspartcd4"/>
- <Col id="rerntmetstaspartnm4"/>
- <Col id="rerntmetstaspart4"/>
- <Col id="ecogcd"/>
- <Col id="ecog"/>
- <Col id="regimencd1"/>
- <Col id="regimen1"/>
- <Col id="regimencd2"/>
- <Col id="regimen2"/>
- </Row>
- </Rows>
- </Dataset>
- <Dataset id="ds_main_cncrpatrgst_dethinfo" firefirstcount="0" firenextcount="0" useclientlayout="false" updatecontrol="true" enableevent="true" loadkeymode="keep" loadfiltermode="keep" reversesubsum="false">
- <ColumnInfo>
- <Column id="dethplce" type="STRING" size="256"/>
- <Column id="dethdd" type="STRING" size="256"/>
- <Column id="dethcascd" type="STRING" size="256"/>
- </ColumnInfo>
- <Rows>
- <Row>
- <Col id="dethplce"/>
- <Col id="dethdd"/>
- <Col id="dethcascd"/>
- </Row>
- </Rows>
- </Dataset>
- <Dataset id="ds_main_cncrpatrgst_dethinfo_existterm" firefirstcount="0" firenextcount="0" useclientlayout="false" updatecontrol="true" enableevent="true" loadkeymode="keep" loadfiltermode="keep" reversesubsum="false">
- <ColumnInfo>
- <Column id="yearcnt" type="STRING" size="256"/>
- <Column id="monthcnt" type="STRING" size="256"/>
- </ColumnInfo>
- <Rows>
- <Row>
- <Col id="yearcnt"/>
- <Col id="monthcnt"/>
- </Row>
- </Rows>
- </Dataset>
- <Dataset id="ds_main_cncrpatrgst_diaginfo" firefirstcount="0" firenextcount="0" useclientlayout="false" updatecontrol="true" enableevent="true" loadkeymode="keep" loadfiltermode="keep" reversesubsum="false">
- <ColumnInfo>
- <Column id="diagdd" type="STRING" size="256"/>
- <Column id="diaghospinfo" type="STRING" size="256"/>
- <Column id="diagdrid" type="STRING" size="256"/>
- <Column id="lastdiagmthd" type="STRING" size="256"/>
- <Column id="clinical" type="STRING" size="256"/>
- <Column id="etcclinical" type="STRING" size="256"/>
- <Column id="tophinfo" type="STRING" size="256"/>
- <Column id="tophcd" type="STRING" size="256"/>
- <Column id="tophnm" type="STRING" size="256"/>
- <Column id="morphcd1" type="STRING" size="256"/>
- <Column id="morphnm1" type="STRING" size="256"/>
- <Column id="morphinfo1" type="STRING" size="256"/>
- <Column id="morphcd2" type="STRING" size="256"/>
- <Column id="morphnm2" type="STRING" size="256"/>
- <Column id="morphinfo2" type="STRING" size="256"/>
- <Column id="icd10cd" type="STRING" size="256"/>
- <Column id="icd10nm" type="STRING" size="256"/>
- <Column id="difrntgrdecd" type="STRING" size="256"/>
- <Column id="difrntgrde" type="STRING" size="256"/>
- <Column id="seercd" type="STRING" size="256"/>
- <Column id="seer" type="STRING" size="256"/>
- <Column id="tcd" type="STRING" size="256"/>
- <Column id="t" type="STRING" size="256"/>
- <Column id="ncd" type="STRING" size="256"/>
- <Column id="n" type="STRING" size="256"/>
- <Column id="mcd" type="STRING" size="256"/>
- <Column id="m" type="STRING" size="256"/>
- <Column id="stagcd" type="STRING" size="256"/>
- <Column id="staging" type="STRING" size="256"/>
- <Column id="etcstagflagcd" type="STRING" size="256"/>
- <Column id="etcstagflag" type="STRING" size="256"/>
- <Column id="etcstagcnts" type="STRING" size="256"/>
- <Column id="etcdiaghospnm" type="STRING" size="256"/>
- <Column id="diagroute" type="STRING" size="256"/>
- <Column id="laterality" type="STRING" size="256"/>
- <Column id="etcdiagroute" type="STRING" size="256"/>
- </ColumnInfo>
- <Rows>
- <Row>
- <Col id="diagdd"/>
- <Col id="diaghospinfo"/>
- <Col id="diagdrid"/>
- <Col id="lastdiagmthd"/>
- <Col id="clinical"/>
- <Col id="etcclinical"/>
- <Col id="tophinfo"/>
- <Col id="tophcd"/>
- <Col id="tophnm"/>
- <Col id="morphcd1"/>
- <Col id="morphnm1"/>
- <Col id="morphinfo1"/>
- <Col id="morphcd2"/>
- <Col id="morphnm2"/>
- <Col id="morphinfo2"/>
- <Col id="icd10cd"/>
- <Col id="icd10nm"/>
- <Col id="difrntgrdecd"/>
- <Col id="difrntgrde"/>
- <Col id="seercd"/>
- <Col id="seer"/>
- <Col id="tcd"/>
- <Col id="t"/>
- <Col id="ncd"/>
- <Col id="n"/>
- <Col id="mcd"/>
- <Col id="m"/>
- <Col id="stagcd"/>
- <Col id="staging"/>
- <Col id="etcstagflagcd"/>
- <Col id="etcstagflag"/>
- <Col id="etcstagcnts"/>
- <Col id="etcdiaghospnm"/>
- <Col id="diagroute"/>
- <Col id="laterality"/>
- <Col id="etcdiagroute"/>
- </Row>
- </Rows>
- </Dataset>
- <Dataset id="ds_main_cncrpatrgst_cureinfo_prmypart" firefirstcount="0" firenextcount="0" useclientlayout="false" updatecontrol="true" enableevent="true" loadkeymode="keep" loadfiltermode="keep" reversesubsum="false" oncolumnchanged="ds_main_cncrpatrgst_cureinfo_prmypart_oncolumnchanged">
- <ColumnInfo>
- <Column id="code" type="STRING" size="256"/>
- <Column id="prmypartcd" type="STRING" size="256"/>
- <Column id="prmypartcuredd" type="STRING" size="256"/>
- </ColumnInfo>
- <Rows>
- <Row>
- <Col id="code"/>
- <Col id="prmypartcd"/>
- <Col id="prmypartcuredd"/>
- </Row>
- </Rows>
- </Dataset>
- <Dataset id="ds_main_cncrpatrgst_cureinfo_chosbfcuremthd" firefirstcount="0" firenextcount="0" useclientlayout="false" updatecontrol="true" enableevent="true" loadkeymode="keep" loadfiltermode="keep" reversesubsum="false">
- <ColumnInfo>
- <Column id="code" type="STRING" size="256"/>
- <Column id="chosbfcuremthd" type="STRING" size="256"/>
- <Column id="chosbfcuredd" type="STRING" size="256"/>
- </ColumnInfo>
- <Rows>
- <Row>
- <Col id="code"/>
- <Col id="chosbfcuremthd"/>
- <Col id="chosbfcuredd"/>
- </Row>
- </Rows>
- </Dataset>
- <Dataset id="ds_main_cncrpatrgst_cureinfo_metstaspart" firefirstcount="0" firenextcount="0" useclientlayout="false" updatecontrol="true" enableevent="true" loadkeymode="keep" loadfiltermode="keep" reversesubsum="false">
- <ColumnInfo>
- <Column id="code" type="STRING" size="256"/>
- <Column id="metstaspartcd" type="STRING" size="256"/>
- <Column id="metstaspartdd" type="STRING" size="256"/>
- </ColumnInfo>
- <Rows>
- <Row>
- <Col id="code"/>
- <Col id="metstaspartcd"/>
- <Col id="metstaspartdd"/>
- </Row>
- </Rows>
- </Dataset>
- <Dataset id="ds_main_common_out_outdeptlist_dept" firefirstcount="0" firenextcount="0" useclientlayout="false" updatecontrol="true" enableevent="true" loadkeymode="keep" loadfiltermode="keep" reversesubsum="false"/>
- <Dataset id="ds_main_common_in_indeptlist_dept" firefirstcount="0" firenextcount="0" useclientlayout="false" updatecontrol="true" enableevent="true" loadkeymode="keep" loadfiltermode="keep" reversesubsum="false"/>
- <Dataset id="ds_main_common" firefirstcount="0" firenextcount="0" useclientlayout="false" updatecontrol="true" enableevent="true" loadkeymode="keep" loadfiltermode="keep" reversesubsum="false">
- <ColumnInfo>
- <Column id="com" type="STRING" size="256"/>
- </ColumnInfo>
- <Rows>
- <Row>
- <Col id="com"/>
- </Row>
- </Rows>
- </Dataset>
- <Dataset id="ds_main_common_dsch_dschdeptlist_dept" firefirstcount="0" firenextcount="0" useclientlayout="false" updatecontrol="true" enableevent="true" loadkeymode="keep" loadfiltermode="keep" reversesubsum="false"/>
- <Dataset id="ds_main_patinfo_patinfolist" firefirstcount="0" firenextcount="0" useclientlayout="false" updatecontrol="true" enableevent="true" loadkeymode="keep" loadfiltermode="keep" reversesubsum="false"/>
- <Dataset id="ds_main_humaninfo_outpatinfo_patlist" firefirstcount="0" firenextcount="0" useclientlayout="false" updatecontrol="true" enableevent="true" loadkeymode="keep" loadfiltermode="keep" reversesubsum="false"/>
- <Dataset id="ds_main_humaninfo_inpatinfo_patlist" firefirstcount="0" firenextcount="0" useclientlayout="false" updatecontrol="true" enableevent="true" loadkeymode="keep" loadfiltermode="keep" reversesubsum="false"/>
- <Dataset id="ds_main_humaninfo_cncrhist_histlist" firefirstcount="0" firenextcount="0" useclientlayout="false" updatecontrol="true" enableevent="true" loadkeymode="keep" loadfiltermode="keep" reversesubsum="false">
- <ColumnInfo>
- <Column id="cncrno" type="STRING" size="256"/>
- <Column id="cncrhistno" type="STRING" size="256"/>
- <Column id="seqno" type="STRING" size="256"/>
- <Column id="cncr_histno" type="STRING" size="256"/>
- <Column id="instcd" type="STRING" size="256"/>
- <Column id="pid" type="STRING" size="256"/>
- <Column id="cretno" type="STRING" size="256"/>
- <Column id="orddd" type="STRING" size="256"/>
- <Column id="outorddept" type="STRING" size="256"/>
- <Column id="outorddr" type="STRING" size="256"/>
- <Column id="dschdd" type="STRING" size="256"/>
- <Column id="dschorddept" type="STRING" size="256"/>
- <Column id="dschorddr" type="STRING" size="256"/>
- <Column id="indg" type="STRING" size="256"/>
- <Column id="totinhospdayno" type="STRING" size="256"/>
- <Column id="ordtype" type="STRING" size="256"/>
- <Column id="pnm" type="STRING" size="256"/>
- <Column id="rrgstno1" type="STRING" size="256"/>
- <Column id="rrgstno2" type="STRING" size="256"/>
- <Column id="sex" type="STRING" size="256"/>
- <Column id="age" type="STRING" size="256"/>
- <Column id="hometel" type="STRING" size="256"/>
- <Column id="mpphontel" type="STRING" size="256"/>
- <Column id="zipcode1" type="STRING" size="256"/>
- <Column id="zipcode2" type="STRING" size="256"/>
- <Column id="addr" type="STRING" size="256"/>
- <Column id="detaddr" type="STRING" size="256"/>
- <Column id="maryflag" type="STRING" size="256"/>
- <Column id="forgnerflag" type="STRING" size="256"/>
- <Column id="job1" type="STRING" size="256"/>
- <Column id="etcjob" type="STRING" size="256"/>
- <Column id="reluserhngnm" type="STRING" size="256"/>
- <Column id="relation" type="STRING" size="256"/>
- <Column id="relzipcd1" type="STRING" size="256"/>
- <Column id="relzipcd2" type="STRING" size="256"/>
- <Column id="reladdr" type="STRING" size="256"/>
- <Column id="reldetaddr" type="STRING" size="256"/>
- <Column id="relmpphontel" type="STRING" size="256"/>
- <Column id="relhometel" type="STRING" size="256"/>
- <Column id="travoflag" type="STRING" size="256"/>
- <Column id="prmycncryn" type="STRING" size="256"/>
- <Column id="sickstatcd" type="STRING" size="256"/>
- <Column id="cureopendd" type="STRING" size="256"/>
- <Column id="dethplcecd" type="STRING" size="256"/>
- <Column id="dethdd" type="STRING" size="256"/>
- <Column id="dethcause" type="STRING" size="256"/>
- <Column id="yearcnt" type="STRING" size="256"/>
- <Column id="monthcnt" type="STRING" size="256"/>
- <Column id="diagdd" type="STRING" size="256"/>
- <Column id="diaghospcd" type="STRING" size="256"/>
- <Column id="etcdiaghospnm" type="STRING" size="256"/>
- <Column id="diagdrid" type="STRING" size="256"/>
- <Column id="diagdrnm" type="STRING" size="256"/>
- <Column id="lastdiagmthdcd" type="STRING" size="256"/>
- <Column id="clinical" type="STRING" size="256"/>
- <Column id="etcclinical" type="STRING" size="256"/>
- <Column id="tophcd" type="STRING" size="256"/>
- <Column id="tophnm" type="STRING" size="256"/>
- <Column id="tophseqno" type="STRING" size="256"/>
- <Column id="morphcd1" type="STRING" size="256"/>
- <Column id="morphnm1" type="STRING" size="256"/>
- <Column id="morphseqno1" type="STRING" size="256"/>
- <Column id="morphcd2" type="STRING" size="256"/>
- <Column id="morphnm2" type="STRING" size="256"/>
- <Column id="morphseqno2" type="STRING" size="256"/>
- <Column id="icd10cd" type="STRING" size="256"/>
- <Column id="icd10nm" type="STRING" size="256"/>
- <Column id="difrntgrdecd" type="STRING" size="256"/>
- <Column id="seer" type="STRING" size="256"/>
- <Column id="t" type="STRING" size="256"/>
- <Column id="n" type="STRING" size="256"/>
- <Column id="m" type="STRING" size="256"/>
- <Column id="stagingcd" type="STRING" size="256"/>
- <Column id="etcstagflagcd" type="STRING" size="256"/>
- <Column id="etcstagcnts" type="STRING" size="256"/>
- <Column id="rerntmetstaspartcd1" type="STRING" size="256"/>
- <Column id="rerntmetstaspartcd2" type="STRING" size="256"/>
- <Column id="rerntmetstaspartcd3" type="STRING" size="256"/>
- <Column id="rerntmetstaspartcd4" type="STRING" size="256"/>
- <Column id="ecog" type="STRING" size="256"/>
- <Column id="regimen1" type="STRING" size="256"/>
- <Column id="regimen2" type="STRING" size="256"/>
- <Column id="fstrgstrid" type="STRING" size="256"/>
- <Column id="fstrgstrnm" type="STRING" size="256"/>
- <Column id="fstrgstdt" type="STRING" size="256"/>
- <Column id="lastrgstrid" type="STRING" size="256"/>
- <Column id="lastrgstrnm" type="STRING" size="256"/>
- <Column id="lastrgstdt" type="STRING" size="256"/>
- <Column id="indd" type="STRING" size="256"/>
- <Column id="inorddept" type="STRING" size="256"/>
- <Column id="inorddr" type="STRING" size="256"/>
- <Column id="epoch" type="STRING" size="256"/>
- <Column id="rerntmetstaspartseq1" type="STRING" size="256"/>
- <Column id="rerntmetstaspartseq2" type="STRING" size="256"/>
- <Column id="rerntmetstaspartseq3" type="STRING" size="256"/>
- <Column id="rerntmetstaspartseq4" type="STRING" size="256"/>
- <Column id="rerntmetstaspartnm1" type="STRING" size="256"/>
- <Column id="rerntmetstaspartnm2" type="STRING" size="256"/>
- <Column id="rerntmetstaspartnm3" type="STRING" size="256"/>
- <Column id="rerntmetstaspartnm4" type="STRING" size="256"/>
- <Column id="diagroute" type="STRING" size="256"/>
- <Column id="laterality" type="STRING" size="256"/>
- </ColumnInfo>
- <Rows>
- <Row>
- <Col id="cncrno"/>
- <Col id="cncrhistno"/>
- <Col id="seqno"/>
- <Col id="cncr_histno"/>
- <Col id="instcd"/>
- <Col id="pid"/>
- <Col id="cretno"/>
- <Col id="orddd"/>
- <Col id="outorddept"/>
- <Col id="outorddr"/>
- <Col id="dschdd"/>
- <Col id="dschorddept"/>
- <Col id="dschorddr"/>
- <Col id="indg"/>
- <Col id="totinhospdayno"/>
- <Col id="ordtype"/>
- <Col id="pnm"/>
- <Col id="rrgstno1"/>
- <Col id="rrgstno2"/>
- <Col id="sex"/>
- <Col id="age"/>
- <Col id="hometel"/>
- <Col id="mpphontel"/>
- <Col id="zipcode1"/>
- <Col id="zipcode2"/>
- <Col id="addr"/>
- <Col id="detaddr"/>
- <Col id="maryflag"/>
- <Col id="forgnerflag"/>
- <Col id="job1"/>
- <Col id="etcjob"/>
- <Col id="reluserhngnm"/>
- <Col id="relation"/>
- <Col id="relzipcd1"/>
- <Col id="relzipcd2"/>
- <Col id="reladdr"/>
- <Col id="reldetaddr"/>
- <Col id="relmpphontel"/>
- <Col id="relhometel"/>
- <Col id="travoflag"/>
- <Col id="prmycncryn"/>
- <Col id="sickstatcd"/>
- <Col id="cureopendd"/>
- <Col id="dethplcecd"/>
- <Col id="dethdd"/>
- <Col id="dethcause"/>
- <Col id="yearcnt"/>
- <Col id="monthcnt"/>
- <Col id="diagdd"/>
- <Col id="diaghospcd"/>
- <Col id="etcdiaghospnm"/>
- <Col id="diagdrid"/>
- <Col id="diagdrnm"/>
- <Col id="lastdiagmthdcd"/>
- <Col id="clinical"/>
- <Col id="etcclinical"/>
- <Col id="tophcd"/>
- <Col id="tophnm"/>
- <Col id="tophseqno"/>
- <Col id="morphcd1"/>
- <Col id="morphnm1"/>
- <Col id="morphseqno1"/>
- <Col id="morphcd2"/>
- <Col id="morphnm2"/>
- <Col id="morphseqno2"/>
- <Col id="icd10cd"/>
- <Col id="icd10nm"/>
- <Col id="difrntgrdecd"/>
- <Col id="seer"/>
- <Col id="t"/>
- <Col id="n"/>
- <Col id="m"/>
- <Col id="stagingcd"/>
- <Col id="etcstagflagcd"/>
- <Col id="etcstagcnts"/>
- <Col id="rerntmetstaspartcd1"/>
- <Col id="rerntmetstaspartcd2"/>
- <Col id="rerntmetstaspartcd3"/>
- <Col id="rerntmetstaspartcd4"/>
- <Col id="ecog"/>
- <Col id="regimen1"/>
- <Col id="regimen2"/>
- <Col id="fstrgstrid"/>
- <Col id="fstrgstrnm"/>
- <Col id="fstrgstdt"/>
- <Col id="lastrgstrid"/>
- <Col id="lastrgstrnm"/>
- <Col id="lastrgstdt"/>
- <Col id="indd"/>
- <Col id="inorddept"/>
- <Col id="inorddr"/>
- <Col id="epoch"/>
- <Col id="rerntmetstaspartseq1"/>
- <Col id="rerntmetstaspartseq2"/>
- <Col id="rerntmetstaspartseq3"/>
- <Col id="rerntmetstaspartseq4"/>
- <Col id="rerntmetstaspartnm1"/>
- <Col id="rerntmetstaspartnm2"/>
- <Col id="rerntmetstaspartnm3"/>
- <Col id="rerntmetstaspartnm4"/>
- <Col id="diagroute"/>
- <Col id="laterality"/>
- </Row>
- </Rows>
- </Dataset>
- <Dataset id="ds_main_humaninfo_doainfo_list" firefirstcount="0" firenextcount="0" useclientlayout="false" updatecontrol="true" enableevent="true" loadkeymode="keep" loadfiltermode="keep" reversesubsum="false">
- <ColumnInfo>
- <Column id="serdiagno" type="STRING" size="256"/>
- <Column id="pid" type="STRING" size="256"/>
- <Column id="hngnm" type="STRING" size="256"/>
- <Column id="strcnfmmthd" type="STRING" size="256"/>
- <Column id="maindiagcd" type="STRING" size="256"/>
- <Column id="healcarediagcd" type="STRING" size="256"/>
- <Column id="edidiagcd" type="STRING" size="256"/>
- <Column id="genrdd" type="STRING" size="256"/>
- <Column id="cncrdiagcnfmdd" type="STRING" size="256"/>
- </ColumnInfo>
- <Rows>
- <Row>
- <Col id="serdiagno"/>
- <Col id="pid"/>
- <Col id="hngnm"/>
- <Col id="strcnfmmthd"/>
- <Col id="maindiagcd"/>
- <Col id="healcarediagcd"/>
- <Col id="edidiagcd"/>
- <Col id="genrdd"/>
- <Col id="cncrdiagcnfmdd"/>
- </Row>
- </Rows>
- </Dataset>
- <Dataset id="ds_main_cncrpatlist_list" firefirstcount="0" firenextcount="0" useclientlayout="false" updatecontrol="true" enableevent="true" loadkeymode="keep" loadfiltermode="keep" reversesubsum="false">
- <ColumnInfo>
- <Column id="hospcd" type="STRING" size="256"/>
- <Column id="pid" type="STRING" size="256"/>
- <Column id="age" type="STRING" size="256"/>
- <Column id="rrgstno" type="STRING" size="256"/>
- <Column id="hngnm" type="STRING" size="256"/>
- <Column id="sex" type="STRING" size="256"/>
- <Column id="forgneryn" type="STRING" size="256"/>
- <Column id="wandereryn" type="STRING" size="256"/>
- <Column id="jobcd1" type="STRING" size="256"/>
- <Column id="jobcd2" type="STRING" size="256"/>
- <Column id="jobetc" type="STRING" size="256"/>
- <Column id="addr" type="STRING" size="256"/>
- <Column id="detaddr" type="STRING" size="256"/>
- <Column id="area" type="STRING" size="256"/>
- <Column id="zipcd" type="STRING" size="256"/>
- <Column id="diagdd" type="STRING" size="256"/>
- <Column id="diagroute" type="STRING" size="256"/>
- <Column id="tophcd" type="STRING" size="256"/>
- <Column id="topengnm" type="STRING" size="256"/>
- <Column id="laterality" type="STRING" size="256"/>
- <Column id="topblank" type="STRING" size="256"/>
- <Column id="morphcd" type="STRING" size="256"/>
- <Column id="morphengnm" type="STRING" size="256"/>
- <Column id="morphblack" type="STRING" size="256"/>
- <Column id="dethdd" type="STRING" size="256"/>
- <Column id="dethmonth" type="STRING" size="256"/>
- <Column id="blank1" type="STRING" size="256"/>
- <Column id="lastdiagmthdcd" type="STRING" size="256"/>
- <Column id="clinical" type="STRING" size="256"/>
- <Column id="etcclinical" type="STRING" size="256"/>
- <Column id="remedy" type="STRING" size="256"/>
- <Column id="etccure" type="STRING" size="256"/>
- <Column id="brithyear" type="STRING" size="256"/>
- <Column id="orddd" type="STRING" size="256"/>
- <Column id="dschdd" type="STRING" size="256"/>
- <Column id="phontel" type="STRING" size="256"/>
- <Column id="cncryear" type="STRING" size="256"/>
- <Column id="blank2" type="STRING" size="256"/>
- <Column id="inpatcnt" type="STRING" size="256"/>
- <Column id="lastdt" type="STRING" size="256"/>
- <Column id="lastusernm" type="STRING" size="256"/>
- <Column id="licenceno" type="STRING" size="256"/>
- <Column id="seer" type="STRING" size="256"/>
- <Column id="seernm" type="STRING" size="256"/>
- <Column id="blank3" type="STRING" size="256"/>
- <Column id="stage" type="STRING" size="256"/>
- <Column id="stagingcd" type="STRING" size="256"/>
- <Column id="tplengnm1" type="STRING" size="256"/>
- <Column id="cncrno" type="STRING" size="256"/>
- <Column id="prmycncryn" type="STRING" size="256"/>
- <Column id="age2" type="STRING" size="256"/>
- <Column id="orddeptnm" type="STRING" size="256"/>
- <Column id="orddrnm" type="STRING" size="256"/>
- <Column id="dschdeptnm" type="STRING" size="256"/>
- <Column id="dschdrnm" type="STRING" size="256"/>
- <Column id="indg" type="STRING" size="256"/>
- <Column id="totinhospdayno" type="STRING" size="256"/>
- <Column id="maryflag" type="STRING" size="256"/>
- <Column id="fsexamflag" type="STRING" size="256"/>
- <Column id="sickstatcd" type="STRING" size="256"/>
- <Column id="diaghospcd" type="STRING" size="256"/>
- <Column id="etcdiaghospnm" type="STRING" size="256"/>
- <Column id="diagdrid" type="STRING" size="256"/>
- <Column id="dethplcecd" type="STRING" size="256"/>
- <Column id="dethcause" type="STRING" size="256"/>
- <Column id="icd10cd" type="STRING" size="256"/>
- <Column id="morphcd2" type="STRING" size="256"/>
- <Column id="morphcd1" type="STRING" size="256"/>
- <Column id="morphseqno1" type="STRING" size="256"/>
- <Column id="rerntmetstaspartcd1" type="STRING" size="256"/>
- <Column id="rerntmetstaspartcd2" type="STRING" size="256"/>
- <Column id="rerntmetstaspartcd3" type="STRING" size="256"/>
- <Column id="rerntmetstaspartcd4" type="STRING" size="256"/>
- <Column id="difrntgrdecd" type="STRING" size="256"/>
- <Column id="etcstagflagcd" type="STRING" size="256"/>
- <Column id="etcstagcnts" type="STRING" size="256"/>
- <Column id="ecog" type="STRING" size="256"/>
- <Column id="regimen1" type="STRING" size="256"/>
- <Column id="regimen2" type="STRING" size="256"/>
- <Column id="cureopendd" type="STRING" size="256"/>
- <Column id="chosbfcurecd1" type="STRING" size="256"/>
- <Column id="chosbfcuredd1" type="STRING" size="256"/>
- <Column id="chosbfcurecd2" type="STRING" size="256"/>
- <Column id="chosbfcuredd2" type="STRING" size="256"/>
- <Column id="chosbfcurecd3" type="STRING" size="256"/>
- <Column id="chosbfcuredd3" type="STRING" size="256"/>
- <Column id="prmypartcurecd1" type="STRING" size="256"/>
- <Column id="prmypartcuredd1" type="STRING" size="256"/>
- <Column id="prmypartcurecd2" type="STRING" size="256"/>
- <Column id="prmypartcuredd2" type="STRING" size="256"/>
- <Column id="prmypartcurecd3" type="STRING" size="256"/>
- <Column id="prmypartcuredd3" type="STRING" size="256"/>
- <Column id="prmypartcurecd4" type="STRING" size="256"/>
- <Column id="prmypartcuredd4" type="STRING" size="256"/>
- <Column id="metstaspartcurecd1" type="STRING" size="256"/>
- <Column id="metstaspartcuredd1" type="STRING" size="256"/>
- <Column id="metstaspartcurecd2" type="STRING" size="256"/>
- <Column id="metstaspartcuredd2" type="STRING" size="256"/>
- <Column id="metstaspartcurecd3" type="STRING" size="256"/>
- <Column id="metstaspartcuredd3" type="STRING" size="256"/>
- <Column id="metstaspartcurecd4" type="STRING" size="256"/>
- <Column id="metstaspartcuredd4" type="STRING" size="256"/>
- <Column id="reluserhngnm" type="STRING" size="256"/>
- <Column id="relation" type="STRING" size="256"/>
- <Column id="relzipcd" type="STRING" size="256"/>
- <Column id="reladdr" type="STRING" size="256"/>
- <Column id="reldetaddr" type="STRING" size="256"/>
- <Column id="relmpphontel" type="STRING" size="256"/>
- <Column id="relhometel" type="STRING" size="256"/>
- <Column id="ordtype" type="STRING" size="256"/>
- <Column id="cncr_histno" type="STRING" size="256"/>
- <Column id="etcdiagroute" type="STRING" size="256"/>
- <Column id="tplengnm2" type="STRING" size="256"/>
- <Column id="tplengnm3" type="STRING" size="256"/>
- <Column id="tplengnm4" type="STRING" size="256"/>
- </ColumnInfo>
- <Rows>
- <Row>
- <Col id="hospcd"/>
- <Col id="pid"/>
- <Col id="age"/>
- <Col id="rrgstno"/>
- <Col id="hngnm"/>
- <Col id="sex"/>
- <Col id="forgneryn"/>
- <Col id="wandereryn"/>
- <Col id="jobcd1"/>
- <Col id="jobcd2"/>
- <Col id="jobetc"/>
- <Col id="addr"/>
- <Col id="detaddr"/>
- <Col id="area"/>
- <Col id="zipcd"/>
- <Col id="diagdd"/>
- <Col id="diagroute"/>
- <Col id="tophcd"/>
- <Col id="topengnm"/>
- <Col id="laterality"/>
- <Col id="topblank"/>
- <Col id="morphcd"/>
- <Col id="morphengnm"/>
- <Col id="morphblack"/>
- <Col id="dethdd"/>
- <Col id="dethmonth"/>
- <Col id="blank1"/>
- <Col id="lastdiagmthdcd"/>
- <Col id="clinical"/>
- <Col id="etcclinical"/>
- <Col id="remedy"/>
- <Col id="etccure"/>
- <Col id="brithyear"/>
- <Col id="orddd"/>
- <Col id="dschdd"/>
- <Col id="phontel"/>
- <Col id="cncryear"/>
- <Col id="blank2"/>
- <Col id="inpatcnt"/>
- <Col id="lastdt"/>
- <Col id="lastusernm"/>
- <Col id="licenceno"/>
- <Col id="seer"/>
- <Col id="seernm"/>
- <Col id="blank3"/>
- <Col id="stage"/>
- <Col id="stagingcd"/>
- <Col id="tplengnm1"/>
- <Col id="cncrno"/>
- <Col id="prmycncryn"/>
- <Col id="age2"/>
- <Col id="orddeptnm"/>
- <Col id="orddrnm"/>
- <Col id="dschdeptnm"/>
- <Col id="dschdrnm"/>
- <Col id="indg"/>
- <Col id="totinhospdayno"/>
- <Col id="maryflag"/>
- <Col id="fsexamflag"/>
- <Col id="sickstatcd"/>
- <Col id="diaghospcd"/>
- <Col id="etcdiaghospnm"/>
- <Col id="diagdrid"/>
- <Col id="dethplcecd"/>
- <Col id="dethcause"/>
- <Col id="icd10cd"/>
- <Col id="morphcd2"/>
- <Col id="morphcd1"/>
- <Col id="morphseqno1"/>
- <Col id="rerntmetstaspartcd1"/>
- <Col id="rerntmetstaspartcd2"/>
- <Col id="rerntmetstaspartcd3"/>
- <Col id="rerntmetstaspartcd4"/>
- <Col id="difrntgrdecd"/>
- <Col id="etcstagflagcd"/>
- <Col id="etcstagcnts"/>
- <Col id="ecog"/>
- <Col id="regimen1"/>
- <Col id="regimen2"/>
- <Col id="cureopendd"/>
- <Col id="chosbfcurecd1"/>
- <Col id="chosbfcuredd1"/>
- <Col id="chosbfcurecd2"/>
- <Col id="chosbfcuredd2"/>
- <Col id="chosbfcurecd3"/>
- <Col id="chosbfcuredd3"/>
- <Col id="prmypartcurecd1"/>
- <Col id="prmypartcuredd1"/>
- <Col id="prmypartcurecd2"/>
- <Col id="prmypartcuredd2"/>
- <Col id="prmypartcurecd3"/>
- <Col id="prmypartcuredd3"/>
- <Col id="prmypartcurecd4"/>
- <Col id="prmypartcuredd4"/>
- <Col id="metstaspartcurecd1"/>
- <Col id="metstaspartcuredd1"/>
- <Col id="metstaspartcurecd2"/>
- <Col id="metstaspartcuredd2"/>
- <Col id="metstaspartcurecd3"/>
- <Col id="metstaspartcuredd3"/>
- <Col id="metstaspartcurecd4"/>
- <Col id="metstaspartcuredd4"/>
- <Col id="reluserhngnm"/>
- <Col id="relation"/>
- <Col id="relzipcd"/>
- <Col id="reladdr"/>
- <Col id="reldetaddr"/>
- <Col id="relmpphontel"/>
- <Col id="relhometel"/>
- <Col id="ordtype"/>
- <Col id="cncr_histno"/>
- <Col id="etcdiagroute"/>
- <Col id="tplengnm2"/>
- <Col id="tplengnm3"/>
- <Col id="tplengnm4"/>
- </Row>
- </Rows>
- </Dataset>
- <Dataset id="ds_main_srchcncrpat" firefirstcount="0" firenextcount="0" useclientlayout="false" updatecontrol="true" enableevent="true" loadkeymode="keep" loadfiltermode="keep" reversesubsum="false">
- <ColumnInfo>
- <Column id="ordtype" type="STRING" size="256"/>
- <Column id="fromdd" type="STRING" size="256"/>
- <Column id="todd" type="STRING" size="256"/>
- <Column id="deptinfo" type="STRING" size="256"/>
- <Column id="drinfo" type="STRING" size="256"/>
- <Column id="srchflag" type="STRING" size="256"/>
- <Column id="dethyn" type="STRING" size="256"/>
- <Column id="dschfromdd" type="STRING" size="256"/>
- <Column id="dschtodd" type="STRING" size="256"/>
- <Column id="skind" type="STRING" size="256"/>
- </ColumnInfo>
- <Rows>
- <Row>
- <Col id="ordtype">A</Col>
- <Col id="fromdd"/>
- <Col id="todd"/>
- <Col id="deptinfo"/>
- <Col id="drinfo"/>
- <Col id="srchflag">1</Col>
- <Col id="dethyn"/>
- <Col id="dschfromdd"/>
- <Col id="dschtodd"/>
- </Row>
- </Rows>
- </Dataset>
- <Dataset id="ds_main_cncrrgstpatlist_list" firefirstcount="0" firenextcount="0" useclientlayout="false" updatecontrol="true" enableevent="true" loadkeymode="keep" loadfiltermode="keep" reversesubsum="false">
- <ColumnInfo>
- <Column id="ordtype" type="STRING" size="256"/>
- <Column id="pid" type="STRING" size="256"/>
- <Column id="cretno" type="STRING" size="256"/>
- <Column id="orddd" type="STRING" size="256"/>
- <Column id="patnm" type="STRING" size="256"/>
- <Column id="dschdd" type="STRING" size="256"/>
- <Column id="orddeptcd" type="STRING" size="256"/>
- <Column id="orddeptnm" type="STRING" size="256"/>
- <Column id="orddrid" type="STRING" size="256"/>
- <Column id="diagcd" type="STRING" size="256"/>
- <Column id="cncr_histno" type="STRING" size="256"/>
- <Column id="icd10cd" type="STRING" size="256"/>
- <Column id="serdiagno" type="STRING" size="256"/>
- <Column id="cncrexptflag" type="STRING" size="256"/>
- <Column id="cncrexpt" type="STRING" size="256"/>
- <Column id="dethdd" type="STRING" size="256"/>
- <Column id="dethcause" type="STRING" size="256"/>
- <Column id="dethplcecd" type="STRING" size="256"/>
- </ColumnInfo>
- <Rows>
- <Row>
- <Col id="ordtype"/>
- <Col id="pid"/>
- <Col id="cretno"/>
- <Col id="orddd"/>
- <Col id="patnm"/>
- <Col id="dschdd"/>
- <Col id="orddeptcd"/>
- <Col id="orddeptnm"/>
- <Col id="orddrid"/>
- <Col id="diagcd"/>
- <Col id="cncr_histno"/>
- <Col id="icd10cd"/>
- <Col id="serdiagno"/>
- <Col id="cncrexptflag"/>
- <Col id="cncrexpt"/>
- <Col id="dethdd"/>
- <Col id="dethcause"/>
- <Col id="dethplcecd"/>
- </Row>
- </Rows>
- </Dataset>
- <Dataset id="ds_main_cncrnoinfo_haveno" firefirstcount="0" firenextcount="0" useclientlayout="false" updatecontrol="true" enableevent="true" loadkeymode="keep" loadfiltermode="keep" reversesubsum="false">
- <ColumnInfo>
- <Column id="insflag" type="STRING" size="256"/>
- <Column id="cncrflag" type="STRING" size="256"/>
- <Column id="cncrhistflag" type="STRING" size="256"/>
- </ColumnInfo>
- <Rows>
- <Row>
- <Col id="insflag"/>
- <Col id="cncrflag"/>
- <Col id="cncrhistflag"/>
- </Row>
- </Rows>
- </Dataset>
- <Dataset id="ds_main_diagcdinfo" firefirstcount="0" firenextcount="0" useclientlayout="false" updatecontrol="true" enableevent="true" loadkeymode="keep" loadfiltermode="keep" reversesubsum="false">
- <ColumnInfo>
- <Column id="kcd4m" type="STRING" size="256"/>
- </ColumnInfo>
- <Rows>
- <Row>
- <Col id="kcd4m"/>
- </Row>
- </Rows>
- </Dataset>
- <Dataset id="ds_main_deptdiagcdlist_deptdiagcdinfo" firefirstcount="0" firenextcount="0" useclientlayout="false" updatecontrol="true" enableevent="true" loadkeymode="keep" loadfiltermode="keep" reversesubsum="false"/>
- <Dataset id="ds_main_doublepat_patinfo" firefirstcount="0" firenextcount="0" useclientlayout="false" updatecontrol="true" enableevent="true" loadkeymode="keep" loadfiltermode="keep" reversesubsum="false"/>
- <Dataset id="ds_send_reqdata" firefirstcount="0" firenextcount="0" useclientlayout="false" updatecontrol="true" enableevent="true" loadkeymode="keep" loadfiltermode="keep" reversesubsum="false"/>
- <Dataset id="ds_send_savedata" firefirstcount="0" firenextcount="0" useclientlayout="false" updatecontrol="true" enableevent="true" loadkeymode="keep" loadfiltermode="keep" reversesubsum="false"/>
- <Dataset id="ds_send_cond" firefirstcount="0" firenextcount="0" useclientlayout="false" updatecontrol="true" enableevent="true" loadkeymode="keep" loadfiltermode="keep" reversesubsum="false">
- <ColumnInfo>
- <Column id="srchcond" type="STRING" size="256"/>
- <Column id="pid" type="STRING" size="256"/>
- </ColumnInfo>
- <Rows>
- <Row>
- <Col id="srchcond"/>
- <Col id="pid"/>
- </Row>
- </Rows>
- </Dataset>
- <Dataset id="ds_hidden_cncrpatref_orddrinfo_drlist" firefirstcount="0" firenextcount="0" useclientlayout="false" updatecontrol="true" enableevent="true" loadkeymode="keep" loadfiltermode="keep" reversesubsum="false">
- <ColumnInfo>
- <Column id="drnm" type="STRING" size="256"/>
- <Column id="drid" type="STRING" size="256"/>
- </ColumnInfo>
- <Rows>
- <Row>
- <Col id="drnm"/>
- <Col id="drid"/>
- </Row>
- </Rows>
- </Dataset>
- <Dataset id="ds_hidden_cncrpatref_orddeptinfo_orddeptlist" firefirstcount="0" firenextcount="0" useclientlayout="false" updatecontrol="true" enableevent="true" loadkeymode="keep" loadfiltermode="keep" reversesubsum="false">
- <ColumnInfo>
- <Column id="depthngnm" type="STRING" size="256"/>
- <Column id="deptcd" type="STRING" size="256"/>
- </ColumnInfo>
- <Rows>
- <Row>
- <Col id="depthngnm"/>
- <Col id="deptcd"/>
- </Row>
- </Rows>
- </Dataset>
- <Dataset id="ds_hidden_pathumtrainfo_cncrpatinfo_job1" firefirstcount="0" firenextcount="0" useclientlayout="false" updatecontrol="true" enableevent="true" loadkeymode="keep" loadfiltermode="keep" reversesubsum="false">
- <ColumnInfo>
- <Column id="cdid" type="STRING" size="256"/>
- <Column id="cdnm" type="STRING" size="256"/>
- </ColumnInfo>
- <Rows>
- <Row>
- <Col id="cdid"/>
- <Col id="cdnm"/>
- </Row>
- </Rows>
- </Dataset>
- <Dataset id="ds_hidden_pathumtrainfo_cncrpatinfo_maryflag" firefirstcount="0" firenextcount="0" useclientlayout="false" updatecontrol="true" enableevent="true" loadkeymode="keep" loadfiltermode="keep" reversesubsum="false">
- <ColumnInfo>
- <Column id="cdid" type="STRING" size="256"/>
- <Column id="cdnm" type="STRING" size="256"/>
- </ColumnInfo>
- <Rows>
- <Row>
- <Col id="cdid"/>
- <Col id="cdnm"/>
- </Row>
- </Rows>
- </Dataset>
- <Dataset id="ds_hidden_pathumtrainfo_cncrpatinfo_outorddr_user" firefirstcount="0" firenextcount="0" useclientlayout="false" updatecontrol="true" enableevent="true" loadkeymode="keep" loadfiltermode="keep" reversesubsum="false">
- <ColumnInfo>
- <Column id="userid" type="STRING" size="256"/>
- <Column id="usernm" type="STRING" size="256"/>
- </ColumnInfo>
- <Rows>
- <Row>
- <Col id="userid"/>
- <Col id="usernm"/>
- </Row>
- </Rows>
- </Dataset>
- <Dataset id="ds_hidden_pathumtrainfo_cncrpatinfo_dschorddept" firefirstcount="0" firenextcount="0" useclientlayout="false" updatecontrol="true" enableevent="true" loadkeymode="keep" loadfiltermode="keep" reversesubsum="false">
- <ColumnInfo>
- <Column id="deptcd" type="STRING" size="256"/>
- <Column id="depthngnm" type="STRING" size="256"/>
- </ColumnInfo>
- <Rows>
- <Row>
- <Col id="deptcd"/>
- <Col id="depthngnm"/>
- </Row>
- </Rows>
- </Dataset>
- <Dataset id="ds_hidden_pathumtrainfo_cncrpatinfo_dschorddr_user" firefirstcount="0" firenextcount="0" useclientlayout="false" updatecontrol="true" enableevent="true" loadkeymode="keep" loadfiltermode="keep" reversesubsum="false">
- <ColumnInfo>
- <Column id="usernm" type="STRING" size="256"/>
- <Column id="userid" type="STRING" size="256"/>
- </ColumnInfo>
- <Rows>
- <Row>
- <Col id="usernm"/>
- <Col id="userid"/>
- </Row>
- </Rows>
- </Dataset>
- <Dataset id="ds_hidden_pathumtrainfo_cncrpatinfo" firefirstcount="0" firenextcount="0" useclientlayout="false" updatecontrol="true" enableevent="true" loadkeymode="keep" loadfiltermode="keep" reversesubsum="false">
- <ColumnInfo>
- <Column id="indd" type="STRING" size="256"/>
- </ColumnInfo>
- <Rows>
- <Row>
- <Col id="indd"/>
- </Row>
- </Rows>
- </Dataset>
- <Dataset id="ds_hidden_pathumtrainfo_cncrpatinfo_inorddept" firefirstcount="0" firenextcount="0" useclientlayout="false" updatecontrol="true" enableevent="true" loadkeymode="keep" loadfiltermode="keep" reversesubsum="false">
- <ColumnInfo>
- <Column id="deptcd" type="STRING" size="256"/>
- <Column id="depthngnm" type="STRING" size="256"/>
- </ColumnInfo>
- <Rows>
- <Row>
- <Col id="deptcd"/>
- <Col id="depthngnm"/>
- </Row>
- </Rows>
- </Dataset>
- <Dataset id="ds_hidden_pathumtrainfo_cncrpatinfo_inorddr_user" firefirstcount="0" firenextcount="0" useclientlayout="false" updatecontrol="true" enableevent="true" loadkeymode="keep" loadfiltermode="keep" reversesubsum="false">
- <ColumnInfo>
- <Column id="usernm" type="STRING" size="256"/>
- <Column id="userid" type="STRING" size="256"/>
- </ColumnInfo>
- <Rows>
- <Row>
- <Col id="usernm"/>
- <Col id="userid"/>
- </Row>
- </Rows>
- </Dataset>
- <Dataset id="ds_hidden_pathumtrainfo_cncrpatinfo_outorddept" firefirstcount="0" firenextcount="0" useclientlayout="false" updatecontrol="true" enableevent="true" loadkeymode="keep" loadfiltermode="keep" reversesubsum="false">
- <ColumnInfo>
- <Column id="deptcd" type="STRING" size="256"/>
- <Column id="depthngnm" type="STRING" size="256"/>
- </ColumnInfo>
- <Rows>
- <Row>
- <Col id="deptcd"/>
- <Col id="depthngnm"/>
- </Row>
- </Rows>
- </Dataset>
- <Dataset id="ds_hidden_pathumtrainfo_relationinfo_relation" firefirstcount="0" firenextcount="0" useclientlayout="false" updatecontrol="true" enableevent="true" loadkeymode="keep" loadfiltermode="keep" reversesubsum="false">
- <ColumnInfo>
- <Column id="cdid" type="STRING" size="256"/>
- <Column id="cdnm" type="STRING" size="256"/>
- </ColumnInfo>
- <Rows>
- <Row>
- <Col id="cdid"/>
- <Col id="cdnm"/>
- </Row>
- </Rows>
- </Dataset>
- <Dataset id="ds_hidden_cncrpatrgst_regstatus_sickstat" firefirstcount="0" firenextcount="0" useclientlayout="false" updatecontrol="true" enableevent="true" loadkeymode="keep" loadfiltermode="keep" reversesubsum="false">
- <ColumnInfo>
- <Column id="cdid" type="STRING" size="256"/>
- <Column id="cdnm" type="STRING" size="256"/>
- </ColumnInfo>
- <Rows>
- <Row>
- <Col id="cdid"/>
- <Col id="cdnm"/>
- </Row>
- </Rows>
- </Dataset>
- <Dataset id="ds_hidden_cncrpatrgst_rerntmetstaspart_ecog" firefirstcount="0" firenextcount="0" useclientlayout="false" updatecontrol="true" enableevent="true" loadkeymode="keep" loadfiltermode="keep" reversesubsum="false">
- <ColumnInfo>
- <Column id="cdid" type="STRING" size="256"/>
- <Column id="cdnm" type="STRING" size="256"/>
- </ColumnInfo>
- <Rows>
- <Row>
- <Col id="cdid"/>
- <Col id="cdnm"/>
- </Row>
- </Rows>
- </Dataset>
- <Dataset id="ds_hidden_cncrpatrgst_rerntmetstaspart_regimen1" firefirstcount="0" firenextcount="0" useclientlayout="false" updatecontrol="true" enableevent="true" loadkeymode="keep" loadfiltermode="keep" reversesubsum="false">
- <ColumnInfo>
- <Column id="cdid" type="STRING" size="256"/>
- <Column id="cdnm" type="STRING" size="256"/>
- </ColumnInfo>
- <Rows>
- <Row>
- <Col id="cdid"/>
- <Col id="cdnm"/>
- </Row>
- </Rows>
- </Dataset>
- <Dataset id="ds_hidden_cncrpatrgst_rerntmetstaspart_regimen2" firefirstcount="0" firenextcount="0" useclientlayout="false" updatecontrol="true" enableevent="true" loadkeymode="keep" loadfiltermode="keep" reversesubsum="false">
- <ColumnInfo>
- <Column id="cdid" type="STRING" size="256"/>
- <Column id="cdnm" type="STRING" size="256"/>
- </ColumnInfo>
- <Rows>
- <Row>
- <Col id="cdid"/>
- <Col id="cdnm"/>
- </Row>
- </Rows>
- </Dataset>
- <Dataset id="ds_hidden_cncrpatrgst_dethinfo_dethplce" firefirstcount="0" firenextcount="0" useclientlayout="false" updatecontrol="true" enableevent="true" loadkeymode="keep" loadfiltermode="keep" reversesubsum="false">
- <ColumnInfo>
- <Column id="cdid" type="STRING" size="256"/>
- <Column id="cdnm" type="STRING" size="256"/>
- </ColumnInfo>
- <Rows>
- <Row>
- <Col id="cdid"/>
- <Col id="cdnm"/>
- </Row>
- </Rows>
- </Dataset>
- <Dataset id="ds_hidden_cncrpatrgst_diaginfo_diaghospinfo" firefirstcount="0" firenextcount="0" useclientlayout="false" updatecontrol="true" enableevent="true" loadkeymode="keep" loadfiltermode="keep" reversesubsum="false">
- <ColumnInfo>
- <Column id="cdid" type="STRING" size="256"/>
- <Column id="cdnm" type="STRING" size="256"/>
- </ColumnInfo>
- <Rows>
- <Row>
- <Col id="cdid"/>
- <Col id="cdnm"/>
- </Row>
- </Rows>
- </Dataset>
- <Dataset id="ds_hidden_cncrpatrgst_diaginfo" firefirstcount="0" firenextcount="0" useclientlayout="false" updatecontrol="true" enableevent="true" loadkeymode="keep" loadfiltermode="keep" reversesubsum="false">
- <ColumnInfo>
- <Column id="diagdrid" type="STRING" size="256"/>
- </ColumnInfo>
- <Rows>
- <Row>
- <Col id="diagdrid"/>
- </Row>
- </Rows>
- </Dataset>
- <Dataset id="ds_hidden_cncrpatrgst_diaginfo_lastdiagmthd" firefirstcount="0" firenextcount="0" useclientlayout="false" updatecontrol="true" enableevent="true" loadkeymode="keep" loadfiltermode="keep" reversesubsum="false">
- <ColumnInfo>
- <Column id="cdid" type="STRING" size="256"/>
- <Column id="cdnm" type="STRING" size="256"/>
- </ColumnInfo>
- <Rows>
- <Row>
- <Col id="cdid"/>
- <Col id="cdnm"/>
- </Row>
- </Rows>
- </Dataset>
- <Dataset id="ds_hidden_cncrpatrgst_diaginfo_difrntgrde" firefirstcount="0" firenextcount="0" useclientlayout="false" updatecontrol="true" enableevent="true" loadkeymode="keep" loadfiltermode="keep" reversesubsum="false">
- <ColumnInfo>
- <Column id="cdid" type="STRING" size="256"/>
- <Column id="cdnm" type="STRING" size="256"/>
- </ColumnInfo>
- <Rows>
- <Row>
- <Col id="cdid"/>
- <Col id="cdnm"/>
- </Row>
- </Rows>
- </Dataset>
- <Dataset id="ds_hidden_cncrpatrgst_diaginfo_seer" firefirstcount="0" firenextcount="0" useclientlayout="false" updatecontrol="true" enableevent="true" loadkeymode="keep" loadfiltermode="keep" reversesubsum="false">
- <ColumnInfo>
- <Column id="cdid" type="STRING" size="256"/>
- <Column id="cdnm" type="STRING" size="256"/>
- </ColumnInfo>
- <Rows>
- <Row>
- <Col id="cdid"/>
- <Col id="cdnm"/>
- </Row>
- </Rows>
- </Dataset>
- <Dataset id="ds_hidden_cncrpatrgst_diaginfo_t" firefirstcount="0" firenextcount="0" useclientlayout="false" updatecontrol="true" enableevent="true" loadkeymode="keep" loadfiltermode="keep" reversesubsum="false">
- <ColumnInfo>
- <Column id="cdid" type="STRING" size="256"/>
- <Column id="cdnm" type="STRING" size="256"/>
- </ColumnInfo>
- <Rows>
- <Row>
- <Col id="cdid"/>
- <Col id="cdnm"/>
- </Row>
- </Rows>
- </Dataset>
- <Dataset id="ds_hidden_cncrpatrgst_diaginfo_n" firefirstcount="0" firenextcount="0" useclientlayout="false" updatecontrol="true" enableevent="true" loadkeymode="keep" loadfiltermode="keep" reversesubsum="false">
- <ColumnInfo>
- <Column id="cdid" type="STRING" size="256"/>
- <Column id="cdnm" type="STRING" size="256"/>
- </ColumnInfo>
- <Rows>
- <Row>
- <Col id="cdid"/>
- <Col id="cdnm"/>
- </Row>
- </Rows>
- </Dataset>
- <Dataset id="ds_hidden_cncrpatrgst_diaginfo_m" firefirstcount="0" firenextcount="0" useclientlayout="false" updatecontrol="true" enableevent="true" loadkeymode="keep" loadfiltermode="keep" reversesubsum="false">
- <ColumnInfo>
- <Column id="cdid" type="STRING" size="256"/>
- <Column id="cdnm" type="STRING" size="256"/>
- </ColumnInfo>
- <Rows>
- <Row>
- <Col id="cdid"/>
- <Col id="cdnm"/>
- </Row>
- </Rows>
- </Dataset>
- <Dataset id="ds_hidden_cncrpatrgst_diaginfo_staging" firefirstcount="0" firenextcount="0" useclientlayout="false" updatecontrol="true" enableevent="true" loadkeymode="keep" loadfiltermode="keep" reversesubsum="false">
- <ColumnInfo>
- <Column id="cdid" type="STRING" size="256"/>
- <Column id="cdnm" type="STRING" size="256"/>
- </ColumnInfo>
- <Rows>
- <Row>
- <Col id="cdid"/>
- <Col id="cdnm"/>
- </Row>
- </Rows>
- </Dataset>
- <Dataset id="ds_hidden_cncrpatrgst_diaginfo_etcstagflag" firefirstcount="0" firenextcount="0" useclientlayout="false" updatecontrol="true" enableevent="true" loadkeymode="keep" loadfiltermode="keep" reversesubsum="false">
- <ColumnInfo>
- <Column id="cdid" type="STRING" size="256"/>
- <Column id="cdnm" type="STRING" size="256"/>
- </ColumnInfo>
- <Rows>
- <Row>
- <Col id="cdid"/>
- <Col id="cdnm"/>
- </Row>
- </Rows>
- </Dataset>
- <Dataset id="ds_hidden_cncrpatrgst_cureinfo_prmypart_prmypartinfo" firefirstcount="0" firenextcount="0" useclientlayout="false" updatecontrol="true" enableevent="true" loadkeymode="keep" loadfiltermode="keep" reversesubsum="false">
- <ColumnInfo>
- <Column id="cdid" type="STRING" size="256"/>
- <Column id="cdnm" type="STRING" size="256"/>
- </ColumnInfo>
- <Rows>
- <Row>
- <Col id="cdid"/>
- <Col id="cdnm"/>
- </Row>
- </Rows>
- </Dataset>
- <Dataset id="ds_hidden_cncrpatrgst_cureinfo_chosbfcuremthd_chosbfcuremthd" firefirstcount="0" firenextcount="0" useclientlayout="false" updatecontrol="true" enableevent="true" loadkeymode="keep" loadfiltermode="keep" reversesubsum="false">
- <ColumnInfo>
- <Column id="cdid" type="STRING" size="256"/>
- <Column id="cdnm" type="STRING" size="256"/>
- </ColumnInfo>
- <Rows>
- <Row>
- <Col id="cdid"/>
- <Col id="cdnm"/>
- </Row>
- </Rows>
- </Dataset>
- <Dataset id="ds_hidden_cncrpatrgst_cureinfo_metstaspart_metstaspart" firefirstcount="0" firenextcount="0" useclientlayout="false" updatecontrol="true" enableevent="true" loadkeymode="keep" loadfiltermode="keep" reversesubsum="false">
- <ColumnInfo>
- <Column id="cdid" type="STRING" size="256"/>
- <Column id="cdnm" type="STRING" size="256"/>
- </ColumnInfo>
- <Rows>
- <Row>
- <Col id="cdid"/>
- <Col id="cdnm"/>
- </Row>
- </Rows>
- </Dataset>
- <Dataset id="ds_init_pathumtrainfo_cncrpatinfo" firefirstcount="0" firenextcount="0" useclientlayout="false" updatecontrol="true" enableevent="true" loadkeymode="keep" loadfiltermode="keep" reversesubsum="false">
- <ColumnInfo>
- <Column id="pid" type="STRING" size="256"/>
- <Column id="pnm" type="STRING" size="256"/>
- <Column id="cretno" type="STRING" size="256"/>
- <Column id="ordtype" type="STRING" size="256"/>
- <Column id="rrgstno1" type="STRING" size="256"/>
- <Column id="rrgstno2" type="STRING" size="256"/>
- <Column id="job1" type="STRING" size="256"/>
- <Column id="etcjob" type="STRING" size="256"/>
- <Column id="forgnerflag" type="STRING" size="256"/>
- <Column id="hometel" type="STRING" size="256"/>
- <Column id="mpphontel" type="STRING" size="256"/>
- <Column id="sex" type="STRING" size="256"/>
- <Column id="age" type="STRING" size="256"/>
- <Column id="maryflag" type="STRING" size="256"/>
- <Column id="zipcode1" type="STRING" size="256"/>
- <Column id="zipcode2" type="STRING" size="256"/>
- <Column id="addr" type="STRING" size="256"/>
- <Column id="detaddr" type="STRING" size="256"/>
- <Column id="orddd" type="STRING" size="256"/>
- <Column id="outorddept" type="STRING" size="256"/>
- <Column id="outorddr" type="STRING" size="256"/>
- <Column id="dschdd" type="STRING" size="256"/>
- <Column id="dschorddept" type="STRING" size="256"/>
- <Column id="dschorddr" type="STRING" size="256"/>
- <Column id="indd" type="STRING" size="256"/>
- <Column id="inorddept" type="STRING" size="256"/>
- <Column id="inorddr" type="STRING" size="256"/>
- <Column id="indg" type="STRING" size="256"/>
- <Column id="totinhospdayno" type="STRING" size="256"/>
- <Column id="travoflag" type="STRING" size="256"/>
- <Column id="epoch" type="STRING" size="256"/>
- </ColumnInfo>
- <Rows>
- <Row>
- <Col id="pid"/>
- <Col id="pnm"/>
- <Col id="cretno"/>
- <Col id="ordtype"/>
- <Col id="rrgstno1"/>
- <Col id="rrgstno2"/>
- <Col id="job1"/>
- <Col id="etcjob"/>
- <Col id="forgnerflag"/>
- <Col id="hometel"/>
- <Col id="mpphontel"/>
- <Col id="sex"/>
- <Col id="age"/>
- <Col id="maryflag"/>
- <Col id="zipcode1"/>
- <Col id="zipcode2"/>
- <Col id="addr"/>
- <Col id="detaddr"/>
- <Col id="orddd"/>
- <Col id="outorddept"/>
- <Col id="outorddr"/>
- <Col id="dschdd"/>
- <Col id="dschorddept"/>
- <Col id="dschorddr"/>
- <Col id="indd"/>
- <Col id="inorddept"/>
- <Col id="inorddr"/>
- <Col id="indg"/>
- <Col id="totinhospdayno"/>
- <Col id="travoflag"/>
- <Col id="epoch"/>
- </Row>
- </Rows>
- </Dataset>
- <Dataset id="ds_init_pathumtrainfo_relationinfo" firefirstcount="0" firenextcount="0" useclientlayout="false" updatecontrol="true" enableevent="true" loadkeymode="keep" loadfiltermode="keep" reversesubsum="false">
- <ColumnInfo>
- <Column id="relausernm" type="STRING" size="256"/>
- <Column id="relation" type="STRING" size="256"/>
- <Column id="zipcode1" type="STRING" size="256"/>
- <Column id="zipcode2" type="STRING" size="256"/>
- <Column id="addr" type="STRING" size="256"/>
- <Column id="detaddr" type="STRING" size="256"/>
- <Column id="hometel" type="STRING" size="256"/>
- <Column id="mpphontel" type="STRING" size="256"/>
- </ColumnInfo>
- <Rows>
- <Row>
- <Col id="relausernm"/>
- <Col id="relation"/>
- <Col id="zipcode1"/>
- <Col id="zipcode2"/>
- <Col id="addr"/>
- <Col id="detaddr"/>
- <Col id="hometel"/>
- <Col id="mpphontel"/>
- </Row>
- </Rows>
- </Dataset>
- <Dataset id="ds_init_cncrpatrgst_patinfo" firefirstcount="0" firenextcount="0" useclientlayout="false" updatecontrol="true" enableevent="true" loadkeymode="keep" loadfiltermode="keep" reversesubsum="false"/>
- <Dataset id="ds_init_cncrpatrgst_regstatus" firefirstcount="0" firenextcount="0" useclientlayout="false" updatecontrol="true" enableevent="true" loadkeymode="keep" loadfiltermode="keep" reversesubsum="false">
- <ColumnInfo>
- <Column id="flag" type="STRING" size="256"/>
- <Column id="prmycncryn" type="STRING" size="256"/>
- <Column id="sickstat" type="STRING" size="256"/>
- <Column id="cureopendd" type="STRING" size="256"/>
- <Column id="seqno" type="STRING" size="256"/>
- </ColumnInfo>
- <Rows>
- <Row>
- <Col id="flag"/>
- <Col id="prmycncryn"/>
- <Col id="sickstat"/>
- <Col id="cureopendd"/>
- <Col id="seqno"/>
- </Row>
- </Rows>
- </Dataset>
- <Dataset id="ds_init_cncrpatrgst_regstatus_cncrnoinfo" firefirstcount="0" firenextcount="0" useclientlayout="false" updatecontrol="true" enableevent="true" loadkeymode="keep" loadfiltermode="keep" reversesubsum="false">
- <ColumnInfo>
- <Column id="cncrno" type="STRING" size="256"/>
- </ColumnInfo>
- <Rows>
- <Row>
- <Col id="cncrno"/>
- </Row>
- </Rows>
- </Dataset>
- <Dataset id="ds_init_cncrpatrgst_rerntmetstaspart" firefirstcount="0" firenextcount="0" useclientlayout="false" updatecontrol="true" enableevent="true" loadkeymode="keep" loadfiltermode="keep" reversesubsum="false">
- <ColumnInfo>
- <Column id="rerntmetstaspartcd1" type="STRING" size="256"/>
- <Column id="rerntmetstaspartnm1" type="STRING" size="256"/>
- <Column id="rerntmetstaspart1" type="STRING" size="256"/>
- <Column id="rerntmetstaspartcd2" type="STRING" size="256"/>
- <Column id="rerntmetstaspartnm2" type="STRING" size="256"/>
- <Column id="rerntmetstaspart2" type="STRING" size="256"/>
- <Column id="rerntmetstaspartcd3" type="STRING" size="256"/>
- <Column id="rerntmetstaspartnm3" type="STRING" size="256"/>
- <Column id="rerntmetstaspart3" type="STRING" size="256"/>
- <Column id="rerntmetstaspartcd4" type="STRING" size="256"/>
- <Column id="rerntmetstaspartnm4" type="STRING" size="256"/>
- <Column id="rerntmetstaspart4" type="STRING" size="256"/>
- <Column id="ecogcd" type="STRING" size="256"/>
- <Column id="ecog" type="STRING" size="256"/>
- <Column id="regimencd1" type="STRING" size="256"/>
- <Column id="regimen1" type="STRING" size="256"/>
- <Column id="regimencd2" type="STRING" size="256"/>
- <Column id="regimen2" type="STRING" size="256"/>
- </ColumnInfo>
- <Rows>
- <Row>
- <Col id="rerntmetstaspartcd1"/>
- <Col id="rerntmetstaspartnm1"/>
- <Col id="rerntmetstaspart1"/>
- <Col id="rerntmetstaspartcd2"/>
- <Col id="rerntmetstaspartnm2"/>
- <Col id="rerntmetstaspart2"/>
- <Col id="rerntmetstaspartcd3"/>
- <Col id="rerntmetstaspartnm3"/>
- <Col id="rerntmetstaspart3"/>
- <Col id="rerntmetstaspartcd4"/>
- <Col id="rerntmetstaspartnm4"/>
- <Col id="rerntmetstaspart4"/>
- <Col id="ecogcd"/>
- <Col id="ecog"/>
- <Col id="regimencd1"/>
- <Col id="regimen1"/>
- <Col id="regimencd2"/>
- <Col id="regimen2"/>
- </Row>
- </Rows>
- </Dataset>
- <Dataset id="ds_init_cncrpatrgst_dethinfo" firefirstcount="0" firenextcount="0" useclientlayout="false" updatecontrol="true" enableevent="true" loadkeymode="keep" loadfiltermode="keep" reversesubsum="false">
- <ColumnInfo>
- <Column id="dethplce" type="STRING" size="256"/>
- <Column id="dethdd" type="STRING" size="256"/>
- <Column id="dethcascd" type="STRING" size="256"/>
- </ColumnInfo>
- <Rows>
- <Row>
- <Col id="dethplce"/>
- <Col id="dethdd"/>
- <Col id="dethcascd"/>
- </Row>
- </Rows>
- </Dataset>
- <Dataset id="ds_init_cncrpatrgst_dethinfo_existterm" firefirstcount="0" firenextcount="0" useclientlayout="false" updatecontrol="true" enableevent="true" loadkeymode="keep" loadfiltermode="keep" reversesubsum="false">
- <ColumnInfo>
- <Column id="yearcnt" type="STRING" size="256"/>
- <Column id="monthcnt" type="STRING" size="256"/>
- </ColumnInfo>
- <Rows>
- <Row>
- <Col id="yearcnt"/>
- <Col id="monthcnt"/>
- </Row>
- </Rows>
- </Dataset>
- <Dataset id="ds_init_cncrpatrgst_diaginfo" firefirstcount="0" firenextcount="0" useclientlayout="false" updatecontrol="true" enableevent="true" loadkeymode="keep" loadfiltermode="keep" reversesubsum="false">
- <ColumnInfo>
- <Column id="diagdd" type="STRING" size="256"/>
- <Column id="diaghospinfo" type="STRING" size="256"/>
- <Column id="etcdiaghospnm" type="STRING" size="256"/>
- <Column id="diagdrid" type="STRING" size="256"/>
- <Column id="lastdiagmthd" type="STRING" size="256"/>
- <Column id="clinical" type="STRING" size="256"/>
- <Column id="etcclinical" type="STRING" size="256"/>
- <Column id="tophinfo" type="STRING" size="256"/>
- <Column id="tophcd" type="STRING" size="256"/>
- <Column id="tophnm" type="STRING" size="256"/>
- <Column id="morphcd1" type="STRING" size="256"/>
- <Column id="morphnm1" type="STRING" size="256"/>
- <Column id="morphinfo1" type="STRING" size="256"/>
- <Column id="morphcd2" type="STRING" size="256"/>
- <Column id="morphnm2" type="STRING" size="256"/>
- <Column id="morphinfo2" type="STRING" size="256"/>
- <Column id="icd10cd" type="STRING" size="256"/>
- <Column id="icd10nm" type="STRING" size="256"/>
- <Column id="difrntgrdecd" type="STRING" size="256"/>
- <Column id="difrntgrde" type="STRING" size="256"/>
- <Column id="seercd" type="STRING" size="256"/>
- <Column id="seer" type="STRING" size="256"/>
- <Column id="tcd" type="STRING" size="256"/>
- <Column id="t" type="STRING" size="256"/>
- <Column id="ncd" type="STRING" size="256"/>
- <Column id="n" type="STRING" size="256"/>
- <Column id="mcd" type="STRING" size="256"/>
- <Column id="m" type="STRING" size="256"/>
- <Column id="stagcd" type="STRING" size="256"/>
- <Column id="staging" type="STRING" size="256"/>
- <Column id="etcstagflagcd" type="STRING" size="256"/>
- <Column id="etcstagflag" type="STRING" size="256"/>
- <Column id="etcstagcnts" type="STRING" size="256"/>
- <Column id="diagroute" type="STRING" size="256"/>
- <Column id="laterality" type="STRING" size="256"/>
- <Column id="etcdiagroute" type="STRING" size="256"/>
- </ColumnInfo>
- <Rows>
- <Row>
- <Col id="diagdd"/>
- <Col id="diaghospinfo"/>
- <Col id="etcdiaghospnm"/>
- <Col id="diagdrid"/>
- <Col id="lastdiagmthd"/>
- <Col id="clinical"/>
- <Col id="etcclinical"/>
- <Col id="tophinfo"/>
- <Col id="tophcd"/>
- <Col id="tophnm"/>
- <Col id="morphcd1"/>
- <Col id="morphnm1"/>
- <Col id="morphinfo1"/>
- <Col id="morphcd2"/>
- <Col id="morphnm2"/>
- <Col id="morphinfo2"/>
- <Col id="icd10cd"/>
- <Col id="icd10nm"/>
- <Col id="difrntgrdecd"/>
- <Col id="difrntgrde"/>
- <Col id="seercd"/>
- <Col id="seer"/>
- <Col id="tcd"/>
- <Col id="t"/>
- <Col id="ncd"/>
- <Col id="n"/>
- <Col id="mcd"/>
- <Col id="m"/>
- <Col id="stagcd"/>
- <Col id="staging"/>
- <Col id="etcstagflagcd"/>
- <Col id="etcstagflag"/>
- <Col id="etcstagcnts"/>
- <Col id="diagroute"/>
- <Col id="laterality"/>
- <Col id="etcdiagroute"/>
- </Row>
- </Rows>
- </Dataset>
- <Dataset id="ds_init_cncrpatrgst_cureinfo_prmypart" firefirstcount="0" firenextcount="0" useclientlayout="false" updatecontrol="true" enableevent="true" loadkeymode="keep" loadfiltermode="keep" reversesubsum="false">
- <ColumnInfo>
- <Column id="code" type="STRING" size="256"/>
- <Column id="prmypartcd" type="STRING" size="256"/>
- <Column id="prmypartcuredd" type="STRING" size="256"/>
- </ColumnInfo>
- <Rows>
- <Row>
- <Col id="code"/>
- <Col id="prmypartcd"/>
- <Col id="prmypartcuredd"/>
- </Row>
- </Rows>
- </Dataset>
- <Dataset id="ds_init_cncrpatrgst_cureinfo_chosbfcuremthd" firefirstcount="0" firenextcount="0" useclientlayout="false" updatecontrol="true" enableevent="true" loadkeymode="keep" loadfiltermode="keep" reversesubsum="false">
- <ColumnInfo>
- <Column id="code" type="STRING" size="256"/>
- <Column id="chosbfcuremthd" type="STRING" size="256"/>
- <Column id="chosbfcuredd" type="STRING" size="256"/>
- </ColumnInfo>
- <Rows>
- <Row>
- <Col id="code"/>
- <Col id="chosbfcuremthd"/>
- <Col id="chosbfcuredd"/>
- </Row>
- </Rows>
- </Dataset>
- <Dataset id="ds_init_cncrpatrgst_cureinfo_metstaspart" firefirstcount="0" firenextcount="0" useclientlayout="false" updatecontrol="true" enableevent="true" loadkeymode="keep" loadfiltermode="keep" reversesubsum="false">
- <ColumnInfo>
- <Column id="code" type="STRING" size="256"/>
- <Column id="metstaspartcd" type="STRING" size="256"/>
- <Column id="metstaspartdd" type="STRING" size="256"/>
- </ColumnInfo>
- <Rows>
- <Row>
- <Col id="code"/>
- <Col id="metstaspartcd"/>
- <Col id="metstaspartdd"/>
- </Row>
- </Rows>
- </Dataset>
- <Dataset id="ds_init_srchcncrrgst_deptinfo" firefirstcount="0" firenextcount="0" useclientlayout="false" updatecontrol="true" enableevent="true" loadkeymode="keep" loadfiltermode="keep" reversesubsum="false">
- <ColumnInfo>
- <Column id="deptcd" type="STRING" size="256"/>
- <Column id="depthngnm" type="STRING" size="256"/>
- </ColumnInfo>
- <Rows>
- <Row>
- <Col id="deptcd"/>
- <Col id="depthngnm"/>
- </Row>
- </Rows>
- </Dataset>
- <Dataset id="ds_init_srchcncrrgst_drinfo" firefirstcount="0" firenextcount="0" useclientlayout="false" updatecontrol="true" enableevent="true" loadkeymode="keep" loadfiltermode="keep" reversesubsum="false">
- <ColumnInfo>
- <Column id="drid" type="STRING" size="256"/>
- <Column id="drnm" type="STRING" size="256"/>
- </ColumnInfo>
- <Rows>
- <Row>
- <Col id="drid"/>
- <Col id="drnm"/>
- </Row>
- </Rows>
- </Dataset>
- <Dataset id="ds_init_humaninfo_outpatinfo_patlist" firefirstcount="0" firenextcount="0" useclientlayout="false" updatecontrol="true" enableevent="true" loadkeymode="keep" loadfiltermode="keep" reversesubsum="false"/>
- <Dataset id="ds_init_humaninfo_inpatinfo_patlist" firefirstcount="0" firenextcount="0" useclientlayout="false" updatecontrol="true" enableevent="true" loadkeymode="keep" loadfiltermode="keep" reversesubsum="false"/>
- <Dataset id="ds_init_humaninfo_cncrhist_histlist" firefirstcount="0" firenextcount="0" useclientlayout="false" updatecontrol="true" enableevent="true" loadkeymode="keep" loadfiltermode="keep" reversesubsum="false">
- <ColumnInfo>
- <Column id="cncrno" type="STRING" size="256"/>
- <Column id="cncrhistno" type="STRING" size="256"/>
- <Column id="seqno" type="STRING" size="256"/>
- <Column id="cncr_histno" type="STRING" size="256"/>
- <Column id="instcd" type="STRING" size="256"/>
- <Column id="pid" type="STRING" size="256"/>
- <Column id="cretno" type="STRING" size="256"/>
- <Column id="orddd" type="STRING" size="256"/>
- <Column id="outorddept" type="STRING" size="256"/>
- <Column id="outorddr" type="STRING" size="256"/>
- <Column id="dschdd" type="STRING" size="256"/>
- <Column id="dschorddept" type="STRING" size="256"/>
- <Column id="dschorddr" type="STRING" size="256"/>
- <Column id="indg" type="STRING" size="256"/>
- <Column id="totinhospdayno" type="STRING" size="256"/>
- <Column id="ordtype" type="STRING" size="256"/>
- <Column id="pnm" type="STRING" size="256"/>
- <Column id="rrgstno1" type="STRING" size="256"/>
- <Column id="rrgstno2" type="STRING" size="256"/>
- <Column id="sex" type="STRING" size="256"/>
- <Column id="age" type="STRING" size="256"/>
- <Column id="hometel" type="STRING" size="256"/>
- <Column id="mpphontel" type="STRING" size="256"/>
- <Column id="zipcode1" type="STRING" size="256"/>
- <Column id="zipcode2" type="STRING" size="256"/>
- <Column id="addr" type="STRING" size="256"/>
- <Column id="detaddr" type="STRING" size="256"/>
- <Column id="maryflag" type="STRING" size="256"/>
- <Column id="forgnerflag" type="STRING" size="256"/>
- <Column id="job1" type="STRING" size="256"/>
- <Column id="etcjob" type="STRING" size="256"/>
- <Column id="reluserhngnm" type="STRING" size="256"/>
- <Column id="relation" type="STRING" size="256"/>
- <Column id="relzipcd1" type="STRING" size="256"/>
- <Column id="relzipcd2" type="STRING" size="256"/>
- <Column id="reladdr" type="STRING" size="256"/>
- <Column id="reldetaddr" type="STRING" size="256"/>
- <Column id="relmpphontel" type="STRING" size="256"/>
- <Column id="relhometel" type="STRING" size="256"/>
- <Column id="travoflag" type="STRING" size="256"/>
- <Column id="prmycncryn" type="STRING" size="256"/>
- <Column id="sickstatcd" type="STRING" size="256"/>
- <Column id="cureopendd" type="STRING" size="256"/>
- <Column id="dethplcecd" type="STRING" size="256"/>
- <Column id="dethdd" type="STRING" size="256"/>
- <Column id="dethcause" type="STRING" size="256"/>
- <Column id="yearcnt" type="STRING" size="256"/>
- <Column id="monthcnt" type="STRING" size="256"/>
- <Column id="diagdd" type="STRING" size="256"/>
- <Column id="diaghospcd" type="STRING" size="256"/>
- <Column id="diagdrid" type="STRING" size="256"/>
- <Column id="diagdrnm" type="STRING" size="256"/>
- <Column id="lastdiagmthdcd" type="STRING" size="256"/>
- <Column id="clinical" type="STRING" size="256"/>
- <Column id="etcclinical" type="STRING" size="256"/>
- <Column id="tophcd" type="STRING" size="256"/>
- <Column id="tophnm" type="STRING" size="256"/>
- <Column id="tophseqno" type="STRING" size="256"/>
- <Column id="morphcd1" type="STRING" size="256"/>
- <Column id="morphnm1" type="STRING" size="256"/>
- <Column id="morphseqno1" type="STRING" size="256"/>
- <Column id="morphcd2" type="STRING" size="256"/>
- <Column id="morphnm2" type="STRING" size="256"/>
- <Column id="morphseqno2" type="STRING" size="256"/>
- <Column id="icd10cd" type="STRING" size="256"/>
- <Column id="icd10nm" type="STRING" size="256"/>
- <Column id="difrntgrdecd" type="STRING" size="256"/>
- <Column id="seer" type="STRING" size="256"/>
- <Column id="t" type="STRING" size="256"/>
- <Column id="n" type="STRING" size="256"/>
- <Column id="m" type="STRING" size="256"/>
- <Column id="stagingcd" type="STRING" size="256"/>
- <Column id="etcstagflagcd" type="STRING" size="256"/>
- <Column id="etcstagcnts" type="STRING" size="256"/>
- <Column id="rerntmetstaspartcd1" type="STRING" size="256"/>
- <Column id="rerntmetstaspartcd2" type="STRING" size="256"/>
- <Column id="rerntmetstaspartcd3" type="STRING" size="256"/>
- <Column id="rerntmetstaspartcd4" type="STRING" size="256"/>
- <Column id="ecog" type="STRING" size="256"/>
- <Column id="regimen1" type="STRING" size="256"/>
- <Column id="regimen2" type="STRING" size="256"/>
- <Column id="fstrgstrid" type="STRING" size="256"/>
- <Column id="fstrgstrnm" type="STRING" size="256"/>
- <Column id="fstrgstdt" type="STRING" size="256"/>
- <Column id="lastrgstrid" type="STRING" size="256"/>
- <Column id="lastrgstrnm" type="STRING" size="256"/>
- <Column id="lastrgstdt" type="STRING" size="256"/>
- <Column id="indd" type="STRING" size="256"/>
- <Column id="inorddept" type="STRING" size="256"/>
- <Column id="inorddr" type="STRING" size="256"/>
- <Column id="epoch" type="STRING" size="256"/>
- <Column id="rerntmetstaspartseq1" type="STRING" size="256"/>
- <Column id="rerntmetstaspartseq2" type="STRING" size="256"/>
- <Column id="rerntmetstaspartseq3" type="STRING" size="256"/>
- <Column id="rerntmetstaspartseq4" type="STRING" size="256"/>
- <Column id="rerntmetstaspartnm1" type="STRING" size="256"/>
- <Column id="rerntmetstaspartnm2" type="STRING" size="256"/>
- <Column id="rerntmetstaspartnm3" type="STRING" size="256"/>
- <Column id="rerntmetstaspartnm4" type="STRING" size="256"/>
- <Column id="diagroute" type="STRING" size="256"/>
- <Column id="laterality" type="STRING" size="256"/>
- <Column id="etcdiagroute" type="STRING" size="256"/>
- <Column id="remedychk" type="STRING" size="256"/>
- </ColumnInfo>
- <Rows>
- <Row>
- <Col id="cncrno"/>
- <Col id="cncrhistno"/>
- <Col id="seqno"/>
- <Col id="cncr_histno"/>
- <Col id="instcd"/>
- <Col id="pid"/>
- <Col id="cretno"/>
- <Col id="orddd"/>
- <Col id="outorddept"/>
- <Col id="outorddr"/>
- <Col id="dschdd"/>
- <Col id="dschorddept"/>
- <Col id="dschorddr"/>
- <Col id="indg"/>
- <Col id="totinhospdayno"/>
- <Col id="ordtype"/>
- <Col id="pnm"/>
- <Col id="rrgstno1"/>
- <Col id="rrgstno2"/>
- <Col id="sex"/>
- <Col id="age"/>
- <Col id="hometel"/>
- <Col id="mpphontel"/>
- <Col id="zipcode1"/>
- <Col id="zipcode2"/>
- <Col id="addr"/>
- <Col id="detaddr"/>
- <Col id="maryflag"/>
- <Col id="forgnerflag"/>
- <Col id="job1"/>
- <Col id="etcjob"/>
- <Col id="reluserhngnm"/>
- <Col id="relation"/>
- <Col id="relzipcd1"/>
- <Col id="relzipcd2"/>
- <Col id="reladdr"/>
- <Col id="reldetaddr"/>
- <Col id="relmpphontel"/>
- <Col id="relhometel"/>
- <Col id="travoflag"/>
- <Col id="prmycncryn"/>
- <Col id="sickstatcd"/>
- <Col id="cureopendd"/>
- <Col id="dethplcecd"/>
- <Col id="dethdd"/>
- <Col id="dethcause"/>
- <Col id="yearcnt"/>
- <Col id="monthcnt"/>
- <Col id="diagdd"/>
- <Col id="diaghospcd"/>
- <Col id="diagdrid"/>
- <Col id="diagdrnm"/>
- <Col id="lastdiagmthdcd"/>
- <Col id="clinical"/>
- <Col id="etcclinical"/>
- <Col id="tophcd"/>
- <Col id="tophnm"/>
- <Col id="tophseqno"/>
- <Col id="morphcd1"/>
- <Col id="morphnm1"/>
- <Col id="morphseqno1"/>
- <Col id="morphcd2"/>
- <Col id="morphnm2"/>
- <Col id="morphseqno2"/>
- <Col id="icd10cd"/>
- <Col id="icd10nm"/>
- <Col id="difrntgrdecd"/>
- <Col id="seer"/>
- <Col id="t"/>
- <Col id="n"/>
- <Col id="m"/>
- <Col id="stagingcd"/>
- <Col id="etcstagflagcd"/>
- <Col id="etcstagcnts"/>
- <Col id="rerntmetstaspartcd1"/>
- <Col id="rerntmetstaspartcd2"/>
- <Col id="rerntmetstaspartcd3"/>
- <Col id="rerntmetstaspartcd4"/>
- <Col id="ecog"/>
- <Col id="regimen1"/>
- <Col id="regimen2"/>
- <Col id="fstrgstrid"/>
- <Col id="fstrgstrnm"/>
- <Col id="fstrgstdt"/>
- <Col id="lastrgstrid"/>
- <Col id="lastrgstrnm"/>
- <Col id="lastrgstdt"/>
- <Col id="indd"/>
- <Col id="inorddept"/>
- <Col id="inorddr"/>
- <Col id="epoch"/>
- <Col id="rerntmetstaspartseq1"/>
- <Col id="rerntmetstaspartseq2"/>
- <Col id="rerntmetstaspartseq3"/>
- <Col id="rerntmetstaspartseq4"/>
- <Col id="rerntmetstaspartnm1"/>
- <Col id="rerntmetstaspartnm2"/>
- <Col id="rerntmetstaspartnm3"/>
- <Col id="rerntmetstaspartnm4"/>
- <Col id="diagroute"/>
- <Col id="laterality"/>
- <Col id="etcdiagroute"/>
- <Col id="remedychk"/>
- </Row>
- </Rows>
- </Dataset>
- <Dataset id="ds_init_humaninfo_doainfo_list" firefirstcount="0" firenextcount="0" useclientlayout="false" updatecontrol="true" enableevent="true" loadkeymode="keep" loadfiltermode="keep" reversesubsum="false">
- <ColumnInfo>
- <Column id="serdiagno" type="STRING" size="256"/>
- <Column id="pid" type="STRING" size="256"/>
- <Column id="hngnm" type="STRING" size="256"/>
- <Column id="maindiagcd" type="STRING" size="256"/>
- <Column id="healcarediagcd" type="STRING" size="256"/>
- <Column id="edidiagcd" type="STRING" size="256"/>
- <Column id="genrdd" type="STRING" size="256"/>
- <Column id="cncrdiagcnfmdd" type="STRING" size="256"/>
- </ColumnInfo>
- <Rows>
- <Row>
- <Col id="serdiagno"/>
- <Col id="pid"/>
- <Col id="hngnm"/>
- <Col id="maindiagcd"/>
- <Col id="healcarediagcd"/>
- <Col id="edidiagcd"/>
- <Col id="genrdd"/>
- <Col id="cncrdiagcnfmdd"/>
- </Row>
- </Rows>
- </Dataset>
- <Dataset id="ds_init_checknum" firefirstcount="0" firenextcount="0" useclientlayout="false" updatecontrol="true" enableevent="true" loadkeymode="keep" loadfiltermode="keep" reversesubsum="false">
- <ColumnInfo>
- <Column id="value" type="STRING" size="256"/>
- </ColumnInfo>
- <Rows>
- <Row>
- <Col id="value">true</Col>
- </Row>
- </Rows>
- </Dataset>
- <Dataset id="ds_tmp" firefirstcount="0" firenextcount="0" useclientlayout="false" updatecontrol="true" enableevent="true" loadkeymode="keep" loadfiltermode="keep" reversesubsum="false">
- <ColumnInfo>
- <Column id="pid" type="STRING" size="256"/>
- </ColumnInfo>
- <Rows>
- <Row>
- <Col id="pid"/>
- </Row>
- </Rows>
- </Dataset>
- <Dataset id="ds_temp_terminfo" firefirstcount="0" firenextcount="0" useclientlayout="false" updatecontrol="true" enableevent="true" loadkeymode="keep" loadfiltermode="keep" reversesubsum="false"/>
- <Dataset id="ds_cbo_ordtype" firefirstcount="0" firenextcount="0" useclientlayout="false" updatecontrol="true" enableevent="true" loadkeymode="keep" loadfiltermode="keep" reversesubsum="false">
- <ColumnInfo>
- <Column id="label" type="STRING" size="256"/>
- <Column id="value" type="STRING" size="256"/>
- </ColumnInfo>
- <Rows>
- <Row>
- <Col id="label">외래</Col>
- <Col id="value">O</Col>
- </Row>
- <Row>
- <Col id="label">입원</Col>
- <Col id="value">I</Col>
- </Row>
- </Rows>
- </Dataset>
- <Dataset id="ds_cbo_cncrexptflag" firefirstcount="0" firenextcount="0" useclientlayout="false" updatecontrol="true" enableevent="true" loadkeymode="keep" loadfiltermode="keep" reversesubsum="false">
- <ColumnInfo>
- <Column id="label" type="STRING" size="256"/>
- <Column id="value" type="STRING" size="256"/>
- </ColumnInfo>
- <Rows>
- <Row>
- <Col id="label">Y</Col>
- <Col id="value">Y</Col>
- </Row>
- <Row>
- <Col id="label">N</Col>
- <Col id="value">N</Col>
- </Row>
- </Rows>
- </Dataset>
- <Dataset id="ds_main_common_M0173" firefirstcount="0" firenextcount="0" useclientlayout="false" updatecontrol="true" enableevent="true" loadkeymode="keep" loadfiltermode="keep" reversesubsum="false"/>
- <Dataset id="ds_main_common_M0151" firefirstcount="0" firenextcount="0" useclientlayout="false" updatecontrol="true" enableevent="true" loadkeymode="keep" loadfiltermode="keep" reversesubsum="false"/>
- <Dataset id="ds_main_common_M0149" firefirstcount="0" firenextcount="0" useclientlayout="false" updatecontrol="true" enableevent="true" loadkeymode="keep" loadfiltermode="keep" reversesubsum="false"/>
- <Dataset id="ds_main_common_M0072" firefirstcount="0" firenextcount="0" useclientlayout="false" updatecontrol="true" enableevent="true" loadkeymode="keep" loadfiltermode="keep" reversesubsum="false"/>
- <Dataset id="ds_main_common_M0172" firefirstcount="0" firenextcount="0" useclientlayout="false" updatecontrol="true" enableevent="true" loadkeymode="keep" loadfiltermode="keep" reversesubsum="false"/>
- <Dataset id="ds_main_common_M0179" firefirstcount="0" firenextcount="0" useclientlayout="false" updatecontrol="true" enableevent="true" loadkeymode="keep" loadfiltermode="keep" reversesubsum="false"/>
- <Dataset id="ds_main_common_Z0007_01" firefirstcount="0" firenextcount="0" useclientlayout="false" updatecontrol="true" enableevent="true" loadkeymode="keep" loadfiltermode="keep" reversesubsum="false"/>
- <Dataset id="ds_main_common_M0740" firefirstcount="0" firenextcount="0" useclientlayout="false" updatecontrol="true" enableevent="true" loadkeymode="keep" loadfiltermode="keep" reversesubsum="false"/>
- <Dataset id="ds_main_common_M0183" firefirstcount="0" firenextcount="0" useclientlayout="false" updatecontrol="true" enableevent="true" loadkeymode="keep" loadfiltermode="keep" reversesubsum="false"/>
- <Dataset id="ds_main_common_M0184" firefirstcount="0" firenextcount="0" useclientlayout="false" updatecontrol="true" enableevent="true" loadkeymode="keep" loadfiltermode="keep" reversesubsum="false"/>
- <Dataset id="ds_main_common_M0174" firefirstcount="0" firenextcount="0" useclientlayout="false" updatecontrol="true" enableevent="true" loadkeymode="keep" loadfiltermode="keep" reversesubsum="false"/>
- <Dataset id="ds_main_common_M0393" firefirstcount="0" firenextcount="0" useclientlayout="false" updatecontrol="true" enableevent="true" loadkeymode="keep" loadfiltermode="keep" reversesubsum="false"/>
- <Dataset id="ds_main_common_M0175" firefirstcount="0" firenextcount="0" useclientlayout="false" updatecontrol="true" enableevent="true" loadkeymode="keep" loadfiltermode="keep" reversesubsum="false"/>
- <Dataset id="ds_main_common_M0176" firefirstcount="0" firenextcount="0" useclientlayout="false" updatecontrol="true" enableevent="true" loadkeymode="keep" loadfiltermode="keep" reversesubsum="false"/>
- <Dataset id="ds_main_common_M0395" firefirstcount="0" firenextcount="0" useclientlayout="false" updatecontrol="true" enableevent="true" loadkeymode="keep" loadfiltermode="keep" reversesubsum="false"/>
- <Dataset id="ds_main_common_M0320" firefirstcount="0" firenextcount="0" useclientlayout="false" updatecontrol="true" enableevent="true" loadkeymode="keep" loadfiltermode="keep" reversesubsum="false"/>
- <Dataset id="ds_main_common_M0182" firefirstcount="0" firenextcount="0" useclientlayout="false" updatecontrol="true" enableevent="true" loadkeymode="keep" loadfiltermode="keep" reversesubsum="false"/>
- <Dataset id="ds_cbo_ordtype2" firefirstcount="0" firenextcount="0" useclientlayout="false" updatecontrol="true" enableevent="true" loadkeymode="keep" loadfiltermode="keep" reversesubsum="false">
- <ColumnInfo>
- <Column id="label" type="STRING" size="256"/>
- <Column id="value" type="STRING" size="256"/>
- </ColumnInfo>
- <Rows>
- <Row>
- <Col id="label">외래</Col>
- <Col id="value">O</Col>
- </Row>
- <Row>
- <Col id="label">입원</Col>
- <Col id="value">I</Col>
- </Row>
- <Row>
- <Col id="label">DSC</Col>
- <Col id="value">D</Col>
- </Row>
- <Row>
- <Col id="label">응급</Col>
- <Col id="value">E</Col>
- </Row>
- </Rows>
- </Dataset>
- <Dataset id="ds_main_common_M0177" firefirstcount="0" firenextcount="0" useclientlayout="false" updatecontrol="true" enableevent="true" loadkeymode="keep" loadfiltermode="keep" reversesubsum="false"/>
- <Dataset id="ds_main_common_M0394" firefirstcount="0" firenextcount="0" useclientlayout="false" updatecontrol="true" enableevent="true" loadkeymode="keep" loadfiltermode="keep" reversesubsum="false"/>
- <Dataset id="ds_main_cncrpatref_orddeptinfo" firefirstcount="0" firenextcount="0" useclientlayout="false" updatecontrol="true" enableevent="true" loadkeymode="keep" loadfiltermode="keep" reversesubsum="false">
- <ColumnInfo>
- <Column id="drlist" type="STRING" size="256"/>
- <Column id="orddeptlist" type="STRING" size="256"/>
- </ColumnInfo>
- <Rows>
- <Row>
- <Col id="orddeptlist"/>
- <Col id="drlist"/>
- </Row>
- </Rows>
- </Dataset>
- <Dataset id="ds_chk_checkbox2" firefirstcount="0" firenextcount="0" useclientlayout="false" updatecontrol="true" enableevent="true" loadkeymode="keep" loadfiltermode="keep" reversesubsum="false">
- <ColumnInfo>
- <Column id="label" type="STRING" size="256"/>
- <Column id="value" type="STRING" size="256"/>
- </ColumnInfo>
- <Rows>
- <Row>
- <Col id="label">10대 순위별</Col>
- <Col id="value">ten</Col>
- </Row>
- <Row>
- <Col id="label">연령별</Col>
- <Col id="value">age</Col>
- </Row>
- <Row>
- <Col id="label">성별</Col>
- <Col id="value">sex</Col>
- </Row>
- </Rows>
- </Dataset>
- <Dataset id="ds_temp_dutplcecd" firefirstcount="0" firenextcount="0" useclientlayout="false" updatecontrol="true" enableevent="true" loadkeymode="keep" loadfiltermode="keep" reversesubsum="false"/>
- <Dataset id="ds_main_common_com_dept" firefirstcount="0" firenextcount="0" useclientlayout="false" updatecontrol="true" enableevent="true" loadkeymode="keep" loadfiltermode="keep" reversesubsum="false"/>
- <Dataset id="ds_main_srchcncrpat_deptinfo" firefirstcount="0" firenextcount="0" useclientlayout="false" updatecontrol="true" enableevent="true" loadkeymode="keep" loadfiltermode="keep" reversesubsum="false"/>
- <Dataset id="ds_main_common_drlist" firefirstcount="0" firenextcount="0" useclientlayout="false" updatecontrol="true" enableevent="true" loadkeymode="keep" loadfiltermode="keep" reversesubsum="false"/>
- <Dataset id="ds_main_common_Z0007" firefirstcount="0" firenextcount="0" useclientlayout="false" updatecontrol="true" enableevent="true" loadkeymode="keep" loadfiltermode="keep" reversesubsum="false"/>
- <Dataset id="ds_temp_com_common_regimenlist" firefirstcount="0" firenextcount="0" useclientlayout="false" updatecontrol="true" enableevent="true" loadkeymode="keep" loadfiltermode="keep" reversesubsum="false"/>
- <Dataset id="ds_send_reqdata_exptlist" firefirstcount="0" firenextcount="0" useclientlayout="false" updatecontrol="true" enableevent="true" loadkeymode="keep" loadfiltermode="keep" reversesubsum="false"/>
- <Dataset id="ds_send" firefirstcount="0" firenextcount="0" useclientlayout="false" updatecontrol="true" enableevent="true" loadkeymode="keep" loadfiltermode="keep" reversesubsum="false"/>
- <Dataset id="ds_temp_terminfo_tplinfo" firefirstcount="0" firenextcount="0" useclientlayout="false" updatecontrol="true" enableevent="true" loadkeymode="keep" loadfiltermode="keep" reversesubsum="false"/>
- <Dataset id="ds_temp_terminfo_icdo3info" firefirstcount="0" firenextcount="0" useclientlayout="false" updatecontrol="true" enableevent="true" loadkeymode="keep" loadfiltermode="keep" reversesubsum="false"/>
- <Dataset id="ds_temp_terminfo_icd10info" firefirstcount="0" firenextcount="0" useclientlayout="false" updatecontrol="true" enableevent="true" loadkeymode="keep" loadfiltermode="keep" reversesubsum="false"/>
- <Dataset id="ds_main_diagcdinfo_kcd4m" firefirstcount="0" firenextcount="0" useclientlayout="false" updatecontrol="true" enableevent="true" loadkeymode="keep" loadfiltermode="keep" reversesubsum="false"/>
- <Dataset id="ds_cncrinfo_humaninfo_outpatinfo_patlist" firefirstcount="0" firenextcount="0" useclientlayout="false" updatecontrol="true" enableevent="true" loadkeymode="keep" loadfiltermode="keep" reversesubsum="false"/>
- <Dataset id="ds_cncrinfo_humaninfo_inpatinfo_patlist" firefirstcount="0" firenextcount="0" useclientlayout="false" updatecontrol="true" enableevent="true" loadkeymode="keep" loadfiltermode="keep" reversesubsum="false"/>
- <Dataset id="ds_send_savedata_cncrinfo" firefirstcount="0" firenextcount="0" useclientlayout="false" updatecontrol="true" enableevent="true" loadkeymode="keep" loadfiltermode="keep" reversesubsum="false"/>
- <Dataset id="ds_send_savedata_savebfio" firefirstcount="0" firenextcount="0" useclientlayout="false" updatecontrol="true" enableevent="true" loadkeymode="keep" loadfiltermode="keep" reversesubsum="false"/>
- <Dataset id="ds_send_savedata_saveprmypart" firefirstcount="0" firenextcount="0" useclientlayout="false" updatecontrol="true" enableevent="true" loadkeymode="keep" loadfiltermode="keep" reversesubsum="false"/>
- <Dataset id="ds_send_savedata_savemetstaspart" firefirstcount="0" firenextcount="0" useclientlayout="false" updatecontrol="true" enableevent="true" loadkeymode="keep" loadfiltermode="keep" reversesubsum="false"/>
- <Dataset id="ds_main_common_M0750" firefirstcount="0" firenextcount="0" useclientlayout="false" updatecontrol="true" enableevent="true" loadkeymode="keep" loadfiltermode="keep" reversesubsum="false"/>
- <Dataset id="ds_temp" firefirstcount="0" firenextcount="0" useclientlayout="false" updatecontrol="true" enableevent="true" loadkeymode="keep" loadfiltermode="keep" reversesubsum="false"/>
- <Dataset id="ds_send_cncrrgstpat" firefirstcount="0" firenextcount="0" useclientlayout="false" updatecontrol="true" enableevent="true" loadkeymode="keep" loadfiltermode="keep" reversesubsum="false"/>
- <Dataset id="ds_main_cncrpatref_orddrinfo" firefirstcount="0" firenextcount="0" useclientlayout="false" updatecontrol="true" enableevent="true" loadkeymode="keep" loadfiltermode="keep" reversesubsum="false">
- <ColumnInfo>
- <Column id="drlist" type="STRING" size="256"/>
- </ColumnInfo>
- <Rows>
- <Row>
- <Col id="drlist"/>
- </Row>
- </Rows>
- </Dataset>
- <Dataset id="ds_chk_clinical" firefirstcount="0" firenextcount="0" useclientlayout="false" updatecontrol="true" enableevent="true" loadkeymode="keep" loadfiltermode="keep" reversesubsum="false">
- <ColumnInfo>
- <Column id="label" type="STRING" size="256"/>
- <Column id="value" type="STRING" size="256"/>
- </ColumnInfo>
- <Rows>
- <Row>
- <Col id="label">Sono</Col>
- <Col id="value">01</Col>
- </Row>
- <Row>
- <Col id="label">CT</Col>
- <Col id="value">02</Col>
- </Row>
- <Row>
- <Col id="label">MRI</Col>
- <Col id="value">03</Col>
- </Row>
- <Row>
- <Col id="label">기타</Col>
- <Col id="value">04</Col>
- </Row>
- </Rows>
- </Dataset>
- </Objects>
- <Bind>
- <BindItem id="item0" compid="switch1.case1.rdo_ordtype" propid="value" datasetid="ds_main_srchcncrpat" columnid="ordtype"/>
- <BindItem id="item1" compid="switch1.case1.input13" propid="value" datasetid="ds_main_srchcncrpat" columnid="fromdd"/>
- <BindItem id="item2" compid="switch1.case1.input14" propid="value" datasetid="ds_main_srchcncrpat" columnid="todd"/>
- <BindItem id="item3" compid="switch1.case1.cmb_srchcncrrgst" propid="value" datasetid="ds_main_srchcncrpat" columnid="deptinfo"/>
- <BindItem id="item4" compid="switch1.case1.cmb_drinfo" propid="value" datasetid="ds_main_srchcncrpat" columnid="drinfo"/>
- <BindItem id="item5" compid="switch1.case1.radio1" propid="value" datasetid="ds_main_srchcncrpat" columnid="srchflag"/>
- <BindItem id="item6" compid="switch1.case1.input29" propid="value" datasetid="ds_main_srchcncrpat" columnid="dschfromdd"/>
- <BindItem id="item7" compid="switch1.case1.input30" propid="value" datasetid="ds_main_srchcncrpat" columnid="dschtodd"/>
- <BindItem id="item8" compid="switch1.case2.ipt_pid" propid="value" datasetid="ds_main_pathumtrainfo_cncrpatinfo" columnid="pid"/>
- <BindItem id="item9" compid="switch1.case2.chk_cretchknum" propid="value" datasetid="ds_init_checknum" columnid="value"/>
- <BindItem id="item10" compid="switch1.case2.ipt_patnm" propid="value" datasetid="ds_main_pathumtrainfo_cncrpatinfo" columnid="pnm"/>
- <BindItem id="item11" compid="switch1.case2.ipt_rrgstno1" propid="value" datasetid="ds_main_pathumtrainfo_cncrpatinfo" columnid="rrgstno1"/>
- <BindItem id="item12" compid="switch1.case2.ipt_rrgstno2" propid="value" datasetid="ds_main_pathumtrainfo_cncrpatinfo" columnid="rrgstno2"/>
- <BindItem id="item13" compid="switch1.case2.ipt_sex" propid="value" datasetid="ds_main_pathumtrainfo_cncrpatinfo" columnid="sex"/>
- <BindItem id="item14" compid="switch1.case2.ipt_age" propid="value" datasetid="ds_main_pathumtrainfo_cncrpatinfo" columnid="age"/>
- <BindItem id="item15" compid="switch1.case2.ipt_epoch" propid="value" datasetid="ds_main_pathumtrainfo_cncrpatinfo" columnid="epoch"/>
- <BindItem id="item16" compid="switch1.case2.cmb_maryflag" propid="value" datasetid="ds_main_pathumtrainfo_cncrpatinfo" columnid="maryflag"/>
- <BindItem id="item17" compid="switch1.case2.cmb_job1" propid="value" datasetid="ds_main_pathumtrainfo_cncrpatinfo" columnid="job1"/>
- <BindItem id="item18" compid="switch1.case2.cmb_etcjob" propid="value" datasetid="ds_main_pathumtrainfo_cncrpatinfo" columnid="etcjob"/>
- <BindItem id="item19" compid="switch1.case2.cmb_outorddd" propid="value" datasetid="ds_main_pathumtrainfo_cncrpatinfo" columnid="code"/>
- <BindItem id="item20" compid="switch1.case2.cmb_dschdd" propid="value" datasetid="ds_main_pathumtrainfo_cncrpatinfo" columnid="dschdd"/>
- <BindItem id="item21" compid="switch1.case2.cmb_indd" propid="value" datasetid="ds_main_pathumtrainfo_cncrpatinfo" columnid="indd"/>
- <BindItem id="item22" compid="switch1.case2.ipt_indg" propid="value" datasetid="ds_main_pathumtrainfo_cncrpatinfo" columnid="indg"/>
- <BindItem id="item23" compid="switch1.case2.ipt_totinhospdayno" propid="value" datasetid="ds_main_pathumtrainfo_cncrpatinfo" columnid="totinhospdayno"/>
- <BindItem id="item24" compid="switch1.case2.cmb_forgnerflag" propid="value" datasetid="ds_main_pathumtrainfo_cncrpatinfo" columnid="forgnerflag"/>
- <BindItem id="item25" compid="switch1.case2.rdo_travoflag" propid="value" datasetid="ds_main_pathumtrainfo_cncrpatinfo" columnid="travoflag"/>
- <BindItem id="item26" compid="switch1.case2.cmb_outorddept" propid="value" datasetid="ds_main_pathumtrainfo_cncrpatinfo" columnid="outorddept"/>
- <BindItem id="item27" compid="switch1.case2.cmb_dschorddept" propid="value" datasetid="ds_main_pathumtrainfo_cncrpatinfo" columnid="dschorddept"/>
- <BindItem id="item28" compid="switch1.case2.cmb_inorddept" propid="value" datasetid="ds_main_pathumtrainfo_cncrpatinfo" columnid="inorddept"/>
- <BindItem id="item29" compid="switch1.case2.ipt_zipcode1" propid="value" datasetid="ds_main_pathumtrainfo_cncrpatinfo" columnid="zipcode1"/>
- <BindItem id="item30" compid="switch1.case2.ipt_zipcode2" propid="value" datasetid="ds_main_pathumtrainfo_cncrpatinfo" columnid="zipcode2"/>
- <BindItem id="item31" compid="switch1.case2.ipt_addr" propid="value" datasetid="ds_main_pathumtrainfo_cncrpatinfo" columnid="addr"/>
- <BindItem id="item32" compid="switch1.case2.input10" propid="value" datasetid="ds_main_pathumtrainfo_cncrpatinfo" columnid="detaddr"/>
- <BindItem id="item33" compid="switch1.case2.ipt_mpphontel" propid="value" datasetid="ds_main_pathumtrainfo_cncrpatinfo" columnid="mpphontel"/>
- <BindItem id="item34" compid="switch1.case2.ipt_hometel" propid="value" datasetid="ds_main_pathumtrainfo_cncrpatinfo" columnid="hometel"/>
- <BindItem id="item35" compid="switch1.case2.cmb_outorddr" propid="value" datasetid="ds_main_pathumtrainfo_cncrpatinfo" columnid="outorddr"/>
- <BindItem id="item36" compid="switch1.case2.cmb_dschorddr" propid="value" datasetid="ds_main_pathumtrainfo_cncrpatinfo" columnid="dschorddr"/>
- <BindItem id="item37" compid="switch1.case2.cmb_inorddr" propid="value" datasetid="ds_main_pathumtrainfo_cncrpatinfo" columnid="inorddr"/>
- <BindItem id="item38" compid="switch1.case2.ipt_relausernm" propid="value" datasetid="ds_main_pathumtrainfo_relationinfo" columnid="relausernm"/>
- <BindItem id="item39" compid="switch1.case2.cmb_relation" propid="value" datasetid="ds_main_pathumtrainfo_relationinfo" columnid="relation"/>
- <BindItem id="item40" compid="switch1.case2.input1" propid="value" datasetid="ds_main_pathumtrainfo_relationinfo" columnid="zipcode1"/>
- <BindItem id="item41" compid="switch1.case2.input5" propid="value" datasetid="ds_main_pathumtrainfo_relationinfo" columnid="zipcode2"/>
- <BindItem id="item42" compid="switch1.case2.input8" propid="value" datasetid="ds_main_pathumtrainfo_relationinfo" columnid="addr"/>
- <BindItem id="item43" compid="switch1.case2.ipt_detaddr" propid="value" datasetid="ds_main_pathumtrainfo_relationinfo" columnid="detaddr"/>
- <BindItem id="item44" compid="switch1.case2.input11" propid="value" datasetid="ds_main_pathumtrainfo_relationinfo" columnid="mpphontel"/>
- <BindItem id="item45" compid="switch1.case2.input9" propid="value" datasetid="ds_main_pathumtrainfo_relationinfo" columnid="hometel"/>
- <BindItem id="item46" compid="switch1.case2.ipt_cncrno" propid="value" datasetid="ds_main_cncrpatrgst_regstatus_cncrnoinfo" columnid="cncrno"/>
- <BindItem id="item47" compid="switch1.case2.cmb_prmycncryn" propid="value" datasetid="ds_main_cncrpatrgst_regstatus" columnid="prmycncryn"/>
- <BindItem id="item48" compid="switch1.case2.cmb_sickstat" propid="value" datasetid="ds_main_cncrpatrgst_regstatus" columnid="sickstat"/>
- <BindItem id="item49" compid="switch1.case2.ipt_cureopendd" propid="value" datasetid="ds_main_cncrpatrgst_regstatus" columnid="cureopendd"/>
- <BindItem id="item50" compid="switch1.case2.rdo_flag" propid="value" datasetid="ds_main_cncrpatrgst_regstatus" columnid="flag"/>
- <BindItem id="item51" compid="switch1.case2.cmb_lastdiagmthd" propid="value" datasetid="ds_main_cncrpatrgst_diaginfo" columnid="lastdiagmthd"/>
- <BindItem id="item52" compid="switch1.case2.cmb_dethplce" propid="value" datasetid="ds_main_cncrpatrgst_dethinfo" columnid="dethplce"/>
- <BindItem id="item53" compid="switch1.case2.ipt_dethdd" propid="value" datasetid="ds_main_cncrpatrgst_dethinfo" columnid="dethdd"/>
- <BindItem id="item54" compid="switch1.case2.ipt_dethcascd" propid="value" datasetid="ds_main_cncrpatrgst_dethinfo" columnid="dethcascd"/>
- <BindItem id="item55" compid="switch1.case2.ipt_yearcnt" propid="value" datasetid="ds_main_cncrpatrgst_dethinfo_existterm" columnid="yearcnt"/>
- <BindItem id="item56" compid="switch1.case2.ipt_monthcnt" propid="value" datasetid="ds_main_cncrpatrgst_dethinfo_existterm" columnid="monthcnt"/>
- <BindItem id="item57" compid="switch1.case2.ipt_etcdiagroute" propid="value" datasetid="ds_main_cncrpatrgst_diaginfo" columnid="etcdiagroute"/>
- <BindItem id="item58" compid="switch1.case2.ipt_diagdd" propid="value" datasetid="ds_main_cncrpatrgst_diaginfo" columnid="diagdd"/>
- <BindItem id="item59" compid="switch1.case2.cmb_diaghospinfo" propid="value" datasetid="ds_main_cncrpatrgst_diaginfo" columnid="diaghospinfo"/>
- <BindItem id="item60" compid="switch1.case2.ipt_etcdiaghospnm" propid="value" datasetid="ds_main_cncrpatrgst_diaginfo" columnid="etcdiaghospnm"/>
- <BindItem id="item61" compid="switch1.case2.combo1" propid="value" datasetid="ds_main_cncrpatrgst_diaginfo" columnid="diagroute"/>
- <BindItem id="item62" compid="switch1.case2.ipt_clin" propid="value" datasetid="ds_main_cncrpatrgst_diaginfo" columnid="etcclinical"/>
- <BindItem id="item63" compid="switch1.case2.input12" propid="value" datasetid="ds_main_cncrpatrgst_regstatus" columnid="seqno"/>
- <BindItem id="item64" compid="switch1.case2.ipt_diagdrid" propid="value" datasetid="ds_main_cncrpatrgst_diaginfo" columnid="diagdrid"/>
- <BindItem id="item65" compid="switch1.case2.input19" propid="value" datasetid="ds_main_cncrpatrgst_diaginfo" columnid="morphinfo1"/>
- <BindItem id="item66" compid="switch1.case2.ipt_tophcd" propid="value" datasetid="ds_main_cncrpatrgst_diaginfo" columnid="tophcd"/>
- <BindItem id="item67" compid="switch1.case2.ipt_tophinfo" propid="value" datasetid="ds_main_cncrpatrgst_diaginfo" columnid="tophnm"/>
- <BindItem id="item68" compid="switch1.case2.ipt_morphcd1" propid="value" datasetid="ds_main_cncrpatrgst_diaginfo" columnid="morphcd1"/>
- <BindItem id="item69" compid="switch1.case2.ipt_morphinfo1" propid="value" datasetid="ds_main_cncrpatrgst_diaginfo" columnid="morphnm1"/>
- <BindItem id="item70" compid="switch1.case2.combo2" propid="value" datasetid="ds_main_cncrpatrgst_diaginfo" columnid="laterality"/>
- <BindItem id="item71" compid="switch1.case2.ipt_icd10cd" propid="value" datasetid="ds_main_cncrpatrgst_diaginfo" columnid="icd10cd"/>
- <BindItem id="item72" compid="switch1.case2.ipt_icd10nm" propid="value" datasetid="ds_main_cncrpatrgst_diaginfo" columnid="icd10nm"/>
- <BindItem id="item73" compid="switch1.case2.ipt_difrntgrdecd" propid="value" datasetid="ds_main_cncrpatrgst_diaginfo" columnid="difrntgrdecd"/>
- <BindItem id="item74" compid="switch1.case2.cmb_difrntgrde" propid="value" datasetid="ds_main_cncrpatrgst_diaginfo" columnid="difrntgrde"/>
- <BindItem id="item75" compid="switch1.case2.ipt_seercd" propid="value" datasetid="ds_main_cncrpatrgst_diaginfo" columnid="seercd"/>
- <BindItem id="item76" compid="switch1.case2.cmb_seer" propid="value" datasetid="ds_main_cncrpatrgst_diaginfo" columnid="seer"/>
- <BindItem id="item77" compid="switch1.case2.input21" propid="value" datasetid="ds_main_cncrpatrgst_diaginfo" columnid="morphinfo2"/>
- <BindItem id="item78" compid="switch1.case2.ipt_morphcd2" propid="value" datasetid="ds_main_cncrpatrgst_diaginfo" columnid="morphcd2"/>
- <BindItem id="item79" compid="switch1.case2.ipt_morphinfo2" propid="value" datasetid="ds_main_cncrpatrgst_diaginfo" columnid="morphnm2"/>
- <BindItem id="item80" compid="switch1.case2.ipt_tcd" propid="value" datasetid="ds_main_cncrpatrgst_diaginfo" columnid="tcd"/>
- <BindItem id="item81" compid="switch1.case2.cmb_t" propid="value" datasetid="ds_main_cncrpatrgst_diaginfo" columnid="t"/>
- <BindItem id="item82" compid="switch1.case2.ipt_ncd" propid="value" datasetid="ds_main_cncrpatrgst_diaginfo" columnid="ncd"/>
- <BindItem id="item83" compid="switch1.case2.cmb_n" propid="value" datasetid="ds_main_cncrpatrgst_diaginfo" columnid="n"/>
- <BindItem id="item84" compid="switch1.case2.ipt_mcd" propid="value" datasetid="ds_main_cncrpatrgst_diaginfo" columnid="mcd"/>
- <BindItem id="item85" compid="switch1.case2.cmb_m" propid="value" datasetid="ds_main_cncrpatrgst_diaginfo" columnid="m"/>
- <BindItem id="item86" compid="switch1.case2.ipt_stagcd" propid="value" datasetid="ds_main_cncrpatrgst_diaginfo" columnid="stagcd"/>
- <BindItem id="item87" compid="switch1.case2.cmb_staging" propid="value" datasetid="ds_main_cncrpatrgst_diaginfo" columnid="staging"/>
- <BindItem id="item88" compid="switch1.case2.ipt_etcstagflagcd" propid="value" datasetid="ds_main_cncrpatrgst_diaginfo" columnid="etcstagflagcd"/>
- <BindItem id="item89" compid="switch1.case2.cmb_etcstagflag" propid="value" datasetid="ds_main_cncrpatrgst_diaginfo" columnid="etcstagflag"/>
- <BindItem id="item90" compid="switch1.case2.ipt_etcstagcnts" propid="value" datasetid="ds_main_cncrpatrgst_diaginfo" columnid="etcstagcnts"/>
- <BindItem id="item91" compid="switch1.case2.input22" propid="value" datasetid="ds_main_cncrpatrgst_rerntmetstaspart" columnid="rerntmetstaspart1"/>
- <BindItem id="item92" compid="switch1.case2.ipt_rerntmetstaspartcd1" propid="value" datasetid="ds_main_cncrpatrgst_rerntmetstaspart" columnid="rerntmetstaspartcd1"/>
- <BindItem id="item93" compid="switch1.case2.ipt_rerntmetstaspart1" propid="value" datasetid="ds_main_cncrpatrgst_rerntmetstaspart" columnid="rerntmetstaspartnm1"/>
- <BindItem id="item94" compid="switch1.case2.input24" propid="value" datasetid="ds_main_cncrpatrgst_rerntmetstaspart" columnid="rerntmetstaspart2"/>
- <BindItem id="item95" compid="switch1.case2.ipt_rerntmetstaspartcd2" propid="value" datasetid="ds_main_cncrpatrgst_rerntmetstaspart" columnid="rerntmetstaspartcd2"/>
- <BindItem id="item96" compid="switch1.case2.ipt_rerntmetstaspart2" propid="value" datasetid="ds_main_cncrpatrgst_rerntmetstaspart" columnid="rerntmetstaspartnm2"/>
- <BindItem id="item97" compid="switch1.case2.input26" propid="value" datasetid="ds_main_cncrpatrgst_rerntmetstaspart" columnid="rerntmetstaspart3"/>
- <BindItem id="item98" compid="switch1.case2.ipt_rerntmetstaspartcd3" propid="value" datasetid="ds_main_cncrpatrgst_rerntmetstaspart" columnid="rerntmetstaspartcd3"/>
- <BindItem id="item99" compid="switch1.case2.ipt_rerntmetstaspart3" propid="value" datasetid="ds_main_cncrpatrgst_rerntmetstaspart" columnid="rerntmetstaspartnm3"/>
- <BindItem id="item100" compid="switch1.case2.input28" propid="value" datasetid="ds_main_cncrpatrgst_rerntmetstaspart" columnid="rerntmetstaspart4"/>
- <BindItem id="item101" compid="switch1.case2.ipt_rerntmetstaspartcd4" propid="value" datasetid="ds_main_cncrpatrgst_rerntmetstaspart" columnid="rerntmetstaspartcd4"/>
- <BindItem id="item102" compid="switch1.case2.ipt_rerntmetstaspart4" propid="value" datasetid="ds_main_cncrpatrgst_rerntmetstaspart" columnid="rerntmetstaspartnm4"/>
- <BindItem id="item103" compid="switch1.case2.ipt_ecogcd" propid="value" datasetid="ds_main_cncrpatrgst_rerntmetstaspart" columnid="ecogcd"/>
- <BindItem id="item104" compid="switch1.case2.cmb_ecog" propid="value" datasetid="ds_main_cncrpatrgst_rerntmetstaspart" columnid="ecog"/>
- <BindItem id="item105" compid="switch1.case2.ipt_regimencd1" propid="value" datasetid="ds_main_cncrpatrgst_rerntmetstaspart" columnid="regimencd1"/>
- <BindItem id="item106" compid="switch1.case2.cmb_regimen1" propid="value" datasetid="ds_main_cncrpatrgst_rerntmetstaspart" columnid="regimen1"/>
- <BindItem id="item107" compid="switch1.case2.ipt_regimencd2" propid="value" datasetid="ds_main_cncrpatrgst_rerntmetstaspart" columnid="regimencd2"/>
- <BindItem id="item108" compid="switch1.case2.cmb_regimen2" propid="value" datasetid="ds_main_cncrpatrgst_rerntmetstaspart" columnid="regimen2"/>
- <BindItem id="item109" compid="switch1.case3.radio3" propid="value" datasetid="ds_main_cncrpatref" columnid="ioflag"/>
- <BindItem id="item110" compid="switch1.case3.ipt_fromdd" propid="value" datasetid="ds_main_cncrpatref" columnid="fromdd"/>
- <BindItem id="item111" compid="switch1.case3.ipt_todd" propid="value" datasetid="ds_main_cncrpatref" columnid="todd"/>
- <BindItem id="item112" compid="switch1.case3.cmb_srchdept" propid="value" datasetid="ds_main_cncrpatref_orddeptinfo" columnid="orddeptlist"/>
- <BindItem id="item113" compid="switch1.case3.cmb_orddrlist" propid="value" datasetid="ds_main_cncrpatref_orddrinfo" columnid="drlist"/>
- <BindItem id="item114" compid="switch1.case3.combo4" propid="value" datasetid="ds_main_cncrpatref" columnid="sexflag"/>
- <BindItem id="item115" compid="switch1.case3.input2" propid="value" datasetid="ds_main_cncrpatref" columnid="fromage"/>
- <BindItem id="item116" compid="switch1.case3.input4" propid="value" datasetid="ds_main_cncrpatref" columnid="toage"/>
- <BindItem id="item117" compid="switch1.case3.input3" propid="value" datasetid="ds_main_cncrpatref" columnid="tophcd"/>
- <BindItem id="item118" compid="switch1.case3.input17" propid="value" datasetid="ds_main_cncrpatref" columnid="tophnm"/>
- <BindItem id="item119" compid="switch1.case3.input16" propid="value" datasetid="ds_main_cncrpatref" columnid="tophseq"/>
- <BindItem id="item120" compid="switch1.case3.input6" propid="value" datasetid="ds_main_cncrpatref" columnid="morphcd"/>
- <BindItem id="item121" compid="switch1.case3.input20" propid="value" datasetid="ds_main_cncrpatref" columnid="morphnm"/>
- <BindItem id="item122" compid="switch1.case3.input18" propid="value" datasetid="ds_main_cncrpatref" columnid="morphseq"/>
- <BindItem id="item123" compid="switch1.case3.input7" propid="value" datasetid="ds_main_cncrpatref" columnid="icd10cd"/>
- <BindItem id="item124" compid="switch1.case3.input23" propid="value" datasetid="ds_main_cncrpatref" columnid="icd10nm"/>
- <BindItem id="item125" compid="switch1.case3.input25" propid="value" datasetid="ds_main_cncrpatref" columnid="cncrnofrdd"/>
- <BindItem id="item126" compid="switch1.case3.input27" propid="value" datasetid="ds_main_cncrpatref" columnid="cncrnotodd"/>
- <BindItem id="item127" compid="switch1.case3.ipt_appmanid01" propid="value" datasetid="ds_main_cncrpatref" columnid="pid"/>
- <BindItem id="item128" compid="switch1.case3.input42" propid="value" datasetid="ds_main_cncrpatref" columnid="pnm"/>
- <BindItem id="item129" compid="switch1.case3.input43" propid="value" datasetid="ds_main_cncrpatref" columnid="prgstno"/>
- <BindItem id="item130" compid="switch1.case1.checkbox1" propid="value" datasetid="ds_main_srchcncrpat" columnid="dethyn"/>
- <BindItem id="item132" compid="switch1.case3.Combo00" propid="value" datasetid="ds_main_cncrpatref" columnid="skind"/>
- </Bind>
- <Script type="xscript4.0"><![CDATA[/***************************************************************************************
- * System Name :
- * Job Name :
- * Creator :
- * Make Date : 2015-11-13
- * Description :
- *---------------------------------------------------------------------------------------
- * Modify Date Modifier Modify Description
- *---------------------------------------------------------------------------------------
- * 2015-11-13 Live Converter TF->XP
- *
- *---------------------------------------------------------------------------------------
- ****************************************************************************************/
- include "com_commonxp::comm_main.xjs";
- include "emr_dschanalyxp::SMMRD00100.xjs";
- include "emr_carecomxp::CareCom.xjs";
- include "com_userdeptinfoxp::ZSU001.xjs";
- include "emr_carecomxp::ENRSignEngine.xjs";
- include "emr_prcpmngtxp::MMO001.xjs";
- include "com_commodulexp::SSZFM00901.xjs";
- include "com_commodulexp::SSZFM01001.xjs";
- include "emr_formmngtxp::MRF03800.xjs";
- include "emr_wardcarexp::SMMNW03.xjs";
- include "emr_commonxp::EMRCommon.xjs";
- include "com_departmentcodexp::ZSD001.xjs";
- var arErrorCode = new HashArray();
- var para_pid = "";
- var para_dschdd="";
- var cncryn = "N";
- function SMMRD00100_oninit(obj:Form, e:InitEventInfo)
- {
- frmf_initForm(obj); //폼 초기화
- grdf_initGrid(switch1.case1.grd_cncrrgstlist);
- grdf_initGrid(switch1.case2.grd_cncrhist);
-
- }
- function SMMRD00100_onload(obj:Form, e:LoadEventInfo)
- {
- fInitialize();
- }
- function fn_clinical(){
- var getData = String(switch1.case2.chk_clin.getData()).replace(","," ");
- ds_main_cncrpatrgst_diaginfo.setColumn(0, "clinical", getData);
-
- if(getData.indexOf("04") != -1){
- switch1.case2.ipt_clin.enable = true;
- } else {
- ds_main_cncrpatrgst_diaginfo.setColumn(0, "etcclinical", "");
- switch1.case2.ipt_clin.enable = false;
- }
- }
- function fn_checkbox2(){
- var getData = String(switch1.case3.checkbox2.getData()).replace(","," ");
- ds_main_cncrpatref.setColumn(0, "srchflag", getData);
- }
- function switch1_case2_rdo_flag_onitemchanged(obj:Radio, e:ItemChangeEventInfo)
- {
- fBtnSetting(false);
-
- var prmycncryn = ds_main_cncrpatrgst_regstatus.getColumn(0, "prmycncryn");
- var cncrno = ds_main_cncrpatrgst_regstatus_cncrnoinfo.getColumn(0, "cncrno");
-
- if ( prmycncryn == "Y" && !utlf_isNull(cncrno) ){
- fGetCncrHistNo();
-
- }else{
- fGetCncrNo();
- }
-
- resetDetailData();
- }
- function switch1_onchanged(obj:Tab, e:TabIndexChangeEventInfo)
- {
- if(switch1.tabindex == 0){
- switch1.case3.btn_excel.visible = true;
-
- var vsrchflag = ds_main_srchcncrpat.getColumn(0, "srchflag");
- if(vsrchflag == "1"){
- switch1.case1.checkbox1.visible = true;
- } else {
- switch1.case1.checkbox1.visible = false;
- }
- }else if(switch1.tabindex == 1){
- switch1.case3.btn_excel.visible = false;
- }else if(switch1.tabindex == 2){
- switch1.case3.btn_excel.visible = true;
- }
- }
- function switch1_case1_button2_onclick(obj:Button, e:ClickEventInfo)
- {
- fSrchCncrPatRgst();
- }
- function switch1_case1_cmb_srchcncrrgst_onitemchanged(obj:Combo, e:ItemChangeEventInfo)
- {
- fChngSrchCond(ds_main_srchcncrpat.getColumn(0, "deptinfo"), ds_init_srchcncrrgst_drinfo);
- }
- function switch1_case1_rdo_ordtype_onitemchanged(obj:Radio, e:ItemChangeEventInfo)
- {
- ds_main_common_com_dept.clearData();
-
- if(switch1.case1.rdo_ordtype.value == "A"){
- switch1.case1.cap_orddd.text = "진료일자 :";
- switch1.case1.cap_orddept.text = "진료과 :";
- ds_main_common_com_dept.clearData();
- //zsdfGetInOutOrdDeptList(getUserInfo("dutplceinstcd"), "/root/main/common/com", "depthngnm", "asc");
- appf_getInOutOrdDeptList(sysf_getUserInfo("dutplceinstcd"), "depthngnm", "asc", null, null, "ds_main_common_com_dept", false, null); //전체 진료과
- } else if(switch1.case1.rdo_ordtype.value == "O"){
- switch1.case1.cap_orddd.text = "진료일자 :";
- switch1.case1.cap_orddept.text = "진료과 :";
- ds_main_common_com_dept.clearData();
- //zsdfGetOutOrdDeptList(getUserInfo("dutplceinstcd"), "/root/main/common/com", "depthngnm", "asc");
- appf_getOutOrdDeptList(sysf_getUserInfo("dutplceinstcd"), "depthngnm", "asc", "", "", "ds_main_common_com_dept", false, "");// 외래진료과
- } else if(switch1.case1.rdo_ordtype.value == "I"){
- switch1.case1.cap_orddd.text = "퇴원일자 :";
- switch1.case1.cap_orddept.text = "퇴원과 :";
- ds_main_common_com_dept.clearData();
- //zsdfGetInOrdDeptList(getUserInfo("dutplceinstcd"), "/root/main/common/com", "depthngnm", "asc");
- appf_getInOrdDeptList(sysf_getUserInfo("dutplceinstcd"), "depthngnm", "asc", "", "", "ds_main_common_com_dept", false, "");//입원진료과(퇴원과)
- }
- }
- function switch1_case1_grd_cncrrgstlist_oncelldblclick(obj:Grid, e:GridClickEventInfo)
- {
- if(e.row >= 0 && e.col >= 0){
- if(switch1.case1.grd_cncrrgstlist.currentcol != switch1.case1.grd_cncrrgstlist.getBindCellIndex("body", "cncrexpt")){
- var iRow = ds_main_cncrrgstpatlist_list.rowposition;
- fCncrRgstlist(iRow);
- }
- }
- }
- function switch1_case1_radio1_onitemchanged(obj:Radio, e:ItemChangeEventInfo)
- {
- var vsrchflag = ds_main_srchcncrpat.getColumn(0, "srchflag");
- if(vsrchflag == "1"){
- switch1.case1.checkbox1.visible = true;
- switch1.case1.grd_cncrrgstlist.setFormatColProperty(switch1.case1.grd_cncrrgstlist.getBindCellIndex("body", "dethdd"), "size", 80);
- switch1.case1.grd_cncrrgstlist.setFormatColProperty(switch1.case1.grd_cncrrgstlist.getBindCellIndex("body", "dethplcecd"), "size", 80);
- switch1.case1.grd_cncrrgstlist.setFormatColProperty(switch1.case1.grd_cncrrgstlist.getBindCellIndex("body", "dethcause"), "size", 80);
-
- // switch1.case1.caption67.visible = true;
- // switch1.case1.input29.visible = true;
- // switch1.case1.caption66.visible = true;
- // switch1.case1.input30.visible = true;
- } else {
- switch1.case1.grd_cncrrgstlist.setFormatColProperty(switch1.case1.grd_cncrrgstlist.getBindCellIndex("body", "dethdd"), "size", 0);
- switch1.case1.grd_cncrrgstlist.setFormatColProperty(switch1.case1.grd_cncrrgstlist.getBindCellIndex("body", "dethplcecd"), "size", 0);
- switch1.case1.grd_cncrrgstlist.setFormatColProperty(switch1.case1.grd_cncrrgstlist.getBindCellIndex("body", "dethcause"), "size", 0);
-
- switch1.case1.checkbox1.visible = false;
- switch1.case1.caption67.visible = false;
- switch1.case1.input29.visible = false;
- switch1.case1.caption66.visible = false;
- switch1.case1.input30.visible = false;
- ds_main_srchcncrpat.setColumn(0, "dethyn","");
- ds_main_srchcncrpat.setColumn(0, "dschfromdd","");
- ds_main_srchcncrpat.setColumn(0, "dschtodd","");
- }
- }
- function switch1_case1_button15_onclick(obj:Button, e:ClickEventInfo)
- {
- switch1.case1.grd_cncrrgstlist.setFormatColProperty(4, "size", 100);
- switch1.case1.grd_cncrrgstlist.setFormatColProperty(5, "size", 100);
- switch1.case1.grd_cncrrgstlist.setFormatColProperty(8, "size", 100);
- switch1.case1.grd_cncrrgstlist.setFormatColProperty(10,"size", 100);
- switch1.case1.grd_cncrrgstlist.setFormatColProperty(17,"size", 100);
- switch1.case1.grd_cncrrgstlist.setFormatColProperty(18,"size", 100);
- switch1.case1.grd_cncrrgstlist.setFormatColProperty(19,"size", 100);
- grdf_exportExcel(switch1.case1.grd_cncrrgstlist, "암등록환자조회_" + utlf_getCurrentDate(), "sheetname1" , true, "" , "" , true);
- switch1.case1.grd_cncrrgstlist.setFormatColProperty(4, "size", 0);
- switch1.case1.grd_cncrrgstlist.setFormatColProperty(5, "size", 0);
- switch1.case1.grd_cncrrgstlist.setFormatColProperty(8, "size", 0);
- switch1.case1.grd_cncrrgstlist.setFormatColProperty(10,"size", 0);
- switch1.case1.grd_cncrrgstlist.setFormatColProperty(17,"size", 0);
- switch1.case1.grd_cncrrgstlist.setFormatColProperty(18,"size", 0);
- switch1.case1.grd_cncrrgstlist.setFormatColProperty(19,"size", 0);
- }
- function switch1_case1_button16_onclick(obj:Button, e:ClickEventInfo)
- {
- fSaveDataExpt();
- }
- function switch1_case1_checkbox1_onclick(obj:CheckBox, e:ClickEventInfo)
- {
- var vDethyn = ds_main_srchcncrpat.getColumn(0, "dethyn");
-
- if(vDethyn == "01"){
- var vDschfromdd = utlf_transNullToEmpty(ds_main_srchcncrpat.getColumn(0, "fromdd"));
- var vDschtodd = utlf_transNullToEmpty(ds_main_srchcncrpat.getColumn(0, "todd"));
- var vDschtodd = (vDschtodd.toDate()).getAddDate(7).getDateFormat('YYYYMMDD');
-
- switch1.case1.caption67.visible = true;
- switch1.case1.input29.visible = true;
- switch1.case1.caption66.visible = true;
- switch1.case1.input30.visible = true;
- switch1.case1.input29.value = vDschfromdd;
- switch1.case1.input30.value = vDschtodd;
- } else {
- switch1.case1.caption67.visible = false;
- switch1.case1.input29.visible = false;
- switch1.case1.caption66.visible = false;
- switch1.case1.input30.visible = false;
- ds_main_srchcncrpat.setColumn(0, "dschfromdd","");
- ds_main_srchcncrpat.setColumn(0, "dschtodd","");
- }
- }
- function switch1_case2_cmb_regimen1_onitemchanged(obj:Combo, e:ItemChangeEventInfo)
- {
- dsf_makeValue(ds_main_cncrpatrgst_rerntmetstaspart, "regimencd1", "string", ds_main_cncrpatrgst_rerntmetstaspart.getColumn(0, "regimen1"));
-
- var code = ds_main_cncrpatrgst_rerntmetstaspart.getColumn(0, "regimencd1");
- fGetRegimenDet(code);
- ds_main_cncrpatrgst_rerntmetstaspart.setColumn(0, "regimencd2", "");
- ds_main_cncrpatrgst_rerntmetstaspart.setColumn(0, "regimen2","");
- }
- function switch1_case2_button26_onclick(obj:Button, e:ClickEventInfo)
- {
- dsf_createDs("ds_hidden_parameters");
- dsf_makeValue(ds_hidden_parameters,"rcv_zipcdhead" ,"string","");
- dsf_makeValue(ds_hidden_parameters,"rcv_zipcdfoot_path" ,"string","");
- dsf_makeValue(ds_hidden_parameters,"rcv_seqno_path" ,"string","");
- dsf_makeValue(ds_hidden_parameters,"rcv_address_path" ,"string","");
- frmf_setParameter("rcv_zipcdhead_path" , ds_hidden_parameters.getColumn(0,"rcv_zipcdhead_path"));
- frmf_setParameter("rcv_zipcdfoot_path" , ds_hidden_parameters.getColumn(0,"rcv_zipcdfoot_path"));
- frmf_setParameter("rcv_seqno_path" , ds_hidden_parameters.getColumn(0,"rcv_seqno_path"));
- frmf_setParameter("rcv_address_path" , ds_hidden_parameters.getColumn(0,"rcv_address_path"));
- frmf_setParameter("condition", "address");
- frmf_setParameter("imemode", "hangul");
- // modal("SPZBP00101", 1, e.screenX-20, e.screenY-80);
- frmf_modal("SPZBP00101","SPZBP00101",null,1,e.screenX-20,e.screenY-80,null,null,null,null,null,null,"M");
-
- var zipcdhead = ds_hidden_parameters.getColumn(0,"rcv_zipcdhead_path");
- var zipcdfoot = ds_hidden_parameters.getColumn(0,"rcv_zipcdfoot_path");
- var seqno = ds_hidden_parameters.getColumn(0,"rcv_seqno_path");
- var address = ds_hidden_parameters.getColumn(0,"rcv_address_path");
- dsf_makeValue(ds_main_pathumtrainfo_relationinfo, "zipcdhead" ,"string",zipcdhead);
- dsf_makeValue(ds_main_pathumtrainfo_relationinfo, "zipcdfoot" ,"string",zipcdfoot);
- dsf_makeValue(ds_main_pathumtrainfo_relationinfo, "acptplcebaseaddr","string",address);
- dsf_makeValue(ds_main_pathumtrainfo_relationinfo, "seqno" ,"string",seqno);
- }
- function switch1_case2_cmb_sickstat_onitemchanged(obj:Combo, e:ItemChangeEventInfo)
- {
- if((ds_main_cncrpatrgst_regstatus.getColumn(0, "sickstat") == "07") || (ds_main_cncrpatrgst_regstatus.getColumn(0, "sickstat") == "08") || (ds_main_cncrpatrgst_regstatus.getColumn(0, "sickstat") == "09")){
- switch1.case2.cmb_dethplce.enable = true;
- switch1.case2.ipt_dethdd.enable = true;
- switch1.case2.ipt_dethcascd.enable = true;
- switch1.case2.ipt_yearcnt.enable = true;
- switch1.case2.ipt_monthcnt.enable = true;
- } else {
- switch1.case2.cmb_dethplce.enable = false;
- switch1.case2.ipt_dethdd.enable = false;
- switch1.case2.ipt_dethcascd.enable = false;
- switch1.case2.ipt_yearcnt.enable = false;
- switch1.case2.ipt_monthcnt.enable = false;
- }
- }
- function switch1_case2_cmb_regimen2_onitemchanged(obj:Combo, e:ItemChangeEventInfo)
- {
- dsf_makeValue(ds_main_cncrpatrgst_rerntmetstaspart, "regimencd2", "string", ds_main_cncrpatrgst_rerntmetstaspart.getColumn(0, "regimen2"));
- }
- function switch1_case2_ipt_icd10cd_onkeydown(obj:Edit, e:KeyEventInfo)
- {
- if(e.keycode == 13){
- obj.updateToDataset();
- var ordtype = ds_main_pathumtrainfo_cncrpatinfo.getColumn(0, "ordtype");
- var dschdd = ds_main_pathumtrainfo_cncrpatinfo.getColumn(0, "dschdd");
- var orddd = ds_main_pathumtrainfo_cncrpatinfo.getColumn(0, "orddd");
- var code = switch1.case2.ipt_icd10cd.value;
-
- ds_send.clearData();
- dsf_makeValue(ds_send, "indxcd", "string", "null");
- dsf_makeValue(ds_send, "indxflag", "string", "0");
- // KNUH_20101207_박성호_start_의무기록 부서코드 가져오기
- var dutplcecd = ds_temp_dutplcecd.getColumn(0, "hardcd");
- //model.makeValue("/root/send/deptcd", "3230000000");//의료정보팀 진단용어만
- dsf_makeValue(ds_send, "deptcd", "string", dutplcecd);//의료정보팀 진단용어만
- // KNUH_20101207_박성호_end
-
- dsf_makeValue(ds_send, "deptflag", "string", "Y");
- dsf_makeValue(ds_send, "srchflag", "string", "C");
- dsf_makeValue(ds_send, "srchnm", "string", code.toUpperCase());
- if(ordtype=="I"){
- dsf_makeValue(ds_send, "stndd", "string", dschdd);
- }else if(ordtype=="O"){
- dsf_makeValue(ds_send, "stndd", "string", orddd);
- }else if(ordtype=="S"){
- dsf_makeValue(ds_send, "stndd", "string", orddd);
- }
-
- //20090907 강지훈 수정 : 입력하지않았을때 발생하는 오류 수정
- if(!utlf_isNull(code)){
- var oParam = {};
- oParam.id = "TRMRT01600";
- oParam.service = "termmngtapp.DeptSetMngt";
- oParam.method = "reqGetTermSearch";
- oParam.inds = "reqCond=ds_send";
- oParam.outds = "ds_main_deptdiagcdlist_deptdiagcdinfo=deptcdinfo";
- oParam.async = false;
- oParam.callback = "cf_TRMRT01600";
- tranf_submit(oParam);
-
- if(arErrorCode.pop("TRMRT01600") > -1){//진단코드
- if(ds_main_deptdiagcdlist_deptdiagcdinfo.rowcount == 1){
- ds_main_cncrpatrgst_diaginfo.setColumn(0, "icd10cd", ds_main_deptdiagcdlist_deptdiagcdinfo.getColumn(0, "termcd"));
- ds_main_cncrpatrgst_diaginfo.setColumn(0, "icd10nm", ds_main_deptdiagcdlist_deptdiagcdinfo.getColumn(0, "termengnm"));
- ds_main_deptdiagcdlist_deptdiagcdinfo.clearData();
- }else{
- fSrchTerm("icd10", code);
- }
- }
- }
- else{
- fSrchTerm("icd10", code);
- }
- }
- }
- function cf_TRMRT01600(sSvcId, nErrorCode, sErrorMsg) {
- arErrorCode.push(sSvcId, nErrorCode);
- }
- function switch1_case2_grd_cncrhist_oncelldblclick(obj:Grid, e:GridClickEventInfo)
- {
- if(e.row >= 0 && e.col >= 0){
- var iRow = ds_main_humaninfo_cncrhist_histlist.rowposition;
- fDisplay(iRow);
- }
- }
- function switch1_case2_ipt_pid_onkeydown(obj:Edit, e:KeyEventInfo)
- {
- if(e.keycode == 13){
- obj.updateToDataset();
- switch1.case2.chk_clin.setCheckAll(false, false);
- switch1_case2_btn_rgstpid_onclick();
- }
- }
- function switch1_case2_btn_rgstpid_onclick(obj:Button, e:ClickEventInfo)
- {
- fGetPatinfo();
- }
- function switch1_case2_ipt_morphcd1_onkeydown(obj:Edit, e:KeyEventInfo)
- {
- if(e.keycode == 13){
- obj.updateToDataset();
- var ordtype = ds_main_pathumtrainfo_cncrpatinfo.getColumn(0, "ordtype");
- var dschdd = ds_main_pathumtrainfo_cncrpatinfo.getColumn(0, "dschdd");
- var orddd = ds_main_pathumtrainfo_cncrpatinfo.getColumn(0, "orddd");
- var code = switch1.case2.ipt_morphcd1.value;
-
- ds_send.clearData();
- dsf_makeValue(ds_send, "indxcd", "string", "null");
- dsf_makeValue(ds_send, "indxflag", "string", "0");
-
- // KNUH_20101207_박성호_start_의무기록 부서코드 가져오기
- var dutplcecd = ds_temp_dutplcecd.getColumn(0, "hardcd");
- //model.makeValue("/root/send/deptcd", "3230000000");//의료정보팀 진단용어만
- dsf_makeValue(ds_send, "deptcd", "string", dutplcecd);//의료정보팀 진단용어만
- // KNUH_20101207_박성호_end
-
- dsf_makeValue(ds_send, "deptflag", "string", "Y");
- dsf_makeValue(ds_send, "srchflag", "string", "C");
- dsf_makeValue(ds_send, "srchnm", "string", code.toUpperCase());
- if(ordtype=="I"){
- dsf_makeValue(ds_send, "stndd", "string", dschdd);
- }else if(ordtype=="O"){
- dsf_makeValue(ds_send, "stndd", "string", orddd);
- }
- // 2009-05- 29 ICDO3로 변경
- //if(submit("TRMRT00209",false)){
- var oParam = {};
- oParam.id = "TRMRT01701";
- oParam.service = "termmngtapp.CncrDiagMngt";
- oParam.method = "reqGetSrchICDO3";
- oParam.inds = "req=ds_send";
- oParam.outds = "ds_main_diagcdinfo_kcd4m=icdo3";
- oParam.async = false;
- oParam.callback = "cf_TRMRT01701";
- tranf_submit(oParam);
-
- if(arErrorCode.pop("TRMRT01701") > -1){
- if(ds_main_diagcdinfo_kcd4m.rowcount == 1){
- dsf_makeValue(ds_main_cncrpatrgst_diaginfo,"morphcd1", "string", utlf_transNullToEmpty(ds_main_diagcdinfo_kcd4m.getColumn(0, "histlgccd")));
- dsf_makeValue(ds_main_cncrpatrgst_diaginfo,"morphnm1", "string", utlf_transNullToEmpty(ds_main_diagcdinfo_kcd4m.getColumn(0, "icdo3engnm")));
- dsf_makeValue(ds_main_cncrpatrgst_diaginfo,"morphinfo1","string", utlf_transNullToEmpty(ds_main_diagcdinfo_kcd4m.getColumn(0, "icdo3seqno")));
- ds_main_diagcdinfo_kcd4m.clearData();
- }else{
- fSrchTerm("morph1", code);
- }
- }
- }
- }
- function cf_TRMRT01701(sSvcId, nErrorCode, sErrorMsg) {
- arErrorCode.push(sSvcId, nErrorCode);
- }
- function switch1_case2_ipt_dethdd_onchanged(obj:Calendar, e:ChangeEventInfo)
- {
- obj.updateToDataset();
- var diagdd = ds_main_cncrpatrgst_diaginfo.getColumn(0, "diagdd");
- var dethdd = ds_main_cncrpatrgst_dethinfo.getColumn(0, "dethdd");
- if(!utlf_isNull(diagdd)){
- if(ds_main_cncrpatrgst_dethinfo.getColumn(0, "dethdd") < diagdd){
- sysf_messageBox("진단일자 보다 이전 날짜를 선택","E001");
- return;
- }
- }else{
- sysf_messageBox("진단일자가 입력되지 않았습니다.!!!");
- return;
- }
-
- var mCnt = utlf_getDateInterval(diagdd, dethdd,"mm") - (12 * utlf_getDateInterval(diagdd, dethdd,"yyyy"));
- ds_main_cncrpatrgst_dethinfo_existterm.setColumn(0, "monthcnt", mCnt);
- ds_main_cncrpatrgst_dethinfo_existterm.setColumn(0, "yearcnt", utlf_getDateInterval(diagdd, dethdd,"yyyy"));
- }
- function switch1_case2_cmb_dschorddept_onitemchanged(obj:Combo, e:ItemChangeEventInfo)
- {
- ds_hidden_pathumtrainfo_cncrpatinfo_dschorddr_user.clearData();
- var sdschDD = ds_main_pathumtrainfo_cncrpatinfo.getColumn(0, "dschdd");
- //fChngSrchCond("/root/main/pathumtrainfo/cncrpatinfo/dschorddept", "/root/hidden/pathumtrainfo/cncrpatinfo/dschorddr");
- zsufGetOrdDeptDoctorList("none", sysf_getUserInfo("dutplceinstcd"), switch1.case2.cmb_dschorddept.value, "ds_hidden_pathumtrainfo_cncrpatinfo_dschorddr_user", "usernm", "asc",sdschDD);//퇴원주치의(퇴원과)
- }
- function switch1_case2_cmb_prmycncryn_onitemchanged(obj:Combo, e:ItemChangeEventInfo)
- {
- var flag = ds_main_cncrpatrgst_regstatus.getColumn(0, "flag");
-
- if ( !utlf_isNull(flag) )
- fGetCncrHistNo();
- }
- function switch1_case2_cmb_t_onitemchanged(obj:Combo, e:ItemChangeEventInfo)
- {
- dsf_makeValue(ds_main_cncrpatrgst_diaginfo, "tcd", "string", ds_main_cncrpatrgst_diaginfo.getColumn(0, "t"));
- }
- function switch1_case2_ipt_tophcd_onkeydown(obj:Edit, e:KeyEventInfo)
- {
- if(e.keycode == 13){
- obj.updateToDataset();
- var code = ds_main_cncrpatrgst_diaginfo.getColumn(0, "tophcd");
- code = code.toUpperCase();
- fSrchTerm("toph", code);
- }
- }
- function switch1_case2_cmb_n_onitemchanged(obj:Combo, e:ItemChangeEventInfo)
- {
- dsf_makeValue(ds_main_cncrpatrgst_diaginfo, "ncd", "string", ds_main_cncrpatrgst_diaginfo.getColumn(0, "n"));
- }
- function switch1_case2_cmb_outorddept_onitemchanged(obj:Combo, e:ItemChangeEventInfo)
- {
- obj.updateToDataset();
- var sOrDDD= ds_main_pathumtrainfo_cncrpatinfo.getColumn(0, "orddd");
- zsufGetOrdDeptDoctorList("none", sysf_getUserInfo("dutplceinstcd"),switch1.case2.cmb_outorddept.value, "ds_hidden_pathumtrainfo_cncrpatinfo_outorddr_user","usernm","asc",sOrDDD);//외래진료의
- }
- function switch1_case2_cmb_m_onitemchanged(obj:Combo, e:ItemChangeEventInfo)
- {
- dsf_makeValue(ds_main_cncrpatrgst_diaginfo, "mcd", "string", ds_main_cncrpatrgst_diaginfo.getColumn(0, "m"));
- }
- function switch1_case2_ipt_diagdd_onchanged(obj:Calendar, e:ChangeEventInfo)
- {
- obj.updateToDataset();
- var dschdd = ds_main_pathumtrainfo_cncrpatinfo.getColumn(0, "dschdd");
- var dethdd = ds_main_cncrpatrgst_dethinfo.getColumn(0, "dethdd");
- var diagdd = ds_main_cncrpatrgst_diaginfo.getColumn(0, "diagdd");
- var cureopendd = ds_main_cncrpatrgst_regstatus.getColumn(0, "cureopendd");
- if(!utlf_isNull(dethdd)){
- if(ds_main_cncrpatrgst_diaginfo.getColumn(0, "diagdd") > dethdd){
- sysf_messageBox("사망일자를", "E003");
- return;
- }
- var mCnt = utlf_getDateInterval(diagdd, dethdd,"mm") - (12 * utlf_getDateInterval(diagdd, dethdd,"yyyy"));
- ds_main_cncrpatrgst_dethinfo_existterm.setColumn(0, "monthcnt", mCnt);
- ds_main_cncrpatrgst_dethinfo_existterm.setColumn(0, "yearcnt", utlf_getDateInterval(diagdd, dethdd,"yyyy"));
- }
- if(!utlf_isNull(dschdd)){
- if(ds_main_cncrpatrgst_diaginfo.getColumn(0, "diagdd") > dschdd){
- sysf_messageBox("퇴원일자를", "E003");
- return;
- }
- }
- if(!utlf_isNull(cureopendd)){
- if(ds_main_cncrpatrgst_diaginfo.getColumn(0, "diagdd") > cureopendd){
- sysf_messageBox("치료개시일 보다 이후 날짜를 선택", "E001");
- return;
- }
- }
- }
- function switch1_case2_cmb_inorddept_onitemchanged(obj:Combo, e:ItemChangeEventInfo)
- {
- ds_hidden_pathumtrainfo_cncrpatinfo_inorddr_user.clearData();
- var sInDD = ds_main_pathumtrainfo_cncrpatinfo.getColumn(0, "indd");
- zsufGetOrdDeptDoctorList("none", sysf_getUserInfo("dutplceinstcd"), inorddept, "ds_hidden_pathumtrainfo_cncrpatinfo_inorddr_user","usernm","asc",sInDD);//입원주치의
- }
- function switch1_case2_cmb_staging_onitemchanged(obj:Combo, e:ItemChangeEventInfo)
- {
- dsf_makeValue(ds_main_cncrpatrgst_diaginfo, "stagcd", "string", ds_main_cncrpatrgst_diaginfo.getColumn(0, "staging"));
- }
- function switch1_case2_ipt_cureopendd_onchanged(obj:Calendar, e:ChangeEventInfo)
- {
- var diagdd = ds_main_cncrpatrgst_diaginfo.getColumn(0, "diagdd");
- if(!utlf_isNull(diagdd)){
- if(ds_main_cncrpatrgst_regstatus.getColumn(0, "cureopendd") < diagdd){
- sysf_messageBox("진단일자 보다 이후 날짜를 선택","E001");
- return;
- }
- }
- }
- function switch1_case2_cmb_ecog_onitemchanged(obj:Combo, e:ItemChangeEventInfo)
- {
- dsf_makeValue(ds_main_cncrpatrgst_rerntmetstaspart, "ecogcd", "string", ds_main_cncrpatrgst_rerntmetstaspart.getColumn(0, "ecog"));
- }
- function switch1_case2_button25_onclick(obj:Button, e:ClickEventInfo)
- {
- dsf_createDs("ds_hidden_parameters");
- dsf_makeValue(ds_hidden_parameters,"rcv_zipcdhead" ,"string","");
- dsf_makeValue(ds_hidden_parameters,"rcv_zipcdfoot_path" ,"string","");
- dsf_makeValue(ds_hidden_parameters,"rcv_seqno_path" ,"string","");
- dsf_makeValue(ds_hidden_parameters,"rcv_address_path" ,"string","");
- frmf_setParameter("rcv_zipcdhead_path" , ds_hidden_parameters.getColumn(0,"rcv_zipcdhead_path"));
- frmf_setParameter("rcv_zipcdfoot_path" , ds_hidden_parameters.getColumn(0,"rcv_zipcdfoot_path"));
- frmf_setParameter("rcv_seqno_path" , ds_hidden_parameters.getColumn(0,"rcv_seqno_path"));
- frmf_setParameter("rcv_address_path" , ds_hidden_parameters.getColumn(0,"rcv_address_path"));
- frmf_setParameter("condition", "address");
- frmf_setParameter("imemode", "hangul");
- frmf_modal("SPZBP00101","SPZBP00101",null,1,e.screenX-20,e.screenY-80,null,null,null,null,null,null,"M");
-
- var zipcdhead = ds_hidden_parameters.getColumn(0,"rcv_zipcdhead_path");
- var zipcdfoot = ds_hidden_parameters.getColumn(0,"rcv_zipcdfoot_path");
- var seqno = ds_hidden_parameters.getColumn(0,"rcv_seqno_path");
- var address = ds_hidden_parameters.getColumn(0,"rcv_address_path");
- dsf_makeValue(ds_main_pathumtrainfo_cncrpatinfo, "zipcode1" ,"string",zipcdhead);
- dsf_makeValue(ds_main_pathumtrainfo_cncrpatinfo, "zipcode2" ,"string",zipcdfoot);
- dsf_makeValue(ds_main_pathumtrainfo_cncrpatinfo, "addr" ,"string",address);
- //dsf_makeValue(ds_main_pathumtrainfo_relationinfo, "seqno" ,"string",seqno);
- }
- function switch1_case2_button5_onclick(obj:Button, e:ClickEventInfo)
- {
- fDelCncrInfo();
- }
- function switch1_case2_cmb_seer_onitemchanged(obj:Combo, e:ItemChangeEventInfo)
- {
- // 2014.04.18 의무기록실 임종현 요청 in situ, 해당없음의 경우 분화구 해당없음으로 변경
- if( ds_main_cncrpatrgst_diaginfo.getColumn(0, "seer") == "00" || ds_main_cncrpatrgst_diaginfo.getColumn(0, "seer") == " " ){
- ds_main_cncrpatrgst_diaginfo.setColumn(0, "difrntgrde", " " );
- dsf_makeValue(ds_main_cncrpatrgst_diaginfo, "difrntgrdecd", "string", ds_main_cncrpatrgst_diaginfo.getColumn(0, "difrntgrde"));
- }
- dsf_makeValue(ds_main_cncrpatrgst_diaginfo, "seercd", "string", ds_main_cncrpatrgst_diaginfo.getColumn(0, "seer"));
- }
- function switch1_case2_cmb_difrntgrde_onitemchanged(obj:Combo, e:ItemChangeEventInfo)
- {
- //fSetCode(ds_main_cncrpatrgst_diaginfo, "difrntgrdecd", "string", ds_main_cncrpatrgst_diaginfo.getColumn(0, "difrntgrde"));
- dsf_makeValue(ds_main_cncrpatrgst_diaginfo, "difrntgrdecd", "string", ds_main_cncrpatrgst_diaginfo.getColumn(0, "difrntgrde"));
- }
- function switch1_case2_cmb_lastdiagmthd_onitemchanged(obj:Combo, e:ItemChangeEventInfo)
- {
- obj.updateToDataset();
- if(ds_main_cncrpatrgst_diaginfo.getColumn(0, "lastdiagmthd") == "02"){
- switch1.case2.chk_clin.enable = true;
- } else {
- ds_main_cncrpatrgst_diaginfo.setColumn(0, "clinical", "");
- //grp_cycorgn.chk_cycdsordkind.setCheckAll(false);
- switch1.case2.chk_clin.enable = false;
- }
- }
- function switch1_case2_ipt_morphcd2_onkeydown(obj:Edit, e:KeyEventInfo)
- {
- if(event.keyCode == 13){
- var ordtype = model.getValue("/root/main/pathumtrainfo/cncrpatinfo/ordtype");
- var dschdd = model.getValue( "/root/main/pathumtrainfo/cncrpatinfo/dschdd");
- var orddd = model.getValue( "/root/main/pathumtrainfo/cncrpatinfo/orddd");
- var code = ipt_morphcd2.currentText;
- setInputNodeCurText();
- model.removenode("/root/send");
- model.makeNode("/root/send");
- model.makeValue("/root/send/indxcd", "null");
- model.makeValue("/root/send/indxflag", "0");
-
- // KNUH_20101207_박성호_start_의무기록 부서코드 가져오기
- var dutplcecd = model.getValue("/root/temp/dutplcecd/hardcd/hardcd");
- //model.makeValue("/root/send/deptcd", "3230000000");//의료정보팀 진단용어만
- model.makeValue("/root/send/deptcd", dutplcecd);//의료정보팀 진단용어만
- // KNUH_20101207_박성호_end
-
-
- model.makeValue("/root/send/deptflag", "Y");
- model.makeValue("/root/send/srchflag", "C");
- model.makeValue("/root/send/srchnm", code.toUpperCase());
- if(ordtype=="I"){
- model.makeValue("/root/send/stndd",dschdd);
- }else if(ordtype=="O"){
- model.makeValue("/root/send/stndd",orddd);
- }
- // 2009-05- 29 ICDO3로 변경
- //if(submit("TRMRT00209",false)){
- if(submit("TRMRT01701",false)){
- if(getNodesetCnt(model,"/root/main/diagcdinfo/kcd4m")==1){
- model.setValue("/root/main/cncrpatrgst/diaginfo/morphcd2" , model.getValue("/root/main/diagcdinfo/kcd4m/morphlgccd"));
- model.setValue("/root/main/cncrpatrgst/diaginfo/morphnm2" ,model.getValue("/root/main/diagcdinfo/kcd4m/kcd4mengnm"));
- model.setValue("/root/main/cncrpatrgst/diaginfo/morphinfo2" , model.getValue("/root/main/diagcdinfo/kcd4m/kcd4mseqno"));
- model.removeNodeset("/root/main/diagcdinfo/kcd4m");
- model.makeNode("/root/main/diagcdinfo/kcd4m");
- model.refresh();
- }else{
- fSrchTerm("morph2", code);
- }
- }
- }
- }
- function switch1_case2_ipt_difrntgrdecd_onkeydown(obj:Edit, e:KeyEventInfo)
- {
- if(e.keycode == 13){
- obj.updateToDataset();
- var code = ds_main_cncrpatrgst_diaginfo.getColumn(0, "difrntgrdecd");
- if(utlf_transNullToEmpty(code).length == 1){
- code = "0" + code;
- }
- ds_main_cncrpatrgst_diaginfo.setColumn(0, "difrntgrde", code);
- ds_main_cncrpatrgst_diaginfo.setColumn(0, "difrntgrdecd", code);
- }
- }
- function switch1_case2_ipt_seercd_onkeydown(obj:Edit, e:KeyEventInfo)
- {
- if(e.keycode == 13){
- obj.updateToDataset();
- var code = ds_main_cncrpatrgst_diaginfo.getColumn(0, "seercd");
- if(code.length == 1){
- code = "0" + code;
- }
- ds_main_cncrpatrgst_diaginfo.setColumn(0, "seer", code);
- ds_main_cncrpatrgst_diaginfo.setColumn(0, "seercd", code);
- }
- }
- function switch1_case2_ipt_tcd_onkeydown(obj:Edit, e:KeyEventInfo)
- {
- if(event.keyCode == 13){
- obj.updateToDataset();
- var code = ds_main_cncrpatrgst_diaginfo.getColumn(0, "tcd");
- if(utlf_transNullToEmpty(code).length == 1){
- code = "0" + code;
- }
- ds_main_cncrpatrgst_diaginfo.setColumn(0, "t", code);
- ds_main_cncrpatrgst_diaginfo.setColumn(0, "tcd", code);
-
- switch1.case2.ipt_ncd.setFocus();
- }
- }
- function switch1_case2_ipt_ncd_onkeydown(obj:Edit, e:KeyEventInfo)
- {
- if(event.keyCode == 13){
- obj.updateToDataset();
- var code = ds_main_cncrpatrgst_diaginfo.getColumn(0, "ncd");
- if(utlf_transNullToEmpty(code).length == 1){
- code = "0" + code;
- }
- ds_main_cncrpatrgst_diaginfo.setColumn(0, "n", code);
- ds_main_cncrpatrgst_diaginfo.setColumn(0, "ncd", code);
- switch1.case2.ipt_mcd.setFocus();
- }
- }
- function switch1_case2_ipt_mcd_onkeydown(obj:Edit, e:KeyEventInfo)
- {
- if(event.keyCode == 13){
- obj.updateToDataset();
- var code = ds_main_cncrpatrgst_diaginfo.getColumn(0, "mcd");
- if(utlf_transNullToEmpty(code).length == 1){
- code = "0" + code;
- }
- ds_main_cncrpatrgst_diaginfo.setColumn(0, "m", code);
- ds_main_cncrpatrgst_diaginfo.setColumn(0, "mcd", code);
- switch1.case2.ipt_stagcd.setFocus();
- }
- }
- function switch1_case2_ipt_stagcd_onkeydown(obj:Edit, e:KeyEventInfo)
- {
- if(e.keycode == 13){
- obj.updateToDataset();
- var code = ds_main_cncrpatrgst_diaginfo.getColumn(0, "stagcd");
- if(utlf_transNullToEmpty(code).length == 1){
- code = "0" + code;
- }
- ds_main_cncrpatrgst_diaginfo.setColumn(0, "staging", code);
- ds_main_cncrpatrgst_diaginfo.setColumn(0, "stagcd", code);
- switch1.case2.ipt_etcstagflagcd.setFocus();
- }
- }
- function switch1_case2_ipt_etcstagflagcd_onkeydown(obj:Edit, e:KeyEventInfo)
- {
- if(e.keycode == 13){
- obj.updateToDataset();
- var code = ds_main_cncrpatrgst_diaginfo.getColumn(0, "etcstagflagcd");
- if(utlf_transNullToEmpty(code).length == 1){
- code = "0" + code;
- }
- ds_main_cncrpatrgst_diaginfo.setColumn(0, "etcstagflagcd", code);
- ds_main_cncrpatrgst_diaginfo.setColumn(0, "etcstagflag", code);
- }
- }
- function switch1_case2_ipt_rerntmetstaspartcd1_onkeydown(obj:Edit, e:KeyEventInfo)
- {
- if(e.keycode == 13){
- if((ds_main_cncrpatrgst_diaginfo.getColumn(0, "seercd") == "00") || (ds_main_cncrpatrgst_diaginfo.getColumn(0, "seercd") == "01") || (ds_main_cncrpatrgst_diaginfo.getColumn(0, "seercd") == "02")){
- sysf_messageBox("SEER코드 0,1,2을 선택","E001");
- return;
- }
- obj.updateToDataset();
- var code = utlf_transNullToEmpty(ds_main_cncrpatrgst_rerntmetstaspart.getColumn(0, "rerntmetstaspartcd1"));
- code = code.toUpperCase();
- fSrchRernmspCd("1",code);
- }
- }
- function switch1_case2_ipt_rerntmetstaspartcd2_onkeydown(obj:Edit, e:KeyEventInfo)
- {
- if(e.keycode == 13){
- if((ds_main_cncrpatrgst_diaginfo.getColumn(0, "seercd") == "00") || (ds_main_cncrpatrgst_diaginfo.getColumn(0, "seercd") == "01") || (ds_main_cncrpatrgst_diaginfo.getColumn(0, "seercd") == "02")){
- sysf_messageBox("SEER코드 0,1,2을 선택","E001");
- return;
- }
- obj.updateToDataset();
- var code = utlf_transNullToEmpty(ds_main_cncrpatrgst_rerntmetstaspart.getColumn(0, "rerntmetstaspartcd2"));
- code = code.toUpperCase();
- fSrchRernmspCd("2",code);
- }
- }
- function switch1_case2_ipt_rerntmetstaspartcd3_onkeydown(obj:Edit, e:KeyEventInfo)
- {
- if(e.keycode == 13){
- if((ds_main_cncrpatrgst_diaginfo.getColumn(0, "seercd") == "00") || (ds_main_cncrpatrgst_diaginfo.getColumn(0, "seercd") == "01") || (ds_main_cncrpatrgst_diaginfo.getColumn(0, "seercd") == "02")){
- sysf_messageBox("SEER코드 0,1,2을 선택","E001");
- return;
- }
- obj.updateToDataset();
- var code = utlf_transNullToEmpty(ds_main_cncrpatrgst_rerntmetstaspart.getColumn(0, "rerntmetstaspartcd3"));
- code = code.toUpperCase();
- fSrchRernmspCd("3",code);
- }
- }
- function switch1_case2_ipt_rerntmetstaspartcd4_onkeydown(obj:Edit, e:KeyEventInfo)
- {
- if(e.keycode == 13){
- if((ds_main_cncrpatrgst_diaginfo.getColumn(0, "seercd") == "00") || (ds_main_cncrpatrgst_diaginfo.getColumn(0, "seercd") == "01") || (ds_main_cncrpatrgst_diaginfo.getColumn(0, "seercd") == "02")){
- sysf_messageBox("SEER코드 0,1,2을 선택","E001");
- return;
- }
- obj.updateToDataset();
- var code = utlf_transNullToEmpty(ds_main_cncrpatrgst_rerntmetstaspart.getColumn(0, "rerntmetstaspartcd4"));
- code = code.toUpperCase();
- fSrchRernmspCd("4",code);
- }
- }
- function switch1_case2_ipt_ecogcd_onkeydown(obj:Edit, e:KeyEventInfo)
- {
- if(e.keycode == 13){
- obj.updateToDataset();
- var code = utlf_transNullToEmpty(ds_main_cncrpatrgst_rerntmetstaspart.getColumn(0, "ecogcd"));
- if(code.length == 1){
- code = "0" + code;
- }
- ds_main_cncrpatrgst_rerntmetstaspart.setColumn(0, "ecog", code);
- ds_main_cncrpatrgst_rerntmetstaspart.setColumn(0, "ecogcd", code);
- }
- }
- function switch1_case2_ipt_regimencd1_onkeydown(obj:Edit, e:KeyEventInfo)
- {
- if(e.keycode == 13){
- obj.updateToDataset();
- var code = utlf_transNullToEmpty(ds_main_cncrpatrgst_rerntmetstaspart.getColumn(0, "regimencd1"));
- if(code.length == 1){
- code = "0" + code;
- }
- ds_main_cncrpatrgst_rerntmetstaspart.setColumn(0, "regimen1", code);
- ds_main_cncrpatrgst_rerntmetstaspart.setColumn(0, "regimencd1", code);
-
- fGetRegimenDet(code);
-
- ds_main_cncrpatrgst_rerntmetstaspart.setColumn(0, "regimencd2","");
- ds_main_cncrpatrgst_rerntmetstaspart.setColumn(0, "regimen2","");
- }
- }
- function switch1_case2_ipt_regimencd2_onkeydown(obj:Edit, e:KeyEventInfo)
- {
- if(e.keycode == 13){
- obj.updateToDataset();
- var code = utlf_transNullToEmpty(ds_main_cncrpatrgst_rerntmetstaspart.getColumn(0, "regimencd2"));
- if(code.length == 1){
- code = "0" + code;
- }
- ds_main_cncrpatrgst_rerntmetstaspart.setColumn(0, "regimen2", code);
- ds_main_cncrpatrgst_rerntmetstaspart.setColumn(0, "regimencd2", code);
- }
- }
- function switch1_case2_button1_onclick(obj:Button, e:ClickEventInfo)
- {
- var ordtype = ds_main_pathumtrainfo_cncrpatinfo.getColumn(0, "ordtype");
- fSaveData(ordtype);
- }
- function switch1_case2_button3_onclick(obj:Button, e:ClickEventInfo)
- {
- fReSetNode("A");
- }
- function switch1_case2_ipt_rrgstno2_onkillfocus(obj:Edit, e:KillFocusEventInfo)
- {
- fgetEpoch();
- }
- function switch1_case2_cmb_outorddd_onitemchanged(obj:Combo, e:ItemChangeEventInfo)
- {
- obj.updateToDataset();
- var indx = switch1.case2.cmb_outorddd.index;
-
- ds_main_pathumtrainfo_cncrpatinfo.setColumn(0, "orddd", ds_main_humaninfo_outpatinfo_patlist.getColumn(indx, "orddd"));
- //alert(indx);
- fPutPatInfo(indx, ds_main_humaninfo_outpatinfo_patlist, "O");
- }
- function switch1_case2_cmb_indd_onitemchanged(obj:Combo, e:ItemChangeEventInfo)
- {
- var indx = switch1.case2.cmb_indd.index;
- fPutPatInfo(indx, ds_main_humaninfo_inpatinfo_patlist, "I");
- }
- function switch1_case2_cmb_dschdd_onitemchanged(obj:Combo, e:ItemChangeEventInfo)
- {
- var indx = switch1.case2.cmb_dschdd.index;
- fPutPatInfo(indx, ds_main_humaninfo_inpatinfo_patlist, "I");
- }
- function switch1_case2_grd_prmypart_onkeydown(obj:Grid, e:KeyEventInfo)
- {
- var Col = switch1.case2.grd_prmypart.currentcol;
- if(Col == 0){
- //if(e.keycode == 13){
- var iRow = ds_main_cncrpatrgst_cureinfo_prmypart.rowposition;
- var code = utlf_transNullToEmpty(ds_main_cncrpatrgst_cureinfo_prmypart.getColumn(iRow, "prmypartcd"));
-
- if(code.length == 1){
- code = "0" + code;
- }
- ds_main_cncrpatrgst_cureinfo_prmypart.setColumn(iRow, "code", code);
- ds_main_cncrpatrgst_cureinfo_prmypart.setColumn(iRow, "prmypartcd", code);
- //}
- }else{
- return;
- }
- }
- function ds_main_cncrpatrgst_cureinfo_prmypart_oncolumnchanged(obj:Dataset, e:DSColChangeEventInfo)
- {
- if( switch1.case2.grd_prmypart.currentcol == switch1.case2.grd_prmypart.getBindCellIndex("body", "prmypartcd") ){
- if( ds_main_cncrpatrgst_cureinfo_prmypart.getColumn(ds_main_cncrpatrgst_cureinfo_prmypart.rowposition, "prmypartcd") == "11" ){
- ds_main_cncrpatrgst_cureinfo_prmypart.setColumn(ds_main_cncrpatrgst_cureinfo_prmypart.rowposition, "prmypartcuredd", "");
- }
- }
- }
- function switch1_case2_cmb_etcstagflag_onitemchanged(obj:Combo, e:ItemChangeEventInfo)
- {
- dsf_makeValue(ds_main_cncrpatrgst_diaginfo, "etcstagflagcd", "string", ds_main_cncrpatrgst_diaginfo.getColumn(0, "etcstagflag"));
- switch1.case2.cmb_etcstagflag.index = ds_main_common_M0395.rowcount - 1;
- }
- function switch1_case2_button19_onclick(obj:Button, e:ClickEventInfo)
- {
- var pid = ds_main_pathumtrainfo_cncrpatinfo.getColumn(0, "pid");
- if(utlf_isNull(pid)){
- sysf_messageBox("환자가 선택되지", "E007");
- return;
- }
- frmf_setParameter("SMMRD00400_pid", ds_main_pathumtrainfo_cncrpatinfo.getColumn(0, "pid"));
- frmf_setParameter("SMMRD00400_indd", ds_main_pathumtrainfo_cncrpatinfo.getColumn(0, "indd"));
- frmf_setParameter("SMMRD00400_cretno", ds_main_pathumtrainfo_cncrpatinfo.getColumn(0, "cretno"));
- frmf_setParameter("SMMRD00400_dschdd", ds_main_pathumtrainfo_cncrpatinfo.getColumn(0, "dschdd"));
- //open("SMMRD00700_질병및수술분류", 1, 0, 0, "", "", "", "left:0px; top:0px");
- frmf_open("SMMRD00700", "SMMRD00700", "", null, "1", "", "", null, null, null, null, null, "M");
- }
- function switch1_case2_button6_onclick(obj:Button, e:ClickEventInfo)
- {
- var pid = ds_main_pathumtrainfo_cncrpatinfo.getColumn(0, "pid")
- if(utlf_isNull(pid)){
- sysf_messageBox("환자번호를","C001");
- return;
- }
- frmf_setParameter("SMMRD00400_param_pid", ds_main_pathumtrainfo_cncrpatinfo.getColumn(0, "pid"));
- frmf_open("SMMRD00400", "SMMRD00400", "", null, "1", "", "", null, null, null, null, null, "M");
- }
- function switch1_case2_button7_onclick(obj:Button, e:ClickEventInfo)
- {
- var pid = ds_main_pathumtrainfo_cncrpatinfo.getColumn(0, "pid");
- if(utlf_isNull(pid)){
- sysf_messageBox("환자가", "E007");
- return;
- }
- frmf_setParameter("SMMRI01700_Param", "");
- var sPid = ds_main_pathumtrainfo_cncrpatinfo.getColumn(0, "pid");
- var sInDD = ds_main_pathumtrainfo_cncrpatinfo.getColumn(0, "indd");
- var sDschDD = ds_main_pathumtrainfo_cncrpatinfo.getColumn(0, "dschdd");
- var sDschDeptCD = ds_main_pathumtrainfo_cncrpatinfo.getColumn(0, "dschorddept");
- var sDschDrID = ds_main_pathumtrainfo_cncrpatinfo.getColumn(0, "dschorddr");
- var sParamMsg = "pid▦orddd▦dschdd▦orddeptcd▦orddrid▦ordtype▩"+
- sPid +"▦"+sInDD+"▦"+sDschDD+"▦"+sDschDeptCD+"▦"+sDschDrID+"▦I▩";
- frmf_setParameter("SMMRI01700_Param", sParamMsg);
- frmf_open("SMMRI01700", "SMMRI01700", null, false, 1, 0, 0, null, null, null, null, null, "M");
- }
- function switch1_case2_button8_onclick(obj:Button, e:ClickEventInfo)
- {
- var pid = ds_main_pathumtrainfo_cncrpatinfo.getColumn(0, "pid");
- if(utlf_isNull(pid)){
- sysf_messageBox("환자가 선택되지", "E007");
- return;
- }
- frmf_setParameter("SMMRI00400_param_pid", ds_main_pathumtrainfo_cncrpatinfo.getColumn(0, "pid"));
- frmf_setParameter("SMMRI00400_param_chosflag", "I");
- frmf_open("SMMRI00400", "SMMRI00400", "", null, "1", "", "", null, null, null, null, null, "M");
- }
- function switch1_case2_button11_onclick(obj:Button, e:ClickEventInfo)
- {
- ds_main_cncrpatrgst_cureinfo_chosbfcuremthd.addRow();
- }
- function switch1_case2_button9_onclick(obj:Button, e:ClickEventInfo)
- {
- if(ds_main_cncrpatrgst_cureinfo_chosbfcuremthd.rowcount > 0){
- ds_main_cncrpatrgst_cureinfo_chosbfcuremthd.deleteRow(ds_main_cncrpatrgst_cureinfo_chosbfcuremthd.rowposition);
- }
- }
- function switch1_case2_button10_onclick(obj:Button, e:ClickEventInfo)
- {
- if(ds_main_cncrpatrgst_cureinfo_prmypart.rowcount > 0){
- ds_main_cncrpatrgst_cureinfo_prmypart.deleteRow(ds_main_cncrpatrgst_cureinfo_prmypart.rowposition);
- }
- }
- function switch1_case2_button12_onclick(obj:Button, e:ClickEventInfo)
- {
- ds_main_cncrpatrgst_cureinfo_prmypart.addRow();
-
- }
- function switch1_case2_button13_onclick(obj:Button, e:ClickEventInfo)
- {
- if(ds_main_cncrpatrgst_cureinfo_metstaspart.rowcount > 0){
- ds_main_cncrpatrgst_cureinfo_metstaspart.deleteRow(ds_main_cncrpatrgst_cureinfo_metstaspart.rowposition);
- }
- }
- function switch1_case2_button14_onclick(obj:Button, e:ClickEventInfo)
- {
- ds_main_cncrpatrgst_cureinfo_metstaspart.addRow();
- }
- function switch1_case2_button17_onclick(obj:Button, e:ClickEventInfo)
- {
- var pid = ds_main_pathumtrainfo_cncrpatinfo.getColumn(0, "pid");
- if(utlf_isNull(pid)){
- sysf_messageBox("환자가 선택되지", "E007");
- return;
- }
-
- dsf_createDsRow("ds_temp", [{col:"srchpid", val:ds_main_pathumtrainfo_cncrpatinfo.getColumn(0,"pid")}
- ]);
- var objArg = new Object();
- objArg.arg_ds_send_singdata = ds_temp;
- frmf_modal("SMAER00800", "SMAER00800", objArg, "", "", "", "", "", "", "", "", "", "M");
-
- }
- function switch1_case2_button18_onclick(obj:Button, e:ClickEventInfo)
- {
- frmf_modal("SPMRD01000", "SPMRD01000", "", "", "", "", "", "", "", "", "", "", "M");
- }
- function switch1_case2_combo1_onitemchanged(obj:Combo, e:ItemChangeEventInfo)
- {
- var routevalue = ds_main_cncrpatrgst_diaginfo.getColumn(0, "diagroute");
- if(routevalue=="5"){
- switch1.case2.ipt_etcdiagroute.enable = true;;
- }else{
- ds_main_cncrpatrgst_diaginfo.setColumn(0, "etcdiagroute", "");
- switch1.case2.ipt_etcdiagroute.enable = false;
- }
- }
- function switch1_case3_input7_onkeydown(obj:Edit, e:KeyEventInfo)
- {
- if(e.keycode == 13){
- obj.updateToDataset();
- var code = ds_main_cncrpatref.getColumn(0, "icd10cd");
- code = code.toUpperCase();
- var resref = "icd10nm";
- var ref = "icd10cd";
- var nmref = "icd10nm";
- fStsSrchTerm("icd10", code, ref, resref, nmref);
- }
- }
- function switch1_case3_input42_onkeydown(obj:Edit, e:KeyEventInfo)
- {
- if(e.keycode == 13){
- obj.updateToDataset();
- switch1_case3_btn_patnmsrch_onclick();
- }
- }
- function switch1_case3_btn_patnmsrch_onclick(obj:Button, e:ClickEventInfo)
- {
- var pid = ds_main_cncrpatref.getColumn(0, "pnm");
- fPatSrch(pid, "2");
- }
- function switch1_case3_btn_rgstsrch_onclick(obj:Button, e:ClickEventInfo)
- {
- var pid = ds_main_cncrpatref.getColumn(0, "prgstno");
- fPatSrch(pid, "3");
- }
- function switch1_case3_btn_r_cncrlist_onclick(obj:Button, e:ClickEventInfo)
- {
- fSrchCncrRgstPat();
- }
- function switch1_case3_btn_pidsrch_onclick(obj:Button, e:ClickEventInfo)
- {
- var pid = ds_main_cncrpatref.getColumn(0, "pid");
- fPatSrch(pid, "1");
- }
- function switch1_case3_input43_onkeydown(obj:MaskEdit, e:KeyEventInfo)
- {
- if(e.keycode == 13){
- obj.updateToDataset();
- switch1_case3_btn_rgstsrch_onclick();
- }
- }
- function switch1_case3_cmb_srchdept_onitemchanged(obj:Combo, e:ItemChangeEventInfo)
- {
- fChngSrchCond(ds_main_cncrpatref_orddeptinfo.getColumn(0, "orddeptlist"), ds_hidden_cncrpatref_orddrinfo_drlist);
- }
- function switch1_case3_grd_cncrpatlist_oncelldblclick(obj:Grid, e:GridClickEventInfo)
- {
- var iRow = ds_main_cncrpatlist_list.rowposition;
- var cncr_histno = ds_main_cncrpatlist_list.getColumn(iRow, "cncr_histno");
- if(utlf_isNull(cncr_histno)){
- return;
- }
- if(e.row < 0 || e.col < 0)
- return;
- fChngCncrRgst(iRow);
- }
- function switch1_case3_btn_excel_onclick(obj:Button, e:ClickEventInfo)
- {
- if(switch1.tabindex == 2){
- grdf_exportExcel(switch1.case3.grd_cncrpatlist, switch1.case3.text + "_" + utlf_getCurrentDate(), "sheetname1" , true, "" , "" , true);
- }
- }
- function switch1_case3_radio3_onitemchanged(obj:Radio, e:ItemChangeEventInfo)
- {
- ds_main_common_com_dept.clearData();
-
- if(ds_main_cncrpatref.getColumn(0, "ioflag") == "O"){
- appf_getOutOrdDeptList(sysf_getUserInfo("dutplceinstcd"), "depthngnm", "asc", "", "", "ds_main_common_com_dept", false, "");// 외래진료과
- ds_hidden_cncrpatref_orddeptinfo_orddeptlist.copyData(ds_main_common_com_dept);
- } else if(ds_main_cncrpatref.getColumn(0, "ioflag") == "D"){
- appf_getInOrdDeptList(sysf_getUserInfo("dutplceinstcd"), "depthngnm", "asc", "", "", "ds_main_common_com_dept", false, "");//입원진료과(퇴원과)
- ds_hidden_cncrpatref_orddeptinfo_orddeptlist.copyData(ds_main_common_com_dept);
- } else {
- appf_getInOutOrdDeptList(sysf_getUserInfo("dutplceinstcd"), "depthngnm", "asc", null, null, "ds_main_common_com_dept", false, null); //전체 진료과
- ds_hidden_cncrpatref_orddeptinfo_orddeptlist.copyData(ds_main_common_com_dept);
- }
- frmf_addComboItem("switch1.case3.cmb_srchdept", "전체", "-", "above");
- }
- function switch1_case3_input3_onkeydown(obj:Edit, e:KeyEventInfo)
- {
- if(e.keycode == 13){
- obj.updateToDataset();
- var code = ds_main_cncrpatref.getColumn(0, "tophcd");
- code = code.toUpperCase();
- var resref = "tophseq";
- var ref = "tophcd";
- var nmref = "tophnm";
- fStsSrchTerm("toph", code, ref, resref, nmref);
- }
- }
- function switch1_case3_ipt_appmanid01_onkeydown(obj:Edit, e:KeyEventInfo)
- {
- if(e.keycode == 13){
- obj.updateToDataset();
- switch1_case3_btn_pidsrch_onclick();
- }
- }
- function switch1_case3_input6_onkeydown(obj:Edit, e:KeyEventInfo)
- {
- if(e.keycode == 13){
- obj.updateToDataset();
- var code = ds_main_cncrpatref.getColumn(0, "morphcd");
- code = code.toUpperCase();
- var resref = "morphseq";
- var ref = "morphcd";
- var nmref = "morphnm";
- fStsSrchTerm("morph1", code, ref, resref, nmref);
- }
- }
- function switch1_case3_input18_onkeydown(obj:Edit, e:KeyEventInfo)
- {
- if(e.keycode == 13){
- obj.updateToDataset();
- var code = ds_main_cncrpatref.getColumn(0, "morphcd");
- //var resref = "/root/hidden/cncrpatrgst/diaginfo/morphinfo1";
- //var ref = "/root/main/cncrpatref/morphcd";
- //fSrchTerm("morph1", code, ref, resref);
- fSrchTerm("morph1", code);// 변수 2개만 받아서 수정...
- }
- }
- function switch1_case2_grd_prmypart_oncloseup(obj:Grid, e:GridEditEventInfo)
- {
- obj.updateToDataset();
- var Col = switch1.case2.grd_prmypart.currentcol;
- if(Col == 1){
- var iRow = ds_main_cncrpatrgst_cureinfo_prmypart.rowposition;
- var code = utlf_transNullToEmpty(ds_main_cncrpatrgst_cureinfo_prmypart.getColumn(iRow, "prmypartcd"));
-
- if(code.length == 1){
- code = "0" + code;
- }
- ds_main_cncrpatrgst_cureinfo_prmypart.setColumn(iRow, "code", code);
- ds_main_cncrpatrgst_cureinfo_prmypart.setColumn(iRow, "prmypartcd", code);
- }else{
- return;
- }
- }
- function switch1_case2_grd_bfiocure_oncloseup(obj:Grid, e:GridEditEventInfo)
- {
- obj.updateToDataset();
- var Col = switch1.case2.grd_bfiocure.currentcol;
- if(Col == 2){
- var iRow = ds_main_cncrpatrgst_cureinfo_chosbfcuremthd.rowposition;
- var code = utlf_transNullToEmpty(ds_main_cncrpatrgst_cureinfo_chosbfcuremthd.getColumn(iRow, "chosbfcuremthd"));
- if(code.length == 1){
- code = "0" + code;
- }
- ds_main_cncrpatrgst_cureinfo_chosbfcuremthd.setColumn(iRow, "code", code);
- ds_main_cncrpatrgst_cureinfo_chosbfcuremthd.setColumn(iRow, "chosbfcuremthd", code);
- }
- }
- function switch1_case2_grd_metstaspart_oncloseup(obj:Grid, e:GridEditEventInfo)
- {
- obj.updateToDataset();
- var Col = switch1.case2.grd_metstaspart.currentcol;
- if(Col==1){
- var iRow = ds_main_cncrpatrgst_cureinfo_metstaspart.rowposition;
- var code = utlf_transNullToEmpty(ds_main_cncrpatrgst_cureinfo_metstaspart.getColumn(iRow, "metstaspartcd"));
- if(code.length == 1){
- code = "0" + code;
- }
- ds_main_cncrpatrgst_cureinfo_metstaspart.setColumn(iRow, "code", code);
- ds_main_cncrpatrgst_cureinfo_metstaspart.setColumn(iRow, "metstaspartcd", code);
- }else{
- return;
- }
- }
- function switch1_case2_ipt_morphcd1_oneditclick(obj:Edit, e:EditClickEventInfo)
- {
-
- }
- function Button00_onclick(obj:Button, e:ClickEventInfo)
- {
- var url = "https://naver.com";
-
- ActiveX00.Navigate2("about:blank");
- ActiveX00.Navigate2("javascript:window.open('" + url + "','popup','scrollbars=yes,resizable=yes,top=100px,left=100px,height=800px,width=1000px')");
- //ActiveX00.Navigate2("javascript:window.open('http://daum.net','MISHelp','width=1024,height=768,scrollbars=1')");
- }
- // function switch1_case2_ipt_diagdd_onkeydown(obj:Calendar, e:KeyEventInfo)
- // {
- // obj.updateToDataset();
- // var dschdd = ds_main_pathumtrainfo_cncrpatinfo.getColumn(0, "dschdd");
- // var dethdd = ds_main_pathumtrainfo_cncrpatinfo.getColumn(0, "dethdd");
- // var diagdd = ds_main_cncrpatrgst_diaginfo.getColumn(0, "diagdd");
- // var cureopendd = ds_main_cncrpatrgst_regstatus.getColumn(0, "cureopendd");
- // if(!utlf_isNull(dethdd)){
- // if(ds_main_cncrpatrgst_diaginfo.getColumn(0, "diagdd") > dethdd){
- // sysf_messageBox("사망일자를", "E003");
- // return;
- // }
- // var mCnt = utlf_getDateInterval(diagdd, dethdd,"mm") - (12 * utlf_getDateInterval(diagdd, dethdd,"yyyy"));
- // ds_main_cncrpatrgst_dethinfo_existterm.setColumn(0, "monthcnt", mCnt);
- // ds_main_cncrpatrgst_dethinfo_existterm.setColumn(0, "yearcnt", utlf_getDateInterval(diagdd, dethdd,"yyyy"));
- // }
- // if(!utlf_isNull(dschdd)){
- // if(ds_main_cncrpatrgst_diaginfo.getColumn(0, "diagdd") > dschdd){
- // sysf_messageBox("퇴원일자를", "E003");
- // return;
- // }
- // }
- // if(!utlf_isNull(cureopendd)){
- // if(ds_main_cncrpatrgst_diaginfo.getColumn(0, "diagdd") > cureopendd){
- // sysf_messageBox("치료개시일 보다 이후 날짜를 선택", "E001");
- // return;
- // }
- // }
- // }
- //
- //
- // function switch1_case2_ipt_dethdd_onkeydown(obj:Calendar, e:KeyEventInfo)
- // {
- // obj.updateToDataset();
- // var diagdd = ds_main_cncrpatrgst_diaginfo.getColumn(0, "diagdd");
- // var dethdd = ds_main_cncrpatrgst_dethinfo.getColumn(0, "dethdd");
- // if(!utlf_isNull(diagdd)){
- // if(ds_main_cncrpatrgst_dethinfo.getColumn(0, "dethdd") < diagdd){
- // sysf_messageBox("진단일자 보다 이전 날짜를 선택","E001");
- // return;
- // }
- // }else{
- // sysf_messageBox("진단일자가 입력되지 않았습니다.!!!");
- // return;
- // }
- //
- // var mCnt = utlf_getDateInterval(diagdd, dethdd,"mm") - (12 * utlf_getDateInterval(diagdd, dethdd,"yyyy"));
- // ds_main_cncrpatrgst_dethinfo_existterm.setColumn(0, "monthcnt", mCnt);
- // ds_main_cncrpatrgst_dethinfo_existterm.setColumn(0, "yearcnt", utlf_getDateInterval(diagdd, dethdd,"yyyy"));
- // }
- ]]></Script>
- </Form>
- </FDL>
|