123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126312731283129313031313132313331343135313631373138313931403141314231433144314531463147314831493150315131523153315431553156315731583159316031613162316331643165316631673168316931703171317231733174317531763177317831793180318131823183318431853186318731883189319031913192319331943195319631973198319932003201320232033204320532063207320832093210321132123213321432153216321732183219322032213222322332243225322632273228322932303231323232333234323532363237323832393240324132423243324432453246324732483249325032513252325332543255325632573258325932603261326232633264326532663267326832693270327132723273327432753276327732783279328032813282328332843285328632873288328932903291329232933294329532963297329832993300330133023303330433053306330733083309331033113312331333143315331633173318331933203321332233233324332533263327332833293330333133323333333433353336333733383339334033413342334333443345334633473348334933503351335233533354335533563357335833593360336133623363336433653366336733683369337033713372337333743375337633773378337933803381338233833384338533863387338833893390339133923393339433953396339733983399340034013402340334043405340634073408340934103411341234133414341534163417341834193420342134223423342434253426342734283429343034313432343334343435343634373438343934403441344234433444344534463447344834493450345134523453345434553456345734583459346034613462346334643465346634673468346934703471347234733474347534763477347834793480348134823483348434853486348734883489349034913492 |
- <?xml version="1.0" encoding="utf-8"?>
- <FDL version="1.5">
- <TypeDefinition url="..\..\..\default_typedef.xml"/>
- <Form id="SMAOE01000" position="absolute 0 0 1196 778" titletext="과거 검사결과 관리" oninit="SMAOE01000_oninit" onload="SMAOE01000_onload">
- <Layouts>
- <Layout>
- <Div id="group4" taborder="20" position="absolute 430 112 1195 193" style="border:1 solid black ;"/>
- <Static id="caption6" text="과거검사결과" class="tit_1" position="absolute 0 0 120 25"/>
- <Div id="group6" taborder="1" class="div_SA" position="absolute 0 25 1195 65" anchor="left top right">
- <Layouts>
- <Layout width="1195" height="40">
- <Button id="btn_search" taborder="1" text="조회" class="btn1" position="absolute 1126 9 1182 31" anchor="top right" onclick="group6_btn_search_onclick"/>
- <Shape id="line18" linetype="vertical" class="line_4" position="absolute 1115 9 1121 31" anchor="top right"/>
- <Button id="btn_search1" taborder="2" class="icon_search" position="absolute 194 13 210 29" onclick="group6_btn_search1_onclick" anchor="default"/>
- <Edit id="ipt_srchpid" taborder="3" class="input_search" position="absolute 110 11 190 30" autoselect="true" autoskip="true" onkeyup="group6_ipt_srchpid_onkeyup" anchor="default"/>
- <Static id="lbl_srchpid" text="등록번호 :" class="search_name" position="absolute 21 13 107 30" anchor="default"/>
- <Edit id="opt_srchhngnm" taborder="4" readonly="true" class="output" position="absolute 214 11 314 30" anchor="default"/>
- <Button id="button1" taborder="5" text="조회" class="btn1" visible="false" position="absolute 330 9 386 31" onclick="group6_button1_onclick" anchor="default"/>
- <Button id="button2" taborder="6" text="출력" class="btn6" position="absolute 1051 9 1109 31" anchor="top right" onclick="group6_button2_onclick"/>
- </Layout>
- </Layouts>
- </Div>
- <Shape id="line7" class="line_10" position="absolute 0 65 425 71"/>
- <Grid id="grd_examlist" taborder="2" binddataset="ds_main_examlist_item" useinputpanel="false" position="absolute 0 70 425 777" autoenter="select" autofittype="col" cellsizingtype="col" oncelldblclick="grd_examlist_oncelldblclick">
- <Formats>
- <Format id="default">
- <Columns>
- <Column size="21"/>
- <Column size="70"/>
- <Column size="70"/>
- <Column size="120"/>
- <Column size="120"/>
- <Column size="0"/>
- <Column size="0"/>
- <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="table_cd"/>
- <Cell col="6" text="pid"/>
- <Cell col="7" text="ccrno"/>
- <Cell col="8" text="obtime"/>
- <Cell col="9" text="uopno"/>
- <Cell col="10" text="title_name"/>
- <Cell col="11" text="earnclscd"/>
- <Cell col="12" text="dietconstyn"/>
- <Cell col="13"/>
- <Cell col="14"/>
- </Band>
- <Band id="body">
- <Cell celltype="head"/>
- <Cell col="1" displaytype="date" text="bind:orddd" calendardisplaynulltype="nulltext"/>
- <Cell col="2" displaytype="date" text="bind:rsltdd" calendardisplaynulltype="nulltext"/>
- <Cell col="3" style="align:left middle;padding:0 0 0 3;" text="bind:table_nm"/>
- <Cell col="4" style="align:left middle;padding:0 0 0 3;" text="bind:uodesc"/>
- <Cell col="5" text="bind:table_cd"/>
- <Cell col="6" text="bind:pid"/>
- <Cell col="7" text="bind:ccrno"/>
- <Cell col="8" text="bind:obtime"/>
- <Cell col="9" text="bind:uopno"/>
- <Cell col="10" text="bind:title_name"/>
- <Cell col="11" text="bind:earnclscd"/>
- <Cell col="12" text="bind:dietconstyn"/>
- <Cell col="13" text="bind:filedata"/>
- <Cell col="14" text="bind:filename"/>
- </Band>
- </Format>
- </Formats>
- </Grid>
- <Static id="caption1" text="등록번호 :" class="search_name" position="absolute 435 120 530 137"/>
- <Edit id="opt_pid" taborder="4" readonly="true" position="absolute 514 118 579 137"/>
- <Static id="caption2" text="성명 :" class="search_name" position="absolute 600 120 670 137"/>
- <Edit id="opt_name" taborder="5" readonly="true" position="absolute 654 118 714 137"/>
- <Static id="caption3" text="성별 :" class="search_name" position="absolute 735 120 800 137"/>
- <Edit id="opt_sex" taborder="6" readonly="true" position="absolute 789 118 812 137"/>
- <Static id="caption4" text="처방일자 :" class="search_name" position="absolute 1010 120 1105 137"/>
- <MaskEdit id="opt_obtime" taborder="7" readonly="true" mask="####-##-##" position="absolute 1089 118 1162 137" maskchar=" " type="string" trimtype="both" style="padding:0 0 0 0;align:center middle;"/>
- <Static id="caption5" text="입/외 :" class="search_name" position="absolute 910 120 980 137"/>
- <Edit id="opt_inoutmode" taborder="8" readonly="true" position="absolute 969 118 994 137"/>
- <Static id="caption7" text="나이 :" class="search_name" position="absolute 825 120 890 137"/>
- <Edit id="opt_age" taborder="9" readonly="true" position="absolute 876 118 899 137"/>
- <Static id="caption10" text="진료과:" class="search_name" position="absolute 540 145 610 162"/>
- <Edit id="opt_obdeptname" taborder="10" readonly="true" position="absolute 599 144 674 163"/>
- <Static id="caption8" text="진료의:" class="search_name" position="absolute 685 145 755 162"/>
- <Edit id="opt_obdrname" taborder="11" readonly="true" position="absolute 744 144 794 163"/>
- <Static id="caption9" text="결과일자:" class="search_name" position="absolute 805 145 886 162"/>
- <MaskEdit id="opt_rsltdd" taborder="12" readonly="true" mask="####-##-##" position="absolute 879 144 952 163" maskchar=" " type="string" trimtype="both" style="padding:0 0 0 0;align:center middle;"/>
- <Static id="caption11" text="판독의 :" class="search_name" position="absolute 964 144 1039 161"/>
- <Edit id="opt_pandrname" taborder="13" readonly="true" position="absolute 1028 143 1163 162"/>
- <Static id="caption12" text="처 방 명 :" class="search_name" position="absolute 435 170 530 187"/>
- <Edit id="opt_obpathnote" taborder="14" readonly="true" position="absolute 519 169 1163 188"/>
- <Static id="caption13" text="병동:" class="search_name" position="absolute 435 145 505 162"/>
- <Edit id="opt_room" taborder="15" readonly="true" position="absolute 479 144 529 163"/>
- <Tab id="switch1" taborder="16" tabindex="0" position="absolute 430 212 1195 778" class="tab_Normal">
- <Tabpages>
- <Tabpage id="case1">
- <Layouts>
- <Layout>
- <TextArea id="tar_sw1" taborder="0" position="absolute 0 0 765 552" acceptstab="true" autoselect="true" wordwrap="word"/>
- </Layout>
- </Layouts>
- </Tabpage>
- <Tabpage id="case2">
- <Layouts>
- <Layout>
- <Grid id="datagrid1" taborder="0" binddataset="ds_datagrid1" useinputpanel="false" position="absolute 0 0 765 543">
- <Formats>
- <Format id="default">
- <Columns>
- <Column size="47"/>
- <Column size="47"/>
- <Column size="47"/>
- <Column size="47"/>
- <Column size="47"/>
- <Column size="47"/>
- <Column size="47"/>
- <Column size="47"/>
- <Column size="47"/>
- <Column size="47"/>
- <Column size="47"/>
- <Column size="47"/>
- <Column size="47"/>
- <Column size="47"/>
- <Column size="47"/>
- </Columns>
- <Rows>
- <Row size="24" band="head"/>
- <Row size="24"/>
- </Rows>
- <Band id="head">
- <Cell/>
- <Cell col="1"/>
- <Cell col="2"/>
- <Cell col="3"/>
- <Cell col="4"/>
- <Cell col="5"/>
- <Cell col="6"/>
- <Cell col="7"/>
- <Cell col="8"/>
- <Cell col="9"/>
- <Cell col="10"/>
- <Cell col="11"/>
- <Cell col="12"/>
- <Cell col="13"/>
- <Cell col="14"/>
- </Band>
- <Band id="body">
- <Cell text="bind:col1"/>
- <Cell col="1" text="bind:col2"/>
- <Cell col="2" text="bind:col3"/>
- <Cell col="3" text="bind:col4"/>
- <Cell col="4" text="bind:col5"/>
- <Cell col="5" text="bind:col6"/>
- <Cell col="6" text="bind:col7"/>
- <Cell col="7" text="bind:col8"/>
- <Cell col="8" text="bind:col9"/>
- <Cell col="9" text="bind:col10"/>
- <Cell col="10" text="bind:col11"/>
- <Cell col="11" text="bind:col12"/>
- <Cell col="12" text="bind:col13"/>
- <Cell col="13" text="bind:col14"/>
- <Cell col="14" text="bind:col15"/>
- </Band>
- </Format>
- </Formats>
- </Grid>
- </Layout>
- </Layouts>
- </Tabpage>
- <Tabpage id="case3">
- <Layouts>
- <Layout>
- <Div id="iviewer1" taborder="0" position="absolute 0 0 765 532"/>
- </Layout>
- </Layouts>
- </Tabpage>
- </Tabpages>
- </Tab>
- <Static id="result_title" position="absolute 430 69 1195 108" style="color:#993300ff;align:center middle;font:돋움,14,bold;"/>
- <Shape id="line01" position="absolute 430 220 1195 226" anchor="left top right" style="strokepen:3 solid #07a693ff;background:transparent;"/>
- <Button id="btn_sw1" taborder="17" text="서 술 형" position="absolute 430 198 590 222" class="btn_tab_S" onclick="btn_sw1_onclick" visible="false"/>
- <Button id="btn_sw2" taborder="18" text="그 리 드 형" class="btn_tab" position="absolute 591 198 751 222" onclick="btn_sw2_onclick" visible="false"/>
- <Button id="btn_sw3" taborder="19" text="기 타" class="btn_tab" position="absolute 752 198 912 222" onclick="btn_sw3_onclick" visible="false"/>
- </Layout>
- </Layouts>
- <Objects>
- <Dataset id="ds_send" firefirstcount="0" firenextcount="0" useclientlayout="false" updatecontrol="true" enableevent="true" loadkeymode="keep" loadfiltermode="keep" reversesubsum="false">
- <ColumnInfo>
- <Column id="srchpid" type="STRING" size="256"/>
- <Column id="srchhngnm" type="STRING" size="256"/>
- <Column id="srchccrno" type="STRING" size="256"/>
- <Column id="srchobtime" type="STRING" size="256"/>
- <Column id="srchuopno" type="STRING" size="256"/>
- <Column id="srchtable_cd" type="STRING" size="256"/>
- <Column id="srchcode" type="STRING" size="256"/>
- <Column id="srchfilename" type="STRING" size="256"/>
- </ColumnInfo>
- <Rows>
- <Row>
- <Col id="srchpid"/>
- <Col id="srchhngnm"/>
- <Col id="srchccrno"/>
- <Col id="srchobtime"/>
- <Col id="srchuopno"/>
- <Col id="srchtable_cd"/>
- <Col id="srchcode"/>
- <Col id="srchfilename"/>
- </Row>
- </Rows>
- </Dataset>
- <Dataset id="ds_temp" firefirstcount="0" firenextcount="0" useclientlayout="false" updatecontrol="true" enableevent="true" loadkeymode="keep" loadfiltermode="keep" reversesubsum="false">
- <ColumnInfo>
- <Column id="okflag" type="STRING" size="256"/>
- </ColumnInfo>
- <Rows>
- <Row/>
- </Rows>
- </Dataset>
- <Dataset id="ds_temp_templst_item" 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="hngnm" type="STRING" size="256"/>
- </ColumnInfo>
- <Rows>
- <Row/>
- </Rows>
- </Dataset>
- <Dataset id="ds_main_examlist_item" firefirstcount="0" firenextcount="0" useclientlayout="false" updatecontrol="true" enableevent="true" loadkeymode="keep" loadfiltermode="keep" reversesubsum="false">
- <ColumnInfo>
- <Column id="orddd" type="STRING" size="256" sumtext="처방일자"/>
- <Column id="rsltdd" type="STRING" size="256" sumtext="결과일자"/>
- <Column id="table_nm" type="STRING" size="256" sumtext="결과유형"/>
- <Column id="uodesc" type="STRING" size="256" sumtext="검사명"/>
- <Column id="table_cd" type="STRING" size="256" sumtext="테이블코드"/>
- <Column id="pid" type="STRING" size="256" sumtext="환자번호"/>
- <Column id="ccrno" type="STRING" size="256" sumtext="NO"/>
- <Column id="obtime" type="STRING" size="256" sumtext="처방일시"/>
- <Column id="uopno" type="STRING" size="256" sumtext="검사NO"/>
- <Column id="title_name" type="STRING" size="256" sumtext="검사이름"/>
- <Column id="filedata" type="BINARY" size="256" sumtext="BINARY결과"/>
- <Column id="filename" type="STRING" size="256" sumtext="파일이름"/>
- </ColumnInfo>
- </Dataset>
- <Dataset id="ds_main_patinfo_item" firefirstcount="0" firenextcount="0" useclientlayout="false" updatecontrol="true" enableevent="true" loadkeymode="keep" loadfiltermode="keep" reversesubsum="false">
- <ColumnInfo>
- <Column id="obdrname" type="STRING" size="256"/>
- <Column id="obdeptname" type="STRING" size="256"/>
- <Column id="inoutmode" type="STRING" size="256"/>
- <Column id="age" type="STRING" size="256"/>
- <Column id="psex" type="STRING" size="256"/>
- <Column id="pname" type="STRING" size="256"/>
- <Column id="pid" type="STRING" size="256"/>
- <Column id="pandrname" type="STRING" size="256"/>
- <Column id="wardname" type="STRING" size="256"/>
- <Column id="result_title" type="STRING" size="256"/>
- <Column id="rsltdd" type="STRING" size="256"/>
- <Column id="obtime" type="STRING" size="256"/>
- <Column id="result_text" type="STRING" size="256"/>
- <Column id="uodesc" type="STRING" size="256"/>
- </ColumnInfo>
- <Rows>
- <Row>
- <Col id="obdrname"/>
- <Col id="obdeptname"/>
- <Col id="inoutmode"/>
- <Col id="age"/>
- <Col id="psex"/>
- <Col id="pname"/>
- <Col id="pid"/>
- <Col id="pandrname"/>
- <Col id="wardname"/>
- <Col id="result_title"/>
- <Col id="rsltdd"/>
- <Col id="obtime"/>
- <Col id="result_text"/>
- <Col id="uodesc"/>
- </Row>
- </Rows>
- </Dataset>
- <Dataset id="ds_main_srchlist_item" firefirstcount="0" firenextcount="0" useclientlayout="false" updatecontrol="true" enableevent="true" loadkeymode="keep" loadfiltermode="keep" reversesubsum="false">
- <ColumnInfo>
- <Column id="pid" type="STRING" size="256" sumtext="등록정보"/>
- <Column id="hngnm" type="STRING" size="256" sumtext="성명"/>
- <Column id="rrgstno" type="STRING" size="256" sumtext="주민번호"/>
- <Column id="telno" type="STRING" size="256" sumtext="전화번호"/>
- <Column id="sex" type="STRING" size="256" sumtext="성별"/>
- <Column id="age" type="STRING" size="256" sumtext="나이"/>
- </ColumnInfo>
- <Rows>
- <Row/>
- </Rows>
- </Dataset>
- <Dataset id="ds_hidden_filelist" firefirstcount="0" firenextcount="0" useclientlayout="false" updatecontrol="true" enableevent="true" loadkeymode="keep" loadfiltermode="keep" reversesubsum="false">
- <ColumnInfo>
- <Column id="attfilecnts" type="STRING" size="256" sumtext="첨부파일내용"/>
- </ColumnInfo>
- </Dataset>
- <Dataset id="ds_main_traoe_01011_item" firefirstcount="0" firenextcount="0" useclientlayout="false" updatecontrol="true" enableevent="true" loadkeymode="keep" loadfiltermode="keep" reversesubsum="false">
- <ColumnInfo>
- <Column id="pid" type="STRING" size="256" sumtext="차트번호"/>
- <Column id="psex" type="STRING" size="256" sumtext="성별"/>
- <Column id="pname" type="STRING" size="256" sumtext="환자명"/>
- <Column id="age" type="STRING" size="256" sumtext="나이"/>
- <Column id="obdrname" type="STRING" size="256" sumtext="의뢰의사"/>
- <Column id="obdeptname" type="STRING" size="256" sumtext="진료과"/>
- <Column id="inoutmode" type="STRING" size="256" sumtext="외/입"/>
- <Column id="pandrname" type="STRING" size="256" sumtext="판독의사"/>
- <Column id="obpathnote" type="STRING" size="256" sumtext="임상소견및 의뢰사유"/>
- <Column id="rlongresult" type="STRING" size="256" sumtext="소견"/>
- <Column id="clongresult" type="STRING" size="256" sumtext="결론"/>
- </ColumnInfo>
- </Dataset>
- <Dataset id="ds_main_traoe_01021_item" firefirstcount="0" firenextcount="0" useclientlayout="false" updatecontrol="true" enableevent="true" loadkeymode="keep" loadfiltermode="keep" reversesubsum="false">
- <ColumnInfo>
- <Column id="pid" type="STRING" size="256" sumtext="진찰권번호"/>
- <Column id="pname" type="STRING" size="256" sumtext="환자명"/>
- <Column id="psex" type="STRING" size="256" sumtext="성별"/>
- <Column id="age" type="STRING" size="256" sumtext="나이"/>
- <Column id="deptname" type="STRING" size="256" sumtext="의뢰과"/>
- <Column id="wardname" type="STRING" size="256" sumtext="병동"/>
- <Column id="drname" type="STRING" size="256" sumtext="의뢰의사"/>
- <Column id="obtime" type="STRING" size="256" sumtext="처방일자"/>
- <Column id="proctime" type="STRING" size="256" sumtext="촬영일자"/>
- <Column id="pantime" type="STRING" size="256" sumtext="판독일자"/>
- <Column id="scale" type="STRING" size="256" sumtext="사용핵종"/>
- <Column id="camera" type="STRING" size="256" sumtext="검사카메라"/>
- <Column id="edesc" type="STRING" size="256" sumtext="검사종류"/>
- <Column id="result1" type="STRING" size="256" sumtext="findings"/>
- <Column id="result2" type="STRING" size="256" sumtext="conclusions"/>
- <Column id="pandrname" type="STRING" size="256" sumtext="판단의"/>
- </ColumnInfo>
- </Dataset>
- <Dataset id="ds_main_traoe_01031_item" firefirstcount="0" firenextcount="0" useclientlayout="false" updatecontrol="true" enableevent="true" loadkeymode="keep" loadfiltermode="keep" reversesubsum="false"/>
- <Dataset id="ds_main_traoe_01041_item" firefirstcount="0" firenextcount="0" useclientlayout="false" updatecontrol="true" enableevent="true" loadkeymode="keep" loadfiltermode="keep" reversesubsum="false">
- <ColumnInfo>
- <Column id="eegdate" type="STRING" size="256" sumtext="등록일자"/>
- <Column id="eeg_no" type="STRING" size="256" sumtext="등록번호"/>
- <Column id="oldeeg_no" type="STRING" size="256" sumtext=""/>
- <Column id="oldeegdate" type="STRING" size="256" sumtext="이전등록일자"/>
- <Column id="pid" type="STRING" size="256" sumtext="환자번호"/>
- <Column id="pname" type="STRING" size="256" sumtext="환자명"/>
- <Column id="age" type="STRING" size="256" sumtext="나이"/>
- <Column id="sex" type="STRING" size="256" sumtext="성별"/>
- <Column id="dept" type="STRING" size="256" sumtext="진료과"/>
- <Column id="ward" type="STRING" size="256" sumtext="병동"/>
- <Column id="imp" type="STRING" size="256" sumtext="상병"/>
- <Column id="impresult" type="STRING" size="256" sumtext="결과"/>
- <Column id="summary" type="STRING" size="256" sumtext=""/>
- <Column id="recommendation" type="STRING" size="256" sumtext=""/>
- <Column id="drname" type="STRING" size="256" sumtext="의사성명"/>
- </ColumnInfo>
- </Dataset>
- <Dataset id="ds_main_traoe_01051_item" firefirstcount="0" firenextcount="0" useclientlayout="false" updatecontrol="true" enableevent="true" loadkeymode="keep" loadfiltermode="keep" reversesubsum="false">
- <ColumnInfo>
- <Column id="eeg_no" type="STRING" size="256" sumtext="등록번호"/>
- <Column id="oldeegno" type="STRING" size="256" sumtext="이전등록번호"/>
- <Column id="eegdate" type="STRING" size="256" sumtext="등록일자"/>
- <Column id="pid" type="STRING" size="256" sumtext="환자번호"/>
- <Column id="pname" type="STRING" size="256" sumtext="환자성명"/>
- <Column id="sex" type="STRING" size="256" sumtext="성별"/>
- <Column id="age" type="STRING" size="256" sumtext="나이"/>
- <Column id="dept" type="STRING" size="256" sumtext="진료과"/>
- <Column id="ward" type="STRING" size="256" sumtext="병동"/>
- <Column id="electrodes" type="STRING" size="256" sumtext="전극수"/>
- <Column id="impresult" type="STRING" size="256" sumtext="결과"/>
- <Column id="drname" type="STRING" size="256" sumtext="의사성명"/>
- </ColumnInfo>
- </Dataset>
- <Dataset id="ds_main_traoe_01061_item" firefirstcount="0" firenextcount="0" useclientlayout="false" updatecontrol="true" enableevent="true" loadkeymode="keep" loadfiltermode="keep" reversesubsum="false">
- <ColumnInfo>
- <Column id="pid" type="STRING" size="256" sumtext="환자번호"/>
- <Column id="pname" type="STRING" size="256" sumtext="성명"/>
- <Column id="age" type="STRING" size="256" sumtext="나이"/>
- <Column id="psex" type="STRING" size="256" sumtext="성별"/>
- <Column id="pnrn" type="STRING" size="256" sumtext="주민번호"/>
- <Column id="phphone" type="STRING" size="256" sumtext="전화번호"/>
- <Column id="handphone" type="STRING" size="256" sumtext="휴대전화"/>
- <Column id="uopno" type="STRING" size="256" sumtext="처방일련번호"/>
- <Column id="deptname" type="STRING" size="256" sumtext="진료과명"/>
- <Column id="drname" type="STRING" size="256" sumtext="의사성명"/>
- <Column id="clinicalhx" type="STRING" size="256" sumtext="임상히스토리"/>
- <Column id="diag_1" type="STRING" size="256" sumtext="상병1"/>
- <Column id="diag_2" type="STRING" size="256" sumtext="상병2"/>
- <Column id="diag_3" type="STRING" size="256" sumtext="상병"/>
- <Column id="diag_4" type="STRING" size="256" sumtext="상병"/>
- <Column id="interpretation" type="STRING" size="256" sumtext="interpretation"/>
- <Column id="conclusion" type="STRING" size="256" sumtext="결론"/>
- </ColumnInfo>
- </Dataset>
- <Dataset id="ds_main_traoe_01071_item" firefirstcount="0" firenextcount="0" useclientlayout="false" updatecontrol="true" enableevent="true" loadkeymode="keep" loadfiltermode="keep" reversesubsum="false">
- <ColumnInfo>
- <Column id="pid" type="STRING" size="256" sumtext="환자번호"/>
- <Column id="uopno" type="STRING" size="256" sumtext="처방일련번호"/>
- <Column id="deptname" type="STRING" size="256" sumtext="진료과명"/>
- <Column id="drname" type="STRING" size="256" sumtext="의사성명"/>
- <Column id="name" type="STRING" size="256" sumtext="성명"/>
- <Column id="age" type="STRING" size="256" sumtext="나이"/>
- <Column id="sex" type="STRING" size="256" sumtext="성별"/>
- <Column id="tel" type="STRING" size="256" sumtext="전화번호"/>
- <Column id="pantime" type="STRING" size="256" sumtext="판독일자"/>
- <Column id="panname" type="STRING" size="256" sumtext="판독의"/>
- <Column id="lcomment" type="STRING" size="256" sumtext=""/>
- </ColumnInfo>
- </Dataset>
- <Dataset id="ds_tmp" firefirstcount="0" firenextcount="0" useclientlayout="false" updatecontrol="true" enableevent="true" loadkeymode="keep" loadfiltermode="keep" reversesubsum="false"/>
- <Dataset id="ds_main_traoe_01081_item" firefirstcount="0" firenextcount="0" useclientlayout="false" updatecontrol="true" enableevent="true" loadkeymode="keep" loadfiltermode="keep" reversesubsum="false"/>
- <Dataset id="ds_main_traoe_01091_item" firefirstcount="0" firenextcount="0" useclientlayout="false" updatecontrol="true" enableevent="true" loadkeymode="keep" loadfiltermode="keep" reversesubsum="false">
- <ColumnInfo>
- <Column id="pname" type="STRING" size="256" sumtext="환자이름"/>
- <Column id="psex" type="STRING" size="256" sumtext="성별"/>
- <Column id="page" type="STRING" size="256" sumtext="나이"/>
- <Column id="pid" type="STRING" size="256" sumtext="환자번호"/>
- <Column id="inoutmode" type="STRING" size="256" sumtext="입/외"/>
- <Column id="examdate" type="STRING" size="256" sumtext="Study date"/>
- <Column id="deptid" type="STRING" size="256" sumtext="진료과"/>
- <Column id="dia" type="STRING" size="256" sumtext="Diagnosis"/>
- <Column id="dmr" type="STRING" size="256" sumtext="Transtermporal(TCD->Rt)"/>
- <Column id="dml" type="STRING" size="256" sumtext="Transtermporal(TCD->Lt)"/>
- <Column id="dmb" type="STRING" size="256" sumtext="Transtermporal(TCD->Both)"/>
- <Column id="smr" type="STRING" size="256" sumtext="Transtermporal(TCCS->Rt)"/>
- <Column id="sml" type="STRING" size="256" sumtext="Transtermporal(TCCS->Lt)"/>
- <Column id="smb" type="STRING" size="256" sumtext="Transtermporal(TCCS->Both)"/>
- <Column id="dbr" type="STRING" size="256" sumtext="Transobital(TCD->Rt)"/>
- <Column id="dbl" type="STRING" size="256" sumtext="Transobital(TCD->Lt)"/>
- <Column id="dbb" type="STRING" size="256" sumtext="Transobital(TCD->Both)"/>
- <Column id="sbr" type="STRING" size="256" sumtext="Transobital(TCCS->Rt)"/>
- <Column id="sbl" type="STRING" size="256" sumtext="Transobital(TCCS->Lt)"/>
- <Column id="sbb" type="STRING" size="256" sumtext="Transobital(TCCS->Both)"/>
- <Column id="ds" type="STRING" size="256" sumtext="Suboccipital(TCD)"/>
- <Column id="ss" type="STRING" size="256" sumtext="Suboccipital(TCCS)"/>
- </ColumnInfo>
- </Dataset>
- <Dataset id="ds_main_traoe_01101_item" firefirstcount="0" firenextcount="0" useclientlayout="false" updatecontrol="true" enableevent="true" loadkeymode="keep" loadfiltermode="keep" reversesubsum="false">
- <ColumnInfo>
- <Column id="tno" type="STRING" size="256" sumtext="검사번호"/>
- <Column id="pid" type="STRING" size="256" sumtext="환자번호"/>
- <Column id="pname" type="STRING" size="256" sumtext="환자이름"/>
- <Column id="sex" type="STRING" size="256" sumtext="성별"/>
- <Column id="age" type="STRING" size="256" sumtext="나이"/>
- <Column id="addr" type="STRING" size="256" sumtext="주소"/>
- <Column id="phone" type="STRING" size="256" sumtext="전화번호"/>
- <Column id="deptname" type="STRING" size="256" sumtext="의뢰과"/>
- <Column id="drname" type="STRING" size="256" sumtext="의뢰의사"/>
- <Column id="wardname" type="STRING" size="256" sumtext="병동명"/>
- <Column id="mdate" type="STRING" size="256" sumtext="검사일"/>
- <Column id="symp" type="STRING" size="256" sumtext="술전 진단명"/>
- <Column id="disease" type="STRING" size="256" sumtext="주증상"/>
- <Column id="obtime" type="STRING" size="256" sumtext="처방시간"/>
- <Column id="inser" type="STRING" size="256" sumtext="Level of insertion"/>
- <Column id="endo" type="STRING" size="256" sumtext="Model of endoscope"/>
- <Column id="tx1" type="STRING" size="256" sumtext="Esophagus"/>
- <Column id="tx2" type="STRING" size="256" sumtext="Stomach"/>
- <Column id="tx3" type="STRING" size="256" sumtext="Duodenum"/>
- <Column id="sedation" type="STRING" size="256" sumtext="Sedation"/>
- <Column id="imp" type="STRING" size="256" sumtext="Impression"/>
- <Column id="reflux" type="STRING" size="256" sumtext="Reflux esophagitis"/>
- <Column id="barrett" type="STRING" size="256" sumtext="Barrett's eshphagus"/>
- <Column id="activeuker" type="STRING" size="256" sumtext="Active or healing ucler"/>
- <Column id="gastrifis" type="STRING" size="256" sumtext="Gastritis or duodentis"/>
- <Column id="normal" type="STRING" size="256" sumtext="기타"/>
- <Column id="recom" type="STRING" size="256" sumtext="Recommendation"/>
- <Column id="pro" type="STRING" size="256" sumtext="Procedure"/>
- <Column id="urname" type="STRING" size="256" sumtext="시술자"/>
- </ColumnInfo>
- </Dataset>
- <Dataset id="ds_main_traoe_01102_item" firefirstcount="0" firenextcount="0" useclientlayout="false" updatecontrol="true" enableevent="true" loadkeymode="keep" loadfiltermode="keep" reversesubsum="false">
- <ColumnInfo>
- <Column id="tno" type="STRING" size="256" sumtext="검사번호"/>
- <Column id="pid" type="STRING" size="256" sumtext="환자번호"/>
- <Column id="pname" type="STRING" size="256" sumtext="환자성명"/>
- <Column id="sex" type="STRING" size="256" sumtext="성별"/>
- <Column id="age" type="STRING" size="256" sumtext="나이"/>
- <Column id="addr" type="STRING" size="256" sumtext="주소"/>
- <Column id="phone" type="STRING" size="256" sumtext="전화"/>
- <Column id="deptname" type="STRING" size="256" sumtext="의뢰과"/>
- <Column id="drname" type="STRING" size="256" sumtext="의뢰의사"/>
- <Column id="wardname" type="STRING" size="256" sumtext="병동명"/>
- <Column id="mdate" type="STRING" size="256" sumtext="검사일"/>
- <Column id="symp" type="STRING" size="256" sumtext="술전 진단명"/>
- <Column id="disease" type="STRING" size="256" sumtext="주증상"/>
- <Column id="obtime" type="STRING" size="256" sumtext="처방시간"/>
- <Column id="inser" type="STRING" size="256" sumtext="Level of insertion"/>
- <Column id="endo" type="STRING" size="256" sumtext="Model of endoscope"/>
- <Column id="lumen" type="STRING" size="256" sumtext="Lumen"/>
- <Column id="cont" type="STRING" size="256" sumtext="Content"/>
- <Column id="ileum" type="STRING" size="256" sumtext="Terminal ileum"/>
- <Column id="colon" type="STRING" size="256" sumtext="Colom"/>
- <Column id="anorec" type="STRING" size="256" sumtext="Anorectum"/>
- <Column id="sedation" type="STRING" size="256" sumtext="Sedation"/>
- <Column id="imp" type="STRING" size="256" sumtext="Impression"/>
- <Column id="pro" type="STRING" size="256" sumtext="Procedure"/>
- <Column id="recom" type="STRING" size="256" sumtext="Recommendation"/>
- <Column id="urname" type="STRING" size="256" sumtext="시술자"/>
- </ColumnInfo>
- </Dataset>
- <Dataset id="ds_main_traoe_01103_item" firefirstcount="0" firenextcount="0" useclientlayout="false" updatecontrol="true" enableevent="true" loadkeymode="keep" loadfiltermode="keep" reversesubsum="false">
- <ColumnInfo>
- <Column id="tno" type="STRING" size="256" sumtext="검사번호"/>
- <Column id="pid" type="STRING" size="256" sumtext="환자번호"/>
- <Column id="pname" type="STRING" size="256" sumtext="환자성명"/>
- <Column id="sex" type="STRING" size="256" sumtext="성별"/>
- <Column id="age" type="STRING" size="256" sumtext="나이"/>
- <Column id="addr" type="STRING" size="256" sumtext="주소"/>
- <Column id="phone" type="STRING" size="256" sumtext="전화"/>
- <Column id="deptname" type="STRING" size="256" sumtext="의뢰과"/>
- <Column id="drname" type="STRING" size="256" sumtext="의뢰의사"/>
- <Column id="wardname" type="STRING" size="256" sumtext="병동명"/>
- <Column id="mdate" type="STRING" size="256" sumtext="검사일"/>
- <Column id="symp" type="STRING" size="256" sumtext="술전 진단명"/>
- <Column id="disease" type="STRING" size="256" sumtext="주증상"/>
- <Column id="obtime" type="STRING" size="256" sumtext="처방시간"/>
- <Column id="inser" type="STRING" size="256" sumtext="Level of insertion"/>
- <Column id="endo" type="STRING" size="256" sumtext="Model of endoscope"/>
- <Column id="esophagus" type="STRING" size="256" sumtext="Esophagus"/>
- <Column id="stomach" type="STRING" size="256" sumtext="Stomach"/>
- <Column id="pancreato" type="STRING" size="256" sumtext="Pancresto-Biliary"/>
- <Column id="sedation" type="STRING" size="256" sumtext="sedation"/>
- <Column id="imp" type="STRING" size="256" sumtext="Impression"/>
- <Column id="pro" type="STRING" size="256" sumtext="Procedure"/>
- <Column id="recom" type="STRING" size="256" sumtext="Recommendation"/>
- <Column id="urname" type="STRING" size="256" sumtext="시술자"/>
- </ColumnInfo>
- </Dataset>
- <Dataset id="ds_main_traoe_01104_item" firefirstcount="0" firenextcount="0" useclientlayout="false" updatecontrol="true" enableevent="true" loadkeymode="keep" loadfiltermode="keep" reversesubsum="false">
- <ColumnInfo>
- <Column id="tno" type="STRING" size="256" sumtext="검사번호"/>
- <Column id="pid" type="STRING" size="256" sumtext="환자번호"/>
- <Column id="pname" type="STRING" size="256" sumtext="환자성명"/>
- <Column id="sex" type="STRING" size="256" sumtext="성별"/>
- <Column id="age" type="STRING" size="256" sumtext="나이"/>
- <Column id="addr" type="STRING" size="256" sumtext="주소"/>
- <Column id="phone" type="STRING" size="256" sumtext="전화"/>
- <Column id="deptname" type="STRING" size="256" sumtext="의뢰과"/>
- <Column id="drname" type="STRING" size="256" sumtext="의뢰의사"/>
- <Column id="wardname" type="STRING" size="256" sumtext="병동명"/>
- <Column id="mdate" type="STRING" size="256" sumtext="검사일"/>
- <Column id="symp" type="STRING" size="256" sumtext="술전 진단명"/>
- <Column id="disease" type="STRING" size="256" sumtext="주증상"/>
- <Column id="modedesc" type="STRING" size="256" sumtext="Mode"/>
- <Column id="rfacnt" type="STRING" size="256" sumtext="PFA시술이 몇번째 인가?"/>
- <Column id="prerfa" type="STRING" size="256" sumtext="Pre RFA TACE?"/>
- <Column id="ascitesflag" type="STRING" size="256" sumtext="Ascites?"/>
- <Column id="ascites" type="STRING" size="256" sumtext="Ascites?"/>
- <Column id="pleuralflag" type="STRING" size="256" sumtext="Pleural effusion"/>
- <Column id="pleural" type="STRING" size="256" sumtext="Pleural effusion"/>
- <Column id="intra_abd" type="STRING" size="256" sumtext="IP Saline"/>
- <Column id="intra_abd_y" type="STRING" size="256" sumtext="IP Saline"/>
- <Column id="bbiopsyflag" type="STRING" size="256" sumtext="Background biopsy"/>
- <Column id="nodulecnt" type="STRING" size="256" sumtext="Number fo Nodule?"/>
- <Column id="conclusion" type="STRING" size="256" sumtext="conclusions"/>
- <Column id="urname" type="STRING" size="256" sumtext="시술자"/>
- </ColumnInfo>
- </Dataset>
- <Dataset id="ds_main_traoe_01104_item2" firefirstcount="0" firenextcount="0" useclientlayout="false" updatecontrol="true" enableevent="true" loadkeymode="keep" loadfiltermode="keep" reversesubsum="false">
- <ColumnInfo>
- <Column id="cno" type="STRING" size="256" sumtext=""/>
- <Column id="site" type="STRING" size="256" sumtext=""/>
- <Column id="size1" type="STRING" size="256" sumtext=""/>
- <Column id="surface" type="STRING" size="256" sumtext=""/>
- <Column id="biopsy" type="STRING" size="256" sumtext=""/>
- <Column id="abl" type="STRING" size="256" sumtext=""/>
- <Column id="intra_les" type="STRING" size="256" sumtext=""/>
- <Column id="devicename" type="STRING" size="256" sumtext=""/>
- <Column id="tissue" type="STRING" size="256" sumtext=""/>
- <Column id="vessel" type="STRING" size="256" sumtext=""/>
- </ColumnInfo>
- </Dataset>
- <Dataset id="ds_main_traoe_01105_item" firefirstcount="0" firenextcount="0" useclientlayout="false" updatecontrol="true" enableevent="true" loadkeymode="keep" loadfiltermode="keep" reversesubsum="false">
- <ColumnInfo>
- <Column id="tno" type="STRING" size="256" sumtext="검사번호"/>
- <Column id="pid" type="STRING" size="256" sumtext="환자번호"/>
- <Column id="pname" type="STRING" size="256" sumtext="환자성명"/>
- <Column id="sex" type="STRING" size="256" sumtext="성별"/>
- <Column id="age" type="STRING" size="256" sumtext="나이"/>
- <Column id="addr" type="STRING" size="256" sumtext="주소"/>
- <Column id="phone" type="STRING" size="256" sumtext="전화"/>
- <Column id="deptname" type="STRING" size="256" sumtext="의뢰과"/>
- <Column id="drname" type="STRING" size="256" sumtext="의뢰의사"/>
- <Column id="wardname" type="STRING" size="256" sumtext="병동명"/>
- <Column id="mdate" type="STRING" size="256" sumtext="검사일"/>
- <Column id="symp" type="STRING" size="256" sumtext="술전 진단명"/>
- <Column id="disease" type="STRING" size="256" sumtext="주증상"/>
- <Column id="obtime" type="STRING" size="256" sumtext="처방시간"/>
- <Column id="inser" type="STRING" size="256" sumtext="Level of insertion"/>
- <Column id="endo" type="STRING" size="256" sumtext="Model of endoscope"/>
- <Column id="sdp" type="STRING" size="256" sumtext="Duodenal wall"/>
- <Column id="soao" type="STRING" size="256" sumtext="Papilla major"/>
- <Column id="aov" type="STRING" size="256" sumtext="Papilla minor"/>
- <Column id="duo" type="STRING" size="256" sumtext="Cholangiogram"/>
- <Column id="mbd" type="STRING" size="256" sumtext="GB"/>
- <Column id="cyd" type="STRING" size="256" sumtext="Pancreatogram"/>
- <Column id="bif" type="STRING" size="256" sumtext="Others"/>
- <Column id="sedation" type="STRING" size="256" sumtext="Sedation"/>
- <Column id="imp" type="STRING" size="256" sumtext="Impression"/>
- <Column id="pro" type="STRING" size="256" sumtext="Procedure"/>
- <Column id="recom" type="STRING" size="256" sumtext="Recommendation"/>
- <Column id="urname" type="STRING" size="256" sumtext="시술자"/>
- </ColumnInfo>
- </Dataset>
- <Dataset id="ds_main_traoe_01111_item" firefirstcount="0" firenextcount="0" useclientlayout="false" updatecontrol="true" enableevent="true" loadkeymode="keep" loadfiltermode="keep" reversesubsum="false">
- <ColumnInfo>
- <Column id="pid" type="STRING" size="256" sumtext="환자번호"/>
- <Column id="pname" type="STRING" size="256" sumtext="환자성명"/>
- <Column id="sex" type="STRING" size="256" sumtext="성별"/>
- <Column id="age" type="STRING" size="256" sumtext="나이"/>
- <Column id="ward" type="STRING" size="256" sumtext="병동명"/>
- <Column id="obtime" type="STRING" size="256" sumtext="처방일"/>
- <Column id="totaldate" type="STRING" size="256" sumtext="Date"/>
- <Column id="total_ige_no" type="STRING" size="256" sumtext="No"/>
- <Column id="dept" type="STRING" size="256" sumtext="Dept"/>
- <Column id="result1" type="STRING" size="256" sumtext="ECP"/>
- </ColumnInfo>
- </Dataset>
- <Dataset id="ds_main_traoe_01112_item" firefirstcount="0" firenextcount="0" useclientlayout="false" updatecontrol="true" enableevent="true" loadkeymode="keep" loadfiltermode="keep" reversesubsum="false">
- <ColumnInfo>
- <Column id="pid" type="STRING" size="256" sumtext="환자번호"/>
- <Column id="pname" type="STRING" size="256" sumtext="환자성명"/>
- <Column id="sex" type="STRING" size="256" sumtext="성별"/>
- <Column id="age" type="STRING" size="256" sumtext="나이"/>
- <Column id="ward" type="STRING" size="256" sumtext="병동명"/>
- <Column id="obtime" type="STRING" size="256" sumtext="처방일"/>
- <Column id="totaldate" type="STRING" size="256" sumtext="Date"/>
- <Column id="total_ige_no" type="STRING" size="256" sumtext="No"/>
- <Column id="dept" type="STRING" size="256" sumtext="Dept"/>
- <Column id="result1" type="STRING" size="256" sumtext="ECP"/>
- </ColumnInfo>
- </Dataset>
- <Dataset id="ds_main_traoe_01113_item" firefirstcount="0" firenextcount="0" useclientlayout="false" updatecontrol="true" enableevent="true" loadkeymode="keep" loadfiltermode="keep" reversesubsum="false">
- <ColumnInfo>
- <Column id="pid" type="STRING" size="256" sumtext="환자번호"/>
- <Column id="pname" type="STRING" size="256" sumtext="환자성명"/>
- <Column id="sex" type="STRING" size="256" sumtext="성별"/>
- <Column id="age" type="STRING" size="256" sumtext="나이"/>
- <Column id="ward" type="STRING" size="256" sumtext="병동명"/>
- <Column id="obtime" type="STRING" size="256" sumtext="처방일"/>
- <Column id="dept" type="STRING" size="256" sumtext="Dept"/>
- <Column id="ccrno" type="STRING" size="256" sumtext="No"/>
- </ColumnInfo>
- </Dataset>
- <Dataset id="ds_main_datagrid_item" firefirstcount="0" firenextcount="0" useclientlayout="false" updatecontrol="true" enableevent="true" loadkeymode="keep" loadfiltermode="keep" reversesubsum="false">
- <ColumnInfo>
- <Column id="test_seqno" type="STRING" size="256" sumtext="일련번호"/>
- <Column id="control" type="STRING" size="256" sumtext="Control"/>
- <Column id="controlenm" type="STRING" size="256" sumtext="ALLERGEN ITEM"/>
- <Column id="controlknm" type="STRING" size="256" sumtext="ALLERGEN ITEM"/>
- <Column id="refinfo" type="STRING" size="256" sumtext="IU/ML"/>
- <Column id="class" type="STRING" size="256" sumtext="class"/>
- </ColumnInfo>
- </Dataset>
- <Dataset id="ds_main_traoe_01115_item" firefirstcount="0" firenextcount="0" useclientlayout="false" updatecontrol="true" enableevent="true" loadkeymode="keep" loadfiltermode="keep" reversesubsum="false"/>
- <Dataset id="ds_main_traoe_01117_item" firefirstcount="0" firenextcount="0" useclientlayout="false" updatecontrol="true" enableevent="true" loadkeymode="keep" loadfiltermode="keep" reversesubsum="false"/>
- <Dataset id="ds_main_traoe_01121_item" firefirstcount="0" firenextcount="0" useclientlayout="false" updatecontrol="true" enableevent="true" loadkeymode="keep" loadfiltermode="keep" reversesubsum="false"/>
- <Dataset id="ds_main_traoe_01123_item" firefirstcount="0" firenextcount="0" useclientlayout="false" updatecontrol="true" enableevent="true" loadkeymode="keep" loadfiltermode="keep" reversesubsum="false"/>
- <Dataset id="ds_main_traoe_01131_item" firefirstcount="0" firenextcount="0" useclientlayout="false" updatecontrol="true" enableevent="true" loadkeymode="keep" loadfiltermode="keep" reversesubsum="false">
- <ColumnInfo>
- <Column id="accession_no" type="STRING" size="256" sumtext="일련번호"/>
- <Column id="patient_id" type="STRING" size="256" sumtext="환자번호"/>
- <Column id="patient_name" type="STRING" size="256" sumtext="이름"/>
- <Column id="patient_residency" type="STRING" size="256" sumtext="구분"/>
- <Column id="observation_dt" type="STRING" size="256" sumtext="검사일자"/>
- <Column id="patient_height" type="STRING" size="256" sumtext="키"/>
- <Column id="patient_weight" type="STRING" size="256" sumtext="몸무게"/>
- <Column id="physician" type="STRING" size="256" sumtext="주치의"/>
- <Column id="technician" type="STRING" size="256" sumtext="검사자"/>
- <Column id="conclusion" type="STRING" size="256" sumtext="interpretation"/>
- </ColumnInfo>
- </Dataset>
- <Dataset id="ds_main_traoe_01141_item" firefirstcount="0" firenextcount="0" useclientlayout="false" updatecontrol="true" enableevent="true" loadkeymode="keep" loadfiltermode="keep" reversesubsum="false">
- <ColumnInfo>
- <Column id="brondate" type="STRING" size="256" sumtext="Date"/>
- <Column id="pid" type="STRING" size="256" sumtext="환자번호"/>
- <Column id="pname" type="STRING" size="256" sumtext="이름"/>
- <Column id="sex" type="STRING" size="256" sumtext="성별"/>
- <Column id="age" type="STRING" size="256" sumtext="나이"/>
- <Column id="obtime" type="STRING" size="256" sumtext="검사일자"/>
- <Column id="bron_no" type="STRING" size="256" sumtext="No"/>
- </ColumnInfo>
- </Dataset>
- <Dataset id="ds_main_traoe_01141_item2" firefirstcount="0" firenextcount="0" useclientlayout="false" updatecontrol="true" enableevent="true" loadkeymode="keep" loadfiltermode="keep" reversesubsum="false">
- <ColumnInfo>
- <Column id="nodule" type="STRING" size="256" sumtext=""/>
- <Column id="atelectasis" type="STRING" size="256" sumtext=""/>
- <Column id="chronic" type="STRING" size="256" sumtext=""/>
- <Column id="hemoptysis" type="STRING" size="256" sumtext=""/>
- <Column id="localized" type="STRING" size="256" sumtext=""/>
- <Column id="diffuse" type="STRING" size="256" sumtext=""/>
- <Column id="known" type="STRING" size="256" sumtext=""/>
- <Column id="staging" type="STRING" size="256" sumtext=""/>
- <Column id="follow_up" type="STRING" size="256" sumtext=""/>
- <Column id="therapeutic" type="STRING" size="256" sumtext=""/>
- <Column id="secretion" type="STRING" size="256" sumtext=""/>
- <Column id="foreign_" type="STRING" size="256" sumtext=""/>
- <Column id="other_" type="STRING" size="256" sumtext=""/>
- <Column id="othertext" type="STRING" size="256" sumtext=""/>
- <Column id="atropine" type="STRING" size="256" sumtext=""/>
- <Column id="midazolam" type="STRING" size="256" sumtext=""/>
- <Column id="lidocain" type="STRING" size="256" sumtext=""/>
- <Column id="oral" type="STRING" size="256" sumtext=""/>
- <Column id="nasal" type="STRING" size="256" sumtext=""/>
- <Column id="endo" type="STRING" size="256" sumtext=""/>
- <Column id="tracheostomy" type="STRING" size="256" sumtext=""/>
- <Column id="nasal_o2" type="STRING" size="256" sumtext=""/>
- <Column id="procedure_" type="STRING" size="256" sumtext=""/>
- <Column id="findings" type="STRING" size="256" sumtext=""/>
- <Column id="impression" type="STRING" size="256" sumtext=""/>
- <Column id="bl" type="STRING" size="256" sumtext=""/>
- <Column id="bb" type="STRING" size="256" sumtext=""/>
- <Column id="biosy" type="STRING" size="256" sumtext=""/>
- <Column id="tblb" type="STRING" size="256" sumtext=""/>
- <Column id="tbna" type="STRING" size="256" sumtext=""/>
- <Column id="pbl" type="STRING" size="256" sumtext=""/>
- <Column id="bal" type="STRING" size="256" sumtext=""/>
- <Column id="bl_text" type="STRING" size="256" sumtext=""/>
- <Column id="bb_text" type="STRING" size="256" sumtext=""/>
- <Column id="biosy_text" type="STRING" size="256" sumtext=""/>
- <Column id="tblb_text" type="STRING" size="256" sumtext=""/>
- <Column id="tbna_text" type="STRING" size="256" sumtext=""/>
- <Column id="pbl_text" type="STRING" size="256" sumtext=""/>
- <Column id="bal_text" type="STRING" size="256" sumtext=""/>
- <Column id="b1" type="STRING" size="256" sumtext=""/>
- <Column id="b2" type="STRING" size="256" sumtext=""/>
- <Column id="b7" type="STRING" size="256" sumtext=""/>
- <Column id="b3" type="STRING" size="256" sumtext=""/>
- <Column id="b4" type="STRING" size="256" sumtext=""/>
- <Column id="b5" type="STRING" size="256" sumtext=""/>
- <Column id="b6" type="STRING" size="256" sumtext=""/>
- <Column id="c1" type="STRING" size="256" sumtext=""/>
- <Column id="c2" type="STRING" size="256" sumtext=""/>
- <Column id="c7" type="STRING" size="256" sumtext=""/>
- <Column id="c3" type="STRING" size="256" sumtext=""/>
- <Column id="c4" type="STRING" size="256" sumtext=""/>
- <Column id="c5" type="STRING" size="256" sumtext=""/>
- <Column id="c6" type="STRING" size="256" sumtext=""/>
- <Column id="otherstext" type="STRING" size="256" sumtext=""/>
- <Column id="h1" type="STRING" size="256" sumtext=""/>
- <Column id="h2" type="STRING" size="256" sumtext=""/>
- <Column id="h3" type="STRING" size="256" sumtext=""/>
- <Column id="h4" type="STRING" size="256" sumtext=""/>
- <Column id="h5" type="STRING" size="256" sumtext=""/>
- <Column id="h6" type="STRING" size="256" sumtext=""/>
- <Column id="drname" type="STRING" size="256" sumtext=""/>
- </ColumnInfo>
- </Dataset>
- <Dataset id="ds_main_traoe_01151_item" firefirstcount="0" firenextcount="0" useclientlayout="false" updatecontrol="true" enableevent="true" loadkeymode="keep" loadfiltermode="keep" reversesubsum="false">
- <ColumnInfo>
- <Column id="pid" type="STRING" size="256" sumtext="진찰번호"/>
- <Column id="pname" type="STRING" size="256" sumtext="이름"/>
- <Column id="age" type="STRING" size="256" sumtext="나이"/>
- <Column id="psex" type="STRING" size="256" sumtext="성별"/>
- <Column id="pnrn" type="STRING" size="256" sumtext="주민번호"/>
- <Column id="phphone" type="STRING" size="256" sumtext="전화번호"/>
- <Column id="handphone" type="STRING" size="256" sumtext="핸드폰번호"/>
- <Column id="uopno" type="STRING" size="256" sumtext="검사No"/>
- <Column id="height" type="STRING" size="256" sumtext="신장"/>
- <Column id="kg" type="STRING" size="256" sumtext="체중"/>
- <Column id="pantime" type="STRING" size="256" sumtext="검사일"/>
- <Column id="deptname" type="STRING" size="256" sumtext="진료과"/>
- <Column id="obtime" type="STRING" size="256" sumtext="진료일시"/>
- <Column id="jongjuk" type="STRING" size="256" sumtext="Ethnic"/>
- <Column id="simsa1" type="STRING" size="256" sumtext="L-SPINE BME 제일 낮은부위"/>
- <Column id="simsa2" type="STRING" size="256" sumtext="L-SPINE BME 제일 낮은부위 수치"/>
- <Column id="simsa2" type="STRING" size="256" sumtext="L-SPINE BME 제일 낮은부위 chkbx"/>
- <Column id="foresimsa1" type="STRING" size="256" sumtext="FOREARM BMD 제일 낮은부위"/>
- <Column id="foresimsa2" type="STRING" size="256" sumtext="FOREARM BMD 제일 낮은부위 수치"/>
- <Column id="foresimsa2" type="STRING" size="256" sumtext="FOREARM BMD 제일 낮은부위 chkbx"/>
- <Column id="femursimsa1" type="STRING" size="256" sumtext="Prox.Femur BMD 제일낮은부위"/>
- <Column id="femursimsa2" type="STRING" size="256" sumtext="Prox.Femur BMD 제일낮은부위 수치"/>
- <Column id="femursimsa2" type="STRING" size="256" sumtext="Prox.Femur BMD 제일낮은부위 chkbx"/>
- <Column id="forelcheck" type="STRING" size="256" sumtext="50세이상의남성으로 t-score가 -3이하"/>
- <Column id="extracheck" type="STRING" size="256" sumtext="위항목 포함안되지만 x-ray상 골다골증성 골절이 확실이 있는경우"/>
- <Column id="lcheck" type="STRING" size="256" sumtext="골다공증 보험인정가능chkbx"/>
- <Column id="lcomment" type="STRING" size="256" sumtext="주석"/>
- <Column id="panname" type="STRING" size="256" sumtext="판독의사"/>
- </ColumnInfo>
- </Dataset>
- <Dataset id="ds_main_traoe_01181_item" firefirstcount="0" firenextcount="0" useclientlayout="false" updatecontrol="true" enableevent="true" loadkeymode="keep" loadfiltermode="keep" reversesubsum="false"/>
- <Dataset id="ds_main_traoe_01191_item" firefirstcount="0" firenextcount="0" useclientlayout="false" updatecontrol="true" enableevent="true" loadkeymode="keep" loadfiltermode="keep" reversesubsum="false">
- <ColumnInfo>
- <Column id="pname" type="STRING" size="256" sumtext=""/>
- <Column id="psex" type="STRING" size="256" sumtext=""/>
- <Column id="page" type="STRING" size="256" sumtext=""/>
- <Column id="pid" type="STRING" size="256" sumtext=""/>
- <Column id="examdate" type="STRING" size="256" sumtext=""/>
- <Column id="inoutmode" type="STRING" size="256" sumtext=""/>
- <Column id="rd_a" type="STRING" size="256" sumtext=""/>
- <Column id="dia" type="STRING" size="256" sumtext=""/>
- <Column id="rcp" type="STRING" size="256" sumtext=""/>
- <Column id="rce" type="STRING" size="256" sumtext=""/>
- <Column id="rcf" type="STRING" size="256" sumtext=""/>
- <Column id="rcd" type="STRING" size="256" sumtext=""/>
- <Column id="lcp" type="STRING" size="256" sumtext=""/>
- <Column id="lce" type="STRING" size="256" sumtext=""/>
- <Column id="lcf" type="STRING" size="256" sumtext=""/>
- <Column id="lcd" type="STRING" size="256" sumtext=""/>
- <Column id="rrp" type="STRING" size="256" sumtext=""/>
- <Column id="rre" type="STRING" size="256" sumtext=""/>
- <Column id="rrf" type="STRING" size="256" sumtext=""/>
- <Column id="rrd" type="STRING" size="256" sumtext=""/>
- <Column id="lrp" type="STRING" size="256" sumtext=""/>
- <Column id="lre" type="STRING" size="256" sumtext=""/>
- <Column id="lrf" type="STRING" size="256" sumtext=""/>
- <Column id="lrd" type="STRING" size="256" sumtext=""/>
- <Column id="rpp" type="STRING" size="256" sumtext=""/>
- <Column id="rpe" type="STRING" size="256" sumtext=""/>
- <Column id="rpf" type="STRING" size="256" sumtext=""/>
- <Column id="rpd" type="STRING" size="256" sumtext=""/>
- <Column id="lpp" type="STRING" size="256" sumtext=""/>
- <Column id="lpe" type="STRING" size="256" sumtext=""/>
- <Column id="lpf" type="STRING" size="256" sumtext=""/>
- <Column id="lpd" type="STRING" size="256" sumtext=""/>
- <Column id="rdp" type="STRING" size="256" sumtext=""/>
- <Column id="rde" type="STRING" size="256" sumtext=""/>
- <Column id="rdf" type="STRING" size="256" sumtext=""/>
- <Column id="rdd" type="STRING" size="256" sumtext=""/>
- <Column id="ldp" type="STRING" size="256" sumtext=""/>
- <Column id="lde" type="STRING" size="256" sumtext=""/>
- <Column id="ldf" type="STRING" size="256" sumtext=""/>
- <Column id="ldd" type="STRING" size="256" sumtext=""/>
- <Column id="rep" type="STRING" size="256" sumtext=""/>
- <Column id="ree" type="STRING" size="256" sumtext=""/>
- <Column id="ref" type="STRING" size="256" sumtext=""/>
- <Column id="red" type="STRING" size="256" sumtext=""/>
- <Column id="lep" type="STRING" size="256" sumtext=""/>
- <Column id="lee" type="STRING" size="256" sumtext=""/>
- <Column id="lef" type="STRING" size="256" sumtext=""/>
- <Column id="led" type="STRING" size="256" sumtext=""/>
- <Column id="ri" type="STRING" size="256" sumtext=""/>
- <Column id="li" type="STRING" size="256" sumtext=""/>
- <Column id="rt" type="STRING" size="256" sumtext=""/>
- <Column id="lt" type="STRING" size="256" sumtext=""/>
- <Column id="rp" type="STRING" size="256" sumtext=""/>
- <Column id="lp" type="STRING" size="256" sumtext=""/>
- <Column id="rlc" type="STRING" size="256" sumtext=""/>
- <Column id="rli" type="STRING" size="256" sumtext=""/>
- <Column id="rle" type="STRING" size="256" sumtext=""/>
- <Column id="rla" type="STRING" size="256" sumtext=""/>
- <Column id="rlp" type="STRING" size="256" sumtext=""/>
- <Column id="llc" type="STRING" size="256" sumtext=""/>
- <Column id="lli" type="STRING" size="256" sumtext=""/>
- <Column id="lle" type="STRING" size="256" sumtext=""/>
- <Column id="lla" type="STRING" size="256" sumtext=""/>
- <Column id="llp" type="STRING" size="256" sumtext=""/>
- <Column id="rl" type="STRING" size="256" sumtext=""/>
- <Column id="ll" type="STRING" size="256" sumtext=""/>
- <Column id="rd" type="STRING" size="256" sumtext=""/>
- <Column id="ld" type="STRING" size="256" sumtext=""/>
- <Column id="rc" type="STRING" size="256" sumtext=""/>
- <Column id="lc" type="STRING" size="256" sumtext=""/>
- <Column id="rca" type="STRING" size="256" sumtext=""/>
- <Column id="lca" type="STRING" size="256" sumtext=""/>
- <Column id="rco" type="STRING" size="256" sumtext=""/>
- <Column id="lco" type="STRING" size="256" sumtext=""/>
- <Column id="rcot" type="STRING" size="256" sumtext=""/>
- <Column id="lcot" type="STRING" size="256" sumtext=""/>
- <Column id="rq" type="STRING" size="256" sumtext=""/>
- <Column id="lq" type="STRING" size="256" sumtext=""/>
- <Column id="rs" type="STRING" size="256" sumtext=""/>
- <Column id="ls" type="STRING" size="256" sumtext=""/>
- <Column id="rfp" type="STRING" size="256" sumtext=""/>
- <Column id="rfi" type="STRING" size="256" sumtext=""/>
- <Column id="rft" type="STRING" size="256" sumtext=""/>
- <Column id="lfp" type="STRING" size="256" sumtext=""/>
- <Column id="lfi" type="STRING" size="256" sumtext=""/>
- <Column id="lft" type="STRING" size="256" sumtext=""/>
- <Column id="rdc" type="STRING" size="256" sumtext=""/>
- <Column id="ldc" type="STRING" size="256" sumtext=""/>
- <Column id="rop" type="STRING" size="256" sumtext=""/>
- <Column id="roe" type="STRING" size="256" sumtext=""/>
- <Column id="rof" type="STRING" size="256" sumtext=""/>
- <Column id="rod" type="STRING" size="256" sumtext=""/>
- <Column id="lop" type="STRING" size="256" sumtext=""/>
- <Column id="loe" type="STRING" size="256" sumtext=""/>
- <Column id="lof" type="STRING" size="256" sumtext=""/>
- <Column id="lod" type="STRING" size="256" sumtext=""/>
- <Column id="rvp" type="STRING" size="256" sumtext=""/>
- <Column id="rve" type="STRING" size="256" sumtext=""/>
- <Column id="rvf" type="STRING" size="256" sumtext=""/>
- <Column id="rvd" type="STRING" size="256" sumtext=""/>
- <Column id="lvp" type="STRING" size="256" sumtext=""/>
- <Column id="lve" type="STRING" size="256" sumtext=""/>
- <Column id="lvf" type="STRING" size="256" sumtext=""/>
- <Column id="lvd" type="STRING" size="256" sumtext=""/>
- <Column id="vrp" type="STRING" size="256" sumtext=""/>
- <Column id="vlp" type="STRING" size="256" sumtext=""/>
- <Column id="vrla" type="STRING" size="256" sumtext=""/>
- <Column id="vrlp" type="STRING" size="256" sumtext=""/>
- <Column id="vlla" type="STRING" size="256" sumtext=""/>
- <Column id="vllp" type="STRING" size="256" sumtext=""/>
- <Column id="vrl" type="STRING" size="256" sumtext=""/>
- <Column id="vll" type="STRING" size="256" sumtext=""/>
- <Column id="vrd" type="STRING" size="256" sumtext=""/>
- <Column id="vld" type="STRING" size="256" sumtext=""/>
- <Column id="vrc" type="STRING" size="256" sumtext=""/>
- <Column id="vlc" type="STRING" size="256" sumtext=""/>
- <Column id="vrco" type="STRING" size="256" sumtext=""/>
- <Column id="vrcot" type="STRING" size="256" sumtext=""/>
- <Column id="vlc" type="STRING" size="256" sumtext=""/>
- <Column id="vlca" type="STRING" size="256" sumtext=""/>
- <Column id="vrco" type="STRING" size="256" sumtext=""/>
- <Column id="vlcot" type="STRING" size="256" sumtext=""/>
- <Column id="vrs" type="STRING" size="256" sumtext=""/>
- <Column id="vls" type="STRING" size="256" sumtext=""/>
- <Column id="vrfp" type="STRING" size="256" sumtext=""/>
- <Column id="vrfi" type="STRING" size="256" sumtext=""/>
- <Column id="vrft" type="STRING" size="256" sumtext=""/>
- <Column id="vlfp" type="STRING" size="256" sumtext=""/>
- <Column id="vlfi" type="STRING" size="256" sumtext=""/>
- <Column id="vlft" type="STRING" size="256" sumtext=""/>
- <Column id="fi" type="STRING" size="256" sumtext=""/>
- <Column id="co" type="STRING" size="256" sumtext=""/>
- </ColumnInfo>
- </Dataset>
- <Dataset id="ds_main_traoe_01201_item" firefirstcount="0" firenextcount="0" useclientlayout="false" updatecontrol="true" enableevent="true" loadkeymode="keep" loadfiltermode="keep" reversesubsum="false">
- <ColumnInfo>
- <Column id="pandate" type="STRING" size="256" sumtext=""/>
- <Column id="pid" type="STRING" size="256" sumtext=""/>
- <Column id="name" type="STRING" size="256" sumtext=""/>
- <Column id="exercise_no" type="STRING" size="256" sumtext=""/>
- <Column id="sex" type="STRING" size="256" sumtext=""/>
- <Column id="age" type="STRING" size="256" sumtext=""/>
- <Column id="height" type="STRING" size="256" sumtext=""/>
- <Column id="weight" type="STRING" size="256" sumtext=""/>
- <Column id="dept" type="STRING" size="256" sumtext=""/>
- <Column id="ward" type="STRING" size="256" sumtext=""/>
- <Column id="diagnosis_flag" type="STRING" size="256" sumtext=""/>
- <Column id="others_1" type="STRING" size="256" sumtext=""/>
- <Column id="lvef" type="STRING" size="256" sumtext=""/>
- <Column id="lvh_gu" type="STRING" size="256" sumtext=""/>
- <Column id="ecg_flag" type="STRING" size="256" sumtext=""/>
- <Column id="std" type="STRING" size="256" sumtext=""/>
- <Column id="ste" type="STRING" size="256" sumtext=""/>
- <Column id="t_inv" type="STRING" size="256" sumtext=""/>
- <Column id="abn_q" type="STRING" size="256" sumtext=""/>
- <Column id="lbbb" type="STRING" size="256" sumtext=""/>
- <Column id="rbbb" type="STRING" size="256" sumtext=""/>
- <Column id="af_afl" type="STRING" size="256" sumtext=""/>
- <Column id="pvcs" type="STRING" size="256" sumtext=""/>
- <Column id="pacs" type="STRING" size="256" sumtext=""/>
- <Column id="lvh" type="STRING" size="256" sumtext=""/>
- <Column id="others3" type="STRING" size="256" sumtext=""/>
- <Column id="others_2" type="STRING" size="256" sumtext=""/>
- <Column id="nitrate" type="STRING" size="256" sumtext=""/>
- <Column id="asa" type="STRING" size="256" sumtext=""/>
- <Column id="bb" type="STRING" size="256" sumtext=""/>
- <Column id="ccb" type="STRING" size="256" sumtext=""/>
- <Column id="ace_l" type="STRING" size="256" sumtext=""/>
- <Column id="lipid" type="STRING" size="256" sumtext=""/>
- <Column id="dgx" type="STRING" size="256" sumtext=""/>
- <Column id="others" type="STRING" size="256" sumtext=""/>
- <Column id="others_4" type="STRING" size="256" sumtext=""/>
- <Column id="smorking" type="STRING" size="256" sumtext=""/>
- <Column id="hypertension" type="STRING" size="256" sumtext=""/>
- <Column id="dm" type="STRING" size="256" sumtext=""/>
- <Column id="hyperripidemia" type="STRING" size="256" sumtext=""/>
- <Column id="fhx" type="STRING" size="256" sumtext=""/>
- <Column id="others5" type="STRING" size="256" sumtext=""/>
- <Column id="others_5" type="STRING" size="256" sumtext=""/>
- <Column id="protocol_flag" type="STRING" size="256" sumtext=""/>
- <Column id="others_3" type="STRING" size="256" sumtext=""/>
- <Column id="perfusion" type="STRING" size="256" sumtext=""/>
- <Column id="pmhp" type="STRING" size="256" sumtext=""/>
- <Column id="pmhp85" type="STRING" size="256" sumtext=""/>
- <Column id="duration_mm" type="STRING" size="256" sumtext=""/>
- <Column id="duration_ss" type="STRING" size="256" sumtext=""/>
- <Column id="capacity" type="STRING" size="256" sumtext=""/>
- <Column id="reason" type="STRING" size="256" sumtext=""/>
- <Column id="arrhymia_flag" type="STRING" size="256" sumtext=""/>
- <Column id="arrhymia" type="STRING" size="256" sumtext=""/>
- <Column id="st_hr" type="STRING" size="256" sumtext=""/>
- <Column id="hr" type="STRING" size="256" sumtext=""/>
- <Column id="bp" type="STRING" size="256" sumtext=""/>
- <Column id="ischemic_flag" type="STRING" size="256" sumtext=""/>
- <Column id="diagnostic_flag" type="STRING" size="256" sumtext=""/>
- <Column id="st_change" type="STRING" size="256" sumtext=""/>
- <Column id="occurs" type="STRING" size="256" sumtext=""/>
- <Column id="pmhr" type="STRING" size="256" sumtext=""/>
- <Column id="leads" type="STRING" size="256" sumtext=""/>
- <Column id="maximum" type="STRING" size="256" sumtext=""/>
- <Column id="lead" type="STRING" size="256" sumtext=""/>
- <Column id="resolving" type="STRING" size="256" sumtext=""/>
- <Column id="duke" type="STRING" size="256" sumtext=""/>
- <Column id="frolicher" type="STRING" size="256" sumtext=""/>
- <Column id="ecgcomment" type="STRING" size="256" sumtext=""/>
- <Column id="gumdrname" type="STRING" size="256" sumtext=""/>
- <Column id="pandrname" type="STRING" size="256" sumtext=""/>
- </ColumnInfo>
- </Dataset>
- <Dataset id="ds_main_traoe_01211_item" firefirstcount="0" firenextcount="0" useclientlayout="false" updatecontrol="true" enableevent="true" loadkeymode="keep" loadfiltermode="keep" reversesubsum="false">
- <ColumnInfo>
- <Column id="pid" type="STRING" size="256" sumtext=""/>
- <Column id="panno" type="STRING" size="256" sumtext=""/>
- <Column id="pname" type="STRING" size="256" sumtext=""/>
- <Column id="phphone" type="STRING" size="256" sumtext=""/>
- <Column id="age" type="STRING" size="256" sumtext=""/>
- <Column id="psex" type="STRING" size="256" sumtext=""/>
- <Column id="pnrn" type="STRING" size="256" sumtext=""/>
- <Column id="obtime" type="STRING" size="256" sumtext=""/>
- <Column id="deptname" type="STRING" size="256" sumtext=""/>
- <Column id="pqdrid" type="STRING" size="256" sumtext=""/>
- <Column id="pqtxstatus" type="STRING" size="256" sumtext=""/>
- <Column id="pqcashin" type="STRING" size="256" sumtext=""/>
- <Column id="pqinoutmode" type="STRING" size="256" sumtext=""/>
- <Column id="pandate" type="STRING" size="256" sumtext=""/>
- <Column id="pandrname" type="STRING" size="256" sumtext=""/>
- <Column id="dentresult" type="STRING" size="256" sumtext=""/>
- <Column id="dentimp1" type="STRING" size="256" sumtext=""/>
- <Column id="dentimp2" type="STRING" size="256" sumtext=""/>
- <Column id="dentimp3" type="STRING" size="256" sumtext=""/>
- <Column id="recommand1" type="STRING" size="256" sumtext=""/>
- <Column id="recommand2" type="STRING" size="256" sumtext=""/>
- <Column id="recommand3" type="STRING" size="256" sumtext=""/>
- </ColumnInfo>
- </Dataset>
- <Dataset id="ds_main_traoe_01221_item" firefirstcount="0" firenextcount="0" useclientlayout="false" updatecontrol="true" enableevent="true" loadkeymode="keep" loadfiltermode="keep" reversesubsum="false"/>
- <Dataset id="ds_main_traoe_01231_item" firefirstcount="0" firenextcount="0" useclientlayout="false" updatecontrol="true" enableevent="true" loadkeymode="keep" loadfiltermode="keep" reversesubsum="false">
- <ColumnInfo>
- <Column id="pid" type="STRING" size="256" sumtext=""/>
- <Column id="pname" type="STRING" size="256" sumtext=""/>
- <Column id="sex" type="STRING" size="256" sumtext=""/>
- <Column id="age" type="STRING" size="256" sumtext=""/>
- <Column id="cathdate" type="STRING" size="256" sumtext=""/>
- <Column id="cineno" type="STRING" size="256" sumtext=""/>
- <Column id="address" type="STRING" size="256" sumtext=""/>
- <Column id="handtel" type="STRING" size="256" sumtext=""/>
- <Column id="hometel" type="STRING" size="256" sumtext=""/>
- <Column id="cl_diag1" type="STRING" size="256" sumtext=""/>
- <Column id="cl_diag2" type="STRING" size="256" sumtext=""/>
- <Column id="cl_diag3" type="STRING" size="256" sumtext=""/>
- <Column id="at_time" type="STRING" size="256" sumtext=""/>
- <Column id="er_time" type="STRING" size="256" sumtext=""/>
- <Column id="ca_time" type="STRING" size="256" sumtext=""/>
- <Column id="art_time" type="STRING" size="256" sumtext=""/>
- <Column id="ball_time" type="STRING" size="256" sumtext=""/>
- <Column id="stbta1" type="STRING" size="256" sumtext=""/>
- <Column id="stbta2" type="STRING" size="256" sumtext=""/>
- <Column id="dtbta1" type="STRING" size="256" sumtext=""/>
- <Column id="dtbta2" type="STRING" size="256" sumtext=""/>
- <Column id="art_punc1" type="STRING" size="256" sumtext=""/>
- <Column id="art_punc2" type="STRING" size="256" sumtext=""/>
- <Column id="cag_cal1" type="STRING" size="256" sumtext=""/>
- <Column id="cag_cal2" type="STRING" size="256" sumtext=""/>
- <Column id="cag_car1" type="STRING" size="256" sumtext=""/>
- <Column id="cag_car2" type="STRING" size="256" sumtext=""/>
- <Column id="coro_angio1" type="STRING" size="256" sumtext=""/>
- <Column id="coro_angio2" type="STRING" size="256" sumtext=""/>
- <Column id="coro_angio3" type="STRING" size="256" sumtext=""/>
- <Column id="vessel" type="STRING" size="256" sumtext=""/>
- <Column id="comments" type="STRING" size="256" sumtext=""/>
- <Column id="proced" type="STRING" size="256" sumtext=""/>
- </ColumnInfo>
- </Dataset>
- <Dataset id="ds_main_traoe_01241_item" firefirstcount="0" firenextcount="0" useclientlayout="false" updatecontrol="true" enableevent="true" loadkeymode="keep" loadfiltermode="keep" reversesubsum="false">
- <ColumnInfo>
- <Column id="pid" type="STRING" size="256" sumtext=""/>
- <Column id="pname" type="STRING" size="256" sumtext=""/>
- <Column id="psex" type="STRING" size="256" sumtext=""/>
- <Column id="age" type="STRING" size="256" sumtext=""/>
- <Column id="ctdataflag" type="STRING" size="256" sumtext=""/>
- <Column id="verfilmflag" type="STRING" size="256" sumtext=""/>
- <Column id="simulatiorflag" type="STRING" size="256" sumtext=""/>
- <Column id="mouldroomflag" type="STRING" size="256" sumtext=""/>
- <Column id="physicsflag" type="STRING" size="256" sumtext=""/>
- </ColumnInfo>
- </Dataset>
- <Dataset id="ds_main_traoe_01251_item" firefirstcount="0" firenextcount="0" useclientlayout="false" updatecontrol="true" enableevent="true" loadkeymode="keep" loadfiltermode="keep" reversesubsum="false">
- <ColumnInfo>
- <Column id="pid" type="STRING" size="256" sumtext=""/>
- <Column id="pname" type="STRING" size="256" sumtext=""/>
- <Column id="psex" type="STRING" size="256" sumtext=""/>
- <Column id="age" type="STRING" size="256" sumtext=""/>
- </ColumnInfo>
- </Dataset>
- <Dataset id="ds_main_traoe_01251_item4" firefirstcount="0" firenextcount="0" useclientlayout="false" updatecontrol="true" enableevent="true" loadkeymode="keep" loadfiltermode="keep" reversesubsum="false">
- <ColumnInfo>
- <Column id="pid" type="STRING" size="256" sumtext=""/>
- <Column id="pname" type="STRING" size="256" sumtext=""/>
- <Column id="psex" type="STRING" size="256" sumtext=""/>
- <Column id="age" type="STRING" size="256" sumtext=""/>
- </ColumnInfo>
- </Dataset>
- <Dataset id="ds_main_traoe_01261_item" firefirstcount="0" firenextcount="0" useclientlayout="false" updatecontrol="true" enableevent="true" loadkeymode="keep" loadfiltermode="keep" reversesubsum="false"/>
- <Dataset id="ds_main_traoe_01271_item" firefirstcount="0" firenextcount="0" useclientlayout="false" updatecontrol="true" enableevent="true" loadkeymode="keep" loadfiltermode="keep" reversesubsum="false">
- <ColumnInfo>
- <Column id="pid" type="STRING" size="256" sumtext=""/>
- <Column id="pname" type="STRING" size="256" sumtext=""/>
- <Column id="psex" type="STRING" size="256" sumtext=""/>
- <Column id="age" type="STRING" size="256" sumtext=""/>
- </ColumnInfo>
- </Dataset>
- <Dataset id="ds_main_traoe_01161_item" firefirstcount="0" firenextcount="0" useclientlayout="false" updatecontrol="true" enableevent="true" loadkeymode="keep" loadfiltermode="keep" reversesubsum="false"/>
- </Objects>
- <Bind>
- <BindItem id="item0" compid="group6.ipt_srchpid" propid="value" datasetid="ds_send" columnid="srchpid"/>
- <BindItem id="item1" compid="group6.opt_srchhngnm" propid="value" datasetid="ds_send" columnid="srchhngnm"/>
- <BindItem id="item3" compid="opt_pid" propid="value" datasetid="ds_main_patinfo_item" columnid="pid"/>
- <BindItem id="item4" compid="opt_name" propid="value" datasetid="ds_main_patinfo_item" columnid="pname"/>
- <BindItem id="item5" compid="opt_sex" propid="value" datasetid="ds_main_patinfo_item" columnid="psex"/>
- <BindItem id="item6" compid="opt_age" propid="value" datasetid="ds_main_patinfo_item" columnid="age"/>
- <BindItem id="item7" compid="opt_inoutmode" propid="value" datasetid="ds_main_patinfo_item" columnid="inoutmode"/>
- <BindItem id="item8" compid="opt_obtime" propid="value" datasetid="ds_main_patinfo_item" columnid="obtime"/>
- <BindItem id="item9" compid="opt_pandrname" propid="value" datasetid="ds_main_patinfo_item" columnid="pandrname"/>
- <BindItem id="item10" compid="opt_rsltdd" propid="value" datasetid="ds_main_patinfo_item" columnid="rsltdd"/>
- <BindItem id="item11" compid="opt_obdrname" propid="value" datasetid="ds_main_patinfo_item" columnid="obdrname"/>
- <BindItem id="item12" compid="opt_obdeptname" propid="value" datasetid="ds_main_patinfo_item" columnid="obdeptname"/>
- <BindItem id="item13" compid="opt_room" propid="value" datasetid="ds_main_patinfo_item" columnid="wardname"/>
- <BindItem id="item14" compid="opt_obpathnote" propid="value" datasetid="ds_main_patinfo_item" columnid="uodesc"/>
- <BindItem id="item15" compid="switch1.case1.tar_sw1" propid="value" datasetid="ds_main_patinfo_item" columnid="result_text"/>
- </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";
- var arErrorCode = new HashArray();
- function SMAOE01000_oninit(obj:Form, e:InitEventInfo)
- {
- frmf_initForm(obj);
- }
- function SMAOE01000_onload(obj:Form, e:LoadEventInfo)
- {
- grdf_initGrid(grd_examlist);
- grdf_setRowTypeIcon(grd_examlist, 0);
-
- if(frmf_checkOpener())
- {
- ds_send.setColumn(0, "srchpid", opener.frmf_getParameter("SMMMI00100_pid") );
- ds_send.setColumn(0, "srchhngnm", opener.frmf_getParameter("SMMMI00100_hngnm") );
-
- //obj.updateToDataset();
- ds_send.setColumn(0, "srchcode", "SMAOE01000");
- group6.button1.click();
- }
- }
- function group6_ipt_srchpid_onkeyup(obj:Edit, e:KeyEventInfo)
- {
- if(e.keycode == 13)
- {
- obj.updateToDataset();
- ds_send.setColumn(0, "srchcode", "SMAOE01000");
- ds_send.setColumn(0, "srchhngnm", "");
- group6.button1.click();
- }
- }
- function group6_btn_search1_onclick(obj:Button, e:ClickEventInfo)
- {
- frmf_modal("SPAVT00100", "SPAVT00100", "", "", "", "", "", "", "", "", "", "", "M");
-
- if (ds_temp.getColumn(0, "okflag") == "ok")
- {
- ds_send.setColumn(0, "srchpid", ds_temp_templst_item.getColumn(0, "pid"));
- ds_send.setColumn(0, "srchhngnm", ds_temp_templst_item.getColumn(0, "hngnm"));
-
- ds_temp.setColumn(0, "okflag", "");
-
- ds_temp_templst_item.clearData();
-
- ds_main_examlist_item.clearData();
- ds_main_patinfo_item.clearData();
- ds_main_patinfo_item.addRow();
- // model.removeNode("/root/main/traoe_01011");
- // model.removeNode("/root/main/traoe_01021");
- // model.removeNode("/root/main/traoe_01031");
- // model.removeNode("/root/main/traoe_01041");
- // model.removeNode("/root/main/traoe_01051");
- // model.removeNode("/root/main/traoe_01061");
- // model.removeNode("/root/main/traoe_01071");
- // model.removeNode("/root/main/traoe_01081");
- // model.removeNode("/root/main/traoe_01091");
- // model.removeNode("/root/main/traoe_01101");
- // model.removeNode("/root/main/traoe_01102");
- // model.removeNode("/root/main/traoe_01103");
- // model.removeNode("/root/main/traoe_01104");
- // model.removeNode("/root/main/traoe_01105");
- // model.removeNode("/root/main/traoe_01111");
- // model.removeNode("/root/main/traoe_01112");
- // model.removeNode("/root/main/traoe_01113");
- // model.removeNode("/root/main/traoe_01115");
- // model.removeNode("/root/main/traoe_01117");
- // model.removeNode("/root/main/traoe_01121");
- // model.removeNode("/root/main/traoe_01123");
- // model.removeNode("/root/main/traoe_01131");
- // model.removeNode("/root/main/traoe_01141");
- // model.removeNode("/root/main/traoe_01151");
- // model.removeNode("/root/main/traoe_01161");
- // model.removeNode("/root/main/traoe_01181");
- // model.removeNode("/root/main/traoe_01191");
- // model.removeNode("/root/main/traoe_01191");
- // model.removeNode("/root/main/traoe_01191");
- // model.removeNode("/root/main/traoe_01201");
- // model.removeNode("/root/main/traoe_01211");
- // model.removeNode("/root/main/traoe_01221");
- // model.removeNode("/root/main/traoe_01231");
- // model.removeNode("/root/main/traoe_01241");
- // model.removeNode("/root/main/traoe_01251");
- // model.removeNode("/root/main/traoe_01261");
- // model.removeNode("/root/main/traoe_01271");
- // model.removeNode("/root/main/datagrid");
- btn_sw1.class = "btn_tab_S";
- btn_sw2.class = "btn_tab";
- btn_sw3.class = "btn_tab";
-
- switch1.tabindex = 0;
- var oParam = {};
- oParam.id = "TRAOE01001";
- oParam.service = "oldexamresultapp.OldExamResult";
- oParam.method = "reqGetOldExamResultList";
- oParam.inds = "req=ds_send";
- oParam.outds = "ds_main_examlist_item=item";
- oParam.async = false;
- //oParam.callback = "cf_TRAOE01001";
- tranf_submit(oParam);
- }
- }
- function group6_button1_onclick(obj:Button, e:ClickEventInfo)
- {
- if (utlf_isNull(ds_send.getColumn(0, "srchpid")))
- {
- alert("검색 조건 입력은 필수입니다.");
- if(utlf_isNull(ds_send.getColumn(0, "srchpid")))
- {
- group6.ipt_srchpid.setFocus();
- }
- }
- else
- {
- var oParam = {};
- oParam.id = "TRAVT00102";
- oParam.service = "tissuebankapp.TissueBankProcess";
- oParam.method = "reqGetTissueBankSrchList";
- oParam.inds = "req=ds_send";
- oParam.outds = "ds_main_srchlist_item=item";
- oParam.async = false;
- oParam.callback = "cf_TRAVT00102";
- tranf_submit(oParam);
- if(arErrorCode.pop("TRAVT00102") > -1)
- {
- group6.btn_search.click();
- }
- }
- }
- function cf_TRAVT00102(sSvcId, nErrorCode, sErrorMsg)
- {
- arErrorCode.push(sSvcId, nErrorCode);
- if(nErrorCode < 0) return;
- }
- function group6_btn_search_onclick(obj:Button, e:ClickEventInfo)
- {
- switch1.case3.iviewer1.visible = false;
- switch1.case2.datagrid1.visible = false;
- btn_sw1.class = "btn_tab_S";
- btn_sw2.class = "btn_tab";
- btn_sw3.class = "btn_tab";
- var oParam = {};
- oParam.id = "TRAOE01001";
- oParam.service = "oldexamresultapp.OldExamResult";
- oParam.method = "reqGetOldExamResultList";
- oParam.inds = "req=ds_send";
- oParam.outds = "ds_main_examlist_item=item";
- oParam.async = false;
- //oParam.callback = "cf_TRAOE01001";
- tranf_submit(oParam);
- }
- function cf_TRAOE01001(sSvcId, nErrorCode, sErrorMsg)
- {
- arErrorCode.push(sSvcId, nErrorCode);
- if(nErrorCode < 0) return;
- }
- function grd_examlist_oncelldblclick(obj:Grid, e:GridClickEventInfo)
- {
-
- var row = ds_main_examlist_item.rowposition;
- trace("table_cd===="+ds_main_examlist_item.getColumn(row , "table_cd"))
- if( row > -1 && ds_main_examlist_item.getColumn(row , "table_cd")=="TXRESULTFILE" )
- {
- var pid = ds_main_examlist_item.getColumn(row, "pid");
- var ccrno = ds_main_examlist_item.getColumn(row, "ccrno");
- var obtime = ds_main_examlist_item.getColumn(row, "obtime");
- var uopno = ds_main_examlist_item.getColumn(row, "uopno");
- var filenm = ds_main_examlist_item.getColumn(row, "filename");
- var fileext = String(filenm).lastIndexOf(".");
-
- var ext = String(filenm).substring(fileext +1);
- var localfile = "C:\\Program Files\\himed\\" + filenm
-
- var oParam = {};
- oParam.id = "TRAOE01001";
- oParam.service = "oldexamresultapp.OldExamResult";
- oParam.method = "reqGetOldExamResultList2";
- oParam.inds = "req=ds_main_examlist_item";
- oParam.outds = "ds_hidden_filelist=filelist";
- oParam.async = false;
- oParam.callback = "cf_TRAOE01001";
- tranf_submit(oParam);
- if(arErrorCode.pop("TRAOE01001") > -1)
- {
- model.download( realfile, localfile);
- var objWSH = new ActiveXObject("WScript.Shell");
- var runstr = "rundll32.exe system32\\shell32.dll,ShellExec_RunDLL " + localfile
- objWSH.Run( runstr , 1, false);
- }
- }
- else if( row > -1 && ds_main_examlist_item.getColumn(row, "table_cd")=="RISRESULT" )
- {
- send_node_set(row);
- trace("RISRESULT");
- var oParam = {};
- oParam.id = "TRAOE01011";
- oParam.service = "oldexamresultapp.OldExamResult";
- oParam.method = "reqGetOldExamResultList_Common";
- oParam.inds = "req=ds_send";
- oParam.outds = "ds_main_traoe_01011_item=item";
- oParam.async = false;
- //oParam.callback = "cf_TRAOE01011";
- tranf_submit(oParam);
- init_node_set(row);
- var result_target = ds_main_patinfo_item;
- var result_source = ds_main_traoe_01011_item;
- result_node_set(result_target, result_source);
-
- var result = "";
- result = "\n"+"[ 임상소견 및 의뢰사유 ]" + "\n" + "\n";
- result = result + utlf_transNullToEmpty(ds_main_traoe_01011_item.getColumn(0, "obpathnote"))+ "\n" + "\n"+ "[ 소 견 ]"+ "\n";
- result = result + utlf_transNullToEmpty(ds_main_traoe_01011_item.getColumn(0, "rlongresult"))+ "\n" + "\n"+ "[ 결 론 ]"+ "\n";
- result = result + utlf_transNullToEmpty(ds_main_traoe_01011_item.getColumn(0, "clongresult"));
-
- ds_main_patinfo_item.setColumn(0, "result_text", result);
- //result_title.text = result
- btn_sw1.class = "btn_tab_S";
- btn_sw2.class = "btn_tab";
- btn_sw3.class = "btn_tab";
- switch1.tabindex = 0;
- }
- else if( row > -1 && ds_main_examlist_item.getColumn(row , "table_cd")=="SCANRESULT" )
- {
- send_node_set(row);
- var oParam = {};
- oParam.id = "TRAOE01021";
- oParam.service = "oldexamresultapp.OldExamResult";
- oParam.method = "reqGetOldExamResultList_Common";
- oParam.inds = "req=ds_send";
- oParam.outds = "ds_main_traoe_01021_item=item";
- oParam.async = false;
- //oParam.callback = "cf_TRAOE01021";
- tranf_submit(oParam);
- init_node_set(row);
-
- var result_target = ds_main_patinfo_item;
- var result_source = ds_main_traoe_01021_item;
- result_node_set(result_target, result_source);
-
- var result = "";
- result = "\n"+"[ Findings ]" + "\n" + "\n";
- result = result + utlf_transNullToEmpty(ds_main_traoe_01021_item.getColumn(0, "result1"))+ "\n" + "\n"+ "[ Conclusions ]"+ "\n";
- result = result + utlf_transNullToEmpty(ds_main_traoe_01021_item.getColumn(0, "result2"));
-
- ds_main_patinfo_item.setColumn(0, "result_text", result);
- btn_sw1.class = "btn_tab_S";
- btn_sw2.class = "btn_tab";
- btn_sw3.class = "btn_tab";
- switch1.tabindex = 0;
- }
- else if( row > -1 && ds_main_examlist_item.getColumn(row , "table_cd")=="NEURORESULT" )
- {
- send_node_set(row);
- var oParam = {};
- oParam.id = "TRAOE01031";
- oParam.service = "oldexamresultapp.OldExamResult";
- oParam.method = "reqGetOldExamResultList_Common";
- oParam.inds = "req=ds_send";
- oParam.outds = "ds_main_traoe_01031_item=item";
- oParam.async = false;
- //oParam.callback = "cf_TRAOE01031";
- tranf_submit(oParam);
- init_node_set(row);
-
- var result_target = ds_main_patinfo_item;
- var result_source = ds_main_traoe_01031_item;
- result_node_set(result_target, result_source);
-
- var result = "";
- result = "\n"+"[ Patient Comments ]" + "\n" + "\n";
- result = result + utlf_transNullToEmpty(ds_main_traoe_01031_item.getColumn(0, "comments")) + "\n" + "\n"+ "[ Procedure(s) ]"+ "\n";
- result = result + utlf_transNullToEmpty(ds_main_traoe_01031_item.getColumn(0, "procedures")) + "\n" + "\n"+ "[ Findings ]"+ "\n";
- result = result + utlf_transNullToEmpty(ds_main_traoe_01031_item.getColumn(0, "findings")) + "\n" + "\n"+ "[ Conclusions ]"+ "\n";
- result = result + utlf_transNullToEmpty(ds_main_traoe_01031_item.getColumn(0, "conclusions")) + "\n" + "\n"+ "[ Coments ]"+ "\n";
- result = result + utlf_transNullToEmpty(ds_main_traoe_01031_item.getColumn(0, "etc_comment")) + "\n" + "\n"+ "[ Technician ]"+ "\n";
- result = result + utlf_transNullToEmpty(ds_main_traoe_01031_item.getColumn(0, "technician")) + "\n" + "\n"+ "[ Dr.Name ]"+ "\n";
- result = result + utlf_transNullToEmpty(ds_main_traoe_01031_item.getColumn(0, "pandrname"));
-
- ds_main_patinfo_item.setColumn(0, "result_text", result);
- btn_sw1.class = "btn_tab_S";
- btn_sw2.class = "btn_tab";
- btn_sw3.class = "btn_tab";
- }
- else if( row > -1 && ds_main_examlist_item.getColumn(row , "table_cd")=="NEEGRESULT" )
- {
- send_node_set(row);
- var oParam = {};
- oParam.id = "TRAOE01041";
- oParam.service = "oldexamresultapp.OldExamResult";
- oParam.method = "reqGetOldExamResultList_Common";
- oParam.inds = "req=ds_send";
- oParam.outds = "ds_main_traoe_01041_item=item";
- oParam.async = false;
- //oParam.callback = "cf_TRAOE01041";
- tranf_submit(oParam);
-
- if(ds_main_traoe_01041_item.getColumnInfo("sex"))
- {
- ds_main_traoe_01041_item.updateColID("sex", "psex")
- }
- if(ds_main_traoe_01041_item.getColumnInfo("ward"))
- {
- ds_main_traoe_01041_item.updateColID("ward", "wardname")
- }
- if(ds_main_traoe_01041_item.getColumnInfo("drname"))
- {
- ds_main_traoe_01041_item.updateColID("drname", "pandrname")
- }
-
- init_node_set(row);
-
- var result_target = ds_main_patinfo_item;
- var result_source = ds_main_traoe_01041_item;
- result_node_set(result_target, result_source);
-
- var result = "";
- result = "\n"+"[ E.E.G. No ]" + "\n";
- result = result + utlf_transNullToEmpty(ds_main_traoe_01041_item.getColumn(0, "eeg_no")) + "\n"+"\n"+ "[ Previous E.E.G. No ]"+ "\n";
- result = result + utlf_transNullToEmpty(ds_main_traoe_01041_item.getColumn(0, "oldeeg_no")) + "\n"+"\n"+ "[ Date of Previous E.E.G. ]"+ "\n";
- result = result + utlf_transNullToEmpty(ds_main_traoe_01041_item.getColumn(0, "oldeegdate")) + "\n"+"\n"+ "[ Impression ]"+ "\n";
- result = result + utlf_transNullToEmpty(ds_main_traoe_01041_item.getColumn(0, "imp")) + "\n" +"\n"+ "[ Clinical Diagnosis ]" + "\n";
- result = result + utlf_transNullToEmpty(ds_main_traoe_01041_item.getColumn(0, "impresult")) + "\n"+"\n"+ "[ Summary Of Findings ]"+ "\n";
- result = result + utlf_transNullToEmpty(ds_main_traoe_01041_item.getColumn(0, "summary")) + "\n"+ "\n"+"[ Recommendation ]" + "\n";
- result = result + utlf_transNullToEmpty(ds_main_traoe_01041_item.getColumn(0, "recommendation"))+ "\n"+"\n"+ "[ Signature ]"+ "\n";
- result = result + utlf_transNullToEmpty(ds_main_traoe_01041_item.getColumn(0, "pandrname")) + "\n";
-
- ds_main_patinfo_item.setColumn(0, "result_text", result);
- btn_sw1.class = "btn_tab_S";
- btn_sw2.class = "btn_tab";
- btn_sw3.class = "btn_tab";
- }
- else if( row > -1 && ds_main_examlist_item.getColumn(row , "table_cd")=="EEGRESULT" )
- {
- send_node_set(row);
- var oParam = {};
- oParam.id = "TRAOE01051";
- oParam.service = "oldexamresultapp.OldExamResult";
- oParam.method = "reqGetOldExamResultList_Common";
- oParam.inds = "req=ds_send";
- oParam.outds = "ds_main_traoe_01051_item=item";
- oParam.async = false;
- //oParam.callback = "cf_TRAOE01051";
- tranf_submit(oParam);
- if(ds_main_traoe_01051_item.getColumnInfo("sex"))
- {
- ds_main_traoe_01051_item.updateColID("sex", "psex")
- }
- if(ds_main_traoe_01051_item.getColumnInfo("ward"))
- {
- ds_main_traoe_01051_item.updateColID("ward", "wardname")
- }
- if(ds_main_traoe_01051_item.getColumnInfo("drname"))
- {
- ds_main_traoe_01051_item.updateColID("drname", "pandrname")
- }
-
- init_node_set(row);
-
- var result_target = ds_main_patinfo_item
- var result_source = ds_main_traoe_01051_item;
- result_node_set(result_target, result_source);
-
- var result = "";
- result = "\n"+"[ E.E.G. No ]" + "\n";
- result = result + utlf_transNullToEmpty(ds_main_traoe_01051_item.getColumn(0, "eeg_no")) + "\n"+"\n"+ "[ Previous E.E.G. No ]"+ "\n";
- result = result + utlf_transNullToEmpty(ds_main_traoe_01051_item.getColumn(0, "oldeegno")) + "\n" +"\n"+ "[ Electrodes ]" + "\n";
- result = result + utlf_transNullToEmpty(ds_main_traoe_01051_item.getColumn(0, "electrodes"))+ "\n"+"\n"+ "[ Impresult ]"+ "\n";
- result = result + utlf_transNullToEmpty(ds_main_traoe_01051_item.getColumn(0, "impresult")) + "\n" +"\n"+ "[ Dr. ]" + "\n";
- result = result + utlf_transNullToEmpty(ds_main_traoe_01051_item.getColumn(0, "pandrname"));
-
- ds_main_patinfo_item.setColumn(0, "result_text", result);
- btn_sw1.class = "btn_tab_S";
- btn_sw2.class = "btn_tab";
- btn_sw3.class = "btn_tab";
- switch1.tabindex = 0;
-
- }
- else if( row > -1 && ds_main_examlist_item.getColumn(row , "table_cd")=="ELECTRORT_SEC" )
- {
- switch1.case3.iviewer1.url = "";
- send_node_set(row);
- var oParam = {};
- oParam.id = "TRAOE01061";
- oParam.service = "oldexamresultapp.OldExamResult";
- oParam.method = "reqGetoldexamresult_06_1";
- oParam.inds = "req=ds_send";
- oParam.outds = "ds_main_traoe_01061_item=item";
- oParam.async = false;
- //oParam.callback = "cf_TRAOE01061";
- tranf_submit(oParam);
- init_node_set(row);
-
- var result_target = ds_main_patinfo_item;
- var result_source = ds_main_traoe_01061_item;
- result_node_set(result_target, result_source);
-
- switch1.case3.iviewer1.url = "ast_oldexamresultxp::SMAOE01061_신경과근전도검사.xfdl";
-
- //switch1.case3.iviewer1.swt_judg.tabindex = 0;
- btn_sw1.class = "btn_tab";
- btn_sw2.class = "btn_tab";
- btn_sw3.class = "btn_tab_S";
- switch1.tabindex = 2;
- }
- else if( row > -1 && ds_main_examlist_item.getColumn(row , "table_cd")=="ELECTRORT1" )
- {
- switch1.case3.iviewer1.url = "";
- send_node_set(row);
- var oParam = {};
- oParam.id = "TRAOE01071";
- oParam.service = "oldexamresultapp.OldExamResult";
- oParam.method = "reqGetoldexamresult_07_1";
- oParam.inds = "req=ds_send";
- oParam.outds = "ds_main_traoe_01071_item=item";
- oParam.async = false;
- //oParam.callback = "cf_TRAOE01071";
- tranf_submit(oParam);
-
- if(ds_main_traoe_01071_item.getColumnInfo("deptname"))
- {
- ds_main_traoe_01071_item.updateColID("deptname", "obdeptname")
- }
- if(ds_main_traoe_01071_item.getColumnInfo("drname"))
- {
- ds_main_traoe_01071_item.updateColID("drname", "obdrname")
- }
- if(ds_main_traoe_01071_item.getColumnInfo("sex"))
- {
- ds_main_traoe_01071_item.updateColID("sex", "psex")
- }
- if(ds_main_traoe_01071_item.getColumnInfo("name"))
- {
- ds_main_traoe_01071_item.updateColID("name", "pname")
- }
- if(ds_main_traoe_01071_item.getColumnInfo("panname"))
- {
- ds_main_traoe_01071_item.updateColID("panname", "pandrname")
- }
-
- init_node_set(row);
-
- var result_target = ds_main_patinfo_item;
- var result_source = ds_main_traoe_01071_item;
- result_node_set(result_target, result_source);
-
- switch1.case3.iviewer1.url = "ast_oldexamresultxp::SMAOE01071_신경과근전도검사.xfdl";
-
- //switch1.case3.iviewer1.swt_judg.tabindex = 0;
- btn_sw1.class = "btn_tab";
- btn_sw2.class = "btn_tab";
- btn_sw3.class = "btn_tab_S";
- switch1.tabindex = 2;
-
- ds_tmp.clearData();
-
- // var srcPath = switch1.case3.iviewer1.ds_main.model.instance1.selectSingleNode("/root/main");
- // if(srcPath != null){
- // model.copyNode("/root/tmp", srcPath);
- // }
- }
- else if( row > -1 && ds_main_examlist_item.getColumn(row , "table_cd")=="ELECTRORT2" )
- {
- switch1.case3.iviewer1.url = "";
- send_node_set(row);
- var oParam = {};
- oParam.id = "TRAOE01081";
- oParam.service = "oldexamresultapp.OldExamResult";
- oParam.method = "reqGetoldexamresult_08_1";
- oParam.inds = "req=ds_send";
- oParam.outds = "ds_main_traoe_01081_item=item";
- oParam.async = false;
- //oParam.callback = "cf_TRAOE01081";
- tranf_submit(oParam);
-
- if(ds_main_traoe_01081_item.getColumnInfo("deptname"))
- {
- ds_main_traoe_01081_item.updateColID("deptname", "obdeptname")
- }
- if(ds_main_traoe_01081_item.getColumnInfo("drname"))
- {
- ds_main_traoe_01081_item.updateColID("drname", "obdrname")
- }
- if(ds_main_traoe_01081_item.getColumnInfo("sex"))
- {
- ds_main_traoe_01081_item.updateColID("sex", "psex")
- }
- if(ds_main_traoe_01081_item.getColumnInfo("name"))
- {
- ds_main_traoe_01081_item.updateColID("name", "pname")
- }
- if(ds_main_traoe_01081_item.getColumnInfo("panname"))
- {
- ds_main_traoe_01081_item.updateColID("panname", "pandrname")
- }
-
- init_node_set(row);
-
- var result_target = ds_main_patinfo_item;
- var result_source = ds_main_traoe_01081_item;
- result_node_set(result_target, result_source);
-
- switch1.case3.iviewer1.url = "ast_oldexamresultxp::SMAOE01081_신경과근전도검사.xfdl";
-
- //switch1.case3.iviewer1.swt_judg.tabindex = 0;
- btn_sw1.class = "btn_tab";
- btn_sw2.class = "btn_tab";
- btn_sw3.class = "btn_tab_S";
- switch1.tabindex = 2;
- }
- else if( row > -1 && ds_main_examlist_item.getColumn(row , "table_cd")=="DSHMASTER1" )
- {
- switch1.case3.iviewer1.url = "";
- send_node_set(row);
- var oParam = {};
- oParam.id = "TRAOE01091";
- oParam.service = "oldexamresultapp.OldExamResult";
- oParam.method = "reqGetoldexamresult_09_1";
- oParam.inds = "req=ds_send";
- oParam.outds = "ds_main_traoe_01091_item=item";
- oParam.async = false;
- //oParam.callback = "cf_TRAOE01091";
- tranf_submit(oParam);
- init_node_set(row);
-
- var result_target = ds_main_patinfo_item;
- var result_source = ds_main_traoe_01091_item;
- result_node_set(result_target, result_source);
-
- switch1.case3.iviewer1.url = "ast_oldexamresultxp::SMAOE01091_뇌혈류검사실.xfdl";
-
- //switch1.case3.iviewer1.swt_judg.tabindex = 0;
- btn_sw1.class = "btn_tab";
- btn_sw2.class = "btn_tab";
- btn_sw3.class = "btn_tab_S";
- switch1.tabindex = 2;
- }
- else if( row > -1 && ds_main_examlist_item.getColumn(row , "table_cd")=="WE" )
- {
- send_node_set(row);
- var oParam = {};
- oParam.id = "TRAOE01101";
- oParam.service = "oldexamresultapp.OldExamResult";
- oParam.method = "reqGetOldExamResultList_Common";
- oParam.inds = "req=ds_send";
- oParam.outds = "ds_main_traoe_01101_item=item";
- oParam.async = false;
- //oParam.callback = "cf_TRAOE01101";
- tranf_submit(oParam);
-
- if(ds_main_traoe_01101_item.getColumnInfo("deptname"))
- {
- ds_main_traoe_01101_item.updateColID("deptname", "obdeptname")
- }
- if(ds_main_traoe_01101_item.getColumnInfo("drname"))
- {
- ds_main_traoe_01101_item.updateColID("drname", "obdrname")
- }
- if(ds_main_traoe_01101_item.getColumnInfo("sex"))
- {
- ds_main_traoe_01101_item.updateColID("sex", "psex")
- }
-
- init_node_set(row);
-
- var result_target = ds_main_patinfo_item;
- var result_source = ds_main_traoe_01101_item;
- result_node_set(result_target, result_source);
-
- var result = "";
- result = "\n"+"[ 검사번호 ]" + "\n";
- result = result + utlf_transNullToEmpty(ds_main_traoe_01101_item.getColumn(0, "tno")) + "\n"+"\n"+ "[ 주소 ]"+ "\n";
- result = result + utlf_transNullToEmpty(ds_main_traoe_01101_item.getColumn(0, "addr")) + "\n"+"\n"+ "[ 전화번호 ]"+ "\n";
- result = result + utlf_transNullToEmpty(ds_main_traoe_01101_item.getColumn(0, "phone")) + "\n" +"\n"+ "[ 검사일 ]" + "\n";
- result = result + utlf_transNullToEmpty(ds_main_traoe_01101_item.getColumn(0, "mdate")) + "\n"+"\n"+ "[ 술전 진단명 ]"+ "\n";
- result = result + utlf_transNullToEmpty(ds_main_traoe_01101_item.getColumn(0, "symp")) + "\n" +"\n"+ "[ 주증상 ]" + "\n";
- result = result + utlf_transNullToEmpty(ds_main_traoe_01101_item.getColumn(0, "disease")) + "\n" +"\n"+ "[ Levl of insertion ]" + "\n";
- result = result + utlf_transNullToEmpty(ds_main_traoe_01101_item.getColumn(0, "inser")) + "\n" +"\n"+ "[ Model of endoscope ]" + "\n";
- result = result + utlf_transNullToEmpty(ds_main_traoe_01101_item.getColumn(0, "endo")) + "\n" +"\n"+ "[ Esophagus ]" + "\n";
- result = result + utlf_transNullToEmpty(ds_main_traoe_01101_item.getColumn(0, "tx1")) + "\n" +"\n"+ "[ Stomach ]" + "\n";
- result = result + utlf_transNullToEmpty(ds_main_traoe_01101_item.getColumn(0, "tx2")) + "\n" +"\n"+ "[ Duodenum ]" + "\n";
- result = result + utlf_transNullToEmpty(ds_main_traoe_01101_item.getColumn(0, "tx3")) + "\n" +"\n"+ "[ Sedation ]" + "\n";
- result = result + utlf_transNullToEmpty(ds_main_traoe_01101_item.getColumn(0, "sedation")) + "\n" +"\n"+ "[ Impression ]" + "\n";
- result = result + utlf_transNullToEmpty(ds_main_traoe_01101_item.getColumn(0, "imp")) + "\n" +"\n";
-
- if(ds_main_traoe_01101_item.getColumn(0, "reflux")=='Y')
- {
- result = result + "(V)Reflux esophagitis" +"\n";
- }
- else
- {
- result = result + "( )Reflux esophagitis" +"\n";
- }
-
- if(ds_main_traoe_01101_item.getColumn(0, "barrett")=='Y')
- {
- result = result + "(V)Barrett's esophagus" +"\n";
- }
- else
- {
- result = result + "( )Barrett's esophagus" +"\n";
- }
-
- if(ds_main_traoe_01101_item.getColumn(0, "activeuker")=='Y')
- {
- result = result + "(V)Active or healing ulcer" +"\n";
- }
- else
- {
- result = result + "( )Active or healing ulcer" +"\n";
- }
-
- if(ds_main_traoe_01101_item.getColumn(0, "gastrifis")=='Y')
- {
- result = result + "(V)Gastritis or duodentis" +"\n";
- }
- else
- {
- result = result + "( )Gastritis or duodentis" +"\n";
- }
-
- if(ds_main_traoe_01101_item.getColumn(0, "normal")=='Y')
- {
- result = result + "(V)기타" + "\n" +"\n"+ "[ Procedure ]" + "\n";
- }
- else
- {
- result = result + "( )기타" + "\n" +"\n"+ "[ Procedure ]" + "\n";
- }
-
- result = result + utlf_transNullToEmpty(ds_main_traoe_01101_item.getColumn(0, "pro")) + "\n" +"\n"+ "[ Recommendation ]" + "\n";
- result = result + utlf_transNullToEmpty(ds_main_traoe_01101_item.getColumn(0, "recom")) + "\n" +"\n"+ "[ 시술자 ]" + "\n";
- result = result + utlf_transNullToEmpty(ds_main_traoe_01101_item.getColumn(0, "urname")) + "\n";
-
- ds_main_patinfo_item.setColumn(0, "result_text", result);
-
- btn_sw1.class = "btn_tab_S";
- btn_sw2.class = "btn_tab";
- btn_sw3.class = "btn_tab";
-
- switch1.tabindex = 0;
- }
- else if( row > -1 && ds_main_examlist_item.getColumn(row , "table_cd")=="WE_LOWER" )
- {
- send_node_set(row);
- var oParam = {};
- oParam.id = "TRAOE01102";
- oParam.service = "oldexamresultapp.OldExamResult";
- oParam.method = "reqGetOldExamResultList_Common";
- oParam.inds = "req=ds_send";
- oParam.outds = "ds_main_traoe_01102_item=item";
- oParam.async = false;
- //oParam.callback = "cf_TRAOE01102";
- tranf_submit(oParam);
-
- if(ds_main_traoe_01102_item.getColumnInfo("deptname"))
- {
- ds_main_traoe_01102_item.updateColID("deptname", "obdeptname")
- }
- if(ds_main_traoe_01102_item.getColumnInfo("drname"))
- {
- ds_main_traoe_01102_item.updateColID("drname", "obdrname")
- }
- if(ds_main_traoe_01102_item.getColumnInfo("sex"))
- {
- ds_main_traoe_01102_item.updateColID("sex", "psex")
- }
-
- init_node_set(row);
-
- var result_target = ds_main_patinfo_item;
- var result_source = ds_main_traoe_01102_item
- result_node_set(result_target, result_source);
-
- var result = "";
- result = "\n"+"[ 검사번호 ]" + "\n";
- result = result + utlf_transNullToEmpty(ds_main_traoe_01102_item.getColumn(0, "tno")) + "\n" +"\n"+ "[ 주소 ]" + "\n";
- result = result + utlf_transNullToEmpty(ds_main_traoe_01102_item.getColumn(0, "addr")) + "\n" +"\n"+ "[ 전화번호 ]" + "\n";
- result = result + utlf_transNullToEmpty(ds_main_traoe_01102_item.getColumn(0, "phone")) + "\n" +"\n"+ "[ 검사일 ]" + "\n";
- result = result + utlf_transNullToEmpty(ds_main_traoe_01102_item.getColumn(0, "mdate")) + "\n" +"\n"+ "[ 술전 진단명 ]" + "\n";
- result = result + utlf_transNullToEmpty(ds_main_traoe_01102_item.getColumn(0, "symp")) + "\n" +"\n"+ "[ 주증상 ]" + "\n";
- result = result + utlf_transNullToEmpty(ds_main_traoe_01102_item.getColumn(0, "disease")) + "\n" +"\n"+ "[ Level of inserttion ]" + "\n";
- result = result + utlf_transNullToEmpty(ds_main_traoe_01102_item.getColumn(0, "inser")) + "\n" +"\n"+ "[ Model of endoscope ]" + "\n";
- result = result + utlf_transNullToEmpty(ds_main_traoe_01102_item.getColumn(0, "endo")) + "\n" +"\n"+ "[ Lumen ]" + "\n";
- result = result + utlf_transNullToEmpty(ds_main_traoe_01102_item.getColumn(0, "lumen")) + "\n" +"\n"+ "[ Content ]" + "\n";
- result = result + utlf_transNullToEmpty(ds_main_traoe_01102_item.getColumn(0, "cont")) + "\n" +"\n"+ "[ Terminal ileum ]" + "\n";
- result = result + utlf_transNullToEmpty(ds_main_traoe_01102_item.getColumn(0, "ileum")) + "\n" +"\n"+ "[ Colon ]" + "\n";
- result = result + utlf_transNullToEmpty(ds_main_traoe_01102_item.getColumn(0, "colon")) + "\n" +"\n"+ "[ Anorectum ]" + "\n";
- result = result + utlf_transNullToEmpty(ds_main_traoe_01102_item.getColumn(0, "anorec")) + "\n" +"\n"+ "[ Sedation ]" + "\n";
- result = result + utlf_transNullToEmpty(ds_main_traoe_01102_item.getColumn(0, "sedation")) + "\n" +"\n"+ "[ Impression ]" + "\n";
- result = result + utlf_transNullToEmpty(ds_main_traoe_01102_item.getColumn(0, "imp")) + "\n" +"\n"+ "[ Procedure ]" + "\n";
- result = result + utlf_transNullToEmpty(ds_main_traoe_01102_item.getColumn(0, "pro")) + "\n" +"\n"+ "[ Recommendation ]" + "\n";
- result = result + utlf_transNullToEmpty(ds_main_traoe_01102_item.getColumn(0, "recom")) + "\n" +"\n"+ "[ 시술자 ]" + "\n";
- result = result + utlf_transNullToEmpty(ds_main_traoe_01102_item.getColumn(0, "urname")) + "\n";
-
- ds_main_patinfo_item.setColumn(0, "result_text", result);
-
- btn_sw1.class = "btn_tab_S";
- btn_sw2.class = "btn_tab";
- btn_sw3.class = "btn_tab";
-
- switch1.tabindex = 0;
- }
- else if( row > -1 && ds_main_examlist_item.getColumn(row , "table_cd")=="WE_CHO" )
- {
- send_node_set(row);
- var oParam = {};
- oParam.id = "TRAOE01103";
- oParam.service = "oldexamresultapp.OldExamResult";
- oParam.method = "reqGetOldExamResultList_Common";
- oParam.inds = "req=ds_send";
- oParam.outds = "ds_main_traoe_01103_item=item";
- oParam.async = false;
- //oParam.callback = "cf_TRAOE01103";
- tranf_submit(oParam);
-
- if(ds_main_traoe_01103_item.getColumnInfo("deptname"))
- {
- ds_main_traoe_01103_item.updateColID("deptname", "obdeptname")
- }
- if(ds_main_traoe_01103_item.getColumnInfo("drname"))
- {
- ds_main_traoe_01103_item.updateColID("drname", "obdrname")
- }
- if(ds_main_traoe_01103_item.getColumnInfo("sex"))
- {
- ds_main_traoe_01103_item.updateColID("sex", "psex")
- }
-
- init_node_set(row);
-
- var result_target = ds_main_patinfo_item;
- var result_source = ;ds_main_traoe_01103_item;
- result_node_set(result_target, result_source);
-
- var result = "";
- result = "\n"+"[ 검사번호 ]" + "\n";
- result = result + utlf_transNullToEmpty(ds_main_traoe_01103_item.getColumn(0, "tno")) + "\n" +"\n"+ "[ 주소 ]"+ "\n";
- result = result + utlf_transNullToEmpty(ds_main_traoe_01103_item.getColumn(0, "addr")) + "\n" +"\n"+ "[ 전화번호 ]"+ "\n";
- result = result + utlf_transNullToEmpty(ds_main_traoe_01103_item.getColumn(0, "phone")) + "\n" +"\n"+ "[ 검사일 ]" + "\n";
- result = result + utlf_transNullToEmpty(ds_main_traoe_01103_item.getColumn(0, "mdate")) + "\n" +"\n"+ "[ 술전 진단명 ]"+ "\n";
- result = result + utlf_transNullToEmpty(ds_main_traoe_01103_item.getColumn(0, "symp")) + "\n" +"\n"+ "[ 주증상 ]" + "\n";
- result = result + utlf_transNullToEmpty(ds_main_traoe_01103_item.getColumn(0, "disease")) + "\n" +"\n"+ "[ Level of insertion ]" + "\n";
- result = result + utlf_transNullToEmpty(ds_main_traoe_01103_item.getColumn(0, "inser")) + "\n" +"\n"+ "[ Model of endoscope ]" + "\n";
- result = result + utlf_transNullToEmpty(ds_main_traoe_01103_item.getColumn(0, "endo")) + "\n" +"\n"+ "[ Esophagus ]" + "\n";
- result = result + utlf_transNullToEmpty(ds_main_traoe_01103_item.getColumn(0, "esophagus")) + "\n" +"\n"+ "[ Stomach ]" + "\n";
- result = result + utlf_transNullToEmpty(ds_main_traoe_01103_item.getColumn(0, "stomach")) + "\n" +"\n"+ "[ Pancresto-Biliary ]" + "\n";
- result = result + utlf_transNullToEmpty(ds_main_traoe_01103_item.getColumn(0, "pancreato")) + "\n" +"\n"+ "[ Sedation ]" + "\n";
- result = result + utlf_transNullToEmpty(ds_main_traoe_01103_item.getColumn(0, "sedation")) + "\n" +"\n"+ "[ Impression ]" + "\n";
- result = result + utlf_transNullToEmpty(ds_main_traoe_01103_item.getColumn(0, "imp")) + "\n" +"\n"+ "[ Procedure ]" + "\n";
- result = result + utlf_transNullToEmpty(ds_main_traoe_01103_item.getColumn(0, "pro")) + "\n" +"\n"+ "[ Recommendation ]" + "\n";
- result = result + utlf_transNullToEmpty(ds_main_traoe_01103_item.getColumn(0, "recom")) + "\n" +"\n"+ "[ 시술자 ]" + "\n";
- result = result + utlf_transNullToEmpty(ds_main_traoe_01103_item.getColumn(0, "urname")) + "\n";
-
- ds_main_patinfo_item.setColumn(0, "result_text", result);
-
- btn_sw1.class = "btn_tab_S";
- btn_sw2.class = "btn_tab";
- btn_sw3.class = "btn_tab";
-
- switch1.tabindex = 0;
- }
- else if( row > -1 && ds_main_examlist_item.getColumn(row , "table_cd")=="WE_RFA" )
- {
- send_node_set(row);
- var oParam = {};
- oParam.id = "TRAOE01104";
- oParam.service = "oldexamresultapp.OldExamResult";
- oParam.method = "reqGetOldExamResultList_Common";
- oParam.inds = "req=ds_send";
- oParam.outds = "ds_main_traoe_01104_item=item ds_main_traoe_01104_item2=item2";
- oParam.async = false;
- //oParam.callback = "cf_TRAOE01104";
- tranf_submit(oParam);
-
- if(ds_main_traoe_01104_item.getColumnInfo("deptname"))
- {
- ds_main_traoe_01104_item.updateColID("deptname", "obdeptname")
- }
- if(ds_main_traoe_01104_item.getColumnInfo("drname"))
- {
- ds_main_traoe_01104_item.updateColID("drname", "obdrname")
- }
- if(ds_main_traoe_01104_item.getColumnInfo("sex"))
- {
- ds_main_traoe_01104_item.updateColID("sex", "psex")
- }
-
- init_node_set(row);
-
- var result_target = ds_main_patinfo_item;
- var result_source = ds_main_traoe_01104_item;
- result_node_set(result_target, result_source);
-
- var result = "";
- result = "\n"+"[ 검사번호 ]" + "\n";
- result = result + utlf_transNullToEmpty(ds_main_traoe_01104_item.getColumn(0, "tno")) + "\n" +"\n"+ "[ 주소 ]"+ "\n";
- result = result + utlf_transNullToEmpty(ds_main_traoe_01104_item.getColumn(0, "addr")) + "\n" +"\n"+ "[ 전화번호 ]"+ "\n";
- result = result + utlf_transNullToEmpty(ds_main_traoe_01104_item.getColumn(0, "phone")) + "\n" +"\n"+ "[ 검사일 ]" + "\n";
- result = result + utlf_transNullToEmpty(ds_main_traoe_01104_item.getColumn(0, "mdate")) + "\n" +"\n"+ "[ 술전 진단명 ]"+ "\n";
- result = result + utlf_transNullToEmpty(ds_main_traoe_01104_item.getColumn(0, "symp")) + "\n" +"\n"+ "[ Reason ]" + "\n";
- result = result + utlf_transNullToEmpty(ds_main_traoe_01104_item.getColumn(0, "disease")) + "\n" +"\n"+ "[ Mode ]" + "\n";
- result = result + utlf_transNullToEmpty(ds_main_traoe_01104_item.getColumn(0, "modedesc")) + "\n" +"\n"+ "[ Pre-RFA INFORMATION ]" + "\n" + "\n";
- result = result + "RFA 시술이 몇 번째인가? " + utlf_transNullToEmpty(ds_main_traoe_01104_item.getColumn(0, "rfacnt")) + " "+ "Pre RFA TACE? " + utlf_transNullToEmpty(ds_main_traoe_01104_item.getColumn(0, "prerfa"))+ "\n";
- result = result + "Ascites? " + utlf_transNullToEmpty(ds_main_traoe_01104_item.getColumn(0, "ascitesflag")) + " "+ utlf_transNullToEmpty(ds_main_traoe_01104_item.getColumn(0, "ascites"));
- result = result + " " + "Pleural effusion? " + utlf_transNullToEmpty(ds_main_traoe_01104_item.getColumn(0, "pleuralflag")) + " "+ utlf_transNullToEmpty(ds_main_traoe_01104_item.getColumn(0, "pleural")) + "\n";
- result = result + "IP Saline? " + utlf_transNullToEmpty(ds_main_traoe_01104_item.getColumn(0, "intra_abd")) + " "+ utlf_transNullToEmpty(ds_main_traoe_01104_item.getColumn(0, "intra_abd_y"));
- result = result + " "+ "Background biopsy? " + utlf_transNullToEmpty(ds_main_traoe_01104_item.getColumn(0, "bbiopsyflag")) + "\n";
- result = result + "Number of Nodule? " + utlf_transNullToEmpty(ds_main_traoe_01104_item.getColumn(0, "nodulecnt")) + " "+ "Model of Device? " + "\n";
-
- for(var i = 0; i < 6 && !utlf_isNull(ds_main_traoe_01104_item2.getColumn(i, "cno")); i++)
- {
- result=result + utlf_transNullToEmpty(ds_main_traoe_01104_item2.getColumn(i, "cno")) + " 1) Site(위치) : " + utlf_transNullToEmpty(ds_main_traoe_01104_item2.getColumn(i, "site"))
- + "\n" +" 2) Size : " + utlf_transNullToEmpty(ds_main_traoe_01104_item2.getColumn(i, "size1")) + "\n";
- result=result +" 3) Surface : " + utlf_transNullToEmpty(ds_main_traoe_01104_item2.getColumn(i, "surface")) + "\n"
- +" 4) Biopsy : " + utlf_transNullToEmpty(ds_main_traoe_01104_item2.getColumn(i, "biopsy")) + "\n";
- result=result +" 5) Ablation 횟수 : "+ utlf_transNullToEmpty(ds_main_traoe_01104_item2.getColumn(i, "abl")) + "\n"
- +" 6) Intra : " + utlf_transNullToEmpty(ds_main_traoe_01104_item2.getColumn(i, "intra_les")) + "\n";
- result=result +" 7) DeviceName : " + utlf_transNullToEmpty(ds_main_traoe_01104_item2.getColumn(i, "devicename")) + "\n"
- +" 8) Tissue : " + utlf_transNullToEmpty(ds_main_traoe_01104_item2.getColumn(i, "tissue")) + "\n";
- result=result +" 9) Vessel : " + utlf_transNullToEmpty(ds_main_traoe_01104_item2.getColumn(i, "vessel")) + "\n"+ "\n";
- }
-
- result = result + "[ Conclusion ]" + utlf_transNullToEmpty(ds_main_traoe_01104_item.getColumn(0, "conclusion")) + "\n" + "\n";
- result = result + "[ 시술자 ]" + utlf_transNullToEmpty(ds_main_traoe_01104_item.getColumn(0, "urname")) + "\n";
- ds_main_patinfo_item.setColumn(0, "result_text", result);
-
- btn_sw1.class = "btn_tab_S";
- btn_sw2.class = "btn_tab";
- btn_sw3.class = "btn_tab";
-
- switch1.tabindex = 0;
- }
- else if( row > -1 && ds_main_examlist_item.getColumn(row , "table_cd")=="WE_ERCP" )
- {
- send_node_set(row);
- var oParam = {};
- oParam.id = "TRAOE01105";
- oParam.service = "oldexamresultapp.OldExamResult";
- oParam.method = "reqGetOldExamResultList_Common";
- oParam.inds = "req=ds_send";
- oParam.outds = "ds_main_traoe_01105_item=item";
- oParam.async = false;
- //oParam.callback = "cf_TRAOE01105";
- tranf_submit(oParam);
- if(ds_main_traoe_01105_item.getColumnInfo("deptname"))
- {
- ds_main_traoe_01105_item.updateColID("deptname", "obdeptname")
- }
- if(ds_main_traoe_01105_item.getColumnInfo("drname"))
- {
- ds_main_traoe_01105_item.updateColID("drname", "obdrname")
- }
- if(ds_main_traoe_01105_item.getColumnInfo("sex"))
- {
- ds_main_traoe_01105_item.updateColID("sex", "psex")
- }
-
- init_node_set(row);
-
- var result_target = ds_main_patinfo_item;
- var result_source = ds_main_traoe_01105_item;
- result_node_set(result_target, result_source);
-
- var result = "";
- result = "\n"+"[ 검사번호 ]" + "\n";
- result = result + utlf_transNullToEmpty(ds_main_traoe_01105_item.getColumn(0, "tno")) + "\n" +"\n"+ "[ 주소 ]"+ "\n";
- result = result + utlf_transNullToEmpty(ds_main_traoe_01105_item.getColumn(0, "addr")) + "\n" +"\n"+ "[ 전화번호 ]"+ "\n";
- result = result + utlf_transNullToEmpty(ds_main_traoe_01105_item.getColumn(0, "phone")) + "\n" +"\n"+ "[ 검사일 ]" + "\n";
- result = result + utlf_transNullToEmpty(ds_main_traoe_01105_item.getColumn(0, "mdate")) + "\n" +"\n"+ "[ 술전 진단명 ]"+ "\n";
- result = result + utlf_transNullToEmpty(ds_main_traoe_01105_item.getColumn(0, "symp")) + "\n" +"\n"+ "[ 주증상 ]" + "\n";
- result = result + utlf_transNullToEmpty(ds_main_traoe_01105_item.getColumn(0, "disease")) + "\n" +"\n"+ "[ Visualizatioin ]" + "\n";
- result = result + utlf_transNullToEmpty(ds_main_traoe_01105_item.getColumn(0, "inser")) + "\n" +"\n"+ "[ Model of endoscope ]" + "\n";
- result = result + utlf_transNullToEmpty(ds_main_traoe_01105_item.getColumn(0, "endo")) + "\n" +"\n"+ "[ Endoscopic Findings ]" + "\n" + "[ Duodenal wall ] " + "\n";
- result = result + utlf_transNullToEmpty(ds_main_traoe_01105_item.getColumn(0, "sdp")) + "\n" +"\n"+ "[ Papilla major ]" + "\n";
- result = result + utlf_transNullToEmpty(ds_main_traoe_01105_item.getColumn(0, "soao")) + "\n" +"\n"+ "[ Papilla minor ]" + "\n";
- result = result + utlf_transNullToEmpty(ds_main_traoe_01105_item.getColumn(0, "aov")) + "\n" +"\n"+ "[ ERCP Findings ]" + "\n" + "[ Cholangiogram ]" + "\n";
- result = result + utlf_transNullToEmpty(ds_main_traoe_01105_item.getColumn(0, "duo")) + "\n" +"\n"+ "[ GB ]" + "\n";
- result = result + utlf_transNullToEmpty(ds_main_traoe_01105_item.getColumn(0, "mbd")) + "\n" +"\n"+ "[ Pancreatogram ]" + "\n";
- result = result + utlf_transNullToEmpty(ds_main_traoe_01105_item.getColumn(0, "cyd")) + "\n" +"\n"+ "[ Others ]" + "\n";
- result = result + utlf_transNullToEmpty(ds_main_traoe_01105_item.getColumn(0, "bif")) + "\n" +"\n"+ "[ Sedation ]" + "\n";
- result = result + utlf_transNullToEmpty(ds_main_traoe_01105_item.getColumn(0, "sedation")) + "\n" +"\n"+ "[ Impression ]" + "\n";
- result = result + utlf_transNullToEmpty(ds_main_traoe_01105_item.getColumn(0, "imp")) + "\n" +"\n"+ "[ Procedure ]" + "\n";
- result = result + utlf_transNullToEmpty(ds_main_traoe_01105_item.getColumn(0, "pro")) + "\n" +"\n"+ "[ Recommendation ]" + "\n";
- result = result + utlf_transNullToEmpty(ds_main_traoe_01105_item.getColumn(0, "recom")) + "\n" +"\n"+ "[ 시술자 : Dr. ]" + "\n";
- result = result + utlf_transNullToEmpty(ds_main_traoe_01105_item.getColumn(0, "urname")) + "\n";
-
- ds_main_patinfo_item.setColumn(0, "result_text", result);
-
- btn_sw1.class = "btn_tab_S";
- btn_sw2.class = "btn_tab";
- btn_sw3.class = "btn_tab";
-
- switch1.tabindex = 0;
- }
- else if( row > -1 && ds_main_examlist_item.getColumn(row , "table_cd")=="ECP")
- {
- send_node_set(row);
- var oParam = {};
- oParam.id = "TRAOE01111";
- oParam.service = "oldexamresultapp.OldExamResult";
- oParam.method = "reqGetOldExamResultList_Common";
- oParam.inds = "req=ds_send";
- oParam.outds = "ds_main_traoe_01111_item=item";
- oParam.async = false;
- //oParam.callback = "cf_TRAOE01111";
- tranf_submit(oParam);
-
- if(ds_main_traoe_01111_item.getColumnInfo("dept"))
- {
- ds_main_traoe_01111_item.updateColID("dept", "obdeptname")
- }
- if(ds_main_traoe_01111_item.getColumnInfo("ward"))
- {
- ds_main_traoe_01111_item.updateColID("ward", "wardname")
- }
- if(ds_main_traoe_01111_item.getColumnInfo("sex"))
- {
- ds_main_traoe_01111_item.updateColID("sex", "psex")
- }
-
- init_node_set(row);
-
- var result_target = ds_main_patinfo_item;
- var result_source = ds_main_traoe_01111_item;
-
- result_node_set(result_target, result_source);
-
- var result = "";
- result = "\n"+"[ Date ]" + "\n";
- result = result + utlf_transNullToEmpty(ds_main_traoe_01111_item.getColumn(0, "totaldate")) + "\n" +"\n"+ "[ No ]"+ "\n";
- result = result + utlf_transNullToEmpty(ds_main_traoe_01111_item.getColumn(0, "total_ige_no")) + "\n" +"\n"+ " ECP ";
- result = result + utlf_transNullToEmpty(ds_main_traoe_01111_item.getColumn(0, "result1")) + " Ug/l" + "\n";
-
- ds_main_patinfo_item.setColumn(0, "result_text", result);
-
- btn_sw1.class = "btn_tab_S";
- btn_sw2.class = "btn_tab";
- btn_sw3.class = "btn_tab";
-
- switch1.tabindex = 0;
- }
- else if( row > -1 && ds_main_examlist_item.getColumn(row , "table_cd")=="TOTAL_IGE")
- {
- send_node_set(row);
- var oParam = {};
- oParam.id = "TRAOE01112";
- oParam.service = "oldexamresultapp.OldExamResult";
- oParam.method = "reqGetOldExamResultList_Common";
- oParam.inds = "req=ds_send";
- oParam.outds = "ds_main_traoe_01112_item=item";
- oParam.async = false;
- //oParam.callback = "cf_TRAOE01112";
- tranf_submit(oParam);
-
- if(ds_main_traoe_01112_item.getColumnInfo("dept"))
- {
- ds_main_traoe_01112_item.updateColID("dept", "obdeptname")
- }
- if(ds_main_traoe_01112_item.getColumnInfo("ward"))
- {
- ds_main_traoe_01112_item.updateColID("ward", "wardname")
- }
- if(ds_main_traoe_01112_item.getColumnInfo("sex"))
- {
- ds_main_traoe_01112_item.updateColID("sex", "psex")
- }
-
- init_node_set(row);
-
- var result_target = ds_main_patinfo_item;
- var result_source = ds_main_traoe_01112_item;
- result_node_set(result_target, result_source);
-
- var result = "";
- result = "\n"+"[ Date ]" + "\n";
- result = result + utlf_transNullToEmpty(ds_main_traoe_01112_item.getColumn(0, "totaldate")) + "\n" +"\n"+ "[ No ]"+ "\n";
- result = result + utlf_transNullToEmpty(ds_main_traoe_01112_item.getColumn(0, "total_ige_no")) + "\n" +"\n"+ " Total Ige(EA) ";
- result = result + utlf_transNullToEmpty(ds_main_traoe_01112_item.getColumn(0, "result1")) + " Ku/l" + "\n";
-
- ds_main_patinfo_item.setColumn(0, "result_text", result);
-
- btn_sw1.class = "btn_tab_S";
- btn_sw2.class = "btn_tab";
- btn_sw3.class = "btn_tab";
-
- switch1.tabindex = 0;
- }
- else if( row > -1 && ds_main_examlist_item.getColumn(row , "table_cd")=="MAST3RESULT")
- {
- datagrid_init()
- send_node_set(row);
- var oParam = {};
- oParam.id = "TRAOE01113";
- oParam.service = "oldexamresultapp.OldExamResult";
- oParam.method = "reqGetOldExamResultList_Common";
- oParam.inds = "req=ds_send";
- oParam.outds = "ds_main_traoe_01113_item=item";
- oParam.async = false;
- oParam.callback = "cf_TRAOE01113";
- tranf_submit(oParam);
-
- if(ds_main_traoe_01113_item.getColumnInfo("dept"))
- {
- ds_main_traoe_01113_item.updateColID("dept", "obdeptname")
- }
- if(ds_main_traoe_01113_item.getColumnInfo("ward"))
- {
- ds_main_traoe_01113_item.updateColID("ward", "wardname")
- }
- if(ds_main_traoe_01113_item.getColumnInfo("sex"))
- {
- ds_main_traoe_01113_item.updateColID("sex", "psex")
- }
- init_node_set(row);
-
- var result_target = ds_main_patinfo_item;
- var result_source = ds_main_traoe_01113_item;
- result_node_set(result_target, result_source);
-
- var oParam = {};
- oParam.id = "TRAOE01114";
- oParam.service = "oldexamresultapp.OldExamResult";
- oParam.method = "reqGetOldExamResultList_Common_Datagrid";
- oParam.inds = "req=ds_send";
- oParam.outds = "ds_main_datagrid_item=item";
- oParam.async = false;
- //oParam.callback = "cf_TRAOE01114";
- tranf_submit(oParam);
-
- btn_sw1.class = "btn_tab";
- btn_sw2.class = "btn_tab_S";
- btn_sw3.class = "btn_tab";
-
- switch1.tabindex = 1;
-
- var caption = "일련번호^Control^ALLERGENITEM^ALLERGENITEM^IU/ML^CLASS";
- caption = caption.split("^");
-
- var colSize = "108^113^124^126^111^119";
- colSize = colSize.split("^");
-
- var colId = "test_seqno^control^controlenm^controlknm^refinfo^class";
- colId = colId.split("^");
-
- for(var i = 0; i < caption.lenth; i++)
- {
- switch1.case2.datagrid1.appendContentsCol();
- switch1.case2.datagrid1.setCellProperty("Head", i, "text", caption[i]);
- switch1.case2.datagrid1.setFormatColProperty(i, "size", colSize[i]);
- switch1.case2.datagrid1.setFormatColProperty(i, "size", colSize[i]);
- switch1.case2.datagrid1.setCellProperty("Body", i, "text", "bind:"+colId[i]);
- }
-
- switch1.case2.datagrid1.binddataset = "ds_main_datagrid_item";
-
- // for(var i=14; i>5; i--)
- // {
- // datagrid1.colHidden(i)=true;
- // }
- switch1.case2.datagrid1.visible = true;
- }
- else if( row > -1 && ds_main_examlist_item.getColumn(row , "table_cd")=="MAST3RESULT")
- {
- datagrid_init();
- send_node_set(row);
- var oParam = {};
- oParam.id = "TRAOE01115";
- oParam.service = "oldexamresultapp.OldExamResult";
- oParam.method = "reqGetOldExamResultList_Common";
- oParam.inds = "req=ds_send";
- oParam.outds = "ds_main_traoe_01115_item=item";
- oParam.async = false;
- //oParam.callback = "cf_TRAOE01115";
- tranf_submit(oParam);
-
- if(ds_main_traoe_01115_item.getColumnInfo("dept"))
- {
- ds_main_traoe_01115_item.updateColID("dept", "obdeptname")
- }
- if(ds_main_traoe_01115_item.getColumnInfo("ward"))
- {
- ds_main_traoe_01115_item.updateColID("ward", "wardname")
- }
- if(ds_main_traoe_01115_item.getColumnInfo("sex"))
- {
- ds_main_traoe_01115_item.updateColID("sex", "psex")
- }
-
- init_node_set(row);
-
- var result_target = ds_main_patinfo_item;
- var result_source = ds_main_traoe_01115_item;
-
- result_node_set(result_target, result_source);
-
- var oParam = {};
- oParam.id = "TRAOE01116";
- oParam.service = "oldexamresultapp.OldExamResult";
- oParam.method = "reqGetOldExamResultList_Common_Datagrid";
- oParam.inds = "req=ds_send";
- oParam.outds = "ds_main_datagrid_item=item";
- oParam.async = false;
- oParam.callback = "cf_TRAOE01116";
- tranf_submit(oParam);
- btn_sw1.class = "btn_tab";
- btn_sw2.class = "btn_tab_S";
- btn_sw3.class = "btn_tab";
-
- switch1.tabindex = 1;
-
- var caption = "Allergen^Allergen^Class^Allergen^Allergen^Class";
- caption = caption.split("^");
-
- var colSize = "115^113^124^135^112^119";
- colSize = colSize.split("^");
-
- var colId = "enm1^hnm1^value1^enm2^hnm2^value2";
- colId = colId.split("^");
-
- for(var i = 0; i < caption.lenth; i++)
- {
- switch1.case2.datagrid1.appendContentsCol();
- switch1.case2.datagrid1.setCellProperty("Head", i, "text", caption[i]);
- switch1.case2.datagrid1.setFormatColProperty(i, "size", colSize[i]);
- switch1.case2.datagrid1.setFormatColProperty(i, "size", colSize[i]);
- switch1.case2.datagrid1.setCellProperty("Body", i, "text", "bind:"+colId[i]);
- }
-
- switch1.case2.datagrid1.binddataset = "ds_main_datagrid_item";
-
- //model.setValue("/root/main/datagrid/item[" + 18 + "]/col6", "");
-
- // for(var i=14; i>5; i--){
- // datagrid1.colHidden(i)=true;
- // }
-
- switch1.case2.datagrid1.visible = true;
- }
- else if( row > -1 && ds_main_examlist_item.getColumn(row , "table_cd")=="MAST2RESULT")
- {
- datagrid_init();
- send_node_set(row);
- var oParam = {};
- oParam.id = "TRAOE01117";
- oParam.service = "oldexamresultapp.OldExamResult";
- oParam.method = "reqGetOldExamResultList_Common";
- oParam.inds = "req=ds_send";
- oParam.outds = "ds_main_traoe_01117_item=item";
- oParam.async = false;
- //oParam.callback = "cf_TRAOE01117";
- tranf_submit(oParam);
- if(ds_main_traoe_01117_item.getColumnInfo("dept"))
- {
- ds_main_traoe_01117_item.updateColID("dept", "obdeptname")
- }
- if(ds_main_traoe_01117_item.getColumnInfo("ward"))
- {
- ds_main_traoe_01117_item.updateColID("ward", "wardname")
- }
- if(ds_main_traoe_01117_item.getColumnInfo("sex"))
- {
- ds_main_traoe_01117_item.updateColID("sex", "psex")
- }
-
- init_node_set(row);
-
- var result_target = ds_main_patinfo_item
- var result_source = ds_main_traoe_01117_item;
- result_node_set(result_target, result_source);
-
- var oParam = {};
- oParam.id = "TRAOE01118";
- oParam.service = "oldexamresultapp.OldExamResult";
- oParam.method = "reqGetOldExamResultList_Common_Datagrid";
- oParam.inds = "req=ds_send";
- oParam.outds = "ds_main_datagrid_item=item";
- oParam.async = false;
- //oParam.callback = "cf_TRAOE01118";
- tranf_submit(oParam);
-
- btn_sw1.class = "btn_tab";
- btn_sw2.class = "btn_tab_S";
- btn_sw3.class = "btn_tab";
-
- switch1.tabindex = 1;
-
- var caption = "Allergen^Allergen^Class^Allergen^Allergen^Class";
- caption = caption.split("^");
-
- var colSize = "115^113^124^135^112^119";
- colSize = colSize.split("^");
-
- var colId = "enm1^hnm1^value1^enm2^hnm2^value2";
- colId = colId.split("^");
-
- for(var i = 0; i < caption.lenth; i++)
- {
- switch1.case2.datagrid1.appendContentsCol();
- switch1.case2.datagrid1.setCellProperty("Head", i, "text", caption[i]);
- switch1.case2.datagrid1.setFormatColProperty(i, "size", colSize[i]);
- switch1.case2.datagrid1.setFormatColProperty(i, "size", colSize[i]);
- switch1.case2.datagrid1.setCellProperty("Body", i, "text", "bind:"+colId[i]);
- }
-
- switch1.case2.datagrid1.binddataset = "ds_main_datagrid_item";
-
- //model.setValue("/root/main/datagrid/item[" + 18 + "]/col6", "");
-
- // for(var i=14; i>5; i--){
- // datagrid1.colHidden(i)=true;
- // }
- switch1.case2.datagrid1.visible = true;
- }
- else if( row > -1 && ds_main_examlist_item.getColumn(row , "table_cd")=="RASTINHALANT")
- {
- datagrid_init();
- send_node_set(row);
- var oParam = {};
- oParam.id = "TRAOE01121";
- oParam.service = "oldexamresultapp.OldExamResult";
- oParam.method = "reqGetOldExamResultList_Common";
- oParam.inds = "req=ds_send";
- oParam.outds = "ds_main_traoe_01121_item=item";
- oParam.async = false;
- //oParam.callback = "cf_TRAOE01121";
- tranf_submit(oParam);
- if(ds_main_traoe_01121_item.getColumnInfo("dept"))
- {
- ds_main_traoe_01121_item.updateColID("dept", "obdeptname")
- }
- if(ds_main_traoe_01121_item.getColumnInfo("ward"))
- {
- ds_main_traoe_01121_item.updateColID("ward", "wardname")
- }
- if(ds_main_traoe_01121_item.getColumnInfo("sex"))
- {
- ds_main_traoe_01121_item.updateColID("sex", "psex")
- }
-
- init_node_set(row);
-
- var result_target = ds_main_patinfo_item;
- var result_source = ds_main_traoe_01121_item;
- result_node_set(result_target, result_source);
-
- var oParam = {};
- oParam.id = "TRAOE01122";
- oParam.service = "oldexamresultapp.OldExamResult";
- oParam.method = "reqGetOldExamResultList_Common_Datagrid";
- oParam.inds = "req=ds_send";
- oParam.outds = "ds_main_datagrid_item=item";
- oParam.async = false;
- //oParam.callback = "cf_TRAOE01122";
- tranf_submit(oParam);
-
- btn_sw1.class = "btn_tab";
- btn_sw2.class = "btn_tab_S";
- btn_sw3.class = "btn_tab";
-
- switch1.tabindex = 1;
-
- var caption = "Allergen^Allergen^Class^KU/l^기준치";
- caption = caption.split("^");
-
- var colSize = "98^130^124^135^81^150";
- colSize = colSize.split("^");
-
- var colId = "col1^col2^col3^col4^col5^col6";
- colId = colId.split("^");
-
- for(var i = 0; i < caption.lenth; i++)
- {
- switch1.case2.datagrid1.appendContentsCol();
- switch1.case2.datagrid1.setCellProperty("Head", i, "text", caption[i]);
- switch1.case2.datagrid1.setFormatColProperty(i, "size", colSize[i]);
- switch1.case2.datagrid1.setFormatColProperty(i, "size", colSize[i]);
- switch1.case2.datagrid1.setCellProperty("Body", i, "text", "bind:"+colId[i]);
- }
-
- switch1.case2.datagrid1.binddataset = "ds_main_datagrid_item";
-
- switch1.case2.datagrid1.visible=true;
- }
- else if( row > -1 && ds_main_examlist_item.getColumn(row , "table_cd")=="RASTFOOD")
- {
- datagrid_init();
- send_node_set(row);
- var oParam = {};
- oParam.id = "TRAOE01123";
- oParam.service = "oldexamresultapp.OldExamResult";
- oParam.method = "reqGetOldExamResultList_Common";
- oParam.inds = "req=ds_send";
- oParam.outds = "ds_main_traoe_01123_item=item";
- oParam.async = false;
- //oParam.callback = "cf_TRAOE01123";
- tranf_submit(oParam);
- if(ds_main_traoe_01123_item.getColumnInfo("dept"))
- {
- ds_main_traoe_01123_item.updateColID("dept", "obdeptname")
- }
- if(ds_main_traoe_01123_item.getColumnInfo("ward"))
- {
- ds_main_traoe_01123_item.updateColID("ward", "wardname")
- }
- if(ds_main_traoe_01123_item.getColumnInfo("sex"))
- {
- ds_main_traoe_01123_item.updateColID("sex", "psex")
- }
-
- init_node_set(row);
-
- var result_target = ds_main_patinfo_item;
- var result_source = ds_main_traoe_01123_item;
- result_node_set(result_target, result_source);
-
- var oParam = {};
- oParam.id = "TRAOE01124";
- oParam.service = "oldexamresultapp.OldExamResult";
- oParam.method = "reqGetOldExamResultList_Common_Datagrid";
- oParam.inds = "req=ds_send";
- oParam.outds = "ds_main_datagrid_item=item";
- oParam.async = false;
- //oParam.callback = "cf_TRAOE01124";
- tranf_submit(oParam);
- btn_sw1.class = "btn_tab";
- btn_sw2.class = "btn_tab_S";
- btn_sw3.class = "btn_tab";
-
- switch1.tabindex = 1;
-
- var caption = "Allergen^Allergen^Class^KU/l^기준치";
- caption = caption.split("^");
-
- var colSize = "98^130^124^135^81^150";
- colSize = colSize.split("^");
-
- var colId = "col1^col2^col3^col4^col5^col6";
- colId = colId.split("^");
-
- for(var i = 0; i < caption.lenth; i++)
- {
- switch1.case2.datagrid1.appendContentsCol();
- switch1.case2.datagrid1.setCellProperty("Head", i, "text", caption[i]);
- switch1.case2.datagrid1.setFormatColProperty(i, "size", colSize[i]);
- switch1.case2.datagrid1.setFormatColProperty(i, "size", colSize[i]);
- switch1.case2.datagrid1.setCellProperty("Body", i, "text", "bind:"+colId[i]);
- }
-
- switch1.case2.datagrid1.binddataset = "ds_main_datagrid_item";
-
- switch1.case2.datagrid1.visible=true;
-
- // for(var i=14; i>5; i--){
- // datagrid1.colHidden(i)=true;
- // }
- }
- else if( row > -1 && ds_main_examlist_item.getColumn(row , "table_cd")=="PFLRTINFO")
- {
- switch1.case3.iviewer1.url = "";
- send_node_set(row);
- var oParam = {};
- oParam.id = "TRAOE01131";
- oParam.service = "oldexamresultapp.OldExamResult";
- oParam.method = "reqGetOldExamResultList_Common";
- oParam.inds = "req=ds_send";
- oParam.outds = "ds_main_traoe_01131_item=item";
- oParam.async = false;
- //oParam.callback = "cf_TRAOE01131";
- tranf_submit(oParam);
- if(ds_main_traoe_01131_item.getColumnInfo("patient_id"))
- {
- ds_main_traoe_01131_item.updateColID("patient_id", "pid")
- }
- if(ds_main_traoe_01131_item.getColumnInfo("patient_name"))
- {
- ds_main_traoe_01131_item.updateColID("patient_name", "pname")
- }
- if(ds_main_traoe_01131_item.getColumnInfo("physician"))
- {
- ds_main_traoe_01131_item.updateColID("physician", "obdrname")
- }
-
- init_node_set(row);
-
- var result_target = ds_main_patinfo_item;
- var result_source = ds_main_traoe_01131_item;
- result_node_set(result_target, result_source);
-
- switch1.case3.iviewer1.url = "ast_oldexamresultxp::SMAOE01131_호흡기능검사.xfdl";
-
- //switch1.case3.iviewer1.swt_judg.tabindex = 0;
- btn_sw1.class = "btn_tab";
- btn_sw2.class = "btn_tab";
- btn_sw3.class = "btn_tab_S";
- switch1.tabindex = 2;
- }
- else if( row > -1 && ds_main_examlist_item.getColumn(row , "table_cd")=="BRONRESULT")
- {
- switch1.case3.iviewer1.url = "";
- send_node_set(row);
- var oParam = {};
- oParam.id = "TRAOE01141";
- oParam.service = "oldexamresultapp.OldExamResult";
- oParam.method = "reqGetOldExamResultList_Common";
- oParam.inds = "req=ds_send";
- oParam.outds = "ds_main_traoe_01141_item=item ds_main_traoe_01141_item2=item2";
- oParam.async = false;
- //oParam.callback = "cf_TRAOE01141";
- tranf_submit(oParam);
-
- if(ds_main_traoe_01141_item.getColumnInfo("sex"))
- {
- ds_main_traoe_01141_item.updateColID("sex", "psex")
- }
-
- init_node_set(row);
-
- var result_target = ds_main_patinfo_item
- var result_source = ds_main_traoe_01141_item
- result_node_set(result_target, result_source);
-
- switch1.case3.iviewer1.url = "ast_oldexamresultxp::SMAOE01141_BRONCOSCOPY_RECORD.xfdl";
-
- //switch1.case3.iviewer1.swt_judg.tabindex = 0;
- btn_sw1.class = "btn_tab";
- btn_sw2.class = "btn_tab";
- btn_sw3.class = "btn_tab_S";
- switch1.tabindex = 2;
- }
- else if( row > -1 && ds_main_examlist_item.getColumn(row , "table_cd")=="PACKMT")
- {
- send_node_set(row);
- var oParam = {};
- oParam.id = "TRAOE01151";
- oParam.service = "oldexamresultapp.OldExamResult";
- oParam.method = "reqGetOldExamResultList_Common";
- oParam.inds = "req=ds_send";
- oParam.outds = "ds_main_traoe_01151_item=item";
- oParam.async = false;
- //oParam.callback = "cf_TRAOE01151";
- tranf_submit(oParam);
-
- if(ds_main_traoe_01151_item.getColumnInfo("deptname"))
- {
- ds_main_traoe_01151_item.updateColID("deptname", "obdeptname")
- }
-
- init_node_set(row);
-
- var result_target = ds_main_datagrid_item
- var result_source = ds_main_traoe_01151_item;
- result_node_set(result_target, result_source);
-
- var result = "";
- result = "\n"+"[ 주민번호 ]" + "\n";
- result = result + utlf_transNullToEmpty(ds_main_traoe_01151_item.getColumn(0, "pnrn")) + "\n" +"\n"+ "[ 전화번호 ]"+ "\n";
- result = result + utlf_transNullToEmpty(ds_main_traoe_01151_item.getColumn(0, "phphone")) + "\n" +"\n"+ "[ 핸드폰 ]"+ "\n";
- result = result + utlf_transNullToEmpty(ds_main_traoe_01151_item.getColumn(0, "handphone")) + "\n" +"\n"+ "[ 검사 No ]"+ "\n";
- result = result + utlf_transNullToEmpty(ds_main_traoe_01151_item.getColumn(0, "uopno")) + "\n" +"\n"+ "[ 신 장 ]"+ "\n";
- result = result + utlf_transNullToEmpty(ds_main_traoe_01151_item.getColumn(0, "height")) + "cm"+ "\n" +"\n"+ "[ 체중 ]"+ "\n";
- result = result + utlf_transNullToEmpty(ds_main_traoe_01151_item.getColumn(0, "kg")) + "kg" + "\n" +"\n"+ "[ Ethnic ]"+ "\n";
- result = result + utlf_transNullToEmpty(ds_main_traoe_01151_item.getColumn(0, "jongjuk")) + "\n" +"\n"+ "[ L-SPINE BME ]"+ "\n";
- result = result + " 제일 낮은부위: "+ utlf_transNullToEmpty(ds_main_traoe_01151_item.getColumn(0, "simsa1")) + " 수치:" + utlf_transNullToEmpty(ds_main_traoe_01151_item.getColumn(0, "simsa2"))+"입니다." ;
-
- if(ds_main_traoe_01151_item.getColumn(0, "simsa2") <= -3)
- {
- result = result + " (Y) -3.0이하";
- }
- else
- {
- result = result + " ( ) -3.0이하";
- }
-
- result = result + "\n" +"\n"+ "[ Prox.Femur BMD ]"+ "\n";
- result = result + " 제일 낮은부위: "+ utlf_transNullToEmpty(ds_main_traoe_01151_item.getColumn(0, "femursimsa1")) + " 수치:" + utlf_transNullToEmpty(ds_main_traoe_01151_item.getColumn(0, "femursimsa2"))
- +"입니다." ;
-
- if(ds_main_traoe_01151_item.getColumn(0, "femursimsa2") <= -3)
- {
- result = result + " (Y) -3.0이하";
- }
- else
- {
- result = result + " ( ) -3.0이하";
- }
-
- result = result + "\n" +"\n"+ "[ FOREARM BMD ]"+ "\n";
- result = result + " 제일 낮은부위: "+ utlf_transNullToEmpty(ds_main_traoe_01151_item.getColumn(0, "foresimsa1")) + " 수치:" + utlf_transNullToEmpty(ds_main_traoe_01151_item.getColumn(0, "foresimsa2"))+"입니다." ;
-
- if(ds_main_traoe_01151_item.getColumn(0, "foresimsa2") <= -3)
- {
- result = result + " (Y) -3.0이하";
- }
- else
- {
- result = result + " ( ) -3.0이하";
- }
-
- if(ds_main_traoe_01151_item.getColumn(0, "forelcheck") =='Y')
- {
- result = result + "\n" +"\n"+ "50세 이상의 남성으로 T-score가 -3.0경우"+ " (Y)" + "\n"+ "\n";
- }
- else
- {
- result = result + "\n" +"\n"+ "50세 이상의 남성으로 T-score가 -3.0경우"+ " ( )" + "\n" + "\n";
- }
-
- if(ds_main_traoe_01151_item.getColumn(0, "extracheck") =='Y')
- {
- result = result + "골밀도검사에서 상기 4개의 항목에 해당되지 않으니" + "\n";
- result = result + "단순 X-ray상 골다공증성 골절이 확실이 있는 경우" + "\n";
- result = result + "(단순방사선 사진이나, 그 외의 영상사진에서 확인되는 경우)" + " (Y)" + "\n" + "\n";
- }
- else
- {
- result = result + "골밀도검사에서 상기 4개의 항목에 해당되지 않으니" + "\n";
- result = result + "단순 X-ray상 골다공증성 골절이 확실이 있는 경우" + "\n";
- result = result + "(단순방사선 사진이나, 그 외의 영상사진에서 확인되는 경우)" + " ( )" + "\n" + "\n";
- }
-
- if(ds_main_traoe_01151_item.getColumn(0, "lcheck") =='Y')
- {
- result = result + "골다공증 전문치료약제 보험인정가능. (단, 2개이상 약제의 병합치료는 1가지만 보험인정됨)" + "\n";
- result = result + "보험인정가능(Y)" + "\n" + "\n";
- }
- else
- {
- result = result + "골다공증 전문치료약제 보험인정가능. (단, 2개이상 약제의 병합치료는 1가지만 보험인정됨)" + "\n";
- result = result + "보험인정가능( )" + "\n" + "\n";
- }
-
- result = result + "[ Comment ]" + "\n" + utlf_transNullToEmpty(ds_main_traoe_01151_item.getColumn(0, "lcomment")) + "\n" +"\n"+ "[ 판독의 ]"+ "\n";
- result = result + utlf_transNullToEmpty(ds_main_traoe_01151_item.getColumn(0, "pandrname"))+ "\n";
-
- ds_main_patinfo_item.setColumn(0, "result_text", result);
-
- btn_sw1.class = "btn_tab_S";
- btn_sw2.class = "btn_tab";
- btn_sw3.class = "btn_tab";
-
- switch1.tabindex = 0;
- }
- else if( row > -1 && ds_main_examlist_item.getColumn(row , "table_cd")=="NURECPROGRESS")
- {
- datagrid_init();
- send_node_set(row);
- var oParam = {};
- oParam.id = "TRAOE01161";
- oParam.service = "oldexamresultapp.OldExamResult";
- oParam.method = "reqGetOldExamResultList_Common";
- oParam.inds = "req=ds_send";
- oParam.outds = "ds_main_traoe_01161_item=item";
- oParam.async = false;
- //oParam.callback = "cf_TRAOE01161";
- tranf_submit(oParam);
- if(ds_main_traoe_01161_item.getColumnInfo("deptnm"))
- {
- ds_main_traoe_01161_item.updateColID("deptnm", "obdeptname")
- }
- if(ds_main_traoe_01161_item.getColumnInfo("wardnm"))
- {
- ds_main_traoe_01161_item.updateColID("wardnm", "wardname")
- }
- if(ds_main_traoe_01161_item.getColumnInfo("drname"))
- {
- ds_main_traoe_01161_item.updateColID("drname", "obdrname")
- }
-
- init_node_set(row);
-
- var result_target = ds_main_patinfo_item;
- var result_source = ds_main_traoe_01161_item;
- result_node_set(result_target, result_source);
-
- var oParam = {};
- oParam.id = "TRAOE01162";
- oParam.service = "oldexamresultapp.OldExamResult";
- oParam.method = "reqGetOldExamResultList_Common_Datagrid";
- oParam.inds = "req=ds_send";
- oParam.outds = "ds_main_datagrid_item=item";
- oParam.async = false;
- //oParam.callback = "cf_TRAOE01162";
- tranf_submit(oParam);
-
- btn_sw1.class = "btn_tab";
- btn_sw2.class = "btn_tab_S";
- btn_sw3.class = "btn_tab";
-
- switch1.tabindex = 1;
-
- var caption = "검사내역^결과치^참고치^단위^판정일";
- caption = caption.split("^");
-
- var colSize = "220^100^120^100^150";
- colSize = colSize.split("^");
-
- var colId = "uopdesc^result2^rstval1^rstval2^danwi^pantime";
- colId = colId.split("^");
-
- for(var i = 0; i < caption.length; i++)
- {
- switch1.case2.datagrid1.appendContentsCol();
- switch1.case2.datagrid1.setCellProperty("Head", i, "text", caption[i]);
- switch1.case2.datagrid1.setFormatColProperty(i, "size", colSize[i]);
- switch1.case2.datagrid1.setFormatColProperty(i, "size", colSize[i]);
- switch1.case2.datagrid1.setCellProperty("Body", i, "text", "bind:"+colId[i]);
- }
-
- switch1.case2.datagrid1.binddataset = "ds_main_datagrid_item";
-
- ds_main_datagrid_item.updatecontrol = false;
- for(var i = 0; i < ds_main_datagrid_item.rowcount; i++)
- {
- ds_main_datagrid_item.setColumn(i, "rstval1", ds_main_datagrid_item.getColumn(i, "rstval1")+ " ~ " +ds_main_datagrid_item.getColumn(i, "rstval2"));
- ds_main_datagrid_item.setColumn(i, "rstval2", ds_main_datagrid_item.getColumn(i, "danwi"));
- ds_main_datagrid_item.setColumn(i, "danwi", ds_main_datagrid_item.getColumn(i, "pantime"));
- }
- ds_main_datagrid_item.updatecontrol = true;
-
- // for(var i=14; i>4; i--){
- // datagrid1.colHidden(i)=true;
- // }
-
- switch1.case2.datagrid1.visible=true;
- }
- else if( row > -1 && ds_main_examlist_item.getColumn(row , "table_cd")=="ECHOREPORT")
- {
- switch1.case3.iviewer1.url = "";
- send_node_set(row);
- var oParam = {};
- oParam.id = "TRAOE01181";
- oParam.service = "oldexamresultapp.OldExamResult";
- oParam.method = "reqGetOldExamResultList_Common";
- oParam.inds = "req=ds_send";
- oParam.outds = "ds_main_traoe_01181_item=item";
- oParam.async = false;
- //oParam.callback = "cf_TRAOE01181";
- tranf_submit(oParam);
- if(ds_main_traoe_01181_item.getColumnInfo("ename"))
- {
- ds_main_traoe_01181_item.updateColID("ename", "pname")
- }
- if(ds_main_traoe_01181_item.getColumnInfo("sex"))
- {
- ds_main_traoe_01181_item.updateColID("sex", "psex")
- }
- if(ds_main_traoe_01181_item.getColumnInfo("dept"))
- {
- ds_main_traoe_01181_item.updateColID("dept", "obdeptname")
- }
- if(ds_main_traoe_01181_item.getColumnInfo("ward"))
- {
- ds_main_traoe_01181_item.updateColID("ward", "wardname")
- }
-
- init_node_set(row);
-
- var result_target = ds_main_patinfo_item;
- var result_source = ds_main_traoe_01181_item;
- result_node_set(result_target, result_source);
-
- switch1.case3.iviewer1.url = "ast_oldexamresultxp::SMAOE01181_심장검사실.xfdl";
-
- //switch1.case3.iviewer1.swt_judg.tabindex = 0;
- btn_sw1.class = "btn_tab";
- btn_sw2.class = "btn_tab";
- btn_sw3.class = "btn_tab_S";
- switch1.tabindex = 2;
- }
- else if( row > -1 && ds_main_examlist_item.getColumn(row , "table_cd")=="DSHMASTER2")
- {
- send_node_set(row);
- var oParam = {};
- oParam.id = "TRAOE01191";
- oParam.service = "oldexamresultapp.OldExamResult";
- oParam.method = "reqGetOldExamResultList_Common";
- oParam.inds = "req=ds_send";
- oParam.outds = "ds_main_traoe_01191_item=item";
- oParam.async = false;
- //oParam.callback = "cf_TRAOE01191";
- tranf_submit(oParam);
-
- init_node_set(row);
-
- var result_target = ds_main_datagrid_item
- var result_source = ds_main_traoe_01191_item;
- result_node_set(result_target, result_source);
-
- switch1.case3.iviewer1.url = "ast_oldexamresultxp::SMAOE01191_뇌혈류검사실(EDS).xfdl";
-
- switch1.case3.iviewer1.swt_judg.tabindex = 0;
- btn_sw1.class = "btn_tab";
- btn_sw2.class = "btn_tab";
- btn_sw3.class = "btn_tab_S";
- switch1.tabindex = 2;
- }
- else if( row > -1 && ds_main_examlist_item.getColumn(row , "table_cd")=="ECGTEST")
- {
- send_node_set(row);
- var oParam = {};
- oParam.id = "TRAOE01201";
- oParam.service = "oldexamresultapp.OldExamResult";
- oParam.method = "reqGetOldExamResultList_Common";
- oParam.inds = "req=ds_send";
- oParam.outds = "ds_main_traoe_01201_item=item";
- oParam.async = false;
- //oParam.callback = "cf_TRAOE01201";
- tranf_submit(oParam);
-
- if(ds_main_traoe_01201_item.getColumnInfo("name"))
- {
- ds_main_traoe_01201_item.updateColID("name", "pname")
- }
- if(ds_main_traoe_01201_item.getColumnInfo("sex"))
- {
- ds_main_traoe_01201_item.updateColID("sex", "psex")
- }
- if(ds_main_traoe_01201_item.getColumnInfo("dept"))
- {
- ds_main_traoe_01201_item.updateColID("dept", "obdeptname")
- }
- if(ds_main_traoe_01201_item.getColumnInfo("ward"))
- {
- ds_main_traoe_01201_item.updateColID("ward", "wardname")
- }
-
- init_node_set(row);
-
- var result_target = ds_main_patinfo_item;
- var result_source = ds_main_traoe_01201_item;
- result_node_set(result_target, result_source);
-
- switch1.case3.iviewer1.url = "ast_oldexamresultxp::SMAOE01201_Execrcise_Ecg_Test.xfdl";
-
- switch1.case3.iviewer1.swt_judg.tabindex = 0;
- btn_sw1.class = "btn_tab";
- btn_sw2.class = "btn_tab";
- btn_sw3.class = "btn_tab_S";
- switch1.tabindex = 2;
- }
- else if( row > -1 && ds_main_examlist_item.getColumn(row , "table_cd")=="EXTRAORAL")
- {
- send_node_set(row);
- var oParam = {};
- oParam.id = "TRAOE01211";
- oParam.service = "oldexamresultapp.OldExamResult";
- oParam.method = "reqGetOldExamResultList_Common";
- oParam.inds = "req=ds_send";
- oParam.outds = "ds_main_traoe_01211_item=item";
- oParam.async = false;
- //oParam.callback = "cf_TRAOE01211";
- tranf_submit(oParam);
- if(ds_main_traoe_01211_item.getColumnInfo("deptname"))
- {
- ds_main_traoe_01211_item.updateColID("deptname", "obdeptname")
- }
- if(ds_main_traoe_01211_item.getColumnInfo("pqdrid"))
- {
- ds_main_traoe_01211_item.updateColID("pqdrid", "obdrname")
- }
-
- init_node_set(row);
-
- var result_target = ds_main_patinfo_item;
- var result_source = ds_main_traoe_01211_item;
- result_node_set(result_target, result_source);
-
- var result = "";
- result = "\n" + "[ 상태 ]" + "\n" + utlf_transNullToEmpty(ds_main_traoe_01211_item.getColumn(0, "pqtxstatus")) + "\n"+"\n";
- result = result + "[ 수납 ]" + "\n" + utlf_transNullToEmpty(ds_main_traoe_01211_item.getColumn(0, "pqcashin")) + "\n";
- result = result + "\n"+"[ EXTRAORAL RADIOGRAPHIC FINDINGS ]" + "\n";
- result = result + utlf_transNullToEmpty(ds_main_traoe_01211_item.getColumn(0, "dentresult")) + "\n" +"\n"+ "[ IMPRESSION ]"+ "\n";
-
- if(!utlf_isNull(ds_main_traoe_01211_item.getColumn(0, "dentimp1")))
- {
- result = result + "1. " + utlf_transNullToEmpty(ds_main_traoe_01211_item.getColumn(0, "dentimp1")) + "\n";
- }
- if(!utlf_isNull(ds_main_traoe_01211_item.getColumn(0, "dentimp2")))
- {
- result = result + "2. " + utlf_transNullToEmpty(ds_main_traoe_01211_item.getColumn(0, "dentimp2")) + "\n";
- }
- if(!utlf_isNull(ds_main_traoe_01211_item.getColumn(0, "dentimp3")))
- {
- result = result + "3. " + utlf_transNullToEmpty(ds_main_traoe_01211_item.getColumn(0, "dentimp3")) + "\n";
- }
- result = result + "\n" + "[ RECOMMENDATION ]" + "\n";
-
- if(!utlf_isNull(ds_main_traoe_01211_item.getColumn(0, "recommand1")))
- {
- result = result + "1. " + utlf_transNullToEmpty(ds_main_traoe_01211_item.getColumn(0, "recommand1")) + "\n";
- }
- if(!utlf_isNull(ds_main_traoe_01211_item.getColumn(0, "recommand2")))
- {
- result = result + "1. " + utlf_transNullToEmpty(ds_main_traoe_01211_item.getColumn(0, "recommand2")) + "\n";
- }
- if(!utlf_isNull(ds_main_traoe_01211_item.getColumn(0, "recommand3")))
- {
- result = result + "1. " + utlf_transNullToEmpty(ds_main_traoe_01211_item.getColumn(0, "recommand3")) + "\n";
- }
-
- ds_main_patinfo_item.setColumn(0, "result_text", result);
-
- btn_sw1.class = "btn_tab_S";
- btn_sw2.class = "btn_tab";
- btn_sw3.class = "btn_tab";
-
- switch1.tabindex = 0;
- }
- else if( row > -1 && ds_main_examlist_item.getColumn(row , "table_cd")=="SOISUKRESULT")
- {
- send_node_set(row);
- var oParam = {};
- oParam.id = "TRAOE01221";
- oParam.service = "oldexamresultapp.OldExamResult";
- oParam.method = "reqGetOldExamResultList_Common";
- oParam.inds = "req=ds_send";
- oParam.outds = "ds_main_traoe_01221_item=item";
- oParam.async = false;
- //oParam.callback = "cf_TRAOE01221";
- tranf_submit(oParam);
-
- if(ds_main_traoe_01221_item.getColumnInfo("dept"))
- {
- ds_main_traoe_01221_item.updateColID("dept", "obdeptname")
- }
- if(ds_main_traoe_01221_item.getColumnInfo("sex"))
- {
- ds_main_traoe_01221_item.updateColID("sex", "psex")
- }
- if(ds_main_traoe_01221_item.getColumnInfo("drname"))
- {
- ds_main_traoe_01221_item.updateColID("drname", "obdrname")
- }
-
- init_node_set(row);
-
- var result_target = ds_main_patinfo_item
- var result_source = ds_main_traoe_01221_item
- result_node_set(result_target, result_source);
-
- switch1.case3.iviewer1.url = "ast_oldexamresultxp::SMAOE01221_쇄석실검사.xfdl";
-
- switch1.case3.iviewer1.swt_judg.tabindex = 0;
- btn_sw1.class = "btn_tab";
- btn_sw2.class = "btn_tab";
- btn_sw3.class = "btn_tab_S";
- switch1.tabindex = 2;
- }
- else if( row > -1 && ds_main_examlist_item.getColumn(row , "table_cd")=="CORON_MASTER")
- {
- send_node_set(row);
- var oParam = {};
- oParam.id = "TRAOE01231";
- oParam.service = "oldexamresultapp.OldExamResult";
- oParam.method = "reqGetOldExamResultList_Common";
- oParam.inds = "req=ds_send";
- oParam.outds = "ds_main_traoe_01231_item=item";
- oParam.async = false;
- //oParam.callback = "cf_TRAOE01231";
- tranf_submit(oParam);
-
- if(ds_main_traoe_01231_item.getColumnInfo("sex"))
- {
- ds_main_traoe_01231_item.updateColID("sex", "psex")
- }
-
- init_node_set(row);
-
- var result_target = ds_main_patinfo_item;
- var result_source = ds_main_traoe_01231_item;
- result_node_set(result_target, result_source);
-
- switch1.case3.iviewer1.url = "ast_oldexamresultxp::SMAOE01231_순환기내과.xfdl";
-
- switch1.case3.iviewer1.swt_judg.tabindex = 0;
- btn_sw1.class = "btn_tab";
- btn_sw2.class = "btn_tab";
- btn_sw3.class = "btn_tab_S";
- switch1.tabindex = 2;
- }
- else if( row > -1 && ds_main_examlist_item.getColumn(row , "table_cd")=="RTACTIVITY")
- {
- send_node_set(row);
- var oParam = {};
- oParam.id = "TRAOE01241";
- oParam.service = "oldexamresultapp.OldExamResult";
- oParam.method = "reqGetOldExamResultList_Common";
- oParam.inds = "req=ds_send";
- oParam.outds = "ds_main_traoe_01241_item=item";
- oParam.async = false;
- //oParam.callback = "cf_TRAOE01241";
- tranf_submit(oParam);
- init_node_set(row);
-
- var result_target = ds_main_patinfo_item;
- var result_source = ds_main_traoe_01241_item;
- result_node_set(result_target, result_source);
-
- switch1.case3.iviewer1.url = "ast_oldexamresultxp::SMAOE01241_방사선종양.xfdl";
-
- switch1.case3.iviewer1.swt_judg.tabindex = 0;
- btn_sw1.class = "btn_tab";
- btn_sw2.class = "btn_tab";
- btn_sw3.class = "btn_tab_S";
- switch1.tabindex = 2;
- }
- else if( row > -1 && ds_main_examlist_item.getColumn(row , "table_cd")=="RTTREATROOMWOMAN")
- {
- send_node_set(row);
- var oParam = {};
- oParam.id = "TRAOE01251";
- oParam.service = "oldexamresultapp.OldExamResult";
- oParam.method = "reqGetOldExamResultList_Common";
- oParam.inds = "req=ds_send";
- oParam.outds = "ds_main_traoe_01251_item=item ds_main_traoe_01251_item4=item4";
- oParam.async = false;
- //oParam.callback = "cf_TRAOE01251";
- tranf_submit(oParam);
- init_node_set(row);
-
- var result_target = ds_main_patinfo_item;
- var result_source = ds_main_traoe_01251_item;
- result_node_set(result_target, result_source);
-
- switch1.case3.iviewer1.url = "ast_oldexamresultxp::SMAOE01251_내부치료실.xfdl";
-
- switch1.case3.iviewer1.swt_judg.tabindex = 0;
- btn_sw1.class = "btn_tab";
- btn_sw2.class = "btn_tab";
- btn_sw3.class = "btn_tab_S";
- switch1.tabindex = 2;
- }
- else if( row > -1 && ds_main_examlist_item.getColumn(row , "table_cd")=="RTCOMPUTEPLAN")
- {
- send_node_set(row);
- var oParam = {};
- oParam.id = "TRAOE01261";
- oParam.service = "oldexamresultapp.OldExamResult";
- oParam.method = "reqGetOldExamResultList_Common";
- oParam.inds = "req=ds_send";
- oParam.outds = "ds_main_traoe_01261_item=item";
- oParam.async = false;
- //oParam.callback = "cf_TRAOE01261";
- tranf_submit(oParam);
- init_node_set(row);
-
- var result_target = ds_main_patinfo_item;
- var result_source = ds_main_traoe_01261_item;
- result_node_set(result_target, result_source);
-
- switch1.case3.iviewer1.url = "ast_oldexamresultxp::SMAOE01261_전산화계획.xfdl";
-
- switch1.case3.iviewer1.swt_judg.tabindex = 0;
- btn_sw1.class = "btn_tab";
- btn_sw2.class = "btn_tab";
- btn_sw3.class = "btn_tab_S";
- switch1.tabindex = 2;
- }
- else if( row > -1 && ds_main_examlist_item.getColumn(row , "table_cd")=="RTDESCRIPTION")
- {
- send_node_set(row);
- var oParam = {};
- oParam.id = "TRAOE01271";
- oParam.service = "oldexamresultapp.OldExamResult";
- oParam.method = "reqGetOldExamResultList_Common";
- oParam.inds = "req=ds_send";
- oParam.outds = "ds_main_traoe_01271_item=item";
- oParam.async = false;
- //oParam.callback = "cf_TRAOE01271";
- tranf_submit(oParam);
- init_node_set(row);
-
- var result_target = ds_main_patinfo_item;
- var result_source = ds_main_traoe_01271_item;
- result_node_set(result_target, result_source);
-
- switch1.case3.iviewer1.url = "ast_oldexamresultxp::SMAOE01271_치료계획.xfdl";
-
- switch1.case3.iviewer1.swt_judg.tabindex = 0;
- btn_sw1.class = "btn_tab";
- btn_sw2.class = "btn_tab";
- btn_sw3.class = "btn_tab_S";
- switch1.tabindex = 2;
- }
- }
- function send_node_set(row)
- {
- var send_target = ds_send;
- var send_source = ds_main_examlist_item;
- send_target.setColumn(0, "srchccrno", send_source.getColumn(row, "ccrno"));
- send_target.setColumn(0, "srchobtime", send_source.getColumn(row, "obtime"));
- send_target.setColumn(0, "srchuopno", send_source.getColumn(row, "uopno"));
- send_target.setColumn(0, "srchtable_cd", send_source.getColumn(row, "table_cd"));
- }
- function init_node_set(row)
- {
- var init_target = ds_main_patinfo_item;
- var init_source = ds_main_examlist_item;
- if(init_source.getColumn(row, "table_cd")=="ELECTRORT_SEC")
- {
- switch1.case3.iviewer1.visible = true;
- ds_main_patinfo_item.clearData();
- ds_main_patinfo_item.addRow();
- }
- else if(init_source.getColumn(row, "table_cd")=="ELECTRORT1")
- {
- switch1.case3.iviewer1.visible = true;
- ds_main_patinfo_item.clearData();
- ds_main_patinfo_item.addRow();
- }
- else if(init_source.getColumn(row, "table_cd")=="ELECTRORT2")
- {
- switch1.case3.iviewer1.visible = true;
- ds_main_patinfo_item.clearData();
- ds_main_patinfo_item.addRow();
- }
- else if(init_source.getColumn(row, "table_cd")=="DSHMASTER1")
- {
- switch1.case3.iviewer1.visible = true;
- ds_main_patinfo_item.clearData();
- ds_main_patinfo_item.addRow();
- }
- else if(init_source.getColumn(row, "table_cd")=="PFLRTINFO")
- {
- switch1.case3.iviewer1.visible = true;
- ds_main_patinfo_item.clearData();
- ds_main_patinfo_item.addRow();
- }
- else if(init_source.getColumn(row, "table_cd")=="BRONRESULT")
- {
- switch1.case3.iviewer1.visible = true;
- ds_main_patinfo_item.clearData();
- ds_main_patinfo_item.addRow();
- }
- else if(init_source.getColumn(row, "table_cd")=="ECHOREPORT")
- {
- switch1.case3.iviewer1.visible = true;
- ds_main_patinfo_item.clearData();
- ds_main_patinfo_item.addRow();
- }
- else if(init_source.getColumn(row, "table_cd")=="DSHMASTER2")
- {
- switch1.case3.iviewer1.visible = true;
- ds_main_patinfo_item.clearData();
- ds_main_patinfo_item.addRow();
- }
- else if(init_source.getColumn(row, "table_cd")=="ECGTEST")
- {
- switch1.case3.iviewer1.visible = true;
- ds_main_patinfo_item.clearData();
- ds_main_patinfo_item.addRow();
- }
- else if(init_source.getColumn(row, "table_cd")=="SOISUKRESULT")
- {
- switch1.case3.iviewer1.visible = true;
- ds_main_patinfo_item.clearData();
- ds_main_patinfo_item.addRow();
- }
- else if(init_source.getColumn(row, "table_cd")=="CORON_MASTER")
- {
- switch1.case3.iviewer1.visible = true;
- ds_main_patinfo_item.clearData();
- ds_main_patinfo_item.addRow();
- }
- else if(init_source.getColumn(row, "table_cd")=="RTACTIVITY")
- {
- switch1.case3.iviewer1.visible = true;
- ds_main_patinfo_item.clearData();
- ds_main_patinfo_item.addRow();
- }
- else if(init_source.getColumn(row, "table_cd")=="RTTREATROOMWOMAN")
- {
- switch1.case3.iviewer1.visible = true;
- ds_main_patinfo_item.clearData();
- ds_main_patinfo_item.addRow();
- }
- else if(init_source.getColumn(row, "table_cd")=="RTCOMPUTEPLAN")
- {
- switch1.case3.iviewer1.visible = true;
- ds_main_patinfo_item.clearData();
- ds_main_patinfo_item.addRow();
- }
- else if(init_source.getColumn(row, "table_cd")=="RTDESCRIPTION")
- {
- switch1.case3.iviewer1.visible = true;
- ds_main_patinfo_item.clearData();
- ds_main_patinfo_item.addRow();
- }
- else
- {
- switch1.case3.iviewer1.visible = false;
- }
- result_title.text = init_source.getColumn(row, "title_name");
- init_target.setColumn(0, "result_title", init_source.getColumn(row, "title_name"));
- init_target.setColumn(0, "obtime", init_source.getColumn(row, "orddd"));
- init_target.setColumn(0, "rsltdd", init_source.getColumn(row, "rsltdd"));
- init_target.setColumn(0, "uodesc", init_source.getColumn(row, "uodesc"));
- }
- function result_node_set(result_target, result_source)
- {
- result_target.setColumn(0, "pid", result_source.getColumn(0, "pid"));
- result_target.setColumn(0, "pname", result_source.getColumn(0, "pname"));
- result_target.setColumn(0, "psex", result_source.getColumn(0, "psex"));
- result_target.setColumn(0, "age", result_source.getColumn(0, "age"));
- result_target.setColumn(0, "inoutmode", result_source.getColumn(0, "inoutmode"));
- result_target.setColumn(0, "obdeptname", result_source.getColumn(0, "obdeptname"));
- result_target.setColumn(0, "obdrname", result_source.getColumn(0, "obdrname"));
- result_target.setColumn(0, "wardname", result_source.getColumn(0, "wardname"));
- result_target.setColumn(0, "pandrname", result_source.getColumn(0, "pandrname"));
- }
- function datagrid_init()
- {
- for (var i = switch1.case2.datagrid1.getFormatColCount(); i > 0; i--)
- {
- switch1.case2.datagrid1.deleteContentsCol(i);
- }
-
- switch1.case2.datagrid1.visible = false;
- }
- function btn_sw1_onclick(obj:Button, e:ClickEventInfo)
- {
- switch1.tabindex = 0;
- btn_sw1.class = "btn_tab_S";
- btn_sw2.class = "btn_tab";
- btn_sw3.class = "btn_tab";
- }
- function btn_sw2_onclick(obj:Button, e:ClickEventInfo)
- {
- switch1.tabindex = 1;
- btn_sw1.class = "btn_tab";
- btn_sw2.class = "btn_tab_S";
- btn_sw3.class = "btn_tab";
- }
- function btn_sw3_onclick(obj:Button, e:ClickEventInfo)
- {
- switch1.tabindex = 2;
- btn_sw1.class = "btn_tab";
- btn_sw2.class = "btn_tab";
- btn_sw3.class = "btn_tab_S";
- }
- function group6_button2_onclick(obj:Button, e:ClickEventInfo)
- {
- if (btn_sw1.class == "btn_tab_S")
- {
- if(!utlf_isNull(ds_main_patinfo_item.getColumn(0, "result_text")))
- {
- var objDOM = rptf_createDOM();
- rptf_setNodeListToDOM(objDOM, "/root/main/patinfo/item", ds_main_patinfo_item);
- var objParam = new Object();
- objParam.xml_data_XML1 = objDOM.documentElement.source;
- var option = "";
- rptf_exeReportPreview30(["RPAOE01001"],[objParam], option);
- }
- else
- {
- sysf_messageBox("검사결과출력", "E013");
- }
- }
- else if (btn_sw2.class == "btn_tab_S")
- {
- if(!utlf_isNull(ds_main_datagrid_item.getColumn(0, 0)))
- {
- var objDOM = rptf_createDOM();
- rptf_setNodeListToDOM(objDOM, "/root/main/datagrid/item", ds_main_datagrid_item);
- var objParam = new Object();
- objParam.xml_data_XML1 = objDOM.documentElement.source;
- var option = "";
- rptf_exeReportPreview30(["RPAOE01002"],[objParam], option);
- }
- else
- {
- sysf_messageBox("검사결과출력", "E013");
- }
- }
- else
- {
- var srcPathCnt = switch1.case3.iviewer1.objects.length;
- for(var i = 0 ; i < srcPathCnt ; i++) {
- if(switch1.case3.iviewer1.objects[i].name.indexOf("ds_main_") < 0) continue;
-
- var dsName = switch1.case3.iviewer1.objects[i].name.replace("_main_","_tmp_");
- dsf_createDs(dsName);
- this.objects[dsName].copyData(switch1.case3.iviewer1.objects[i]);
- if(this.objects[dsName].rowcount == 0) this.objects[dsName].addRow();
- }
- var objDOM = rptf_createDOM();
- var objParam = new Object();
- var option = "";
-
- if( ds_send.getColumn(0, "srchtable_cd") == "ELECTRORT1" ) {
-
- rptf_setNodeListToDOM(objDOM, "/root/main/patinfo/item", ds_main_patinfo_item);
- rptf_setNodeListToDOM(objDOM, "/root/tmp/traoe_01073/item", ds_tmp_traoe_01073_item);
- rptf_setNodeListToDOM(objDOM, "/root/tmp/traoe_01072/item", ds_tmp_traoe_01072_item);
- rptf_setNodeListToDOM(objDOM, "/root/tmp/result/item", ds_tmp_result_item);
- objParam.xml_data_XML1 = objDOM.documentElement.source;
- rptf_exeReportPreview30(["RPAOE01003"],[objParam], option);
-
- } else if( ds_send.getColumn(0, "srchtable_cd") == "ELECTRORT2" ) {
-
- rptf_setNodeListToDOM(objDOM, "/root/main/patinfo/item", ds_main_patinfo_item);
- rptf_setNodeListToDOM(objDOM, "/root/tmp/traoe_01082/item", ds_tmp_traoe_01082_item);
- rptf_setNodeListToDOM(objDOM, "/root/tmp/result/item", ds_tmp_result_item);
- objParam.xml_data_XML1 = objDOM.documentElement.source;
- rptf_exeReportPreview30(["RPAOE01004"],[objParam], option);
-
- } else if( ds_send.getColumn(0, "srchtable_cd") == "ELECTRORT_SEC" ) {
-
- rptf_setNodeListToDOM(objDOM, "/root/main/patinfo/item", ds_main_patinfo_item);
- rptf_setNodeListToDOM(objDOM, "/root/tmp/case_1/item1", ds_tmp_case_1_item1);
- objParam.xml_data_XML1 = objDOM.documentElement.source;
- option = "closecallback=opener.fn_ELECTRORT_SEC5;";
- rptf_exeReportPreview30(["RPAOE01005"],[objParam], option);
-
- }
- // else if( ds_send.getColumn(0, "srchtable_cd") == "CORON_MASTER" ) {
- //
- // rptf_setNodeListToDOM(objDOM, "/root/main/datagrid/item", ds_main_datagrid_item);
- // objParam.xml_data_XML1 = objDOM.documentElement.source;
- // rptf_exeReportPreview30(["RPAOE01009"],[objParam], option);
- //
- // } else if( ds_send.getColumn(0, "srchtable_cd") == "ECHOREPORT" ) {
- //
- // rptf_setNodeListToDOM(objDOM, "/root/main/datagrid/item", ds_main_datagrid_item);
- // objParam.xml_data_XML1 = objDOM.documentElement.source;
- // rptf_exeReportPreview30(["RPAOE01010"],[objParam], option);
- //
- // }
- else
- {
- sysf_messageBox("검사결과출력", "E013");
- }
- }
- }
- function fn_ELECTRORT_SEC5() {
- var objDOM = rptf_createDOM();
- var objParam = new Object();
- rptf_setNodeListToDOM(objDOM, "/root/main/patinfo/item", ds_main_patinfo_item);
- rptf_setNodeListToDOM(objDOM, "/root/tmp/result/item", ds_tmp_result_item);
- objParam.xml_data_XML1 = objDOM.documentElement.source;
- var option = "closecallback=opener.fn_ELECTRORT_SEC6;";
- rptf_exeReportPreview30(["RPAOE01006"],[objParam], option);
- }
- function fn_ELECTRORT_SEC6() {
- var objDOM = rptf_createDOM();
- var objParam = new Object();
- rptf_setNodeListToDOM(objDOM, "/root/main/patinfo/item", ds_main_patinfo_item);
- rptf_setNodeListToDOM(objDOM, "/root/tmp/case_3/item3", ds_tmp_case_3_item3);
- objParam.xml_data_XML1 = objDOM.documentElement.source;
- var option = "closecallback=opener.fn_ELECTRORT_SEC7;";
- rptf_exeReportPreview30(["RPAOE01007"],[objParam], option);
- }
- function fn_ELECTRORT_SEC7() {
- var objDOM = rptf_createDOM();
- var objParam = new Object();
- rptf_setNodeListToDOM(objDOM, "/root/main/patinfo/item", ds_main_patinfo_item);
- rptf_setNodeListToDOM(objDOM, "/root/tmp/case_4/item4", ds_tmp_case_4_item4);
- objParam.xml_data_XML1 = objDOM.documentElement.source;
- var option = "";
- rptf_exeReportPreview30(["RPAOE01008"],[objParam], option);
- }
- ]]></Script>
- </Form>
- </FDL>
|