123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126312731283129313031313132313331343135313631373138313931403141314231433144314531463147314831493150315131523153315431553156315731583159316031613162316331643165316631673168316931703171317231733174317531763177317831793180318131823183318431853186318731883189319031913192319331943195319631973198319932003201320232033204320532063207320832093210321132123213321432153216321732183219322032213222322332243225322632273228322932303231323232333234323532363237323832393240324132423243324432453246324732483249325032513252325332543255325632573258325932603261326232633264326532663267326832693270327132723273327432753276327732783279328032813282328332843285328632873288328932903291329232933294329532963297329832993300330133023303330433053306330733083309331033113312331333143315331633173318331933203321332233233324332533263327332833293330333133323333333433353336333733383339334033413342334333443345334633473348334933503351335233533354335533563357335833593360336133623363336433653366336733683369337033713372337333743375337633773378337933803381338233833384338533863387338833893390339133923393339433953396339733983399340034013402340334043405340634073408340934103411341234133414341534163417341834193420342134223423342434253426342734283429343034313432343334343435343634373438343934403441344234433444344534463447344834493450345134523453345434553456345734583459346034613462346334643465346634673468346934703471347234733474347534763477347834793480348134823483348434853486348734883489349034913492349334943495349634973498349935003501350235033504350535063507350835093510351135123513351435153516351735183519352035213522352335243525352635273528352935303531353235333534353535363537353835393540354135423543354435453546354735483549355035513552355335543555355635573558355935603561356235633564356535663567356835693570357135723573357435753576357735783579358035813582358335843585358635873588358935903591359235933594359535963597359835993600360136023603360436053606360736083609361036113612361336143615361636173618361936203621362236233624362536263627362836293630363136323633363436353636363736383639364036413642364336443645364636473648364936503651365236533654365536563657365836593660366136623663366436653666366736683669367036713672367336743675367636773678367936803681368236833684368536863687368836893690369136923693369436953696369736983699370037013702370337043705370637073708370937103711371237133714371537163717371837193720372137223723372437253726372737283729373037313732373337343735373637373738373937403741374237433744374537463747374837493750375137523753375437553756375737583759376037613762376337643765376637673768376937703771377237733774377537763777377837793780378137823783378437853786378737883789379037913792379337943795379637973798379938003801380238033804380538063807380838093810381138123813381438153816381738183819382038213822382338243825382638273828382938303831383238333834383538363837383838393840384138423843384438453846384738483849385038513852385338543855385638573858385938603861386238633864386538663867386838693870387138723873387438753876387738783879388038813882388338843885388638873888388938903891389238933894389538963897389838993900390139023903390439053906390739083909391039113912391339143915391639173918391939203921392239233924392539263927392839293930393139323933393439353936393739383939394039413942394339443945394639473948394939503951395239533954395539563957395839593960396139623963396439653966396739683969397039713972397339743975397639773978397939803981398239833984398539863987398839893990399139923993399439953996399739983999400040014002400340044005400640074008400940104011401240134014401540164017401840194020402140224023402440254026402740284029403040314032403340344035403640374038403940404041404240434044404540464047404840494050405140524053405440554056405740584059406040614062406340644065406640674068406940704071407240734074407540764077407840794080408140824083408440854086408740884089409040914092409340944095409640974098409941004101410241034104410541064107410841094110411141124113411441154116411741184119412041214122412341244125412641274128412941304131413241334134413541364137413841394140414141424143414441454146414741484149415041514152415341544155415641574158415941604161416241634164416541664167416841694170417141724173417441754176417741784179418041814182418341844185418641874188418941904191419241934194419541964197419841994200420142024203420442054206420742084209421042114212421342144215421642174218421942204221422242234224422542264227422842294230423142324233423442354236423742384239424042414242424342444245424642474248424942504251425242534254425542564257425842594260426142624263426442654266426742684269427042714272427342744275427642774278427942804281428242834284428542864287428842894290429142924293429442954296429742984299430043014302430343044305430643074308430943104311431243134314431543164317431843194320432143224323432443254326432743284329433043314332433343344335433643374338433943404341434243434344434543464347434843494350435143524353435443554356435743584359436043614362436343644365436643674368436943704371437243734374437543764377437843794380438143824383438443854386438743884389439043914392439343944395439643974398439944004401440244034404440544064407440844094410441144124413441444154416441744184419442044214422442344244425442644274428442944304431443244334434443544364437443844394440444144424443444444454446444744484449445044514452445344544455445644574458445944604461446244634464446544664467446844694470447144724473447444754476447744784479448044814482448344844485448644874488448944904491449244934494449544964497449844994500450145024503450445054506450745084509451045114512451345144515451645174518451945204521452245234524452545264527452845294530453145324533453445354536453745384539454045414542454345444545454645474548454945504551455245534554455545564557455845594560456145624563456445654566456745684569457045714572457345744575457645774578457945804581458245834584458545864587458845894590459145924593459445954596459745984599460046014602460346044605460646074608460946104611461246134614461546164617461846194620462146224623462446254626462746284629463046314632463346344635463646374638463946404641464246434644464546464647464846494650465146524653465446554656465746584659466046614662466346644665466646674668466946704671467246734674467546764677467846794680468146824683468446854686468746884689469046914692469346944695469646974698469947004701470247034704470547064707 |
- <?xml version="1.0" encoding="utf-8"?>
- <FDL version="1.5">
- <TypeDefinition url="..\..\..\default_typedef.xml"/>
- <Form id="SMASI01300" position="absolute 0 0 1196 792" titletext="법정감염병신고대상자조회" oninit="SMASI01300_oninit" onload="SMASI01300_onload">
- <Layouts>
- <Layout>
- <Shape id="line4" linetype="horizontal" class="line_3" position="absolute 1 761 1196 767" anchor="left right bottom"/>
- <Shape id="line2" linetype="vertical" class="line_1" position="absolute 0 114 1195 115"/>
- <Button id="btn_excel" taborder="3" text="엑셀" class="btn7" position="absolute 1143 87 1195 109" onclick="btn_excel_onclick" anchor="top right"/>
- <Static id="caption11" text="법정감염병신고대상자" class="tit_2" position="absolute 0 93 173 112"/>
- <Static id="caption6" text="법정감염병 신고대상자조회" class="tit_1" position="absolute 0 0 196 25"/>
- <Div id="grp_sea" anchor="left top right" taborder="4" style="align:center top;" class="div_SA" position="absolute 0 25 1195 85">
- <Layouts>
- <Layout width="1188" height="67">
- <Static id="caption3" text="대상자종류" class="search_name" position="absolute 8 9 95 29" anchor="default"/>
- <Static id="caption5" text="작성일" class="search_name" position="absolute 8 32 84 52" anchor="default"/>
- <Static id="caption2" text="환자명 : " class="search_name" position="absolute 316 32 387 52" anchor="default"/>
- <Static id="caption9" text="진료의 : " class="search_name" position="absolute 717 32 790 52" anchor="default"/>
- <Static id="caption7" text="신고상태 : " class="search_name" position="absolute 516 9 599 29" anchor="default"/>
- <Combo id="cmb_trgtmankind" taborder="21" codecolumn="codecolumn" datacolumn="datacolumn" onitemchanged="grp_sea_cmb_trgtmankind_onitemchanged" position="absolute 86 9 254 29" anchor="default" class="combo_search">
- <Dataset id="innerdataset">
- <ColumnInfo>
- <Column id="codecolumn" size="256"/>
- <Column id="datacolumn" size="256"/>
- </ColumnInfo>
- <Rows>
- <Row>
- <Col id="codecolumn">00</Col>
- <Col id="datacolumn">전체</Col>
- </Row>
- <Row>
- <Col id="codecolumn">01</Col>
- <Col id="datacolumn">법정감염병의심환자</Col>
- </Row>
- <Row>
- <Col id="codecolumn">02</Col>
- <Col id="datacolumn">결핵의심환자</Col>
- </Row>
- <Row>
- <Col id="codecolumn">03</Col>
- <Col id="datacolumn">간염의심환자</Col>
- </Row>
- <Row>
- <Col id="codecolumn">04</Col>
- <Col id="datacolumn">선천성매독의심환자</Col>
- </Row>
- <Row>
- <Col id="codecolumn">05</Col>
- <Col id="datacolumn">성병의심환자</Col>
- </Row>
- <Row>
- <Col id="codecolumn">06</Col>
- <Col id="datacolumn">크로이츠펠트-야콥병의심환자</Col>
- </Row>
- <Row>
- <Col id="codecolumn">07</Col>
- <Col id="datacolumn">인플루인자의심환자</Col>
- </Row>
- <Row>
- <Col id="codecolumn">09</Col>
- <Col id="datacolumn">HIV-AIDS의심환자</Col>
- </Row>
- <Row>
- <Col id="codecolumn">10</Col>
- <Col id="datacolumn">수족구병의심환자</Col>
- </Row>
- <Row>
- <Col id="codecolumn">11</Col>
- <Col id="datacolumn">해외유입 기생충 감염증</Col>
- </Row>
- <Row>
- <Col id="codecolumn">99</Col>
- <Col id="datacolumn">결핵사망환자</Col>
- </Row>
- <Row>
- <Col id="codecolumn">13</Col>
- <Col id="datacolumn">검체시험의뢰서(일반)</Col>
- </Row>
- <Row>
- <Col id="codecolumn">14</Col>
- <Col id="datacolumn">검체시험의뢰서(메르스)</Col>
- </Row>
- <Row>
- <Col id="codecolumn">15</Col>
- <Col id="datacolumn">검체시험의뢰서(지카)</Col>
- </Row>
- </Rows>
- </Dataset>
- </Combo>
- <Combo id="cmb_reptstat" taborder="22" codecolumn="codecolumn" datacolumn="datacolumn" class="combo_search" position="absolute 595 9 700 29" anchor="default">
- <Dataset id="innerdataset">
- <ColumnInfo>
- <Column id="codecolumn" size="256"/>
- <Column id="datacolumn" size="256"/>
- </ColumnInfo>
- <Rows>
- <Row>
- <Col id="codecolumn"/>
- <Col id="datacolumn">전체</Col>
- </Row>
- <Row>
- <Col id="codecolumn">R</Col>
- <Col id="datacolumn">신고</Col>
- </Row>
- <Row>
- <Col id="codecolumn">M</Col>
- <Col id="datacolumn">미신고</Col>
- </Row>
- <Row>
- <Col id="codecolumn">E</Col>
- <Col id="datacolumn">제외자</Col>
- </Row>
- </Rows>
- </Dataset>
- </Combo>
- <Button id="btn_search" taborder="23" text="조회" onclick="btn_search_onclick" class="btn1" position="absolute 1128 20 1184 40" anchor="top right"/>
- <CheckBox id="chk" taborder="24" value="N" truevalue="Y" falsevalue="N" position="absolute 841 9 857 29" anchor="default"/>
- <Static id="caption1" text="삭제 신고서 포함 : " class="search_name" position="absolute 717 9 842 29" anchor="default"/>
- <Static id="caption04" text="등록번호 : " class="search_name" position="absolute 316 9 401 29" anchor="default"/>
- <Edit id="ipt_patcd" taborder="26" position="absolute 391 9 486 29" anchor="default" onkeydown="grp_sea_ipt_patcd_onkeydown"/>
- <Static id="caption06" text="진료과 : " class="search_name" position="absolute 517 32 582 52" anchor="default"/>
- <Edit id="ipt_patnm" taborder="27" onkeydown="grp_sea_ipt_patnm_onkeydown" position="absolute 391 32 486 52" anchor="default"/>
- <Combo id="cmb_orddept" taborder="28" innerdataset="@ds_hidden_orddeptlist" codecolumn="deptcd" datacolumn="depthngnm" class="combo_search" position="absolute 595 32 700 52" anchor="default" onitemchanged="grp_sea_cmb_orddept_onitemchanged"/>
- <Combo id="cmb_orddr" taborder="29" innerdataset="@ds_hidden_userlist" codecolumn="userid" datacolumn="usernm" class="combo_search" position="absolute 778 32 883 52" anchor="default"/>
- <Button id="btn_pid" taborder="30" onclick="grp_sea_btn_pid_onclick" class="icon_search" position="absolute 485 9 510 29" anchor="default"/>
- <Button id="btn_pname" taborder="31" onclick="grp_sea_btn_pname_onclick" class="icon_search" position="absolute 485 32 510 52" anchor="default"/>
- <Calendar id="cal_fromdd" taborder="33" position="absolute 85 32 186 52" anchor="default"/>
- <Calendar id="cal_todd" taborder="34" position="absolute 202 32 302 52" anchor="default"/>
- <Shape id="line14" linetype="vertical" class="line_4" position="absolute 1113 14 1119 49" anchor="top right"/>
- <CheckBox id="bool1" taborder="35" value="N" truevalue="Y" falsevalue="N" position="absolute 258 9 306 29" text="종료" onclick="grp_sea_bool1_onclick" anchor="default"/>
- <Static id="caption00" text="검체의뢰서 전체 조회 : " class="search_name" position="absolute 895 9 1051 29" anchor="default"/>
- <CheckBox id="chk_clinicspec" taborder="36" value="false" truevalue="true" falsevalue="false" position="absolute 1046 9 1062 29" anchor="default"/>
- </Layout>
- </Layouts>
- </Div>
- <Grid id="grd_lglydisrepttrgtman" taborder="5" binddataset="ds_grd_lglydisrepttrgtmaninfo" useinputpanel="false" cellsizingtype="col" onrbuttonup="grd_lglydisrepttrgtman_onrbuttonup" style="align:center middle;" onbuttondown="grd_lglydisrepttrgtman_onbuttondown" ondbclick="grd_lglydisrepttrgtman_ondbclick" position="absolute 0 114 1195 762" positiontype="position" anchor="all">
- <Formats>
- <Format id="default">
- <Columns>
- <Column size="27"/>
- <Column size="24"/>
- <Column size="110"/>
- <Column size="70"/>
- <Column size="68"/>
- <Column size="0"/>
- <Column size="75"/>
- <Column size="75"/>
- <Column size="75"/>
- <Column size="0"/>
- <Column size="67"/>
- <Column size="67"/>
- <Column size="30"/>
- <Column size="30"/>
- <Column size="75"/>
- <Column size="0"/>
- <Column size="95"/>
- <Column size="52"/>
- <Column size="52"/>
- <Column size="75"/>
- <Column size="0"/>
- <Column size="0"/>
- <Column size="108"/>
- <Column size="66"/>
- <Column size="50"/>
- <Column size="75"/>
- <Column size="80"/>
- <Column size="0"/>
- <Column size="0"/>
- <Column size="0"/>
- <Column size="0"/>
- <Column size="0"/>
- <Column size="0"/>
- <Column size="0"/>
- <Column size="0"/>
- <Column size="0"/>
- <Column size="0"/>
- <Column size="0"/>
- <Column size="0"/>
- <Column size="0"/>
- <Column size="0"/>
- <Column size="0"/>
- <Column size="0"/>
- <Column size="0"/>
- <Column size="0"/>
- <Column size="0"/>
- <Column size="0"/>
- <Column size="0"/>
- <Column size="0"/>
- <Column size="0"/>
- <Column size="0"/>
- <Column size="0"/>
- <Column size="0"/>
- <Column size="0"/>
- <Column size="0"/>
- <Column size="0"/>
- <Column size="0"/>
- <Column size="0"/>
- <Column size="0"/>
- <Column size="0"/>
- <Column size="0"/>
- <Column size="0"/>
- <Column size="0"/>
- <Column size="0"/>
- <Column size="0"/>
- <Column size="0"/>
- <Column size="0"/>
- <Column size="0"/>
- <Column size="0"/>
- <Column size="0"/>
- <Column size="0"/>
- <Column size="0"/>
- <Column size="0"/>
- <Column size="0"/>
- <Column size="0"/>
- <Column size="0"/>
- <Column size="0"/>
- <Column size="0"/>
- <Column size="0"/>
- <Column size="0"/>
- <Column size="0"/>
- <Column size="0"/>
- <Column size="0"/>
- <Column size="0"/>
- <Column size="0"/>
- <Column size="0"/>
- <Column size="0"/>
- <Column size="0"/>
- <Column size="0"/>
- <Column size="0"/>
- <Column size="0"/>
- <Column size="0"/>
- </Columns>
- <Rows>
- <Row size="24" band="head"/>
- <Row size="24"/>
- </Rows>
- <Band id="head">
- <Cell/>
- <Cell col="1" displaytype="checkbox" edittype="checkbox"/>
- <Cell col="2" text="대상자종류"/>
- <Cell col="3" text="발생신고"/>
- <Cell col="4" text="사망신고"/>
- <Cell col="5" text="신고상태"/>
- <Cell col="6" text="발병일자"/>
- <Cell col="7" text="진단일자"/>
- <Cell col="8" text="신고일자"/>
- <Cell col="9"/>
- <Cell col="10" text="등록번호"/>
- <Cell col="11" text="성명"/>
- <Cell col="12" text="성별"/>
- <Cell col="13" text="나이"/>
- <Cell col="14" text="진료일"/>
- <Cell col="15" text="진료과코드"/>
- <Cell col="16" text="진료과"/>
- <Cell col="17" text="진료의"/>
- <Cell col="18" text="작성자"/>
- <Cell col="19" text="작성일자"/>
- <Cell col="20" text="상병명"/>
- <Cell col="21" text="법정전염병코드"/>
- <Cell col="22" text="법정감염병명"/>
- <Cell col="23" text="병동"/>
- <Cell col="24" text="병실"/>
- <Cell col="25" text="입원일"/>
- <Cell col="26" text="퇴원일"/>
- <Cell col="27" text="wrtedt"/>
- <Cell col="28" text="seqno"/>
- <Cell col="29" text="ioflag"/>
- <Cell col="30" text="cretno"/>
- <Cell col="31" text="iseqno"/>
- <Cell col="32" text="2"/>
- <Cell col="33" text="3"/>
- <Cell col="34" text="4"/>
- <Cell col="35" text="5"/>
- <Cell col="36" text="6"/>
- <Cell col="37" text="7"/>
- <Cell col="38" text="8"/>
- <Cell col="39" text="9"/>
- <Cell col="40" text="10"/>
- <Cell col="41" text="11"/>
- <Cell col="42" text="12"/>
- <Cell col="43" text="13"/>
- <Cell col="44" text="14"/>
- <Cell col="45" text="15"/>
- <Cell col="46" text="16"/>
- <Cell col="47" text="17"/>
- <Cell col="48" text="18"/>
- <Cell col="49" text="19"/>
- <Cell col="50" text="20"/>
- <Cell col="51" text="21"/>
- <Cell col="52" text="22"/>
- <Cell col="53" text="23"/>
- <Cell col="54" text="24"/>
- <Cell col="55" text="25"/>
- <Cell col="56" text="26"/>
- <Cell col="57" text="27"/>
- <Cell col="58" text="28"/>
- <Cell col="59" text="29"/>
- <Cell col="60" text="30"/>
- <Cell col="61" text="31"/>
- <Cell col="62" text="32"/>
- <Cell col="63" text="33"/>
- <Cell col="64" text="34"/>
- <Cell col="65" text="35"/>
- <Cell col="66" text="치료약제"/>
- <Cell col="67" text="37"/>
- <Cell col="68" text="38"/>
- <Cell col="69" text="39"/>
- <Cell col="70" text="40"/>
- <Cell col="71" text="41"/>
- <Cell col="72" text="42"/>
- <Cell col="73" text="신원미상"/>
- <Cell col="74" text="caption1"/>
- <Cell col="75" text="caption3"/>
- <Cell col="76" text="caption4"/>
- <Cell col="77" text="caption5"/>
- <Cell col="78" text="caption6"/>
- <Cell col="79" text="caption7"/>
- <Cell col="80" text="caption8"/>
- <Cell col="81" text="caption11"/>
- <Cell col="82" text="caption9"/>
- <Cell col="83" text="caption10"/>
- <Cell col="84" text="cnclyn"/>
- <Cell col="85" text="state"/>
- <Cell col="86" text="psnflag"/>
- <Cell col="87" text="reptflag"/>
- <Cell col="88" text="reptdtnm"/>
- <Cell col="89" text="reptyear"/>
- <Cell col="90" text="reptmonth"/>
- <Cell col="91" text="reptday"/>
- </Band>
- <Band id="body">
- <Cell celltype="head" text="expr:currow+1"/>
- <Cell col="1" displaytype="checkbox" edittype="checkbox" style="color:EXPR(ds_grid_grd_lglydisrepttrgtman.getColumn(currow, "cnclyn")=='Y'?'#C0C0C0':'#000000');color2:EXPR(ds_grid_grd_lglydisrepttrgtman.getColumn(currow, "cnclyn")=='Y'?'#C0C0C0':'#000000');" text="bind:chk" expr="expr:(chk=="Y"||chk==1)?1:0" suppressedit="false"/>
- <Cell col="2" displaytype="combo" text="bind:reptflag" combodataset="ds_reptflag" combocodecol="cdid" combodatacol="cdnm"/>
- <Cell col="3" displaytype="combo" edittype="combo" style="color:EXPR(cnclyn=='Y'?'#C0C0C0':'#000000');color2:EXPR(cnclyn=='Y'?'#C0C0C0':'#000000');" text="bind:reptstat" combodataset="ds_reptstat" combocodecol="cdid" combodatacol="cdnm"/>
- <Cell col="4" displaytype="combo" edittype="combo" style="color:EXPR(ds_grd_lglydisrepttrgtmaninfo.getColumn(currow, "cnclyn")=='Y'?'#C0C0C0':'#000000');color2:EXPR(ds_grd_lglydisrepttrgtmaninfo.getColumn(currow, "cnclyn")=='Y'?'#C0C0C0':'#000000');" text="bind:dethreptstat" combodataset="ds_reptstat" combocodecol="cdid" combodatacol="cdnm"/>
- <Cell col="5" style="align:center middle;color:EXPR(ds_grd_lglydisrepttrgtmaninfo.getColumn(currow, "cnclyn")=='Y'?'#C0C0C0':'#000000');color2:EXPR(ds_grd_lglydisrepttrgtmaninfo.getColumn(currow, "cnclyn")=='Y'?'#C0C0C0':'#000000');" text="bind:reptdtnm" editscrollbar="hidden"/>
- <Cell col="6" displaytype="date" style="align:center middle;color:EXPR(ds_grd_lglydisrepttrgtmaninfo.getColumn(currow, "cnclyn")=='Y'?'#C0C0C0':'#000000');color2:EXPR(ds_grd_lglydisrepttrgtmaninfo.getColumn(currow, "cnclyn")=='Y'?'#C0C0C0':'#000000');" text="bind:attackdd" calendardisplaynulltype="none"/>
- <Cell col="7" displaytype="date" style="align:center middle;color:EXPR(ds_grd_lglydisrepttrgtmaninfo.getColumn(currow, "cnclyn")=='Y'?'#C0C0C0':'#000000');color2:EXPR(ds_grd_lglydisrepttrgtmaninfo.getColumn(currow, "cnclyn")=='Y'?'#C0C0C0':'#000000');" text="bind:diagdd" calendardisplaynulltype="none"/>
- <Cell col="8" displaytype="date" style="align:center middle;color:EXPR(ds_grd_lglydisrepttrgtmaninfo.getColumn(currow, "cnclyn")=='Y'?'#C0C0C0':'#000000');color2:EXPR(ds_grd_lglydisrepttrgtmaninfo.getColumn(currow, "cnclyn")=='Y'?'#C0C0C0':'#000000');" text="bind:reptdt" calendardisplaynulltype="none"/>
- <Cell col="9" style="color:EXPR(ds_grd_lglydisrepttrgtmaninfo.getColumn(currow, "cnclyn")=='Y'?'#C0C0C0':'#000000');color2:EXPR(ds_grd_lglydisrepttrgtmaninfo.getColumn(currow, "cnclyn")=='Y'?'#C0C0C0':'#000000');" text="bind:reptdtnm"/>
- <Cell col="10" displaytype="text" style="align:center middle;color:EXPR(ds_grd_lglydisrepttrgtmaninfo.getColumn(currow, "cnclyn")=='Y'?'#C0C0C0':'#000000');color2:EXPR(ds_grd_lglydisrepttrgtmaninfo.getColumn(currow, "cnclyn")=='Y'?'#C0C0C0':'#000000');" text="bind:pid"/>
- <Cell col="11" style="align:left middle;color:EXPR(ds_grd_lglydisrepttrgtmaninfo.getColumn(currow, "cnclyn")=='Y'?'#C0C0C0':'#000000');color2:EXPR(ds_grd_lglydisrepttrgtmaninfo.getColumn(currow, "cnclyn")=='Y'?'#C0C0C0':'#000000');" text="bind:name"/>
- <Cell col="12" style="align:center middle;color:EXPR(ds_grd_lglydisrepttrgtmaninfo.getColumn(currow, "cnclyn")=='Y'?'#C0C0C0':'#000000');color2:EXPR(ds_grd_lglydisrepttrgtmaninfo.getColumn(currow, "cnclyn")=='Y'?'#C0C0C0':'#000000');" text="bind:sex"/>
- <Cell col="13" style="align:center middle;color:EXPR(ds_grd_lglydisrepttrgtmaninfo.getColumn(currow, "cnclyn")=='Y'?'#C0C0C0':'#000000');color2:EXPR(ds_grd_lglydisrepttrgtmaninfo.getColumn(currow, "cnclyn")=='Y'?'#C0C0C0':'#000000');" text="bind:age"/>
- <Cell col="14" displaytype="date" style="align:center middle;color:EXPR(ds_grd_lglydisrepttrgtmaninfo.getColumn(currow, "cnclyn")=='Y'?'#C0C0C0':'#000000');color2:EXPR(ds_grd_lglydisrepttrgtmaninfo.getColumn(currow, "cnclyn")=='Y'?'#C0C0C0':'#000000');" text="bind:orddd" calendardisplaynulltype="none"/>
- <Cell col="15" style="color:EXPR(ds_grd_lglydisrepttrgtmaninfo.getColumn(currow, "cnclyn")=='Y'?'#C0C0C0':'#000000');color2:EXPR(ds_grd_lglydisrepttrgtmaninfo.getColumn(currow, "cnclyn")=='Y'?'#C0C0C0':'#000000');" text="bind:deptcd"/>
- <Cell col="16" style="align:left;color:EXPR(ds_grd_lglydisrepttrgtmaninfo.getColumn(currow, "cnclyn")=='Y'?'#C0C0C0':'#000000');color2:EXPR(ds_grd_lglydisrepttrgtmaninfo.getColumn(currow, "cnclyn")=='Y'?'#C0C0C0':'#000000');" text="bind:deptnm"/>
- <Cell col="17" style="align:center middle;color:EXPR(ds_grd_lglydisrepttrgtmaninfo.getColumn(currow, "cnclyn")=='Y'?'#C0C0C0':'#000000');color2:EXPR(ds_grd_lglydisrepttrgtmaninfo.getColumn(currow, "cnclyn")=='Y'?'#C0C0C0':'#000000');" text="bind:orddr"/>
- <Cell col="18" style="align:center middle;color:EXPR(ds_grd_lglydisrepttrgtmaninfo.getColumn(currow, "cnclyn")=='Y'?'#C0C0C0':'#000000');color2:EXPR(ds_grd_lglydisrepttrgtmaninfo.getColumn(currow, "cnclyn")=='Y'?'#C0C0C0':'#000000');" text="bind:specdr"/>
- <Cell col="19" displaytype="date" style="align:center middle;color:EXPR(ds_grd_lglydisrepttrgtmaninfo.getColumn(currow, "cnclyn")=='Y'?'#C0C0C0':'#000000');color2:EXPR(ds_grd_lglydisrepttrgtmaninfo.getColumn(currow, "cnclyn")=='Y'?'#C0C0C0':'#000000');" text="bind:wrtedt" calendardisplaynulltype="none"/>
- <Cell col="20" style="color:EXPR(ds_grd_lglydisrepttrgtmaninfo.getColumn(currow, "cnclyn")=='Y'?'#C0C0C0':'#000000');color2:EXPR(ds_grd_lglydisrepttrgtmaninfo.getColumn(currow, "cnclyn")=='Y'?'#C0C0C0':'#000000');" text="bind:snwnm"/>
- <Cell col="21" style="color:EXPR(ds_grd_lglydisrepttrgtmaninfo.getColumn(currow, "cnclyn")=='Y'?'#C0C0C0':'#000000');color2:EXPR(ds_grd_lglydisrepttrgtmaninfo.getColumn(currow, "cnclyn")=='Y'?'#C0C0C0':'#000000');" text="bind:lglydiscd"/>
- <Cell col="22" style="align:left;color:EXPR(ds_grd_lglydisrepttrgtmaninfo.getColumn(currow, "cnclyn")=='Y'?'#C0C0C0':'#000000');color2:EXPR(ds_grd_lglydisrepttrgtmaninfo.getColumn(currow, "cnclyn")=='Y'?'#C0C0C0':'#000000');" text="bind:lglydisnm"/>
- <Cell col="23" style="align:center middle;color:EXPR(ds_grd_lglydisrepttrgtmaninfo.getColumn(currow, "cnclyn")=='Y'?'#C0C0C0':'#000000');color2:EXPR(ds_grd_lglydisrepttrgtmaninfo.getColumn(currow, "cnclyn")=='Y'?'#C0C0C0':'#000000');" text="bind:wardcd"/>
- <Cell col="24" style="align:center middle;color:EXPR(ds_grd_lglydisrepttrgtmaninfo.getColumn(currow, "cnclyn")=='Y'?'#C0C0C0':'#000000');color2:EXPR(ds_grd_lglydisrepttrgtmaninfo.getColumn(currow, "cnclyn")=='Y'?'#C0C0C0':'#000000');" text="bind:roomcd"/>
- <Cell col="25" displaytype="date" style="align:center middle;color:EXPR(ds_grd_lglydisrepttrgtmaninfo.getColumn(currow, "cnclyn")=='Y'?'#C0C0C0':'#000000');color2:EXPR(ds_grd_lglydisrepttrgtmaninfo.getColumn(currow, "cnclyn")=='Y'?'#C0C0C0':'#000000');" text="bind:indd" calendardisplaynulltype="none"/>
- <Cell col="26" displaytype="expr:utlf_isNull(trim(dschdd)) ? "none" : "date"" style="align:center middle;color:EXPR(ds_grd_lglydisrepttrgtmaninfo.getColumn(currow, "cnclyn")=='Y'?'#C0C0C0':'#000000');color2:EXPR(ds_grd_lglydisrepttrgtmaninfo.getColumn(currow, "cnclyn")=='Y'?'#C0C0C0':'#000000');" text="bind:dschdd" calendardisplaynulltype="none"/>
- <Cell col="27" style="color:EXPR(ds_grid_grd_lglydisrepttrgtman.getColumn(currow, "cnclyn")=='Y'?'#C0C0C0':'#000000');color2:EXPR(ds_grid_grd_lglydisrepttrgtman.getColumn(currow, "cnclyn")=='Y'?'#C0C0C0':'#000000');" text="bind:wrtedt"/>
- <Cell col="28" style="color:EXPR(ds_grid_grd_lglydisrepttrgtman.getColumn(currow, "cnclyn")=='Y'?'#C0C0C0':'#000000');color2:EXPR(ds_grid_grd_lglydisrepttrgtman.getColumn(currow, "cnclyn")=='Y'?'#C0C0C0':'#000000');" text="bind:seqno"/>
- <Cell col="29" style="color:EXPR(ds_grid_grd_lglydisrepttrgtman.getColumn(currow, "cnclyn")=='Y'?'#C0C0C0':'#000000');color2:EXPR(ds_grid_grd_lglydisrepttrgtman.getColumn(currow, "cnclyn")=='Y'?'#C0C0C0':'#000000');" text="bind:ioflag"/>
- <Cell col="30" style="color:EXPR(ds_grid_grd_lglydisrepttrgtman.getColumn(currow, "cnclyn")=='Y'?'#C0C0C0':'#000000');color2:EXPR(ds_grid_grd_lglydisrepttrgtman.getColumn(currow, "cnclyn")=='Y'?'#C0C0C0':'#000000');" text="bind:cretno"/>
- <Cell col="31" style="color:EXPR(ds_grid_grd_lglydisrepttrgtman.getColumn(currow, "cnclyn")=='Y'?'#C0C0C0':'#000000');color2:EXPR(ds_grid_grd_lglydisrepttrgtman.getColumn(currow, "cnclyn")=='Y'?'#C0C0C0':'#000000');" text="bind:iseqno"/>
- <Cell col="32" style="color:EXPR(ds_grid_grd_lglydisrepttrgtman.getColumn(currow, "cnclyn")=='Y'?'#C0C0C0':'#000000');color2:EXPR(ds_grid_grd_lglydisrepttrgtman.getColumn(currow, "cnclyn")=='Y'?'#C0C0C0':'#000000');" text="bind:rrgstno1"/>
- <Cell col="33" style="color:EXPR(ds_grid_grd_lglydisrepttrgtman.getColumn(currow, "cnclyn")=='Y'?'#C0C0C0':'#000000');color2:EXPR(ds_grid_grd_lglydisrepttrgtman.getColumn(currow, "cnclyn")=='Y'?'#C0C0C0':'#000000');" text="bind:rrgstno2"/>
- <Cell col="34" style="color:EXPR(ds_grid_grd_lglydisrepttrgtman.getColumn(currow, "cnclyn")=='Y'?'#C0C0C0':'#000000');color2:EXPR(ds_grid_grd_lglydisrepttrgtman.getColumn(currow, "cnclyn")=='Y'?'#C0C0C0':'#000000');" text="bind:patflag"/>
- <Cell col="35" style="color:EXPR(ds_grid_grd_lglydisrepttrgtman.getColumn(currow, "cnclyn")=='Y'?'#C0C0C0':'#000000');color2:EXPR(ds_grid_grd_lglydisrepttrgtman.getColumn(currow, "cnclyn")=='Y'?'#C0C0C0':'#000000');" text="bind:preinochstflag"/>
- <Cell col="36" style="color:EXPR(ds_grid_grd_lglydisrepttrgtman.getColumn(currow, "cnclyn")=='Y'?'#C0C0C0':'#000000');color2:EXPR(ds_grid_grd_lglydisrepttrgtman.getColumn(currow, "cnclyn")=='Y'?'#C0C0C0':'#000000');" text="bind:brthdd"/>
- <Cell col="37" style="color:EXPR(ds_grid_grd_lglydisrepttrgtman.getColumn(currow, "cnclyn")=='Y'?'#C0C0C0':'#000000');color2:EXPR(ds_grid_grd_lglydisrepttrgtman.getColumn(currow, "cnclyn")=='Y'?'#C0C0C0':'#000000');" text="bind:procernm"/>
- <Cell col="38" style="color:EXPR(ds_grid_grd_lglydisrepttrgtman.getColumn(currow, "cnclyn")=='Y'?'#C0C0C0':'#000000');color2:EXPR(ds_grid_grd_lglydisrepttrgtman.getColumn(currow, "cnclyn")=='Y'?'#C0C0C0':'#000000');" text="bind:naticd"/>
- <Cell col="39" style="color:EXPR(ds_grid_grd_lglydisrepttrgtman.getColumn(currow, "cnclyn")=='Y'?'#C0C0C0':'#000000');color2:EXPR(ds_grid_grd_lglydisrepttrgtman.getColumn(currow, "cnclyn")=='Y'?'#C0C0C0':'#000000');" text="bind:ecntrydd"/>
- <Cell col="40" style="color:EXPR(ds_grid_grd_lglydisrepttrgtman.getColumn(currow, "cnclyn")=='Y'?'#C0C0C0':'#000000');color2:EXPR(ds_grid_grd_lglydisrepttrgtman.getColumn(currow, "cnclyn")=='Y'?'#C0C0C0':'#000000');" text="bind:jobcd"/>
- <Cell col="41" style="color:EXPR(ds_grid_grd_lglydisrepttrgtman.getColumn(currow, "cnclyn")=='Y'?'#C0C0C0':'#000000');color2:EXPR(ds_grid_grd_lglydisrepttrgtman.getColumn(currow, "cnclyn")=='Y'?'#C0C0C0':'#000000');" text="bind:pastcureflag"/>
- <Cell col="42" style="color:EXPR(ds_grid_grd_lglydisrepttrgtman.getColumn(currow, "cnclyn")=='Y'?'#C0C0C0':'#000000');color2:EXPR(ds_grid_grd_lglydisrepttrgtman.getColumn(currow, "cnclyn")=='Y'?'#C0C0C0':'#000000');" text="bind:cureterm"/>
- <Cell col="43" style="color:EXPR(ds_grid_grd_lglydisrepttrgtman.getColumn(currow, "cnclyn")=='Y'?'#C0C0C0':'#000000');color2:EXPR(ds_grid_grd_lglydisrepttrgtman.getColumn(currow, "cnclyn")=='Y'?'#C0C0C0':'#000000');" text="bind:pastcurecnt"/>
- <Cell col="44" style="color:EXPR(ds_grid_grd_lglydisrepttrgtman.getColumn(currow, "cnclyn")=='Y'?'#C0C0C0':'#000000');color2:EXPR(ds_grid_grd_lglydisrepttrgtman.getColumn(currow, "cnclyn")=='Y'?'#C0C0C0':'#000000');" text="bind:bisiziflag"/>
- <Cell col="45" style="color:EXPR(ds_grid_grd_lglydisrepttrgtman.getColumn(currow, "cnclyn")=='Y'?'#C0C0C0':'#000000');color2:EXPR(ds_grid_grd_lglydisrepttrgtman.getColumn(currow, "cnclyn")=='Y'?'#C0C0C0':'#000000');" text="bind:bisiziinocmthd"/>
- <Cell col="46" style="color:EXPR(ds_grid_grd_lglydisrepttrgtman.getColumn(currow, "cnclyn")=='Y'?'#C0C0C0':'#000000');color2:EXPR(ds_grid_grd_lglydisrepttrgtman.getColumn(currow, "cnclyn")=='Y'?'#C0C0C0':'#000000');" text="bind:sputumdm"/>
- <Cell col="47" style="color:EXPR(ds_grid_grd_lglydisrepttrgtman.getColumn(currow, "cnclyn")=='Y'?'#C0C0C0':'#000000');color2:EXPR(ds_grid_grd_lglydisrepttrgtman.getColumn(currow, "cnclyn")=='Y'?'#C0C0C0':'#000000');" text="bind:sputumby"/>
- <Cell col="48" style="color:EXPR(ds_grid_grd_lglydisrepttrgtman.getColumn(currow, "cnclyn")=='Y'?'#C0C0C0':'#000000');color2:EXPR(ds_grid_grd_lglydisrepttrgtman.getColumn(currow, "cnclyn")=='Y'?'#C0C0C0':'#000000');" text="bind:sputumodm"/>
- <Cell col="49" style="color:EXPR(ds_grid_grd_lglydisrepttrgtman.getColumn(currow, "cnclyn")=='Y'?'#C0C0C0':'#000000');color2:EXPR(ds_grid_grd_lglydisrepttrgtman.getColumn(currow, "cnclyn")=='Y'?'#C0C0C0':'#000000');" text="bind:sputumoby"/>
- <Cell col="50" style="color:EXPR(ds_grid_grd_lglydisrepttrgtman.getColumn(currow, "cnclyn")=='Y'?'#C0C0C0':'#000000');color2:EXPR(ds_grid_grd_lglydisrepttrgtman.getColumn(currow, "cnclyn")=='Y'?'#C0C0C0':'#000000');" text="bind:tisstestlag"/>
- <Cell col="51" style="color:EXPR(ds_grid_grd_lglydisrepttrgtman.getColumn(currow, "cnclyn")=='Y'?'#C0C0C0':'#000000');color2:EXPR(ds_grid_grd_lglydisrepttrgtman.getColumn(currow, "cnclyn")=='Y'?'#C0C0C0':'#000000');" text="bind:etctestflag"/>
- <Cell col="52" style="color:EXPR(ds_grid_grd_lglydisrepttrgtman.getColumn(currow, "cnclyn")=='Y'?'#C0C0C0':'#000000');color2:EXPR(ds_grid_grd_lglydisrepttrgtman.getColumn(currow, "cnclyn")=='Y'?'#C0C0C0':'#000000');" text="bind:rayrsltflag"/>
- <Cell col="53" style="color:EXPR(ds_grid_grd_lglydisrepttrgtman.getColumn(currow, "cnclyn")=='Y'?'#C0C0C0':'#000000');color2:EXPR(ds_grid_grd_lglydisrepttrgtman.getColumn(currow, "cnclyn")=='Y'?'#C0C0C0':'#000000');" text="bind:tooberrsltsize"/>
- <Cell col="54" style="color:EXPR(ds_grid_grd_lglydisrepttrgtman.getColumn(currow, "cnclyn")=='Y'?'#C0C0C0':'#000000');color2:EXPR(ds_grid_grd_lglydisrepttrgtman.getColumn(currow, "cnclyn")=='Y'?'#C0C0C0':'#000000');" text="bind:diagcd"/>
- <Cell col="55" style="color:EXPR(ds_grid_grd_lglydisrepttrgtman.getColumn(currow, "cnclyn")=='Y'?'#C0C0C0':'#000000');color2:EXPR(ds_grid_grd_lglydisrepttrgtman.getColumn(currow, "cnclyn")=='Y'?'#C0C0C0':'#000000');" text="bind:curefromdd"/>
- <Cell col="56" style="color:EXPR(ds_grid_grd_lglydisrepttrgtman.getColumn(currow, "cnclyn")=='Y'?'#C0C0C0':'#000000');color2:EXPR(ds_grid_grd_lglydisrepttrgtman.getColumn(currow, "cnclyn")=='Y'?'#C0C0C0':'#000000');" text="bind:curedrugcd"/>
- <Cell col="57" style="color:EXPR(ds_grid_grd_lglydisrepttrgtman.getColumn(currow, "cnclyn")=='Y'?'#C0C0C0':'#000000');color2:EXPR(ds_grid_grd_lglydisrepttrgtman.getColumn(currow, "cnclyn")=='Y'?'#C0C0C0':'#000000');" text="bind:curedrugcd01"/>
- <Cell col="58" style="color:EXPR(ds_grid_grd_lglydisrepttrgtman.getColumn(currow, "cnclyn")=='Y'?'#C0C0C0':'#000000');color2:EXPR(ds_grid_grd_lglydisrepttrgtman.getColumn(currow, "cnclyn")=='Y'?'#C0C0C0':'#000000');" text="bind:curedrugcd02"/>
- <Cell col="59" style="color:EXPR(ds_grid_grd_lglydisrepttrgtman.getColumn(currow, "cnclyn")=='Y'?'#C0C0C0':'#000000');color2:EXPR(ds_grid_grd_lglydisrepttrgtman.getColumn(currow, "cnclyn")=='Y'?'#C0C0C0':'#000000');" text="bind:curedrugcd03"/>
- <Cell col="60" style="color:EXPR(ds_grid_grd_lglydisrepttrgtman.getColumn(currow, "cnclyn")=='Y'?'#C0C0C0':'#000000');color2:EXPR(ds_grid_grd_lglydisrepttrgtman.getColumn(currow, "cnclyn")=='Y'?'#C0C0C0':'#000000');" text="bind:curedrugcd04"/>
- <Cell col="61" style="color:EXPR(ds_grid_grd_lglydisrepttrgtman.getColumn(currow, "cnclyn")=='Y'?'#C0C0C0':'#000000');color2:EXPR(ds_grid_grd_lglydisrepttrgtman.getColumn(currow, "cnclyn")=='Y'?'#C0C0C0':'#000000');" text="bind:curedrugcd05"/>
- <Cell col="62" style="color:EXPR(ds_grid_grd_lglydisrepttrgtman.getColumn(currow, "cnclyn")=='Y'?'#C0C0C0':'#000000');color2:EXPR(ds_grid_grd_lglydisrepttrgtman.getColumn(currow, "cnclyn")=='Y'?'#C0C0C0':'#000000');" text="bind:curedrugcd06"/>
- <Cell col="63" style="color:EXPR(ds_grid_grd_lglydisrepttrgtman.getColumn(currow, "cnclyn")=='Y'?'#C0C0C0':'#000000');color2:EXPR(ds_grid_grd_lglydisrepttrgtman.getColumn(currow, "cnclyn")=='Y'?'#C0C0C0':'#000000');" text="bind:curedrugcd07"/>
- <Cell col="64" style="color:EXPR(ds_grid_grd_lglydisrepttrgtman.getColumn(currow, "cnclyn")=='Y'?'#C0C0C0':'#000000');color2:EXPR(ds_grid_grd_lglydisrepttrgtman.getColumn(currow, "cnclyn")=='Y'?'#C0C0C0':'#000000');" text="bind:curedrugcd08"/>
- <Cell col="65" style="color:EXPR(ds_grid_grd_lglydisrepttrgtman.getColumn(currow, "cnclyn")=='Y'?'#C0C0C0':'#000000');color2:EXPR(ds_grid_grd_lglydisrepttrgtman.getColumn(currow, "cnclyn")=='Y'?'#C0C0C0':'#000000');" text="bind:curedrugcd09"/>
- <Cell col="66" style="color:EXPR(ds_grid_grd_lglydisrepttrgtman.getColumn(currow, "cnclyn")=='Y'?'#C0C0C0':'#000000');color2:EXPR(ds_grid_grd_lglydisrepttrgtman.getColumn(currow, "cnclyn")=='Y'?'#C0C0C0':'#000000');" text="bind:curedrugcd"/>
- <Cell col="67" style="color:EXPR(ds_grid_grd_lglydisrepttrgtman.getColumn(currow, "cnclyn")=='Y'?'#C0C0C0':'#000000');color2:EXPR(ds_grid_grd_lglydisrepttrgtman.getColumn(currow, "cnclyn")=='Y'?'#C0C0C0':'#000000');" text="bind:curetodd"/>
- <Cell col="68" style="color:EXPR(ds_grid_grd_lglydisrepttrgtman.getColumn(currow, "cnclyn")=='Y'?'#C0C0C0':'#000000');color2:EXPR(ds_grid_grd_lglydisrepttrgtman.getColumn(currow, "cnclyn")=='Y'?'#C0C0C0':'#000000');" text="bind:curersltflag"/>
- <Cell col="69" style="color:EXPR(ds_grid_grd_lglydisrepttrgtman.getColumn(currow, "cnclyn")=='Y'?'#C0C0C0':'#000000');color2:EXPR(ds_grid_grd_lglydisrepttrgtman.getColumn(currow, "cnclyn")=='Y'?'#C0C0C0':'#000000');" text="bind:zipcd1"/>
- <Cell col="70" style="color:EXPR(ds_grid_grd_lglydisrepttrgtman.getColumn(currow, "cnclyn")=='Y'?'#C0C0C0':'#000000');color2:EXPR(ds_grid_grd_lglydisrepttrgtman.getColumn(currow, "cnclyn")=='Y'?'#C0C0C0':'#000000');" text="bind:zipcd2"/>
- <Cell col="71" style="color:EXPR(ds_grid_grd_lglydisrepttrgtman.getColumn(currow, "cnclyn")=='Y'?'#C0C0C0':'#000000');color2:EXPR(ds_grid_grd_lglydisrepttrgtman.getColumn(currow, "cnclyn")=='Y'?'#C0C0C0':'#000000');" text="bind:hometel"/>
- <Cell col="72" style="color:EXPR(ds_grid_grd_lglydisrepttrgtman.getColumn(currow, "cnclyn")=='Y'?'#C0C0C0':'#000000');color2:EXPR(ds_grid_grd_lglydisrepttrgtman.getColumn(currow, "cnclyn")=='Y'?'#C0C0C0':'#000000');" text="bind:residncflag"/>
- <Cell col="73" style="color:EXPR(ds_grid_grd_lglydisrepttrgtman.getColumn(currow, "cnclyn")=='Y'?'#C0C0C0':'#000000');color2:EXPR(ds_grid_grd_lglydisrepttrgtman.getColumn(currow, "cnclyn")=='Y'?'#C0C0C0':'#000000');" text="bind:idflag"/>
- <Cell col="74" style="color:EXPR(ds_grid_grd_lglydisrepttrgtman.getColumn(currow, "cnclyn")=='Y'?'#C0C0C0':'#000000');color2:EXPR(ds_grid_grd_lglydisrepttrgtman.getColumn(currow, "cnclyn")=='Y'?'#C0C0C0':'#000000');" text="bind:detladdr"/>
- <Cell col="75" style="color:EXPR(ds_grid_grd_lglydisrepttrgtman.getColumn(currow, "cnclyn")=='Y'?'#C0C0C0':'#000000');color2:EXPR(ds_grid_grd_lglydisrepttrgtman.getColumn(currow, "cnclyn")=='Y'?'#C0C0C0':'#000000');" text="bind:cnfsnwtstrslt"/>
- <Cell col="76" style="color:EXPR(ds_grid_grd_lglydisrepttrgtman.getColumn(currow, "cnclyn")=='Y'?'#C0C0C0':'#000000');color2:EXPR(ds_grid_grd_lglydisrepttrgtman.getColumn(currow, "cnclyn")=='Y'?'#C0C0C0':'#000000');" text="bind:dethyn"/>
- <Cell col="77" style="color:EXPR(ds_grid_grd_lglydisrepttrgtman.getColumn(currow, "cnclyn")=='Y'?'#C0C0C0':'#000000');color2:EXPR(ds_grid_grd_lglydisrepttrgtman.getColumn(currow, "cnclyn")=='Y'?'#C0C0C0':'#000000');" text="bind:estminfcpath"/>
- <Cell col="78" style="color:EXPR(ds_grid_grd_lglydisrepttrgtman.getColumn(currow, "cnclyn")=='Y'?'#C0C0C0':'#000000');color2:EXPR(ds_grid_grd_lglydisrepttrgtman.getColumn(currow, "cnclyn")=='Y'?'#C0C0C0':'#000000');" text="bind:estminfcareacd"/>
- <Cell col="79" style="color:EXPR(ds_grid_grd_lglydisrepttrgtman.getColumn(currow, "cnclyn")=='Y'?'#C0C0C0':'#000000');color2:EXPR(ds_grid_grd_lglydisrepttrgtman.getColumn(currow, "cnclyn")=='Y'?'#C0C0C0':'#000000');" text="bind:estminfcareanaticd"/>
- <Cell col="80" style="color:EXPR(ds_grid_grd_lglydisrepttrgtman.getColumn(currow, "cnclyn")=='Y'?'#C0C0C0':'#000000');color2:EXPR(ds_grid_grd_lglydisrepttrgtman.getColumn(currow, "cnclyn")=='Y'?'#C0C0C0':'#000000');" text="bind:stayterm"/>
- <Cell col="81" style="color:EXPR(ds_grid_grd_lglydisrepttrgtman.getColumn(currow, "cnclyn")=='Y'?'#C0C0C0':'#000000');color2:EXPR(ds_grid_grd_lglydisrepttrgtman.getColumn(currow, "cnclyn")=='Y'?'#C0C0C0':'#000000');" text="bind:staytermday"/>
- <Cell col="82" style="color:EXPR(ds_grid_grd_lglydisrepttrgtman.getColumn(currow, "cnclyn")=='Y'?'#C0C0C0':'#000000');color2:EXPR(ds_grid_grd_lglydisrepttrgtman.getColumn(currow, "cnclyn")=='Y'?'#C0C0C0':'#000000');" text="bind:chngreptkind"/>
- <Cell col="83" style="color:EXPR(ds_grid_grd_lglydisrepttrgtman.getColumn(currow, "cnclyn")=='Y'?'#C0C0C0':'#000000');color2:EXPR(ds_grid_grd_lglydisrepttrgtman.getColumn(currow, "cnclyn")=='Y'?'#C0C0C0':'#000000');" text="bind:updtreptcnts"/>
- <Cell col="84" style="color:EXPR(ds_grid_grd_lglydisrepttrgtman.getColumn(currow, "cnclyn")=='Y'?'#C0C0C0':'#000000');color2:EXPR(ds_grid_grd_lglydisrepttrgtman.getColumn(currow, "cnclyn")=='Y'?'#C0C0C0':'#000000');" text="bind:cnclyn"/>
- <Cell col="85" style="color:EXPR(ds_grid_grd_lglydisrepttrgtman.getColumn(currow, "cnclyn")=='Y'?'#C0C0C0':'#000000');color2:EXPR(ds_grid_grd_lglydisrepttrgtman.getColumn(currow, "cnclyn")=='Y'?'#C0C0C0':'#000000');" text="bind:state"/>
- <Cell col="86" style="color:EXPR(ds_grid_grd_lglydisrepttrgtman.getColumn(currow, "cnclyn")=='Y'?'#C0C0C0':'#000000');color2:EXPR(ds_grid_grd_lglydisrepttrgtman.getColumn(currow, "cnclyn")=='Y'?'#C0C0C0':'#000000');" text="bind:psnflag"/>
- <Cell col="87" style="color:EXPR(ds_grid_grd_lglydisrepttrgtman.getColumn(currow, "cnclyn")=='Y'?'#C0C0C0':'#000000');color2:EXPR(ds_grid_grd_lglydisrepttrgtman.getColumn(currow, "cnclyn")=='Y'?'#C0C0C0':'#000000');" text="bind:reptflag"/>
- <Cell col="88" style="color:EXPR(ds_grid_grd_lglydisrepttrgtman.getColumn(currow, "cnclyn")=='Y'?'#C0C0C0':'#000000');color2:EXPR(ds_grid_grd_lglydisrepttrgtman.getColumn(currow, "cnclyn")=='Y'?'#C0C0C0':'#000000');" text="bind:reptdtnm"/>
- <Cell col="89" style="color:EXPR(ds_grid_grd_lglydisrepttrgtman.getColumn(currow, "cnclyn")=='Y'?'#C0C0C0':'#000000');color2:EXPR(ds_grid_grd_lglydisrepttrgtman.getColumn(currow, "cnclyn")=='Y'?'#C0C0C0':'#000000');" text="bind:reptyear"/>
- <Cell col="90" style="color:EXPR(ds_grid_grd_lglydisrepttrgtman.getColumn(currow, "cnclyn")=='Y'?'#C0C0C0':'#000000');color2:EXPR(ds_grid_grd_lglydisrepttrgtman.getColumn(currow, "cnclyn")=='Y'?'#C0C0C0':'#000000');" text="bind:reptmonth"/>
- <Cell col="91" style="color:EXPR(ds_grid_grd_lglydisrepttrgtman.getColumn(currow, "cnclyn")=='Y'?'#C0C0C0':'#000000');color2:EXPR(ds_grid_grd_lglydisrepttrgtman.getColumn(currow, "cnclyn")=='Y'?'#C0C0C0':'#000000');" text="bind:reptday"/>
- <Cell col="92"/>
- <Cell col="93"/>
- <Cell col="94"/>
- <Cell col="95"/>
- </Band>
- </Format>
- </Formats>
- </Grid>
- <Div id="grp_ordbtn" taborder="7" position="absolute 0 763 1196 790" anchor="left right bottom">
- <Layouts>
- <Layout>
- <Button id="button5" taborder="5" text="초기화" class="btn4" position="absolute 1127 3 1195 25" anchor="top right" onclick="grp_ordbtn_button5_onclick"/>
- <Button id="button6" taborder="6" text="삭제" class="btn4" position="absolute 82 3 138 25" anchor="default" onclick="grp_ordbtn_button6_onclick"/>
- <Button id="btn_preview" taborder="7" text="(재)출력" onclick="grp_btn3_button8_onclick" class="btn6" position="absolute 0 3 80 25" anchor="default"/>
- </Layout>
- </Layouts>
- </Div>
- <Div id="grp_btn3" taborder="8" position="absolute 0 763 1196 790" anchor="left right bottom">
- <Layouts>
- <Layout>
- <Button id="button7" taborder="7" text="초기화" class="btn4" position="absolute 1127 3 1195 25" anchor="top right"/>
- <Button id="button8" taborder="8" text="미리보기" class="btn6" position="absolute 0 3 72 25" anchor="default" onclick="grp_btn3_button8_onclick"/>
- <Button id="button9" taborder="9" text="출력" class="btn6" position="absolute 755 3 811 25" anchor="top right" onclick="grp_btn3_button9_onclick"/>
- </Layout>
- </Layouts>
- </Div>
- <Div id="grp_btn" taborder="9" position="absolute 0 763 1196 790" anchor="top right bottom">
- <Layouts>
- <Layout width="1195" height="27">
- <Button id="btn_init" taborder="1" text="초기화" class="btn4" position="absolute 1127 3 1195 25" anchor="top right" onclick="grp_btn_btn_init_onclick"/>
- <Button id="btn_preview" taborder="2" text="(재)출력" class="btn6" position="absolute 0 3 80 25" anchor="default" onclick="grp_btn3_button8_onclick"/>
- <Button id="button4" taborder="3" text="신고(출력)" class="btn4" position="absolute 749 3 845 25" anchor="top right" onclick="grp_btn_button4_onclick"/>
- <Button id="button3" taborder="4" text="신고취소" class="btn4" position="absolute 847 3 927 25" anchor="top right" onclick="grp_btn_button3_onclick"/>
- <Button id="button2" taborder="5" text="삭제" class="btn4" position="absolute 1069 3 1125 25" anchor="top right" onclick="grp_btn_button2_onclick"/>
- <Button id="button10" taborder="6" text="제외" class="btn4" position="absolute 929 3 985 25" anchor="top right" onclick="grp_btn_button10_onclick"/>
- <Button id="button11" taborder="7" text="제외취소" class="btn4" position="absolute 987 3 1067 25" anchor="top right" onclick="grp_btn_button11_onclick"/>
- </Layout>
- </Layouts>
- </Div>
- <Static id="caption5" text="~" class="search_no_b" position="absolute 190 59 202 76"/>
- <Shape id="line6" class="line_10" position="absolute 0 110 1194 114" anchor="left top right"/>
- </Layout>
- </Layouts>
- <Objects>
- <Dataset id="ds_init_cmb_orddept" firefirstcount="0" firenextcount="0" useclientlayout="false" updatecontrol="true" enableevent="true" loadkeymode="keep" reversesubsum="false">
- <ColumnInfo>
- <Column id="depthngnm" type="STRING"/>
- <Column id="deptcd" type="STRING"/>
- </ColumnInfo>
- </Dataset>
- <Dataset id="ds_init_cmb_orddr" firefirstcount="0" firenextcount="0" useclientlayout="false" updatecontrol="true" enableevent="true" loadkeymode="keep" reversesubsum="false">
- <ColumnInfo>
- <Column id="usernm" type="STRING"/>
- <Column id="userid" type="STRING"/>
- </ColumnInfo>
- </Dataset>
- <Dataset id="ds_grd_lglydisrepttrgtmaninfo" firefirstcount="0" firenextcount="0" useclientlayout="true" updatecontrol="true" enableevent="true" loadkeymode="keep" reversesubsum="false">
- <ColumnInfo>
- <Column id="select" type="STRING" size="256" sumtext="select"/>
- <Column id="reptdt" type="STRING" size="256" sumtext="출력일자"/>
- <Column id="reptstat" type="STRING" size="256" sumtext="상태"/>
- <Column id="reptdtnm" type="STRING" size="256" sumtext="출력상태"/>
- <Column id="pid" type="STRING" size="256" sumtext="등록번호"/>
- <Column id="name" type="STRING" size="256" sumtext="성명"/>
- <Column id="sex" type="STRING" size="256" sumtext="성별"/>
- <Column id="sex1" type="STRING" size="256" sumtext="성별"/>
- <Column id="sex2" type="STRING" size="256" sumtext="성별"/>
- <Column id="rrgstno1" type="STRING" size="256" sumtext="성별"/>
- <Column id="rrgstno2" type="STRING" size="256" sumtext="성별"/>
- <Column id="age" type="STRING" size="256" sumtext="나이"/>
- <Column id="orddd" type="STRING" size="256" sumtext="진료일자"/>
- <Column id="deptcd" type="STRING" size="256" sumtext="임상과코드"/>
- <Column id="deptnm" type="STRING" size="256" sumtext="임상과이름"/>
- <Column id="specdr" type="STRING" size="256" sumtext="특진의"/>
- <Column id="orddr" type="STRING" size="256" sumtext="진료의"/>
- <Column id="licnsno" type="STRING" size="256" sumtext="진료의 면허번호"/>
- <Column id="lglydiscd" type="STRING" size="256" sumtext="법정전염병코드"/>
- <Column id="lglydisnm" type="STRING" size="256" sumtext="법정전염병명"/>
- <Column id="wardcd" type="STRING" size="256" sumtext="병동"/>
- <Column id="roomcd" type="STRING" size="256" sumtext="병실"/>
- <Column id="indd" type="STRING" size="256" sumtext="입원일자"/>
- <Column id="dschdd" type="STRING" size="256" sumtext="퇴원일자"/>
- <Column id="wrtedt" type="STRING" size="256" sumtext="작성일자"/>
- <Column id="seqno" type="STRING" size="256" sumtext="법정일련번호"/>
- <Column id="cretno" type="STRING" size="256" sumtext="생성번호"/>
- <Column id="iseqno" type="STRING" size="256" sumtext="입원seqno"/>
- <Column id="upwrtedt" type="STRING" size="256" sumtext="작성일시"/>
- <Column id="jobcd" type="STRING" size="256" sumtext="직업코드"/>
- <Column id="jobnm" type="STRING" size="256" sumtext="직업코드"/>
- <!-- 공통 -->
- <Column id="reptyear" type="STRING" size="256" sumtext="보고일"/>
- <Column id="reptmonth" type="STRING" size="256" sumtext="년"/>
- <Column id="reptday" type="STRING" size="256" sumtext="월"/>
- <Column id="diagdd" type="STRING" size="256" sumtext="진단일"/>
- <Column id="diagyear" type="STRING" size="256" sumtext="년"/>
- <Column id="diagmonth" type="STRING" size="256" sumtext="월"/>
- <Column id="diagday" type="STRING" size="256" sumtext="일"/>
- <Column id="brthdd" type="STRING" size="256" sumtext="생년월일"/>
- <Column id="brthyear" type="STRING" size="256" sumtext="년"/>
- <Column id="brthmonth" type="STRING" size="256" sumtext="월"/>
- <Column id="brthday" type="STRING" size="256" sumtext="일"/>
- <Column id="rrgstno" type="STRING" size="256" sumtext="주민번호"/>
- <Column id="rrgstno1" type="STRING" size="256" sumtext="주민번호앞"/>
- <Column id="rrgstno2" type="STRING" size="256" sumtext="주민번호뒤"/>
- <Column id="patflag1" type="STRING" size="256" sumtext="환자구분"/>
- <Column id="patflag2" type="STRING" size="256" sumtext="환자구분"/>
- <Column id="patflag3" type="STRING" size="256" sumtext="환자구분"/>
- <Column id="procernm" type="STRING" size="256" sumtext="보호자성명"/>
- <Column id="zipcd1" type="STRING" size="256" sumtext="우편번호"/>
- <Column id="zipcd2" type="STRING" size="256" sumtext="우편번호"/>
- <Column id="hometel" type="STRING" size="256" sumtext="전화번호"/>
- <Column id="mpphontel" type="STRING" size="256" sumtext="핸드폰번호"/>
- <Column id="detladdr" type="STRING" size="256" sumtext="주소"/>
- <Column id="specdrlicnsno" type="STRING" size="256" sumtext="특진의 면허번호"/>
- <Column id="hospnm" type="STRING" size="256" sumtext="병원명"/>
- <Column id="reprtel1" type="STRING" size="256" sumtext="전화?호"/>
- <Column id="hosaddr1" type="STRING" size="256" sumtext="병원주소"/>
- <Column id="hosaddr2" type="STRING" size="256" sumtext="병원주소"/>
- <Column id="hoszipcd" type="STRING" size="256" sumtext="병원주소"/>
- <Column id="proccorpcd" type="STRING" size="256" sumtext="요양기관번호"/>
- <Column id="shthospnm" type="STRING" size="256" sumtext="요양기관번호"/>
- <Column id="reprfaxno" type="STRING" size="256" sumtext="요양기관번호"/>
- <Column id="etcdetlnm" type="STRING" size="256" sumtext="감염관리실 담당자"/>
- <Column id="etcdeptnm" type="STRING" size="256" sumtext="법정전염병신고담당부서"/>
- <Column id="attackdd" type="STRING" size="256" sumtext="발병일자"/>
- <Column id="etcnts1" type="STRING" size="256" sumtext="질환명"/>
- <Column id="etcnts2" type="STRING" size="256" sumtext="질환명"/>
- <Column id="etcnts3" type="STRING" size="256" sumtext="질환명"/>
- <Column id="cnclyn" type="STRING" size="256" sumtext="삭제여부(20091113 JJE 추가)"/>
- <Column id="state" type="STRING" size="256" sumtext="상태(20091113 JJE 추가)"/>
- <Column id="psnflag" type="STRING" size="256" sumtext="IO구분(20091113 JJE 추가)"/>
- <Column id="reptflag" type="STRING" size="256" sumtext="신고서종류(20091113 JJE 추가)"/>
- <!-- 법정전염병 -->
- <Column id="residncflag" type="STRING" size="256" sumtext="거주지불명"/>
- <Column id="idflag" type="STRING" size="256" sumtext="신원미상"/>
- <Column id="tlglydiscd101" type="STRING" size="256" sumtext="전염병명"/>
- <Column id="tlglydiscd102" type="STRING" size="256" sumtext="전염병명"/>
- <Column id="tlglydiscd103" type="STRING" size="256" sumtext="전염병명"/>
- <Column id="tlglydiscd104" type="STRING" size="256" sumtext="전염병명"/>
- <Column id="tlglydiscd105" type="STRING" size="256" sumtext="전염병명"/>
- <Column id="tlglydiscd106" type="STRING" size="256" sumtext="전염병명"/>
- <Column id="tlglydiscd107" type="STRING" size="256" sumtext="전염병명"/>
- <Column id="tlglydiscd201" type="STRING" size="256" sumtext="전염병명"/>
- <Column id="tlglydiscd202" type="STRING" size="256" sumtext="전염병명"/>
- <Column id="tlglydiscd203" type="STRING" size="256" sumtext="전염병명"/>
- <Column id="tlglydiscd204" type="STRING" size="256" sumtext="전염병명"/>
- <Column id="tlglydiscd205" type="STRING" size="256" sumtext="전염병명"/>
- <Column id="tlglydiscd206" type="STRING" size="256" sumtext="전염병명"/>
- <Column id="tlglydiscd207" type="STRING" size="256" sumtext="전염병명"/>
- <Column id="tlglydiscd208" type="STRING" size="256" sumtext="전염병명"/>
- <Column id="tlglydiscd209" type="STRING" size="256" sumtext="전염병명"/>
- <Column id="tlglydiscd210" type="STRING" size="256" sumtext="전염병명"/>
- <Column id="tlglydiscd211" type="STRING" size="256" sumtext="전염병명"/>
- <Column id="tlglydiscd212" type="STRING" size="256" sumtext="전염병명"/>
- <Column id="tlglydiscd301" type="STRING" size="256" sumtext="전염병명"/>
- <Column id="tlglydiscd302" type="STRING" size="256" sumtext="전염병명"/>
- <Column id="tlglydiscd303" type="STRING" size="256" sumtext="전염병명"/>
- <Column id="tlglydiscd304" type="STRING" size="256" sumtext="전염병명"/>
- <Column id="tlglydiscd305" type="STRING" size="256" sumtext="전염병명"/>
- <Column id="tlglydiscd306" type="STRING" size="256" sumtext="전염병명"/>
- <Column id="tlglydiscd307" type="STRING" size="256" sumtext="전염병명"/>
- <Column id="tlglydiscd308" type="STRING" size="256" sumtext="전염병명"/>
- <Column id="tlglydiscd309" type="STRING" size="256" sumtext="전염병명"/>
- <Column id="tlglydiscd310" type="STRING" size="256" sumtext="전염병명"/>
- <Column id="tlglydiscd311" type="STRING" size="256" sumtext="전염병명"/>
- <Column id="tlglydiscd312" type="STRING" size="256" sumtext="전염병명"/>
- <Column id="tlglydiscd313" type="STRING" size="256" sumtext="전염병명"/>
- <Column id="tlglydiscd314" type="STRING" size="256" sumtext="전염병명"/>
- <Column id="tlglydiscd315" type="STRING" size="256" sumtext="전염병명"/>
- <Column id="tlglydiscd316" type="STRING" size="256" sumtext="전염병명"/>
- <Column id="tlglydiscd317" type="STRING" size="256" sumtext="전염병명"/>
- <Column id="tlglydiscd318" type="STRING" size="256" sumtext="전염병명"/>
- <Column id="tlglydiscd319" type="STRING" size="256" sumtext="전염병명"/>
- <Column id="tlglydiscd320" type="STRING" size="256" sumtext="전염병명"/>
- <Column id="tlglydiscd321" type="STRING" size="256" sumtext="전염병명"/>
- <Column id="tlglydiscd401" type="STRING" size="256" sumtext="전염병명"/>
- <Column id="tlglydiscd402" type="STRING" size="256" sumtext="전염병명"/>
- <Column id="tlglydiscd403" type="STRING" size="256" sumtext="전염병명"/>
- <Column id="tlglydiscd404" type="STRING" size="256" sumtext="전염병명"/>
- <Column id="tlglydiscd405" type="STRING" size="256" sumtext="전염병명"/>
- <Column id="tlglydiscd406" type="STRING" size="256" sumtext="전염병명"/>
- <Column id="tlglydiscd407" type="STRING" size="256" sumtext="전염병명"/>
- <Column id="tlglydiscd408" type="STRING" size="256" sumtext="전염병명"/>
- <Column id="tlglydiscd409" type="STRING" size="256" sumtext="전염병명"/>
- <Column id="tlglydiscd410" type="STRING" size="256" sumtext="전염병명"/>
- <Column id="tlglydiscd411" type="STRING" size="256" sumtext="전염병명"/>
- <Column id="tlglydiscd412" type="STRING" size="256" sumtext="전염병명"/>
- <Column id="tlglydiscd413" type="STRING" size="256" sumtext="전염병명"/>
- <Column id="tlglydiscd414" type="STRING" size="256" sumtext="전염병명"/>
- <Column id="tlglydiscd415" type="STRING" size="256" sumtext="전염병명"/>
- <Column id="tlglydiscd416" type="STRING" size="256" sumtext="전염병명"/>
- <Column id="tlglydiscd417" type="STRING" size="256" sumtext="전염병명"/>
- <Column id="tlglydiscd418" type="STRING" size="256" sumtext="전염병명"/>
- <Column id="tlglydiscd419" type="STRING" size="256" sumtext="전염병명"/>
- <Column id="tlglydiscd420" type="STRING" size="256" sumtext="전염병명"/>
- <Column id="tlglydiscd421" type="STRING" size="256" sumtext="전염병명"/>
- <Column id="tlglydiscd422" type="STRING" size="256" sumtext="전염병명"/>
- <Column id="tlglydiscd423" type="STRING" size="256" sumtext="전염병명"/>
- <Column id="tlglydiscd424" type="STRING" size="256" sumtext="전염병명"/>
- <Column id="tlglydiscd425" type="STRING" size="256" sumtext="전염병명"/>
- <Column id="tlglydiscd426" type="STRING" size="256" sumtext="전염병명"/>
- <Column id="tlglydiscd499" type="STRING" size="256" sumtext="전염병명"/>
- <Column id="tlglydiscd502" type="STRING" size="256" sumtext="전염병명"/>
- <Column id="tlglydiscd503" type="STRING" size="256" sumtext="전염병명"/>
- <Column id="tlglydiscd504" type="STRING" size="256" sumtext="전염병명"/>
- <Column id="tlglydiscd505" type="STRING" size="256" sumtext="전염병명"/>
- <Column id="tlglydiscd506" type="STRING" size="256" sumtext="전염병명"/>
- <Column id="tlglydiscd507" type="STRING" size="256"/>
- <Column id="tlglydiscd508" type="STRING" size="256"/>
- <Column id="tlglydiscd509" type="STRING" size="256"/>
- <Column id="symp" type="STRING" size="256" sumtext="신종전염병증후군(증상 및 징후)"/>
- <Column id="tlglydiscd999" type="STRING" size="256" sumtext="전염병명(지정)"/>
- <Column id="diagnm" type="STRING" size="256" sumtext="지정명"/>
- <Column id="attackyear" type="STRING" size="256" sumtext="발병일"/>
- <Column id="attackmonth" type="STRING" size="256" sumtext="발병일"/>
- <Column id="attackday" type="STRING" size="256" sumtext="발병일"/>
- <Column id="cnfsnwtstrslt1" type="STRING" size="256" sumtext="확진검사결과"/>
- <Column id="cnfsnwtstrslt2" type="STRING" size="256" sumtext="확진검사결과"/>
- <Column id="cnfsnwtstrslt3" type="STRING" size="256" sumtext="확진검사결과"/>
- <Column id="cnfsnwtstrslt9" type="STRING" size="256" sumtext="확진검사결과"/>
- <Column id="dethn" type="STRING" size="256" sumtext="사망여부"/>
- <Column id="dethy" type="STRING" size="256" sumtext="사망여부"/>
- <Column id="estminfcpath1" type="STRING" size="256" sumtext="추정감염경로"/>
- <Column id="estminfcpath2" type="STRING" size="256" sumtext="추정감염경로"/>
- <Column id="estminfcpath3" type="STRING" size="256" sumtext="추정감염경로"/>
- <Column id="estminfcpath4" type="STRING" size="256" sumtext="추정감염경로"/>
- <Column id="estminfcareacdh" type="STRING" size="256" sumtext="추정감염지역"/>
- <Column id="estminfcareacdo" type="STRING" size="256" sumtext="추정감염지역"/>
- <Column id="estminfcareanaticd" type="STRING" size="256" sumtext="국명"/>
- <Column id="stayterm" type="STRING" size="256" sumtext="체류기간(개월)"/>
- <Column id="staytermday" type="STRING" size="256" sumtext="체류기간(일)"/>
- <Column id="chngreptkind1" type="STRING" size="256" sumtext="변경신고"/>
- <Column id="chngreptkind2" type="STRING" size="256" sumtext="변경신고"/>
- <Column id="chngreptkind3" type="STRING" size="256" sumtext="변경신고"/>
- <Column id="chngreptkind4" type="STRING" size="256" sumtext="변경신고"/>
- <Column id="updtreptcnts" type="STRING" size="256" sumtext="주소변경"/>
- <!-- 결핵 -->
- <Column id="naticd" type="STRING" size="256" sumtext="국적코드"/>
- <Column id="ecntryear" type="STRING" size="256" sumtext="입국일자"/>
- <Column id="ecntrymonth" type="STRING" size="256" sumtext="입국일자"/>
- <Column id="ecntryday" type="STRING" size="256" sumtext="입국일자"/>
- <Column id="residncflag" type="STRING" size="256" sumtext="거주지불명"/>
- <Column id="pastcureflagy" type="STRING" size="256" sumtext="과거치료력"/>
- <Column id="pastcureflagn" type="STRING" size="256" sumtext="과거치료력"/>
- <Column id="cureterm1" type="STRING" size="256" sumtext="치료기간"/>
- <Column id="cureterm2" type="STRING" size="256" sumtext="치료기간"/>
- <Column id="pastcurecnt1" type="STRING" size="256" sumtext="과거 결핵치료횟수"/>
- <Column id="pastcurecnt2" type="STRING" size="256" sumtext="과거 결핵치료횟수"/>
- <Column id="bisiziflagy" type="STRING" size="256" sumtext="비시지반흔"/>
- <Column id="bisiziflagn" type="STRING" size="256" sumtext="비시지반흔"/>
- <Column id="bisiziinocmthd1" type="STRING" size="256" sumtext="비시지접종법"/>
- <Column id="bisiziinocmthd2" type="STRING" size="256" sumtext="비시지접종법"/>
- <Column id="bisiziinocmthd3" type="STRING" size="256" sumtext="비시지접종법"/>
- <Column id="sputumdm1" type="STRING" size="256" sumtext="객담도말검사"/>
- <Column id="sputumdm2" type="STRING" size="256" sumtext="객담도말검사"/>
- <Column id="sputumdm3" type="STRING" size="256" sumtext="객담도말검사"/>
- <Column id="sputumdm4" type="STRING" size="256" sumtext="객담도말검사"/>
- <Column id="sputumdm5" type="STRING" size="256" sumtext="객담도말검사"/>
- <Column id="sputumby1" type="STRING" size="256" sumtext="객담배양검사"/>
- <Column id="sputumby2" type="STRING" size="256" sumtext="객담배양검사"/>
- <Column id="sputumby3" type="STRING" size="256" sumtext="객담배양검사"/>
- <Column id="sputumby4" type="STRING" size="256" sumtext="객담배양검사"/>
- <Column id="sputumby5" type="STRING" size="256" sumtext="객담배양검사"/>
- <Column id="sputumodm1" type="STRING" size="256" sumtext="도말검사"/>
- <Column id="sputumodm2" type="STRING" size="256" sumtext="도말검사"/>
- <Column id="sputumodm3" type="STRING" size="256" sumtext="도말검사"/>
- <Column id="sputumodm4" type="STRING" size="256" sumtext="도말검사"/>
- <Column id="sputumodm5" type="STRING" size="256" sumtext="도말검사"/>
- <Column id="sputumoby1" type="STRING" size="256" sumtext="배양검사"/>
- <Column id="sputumoby2" type="STRING" size="256" sumtext="배양검사"/>
- <Column id="sputumoby3" type="STRING" size="256" sumtext="배양검사"/>
- <Column id="sputumoby4" type="STRING" size="256" sumtext="배양검사"/>
- <Column id="sputumoby5" type="STRING" size="256" sumtext="배양검사"/>
- <Column id="tisstestlag1" type="STRING" size="256" sumtext="조직검사"/>
- <Column id="tisstestlag2" type="STRING" size="256" sumtext="조직검사"/>
- <Column id="tisstestlag3" type="STRING" size="256" sumtext="조직검사"/>
- <Column id="tisstestlag4" type="STRING" size="256" sumtext="조직검사"/>
- <Column id="tisstestlag5" type="STRING" size="256" sumtext="조직검사"/>
- <Column id="etctestflag1" type="STRING" size="256" sumtext="TB-PCR검사"/>
- <Column id="etctestflag2" type="STRING" size="256" sumtext="TB-PCR검사"/>
- <Column id="etctestflag3" type="STRING" size="256" sumtext="TB-PCR검사"/>
- <Column id="etctestflag4" type="STRING" size="256" sumtext="TB-PCR검사"/>
- <Column id="etctestflag5" type="STRING" size="256" sumtext="TB-PCR검사"/>
- <Column id="rayrsltflag1" type="STRING" size="256" sumtext="흉부X선"/>
- <Column id="rayrsltflag2" type="STRING" size="256" sumtext="흉부X선"/>
- <Column id="rayrsltflag3" type="STRING" size="256" sumtext="흉부X선"/>
- <Column id="rayrsltflag4" type="STRING" size="256" sumtext="흉부X선"/>
- <Column id="rayrsltflag5" type="STRING" size="256" sumtext="흉부X선"/>
- <Column id="tooberrsltsize1" type="STRING" size="256" sumtext="병명"/>
- <Column id="solidsize" type="STRING" size="256" sumtext="병명"/>
- <Column id="tooberrsltsize9" type="STRING" size="256" sumtext="병명"/>
- <Column id="diagcd" type="STRING" size="256" sumtext="병명"/>
- <Column id="tpatflag1" type="STRING" size="256" sumtext="환자구분"/>
- <Column id="tpatflag2" type="STRING" size="256" sumtext="환자구분"/>
- <Column id="tpatflag3" type="STRING" size="256" sumtext="환자구분"/>
- <Column id="tpatflag4" type="STRING" size="256" sumtext="환자구분"/>
- <Column id="tpatflag5" type="STRING" size="256" sumtext="환자구분"/>
- <Column id="tpatflag6" type="STRING" size="256" sumtext="환자구분"/>
- <Column id="tpatflag9" type="STRING" size="256" sumtext="환자구분"/>
- <Column id="curefyear" type="STRING" size="256" sumtext="치료시작일"/>
- <Column id="curefmonth" type="STRING" size="256" sumtext="치료시작일"/>
- <Column id="curefday" type="STRING" size="256" sumtext="치료시작일"/>
- <Column id="curetyear" type="STRING" size="256" sumtext="치료종결일"/>
- <Column id="curetmonth" type="STRING" size="256" sumtext="치료종결일"/>
- <Column id="curetday" type="STRING" size="256" sumtext="치료종결일"/>
- <Column id="curersltflag01" type="STRING" size="256" sumtext="치료결과"/>
- <Column id="curersltflag02" type="STRING" size="256" sumtext="치료결과"/>
- <Column id="curersltflag03" type="STRING" size="256" sumtext="치료결과"/>
- <Column id="curersltflag04" type="STRING" size="256" sumtext="치료결과"/>
- <Column id="curersltflag05" type="STRING" size="256" sumtext="치료결과"/>
- <Column id="curersltflag06" type="STRING" size="256" sumtext="치료결과"/>
- <Column id="curersltflag07" type="STRING" size="256" sumtext="치료결과"/>
- <Column id="curersltflag08" type="STRING" size="256" sumtext="치료결과"/>
- <Column id="curersltflag99" type="STRING" size="256" sumtext="치료결과"/>
- <Column id="curedrugcd01" type="STRING" size="256" sumtext="약코드"/>
- <Column id="curedrugcd02" type="STRING" size="256" sumtext="약코드"/>
- <Column id="curedrugcd03" type="STRING" size="256" sumtext="약코드"/>
- <Column id="curedrugcd04" type="STRING" size="256" sumtext="약코드"/>
- <Column id="curedrugcd05" type="STRING" size="256" sumtext="약코드"/>
- <Column id="curedrugcd06" type="STRING" size="256" sumtext="약코드"/>
- <Column id="curedrugcd07" type="STRING" size="256" sumtext="약코드"/>
- <Column id="curedrugcd08" type="STRING" size="256" sumtext="약코드"/>
- <Column id="curedrugcd09" type="STRING" size="256" sumtext="약코드"/>
- <Column id="curedrugcd10" type="STRING" size="256" sumtext="약코드"/>
- <Column id="curedrugcd11" type="STRING" size="256" sumtext="약코드"/>
- <Column id="curedrugcd12" type="STRING" size="256" sumtext="약코드"/>
- <Column id="curedrugcd13" type="STRING" size="256" sumtext="약코드"/>
- <Column id="curedrugcd14" type="STRING" size="256" sumtext="약코드"/>
- <Column id="curedrugcd15" type="STRING" size="256" sumtext="약코드"/>
- <Column id="curedrugcd16" type="STRING" size="256" sumtext="약코드"/>
- <Column id="etccnts" type="STRING" size="256" sumtext="약코드"/>
- <Column id="tmpcol11" type="STRING" size="256" sumtext="IGRA검사"/>
- <Column id="tmpcol21" type="STRING" size="256" sumtext="IGRA검사"/>
- <Column id="tmpcol12" type="STRING" size="256" sumtext="IGRA검사"/>
- <Column id="tmpcol22" type="STRING" size="256" sumtext="IGRA검사"/>
- <Column id="tmpcol13" type="STRING" size="256" sumtext="IGRA검사"/>
- <Column id="tmpcol23" type="STRING" size="256" sumtext="IGRA검사"/>
- <Column id="tmpcol14" type="STRING" size="256" sumtext="IGRA검사"/>
- <Column id="tmpcol31" type="STRING" size="256" sumtext="질병구분"/>
- <Column id="tmpcol32" type="STRING" size="256" sumtext="질병구분"/>
- <Column id="rayrsltdd" type="STRING" size="256" sumtext="흉부X선 검사일자"/>
- <Column id="sputumdmdd" type="STRING" size="256" sumtext="도말검사일자"/>
- <Column id="sputumbydd" type="STRING" size="256" sumtext="배양검사일자"/>
- <Column id="etctestflagdd" type="STRING" size="256" sumtext="TB-PCR검사일자"/>
- <Column id="tisstestlagdd" type="STRING" size="256" sumtext="조직검사일자"/>
- <Column id="rayrsltkind" type="STRING" size="256" sumtext="흉부X선 검사 검체종류"/>
- <Column id="sputumdmkind" type="STRING" size="256" sumtext="도말검사 검체종류"/>
- <Column id="sputumbykind" type="STRING" size="256" sumtext="배양검사 검체종류"/>
- <Column id="etctestflagkind" type="STRING" size="256" sumtext="TB-PCR검사 검체종류"/>
- <Column id="tisstestlagkind" type="STRING" size="256" sumtext="조직검사 검체종류"/>
- <!-- 간염 -->
- <Column id="lglydiscd1" type="STRING" size="256" sumtext="질환명"/>
- <Column id="lglydiscd2" type="STRING" size="256" sumtext="질환명"/>
- <Column id="lglydiscd3" type="STRING" size="256" sumtext="질환명"/>
- <Column id="lglydiscd4" type="STRING" size="256" sumtext="질환명"/>
- <Column id="lglydiscd5" type="STRING" size="256" sumtext="질환명"/>
- <Column id="preinochstflags" type="STRING" size="256" sumtext="예방접종내력"/>
- <Column id="preinochstflagf" type="STRING" size="256" sumtext="예방접종내력"/>
- <Column id="preinochstflagn" type="STRING" size="256" sumtext="예방접종내력"/>
- <Column id="preinochstflagk" type="STRING" size="256" sumtext="예방접종내력"/>
- <!-- 선청성매독 -->
- <Column id="diagmthd01" type="STRING" size="256" sumtext="진단방법"/>
- <Column id="diagmthd02" type="STRING" size="256" sumtext="진단방법"/>
- <Column id="diagmthd03" type="STRING" size="256" sumtext="진단방법"/>
- <Column id="diagmthd04" type="STRING" size="256" sumtext="진단방법"/>
- <Column id="diagmthd05" type="STRING" size="256" sumtext="진단방법"/>
- <Column id="diagmthd06" type="STRING" size="256" sumtext="진단방법"/>
- <Column id="diagmthd99" type="STRING" size="256" sumtext="진단방법"/>
- <!-- 성병 -->
- <Column id="slglydiscd01" type="STRING" size="256" sumtext="질환명"/>
- <Column id="slglydiscd02" type="STRING" size="256" sumtext="질환명"/>
- <Column id="slglydiscd03" type="STRING" size="256" sumtext="질환명"/>
- <Column id="slglydiscd04" type="STRING" size="256" sumtext="질환명"/>
- <Column id="slglydiscd05" type="STRING" size="256" sumtext="질환명"/>
- <Column id="slglydiscd06" type="STRING" size="256" sumtext="질환명"/>
- <Column id="slglydiscd07" type="STRING" size="256" sumtext="질환명"/>
- <Column id="slglydiscd08" type="STRING" size="256" sumtext="질환명"/>
- <Column id="slglydiscd09" type="STRING" size="256" sumtext="질환명"/>
- <Column id="slglydiscd10" type="STRING" size="256" sumtext="질환명"/>
- <Column id="slglydiscd11" type="STRING" size="256" sumtext="질환명"/>
- <Column id="slglydiscd12" type="STRING" size="256" sumtext="질환명"/>
- <Column id="uniqgenetic" type="STRING" size="256" sumtext="질환명"/>
- <!-- 크로이츠펠트-야콥병 -->
- <Column id="patflag21" type="STRING" size="256" sumtext="질환명"/>
- <Column id="patflag22" type="STRING" size="256" sumtext="질환명"/>
- <Column id="dethflag01" type="STRING" size="256" sumtext="질환명"/>
- <Column id="dethflag02" type="STRING" size="256" sumtext="질환명"/>
- <Column id="dethflag03" type="STRING" size="256" sumtext="질환명"/>
- <Column id="dethflag04" type="STRING" size="256" sumtext="질환명"/>
- <Column id="lglykindcd01" type="STRING" size="256" sumtext="질환명"/>
- <Column id="lglykindcd02" type="STRING" size="256" sumtext="질환명"/>
- <Column id="lglykindcd03" type="STRING" size="256" sumtext="질환명"/>
- <Column id="lglykindcd04" type="STRING" size="256" sumtext="질환명"/>
- <Column id="lglykindcd05" type="STRING" size="256" sumtext="질환명"/>
- <Column id="tisstestlagy" type="STRING" size="256" sumtext="질환명"/>
- <Column id="tisstestlagn" type="STRING" size="256" sumtext="질환명"/>
- <Column id="testpartcd01" type="STRING" size="256" sumtext="질환명"/>
- <Column id="testpartcd02" type="STRING" size="256" sumtext="질환명"/>
- <Column id="testpartcd99" type="STRING" size="256" sumtext="질환명"/>
- <Column id="testmthdcd01" type="STRING" size="256" sumtext="질환명"/>
- <Column id="testmthdcd02" type="STRING" size="256" sumtext="질환명"/>
- <Column id="plaqflagcd01" type="STRING" size="256" sumtext="질환명"/>
- <Column id="plaqflagcd02" type="STRING" size="256" sumtext="질환명"/>
- <Column id="brwavetestflagy" type="STRING" size="256" sumtext="질환명"/>
- <Column id="brwavetestflagn" type="STRING" size="256" sumtext="질환명"/>
- <Column id="raytestflagy" type="STRING" size="256" sumtext="질환명"/>
- <Column id="raytestflagn" type="STRING" size="256" sumtext="질환명"/>
- <Column id="crbrfldtestflagy" type="STRING" size="256" sumtext="질환명"/>
- <Column id="crbrfldtestflagn" type="STRING" size="256" sumtext="질환명"/>
- <Column id="prnpagenetestflagy" type="STRING" size="256" sumtext="질환명"/>
- <Column id="prnpagenetestflagn" type="STRING" size="256" sumtext="질환명"/>
- <Column id="codonflag01" type="STRING" size="256" sumtext="질환명"/>
- <Column id="codonflag02" type="STRING" size="256" sumtext="질환명"/>
- <Column id="codonflag03" type="STRING" size="256" sumtext="질환명"/>
- <Column id="codonflag201" type="STRING" size="256" sumtext="질환명"/>
- <Column id="codonflag202" type="STRING" size="256" sumtext="질환명"/>
- <Column id="codonflag203" type="STRING" size="256" sumtext="질환명"/>
- <Column id="dngrcascd01" type="STRING" size="256" sumtext="질환명"/>
- <Column id="dngrcascd02" type="STRING" size="256" sumtext="질환명"/>
- <Column id="dngrcascd03" type="STRING" size="256" sumtext="질환명"/>
- <Column id="dngrcascd04" type="STRING" size="256" sumtext="질환명"/>
- <Column id="dngrcascd05" type="STRING" size="256" sumtext="질환명"/>
- <Column id="dngrcascd06" type="STRING" size="256" sumtext="질환명"/>
- <Column id="dngrcascd07" type="STRING" size="256" sumtext="질환명"/>
- <Column id="dngrcascd08" type="STRING" size="256" sumtext="질환명"/>
- <Column id="dngrcascd09" type="STRING" size="256" sumtext="질환명"/>
- <Column id="dngrcascd99" type="STRING" size="256" sumtext="질환명"/>
- <Column id="estminfcareacdh" type="STRING" size="256" sumtext="질환명"/>
- <Column id="estminfcareacdo" type="STRING" size="256" sumtext="질환명"/>
- <Column id="dethdd" type="STRING" size="256" sumtext="질환명"/>
- <Column id="testpartremcnts" type="STRING" size="256" sumtext="질환명"/>
- <Column id="brwavetestcnts" type="STRING" size="256" sumtext="질환명"/>
- <Column id="raytestcnts" type="STRING" size="256" sumtext="질환명"/>
- <Column id="crbrfldtestcnts" type="STRING" size="256" sumtext="질환명"/>
- <Column id="codonnm" type="STRING" size="256" sumtext="질환명"/>
- <Column id="codoncnts" type="STRING" size="256" sumtext="질환명"/>
- <Column id="lglydiscnts" type="STRING" size="256" sumtext="질환명"/>
- <Column id="dngrcasremcnts" type="STRING" size="256" sumtext="질환명"/>
- <Column id="ecntrytodd" type="STRING" size="256" sumtext="질환명"/>
- <Column id="ecntrydd" type="STRING" size="256" sumtext="질환명"/>
- <Column id="infcnts" type="STRING" size="256" sumtext="질환명"/>
- <Column id="stayterm" type="STRING" size="256" sumtext="체류기간(개월)"/>
- <Column id="staytermday" type="STRING" size="256" sumtext="체류기간(일)"/>
- <!-- 인플루엔자
- <column id="lglydiscd1" ref="lglydisrepttrgtmanlist.lglydiscd1" desc="질환명"/>
- <column id="lglydiscd2" ref="lglydisrepttrgtmanlist.lglydiscd2" desc="질환명"/>
- -->
- <Column id="preinochstflagy" type="STRING" size="256" sumtext="질환명"/>
- <Column id="preinochstflagn" type="STRING" size="256" sumtext="질환명"/>
- <Column id="preinochstflagk" type="STRING" size="256" sumtext="질환명"/>
- <!-- 산모B형간염 -->
- <Column id="preinochstflags" type="STRING" size="256" sumtext="질환명"/>
- <Column id="preinochstflagf" type="STRING" size="256" sumtext="질환명"/>
- <Column id="preinochstflagn" type="STRING" size="256" sumtext="질환명"/>
- <Column id="preinochstflagk" type="STRING" size="256" sumtext="질환명"/>
- <!-- HIV-AIDS -->
- <Column id="fstdiagdd" type="STRING" size="256" sumtext="질환명"/>
- <Column id="matrno" type="STRING" size="256" sumtext="질환명"/>
- <Column id="etctestflag01" type="STRING" size="256" sumtext="질환명"/>
- <Column id="etctestflag02" type="STRING" size="256" sumtext="질환명"/>
- <Column id="etctestflag03" type="STRING" size="256" sumtext="질환명"/>
- <Column id="testrslt1" type="STRING" size="256" sumtext="질환명"/>
- <Column id="testrslt2" type="STRING" size="256" sumtext="질환명"/>
- <Column id="cnfmtestinstcd01" type="STRING" size="256" sumtext="질환명"/>
- <Column id="cnfmtestinstcd02" type="STRING" size="256" sumtext="질환명"/>
- <Column id="cnfmtestinstnm" type="STRING" size="256" sumtext="질환명"/>
- <Column id="estminfcpath01" type="STRING" size="256" sumtext="질환명"/>
- <Column id="estminfcpath02" type="STRING" size="256" sumtext="질환명"/>
- <Column id="estminfcpath03" type="STRING" size="256" sumtext="질환명"/>
- <Column id="estminfcpath04" type="STRING" size="256" sumtext="질환명"/>
- <Column id="estminfcpath05" type="STRING" size="256" sumtext="질환명"/>
- <Column id="estminfcpath06" type="STRING" size="256" sumtext="질환명"/>
- <Column id="estminfcpath99" type="STRING" size="256" sumtext="질환명"/>
- <Column id="estminfcpathremcnts" type="STRING" size="256" sumtext="질환명"/>
- <Column id="dethyn" type="STRING" size="256" sumtext="질환명"/>
- <Column id="diagcd" type="STRING" size="256" sumtext="질환명"/>
- <Column id="diagnm" type="STRING" size="256" sumtext="질환명"/>
- <Column id="dethdd" type="STRING" size="256" sumtext="질환명"/>
- <Column id="relyn" type="STRING" size="256" sumtext="질환명"/>
- <Column id="symp01" type="STRING" size="256" sumtext="질환명"/>
- <Column id="symp02" type="STRING" size="256" sumtext="질환명"/>
- <Column id="symp03" type="STRING" size="256" sumtext="질환명"/>
- <Column id="symp04" type="STRING" size="256" sumtext="질환명"/>
- <Column id="symp05" type="STRING" size="256" sumtext="질환명"/>
- <Column id="symp06" type="STRING" size="256" sumtext="질환명"/>
- <Column id="symp07" type="STRING" size="256" sumtext="질환명"/>
- <Column id="symp08" type="STRING" size="256" sumtext="질환명"/>
- <Column id="symp09" type="STRING" size="256" sumtext="질환명"/>
- <Column id="symp10" type="STRING" size="256" sumtext="질환명"/>
- <Column id="symp11" type="STRING" size="256" sumtext="질환명"/>
- <Column id="symp12" type="STRING" size="256" sumtext="질환명"/>
- <Column id="symp13" type="STRING" size="256" sumtext="질환명"/>
- <Column id="symp14" type="STRING" size="256" sumtext="질환명"/>
- <Column id="symp15" type="STRING" size="256" sumtext="질환명"/>
- <Column id="symp16" type="STRING" size="256" sumtext="질환명"/>
- <Column id="symp17" type="STRING" size="256" sumtext="질환명"/>
- <Column id="symp18" type="STRING" size="256" sumtext="질환명"/>
- <Column id="symp19" type="STRING" size="256" sumtext="질환명"/>
- <Column id="symp20" type="STRING" size="256" sumtext="질환명"/>
- <Column id="symp21" type="STRING" size="256" sumtext="질환명"/>
- <Column id="symp22" type="STRING" size="256" sumtext="질환명"/>
- <Column id="symp23" type="STRING" size="256" sumtext="질환명"/>
- <Column id="symp24" type="STRING" size="256" sumtext="질환명"/>
- <Column id="symp99" type="STRING" size="256" sumtext="질환명"/>
- <Column id="sympremcnts" type="STRING" size="256" sumtext="질환명"/>
- <!-- 수족구병 추가 -->
- <Column id="mdiag" type="STRING" size="256" sumtext="주요진단"/>
- <Column id="sdiag" type="STRING" size="256" sumtext="동반진단"/>
- <Column id="sdiagetc" type="STRING" size="256" sumtext="동반진단기타"/>
- <Column id="symp" type="STRING" size="256" sumtext="주요증상"/>
- <Column id="sympetc" type="STRING" size="256" sumtext="주요증상기타"/>
- <Column id="testcnts" type="STRING" size="256" sumtext="뇌막염환자척수액소견"/>
- <Column id="estminfcpath1" type="STRING" size="256" sumtext="추정감염경로"/>
- <Column id="estminfcpath2" type="STRING" size="256" sumtext="추정감염경로"/>
- <Column id="estminfcpath3" type="STRING" size="256" sumtext="추정감염경로"/>
- <Column id="estminfcpath4" type="STRING" size="256" sumtext="추정감염경로"/>
- <Column id="estminfcareacdh" type="STRING" size="256" sumtext="추정감염지역"/>
- <Column id="estminfcareacdo" type="STRING" size="256" sumtext="추정감염지역"/>
- <Column id="estminfcareanaticd" type="STRING" size="256" sumtext="국명"/>
- <Column id="stayterm" type="STRING" size="256" sumtext="체류기간(개월)"/>
- <Column id="staytermday" type="STRING" size="256" sumtext="체류기간(일)"/>
- <Column id="tisstestlagy" type="STRING" size="256" sumtext="검체채취유무"/>
- <Column id="tisstestlagn" type="STRING" size="256" sumtext="검체채취유무"/>
- <Column id="tisstestdd" type="STRING" size="256" sumtext="검체채취일"/>
- <Column id="matrno" type="STRING" size="256" sumtext="가검물명"/>
- <Column id="matrnoetc" type="STRING" size="256" sumtext="가검물명기타"/>
- <Column id="usremail" type="STRING" size="256" sumtext="EMAIL"/>
- <Column id="ioflag" type="STRING" size="256" sumtext="ioflag"/>
- <!-- 결핵 사망시 추가 -->
- <Column id="dethcascd" type="STRING" size="256" sumtext="dethcascd"/>
- <Column id="dethdd" type="STRING" size="256" sumtext="dethdd"/>
- <Column id="dethresn" type="STRING" size="256" sumtext="dethresn"/>
- <Column id="dethreptstat" type="STRING" size="256" sumtext="사망신고상태"/>
- <Column id="anotheryn" type="STRING" size="256" sumtext="사망신고상태"/>
- <Column id="faclt" type="STRING" size="256"/>
- <Column id="facltaddr" type="STRING" size="256"/>
- <Column id="tbclkindcd" type="STRING" size="256"/>
- <Column id="cureenddd" type="STRING" size="256"/>
- <Column id="curersltflagdiag" type="STRING" size="256"/>
- <Column id="antutbclrslt" type="STRING" size="256"/>
- <Column id="antutbclrsltdetl" type="STRING" size="256"/>
- <Column id="antutbclrsltdetldesc" type="STRING" size="256"/>
- <Column id="antutbclmthd" type="STRING" size="256"/>
- <Column id="antutbclcd" type="STRING" size="256"/>
- <Column id="xpert" type="STRING" size="256"/>
- <Column id="xpertdd" type="STRING" size="256"/>
- <Column id="xpertkind" type="STRING" size="256"/>
- <Column id="curedrugcdtxt" type="STRING" size="256"/>
- <Column id="spcacptdt" type="STRING" size="256"/>
- <Column id="antutbcldrug" type="STRING" size="256"/>
- <Column id="antutbcldrugtxt" type="STRING" size="256"/>
- <Column id="tbclkindcd02" type="STRING" size="256"/>
- <Column id="tbclkindcd03" type="STRING" size="256"/>
- <Column id="clispeaoccurdate" type="STRING" size="256"/>
- <Column id="clispeagatherdate" type="STRING" size="256"/>
- <Column id="clispeaname" type="STRING" size="256"/>
- <Column id="clispeagathercount" type="STRING" size="256"/>
- <Column id="clispeaopinion" type="STRING" size="256"/>
- <Column id="clamprsdnm" type="STRING" size="256"/>
- <Column id="clispebtype" type="STRING" size="256"/>
- <Column id="clispebtypeetc" type="STRING" size="256"/>
- <Column id="clispebtravel" type="STRING" size="256"/>
- <Column id="clispebsymptom" type="STRING" size="256"/>
- <Column id="clispebsymptometc" type="STRING" size="256"/>
- <Column id="clispebcontact" type="STRING" size="256"/>
- <Column id="clispebcontactetc" type="STRING" size="256"/>
- <Column id="clispebcontactafter" type="STRING" size="256"/>
- <Column id="clispecpregnancy" type="STRING" size="256"/>
- <Column id="clispecpregnancyweek" type="STRING" size="256"/>
- <Column id="clispectravelperiodstart" type="STRING" size="256"/>
- <Column id="clispectravelperiodend" type="STRING" size="256"/>
- <Column id="clispecvaccine" type="STRING" size="256"/>
- <Column id="tpatflag7" type="STRING" size="256" sumtext="환자구분"/>
- <Column id="tpatflag8" type="STRING" size="256" sumtext="환자구분"/>
- <Column id="clispealglyetcdisnm" type="STRING" size="256" sumtext="검체시험의뢰서 감염병명 기타"/>
- <Column id="clispealglytest" type="STRING" size="256" sumtext="검체시험의뢰서 시험항목"/>
- <Column id="tlglydiscd108" type="STRING" size="256"/>
- <Column id="tlglydiscd109" type="STRING" size="256"/>
- <Column id="tlglydiscd110" type="STRING" size="256"/>
- <Column id="tlglydiscd111" type="STRING" size="256"/>
- <Column id="tlglydiscd112" type="STRING" size="256"/>
- <Column id="tlglydiscd113" type="STRING" size="256"/>
- <Column id="tlglydiscd213" type="STRING" size="256"/>
- <Column id="tlglydiscd214" type="STRING" size="256"/>
- <Column id="tlglydiscd323" type="STRING" size="256"/>
- </ColumnInfo>
- <Rows>
- <Row/>
- </Rows>
- </Dataset>
- <Dataset id="ds_main_cond" firefirstcount="0" firenextcount="0" useclientlayout="true" updatecontrol="true" enableevent="true" loadkeymode="keep" loadfiltermode="keep" reversesubsum="false">
- <ColumnInfo>
- <Column id="trgtmankind" type="STRING" size="256"/>
- <Column id="reptstat" type="STRING" size="256"/>
- <Column id="fromdd" type="STRING" size="256"/>
- <Column id="todd" type="STRING" size="256"/>
- <Column id="orddept" type="STRING" size="256"/>
- <Column id="orddr" type="STRING" size="256"/>
- <Column id="instcd" type="STRING" size="256"/>
- <Column id="delyn" type="STRING" size="256"/>
- <Column id="pid" type="STRING" size="256"/>
- <Column id="hngnm" type="STRING" size="256"/>
- <Column id="orddrid" type="STRING" size="256"/>
- <Column id="slglydiscd" type="STRING" size="256"/>
- <Column id="name" type="STRING" size="256"/>
- <Column id="wrtedt" type="STRING" size="256"/>
- <Column id="seqno" type="STRING" size="256"/>
- <Column id="trgtmankind02flag" type="STRING" size="256"/>
- </ColumnInfo>
- <Rows>
- <Row>
- <Col id="trgtmankind">00</Col>
- <Col id="reptstat">M</Col>
- <Col id="delyn">N</Col>
- </Row>
- </Rows>
- </Dataset>
- <Dataset id="ds_main_sortcond" firefirstcount="0" firenextcount="0" useclientlayout="false" updatecontrol="true" enableevent="true" loadkeymode="keep" loadfiltermode="keep" reversesubsum="false">
- <ColumnInfo>
- <Column id="sort1" type="STRING" size="256"/>
- <Column id="cond1" type="STRING" size="256"/>
- <Column id="cond2" type="STRING" size="256"/>
- <Column id="sort2" type="STRING" size="256"/>
- <Column id="cond3" type="STRING" size="256"/>
- <Column id="cond4" type="STRING" size="256"/>
- <Column id="sort3" type="STRING" size="256"/>
- <Column id="cond5" type="STRING" size="256"/>
- <Column id="cond6" type="STRING" size="256"/>
- <Column id="sort4" type="STRING" size="256"/>
- <Column id="cond7" type="STRING" size="256"/>
- <Column id="cond8" type="STRING" size="256"/>
- <Column id="sort5" type="STRING" size="256"/>
- <Column id="cond9" type="STRING" size="256"/>
- <Column id="cond10" type="STRING" size="256"/>
- </ColumnInfo>
- <Rows>
- <Row>
- <Col id="sort1">1</Col>
- <Col id="cond1">0</Col>
- <Col id="cond2">_</Col>
- <Col id="sort2">2</Col>
- <Col id="cond3">0</Col>
- <Col id="cond4">-</Col>
- <Col id="sort3">3</Col>
- <Col id="cond5">0</Col>
- <Col id="cond6">-</Col>
- <Col id="sort4">4</Col>
- <Col id="cond7">0</Col>
- <Col id="cond8">-</Col>
- <Col id="sort5">5</Col>
- <Col id="cond9">0</Col>
- <Col id="cond10">-</Col>
- </Row>
- </Rows>
- </Dataset>
- <Dataset id="ds_main_paminfo" firefirstcount="0" firenextcount="0" useclientlayout="false" updatecontrol="true" enableevent="true" loadkeymode="keep" loadfiltermode="keep" reversesubsum="false"/>
- <Dataset id="ds_main_userinfo" firefirstcount="0" firenextcount="0" useclientlayout="false" updatecontrol="true" enableevent="true" loadkeymode="keep" loadfiltermode="keep" reversesubsum="false"/>
- <Dataset id="ds_send_reqdata" firefirstcount="0" firenextcount="0" useclientlayout="false" updatecontrol="true" enableevent="true" loadkeymode="keep" loadfiltermode="keep" reversesubsum="false"/>
- <Dataset id="ds_send_savedata" firefirstcount="0" firenextcount="0" useclientlayout="false" updatecontrol="true" enableevent="true" loadkeymode="keep" loadfiltermode="keep" reversesubsum="false"/>
- <Dataset id="ds_send_searchdata" firefirstcount="0" firenextcount="0" useclientlayout="false" updatecontrol="true" enableevent="true" loadkeymode="keep" loadfiltermode="keep" reversesubsum="false"/>
- <Dataset id="ds_hidden_tmplists" firefirstcount="0" firenextcount="0" useclientlayout="false" updatecontrol="true" enableevent="true" loadkeymode="keep" loadfiltermode="keep" reversesubsum="false"/>
- <Dataset id="ds_hidden_lglydisrepttrgtmaninfo_temp" firefirstcount="0" firenextcount="0" useclientlayout="false" updatecontrol="true" enableevent="true" loadkeymode="keep" loadfiltermode="keep" reversesubsum="false"/>
- <Dataset id="ds_init_hardcd" firefirstcount="0" firenextcount="0" useclientlayout="false" updatecontrol="true" enableevent="true" loadkeymode="keep" loadfiltermode="keep" reversesubsum="false"/>
- <Dataset id="ds_temp_reptrsltinfo" firefirstcount="0" firenextcount="0" useclientlayout="false" updatecontrol="true" enableevent="true" loadkeymode="keep" loadfiltermode="keep" reversesubsum="false"/>
- <Dataset id="ds_temp_getlglydisinfo" firefirstcount="0" firenextcount="0" useclientlayout="false" updatecontrol="true" enableevent="true" loadkeymode="keep" loadfiltermode="keep" reversesubsum="false"/>
- <Dataset id="ds_temp" firefirstcount="0" firenextcount="0" useclientlayout="false" updatecontrol="true" enableevent="true" loadkeymode="keep" loadfiltermode="keep" reversesubsum="false"/>
- <Dataset id="ds_hidden_orddeptlist" firefirstcount="0" firenextcount="0" useclientlayout="false" updatecontrol="true" enableevent="true" loadkeymode="keep" loadfiltermode="keep" reversesubsum="false">
- <ColumnInfo>
- <Column id="deptcd" type="STRING" size="256"/>
- <Column id="depthngnm" type="STRING" size="256"/>
- </ColumnInfo>
- </Dataset>
- <Dataset id="ds_hidden_userlist" firefirstcount="0" firenextcount="0" useclientlayout="false" updatecontrol="true" enableevent="true" loadkeymode="keep" loadfiltermode="keep" reversesubsum="false">
- <ColumnInfo>
- <Column id="userid" type="STRING" size="256"/>
- <Column id="usernm" type="STRING" size="256"/>
- </ColumnInfo>
- </Dataset>
- <Dataset id="ds_send_cond" firefirstcount="0" firenextcount="0" useclientlayout="false" updatecontrol="true" enableevent="true" loadkeymode="keep" loadfiltermode="keep" reversesubsum="false"/>
- <Dataset id="ds_init_infcmasterdept" firefirstcount="0" firenextcount="0" useclientlayout="false" updatecontrol="true" enableevent="true" loadkeymode="keep" loadfiltermode="keep" reversesubsum="false"/>
- <Dataset id="ds_hidden_searchlist" firefirstcount="0" firenextcount="0" useclientlayout="false" updatecontrol="true" enableevent="true" loadkeymode="keep" loadfiltermode="keep" reversesubsum="false"/>
- <Dataset id="ds_reptstat" firefirstcount="0" firenextcount="0" useclientlayout="false" updatecontrol="true" enableevent="true" loadkeymode="keep" loadfiltermode="keep" reversesubsum="false">
- <ColumnInfo>
- <Column id="cdid" type="STRING" size="256"/>
- <Column id="cdnm" type="STRING" size="256"/>
- </ColumnInfo>
- <Rows>
- <Row>
- <Col id="cdid">R</Col>
- <Col id="cdnm">신고</Col>
- </Row>
- <Row>
- <Col id="cdid">M</Col>
- <Col id="cdnm">미신고</Col>
- </Row>
- <Row>
- <Col id="cdid">E</Col>
- <Col id="cdnm">제외</Col>
- </Row>
- <Row>
- <Col id="cdid"/>
- <Col id="cdnm"/>
- </Row>
- </Rows>
- </Dataset>
- <Dataset id="ds_main_patinfo" firefirstcount="0" firenextcount="0" useclientlayout="false" updatecontrol="true" enableevent="true" loadkeymode="keep" loadfiltermode="keep" reversesubsum="false"/>
- <Dataset id="ds_temp_patinfo" firefirstcount="0" firenextcount="0" useclientlayout="false" updatecontrol="true" enableevent="true" loadkeymode="keep" loadfiltermode="keep" reversesubsum="false">
- <ColumnInfo>
- <Column id="srchcond" type="STRING" size="256"/>
- <Column id="hngnm" type="STRING" size="256"/>
- <Column id="pid" type="STRING" size="256"/>
- </ColumnInfo>
- <Rows>
- <Row/>
- </Rows>
- </Dataset>
- <Dataset id="ds_temp_lgly" firefirstcount="0" firenextcount="0" useclientlayout="false" updatecontrol="true" enableevent="true" loadkeymode="keep" loadfiltermode="keep" reversesubsum="false"/>
- <Dataset id="ds_temp_lglydisrepttrgtmaninfo" firefirstcount="0" firenextcount="0" useclientlayout="false" updatecontrol="true" enableevent="true" loadkeymode="keep" reversesubsum="false">
- <ColumnInfo>
- <Column id="select" type="STRING" size="256" sumtext="select"/>
- <Column id="reptdt" type="STRING" size="256" sumtext="출력일자"/>
- <Column id="reptstat" type="STRING" size="256" sumtext="상태"/>
- <Column id="reptdtnm" type="STRING" size="256" sumtext="출력상태"/>
- <Column id="pid" type="STRING" size="256" sumtext="등록번호"/>
- <Column id="name" type="STRING" size="256" sumtext="성명"/>
- <Column id="sex" type="STRING" size="256" sumtext="성별"/>
- <Column id="sex1" type="STRING" size="256" sumtext="성별"/>
- <Column id="sex2" type="STRING" size="256" sumtext="성별"/>
- <Column id="rrgstno1" type="STRING" size="256" sumtext="성별"/>
- <Column id="rrgstno2" type="STRING" size="256" sumtext="성별"/>
- <Column id="age" type="STRING" size="256" sumtext="나이"/>
- <Column id="orddd" type="STRING" size="256" sumtext="진료일자"/>
- <Column id="deptcd" type="STRING" size="256" sumtext="임상과코드"/>
- <Column id="deptnm" type="STRING" size="256" sumtext="임상과이름"/>
- <Column id="specdr" type="STRING" size="256" sumtext="특진의"/>
- <Column id="orddr" type="STRING" size="256" sumtext="진료의"/>
- <Column id="lglydiscd" type="STRING" size="256" sumtext="법정전염병코드"/>
- <Column id="lglydisnm" type="STRING" size="256" sumtext="법정전염병명"/>
- <Column id="wardcd" type="STRING" size="256" sumtext="병동"/>
- <Column id="roomcd" type="STRING" size="256" sumtext="병실"/>
- <Column id="indd" type="STRING" size="256" sumtext="입원일자"/>
- <Column id="dschdd" type="STRING" size="256" sumtext="퇴원일자"/>
- <Column id="wrtedt" type="STRING" size="256" sumtext="작성일자"/>
- <Column id="seqno" type="STRING" size="256" sumtext="법정일련번호"/>
- <Column id="cretno" type="STRING" size="256" sumtext="생성번호"/>
- <Column id="iseqno" type="STRING" size="256" sumtext="입원seqno"/>
- <Column id="upwrtedt" type="STRING" size="256" sumtext="작성일시"/>
- <Column id="jobcd" type="STRING" size="256" sumtext="직업코드"/>
- <Column id="jobnm" type="STRING" size="256" sumtext="직업코드"/>
- <!-- 공통 -->
- <Column id="reptyear" type="STRING" size="256" sumtext="보고일"/>
- <Column id="reptmonth" type="STRING" size="256" sumtext="년"/>
- <Column id="reptday" type="STRING" size="256" sumtext="월"/>
- <Column id="diagdd" type="STRING" size="256" sumtext="진단일"/>
- <Column id="diagyear" type="STRING" size="256" sumtext="년"/>
- <Column id="diagmonth" type="STRING" size="256" sumtext="월"/>
- <Column id="diagday" type="STRING" size="256" sumtext="일"/>
- <Column id="brthdd" type="STRING" size="256" sumtext="생년월일"/>
- <Column id="brthyear" type="STRING" size="256" sumtext="년"/>
- <Column id="brthmonth" type="STRING" size="256" sumtext="월"/>
- <Column id="brthday" type="STRING" size="256" sumtext="일"/>
- <Column id="rrgstno" type="STRING" size="256" sumtext="주민번호"/>
- <Column id="rrgstno1" type="STRING" size="256" sumtext="주민번호앞"/>
- <Column id="rrgstno2" type="STRING" size="256" sumtext="주민번호뒤"/>
- <Column id="patflag1" type="STRING" size="256" sumtext="환자구분"/>
- <Column id="patflag2" type="STRING" size="256" sumtext="환자구분"/>
- <Column id="patflag3" type="STRING" size="256" sumtext="환자구분"/>
- <Column id="procernm" type="STRING" size="256" sumtext="보호자성명"/>
- <Column id="zipcd1" type="STRING" size="256" sumtext="우편번호"/>
- <Column id="zipcd2" type="STRING" size="256" sumtext="우편번호"/>
- <Column id="hometel" type="STRING" size="256" sumtext="전화번호"/>
- <Column id="mpphontel" type="STRING" size="256" sumtext="핸드폰번호"/>
- <Column id="detladdr" type="STRING" size="256" sumtext="주소"/>
- <Column id="licnsno" type="STRING" size="256" sumtext="면허번호"/>
- <Column id="hospnm" type="STRING" size="256" sumtext="병원명"/>
- <Column id="reprtel1" type="STRING" size="256" sumtext="전화?호"/>
- <Column id="hosaddr1" type="STRING" size="256" sumtext="병원주소"/>
- <Column id="hosaddr2" type="STRING" size="256" sumtext="병원주소"/>
- <Column id="hoszipcd" type="STRING" size="256" sumtext="병원주소"/>
- <Column id="proccorpcd" type="STRING" size="256" sumtext="요양기관번호"/>
- <Column id="shthospnm" type="STRING" size="256" sumtext="요양기관번호"/>
- <Column id="reprfaxno" type="STRING" size="256" sumtext="요양기관번호"/>
- <Column id="etcdetlnm" type="STRING" size="256" sumtext="감염관리실 담당자"/>
- <Column id="etcdeptnm" type="STRING" size="256" sumtext="법정전염병신고담당부서"/>
- <Column id="attackdd" type="STRING" size="256" sumtext="발병일자"/>
- <Column id="etcnts1" type="STRING" size="256" sumtext="질환명"/>
- <Column id="etcnts2" type="STRING" size="256" sumtext="질환명"/>
- <Column id="etcnts3" type="STRING" size="256" sumtext="질환명"/>
- <Column id="cnclyn" type="STRING" size="256" sumtext="삭제여부(20091113 JJE 추가)"/>
- <Column id="state" type="STRING" size="256" sumtext="상태(20091113 JJE 추가)"/>
- <Column id="psnflag" type="STRING" size="256" sumtext="IO구분(20091113 JJE 추가)"/>
- <Column id="reptflag" type="STRING" size="256" sumtext="신고서종류(20091113 JJE 추가)"/>
- <!-- 법정전염병 -->
- <Column id="residncflag" type="STRING" size="256" sumtext="거주지불명"/>
- <Column id="idflag" type="STRING" size="256" sumtext="신원미상"/>
- <Column id="tlglydiscd101" type="STRING" size="256" sumtext="전염병명"/>
- <Column id="tlglydiscd102" type="STRING" size="256" sumtext="전염병명"/>
- <Column id="tlglydiscd103" type="STRING" size="256" sumtext="전염병명"/>
- <Column id="tlglydiscd104" type="STRING" size="256" sumtext="전염병명"/>
- <Column id="tlglydiscd105" type="STRING" size="256" sumtext="전염병명"/>
- <Column id="tlglydiscd106" type="STRING" size="256" sumtext="전염병명"/>
- <Column id="tlglydiscd107" type="STRING" size="256" sumtext="전염병명"/>
- <Column id="tlglydiscd201" type="STRING" size="256" sumtext="전염병명"/>
- <Column id="tlglydiscd202" type="STRING" size="256" sumtext="전염병명"/>
- <Column id="tlglydiscd203" type="STRING" size="256" sumtext="전염병명"/>
- <Column id="tlglydiscd204" type="STRING" size="256" sumtext="전염병명"/>
- <Column id="tlglydiscd205" type="STRING" size="256" sumtext="전염병명"/>
- <Column id="tlglydiscd206" type="STRING" size="256" sumtext="전염병명"/>
- <Column id="tlglydiscd207" type="STRING" size="256" sumtext="전염병명"/>
- <Column id="tlglydiscd208" type="STRING" size="256" sumtext="전염병명"/>
- <Column id="tlglydiscd209" type="STRING" size="256" sumtext="전염병명"/>
- <Column id="tlglydiscd210" type="STRING" size="256" sumtext="전염병명"/>
- <Column id="tlglydiscd211" type="STRING" size="256" sumtext="전염병명"/>
- <Column id="tlglydiscd212" type="STRING" size="256" sumtext="전염병명"/>
- <Column id="tlglydiscd301" type="STRING" size="256" sumtext="전염병명"/>
- <Column id="tlglydiscd302" type="STRING" size="256" sumtext="전염병명"/>
- <Column id="tlglydiscd303" type="STRING" size="256" sumtext="전염병명"/>
- <Column id="tlglydiscd304" type="STRING" size="256" sumtext="전염병명"/>
- <Column id="tlglydiscd305" type="STRING" size="256" sumtext="전염병명"/>
- <Column id="tlglydiscd306" type="STRING" size="256" sumtext="전염병명"/>
- <Column id="tlglydiscd307" type="STRING" size="256" sumtext="전염병명"/>
- <Column id="tlglydiscd308" type="STRING" size="256" sumtext="전염병명"/>
- <Column id="tlglydiscd309" type="STRING" size="256" sumtext="전염병명"/>
- <Column id="tlglydiscd310" type="STRING" size="256" sumtext="전염병명"/>
- <Column id="tlglydiscd311" type="STRING" size="256" sumtext="전염병명"/>
- <Column id="tlglydiscd312" type="STRING" size="256" sumtext="전염병명"/>
- <Column id="tlglydiscd313" type="STRING" size="256" sumtext="전염병명"/>
- <Column id="tlglydiscd314" type="STRING" size="256" sumtext="전염병명"/>
- <Column id="tlglydiscd315" type="STRING" size="256" sumtext="전염병명"/>
- <Column id="tlglydiscd316" type="STRING" size="256" sumtext="전염병명"/>
- <Column id="tlglydiscd317" type="STRING" size="256" sumtext="전염병명"/>
- <Column id="tlglydiscd318" type="STRING" size="256" sumtext="전염병명"/>
- <Column id="tlglydiscd319" type="STRING" size="256" sumtext="전염병명"/>
- <Column id="tlglydiscd320" type="STRING" size="256" sumtext="전염병명"/>
- <Column id="tlglydiscd321" type="STRING" size="256" sumtext="전염병명"/>
- <Column id="tlglydiscd401" type="STRING" size="256" sumtext="전염병명"/>
- <Column id="tlglydiscd402" type="STRING" size="256" sumtext="전염병명"/>
- <Column id="tlglydiscd403" type="STRING" size="256" sumtext="전염병명"/>
- <Column id="tlglydiscd404" type="STRING" size="256" sumtext="전염병명"/>
- <Column id="tlglydiscd405" type="STRING" size="256" sumtext="전염병명"/>
- <Column id="tlglydiscd406" type="STRING" size="256" sumtext="전염병명"/>
- <Column id="tlglydiscd407" type="STRING" size="256" sumtext="전염병명"/>
- <Column id="tlglydiscd408" type="STRING" size="256" sumtext="전염병명"/>
- <Column id="tlglydiscd409" type="STRING" size="256" sumtext="전염병명"/>
- <Column id="tlglydiscd410" type="STRING" size="256" sumtext="전염병명"/>
- <Column id="tlglydiscd411" type="STRING" size="256" sumtext="전염병명"/>
- <Column id="tlglydiscd412" type="STRING" size="256" sumtext="전염병명"/>
- <Column id="tlglydiscd413" type="STRING" size="256" sumtext="전염병명"/>
- <Column id="tlglydiscd414" type="STRING" size="256" sumtext="전염병명"/>
- <Column id="tlglydiscd415" type="STRING" size="256" sumtext="전염병명"/>
- <Column id="tlglydiscd416" type="STRING" size="256" sumtext="전염병명"/>
- <Column id="tlglydiscd417" type="STRING" size="256" sumtext="전염병명"/>
- <Column id="tlglydiscd418" type="STRING" size="256" sumtext="전염병명"/>
- <Column id="tlglydiscd419" type="STRING" size="256" sumtext="전염병명"/>
- <Column id="tlglydiscd420" type="STRING" size="256" sumtext="전염병명"/>
- <Column id="tlglydiscd421" type="STRING" size="256" sumtext="전염병명"/>
- <Column id="tlglydiscd422" type="STRING" size="256" sumtext="전염병명"/>
- <Column id="tlglydiscd423" type="STRING" size="256" sumtext="전염병명"/>
- <Column id="tlglydiscd424" type="STRING" size="256" sumtext="전염병명"/>
- <Column id="tlglydiscd425" type="STRING" size="256" sumtext="전염병명"/>
- <Column id="tlglydiscd426" type="STRING" size="256" sumtext="전염병명"/>
- <Column id="tlglydiscd499" type="STRING" size="256" sumtext="전염병명"/>
- <Column id="tlglydiscd502" type="STRING" size="256" sumtext="전염병명"/>
- <Column id="tlglydiscd503" type="STRING" size="256" sumtext="전염병명"/>
- <Column id="tlglydiscd504" type="STRING" size="256" sumtext="전염병명"/>
- <Column id="symp" type="STRING" size="256" sumtext="신종전염병증후군(증상 및 징후)"/>
- <Column id="tlglydiscd999" type="STRING" size="256" sumtext="전염병명(지정)"/>
- <Column id="diagnm" type="STRING" size="256" sumtext="지정명"/>
- <Column id="attackyear" type="STRING" size="256" sumtext="발병일"/>
- <Column id="attackmonth" type="STRING" size="256" sumtext="발병일"/>
- <Column id="attackday" type="STRING" size="256" sumtext="발병일"/>
- <Column id="cnfsnwtstrslt1" type="STRING" size="256" sumtext="확진검사결과"/>
- <Column id="cnfsnwtstrslt2" type="STRING" size="256" sumtext="확진검사결과"/>
- <Column id="cnfsnwtstrslt3" type="STRING" size="256" sumtext="확진검사결과"/>
- <Column id="cnfsnwtstrslt9" type="STRING" size="256" sumtext="확진검사결과"/>
- <Column id="dethn" type="STRING" size="256" sumtext="사망여부"/>
- <Column id="dethy" type="STRING" size="256" sumtext="사망여부"/>
- <Column id="estminfcpath1" type="STRING" size="256" sumtext="추정감염경로"/>
- <Column id="estminfcpath2" type="STRING" size="256" sumtext="추정감염경로"/>
- <Column id="estminfcpath3" type="STRING" size="256" sumtext="추정감염경로"/>
- <Column id="estminfcpath4" type="STRING" size="256" sumtext="추정감염경로"/>
- <Column id="estminfcareacdh" type="STRING" size="256" sumtext="추정감염지역"/>
- <Column id="estminfcareacdo" type="STRING" size="256" sumtext="추정감염지역"/>
- <Column id="estminfcareanaticd" type="STRING" size="256" sumtext="국명"/>
- <Column id="stayterm" type="STRING" size="256" sumtext="체류기간(개월)"/>
- <Column id="staytermday" type="STRING" size="256" sumtext="체류기간(일)"/>
- <Column id="chngreptkind1" type="STRING" size="256" sumtext="변경신고"/>
- <Column id="chngreptkind2" type="STRING" size="256" sumtext="변경신고"/>
- <Column id="chngreptkind3" type="STRING" size="256" sumtext="변경신고"/>
- <Column id="chngreptkind4" type="STRING" size="256" sumtext="변경신고"/>
- <Column id="updtreptcnts" type="STRING" size="256" sumtext="주소변경"/>
- <!-- 결핵 -->
- <Column id="naticd" type="STRING" size="256" sumtext="국적코드"/>
- <Column id="ecntryear" type="STRING" size="256" sumtext="입국일자"/>
- <Column id="ecntrymonth" type="STRING" size="256" sumtext="입국일자"/>
- <Column id="ecntryday" type="STRING" size="256" sumtext="입국일자"/>
- <Column id="residncflag" type="STRING" size="256" sumtext="거주지불명"/>
- <Column id="pastcureflagy" type="STRING" size="256" sumtext="과거치료력"/>
- <Column id="pastcureflagn" type="STRING" size="256" sumtext="과거치료력"/>
- <Column id="cureterm1" type="STRING" size="256" sumtext="치료기간"/>
- <Column id="cureterm2" type="STRING" size="256" sumtext="치료기간"/>
- <Column id="pastcurecnt1" type="STRING" size="256" sumtext="과거 결핵치료횟수"/>
- <Column id="pastcurecnt2" type="STRING" size="256" sumtext="과거 결핵치료횟수"/>
- <Column id="bisiziflagy" type="STRING" size="256" sumtext="비시지반흔"/>
- <Column id="bisiziflagn" type="STRING" size="256" sumtext="비시지반흔"/>
- <Column id="bisiziinocmthd1" type="STRING" size="256" sumtext="비시지접종법"/>
- <Column id="bisiziinocmthd2" type="STRING" size="256" sumtext="비시지접종법"/>
- <Column id="bisiziinocmthd3" type="STRING" size="256" sumtext="비시지접종법"/>
- <Column id="sputumdm1" type="STRING" size="256" sumtext="객담도말검사"/>
- <Column id="sputumdm2" type="STRING" size="256" sumtext="객담도말검사"/>
- <Column id="sputumdm3" type="STRING" size="256" sumtext="객담도말검사"/>
- <Column id="sputumdm4" type="STRING" size="256" sumtext="객담도말검사"/>
- <Column id="sputumdm5" type="STRING" size="256" sumtext="객담도말검사"/>
- <Column id="sputumby1" type="STRING" size="256" sumtext="객담배양검사"/>
- <Column id="sputumby2" type="STRING" size="256" sumtext="객담배양검사"/>
- <Column id="sputumby3" type="STRING" size="256" sumtext="객담배양검사"/>
- <Column id="sputumby4" type="STRING" size="256" sumtext="객담배양검사"/>
- <Column id="sputumby5" type="STRING" size="256" sumtext="객담배양검사"/>
- <Column id="sputumodm1" type="STRING" size="256" sumtext="도말검사"/>
- <Column id="sputumodm2" type="STRING" size="256" sumtext="도말검사"/>
- <Column id="sputumodm3" type="STRING" size="256" sumtext="도말검사"/>
- <Column id="sputumodm4" type="STRING" size="256" sumtext="도말검사"/>
- <Column id="sputumodm5" type="STRING" size="256" sumtext="도말검사"/>
- <Column id="sputumoby1" type="STRING" size="256" sumtext="배양검사"/>
- <Column id="sputumoby2" type="STRING" size="256" sumtext="배양검사"/>
- <Column id="sputumoby3" type="STRING" size="256" sumtext="배양검사"/>
- <Column id="sputumoby4" type="STRING" size="256" sumtext="배양검사"/>
- <Column id="sputumoby5" type="STRING" size="256" sumtext="배양검사"/>
- <Column id="tisstestlag1" type="STRING" size="256" sumtext="조직검사"/>
- <Column id="tisstestlag2" type="STRING" size="256" sumtext="조직검사"/>
- <Column id="tisstestlag3" type="STRING" size="256" sumtext="조직검사"/>
- <Column id="tisstestlag4" type="STRING" size="256" sumtext="조직검사"/>
- <Column id="tisstestlag5" type="STRING" size="256" sumtext="조직검사"/>
- <Column id="etctestflag1" type="STRING" size="256" sumtext="TB-PCR검사"/>
- <Column id="etctestflag2" type="STRING" size="256" sumtext="TB-PCR검사"/>
- <Column id="etctestflag3" type="STRING" size="256" sumtext="TB-PCR검사"/>
- <Column id="etctestflag4" type="STRING" size="256" sumtext="TB-PCR검사"/>
- <Column id="etctestflag5" type="STRING" size="256" sumtext="TB-PCR검사"/>
- <Column id="rayrsltflag1" type="STRING" size="256" sumtext="흉부X선"/>
- <Column id="rayrsltflag2" type="STRING" size="256" sumtext="흉부X선"/>
- <Column id="rayrsltflag3" type="STRING" size="256" sumtext="흉부X선"/>
- <Column id="rayrsltflag4" type="STRING" size="256" sumtext="흉부X선"/>
- <Column id="rayrsltflag5" type="STRING" size="256" sumtext="흉부X선"/>
- <Column id="tooberrsltsize1" type="STRING" size="256" sumtext="병명"/>
- <Column id="solidsize" type="STRING" size="256" sumtext="병명"/>
- <Column id="tooberrsltsize9" type="STRING" size="256" sumtext="병명"/>
- <Column id="diagcd" type="STRING" size="256" sumtext="병명"/>
- <Column id="tpatflag1" type="STRING" size="256" sumtext="환자구분"/>
- <Column id="tpatflag2" type="STRING" size="256" sumtext="환자구분"/>
- <Column id="tpatflag3" type="STRING" size="256" sumtext="환자구분"/>
- <Column id="tpatflag4" type="STRING" size="256" sumtext="환자구분"/>
- <Column id="tpatflag5" type="STRING" size="256" sumtext="환자구분"/>
- <Column id="tpatflag6" type="STRING" size="256" sumtext="환자구분"/>
- <Column id="tpatflag9" type="STRING" size="256" sumtext="환자구분"/>
- <Column id="curefyear" type="STRING" size="256" sumtext="치료시작일"/>
- <Column id="curefmonth" type="STRING" size="256" sumtext="치료시작일"/>
- <Column id="curefday" type="STRING" size="256" sumtext="치료시작일"/>
- <Column id="curetyear" type="STRING" size="256" sumtext="치료종결일"/>
- <Column id="curetmonth" type="STRING" size="256" sumtext="치료종결일"/>
- <Column id="curetday" type="STRING" size="256" sumtext="치료종결일"/>
- <Column id="curersltflag01" type="STRING" size="256" sumtext="치료결과"/>
- <Column id="curersltflag02" type="STRING" size="256" sumtext="치료결과"/>
- <Column id="curersltflag03" type="STRING" size="256" sumtext="치료결과"/>
- <Column id="curersltflag04" type="STRING" size="256" sumtext="치료결과"/>
- <Column id="curersltflag05" type="STRING" size="256" sumtext="치료결과"/>
- <Column id="curersltflag06" type="STRING" size="256" sumtext="치료결과"/>
- <Column id="curersltflag07" type="STRING" size="256" sumtext="치료결과"/>
- <Column id="curersltflag08" type="STRING" size="256" sumtext="치료결과"/>
- <Column id="curersltflag99" type="STRING" size="256" sumtext="치료결과"/>
- <Column id="curedrugcd01" type="STRING" size="256" sumtext="약코드"/>
- <Column id="curedrugcd02" type="STRING" size="256" sumtext="약코드"/>
- <Column id="curedrugcd03" type="STRING" size="256" sumtext="약코드"/>
- <Column id="curedrugcd04" type="STRING" size="256" sumtext="약코드"/>
- <Column id="curedrugcd05" type="STRING" size="256" sumtext="약코드"/>
- <Column id="curedrugcd06" type="STRING" size="256" sumtext="약코드"/>
- <Column id="curedrugcd07" type="STRING" size="256" sumtext="약코드"/>
- <Column id="curedrugcd08" type="STRING" size="256" sumtext="약코드"/>
- <Column id="curedrugcd09" type="STRING" size="256" sumtext="약코드"/>
- <Column id="curedrugcd10" type="STRING" size="256" sumtext="약코드"/>
- <Column id="curedrugcd11" type="STRING" size="256" sumtext="약코드"/>
- <Column id="curedrugcd12" type="STRING" size="256" sumtext="약코드"/>
- <Column id="curedrugcd13" type="STRING" size="256" sumtext="약코드"/>
- <Column id="curedrugcd14" type="STRING" size="256" sumtext="약코드"/>
- <Column id="curedrugcd15" type="STRING" size="256" sumtext="약코드"/>
- <Column id="curedrugcd16" type="STRING" size="256" sumtext="약코드"/>
- <Column id="etccnts" type="STRING" size="256" sumtext="약코드"/>
- <Column id="tmpcol11" type="STRING" size="256" sumtext="IGRA검사"/>
- <Column id="tmpcol21" type="STRING" size="256" sumtext="IGRA검사"/>
- <Column id="tmpcol12" type="STRING" size="256" sumtext="IGRA검사"/>
- <Column id="tmpcol22" type="STRING" size="256" sumtext="IGRA검사"/>
- <Column id="tmpcol13" type="STRING" size="256" sumtext="IGRA검사"/>
- <Column id="tmpcol23" type="STRING" size="256" sumtext="IGRA검사"/>
- <Column id="tmpcol14" type="STRING" size="256" sumtext="IGRA검사"/>
- <Column id="tmpcol31" type="STRING" size="256" sumtext="질병구분"/>
- <Column id="tmpcol32" type="STRING" size="256" sumtext="질병구분"/>
- <Column id="rayrsltdd" type="STRING" size="256" sumtext="흉부X선 검사일자"/>
- <Column id="sputumdmdd" type="STRING" size="256" sumtext="도말검사일자"/>
- <Column id="sputumbydd" type="STRING" size="256" sumtext="배양검사일자"/>
- <Column id="etctestflagdd" type="STRING" size="256" sumtext="TB-PCR검사일자"/>
- <Column id="tisstestlagdd" type="STRING" size="256" sumtext="조직검사일자"/>
- <Column id="rayrsltkind" type="STRING" size="256" sumtext="흉부X선 검사 검체종류"/>
- <Column id="sputumdmkind" type="STRING" size="256" sumtext="도말검사 검체종류"/>
- <Column id="sputumbykind" type="STRING" size="256" sumtext="배양검사 검체종류"/>
- <Column id="etctestflagkind" type="STRING" size="256" sumtext="TB-PCR검사 검체종류"/>
- <Column id="tisstestlagkind" type="STRING" size="256" sumtext="조직검사 검체종류"/>
- <!-- 간염 -->
- <Column id="lglydiscd1" type="STRING" size="256" sumtext="질환명"/>
- <Column id="lglydiscd2" type="STRING" size="256" sumtext="질환명"/>
- <Column id="lglydiscd3" type="STRING" size="256" sumtext="질환명"/>
- <Column id="lglydiscd4" type="STRING" size="256" sumtext="질환명"/>
- <Column id="lglydiscd5" type="STRING" size="256" sumtext="질환명"/>
- <Column id="preinochstflags" type="STRING" size="256" sumtext="예방접종내력"/>
- <Column id="preinochstflagf" type="STRING" size="256" sumtext="예방접종내력"/>
- <Column id="preinochstflagn" type="STRING" size="256" sumtext="예방접종내력"/>
- <Column id="preinochstflagk" type="STRING" size="256" sumtext="예방접종내력"/>
- <!-- 선청성매독 -->
- <Column id="diagmthd01" type="STRING" size="256" sumtext="진단방법"/>
- <Column id="diagmthd02" type="STRING" size="256" sumtext="진단방법"/>
- <Column id="diagmthd03" type="STRING" size="256" sumtext="진단방법"/>
- <Column id="diagmthd04" type="STRING" size="256" sumtext="진단방법"/>
- <Column id="diagmthd05" type="STRING" size="256" sumtext="진단방법"/>
- <Column id="diagmthd06" type="STRING" size="256" sumtext="진단방법"/>
- <Column id="diagmthd99" type="STRING" size="256" sumtext="진단방법"/>
- <!-- 성병 -->
- <Column id="slglydiscd01" type="STRING" size="256" sumtext="질환명"/>
- <Column id="slglydiscd02" type="STRING" size="256" sumtext="질환명"/>
- <Column id="slglydiscd03" type="STRING" size="256" sumtext="질환명"/>
- <Column id="slglydiscd04" type="STRING" size="256" sumtext="질환명"/>
- <Column id="slglydiscd05" type="STRING" size="256" sumtext="질환명"/>
- <Column id="slglydiscd06" type="STRING" size="256" sumtext="질환명"/>
- <Column id="slglydiscd07" type="STRING" size="256" sumtext="질환명"/>
- <Column id="slglydiscd08" type="STRING" size="256" sumtext="질환명"/>
- <Column id="slglydiscd09" type="STRING" size="256" sumtext="질환명"/>
- <Column id="slglydiscd10" type="STRING" size="256" sumtext="질환명"/>
- <Column id="slglydiscd11" type="STRING" size="256" sumtext="질환명"/>
- <Column id="slglydiscd12" type="STRING" size="256" sumtext="질환명"/>
- <Column id="uniqgenetic" type="STRING" size="256" sumtext="질환명"/>
- <!-- 크로이츠펠트-야콥병 -->
- <Column id="patflag21" type="STRING" size="256" sumtext="질환명"/>
- <Column id="patflag22" type="STRING" size="256" sumtext="질환명"/>
- <Column id="dethflag01" type="STRING" size="256" sumtext="질환명"/>
- <Column id="dethflag02" type="STRING" size="256" sumtext="질환명"/>
- <Column id="dethflag03" type="STRING" size="256" sumtext="질환명"/>
- <Column id="dethflag04" type="STRING" size="256" sumtext="질환명"/>
- <Column id="lglykindcd01" type="STRING" size="256" sumtext="질환명"/>
- <Column id="lglykindcd02" type="STRING" size="256" sumtext="질환명"/>
- <Column id="lglykindcd03" type="STRING" size="256" sumtext="질환명"/>
- <Column id="lglykindcd04" type="STRING" size="256" sumtext="질환명"/>
- <Column id="lglykindcd05" type="STRING" size="256" sumtext="질환명"/>
- <Column id="tisstestlagy" type="STRING" size="256" sumtext="질환명"/>
- <Column id="tisstestlagn" type="STRING" size="256" sumtext="질환명"/>
- <Column id="testpartcd01" type="STRING" size="256" sumtext="질환명"/>
- <Column id="testpartcd02" type="STRING" size="256" sumtext="질환명"/>
- <Column id="testpartcd99" type="STRING" size="256" sumtext="질환명"/>
- <Column id="testmthdcd01" type="STRING" size="256" sumtext="질환명"/>
- <Column id="testmthdcd02" type="STRING" size="256" sumtext="질환명"/>
- <Column id="plaqflagcd01" type="STRING" size="256" sumtext="질환명"/>
- <Column id="plaqflagcd02" type="STRING" size="256" sumtext="질환명"/>
- <Column id="brwavetestflagy" type="STRING" size="256" sumtext="질환명"/>
- <Column id="brwavetestflagn" type="STRING" size="256" sumtext="질환명"/>
- <Column id="raytestflagy" type="STRING" size="256" sumtext="질환명"/>
- <Column id="raytestflagn" type="STRING" size="256" sumtext="질환명"/>
- <Column id="crbrfldtestflagy" type="STRING" size="256" sumtext="질환명"/>
- <Column id="crbrfldtestflagn" type="STRING" size="256" sumtext="질환명"/>
- <Column id="prnpagenetestflagy" type="STRING" size="256" sumtext="질환명"/>
- <Column id="prnpagenetestflagn" type="STRING" size="256" sumtext="질환명"/>
- <Column id="codonflag01" type="STRING" size="256" sumtext="질환명"/>
- <Column id="codonflag02" type="STRING" size="256" sumtext="질환명"/>
- <Column id="codonflag03" type="STRING" size="256" sumtext="질환명"/>
- <Column id="codonflag201" type="STRING" size="256" sumtext="질환명"/>
- <Column id="codonflag202" type="STRING" size="256" sumtext="질환명"/>
- <Column id="codonflag203" type="STRING" size="256" sumtext="질환명"/>
- <Column id="dngrcascd01" type="STRING" size="256" sumtext="질환명"/>
- <Column id="dngrcascd02" type="STRING" size="256" sumtext="질환명"/>
- <Column id="dngrcascd03" type="STRING" size="256" sumtext="질환명"/>
- <Column id="dngrcascd04" type="STRING" size="256" sumtext="질환명"/>
- <Column id="dngrcascd05" type="STRING" size="256" sumtext="질환명"/>
- <Column id="dngrcascd06" type="STRING" size="256" sumtext="질환명"/>
- <Column id="dngrcascd07" type="STRING" size="256" sumtext="질환명"/>
- <Column id="dngrcascd08" type="STRING" size="256" sumtext="질환명"/>
- <Column id="dngrcascd09" type="STRING" size="256" sumtext="질환명"/>
- <Column id="dngrcascd99" type="STRING" size="256" sumtext="질환명"/>
- <Column id="estminfcareacdh" type="STRING" size="256" sumtext="질환명"/>
- <Column id="estminfcareacdo" type="STRING" size="256" sumtext="질환명"/>
- <Column id="dethdd" type="STRING" size="256" sumtext="질환명"/>
- <Column id="testpartremcnts" type="STRING" size="256" sumtext="질환명"/>
- <Column id="brwavetestcnts" type="STRING" size="256" sumtext="질환명"/>
- <Column id="raytestcnts" type="STRING" size="256" sumtext="질환명"/>
- <Column id="crbrfldtestcnts" type="STRING" size="256" sumtext="질환명"/>
- <Column id="codonnm" type="STRING" size="256" sumtext="질환명"/>
- <Column id="codoncnts" type="STRING" size="256" sumtext="질환명"/>
- <Column id="lglydiscnts" type="STRING" size="256" sumtext="질환명"/>
- <Column id="dngrcasremcnts" type="STRING" size="256" sumtext="질환명"/>
- <Column id="ecntrytodd" type="STRING" size="256" sumtext="질환명"/>
- <Column id="ecntrydd" type="STRING" size="256" sumtext="질환명"/>
- <Column id="infcnts" type="STRING" size="256" sumtext="질환명"/>
- <Column id="stayterm" type="STRING" size="256" sumtext="체류기간(개월)"/>
- <Column id="staytermday" type="STRING" size="256" sumtext="체류기간(일)"/>
- <!-- 인플루엔자
- <column id="lglydiscd1" ref="lglydisrepttrgtmanlist.lglydiscd1" desc="질환명"/>
- <column id="lglydiscd2" ref="lglydisrepttrgtmanlist.lglydiscd2" desc="질환명"/>
- -->
- <Column id="preinochstflagy" type="STRING" size="256" sumtext="질환명"/>
- <Column id="preinochstflagn" type="STRING" size="256" sumtext="질환명"/>
- <Column id="preinochstflagk" type="STRING" size="256" sumtext="질환명"/>
- <!-- 산모B형간염 -->
- <Column id="preinochstflags" type="STRING" size="256" sumtext="질환명"/>
- <Column id="preinochstflagf" type="STRING" size="256" sumtext="질환명"/>
- <Column id="preinochstflagn" type="STRING" size="256" sumtext="질환명"/>
- <Column id="preinochstflagk" type="STRING" size="256" sumtext="질환명"/>
- <!-- HIV-AIDS -->
- <Column id="fstdiagdd" type="STRING" size="256" sumtext="질환명"/>
- <Column id="matrno" type="STRING" size="256" sumtext="질환명"/>
- <Column id="etctestflag01" type="STRING" size="256" sumtext="질환명"/>
- <Column id="etctestflag02" type="STRING" size="256" sumtext="질환명"/>
- <Column id="etctestflag03" type="STRING" size="256" sumtext="질환명"/>
- <Column id="testrslt1" type="STRING" size="256" sumtext="질환명"/>
- <Column id="testrslt2" type="STRING" size="256" sumtext="질환명"/>
- <Column id="cnfmtestinstcd01" type="STRING" size="256" sumtext="질환명"/>
- <Column id="cnfmtestinstcd02" type="STRING" size="256" sumtext="질환명"/>
- <Column id="cnfmtestinstnm" type="STRING" size="256" sumtext="질환명"/>
- <Column id="estminfcpath01" type="STRING" size="256" sumtext="질환명"/>
- <Column id="estminfcpath02" type="STRING" size="256" sumtext="질환명"/>
- <Column id="estminfcpath03" type="STRING" size="256" sumtext="질환명"/>
- <Column id="estminfcpath04" type="STRING" size="256" sumtext="질환명"/>
- <Column id="estminfcpath05" type="STRING" size="256" sumtext="질환명"/>
- <Column id="estminfcpath06" type="STRING" size="256" sumtext="질환명"/>
- <Column id="estminfcpath99" type="STRING" size="256" sumtext="질환명"/>
- <Column id="estminfcpathremcnts" type="STRING" size="256" sumtext="질환명"/>
- <Column id="dethyn" type="STRING" size="256" sumtext="질환명"/>
- <Column id="diagcd" type="STRING" size="256" sumtext="질환명"/>
- <Column id="diagnm" type="STRING" size="256" sumtext="질환명"/>
- <Column id="dethdd" type="STRING" size="256" sumtext="질환명"/>
- <Column id="relyn" type="STRING" size="256" sumtext="질환명"/>
- <Column id="symp01" type="STRING" size="256" sumtext="질환명"/>
- <Column id="symp02" type="STRING" size="256" sumtext="질환명"/>
- <Column id="symp03" type="STRING" size="256" sumtext="질환명"/>
- <Column id="symp04" type="STRING" size="256" sumtext="질환명"/>
- <Column id="symp05" type="STRING" size="256" sumtext="질환명"/>
- <Column id="symp06" type="STRING" size="256" sumtext="질환명"/>
- <Column id="symp07" type="STRING" size="256" sumtext="질환명"/>
- <Column id="symp08" type="STRING" size="256" sumtext="질환명"/>
- <Column id="symp09" type="STRING" size="256" sumtext="질환명"/>
- <Column id="symp10" type="STRING" size="256" sumtext="질환명"/>
- <Column id="symp11" type="STRING" size="256" sumtext="질환명"/>
- <Column id="symp12" type="STRING" size="256" sumtext="질환명"/>
- <Column id="symp13" type="STRING" size="256" sumtext="질환명"/>
- <Column id="symp14" type="STRING" size="256" sumtext="질환명"/>
- <Column id="symp15" type="STRING" size="256" sumtext="질환명"/>
- <Column id="symp16" type="STRING" size="256" sumtext="질환명"/>
- <Column id="symp17" type="STRING" size="256" sumtext="질환명"/>
- <Column id="symp18" type="STRING" size="256" sumtext="질환명"/>
- <Column id="symp19" type="STRING" size="256" sumtext="질환명"/>
- <Column id="symp20" type="STRING" size="256" sumtext="질환명"/>
- <Column id="symp21" type="STRING" size="256" sumtext="질환명"/>
- <Column id="symp22" type="STRING" size="256" sumtext="질환명"/>
- <Column id="symp23" type="STRING" size="256" sumtext="질환명"/>
- <Column id="symp24" type="STRING" size="256" sumtext="질환명"/>
- <Column id="symp99" type="STRING" size="256" sumtext="질환명"/>
- <Column id="sympremcnts" type="STRING" size="256" sumtext="질환명"/>
- <!-- 수족구병 추가 -->
- <Column id="mdiag" type="STRING" size="256" sumtext="주요진단"/>
- <Column id="sdiag" type="STRING" size="256" sumtext="동반진단"/>
- <Column id="sdiagetc" type="STRING" size="256" sumtext="동반진단기타"/>
- <Column id="symp" type="STRING" size="256" sumtext="주요증상"/>
- <Column id="sympetc" type="STRING" size="256" sumtext="주요증상기타"/>
- <Column id="testcnts" type="STRING" size="256" sumtext="뇌막염환자척수액소견"/>
- <Column id="estminfcpath1" type="STRING" size="256" sumtext="추정감염경로"/>
- <Column id="estminfcpath2" type="STRING" size="256" sumtext="추정감염경로"/>
- <Column id="estminfcpath3" type="STRING" size="256" sumtext="추정감염경로"/>
- <Column id="estminfcpath4" type="STRING" size="256" sumtext="추정감염경로"/>
- <Column id="estminfcareacdh" type="STRING" size="256" sumtext="추정감염지역"/>
- <Column id="estminfcareacdo" type="STRING" size="256" sumtext="추정감염지역"/>
- <Column id="estminfcareanaticd" type="STRING" size="256" sumtext="국명"/>
- <Column id="stayterm" type="STRING" size="256" sumtext="체류기간(개월)"/>
- <Column id="staytermday" type="STRING" size="256" sumtext="체류기간(일)"/>
- <Column id="tisstestlagy" type="STRING" size="256" sumtext="검체채취유무"/>
- <Column id="tisstestlagn" type="STRING" size="256" sumtext="검체채취유무"/>
- <Column id="tisstestdd" type="STRING" size="256" sumtext="검체채취일"/>
- <Column id="matrno" type="STRING" size="256" sumtext="가검물명"/>
- <Column id="matrnoetc" type="STRING" size="256" sumtext="가검물명기타"/>
- <Column id="usremail" type="STRING" size="256" sumtext="EMAIL"/>
- <Column id="ioflag" type="STRING" size="256" sumtext="ioflag"/>
- <!-- 결핵 사망시 추가 -->
- <Column id="dethcascd" type="STRING" size="256" sumtext="dethcascd"/>
- <Column id="dethdd" type="STRING" size="256" sumtext="dethdd"/>
- <Column id="dethresn" type="STRING" size="256" sumtext="dethresn"/>
- <Column id="dethreptstat" type="STRING" size="256" sumtext="사망신고상태"/>
- <Column id="anotheryn" type="STRING" size="256" sumtext="사망신고상태"/>
- <Column id="faclt" type="STRING" size="256"/>
- <Column id="facltaddr" type="STRING" size="256"/>
- <Column id="tbclkindcd" type="STRING" size="256"/>
- <Column id="cureenddd" type="STRING" size="256"/>
- <Column id="curersltflagdiag" type="STRING" size="256"/>
- <Column id="antutbclrslt" type="STRING" size="256"/>
- <Column id="antutbclrsltdetl" type="STRING" size="256"/>
- <Column id="antutbclrsltdetldesc" type="STRING" size="256"/>
- <Column id="antutbclmthd" type="STRING" size="256"/>
- <Column id="antutbclcd" type="STRING" size="256"/>
- <Column id="xpert" type="STRING" size="256"/>
- <Column id="xpertdd" type="STRING" size="256"/>
- <Column id="xpertkind" type="STRING" size="256"/>
- <Column id="curedrugcdtxt" type="STRING" size="256"/>
- <Column id="spcacptdt" type="STRING" size="256"/>
- <Column id="antutbcldrug" type="STRING" size="256"/>
- <Column id="antutbcldrugtxt" type="STRING" size="256"/>
- <Column id="tbclkindcd02" type="STRING" size="256"/>
- <Column id="tbclkindcd03" type="STRING" size="256"/>
- <Column id="clispeaoccurdate" type="STRING" size="256" sumtext="검체시험의뢰서 발병일"/>
- <Column id="clispeagatherdate" type="STRING" size="256" sumtext="검체시험의뢰서 검체채취일"/>
- <Column id="clispeaname" type="STRING" size="256" sumtext="검체시험의뢰서 검체명"/>
- <Column id="clispeagathercount" type="STRING" size="256" sumtext="검체시험의뢰서 검체채취구분"/>
- <Column id="clispeaopinion" type="STRING" size="256" sumtext="검체시험의뢰서 소견서"/>
- <Column id="clamprsdnm" type="STRING" size="256" sumtext="병원장 명"/>
- <Column id="clispebtype" type="STRING" size="256" sumtext="검체시험의뢰서 환자/접촉자 분류"/>
- <Column id="clispebtypeetc" type="STRING" size="256" sumtext="검체시험의뢰서 환자/접촉자 기타"/>
- <Column id="clispebtravel" type="STRING" size="256" sumtext="검체시험의뢰서 여행"/>
- <Column id="clispebsymptom" type="STRING" size="256" sumtext="검체시험의뢰서 증상"/>
- <Column id="clispebsymptometc" type="STRING" size="256" sumtext="검체시험의뢰서 증상 기타"/>
- <Column id="clispebcontact" type="STRING" size="256" sumtext="검체시험의뢰서 접촉자"/>
- <Column id="clispebcontactetc" type="STRING" size="256" sumtext="검체시험의뢰서 접촉자 기타"/>
- <Column id="clispebcontactafter" type="STRING" size="256" sumtext="검체시험의뢰서 발병이후 접촉자"/>
- <Column id="clispecpregnancy" type="STRING" size="256" sumtext="검체시험의뢰서 임신여부"/>
- <Column id="clispecpregnancyweek" type="STRING" size="256" sumtext="검체시험의뢰서 임신주수"/>
- <Column id="clispectravelperiodstart" type="STRING" size="256" sumtext="검체시험의뢰서 여행 시작 날짜"/>
- <Column id="clispectravelperiodend" type="STRING" size="256" sumtext="검체시험의뢰서 여행 종료 날짜"/>
- <Column id="clispecvaccine" type="STRING" size="256" sumtext="검체시험의뢰서 백신"/>
- <Column id="tpatflag7" type="STRING" size="256" sumtext="환자구분"/>
- <Column id="tpatflag8" type="STRING" size="256" sumtext="환자구분"/>
- <Column id="specdrlicnsno" type="STRING" size="256" sumtext="의사면허번호"/>
- <Column id="clispealglytest" type="STRING" size="256"/>
- <Column id="clispealglyetcdisnm" type="STRING" size="256" sumtext="검체시험의뢰서 감염병명 기타"/>
- <Column id="tlglydiscd505" type="STRING" size="256" sumtext="전염병명"/>
- <Column id="tlglydiscd506" type="STRING" size="256" sumtext="전염병명"/>
- <Column id="tlglydiscd507" type="STRING" size="256"/>
- <Column id="tlglydiscd508" type="STRING" size="256"/>
- <Column id="tlglydiscd509" type="STRING" size="256"/>
- <Column id="tlglydiscd108" type="STRING" size="256"/>
- <Column id="tlglydiscd109" type="STRING" size="256"/>
- <Column id="tlglydiscd110" type="STRING" size="256"/>
- <Column id="tlglydiscd111" type="STRING" size="256"/>
- <Column id="tlglydiscd112" type="STRING" size="256"/>
- <Column id="tlglydiscd113" type="STRING" size="256"/>
- <Column id="tlglydiscd213" type="STRING" size="256"/>
- <Column id="tlglydiscd214" type="STRING" size="256"/>
- <Column id="tlglydiscd323" type="STRING" size="256"/>
- </ColumnInfo>
- <Rows>
- <Row/>
- </Rows>
- </Dataset>
- <Dataset id="ds_hidden_lglydisrepttrgtmaninfo" firefirstcount="0" firenextcount="0" useclientlayout="false" updatecontrol="true" enableevent="true" loadkeymode="keep" loadfiltermode="keep" reversesubsum="false"/>
- <Dataset id="ds_hidden_reptrsltinfo" firefirstcount="0" firenextcount="0" useclientlayout="false" updatecontrol="true" enableevent="true" loadkeymode="keep" loadfiltermode="keep" reversesubsum="false"/>
- <Dataset id="ds_reptflag" firefirstcount="0" firenextcount="0" useclientlayout="false" updatecontrol="true" enableevent="true" loadkeymode="keep" loadfiltermode="keep" reversesubsum="false">
- <ColumnInfo>
- <Column id="cdid" type="STRING" size="256"/>
- <Column id="cdnm" type="STRING" size="256"/>
- </ColumnInfo>
- <Rows>
- <Row>
- <Col id="cdid">01</Col>
- <Col id="cdnm">법정감염병</Col>
- </Row>
- <Row>
- <Col id="cdid">02</Col>
- <Col id="cdnm">결핵</Col>
- </Row>
- <Row>
- <Col id="cdid">06</Col>
- <Col id="cdnm">크로이츠펠트-아콥병</Col>
- </Row>
- <Row>
- <Col id="cdid">07</Col>
- <Col id="cdnm">인플루엔자</Col>
- </Row>
- <Row>
- <Col id="cdid">08</Col>
- <Col id="cdnm">산모B형간염</Col>
- </Row>
- <Row>
- <Col id="cdid">09</Col>
- <Col id="cdnm">HIV-AIDS</Col>
- </Row>
- <Row>
- <Col id="cdid">10</Col>
- <Col id="cdnm">수족구병</Col>
- </Row>
- <Row>
- <Col id="cdid">11</Col>
- <Col id="cdnm">해외유입기생충감염</Col>
- </Row>
- <Row>
- <Col id="cdid">12</Col>
- <Col id="cdnm">의료관련감염병</Col>
- </Row>
- <Row>
- <Col id="cdid">13</Col>
- <Col id="cdnm">검체의뢰서(일반)</Col>
- </Row>
- <Row>
- <Col id="cdid">14</Col>
- <Col id="cdnm">검체의뢰서(메르스)</Col>
- </Row>
- <Row>
- <Col id="cdid">15</Col>
- <Col id="cdnm">검체의뢰서(지카)</Col>
- </Row>
- </Rows>
- </Dataset>
- </Objects>
- <Bind>
- <BindItem id="item0" compid="grp_sea.cmb_trgtmankind" propid="value" datasetid="ds_main_cond" columnid="trgtmankind"/>
- <BindItem id="item1" compid="grp_sea.cmb_reptstat" propid="value" datasetid="ds_main_cond" columnid="reptstat"/>
- <BindItem id="item2" compid="grp_sea.cmb_orddept" propid="value" datasetid="ds_main_cond" columnid="orddept"/>
- <BindItem id="item3" compid="grp_sea.cmb_orddr" propid="value" datasetid="ds_main_cond" columnid="orddr"/>
- <BindItem id="item4" compid="grp_sea.chk" propid="value" datasetid="ds_main_cond" columnid="delyn"/>
- <BindItem id="item5" compid="grp_sea.cal_fromdd" propid="value" datasetid="ds_main_cond" columnid="fromdd"/>
- <BindItem id="item6" compid="grp_sea.cal_todd" propid="value" datasetid="ds_main_cond" columnid="todd"/>
- <BindItem id="item7" compid="grp_sea.ipt_patcd" propid="value" datasetid="ds_main_cond" columnid="pid"/>
- <BindItem id="item8" compid="grp_sea.ipt_patnm" propid="value" datasetid="ds_main_cond" columnid="hngnm"/>
- <BindItem id="item27" compid="grp_sea.bool1" propid="value" datasetid="ds_main_cond" columnid="trgtmankind02flag"/>
- </Bind>
- <Script type="xscript4.0"><![CDATA[/***************************************************************************************
- * System Name :
- * Job Name :
- * Creator :
- * Make Date : 2015-08-28
- * Description :
- *---------------------------------------------------------------------------------------
- * Modify Date Modifier Modify Description
- *---------------------------------------------------------------------------------------
- * 2015-08-28 Live Converter TF->XP
- *
- *---------------------------------------------------------------------------------------
- ****************************************************************************************/
- include "com_commonxp::comm_main.xjs";
- include "ast_infcmngtxp::SMASB00100.xjs";
- include "ast_infcmngtxp::SMASI01200.xjs"; // 법정전염병신고 공통함수
- include "com_commodulexp::SMZFS00501.xjs"; // 기준자료 조회 함수
- include "emr_prcpmngtxp::MMO001.xjs";
- include "emr_dschanalyxp::SMMRD02000.xjs"
- var arErrorCode = new HashArray();
- var pos = -1;
- var pos1 = -1;
- /******************************************************************
- * Argument :
- * Description : 초기화
- ******************************************************************/
- function SMASI01300_oninit(obj:Form, e:InitEventInfo)
- {
- frmf_initForm(obj);
- }
- function SMASI01300_onload(obj:Form, e:LoadEventInfo)
- {
- grp_sea.bool1.visible = false;
- var pid = sysf_getUserId();
-
- ds_send_reqdata.addColumn("pid", "string", 256);
- ds_send_reqdata.setColumn(0, "pid", pid);
-
- //trace("%s", pid);
-
- var oParam = {};
- oParam.id = "TRASI01302";
- oParam.service = "infcmngtapp.LglyDisMngt";
- oParam.method = "reqGetAuthYN";
- oParam.inds = "req=ds_send_reqdata";
- oParam.outds = "ds_hidden_tmplists=tmplist";
- oParam.async = false;
- //oParam.callback = "cf_TRASI01302";
- tranf_submit(oParam);
-
- // Grid 툴팁 세팅
- grdf_setToolTipBind(grd_lglydisrepttrgtman);
- grdf_setGridSort(grd_lglydisrepttrgtman);
-
- // 공통코드 호출
- fInitialize();
-
- // 그리드 우클릭 팝업
-
- frmf_createPopupMenu("pmn_popupMenu_01", "fLglyDisReptPopup", [{id: "01", level: "0", title: "법정감염병신고서"}, {id: "02", level: "0", title: "질병관리본부신고"}, {id: "03", level: "0", title: "법정감염병신고서_OLD"}]);
- frmf_createPopupMenu("pmn_popupMenu_02", "fHptsReptPopup", [{id: "03", level: "0", title: "간염표본감시결과신고서"}]);
- frmf_createPopupMenu("pmn_popupMenu_03", "fVenReptPopup", [{id: "05", level: "0", title: "성병표본감시결과신고서"}]);
- frmf_createPopupMenu("pmn_popupMenu_04", "fSyphReptPopup", [{id: "04", level: "0", title: "선천성매독표본감시결과신고서"}]);
- frmf_createPopupMenu("pmn_popupMenu_05", "fTbReptPopup", [{id: "05", level: "0", title: "결핵환자신고서"}]);
- frmf_createPopupMenu("pmn_popupMenu_06", "f06ReptPopup", [{id: "06", level: "0", title: "크로이츠펠트-야콥병신고서"}]);
- frmf_createPopupMenu("pmn_popupMenu_07", "f07ReptPopup", [{id: "07", level: "0", title: "인플루엔자신고서"}]);
- frmf_createPopupMenu("pmn_popupMenu_08", "f08ReptPopup", [{id: "08", level: "0", title: "산모B형간염신고서"}]);
- frmf_createPopupMenu("pmn_popupMenu_09", "f09ReptPopup", [{id: "09", level: "0", title: "HIV-AIDS신고서"}]);
- frmf_createPopupMenu("pmn_popupMenu_10", "f10ReptPopup", [{id: "10", level: "0", title: "수족구병감시결과신고서"}]);
- frmf_createPopupMenu("pmn_popupMenu_11", "f11ReptPopup", [{id: "11", level: "0", title: "해외유입 기생충 감염증"}]);
- //20161214 이돈희 추가 : 검체시험의뢰서 A 추가
- frmf_createPopupMenu("pmn_popupMenu_13", "f13ReptPopup", [{id: "13", level: "0", title: "검체시험의뢰서A"}]);
- frmf_createPopupMenu("pmn_popupMenu_14", "f14ReptPopup", [{id: "14", level: "0", title: "검체시험의뢰서B"}]);
- frmf_createPopupMenu("pmn_popupMenu_15", "f15ReptPopup", [{id: "15", level: "0", title: "검체시험의뢰서C"}]);
- //frmf_createPopupMenu("pmn_popupMenu_16", "fLglyDisCdcReportPopup", [{id: "16", level: "0", title: "질병관리본부신고"}]);
- //frmf_createPopupMenu("pmn_popupMenu_20", "fTbReptEndPopup", [{id: "20", level: "0", title: "결핵치료종료환자"}]);
- //frmf_createPopupMenu("pmn_popupMenu_99", "f99ReptPopup", [{id: "99", level: "0", title: "결핵사망신고서"}]);
-
- //@@@@진료메뉴에서 호출시 하단의 미리보기, 출력버튼이 보이지 않도록함
- asbfGetHardCodeInfoNm("C1", "ds_init_hardcd");
- var userdeptcd = sysf_getUserInfo( "dutplcecd" );
- //trace("%s",userdeptcd);
- var chk = 0;
-
- for( var j=1; j <= ds_init_hardcd.rowcount; j++ ){
- if( userdeptcd == ds_init_hardcd.getColumn(j, "hardcdnm") ){
- chk++;
- }
- }
-
- //의료질 관리팀이 아닌 경우
- if( chk == "0" ){
-
- ds_temp.addColumn("menuParam", "string", 256);
- var row = ds_temp.addRow();
-
- ds_temp.setColumn(row, "menuParam", "OrdCall");
- grp_ordbtn.visible = true; //삭제, 초기화 true
- grp_btn.visible = false;
- grp_btn3.visible = false;
- grp_sea.cmb_orddept.enable = false;
-
- //@@@@로그인정보가져오기
- var userid = sysf_getUserInfo( "userid" );
- var usernm = sysf_getUserInfo( "usernm" );
- var deptcd = sysf_getUserInfo( "dutplcecd" );
- var deptnm = sysf_getUserInfo( "dutplcenm" );
-
- //실제 사용할부분
- ds_hidden_orddeptlist.setColumn(0, "deptcd", deptcd);
- ds_hidden_orddeptlist.setColumn(0, "depthngnm", deptnm);
- grp_sea.cmb_orddept.setFocus();
- grp_sea.cmb_orddept.index = 0;
-
- for( var i = 1; i <= ds_hidden_userlist.rowcount; i++ ){
- if( userid == ds_hidden_userlist.getColumn(i, "userid") ){
- ds_hidden_userlist.setColumn(i, "userid", userid);
- ds_hidden_userlist.setColumn(i, "usernm", usernm);
- grp_sea.cmb_orddr.setFocus();
- grp_sea.cmb_orddr.index = i;
- break;
- }else{
- ds_hidden_userlist.setColumn(i, "userid", "");
- ds_hidden_userlist.setColumn(i, "usernm", "전체");
- grp_sea.cmb_orddr.setFocus();
- grp_sea.cmb_orddr.index = 0;
- }
- }
-
- //진료에서 호출시 바로 조회
- ds_send_cond.clearData();
- ds_send_cond.copyData(ds_main_cond);
-
- //법정전염병신고대상자조회 리스트를 조회
- var oParam = {};
- oParam.id = "TRASI01301";
- oParam.service = "infcmngtapp.LglyDisMngt";
- oParam.method = "reqGetLglyDisReptTrgtmanList";
- oParam.inds = "req=ds_send_cond";
- oParam.outds = "ds_grd_lglydisrepttrgtmaninfo=lglydisrepttrgtmanlist";
- oParam.async = true;
- oParam.callback = "cf_TRASI01301";
- tranf_submit(oParam);
- } else {
-
- //by sonjy 20100413 master 부서 관리 추가
- asbfGetHardCodeInfoNm("C2", "ds_init_infcmasterdept");
- if( ds_init_infcmasterdept.rowcount > 0 ){
-
- grp_ordbtn.visible = false;
- grp_btn.visible = true;
- grp_btn3.visible = false;
- } else { //감염관리실, 진료가 아닌경우.
- grp_ordbtn.visible = false;
- grp_btn3.visible=true;
- frmf_setParameter("LglyDeptChk", "N"); //신고서 호출시 삭제버튼 불활성화
- }
- }
-
- fDisplayInit();
- }
- /******************************************************************
- * Argument :
- * Description : 공통코드 호출
- ******************************************************************/
- function fInitialize(){
- var instcd = sysf_getUserInfo("dutplceinstcd");
- var standard_yn = "orduseyn";
- var ord_deptflag = 'D';
- var rslt_ref = "ds_hidden_orddeptlist";
-
- var sort_field = "depthngnm";
- var sort_method = "asc";
- appf_getDeptCodeList(instcd, standard_yn, ord_deptflag, sort_field, sort_method, "", "", "", rslt_ref, false, ""); //부서코드목록 조회
-
- //20161221 이돈희 추가 : 진료과 항목에 전체가 없어서 추가
- dsf_addDsItem(ds_hidden_orddeptlist,"deptcd","depthngnm","전체","");
-
-
-
- lf_mmbfGetUserComboList(ds_hidden_userlist, sysf_getUserInfo("dutplcecd"), "0330", "", "M", "","", "P"); //진료과 의사콤보 조회
- dsf_addDsItem(ds_hidden_userlist,"userid","usernm","전체","");
- //ds_hidden_userlist.copyData(ds_init_cmb_orddr); //ds_hidden_userlist
-
- dsf_addDsItem( ds_init_cmb_orddept, "deptcd", "depthngnm", "", "", "above");
-
- var getCurrentDate = utlf_getCurrentDate();
-
- var idate = new Date();
- var frDate = idate.getAddDate(-1, "M"); //한달 전 설정
-
- ds_main_cond.setColumn(0, "fromdd", frDate.getDateFormat());
- ds_main_cond.setColumn(0, "todd", getCurrentDate);
-
- var dutplceinstcd = sysf_getUserInfo("dutplceinstcd");
- if( dutplceinstcd == "013" ){
- ds_main_cond.setColumn(0, "instcd", "Y");
- } else {
- ds_main_cond.setColumn(0, "instcd", "N");
- }
-
- //checkBox 전체 체크
- grdf_setAllCheck(grd_lglydisrepttrgtman);
- }
- /******************************************************************
- * Argument :
- * Description : 각종 신고서 호출 전 파라메터 설정 (공통으로 사용토록 함수 분리 (2009.11.13 JJE)
- ******************************************************************/
- function fSetupParameters(){
- var iRow = ds_grd_lglydisrepttrgtmaninfo.rowposition;
- //trace("fSetupParameters iRow =");
- //trace("%s", iRow);
- frmf_setParameter("wrtedt", ds_grd_lglydisrepttrgtmaninfo.getColumn(iRow, "wrtedt")); //작성일
- frmf_setParameter("seqno", ds_grd_lglydisrepttrgtmaninfo.getColumn(iRow, "seqno")); //법정일
- frmf_setParameter("pid", ds_grd_lglydisrepttrgtmaninfo.getColumn(iRow, "pid"));
- frmf_setParameter("indd", ds_grd_lglydisrepttrgtmaninfo.getColumn(iRow, "indd")); //입원일
- frmf_setParameter("psnflag", ds_grd_lglydisrepttrgtmaninfo.getColumn(iRow, "ioflag"));
- frmf_setParameter("lglydiscd", ds_grd_lglydisrepttrgtmaninfo.getColumn(iRow, "lglydiscd"));//법정전
- frmf_setParameter("state", "S");
- //2012/11/20 Start 원무키 파라미터로 추가
- frmf_setParameter("cretno", ds_grd_lglydisrepttrgtmaninfo.getColumn(iRow, "cretno"));//생성번
- //2012/12/27 Start 레포트 번호 파라미터로 추가
- frmf_setParameter("reptflag", ds_grd_lglydisrepttrgtmaninfo.getColumn(iRow, "reptflag"));//신고서 구분
-
- //진료에서 호출시
- var usercdok = ds_init_hardcd.getColumn(0, "hardcdnm");
- var userdeptcd = sysf_getUserInfo( "dutplcecd" );
-
- //trace("usercdok =");
- //trace("%s", usercdok)
-
- //trace("userdeptcd =");
- //trace("%s", userdeptcd)
-
- if( usercdok != userdeptcd ){
- frmf_setParameter("menuparam", ds_temp.getColumn(0, "menuParam"));
- }
-
- //(start) 파라메터 추가 (2009.11.13 JJE)
- var wrdt = ds_grd_lglydisrepttrgtmaninfo.getColumn(iRow, "wrtedt").substring(0, 8);
- var wrDate = wrdt.toDate("YYYYMMDD");
- var valiDT = wrDate.getAddDate(1, "Y").getDateFormat("YYYYMMDD hhmmss");
- var curDT = utlf_getCurrentDateTime();
- var rpDT = "";
-
- if( valiDT < curDT ){
- var reptyn = "Y";
- } else {
- var reptyn = "N";
- }
-
- frmf_setParameter("reptdt", wrdt);
- frmf_setParameter("reptyn", reptyn);
- frmf_setParameter("chgyn", "N");
-
- if( utlf_isNull(ds_grd_lglydisrepttrgtmaninfo.getColumn(iRow, "reptdt")) ){
- rpDT = "99991231";
- } else {
- rpDT = ds_grd_lglydisrepttrgtmaninfo.getColumn(iRow, "reptdt").substring(0, 8);
- }
- frmf_setParameter("prt_reptdt", rpDT);
-
- //진료에서 신고상태 신고일 경우 disable시킴
- if( ds_grd_lglydisrepttrgtmaninfo.getColumn(ds_grd_lglydisrepttrgtmaninfo.rowposition, "reptdtnm") == "신고" ){
- frmf_setParameter("DisabledChk", "Y");
- }
- }
- /******************************************************************
- * Argument :
- * Description : 법정전염병
- ******************************************************************/
- function fLglyDisReptPopup(obj:PopupMenu, e:MenuClickEventInfo){
- fSetupParameters();
- var iRow = ds_grd_lglydisrepttrgtmaninfo.rowposition;
- if( ds_grd_lglydisrepttrgtmaninfo.getColumn(iRow, "cnclyn") == "Y" ){
- sysf_messageBox("삭제된 신고서", "I009");
- return;
- }
-
- if(e.id == "01") { // 법정전염병신고서
- frmf_open("SPASI01500", "SPASI01500", null, null, null, null, null, null, null, null, null, null, "M");
- } else if(e.id == "02") { // 질병관리본부 신고
- frmf_modal("SPASI09100", "SPASI09100", null, null, null, null, null, null, null, null, null, null, "M");
- btn_search_onclick();
- } else if(e.id == "03") { // 질병관리본부 신고
- frmf_modal("SPASI01510", "SPASI01510", null, null, null, null, null, null, null, null, null, null, "M");
- }
- //btn_search.dispatch("DOMActivate");
- }
- /******************************************************************
- * Argument :
- * Description : 간염표본감시
- ******************************************************************/
- function fHptsReptPopup(){
- fSetupParameters();
- var iRow = ds_grd_lglydisrepttrgtmaninfo.rowposition;
- if( ds_grd_lglydisrepttrgtmaninfo.getColumn(iRow, "cnclyn") == "Y" ){
- sysf_messageBox("삭제된 신고서", "I009");
- return;
- }
-
- frmf_open("SPASI01600", "SPASI01600", null, null, null, null, null, null, null, null, null, null, "M");
- //btn_search.dispatch("DOMActivate");
- }
- /******************************************************************
- * Argument :
- * Description : 성병표본감시
- ******************************************************************/
- function fVenReptPopup(){
- fSetupParameters();
- var iRow = ds_grd_lglydisrepttrgtmaninfo.rowposition;
- if( ds_grd_lglydisrepttrgtmaninfo.getColumn(iRow, "cnclyn") == "Y" ){
- sysf_messageBox("삭제된 신고서", "I009");
- return;
- }
-
- frmf_open("SPASI01700", "SPASI01700", null, null, null, null, null, null, null, null, null, null, "M");
- //btn_search.dispatch("DOMActivate");
- }
- /******************************************************************
- * Argument :
- * Description : 선천성매독
- ******************************************************************/
- function fSyphReptPopup(){
- fSetupParameters();
- var iRow = ds_grd_lglydisrepttrgtmaninfo.rowposition;
- if( ds_grd_lglydisrepttrgtmaninfo.getColumn(iRow, "cnclyn") == "Y" ){
- sysf_messageBox("삭제된 신고서", "I009");
- return;
- }
-
- frmf_open("SPASI01900", "SPASI01900", null, null, null, null, null, null, null, null, null, null, "M");
- //btn_search.dispatch("DOMActivate");
- }
- /******************************************************************
- * Argument :
- * Description : 결핵환자
- ******************************************************************/
- function fTbReptPopup(){
- //trace("fTbReptPopup 1");
- fSetupParameters();
- var iRow = ds_grd_lglydisrepttrgtmaninfo.rowposition;
- if( ds_grd_lglydisrepttrgtmaninfo.getColumn(iRow, "cnclyn") == "Y" ){
- sysf_messageBox("삭제된 신고서", "I009");
- return;
- }
-
- frmf_open("SPASI01800", "SPASI01800", null, null, null, null, null, null, null, null, null, null, "M");
- //btn_search.dispatch("DOMActivate");
- }
- /******************************************************************
- * Argument :
- * Description : 결핵치료종료환자
- ******************************************************************/
- function fTbReptEndPopup(){
- fSetupParameters();
- var iRow = ds_grd_lglydisrepttrgtmaninfo.rowposition;
- if( ds_grd_lglydisrepttrgtmaninfo.getColumn(iRow, "cnclyn") == "Y" ){
- sysf_messageBox("삭제된 신고서", "I009");
- return;
- }
- var iRow = ds_grd_lglydisrepttrgtmaninfo.rowposition;
- frmf_setParameter("reptflag", ds_grd_lglydisrepttrgtmaninfo.getColumn(iRow, "reptflag"));
- frmf_open("SPASI01800", "SPASI01800", null, null, null, null, null, null, null, null, null, null, "M");
- //btn_search.dispatch("DOMActivate");
- }
- /******************************************************************
- * Argument :
- * Description : 크로이츠펠트-야콥병신고서
- ******************************************************************/
- function f06ReptPopup(){
- fSetupParameters();
- var iRow = ds_grd_lglydisrepttrgtmaninfo.rowposition;
- if( ds_grd_lglydisrepttrgtmaninfo.getColumn(iRow, "cnclyn") == "Y" ){
- sysf_messageBox("삭제된 신고서", "I009");
- return;
- }
-
- frmf_open("SPASI03400", "SPASI03400", null, null, null, null, null, null, null, null, null, null, "M");
- //btn_search.dispatch("DOMActivate");
- }
- /******************************************************************
- * Argument :
- * Description : 인플루엔자신고서
- ******************************************************************/
- function f07ReptPopup(){
- fSetupParameters();
- var iRow = ds_grd_lglydisrepttrgtmaninfo.rowposition;
- if( ds_grd_lglydisrepttrgtmaninfo.getColumn(iRow, "cnclyn") == "Y" ){
- sysf_messageBox("삭제된 신고서", "I009");
- return;
- }
-
- frmf_open("SPASI03500", "SPASI03500", null, null, null, null, null, null, null, null, null, null, "M");
- //btn_search.dispatch("DOMActivate");
- }
- /******************************************************************
- * Argument :
- * Description : 산모B형간염신고서
- ******************************************************************/
- function f08ReptPopup(){
- fSetupParameters();
- var iRow = ds_grd_lglydisrepttrgtmaninfo.rowposition;
- if( ds_grd_lglydisrepttrgtmaninfo.getColumn(iRow, "cnclyn") == "Y" ){
- sysf_messageBox("삭제된 신고서", "I009");
- return;
- }
-
- frmf_open("SPASI03600", "SPASI03600", null, null, null, null, null, null, null, null, null, null, "M");
- //btn_search.dispatch("DOMActivate");
- }
- /******************************************************************
- * Argument :
- * Description : HIV-AIDS신고서
- ******************************************************************/
- function f09ReptPopup(){
- fSetupParameters();
- var iRow = ds_grd_lglydisrepttrgtmaninfo.rowposition;
- if( ds_grd_lglydisrepttrgtmaninfo.getColumn(iRow, "cnclyn") == "Y" ){
- sysf_messageBox("삭제된 신고서", "I009");
- return;
- }
-
- frmf_open("SPASI03300", "SPASI03300", null, null, null, null, null, null, null, null, null, null, "M");
- //btn_search.dispatch("DOMActivate");
- }
- /******************************************************************
- * Argument :
- * Description : 수족구병감시결과신고서
- ******************************************************************/
- function f10ReptPopup(){
- fSetupParameters();
- var iRow = ds_grd_lglydisrepttrgtmaninfo.rowposition;
- if( ds_grd_lglydisrepttrgtmaninfo.getColumn(iRow, "cnclyn") == "Y" ){
- sysf_messageBox("삭제된 신고서", "I009");
- return;
- }
-
- frmf_open("SPASI03700", "SPASI03700", null, null, null, null, null, null, null, null, null, null, "M");
- //btn_search.dispatch("DOMActivate");
- }
- /******************************************************************
- * Argument :
- * Description : 해외유입 기생충 감염증
- ******************************************************************/
- function f11ReptPopup(){
- fSetupParameters();
- var iRow = ds_grd_lglydisrepttrgtmaninfo.rowposition;
- if( ds_grd_lglydisrepttrgtmaninfo.getColumn(iRow, "cnclyn") == "Y" ){
- sysf_messageBox("삭제된 신고서", "I009");
- return;
- }
-
- frmf_open("SPASI04100", "SPASI04100", null, null, null, null, null, null, null, null, null, null, "M");
- //btn_search.dispatch("DOMActivate");
- }
- //20161214 이돈희 추가
- function f13ReptPopup()
- {
- fSetupParameters();
- var iRow = ds_grd_lglydisrepttrgtmaninfo.rowposition;
- if( ds_grd_lglydisrepttrgtmaninfo.getColumn(iRow, "cnclyn") == "Y" ){
- sysf_messageBox("삭제된 신고서", "I009");
- return;
- }
-
- frmf_open("SPASI05000", "SPASI05000", null, null, null, null, null, null, null, null, null, null, "M");
- }
- function f14ReptPopup()
- {
- //trace("f14ReptPopup");
- fSetupParameters();
- var iRow = ds_grd_lglydisrepttrgtmaninfo.rowposition;
- if( ds_grd_lglydisrepttrgtmaninfo.getColumn(iRow, "cnclyn") == "Y" ){
- sysf_messageBox("삭제된 신고서", "I009");
- return;
- }
-
- frmf_open("SPASI06000", "SPASI06000", null, null, null, null, null, null, null, null, null, null, "M");
- }
- function f15ReptPopup()
- {
- fSetupParameters();
- var iRow = ds_grd_lglydisrepttrgtmaninfo.rowposition;
- if( ds_grd_lglydisrepttrgtmaninfo.getColumn(iRow, "cnclyn") == "Y" ){
- sysf_messageBox("삭제된 신고서", "I009");
- return;
- }
-
- frmf_open("SPASI07000", "SPASI07000", null, null, null, null, null, null, null, null, null, null, "M");
- }
- /******************************************************************
- * Argument :
- * Description : 상단정보설정
- ******************************************************************/
- function fUpInfo(){
- var sessionPID = appf_getPatientId();
- var iRow = ds_grd_lglydisrepttrgtmaninfo.rowposition;
- if( sessionPID != ds_grd_lglydisrepttrgtmaninfo.getColumn(iRow, "Pid") ){
- fReqOpPatPamInfo();
- }
- }
- function fReqOpPatPamInfo(){
- var iRow = ds_grd_lglydisrepttrgtmaninfo.rowposition;
- var tioflag = ds_grd_lglydisrepttrgtmaninfo.getColumn(iRow, "ioflag");
- if( tioflag == "I" || tioflag == "E" ){
- var ioflag = tioflag;
- var pid = ds_grd_lglydisrepttrgtmaninfo.getColumn(iRow, "pid");
- var indd = ds_grd_lglydisrepttrgtmaninfo.getColumn(iRow, "indd");
- var cretno = ds_grd_lglydisrepttrgtmaninfo.getColumn(iRow, "cretno");
- var seqno = ds_grd_lglydisrepttrgtmaninfo.getColumn(iRow, "iseqno");
- var instcd = sysf_getUserInfo("dutplceinstcd");
- var srchdd = utlf_getCurrentDate();
- var param = ioflag + "▦" + pid + "▦" + indd + "▦" + cretno + "▦" + instcd + "▦" + srchdd;
-
- frmf_setParameter("condparam", param);
- } else if( tioflag == "O" ){
- var ioflag = "O";
- var pid = ds_grd_lglydisrepttrgtmaninfo.getColumn(iRow, "pid");
- var orddd = ds_grd_lglydisrepttrgtmaninfo.getColumn(iRow, "indd");
- var cretno = ds_grd_lglydisrepttrgtmaninfo.getColumn(iRow, "cretno");
- var srchdd = utlf_getCurrentDate();
- var param = ioflag + "▦" + pid + "▦" + orddd + "▦" + cretno + "▦" + instcd;
-
- frmf_setParameter("condparam", param);
- }
-
- appf_initPatientInfo(param);
- //frmf_modal("SPMMO08900", "SPMMO08900", null, null, null, null, null, null, null, null, null, null, "M");
- }
- /******************************************************************
- * Argument :
- * Description : 조회
- ******************************************************************/
- function btn_search_onclick(obj:Button, e:ClickEventInfo)
- {
-
- trace("btn_search_onclick");
- if( ds_main_cond.getColumn(0, "trgtmankind") == "" ){
- sysf_messageBox("대상자종류를", "C002");
- return;
- }
-
- if( ds_main_cond.getColumn(0, "fromdd") == "" || ds_main_cond.getColumn(0, "todd") == "" ){
- sysf_messageBox("일자는", "I003");
- return;
- }
-
- //trace("orddept = " + ds_main_cond.getColumn(0,"orddept"));
- ds_send_cond.clearData();
- ds_send_cond.copyData(ds_main_cond);
-
- var oParam = {};
- oParam.id = "TRASI01301";
- oParam.service = "infcmngtapp.LglyDisMngt";
- oParam.method = "reqGetLglyDisReptTrgtmanList";
- oParam.inds = "req=ds_send_cond";
- oParam.outds = "ds_grd_lglydisrepttrgtmaninfo=lglydisrepttrgtmanlist";
- oParam.async = true;
- oParam.callback = "cf_TRASI01301";
- tranf_submit(oParam);
-
-
- //20161222 이돈희 수정 : 삭제된 환자의 경우 회색 표현으로 Script에서 주석처리 후
- //Grid 속성에서 표현식으로 색 변경 수정
-
- // if( arErrorCode.pop("TRASI01301") > -1 )
- // {
- //전체선택 초기화 by sonjy 20100413
- //chkall.selected = false;
-
- //삭제 포함으로 조회한 경우, 삭제 신고서의 색상을 회색으로 표현 (2009.11.13 JJE 추가)
- // trace("Del 1");
- // if( ds_send_cond.getColumn(0, "delyn") == "Y" )
- // {
- // trace("Del 2 : " + ds_grd_lglydisrepttrgtmaninfo.rowcount);
- // for( var i=1; i < ds_grd_lglydisrepttrgtmaninfo.rowcount; i++ ){
- // if( ds_grd_lglydisrepttrgtmaninfo.getColumn(i, "cnclyn") == "Y" )
- // {
- // trace("Del 3 : " + i*20+3);
- //
- // //grd_lglydisrepttrgtman.setRowProperty("body", i, "color", "#C0C0C0")
- // //grd_lglydisrepttrgtman.setCellProperty("body", i*20+3 , "color", "#C0C0C0");
- // //grd_lglydisrepttrgtman.setFormatRowProperty(1, "color", "#C0C0C0");
- // }
- // else
- // {
- // //grd_lglydisrepttrgtman.setCellProperty("body", i, "color", "##000000")
- // //grd_lglydisrepttrgtman.setCellProperty("body", i*20+3, "color", "##000000");
- // //grd_lglydisrepttrgtman.setFormatRowProperty(2, "color", "##000000");
- // }
- // }
- // }
- // }
- //model.makeNode("/root/hidden/searchlist");
-
- }
- function cf_TRASI01301(sSvcId, nErrorCode, sErrorMsg) {
- if(nErrorCode < 0) return;
-
- dsf_setDefaultVal(ds_grd_lglydisrepttrgtmaninfo, "chk");
-
- //20170206 이돈희 추가 : 조회조건에 검체의뢰서 전체 조회 추가
- //요청번호 20170120011
- var vaCheckClinicSpec = grp_sea.chk_clinicspec.value;
-
- //20170206 이돈희 추가 : 조회조건에 검체의뢰서 전체 조회 추가
- //검체의뢰서 전체 조회 체크시 reptflag 13, 14, 15 만 표시
- //요청번호 20170120011
- if(vaCheckClinicSpec == 'true')
- {
- ds_grd_lglydisrepttrgtmaninfo.filter("reptflag == '13' || reptflag == '14' || reptflag == '15'");
- }
-
-
- ds_hidden_searchlist.copyData(ds_grd_lglydisrepttrgtmaninfo);
-
- //20200302_AYS_우측클릭 작업 후 재조회 시 기존 클릭 위치로 이동(박윤정 쌤 요청)
- //ds_grd_lglydisrepttrgtmaninfo.clearSelect();
- ds_grd_lglydisrepttrgtmaninfo.rowposition = pos;
- ds_grd_lglydisrepttrgtmaninfo.selectRow(pos);
- grd_lglydisrepttrgtman.vscrollbar.pos = pos1;
-
- pos = -1;
- pos1 = -1;
- //20200302_AYS_우측클릭 작업 후 재조회 시 기존 클릭 위치로 이동(박윤정 쌤 요청)
- }
- /******************************************************************
- * Argument :
- * Description : 대상자종류 onClick Event
- ******************************************************************/
- function grp_sea_cmb_trgtmankind_onitemchanged(obj:Combo, e:ItemChangeEventInfo)
- {
- if(ds_main_cond.getColumn(0, "trgtmankind") == "02"){
- grp_sea.bool1.visible = true;
- }else{
- grp_sea.bool1.visible = false;
- ds_main_cond.setColumn(0, "trgtmankind02flag", "");
- }
-
- var ev = new ClickEventInfo;
- frmf_inputEnterKey("grp_sea.btn_search", "onclick", ev );
- }
- /******************************************************************
- * Argument :
- * Description : 등록번호 조회
- ******************************************************************/
- function grp_sea_ipt_patcd_onkeydown(obj:Edit, e:KeyEventInfo)
- {
- if( e.keycode == 13 ){
- ds_send_cond.clearData();
- ds_main_cond.setColumn(0, "pid", grp_sea.ipt_patcd.value);
- ds_send_cond.copyData(ds_main_cond);
- //ds_send_cond.getColumn(0,"")
- var oParam = {};
- oParam.id = "TRASI01303";
- oParam.service = "infcmngtapp.LglyDisMngt";
- oParam.method = "reqGetLglyDisReptTrgtmanList";
- oParam.inds = "req=ds_send_cond";
- oParam.outds = "ds_grd_lglydisrepttrgtmaninfo=lglydisrepttrgtmanlist";
- oParam.async = true;
- oParam.callback = "cf_TRASI01303";
- tranf_submit(oParam);
-
- }
- }
- function cf_TRASI01303(sSvcId, nErrorCode, sErrorMsg)
- {
- if(nErrorCode < 0) return;
-
- if( ds_grd_lglydisrepttrgtmaninfo.getColumn(0, "delyn") == "Y" )
- {
- for( var i=1; i < ds_grd_lglydisrepttrgtmaninfo.rowcount(); i++ )
- {
- if( ds_grd_lglydisrepttrgtmaninfo.getColumn(i, "cnclyn") == "Y" )
- {
- grd_lglydisrepttrgtman.setCellProperty("data", i, "color", "#C0C0C0")
- }
- else
- {
- grd_lglydisrepttrgtman.setCellProperty("data", i, "color", "##000000")
- }
-
- }
- }
-
- ds_hidden_searchlist.clearData();
- ds_hidden_searchlist.copyData(ds_grd_lglydisrepttrgtmaninfo);
- }
- /******************************************************************
- * Argument :
- * Description : 등록번호 조회(돋보기)
- ******************************************************************/
- function grp_sea_btn_pid_onclick(obj:Button, e:ClickEventInfo)
- {
- var inPid = grp_sea.ipt_patcd.value;
-
- ds_temp_patinfo.setColumn(0, "srchcond", "1");
- ds_temp_patinfo.setColumn(0, "pid", inPid);
-
- var objArg = new Object();
- objArg.arg_ds_send = ds_temp_patinfo;
-
- frmf_modal("SPPMC02500", "SPPMC02500", objArg, null, null, null, null, null, null, null, null, null, "M");
-
- var sPid = ds_patinfolist.getColumn(0, "pid");
- var sHngnm = ds_patinfolist.getColumn(0, "hngnm");
-
- ds_main_cond.setColumn(0, "pid", sPid);
- ds_main_cond.setColumn(0, "hngnm", sHngnm);
- }
- /******************************************************************
- * Argument :
- * Description : 환자명 조회(돋보기)
- ******************************************************************/
- function grp_sea_btn_pname_onclick(obj:Button, e:ClickEventInfo)
- {
- //trace("grp_sea_btn_pname_onclick");
-
- var hName = grp_sea.ipt_patnm.value;
-
- ds_temp_patinfo.setColumn(0, "srchcond", "2");
- ds_temp_patinfo.setColumn(0, "hngnm", hName);
-
- var objArg = new Object();
- objArg.arg_ds_send = ds_temp_patinfo;
-
-
- frmf_modal("SPPMC02500", "SPPMC02500", objArg, null, null, null, null, null, null, null, null, null, "M");
-
- var sPid = ds_patinfolist.getColumn(0, "pid");
- var sHngnm = ds_patinfolist.getColumn(0, "hngnm");
-
- //trace("pid = %s",sPid);
- //trace("sHngnm = %s",sHngnm);
-
- ds_main_cond.setColumn(0, "pid", sPid);
- ds_main_cond.setColumn(0, "hngnm", sHngnm);
- }
- /******************************************************************
- * Argument :
- * Description : 환자명 조회
- ******************************************************************/
- function grp_sea_ipt_patnm_onkeydown(obj:Edit, e:KeyEventInfo)
- {
- if( e.keycode == 13 ){
-
- var hName = grp_sea.ipt_patnm.value;
- ds_temp_patinfo.setColumn(0, "srchcond", "2");
- ds_temp_patinfo.setColumn(0, "hngnm", hName);
-
- var objArg = new Object();
- objArg.arg_ds_send = ds_temp_patinfo;
-
- frmf_modal("SPPMC02500", "SPPMC02500", objArg, null, null, null, null, null, null, null, null, null, "M");
-
- var sPid = ds_patinfolist.getColumn(0, "pid");
- var sHngnm = ds_patinfolist.getColumn(0, "hngnm");
-
- //trace("pid = %s",sPid);
- //trace("sHngnm = %s",sHngnm);
-
- ds_main_cond.setColumn(0, "pid", sPid);
- ds_main_cond.setColumn(0, "hngnm", sHngnm);
- }
- }
- /******************************************************************
- * Argument :
- * Description : 마우스 오른쪽버튼
- ******************************************************************/
- function grd_lglydisrepttrgtman_onrbuttonup(obj:Grid, e:GridMouseEventInfo)
- {
- if(obj.rowcount > e.row && e.row > -1){
- // var objDs = eval(obj.binddataset);
- // objDs.rowposition = e.row;
- grdf_setSelectedCell(obj, e);
- pos = ds_grd_lglydisrepttrgtmaninfo.rowposition;
- pos1 = grd_lglydisrepttrgtman.vscrollbar.pos;
-
- var reptdoc = ds_main_cond.getColumn(0, "trgtmankind");
-
- switch( reptdoc ){
- case '00' :
- var reptdoc = ds_grd_lglydisrepttrgtmaninfo.getColumn(e.row, "reptflag");
- //trace("reptdoc"+reptdoc);
- switch( reptdoc ){
- case '01' : pmn_popupMenu_01.trackPopup(e.screenX,e.screenY); break; //법정전염병신고서, 질병관리본부 신고
- case '02' : pmn_popupMenu_05.trackPopup(e.screenX,e.screenY); break; //결핵환자신고서
- case '03' : pmn_popupMenu_02.trackPopup(e.screenX,e.screenY); break; //간염표본감시신고서
- case '04' : pmn_popupMenu_04.trackPopup(e.screenX,e.screenY); break; //선천성매독표본감시신고서
- case '05' : pmn_popupMenu_03.trackPopup(e.screenX,e.screenY); break; //성병표본감시신고서
- case '06' : pmn_popupMenu_06.trackPopup(e.screenX,e.screenY); break; //크로이츠펠트야콥병신고서
- case '07' : pmn_popupMenu_07.trackPopup(e.screenX,e.screenY); break; //인플루엔자신고서
- case '08' : pmn_popupMenu_08.trackPopup(e.screenX,e.screenY); break; //산모B형간염신고서
- case '09' : pmn_popupMenu_09.trackPopup(e.screenX,e.screenY); break; //HIV-AIDS신고서
- case '10' : pmn_popupMenu_10.trackPopup(e.screenX,e.screenY); break; //수족구병신고서
- case '11' : pmn_popupMenu_11.trackPopup(e.screenX,e.screenY); break; //해외유입기생충감염증
- case '13' : pmn_popupMenu_13.trackPopup(e.screenX,e.screenY); break; //검체시험의뢰서 A서식
- case '14' : pmn_popupMenu_14.trackPopup(e.screenX,e.screenY); break; //검체시험의뢰서 B서식
- case '15' : pmn_popupMenu_15.trackPopup(e.screenX,e.screenY); break; //검체시험의뢰서 C서식
- case '99' : pmn_popupMenu_99.trackPopup(e.screenX,e.screenY); break; //결핵사망신고서
- }
- break;
- case '01' : pmn_popupMenu_01.trackPopup(e.screenX,e.screenY); break; //법정전염병신고서, 질병관리본부 신고
- case '02' : pmn_popupMenu_05.trackPopup(e.screenX,e.screenY); break; //결핵환자신고서
- case '03' : pmn_popupMenu_02.trackPopup(e.screenX,e.screenY); break; //간염표본감시신고서
- case '04' : pmn_popupMenu_04.trackPopup(e.screenX,e.screenY); break; //선천성매독표본감시신고서
- case '05' : pmn_popupMenu_03.trackPopup(e.screenX,e.screenY); break; //성병표본감시신고서
- case '06' : pmn_popupMenu_06.trackPopup(e.screenX,e.screenY); break; //크로이츠펠트야콥병신고서
- case '07' : pmn_popupMenu_07.trackPopup(e.screenX,e.screenY); break; //인플루엔자신고서
- case '08' : pmn_popupMenu_08.trackPopup(e.screenX,e.screenY); break; //산모B형간염신고서
- case '09' : pmn_popupMenu_09.trackPopup(e.screenX,e.screenY); break; //HIV-AIDS신고서
- case '10' : pmn_popupMenu_10.trackPopup(e.screenX,e.screenY); break; //수족구병신고서
- case '11' : pmn_popupMenu_11.trackPopup(e.screenX,e.screenY); break; //해외유입기생충감염증
- case '13' : pmn_popupMenu_13.trackPopup(e.screenX,e.screenY); break; //검체시험의뢰서 A서식
- case '14' : pmn_popupMenu_14.trackPopup(e.screenX,e.screenY); break; //검체시험의뢰서 B서식
- case '15' : pmn_popupMenu_15.trackPopup(e.screenX,e.screenY); break; //검체시험의뢰서 C서식
- case '99' : pmn_popupMenu_99.trackPopup(e.screenX,e.screenY); break; //결핵사망신고서
- }
- }
-
- return true;
- }
- /******************************************************************
- * Argument :
- * Description : 삭제
- ******************************************************************/
- function grp_ordbtn_button6_onclick(obj:Button, e:ClickEventInfo)
- {
- fn_setDelete();
- }
- function grp_btn_button2_onclick(obj:Button, e:ClickEventInfo)
- {
- fn_setDelete();
- }
- function fn_setDelete(){
- ds_temp_lgly.clear();
- ds_temp_lgly.copyData(ds_grd_lglydisrepttrgtmaninfo);
- ds_temp_lgly.filter("chk=='1'");
- if( ds_temp_lgly.rowcount < 1 ){
- sysf_messageBox("선택된 환자가", "I004");
- return;
- }
-
- //20170109 이윤주선생님 요청으로 ㄴ다중 건 신청 막기
- if( ds_temp_lgly.rowcount > 1 ){
- sysf_messageBox("선택된 건이 2건 이상입니다", "I999");
- return;
- }
- //전체선택시 한종류만 출력 가능 091127 PYJ
- var trgtmankind = ds_main_cond.getColumn(0, "trgtmankind");
-
- if( trgtmankind == "00" && ds_temp_lgly.rowcount > 1 ){
- sysf_messageBox("전체조회시 한명의 환자만 선택 가능합니다", "I");
- return;
- }
- //20171230 이돈희 수정 : 여러명 선택후 삭제시 마지막 선택 환자만 삭제 되는 현상
- //=> for 문 안에 ds_send_savedata.clearData(); 가 존재하여 컬럼 ADD와 함께 for 문 밖으로 뺌
-
- ds_send_savedata.clearData();
-
- ds_send_savedata.addColumn("state", "string", 256);
- ds_send_savedata.addColumn("reptflag", "string", 256);
- ds_send_savedata.addColumn("psnflag", "string", 256);
- ds_send_savedata.addColumn("wrtedt", "string", 256);
- ds_send_savedata.addColumn("reptdt", "string", 256);
- ds_send_savedata.addColumn("seqno", "string", 256);
- ds_send_savedata.addColumn("pid", "string", 256);
- ds_send_savedata.addColumn("indd", "string", 256);
- ds_send_savedata.addColumn("cretno", "string", 256);
- ds_send_savedata.addColumn("lglydiscd", "string", 256);
- ds_send_savedata.addColumn("reptflag", "string", 256);
-
- for(var i=0; i < ds_temp_lgly.rowcount; i++)
- {
- var pid = ds_temp_lgly.getColumn(i, "pid");
- var name = ds_temp_lgly.getColumn(i, "name");
- var reptDt = ds_temp_lgly.getColumn(i, "reptdt");
- var cnclYN = ds_temp_lgly.getColumn(i, "cnclyn");
- var psnflag = ds_temp_lgly.getColumn(i, "psnflag");
- var ioflag = ds_temp_lgly.getColumn(i, "ioflag");
- var state = ds_temp_lgly.getColumn(i, "state");
- var reptflag = ds_temp_lgly.getColumn(i, "reptflag");
- var dethreptstat = ds_grd_lglydisrepttrgtmaninfo.getColumn(i, "dethreptstat");
-
- if( !utlf_isNull(reptDt) || reptDt == "99991231" || dethreptstat == "R" )
- {
- sysf_messageBox(name + "(" + pid + ")" + "의 신고서는 이미 출력되어\n삭제할 수", "I004");
- return;
- }
- else if(cnclYN == "Y")
- {
- sysf_messageBox(name + "(" + pid + ")" + "의 신고서는 이미 삭제되어\n삭제할 수", "I004");
- return;
- }
-
- if( ds_temp_lgly.getColumn(i, "chk") == "1" )
- {
- var rows = ds_send_savedata.addRow();
-
- ds_send_savedata.setColumn(rows, "state", ds_temp_lgly.getColumn(i, "state"));
- ds_send_savedata.setColumn(rows, "reptflag", ds_temp_lgly.getColumn(i, "reptflag"));
- ds_send_savedata.setColumn(rows, "psnflag", ds_temp_lgly.getColumn(i, "ioflag"));
- ds_send_savedata.setColumn(rows, "wrtedt", ds_temp_lgly.getColumn(i, "wrtedt"));
- ds_send_savedata.setColumn(rows, "reptdt", ds_temp_lgly.getColumn(i, "reptdt"));
- ds_send_savedata.setColumn(rows, "seqno", ds_temp_lgly.getColumn(i, "seqno"));
- ds_send_savedata.setColumn(rows, "pid", ds_temp_lgly.getColumn(i, "pid"));
- ds_send_savedata.setColumn(rows, "indd", ds_temp_lgly.getColumn(i, "indd"));
- ds_send_savedata.setColumn(rows, "cretno", ds_temp_lgly.getColumn(i, "cretno"));
- ds_send_savedata.setColumn(rows, "lglydiscd", ds_temp_lgly.getColumn(i, "lglydiscd"));
- ds_send_savedata.setColumn(rows, "reptflag", ds_temp_lgly.getColumn(i, "reptflag"));
- }
- }
-
- if (sysf_messageBox("","Q001") == "7"){
- sysf_messageBox("삭제가 취소되었습니다","I");
- return;
- }
-
- dsf_setTypeFormat(ds_send_savedata, "seqno:INT");
- var oParam = {};
- oParam.id = "TXASI01302";
- oParam.service = "infcmngtapp.LglyDisMngt";
- oParam.method = "reqExeCnclLglyDisRec";
- oParam.inds = "req=ds_send_savedata";
- oParam.outds = "ds_temp_getlglydisinfo=info";
- oParam.async = false;
- oParam.callback = "cf_TXASI01302";
- tranf_submit(oParam);
-
- if( arErrorCode.pop("TXASI01302") > -1 ){
- sysf_messageBox("삭제","I001");
- grp_sea.btn_search.click();
- }
- }
- function cf_TXASI01302(sSvcId, nErrorCode, sErrorMsg) {
- arErrorCode.push(sSvcId, nErrorCode);
- }
- /******************************************************************
- * Argument :
- * Description : 엑셀다운로드
- ******************************************************************/
- function btn_excel_onclick(obj:Button, e:ClickEventInfo)
- {
- //20161220 이돈희 수정 getRowCount를 rowcount로 수정
- if( ds_grd_lglydisrepttrgtmaninfo.rowcount > 0 ){
- grdf_exportExcel(grd_lglydisrepttrgtman, "법정전염병신고대상자", "법정전염병신고대상자", false, "", "user", false);
- } else {
- sysf_messageBox("조회된 데이터가 ", "I004");
- }
- }
- /******************************************************************
- * Argument :
- * Description : 초기화
- ******************************************************************/
- function grp_ordbtn_button5_onclick(obj:Button, e:ClickEventInfo)
- {
- SMASI01300_oninit();
- }
- /******************************************************************
- * Argument :
- * Description : 미리보기
- ******************************************************************/
- function grp_btn3_button8_onclick(obj:Button, e:ClickEventInfo)
- {
- fn_ReportFreeView();
- }
- function grp_btn_btn_preview_onclick(obj:Button, e:ClickEventInfo)
- {
- fn_ReportFreeView();
- }
- function fn_ReportFreeView(){
- // 선택된 데이터만 필터링해서 복사
- ds_temp_lgly.clear();
- ds_temp_lgly.copyData(ds_grd_lglydisrepttrgtmaninfo);
- ds_temp_lgly.filter("chk=='1'");
-
- if( ds_temp_lgly.rowcount < 1 ){
- sysf_messageBox("선택된 환자가", "I004");
- return;
- }
-
- var cnclRows = ds_temp_lgly.findRowExpr("chk=='1' && cnclyn=='Y'");
- if( cnclRows > 0){
- sysf_messageBox("선택된 환자 중 삭제 신고서가 존재합니다.\n삭제 신고서는 출력할 수", "I004");
- return;
- }
-
- //전체선택시 한종류만 출력 가능 091127 PYJ
- var trgtmankind = ds_main_cond.getColumn(0, "trgtmankind");
- if( trgtmankind == "00" && ds_temp_lgly.rowcount > 1 ){
- sysf_messageBox("전체조회시 한명의 환자만 선택 가능합니다", "I");
- return;
- }
- //Data Set Clear
- ds_temp_lglydisrepttrgtmaninfo.clearData();
- ds_send_savedata.clearData();
- ds_send_searchdata.clearData();
- ds_hidden_reptrsltinfo.copyData(ds_temp_lgly);
- ds_temp_reptrsltinfo.copyData(ds_temp_lgly);
- ds_hidden_reptrsltinfo.clearData();
- ds_temp_reptrsltinfo.clearData();
-
- dsf_createDs("ds_send_savedata",
- [{col:"m", type:"string", size:256}
- ,{col:"select", type:"string", size:256}
- ,{col:"pid", type:"string", size:256}
- ,{col:"wrtedt", type:"string", size:256}
- ,{col:"seqno", type:"string", size:256}],true);
-
- //미신고 조회시 출력에 보이지 않는 문제 09.11.25
- var getReptstat = ds_send_cond.getColumn(0, "reptstat");
-
- trace("fn_ReportFreeView 1");
- for( var i = 0; i < ds_temp_lgly.rowcount; i++ ){
- var getChk = ds_temp_lgly.getColumn(i, "chk");
- if( getChk == "1" ){
- trace("fn_ReportFreeView 2");
- //전체("00")일때 출력 091126 PYJ
- var reptdoc = ds_send_cond.getColumn(0, "trgtmankind");
- //if( reptdoc == "00" ){ //20161114 전체 아닐때 레포트 출력 오류 수정
- //ds_hidden_lglydisrepttrgtmaninfo.copyData(ds_temp_lgly);
- var Rreptflag = ds_temp_lgly.getColumn(i, "reptflag");
- var sLglydiscd = ds_temp_lgly.getColumn(i, "lglydiscd");
-
- ds_main_cond.setColumn(0, "trgtmankind", Rreptflag);
- ds_main_cond.setColumn(0, "slglydiscd", sLglydiscd);
- ds_main_cond.setColumn(0, "pid", ds_temp_lgly.getColumn(i, "pid"));
- ds_main_cond.setColumn(0, "name", ds_temp_lgly.getColumn(i, "name"));
- ds_main_cond.setColumn(0, "wrtedt", ds_temp_lgly.getColumn(i, "wrtedt"));
- ds_main_cond.setColumn(0, "seqno", ds_temp_lgly.getColumn(i, "seqno"));
- ds_main_cond.setColumn(0, "reptstat", "");
- ds_send_cond.copyData(ds_main_cond);
-
- //전체조건에서 환자를 조회
- ds_main_cond.setColumn(0, "reptstat", "");
-
- ds_hidden_lglydisrepttrgtmaninfo_temp.clearData();
-
- var oParam = {};
- oParam.id = "TRASI01305";
- oParam.service = "infcmngtapp.LglyDisMngt";
- oParam.method = "reqGetLglyDisReptTrgtmanList";
- oParam.inds = "req=ds_send_cond";
- oParam.outds = "ds_hidden_lglydisrepttrgtmaninfo_temp=lglydisrepttrgtmanlist";
- oParam.async = false;
- //oParam.callback = "cf_TRASI01305";
- tranf_submit(oParam);
-
- //조건을 원상태로 복귀
- ds_main_cond.setColumn(0, "reptstat", getReptstat);
- ds_send_cond.setColumn(0, "reptstat", getReptstat);
-
- //초기화
- ds_main_cond.setColumn(0, "pid", "");
- ds_main_cond.setColumn(0, "name", "");
- ds_main_cond.setColumn(0, "wrtedt", "");
- ds_main_cond.setColumn(0, "seqno", "");
- //}
-
- //저장 후 조회해온 데이터를 출력해주도록 변경 (2009.07.17 JJE)
- var select;
- if( getChk == "1" ) select = "true"; else select = "false";
-
- var nSendRow = ds_send_savedata.addRow();
- ds_send_savedata.setColumn(nSendRow, "m", "u");
- ds_send_savedata.setColumn(nSendRow, "select", select);
- ds_send_savedata.setColumn(nSendRow, "pid", ds_temp_lgly.getColumn(i, "pid"));
- ds_send_savedata.setColumn(nSendRow, "wrtedt", ds_temp_lgly.getColumn(i, "wrtedt"));
- ds_send_savedata.setColumn(nSendRow, "seqno", ds_temp_lgly.getColumn(i, "seqno"));
-
- //박유진 091125 미신고시 변수 임시저장
- if( getReptstat == "M" ){
- trace("fn_ReportFreeView 3");
- var dateCur = utlf_getCurrentDate();
- var year = dateCur.substr(0,4);
- var mon = dateCur.substr(4,2);
- var day = dateCur.substr(6,2);
- var dateCurtime = utlf_getCurrentDateTime();
- //전체조건 조회시
- if( reptdoc != "00" ){
- trace("fn_ReportFreeView 4");
- //var nRow = ds_hidden_reptrsltinfo.addRow();//20161114 전체 아닐때 레포트 출력 오류 수정
- //ds_hidden_reptrsltinfo.copyRow(nRow, ds_temp_lgly, i); //20161114 전체 아닐때 레포트 출력 오류 수정
- dsf_copyDs(ds_hidden_reptrsltinfo, ds_hidden_lglydisrepttrgtmaninfo_temp, "after");
- } else {
- trace("fn_ReportFreeView 5");
- dsf_copyDs(ds_hidden_reptrsltinfo, ds_hidden_lglydisrepttrgtmaninfo_temp, "after");
- }
- } else { //미신고가 아닌경우
- trace("fn_ReportFreeView 6");
- if( reptdoc != "00" ){
- trace("fn_ReportFreeView 7");
- //var nRow = ds_hidden_reptrsltinfo.addRow();//20161114 전체 아닐때 레포트 출력 오류 수정
- //ds_hidden_reptrsltinfo.copyRow(nRow, ds_temp_lgly, i);//20161114 전체 아닐때 레포트 출력 오류 수정
- dsf_copyDs(ds_temp_reptrsltinfo, ds_hidden_lglydisrepttrgtmaninfo_temp, "after");
-
- trace("ds_temp_reptrsltinfo = " + ds_temp_reptrsltinfo.getColumn(0,1));
- trace("ds_hidden_lglydisrepttrgtmaninfo_temp = " + ds_hidden_lglydisrepttrgtmaninfo_temp.getColumn(0,1));
-
- //trace("ds_temp_reptrsltinfo = " + ds_temp_reptrsltinfo.getColumn(0,"clispeaopinion"));
- //trace("ds_hidden_lglydisrepttrgtmaninfo_temp = " + ds_hidden_lglydisrepttrgtmaninfo_temp.getColumn(0,"clispeaopinion"));
-
- } else {
- trace("fn_ReportFreeView 8");
- dsf_copyDs(ds_temp_reptrsltinfo, ds_hidden_lglydisrepttrgtmaninfo_temp, "after");
- }
- }
- }
- }
- dsf_createDsRow("ds_send_searchdata",
- [{col:"trgtmankind", type:"string", size:256, val:ds_main_cond.getColumn(0, "trgtmankind")}
- ,{col:"reptstat", type:"string", size:256, val:ds_main_cond.getColumn(0, "reptstat")}
- ,{col:"fromdd", type:"string", size:256, val:ds_main_cond.getColumn(0, "fromdd")}
- ,{col:"todd", type:"string", size:256, val:ds_main_cond.getColumn(0, "todd")}
- ,{col:"orddept", type:"string", size:256, val:ds_main_cond.getColumn(0, "orddept")}
- ,{col:"orddr", type:"string", size:256, val:ds_main_cond.getColumn(0, "orddr")}],true);
-
- //미신고 데이터 신고시 출력데이터 보이지 않는 문제 해결 09.11.25 PYJ
- if( getReptstat == "M" ){
- trace("fn_ReportFreeView 9");
- for( var i = 0; i < ds_hidden_reptrsltinfo.rowcount; i++ ){
- var nRow = ds_temp_reptrsltinfo.addRow();
- ds_temp_reptrsltinfo.copyRow(nRow, ds_hidden_reptrsltinfo, i);
- }
- }
-
- ds_temp_lglydisrepttrgtmaninfo.clearData();
- if( !utlf_isNull(ds_temp_reptrsltinfo.getColumn(0, "pid")) && trgtmankind == "00" ){
- trace("fn_ReportFreeView 10");
- //전체조회시 복사된 노드가하나이므로
- //dsf_copyDs(ds_temp_lglydisrepttrgtmaninfo, ds_temp_reptrsltinfo, "after");
- ds_temp_lglydisrepttrgtmaninfo.copyData(ds_temp_reptrsltinfo);
- } else if( !utlf_isNull(ds_temp_reptrsltinfo.getColumn(0, "pid")) && trgtmankind != "00" ){
- trace("fn_ReportFreeView 11");
- //20161114 전체 아닐때 레포트 출력 오류 수정 : ds_hidden_searchlist -> ds_temp_reptrsltinfo
- for( var i = 0; i < ds_temp_reptrsltinfo.rowcount; i++ ){
- var hPid = ds_temp_reptrsltinfo.getColumn(i, "pid");
- var hWrtedt = ds_temp_reptrsltinfo.getColumn(i, "wrtedt");
- var hSeqno = ds_temp_reptrsltinfo.getColumn(i, "seqno");
- var hReptdt = ds_temp_reptrsltinfo.getColumn(i, "reptdt");
-
- //레포트 호출
- for( var j = 0; j < ds_send_savedata.rowcount; j++ ){
- var sSelect = ds_send_savedata.getColumn(j, "select");
- var sPid = ds_send_savedata.getColumn(j, "pid");
- var sWrtedt = ds_send_savedata.getColumn(j, "wrtedt");
- var sSeqno = ds_send_savedata.getColumn(j, "seqno");
- if( sSelect == "true" && hPid == sPid && hWrtedt == sWrtedt && hSeqno == sSeqno ){
- trace("fn_ReportFreeView 11-1");
- var nRow = ds_temp_lglydisrepttrgtmaninfo.addRow();
- ds_temp_lglydisrepttrgtmaninfo.copyRow(nRow, ds_temp_reptrsltinfo, i);
-
- //trace("ds_temp_reptrsltinfo = " + ds_temp_reptrsltinfo.getColumn(nRow,"clispeaopinion"));
- //trace("ds_temp_lglydisrepttrgtmaninfo = " + ds_temp_lglydisrepttrgtmaninfo.getColumn(nRow,"clispeaopinion"));
- }
- }
- }
- }
-
- //전체조회시 reptdoc가 00이므로
- var objDOM = rptf_createDOM();
-
- var reptdoc = ds_temp_lglydisrepttrgtmaninfo.getColumn(0, "reptflag");
-
- //20161223 이돈희 수정 : 검체시험의뢰서를 위한 추가 정보를 추가
- var valglydisrepttrgtmaninfoRowcount = ds_temp_lglydisrepttrgtmaninfo.rowcount;//출력을 위해 선택한 Row 개수
- switch(reptdoc)
- {
- case '13':
- fClinicalSpecimenAAdditionalData(valglydisrepttrgtmaninfoRowcount);// 검체시험의뢰서 A를 위한 추가 정보 구성
- break;
- case '14':
- fClinicalSpecimenBAdditionalData(valglydisrepttrgtmaninfoRowcount);// 검체시험의뢰서 B를 위한 추가 정보 구성
- break;
- case '15':
- fClinicalSpecimenCAdditionalData(valglydisrepttrgtmaninfoRowcount);// 검체시험의뢰서 C를 위한 추가 정보 구성
- break;
- default:
- break;
- }
-
-
- rptf_setNodeListToDOM(objDOM, "/root/temp/lglydisrepttrgtmaninfo/lglydisrepttrgtmanlist", ds_temp_lglydisrepttrgtmaninfo); // 데이터셋 1
-
- var objParam = new Object();
- objParam.xml_data_XML1 = objDOM.documentElement.source; // 최상의노드 XML 스트링 추출
- var option = "open=1;save=1;directprint=0;print=1;zoom=0;";
- var sPrntPram = fInfectionReportSpilt();
-
- switch(reptdoc){
- //case '01': rptf_exeReportPreview30(["RPASI01500"],[objParam], option); break; // 법정전염병신고서
- case '01': rptf_exeReportPreview30([sPrntPram],[objParam], option); break; // RPASI01800_결핵정보관리보고서
- case '02': rptf_exeReportPreview30(["RPASI01800"],[objParam], option); break; // RPASI01800_결핵정보관리보고서
- case '03': rptf_exeReportPreview30(["RPASI01600"],[objParam], option); break; // RPASI01600_간염표본감시신고서
- case '04': rptf_exeReportPreview30(["RPASI01900"],[objParam], option); break; // RPASI01900_선천성매독표본감시신고서
- case '05': rptf_exeReportPreview30(["RPASI01700"],[objParam], option); break; // RPASI01700_성병표본감시신고서
- case '06': rptf_exeReportPreview30(["RPASI03400"],[objParam], option); break; // RPASI03400_크로이츠펠트야콥병신고서
- case '07': rptf_exeReportPreview30(["RPASI03500"],[objParam], option); break; // RPASI03500_인플루엔자신고서
- case '08': rptf_exeReportPreview30(["RPASI03600"],[objParam], option); break; // RPASI03600_산모B형간염신고서
- case '09': rptf_exeReportPreview30(["RPASI03300"],[objParam], option); break; // RPASI03300_HIV-AIDS신고서
- case '10': rptf_exeReportPreview30(["RPASI03700"],[objParam], option); break; // RPASI03700_수족구병신고서
- case '11': rptf_exeReportPreview30(["RPASI04100"],[objParam], option); break; // RPASI04100_해외유입기생충감염증
- case '13':
- rptf_exeReportPreview30(["RPASI05000"],[objParam], option);
- break; // RPASI05000_검체시험의뢰서 A
- case '14':
- rptf_exeReportPreview30(["RPASI06000"],[objParam], option);
- break; // RPASI06000_검체시험의뢰서 B
- case '15':
- rptf_exeReportPreview30(["RPASI07000"],[objParam], option);
- break;// RPASI07000_검체시험의뢰서 C
- }
-
- //대상자종류가 전체일때 초기화 091126 PYJ
- if( trgtmankind == "00" ){
- ds_main_cond.setColumn(0, "trgtmankind", "00");
- ds_send_cond.setColumn(0, "trgtmankind", "00");
- }
- }
- /******************************************************************
- * Argument :
- * Description : 출력
- ******************************************************************/
- function grp_btn3_button9_onclick(obj:Button, e:ClickEventInfo)
- {
- fn_print();
- }
- function grp_btn_button4_onclick(obj:Button, e:ClickEventInfo)
- {
- fn_print();
- }
- function fn_print(){
- //20161221 이돈희 추가: 대상자종류를 전체로 한 후 출력시 출력을 위하여 trgmankind 값을 바꾸므로
- //재조회시 전체로 조회 안되는 현상 수정을 위하여 이전 값 저장
- var vaOriginalTrgtmankind = ds_main_cond.getColumn(0,"trgtmankind");
-
- // 선택된 데이터만 필터링해서 복사
- ds_temp_lgly.clear();
- ds_temp_lgly.copyData(ds_grd_lglydisrepttrgtmaninfo);
- ds_temp_lgly.filter("chk=='1'");
-
- if( ds_temp_lgly.rowcount < 1 ){
- sysf_messageBox("선택된 환자가", "I004");
- return;
- }
-
- //20170109 이윤주선생님 요청으로 다중 건 신청 막기
- if( ds_temp_lgly.rowcount > 1 ){
- sysf_messageBox("선택된 건이 2건 이상입니다", "I999");
- return;
- }
-
-
- var cnclRows = ds_temp_lgly.findRowExpr("chk=='1' && fcnclyn=='Y'");
- if( cnclRows > 0){
- sysf_messageBox("선택된 환자 중 삭제 신고서가 존재합니다.\n삭제 신고서는 출력할 수", "I004");
- return;
- }
-
- //전체선택시 한종류만 출력 가능 091127 PYJ
- var trgtmankind = ds_main_cond.getColumn(0, "trgtmankind");
- if( trgtmankind == "00" && ds_temp_lgly.rowcount > 1 ){
- sysf_messageBox("전체조회시 한명의 환자만 선택 가능합니다", "I");
- return;
- }
-
- //Data Set Clear
- ds_temp_lglydisrepttrgtmaninfo.clearData();
- ds_send_savedata.clearData();
- ds_send_searchdata.clearData();
- ds_hidden_reptrsltinfo.copyData(ds_temp_lgly);
- ds_temp_reptrsltinfo.copyData(ds_temp_lgly);
- ds_hidden_reptrsltinfo.clearData();
- ds_temp_reptrsltinfo.clearData();
-
- //trgtmankind : 대상자종류구분
-
- trace("fn_printf 1");
-
- if( ds_main_cond.getColumn(0, "trgtmankind") == "99" ){
-
- trace("fn_printf 2");
-
- dsf_createDs("ds_send_savedata",
- [{col:"m", type:"string", size:256}
- ,{col:"select", type:"string", size:256}
- ,{col:"pid", type:"string", size:256}
- ,{col:"wrtedt", type:"string", size:256}
- ,{col:"seqno", type:"string", size:256}
- ,{col:"reptstat", type:"string", size:256}
- ,{col:"dethreptstat", type:"string", size:256}],true);
- } else {
-
- trace("fn_printf 3");
-
- dsf_createDs("ds_send_savedata",
- [{col:"m", type:"string", size:256}
- ,{col:"select", type:"string", size:256}
- ,{col:"pid", type:"string", size:256}
- ,{col:"wrtedt", type:"string", size:256}
- ,{col:"seqno", type:"string", size:256}
- ,{col:"reptstat", type:"string", size:256}],true);
- }
-
- //미신고 조회시 출력에 보이지 않는 문제 09.11.25
- var getReptstat = ds_send_cond.getColumn(0, "reptstat");
- ds_hidden_reptrsltinfo.clearData();
- ds_temp_reptrsltinfo.clearData();
-
- var getKind = ds_main_cond.getColumn(0, "trgtmankind");
- //출력을위한 node 초기화
- ds_temp_lglydisrepttrgtmaninfo.clearData();
-
- var dateCur = utlf_getCurrentDate();
- var year = dateCur.substr(0, 4);
- var mon = dateCur.substr(4, 2);
- var day = dateCur.substr(6, 2);
- var dateCurtime = utlf_getCurrentDateTime();
- var dateTime = dateCurtime.substr(0,8)+dateCurtime.substr(9,12);
-
- trace("fn_printf 4");
-
- for( var i = 0; i < ds_temp_lgly.rowcount; i++ ){
- var getChk = ds_temp_lgly.getColumn(i, "chk");
- if( getChk == "1" ){
-
- trace("fn_printf 5");
-
- //전체("00")일때 출력 091126 PYJ
- var reptdoc = ds_send_cond.getColumn(0, "trgtmankind");
- //if( reptdoc == "00" ){ //20161114 전체 아닐때 레포트 출력 오류 수정
- //ds_hidden_lglydisrepttrgtmaninfo.copyData(ds_temp_lgly);
- var Rreptflag = ds_temp_lgly.getColumn(i, "reptflag");
-
- ds_main_cond.setColumn(0, "trgtmankind", Rreptflag);
- ds_main_cond.setColumn(0, "pid", ds_temp_lgly.getColumn(i, "pid"));
- ds_main_cond.setColumn(0, "name", ds_temp_lgly.getColumn(i, "name"));
- ds_main_cond.setColumn(0, "wrtedt", ds_temp_lgly.getColumn(i, "wrtedt"));
- ds_main_cond.setColumn(0, "seqno", ds_temp_lgly.getColumn(i, "seqno"));
- ds_main_cond.setColumn(0, "reptstat", "");
- ds_send_cond.copyData(ds_main_cond);
-
- //전체조건에서 환자를 조회
- var reptstat = ds_send_cond.getColumn(0, "reptstat");
- ds_main_cond.setColumn(0, "reptstat", "");
-
- ds_send_cond.copyData(ds_main_cond);
-
- ds_hidden_lglydisrepttrgtmaninfo_temp.clearData();
-
- var oParam = {};
- oParam.id = "TRASI01305";
- oParam.service = "infcmngtapp.LglyDisMngt";
- oParam.method = "reqGetLglyDisReptTrgtmanList";
- oParam.inds = "req=ds_send_cond";
- oParam.outds = "ds_hidden_lglydisrepttrgtmaninfo_temp=lglydisrepttrgtmanlist";
- oParam.async = false;
- //oParam.callback = "cf_TRASI01305";
- tranf_submit(oParam);
-
- //kimsj 20100222 미신고 처음 출력시 신고일자 출력되지 않는 오류현상 수정
- var cntRow = ds_hidden_lglydisrepttrgtmaninfo_temp.rowcount;
- for( var t = 1; t < cntRow; t++ ){
- ds_hidden_lglydisrepttrgtmaninfo_temp.setColumn(t, "reptdt", dateCur);
- }
-
- //조건을 원상태로 복귀
- ds_main_cond.setColumn(0, "reptstat", reptstat);
- ds_send_cond.setColumn(0, "reptstat", reptstat);
-
- //초기화
- ds_main_cond.setColumn(0, "pid", "");
- ds_main_cond.setColumn(0, "name", "");
- ds_main_cond.setColumn(0, "wrtedt", "");
- ds_main_cond.setColumn(0, "seqno", "");
- //}
-
- //저장 후 조회해온 데이터를 출력해주도록 변경 (2009.07.17 JJE)
- var select;
- if( getChk == "1" ) select = "true"; else select = "false";
-
- if( ds_main_cond.getColumn(0, "trgtmankind") == "99" )
- {
- trace("fn_printf 6");
-
- var nSendRow = ds_send_savedata.addRow();
- ds_send_savedata.setColumn(nSendRow, "m", "u");
- ds_send_savedata.setColumn(nSendRow, "select", select);
- ds_send_savedata.setColumn(nSendRow, "pid", ds_temp_lgly.getColumn(i, "pid"));
- ds_send_savedata.setColumn(nSendRow, "wrtedt", ds_temp_lgly.getColumn(i, "wrtedt"));
- ds_send_savedata.setColumn(nSendRow, "seqno", ds_temp_lgly.getColumn(i, "seqno"));
-
- //20161221 이돈희 수정 : 신고 선택시에 환자의 reptstat가 'M'(미신고)상태로 유지됨
- //신고 시 'R'상태로 변경
- //ds_send_savedata.setColumn(nSendRow, "reptstat", ds_temp_lgly.getColumn(i, "reptstat"));
- ds_send_savedata.setColumn(nSendRow, "reptstat", "R");
-
- ds_send_savedata.setColumn(nSendRow, "dethreptstat", ds_temp_lgly.getColumn(i, "R"));
- }
- else
- {
- trace("fn_printf 7");
-
- var nSendRow = ds_send_savedata.addRow();
- ds_send_savedata.setColumn(nSendRow, "m", "u");
- ds_send_savedata.setColumn(nSendRow, "select", select);
- ds_send_savedata.setColumn(nSendRow, "pid", ds_temp_lgly.getColumn(i, "pid"));
- ds_send_savedata.setColumn(nSendRow, "wrtedt", ds_temp_lgly.getColumn(i, "wrtedt"));
- ds_send_savedata.setColumn(nSendRow, "seqno", ds_temp_lgly.getColumn(i, "seqno"));
-
- //20161221 이돈희 수정 : 신고 선택시에 환자의 reptstat가 'M'(미신고)상태로 유지됨
- //신고 시 'R'상태로 변경
- //ds_send_savedata.setColumn(nSendRow, "reptstat", ds_temp_lgly.getColumn(i, "reptstat"));
- ds_send_savedata.setColumn(nSendRow, "reptstat","R" );
- }
-
- //박유진 091125 미신고시 변수 임시저장
- if( getReptstat == "M" ){
- if( reptdoc != "00" ){
-
- trace("fn_printf 8");
-
- //091203 박유진 미신고시 sort후 출력되지 않는 사항 수정
- //sort 후에는 모든 정보를 가지고 있지 않으므로
- var Spid = ds_temp_lgly.getColumn(i, "pid");
- var Swrtedt = ds_temp_lgly.getColumn(i, "wrtedt");
- var Sseqno = ds_temp_lgly.getColumn(i, "seqno");
-
- for( var s = 0; s <= ds_hidden_lglydisrepttrgtmaninfo_temp.rowcount; s++ ){
- var Hselect = ds_hidden_searchlist.getColumn(s, "select");
- var Hpid = ds_hidden_searchlist.getColumn(s, "pid");
- var Hwrtedt = ds_hidden_searchlist.getColumn(s, "wrtedt");
- var Hseqno = ds_hidden_searchlist.getColumn(s, "seqno");
-
- if( Spid == Hpid && Swrtedt == Hwrtedt && Sseqno == Hseqno ){
- ds_hidden_searchlist.setColumn(s, "reptdt", dateCur);
- ds_temp_lglydisrepttrgtmaninfo.copyData(ds_hidden_lglydisrepttrgtmaninfo_temp);
- }
- }
-
- } else {
-
- trace("fn_printf 9");
-
- //출력 가능한 노드로 copy
- dsf_copyDs(ds_temp_lglydisrepttrgtmaninfo, ds_hidden_lglydisrepttrgtmaninfo_temp, "after");
- }
- } else { //미신고가 아닌경우
- if( reptdoc != "00" ){
-
- trace("fn_printf 10");
-
- dsf_copyDs(ds_temp_reptrsltinfo, ds_hidden_lglydisrepttrgtmaninfo_temp, "after");
-
-
- //20161221 이돈희 추가 : 대상자 종류가 전체가 아닌 경우 ds_temp_lglydisrepttrgtmaninfo.reptflag
- //값이 존재하지않아 미리보기 화면이 안뜨는 현상으로 수정
- dsf_copyDs(ds_temp_lglydisrepttrgtmaninfo, ds_hidden_lglydisrepttrgtmaninfo_temp, "after");
-
- } else {
-
- trace("fn_printf 11");
-
- dsf_copyDs(ds_temp_lglydisrepttrgtmaninfo, ds_hidden_lglydisrepttrgtmaninfo_temp, "after");
- }
- //model.makeValue("/root/main/lglydisrepttrgtmaninfo/lglydisrepttrgtmanlist["+i+"]/reptdtnm","신고");
- }
- // model.makeValue("/root/hidden/reptrsltinfo/lglydisrepttrgtmanlist["+rownum+"]/reptdtnm","신고");
- // model.makeValue("/root/hidden/reptrsltinfo/lglydisrepttrgtmanlist["+rownum+"]/reptyear",year);
- // model.makeValue("/root/hidden/reptrsltinfo/lglydisrepttrgtmanlist["+rownum+"]/reptmonth",mon);
- // model.makeValue("/root/hidden/reptrsltinfo/lglydisrepttrgtmanlist["+rownum+"]/reptday",day);
- // model.makeValue("/root/hidden/reptrsltinfo/lglydisrepttrgtmanlist["+rownum+"]/reptdt",dateTime);
- // //그리드에 보이기
- // model.makeValue("/root/main/lglydisrepttrgtmaninfo/lglydisrepttrgtmanlist["+i+"]/reptdtnm","신고");
- // model.makeValue("/root/main/lglydisrepttrgtmaninfo/lglydisrepttrgtmanlist["+i+"]/reptdt",year+"-"+mon+"-"+day);
- }
- }
-
- //20161221 이돈희 추가: 대상자종류를 전체로 한 후 출력시 출력을 위하여 trgmankind 값을 바꾸므로
- //재조회시 전체로 조회 안되는 현상 수정을 위하여 이전 값 저장
- ds_main_cond.setColumn(0, "trgtmankind", vaOriginalTrgtmankind);
-
- dsf_createDsRow("ds_send_searchdata",
- [{col:"trgtmankind", type:"string", size:256, val:ds_main_cond.getColumn(0, "trgtmankind")}
- ,{col:"reptstat", type:"string", size:256, val:ds_main_cond.getColumn(0, "reptstat")}
- ,{col:"fromdd", type:"string", size:256, val:ds_main_cond.getColumn(0, "fromdd")}
- ,{col:"todd", type:"string", size:256, val:ds_main_cond.getColumn(0, "todd")}
- ,{col:"orddept", type:"string", size:256, val:ds_main_cond.getColumn(0, "orddept")}
- ,{col:"orddr", type:"string", size:256, val:ds_main_cond.getColumn(0, "orddr")}],true);
-
-
- var oParam = {};
- oParam.id = "TXASI01301";
- oParam.service = "infcmngtapp.LglyDisMngt";
- oParam.method = "reqExeLglyDisReptddUpdt";
- oParam.inds = "req=ds_send_savedata req2=ds_send_searchdata";
- oParam.outds = "ds_temp_reptrsltinfo=lglydisrepttrgtmanlist";
- oParam.async = false;
- oParam.callback = "cf_TXASI01301";
- tranf_submit(oParam);
-
-
- //20161226 이돈희 추가 : 프린트하고 데이터를 새로 요청해서 받는 과정에서 기존 체크된것이
- //체크해제되나 헤드에는 체크가 유지되어 강제로 체크 해제함
- grd_lglydisrepttrgtman.setCellProperty("head", 1, "text", "false");
-
- //20161221 이돈희 추가 : 신고가된 경우 신고가 완료된 경우 재 조회후 리스트 표시해줌
- if( arErrorCode.pop("TXASI01301") > -1 ){
- btn_search_onclick();
- }
-
- if( arErrorCode.pop("TXASI01301") < -1 ){
- return;
- }
-
- if( !utlf_isNull(ds_temp_reptrsltinfo.getColumn(0, "pid")) ){
-
- trace("fn_printf 12");
-
- } else {
-
- trace("fn_printf 13");
-
- var reptdoc = ds_main_cond.getColumn(0, "trgtmankind");
- if( getKind != "00" && getReptstat != "M" ){
-
- trace("fn_printf 14");
-
- ds_temp_lglydisrepttrgtmaninfo.clearData();
- for( var i = 0; i < ds_temp_reptrsltinfo.rowcount; i++ ){
-
- trace("fn_printf 15");
-
- var hPid = ds_temp_reptrsltinfo.getColumn(i, "pid");
- var hWrtedt = ds_temp_reptrsltinfo.getColumn(i, "wrtedt");
- var hSeqno = ds_temp_reptrsltinfo.getColumn(i, "seqno");
- var hReptdt = ds_temp_reptrsltinfo.getColumn(i, "reptdt");
-
- //레포트 호출
- for( var j = 0; j < ds_send_savedata.rowcount; j++ ){
-
- trace("fn_printf 16");
-
- var sSelect = ds_send_savedata.getColumn(j, "select");
- var sPid = ds_send_savedata.getColumn(j, "pid");
- var sWrtedt = ds_send_savedata.getColumn(j, "wrtedt");
- var sSeqno = ds_send_savedata.getColumn(j, "seqno");
- if( sSelect == "true" && hPid == sPid && hWrtedt == sWrtedt && hSeqno == sSeqno ){
-
- trace("fn_printf 17");
-
- var nRow = ds_temp_lglydisrepttrgtmaninfo.addRow();
- ds_temp_lglydisrepttrgtmaninfo.copyRow(nRow, ds_hidden_searchlist, i);
- }
- }
- }
- }
- }
-
- //전체조회시 reptdoc가 00이므로
-
- var reptdoc = ds_temp_lglydisrepttrgtmaninfo.getColumn(0, "reptflag");
-
-
- //출력 관련 부분////////////////////
- var objDOM = rptf_createDOM();
- //////////////////////////////////////
-
- //20161223 이돈희 수정 : 검체시험의뢰서를 위한 추가 정보를 추가
- var valglydisrepttrgtmaninfoRowcount = ds_temp_lglydisrepttrgtmaninfo.rowcount;//출력을 위해 선택한 Row 개수
- switch(reptdoc)
- {
- case '13':
- fClinicalSpecimenAAdditionalData(valglydisrepttrgtmaninfoRowcount);// 검체시험의뢰서 A를 위한 추가 정보 구성
- break;
- case '14':
- fClinicalSpecimenBAdditionalData(valglydisrepttrgtmaninfoRowcount);// 검체시험의뢰서 B를 위한 추가 정보 구성
- break;
- case '15':
- fClinicalSpecimenCAdditionalData(valglydisrepttrgtmaninfoRowcount);// 검체시험의뢰서 C를 위한 추가 정보 구성
- break;
- default:
- break;
- }
-
-
- //출력 관련 부분////////////////////
- rptf_setNodeListToDOM(objDOM, "/root/temp/lglydisrepttrgtmaninfo/lglydisrepttrgtmanlist", ds_temp_lglydisrepttrgtmaninfo); // 데이터셋 1
- //////////////////////////////////////
- //출력 관련 부분////////////////////
- var objParam = new Object();
- objParam.xml_data_XML1 = objDOM.documentElement.source; // 최상의노드 XML 스트링 추출
- var option = "open=1;save=1;directprint=0;print=1;zoom=0;";
- var sPrntPram = fInfectionReportSpilt();
- //////////////////////////////////////
- //sysf_trace(objDOM.documentElement.source);
- //sysf_trace("+++++++++++++++++++++++++++++++++++++++++++++++++++");
- //sysf_trace(ds_temp_lglydisrepttrgtmaninfo.saveXML());
- //출력 관련 부분////////////////////
- switch(reptdoc){
- //case '01': rptf_exeReportPreview30(["RPASI01500"],[objParam], option); break; // 법정전염병신고서
- case '01': rptf_exeReportPreview30([sPrntPram],[objParam], option); break; // RPASI01800_결핵정보관리보고서
- case '02': rptf_exeReportPreview30(["RPASI01800"],[objParam], option); break; // RPASI01800_결핵정보관리보고서
- case '03': rptf_exeReportPreview30(["RPASI01600"],[objParam], option); break; // RPASI01600_간염표본감시신고서
- case '04': rptf_exeReportPreview30(["RPASI01900"],[objParam], option); break; // RPASI01900_선천성매독표본감시신고서
- case '05': rptf_exeReportPreview30(["RPASI01700"],[objParam], option); break; // RPASI01700_성병표본감시신고서
- case '06': rptf_exeReportPreview30(["RPASI03400"],[objParam], option); break; // RPASI03400_크로이츠펠트야콥병신고서
- case '07': rptf_exeReportPreview30(["RPASI03500"],[objParam], option); break; // RPASI03500_인플루엔자신고서
- case '08': rptf_exeReportPreview30(["RPASI03600"],[objParam], option); break; // RPASI03600_산모B형간염신고서
- case '09': rptf_exeReportPreview30(["RPASI03300"],[objParam], option); break; // RPASI03300_HIV-AIDS신고서
- case '10': rptf_exeReportPreview30(["RPASI03700"],[objParam], option); break; // RPASI03700_수족구병신고서
- case '11': rptf_exeReportPreview30(["RPASI04100"],[objParam], option); break; // RPASI04100_해외유입기생충감염증
- case '13':
- rptf_exeReportPreview30(["RPASI05000"],[objParam], option);
- break; // RPASI05000_검체시험의뢰서 A
- case '14':
- rptf_exeReportPreview30(["RPASI06000"],[objParam], option);
- break; // RPASI06000_검체시험의뢰서 B
- case '15':
- rptf_exeReportPreview30(["RPASI07000"],[objParam], option);
- break;// RPASI07000_검체시험의뢰서 C
- }
- //////////////////////////////////////
-
- //대상자종류가 전체일때 초기화 091126 PYJ
- if( trgtmankind == "00" ){
- ds_main_cond.setColumn(0, "trgtmankind", "00");
- ds_send_cond.setColumn(0, "trgtmankind", "00");
- }
- }
- //20161223 이돈희 추가 : 검체시험의뢰서A 출력을 위한 추가정보 구성
- function fClinicalSpecimenAAdditionalData(vaData)
- {
- var instcd = sysf_getUserInfo("dutplceinstcd");
-
- ds_temp_lglydisrepttrgtmaninfo.addColumn("address", "string", 256);
- ds_temp_lglydisrepttrgtmaninfo.addColumn("telnumber", "string", 256);
- ds_temp_lglydisrepttrgtmaninfo.addColumn("currentyear", "string", 10);
- ds_temp_lglydisrepttrgtmaninfo.addColumn("currentmonth", "string", 10);
- ds_temp_lglydisrepttrgtmaninfo.addColumn("currentday", "string", 10);
- ds_temp_lglydisrepttrgtmaninfo.addColumn("lglydiscdname", "string", 256);
-
- if(instcd =="032"){
- dsf_makeValue(ds_temp_lglydisrepttrgtmaninfo, "insthospdirct", "string", "칠곡경북대학교병원장");
- }else{
- dsf_makeValue(ds_temp_lglydisrepttrgtmaninfo, "insthospdirct", "string", "경북대학교병원장");
- }
-
- //20170214 이돈희 추가 : 시험항목은 addition1 컬럼에 추가
- ds_temp_lglydisrepttrgtmaninfo.addColumn("addition1", "string", 256);
-
- for( var iIndex = 0; iIndex < vaData; iIndex++ )
- {
- //주소 구성
- var vaAddress = "";
- vaAddress = utlf_transNullToEmpty(ds_temp_lglydisrepttrgtmaninfo.getColumn(iIndex,"hosaddr1"))+" ";
- vaAddress = vaAddress + utlf_transNullToEmpty(ds_temp_lglydisrepttrgtmaninfo.getColumn(iIndex,"hosaddr2"))+" ";
- vaAddress = vaAddress + utlf_transNullToEmpty(ds_temp_lglydisrepttrgtmaninfo.getColumn(iIndex,"hospnm"))+" ";
- vaAddress = vaAddress + utlf_transNullToEmpty(ds_temp_lglydisrepttrgtmaninfo.getColumn(iIndex,"etcdeptnm"));
- ds_temp_lglydisrepttrgtmaninfo.setColumn(iIndex, "address", vaAddress);
-
- //전화번호 및 팩스번호 구성
- var vaTelnumber = "";
- vaTelnumber = "(전화번호 : ";
- vaTelnumber = vaTelnumber + ds_temp_lglydisrepttrgtmaninfo.getColumn(iIndex,"reprtel1");
- vaTelnumber = vaTelnumber + "), (Fax 번호 : ";
- vaTelnumber = vaTelnumber + ds_temp_lglydisrepttrgtmaninfo.getColumn(iIndex,"reprfaxno");
- vaTelnumber = vaTelnumber + ")";
- ds_temp_lglydisrepttrgtmaninfo.setColumn(iIndex, "telnumber", vaTelnumber);
-
- //오늘 날짜 구성
- var vaCurrentyear = utlf_getYear();
- var vaCurrentmonth = utlf_getMonth();
- var vaCurrentday = utlf_getDate();
- ds_temp_lglydisrepttrgtmaninfo.setColumn(iIndex, "currentyear", vaCurrentyear);
- ds_temp_lglydisrepttrgtmaninfo.setColumn(iIndex, "currentmonth", vaCurrentmonth);
- ds_temp_lglydisrepttrgtmaninfo.setColumn(iIndex, "currentday", vaCurrentday);
-
- //감염병명 추가
- //var vaLglydiscdname = fLglydiscdName(ds_temp_lglydisrepttrgtmaninfo.getColumn(iIndex,"lglydiscd"));
-
-
- //20170213 이돈희 수정 : 기존에 fLglydiscdName에서 감염병명 가지고오는 것에서 lglydisnm 컬럼사용으로 변경
- var vaLglydiscd = ds_temp_lglydisrepttrgtmaninfo.getColumn(iIndex,"lglydiscd");
- var vaLglydiscdname = "";
- vaLglydiscdname = "(" + ds_temp_lglydisrepttrgtmaninfo.getColumn(iIndex,"lglydisnm") + ") 검체시험의뢰서";
- ds_temp_lglydisrepttrgtmaninfo.setColumn(iIndex, "lglydiscdname", vaLglydiscdname);
-
- //20170214 이돈희 추가 : 시험항목은 addition1 컬럼에 추가
- ds_temp_lglydisrepttrgtmaninfo.setColumn(iIndex, "addition1", ds_temp_lglydisrepttrgtmaninfo.getColumn(iIndex, "clispealglytest"));
- }
- }
- //20161227 이돈희 추가 : 감염병코드와 감염병명 매칭
- //20170213 이돈희 주석처리 : lglydisnm 에 감염병명이 있으므로 사용
- /*
- function fLglydiscdName(vaNum)
- {
- var vaName = "";
- switch(vaNum)
- {
- case '421':
- vaName = "라임병";
- break;
- case '312':
- vaName = "브루셀라증";
- break;
- case '418':
- vaName = "큐열";
- break;
- case '209':
- vaName = "일본뇌염";
- break;
- case '204':
- vaName = "홍역";
- break;
- case '314':
- vaName = "공수병";
- break;
- case '402':
- vaName = "뎅기열";
- break;
- case '318':
- vaName = "크로이츠펠트야콥병";
- break;
- case '505':
- vaName = "중동호흡기증후군";
- break;
- case '312':
- vaName = "브루셀라증";
- break;
- case '506':
- vaName = "지카바이러스감염증";
- break;
- case '503':
- vaName = "중증열성혈소판감소증후군";
- break;
- case '999':
- vaName = "테스트입니다.";
- break;
- default:
- vaName = "ERROR";
- break;
- }
-
- vaName = "( " + vaName + " )" + " 검체시험의뢰서";
- return vaName;
- }
- */
- //20161223 이돈희 추가 : 검체시험의뢰서B 출력을 위한 추가정보 구성
- function fClinicalSpecimenBAdditionalData(vaData)
- {
- var instcd = sysf_getUserInfo("dutplceinstcd");
-
- ds_temp_lglydisrepttrgtmaninfo.addColumn("address", "string", 256);
- ds_temp_lglydisrepttrgtmaninfo.addColumn("telnumber", "string", 256);
- ds_temp_lglydisrepttrgtmaninfo.addColumn("currentyear", "string", 10);
- ds_temp_lglydisrepttrgtmaninfo.addColumn("currentmonth", "string", 10);
- ds_temp_lglydisrepttrgtmaninfo.addColumn("currentday", "string", 10);
- ds_temp_lglydisrepttrgtmaninfo.addColumn("currenttime", "string", 10);
-
- //20170302 이돈희 추가 : 검체인수인계일 addition2 컬럼에 추가
- ds_temp_lglydisrepttrgtmaninfo.addColumn("addition2", "string", 256);
-
- //20170302 이돈희 추가 : 진료과 addition3 컬럼에 추가
- ds_temp_lglydisrepttrgtmaninfo.addColumn("addition3", "string", 256);
-
- if(instcd == "032"){
- dsf_makeValue(ds_temp_lglydisrepttrgtmaninfo, "insthospdirct", "string", "칠곡경북대학교병원장");
- }else{
- dsf_makeValue(ds_temp_lglydisrepttrgtmaninfo, "insthospdirct", "string", "경북대학교병원장");
- }
-
- for( var iIndex = 0; iIndex < vaData; iIndex++ )
- {
- //주소 구성
- var vaAddress = "";
- vaAddress = utlf_transNullToEmpty(ds_temp_lglydisrepttrgtmaninfo.getColumn(iIndex,"hosaddr1"))+" ";
- vaAddress = vaAddress + utlf_transNullToEmpty(ds_temp_lglydisrepttrgtmaninfo.getColumn(iIndex,"hosaddr2"))+" ";
- vaAddress = vaAddress + utlf_transNullToEmpty(ds_temp_lglydisrepttrgtmaninfo.getColumn(iIndex,"hospnm"))+" ";
- vaAddress = vaAddress + utlf_transNullToEmpty(ds_temp_lglydisrepttrgtmaninfo.getColumn(iIndex,"etcdeptnm"));
- ds_temp_lglydisrepttrgtmaninfo.setColumn(iIndex, "address", vaAddress);
-
- //전화번호 및 팩스번호 구성
- var vaTelnumber = "";
- vaTelnumber = "(전화번호 : ";
- vaTelnumber = vaTelnumber + ds_temp_lglydisrepttrgtmaninfo.getColumn(iIndex,"reprtel1");
- vaTelnumber = vaTelnumber + "), (Fax 번호 : ";
- vaTelnumber = vaTelnumber + ds_temp_lglydisrepttrgtmaninfo.getColumn(iIndex,"reprfaxno");
- vaTelnumber = vaTelnumber + ")";
- ds_temp_lglydisrepttrgtmaninfo.setColumn(iIndex, "telnumber", vaTelnumber);
-
- //오늘 날짜 구성
- var vaCurrentyear = utlf_getYear();
- var vaCurrentmonth = utlf_getMonth();
- var vaCurrentday = utlf_getDate();
- var vaCurrentTime = ""
- var sDate = utlf_getNewDate();
- vaCurrentTime = (( sDate.getHours() > 9 ) ? sDate.getHours() : "0" + sDate.getHours());
-
- ds_temp_lglydisrepttrgtmaninfo.setColumn(iIndex, "currentyear", vaCurrentyear);
- ds_temp_lglydisrepttrgtmaninfo.setColumn(iIndex, "currentmonth", vaCurrentmonth);
- ds_temp_lglydisrepttrgtmaninfo.setColumn(iIndex, "currentday", vaCurrentday);
- ds_temp_lglydisrepttrgtmaninfo.setColumn(iIndex, "currenttime", vaCurrentTime);
-
- //20170302 이돈희 추가 : 검체인수인계일 addition2 컬럼에 추가
- var vaInsertDay = ds_temp_lglydisrepttrgtmaninfo.getColumn(iIndex, "wrtedt");
- var vaYear = utlf_mid(vaInsertDay,0,4);
- var vaMonth = utlf_mid(vaInsertDay,5,2);
- var vaDay = utlf_mid(vaInsertDay,7,2);
- var vaHour = utlf_mid(vaInsertDay,9,2);
- var vaPrintDate = " "+vaYear +" 년 " + vaMonth + " 월 " + vaDay + " 월 " + vaHour + " 시";
- ds_temp_lglydisrepttrgtmaninfo.setColumn(iIndex, "addition2", vaPrintDate);
-
- //20170302 이돈희 추가 : 진료과 addition3 컬럼에 추가
- ds_temp_lglydisrepttrgtmaninfo.setColumn(iIndex, "addition3", ds_temp_lglydisrepttrgtmaninfo.getColumn(0, "deptnm"));
-
- }
-
-
-
- //환자/접촉자 정보 분류 체크박스 구성
- fn_getCheckBoxType(vaData);
-
- //접촉자
- fn_getCheckBoxContact(vaData);
-
- //주요증상 구성
- fn_getCheckBoxBSymptom(vaData);
- }
- //20161223 이돈희 추가 : 검체시험의뢰서C 출력을 위한 추가정보 구성
- function fClinicalSpecimenCAdditionalData(vaData)
- {
- var instcd = sysf_getUserInfo("dutplceinstcd");
-
- ds_temp_lglydisrepttrgtmaninfo.addColumn("address", "string", 256);
- ds_temp_lglydisrepttrgtmaninfo.addColumn("telnumber", "string", 256);
- ds_temp_lglydisrepttrgtmaninfo.addColumn("currentyear", "string", 10);
- ds_temp_lglydisrepttrgtmaninfo.addColumn("currentmonth", "string", 10);
- ds_temp_lglydisrepttrgtmaninfo.addColumn("currentday", "string", 10);
- ds_temp_lglydisrepttrgtmaninfo.addColumn("lglydiscdname", "string", 256);
-
- //20170214 이돈희 추가 : 시험항목은 addition1 컬럼에 추가
- ds_temp_lglydisrepttrgtmaninfo.addColumn("addition1", "string", 256);
-
- //20170302 이돈희 추가 : 검체인수인계일 addition2 컬럼에 추가
- ds_temp_lglydisrepttrgtmaninfo.addColumn("addition2", "string", 256);
-
- //20170302 이돈희 추가 : 진료과 addition3 컬럼에 추가
- ds_temp_lglydisrepttrgtmaninfo.addColumn("addition3", "string", 256);
-
- if(instcd == "032"){
- dsf_makeValue(ds_temp_lglydisrepttrgtmaninfo, "insthospdirct", "string", "칠곡경북대학교병원장");
- }else{
- dsf_makeValue(ds_temp_lglydisrepttrgtmaninfo, "insthospdirct", "string", "경북대학교병원장");
- }
-
- for( var iIndex = 0; iIndex < vaData; iIndex++ )
- {
- //주소 구성
- var vaAddress = "";
- vaAddress = utlf_transNullToEmpty(ds_temp_lglydisrepttrgtmaninfo.getColumn(iIndex,"hosaddr1"))+" ";
- vaAddress = vaAddress + utlf_transNullToEmpty(ds_temp_lglydisrepttrgtmaninfo.getColumn(iIndex,"hosaddr2"))+" ";
- vaAddress = vaAddress + utlf_transNullToEmpty(ds_temp_lglydisrepttrgtmaninfo.getColumn(iIndex,"hospnm"))+" ";
- vaAddress = vaAddress + utlf_transNullToEmpty(ds_temp_lglydisrepttrgtmaninfo.getColumn(iIndex,"etcdeptnm"));
- ds_temp_lglydisrepttrgtmaninfo.setColumn(iIndex, "address", vaAddress);
-
- //전화번호 및 팩스번호 구성
- var vaTelnumber = "";
- vaTelnumber = "(전화번호 : ";
- vaTelnumber = vaTelnumber + ds_temp_lglydisrepttrgtmaninfo.getColumn(iIndex,"reprtel1");
- vaTelnumber = vaTelnumber + "), (Fax 번호 : ";
- vaTelnumber = vaTelnumber + ds_temp_lglydisrepttrgtmaninfo.getColumn(iIndex,"reprfaxno");
- vaTelnumber = vaTelnumber + ")";
- ds_temp_lglydisrepttrgtmaninfo.setColumn(iIndex, "telnumber", vaTelnumber);
-
- //오늘 날짜 구성
- var vaCurrentyear = utlf_getYear();
- var vaCurrentmonth = utlf_getMonth();
- var vaCurrentday = utlf_getDate();
- ds_temp_lglydisrepttrgtmaninfo.setColumn(iIndex, "currentyear", vaCurrentyear);
- ds_temp_lglydisrepttrgtmaninfo.setColumn(iIndex, "currentmonth", vaCurrentmonth);
- ds_temp_lglydisrepttrgtmaninfo.setColumn(iIndex, "currentday", vaCurrentday);
-
- //감염병명 추가
- //var vaLglydiscdname = fLglydiscdName(ds_temp_lglydisrepttrgtmaninfo.getColumn(iIndex,"lglydiscd"));
-
-
- //20170213 이돈희 수정 : 기존에 fLglydiscdName에서 감염병명 가지고오는 것에서 lglydisnm 컬럼사용으로 변경
- var vaLglydiscd = ds_temp_lglydisrepttrgtmaninfo.getColumn(iIndex,"lglydiscd");
- var vaLglydiscdname = "";
- vaLglydiscdname = "(" + ds_temp_lglydisrepttrgtmaninfo.getColumn(iIndex,"lglydisnm") + ") 검체시험의뢰서";
- ds_temp_lglydisrepttrgtmaninfo.setColumn(iIndex, "lglydiscdname", vaLglydiscdname);
-
-
- //20170214 이돈희 추가 : 시험항목은 addition1 컬럼에 추가
- ds_temp_lglydisrepttrgtmaninfo.setColumn(iIndex, "addition1", ds_temp_lglydisrepttrgtmaninfo.getColumn(iIndex, "clispealglytest"));
-
-
- //20170302 이돈희 추가 : 검체인수인계일 addition2 컬럼에 추가
- var vaInsertDay = ds_temp_lglydisrepttrgtmaninfo.getColumn(iIndex, "wrtedt");
- var vaYear = utlf_mid(vaInsertDay,0,4);
- var vaMonth = utlf_mid(vaInsertDay,5,2);
- var vaDay = utlf_mid(vaInsertDay,7,2);
- var vaHour = utlf_mid(vaInsertDay,9,2)
- var vaPrintDate = " "+vaYear +" 년 " + vaMonth + " 월 " + vaDay + " 월 " + vaHour + " 시";
- ds_temp_lglydisrepttrgtmaninfo.setColumn(iIndex, "addition2", vaPrintDate);
-
- //20170302 이돈희 추가 : 진료과 addition3 컬럼에 추가
- ds_temp_lglydisrepttrgtmaninfo.setColumn(iIndex, "addition3", ds_temp_lglydisrepttrgtmaninfo.getColumn(0, "deptnm"));
- }
-
- //증상
- fn_getCheckBoxCSymptom(vaData);
-
- //백신
- fn_getCheckBoxVaccine(vaData);
- }
- //20161223 이돈희 추가 : 출력을 위한 체크박스 데이터 생성
- function fn_getCheckBoxVaccine(vaData)
- {
- ds_temp_lglydisrepttrgtmaninfo.addColumn("clispecvaccine1", "string", 1);
- ds_temp_lglydisrepttrgtmaninfo.addColumn("clispecvaccine2", "string", 1);
- ds_temp_lglydisrepttrgtmaninfo.addColumn("clispecvaccine3", "string", 1);
-
- for( var jIndex = 0; jIndex < vaData; jIndex++ )
- {
- var value = ds_temp_lglydisrepttrgtmaninfo.getColumn(jIndex,"clispecvaccine");
-
- ds_temp_lglydisrepttrgtmaninfo.setColumn(jIndex, "clispecvaccine1", "0");
- ds_temp_lglydisrepttrgtmaninfo.setColumn(jIndex, "clispecvaccine2", "0");
- ds_temp_lglydisrepttrgtmaninfo.setColumn(jIndex, "clispecvaccine3", "0");
-
- if(!utlf_isNull(value))
- {
- var iExLoc = 0;
- var tempValue = "";
- for(var iIndex = 0; iIndex < value.length ; iIndex++)
- {
- if(value.charAt(iIndex)== ",")
- {
- tempValue = value.substring(iExLoc, iIndex);
- iExLoc = iIndex+1;
-
- if(tempValue == "1")
- {
- ds_temp_lglydisrepttrgtmaninfo.setColumn(jIndex, "clispecvaccine1", "1");
- }
-
- if(tempValue == "2")
- {
- ds_temp_lglydisrepttrgtmaninfo.setColumn(jIndex, "clispecvaccine2", "1");
- }
-
- if(tempValue == "3")
- {
- ds_temp_lglydisrepttrgtmaninfo.setColumn(jIndex, "clispecvaccine3", "1");
- }
- }
- }
- }
- }
- }
- //20161223 이돈희 추가 : 출력을 위한 체크박스 데이터 생성
- function fn_getCheckBoxCSymptom(vaData)
- {
- //검체시험의뢰서 C 서식의 주요증상
- ds_temp_lglydisrepttrgtmaninfo.addColumn("clispebsymptom1", "string", 1);
- ds_temp_lglydisrepttrgtmaninfo.addColumn("clispebsymptom1temp", "string", 10);
- ds_temp_lglydisrepttrgtmaninfo.addColumn("clispebsymptom2", "string", 1);
- ds_temp_lglydisrepttrgtmaninfo.addColumn("clispebsymptom3", "string", 1);
- ds_temp_lglydisrepttrgtmaninfo.addColumn("clispebsymptom4", "string", 1);
- ds_temp_lglydisrepttrgtmaninfo.addColumn("clispebsymptom5", "string", 1);
- ds_temp_lglydisrepttrgtmaninfo.addColumn("clispebsymptom6", "string", 1);
- ds_temp_lglydisrepttrgtmaninfo.addColumn("clispebsymptom7", "string", 1);
-
- for( var jIndex = 0; jIndex < vaData; jIndex++ )
- {
- ds_temp_lglydisrepttrgtmaninfo.setColumn(jIndex, "clispebsymptom1", "0");
- ds_temp_lglydisrepttrgtmaninfo.setColumn(jIndex, "clispebsymptom1temp", "");
- ds_temp_lglydisrepttrgtmaninfo.setColumn(jIndex, "clispebsymptom2", "0");
- ds_temp_lglydisrepttrgtmaninfo.setColumn(jIndex, "clispebsymptom3", "0");
- ds_temp_lglydisrepttrgtmaninfo.setColumn(jIndex, "clispebsymptom4", "0");
- ds_temp_lglydisrepttrgtmaninfo.setColumn(jIndex, "clispebsymptom5", "0");
- ds_temp_lglydisrepttrgtmaninfo.setColumn(jIndex, "clispebsymptom6", "0");
- ds_temp_lglydisrepttrgtmaninfo.setColumn(jIndex, "clispebsymptom7", "0");
-
- var value = ds_temp_lglydisrepttrgtmaninfo.getColumn(jIndex,"clispebsymptom");
-
- if(!utlf_isNull(value))
- {
- var iExLoc = 0;
- var tempValue = "";
- for(var iIndex = 0; iIndex < value.length ; iIndex++)
- {
- if(value.charAt(iIndex)== ",")
- {
- tempValue = value.substring(iExLoc, iIndex);
- iExLoc = iIndex+1;
-
- if(tempValue == "1")
- {
- ds_temp_lglydisrepttrgtmaninfo.setColumn(jIndex, "clispebsymptom1", "1");
-
-
- //발열이 체크된 경우 온도값 입력 처리
- var heatIndex = value.indexOf(",",iExLoc);
- var heatValue = value.substring(iExLoc, heatIndex);
- ds_temp_lglydisrepttrgtmaninfo.setColumn(jIndex, "clispebsymptom1temp", heatValue);
- iIndex = heatIndex - 1;
- }
-
- if(tempValue == "2")
- {
- ds_temp_lglydisrepttrgtmaninfo.setColumn(jIndex, "clispebsymptom2", "1");
- }
-
- if(tempValue == "3")
- {
- ds_temp_lglydisrepttrgtmaninfo.setColumn(jIndex, "clispebsymptom3", "1");
- }
-
- if(tempValue == "4")
- {
- ds_temp_lglydisrepttrgtmaninfo.setColumn(jIndex, "clispebsymptom4", "1");
- }
-
- if(tempValue == "5")
- {
- ds_temp_lglydisrepttrgtmaninfo.setColumn(jIndex, "clispebsymptom5", "1");
- }
-
- if(tempValue == "6")
- {
- ds_temp_lglydisrepttrgtmaninfo.setColumn(jIndex, "clispebsymptom6", "1");
- }
-
- if(tempValue == "7")
- {
- ds_temp_lglydisrepttrgtmaninfo.setColumn(jIndex, "clispebsymptom7", "1");
- }
- }
- }
- }
- }
-
- }
- //20161223 이돈희 추가 : 출력을 위한 체크박스 데이터 생성
- function fn_getCheckBoxType(vaData)
- {
- ds_temp_lglydisrepttrgtmaninfo.addColumn("clispebtype1", "string", 1);
- ds_temp_lglydisrepttrgtmaninfo.addColumn("clispebtype2", "string", 1);
- ds_temp_lglydisrepttrgtmaninfo.addColumn("clispebtype3", "string", 1);
- for( var jIndex = 0; jIndex < vaData; jIndex++ )
- {
- ds_temp_lglydisrepttrgtmaninfo.setColumn(jIndex , "clispebtype1", "0");
- ds_temp_lglydisrepttrgtmaninfo.setColumn(jIndex , "clispebtype2", "0");
- ds_temp_lglydisrepttrgtmaninfo.setColumn(jIndex , "clispebtype3", "0");
- var value = ds_temp_lglydisrepttrgtmaninfo.getColumn(jIndex,"clispebtype");
-
- if(!utlf_isNull(value))
- {
- var iExLoc = 0;
- var tempValue = "";
- for(var iIndex = 0; iIndex < value.length ; iIndex++)
- {
- if(value.charAt(iIndex)== ",")
- {
- tempValue = value.substring(iExLoc, iIndex);
- iExLoc = iIndex+1;
-
- if(tempValue == "1")
- {
- ds_temp_lglydisrepttrgtmaninfo.setColumn(jIndex, "clispebtype1", "1");
- }
-
- if(tempValue == "2")
- {
- ds_temp_lglydisrepttrgtmaninfo.setColumn(jIndex, "clispebtype2", "1");
- }
-
- if(tempValue == "3")
- {
- ds_temp_lglydisrepttrgtmaninfo.setColumn(jIndex, "clispebtype3", "1");
- }
- }
- }
- }
-
- }
- }
- //20161223 이돈희 추가 : 출력을 위한 체크박스 데이터 생성
- function fn_getCheckBoxContact(vaData)
- {
- ds_temp_lglydisrepttrgtmaninfo.addColumn("clispebcontact1", "string", 1);
- ds_temp_lglydisrepttrgtmaninfo.addColumn("clispebcontact2", "string", 1);
- ds_temp_lglydisrepttrgtmaninfo.addColumn("clispebcontact3", "string", 1);
-
- for( var jIndex = 0; jIndex < vaData; jIndex++ )
- {
- ds_temp_lglydisrepttrgtmaninfo.setColumn(jIndex, "clispebcontact1", "0");
- ds_temp_lglydisrepttrgtmaninfo.setColumn(jIndex, "clispebcontact2", "0");
- ds_temp_lglydisrepttrgtmaninfo.setColumn(jIndex, "clispebcontact3", "0");
-
- var value = ds_temp_lglydisrepttrgtmaninfo.getColumn(jIndex,"clispebcontact");
-
- if(!utlf_isNull(value))
- {
- var iExLoc = 0;
- var tempValue = "";
- for(var iIndex = 0; iIndex < value.length ; iIndex++)
- {
- if(value.charAt(iIndex)== ",")
- {
- tempValue = value.substring(iExLoc, iIndex);
- iExLoc = iIndex+1;
-
- if(tempValue == "1")
- {
- ds_temp_lglydisrepttrgtmaninfo.setColumn(jIndex, "clispebcontact1", "1");
- }
-
- if(tempValue == "2")
- {
- ds_temp_lglydisrepttrgtmaninfo.setColumn(jIndex, "clispebcontact2", "1");
- }
-
- if(tempValue == "3")
- {
- ds_temp_lglydisrepttrgtmaninfo.setColumn(jIndex, "clispebcontact3", "1");
- }
- }
- }
- }
- }
- }
- //20161223 이돈희 추가 : 출력을 위한 체크박스 데이터 생성
- function fn_getCheckBoxBSymptom(vaData)
- {
- ds_temp_lglydisrepttrgtmaninfo.addColumn("clispebsymptom1", "string", 1);
- ds_temp_lglydisrepttrgtmaninfo.addColumn("clispebsymptom1temp", "string", 10);
- ds_temp_lglydisrepttrgtmaninfo.addColumn("clispebsymptom2", "string", 1);
- ds_temp_lglydisrepttrgtmaninfo.addColumn("clispebsymptom3", "string", 1);
- ds_temp_lglydisrepttrgtmaninfo.addColumn("clispebsymptom4", "string", 1);
- ds_temp_lglydisrepttrgtmaninfo.addColumn("clispebsymptom5", "string", 1);
- ds_temp_lglydisrepttrgtmaninfo.addColumn("clispebsymptom6", "string", 1);
- for( var jIndex = 0; jIndex < vaData; jIndex++ )
- {
- var value = ds_temp_lglydisrepttrgtmaninfo.getColumn(jIndex,"clispebsymptom");
-
- ds_temp_lglydisrepttrgtmaninfo.setColumn(jIndex, "clispebsymptom1", "0");
- ds_temp_lglydisrepttrgtmaninfo.setColumn(jIndex, "clispebsymptom1temp", "");
- ds_temp_lglydisrepttrgtmaninfo.setColumn(jIndex, "clispebsymptom2", "0");
- ds_temp_lglydisrepttrgtmaninfo.setColumn(jIndex, "clispebsymptom3", "0");
- ds_temp_lglydisrepttrgtmaninfo.setColumn(jIndex, "clispebsymptom4", "0");
- ds_temp_lglydisrepttrgtmaninfo.setColumn(jIndex, "clispebsymptom5", "0");
- ds_temp_lglydisrepttrgtmaninfo.setColumn(jIndex, "clispebsymptom6", "0");
-
- if(!utlf_isNull(value))
- {
- var iExLoc = 0;
- var tempValue = "";
- for(var iIndex = 0; iIndex < value.length ; iIndex++)
- {
- if(value.charAt(iIndex)== ",")
- {
- tempValue = value.substring(iExLoc, iIndex);
- iExLoc = iIndex+1;
-
- if(tempValue == "1")
- {
- ds_temp_lglydisrepttrgtmaninfo.setColumn(jIndex, "clispebsymptom1", "1");
-
-
- //발열이 체크된 경우 온도값 입력 처리
- var heatIndex = value.indexOf(",",iExLoc);
- var heatValue = value.substring(iExLoc, heatIndex);
- ds_temp_lglydisrepttrgtmaninfo.setColumn(jIndex, "clispebsymptom1temp", heatValue);
- iIndex = heatIndex - 1;
- }
-
- if(tempValue == "2")
- {
- ds_temp_lglydisrepttrgtmaninfo.setColumn(jIndex, "clispebsymptom2", "1");
- }
-
- if(tempValue == "3")
- {
- ds_temp_lglydisrepttrgtmaninfo.setColumn(jIndex, "clispebsymptom3", "1");
- }
-
- if(tempValue == "4")
- {
- ds_temp_lglydisrepttrgtmaninfo.setColumn(jIndex, "clispebsymptom4", "1");
- }
-
- if(tempValue == "5")
- {
- ds_temp_lglydisrepttrgtmaninfo.setColumn(jIndex, "clispebsymptom5", "1");
- }
-
- if(tempValue == "6")
- {
- ds_temp_lglydisrepttrgtmaninfo.setColumn(jIndex, "clispebsymptom6", "1");
- }
- }
- }
- }
- }
-
- }
- function fn_print_(){
- // 선택된 데이터만 필터링해서 복사
- ds_temp_lgly.clear();
- ds_temp_lgly.copyData(ds_grd_lglydisrepttrgtmaninfo);
- ds_temp_lgly.filter("chk=='1'");
-
- if( ds_temp_lgly.rowcount < 1 ){
- sysf_messageBox("선택된 환자가", "I004");
- return;
- }
-
- var cnclRows = ds_temp_lgly.findRowExpr("chk=='1' && cnclyn=='Y'");
- if( cnclRows > 0){
- sysf_messageBox("선택된 환자 중 삭제 신고서가 존재합니다.\n삭제 신고서는 출력할 수", "I004");
- return;
- }
-
- //전체선택시 한종류만 출력 가능 091127 PYJ
- var trgtmankind = ds_main_cond.getColumn(0, "trgtmankind");
- if( trgtmankind == "00" && ds_temp_lgly.rowcount > 1 ){
- sysf_messageBox("전체조회시 한명의 환자만 선택 가능합니다", "I");
- return;
- }
-
- var selstatus;
- ds_temp_lglydisrepttrgtmaninfo.clearData();
- ds_send_savedata.clearData();
- ds_send_searchdata.clearData();
-
- //미신고 조회시 출력에 보이지 않는 문제 09.11.25
- var now_reptstat = ds_send_cond.getColumn(0, "reptstat");
- var rownum = 1;
- ds_hidden_reptrsltinfo.clearData();
- ds_temp_reptrsltinfo.clearData();
-
- var kind = ds_main_cond.getColumn(0, "trgtmankind");
-
- //출력을위한 node 초기화
- ds_temp_lglydisrepttrgtmaninfo.clearData();
-
- var dateCur = utlf_getCurrentDate();
- var year = dateCur.substr(0,4);
- var mon = dateCur.substr(4,2);
- var day = dateCur.substr(6,2);
- var dateCurtime = utlf_getCurrentDateTime();
- var dateTime = dateCurtime.substr(0, 8)+dateCurtime.substr(9,12);
-
- var count = 0;
- for( var i = 0; i < ds_temp_lgly.rowcount; i++ ){
- var getChk = ds_temp_lgly.getColumn(i, "chk");
-
- if( getChk == "1" ){
- //전체("00")일때 출력 091126 PYJ
- var reptDoc = ds_send_cond.getColumn(0, "trgtmankind");
- if( reptDoc == "00" ){
- var Rreptflag = ds_temp_lgly.getColumn(i, "reptflag");
-
- ds_main_cond.setColumn(0, "trgtmankind", Rreptflag);
- ds_main_cond.setColumn(0, "pid", ds_temp_lgly.getColumn(i, "pid"));
- ds_main_cond.setColumn(0, "name", ds_temp_lgly.getColumn(i, "name"));
- ds_main_cond.setColumn(0, "wrtedt", ds_temp_lgly.getColumn(i, "wrtedt"));
- ds_main_cond.setColumn(0, "seqno", ds_temp_lgly.getColumn(i, "seqno"));
-
- //전체조건에서 환자를 조회
- var getReptstat = ds_send_cond.getColumn(i, "reptstat");
- ds_main_cond.setColumn(0, "reptstat", "");
-
- ds_send_cond.copyData(ds_main_cond);
- ds_hidden_lglydisrepttrgtmaninfo_temp.clearData();
-
- var oParam = {};
- oParam.id = "TRASI01305";
- oParam.service = "infcmngtapp.LglyDisMngt";
- oParam.method = "reqGetLglyDisReptTrgtmanList";
- oParam.inds = "req=ds_send_cond";
- oParam.outds = "ds_hidden_lglydisrepttrgtmaninfo_temp=lglydisrepttrgtmanlist";
- oParam.async = false;
- //oParam.callback = "cf_TRASI01305";
- tranf_submit(oParam);
-
- //kimsj 20100222 미신고 처음 출력시 신고일자 출력되지 않는 오류현상 수정
- for( var t = 1; ds_hidden_lglydisrepttrgtmaninfo_temp.rowcount; t++ ){
- ds_hidden_lglydisrepttrgtmaninfo_temp.setColumn(t, "reptdt", dateCur);
- }
-
- //조건을 원상태로 복귀
- ds_main_cond.setColumn(0, "reptstat", getReptstat);
- ds_send_cond.setColumn(0, "reptstat", getReptstat);
-
- //초기화
- ds_main_cond.setColumn(0, "pid", "");
- ds_main_cond.setColumn(0, "name", "");
- ds_main_cond.setColumn(0, "wrtedt", "");
- ds_main_cond.setColumn(0, "seqno", "");
- }
-
- if( ds_main_cond.getColumn(0, "trgtmankind") == "99" ){
- var select;
- if( getChk == "1" ) select = "true"; else select = "false";
- dsf_createDsRow("ds_send_savedata",
- [{col:"m", type:"string", size:256, val:"u"}
- ,{col:"select", type:"string", size:256, val:select}
- ,{col:"pid", type:"string", size:256, val:ds_temp_lgly.getColumn(i, "pid")}
- ,{col:"wrtedt", type:"string", size:256, val:ds_temp_lgly.getColumn(i, "wrtedt")}
- ,{col:"seqno", type:"string", size:256, val:ds_temp_lgly.getColumn(i, "seqno")}
- ,{col:"reptstat", type:"string", size:256, val:ds_temp_lgly.getColumn(i, "reptstat")}
- ,{col:"dethreptstat", type:"string", size:256, val:"R"}],true);
- } else {
- dsf_createDsRow("ds_send_savedata",
- [{col:"m", type:"string", size:256, val:"u"}
- ,{col:"select", type:"string", size:256, val:select}
- ,{col:"pid", type:"string", size:256, val:ds_temp_lgly.getColumn(i, "pid")}
- ,{col:"wrtedt", type:"string", size:256, val:ds_temp_lgly.getColumn(i, "wrtedt")}
- ,{col:"seqno", type:"string", size:256, val:ds_temp_lgly.getColumn(i, "seqno")}
- ,{col:"reptstat", type:"string", size:256, val:"R"}],true);
- }
-
- if( now_reptstat == "M" ){
- if( reptDoc != "00" ){
- //091203 박유진 미신고시 sort후 출력되지 않는 사항 수정
- //sort 후에는 모든 정보를 가지고 있지 않으므로
- var sPid = ds_temp_lgly.getColumn(i, "pid");
- var sWrtedt = ds_temp_lgly.getColumn(i, "wrtedt");
- var sSeqno = ds_temp_lgly.getColumn(i, "seqno");
-
- for( var s = 0; s < ds_hidden_searchlist.rowcount; s++ ){
- var hSelect = ds_hidden_searchlist.getColumn(s, "select");
- var hPid = ds_hidden_searchlist.getColumn(s, "pid");
- var hWrtedt = ds_hidden_searchlist.getColumn(s, "wrtedt");
- var hSeqno = ds_hidden_searchlist.getColumn(s, "seqno");
-
- if( sPid == hPId && sWrtedt == hWrtedt && sSeqno == hSeqno ){
- //kimsj 20100222 미신고 처음 출력시 신고일자가 출력되지 않는 오류현상 수정
- ds_hidden_searchlist.setColumn(s, "reptdt", dateCur);
- // 조회시 복사된 노드와 비교하여 해당 환자를 copy한다.
- // 출력 가능한 노드로 copy
- var nRow = ds_temp_lglydisrepttrgtmaninfo.addRow();
- ds_temp_lglydisrepttrgtmaninfo.copyRow(nRow, ds_hidden_searchlist, s);
- }
- }
- } else {
- //출력 가능한 노드로 copy
- var nRow = ds_temp_lglydisrepttrgtmaninfo.addRow();
- ds_temp_lglydisrepttrgtmaninfo.copyRow(nRow, ds_hidden_lglydisrepttrgtmaninfo_temp, i);
- }
- } else { //미신고가 아닌경우
- if( reptDoc != "00" ){
- ds_temp_reptrsltinfo.copyData(ds_temp_lgly);
- } else {
- //전체출력시 출력노드가 정해졌으므로 출력가능한 노드로 copy
- ds_temp_lglydisrepttrgtmaninfo.copyData(ds_temp_lgly);
- }
- }
- ds_hidden_reptrsltinfo.setColumn(i, "reptdtnm", "신고");
- ds_hidden_reptrsltinfo.setColumn(i, "reptyear", year);
- ds_hidden_reptrsltinfo.setColumn(i, "reptmonth", mon);
- ds_hidden_reptrsltinfo.setColumn(i, "reptday", day);
- ds_hidden_reptrsltinfo.setColumn(i, "reptdt", dateTime);
- }
- }
-
- dsf_createDsRow("ds_send_searchdata",
- [{col:"trgtmankind", type:"string", size:256, val:ds_main_cond.getColumn(0, "trgtmankind")}
- ,{col:"reptstat", type:"string", size:256, val:ds_main_cond.getColumn(0, "reptstat")}
- ,{col:"fromdd", type:"string", size:256, val:ds_main_cond.getColumn(0, "fromdd")}
- ,{col:"todd", type:"string", size:256, val:ds_main_cond.getColumn(0, "todd")}
- ,{col:"orddept", type:"string", size:256, val:ds_main_cond.getColumn(0, "orddept")}
- ,{col:"orddr", type:"string", size:256, val:ds_main_cond.getColumn(0, "orddr")}],true);
-
- var oParam = {};
- oParam.id = "TXASI01301";
- oParam.service = "infcmngtapp.LglyDisMngt";
- oParam.method = "reqExeLglyDisReptddUpdt";
- oParam.inds = "req=ds_send_savedata req2=ds_send_searchdata";
- oParam.outds = "ds_temp_reptrsltinfo=lglydisrepttrgtmanlist";
- oParam.async = false;
- oParam.callback = "cf_TXASI01301";
- tranf_submit(oParam);
-
- if( arErrorCode.pop("TXASI01301") < -1 ){
- return;
- }
-
- var getReptdoc = ds_main_cond.getColumn(0, "trgtmankind");
- if( !utlf_isNull(ds_temp_reptrsltinfo.getColumn(0, "pid")) && trgtmankind != "00" && now_reptstat != "M" ){
- ds_temp_lglydisrepttrgtmaninfo.clearData();
- for( var i = 0; i < ds_temp_reptrsltinfo.rowcount; i++ ){
- var rPid = ds_temp_reptrsltinfo.getColumn(i, "pid");
- var rWrtedt = ds_temp_reptrsltinfo.getColumn(i, "wrtedt");
- var rSeqno = ds_temp_reptrsltinfo.getColumn(i, "seqno");
- var rReptdt = ds_temp_reptrsltinfo.getColumn(i, "reptdt");
-
- for( var j = 0; j < ds_send_savedata.rowcount; j++ ){
- var sSelect = ds_send_savedata.getColumn(j, "select");
- var sPid = ds_send_savedata.getColumn(j, "pid");
- var sWrtedt = ds_send_savedata.getColumn(j, "wrtedt");
- var sSeqno = ds_send_savedata.getColumn(j, "seqno");
-
- if( sSelect == "true" && rPid == sPid && rWrtedt == sWrtedt && rSeqno == sSeqno ){
- var nRow = ds_grd_lglydisrepttrgtmaninfo.findRowExpr("select == 'true' && pid == '"+sPid+"' && wrtedt == '"+sWrtedt+"' && seqno=='"+sSeqno+"'");
- ds_grd_lglydisrepttrgtmaninfo.setColumn(nRow, "reptdt", rReptdt);
-
- var iRow = ds_temp_lglydisrepttrgtmaninfo.addRow();
- ds_temp_lglydisrepttrgtmaninfo.copyRow(iRow, ds_temp_reptrsltinfo, j);
- }
- }
- }
- }
-
- //전체조회시 reptdoc가 00이므로
- var objDOM = rptf_createDOM();
- rptf_setNodeListToDOM(objDOM, "/root/temp/lglydisrepttrgtmaninfo/lglydisrepttrgtmanlist", ds_temp_lglydisrepttrgtmaninfo); // 데이터셋 1
- var objParam = new Object();
- objParam.xml_data_XML1 = objDOM.documentElement.source; // 최상의노드 XML 스트링 추출
- var option = "open=1;save=1;directprint=0;print=1;zoom=0;";
-
- var reptdoc = ds_temp_lglydisrepttrgtmaninfo.getColumn(0, "reptflag");
- var sPrntPram = fInfectionReportSpilt();
- switch(reptdoc){
- //case '01': rptf_exeReportPreview30(["RPASI01500"],[objParam], option); break; // 법정전염병신고서
- case '01': rptf_exeReportPreview30([sPrntPram],[objParam], option); break; // RPASI01800_결핵정보관리보고서
- case '02': rptf_exeReportPreview30(["RPASI01800"],[objParam], option); break; // RPASI01800_결핵정보관리보고서
- case '03': rptf_exeReportPreview30(["RPASI01600"],[objParam], option); break; // RPASI01600_간염표본감시신고서
- case '04': rptf_exeReportPreview30(["RPASI01900"],[objParam], option); break; // RPASI01900_선천성매독표본감시신고서
- case '05': rptf_exeReportPreview30(["RPASI01700"],[objParam], option); break; // RPASI01700_성병표본감시신고서
- case '06': rptf_exeReportPreview30(["RPASI03400"],[objParam], option); break; // RPASI03400_크로이츠펠트야콥병신고서
- case '07': rptf_exeReportPreview30(["RPASI03500"],[objParam], option); break; // RPASI03500_인플루엔자신고서
- case '08': rptf_exeReportPreview30(["RPASI03600"],[objParam], option); break; // RPASI03600_산모B형간염신고서
- case '09': rptf_exeReportPreview30(["RPASI03300"],[objParam], option); break; // RPASI03300_HIV-AIDS신고서
- case '10': rptf_exeReportPreview30(["RPASI03700"],[objParam], option); break; // RPASI03700_수족구병신고서
- case '11': rptf_exeReportPreview30(["RPASI04100"],[objParam], option); break; // RPASI04100_해외유입기생충감염증
- case '99': rptf_exeReportPreview30(["RPASI01899"],[objParam], option); break; //
- }
- }
- function cf_TXASI01301(sSvcId, nErrorCode, sErrorMsg) {
- arErrorCode.push(sSvcId, nErrorCode);
- }
- /******************************************************************
- * Argument :
- * Description : 신고취소
- ******************************************************************/
-
- //20161221 이돈희 수정 : 법정감염신고대상자 조회에서 여러명 선택 후 신고 취소시
- //제일 마지막에 선택된 환자 정보만 신고 취소되는 현상 수정
- //마지막 환자 정보만 DataSet에 들어가 DB에 취소 요청함
- function grp_btn_button3_onclick(obj:Button, e:ClickEventInfo)
- {
- ds_temp_lgly.clear();
- ds_temp_lgly.copyData(ds_grd_lglydisrepttrgtmaninfo);
- ds_temp_lgly.filter("chk=='1'");
-
- if( ds_temp_lgly.rowcount < 1 ){
- sysf_messageBox("선택된 환자가", "I004");
- return;
- }
-
- //20170109 이윤주선생님 요청으로 다중 건 신청 막기
- if( ds_temp_lgly.rowcount > 1 ){
- sysf_messageBox("선택된 건이 2건 이상입니다", "I999");
- return;
- }
-
- ds_temp_lgly.filter("chk=='1' && cnclyn=='Y'");
- if( ds_temp_lgly.rowcount > 0 ){
- sysf_messageBox("선택된 환자 중 삭제 신고서가 존재합니다.\n삭제 신고서는 취소할 수", "I004");
- return;
- }
-
- ds_temp_lgly.filter("chk=='1' && reptdtnm=='미신고'");
- if( ds_temp_lgly.rowcount > 0 ){
- sysf_messageBox("선택된 환자 중 미신고 환자가 존재합니다.\n미신고서는 신고취소 할 수", "I004");
- return;
- }
-
- var result = sysf_messageBox("신고 ","Q007");
-
- if( result == "7" )
- {
- return;
- }
- else if( result == "6" )
- {
- ds_send_savedata.clearData();
- ds_send_searchdata.clearData();
- ds_hidden_reptrsltinfo.clearData();
- ds_temp_lglydisrepttrgtmaninfo.clearData();
-
- var now_reptstat = ds_main_cond.getColumn(0, "reptstat");
-
- //trgtmankind : 조회 항목에서 대상자 종류
- var getTrgtmankind = ds_main_cond.getColumn(0, "trgtmankind");
-
- // ds_temp_lgly : 법정감염병신고대상자 중 사용자가 체크한 환자만 리스트로 관리
- ds_temp_lgly.copyData(ds_grd_lglydisrepttrgtmaninfo);
- ds_temp_lgly.filter("chk=='1'");
-
- //20161221 이돈희 추가 : dsf_createDsRow(컬럼 및 값 입력), dsf_addRow(로우 추가 및 값 입력)
- //구분을 위하여 추가
- var vaIsCreateSaveDataSet = false;
-
- //trace("ds_temp_lgly.rowcount = " + ds_temp_lgly.rowcount);
- for( var i = 0; i < ds_temp_lgly.rowcount; i++ )
- {
- //trace("trgtmankind = " + getTrgtmankind);
- var getChk = ds_temp_lgly.getColumn(i, "chk");
- var select;
- if( getChk == "1" ) select = "true"; else select = "false";
-
- if( select == "true"){
- if( getTrgtmankind == "99" )
- {
- if(vaIsCreateSaveDataSet == false)
- {
- dsf_createDsRow("ds_send_savedata",
- [{col:"m", type:"string", size:256, val:"u"}
- ,{col:"select", type:"string", size:256, val:select}
- ,{col:"pid", type:"string", size:256, val:ds_temp_lgly.getColumn(i, "pid")}
- ,{col:"wrtedt", type:"string", size:256, val:ds_temp_lgly.getColumn(i, "wrtedt")}
- ,{col:"seqno", type:"string", size:256, val:ds_temp_lgly.getColumn(i, "seqno")}
- ,{col:"reptstat", type:"string", size:256, val:ds_temp_lgly.getColumn(i, "reptstat")}
- ,{col:"dethreptstat", type:"string", size:256, val:"M"}],true);
-
- vaIsCreateSaveDataSet = true;
- }
- else
- {
- dsf_addRow(ds_send_savedata,
- [{col:"m", type:"string", size:256, val:"u"}
- ,{col:"select", type:"string", size:256, val:select}
- ,{col:"pid", type:"string", size:256, val:ds_temp_lgly.getColumn(i, "pid")}
- ,{col:"wrtedt", type:"string", size:256, val:ds_temp_lgly.getColumn(i, "wrtedt")}
- ,{col:"seqno", type:"string", size:256, val:ds_temp_lgly.getColumn(i, "seqno")}
- ,{col:"reptstat", type:"string", size:256, val:ds_temp_lgly.getColumn(i, "reptstat")}
- ,{col:"dethreptstat", type:"string", size:256, val:"M"}]);
- }
-
-
-
-
-
- }
- else
- {
- //trace("pid = " + ds_temp_lgly.getColumn(i, "pid"));
-
- if(vaIsCreateSaveDataSet == false)
- {
- //trace("vaIsCreateSaveDataSet == false");
- dsf_createDsRow("ds_send_savedata",
- [{col:"m", type:"string", size:256, val:"u"}
- ,{col:"select", type:"string", size:256, val:select}
- ,{col:"pid", type:"string", size:256, val:ds_temp_lgly.getColumn(i, "pid")}
- ,{col:"wrtedt", type:"string", size:256, val:ds_temp_lgly.getColumn(i, "wrtedt")}
- ,{col:"seqno", type:"string", size:256, val:ds_temp_lgly.getColumn(i, "seqno")}
- ,{col:"reptstat", type:"string", size:256, val:"M"}],true);
-
- vaIsCreateSaveDataSet = true;
- }
- else
- {
- //trace("vaIsCreateSaveDataSet == true");
- dsf_addRow(ds_send_savedata,
- [{col:"m", type:"string", size:256, val:"u"}
- ,{col:"select", type:"string", size:256, val:select}
- ,{col:"pid", type:"string", size:256, val:ds_temp_lgly.getColumn(i, "pid")}
- ,{col:"wrtedt", type:"string", size:256, val:ds_temp_lgly.getColumn(i, "wrtedt")}
- ,{col:"seqno", type:"string", size:256, val:ds_temp_lgly.getColumn(i, "seqno")}
- ,{col:"reptstat", type:"string", size:256, val:"M"}]);
- }
-
- }
- // ds_grd_lglydisrepttrgtmaninfo.setColumn(i, "reptdtnm", "미신고");
- // ds_grd_lglydisrepttrgtmaninfo.setColumn(i, "reptdt", "");
- //trace("ds_send_savedata.pid = " + ds_send_savedata.getColumn(i, "pid"));
- }
- }
-
- dsf_createDsRow("ds_send_searchdata",
- [{col:"trgtmankind", type:"string", size:256, val:ds_main_cond.getColumn(0, "trgtmankind")}
- ,{col:"reptstat", type:"string", size:256, val:ds_main_cond.getColumn(0, "reptstat")}
- ,{col:"fromdd", type:"string", size:256, val:ds_main_cond.getColumn(0, "fromdd")}
- ,{col:"todd", type:"string", size:256, val:ds_main_cond.getColumn(0, "todd")}
- ,{col:"orddept", type:"string", size:256, val:ds_main_cond.getColumn(0, "orddept")}
- ,{col:"orddr", type:"string", size:256, val:ds_main_cond.getColumn(0, "orddr")}],true);
-
- //reptstat : 신고상태
- //fromdd : 진단시작일자
- //todd : 진단종료일자
- //orddept : 진료과
- //orddr : 진료의
- }
-
-
-
-
- var oParam = {};
- oParam.id = "TXASI01303";
- oParam.service = "infcmngtapp.LglyDisMngt";
- oParam.method = "reqSetLglyDisReptddUpdt";
- oParam.inds = "req=ds_send_savedata req2=ds_send_searchdata";
- oParam.outds = "ds_temp_reptrsltinfo=lglydisrepttrgtmanlist";
- oParam.async = false;
- oParam.callback = "cf_TXASI01303";
- tranf_submit(oParam);
-
- if( arErrorCode.pop("TXASI01303") > -1 ){
- sysf_messageBox("신고가 취소되었습니다","I");
- btn_search_onclick();
- }
- }
- function cf_TXASI01303(sSvcId, nErrorCode, sErrorMsg) {
- arErrorCode.push(sSvcId, nErrorCode);
- }
- /******************************************************************
- * Argument :
- * Description : 제외
- ******************************************************************/
- function grp_btn_button10_onclick(obj:Button, e:ClickEventInfo)
- {
- ds_temp_lgly.clear();
- ds_temp_lgly.copyData(ds_grd_lglydisrepttrgtmaninfo);
- ds_temp_lgly.filter("chk=='1'");
-
- if( ds_temp_lgly.rowcount < 1 ){
- sysf_messageBox("선택된 건이", "I004");
- return;
- }
-
- if( ds_temp_lgly.rowcount > 1 ){
- sysf_messageBox("선택된 건이 2건 이상입니다", "I999");
- return;
- }
-
- var result = sysf_messageBox("선택된 건을 제외하시겠습니까","Q999");
-
- if( result == "7" ){
- return;
- }
-
- ds_send_savedata.clearData();
- ds_send_searchdata.clearData();
-
- ds_temp_lgly.filter("chk=='1'");
-
- var reptstat;
- if( ds_main_cond.getColumn(0, "trgtmankind") == "99" ){
- reptstat = ds_temp_lgly.getColumn(0, "dethreptstat");
- } else {
- reptstat = ds_temp_lgly.getColumn(0, "reptstat");
- }
-
- if( reptstat == "E" ){
- sysf_messageBox("이미 제외된 건입니다","I999");
- return;
- }
-
- if( reptstat != "M" ){
- sysf_messageBox("미신고 상태만 제외가능합니다","I999");
- return;
- }
-
- var select = "";
- if( ds_temp_lgly.getColumn(0, "chk") == "1" ){
- select = "true";
- } else {
- select = "false";
- }
-
- if( ds_main_cond.getColumn(0, "trgtmankind") == "99" ){
-
- dsf_createDsRow("ds_send_savedata",
- [{col:"m", type:"string", size:256, val:"u"}
- ,{col:"select", type:"string", size:256, val:select}
- ,{col:"pid", type:"string", size:256, val:ds_temp_lgly.getColumn(0, "pid")}
- ,{col:"wrtedt", type:"string", size:256, val:ds_temp_lgly.getColumn(0, "wrtedt")}
- ,{col:"seqno", type:"string", size:256, val:ds_temp_lgly.getColumn(0, "seqno")}
- ,{col:"reptstat", type:"string", size:256, val:ds_temp_lgly.getColumn(0, "reptstat")}
- ,{col:"dethreptstat", type:"string", size:256, val:"E"}],true);
- } else {
- dsf_createDsRow("ds_send_savedata",
- [{col:"m", type:"string", size:256, val:"u"}
- ,{col:"select", type:"string", size:256, val:select}
- ,{col:"pid", type:"string", size:256, val:ds_temp_lgly.getColumn(0, "pid")}
- ,{col:"wrtedt", type:"string", size:256, val:ds_temp_lgly.getColumn(0, "wrtedt")}
- ,{col:"seqno", type:"string", size:256, val:ds_temp_lgly.getColumn(0, "seqno")}
- ,{col:"reptstat", type:"string", size:256, val:"E"}],true);
- }
-
- dsf_createDsRow("ds_send_searchdata",
- [{col:"trgtmankind", type:"string", size:256, val:ds_main_cond.getColumn(0, "trgtmankind")}
- ,{col:"reptstat", type:"string", size:256, val:ds_main_cond.getColumn(0, "reptstat")}
- ,{col:"fromdd", type:"string", size:256, val:ds_main_cond.getColumn(0, "fromdd")}
- ,{col:"todd", type:"string", size:256, val:ds_main_cond.getColumn(0, "todd")}
- ,{col:"orddept", type:"string", size:256, val:ds_main_cond.getColumn(0, "orddept")}
- ,{col:"orddr", type:"string", size:256, val:ds_main_cond.getColumn(0, "orddr")}],true);
-
- sysf_trace(ds_send_searchdata.saveXML());
- var oParam = {};
- oParam.id = "TXASI01303";
- oParam.service = "infcmngtapp.LglyDisMngt";
- oParam.method = "reqSetLglyDisReptddUpdt";
- oParam.inds = "req=ds_send_savedata req2=ds_send_searchdata";
- oParam.outds = "ds_temp_reptrsltinfo=lglydisrepttrgtmanlist";
- oParam.async = false;
- oParam.callback = "cf_TXASI01303";
- tranf_submit(oParam);
- if( arErrorCode.pop("TXASI01303") > -1 ){
- btn_search_onclick();
- }
- }
- /******************************************************************
- * Argument :
- * Description : 제외취소
- ******************************************************************/
- function grp_btn_button11_onclick(obj:Button, e:ClickEventInfo)
- {
- ds_temp_lgly.clear();
- ds_temp_lgly.copyData(ds_grd_lglydisrepttrgtmaninfo);
- ds_temp_lgly.filter("chk=='1'");
-
- if( ds_temp_lgly.rowcount < 1 ){
- sysf_messageBox("선택된 건이", "I004");
- return;
- }
-
- if( ds_temp_lgly.rowcount > 1 ){
- sysf_messageBox("선택된 건이 2건 이상입니다", "I999");
- return;
- }
-
- var result = sysf_messageBox("선택된 건을 제외 취소하시겠습니까","Q999");
-
- if( result == "7" ){
- return;
- }
-
- var reptstat;
- if( ds_main_cond.getColumn(0, "trgtmankind") == "99" ){
- reptstat = ds_temp_lgly.getColumn(0, "dethreptstat");
- } else {
- reptstat = ds_temp_lgly.getColumn(0, "reptstat");
- }
-
- if( reptstat != "E" ){
- sysf_messageBox("제외된 건이 아닙니다","I999");
- return;
- }
-
- var select = "";
- if( ds_temp_lgly.getColumn(0, "chk") == "1" ){
- select = "true";
- } else {
- select = "false";
- }
- if( ds_main_cond.getColumn(0, "trgtmankind") == "99" ){
- dsf_createDsRow("ds_send_savedata",
- [{col:"m", type:"string", size:256, val:"u"}
- ,{col:"select", type:"string", size:256, val:select}
- ,{col:"pid", type:"string", size:256, val:ds_temp_lgly.getColumn(0, "pid")}
- ,{col:"wrtedt", type:"string", size:256, val:ds_temp_lgly.getColumn(0, "wrtedt")}
- ,{col:"seqno", type:"string", size:256, val:ds_temp_lgly.getColumn(0, "seqno")}
- ,{col:"reptstat", type:"string", size:256, val:ds_temp_lgly.getColumn(0, "reptstat")}
- ,{col:"dethreptstat", type:"string", size:256, val:"M"}],true);
- } else {
- dsf_createDsRow("ds_send_savedata",
- [{col:"m", type:"string", size:256, val:"u"}
- ,{col:"select", type:"string", size:256, val:select}
- ,{col:"pid", type:"string", size:256, val:ds_temp_lgly.getColumn(0, "pid")}
- ,{col:"wrtedt", type:"string", size:256, val:ds_temp_lgly.getColumn(0, "wrtedt")}
- ,{col:"seqno", type:"string", size:256, val:ds_temp_lgly.getColumn(0, "seqno")}
- ,{col:"reptstat", type:"string", size:256, val:"M"}],true);
- }
- dsf_createDsRow("ds_send_searchdata",
- [{col:"trgtmankind", type:"string", size:256, val:ds_main_cond.getColumn(0, "trgtmankind")}
- ,{col:"reptstat", type:"string", size:256, val:ds_main_cond.getColumn(0, "reptstat")}
- ,{col:"fromdd", type:"string", size:256, val:ds_main_cond.getColumn(0, "fromdd")}
- ,{col:"todd", type:"string", size:256, val:ds_main_cond.getColumn(0, "todd")}
- ,{col:"orddept", type:"string", size:256, val:ds_main_cond.getColumn(0, "orddept")}
- ,{col:"orddr", type:"string", size:256, val:ds_main_cond.getColumn(0, "orddr")}],true);
-
- var oParam = {};
- oParam.id = "TXASI01303";
- oParam.service = "infcmngtapp.LglyDisMngt";
- oParam.method = "reqSetLglyDisReptddUpdt";
- oParam.inds = "req=ds_send_savedata req2=ds_send_searchdata";
- oParam.outds = "ds_temp_reptrsltinfo=lglydisrepttrgtmanlist";
- oParam.async = false;
- oParam.callback = "cf_TXASI01303";
- tranf_submit(oParam);
- if( arErrorCode.pop("TXASI01303") > -1 ){
- btn_search_onclick();
- }
- }
- function grp_sea_bool1_onclick(obj:CheckBox, e:ClickEventInfo)
- {
- var ev = new ClickEventInfo;
- frmf_inputEnterKey("grp_sea.btn_search", "onclick", ev );
- }
- function grp_btn_btn_init_onclick(obj:Button, e:ClickEventInfo)
- {
- fDisplayInit();
-
- }
- function fDisplayInit()
- {
- grp_sea.cmb_trgtmankind.index = 0;
- grp_sea.cmb_orddept.index = 0;
- grp_sea.cmb_reptstat.index = 0;
- grp_sea.cmb_orddr.value = 0;
- grp_sea.ipt_patcd.value = "";
- grp_sea.ipt_patnm.value = ""
- grp_sea.chk.value = 0;
- ds_grd_lglydisrepttrgtmaninfo.clearData();
- }
- function grp_sea_cmb_orddept_onitemchanged(obj:Combo, e:ItemChangeEventInfo)
- {
- //20161222 이돈희 추가 : 진료과 선택시 해당 진료의 표시 안되는 현상 수정
- lf_mmbfGetUserComboList(ds_hidden_userlist, obj.value, "0330", "", "", "");
- dsf_addDsItem(ds_hidden_userlist,"userid","usernm","전체","");
- grp_sea.cmb_orddr.value = 0;
-
- }
- //191231_AYS_법정감염병 출력물 OLD/NEW 버전 분기
- function fInfectionReportSpilt()
- {
- trace("fInfectionReportSpilt");
- var sWrtedt = ds_temp_lglydisrepttrgtmaninfo.getColumn(0, "wrtedt");
- trace("Wrtedt : " + sWrtedt);
- var sPrintParam = '';
-
- if( !utlf_isNull(sWrtedt) && sWrtedt < '20200120000000') {
- sPrintParam = "RPASI01500";
- } else{
- sPrintParam = "RPASI01510";
- }
- trace("fInfectionReportSpilt : " + sPrintParam);
-
- return sPrintParam;
- }
- ]]></Script>
- </Form>
- </FDL>
|