123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126312731283129313031313132313331343135313631373138313931403141314231433144314531463147314831493150315131523153315431553156315731583159316031613162316331643165316631673168316931703171317231733174317531763177317831793180318131823183318431853186318731883189319031913192319331943195319631973198319932003201320232033204320532063207320832093210321132123213321432153216321732183219322032213222322332243225322632273228322932303231323232333234323532363237323832393240324132423243324432453246324732483249325032513252325332543255325632573258325932603261326232633264326532663267326832693270327132723273327432753276327732783279328032813282328332843285328632873288328932903291329232933294329532963297329832993300330133023303330433053306330733083309331033113312331333143315331633173318331933203321332233233324332533263327332833293330333133323333333433353336333733383339334033413342334333443345334633473348334933503351335233533354335533563357335833593360336133623363336433653366336733683369337033713372337333743375337633773378337933803381338233833384338533863387338833893390339133923393339433953396339733983399340034013402340334043405340634073408340934103411341234133414341534163417341834193420342134223423342434253426342734283429343034313432343334343435343634373438343934403441344234433444344534463447344834493450345134523453345434553456345734583459346034613462346334643465346634673468346934703471347234733474347534763477347834793480348134823483348434853486348734883489349034913492349334943495349634973498349935003501350235033504350535063507350835093510351135123513351435153516351735183519352035213522352335243525352635273528352935303531353235333534353535363537353835393540354135423543354435453546354735483549355035513552355335543555355635573558355935603561356235633564356535663567356835693570357135723573357435753576357735783579358035813582358335843585358635873588358935903591359235933594359535963597359835993600360136023603360436053606360736083609361036113612361336143615361636173618361936203621362236233624362536263627362836293630363136323633363436353636363736383639364036413642364336443645364636473648364936503651365236533654365536563657365836593660366136623663366436653666366736683669367036713672367336743675367636773678367936803681368236833684368536863687368836893690369136923693369436953696369736983699370037013702370337043705370637073708370937103711371237133714371537163717371837193720372137223723372437253726372737283729373037313732373337343735373637373738373937403741374237433744374537463747374837493750375137523753375437553756375737583759376037613762376337643765376637673768376937703771377237733774377537763777377837793780378137823783378437853786378737883789379037913792379337943795379637973798379938003801380238033804380538063807380838093810381138123813381438153816381738183819382038213822382338243825382638273828382938303831383238333834383538363837383838393840384138423843384438453846384738483849385038513852385338543855385638573858385938603861386238633864386538663867386838693870387138723873387438753876387738783879388038813882388338843885388638873888388938903891389238933894389538963897389838993900390139023903390439053906390739083909391039113912391339143915391639173918391939203921392239233924392539263927392839293930393139323933393439353936393739383939394039413942394339443945394639473948394939503951395239533954395539563957395839593960396139623963396439653966396739683969397039713972397339743975397639773978397939803981398239833984398539863987398839893990399139923993399439953996399739983999400040014002400340044005400640074008400940104011401240134014401540164017401840194020402140224023402440254026402740284029403040314032403340344035403640374038403940404041404240434044404540464047404840494050405140524053405440554056405740584059406040614062406340644065406640674068406940704071407240734074407540764077407840794080408140824083408440854086408740884089409040914092409340944095409640974098409941004101410241034104410541064107410841094110411141124113411441154116411741184119412041214122412341244125412641274128412941304131413241334134413541364137413841394140414141424143414441454146414741484149415041514152415341544155415641574158415941604161416241634164416541664167416841694170417141724173417441754176417741784179418041814182418341844185418641874188418941904191419241934194419541964197419841994200420142024203420442054206420742084209421042114212421342144215421642174218421942204221422242234224422542264227422842294230423142324233423442354236423742384239424042414242424342444245424642474248424942504251425242534254425542564257425842594260426142624263426442654266426742684269427042714272427342744275427642774278427942804281428242834284428542864287428842894290429142924293429442954296429742984299430043014302430343044305430643074308430943104311431243134314431543164317431843194320432143224323432443254326432743284329433043314332433343344335433643374338433943404341434243434344434543464347434843494350435143524353435443554356435743584359436043614362436343644365436643674368436943704371437243734374437543764377437843794380438143824383438443854386438743884389439043914392439343944395439643974398439944004401440244034404440544064407440844094410441144124413441444154416441744184419442044214422 |
- <?xml version="1.0" encoding="UTF-8"?>
- <?xml-stylesheet href="../../../com/commonweb/css/common.css" type="text/css" ?>
- <xhtml:html xmlns:ex="http://www.comsquare.co.kr/xforms/excel" xmlns:xlink="http://www.w3.org/1999/xlink" xmlns:xhtml="http://www.w3.org/1999/xhtml" xmlns:ms="urn:schemas-microsoft-com:xslt" xmlns:my="http://www.comsquare.co.kr/example" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns="http://www.w3.org/2002/01/xforms" xmlns:ev="http://www.w3.org/2001/xml-events" xmlns:cs="http://www.comsquare.co.kr/xforms">
- <xhtml:head>
- <xhtml:title>내시경 결과관리</xhtml:title>
- <model id="model1">
- <instance id="instance1">
- <root xmlns="">
- <send>
- <globalinstance>
- <instance1/>
- </globalinstance>
- <reqdata>
- <execdd/>
- <exectodd/>
- <pid/>
- <execrid2cdid/>
- <inqgb/>
- <deptgubun/>
- <nocheck/>
- <basesuppdeptcd/>
- <rsltkind/>
- <hngnm1/>
- </reqdata>
- <grupcdid/>
- <fgetread>
- <rsltdd/>
- <rsltno/>
- <suppdeptcd/>
- <tmplcd/>
- <rsltkind/>
- </fgetread>
- <display>
- <pid/>
- <prcpdd/>
- <recovertime/>
- <status/>
- <execprcpuniqno/>
- <excuroomcd/>
- <ioflag/>
- <suppdeptcd/>
- <rsrvdt/>
- <calcscorcd/>
- <suppdeptcd/>
- </display>
- <check>
- <permission/>
- </check>
- <userid>
- <userid/>
- </userid>
- </send>
- <init>
- <cmb_info>
- <initexecroom>
- <excuroomcdnm/>
- <excuroomcdid/>
- </initexecroom>
- </cmb_info>
- <baseinfo>
- <R001/>
- <R002/>
- </baseinfo>
- </init>
- <main>
- <rsltinpt1/>
- <rsltinpt/>
- <exambaseinfo>
- <pid/>
- <hngnm/>
- <sex/>
- <rrgstno/>
- <excucdnm/>
- <ioflag1/>
- <depthngnm/>
- <usernm/>
- <rgstdeptnm/>
- <rgstdrnm/>
- <prcpdd/>
- <rsltgb/>
- <cnfmgb/>
- <pacsyn/>
- <execprcpuniqno/>
- <rslttmplcd/>
- <rsltdd/>
- <suppdeptcd/>
- <rsltno/>
- <cnfmdt/>
- <cnfmmanid/>
- <cnfmmannm/>
- <orddrid/>
- <roomcd/>
- <execbaseflag/>
- <inclprcpcd/>
- <orddeptcd/>
- <orddrid2/>
- <sex2/>
- <age/>
- <execrem/>
- <readdrid1/>
- <readdrid2/>
- <readdrid3/>
- <orddd/>
- <cretno/>
- <prcpgenrflag/>
- <rslttm/>
- <formrecseq/>
- <prcpno/>
- <prcphistno/>
- <instcd/>
- <ckno/>
- <cknoseq/>
- <rtno/>
- <cnclresncd/>
- <cnclresncdnm/>
- <patholno2/>
- <excuexectodd/>
- <signno/>
- </exambaseinfo>
- <examform>
- <egd>
- <reason/>
- <drug/>
- <medic/>
- <bowelprep/>
- <procedure/>
- <rectalexam/>
- <find1contnt1/>
- <find1contnt2/>
- <find1contnt3/>
- <find2contnt1/>
- <find2contnt2/>
- <find2contnt3/>
- <diag1/>
- <diag2/>
- <diag3/>
- <therap/>
- <complic/>
- <clotest/>
- <recommend/>
- <remark/>
- <sleepyn/>
- <pacsyn/>
- <video/>
- <cytologyyn/>
- <cloyn/>
- <phyn/>
- <samplingyn/>
- <cultureyn/>
- <aspirationyn/>
- <biopsytn/>
- <polypectyn/>
- <esdemryn/>
- <ampullectomyyn/>
- <srchreason/>
- <srchdrug/>
- <srchmedic/>
- <srchbowelprep/>
- <srchprocedure/>
- <srchrectalexam/>
- <srchfind1contnt1/>
- <srchfind1contnt2/>
- <srchfind1contnt3/>
- <srchfind2contnt1/>
- <srchfind2contnt2/>
- <srchfind2contnt3/>
- <srchdiag1/>
- <srchdiag2/>
- <srchdiag3/>
- <srchtherap/>
- <srchcomplic/>
- <srchrecommend/>
- <srchremark/>
- <readdrid1/>
- <readdrid2/>
- <readdrid3/>
- <workdd/>
- </egd>
- <cf>
- <reason/>
- <drug/>
- <medic/>
- <bowelprep/>
- <procedure/>
- <rectalexam/>
- <find1contnt1/>
- <find1contnt2/>
- <find1contnt3/>
- <find2contnt1/>
- <find2contnt2/>
- <find2contnt3/>
- <diag1/>
- <diag2/>
- <diag3/>
- <therap/>
- <clotest/>
- <recommend/>
- <remark/>
- <sleepyn/>
- <pacsyn/>
- <video/>
- <cytologyyn/>
- <cloyn/>
- <phyn/>
- <samplingyn/>
- <cultureyn/>
- <aspirationyn/>
- <biopsytn/>
- <polypectyn/>
- <esdemryn/>
- <ampullectomyyn/>
- <srchreason/>
- <srchdrug/>
- <srchmedic/>
- <srchbowelprep/>
- <srchprocedure/>
- <srchrectalexam/>
- <srchfind1contnt1/>
- <srchfind1contnt2/>
- <srchfind1contnt3/>
- <srchfind2contnt1/>
- <srchfind2contnt2/>
- <srchfind2contnt3/>
- <srchdiag1/>
- <srchdiag2/>
- <srchdiag3/>
- <srchtherap/>
- <srchcomplic/>
- <srchrecommend/>
- <srchremark/>
- <readdrid1/>
- <readdrid2/>
- <readdrid3/>
- <workdd/>
- <complic/>
- </cf>
- <fs>
- <reason/>
- <drug/>
- <medic/>
- <bowelprep/>
- <procedure/>
- <rectalexam/>
- <find1contnt1/>
- <find1contnt2/>
- <find1contnt3/>
- <find2contnt1/>
- <find2contnt2/>
- <find2contnt3/>
- <diag1/>
- <diag2/>
- <diag3/>
- <therap/>
- <complic/>
- <clotest/>
- <recommend/>
- <remark/>
- <sleepyn/>
- <pacsyn/>
- <video/>
- <cytologyyn/>
- <cloyn/>
- <phyn/>
- <samplingyn/>
- <cultureyn/>
- <aspirationyn/>
- <biopsytn/>
- <polypectyn/>
- <esdemryn/>
- <ampullectomyyn/>
- <srchreason/>
- <srchdrug/>
- <srchmedic/>
- <srchbowelprep/>
- <srchprocedure/>
- <srchrectalexam/>
- <srchfind1contnt1/>
- <srchfind1contnt2/>
- <srchfind1contnt3/>
- <srchfind2contnt1/>
- <srchfind2contnt2/>
- <srchfind2contnt3/>
- <srchdiag1/>
- <srchdiag2/>
- <srchdiag3/>
- <srchtherap/>
- <srchcomplic/>
- <srchrecommend/>
- <srchremark/>
- <readdrid1/>
- <readdrid2/>
- <readdrid3/>
- <workdd/>
- </fs>
- <ercp>
- <reason/>
- <drug/>
- <medic/>
- <bowelprep/>
- <procedure/>
- <rectalexam/>
- <find1contnt1/>
- <find1contnt2/>
- <find1contnt3/>
- <find2contnt1/>
- <find2contnt2/>
- <find2contnt3/>
- <diag1/>
- <diag2/>
- <diag3/>
- <therap/>
- <complic/>
- <clotest/>
- <recommend/>
- <remark/>
- <sleepyn/>
- <pacsyn/>
- <video/>
- <cytologyyn/>
- <cloyn/>
- <phyn/>
- <samplingyn/>
- <cultureyn/>
- <aspirationyn/>
- <biopsytn/>
- <polypectyn/>
- <esdemryn/>
- <ampullectomyyn/>
- <srchreason/>
- <srchdrug/>
- <srchmedic/>
- <srchbowelprep/>
- <srchprocedure/>
- <srchrectalexam/>
- <srchfind1contnt1/>
- <srchfind1contnt2/>
- <srchfind1contnt3/>
- <srchfind2contnt1/>
- <srchfind2contnt2/>
- <srchfind2contnt3/>
- <srchdiag1/>
- <srchdiag2/>
- <srchdiag3/>
- <srchcomplic/>
- <srchrecommend/>
- <srchremark/>
- <readdrid1/>
- <readdrid2/>
- <readdrid3/>
- <workdd/>
- <srchtherap/>
- </ercp>
- <ptcs>
- <reason/>
- <drug/>
- <medic/>
- <bowelprep/>
- <procedure/>
- <rectalexam/>
- <find1contnt1/>
- <find1contnt2/>
- <find1contnt3/>
- <find2contnt1/>
- <find2contnt2/>
- <find2contnt3/>
- <diag1/>
- <diag2/>
- <diag3/>
- <therap/>
- <complic/>
- <clotest/>
- <recommend/>
- <remark/>
- <sleepyn/>
- <pacsyn/>
- <video/>
- <cytologyyn/>
- <cloyn/>
- <phyn/>
- <samplingyn/>
- <cultureyn/>
- <aspirationyn/>
- <biopsytn/>
- <polypectyn/>
- <esdemryn/>
- <ampullectomyyn/>
- <srchreason/>
- <srchdrug/>
- <srchmedic/>
- <srchbowelprep/>
- <srchprocedure/>
- <srchrectalexam/>
- <srchfind1contnt1/>
- <srchfind1contnt2/>
- <srchfind1contnt3/>
- <srchfind2contnt1/>
- <srchfind2contnt2/>
- <srchfind2contnt3/>
- <srchdiag1/>
- <srchdiag2/>
- <srchdiag3/>
- <srchtherap/>
- <srchcomplic/>
- <srchrecommend/>
- <srchremark/>
- <readdrid1/>
- <readdrid2/>
- <readdrid3/>
- <workdd/>
- </ptcs>
- <eus>
- <reason/>
- <drug/>
- <medic/>
- <bowelprep/>
- <procedure/>
- <rectalexam/>
- <find1contnt1/>
- <find1contnt2/>
- <find1contnt3/>
- <find2contnt1/>
- <find2contnt2/>
- <find2contnt3/>
- <diag1/>
- <diag2/>
- <diag3/>
- <therap/>
- <complic/>
- <clotest/>
- <recommend/>
- <remark/>
- <sleepyn/>
- <pacsyn/>
- <video/>
- <cytologyyn/>
- <cloyn/>
- <phyn/>
- <samplingyn/>
- <cultureyn/>
- <aspirationyn/>
- <biopsytn/>
- <polypectyn/>
- <esdemryn/>
- <ampullectomyyn/>
- <srchreason/>
- <srchdrug/>
- <srchmedic/>
- <srchbowelprep/>
- <srchprocedure/>
- <srchrectalexam/>
- <srchfind1contnt1/>
- <srchfind1contnt2/>
- <srchfind1contnt3/>
- <srchfind2contnt1/>
- <srchfind2contnt2/>
- <srchfind2contnt3/>
- <srchdiag1/>
- <srchdiag2/>
- <srchdiag3/>
- <srchtherap/>
- <srchcomplic/>
- <srchrecommend/>
- <srchremark/>
- <readdrid1/>
- <readdrid2/>
- <readdrid3/>
- <workdd/>
- </eus>
- <lb>
- <reason/>
- <drug/>
- <medic/>
- <bowelprep/>
- <procedure/>
- <rectalexam/>
- <find1contnt1/>
- <find1contnt2/>
- <find1contnt3/>
- <find2contnt1/>
- <find2contnt2/>
- <find2contnt3/>
- <diag1/>
- <diag2/>
- <diag3/>
- <therap/>
- <complic/>
- <clotest/>
- <recommend/>
- <remark/>
- <sleepyn/>
- <pacsyn/>
- <video/>
- <cytologyyn/>
- <cloyn/>
- <phyn/>
- <samplingyn/>
- <cultureyn/>
- <aspirationyn/>
- <biopsytn/>
- <polypectyn/>
- <esdemryn/>
- <ampullectomyyn/>
- <srchreason/>
- <srchdrug/>
- <srchmedic/>
- <srchbowelprep/>
- <srchprocedure/>
- <srchrectalexam/>
- <srchfind1contnt1/>
- <srchfind1contnt2/>
- <srchfind1contnt3/>
- <srchfind2contnt1/>
- <srchfind2contnt2/>
- <srchfind2contnt3/>
- <srchdiag1/>
- <srchdiag2/>
- <srchdiag3/>
- <srchtherap/>
- <srchcomplic/>
- <srchrecommend/>
- <srchremark/>
- <readdrid1/>
- <readdrid2/>
- <readdrid3/>
- <workdd/>
- </lb>
- <rs>
- <reason/>
- <drug/>
- <medic/>
- <bowelprep/>
- <procedure/>
- <rectalexam/>
- <find1contnt1/>
- <find1contnt2/>
- <find1contnt3/>
- <find2contnt1/>
- <find2contnt2/>
- <find2contnt3/>
- <diag1/>
- <diag2/>
- <diag3/>
- <therap/>
- <complic/>
- <clotest/>
- <recommend/>
- <remark/>
- <sleepyn/>
- <pacsyn/>
- <video/>
- <cytologyyn/>
- <cloyn/>
- <phyn/>
- <samplingyn/>
- <cultureyn/>
- <aspirationyn/>
- <biopsytn/>
- <polypectyn/>
- <esdemryn/>
- <ampullectomyyn/>
- <srchreason/>
- <srchdrug/>
- <srchmedic/>
- <srchbowelprep/>
- <srchprocedure/>
- <srchrectalexam/>
- <srchfind1contnt1/>
- <srchfind1contnt2/>
- <srchfind1contnt3/>
- <srchfind2contnt1/>
- <srchfind2contnt2/>
- <srchfind2contnt3/>
- <srchdiag1/>
- <srchdiag2/>
- <srchdiag3/>
- <srchtherap/>
- <srchcomplic/>
- <srchrecommend/>
- <srchremark/>
- <readdrid1/>
- <readdrid2/>
- <readdrid3/>
- <workdd/>
- </rs>
- </examform>
- <popupendflag/>
- <patinfo>
- <patinfolist/>
- </patinfo>
- </main>
- <hidden>
- <read/>
- </hidden>
- <hidden2>
- <read2>
- <tmplcd/>
- <rsltkind/>
- <readdrid1/>
- <readdrid2/>
- <readdrid3/>
- <workdd/>
- <reason/>
- <drug/>
- <medic/>
- <bowelprep/>
- <procedure/>
- <rectalexam/>
- <find1contnt1/>
- <find1contnt2/>
- <find1contnt3/>
- <find2contnt1/>
- <find2contnt2/>
- <find2contnt3/>
- <diag1/>
- <diag2/>
- <diag3/>
- <therap/>
- <complic/>
- <recommend/>
- <clotest/>
- <remark/>
- <sleepyn/>
- <pacsyn/>
- <video/>
- <cytologyyn/>
- <cloyn/>
- <phyn/>
- <samplingyn/>
- <cultureyn/>
- <aspirationyn/>
- <biopsytn/>
- <polypectyn/>
- <esdemryn/>
- <ampullectomyyn/>
- <srchreason/>
- <srchdrug/>
- <srchmedic/>
- <srchbowelprep/>
- <srchprocedure/>
- <srchrectalexam/>
- <srchfind1contnt1/>
- <srchfind1contnt2/>
- <srchfind1contnt3/>
- <srchfind2contnt1/>
- <srchfind2contnt2/>
- <srchfind2contnt3/>
- <srchdiag1/>
- <srchdiag2/>
- <srchdiag3/>
- <srchtherap/>
- <srchcomplic/>
- <srchrecommend/>
- <srchremark/>
- </read2>
- </hidden2>
- <tmp>
- <data/>
- <suppdeptcd/>
- </tmp>
- <source>
- <srchcond/>
- <pid/>
- <hngnm/>
- <rrgstno1/>
- <rrgstno2/>
- </source>
- </root>
- </instance>
- <script type="javascript" ev:event="xforms-ready">
- <![CDATA[
- ipt_date1.value = getCurrentDate();
- ipt_date2.value = getCurrentDate();
-
- // checkbox4.disabled = true ;
-
-
- //model.setValue("root/send/globalinstance/instance1" , "2010300000") ; // 테스트용
-
- //20130203 김영기 사용자별 근무지 부서코드 호출
- //fGetUserSuppdeptcd();
- /*근무지 부서를 가지고 온다.*/
- aezfSetSuppDeptcd();
-
- /*검사실 코드를 가지고 온다.*/
- submit("TRAEA01201");
-
- /*CLO TEST 결과 */
- /*
- astGetComboList( new Array("R001", "R002", "R003", "RCLO"),
- new Array("/root/init/baseinfo", "/root/init/baseinfo", "/root/init/baseinfo", "/root/init/baseinfo") );
-
- submit("TRAAA00001", false);
- */
-
- fsetMd();
-
-
- var userid = getUserId();
- var permission = "N";
-
- /*상용구 권한*/
- for(var i = 1 ; i <= getNodesetCount("/root/main/execuserlist/item0") ; i++){
- if ( model.getValue("/root/main/execuserlist/item0["+ i +"]/exur1") == "Y" ){
- if ( model.getValue("/root/main/execuserlist/item0["+ i +"]/userid") == userid ){
- permission = "Y";
- }
- }
- }
- model.setValue("/root/send/check/permission",permission);
-
-
- btn_case1.selected ;
- model.toggle("case1");
- btn_egd.selected ;
- model.toggle("case4");
- btn_save3.visible = true;
- // btn_del2.visible = false;
- btn_del2.disabled = true;
-
- model.copyNode("root/tmp2/examform" , "root/main/examform");
- model.refresh();
-
-
- ]]>
- </script>
- <submission id="TRAAA00001"/>
- <submission id="TRZBC00101"/>
- <submission id="TRAER00823" mediatype="application/x-www-form-urlencoded" ref="/root/send" replace="instance" resultref="/root/init/cmb_basecd"/>
- <submission id="TRAEA01201" mediatype="application/x-www-form-urlencoded" method="post" ref="/root/send/globalinstance/instance1" resultref="/root/init/cmb_info"/>
- <submission id="TRAER00401" mediatype="application/x-www-form-urlencoded" method="post" ref="/root/send/reqdata" resultref="/root/main/rsltinpt"/>
- <submission id="TRAER00402" mediatype="application/x-www-form-urlencoded" method="post" ref="/root/send/reqdata" resultref="/root/main/rsltinpt1"/>
- <submission id="TXAER15001" mediatype="application/x-www-form-urlencoded" method="post" ref="/root/send/save" replace="instance" resultref="/root/message"/>
- <submission id="TRAEB00010" mediatype="application/x-www-form-urlencoded" method="post" ref="/root/send" replace="instance" resultref="/root/init/codelist"/>
- <submission id="TXAER15002" mediatype="application/x-www-form-urlencoded" method="post" ref="root/send/execdata" replace="instance" resultref="/root/message"/>
- <submission id="TRAER15001" mediatype="application/x-www-form-urlencoded" method="post" ref="/root/send/fgetread" resultref="/root/hidden/read"/>
- <submission id="TRAEB00610" mediatype="application/x-www-form-urlencoded" method="post" ref="/root/send/req" resultref="/root/main/execuserlist"/>
- <submission id="TXAER15003" mediatype="application/x-www-form-urlencoded" method="post" ref="/root/send2/save2" resultref="/root/hidden/"/>
- <submission id="TXAEA01513" mediatype="application/x-www-form-urlencoded" method="post" ref="/root/send/display" replace="instance" resultref="/root/hidden/ret"/>
- <submission id="TRAER15002" mediatype="application/x-www-form-urlencoded" method="post" ref="/root/send/userid/userid" resultref="/root/tmp/suppdeptcd"/>
- <submission id="TRPMC02500" mediatype="application/x-www-form-urlencoded" method="post" ref="/root/source" resultref="/root/main/result/patinfo"/>
- </model>
- <script type="javascript" src="../../../com/commonweb/js/common.js"/>
- <script type="javascript" src="../../../com/commonweb/js/tfHelper.js"/>
- <script type="javascript" src="../../../com/commonweb/js/stringHelper.js"/>
- <script type="javascript" src="../../../com/commonweb/js/dateHelper.js"/>
- <script type="javascript" src="../../../com/commonweb/js/numericHelper.js"/>
- <script type="javascript" src="../../../com/pacsweb/js/ZEP001.js"/>
- <script type="javascript" src="../../../com/basiccodeweb/js/ZBC001.js"/>
- <script type="javascript" src="../../../ast/examcureweb/js/AEZ0001.js"/>
- <script type="javascript" src="../../../ast/examcureweb/js/combolist.js"/>
- <script type="javascript" src="../../../emr/carecomweb/js/ENRSignEngine.js"/>
- <script type="javascript" src="../../../ast/recpatweb/js/SMMMT00200.js"/>
- <script type="javascript" src="../../../com/departmentcodeweb/js/ZSD001.js"/>
- <script type="javascript">
- <![CDATA[
- function fsetHardRslt(getitem,setitem){
-
- var str = model.getValue("/root/main/examform/"+ getitem + "");
- str = str.toUpperCase().getTrim();
- var str1 = "";
- var str2 = "";
- var defstr = "";
-
- if( getitem == "egd/find1contnt1" ){
- str1 = "The esophageal mucosa was normal.".toUpperCase().getTrim();
- str2 = "Normal esophageal mucosa.";
- }else if( getitem == "egd/find1contnt2" ){
- str1 = "The gastric mucosa was normal.".toUpperCase().getTrim();
- str2 = "Normal gastric mucosa.";
- }else if( getitem == "egd/find1contnt3" ){
- str1 = "The duodenal mucosa was normal.".toUpperCase().getTrim();
- str2 = "Normal duodenal mucosa.";
- }else if( getitem == "ercp/find2contnt1" ){
- str1 = "Opacification of bilary system was unremarkable.".toUpperCase().getTrim();
- str2 = "Normal cholangiogram";
- }
-
- if( str1 != "" ){
- if ( str.indexOf(str1) > -1 ) {
-
- defstr = model.getValue("/root/main/examform/"+ setitem + "" ) + str2;
-
- model.setValue("/root/main/examform/"+ setitem + "" , defstr );
-
- }
- }
- model.refresh();
- }
- /*******************************************************************************************************************************************************************/
- // 통합기록조회 팝업
- /*******************************************************************************************************************************************************************/
- function fTotalRprtSrch(){
- var pid = model.getValue("root/main/exambaseinfo/pid");
- if(pid == ""){
- messageBox("대상 환자를", "C002");
- return;
- }
- var wndobj = getOpenWindow("SMMRI00400");
- if(wndobj != null){
- setParameter("SMMRI00400_param_pid", model.getValue("root/main/exambaseinfo/pid"));
- wndobj.javascript.fInitalize();
- }else{
- setParameter("SMMRI00400_param_pid", model.getValue("root/main/exambaseinfo/pid"));
- open("SMMRI00400", 2, 0, 0);
- }
- }
-
- function fsetSeletedCase(){
-
- var xpath = "";
-
- if(btn_egd.selected == true){
- xpath = "egd" ;
- }else if (btn_cf.selected == true){
- xpath = "cf" ;
- } else if (btn_fs.selected == true){
- xpath = "fs" ;
- } else if (btn_ercp.selected == true){
- xpath = "ercp" ;
- } else if (btn_ptcs.selected == true){
- xpath = "ptcs" ;
- } else if (btn_eus.selected == true){
- xpath = "eus" ;
- } else if (btn_lb.selected == true){
- xpath = "lb" ;
- } else if (btn_rs.selected == true){
- xpath = "rs" ;
- }
-
- return xpath ;
- }
-
-
- /*날짜 입력 체크 */
- function DateCheck() {
- if (model.getValue("/root/send/reqdata/execdd") == ""){
- messageBox("적용시행시작일자는 필수 입력항목입니다.", "E999", "");
- return false;
- }
- if (isValidDateTime(model.getValue("/root/send/reqdata/execdd"), "YYYYMMDD") == false){
- messageBox("적용시작일자의 날짜 형식이 잘못 입력되었습니다.", "E999", "");
- return false;
- }
- if (model.getValue("/root/send/reqdata/exectodd") == ""){
- messageBox("적용시행종료일자는 필수 입력항목입니다.", "E999", "");
- return false;
- }
- if (isValidDateTime(model.getValue("/root/send/reqdata/exectodd"), "YYYYMMDD") == false){
- messageBox("적용시행종료일자의 날짜 형식이 잘못 입력되었습니다.", "E999", "");
- return false;
- }
- if (model.getValue("/root/send/reqdata/execdd") > model.getValue("/root/send/reqdata/exectodd")){
- messageBox("적용시작일이 종료일보다 큽니다.", "E999", "");
- return false;
- }
- return true;
- }
- function readFuncCheck(){
- model.resetInstanceNode("root/main/examform");
- model.resetInstanceNode("root/main/exambaseinfo");
-
- if (!DateCheck()) {
- return;
- }
-
-
- if (btn_case1.selected == true){ // 판독대상자
- readfunc();
- }else if (btn_case2.selected == true){ // 판독완료
- readfunc1();
- }
-
- }
-
- /*판독대상자조회 */
- function readfunc() {
-
-
- model.removeNodeset("/root/main/rsltinpt/rsltlist");
-
- model.makeValue("/root/send/reqdata/basecd", cmb_excuroom.value); //검사실별 조회
-
- model.setValue("/root/send/reqdata/inqgb", "1"); // 판독대상자 조회 구분
-
- model.setValue("/root/send/reqdata/deptgubun", "1"); // 판독대상자 조회 구분
-
- model.setValue("/root/send/reqdata/nocheck", "N"); // 판독대상자 조회 구분
-
- model.setValue("/root/send/reqdata/basesuppdeptcd", model.getValue("/root/send/globalinstance/instance1"));
-
- model.setValue("/root/send/reqdata/rsltkind", "00"); // 서식분류 구분(내시경)
-
- submit("TRAER00401",false);
-
- // 그리드 색상 설정
- fSetSubDetailGrid();
-
- var msg = model.getValue("/root/properties/error/msg");
- var refCnt = msg.substring(0, 1);
- if( refCnt == "0" || refCnt == "") {
- //messageBox("조회된 결과가 없습니다.", "E999", "");
- }
- if (model.getValue("/root/main/rsltinpt/rsltlist[" + 1 + "]/no") == ""){
- model.removeNodeset("/root/main/rsltinpt/rsltlist");
- }
- model.refresh();
- aezfSetRowStyle("grd_mainordlist3" , "8" , "Y" , "choiordflag" ); // 진료선택이 Y이면 색깔
- }
-
- /*판독이후 대상자 */
- function readfunc1() {
-
- model.removeNodeset("/root/main/rsltinpt1/rsltlist1");
- model.setValue("/root/send/reqdata/inqgb", "2");
-
- model.makeValue("/root/send/reqdata/basecd", cmb_excuroom.value); //검사실별 조회
-
- model.setValue("/root/send/reqdata/deptgubun", "1"); // 판독대상자 조회 구분
-
- model.setValue("/root/send/reqdata/nocheck", "N"); // 판독대상자 조회 구분
-
- model.setValue("/root/send/reqdata/basesuppdeptcd", model.getValue("/root/send/globalinstance/instance1"));
-
- model.setValue("/root/send/reqdata/rsltkind", "00"); // 서식분류 구분(내시경)
- submit("TRAER00402");
- var msg = model.getValue("/root/properties/error/msg");
- var refCnt = msg.substring(0, 1);
- if( refCnt == "0" || refCnt == "") {
- //messageBox("조회된 결과가 없습니다.", "E999", "");
- }
-
- // 그리드 색상 설정
- fSetSubDetailGrid();
-
- if (model.getValue("/root/main/rsltinpt1/rsltlist1[" + 1 + "]/no") == ""){
- model.removeNodeset("/root/main/rsltinpt1/rsltlist1");
- }
- model.refresh();
- }
-
- /*좌측 환자목록에서 환자 선택후 우측 결과 내용 탭에 해당 내용보여짐 */
- function fselectCase(){
-
- //setParameter("SMAER00400_patholno", "0");
-
- var row = "" ;
- var xpath = "" ;
- var curDate = getCurrentDate();
- var clorslt = "" ;
-
- if(btn_case1.selected == true ) {
- xpath = "rsltinpt/rsltlist";
- row = grd_mainordlist3.row ;
- }else if(btn_case2.selected == true ) {
- xpath = "rsltinpt1/rsltlist1";
- row = grd_mainordlist5.row ;
- clorslt = model.getValue("/root/main/"+xpath+"[" + row + "]/clostat" ); // 간호에서 clo 결과 입력 했을시 결과 자동으로 최근 입력값 넣어줌
- }
-
-
- if( row > 0 ) {
- /*환자 정보 설정 & 처방 기본정보 설정(상단 정보 설정) */
- model.copyNode("root/main/exambaseinfo" , "root/main/"+xpath+"[" + row + "]" );
- /* 약어 // 서식 풀네임 // 서식코드
- EGD ESOPHAGOGASTRODUODENOSCOPY REPORT 1200006066
- CF COLONSCOPY REPORT 1200006067
- FS FLEXIBLE SIGMOIDOSCOPY REPORT 1200006068
- ERCP DUODENOSCOPY AND ERCP REPORT 1200006069
- PTCS PERCUANEOUS TRANSHEPATIC CHOLEDOCHOSCOPY REPORT 1200006070
- EUS ENDOSCOPIC ULTRASONOGRAPHY REPORT 1200006071
- LB LIVER BIOPSY 1200006072
- RS RECTOSCOPY REPORT 1200006073
- */
-
- // 결과 저장 한 것만 결과 보여줌
- // if(btn_case2.selected == true ){
- /*입력된 결과 내용 보여짐 */
- fgetReadedData(clorslt);
- // }
-
- /*조회 기준자료에 등록된 서식에 따른 결과입력 탭 구분 */
- // if(model.getValue("/root/main/"+xpath+"[" + row + "]/rslttmplcd") == "1200006066" || model.getValue("/root/main/"+xpath+"[" + row + "]/tmplcd2") == "1200006066") {
- if(model.getValue("/root/main/"+xpath+"[" + row + "]/rslttmplcd") == "1000008513" || model.getValue("/root/main/"+xpath+"[" + row + "]/tmplcd2") == "1000008513") {
- btn_egd.selected = true; // 그리드 버튼
- model.toggle("case4"); // 해당탭
- egd_workdd.disabled = true ; // 작업일자
- if(btn_case1.selected == true ){
- model.makeValue("root/main/examform/egd/workdd" , curDate ) ; // 작업일자에 현재일자
- model.makeValue("/root/main/examform/egd/readdrid1" , model.getValue("/root/main/exambaseinfo/cnfmmanid2")) ;
- }
- } else if(model.getValue("/root/main/"+xpath+"[" + row + "]/rslttmplcd") == "1200006067" ) {
- btn_cf.selected = true;
- model.toggle("case5");
- cf_workdd.disabled = true ;
- if(btn_case1.selected == true ){
- model.setValue("root/main/examform/cf/workdd" , curDate ) ; // 작업일자에 현재일자
- model.makeValue("/root/main/examform//cf/readdrid1" , model.getValue("/root/main/exambaseinfo/cnfmmanid2")) ;
- }
- /*}else if(model.getValue("/root/main/"+xpath+"[" + row + "]/rslttmplcd") == "1200006068" ) {*/
- }else if(model.getValue("/root/main/"+xpath+"[" + row + "]/rslttmplcd") == "1000008523" ) {
-
- btn_fs.selected = true;
- model.toggle("case6");
- fs_workdd.disabled = true ;
- if(btn_case1.selected == true ){
- model.setValue("root/main/examform/fs/workdd" , curDate ) ; // 작업일자에 현재일자
- model.makeValue("/root/main/examform/fs/readdrid1" , model.getValue("/root/main/exambaseinfo/cnfmmanid2")) ;
- }
- //}else if(model.getValue("/root/main/"+xpath+"[" + row + "]/rslttmplcd") == "1200006069" ) {
- }else if(model.getValue("/root/main/"+xpath+"[" + row + "]/rslttmplcd") == "1000008515" ) {
- btn_ercp.selected = true;
- model.toggle("case7");
- ercp_workdd.disabled = true ;
- if(btn_case1.selected == true ){
- model.setValue("root/main/examform/ercp/workdd" , curDate ) ; // 작업일자에 현재일자
- model.makeValue("/root/main/examform/ercp/readdrid1" , model.getValue("/root/main/exambaseinfo/cnfmmanid2")) ;
- }
- }else if(model.getValue("/root/main/"+xpath+"[" + row + "]/rslttmplcd") == "1200006070" ) {
- btn_ptcs.selected = true;
- model.toggle("case8");
- ptcs_workdd.disabled = true ;
- if(btn_case1.selected == true ){
- model.setValue("root/main/examform/ptcs/workdd" , curDate ) ; // 작업일자에 현재일자
- model.makeValue("/root/main/examform/ptcs/readdrid1" , model.getValue("/root/main/exambaseinfo/cnfmmanid2")) ;
- }
- // }else if(model.getValue("/root/main/"+xpath+"[" + row + "]/rslttmplcd") == "1200006071" ) {
- }else if(model.getValue("/root/main/"+xpath+"[" + row + "]/rslttmplcd") == "1000008514" ) {
- btn_eus.selected = true;
- model.toggle("case9");
- eus_workdd.disabled = true ;
- if(btn_case1.selected == true ){
- model.setValue("root/main/examform/eus/workdd" , curDate ) ; // 작업일자에 현재일자
- model.makeValue("/root/main/examform/eus/readdrid1" , model.getValue("/root/main/exambaseinfo/cnfmmanid2")) ;
- }
- }else if(model.getValue("/root/main/"+xpath+"[" + row + "]/rslttmplcd") == "1200006072" ) {
- btn_lb.selected = true;
- model.toggle("case10");
- lb_workdd.disabled = true ;
- if(btn_case1.selected == true ){
- model.setValue("root/main/examform/lb/workdd" , curDate ) ; // 작업일자에 현재일자
- model.makeValue("/root/main/examform/lb/readdrid1" , model.getValue("/root/main/exambaseinfo/cnfmmanid2")) ;
- }
- }else if(model.getValue("/root/main/"+xpath+"[" + row + "]/rslttmplcd") == "1200006073" ) {
- btn_rs.selected = true;
- model.toggle("case11");
- rs_workdd.disabled = true ;
- if(btn_case1.selected == true ){
- model.setValue("root/main/examform/rs/workdd" , curDate ) ; // 작업일자에 현재일자
- model.makeValue("/root/main/examform/rs/readdrid1" , model.getValue("/root/main/exambaseinfo/cnfmmanid2")) ;
- }
- }else if((model.getValue("/root/main/"+xpath+"[" + row + "]/rslttmplcd") == "1200006066" )||
- (model.getValue("/root/main/"+xpath+"[" + row + "]/rslttmplcd") == "1200006067" )||
- (model.getValue("/root/main/"+xpath+"[" + row + "]/rslttmplcd") == "1200006068" )||
- (model.getValue("/root/main/"+xpath+"[" + row + "]/rslttmplcd") == "1200006069" )||
- (model.getValue("/root/main/"+xpath+"[" + row + "]/rslttmplcd") == "1200006070" )||
- (model.getValue("/root/main/"+xpath+"[" + row + "]/rslttmplcd") == "1200006071" )||
- (model.getValue("/root/main/"+xpath+"[" + row + "]/rslttmplcd") == "1200006072" )||
- (model.getValue("/root/main/"+xpath+"[" + row + "]/rslttmplcd") == "1200006073" )){
- messageBox("검사치료코드 관리에서 결과 서식설정이 잘못되었습니다. 확인바랍니다.", "E999", "");
- return 0 ;
- }else if((model.getValue("/root/main/"+xpath+"[" + row + "]/rslttmplcd") == "" )||
- (model.getValue("/root/main/"+xpath+"[" + row + "]/rslttmplcd") == "0" ) ||
- (model.getValue("/root/main/"+xpath+"[" + row + "]/rslttmplcd") == "-" )) {
-
- messageBox("검사치료코드 관리에서 결과 서식설정이 않되어 있습니다. 확인바랍니다.", "E999", "");
- }
-
-
- }
-
- model.refresh();
-
- }
-
- /*서식 대상 데이터 만들기 */
- function fselectKind(xpath){
-
- md1nm = "";
- md2nm = "";
- md3nm = "";
-
- if(xpath == "egd"){
- md1nm = combo2.label;
- md2nm = combo3.label;
- md3nm = combo4.label;
- }else if (xpath == "cf"){
- md1nm = combo5.label;
- md2nm = combo6.label;
- md3nm = combo7.label;
- } else if (xpath == "fs"){
- md1nm = combo11.label;
- md2nm = combo12.label;
- md3nm = combo13.label;
- } else if (xpath == "ercp"){
- md1nm = combo8.label;
- md2nm = combo9.label;
- md3nm = combo10.label;
- } else if (xpath == "ptcs"){
- md1nm = combo15.label;
- md2nm = combo16.label;
- md3nm = combo14.label;
- } else if (xpath == "eus"){
- md1nm = combo19.label;
- md2nm = combo17.label;
- md3nm = combo18.label;
- } else if (xpath == "lb"){
- md1nm = combo22.label;
- md2nm = combo20.label;
- md3nm = combo21.label;
- }else if (xpath == "rs"){
- md1nm = combo23.label;
- md2nm = combo24.label;
- md3nm = combo25.label;
- }
-
- /*공통데이터*/
- model.makeValue("root/tmp/data/pid", model.getValue("root/main/exambaseinfo/pid" ));
- model.makeValue("root/tmp/data/orddd", model.getValue("root/main/exambaseinfo/orddd" ));
- model.makeValue("root/tmp/data/execprcpuniqno", model.getValue("root/main/exambaseinfo/execprcpuniqno" ));
- model.makeValue("root/tmp/data/cretno", model.getValue("root/main/exambaseinfo/cretno" ));
- model.makeValue("root/tmp/data/signno", model.getValue("root/main/exambaseinfo/signno" ));
- model.makeValue("root/tmp/data/sex", model.getValue("root/main/exambaseinfo/sex2" ));
- model.makeValue("root/tmp/data/age", model.getValue("root/main/exambaseinfo/age" ));
- model.makeValue("root/tmp/data/depthngnm", model.getValue("root/main/exambaseinfo/depthngnm" ));
- model.makeValue("root/tmp/data/usernm", model.getValue("root/main/exambaseinfo/usernm" ));
- model.makeValue("root/tmp/data/rrgstno", model.getValue("root/main/exambaseinfo/rrgstno" ));
- model.makeValue("root/tmp/data/ioflag", model.getValue("root/main/exambaseinfo/ioflag1" ));
- model.makeValue("root/tmp/data/hngnm", model.getValue("root/main/exambaseinfo/hngnm" ));
- model.makeValue("root/tmp/data/execdd", model.getValue("root/main/exambaseinfo/excuexectodd" ));
- model.makeValue("root/tmp/data/md1nm", md1nm);
- model.makeValue("root/tmp/data/md2nm", md2nm);
- model.makeValue("root/tmp/data/md3nm", md3nm );
-
- /*서식별 데이터는 xpath 경로로 설정 */
- model.makeValue("root/tmp/data/reason", model.getValue("root/main/examform/"+xpath+"/reason"));
- model.makeValue("root/tmp/data/drug", model.getValue("root/main/examform/"+xpath+"/drug"));
- model.makeValue("root/tmp/data/medic", model.getValue("root/main/examform/"+xpath+"/medic"));
- model.makeValue("root/tmp/data/bowelprep", model.getValue("root/main/examform/"+xpath+"/bowelprep"));
- model.makeValue("root/tmp/data/procedure", model.getValue("root/main/examform/"+xpath+"/procedure"));
- model.makeValue("root/tmp/data/rectalexam", model.getValue("root/main/examform/"+xpath+"/rectalexam"));
- model.makeValue("root/tmp/data/find1contnt1", model.getValue("root/main/examform/"+xpath+"/find1contnt1"));
- model.makeValue("root/tmp/data/find1contnt2", model.getValue("root/main/examform/"+xpath+"/find1contnt2"));
- model.makeValue("root/tmp/data/find1contnt3", model.getValue("root/main/examform/"+xpath+"/find1contnt3"));
- model.makeValue("root/tmp/data/find2contnt1", model.getValue("root/main/examform/"+xpath+"/find2contnt1"));
- model.makeValue("root/tmp/data/find2contnt2", model.getValue("root/main/examform/"+xpath+"/find2contnt2"));
- model.makeValue("root/tmp/data/find2contnt3", model.getValue("root/main/examform/"+xpath+"/find2contnt3"));
- model.makeValue("root/tmp/data/diag1", model.getValue("root/main/examform/"+xpath+"/diag1"));
- model.makeValue("root/tmp/data/diag2", model.getValue("root/main/examform/"+xpath+"/diag2"));
- model.makeValue("root/tmp/data/diag3", model.getValue("root/main/examform/"+xpath+"/diag3"));
- model.makeValue("root/tmp/data/therap", model.getValue("root/main/examform/"+xpath+"/therap"));
- model.makeValue("root/tmp/data/complic", model.getValue("root/main/examform/"+xpath+"/complic"));
- model.makeValue("root/tmp/data/clotest", model.getValue("root/main/examform/"+xpath+"/clotest"));
- model.makeValue("root/tmp/data/recommend", model.getValue("root/main/examform/"+xpath+"/recommend"));
- model.makeValue("root/tmp/data/remark", model.getValue("root/main/examform/"+xpath+"/remark"));
- model.makeValue("root/tmp/data/sleepyn", model.getValue("root/main/examform/"+xpath+"/sleepyn"));
- model.makeValue("root/tmp/data/pacsyn", model.getValue("root/main/examform/"+xpath+"/pacsyn"));
- model.makeValue("root/tmp/data/video", model.getValue("root/main/examform/"+xpath+"/video"));
- model.makeValue("root/tmp/data/cytologyyn", model.getValue("root/main/examform/"+xpath+"/cytologyyn"));
- model.makeValue("root/tmp/data/cloyn", model.getValue("root/main/examform/"+xpath+"/cloyn"));
- model.makeValue("root/tmp/data/phyn", model.getValue("root/main/examform/"+xpath+"/phyn"));
- model.makeValue("root/tmp/data/samplingyn", model.getValue("root/main/examform/"+xpath+"/samplingyn"));
- model.makeValue("root/tmp/data/cultureyn", model.getValue("root/main/examform/"+xpath+"/cultureyn"));
- model.makeValue("root/tmp/data/aspirationyn", model.getValue("root/main/examform/"+xpath+"/aspirationyn"));
- model.makeValue("root/tmp/data/biopsytn", model.getValue("root/main/examform/"+xpath+"/biopsytn"));
- model.makeValue("root/tmp/data/polypectyn", model.getValue("root/main/examform/"+xpath+"/polypectyn"));
- model.makeValue("root/tmp/data/esdemryn", model.getValue("root/main/examform/"+xpath+"/esdemryn"));
- model.makeValue("root/tmp/data/ampullectomyyn", model.getValue("root/main/examform/"+xpath+"/ampullectomyyn"));
- model.makeValue("root/tmp/data/srchreason", model.getValue("root/main/examform/"+xpath+"/srchreason"));
- model.makeValue("root/tmp/data/srchdrug", model.getValue("root/main/examform/"+xpath+"/srchdrug"));
- model.makeValue("root/tmp/data/srchmedic", model.getValue("root/main/examform/"+xpath+"/srchmedic"));
- model.makeValue("root/tmp/data/srchbowelprep", model.getValue("root/main/examform/"+xpath+"/srchbowelprep"));
- model.makeValue("root/tmp/data/srchprocedure", model.getValue("root/main/examform/"+xpath+"/srchprocedure"));
- model.makeValue("root/tmp/data/srchrectalexam", model.getValue("root/main/examform/"+xpath+"/srchrectalexam"));
- model.makeValue("root/tmp/data/srchfind1contnt1", model.getValue("root/main/examform/"+xpath+"/srchfind1contnt1"));
- model.makeValue("root/tmp/data/srchfind1contnt2", model.getValue("root/main/examform/"+xpath+"/srchfind1contnt2"));
- model.makeValue("root/tmp/data/srchfind1contnt3", model.getValue("root/main/examform/"+xpath+"/srchfind1contnt3"));
- model.makeValue("root/tmp/data/srchfind2contnt1", model.getValue("root/main/examform/"+xpath+"/srchfind2contnt1"));
- model.makeValue("root/tmp/data/srchfind2contnt2", model.getValue("root/main/examform/"+xpath+"/srchfind2contnt2"));
- model.makeValue("root/tmp/data/srchfind2contnt3", model.getValue("root/main/examform/"+xpath+"/srchfind2contnt3"));
- model.makeValue("root/tmp/data/srchdiag1", model.getValue("root/main/examform/"+xpath+"/srchdiag1"));
- model.makeValue("root/tmp/data/srchdiag2", model.getValue("root/main/examform/"+xpath+"/srchdiag2"));
- model.makeValue("root/tmp/data/srchdiag3", model.getValue("root/main/examform/"+xpath+"/srchdiag3"));
- model.makeValue("root/tmp/data/srchtherap", model.getValue("root/main/examform/"+xpath+"/srchtherap"));
- model.makeValue("root/tmp/data/srchcomplic", model.getValue("root/main/examform/"+xpath+"/srchcomplic"));
- model.makeValue("root/tmp/data/srchrecommend", model.getValue("root/main/examform/"+xpath+"/srchrecommend"));
- model.makeValue("root/tmp/data/srchremark", model.getValue("root/main/examform/"+xpath+"/srchremark"));
- model.makeValue("root/tmp/data/readdrid1", model.getValue("root/main/examform/"+xpath+"/readdrid1"));
- model.makeValue("root/tmp/data/readdrid2", model.getValue("root/main/examform/"+xpath+"/readdrid2"));
- model.makeValue("root/tmp/data/readdrid3", model.getValue("root/main/examform/"+xpath+"/readdrid3"));
- model.makeValue("root/tmp/data/workdd", model.getValue("root/main/examform/"+xpath+"/workdd"));
- }
-
- /*입력한 기록에 대한 처리를 위해 send/data 에 셋팅 - 너무 길어서 따로 뻄 .. */
- function fmakeData(xpath){
-
- var rsltkind = "" ;
-
- if(xpath == "egd"){
- rsltkind = 0 ;
- }else if (xpath == "cf"){
- rsltkind= 1 ;
- } else if (xpath == "fs"){
- rsltkind = 2 ;
- } else if (xpath == "ercp"){
- rsltkind = 3 ;
- } else if (xpath == "ptcs"){
- rsltkind = 4 ;
- } else if (xpath == "eus"){
- rsltkind = 5 ;
- } else if (xpath == "lb"){
- rsltkind = 6 ;
- }else if (xpath == "rs"){
- rsltkind = 7 ;
- }
-
- model.makeValue("root/send/save/data/rsltdd", model.getValue("root/main/exambaseinfo/rsltdd"));
- model.makeValue("root/send/save/data/rsltno", model.getValue("root/main/exambaseinfo/rsltno"));
- model.makeValue("root/send/save/data/suppdeptcd", model.getValue("root/main/exambaseinfo/suppdeptcd"));
- model.makeValue("root/send/save/data/tmplcd", model.getValue("root/main/exambaseinfo/rslttmplcd")); //
- model.makeValue("root/send/save/data/rsltkind", rsltkind);
- model.makeValue("root/send/save/data/status", model.getValue("root/main/exambaseinfo/status")); //
- model.makeValue("root/send/save/data/rslttm", model.getValue("root/main/exambaseinfo/rslttm"));
- model.makeValue("root/send/save/data/execdd", model.getValue("root/main/exambaseinfo/excuexectodd"));
- model.makeValue("root/send/save/data/workdd", model.getValue("root/tmp/data/workdd"));
- model.makeValue("/root/send/save/data/pid", model.getValue("/root/main/exambaseinfo/pid"));
- model.makeValue("root/send/save/data/hngnm", model.getValue("root/main/exambaseinfo/hngnm"));
- model.makeValue("root/send/save/data/sex", model.getValue("root/main/exambaseinfo/sex2"));
- model.makeValue("root/send/save/data/age", model.getValue("root/main/exambaseinfo/age"));
- model.makeValue("root/send/save/data/rrgstno", model.getValue("root/main/exambaseinfo/rrgstno1"));
- model.makeValue("root/send/save/data/ioflag", model.getValue("root/main/exambaseinfo/ioflag"));
- model.makeValue("root/send/save/data/wardcd", model.getValue("root/main/exambaseinfo/wardcd"));
- model.makeValue("root/send/save/data/orddrid", model.getValue("root/main/exambaseinfo/orddrid2"));
- model.makeValue("root/send/save/data/execprcpuniqno",model.getValue("root/main/exambaseinfo/execprcpuniqno"));
- model.makeValue("root/send/save/data/prcpdd", model.getValue("root/main/exambaseinfo/prcpdd"));
- model.makeValue("root/send/save/data/formrecseq", model.getValue("root/main/exambaseinfo/formrecseq"));
- // model.makeValue("root/send/save/data/formrecseq", "0");
- model.makeValue("root/send/save/data/signno", model.getValue("root/main/exambaseinfo/signno"));
- model.makeValue("root/send/save/data/orddeptcd", model.getValue("root/main/exambaseinfo/orddeptcd"));
- model.makeValue("root/send/save/data/reason", model.getValue("root/tmp/data/reason"));
- model.makeValue("root/send/save/data/drug", model.getValue("root/tmp/data/drug"));
- model.makeValue("root/send/save/data/medic", model.getValue("root/tmp/data/medic"));
- model.makeValue("root/send/save/data/bowelprep", model.getValue("root/tmp/data/bowelprep"));
- model.makeValue("root/send/save/data/procedure", model.getValue("root/tmp/data/procedure"));
- model.makeValue("root/send/save/data/rectalexam", model.getValue("root/tmp/data/rectalexam"));
- model.makeValue("root/send/save/data/find1contnt1", model.getValue("root/tmp/data/find1contnt1"));
- model.makeValue("root/send/save/data/find1contnt2", model.getValue("root/tmp/data/find1contnt2"));
- model.makeValue("root/send/save/data/find1contnt3", model.getValue("root/tmp/data/find1contnt3"));
- model.makeValue("root/send/save/data/find2contnt1", model.getValue("root/tmp/data/find2contnt1"));
- model.makeValue("root/send/save/data/find2contnt2", model.getValue("root/tmp/data/find2contnt2"));
- model.makeValue("root/send/save/data/find2contnt3", model.getValue("root/tmp/data/find2contnt3"));
- model.makeValue("root/send/save/data/diag1", model.getValue("root/tmp/data/diag1"));
- model.makeValue("root/send/save/data/diag2", model.getValue("root/tmp/data/diag2"));
- model.makeValue("root/send/save/data/diag3", model.getValue("root/tmp/data/diag3"));
- model.makeValue("root/send/save/data/therap", model.getValue("root/tmp/data/therap"));
- model.makeValue("root/send/save/data/complic", model.getValue("root/tmp/data/complic"));
- model.makeValue("root/send/save/data/clotest", model.getValue("root/tmp/data/clotest"));
- model.makeValue("root/send/save/data/recommend", model.getValue("root/tmp/data/recommend"));
- model.makeValue("root/send/save/data/remark", model.getValue("root/tmp/data/remark"));
- model.makeValue("root/send/save/data/sleepyn", model.getValue("root/tmp/data/sleepyn"));
- model.makeValue("root/send/save/data/pacsyn", model.getValue("root/tmp/data/pacsyn"));
- model.makeValue("root/send/save/data/video", model.getValue("root/tmp/data/video"));
- model.makeValue("root/send/save/data/cytologyyn", model.getValue("root/tmp/data/cytologyyn"));
- model.makeValue("root/send/save/data/cloyn", model.getValue("root/tmp/data/cloyn"));
- model.makeValue("root/send/save/data/phyn", model.getValue("root/tmp/data/phyn"));
- model.makeValue("root/send/save/data/samplingyn", model.getValue("root/tmp/data/samplingyn"));
- model.makeValue("root/send/save/data/cultureyn", model.getValue("root/tmp/data/cultureyn"));
- model.makeValue("root/send/save/data/aspirationyn", model.getValue("root/tmp/data/aspirationyn"));
- model.makeValue("root/send/save/data/biopsytn", model.getValue("root/tmp/data/biopsytn"));
- model.makeValue("root/send/save/data/polypectyn", model.getValue("root/tmp/data/polypectyn"));
- model.makeValue("root/send/save/data/esdemryn", model.getValue("root/tmp/data/esdemryn"));
- model.makeValue("root/send/save/data/ampullectomyyn", model.getValue("root/tmp/data/ampullectomyyn"));
- model.makeValue("root/send/save/data/srchreason", model.getValue("root/tmp/data/srchreason"));
- model.makeValue("root/send/save/data/srchdrug", model.getValue("root/tmp/data/srchdrug"));
- model.makeValue("root/send/save/data/srchmedic", model.getValue("root/tmp/data/srchmedic"));
- model.makeValue("root/send/save/data/srchbowelprep", model.getValue("root/tmp/data/srchbowelprep"));
- model.makeValue("root/send/save/data/srchprocedure", model.getValue("root/tmp/data/srchprocedure"));
- model.makeValue("root/send/save/data/srchrectalexam", model.getValue("root/tmp/data/srchrectalexam"));
- model.makeValue("root/send/save/data/srchfind1contnt1", model.getValue("root/tmp/data/srchfind1contnt1"));
- model.makeValue("root/send/save/data/srchfind1contnt2", model.getValue("root/tmp/data/srchfind1contnt2"));
- model.makeValue("root/send/save/data/srchfind1contnt3", model.getValue("root/tmp/data/srchfind1contnt3"));
- model.makeValue("root/send/save/data/srchfind2contnt1", model.getValue("root/tmp/data/srchfind2contnt1"));
- model.makeValue("root/send/save/data/srchfind2contnt2", model.getValue("root/tmp/data/srchfind2contnt2"));
- model.makeValue("root/send/save/data/srchfind2contnt3", model.getValue("root/tmp/data/srchfind2contnt3"));
- model.makeValue("root/send/save/data/srchdiag1", model.getValue("root/tmp/data/srchdiag1"));
- model.makeValue("root/send/save/data/srchdiag2", model.getValue("root/tmp/data/srchdiag2"));
- model.makeValue("root/send/save/data/srchdiag3", model.getValue("root/tmp/data/srchdiag3"));
- model.makeValue("root/send/save/data/srchtherap", model.getValue("root/tmp/data/srchtherap"));
- model.makeValue("root/send/save/data/srchcomplic", model.getValue("root/tmp/data/srchcomplic"));
- model.makeValue("root/send/save/data/srchrecommend", model.getValue("root/tmp/data/srchrecommend"));
- model.makeValue("root/send/save/data/srchremark", model.getValue("root/tmp/data/srchremark"));
- model.makeValue("root/send/save/data/readdrid1", model.getValue("root/tmp/data/readdrid1"));
- model.makeValue("root/send/save/data/readdrid2", model.getValue("root/tmp/data/readdrid2"));
- model.makeValue("root/send/save/data/readdrid3", model.getValue("root/tmp/data/readdrid3"));
-
-
- }
-
-
- /*처방& 접수 상태 변경을 위한 execdata 셋팅*/
- function fmakeExecdata(){
-
- if(btn_case1.selected == true ) {
- model.makeValue("/root/send/save/execdata/iuflag", "C");
- } else if (btn_case2.selected == true ) {
- model.makeValue("/root/send/save/execdata/iuflag", "U"); // C: 신규 // U : 수정
- }
- model.makeValue("/root/send/save/execdata/prcpdd", model.getValue("/root/main/exambaseinfo/prcpdd"));
- model.makeValue("/root/send/save/execdata/execprcpuniqno", model.getValue("/root/main/exambaseinfo/execprcpuniqno"));
- model.makeValue("/root/send/save/execdata/rsltdd", model.getValue("/root/main/exambaseinfo/rsltdd"));
- model.makeValue("/root/send/save/execdata/rsltno", model.getValue("/root/main/exambaseinfo/rsltno"));
- model.makeValue("/root/send/save/execdata/tmplcd", model.getValue("/root/main/exambaseinfo/rslttmplcd"));
- model.makeValue("/root/send/save/execdata/suppdeptcd", model.getValue("/root/main/exambaseinfo/suppdeptcd"));
- model.makeValue("/root/send/save/execdata/rslttm", model.getValue("/root/main/exambaseinfo/rslttm"));
- model.makeValue("/root/send/save/execdata/pid" , model.getValue("/root/main/exambaseinfo/pid"));
- model.makeValue("/root/send/save/execdata/readdrid1", model.getValue("/root/tmp/data/readdrid1"));
- model.makeValue("/root/send/save/execdata/readdrid2", model.getValue("/root/tmp/data/readdrid2"));
- model.makeValue("/root/send/save/execdata/readdrid3", model.getValue("/root/tmp/data/readdrid3"));
- model.makeValue("/root/send/save/execdata/iugb", "2"); // 최종인증
- model.makeValue("/root/send/save/execdata/statcd", "730"); // 최종보고
- model.makeValue("/root/send/save/execdata/prcpno", model.getValue("/root/main/exambaseinfo/prcpno"));
- model.makeValue("/root/send/save/execdata/prcphistno", model.getValue("/root/main/exambaseinfo/prcphistno"));
- model.makeValue("/root/send/save/execdata/execbaseflag", model.getValue("/root/main/exambaseinfo/execbaseflag"));
- model.makeValue("/root/send/save/execdata/prcpgenrflag", model.getValue("/root/main/exambaseinfo/prcpgenrflag"));
- model.makeValue("/root/send/save/execdata/inclprcpcd", model.getValue("/root/main/exambaseinfo/inclprcpcd"));
- model.makeValue("/root/send/save/execdata/cnfmdt", model.getValue("/root/main/exambaseinfo/cnfmdt"));
- model.makeValue("/root/send/save/execdata/cnfmmanid", model.getValue("/root/main/exambaseinfo/cnfmmanid"));
- model.makeValue("/root/send/save/execdata/deptgubun", "1"); //내시경실 , 건진내시경실과 타부서코드 의 구분자 세팅 추가 , APP에서 사용 APP(저장/삭제)에서 사용(iugb=2 and deptgubun = 1)
- model.makeValue("/root/send/save/execdata/instcd", getUserInfo("dutplceinstcd"));
- model.makeValue("/root/send/save/execdata/pacsflag", "C"); //확정저장
- model.makeValue("/root/send/save/execdata/formrecseq", model.getValue("/root/main/exambaseinfo/formrecseq"));
- //model.makeValue("/root/send/save/execdata/rsltgb", "C"); //예진저장 유무 C --> N , U --> Y
-
-
- }
-
- /*간호인증 모듈 필수 정보 */
- function fmakeSignData(){
-
-
- model.makeValue("/root/send/save/formrec/orddd", model.getValue("root/tmp/data/orddd")) ;
- model.makeValue("/root/send/save/formrec/pid", model.getValue("root/tmp/data/pid")) ;
- model.makeValue("/root/send/save/formrec/cretno", model.getValue("root/tmp/data/cretno")) ;
- model.makeValue("/root/send/save/formrec/signgenrflag", model.getValue("root/main/exambaseinfo/prcpgenrflag")) ;
- model.makeValue("/root/send/save/formrec/orddrid", model.getValue("root/main/exambaseinfo/orddrid2")) ;
- model.makeValue("/root/send/save/formrec/orddeptcd", model.getValue("root/main/exambaseinfo/orddeptcd")) ;
-
- if( model.getValue("root/main/exambaseinfo/signno") == "" ) {
- model.makeValue("/root/send/save/formrec/signno", 0 ) ;
- }else {
- model.makeValue("/root/send/save/formrec/signno", model.getValue("root/main/exambaseinfo/signno") ) ;
- }
-
- model.makeValue("/root/send/save/formrec/recdd", getCurrentDate() );
- model.makeValue("/root/send/save/formrec/rectm", getCurrentTime() );
- model.makeValue("/root/send/save/formrec/recsaveflag", "Y"); // 전자서명 인적정보 변경 여부 (기록일시 변경되는 경우 : Y, 그외 : N));
- model.makeValue("/root/send/save/formrec/status", "c");
- model.makeValue("/root/send/save/formrec/signflag", "04"); //진료지원
- model.makeValue("/root/send/save/formrec/tmplcd", model.getValue("root/main/exambaseinfo/rslttmplcd"));
- model.makeValue("/root/send/save/formrec/orddrid", model.getValue("root/main/exambaseinfo/orddrid2"));
- model.makeValue("/root/send/save/formrec/signbfcnts", "-");// 인증데이터
- model.makeValue("/root/send/save/formrec/signbfcnts", Sign.signedInfos[1]);// 인증데이터
- model.makeValue("/root/send/save/formrec/signaftcnts", Sign.signedInfos[2]);
-
- }
-
- function fmakeTempData(xpath){
- var rsltkind = "" ;
-
- if(xpath == "egd"){
- rsltkind = 0 ;
- }else if (xpath == "cf"){
- rsltkind= 1 ;
- } else if (xpath == "fs"){
- rsltkind = 2 ;
- } else if (xpath == "ercp"){
- rsltkind = 3 ;
- } else if (xpath == "ptcs"){
- rsltkind = 4 ;
- } else if (xpath == "eus"){
- rsltkind = 5 ;
- } else if (xpath == "lb"){
- rsltkind = 6 ;
- }else if (xpath == "rs"){
- rsltkind = 7 ;
- }
-
- model.makeValue("/root/send2/save2/formrec/orddd", model.getValue("root/tmp/data/orddd")) ;
- model.makeValue("/root/send2/save2/formrec/pid", model.getValue("root/tmp/data/pid")) ;
- model.makeValue("/root/send2/save2/formrec/cretno", model.getValue("root/tmp/data/cretno")) ;
- model.makeValue("/root/send2/save2/formrec/signgenrflag", model.getValue("root/main/exambaseinfo/prcpgenrflag")) ;
- model.makeValue("/root/send2/save2/formrec/orddrid", model.getValue("root/main/exambaseinfo/orddrid2")) ;
- model.makeValue("/root/send2/save2/formrec/orddeptcd", model.getValue("root/main/exambaseinfo/orddeptcd")) ;
-
- if( model.getValue("root/main/exambaseinfo/signno") == "" ) {
- model.makeValue("/root/send2/save2/formrec/signno", 0 ) ;
- }else {
- model.makeValue("/root/send2/save2/formrec/signno", model.getValue("root/main/exambaseinfo/signno") ) ;
- }
-
- model.makeValue("/root/send2/save2/formrec/recdd", getCurrentDate() );
- model.makeValue("/root/send2/save2/formrec/rectm", getCurrentTime() );
- model.makeValue("/root/send2/save2/formrec/recsaveflag", "Y"); // 전자서명 인적정보 변경 여부 (기록일시 변경되는 경우 : Y, 그외 : N));
- model.makeValue("/root/send2/save2formrec/status", "c");
- model.makeValue("/root/send2/save2/formrec/signflag", "04"); //진료지원
- model.makeValue("/root/send2/save2/formrec/tmplcd", model.getValue("root/main/exambaseinfo/rslttmplcd"));
- model.makeValue("/root/send2/save2/formrec/rslttmplcd", model.getValue("root/main/exambaseinfo/rslttmplcd"));
- model.makeValue("/root/send2/save2/formrec/orddrid", model.getValue("root/main/exambaseinfo/orddrid2"));
- model.makeValue("/root/send2/save2/formrec/signbfcnts", Sign.signedInfos[1]);// 인증데이터
- model.makeValue("/root/send2/save2/formrec/signaftcnts", Sign.signedInfos[2]);
-
- model.makeValue("root/send2/save2/rsltdd", model.getValue("root/main/exambaseinfo/rsltdd"));
- model.makeValue("root/send2/save2/rsltno", model.getValue("root/main/exambaseinfo/rsltno"));
- model.makeValue("root/send2/save2/suppdeptcd", model.getValue("root/main/exambaseinfo/suppdeptcd"));
- model.makeValue("root/send2/save2/tmplcd", model.getValue("root/main/exambaseinfo/rslttmplcd")); //
- model.makeValue("root/send2/save2/tmplcd", model.getValue("root/main/exambaseinfo/rslttmplcd"));
- model.makeValue("root/send2/save2/rsltkind", rsltkind);
- model.makeValue("root/send2/save2/status", model.getValue("root/main/exambaseinfo/status")); //
- model.makeValue("root/send2/save2/rslttm", model.getValue("root/main/exambaseinfo/rslttm"));
- model.makeValue("root/send2/save2/execdd", model.getValue("root/main/exambaseinfo/excuexectodd"));
- model.makeValue("root/send2/save2/workdd", model.getValue("root/tmp/data/workdd"));
- model.makeValue("root/send2/save2/pid", model.getValue("/root/main/exambaseinfo/pid"));
- model.makeValue("root/send2/save2/hngnm", model.getValue("root/main/exambaseinfo/hngnm"));
- model.makeValue("root/send2/save2/sex", model.getValue("root/main/exambaseinfo/sex2"));
- model.makeValue("root/send2/save2/age", model.getValue("root/main/exambaseinfo/age"));
- model.makeValue("root/send2/save2/rrgstno", model.getValue("root/main/exambaseinfo/rrgstno1"));
- model.makeValue("root/send2/save2/ioflag", model.getValue("root/main/exambaseinfo/ioflag"));
- model.makeValue("root/send2/save2/wardcd", model.getValue("root/main/exambaseinfo/wardcd"));
- model.makeValue("root/send2/save2/orddrid", model.getValue("root/main/exambaseinfo/orddrid2"));
- model.makeValue("root/send2/save2/execprcpuniqno",model.getValue("root/main/exambaseinfo/execprcpuniqno"));
- model.makeValue("root/send2/save2/prcpdd", model.getValue("root/main/exambaseinfo/prcpdd"));
- // model.makeValue("root/send/save/data/formrecseq", model.getValue("root/main/exambaseinfo/formrecseq"));
- // model.makeValue("root/send2save2/tmplcd, model.getValue("root/send/fgetread/tmplcd");
- model.makeValue("root/send2/save2/formrecseq", "0");
- model.makeValue("root/send2/save2/signno", model.getValue("root/main/exambaseinfo/signno"));
- model.makeValue("root/send2/save2/orddeptcd", model.getValue("root/main/exambaseinfo/orddeptcd"));
- model.makeValue("root/send2/save2/reason", model.getValue("root/tmp/data/reason"));
- model.makeValue("root/send2/save2/drug", model.getValue("root/tmp/data/drug"));
- model.makeValue("root/send2/save2/medic", model.getValue("root/tmp/data/medic"));
- model.makeValue("root/send2/save2/bowelprep", model.getValue("root/tmp/data/bowelprep"));
- model.makeValue("root/send2/save2/procedure", model.getValue("root/tmp/data/procedure"));
- model.makeValue("root/send2/save2/rectalexam", model.getValue("root/tmp/data/rectalexam"));
- model.makeValue("root/send2/save2/find1contnt1", model.getValue("root/tmp/data/find1contnt1"));
- model.makeValue("root/send2/save2/find1contnt2", model.getValue("root/tmp/data/find1contnt2"));
- model.makeValue("root/send2/save2/find1contnt3", model.getValue("root/tmp/data/find1contnt3"));
- model.makeValue("root/send2/save2/find2contnt1", model.getValue("root/tmp/data/find2contnt1"));
- model.makeValue("root/send2/save2/find2contnt2", model.getValue("root/tmp/data/find2contnt2"));
- model.makeValue("root/send2/save2/find2contnt3", model.getValue("root/tmp/data/find2contnt3"));
- model.makeValue("root/send2/save2/diag1", model.getValue("root/tmp/data/diag1"));
- model.makeValue("root/send2/save2/diag2", model.getValue("root/tmp/data/diag2"));
- model.makeValue("root/send2/save2/diag3", model.getValue("root/tmp/data/diag3"));
- model.makeValue("root/send2/save2/therap", model.getValue("root/tmp/data/therap"));
- model.makeValue("root/send2/save2/complic", model.getValue("root/tmp/data/complic"));
- model.makeValue("root/send2/save2/clotest", model.getValue("root/tmp/data/clotest"));
- model.makeValue("root/send2/save2/recommend", model.getValue("root/tmp/data/recommend"));
- model.makeValue("root/send2/save2/remark", model.getValue("root/tmp/data/remark"));
- model.makeValue("root/send2/save2/sleepyn", model.getValue("root/tmp/data/sleepyn"));
- model.makeValue("root/send2/save2/pacsyn", model.getValue("root/tmp/data/pacsyn"));
- model.makeValue("root/send2/save2/video", model.getValue("root/tmp/data/video"));
- model.makeValue("root/send2/save2/cytologyyn", model.getValue("root/tmp/data/cytologyyn"));
- model.makeValue("root/send2/save2/cloyn", model.getValue("root/tmp/data/cloyn"));
- model.makeValue("root/send2/save2/phyn", model.getValue("root/tmp/data/phyn"));
- model.makeValue("root/send2/save2/samplingyn", model.getValue("root/tmp/data/samplingyn"));
- model.makeValue("root/send2/save2/cultureyn", model.getValue("root/tmp/data/cultureyn"));
- model.makeValue("root/send2/save2/aspirationyn", model.getValue("root/tmp/data/aspirationyn"));
- model.makeValue("root/send2/save2/biopsytn", model.getValue("root/tmp/data/biopsytn"));
- model.makeValue("root/send2/save2/polypectyn", model.getValue("root/tmp/data/polypectyn"));
- model.makeValue("root/send2/save2/esdemryn", model.getValue("root/tmp/data/esdemryn"));
- model.makeValue("root/send2/save2/ampullectomyyn", model.getValue("root/tmp/data/ampullectomyyn"));
- model.makeValue("root/send2/save2/srchreason", model.getValue("root/tmp/data/srchreason"));
- model.makeValue("root/send2/save2/srchdrug", model.getValue("root/tmp/data/srchdrug"));
- model.makeValue("root/send2/save2/srchmedic", model.getValue("root/tmp/data/srchmedic"));
- model.makeValue("root/send2/save2/srchbowelprep", model.getValue("root/tmp/data/srchbowelprep"));
- model.makeValue("root/send2/save2/srchprocedure", model.getValue("root/tmp/data/srchprocedure"));
- model.makeValue("root/send2/save2/srchrectalexam", model.getValue("root/tmp/data/srchrectalexam"));
- model.makeValue("root/send2/save2/srchfind1contnt1", model.getValue("root/tmp/data/srchfind1contnt1"));
- model.makeValue("root/send2/save2/srchfind1contnt2", model.getValue("root/tmp/data/srchfind1contnt2"));
- model.makeValue("root/send2/save2/srchfind1contnt3", model.getValue("root/tmp/data/srchfind1contnt3"));
- model.makeValue("root/send2/save2/srchfind2contnt1", model.getValue("root/tmp/data/srchfind2contnt1"));
- model.makeValue("root/send2/save2/srchfind2contnt2", model.getValue("root/tmp/data/srchfind2contnt2"));
- model.makeValue("root/send2/save2/srchfind2contnt3", model.getValue("root/tmp/data/srchfind2contnt3"));
- model.makeValue("root/send2/save2/srchdiag1", model.getValue("root/tmp/data/srchdiag1"));
- model.makeValue("root/send2/save2/srchdiag2", model.getValue("root/tmp/data/srchdiag2"));
- model.makeValue("root/send2/save2/srchdiag3", model.getValue("root/tmp/data/srchdiag3"));
- model.makeValue("root/send2/save2/srchtherap", model.getValue("root/tmp/data/srchtherap"));
- model.makeValue("root/send2/save2/srchcomplic", model.getValue("root/tmp/data/srchcomplic"));
- model.makeValue("root/send2/save2/srchrecommend", model.getValue("root/tmp/data/srchrecommend"));
- model.makeValue("root/send2/save2/srchremark", model.getValue("root/tmp/data/srchremark"));
- model.makeValue("root/send2/save2/readdrid1", model.getValue("root/tmp/data/readdrid1"));
- model.makeValue("root/send2/save2/readdrid2", model.getValue("root/tmp/data/readdrid2"));
- model.makeValue("root/send2/save2/readdrid3", model.getValue("root/tmp/data/readdrid3"));
-
- }
-
-
- /*20130310 이용기 병리 의뢰시 처방창에 넘길 항목 MAKE*/
- function fmakeAddPrcpTransf(xpath){
-
- var AddPrcpTransf = "";
- var clo = "";
- var biopsy = "";
- var cytology = "";
- var esdemr = "";
- var polypect = "";
- var sampling = "";
- var culture = "";
- var aspiration = "";
- var sampling = "";
- var ampullectomy = "";
-
- if(model.getValue("/root/main/examform/"+ xpath + "/cloyn") == "Y"){
- clo = "clo|";
- }
- if(model.getValue("/root/main/examform/"+ xpath + "/biopsytn") == "Y"){
- biopsy = "biopsy|";
- }
- if(model.getValue("/root/main/examform/"+ xpath + "/cytologyyn") == "Y"){
- cytology = "cytology|";
- }
- if(model.getValue("/root/main/examform/"+ xpath + "/esdemryn") == "Y"){
- esdemr = "esdemr|";
- }
- if(model.getValue("/root/main/examform/"+ xpath + "/polypectyn") == "Y"){
- polypect = "polypect|";
- }
- if(model.getValue("/root/main/examform/"+ xpath + "/samplingyn") == "Y"){
- sampling = "sampling|";
- }
- if(model.getValue("/root/main/examform/"+ xpath + "/cultureyn") == "Y"){
- culture = "culture|";
- }
- if(model.getValue("/root/main/examform/"+ xpath + "/aspirationyn") == "Y"){
- aspiration = "aspiration|";
- }
- if(model.getValue("/root/main/examform/"+ xpath + "/samplingyn") == "Y"){
- sampling = "sampling|";
- }
- if(model.getValue("/root/main/examform/"+ xpath + "/ampullectomyyn")== "Y"){
- ampullectomy = "ampullectomy|";
- }
- if( xpath == "lb"){
- AddPrcpTransf = xpath+"^-|";
- }else{
- AddPrcpTransf = xpath+"^"+ clo + biopsy + cytology + esdemr + polypect + sampling + culture + aspiration + sampling + ampullectomy ;
- }
- //alert(AddPrcpTransf);
-
- return AddPrcpTransf ;
-
- }
-
-
-
- /* **********************************
- * ENRSignEngine.js에서 함수를 호출
- * ***********************************/
- function fMake_SignData(){
- Sign.addnode("/root/tmp/data"); // 인증경로로 copynode 함
- Sign.certreload = true; // 인증시점에 무조건 다시 확인하게 할지 말지를 결정하는 옵션이다. (지정하지 않으면 기본 False)
- }
- function fexecCert(xpath){
-
- /*
- 결과지 값에 따라 의뢰지창 & 처방창 띄우기
- */
- //alert( "patholno 1->["+getParameter("SMAER00400_patholno")+"]");
- if ( getParameter("SMAER00400_patholno") == "0" || getParameter("SMAER00400_patholno") == "" ) {
- if(xpath == "egd"){
- if(checkbox6.value == "Y" || checkbox7.value == "Y" || checkbox8.value == "Y" || checkbox5.value == "Y" || checkbox9.value == "Y" || checkbox10.value == "Y"){
- fsetpatholno(xpath);
- }
- }else if(xpath == "cf"){
- if(checkbox17.value == "Y" || checkbox18.value == "Y" || checkbox19.value == "Y" || checkbox2.value == "Y" || checkbox16.value == "Y"){
- fsetpatholno(xpath);
- }
- }else if(xpath == "fs"){
- if(checkbox41.value == "Y" || checkbox42.value == "Y" || checkbox43.value == "Y" || checkbox39.value == "Y" || checkbox40.value == "Y"){
- fsetpatholno(xpath);
- }
- }else if(xpath == "ercp"){
- if(checkbox32.value == "Y" || checkbox29.value == "Y" || checkbox22.value == "Y" || checkbox27.value == "Y"){
- fsetpatholno(xpath);
- }
- }else if(xpath == "ptcs"){
- if(checkbox30.value == "Y" || checkbox55.value == "Y" || checkbox56.value =="Y" || checkbox12.value == "Y" || checkbox20.value =="Y"){
- fsetpatholno(xpath);
- }
- }else if(xpath == "eus"){
- if(checkbox31.value == "Y" || checkbox48.value == "Y" || checkbox66.value == "Y" || checkbox59.value == "Y"){
- fsetpatholno(xpath);
- }
- }/*else if(xpath == "lb"){
-
- }*/else if(xpath == "rs"){
- if(checkbox68.value == "Y" || checkbox69.value == "Y" || checkbox67.value == "Y"){
- fsetpatholno(xpath);
- }
- }
-
- }
-
- var SMAER00400_patholno = getParameter("SMAER00400_patholno");
- var patholno = SMAER00400_patholno.split(",");
-
- /*인증 대상 데이터(Sign.signedInfos[1],Sign.signedInfos[2]) tmp 노드 생성 */
- fselectKind(xpath);
- if (Sign.signprocess() == true) {
-
- /*간호인증 모듈 필수 정보 */
- fmakeSignData();
-
- /*처방& 접수 상태 변경을 위한 execdata 셋팅*/
- fmakeExecdata();
-
- /*기록에 대한 사항을 저장하기 위해 makeValue 하는 function*/
- fmakeData(xpath);
-
-
- } else {
- messageBox("인증실패 Error Code :" + Sign.errcode , "E999", "");
- return false;
- }
-
- //의뢰지 번호 입력
- if(patholno == "" ) {
-
- model.makeValue("/root/send/save/execpatholdata/patholno", "0") ;
-
- }else{
- model.makeValue("/root/send/save/execpatholdata/patholno", patholno) ;
- }
-
- //alert( "patholno->["+model.getValue("/root/send/save/execpatholdata/patholno")+"]");
- if (submit("TXAER15001",false)){
-
- /*20121108 이용기 내시경 결과 입력후 환자 전광판 상태 회복중으로 변경.*/
- if(btn_case1.selected == true){
-
- /*건진처방일때는 내시경 전광판 사용 없음 */
- if(model.getValue("/root/main/exambaseinfo/prcpgenrflag") != "S" ){
- fsetDspySrn(4);
- }
- }
- //messageBox("정상적으로 처리되었습니다", "E999", "");
- setParameter("SMAER00400_patholno", "0");
- }
- readFuncCheck();
- }
-
-
- function fOpenPrcpMngt() {
- if ( btn_case1.selected == true ) aezfAddPrcpMngt(grd_mainordlist3, "/root/main/rsltinpt/rsltlist","2");
- if ( btn_case2.selected == true ) aezfAddPrcpMngt(grd_mainordlist5, "/root/main/rsltinpt1/rsltlist1","2");
- }
-
- function fsetpatholno(xpatht) {
-
- /*20130310 이용기 병리 의뢰시 */
- var addPrcpTransf = fmakeAddPrcpTransf(xpatht);
-
-
- if(btn_case1.selected == true ) {
- xpath = "rsltinpt/rsltlist";
- row = grd_mainordlist3.row ;
- }else if(btn_case2.selected == true ) {
- xpath = "rsltinpt1/rsltlist1";
- row = grd_mainordlist5.row ;
- }
-
- model.makeValue("root/main/"+ xpath+"[" + row + "]/xrwid" , "SMAER15000" ) ;
- model.makeValue("root/main/"+ xpath+"[" + row + "]/addprcpkind" , addPrcpTransf ) ;
- /*
- alert( "xrwid : " + model.getValue("root/main/"+ xpath+"[" + row + "]/xrwid" ) ) ;
- alert( "addprcpkind : " + model.getValue("root/main/"+ xpath+"[" + row + "]/addprcpkind" ) ) ;
- */
- fOpenPrcpMngt();
-
- if ( model.getValue("/root/send/reqdata/deptgubun") == "1" ) {
- if ( xpath == "rsltinpt/rsltlist" ) {
- if ( getParameter("SMAER00400_patholno") != "0") {
- model.makeValue("/root/send/execdata/execpatholdata/patholno", getParameter("SMAER00400_patholno"));
- }
- }else if ( xpath == "rsltinpt1/rsltlist1" ) {
- var p_cnt = 0;
- if ( getParameter("SMAER00400_patholno") != "0") {
- model.makeValue("/root/send/execpatholdata/patholno", getParameter("SMAER00400_patholno"));
- p_cnt++;
- }
- if ( p_cnt > 0 && model.getValue("/root/main/"+xpath+"[" + row + "]/patholno2") != "0") {
- model.makeValue("/root/send/execpatholdata/patholno",
- model.getValue("/root/send/execpatholdata/patholno")+
- model.getValue("/root/main/"+xpath+"[" + row + "]/patholno2") );
- }else if ( p_cnt == 0 && model.getValue("/root/main/"+xpath+"[" + row + "]/patholno2") != "0" ) {
- model.makeValue("/root/send/execpatholdata/patholno",
- model.getValue("/root/main/"+xpath+"[" + row + "]/patholno2") );
- }
-
-
- }
- // alert("patholno==>"+model.getValue("/root/send/execdata/execpatholdata/patholno") );
-
- }
-
- }
-
- function fexecCnclCert(){
-
- //setParameter("SMAER00400_patholno", "0");
-
- if (Sign.signprocess() == true) {
-
- /*인증 삭제에 대한 flag */
- model.makeValue("root/send/execdata/signno" , model.getValue("root/main/exambaseinfo/signno"));
- model.makeValue("root/send/execdata/status" , "d"); // 인증삭제 flag
-
- model.makeValue("root/send/execdata/prcpdd" , model.getValue("root/main/exambaseinfo/prcpdd"));
- model.makeValue("root/send/execdata/execprcpuniqno", model.getValue("root/main/exambaseinfo/execprcpuniqno"));
- model.makeValue("root/send/execdata/rsltdd" , model.getValue("root/main/exambaseinfo/rsltdd"));
- model.makeValue("root/send/execdata/rsltno" , model.getValue("root/main/exambaseinfo/rsltno" ));
- // model.makeValue("root/send/execdata/rslttmplcd" , model.getValue("root/main/exambaseinfo/rslttmplcd" ));
- model.makeValue("root/send/execdata/rslttmplcd" , model.getValue("root/main/exambaseinfo/tmplcd2" ));
- model.makeValue("root/send/execdata/suppdeptcd" , model.getValue("root/main/exambaseinfo/suppdeptcd"));
- model.makeValue("root/send/execdata/rslttm" , model.getValue("root/main/exambaseinfo/rslttm" ));
- model.makeValue("root/send/execdata/pid" , model.getValue("root/main/exambaseinfo/pid" ));
- model.makeValue("root/send/execdata/opdrid" , model.getValue("root/main/exambaseinfo/opdrid" ));
- model.makeValue("root/send/execdata/readdrid1" , model.getValue("root/main/exambaseinfo/readdrid1"));
- model.makeValue("root/send/execdata/readdrid2" , model.getValue("root/main/exambaseinfo/readdrid2" ));
- model.makeValue("root/send/execdata/readdrid3" , model.getValue("root/main/exambaseinfo/readdrid3" ));
- model.makeValue("root/send/execdata/prcpno" , model.getValue("root/main/exambaseinfo/prcpno"));
- model.makeValue("root/send/execdata/prcphistno" , model.getValue("root/main/exambaseinfo/prcphistno"));
- model.makeValue("root/send/execdata/formrecseq" , model.getValue("root/main/exambaseinfo/formrecseq"));
- model.makeValue("root/send/execdata/execbaseflag" , model.getValue("root/main/exambaseinfo/execbaseflag"));
- model.makeValue("root/send/execdata/prcpgenrflag" , model.getValue("root/main/exambaseinfo/prcpgenrflag"));
- model.makeValue("root/send/execdata/inclprcpcd" , model.getValue("root/main/exambaseinfo/inclprcpcd"));
- model.makeValue("root/send/execdata/cnfmdt" , model.getValue("root/main/exambaseinfo/cnfmdt"));
- model.makeValue("root/send/execdata/cnfmmanid" , model.getValue("root/main/exambaseinfo/cnfmmanid"));
-
- model.makeValue("root/send/execdata/pacsflag" , "D");
- model.makeValue("root/send/execdata/iugb" , "2"); // 인증저장에대한 결과 삭제
- model.makeValue("root/send/execdata/iuflag" , "D"); // 삭제
- model.makeValue("root/send/execdata/statcd" , "610"); // 실시완료
- model.makeValue("root/send/execdata/deptgubun" , "1");
- model.makeValue("/root/send/execdata/pacsflag","D");
- model.makeValue("root/send/execdata/instcd" , getUserInfo("dutplceinstcd"));
- model.makeValue("root/send/execdata/rsltkind" , model.getValue("root/main/exambaseinfo/rsltkind"));
-
- } else {
- //alert("인증실패 Error Code :" + Sign.errcode);
- messageBox("인증실패 Error Code :" + Sign.errcode , "E999", "");
- return false;
- }
-
- //alert("signno->["+model.getValue("root/send/execdata/signno")+"]");
-
- if (submit("TXAER15002")){
- messageBox("정상적으로 삭제되었습니다", "E999", "");
- }else{
- messageBox("삭제를", "E009");
- return;
- }
- readFuncCheck();
- }
-
-
- /*기 저장된 결과 내용을 해당 노드에 copynode 해서 보여줌 */
- function fgetReadedData(clorslt){
-
- model.resetInstanceNode("root/main/examform");
-
- model.setValue("root/send/fgetread/rsltdd" , model.getValue("root/main/exambaseinfo/rsltdd"));
- model.setValue("root/send/fgetread/rsltno" , model.getValue("root/main/exambaseinfo/rsltno"));
- model.setValue("root/send/fgetread/suppdeptcd" , model.getValue("root/main/exambaseinfo/suppdeptcd"));
- model.makeValue("root/send/fgetread/pid" , model.getValue("root/main/exambaseinfo/pid")); //환자번호
-
- if( (model.getValue("root/main/exambaseinfo/rslttmplcd") == "" ) || (model.getValue("root/main/exambaseinfo/rslttmplcd") == "-" ) ){
- model.setValue("root/send/fgetread/tmplcd" , "0");
-
- if( (model.getValue("root/main/exambaseinfo/tmplcd2") == "" ) || (model.getValue("root/main/exambaseinfo/tmplcd2") == "-" ) ){
- model.setValue("root/send/fgetread/tmplcd" , "0");
- }else {
- model.setValue("root/send/fgetread/tmplcd" , model.getValue("root/main/exambaseinfo/tmplcd2"));
- }
- }
- else{
- model.setValue("root/send/fgetread/tmplcd" , model.getValue("root/main/exambaseinfo/rslttmplcd"));
- }
-
- model.setValue("root/send/fgetread/rsltkind" , model.getValue("root/main/exambaseinfo/rsltkind"));
- //if(btn_case1.selected == true){
- //model.makeValue("/root/send/fgetread/rsltkind", '0');
- //fselectKind(xpath);
- //}
- submit("TRAER15001",false);
- var xpath = "" ;
-
-
- if(model.getValue("root/hidden/read/rsltkind") == 0 ){
- xpath = "egd"
- btn_egd.selected = true;
- model.toggle("case4");
- }else if(model.getValue("root/hidden/read/rsltkind") == 1 ){
- xpath = "cf"
- btn_cf.selected = true;
- model.toggle("case5");
- }else if(model.getValue("root/hidden/read/rsltkind") == 2 ){
- xpath = "fs"
- btn_fs.selected = true;
- model.toggle("case6");
- }else if(model.getValue("root/hidden/read/rsltkind") == 3 ){
- xpath = "ercp"
- btn_ercp.selected = true;
- model.toggle("case7");
- }else if(model.getValue("root/hidden/read/rsltkind") == 4 ){
- xpath = "ptcs"
- btn_ptcs.selected = true;
- model.toggle("case8");
- }else if(model.getValue("root/hidden/read/rsltkind") == 5 ){
- xpath = "eus"
- btn_eus.selected = true;
- model.toggle("case9");
- }else if(model.getValue("root/hidden/read/rsltkind") == 6 ){
- xpath = "lb"
- btn_lb.selected = true;
- model.toggle("case10");
- }else if(model.getValue("root/hidden/read/rsltkind") == 7 ){
- xpath = "rs"
- btn_lb.selected = true;
- model.toggle("case11");
- }
- // alert(model.getValue("/root/main/sltinpt1/rsltlist1/reptrslt" ));
- if(model.getValue("/root/hidden/read/readdrid1") != "" || model.getValue("/root/hidden/read/readdrid2") != ""){
- model.copyNode("root/main/examform/"+xpath+" " , "root/hidden/read");
- }
-
- if(clorslt == "R") {
- model.makeValue("/root/main/examform/"+xpath+"/clotest" , model.getValue("/root/main/sltinpt1/rsltlist1/reptrslt" )) ;
- }
-
-
- }
-
- /*MD1 조회 */
- function fsetMd(){
-
- model.removenode("root/send/req");
- model.removenode("root/main/execuserlist/item0");
-
- for( var i = 1 ; i < 3 ; i++ ) {
- if( i == 1 ){
- model.makeValue("/root/send/req[" + i + "]/suppdeptcd",model.getValue("root/send/globalinstance/instance1"));
- model.makeValue("/root/send/req[" + i + "]/sflag","1"); // MD1
- model.makeValue("/root/send/req[" + i + "]/useyn","Y");
- model.makeValue("/root/send/req[" + i + "]/option" , "D");
- }
- if( i == 2 ){
- model.makeValue("/root/send/req[" + i + "]/suppdeptcd",model.getValue("root/send/globalinstance/instance1"));
- model.makeValue("/root/send/req[" + i + "]/sflag","0"); // MD1
- model.makeValue("/root/send/req[" + i + "]/useyn","Y");
- model.makeValue("/root/send/req[" + i + "]/option" , "D");
- }
- }
-
- submit("TRAEB00610",false);
-
- }
-
- /*그리드 색깔표시*/
- function fSetSubDetailGrid()
- {
- if(btn_case1.selected == true) {
- grd_mainordlist3.rebuildStyle();
- }else if(btn_case2.selected == true){
- grd_mainordlist5.rebuildStyle();
-
- aezfSetRowStyle("grd_mainordlist5" , "7" , "T" , "clostat" ); // 서식 입력시 CLO 체크 되어 있고 , 간호에서 결과 입력전
- aezfSetRowStyle("grd_mainordlist5" , "10" , "R" , "clostat" ); // 서식 입력시 CLO 체크 되어 있고 , 간호에서 결과 입력
- }
- }
-
-
- function fsetDspySrn(flag){
-
- var time = getCurrentDate() + getCurrentTime();
-
- model.setValue("/root/send/display/pid", model.getValue("/root/main/exambaseinfo/pid"));
- model.setValue("/root/send/display/prcpdd", model.getValue("/root/main/exambaseinfo/prcpdd"));
- model.setValue("/root/send/display/recovertime", time.toDate("YYYYMMDDhhmmss").getAddDate(+30,"m").getDateFormat("hhmm"));
- model.setValue("/root/send/display/execprcpuniqno", model.getValue("/root/main/exambaseinfo/execprcpuniqno"));
- model.setValue("/root/send/display/excuroomcd", model.getValue("/root/main/exambaseinfo/excuroomcd"));
- model.setValue("/root/send/display/ioflag", model.getValue("/root/main/exambaseinfo/ioflag"));
- model.setValue("/root/send/display/calcscorcd", model.getValue("/root/main/exambaseinfo/calcscorcd"));
- model.setValue("/root/send/display/status", flag ) ;
-
- model.setValue("/root/send/display/suppdeptcd", model.getValue("/root/send/globalinstance/instance1"));
-
- //alert(model.getValue("/root/send/display/recovertime"));
-
- submit("TXAEA01513",false);
- }
-
- function fGetUserSuppdeptcd(){
- /*근무지 부서를 가지고 온다.*/
- /*판독자 관리 메뉴(SPAEB00600.xrw)에서 제어코드2에 할당된 부서코드를 가지고 옴*/
- model.setValue("/root/send/userid/userid",getUserId());
- var suppdeptcd = '';
- if(submit("TRAER15002")){
- suppdeptcd = model.getValue("/root/tmp/suppdeptcd/suppdeptcd");
- if((suppdeptcd == '' )||(suppdeptcd == '-')){
- aezfSetSuppDeptcd();
- }else{
- model.setValue("root/send/globalinstance/instance1" ,suppdeptcd) ;
- }
- }
- }
- ]]>
- </script>
- </xhtml:head>
- <xhtml:body pagewidth="1211" pageheight="784" guideline="1,1210;" style="margin-left:8; margin-top:0; margin-right:8; margin-bottom:0; ">
- <caption id="caption6" class="tit_1" style="left:0px; top:0px; width:106px; height:14px; ">결과서식관리</caption>
- <group id="grp_sea" style="left:0px; top:22px; width:265px; height:88px; vertical-align:top; ">
- <shape id="roundrect2" appearance="roundrect" ellipsewidth="10" ellipseheight="10" style="left:0px; top:0px; width:265px; height:85px; background-color:#fffbf2; border-color:#ffd799; "/>
- <input id="ipt_date1" ref="/root/send/reqdata/execdd" class="input_default" inputtype="date" style="left:72px; top:6px; width:87px; height:19px; text-align:center; ">
- <script type="javascript" ev:event="xforms-value-changed">
- <![CDATA[
- btn_sea.dispatch("DOMActivate");
- ]]>
- </script>
- </input>
- <caption id="caption2" class="search_name" style="left:3px; top:7px; width:77px; height:17px; ">시행일:</caption>
- <caption id="caption3" class="search_name" style="left:3px; top:33px; width:91px; height:17px; ">등록번호:</caption>
- <input id="ipt_pid" ref="/root/send/reqdata/pid" class="input_search" style="left:85px; top:33px; width:102px; height:19px; ">
- <script type="javascript" ev:event="xforms-value-changed">
- <![CDATA[
- if (model.getValue("/root/send/reqdata/pid") == ""){
- //model.setValue("/root/send/reqdata/hngnm1", "");
- }else{
- model.setValue("/root/source/srchcond", "1");
- model.setValue("/root/source/pid", model.getValue("/root/send/reqdata/pid"));
- model.resetInstanceNode("/root/main/result");
- model.makeNode("/root/main/result/patinfo");
-
- if(submit("TRPMC02500")){
- //fSearch는 인적사항 화면을 임포트 해간 화면에서 구현해 주어야 하는 함수이다.
- if( getNodesetCount("/root/main/patinfo/patinfolist") > 0 ){
- model.copyNode("/root/main/patinfo", "/root/main/result/patinfo");
- model.setValue("/root/main/popupendflag", "ok");
- //model.setValue("/root/send/reqdata/hngnm1", model.getValue("/root/main/patinfo/patinfolist/hngnm"));
- }else{
- model.resetInstanceNode("/root/main/patinfo/patinfolist");
- //model.setValue("/root/send/reqdata/hngnm1", "");
- messageBox("없는 환자 번호 입니다.", "E999", "");
- }
- }
- }
- model.refresh();
- ]]>
- </script>
- <script type="javascript" ev:event="onkeypress">
- <![CDATA[
- if(event.keyCode == 13) {
- setInputNodeCurText();
- if (model.getValue("/root/send/reqdata/pid") == ""){
- model.setValue("/root/send/reqdata/hngnm1", "");
- }else{
- model.setValue("/root/source/srchcond", "1");
- model.setValue("/root/source/pid", model.getValue("/root/send/reqdata/pid"));
- model.resetInstanceNode("/root/main/result");
- model.makeNode("/root/main/result/patinfo");
-
- if(submit("TRPMC02500")){
- //fSearch는 인적사항 화면을 임포트 해간 화면에서 구현해 주어야 하는 함수이다.
- if( getNodesetCount("/root/main/patinfo/patinfolist") > 0 ){
- model.copyNode("/root/main/patinfo", "/root/main/result/patinfo");
- model.setValue("/root/main/popupendflag", "ok");
- //model.setValue("/root/send/reqdata/hngnm1", model.getValue("/root/main/patinfo/patinfolist/hngnm"));
- }else{
- model.resetInstanceNode("/root/main/patinfo/patinfolist");
- //model.setValue("/root/send/reqdata/hngnm1", "");
- messageBox("없는 환자 번호 입니다.", "E999", "");
- }
- }
- }
- model.refresh();
-
- inputEnterKey("btn_sea", "DOMActivate");
- }
- ]]>
- </script>
- </input>
- <input id="ipt_date2" ref="/root/send/reqdata/exectodd" class="input_default" inputtype="date" style="left:173px; top:6px; width:87px; height:19px; text-align:center; ">
- <script type="javascript" ev:event="xforms-value-changed">
- <![CDATA[
- btn_sea.dispatch("DOMActivate");
- ]]>
- </script>
- </input>
- <caption id="caption17" class="search_name" style="left:3px; top:59px; width:68px; height:17px; ">검사실:</caption>
- <select1 id="cmb_excuroom" ref="/root/send/reqdata/execrid2cdid" class="combo_default" navindex="3" appearance="minimal" style="left:72px; top:59px; width:110px; height:19px; font-weight:bold; border-width:1; ">
- <choices>
- <itemset nodeset="/root/init/cmb_info/initexecroom">
- <label ref="excuroomcdnm"/>
- <value ref="excuroomcdid"/>
- </itemset>
- </choices>
- <script type="javascript" ev:event="xforms-value-changed">
- <![CDATA[
- readFuncCheck();
- ]]>
- </script>
- </select1>
- <caption id="caption14" style="left:160px; top:10px; width:15px; height:15px; ">~</caption>
- <button id="button4" class="icon_search" style="left:192px; top:35px; width:16px; height:16px; ">
- <caption/>
- <script type="javascript" ev:event="onclick">
- <![CDATA[
- //modal("SPPMC02500", "", "200", "200", "SPPMC02500","/root/send/reqdata/pid","/root/main/send");
- model.removeNodeset("/root/main/patinfo/patinfolist/");
- modal("SPPMC02500", "1","150", "150", "SPPMC02500", "/root/source", "/root/main/send");
- model.setValue("/root/send/reqdata/pid", model.getValue("/root/main/patinfo/patinfolist/pid") );
- model.setValue("/root/send/reqdata/hngnm1", model.getValue("/root/main/patinfo/patinfolist/hngnm") );
- model.refresh();
- btn_sea.dispatch("DOMActivate");
- ]]>
- </script>
- </button>
- <button id="btn_sea" class="btn1_letter2" style="left:196px; top:57px; width:56px; height:22px; ">
- <caption>조회</caption>
- <script type="javascript" ev:event="DOMActivate">
- <![CDATA[
- readFuncCheck();
- ]]>
- </script>
- </button>
- </group>
- <button id="btn_case1" class="btn_sw" group="tab1" selected="true" style="left:6px; top:112px; width:104px; height:22px; ">
- <caption>판독/검사대상자</caption>
- <script type="javascript" ev:event="onclick">
- <![CDATA[
- //btn_del2.visible = false;
- btn_del2.disabled = true;
- button3.disabled = false;
- model.toggle("case1");
- btn_case1.selected = true;
- readFuncCheck();
-
- ]]>
- </script>
- </button>
- <button id="btn_case2" class="btn_sw" group="tab1" style="left:110px; top:112px; width:89px; height:22px; ">
- <caption>판독/검사완료</caption>
- <script type="javascript" ev:event="onclick">
- <![CDATA[
- //btn_del2.visible = true;
- btn_del2.disabled = false;
- button3.disabled = true;
- model.toggle("case2");
- btn_case2.selected = true;
- readFuncCheck();
- ]]>
- </script>
- </button>
- <switch id="switch1" style="left:5px; top:139px; width:270px; height:636px; background-color:transparent; border-color:transparent; border-width:0; ">
- <case id="case1" selected="true">
- <datagrid id="grd_mainordlist3" nodeset="/root/main/rsltinpt/rsltlist" autoresize="true" caption="No^등록번호^성명^S/A^처방명^급여구분^선택진료^분류^진료과^주치의^처방과^처방의^처방일^예진저장^PACS^execprcpuniqno^rslttmplcd^rsltdd^suppdeptcd^rsltno^cnfmdt^cnfmmanid^orddrid^roomcd^execbaseflag^excupartcd^inclprcpcd^orddeptcd^orddrid2^sex2^age^execrem^readdrid1^readdrid2^readdrid3^orddd^cretno^prcpgenrflag^rslttm^formrecseq^prcpno^prcphistno^instcd^ckno^cknoseq^rtno^testrsltval^excuexectodd^excuexectotm^clinccmtcnts" colsep="^" colwidth="25, 57, 45, 35, 189, 55 ,55,41, 84, 69, 86, 66, 82, 58, 46, 100, 100, 100, 100, 100, 100, 100, 100, 100, 100, 100, 100, 100, 100, 100, 100, 100, 100, 100, 100, 100, 100, 100, 100, 100, 100, 100, 100, 100, 100, 100, 100, 100, 100, 100" explorerbar="sortshow" frozencols="4" mergecellsfixedrows="bycolrec" rowsep="|" style="left:0px; top:0px; width:265px; height:630px; ">
- <col ref="no" style="text-align:center; "/>
- <col ref="pid"/>
- <col ref="hngnm" style="text-align:center; "/>
- <col ref="sex" style="width:380; height:520; "/>
- <col ref="excucdnm"/>
- <col ref="payflagcd"/>
- <col ref="choiordflag"/>
- <col ref="ioflag1"/>
- <col ref="depthngnm"/>
- <col ref="usernm"/>
- <col ref="rgstdeptnm"/>
- <col ref="rgstdrnm"/>
- <col ref="prcpdd" format="yyyy-mm-dd" style="text-align:center; "/>
- <col ref="rsltgb"/>
- <col ref="pacsyn"/>
- <col ref="execprcpuniqno" visibility="hidden"/>
- <col ref="rslttmplcd" visibility="hidden"/>
- <col ref="rsltdd" visibility="hidden"/>
- <col ref="suppdeptcd" visibility="hidden"/>
- <col ref="rsltno" visibility="hidden"/>
- <col ref="cnfmdt" visibility="hidden"/>
- <col ref="cnfmmanid" visibility="hidden"/>
- <col ref="orddrid" visibility="hidden"/>
- <col ref="roomcd" visibility="hidden"/>
- <col ref="execbaseflag" visibility="hidden"/>
- <col ref="excupartcd" visibility="hidden"/>
- <col ref="inclprcpcd" visibility="hidden"/>
- <col ref="orddeptcd" visibility="hidden"/>
- <col ref="orddrid2" visibility="hidden"/>
- <col ref="sex2" visibility="hidden"/>
- <col ref="age" visibility="hidden"/>
- <col ref="execrem" visibility="hidden"/>
- <col ref="readdrid1" visibility="hidden"/>
- <col ref="readdrid2" visibility="hidden"/>
- <col ref="readdrid3" visibility="hidden"/>
- <col ref="orddd" visibility="hidden"/>
- <col ref="cretno" visibility="hidden"/>
- <col ref="prcpgenrflag" visibility="hidden"/>
- <col ref="rslttm" visibility="hidden"/>
- <col ref="formrecseq" visibility="hidden"/>
- <col ref="prcpno" visibility="hidden"/>
- <col ref="prcphistno" visibility="hidden"/>
- <col ref="instcd" visibility="hidden"/>
- <col ref="ckno" visibility="hidden"/>
- <col ref="cknoseq" visibility="hidden"/>
- <col ref="rtno" visibility="hidden"/>
- <col ref="testrsltval" visibility="hidden"/>
- <col ref="excuexectodd" visibility="hidden"/>
- <col ref="excuexectotm" visibility="hidden"/>
- <col ref="clinccmtcnts" visibility="hidden"/>
- <col ref="rsltkind" visibility="hidden"/>
- <col ref="cnfmmanid2" visibility="hidden"/>
- <col ref="signno" visibility="hidden"/>
- <script type="javascript" ev:event="onclick">
- <![CDATA[
- if ( (grd_mainordlist3.row >= grd_mainordlist3.fixedRows) && (grd_mainordlist3.isCell(event.target))) {
- /*환자 선택 */
- fselectCase();
- }
- ]]>
- </script>
- <script type="javascript" ev:event="onaftersort">
- <![CDATA[
- grd_mainordlist3.gridToInstance();
- ]]>
- </script>
- </datagrid>
- </case>
- <case id="case2" style="left:0px; top:0px; width:400px; height:655px; ">
- <datagrid id="grd_mainordlist5" nodeset="/root/main/rsltinpt1/rsltlist1" autoresize="true" caption="No^등록번호^성명^S/A^처방명^급여구분^선택진료^분류^진료과^주치의^처방과^처방의^처방일^예진저장^확정저장^PACS^execprcpuniqno^rslttmplcd^rsltdd^suppdeptcd^rsltno^cnfmdt^cnfmmanid^orddrid^roomcd^execbaseflag^inclprcpcd^orddeptcd^orddrid2^sex2^age^execrem^readdrid1^readdrid2^readdrid3^orddd^cretno^prcpgenrflag^rslttm^formrecseq^prcpno^prcphistno^instcd^ckno^cknoseq^rtno^cnclresncd^cnclresncdnm^patholno2^excuexectodd^clostat" colsep="^" colwidth="25, 59, 51, 35, 201, 55 ,55, 43, 73, 59, 76, 64, 62, 55, 62, 40, 100, 100, 100, 100, 100, 100, 100, 100, 100, 100, 100, 100, 100, 100, 100, 100, 100, 100, 100, 100, 100, 100, 100, 100, 100, 100, 100, 100, 100, 100, 100, 100, 100,100,100" explorerbar="sortshow" frozencols="4" mergecellsfixedrows="bycolrec" rowsep="|" style="left:0px; top:0px; width:265px; height:635px; ">
- <col ref="no" style="text-align:center; "/>
- <col ref="pid"/>
- <col ref="hngnm" style="text-align:center; "/>
- <col ref="sex"/>
- <col ref="excucdnm"/>
- <col ref="payflagcd"/>
- <col ref="choiordflag"/>
- <col ref="ioflag1"/>
- <col ref="depthngnm"/>
- <col ref="usernm"/>
- <col ref="rgstdeptnm"/>
- <col ref="rgstdrnm"/>
- <col ref="prcpdd"/>
- <col ref="rsltgb"/>
- <col ref="cnfmgb"/>
- <col ref="pacsyn"/>
- <col ref="execprcpuniqno" visibility="hidden"/>
- <col ref="rslttmplcd" visibility="hidden"/>
- <col ref="rsltdd" visibility="hidden"/>
- <col ref="suppdeptcd" visibility="hidden"/>
- <col ref="rsltno" visibility="hidden"/>
- <col ref="cnfmdt" visibility="hidden"/>
- <col ref="cnfmmanid" visibility="hidden"/>
- <col ref="orddrid" visibility="hidden"/>
- <col ref="roomcd" visibility="hidden"/>
- <col ref="execbaseflag" visibility="hidden"/>
- <col ref="inclprcpcd" visibility="hidden"/>
- <col ref="orddeptcd" visibility="hidden"/>
- <col ref="orddrid2" visibility="hidden"/>
- <col ref="sex2" visibility="hidden"/>
- <col ref="age" visibility="hidden"/>
- <col ref="execrem" visibility="hidden"/>
- <col ref="readdrid1" visibility="hidden"/>
- <col ref="readdrid2" visibility="hidden"/>
- <col ref="readdrid3" visibility="hidden"/>
- <col ref="orddd" visibility="hidden"/>
- <col ref="cretno" visibility="hidden"/>
- <col ref="prcpgenrflag" visibility="hidden"/>
- <col ref="rslttm" visibility="hidden"/>
- <col ref="formrecseq" visibility="hidden"/>
- <col ref="prcpno" visibility="hidden"/>
- <col ref="prcphistno" visibility="hidden"/>
- <col ref="instcd" visibility="hidden"/>
- <col ref="ckno" visibility="hidden"/>
- <col ref="cknoseq" visibility="hidden"/>
- <col ref="rtno" visibility="hidden"/>
- <col ref="cnclresncd" visibility="hidden"/>
- <col ref="cnclresncdnm" visibility="hidden"/>
- <col ref="patholno2" visibility="hidden"/>
- <col ref="excuexectodd" visibility="hidden"/>
- <col ref="clostat" visibility="hidden"/>
- <col ref="rsltkind" visibility="hidden"/>
- <col ref="signno" visibility="hidden"/>
- <script type="javascript" ev:event="onclick">
- <![CDATA[
- if ( (grd_mainordlist5.row >= grd_mainordlist5.fixedRows) && (grd_mainordlist5.isCell(event.target))) {
- /*환자 선택 */
- fselectCase();
- }
- ]]>
- </script>
- <script type="javascript" ev:event="onaftersort">
- <![CDATA[
- grd_mainordlist5.gridToInstance();
- ]]>
- </script>
- </datagrid>
- </case>
- </switch>
- <line id="line3" class="line_1" style="x1:5px; y1:135px; x2:270px; y2:134px; "/>
- <button id="btn_egd" class="btn_sw" group="tab" selected="true" style="left:287px; top:78px; width:70px; height:35px; ">
- <caption>EGD</caption>
- <script type="javascript" ev:event="onclick">
- <![CDATA[
- model.toggle("case4");
- ]]>
- </script>
- </button>
- <button id="btn_cf" class="btn_sw" group="tab" style="left:357px; top:78px; width:70px; height:35px; ">
- <caption>CF</caption>
- <script type="javascript" ev:event="onclick">
- <![CDATA[
- model.toggle("case5");
- ]]>
- </script>
- </button>
- <switch id="switch2" style="left:281px; top:105px; width:915px; height:642px; background-color:transparent; border-color:transparent; border-width:0; ">
- <case id="case4" style="left:0px; top:0px; width:910px; height:640px; ">
- <textarea id="drughistory" ref="/root/main/examform/egd/drug" navindex="2" style="left:185px; top:25px; width:720; height:38px; ">
- <script type="javascript" ev:event="ondblclick">
- <![CDATA[
- fOpenExcel(drughistory, srchdrug1, "DRUG", model.getValue("/root/send/check/permission") ); // DRUG HISTORY
- model.setfocus("predication", true);
- ]]>
- </script>
- </textarea>
- <select id="sleepyn" ref="/root/main/examform/egd/sleepyn" overflow="visible" appearance="full" checkvalue="Y,N" type="checkbox" style="left:185px; top:65px; width:65px; height:20px; border-style:none; ">
- <choices>
- <item>
- <label>수 면</label>
- <value>Y</value>
- </item>
- </choices>
- </select>
- <select id="pacsyn" ref="/root/main/examform/egd/pacsyn" class="checkbox_search" overflow="visible" appearance="full" checkvalue="Y,N" style="left:185px; top:92px; width:65px; height:20px; border-style:none; ">
- <choices>
- <item>
- <label>PACS</label>
- <value>Y</value>
- </item>
- </choices>
- </select>
- <select id="checkbox3" ref="/root/main/examform/egd/video" class="checkbox_search" overflow="visible" appearance="full" checkvalue="Y,N" style="left:257px; top:92px; width:70px; height:20px; border-style:none; ">
- <choices>
- <item>
- <label>Video</label>
- <value>Y</value>
- </item>
- </choices>
- </select>
- <select id="checkbox5" ref="/root/main/examform/egd/cytologyyn" class="checkbox_search" overflow="visible" appearance="full" checkvalue="Y,N" style="left:460px; top:120px; width:75px; height:20px; border-style:none; ">
- <choices>
- <item>
- <label>Cytology</label>
- <value>Y</value>
- </item>
- </choices>
- </select>
- <select id="checkbox6" ref="/root/main/examform/egd/cloyn" class="checkbox_search" overflow="visible" appearance="full" checkvalue="Y,N" style="left:340px; top:90px; width:75px; height:20px; border-style:none; ">
- <choices>
- <item>
- <label>CLO test</label>
- <value>Y</value>
- </item>
- </choices>
- </select>
- <select id="checkbox7" ref="/root/main/examform/egd/phyn" class="checkbox_search" visibility="hidden" overflow="visible" appearance="full" checkvalue="Y,N" style="left:430px; top:90px; width:75px; height:20px; border-style:none; ">
- <choices>
- <item>
- <label>pH test</label>
- <value>Y</value>
- </item>
- </choices>
- </select>
- <shape id="roundrect3" class="roundrect_example" appearance="roundrect" style="left:330px; top:114px; width:425px; height:30px; "/>
- <select id="checkbox9" ref="/root/main/examform/egd/polypectyn" class="checkbox_search" overflow="visible" appearance="full" checkvalue="Y,N" style="left:650px; top:119px; width:95px; height:20px; border-style:none; ">
- <choices>
- <item>
- <label>Polypectomy</label>
- <value>Y</value>
- </item>
- </choices>
- </select>
- <select id="checkbox10" ref="/root/main/examform/egd/esdemryn" class="checkbox_search" overflow="visible" appearance="full" checkvalue="Y,N" style="left:555px; top:119; width:91px; height:20px; border-style:none; ">
- <choices>
- <item>
- <label>ESD or EMR</label>
- <value>Y</value>
- </item>
- </choices>
- </select>
- <select id="checkbox8" ref="/root/main/examform/egd/biopsytn" class="checkbox_search" overflow="visible" appearance="full" checkvalue="Y,N" style="left:335px; top:120px; width:95px; height:20px; border-style:none; ">
- <choices>
- <item>
- <label>Forcep Biopsy</label>
- <value>Y</value>
- </item>
- </choices>
- </select>
- <textarea id="textarea5" ref="/root/main/examform/egd/find1contnt1" style="left:185px; top:201px; width:720; height:38px; ">
- <script type="javascript" ev:event="ondblclick">
- <![CDATA[
- fOpenExcel(textarea5, srchfind1contnt1, "EGD_ENDOSCOPIC FINDINGS_1",model.getValue("/root/send/check/permission"));
- fsetHardRslt("egd/find1contnt1","egd/diag1");
- model.setfocus("textarea6", true);
- ]]>
- </script>
- </textarea>
- <textarea id="textarea6" ref="/root/main/examform/egd/find1contnt2" style="left:185px; top:242px; width:720; height:38px; ">
- <script type="javascript" ev:event="ondblclick">
- <![CDATA[
- fOpenExcel(textarea6, srchfind1contnt2, "EGD_ENDOSCOPIC FINDINGS_2",model.getValue("/root/send/check/permission"));
- fsetHardRslt("egd/find1contnt2","egd/diag2");
- model.setfocus("textarea7", true);
- ]]>
- </script>
- </textarea>
- <textarea id="textarea7" ref="/root/main/examform/egd/find1contnt3" style="left:185px; top:282px; width:720; height:38px; ">
- <script type="javascript" ev:event="ondblclick">
- <![CDATA[
- fOpenExcel(textarea7, srchfind1contnt3, "EGD_ENDOSCOPIC FINDINGS_3",model.getValue("/root/send/check/permission"));
- fsetHardRslt("egd/find1contnt3","egd/diag3");
- model.setfocus("textarea8", true);
- ]]>
- </script>
- </textarea>
- <textarea id="textarea8" ref="/root/main/examform/egd/therap" style="left:185px; top:328px; width:720px; height:38px; ">
- <script type="javascript" ev:event="ondblclick">
- <![CDATA[
- fOpenExcel(textarea8, srchtherap1, "EGD_THRAPEUTIC PROCEDURE_1",model.getValue("/root/send/check/permission"));
- model.setfocus("textarea12", true);
- ]]>
- </script>
- </textarea>
- <textarea id="textarea9" ref="/root/main/examform/egd/diag2" style="left:185px; top:435px; width:720; height:38px; ">
- <script type="javascript" ev:event="ondblclick">
- <![CDATA[
- fOpenExcel(textarea9, srchdiag2, "EGD_ENDOSCOPIC DIAGNOSIS_2",model.getValue("/root/send/check/permission"));
- model.setfocus("textarea10", true);
- ]]>
- </script>
- </textarea>
- <textarea id="textarea10" ref="/root/main/examform/egd/diag3" style="left:185px; top:475px; width:720; height:38px; ">
- <script type="javascript" ev:event="ondblclick">
- <![CDATA[
- fOpenExcel(textarea10, srchdiag3, "EGD_ENDOSCOPIC DIAGNOSIS_3",model.getValue("/root/send/check/permission"));
- model.setfocus("textarea11", true);
- ]]>
- </script>
- </textarea>
- <textarea id="textarea11" ref="/root/main/examform/egd/complic" style="left:185px; top:523px; width:720px; height:28px; ">
- <script type="javascript" ev:event="ondblclick">
- <![CDATA[
- fOpenExcel(textarea11, srchcomplic1, "PROCEDURE-RELATED COMPLICATION",model.getValue("/root/send/check/permission"));
- model.setfocus("input3", true);
- ]]>
- </script>
- </textarea>
- <textarea id="textarea12" ref="/root/main/examform/egd/diag1" style="left:185px; top:394px; width:720; height:38px; ">
- <script type="javascript" ev:event="ondblclick">
- <![CDATA[
- fOpenExcel(textarea12, srchdiag1, "EGD_ENDOSCOPIC DIAGNOSIS_1",model.getValue("/root/send/check/permission"));
- model.setfocus("textarea9", true);
- ]]>
- </script>
- </textarea>
- <caption id="caption7" style="left:289px; top:609px; width:30px; height:15px; ">M.D.</caption>
- <caption id="caption8" style="left:420px; top:609px; width:30px; height:15px; ">M.D.</caption>
- <caption id="caption9" style="left:555px; top:609px; width:30px; height:15px; ">M.D.</caption>
- <input id="egd_workdd" ref="/root/main/examform/egd/workdd" class="input_search" inputtype="date" style="left:731px; top:604px; width:110px; height:19px; "/>
- <button id="button23" class="btn3_letter2" style="left:850px; top:604px; width:56px; height:22px; ">
- <caption>변경</caption>
- <script type="javascript" ev:event="onclick">
- <![CDATA[
- egd_workdd.disabled = false ;
- ]]>
- </script>
- </button>
- <select1 id="combo2" ref="/root/main/examform/egd/readdrid1" appearance="minimal" style="left:185px; top:604px; width:100px; height:19px; ">
- <choices>
- <itemset nodeset="/root/main/execuserlist/item1">
- <label ref="usernm"/>
- <value ref="userid"/>
- </itemset>
- </choices>
- </select1>
- <select1 id="combo3" ref="/root/main/examform/egd/readdrid2" appearance="minimal" style="left:318px; top:604px; width:100px; height:19px; ">
- <choices>
- <itemset nodeset="/root/main/execuserlist/item0">
- <label ref="usernm"/>
- <value ref="userid"/>
- </itemset>
- </choices>
- </select1>
- <select1 id="combo4" ref="/root/main/examform/egd/readdrid3" appearance="minimal" style="left:454px; top:604px; width:100px; height:19px; ">
- <choices>
- <itemset nodeset="/root/main/execuserlist/item0">
- <label ref="usernm"/>
- <value ref="userid"/>
- </itemset>
- </choices>
- </select1>
- <line id="line15" class="line_3" style="x1:3px; y1:172px; x2:906px; y2:172px; "/>
- <caption id="caption41" class="cell_1" style="left:3px; top:3px; width:180; height:19; font-weight:normal; text-align:center; vertical-align:middle; word-wrap:hard; ">REASONS FOR EXAM</caption>
- <caption id="caption24" class="cell_1" style="left:3px; top:25px; width:180px; height:38px; font-weight:normal; text-align:center; vertical-align:middle; word-wrap:hard; ">DRUG HISTORY</caption>
- <caption id="caption10" class="cell_1" style="left:3px; top:66px; width:180px; height:25px; font-weight:normal; text-align:center; vertical-align:middle; word-wrap:hard; ">PREMEDICATION</caption>
- <caption id="caption34" class="cell_1" style="left:3px; top:94px; width:180px; height:77px; font-weight:normal; text-align:center; vertical-align:middle; word-wrap:hard; ">PROCEDURE</caption>
- <caption id="caption15" class="cell_1" style="left:48; top:201px; width:135; height:38px; text-align:left; vertical-align:middle; ">- ESOPHAGUS</caption>
- <caption id="caption18" class="cell_1" style="left:48; top:241px; width:135; height:38px; text-align:left; vertical-align:middle; ">- STOMACH</caption>
- <caption id="caption20" class="cell_1" style="left:48; top:281px; width:135; height:38px; text-align:left; vertical-align:middle; ">- DUODENUM</caption>
- <caption id="caption21" class="cell_1" style="left:3px; top:328px; width:180px; height:38px; font-weight:normal; text-align:center; vertical-align:middle; word-wrap:hard; ">
- <![CDATA[THERAPEUTIC
- PROCEDURE]]>
- </caption>
- <line id="line5" class="line_3" style="x1:0px; y1:322px; x2:908px; y2:322px; "/>
- <caption id="caption22" class="cell_1" style="left:48; top:475px; width:135; height:38px; text-align:left; vertical-align:middle; ">- DUODENUM</caption>
- <caption id="caption23" class="cell_1" style="left:48; top:395px; width:135; height:38px; text-align:left; vertical-align:middle; ">- ESOPHAGUS</caption>
- <caption id="caption25" class="cell_1" style="left:48; top:435px; width:135; height:38px; text-align:left; vertical-align:middle; ">- STOMACH</caption>
- <caption id="caption26" class="cell_1" style="left:3px; top:523px; width:180px; height:28px; font-weight:normal; text-align:center; vertical-align:middle; word-wrap:hard; ">
- <![CDATA[PROCEDURE-RELATED
- COMPLICATION]]>
- </caption>
- <caption id="caption27" class="cell_1" style="left:3px; top:561px; width:190px; height:19px; font-weight:normal; text-align:center; vertical-align:middle; word-wrap:hard; ">
- <![CDATA[RECOMMEND & FOLLOW-UP]]>
- </caption>
- <caption id="caption28" class="cell_1" style="left:3px; top:582px; width:180px; height:19px; font-weight:normal; text-align:center; vertical-align:middle; word-wrap:hard; ">CLO TEST</caption>
- <caption id="caption29" class="cell_1" style="left:3px; top:604px; width:180px; height:19px; font-weight:normal; text-align:center; vertical-align:middle; word-wrap:hard; ">ENDOSCOPIST</caption>
- <line id="line4" class="line_3" style="x1:0px; y1:515px; x2:908px; y2:515px; "/>
- <caption id="caption4" class="cell_1" style="left:493px; top:561px; width:100px; height:19px; font-weight:bold; text-align:center; vertical-align:middle; ">REMARK</caption>
- <caption id="caption30" class="cell_1" style="left:626px; top:604px; width:100px; height:19px; text-align:center; vertical-align:middle; ">작업일자</caption>
- <input id="reasonfoexam" ref="/root/main/examform/egd/reason" class="input_search" navindex="1" style="left:185px; top:3px; width:720; height:19px; ">
- <script type="javascript" ev:event="ondblclick">
- <![CDATA[
- /*
- * fOpenExcel(reasonfoexam, textarea2, "EGD_REASON", model.getValue("/root/send/check/permission") );
- */
- fOpenExcel(reasonfoexam, srchreason1, "EGD_REASON", model.getValue("/root/send/check/permission") );
-
- model.setfocus("drughistory", true);
- ]]>
- </script>
- </input>
- <input id="predication" ref="/root/main/examform/egd/medic" class="input_search" navindex="3" style="left:256px; top:65px; width:650px; height:19px; ">
- <script type="javascript" ev:event="ondblclick">
- <![CDATA[
- fOpenExcel(predication, srchmedic1, "EGD_PREMEDICATION",model.getValue("/root/send/check/permission"));
- model.setfocus("textarea1", true);
- ]]>
- </script>
- </input>
- <textarea id="textarea1" ref="/root/main/examform/egd/procedure" style="left:185px; top:146px; width:720; height:23px; ">
- <script type="javascript" ev:event="ondblclick">
- <![CDATA[
- fOpenExcel(textarea1, srchprocedure1, "EGD_PROCEDURE",model.getValue("/root/send/check/permission"));
- model.setfocus("textarea5", true);
- ]]>
- </script>
- </textarea>
- <input id="input3" ref="/root/main/examform/egd/recommend" class="input_search" style="left:185px; top:561px; width:290; height:19px; ">
- <script type="javascript" ev:event="ondblclick">
- <![CDATA[
- fOpenExcel(input3, srchrecommend1, "RECOMMEND",model.getValue("/root/send/check/permission"));
- model.setfocus("input6", true);
- ]]>
- </script>
- </input>
- <input id="input6" ref="/root/main/examform/egd/remark" class="input_search" style="left:597px; top:561px; width:305; height:19px; ">
- <script type="javascript" ev:event="ondblclick">
- <![CDATA[
- fOpenExcel(input6, srchremark1, "REMARK",model.getValue("/root/send/check/permission"));
- model.setfocus("input1", true);
- ]]>
- </script>
- </input>
- <textarea id="srchreason1" ref="/root/main/examform/egd/srchreason" visibility="hidden" style="left:636px; top:5px; width:110px; height:35px; "/>
- <textarea id="srchdrug1" ref="/root/main/examform/egd/srchdrug" visibility="hidden" style="left:636px; top:40px; width:110px; height:35px; "/>
- <textarea id="srchmedic1" ref="/root/main/examform/egd/srchmedic" visibility="hidden" style="left:715px; top:85px; width:110px; height:35px; "/>
- <textarea id="srchprocedure1" ref="/root/main/examform/egd/srchprocedure" visibility="hidden" style="left:635px; top:150px; width:110px; height:35px; "/>
- <textarea id="srchfind1contnt1" ref="/root/main/examform/egd/srchfind1contnt1" visibility="hidden" style="left:631px; top:201px; width:110px; height:35px; "/>
- <textarea id="srchfind1contnt2" ref="/root/main/examform/egd/srchfind1contnt2" visibility="hidden" style="left:631px; top:236px; width:110px; height:35px; "/>
- <textarea id="srchfind1contnt3" ref="/root/main/examform/egd/srchfind1contnt3" visibility="hidden" style="left:631px; top:271px; width:110px; height:35px; "/>
- <textarea id="srchdiag2" ref="/root/main/examform/egd/srchdiag2" visibility="hidden" style="left:636px; top:425px; width:110px; height:35px; "/>
- <textarea id="srchdiag1" ref="/root/main/examform/egd/srchdiag1" visibility="hidden" style="left:636px; top:390px; width:110px; height:35px; "/>
- <textarea id="srchdiag3" ref="/root/main/examform/egd/srchdiag3" visibility="hidden" style="left:636px; top:460px; width:110px; height:35px; "/>
- <textarea id="srchrecommend1" ref="/root/main/examform/egd/srchrecommend" visibility="hidden" style="left:640px; top:540px; width:110px; height:35px; "/>
- <textarea id="srchcomplic1" ref="/root/main/examform/egd/srchcomplic" visibility="hidden" style="left:641px; top:505px; width:110px; height:35px; "/>
- <textarea id="srchtherap1" ref="/root/main/examform/egd/srchtherap" visibility="hidden" style="left:636px; top:341px; width:110px; height:35px; "/>
- <textarea id="srchremark1" ref="/root/main/examform/egd/srchremark" visibility="hidden" style="left:635px; top:570px; width:110px; height:35px; "/>
- <caption id="caption145" class="cell_1" style="left:3px; top:180px; width:180px; height:19px; font-weight:normal; text-align:center; vertical-align:middle; word-wrap:hard; ">ENDOSCOPIC FINDINGS</caption>
- <caption id="caption33" class="cell_1" style="left:3px; top:201px; width:43px; height:119px; text-align:right; vertical-align:middle; "/>
- <caption id="caption146" class="cell_1" style="left:3px; top:373px; width:180px; height:19px; font-weight:normal; text-align:center; vertical-align:middle; word-wrap:hard; ">ENDOSCOPIC DIAGNOSIS</caption>
- <caption id="caption19" class="cell_1" style="left:3px; top:395px; width:43px; height:119px; text-align:right; vertical-align:middle; "/>
- <line id="line22" class="line_3" style="x1:0px; y1:368px; x2:903px; y2:368px; "/>
- <input id="input1" ref="/root/main/examform/egd/clotest" class="input_search" style="left:186px; top:582px; width:205px; height:19px; "/>
- <caption id="caption170" class="cell_1" style="left:222px; top:119px; width:103px; height:20px; ">Tissue Sampling</caption>
- </case>
- <case id="case5">
- <caption id="caption31" class="cell_1" style="left:626px; top:604px; width:100px; height:19px; text-align:center; vertical-align:middle; ">작업일자</caption>
- <select1 id="combo5" ref="/root/main/examform/cf/readdrid1" appearance="minimal" style="left:185px; top:604px; width:100px; height:19px; ">
- <choices>
- <itemset nodeset="/root/main/execuserlist/item1">
- <label ref="usernm"/>
- <value ref="userid"/>
- </itemset>
- </choices>
- </select1>
- <select1 id="combo6" ref="/root/main/examform/cf/readdrid2" appearance="minimal" style="left:318px; top:604px; width:100px; height:19px; ">
- <choices>
- <itemset nodeset="/root/main/execuserlist/item0">
- <label ref="usernm"/>
- <value ref="userid"/>
- </itemset>
- </choices>
- </select1>
- <select1 id="combo7" ref="/root/main/examform/cf/readdrid3" appearance="minimal" style="left:454px; top:604px; width:100px; height:19px; ">
- <choices>
- <itemset nodeset="/root/main/execuserlist/item0">
- <label ref="usernm"/>
- <value ref="userid"/>
- </itemset>
- </choices>
- </select1>
- <caption id="caption32" style="left:289px; top:609px; width:30px; height:15px; ">M.D.</caption>
- <caption id="caption35" style="left:420px; top:609px; width:30px; height:15px; ">M.D.</caption>
- <caption id="caption36" class="cell_1" style="left:3px; top:604px; width:180px; height:19px; text-align:center; vertical-align:middle; ">ENDOSCOPIST</caption>
- <caption id="caption37" style="left:555px; top:609px; width:30px; height:15px; ">M.D.</caption>
- <button id="btn_chng2" class="btn3_letter2" style="left:850px; top:604px; width:56px; height:22px; ">
- <caption>변경</caption>
- <script type="javascript" ev:event="onclick">
- <![CDATA[
- input1.disabled = false ;
- ]]>
- </script>
- </button>
- <input id="cf_workdd" ref="/root/main/examform/cf/workdd" class="input_search" inputtype="date" style="left:731px; top:604px; width:110px; height:19px; "/>
- <caption id="caption38" class="cell_1" style="left:493px; top:561px; width:100px; height:19px; text-align:center; vertical-align:middle; ">REMARK</caption>
- <caption id="caption39" class="cell_1" style="left:3px; top:561px; width:180px; height:19px; text-align:center; vertical-align:middle; ">
- <![CDATA[RECOMMEND & FOLLOW-UP]]>
- </caption>
- <input id="input4" ref="/root/main/examform/cf/recommend" class="input_search" style="left:185px; top:561px; width:290; height:19px; ">
- <script type="javascript" ev:event="ondblclick">
- <![CDATA[
- fOpenExcel(input4, srchrecommend2, "RECOMMEND",model.getValue("/root/send/check/permission"));
- model.setfocus("input7", true);
- ]]>
- </script>
- </input>
- <input id="input7" ref="/root/main/examform/cf/remark" class="input_search" style="left:597px; top:561px; width:305; height:19px; ">
- <script type="javascript" ev:event="ondblclick">
- <![CDATA[
- fOpenExcel(input7, srchremark2, "REMARK",model.getValue("/root/send/check/permission"));
- model.setfocus("combo5", true);
- ]]>
- </script>
- </input>
- <caption id="caption40" class="cell_1" style="left:3px; top:528px; width:180px; height:28px; text-align:center; vertical-align:middle; ">
- <![CDATA[PROCEDURE-RELATED
- COMPLICATION]]>
- </caption>
- <textarea id="textarea24" ref="/root/main/examform/cf/complic" style="left:185px; top:528px; width:720px; height:28px; ">
- <script type="javascript" ev:event="ondblclick">
- <![CDATA[
- fOpenExcel(textarea24, srchcomplic2, "PROCEDURE-RELATED COMPLICATION",model.getValue("/root/send/check/permission"));
- model.setfocus("input4", true);
- ]]>
- </script>
- </textarea>
- <textarea id="textarea26" ref="/root/main/examform/cf/therap" style="left:185px; top:365px; width:720px; height:65px; ">
- <script type="javascript" ev:event="ondblclick">
- <![CDATA[
- fOpenExcel(textarea26, srchtherap2, "CF_THERAPEUTIC PROCEDURE",model.getValue("/root/send/check/permission"));
- model.setfocus("textarea27", true);
- ]]>
- </script>
- </textarea>
- <caption id="caption43" class="cell_1" style="left:3px; top:365px; width:180px; height:65px; text-align:center; vertical-align:middle; ">
- <![CDATA[THERAPEUTIC
- PROCEDURE]]>
- </caption>
- <caption id="caption44" class="cell_1" style="left:3px; top:435px; width:180px; height:90px; text-align:center; vertical-align:middle; ">ENDOSCOPIC DIAGNOSIS</caption>
- <textarea id="textarea27" ref="/root/main/examform/cf/diag1" style="left:185px; top:435px; width:720px; height:90px; ">
- <script type="javascript" ev:event="ondblclick">
- <![CDATA[
- fOpenExcel(textarea27, srchdiag11, "CF_ENDOSCOPIC DIAGNOSIS",model.getValue("/root/send/check/permission"));
- model.setfocus("textarea24", true);
- ]]>
- </script>
- </textarea>
- <textarea id="textarea28" ref="/root/main/examform/cf/rectalexam" style="left:185px; top:218px; width:720px; height:38px; ">
- <script type="javascript" ev:event="ondblclick">
- <![CDATA[
- fOpenExcel(textarea28, srchrectalexam2, "CF_DIGITAL RECTAL EXAM",model.getValue("/root/send/check/permission"));
- model.setfocus("textarea32", true);
- ]]>
- </script>
- </textarea>
- <caption id="caption45" class="cell_1" style="left:3px; top:218px; width:180px; height:38px; text-align:center; vertical-align:middle; ">DIGITAL RECTAL EXAM</caption>
- <input id="input8" ref="/root/main/examform/cf/reason" class="input_search" style="left:185px; top:3px; width:720; height:19px; ">
- <script type="javascript" ev:event="ondblclick">
- <![CDATA[
- fOpenExcel(input8, srchreason2, "CF_REASON", model.getValue("/root/send/check/permission") );
- model.setfocus("textarea29", true);
- ]]>
- </script>
- </input>
- <caption id="caption46" class="cell_1" style="left:3px; top:3px; width:180; height:19; text-align:center; vertical-align:middle; ">REASONS FOR EXAM</caption>
- <select id="checkbox1" ref="/root/main/examform/cf/sleepyn" overflow="visible" appearance="full" checkvalue="Y,N" style="left:185px; top:67px; width:65px; height:20px; border-style:none; ">
- <choices>
- <item>
- <label>수 면</label>
- <value>Y</value>
- </item>
- </choices>
- </select>
- <caption id="caption47" class="cell_1" style="left:3px; top:66px; width:180px; height:25px; text-align:center; vertical-align:middle; ">PREMEDICATION</caption>
- <caption id="caption48" class="cell_1" style="left:3px; top:25px; width:180px; height:38px; text-align:center; vertical-align:middle; ">DRUG HISTORY</caption>
- <input id="input9" ref="/root/main/examform/cf/medic" class="input_search" style="left:256px; top:67px; width:650px; height:19px; ">
- <script type="javascript" ev:event="ondblclick">
- <![CDATA[
- fOpenExcel(input9, srchmedic2, "CF_PREMEDICATION", model.getValue("/root/send/check/permission") );
- model.setfocus("textarea31", true);
- ]]>
- </script>
- </input>
- <textarea id="textarea29" ref="/root/main/examform/cf/drug" style="left:185px; top:25px; width:720; height:38px; ">
- <script type="javascript" ev:event="ondblclick">
- <![CDATA[
- fOpenExcel(textarea29, srchdrug2, "DRUG", model.getValue("/root/send/check/permission") );
- model.setfocus("input9", true);
- ]]>
- </script>
- </textarea>
- <select id="checkbox2" ref="/root/main/examform/cf/esdemryn" class="checkbox_search" overflow="visible" appearance="full" checkvalue="Y,N" style="left:552px; top:163px; width:91px; height:20px; border-style:none; ">
- <choices>
- <item>
- <label>ESD or EMR</label>
- <value>Y</value>
- </item>
- </choices>
- </select>
- <shape id="roundrect4" class="roundrect_example" appearance="roundrect" style="left:327px; top:158px; width:413px; height:30px; "/>
- <select id="checkbox13" ref="/root/main/examform/cf/pacsyn" class="checkbox_search" overflow="visible" appearance="full" checkvalue="Y,N" style="left:185px; top:135px; width:65px; height:20px; border-style:none; ">
- <choices>
- <item>
- <label>PACS</label>
- <value>Y</value>
- </item>
- </choices>
- </select>
- <select id="checkbox14" ref="/root/main/examform/cf/video" class="checkbox_search" overflow="visible" appearance="full" checkvalue="Y,N" style="left:257px; top:135px; width:70px; height:20px; border-style:none; ">
- <choices>
- <item>
- <label>Video</label>
- <value>Y</value>
- </item>
- </choices>
- </select>
- <caption id="caption49" class="cell_1" style="left:3px; top:137px; width:180px; height:77px; text-align:center; vertical-align:middle; ">PROCEDURE</caption>
- <select id="checkbox16" ref="/root/main/examform/cf/cytologyyn" class="checkbox_search" overflow="visible" appearance="full" checkvalue="Y,N" style="left:655px; top:163px; width:75px; height:20px; border-style:none; ">
- <choices>
- <item>
- <label>Cytology</label>
- <value>Y</value>
- </item>
- </choices>
- </select>
- <select id="checkbox17" ref="/root/main/examform/cf/samplingyn" class="checkbox_search" overflow="visible" appearance="full" checkvalue="Y,N" style="left:340px; top:135px; width:113px; height:20px; border-style:none; ">
- <choices>
- <item>
- <label>Stool Sampling</label>
- <value>Y</value>
- </item>
- </choices>
- </select>
- <select id="checkbox18" ref="/root/main/examform/cf/biopsytn" class="checkbox_search" overflow="visible" appearance="full" checkvalue="Y,N" style="left:335px; top:163px; width:95px; height:20px; border-style:none; ">
- <choices>
- <item>
- <label>Forcep Biopsy</label>
- <value>Y</value>
- </item>
- </choices>
- </select>
- <select id="checkbox19" ref="/root/main/examform/cf/polypectyn" class="checkbox_search" overflow="visible" appearance="full" checkvalue="Y,N" style="left:445px; top:163px; width:95px; height:20px; border-style:none; ">
- <choices>
- <item>
- <label>Polypectomy</label>
- <value>Y</value>
- </item>
- </choices>
- </select>
- <textarea id="textarea30" ref="/root/main/examform/cf/procedure" style="left:185px; top:189px; width:720px; height:23px; ">
- <script type="javascript" ev:event="ondblclick">
- <![CDATA[
- fOpenExcel(textarea30, srchprocedure2, "CF_PROCEDURE", model.getValue("/root/send/check/permission") );
- model.setfocus("textarea28", true);
- ]]>
- </script>
- </textarea>
- <textarea id="textarea31" ref="/root/main/examform/cf/bowelprep" style="left:183px; top:95px; width:720px; height:38px; ">
- <script type="javascript" ev:event="ondblclick">
- <![CDATA[
- fOpenExcel(textarea31, srchbowelprep2, "BOWEL PREPARATION", model.getValue("/root/send/check/permission") );
- model.setfocus("textarea30", true);
- ]]>
- </script>
- </textarea>
- <caption id="caption50" class="cell_1" style="left:1px; top:95px; width:180px; height:38px; text-align:center; vertical-align:middle; ">BOWEL PREPARATION</caption>
- <textarea id="textarea32" ref="/root/main/examform/cf/find1contnt1" style="left:184px; top:260px; width:720px; height:100px; ">
- <script type="javascript" ev:event="ondblclick">
- <![CDATA[
- fOpenExcel(textarea32, srchfind1contnt11, "CF_ENDOSCOPIC FINDINGS",model.getValue("/root/send/check/permission"));
- model.setfocus("textarea26", true);
- ]]>
- </script>
- </textarea>
- <caption id="caption51" class="cell_1" style="left:3px; top:260px; width:180px; height:100px; text-align:center; vertical-align:middle; ">ENDOSCOPIC FINDINGS</caption>
- <textarea id="srchreason2" ref="/root/main/examform/cf/srchreason" visibility="hidden" style="left:660px; top:5px; width:90px; height:38px; "/>
- <textarea id="srchdrug2" ref="/root/main/examform/cf/srchdrug" visibility="hidden" style="left:650px; top:45px; width:85px; height:38px; "/>
- <textarea id="srchmedic2" ref="/root/main/examform/cf/srchmedic" visibility="hidden" style="left:655px; top:90px; width:85px; height:38px; "/>
- <textarea id="srchbowelprep2" ref="/root/main/examform/cf/srchbowelprep" visibility="hidden" style="left:655px; top:130px; width:85px; height:38px; "/>
- <textarea id="srchprocedure2" ref="/root/main/examform/cf/srchprocedure" visibility="hidden" style="left:655px; top:175px; width:85px; height:38px; "/>
- <textarea id="srchrectalexam2" ref="/root/main/examform/cf/srchrectalexam" visibility="hidden" style="left:655px; top:220px; width:85px; height:38px; "/>
- <textarea id="srchfind1contnt11" ref="/root/main/examform/cf/srchfind1contnt1" visibility="hidden" style="left:655px; top:265px; width:85px; height:38px; "/>
- <textarea id="srchtherap2" ref="/root/main/examform/cf/srchtherap" visibility="hidden" style="left:655px; top:335px; width:85px; height:38px; "/>
- <textarea id="srchdiag11" ref="/root/main/examform/cf/srchdiag1" visibility="hidden" style="left:655px; top:400px; width:85px; height:38px; "/>
- <textarea id="srchcomplic2" ref="/root/main/examform/cf/srchcomplic" visibility="hidden" style="left:650px; top:445px; width:85px; height:38px; "/>
- <textarea id="srchrecommend2" ref="/root/main/examform/cf/srchrecommend" visibility="hidden" style="left:650px; top:495px; width:85px; height:38px; "/>
- <textarea id="srchremark2" ref="/root/main/examform/cf/srchremark" visibility="hidden" style="left:650px; top:545px; width:85px; height:38px; "/>
- <caption id="caption171" class="cell_1" style="left:220px; top:161px; width:103px; height:20px; ">Tissue Sampling</caption>
- </case>
- <case id="case6" selected="true">
- <textarea id="textarea40" ref="/root/main/examform/fs/complic" style="left:185px; top:530px; width:720px; height:28px; ">
- <script type="javascript" ev:event="ondblclick">
- <![CDATA[
- fOpenExcel(textarea40, srchcomplic3, "PROCEDURE-RELATED COMPLICATION",model.getValue("/root/send/check/permission"));
- model.setfocus("input22", true);
- ]]>
- </script>
- </textarea>
- <input id="input18" ref="/root/main/examform/fs/remark" class="input_search" style="left:597px; top:561px; width:305; height:19px; ">
- <script type="javascript" ev:event="ondblclick">
- <![CDATA[
- fOpenExcel(input18, srchremark3, "REMARK",model.getValue("/root/send/check/permission"));
- model.setfocus("combo11", true);
- ]]>
- </script>
- </input>
- <input id="input19" ref="/root/main/examform/fs/reason" class="input_search" style="left:185px; top:3px; width:720; height:19px; ">
- <script type="javascript" ev:event="ondblclick">
- <![CDATA[
- fOpenExcel(input19, srchreason3, "CF_REASON",model.getValue("/root/send/check/permission"));
- model.setfocus("textarea44", true);
- ]]>
- </script>
- </input>
- <button id="button21" class="btn3_letter2" style="left:850px; top:604px; width:56px; height:22px; ">
- <caption>변경</caption>
- <script type="javascript" ev:event="onclick">
- <![CDATA[
- fs_workdd.disabled = false ;
- ]]>
- </script>
- </button>
- <caption id="caption74" class="cell_1" style="left:1px; top:95px; width:180px; height:38px; text-align:center; vertical-align:middle; ">BOWEL PREPARATION</caption>
- <shape id="roundrect6" class="roundrect_example" appearance="roundrect" style="left:328px; top:158px; width:412px; height:30px; "/>
- <input id="input20" ref="/root/main/examform/fs/medic" class="input_search" style="left:256px; top:67px; width:650px; height:19px; ">
- <script type="javascript" ev:event="ondblclick">
- <![CDATA[
- fOpenExcel(input20, srchmedic3, "CF_PREMEDICATION",model.getValue("/root/send/check/permission"));
- model.setfocus("textarea46", true);
- ]]>
- </script>
- </input>
- <textarea id="textarea41" ref="/root/main/examform/fs/therap" style="left:185px; top:367px; width:720px; height:65px; ">
- <script type="javascript" ev:event="ondblclick">
- <![CDATA[
- fOpenExcel(textarea41, srchtherap3, "CF_THERAPEUTIC PROCEDURE",model.getValue("/root/send/check/permission"));
- model.setfocus("textarea42", true);
- ]]>
- </script>
- </textarea>
- <caption id="caption75" class="cell_1" style="left:3px; top:259px; width:180px; height:105px; text-align:center; vertical-align:middle; ">ENDOSCOPIC FINDINGS</caption>
- <select id="checkbox35" ref="/root/main/examform/fs/pacsyn" class="checkbox_search" overflow="visible" appearance="full" checkvalue="Y,N" style="left:185px; top:135px; width:65px; height:20px; border-style:none; ">
- <choices>
- <item>
- <label>PACS</label>
- <value>Y</value>
- </item>
- </choices>
- </select>
- <textarea id="textarea42" ref="/root/main/examform/fs/diag1" style="left:185px; top:436px; width:720px; height:90px; ">
- <script type="javascript" ev:event="ondblclick">
- <![CDATA[
- fOpenExcel(textarea42, srchdiag13, "CF_ENDOSCOPIC DIAGNOSIS",model.getValue("/root/send/check/permission"));
- model.setfocus("textarea40", true);
- ]]>
- </script>
- </textarea>
- <caption id="caption76" class="cell_1" style="left:4px; top:529px; width:180px; height:28px; text-align:center; vertical-align:middle; ">
- <![CDATA[PROCEDURE-RELATED
- COMPLICATION]]>
- </caption>
- <select id="checkbox36" ref="/root/main/examform/fs/video" class="checkbox_search" overflow="visible" appearance="full" checkvalue="Y,N" style="left:257px; top:135px; width:70px; height:20px; border-style:none; ">
- <choices>
- <item>
- <label>Video</label>
- <value>Y</value>
- </item>
- </choices>
- </select>
- <select id="checkbox37" ref="/root/main/examform/fs/sleepyn" overflow="visible" appearance="full" checkvalue="Y,N" style="left:185px; top:67px; width:65px; height:20px; border-style:none; ">
- <choices>
- <item>
- <label>수 면</label>
- <value>Y</value>
- </item>
- </choices>
- </select>
- <textarea id="textarea43" ref="/root/main/examform/fs/rectalexam" style="left:185px; top:218px; width:720px; height:38px; ">
- <script type="javascript" ev:event="ondblclick">
- <![CDATA[
- fOpenExcel(textarea43, srchrectalexam3, "CF_DIGITAL RECTAL EXAM",model.getValue("/root/send/check/permission"));
- model.setfocus("textarea47", true);
- ]]>
- </script>
- </textarea>
- <select id="checkbox39" ref="/root/main/examform/fs/esdemryn" class="checkbox_search" overflow="visible" appearance="full" checkvalue="Y,N" style="left:553px; top:163px; width:91px; height:20px; border-style:none; ">
- <choices>
- <item>
- <label>ESD or EMR</label>
- <value>Y</value>
- </item>
- </choices>
- </select>
- <textarea id="textarea44" ref="/root/main/examform/fs/drug" style="left:185px; top:25px; width:720; height:38px; ">
- <script type="javascript" ev:event="ondblclick">
- <![CDATA[
- fOpenExcel(textarea44, srchdrug3, "DRUG",model.getValue("/root/send/check/permission"));
- model.setfocus("input20", true);
- ]]>
- </script>
- </textarea>
- <caption id="caption77" class="cell_1" style="left:626px; top:604px; width:100px; height:19px; text-align:center; vertical-align:middle; ">작업일자</caption>
- <select id="checkbox40" ref="/root/main/examform/fs/cytologyyn" class="checkbox_search" overflow="visible" appearance="full" checkvalue="Y,N" style="left:650px; top:163px; width:75px; height:20px; border-style:none; ">
- <choices>
- <item>
- <label>Cytology</label>
- <value>Y</value>
- </item>
- </choices>
- </select>
- <caption id="caption78" class="cell_1" style="left:3px; top:367px; width:180px; height:65px; text-align:center; vertical-align:middle; ">
- <![CDATA[THERAPEUTIC
- PROCEDURE]]>
- </caption>
- <caption id="caption79" style="left:289px; top:609px; width:30px; height:15px; ">M.D.</caption>
- <select id="checkbox41" ref="/root/main/examform/fs/samplingyn" class="checkbox_search" overflow="visible" appearance="full" checkvalue="Y,N" style="left:340px; top:135px; width:113px; height:20px; border-style:none; ">
- <choices>
- <item>
- <label>Stool Sampling</label>
- <value>Y</value>
- </item>
- </choices>
- </select>
- <caption id="caption80" class="cell_1" style="left:3px; top:436px; width:180px; height:90px; text-align:center; vertical-align:middle; ">ENDOSCOPIC DIAGNOSIS</caption>
- <select id="checkbox42" ref="/root/main/examform/fs/biopsytn" class="checkbox_search" overflow="visible" appearance="full" checkvalue="Y,N" style="left:336px; top:163px; width:95px; height:20px; border-style:none; ">
- <choices>
- <item>
- <label>Forcep Biopsy</label>
- <value>Y</value>
- </item>
- </choices>
- </select>
- <caption id="caption81" class="cell_1" style="left:3px; top:218px; width:180px; height:38px; text-align:center; vertical-align:middle; ">DIGITAL RECTAL EXAM</caption>
- <select id="checkbox43" ref="/root/main/examform/fs/polypectyn" class="checkbox_search" overflow="visible" appearance="full" checkvalue="Y,N" style="left:446px; top:163px; width:95px; height:20px; border-style:none; ">
- <choices>
- <item>
- <label>Polypectomy</label>
- <value>Y</value>
- </item>
- </choices>
- </select>
- <caption id="caption82" class="cell_1" style="left:3px; top:3px; width:180; height:19; text-align:center; vertical-align:middle; ">REASONS FOR EXAM</caption>
- <caption id="caption83" style="left:420px; top:609px; width:30px; height:15px; ">M.D.</caption>
- <caption id="caption84" class="cell_1" style="left:3px; top:66px; width:180px; height:25px; text-align:center; vertical-align:middle; ">PREMEDICATION</caption>
- <caption id="caption85" class="cell_1" style="left:3px; top:604px; width:180px; height:19px; text-align:center; vertical-align:middle; ">ENDOSCOPIST</caption>
- <caption id="caption86" class="cell_1" style="left:3px; top:25px; width:180px; height:38px; text-align:center; vertical-align:middle; ">DRUG HISTORY</caption>
- <input id="fs_workdd" ref="/root/main/examform/fs/workdd" class="input_search" inputtype="date" style="left:731px; top:604px; width:110px; height:19px; "/>
- <caption id="caption87" style="left:555px; top:609px; width:30px; height:15px; ">M.D.</caption>
- <select1 id="combo11" ref="/root/main/examform/fs/readdrid1" appearance="minimal" style="left:185px; top:604px; width:100px; height:19px; ">
- <choices>
- <itemset nodeset="/root/main/execuserlist/item1">
- <label ref="usernm"/>
- <value ref="userid"/>
- </itemset>
- </choices>
- </select1>
- <textarea id="textarea45" ref="/root/main/examform/fs/procedure" style="left:185px; top:189px; width:720px; height:23px; ">
- <script type="javascript" ev:event="ondblclick">
- <![CDATA[
- fOpenExcel(textarea45, srchprocedure3, "CF_PROCEDURE",model.getValue("/root/send/check/permission"));
- model.setfocus("textarea43", true);
- ]]>
- </script>
- </textarea>
- <caption id="caption88" class="cell_1" style="left:3px; top:137px; width:180px; height:77px; text-align:center; vertical-align:middle; ">PROCEDURE</caption>
- <caption id="caption89" class="cell_1" style="left:493px; top:561px; width:100px; height:19px; text-align:center; vertical-align:middle; ">REMARK</caption>
- <select1 id="combo12" ref="/root/main/examform/fs/readdrid2" appearance="minimal" style="left:318px; top:604px; width:100px; height:19px; ">
- <choices>
- <itemset nodeset="/root/main/execuserlist/item0">
- <label ref="usernm"/>
- <value ref="userid"/>
- </itemset>
- </choices>
- </select1>
- <textarea id="textarea46" ref="/root/main/examform/fs/bowelprep" style="left:183px; top:95px; width:720px; height:38px; ">
- <script type="javascript" ev:event="ondblclick">
- <![CDATA[
- fOpenExcel(textarea46, srchbowelprep3, "BOWEL PREPARATION",model.getValue("/root/send/check/permission"));
- model.setfocus("textarea45", true);
- ]]>
- </script>
- </textarea>
- <caption id="caption90" class="cell_1" style="left:3px; top:561px; width:180px; height:19px; text-align:center; vertical-align:middle; ">
- <![CDATA[RECOMMEND & FOLLOW-UP]]>
- </caption>
- <select1 id="combo13" ref="/root/main/examform/fs/readdrid3" appearance="minimal" style="left:454px; top:604px; width:100px; height:19px; ">
- <choices>
- <itemset nodeset="/root/main/execuserlist/item0">
- <label ref="usernm"/>
- <value ref="userid"/>
- </itemset>
- </choices>
- </select1>
- <textarea id="textarea47" ref="/root/main/examform/fs/find1contnt1" style="left:184px; top:259px; width:720px; height:105px; ">
- <script type="javascript" ev:event="ondblclick">
- <![CDATA[
- fOpenExcel(textarea47, srchfind1contnt13, "CF_ENDOSCOPIC FINDINGS",model.getValue("/root/send/check/permission"));
- model.setfocus("textarea41", true);
- ]]>
- </script>
- </textarea>
- <input id="input22" ref="/root/main/examform/fs/recommend" class="input_search" style="left:185px; top:561px; width:290; height:19px; ">
- <script type="javascript" ev:event="ondblclick">
- <![CDATA[
- fOpenExcel(input22, srchrecommend3, "RECOMMEND",model.getValue("/root/send/check/permission"));
- model.setfocus("input18", true);
- ]]>
- </script>
- </input>
- <textarea id="srchreason3" ref="/root/main/examform/fs/srchreason" visibility="hidden" style="left:755px; top:10px; width:85px; height:38px; "/>
- <textarea id="srchdrug3" ref="/root/main/examform/fs/srchdrug" visibility="hidden" style="left:755px; top:55px; width:85px; height:38px; "/>
- <textarea id="srchrecommend3" ref="/root/main/examform/fs/srchrecommend" visibility="hidden" style="left:390px; top:520px; width:85px; height:38px; "/>
- <textarea id="srchcomplic3" ref="/root/main/examform/fs/srchcomplic" visibility="hidden" style="left:705px; top:505px; width:85px; height:38px; "/>
- <textarea id="srchdiag13" ref="/root/main/examform/fs/srchdiag1" visibility="hidden" style="left:755px; top:415px; width:85px; height:38px; "/>
- <textarea id="srchtherap3" ref="/root/main/examform/fs/srchtherap" visibility="hidden" style="left:745px; top:340px; width:85px; height:38px; "/>
- <textarea id="srchfind1contnt13" ref="/root/main/examform/fs/srchfind1contnt1" visibility="hidden" style="left:750px; top:270px; width:85px; height:38px; "/>
- <textarea id="srchrectalexam3" ref="/root/main/examform/fs/srchrectalexam" visibility="hidden" style="left:750px; top:215px; width:85px; height:38px; "/>
- <textarea id="srchprocedure3" ref="/root/main/examform/fs/srchprocedure" visibility="hidden" style="left:750px; top:170px; width:85px; height:38px; "/>
- <textarea id="srchmedic3" ref="/root/main/examform/fs/srchmedic" visibility="hidden" style="left:755px; top:100px; width:85px; height:38px; "/>
- <textarea id="srchremark3" ref="/root/main/examform/fs/srchremark" visibility="hidden" style="left:805px; top:545px; width:85px; height:38px; "/>
- <caption id="caption172" class="cell_1" style="left:216px; top:160px; width:103px; height:20px; ">Tissue Sampling</caption>
- <textarea id="srchbowelprep3" ref="/root/main/examform/fs/srchbowelprep" visibility="hidden" style="left:755px; top:140px; width:85px; height:38px; "/>
- </case>
- <case id="case7">
- <select id="checkbox32" ref="/root/main/examform/ercp/cultureyn" class="checkbox_search" overflow="visible" appearance="full" checkvalue="Y,N" style="left:432px; top:90px; width:101px; height:20px; border-style:none; ">
- <choices>
- <item>
- <label>Bile Culture</label>
- <value>Y</value>
- </item>
- </choices>
- </select>
- <caption id="caption70" class="cell_1" style="left:48px; top:347px; width:135px; height:38px; text-align:left; vertical-align:middle; ">- PANCREAS</caption>
- <textarea id="textarea35" ref="/root/main/examform/ercp/find2contnt2" style="left:185px; top:347px; width:720px; height:38px; ">
- <script type="javascript" ev:event="ondblclick">
- <![CDATA[
- fOpenExcel(textarea35, srchfind2contnt24, "ERCP_ERCP FINDINGS_2",model.getValue("/root/send/check/permission"));
- model.setfocus("textarea36", true);
- ]]>
- </script>
- </textarea>
- <select id="checkbox33" ref="/root/main/examform/ercp/aspirationyn" class="checkbox_search" overflow="visible" appearance="full" checkvalue="Y,N" style="left:540px; top:90px; width:121px; height:20px; border-style:none; ">
- <choices>
- <item>
- <label>Panc Juice aspir</label>
- <value>Y</value>
- </item>
- </choices>
- </select>
- <line id="line9" class="line_3" style="x1:0px; y1:281px; x2:908px; y2:281px; "/>
- <caption id="caption71" class="cell_1" style="left:48; top:454px; width:135; height:38px; text-align:left; vertical-align:middle; ">- BILIARY SYSTEM</caption>
- <textarea id="textarea36" ref="/root/main/examform/ercp/therap" style="left:184px; top:390px; width:720px; height:38px; ">
- <script type="javascript" ev:event="ondblclick">
- <![CDATA[
- fOpenExcel(textarea36, srchtherap4, "ERCP_THERAPEUTIC PROCEDURE",model.getValue("/root/send/check/permission"));
- model.setfocus("textarea39", true);
- ]]>
- </script>
- </textarea>
- <caption id="caption60" style="left:289px; top:609px; width:30px; height:15px; ">M.D.</caption>
- <textarea id="textarea25" ref="/root/main/examform/ercp/procedure" style="left:185px; top:146px; width:720; height:23px; ">
- <script type="javascript" ev:event="ondblclick">
- <![CDATA[
- fOpenExcel(textarea25, srchprocedure4, "ERCP_PROCEDURE",model.getValue("/root/send/check/permission"));
- model.setfocus("input15", true);
- ]]>
- </script>
- </textarea>
- <select id="checkbox22" ref="/root/main/examform/ercp/ampullectomyyn" class="checkbox_search" overflow="visible" appearance="full" checkvalue="Y,N" style="left:425px; top:119px; width:106px; height:20px; border-style:none; ">
- <choices>
- <item>
- <label>Ampullectomy</label>
- <value>Y</value>
- </item>
- </choices>
- </select>
- <caption id="caption72" class="cell_1" style="left:48; top:494px; width:135; height:38px; text-align:left; vertical-align:middle; ">- PANCREAS</caption>
- <textarea id="textarea37" ref="/root/main/examform/ercp/find2contnt1" style="left:185px; top:306px; width:720px; height:38px; ">
- <script type="javascript" ev:event="ondblclick">
- <![CDATA[
- fOpenExcel(textarea37, srchfind2contnt14, "ERCP_ERCP FINDINGS_1",model.getValue("/root/send/check/permission"));
- fsetHardRslt("ercp/find2contnt1","ercp/diag1");
- model.setfocus("textarea35", true);
- ]]>
- </script>
- </textarea>
- <caption id="caption61" style="left:420px; top:609px; width:30px; height:15px; ">M.D.</caption>
- <button id="button2" class="btn3_letter2" style="left:850px; top:604px; width:56px; height:22px; ">
- <caption>변경</caption>
- <script type="javascript" ev:event="onclick">
- <![CDATA[
- ercp_workdd.disabled = false ;
- ]]>
- </script>
- </button>
- <select id="checkbox23" ref="/root/main/examform/ercp/sleepyn" overflow="visible" appearance="full" checkvalue="Y,N" style="left:185px; top:65px; width:65px; height:20px; border-style:none; ">
- <choices>
- <item>
- <label>수 면</label>
- <value>Y</value>
- </item>
- </choices>
- </select>
- <line id="line10" class="line_3" style="x1:0px; y1:387px; x2:908px; y2:387px; "/>
- <textarea id="textarea38" ref="/root/main/examform/ercp/diag2" style="left:185px; top:494px; width:720px; height:38px; ">
- <script type="javascript" ev:event="ondblclick">
- <![CDATA[
- fOpenExcel(textarea38, srchdiag24, "ERCP_DIAGNOSIS_2",model.getValue("/root/send/check/permission"));
- model.setfocus("textarea34", true);
- ]]>
- </script>
- </textarea>
- <caption id="caption62" style="left:555px; top:609px; width:30px; height:15px; ">M.D.</caption>
- <select id="checkbox24" ref="/root/main/examform/ercp/video" class="checkbox_search" overflow="visible" appearance="full" checkvalue="Y,N" style="left:244px; top:92px; width:70px; height:20px; border-style:none; ">
- <choices>
- <item>
- <label>Video</label>
- <value>Y</value>
- </item>
- </choices>
- </select>
- <shape id="roundrect5" class="roundrect_example" appearance="roundrect" style="left:313px; top:114px; width:312px; height:30px; "/>
- <line id="line11" class="line_3" style="x1:0px; y1:533px; x2:908px; y2:533px; "/>
- <textarea id="textarea39" ref="/root/main/examform/ercp/diag1" style="left:185px; top:453px; width:720px; height:38px; ">
- <script type="javascript" ev:event="ondblclick">
- <![CDATA[
- fOpenExcel(textarea39, srchdiag14, "ERCP_DIAGNOSIS_1",model.getValue("/root/send/check/permission"));
- model.setfocus("textarea38", true);
- ]]>
- </script>
- </textarea>
- <caption id="caption63" class="cell_1" style="left:48px; top:254px; width:135px; height:25px; text-align:left; vertical-align:middle; ">- MINOR PAPILLA</caption>
- <caption id="caption52" class="cell_1" style="left:3px; top:66px; width:180px; height:25px; text-align:center; vertical-align:middle; ">MEDICATION</caption>
- <select id="checkbox25" ref="/root/main/examform/ercp/pacsyn" class="checkbox_search" overflow="visible" appearance="full" checkvalue="Y,N" style="left:185px; top:92px; width:55px; height:20px; border-style:none; ">
- <choices>
- <item>
- <label>PACS</label>
- <value>Y</value>
- </item>
- </choices>
- </select>
- <caption id="caption53" class="cell_1" style="left:3px; top:94px; width:180px; height:77px; text-align:center; vertical-align:middle; ">PROCEDURE</caption>
- <caption id="caption42" class="cell_1" style="left:3px; top:3px; width:180; height:19; text-align:center; vertical-align:middle; ">REASONS FOR EXAM</caption>
- <input id="input10" ref="/root/main/examform/ercp/reason" class="input_search" style="left:185px; top:3px; width:720; height:19px; ">
- <script type="javascript" ev:event="ondblclick">
- <![CDATA[
- fOpenExcel(input10, srchreason4, "ERCP_REASON",model.getValue("/root/send/check/permission"));
- model.setfocus("textarea33", true);
- ]]>
- </script>
- </input>
- <caption id="caption65" class="cell_1" style="left:48px; top:200px; width:135px; height:25px; text-align:left; vertical-align:middle; ">- DUODENAL WALL</caption>
- <input id="input11" ref="/root/main/examform/ercp/medic" class="input_search" style="left:256px; top:65px; width:650px; height:19px; ">
- <script type="javascript" ev:event="ondblclick">
- <![CDATA[
- fOpenExcel(input11, srchmedic4, "ERCP_PREMEDICATION",model.getValue("/root/send/check/permission"));
- model.setfocus("textarea25", true);
- ]]>
- </script>
- </input>
- <caption id="caption54" class="cell_1" style="left:3px; top:25px; width:180px; height:38px; text-align:center; vertical-align:middle; ">DRUG HISTORY</caption>
- <select id="checkbox27" ref="/root/main/examform/ercp/cytologyyn" class="checkbox_search" overflow="visible" appearance="full" checkvalue="Y,N" style="left:535px; top:119px; width:75px; height:20px; border-style:none; ">
- <choices>
- <item>
- <label>Cytology</label>
- <value>Y</value>
- </item>
- </choices>
- </select>
- <caption id="caption66" class="cell_1" style="left:48px; top:227px; width:135px; height:25px; text-align:left; vertical-align:middle; ">- MAJOR PAPILLA</caption>
- <input id="input12" ref="/root/main/examform/ercp/recommend" class="input_search" style="left:185px; top:580px; width:290px; height:19px; ">
- <script type="javascript" ev:event="ondblclick">
- <![CDATA[
- fOpenExcel(input12, srchrecommend4, "RECOMMEND",model.getValue("/root/send/check/permission"));
- model.setfocus("input14", true);
- ]]>
- </script>
- </input>
- <caption id="caption55" class="cell_1" style="left:626px; top:604px; width:100px; height:19px; text-align:center; vertical-align:middle; ">작업일자</caption>
- <select id="checkbox28" ref="/root/main/examform/ercp/samplingyn" class="checkbox_search" overflow="visible" appearance="full" checkvalue="Y,N" style="left:325px; top:90px; width:101px; height:20px; border-style:none; ">
- <choices>
- <item>
- <label>Bile Sampling</label>
- <value>Y</value>
- </item>
- </choices>
- </select>
- <caption id="caption67" class="cell_1" style="left:3px; top:390px; width:180px; height:38px; text-align:center; vertical-align:middle; ">
- <![CDATA[THERAPEUTIC
- PROCEDURE]]>
- </caption>
- <input id="ercp_workdd" ref="/root/main/examform/ercp/workdd" class="input_search" inputtype="date" style="left:731px; top:604px; width:110px; height:19px; "/>
- <caption id="caption56" class="cell_1" style="left:493px; top:580px; width:100px; height:19px; text-align:center; vertical-align:middle; ">REMARK</caption>
- <select id="checkbox29" ref="/root/main/examform/ercp/biopsytn" class="checkbox_search" overflow="visible" appearance="full" checkvalue="Y,N" style="left:321px; top:119px; width:99px; height:20px; border-style:none; ">
- <choices>
- <item>
- <label>Forcep Biopsy</label>
- <value>Y</value>
- </item>
- </choices>
- </select>
- <input id="input14" ref="/root/main/examform/ercp/remark" class="input_search" style="left:597px; top:580px; width:305px; height:19px; ">
- <script type="javascript" ev:event="ondblclick">
- <![CDATA[
- fOpenExcel(input14, srchremark4, "REMARK",model.getValue("/root/send/check/permission"));
- model.setfocus("combo8", true);
- ]]>
- </script>
- </input>
- <caption id="caption57" class="cell_1" style="left:3px; top:539px; width:180px; height:28px; text-align:center; vertical-align:middle; ">
- <![CDATA[PROCEDURE-RELATED
- COMPLICATION]]>
- </caption>
- <caption id="caption69" class="cell_1" style="left:48px; top:307px; width:135px; height:38px; text-align:left; vertical-align:middle; ">- BILIARY SYSTEM</caption>
- <input id="input15" ref="/root/main/examform/ercp/find1contnt1" class="input_search" style="left:185px; top:202px; width:720px; height:19px; ">
- <script type="javascript" ev:event="ondblclick">
- <![CDATA[
- fOpenExcel(input15, srchfind1contnt14, "ERCP_ENDOSCOPIC FINDINGS_1",model.getValue("/root/send/check/permission"));
- model.setfocus("input16", true);
- ]]>
- </script>
- </input>
- <caption id="caption58" class="cell_1" style="left:3px; top:580px; width:180px; height:19px; text-align:center; vertical-align:middle; ">
- <![CDATA[RECOMMEND & FOLLOW-UP]]>
- </caption>
- <input id="input16" ref="/root/main/examform/ercp/find1contnt2" class="input_search" style="left:185px; top:229px; width:720px; height:19px; ">
- <script type="javascript" ev:event="ondblclick">
- <![CDATA[
- fOpenExcel(input16, srchfind1contnt24, "ERCP_ENDOSCOPIC FINDINGS_2",model.getValue("/root/send/check/permission"));
- model.setfocus("input17", true);
- ]]>
- </script>
- </input>
- <caption id="caption59" class="cell_1" style="left:3px; top:604px; width:180px; height:19px; text-align:center; vertical-align:middle; ">ENDOSCOPIST</caption>
- <select1 id="combo10" ref="/root/main/examform/ercp/readdrid3" appearance="minimal" style="left:454px; top:604px; width:100px; height:19px; ">
- <choices>
- <itemset nodeset="/root/main/execuserlist/item0">
- <label ref="usernm"/>
- <value ref="userid"/>
- </itemset>
- </choices>
- </select1>
- <input id="input17" ref="/root/main/examform/ercp/find1contnt3" class="input_search" style="left:185px; top:258px; width:720px; height:19px; ">
- <script type="javascript" ev:event="ondblclick">
- <![CDATA[
- fOpenExcel(input17, srchfind1contnt34, "ERCP_ENDOSCOPIC FINDINGS_3",model.getValue("/root/send/check/permission"));
- model.setfocus("textarea37", true);
- ]]>
- </script>
- </input>
- <select1 id="combo8" ref="/root/main/examform/ercp/readdrid1" appearance="minimal" style="left:185px; top:604px; width:100px; height:19px; ">
- <choices>
- <itemset nodeset="/root/main/execuserlist/item1">
- <label ref="usernm"/>
- <value ref="userid"/>
- </itemset>
- </choices>
- </select1>
- <select1 id="combo9" ref="/root/main/examform/ercp/readdrid2" appearance="minimal" style="left:318px; top:604px; width:100px; height:19px; ">
- <choices>
- <itemset nodeset="/root/main/execuserlist/item0">
- <label ref="usernm"/>
- <value ref="userid"/>
- </itemset>
- </choices>
- </select1>
- <textarea id="textarea33" ref="/root/main/examform/ercp/drug" style="left:185px; top:25px; width:720; height:38px; ">
- <script type="javascript" ev:event="ondblclick">
- <![CDATA[
- fOpenExcel(textarea33, srchdrug4, "DRUG",model.getValue("/root/send/check/permission"));
- model.setfocus("input11", true);
- ]]>
- </script>
- </textarea>
- <textarea id="textarea34" ref="/root/main/examform/ercp/complic" style="left:185px; top:539px; width:720px; height:28px; ">
- <script type="javascript" ev:event="ondblclick">
- <![CDATA[
- fOpenExcel(textarea34, srchcomplic4, "PROCEDURE-RELATED COMPLICATION",model.getValue("/root/send/check/permission"));
- model.setfocus("input12", true);
- ]]>
- </script>
- </textarea>
- <line id="line14" class="line_3" style="x1:3px; y1:172px; x2:906px; y2:172px; "/>
- <textarea id="srchfind1contnt34" ref="/root/main/examform/ercp/srchfind1contnt3" visibility="hidden" style="left:790px; top:255px; width:85px; height:38px; "/>
- <textarea id="srchfind2contnt14" ref="/root/main/examform/ercp/srchfind2contnt1" visibility="hidden" style="left:605px; top:295px; width:85px; height:38px; "/>
- <textarea id="srchfind2contnt24" ref="/root/main/examform/ercp/srchfind2contnt2" visibility="hidden" style="left:605px; top:340px; width:85px; height:38px; "/>
- <textarea id="srchtherap4" ref="/root/main/examform/ercp/srchtherap" visibility="hidden" style="left:605px; top:390px; width:85px; height:38px; "/>
- <textarea id="srchdiag14" ref="/root/main/examform/ercp/srchdiag1" visibility="hidden" style="left:605px; top:440px; width:85px; height:38px; "/>
- <textarea id="srchdiag24" ref="/root/main/examform/ercp/srchdiag2" visibility="hidden" style="left:605px; top:485px; width:85px; height:38px; "/>
- <textarea id="srchcomplic4" ref="/root/main/examform/ercp/srchcomplic" visibility="hidden" style="left:605px; top:530px; width:85px; height:38px; "/>
- <textarea id="srchrecommend4" ref="/root/main/examform/ercp/srchrecommend" visibility="hidden" style="left:280px; top:555px; width:85px; height:38px; "/>
- <textarea id="srchremark4" ref="/root/main/examform/ercp/srchremark" visibility="hidden" style="left:785px; top:555px; width:85px; height:38px; "/>
- <textarea id="srchfind1contnt14" ref="/root/main/examform/ercp/srchfind1contnt1" visibility="hidden" style="left:790px; top:200px; width:85px; height:38px; "/>
- <textarea id="srchfind1contnt24" ref="/root/main/examform/ercp/srchfind1contnt2" visibility="hidden" style="left:695px; top:230px; width:85px; height:38px; "/>
- <textarea id="srchprocedure4" ref="/root/main/examform/ercp/srchprocedure" visibility="hidden" style="left:700px; top:150px; width:85px; height:38px; "/>
- <textarea id="srchmedic4" ref="/root/main/examform/ercp/srchmedic" visibility="hidden" style="left:645px; top:65px; width:85px; height:38px; "/>
- <textarea id="srchreason4" ref="/root/main/examform/ercp/srchreason" visibility="hidden" style="left:640px; top:10px; width:85px; height:38px; "/>
- <textarea id="srchdrug4" ref="/root/main/examform/ercp/srchdrug" visibility="hidden" style="left:750px; top:35px; width:85px; height:38px; "/>
- <caption id="caption150" class="cell_1" style="left:3px; top:179px; width:180px; height:19px; text-align:center; vertical-align:middle; ">ENDOSCOPIC FINDINGS</caption>
- <caption id="caption64" class="cell_1" style="left:3px; top:200px; width:43px; height:79px; text-align:right; vertical-align:middle; "/>
- <caption id="caption151" class="cell_1" style="left:3px; top:307px; width:43px; height:77px; text-align:right; vertical-align:middle; "/>
- <caption id="caption152" class="cell_1" style="left:3px; top:454px; width:43px; height:79px; text-align:right; vertical-align:middle; "/>
- <caption id="caption153" class="cell_1" style="left:0px; top:286px; width:185px; height:19px; text-align:center; vertical-align:middle; ">ERCP FINDINGS</caption>
- <caption id="caption68" class="cell_1" style="left:3px; top:433px; width:180px; height:19px; text-align:center; vertical-align:middle; ">ERCP DIAGNOSIS</caption>
- <line id="line6" class="line_3" style="x1:0px; y1:430px; x2:908px; y2:430px; "/>
- <caption id="caption173" class="cell_1" style="left:205px; top:118px; width:103px; height:20px; ">Tissue Sampling</caption>
- </case>
- <case id="case8">
- <select id="checkbox47" ref="/root/main/examform/ptcs/ampullectomyyn" class="checkbox_search" overflow="visible" appearance="full" checkvalue="Y,N" style="left:665px; top:120px; width:106px; height:20px; border-style:none; ">
- <choices>
- <item>
- <label>Ampullectomy</label>
- <value>Y</value>
- </item>
- </choices>
- </select>
- <textarea id="textarea48" ref="/root/main/examform/ptcs/procedure" style="left:185px; top:146px; width:720; height:23px; ">
- <script type="javascript" ev:event="ondblclick">
- <![CDATA[
- fOpenExcel(textarea48, srchprocedure5, "PTCS_PROCEDURE",model.getValue("/root/send/check/permission"));
- model.setfocus("textarea51", true);
- ]]>
- </script>
- </textarea>
- <select id="checkbox49" ref="/root/main/examform/ptcs/sleepyn" overflow="visible" appearance="full" checkvalue="Y,N" style="left:185px; top:65px; width:65px; height:20px; border-style:none; ">
- <choices>
- <item>
- <label>수 면</label>
- <value>Y</value>
- </item>
- </choices>
- </select>
- <select id="checkbox50" ref="/root/main/examform/ptcs/video" class="checkbox_search" overflow="visible" appearance="full" checkvalue="Y,N" style="left:244px; top:92px; width:70px; height:20px; border-style:none; ">
- <choices>
- <item>
- <label>Video</label>
- <value>Y</value>
- </item>
- </choices>
- </select>
- <select id="checkbox51" ref="/root/main/examform/ptcs/pacsyn" class="checkbox_search" overflow="visible" appearance="full" checkvalue="Y,N" style="left:185px; top:92px; width:55px; height:20px; border-style:none; ">
- <choices>
- <item>
- <label>PACS</label>
- <value>Y</value>
- </item>
- </choices>
- </select>
- <caption id="caption91" class="cell_1" style="left:3px; top:66px; width:180px; height:25px; text-align:center; vertical-align:middle; ">MEDICATION</caption>
- <caption id="caption92" class="cell_1" style="left:3px; top:94px; width:180px; height:77px; text-align:center; vertical-align:middle; ">PROCEDURE</caption>
- <input id="input23" ref="/root/main/examform/ptcs/reason" class="input_search" style="left:185px; top:3px; width:720; height:19px; ">
- <script type="javascript" ev:event="ondblclick">
- <![CDATA[
- fOpenExcel(input23, srchreason5, "PTCS_REASON",model.getValue("/root/send/check/permission"));
- model.setfocus("textarea49", true);
- ]]>
- </script>
- </input>
- <caption id="caption93" class="cell_1" style="left:3px; top:3px; width:180; height:19; text-align:center; vertical-align:middle; ">REASONS FOR PTCS</caption>
- <input id="input24" ref="/root/main/examform/ptcs/medic" class="input_search" style="left:256px; top:65px; width:650px; height:19px; ">
- <script type="javascript" ev:event="ondblclick">
- <![CDATA[
- fOpenExcel(input24, srchmedic5, "PTCS_PREMEDICATION",model.getValue("/root/send/check/permission"));
- model.setfocus("textarea48", true);
- ]]>
- </script>
- </input>
- <caption id="caption94" class="cell_1" style="left:3px; top:25px; width:180px; height:38px; text-align:center; vertical-align:middle; ">DRUG HISTORY</caption>
- <select id="checkbox55" ref="/root/main/examform/ptcs/biopsytn" class="checkbox_search" overflow="visible" appearance="full" checkvalue="Y,N" style="left:345px; top:120px; width:95px; height:20px; border-style:none; ">
- <choices>
- <item>
- <label>Forcep Biopsy</label>
- <value>Y</value>
- </item>
- </choices>
- </select>
- <select id="checkbox56" ref="/root/main/examform/ptcs/polypectyn" class="checkbox_search" overflow="visible" appearance="full" checkvalue="Y,N" style="left:455px; top:120px; width:95px; height:20px; border-style:none; ">
- <choices>
- <item>
- <label>Polypectomy</label>
- <value>Y</value>
- </item>
- </choices>
- </select>
- <textarea id="textarea49" ref="/root/main/examform/ptcs/drug" style="left:185px; top:25px; width:720; height:38px; ">
- <script type="javascript" ev:event="ondblclick">
- <![CDATA[
- fOpenExcel(textarea49, srchdrug5, "DRUG",model.getValue("/root/send/check/permission"));
- model.setfocus("input24", true);
- ]]>
- </script>
- </textarea>
- <textarea id="textarea50" ref="/root/main/examform/ptcs/find1contnt2" style="left:185px; top:226px; width:720px; height:25px; ">
- <script type="javascript" ev:event="ondblclick">
- <![CDATA[
- fOpenExcel(textarea50, srchfind1contnt25, "PTCS_CHOLEDOCHOSCOPIC FINDINGS_2",model.getValue("/root/send/check/permission"));
- model.setfocus("textarea52", true);
- ]]>
- </script>
- </textarea>
- <caption id="caption95" class="cell_1" style="left:48px; top:226px; width:135px; height:25px; text-align:center; vertical-align:middle; ">- Rt IHD</caption>
- <textarea id="textarea51" ref="/root/main/examform/ptcs/find1contnt1" style="left:185px; top:199px; width:720px; height:25px; ">
- <script type="javascript" ev:event="ondblclick">
- <![CDATA[
- fOpenExcel(textarea51, srchfind1contnt15, "PTCS_CHOLEDOCHOSCOPIC FINDINGS_1",model.getValue("/root/send/check/permission"));
- model.setfocus("textarea50", true);
- ]]>
- </script>
- </textarea>
- <caption id="caption97" class="cell_1" style="left:48px; top:199px; width:135px; height:25px; text-align:center; vertical-align:middle; ">- CBD</caption>
- <caption id="caption98" class="cell_1" style="left:48px; top:254px; width:135px; height:25px; text-align:center; vertical-align:middle; ">- Lt IHD</caption>
- <textarea id="textarea52" ref="/root/main/examform/ptcs/find1contnt3" style="left:185px; top:254px; width:720px; height:25px; ">
- <script type="javascript" ev:event="ondblclick">
- <![CDATA[
- fOpenExcel(textarea52, srchfind1contnt35, "PTCS_CHOLEDOCHOSCOPIC FINDINGS_3",model.getValue("/root/send/check/permission"));
- model.setfocus("textarea54", true);
- ]]>
- </script>
- </textarea>
- <caption id="caption99" class="cell_1" style="left:48px; top:338px; width:135px; height:25px; text-align:center; vertical-align:middle; ">- Rt IHD</caption>
- <caption id="caption101" class="cell_1" style="left:48px; top:311px; width:135px; height:25px; text-align:center; vertical-align:middle; ">- CBD</caption>
- <caption id="caption102" class="cell_1" style="left:48px; top:366px; width:135px; height:25px; text-align:center; vertical-align:middle; ">- Lt IHD</caption>
- <textarea id="textarea53" ref="/root/main/examform/ptcs/find2contnt2" style="left:185px; top:338px; width:720px; height:25px; ">
- <script type="javascript" ev:event="ondblclick">
- <![CDATA[
- fOpenExcel(textarea53, srchfind2contnt25, "PTCS_CHOLANGIOGRAPHIC FINDINGS_2",model.getValue("/root/send/check/permission"));
- model.setfocus("textarea55", true);
- ]]>
- </script>
- </textarea>
- <textarea id="textarea54" ref="/root/main/examform/ptcs/find2contnt1" style="left:185px; top:311px; width:720px; height:25px; ">
- <script type="javascript" ev:event="ondblclick">
- <![CDATA[
- fOpenExcel(textarea54, srchfind2contnt15, "PTCS_CHOLANGIOGRAPHIC FINDINGS_1",model.getValue("/root/send/check/permission"));
- model.setfocus("textarea53", true);
- ]]>
- </script>
- </textarea>
- <textarea id="textarea55" ref="/root/main/examform/ptcs/find2contnt3" style="left:185px; top:366px; width:720px; height:25px; ">
- <script type="javascript" ev:event="ondblclick">
- <![CDATA[
- fOpenExcel(textarea55, srchfind2contnt35, "PTCS_CHOLANGIOGRAPHIC FINDINGS_3",model.getValue("/root/send/check/permission"));
- model.setfocus("textarea56", true);
- ]]>
- </script>
- </textarea>
- <line id="line16" class="line_3" style="x1:3px; y1:172px; x2:906px; y2:172px; "/>
- <textarea id="textarea56" ref="/root/main/examform/ptcs/therap" style="left:184px; top:396px; width:720px; height:38px; ">
- <script type="javascript" ev:event="ondblclick">
- <![CDATA[
- fOpenExcel(textarea56, srchtherap5, "PTCS_THERAPEUTIC PROCEDURE",model.getValue("/root/send/check/permission"));
- model.setfocus("textarea57", true);
- ]]>
- </script>
- </textarea>
- <caption id="caption103" class="cell_1" style="left:3px; top:396px; width:180px; height:38px; text-align:center; vertical-align:middle; ">
- <![CDATA[THERAPEUTIC
- PROCEDURE]]>
- </caption>
- <textarea id="textarea57" ref="/root/main/examform/ptcs/diag1" style="left:185px; top:436px; width:720px; height:80px; ">
- <script type="javascript" ev:event="ondblclick">
- <![CDATA[
- fOpenExcel(textarea57, srchdiag15, "PTCS_DIAGNOSIS",model.getValue("/root/send/check/permission"));
- model.setfocus("textarea58", true);
- ]]>
- </script>
- </textarea>
- <caption id="caption104" class="cell_1" style="left:3px; top:436px; width:180px; height:80px; text-align:center; vertical-align:middle; ">PTCS DIAGNOSIS</caption>
- <line id="line17" class="line_3" style="x1:0px; y1:393px; x2:903px; y2:393px; "/>
- <caption id="caption105" style="left:289px; top:609px; width:30px; height:15px; ">M.D.</caption>
- <button id="button5" class="btn3_letter2" style="left:850px; top:604px; width:56px; height:22px; ">
- <caption>변경</caption>
- <script type="javascript" ev:event="onclick">
- <![CDATA[
- ptcs_workdd.disabled = false ;
- ]]>
- </script>
- </button>
- <caption id="caption106" style="left:420px; top:609px; width:30px; height:15px; ">M.D.</caption>
- <caption id="caption107" style="left:555px; top:609px; width:30px; height:15px; ">M.D.</caption>
- <caption id="caption108" class="cell_1" style="left:626px; top:604px; width:100px; height:19px; text-align:center; vertical-align:middle; ">작업일자</caption>
- <input id="ptcs_workdd" ref="/root/main/examform/ptcs/workdd" class="input_search" inputtype="date" style="left:731px; top:604px; width:110px; height:19px; "/>
- <select1 id="combo14" ref="/root/main/examform/ptcs/readdrid3" appearance="minimal" style="left:454px; top:604px; width:100px; height:19px; ">
- <choices>
- <itemset nodeset="/root/main/execuserlist/item0">
- <label ref="usernm"/>
- <value ref="userid"/>
- </itemset>
- </choices>
- </select1>
- <caption id="caption109" class="cell_1" style="left:3px; top:604px; width:180px; height:19px; text-align:center; vertical-align:middle; ">ENDOSCOPIST</caption>
- <select1 id="combo15" ref="/root/main/examform/ptcs/readdrid1" appearance="minimal" style="left:185px; top:604px; width:100px; height:19px; ">
- <choices>
- <itemset nodeset="/root/main/execuserlist/item1">
- <label ref="usernm"/>
- <value ref="userid"/>
- </itemset>
- </choices>
- </select1>
- <select1 id="combo16" ref="/root/main/examform/ptcs/readdrid2" appearance="minimal" style="left:318px; top:604px; width:100px; height:19px; ">
- <choices>
- <itemset nodeset="/root/main/execuserlist/item0">
- <label ref="usernm"/>
- <value ref="userid"/>
- </itemset>
- </choices>
- </select1>
- <caption id="caption110" class="cell_1" style="left:3px; top:519px; width:180px; height:28px; text-align:center; vertical-align:middle; ">
- <![CDATA[PROCEDURE-RELATED
- COMPLICATION]]>
- </caption>
- <textarea id="textarea58" ref="/root/main/examform/ptcs/complic" style="left:185px; top:519px; width:720px; height:28px; ">
- <script type="javascript" ev:event="ondblclick">
- <![CDATA[
- fOpenExcel(textarea58, srchcomplic5, "PROCEDURE-RELATED COMPLICATION",model.getValue("/root/send/check/permission"));
- model.setfocus("input26", true);
- ]]>
- </script>
- </textarea>
- <input id="input26" ref="/root/main/examform/ptcs/recommend" class="input_search" style="left:185px; top:561px; width:290; height:19px; ">
- <script type="javascript" ev:event="ondblclick">
- <![CDATA[
- fOpenExcel(input26, srchrecommend5, "RECOMMEND",model.getValue("/root/send/check/permission"));
- model.setfocus("input27", true);
- ]]>
- </script>
- </input>
- <caption id="caption111" class="cell_1" style="left:493px; top:561px; width:100px; height:19px; text-align:center; vertical-align:middle; ">REMARK</caption>
- <input id="input27" ref="/root/main/examform/ptcs/remark" class="input_search" style="left:597px; top:561px; width:305; height:19px; ">
- <script type="javascript" ev:event="ondblclick">
- <![CDATA[
- fOpenExcel(input27, srchremark5, "REMARK",model.getValue("/root/send/check/permission"));
- model.setfocus("combo15", true);
- ]]>
- </script>
- </input>
- <caption id="caption112" class="cell_1" style="left:3px; top:561px; width:180px; height:19px; text-align:center; vertical-align:middle; ">
- <![CDATA[RECOMMEND & FOLLOW-UP]]>
- </caption>
- <textarea id="srchreason5" ref="/root/main/examform/ptcs/srchreason" visibility="hidden" style="left:795px; top:5px; width:85px; height:38px; "/>
- <textarea id="srchdrug5" ref="/root/main/examform/ptcs/srchdrug" visibility="hidden" style="left:700px; top:30px; width:85px; height:38px; "/>
- <textarea id="srchmedic5" ref="/root/main/examform/ptcs/srchmedic" visibility="hidden" style="left:805px; top:70px; width:85px; height:38px; "/>
- <textarea id="srchprocedure5" ref="/root/main/examform/ptcs/srchprocedure" visibility="hidden" style="left:700px; top:145px; width:85px; height:38px; "/>
- <textarea id="srchfind1contnt15" ref="/root/main/examform/ptcs/srchfind1contnt1" visibility="hidden" style="left:705px; top:200px; width:85px; height:38px; "/>
- <textarea id="srchfind1contnt25" ref="/root/main/examform/ptcs/srchfind1contnt2" visibility="hidden" style="left:610px; top:230px; width:85px; height:38px; "/>
- <textarea id="srchfind1contnt35" ref="/root/main/examform/ptcs/srchfind1contnt3" visibility="hidden" style="left:705px; top:260px; width:85px; height:38px; "/>
- <textarea id="srchfind2contnt15" ref="/root/main/examform/ptcs/srchfind2contnt1" visibility="hidden" style="left:700px; top:310px; width:85px; height:38px; "/>
- <textarea id="srchfind2contnt25" ref="/root/main/examform/ptcs/srchfind2contnt2" visibility="hidden" style="left:600px; top:335px; width:85px; height:38px; "/>
- <textarea id="srchfind2contnt35" ref="/root/main/examform/ptcs/srchfind2contnt3" visibility="hidden" style="left:700px; top:350px; width:85px; height:38px; "/>
- <textarea id="srchtherap5" ref="/root/main/examform/ptcs/srchtherap" visibility="hidden" style="left:705px; top:400px; width:85px; height:38px; "/>
- <textarea id="srchdiag15" ref="/root/main/examform/ptcs/srchdiag1" visibility="hidden" style="left:700px; top:450px; width:85px; height:38px; "/>
- <textarea id="srchcomplic5" ref="/root/main/examform/ptcs/srchcomplic" visibility="hidden" style="left:700px; top:505px; width:85px; height:38px; "/>
- <textarea id="srchrecommend5" ref="/root/main/examform/ptcs/srchrecommend" visibility="hidden" style="left:380px; top:555px; width:85px; height:38px; "/>
- <textarea id="srchremark5" ref="/root/main/examform/ptcs/srchremark" visibility="hidden" style="left:795px; top:550px; width:85px; height:38px; "/>
- <select id="checkbox11" ref="/root/main/examform/ptcs/esdemryn" class="checkbox_search" visibility="hidden" overflow="hidden" appearance="full" checkvalue="Y,N" style="left:770px; top:120px; width:91px; height:20px; border-style:none; ">
- <choices>
- <item>
- <label>ESD or EMR</label>
- <value>Y</value>
- </item>
- </choices>
- </select>
- <select id="checkbox12" ref="/root/main/examform/ptcs/cultureyn" class="checkbox_search" overflow="visible" appearance="full" checkvalue="Y,N" style="left:324px; top:93px; width:101px; height:20px; border-style:none; ">
- <choices>
- <item>
- <label>Bile Culture</label>
- <value>Y</value>
- </item>
- </choices>
- </select>
- <select id="checkbox20" ref="/root/main/examform/ptcs/ampullectomyyn" class="checkbox_search" visibility="hidden" overflow="hidden" appearance="full" checkvalue="Y,N" style="left:665px; top:120px; width:106px; height:20px; border-style:none; ">
- <choices>
- <item>
- <label>Ampullectomy</label>
- <value>Y</value>
- </item>
- </choices>
- </select>
- <select id="checkbox30" ref="/root/main/examform/ptcs/cytologyyn" class="checkbox_search" overflow="visible" appearance="full" checkvalue="Y,N" style="left:565px; top:120px; width:75px; height:20px; border-style:none; ">
- <choices>
- <item>
- <label>Cytology</label>
- <value>Y</value>
- </item>
- </choices>
- </select>
- <shape id="roundrect7" class="roundrect_example" appearance="roundrect" style="left:313px; top:114px; width:347px; height:30px; "/>
- <caption id="caption148" class="cell_1" style="left:3px; top:288px; width:188px; height:20px; text-align:center; vertical-align:middle; ">CHOLANGIOGRAPHIC FINDINGS</caption>
- <caption id="caption100" class="cell_1" style="left:3px; top:177px; width:188px; height:20px; text-align:center; vertical-align:middle; ">CHOLEDOCHOSCPIC FINDINGS</caption>
- <caption id="caption96" class="cell_1" style="left:3px; top:311px; width:43px; height:79px; text-align:right; vertical-align:middle; "/>
- <caption id="caption149" class="cell_1" style="left:3px; top:199px; width:43px; height:79px; text-align:right; vertical-align:middle; "/>
- <line id="line2" class="line_3" style="x1:0px; y1:281px; x2:903px; y2:281px; "/>
- <caption id="caption174" class="cell_1" style="left:202px; top:119px; width:103px; height:20px; ">Tissue Sampling</caption>
- </case>
- <case id="case9" style="left:0px; top:0px; width:990px; height:655px; ">
- <caption id="caption113" class="cell_1" style="left:3px; top:94px; width:180px; height:77px; text-align:center; vertical-align:middle; ">PROCEDURE</caption>
- <select id="checkbox48" ref="/root/main/examform/eus/biopsytn" class="checkbox_search" overflow="visible" appearance="full" checkvalue="Y,N" style="left:322px; top:118px; width:95px; height:20px; border-style:none; ">
- <choices>
- <item>
- <label>Forcep Biopsy</label>
- <value>Y</value>
- </item>
- </choices>
- </select>
- <caption id="caption114" class="cell_1" style="left:3px; top:3px; width:180; height:19; text-align:center; vertical-align:middle; ">REASONS FOR EUS</caption>
- <textarea id="textarea59" ref="/root/main/examform/eus/procedure" style="left:185px; top:146px; width:720; height:23px; ">
- <script type="javascript" ev:event="ondblclick">
- <![CDATA[
- fOpenExcel(textarea59, srchprocedure6, "EUS_PROCEDURE",model.getValue("/root/send/check/permission"));
- model.setfocus("textarea61", true);
- ]]>
- </script>
- </textarea>
- <caption id="caption115" class="cell_1" style="left:3px; top:25px; width:180px; height:38px; text-align:center; vertical-align:middle; ">DRUG HISTORY</caption>
- <select id="checkbox59" ref="/root/main/examform/eus/aspirationyn" class="checkbox_search" overflow="visible" appearance="full" checkvalue="Y,N" style="left:500px; top:118px; width:101px; height:20px; border-style:none; ">
- <choices>
- <item>
- <label>Aspiration</label>
- <value>Y</value>
- </item>
- </choices>
- </select>
- <textarea id="textarea60" ref="/root/main/examform/eus/drug" style="left:185px; top:25px; width:720; height:38px; ">
- <script type="javascript" ev:event="ondblclick">
- <![CDATA[
- fOpenExcel(textarea60, srchdrug6, "DRUG",model.getValue("/root/send/check/permission"));
- model.setfocus("input29", true);
- ]]>
- </script>
- </textarea>
- <select id="checkbox62" ref="/root/main/examform/eus/sleepyn" overflow="visible" appearance="full" checkvalue="Y,N" style="left:185px; top:65px; width:65px; height:20px; border-style:none; ">
- <choices>
- <item>
- <label>수 면</label>
- <value>Y</value>
- </item>
- </choices>
- </select>
- <input id="input28" ref="/root/main/examform/eus/reason" class="input_search" style="left:185px; top:3px; width:720; height:19px; ">
- <script type="javascript" ev:event="ondblclick">
- <![CDATA[
- fOpenExcel(input28, srchreason6, "EUS_REASON",model.getValue("/root/send/check/permission"));
- model.setfocus("textarea60", true);
- ]]>
- </script>
- </input>
- <input id="input29" ref="/root/main/examform/eus/medic" class="input_search" style="left:256px; top:65px; width:650px; height:19px; ">
- <script type="javascript" ev:event="ondblclick">
- <![CDATA[
- fOpenExcel(input29, srchmedic6, "EUS_PREMEDICATION",model.getValue("/root/send/check/permission"));
- model.setfocus("textarea59", true);
- ]]>
- </script>
- </input>
- <select id="checkbox63" ref="/root/main/examform/eus/video" class="checkbox_search" overflow="visible" appearance="full" checkvalue="Y,N" style="left:244px; top:92px; width:70px; height:20px; border-style:none; ">
- <choices>
- <item>
- <label>Video</label>
- <value>Y</value>
- </item>
- </choices>
- </select>
- <select id="checkbox64" ref="/root/main/examform/eus/pacsyn" class="checkbox_search" overflow="visible" appearance="full" checkvalue="Y,N" style="left:185px; top:92px; width:55px; height:20px; border-style:none; ">
- <choices>
- <item>
- <label>PACS</label>
- <value>Y</value>
- </item>
- </choices>
- </select>
- <select id="checkbox66" ref="/root/main/examform/eus/cytologyyn" class="checkbox_search" overflow="visible" appearance="full" checkvalue="Y,N" style="left:419px; top:118px; width:75px; height:20px; border-style:none; ">
- <choices>
- <item>
- <label>Cytology</label>
- <value>Y</value>
- </item>
- </choices>
- </select>
- <caption id="caption116" class="cell_1" style="left:3px; top:66px; width:180px; height:25px; text-align:center; vertical-align:middle; ">MEDICATION</caption>
- <textarea id="textarea61" ref="/root/main/examform/eus/find1contnt1" style="left:185px; top:173px; width:720px; height:50; ">
- <script type="javascript" ev:event="ondblclick">
- <![CDATA[
- fOpenExcel(textarea61, srchfind1contnt16, "EUS_ENDOSCOPIC FINDINGS",model.getValue("/root/send/check/permission"));
- model.setfocus("textarea63", true);
- ]]>
- </script>
- </textarea>
- <caption id="caption117" class="cell_1" style="left:4px; top:174px; width:180px; height:50; text-align:center; vertical-align:middle; ">ENDOSCOPIC FINDINGS</caption>
- <textarea id="textarea62" ref="/root/main/examform/eus/find2contnt2" style="left:185px; top:336px; width:720px; height:82px; ">
- <script type="javascript" ev:event="ondblclick">
- <![CDATA[
- fOpenExcel(textarea62, srchfind2contnt26, "EUS_ENDOSONOGRAPHIC FINDINGS_2",model.getValue("/root/send/check/permission"));
- model.setfocus("textarea64", true);
- ]]>
- </script>
- </textarea>
- <caption id="caption118" class="cell_1" style="left:48px; top:335px; width:135px; height:82px; text-align:left; vertical-align:middle; ">-EUS FINDINGS</caption>
- <textarea id="textarea63" ref="/root/main/examform/eus/find2contnt1" style="left:185px; top:252px; width:720px; height:82; ">
- <script type="javascript" ev:event="ondblclick">
- <![CDATA[
- fOpenExcel(textarea63, srchfind2contnt16, "EUS_ENDOSONOGRAPHIC FINDINGS_1",model.getValue("/root/send/check/permission"));
- model.setfocus("textarea62", true);
- ]]>
- </script>
- </textarea>
- <line id="line19" class="line_3" style="x1:0px; y1:421px; x2:908px; y2:421px; "/>
- <caption id="caption120" class="cell_1" style="left:48px; top:252px; width:135px; height:82; text-align:left; vertical-align:middle; ">-EUS PROCEDURE</caption>
- <line id="line21" class="line_3" style="x1:0px; y1:227px; x2:908px; y2:227px; "/>
- <caption id="caption121" class="cell_1" style="left:3px; top:424px; width:180px; height:50; text-align:center; vertical-align:middle; ">EUS THERAPEUTIC</caption>
- <textarea id="textarea64" ref="/root/main/examform/eus/therap" style="left:186px; top:425px; width:720px; height:50px; ">
- <script type="javascript" ev:event="ondblclick">
- <![CDATA[
- fOpenExcel(textarea64, srchtherap6, "EUS_THERAPEUTIC",model.getValue("/root/send/check/permission"));
- model.setfocus("textarea65", true);
- ]]>
- </script>
- </textarea>
- <textarea id="textarea65" ref="/root/main/examform/eus/diag1" style="left:185px; top:477px; width:720px; height:50px; ">
- <script type="javascript" ev:event="ondblclick">
- <![CDATA[
- fOpenExcel(textarea65, srchdiag16, "EUS_IMPRESSION",model.getValue("/root/send/check/permission"));
- model.setfocus("textarea66", true);
- ]]>
- </script>
- </textarea>
- <caption id="caption122" class="cell_1" style="left:3px; top:477px; width:180px; height:50px; text-align:center; vertical-align:middle; ">EUS IMPRESSION</caption>
- <textarea id="textarea66" ref="/root/main/examform/eus/complic" style="left:186px; top:530px; width:720px; height:28px; ">
- <script type="javascript" ev:event="ondblclick">
- <![CDATA[
- fOpenExcel(textarea66, srchcomplic6, "PROCEDURE-RELATED COMPLICATION",model.getValue("/root/send/check/permission"));
- model.setfocus("input33", true);
- ]]>
- </script>
- </textarea>
- <caption id="caption123" class="cell_1" style="left:3px; top:530px; width:180px; height:28px; text-align:center; vertical-align:middle; ">
- <![CDATA[PROCEDURE-RELATED
- COMPLICATION]]>
- </caption>
- <select1 id="combo17" ref="/root/main/examform/eus/readdrid2" appearance="minimal" style="left:318px; top:604px; width:100px; height:19px; ">
- <choices>
- <itemset nodeset="/root/main/execuserlist/item0">
- <label ref="usernm"/>
- <value ref="userid"/>
- </itemset>
- </choices>
- </select1>
- <caption id="caption124" style="left:289px; top:609px; width:30px; height:15px; ">M.D.</caption>
- <caption id="caption125" style="left:420px; top:609px; width:30px; height:15px; ">M.D.</caption>
- <caption id="caption126" style="left:555px; top:609px; width:30px; height:15px; ">M.D.</caption>
- <button id="eus_workdd" class="btn3_letter2" style="left:850px; top:604px; width:56px; height:22px; ">
- <caption>변경</caption>
- <script type="javascript" ev:event="onclick">
- <![CDATA[
- input30.disabled = false ;
- ]]>
- </script>
- </button>
- <caption id="caption127" class="cell_1" style="left:626px; top:604px; width:100px; height:19px; text-align:center; vertical-align:middle; ">작업일자</caption>
- <caption id="caption128" class="cell_1" style="left:3px; top:604px; width:180px; height:19px; text-align:center; vertical-align:middle; ">ENDOSCOPIST</caption>
- <input id="input5" ref="/root/main/examform/eus/workdd" class="input_search" inputtype="date" style="left:731px; top:604px; width:110px; height:19px; "/>
- <input id="input31" ref="/root/main/examform/eus/recommend" class="input_search" style="left:185px; top:561px; width:290; height:19px; "/>
- <input id="input32" ref="/root/main/examform/eus/remark" class="input_search" style="left:597px; top:561px; width:305; height:19px; ">
- <script type="javascript" ev:event="ondblclick">
- <![CDATA[
- fOpenExcel(input32, srchremark6, "REMARK",model.getValue("/root/send/check/permission"));
- model.setfocus("combo19", true);
- ]]>
- </script>
- </input>
- <select1 id="combo18" ref="/root/main/examform/eus/readdrid3" appearance="minimal" style="left:454px; top:604px; width:100px; height:19px; ">
- <choices>
- <itemset nodeset="/root/main/execuserlist/item0">
- <label ref="usernm"/>
- <value ref="userid"/>
- </itemset>
- </choices>
- </select1>
- <caption id="caption129" class="cell_1" style="left:493px; top:561px; width:100px; height:19px; text-align:center; vertical-align:middle; ">REMARK</caption>
- <select1 id="combo19" ref="/root/main/examform/eus/readdrid1" appearance="minimal" style="left:185px; top:604px; width:100px; height:19px; ">
- <choices>
- <itemset nodeset="/root/main/execuserlist/item1">
- <label ref="usernm"/>
- <value ref="userid"/>
- </itemset>
- </choices>
- </select1>
- <caption id="caption130" class="cell_1" style="left:3px; top:561px; width:180px; height:19px; text-align:center; vertical-align:middle; ">
- <![CDATA[RECOMMEND & FOLLOW-UP]]>
- </caption>
- <input id="input33" ref="/root/main/examform/eus/recommend" class="input_search" style="left:185px; top:561px; width:290; height:19px; ">
- <script type="javascript" ev:event="ondblclick">
- <![CDATA[
- fOpenExcel(input33, srchrecommend6, "RECOMMEND",model.getValue("/root/send/check/permission"));
- model.setfocus("input32", true);
- ]]>
- </script>
- </input>
- <caption id="caption136" class="cell_1" style="left:493px; top:561px; width:100px; height:19px; text-align:center; vertical-align:middle; ">REMARK</caption>
- <caption id="caption137" class="cell_1" style="left:3px; top:561px; width:180px; height:19px; text-align:center; vertical-align:middle; ">
- <![CDATA[RECOMMEND & FOLLOW-UP]]>
- </caption>
- <textarea id="srchreason6" ref="/root/main/examform/eus/srchreason" visibility="hidden" style="left:690px; top:5px; width:85px; height:38px; "/>
- <textarea id="srchdrug6" ref="/root/main/examform/eus/srchdrug" visibility="hidden" style="left:795px; top:10px; width:85px; height:38px; "/>
- <textarea id="srchmedic6" ref="/root/main/examform/eus/srchmedic" visibility="hidden" style="left:710px; top:70px; width:85px; height:38px; "/>
- <textarea id="srchprocedure6" ref="/root/main/examform/eus/srchprocedure" visibility="hidden" style="left:650px; top:155px; width:85px; height:38px; "/>
- <textarea id="srchfind1contnt16" ref="/root/main/examform/eus/srchfind1contnt1" visibility="hidden" style="left:770px; top:190px; width:85px; height:38px; "/>
- <textarea id="srchfind2contnt16" ref="/root/main/examform/eus/srchfind2contnt1" visibility="hidden" style="left:775px; top:275px; width:85px; height:38px; "/>
- <textarea id="srchfind2contnt26" ref="/root/main/examform/eus/srchfind2contnt2" visibility="hidden" style="left:775px; top:315px; width:85px; height:38px; "/>
- <textarea id="srchtherap6" ref="/root/main/examform/eus/srchtherap" visibility="hidden" style="left:775px; top:390px; width:85px; height:38px; "/>
- <textarea id="srchcomplic6" ref="/root/main/examform/eus/srchcomplic" visibility="hidden" style="left:770px; top:505px; width:85px; height:38px; "/>
- <textarea id="srchdiag16" ref="/root/main/examform/eus/srchdiag1" visibility="hidden" style="left:775px; top:450px; width:85px; height:38px; "/>
- <textarea id="srchremark6" ref="/root/main/examform/eus/srchremark" visibility="hidden" style="left:775px; top:570px; width:85px; height:38px; "/>
- <textarea id="srchrecommend6" ref="/root/main/examform/eus/srchrecommend" visibility="hidden" style="left:380px; top:540px; width:85px; height:38px; "/>
- <shape id="roundrect8" class="roundrect_example" appearance="roundrect" style="left:309px; top:112px; width:406px; height:30px; "/>
- <select id="checkbox31" ref="/root/main/examform/eus/cloyn" class="checkbox_search" overflow="visible" appearance="full" checkvalue="Y,N" style="left:608px; top:118px; width:101px; height:20px; border-style:none; ">
- <choices>
- <item>
- <label>CLO Test</label>
- <value>Y</value>
- </item>
- </choices>
- </select>
- <caption id="caption147" class="cell_1" style="left:3px; top:231px; width:185px; height:19px; text-align:center; vertical-align:middle; ">ENDOSONOGRAPHIC FINDINGS</caption>
- <caption id="caption119" class="cell_1" style="left:3px; top:252px; width:43px; height:168px; text-align:right; vertical-align:middle; "/>
- <caption id="caption175" class="cell_1" style="left:200px; top:117px; width:103px; height:20px; ">Tissue Sampling</caption>
- </case>
- <case id="case10">
- <caption id="caption131" class="cell_1" style="left:3px; top:3px; width:180; height:100; text-align:center; vertical-align:middle; ">REASONS FOR LIVER BIOPSY</caption>
- <caption id="caption132" class="cell_1" style="left:3px; top:108px; width:180px; height:100px; text-align:center; vertical-align:middle; ">DRUG HISTORY</caption>
- <textarea id="textarea67" ref="/root/main/examform/lb/reason" style="left:185px; top:3px; width:720px; height:100; ">
- <script type="javascript" ev:event="ondblclick">
- <![CDATA[
- fOpenExcel(textarea67, srchreason7, "LB_REASON",model.getValue("/root/send/check/permission"));
- model.setfocus("textarea68", true);
- ]]>
- </script>
- </textarea>
- <textarea id="textarea68" ref="/root/main/examform/lb/drug" style="left:185px; top:108px; width:720px; height:100px; ">
- <script type="javascript" ev:event="ondblclick">
- <![CDATA[
- fOpenExcel(textarea68, srchdrug7, "LB_DRUG",model.getValue("/root/send/check/permission"));
- model.setfocus("textarea69", true);
- ]]>
- </script>
- </textarea>
- <textarea id="textarea69" ref="/root/main/examform/lb/medic" style="left:185px; top:215px; width:720px; height:100px; ">
- <script type="javascript" ev:event="ondblclick">
- <![CDATA[
- fOpenExcel(textarea69, srchmedic7, "LB_PREMEDICATION",model.getValue("/root/send/check/permission"));
- model.setfocus("textarea70", true);
- ]]>
- </script>
- </textarea>
- <caption id="caption133" class="cell_1" style="left:3px; top:212px; width:180px; height:100px; text-align:center; vertical-align:middle; ">PREMEDICATION</caption>
- <textarea id="textarea70" ref="/root/main/examform/lb/procedure" style="left:185px; top:316px; width:720px; height:85; ">
- <script type="javascript" ev:event="ondblclick">
- <![CDATA[
- fOpenExcel(textarea70, srchprocedure7, "LB_PROCEDURE",model.getValue("/root/send/check/permission"));
- model.setfocus("textarea3", true);
- ]]>
- </script>
- </textarea>
- <caption id="caption134" class="cell_1" style="left:3px; top:316px; width:180px; height:85; text-align:center; vertical-align:middle; ">PROCEDURE</caption>
- <textarea id="textarea71" ref="/root/main/examform/lb/complic" style="left:185px; top:505px; width:720px; height:30px; ">
- <script type="javascript" ev:event="ondblclick">
- <![CDATA[
- fOpenExcel(textarea71, srchcomplic7, "PROCEDURE-RELATED COMPLICATION",model.getValue("/root/send/check/permission"));
- model.setfocus("input35", true);
- ]]>
- </script>
- </textarea>
- <caption id="caption135" class="cell_1" style="left:3px; top:506px; width:180px; height:28px; text-align:center; vertical-align:middle; ">
- <![CDATA[PROCEDURE-RELATED
- COMPLICATION]]>
- </caption>
- <caption id="caption138" class="cell_1" style="left:493px; top:561px; width:100px; height:19px; text-align:center; vertical-align:middle; ">REMARK</caption>
- <caption id="caption139" class="cell_1" style="left:3px; top:561px; width:180px; height:19px; text-align:center; vertical-align:middle; ">
- <![CDATA[RECOMMEND & FOLLOW-UP]]>
- </caption>
- <input id="input34" ref="/root/main/examform/lb/remark" class="input_search" style="left:597px; top:561px; width:305; height:19px; ">
- <script type="javascript" ev:event="ondblclick">
- <![CDATA[
- fOpenExcel(input34, srchremark7, "REMARK",model.getValue("/root/send/check/permission"));
- model.setfocus("combo22", true);
- ]]>
- </script>
- </input>
- <input id="input35" ref="/root/main/examform/lb/recommend" class="input_search" style="left:185px; top:561px; width:290; height:19px; ">
- <script type="javascript" ev:event="ondblclick">
- <![CDATA[
- fOpenExcel(input35, srchrecommend7, "RECOMMEND",model.getValue("/root/send/check/permission"));
- model.setfocus("input34", true);
- ]]>
- </script>
- </input>
- <caption id="caption140" style="left:289px; top:609px; width:30px; height:15px; ">M.D.</caption>
- <caption id="caption141" style="left:420px; top:609px; width:30px; height:15px; ">M.D.</caption>
- <select1 id="combo20" ref="/root/main/examform/lb/readdrid2" appearance="minimal" style="left:318px; top:604px; width:100px; height:19px; ">
- <choices>
- <itemset nodeset="/root/main/execuserlist/item0">
- <label ref="usernm"/>
- <value ref="userid"/>
- </itemset>
- </choices>
- </select1>
- <caption id="caption142" style="left:555px; top:609px; width:30px; height:15px; ">M.D.</caption>
- <select1 id="combo21" ref="/root/main/examform/lb/readdrid3" appearance="minimal" style="left:454px; top:604px; width:100px; height:19px; ">
- <choices>
- <itemset nodeset="/root/main/execuserlist/item0">
- <label ref="usernm"/>
- <value ref="userid"/>
- </itemset>
- </choices>
- </select1>
- <input id="lb_workdd" ref="/root/main/examform/lb/workdd" class="input_search" inputtype="date" style="left:731px; top:604px; width:110px; height:19px; "/>
- <caption id="caption143" class="cell_1" style="left:626px; top:604px; width:100px; height:19px; text-align:center; vertical-align:middle; ">작업일자</caption>
- <select1 id="combo22" ref="/root/main/examform/lb/readdrid1" appearance="minimal" style="left:185px; top:604px; width:100px; height:19px; ">
- <choices>
- <itemset nodeset="/root/main/execuserlist/item1">
- <label ref="usernm"/>
- <value ref="userid"/>
- </itemset>
- </choices>
- </select1>
- <caption id="caption144" class="cell_1" style="left:3px; top:604px; width:180px; height:19px; text-align:center; vertical-align:middle; ">OPERATOR</caption>
- <textarea id="srchreason7" ref="/root/main/examform/lb/srchreason" visibility="hidden" style="left:765px; top:30px; width:85px; height:38px; "/>
- <textarea id="srchdrug7" ref="/root/main/examform/lb/srchdrug" visibility="hidden" style="left:775px; top:145px; width:85px; height:38px; "/>
- <textarea id="srchmedic7" ref="/root/main/examform/lb/srchmedic" visibility="hidden" style="left:785px; top:245px; width:85px; height:38px; "/>
- <textarea id="srchprocedure7" ref="/root/main/examform/lb/srchprocedure" visibility="hidden" style="left:785px; top:340px; width:85px; height:38px; "/>
- <textarea id="srchcomplic7" ref="/root/main/examform/lb/srchcomplic" visibility="hidden" style="left:775px; top:475px; width:85px; height:38px; "/>
- <textarea id="srchremark7" ref="/root/main/examform/lb/srchremark" visibility="hidden" style="left:820px; top:530px; width:85px; height:38px; "/>
- <textarea id="srchrecommend7" ref="/root/main/examform/lb/srchrecommend" visibility="hidden" style="left:385px; top:535px; width:85px; height:38px; "/>
- <button id="button7" class="btn3_letter2" style="left:850px; top:604px; width:56px; height:22px; ">
- <caption>변경</caption>
- <script type="javascript" ev:event="onclick">
- <![CDATA[
- lb_workdd.disabled = false ;
- ]]>
- </script>
- </button>
- <caption id="caption177" class="cell_1" style="left:2px; top:404px; width:180px; height:94; text-align:center; vertical-align:middle; ">CLINICAL DIAGNOSIS</caption>
- <textarea id="textarea3" ref="/root/main/examform/lb/diag1" style="left:185px; top:405px; width:720px; height:94; ">
- <script type="javascript" ev:event="ondblclick">
- <![CDATA[
- fOpenExcel(textarea3, srchdiag17,"LB_REASON",model.getValue("/root/send/check/permission"));
- model.setfocus("textarea71", true);
- ]]>
- </script>
- </textarea>
- <textarea id="srchdiag17" ref="/root/main/examform/lb/srchdiag1" visibility="hidden" style="left:785px; top:395px; width:85px; height:38px; "/>
- </case>
- <case id="case11" style="left:0px; top:0px; width:910px; height:640px; ">
- <textarea id="textarea144" ref="/root/main/examform/rs/bowelprep" style="left:183px; top:95px; width:720px; height:38px; ">
- <script type="javascript" ev:event="ondblclick">
- <![CDATA[
- fOpenExcel(textarea144, srchbowelprep8, "BOWEL PREPARATION",model.getValue("/root/send/check/permission"));
- model.setfocus("textarea162", true);
- ]]>
- </script>
- </textarea>
- <textarea id="srchbowelprep8" ref="/root/main/examform/fs/bowelprep" visibility="hidden" style="left:660px; top:100px; width:85px; height:38px; "/>
- <select id="checkbox34" ref="/root/main/examform/rs/polypectyn" class="checkbox_search" overflow="visible" appearance="full" checkvalue="Y,N" style="left:315px; top:165px; width:95px; height:20px; border-style:none; ">
- <choices>
- <item>
- <label>Polypectomy</label>
- <value>Y</value>
- </item>
- </choices>
- </select>
- <caption id="caption73" class="cell_1" style="left:3px; top:218px; width:180px; height:38px; text-align:center; vertical-align:middle; ">DIGITAL RECTAL EXAM</caption>
- <textarea id="textarea145" ref="/root/main/examform/rs/find1contnt1" style="left:184px; top:260px; width:720px; height:65px; ">
- <script type="javascript" ev:event="ondblclick">
- <![CDATA[
- fOpenExcel(textarea145, srchfind1contnt18, "CF_ENDOSCOPIC FINDINGS",model.getValue("/root/send/check/permission"));
- model.setfocus("textarea154", true);
- ]]>
- </script>
- </textarea>
- <caption id="caption154" class="cell_1" style="left:3px; top:3px; width:180; height:19; text-align:center; vertical-align:middle; ">REASONS FOR EXAM</caption>
- <caption id="caption155" style="left:420px; top:609; width:30px; height:15px; ">M.D.</caption>
- <caption id="caption156" class="cell_1" style="left:3px; top:66px; width:180px; height:25px; text-align:center; vertical-align:middle; ">PREMEDICATION</caption>
- <select id="checkbox44" ref="/root/main/examform/rs/pacsyn" class="checkbox_search" overflow="visible" appearance="full" checkvalue="Y,N" style="left:185px; top:135px; width:65px; height:20px; border-style:none; ">
- <choices>
- <item>
- <label>PACS</label>
- <value>Y</value>
- </item>
- </choices>
- </select>
- <caption id="caption157" class="cell_1" style="left:5px; top:609; width:180px; height:19px; text-align:center; vertical-align:middle; ">ENDOSCOPIST</caption>
- <select id="checkbox54" ref="/root/main/examform/rs/video" class="checkbox_search" overflow="visible" appearance="full" checkvalue="Y,N" style="left:257px; top:135px; width:70px; height:20px; border-style:none; ">
- <choices>
- <item>
- <label>Video</label>
- <value>Y</value>
- </item>
- </choices>
- </select>
- <input id="input37" ref="/root/main/examform/rs/medic" class="input_search" style="left:256px; top:67px; width:650px; height:19px; ">
- <script type="javascript" ev:event="ondblclick">
- <![CDATA[
- fOpenExcel(input37, srchmedic8, "CF_PREMEDICATION",model.getValue("/root/send/check/permission"));
- model.setfocus("textarea144", true);
- ]]>
- </script>
- </input>
- <caption id="caption158" class="cell_1" style="left:1px; top:95px; width:180px; height:38px; text-align:center; vertical-align:middle; ">BOWEL PREPARATION</caption>
- <input id="rs_workdd" ref="/root/main/examform/rs/workdd" class="input_search" inputtype="date" style="left:730px; top:604; width:110px; height:19px; "/>
- <caption id="caption159" class="cell_1" style="left:3px; top:25px; width:180px; height:38px; text-align:center; vertical-align:middle; ">DRUG HISTORY</caption>
- <select id="checkbox57" ref="/root/main/examform/rs/sleepyn" overflow="visible" appearance="full" checkvalue="Y,N" style="left:185px; top:67px; width:65px; height:20px; border-style:none; ">
- <choices>
- <item>
- <label>수 면</label>
- <value>Y</value>
- </item>
- </choices>
- </select>
- <caption id="caption160" class="cell_1" style="left:3px; top:260px; width:180px; height:65px; text-align:center; vertical-align:middle; ">ENDOSCOPIC FINDINGS</caption>
- <textarea id="srchfind1contnt18" ref="/root/main/examform/fs/srchfind1contnt1" visibility="hidden" style="left:750px; top:270px; width:85px; height:38px; "/>
- <input id="input39" ref="/root/main/examform/rs/recommend" class="input_search" style="left:185px; top:561px; width:290; height:19px; ">
- <script type="javascript" ev:event="ondblclick">
- <![CDATA[
- fOpenExcel(input39, srchrecommend8, "RECOMMEND",model.getValue("/root/send/check/permission"));
- model.setfocus("input40", true);
- ]]>
- </script>
- </input>
- <caption id="caption161" style="left:560px; top:609; width:30px; height:15px; ">M.D.</caption>
- <select id="checkbox58" ref="/root/main/examform/egd/tissuesamplingyn" class="checkbox_search" visibility="hidden" overflow="visible" appearance="full" checkvalue="Y,N" style="left:545px; top:160px; width:122px; height:20px; border-style:none; ">
- <choices>
- <item>
- <label>Forcep Biopsy</label>
- <value>Y</value>
- </item>
- </choices>
- </select>
- <caption id="caption162" class="cell_1" style="left:3px; top:494px; width:180px; height:40px; text-align:center; vertical-align:middle; ">
- <![CDATA[PROCEDURE-RELATED
- COMPLICATION]]>
- </caption>
- <caption id="caption163" class="cell_1" style="left:3px; top:137px; width:180px; height:77px; text-align:center; vertical-align:middle; ">PROCEDURE</caption>
- <caption id="caption164" class="cell_1" style="left:626px; top:604px; width:100px; height:19px; text-align:center; vertical-align:middle; ">작업일자</caption>
- <select id="checkbox61" ref="/root/main/examform/rs/esdemryn" class="checkbox_search" overflow="visible" appearance="full" checkvalue="Y,N" style="left:425px; top:165px; width:91px; height:20px; border-style:none; ">
- <choices>
- <item>
- <label>ESD or EMR</label>
- <value>Y</value>
- </item>
- </choices>
- </select>
- <caption id="caption165" class="cell_1" style="left:493px; top:561px; width:100px; height:19px; text-align:center; vertical-align:middle; ">REMARK</caption>
- <caption id="caption166" class="cell_1" style="left:3px; top:330px; width:180px; height:65px; text-align:center; vertical-align:middle; ">
- <![CDATA[THERAPEUTIC
- PROCEDURE]]>
- </caption>
- <textarea id="srchmedic8" ref="/root/main/examform/fs/srchmedic" visibility="hidden" style="left:755px; top:100px; width:85px; height:38px; "/>
- <caption id="caption167" style="left:289px; top:609px; width:30px; height:15px; ">M.D.</caption>
- <textarea id="textarea152" ref="/root/main/examform/rs/complic" style="left:185px; top:493px; width:720px; height:40px; ">
- <script type="javascript" ev:event="ondblclick">
- <![CDATA[
- fOpenExcel(textarea152, srchcomplic8, "PROCEDURE-RELATED COMPLICATION",model.getValue("/root/send/check/permission"));
- model.setfocus("input39", true);
- ]]>
- </script>
- </textarea>
- <select1 id="combo23" ref="/root/main/examform/rs/readdrid1" appearance="minimal" style="left:190px; top:609; width:100px; height:19px; ">
- <choices>
- <itemset nodeset="/root/main/execuserlist/item1">
- <label ref="usernm"/>
- <value ref="userid"/>
- </itemset>
- </choices>
- </select1>
- <textarea id="textarea154" ref="/root/main/examform/rs/therap" style="left:185px; top:330px; width:720px; height:65px; ">
- <script type="javascript" ev:event="ondblclick">
- <![CDATA[
- fOpenExcel(textarea154, srchtherap8, "CF_THERAPEUTIC PROCEDURE",model.getValue("/root/send/check/permission"));
- model.setfocus("textarea156", true);
- ]]>
- </script>
- </textarea>
- <button id="button8" class="btn3_letter2" style="left:850px; top:604px; width:56px; height:22px; ">
- <caption>변경</caption>
- <script type="javascript" ev:event="onclick">
- <![CDATA[
- rs_workdd.disabled = false ;
- ]]>
- </script>
- </button>
- <textarea id="srchrecommend8" ref="/root/main/examform/fs/srchrecommend" visibility="hidden" style="left:390px; top:520px; width:85px; height:38px; "/>
- <select1 id="combo24" ref="/root/main/examform/rs/readdrid2" appearance="minimal" style="left:320px; top:609; width:100px; height:19px; ">
- <choices>
- <itemset nodeset="/root/main/execuserlist/item0">
- <label ref="usernm"/>
- <value ref="userid"/>
- </itemset>
- </choices>
- </select1>
- <textarea id="textarea156" ref="/root/main/examform/rs/diag1" style="left:185px; top:400px; width:720px; height:90px; ">
- <script type="javascript" ev:event="ondblclick">
- <![CDATA[
- fOpenExcel(textarea156, srchdiag18, "CF_ENDOSCOPIC DIAGNOSIS",model.getValue("/root/send/check/permission"));
- model.setfocus("textarea152", true);
- ]]>
- </script>
- </textarea>
- <input id="input40" ref="/root/main/examform/rs/remark" class="input_search" style="left:597px; top:561px; width:305; height:19px; ">
- <script type="javascript" ev:event="ondblclick">
- <![CDATA[
- fOpenExcel(input40, srchremark8, "REMARK",model.getValue("/root/send/check/permission"));
- model.setfocus("combo23", true);
- ]]>
- </script>
- </input>
- <textarea id="srchcomplic8" ref="/root/main/examform/fs/srchcomplic" visibility="hidden" style="left:705px; top:505px; width:85px; height:38px; "/>
- <select1 id="combo25" ref="/root/main/examform/rs/readdrid3" appearance="minimal" style="left:450px; top:609; width:100px; height:19px; ">
- <choices>
- <itemset nodeset="/root/main/execuserlist/item0">
- <label ref="usernm"/>
- <value ref="userid"/>
- </itemset>
- </choices>
- </select1>
- <select id="checkbox67" ref="/root/main/examform/rs/cytologyyn" class="checkbox_search" overflow="visible" appearance="full" checkvalue="Y,N" style="left:400px; top:135px; width:75px; height:20px; border-style:none; ">
- <choices>
- <item>
- <label>Cytology</label>
- <value>Y</value>
- </item>
- </choices>
- </select>
- <textarea id="textarea158" ref="/root/main/examform/rs/rectalexam" style="left:185px; top:218px; width:720px; height:38px; ">
- <script type="javascript" ev:event="ondblclick">
- <![CDATA[
- fOpenExcel(textarea158, srchrectalexam8, "CF_DIGITAL RECTAL EXAM",model.getValue("/root/send/check/permission"));
- model.setfocus("textarea145", true);
- ]]>
- </script>
- </textarea>
- <input id="input41" ref="/root/main/examform/rs/reason" class="input_search" style="left:185px; top:3px; width:720; height:19px; ">
- <script type="javascript" ev:event="ondblclick">
- <![CDATA[
- fOpenExcel(input41, srchreason8, "CF_REASON",model.getValue("/root/send/check/permission"));
- model.setfocus("textarea160", true);
- ]]>
- </script>
- </input>
- <textarea id="srchdiag18" ref="/root/main/examform/fs/srchdiag1" visibility="hidden" style="left:755px; top:415px; width:85px; height:38px; "/>
- <caption id="caption168" class="cell_1" style="left:3px; top:561px; width:180px; height:19px; text-align:center; vertical-align:middle; ">
- <![CDATA[RECOMMEND & FOLLOW-UP]]>
- </caption>
- <select id="checkbox68" ref="/root/main/examform/rs/samplingyn" class="checkbox_search" overflow="visible" appearance="full" checkvalue="Y,N" style="left:487px; top:135px; width:113px; height:20px; border-style:none; ">
- <choices>
- <item>
- <label>Stool Samping</label>
- <value>Y</value>
- </item>
- </choices>
- </select>
- <textarea id="textarea160" ref="/root/main/examform/rs/drug" style="left:185px; top:25px; width:720; height:38px; ">
- <script type="javascript" ev:event="ondblclick">
- <![CDATA[
- fOpenExcel(textarea160, srchdrug8, "DRUG",model.getValue("/root/send/check/permission"));
- model.setfocus("input37", true);
- ]]>
- </script>
- </textarea>
- <textarea id="srchtherap8" ref="/root/main/examform/fs/srchtherap" visibility="hidden" style="left:745px; top:340px; width:85px; height:38px; "/>
- <textarea id="textarea162" ref="/root/main/examform/rs/procedure" style="left:185px; top:189px; width:720px; height:23px; ">
- <script type="javascript" ev:event="ondblclick">
- <![CDATA[
- fOpenExcel(textarea162, srchprocedure8, "CF_PROCEDURE",model.getValue("/root/send/check/permission"));
- model.setfocus("textarea158", true);
- ]]>
- </script>
- </textarea>
- <select id="checkbox69" ref="/root/main/examform/rs/biopsytn" class="checkbox_search" overflow="visible" appearance="full" checkvalue="Y,N" style="left:330px; top:135px; width:65px; height:20px; border-style:none; ">
- <choices>
- <item>
- <label>Biopsy</label>
- <value>Y</value>
- </item>
- </choices>
- </select>
- <caption id="caption169" class="cell_1" style="left:3px; top:400px; width:180px; height:90px; text-align:center; vertical-align:middle; ">ENDOSCOPIC DIAGNOSIS</caption>
- <textarea id="srchreason8" ref="/root/main/examform/fs/srchreason" visibility="hidden" style="left:755px; top:10px; width:85px; height:38px; "/>
- <textarea id="srchprocedure8" ref="/root/main/examform/fs/srchprocedure" visibility="hidden" style="left:750px; top:170px; width:85px; height:38px; "/>
- <textarea id="srchrectalexam8" ref="/root/main/examform/fs/srchrectalexam" visibility="hidden" style="left:750px; top:215px; width:85px; height:38px; "/>
- <textarea id="srchremark8" ref="/root/main/examform/fs/srchremark" visibility="hidden" style="left:805px; top:545px; width:85px; height:38px; "/>
- <textarea id="srchdrug8" ref="/root/main/examform/fs/srchdrug" visibility="hidden" style="left:755px; top:55px; width:85px; height:38px; "/>
- <shape id="roundrect9" class="roundrect_example" appearance="roundrect" style="left:303px; top:158px; width:227px; height:30px; "/>
- <caption id="caption176" class="cell_1" style="left:191px; top:160px; width:103px; height:20px; ">Tissue Sampling</caption>
- </case>
- </switch>
- <button id="btn_fs" class="btn_sw" group="tab" style="left:427px; top:78px; width:70px; height:35px; ">
- <caption>FS</caption>
- <script type="javascript" ev:event="onclick">
- <![CDATA[
- model.toggle("case6");
- ]]>
- </script>
- </button>
- <button id="btn_lb" class="btn_sw" group="tab" style="left:707px; top:78px; width:70px; height:35px; ">
- <caption>LB</caption>
- <script type="javascript" ev:event="onclick">
- <![CDATA[
- model.toggle("case10");
- ]]>
- </script>
- </button>
- <button id="btn_eus" class="btn_sw" group="tab" style="left:637px; top:78px; width:70px; height:35px; ">
- <caption>EUS</caption>
- <script type="javascript" ev:event="onclick">
- <![CDATA[
- model.toggle("case9");
- ]]>
- </script>
- </button>
- <button id="btn_ptcs" class="btn_sw" group="tab" style="left:567px; top:78px; width:70px; height:35px; ">
- <caption>PTCS</caption>
- <script type="javascript" ev:event="onclick">
- <![CDATA[
- model.toggle("case8");
- ]]>
- </script>
- </button>
- <button id="btn_ercp" class="btn_sw" group="tab" style="left:497px; top:78px; width:70px; height:35px; ">
- <caption>ERCP</caption>
- <script type="javascript" ev:event="onclick">
- <![CDATA[
- model.toggle("case7");
- ]]>
- </script>
- </button>
- <line id="line1" class="line_1" style="x1:285px; y1:100px; x2:1190px; y2:99px; "/>
- <group id="group1" style="left:279px; top:22px; width:915px; height:53px; vertical-align:top; ">
- <shape id="roundrect1" appearance="roundrect" ellipsewidth="10" ellipseheight="10" style="left:1px; top:0px; width:914px; height:50px; background-color:#fffbf2; border-color:#ffd799; "/>
- <output id="output1" ref="/root/main/exambaseinfo/pid" class="output_fix" style="left:99px; top:5px; width:105px; height:19px; font-size:12pt; font-weight:bold; text-align:center; "/>
- <output id="output2" ref="/root/main/exambaseinfo/hngnm" class="output_fix" style="left:206px; top:5px; width:105px; height:19px; font-size:12pt; font-weight:bold; text-align:center; "/>
- <caption id="caption5" class="search_name" style="left:637px; top:5px; width:92px; height:17px; ">검사일자 :</caption>
- <output id="output3" ref="/root/main/exambaseinfo/excuexectodd" class="output_fix" format="yyyy-mm-dd" style="left:730px; top:5px; width:105px; height:19px; font-size:12pt; font-weight:bold; text-align:center; "/>
- <output id="output4" ref="/root/main/exambaseinfo/sex" class="output_fix" style="left:312px; top:5px; width:71px; height:19px; font-size:12pt; font-weight:bold; text-align:center; "/>
- <output id="output5" ref="/root/main/exambaseinfo/rrgstno" class="output_fix" style="left:385px; top:5px; width:198px; height:19px; font-size:12pt; font-weight:bold; text-align:center; "/>
- <output id="output7" ref="/root/main/exambaseinfo/ioflag1" class="output_fix" style="left:319px; top:27px; width:47px; height:19px; font-size:12pt; font-weight:bold; text-align:center; "/>
- <caption id="caption11" class="search_name" style="left:228px; top:29px; width:91px; height:17px; ">의뢰구분 :</caption>
- <caption id="caption12" class="search_name" style="left:399px; top:30px; width:91px; height:17px; ">의뢰의사 :</caption>
- <output id="output9" ref="/root/main/exambaseinfo/cnfmmannm" class="output_fix" style="left:704px; top:28px; width:110px; height:19px; font-size:12pt; font-weight:bold; text-align:center; "/>
- <caption id="caption13" class="search_name" style="left:610px; top:30px; width:91px; height:17px; ">판독의사 :</caption>
- <output id="output10" ref="/root/main/exambaseinfo/usernm" class="output_fix" style="left:490px; top:30px; width:95px; height:19px; font-size:12pt; font-weight:bold; text-align:center; "/>
- <caption id="caption16" class="search_name" style="left:12px; top:30px; width:91px; height:17px; ">의뢰과 :</caption>
- <output id="output6" ref="/root/main/exambaseinfo/depthngnm" class="output_fix" style="left:90px; top:30px; width:130px; height:19px; font-size:12pt; font-weight:bold; text-align:center; "/>
- </group>
- <caption id="caption1" class="search_name" style="left:289px; top:28px; width:91px; height:17px; ">환자정보 :</caption>
- <button id="btn_cls" class="btn1_letter2" navindex="40" style="left:1140px; top:745px; width:56px; height:22px; ">
- <caption>닫기</caption>
- <script type="javascript" ev:event="DOMActivate">
- <![CDATA[
- model.close();
- ]]>
- </script>
- </button>
- <button id="btn_preview" class="btn4_letter4" style="left:786px; top:745px; width:80px; height:22px; ">
- <caption>병리의뢰</caption>
- <script type="javascript" ev:event="onclick">
- <![CDATA[
- var pid = model.getValue("root/main/exambaseinfo/pid");
- if(pid == ""){
- messageBox("대상 환자를", "C002");
- return;
- }else{
- var xpath = fsetSeletedCase();
- fsetpatholno(xpath);
- }
- ]]>
- </script>
- </button>
- <button id="btn_save3" class="btn4_letter5" style="left:961px; top:745px; width:92px; height:22px; ">
- <caption>저장(인증)</caption>
- <script type="javascript" ev:event="DOMActivate">
- <![CDATA[
-
- var xpath = "";
-
- if(btn_egd.selected == true){
- xpath = "egd" ;
- }else if (btn_cf.selected == true){
- xpath = "cf" ;
- } else if (btn_fs.selected == true){
- xpath = "fs" ;
- } else if (btn_ercp.selected == true){
- xpath = "ercp" ;
- } else if (btn_ptcs.selected == true){
- xpath = "ptcs" ;
- } else if (btn_eus.selected == true){
- xpath = "eus" ;
- } else if (btn_lb.selected == true){
- xpath = "lb" ;
- } else if (btn_rs.selected == true){
- xpath = "rs" ;
- }
-
- if(model.getValue("root/main/exambaseinfo/pid") ==""){
- messageBox("환자를 먼저 선택 하십시요.", "E999", "");
- return false;
- }else if(model.getValue("root/main/examform/"+xpath+"/readdrid1") == "" && model.getValue("root/main/examform/"+xpath+"/readdrid2") == "" ) {
- messageBox("MD 는 반드시 입력 하셔야 합니다.", "E999", "");
- return false;
- }else if (model.getValue("root/main/examform/"+xpath+"/readdrid1") == "" ){
-
- model.setValue("root/main/examform/"+xpath+"/readdrid1", "-");
-
- }else if(model.getValue("root/main/examform/"+xpath+"/workdd") == "" ){
- messageBox("작업일자를 기입해 주세요.", "E999", "");
- return false;
- }else{
- fexecCert(xpath);
- }
- ]]>
- </script>
- </button>
- <button id="btn_del2" class="btn4_letter4" style="left:1056px; top:745px; width:80px; height:22px; ">
- <caption>확정삭제</caption>
- <script type="javascript" ev:event="onclick">
- <![CDATA[
- fexecCnclCert();
- ]]>
- </script>
- </button>
- <button id="btn_rs" class="btn_sw" group="tab" style="left:778px; top:77px; width:70px; height:22px; ">
- <caption>RS</caption>
- <script type="javascript" ev:event="onclick">
- <![CDATA[
- model.toggle("case11");
- ]]>
- </script>
- </button>
- <button id="button3" class="btn4_letter5" style="left:867px; top:745px; width:92px; height:22px; ">
- <caption>저장(임시)</caption>
- <script type="javascript" ev:event="DOMActivate">
- <![CDATA[
-
- var xpath = fsetSeletedCase();
-
- if(model.getValue("root/main/exambaseinfo/pid") ==""){
- messageBox("환자를 먼저 선택 하십시요.", "E999", "");
- return false;
- }else if(model.getValue("root/main/examform/"+xpath+"/readdrid1") == "" && model.getValue("root/main/examform/"+xpath+"/readdrid2") == "" ) {
- messageBox("MD 는 반드시 입력 하셔야 합니다.", "E999", "");
- return false;
- }else if (model.getValue("root/main/examform/"+xpath+"/readdrid1") == "" ){
-
- model.setValue("root/main/examform/"+xpath+"/readdrid1", "-");
-
- }else if(model.getValue("root/main/examform/"+xpath+"/workdd") == "" ){
- messageBox("작업일자를 기입해 주세요.", "E999", "");
- return false;
- }else {
- fselectKind(xpath);
- fmakeTempData(xpath);
- if(submit("TXAER15003",false)){
- messageBox("정상적으로 처리되었습니다", "E999", "");
- }
- }
- readFuncCheck();
- ]]>
- </script>
- </button>
- <button id="button10" class="btn1_letter3" style="left:715px; top:745px; width:68px; height:22px; ">
- <caption>PACS</caption>
- <script type="javascript" ev:event="DOMActivate">
- <![CDATA[
- var pid = model.getValue("root/main/exambaseinfo/pid");
- if(pid == ""){
- messageBox("대상 환자를", "C002");
- return;
- }else{
- zepfpacsPatientID(pid);
- }
- ]]>
- </script>
- </button>
- <button id="button9" class="btn1_letter6" style="left:607px; top:745px; width:104px; height:22px; ">
- <caption>통합검사결과</caption>
- <script type="javascript" ev:event="DOMActivate">
- <![CDATA[
- var pid = model.getValue("root/main/exambaseinfo/pid");
- if(pid == ""){
- messageBox("대상 환자를", "C002");
- return;
- }else{
- open("SMAER00800", "","","", "SMAER00800", "root/main/exambaseinfo/pid","/root/send/data/singdata/srchpid");
- }
- ]]>
- </script>
- </button>
- <button id="button11" class="btn1_letter6" style="left:501px; top:745px; width:104px; height:22px; ">
- <caption>통합기록조회</caption>
- <script type="javascript" ev:event="DOMActivate">
- <![CDATA[
- fTotalRprtSrch();
- ]]>
- </script>
- </button>
- <button id="button17" class="btn1_letter4" style="left:419px; top:745px; width:80px; height:22px; ">
- <caption>병리결과</caption>
- <script type="javascript" ev:event="DOMActivate">
- <![CDATA[
- var pid = model.getValue("root/main/exambaseinfo/pid");
-
- if (pid != "") {
- model.makevalue("/root/temp5/smaer00800/cond/srchdate1", getCurrentDate().toDate().getAddDate(-90,"D").getDateFormat("YYYYMMDD"));
- model.makevalue("/root/temp5/smaer00800/cond/srchdate2", getCurrentDate());
- model.makevalue("/root/temp5/smaer00800/cond/srchpid", pid);
- model.makevalue("/root/temp5/smaer00800/cond/wardcd", "");
- model.makevalue("/root/temp5/smaer00800/cond/roomcd", "");
- model.makevalue("/root/temp5/smaer00800/cond/listflag", "B");
- model.makevalue("/root/temp5/smaer00800/cond/deptcd", "");
- model.makevalue("/root/temp5/smaer00800/cond/drid", "");
- model.makevalue("/root/temp5/smaer00800/cond/chkcheck", "C");
- model.makevalue("/root/temp5/smaer00800/cond/chkcheck1", "");
- model.makevalue("/root/temp5/smaer00800/cond/chkcheck2", "");
- model.makevalue("/root/temp5/smaer00800/cond/chkcheck3", "C");
- model.makevalue("/root/temp5/smaer00800/cond/chkcheck4", "");
- model.makevalue("/root/temp5/smaer00800/cond/chkcheck5", "");
- model.makevalue("/root/temp5/smaer00800/cond/chkcheck6", "");
- model.makevalue("/root/temp5/smaer00800/cond/chkcheck7", "");
- model.makevalue("/root/temp5/smaer00800/cond/chkcheck8", "");
- model.makevalue("/root/temp5/smaer00800/cond/tabflag", "");
- model.makevalue("/root/temp5/smaer00800/cond/mdlcd", "");
- model.makevalue("/root/temp5/smaer00800/cond/examgubun", "");
- model.makevalue("/root/temp5/smaer00800/cond/srchflag", "B");
- model.makevalue("/root/temp5/smaer00800/cond/hlaflag", "N");
- model.makevalue("/root/temp5/smaer00800/cond/prntfrmflag", "");
-
- open("SMAER00800" ,"", "10", "10", "SMAER00800", "/root/temp5/smaer00800/cond", "/root/send/data/singdata", "", "");
- }else{
- open("SMAER00800" ,"", "10", "10", "SMAER00800", "", "", "", "");
- }
- //setParameter("SMAER00800_patprcp","Y");
- //open("SMAER00800" ,"", "10", "10", "SMAER00800", "/root/temp5/smaer00800/cond", "/root/send/data/singdata", "", "");
- //aezfTopMost("SMAER00800","", "10", "10","SMAER00800","/root/temp5/smaer00800/cond","/root/send/data/singdata", "", "");
- //alert("A");/*
- /* open("SMAER00800", "","","", "SMAER00800", "/root/main/subordlist/subordlist1/pid","/root/send/data/singdata/srchpid");
- var child = getChildWindow("SMAER00800");
- if(child != null){
- child.javascript.button19.dispatch("DOMActivate");
- }*/
-
- ]]>
- </script>
- </button>
- </xhtml:body>
- </xhtml:html>
|