123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073 |
- <?xml version="1.0" encoding="EUC-KR"?>
- <root xmlns="">
- <main>
- <nodeinfo>
- <drntlist>
- <workdd>20120522</workdd>
- <workseq>1</workseq>
- <cnfmrid>93451</cnfmrid>
- <notice/>
- <spcf>
- <![CDATA[
- ]]>
- </spcf>
- <eqmt>
- <![CDATA[5/16 절단기 칼날무딘것 업체에 연락됨->2번:점검함(5/18),1번 :절단기교체후수리위해 본사로보냄(5/21)
- 5/18 스팀 6호기 c04 (스팀 지연) -> 수리완료 pkg 교체
- 5/22 외래배양기 새것으로 교체(구형은 캐비넷보관)]]>
- </eqmt>
- <tmpr>23.3</tmpr>
- <humi>20</humi>
- <csrnotice>
- <![CDATA[4/30 ER 집계 불출하기 : 봉합사 Surgipro 5/0(1635), 6/0(1697)
- 5/16 응급처방프로그램 : 의사직포함 입력안됨(monitoring중)
- 5/15 Chest Bottle C Type 업체에 포장변경 요청함
- 5/21 Soft Cloth with liner 입고됨. 규격 5*10[GFF004001],10*10[GFF004002]
- 5/22 Prismaflex ST60입고됨. 물품코드[E80203006]
- 5/22 마취회복실 휴일사용한 세트 올려 받을때 박스에 담아 올리도록 확인할것
-
- ]]>
- </csrnotice>
- <cdrnotice>
- <![CDATA[5/11 Chromic Catgut 공급 중단 예정.
- 5/22 CCD 추가합니다.: Surgi Paw 1001-74 위치-> B장
- ]]>
- </cdrnotice>
- <allnotice>
- <![CDATA[5/4 "2012년도 전직원 교육" 그랜드호텔 개인이동, 5/7~5/31, 08:20~17:50, 간편복, 운동화
- 출근부기재 "전직원 교육"
- 5/15 5월 월례회 5/17(목) 예정->변경 5/24(목) ]]>
- </allnotice>
- <instcd>031</instcd>
- <cnfmrnm>최영숙</cnfmrnm>
- </drntlist>
- <drctlist>
- <ioflag/>
- <bfstockcnt>11</bfstockcnt>
- <workdd>20120522</workdd>
- <workseq>1</workseq>
- <reqcnt>0</reqcnt>
- <usecnt>5</usecnt>
- <stockcnt>6</stockcnt>
- <instcd>031</instcd>
- </drctlist>
- <rgstqtylist>
- <goodflaghngnm>
- <![CDATA[Autoclave]]>
- </goodflaghngnm>
- <csrreqdeptnm>병동</csrreqdeptnm>
- <csrfixasetnm/>
- <day>212</day>
- <eve>0</eve>
- <sumcnt>212</sumcnt>
- </rgstqtylist>
- <rgstqtylist>
- <goodflaghngnm>
- <![CDATA[Autoclave]]>
- </goodflaghngnm>
- <csrreqdeptnm>수술실</csrreqdeptnm>
- <csrfixasetnm/>
- <day>283</day>
- <eve>420</eve>
- <sumcnt>703</sumcnt>
- </rgstqtylist>
- <rgstqtylist>
- <goodflaghngnm>
- <![CDATA[Autoclave]]>
- </goodflaghngnm>
- <csrreqdeptnm>외래</csrreqdeptnm>
- <csrfixasetnm/>
- <day>79</day>
- <eve>0</eve>
- <sumcnt>79</sumcnt>
- </rgstqtylist>
- <rgstqtylist>
- <goodflaghngnm>
- <![CDATA[Autoclave]]>
- </goodflaghngnm>
- <csrreqdeptnm>응급실</csrreqdeptnm>
- <csrfixasetnm/>
- <day>24</day>
- <eve>0</eve>
- <sumcnt>24</sumcnt>
- </rgstqtylist>
- <rgstqtylist>
- <goodflaghngnm>
- <![CDATA[Autoclave]]>
- </goodflaghngnm>
- <csrreqdeptnm>중앙공급실</csrreqdeptnm>
- <csrfixasetnm/>
- <day>999</day>
- <eve>0</eve>
- <sumcnt>999</sumcnt>
- </rgstqtylist>
- <rgstqtylist>
- <goodflaghngnm>
- <![CDATA[Autoclave]]>
- </goodflaghngnm>
- <csrreqdeptnm>중환자실</csrreqdeptnm>
- <csrfixasetnm/>
- <day>72</day>
- <eve>0</eve>
- <sumcnt>72</sumcnt>
- </rgstqtylist>
- <rgstqtylist>
- <goodflaghngnm>
- <![CDATA[합계]]>
- </goodflaghngnm>
- <csrreqdeptnm/>
- <csrfixasetnm/>
- <day>1669</day>
- <eve>420</eve>
- <sumcnt>2089</sumcnt>
- </rgstqtylist>
- <rgstqtylist>
- <goodflaghngnm>
- <![CDATA[Dry Heat]]>
- </goodflaghngnm>
- <csrreqdeptnm>수술실</csrreqdeptnm>
- <csrfixasetnm/>
- <day>1</day>
- <eve>0</eve>
- <sumcnt>1</sumcnt>
- </rgstqtylist>
- <rgstqtylist>
- <goodflaghngnm>
- <![CDATA[합계]]>
- </goodflaghngnm>
- <csrreqdeptnm/>
- <csrfixasetnm/>
- <day>1</day>
- <eve>0</eve>
- <sumcnt>1</sumcnt>
- </rgstqtylist>
- <rgstqtylist>
- <goodflaghngnm>
- <![CDATA[E.O Gas]]>
- </goodflaghngnm>
- <csrreqdeptnm>병동</csrreqdeptnm>
- <csrfixasetnm/>
- <day>17</day>
- <eve>44</eve>
- <sumcnt>61</sumcnt>
- </rgstqtylist>
- <rgstqtylist>
- <goodflaghngnm>
- <![CDATA[E.O Gas]]>
- </goodflaghngnm>
- <csrreqdeptnm>수술실</csrreqdeptnm>
- <csrfixasetnm/>
- <day>159</day>
- <eve>248</eve>
- <sumcnt>407</sumcnt>
- </rgstqtylist>
- <rgstqtylist>
- <goodflaghngnm>
- <![CDATA[E.O Gas]]>
- </goodflaghngnm>
- <csrreqdeptnm>외래</csrreqdeptnm>
- <csrfixasetnm/>
- <day>27</day>
- <eve>0</eve>
- <sumcnt>27</sumcnt>
- </rgstqtylist>
- <rgstqtylist>
- <goodflaghngnm>
- <![CDATA[E.O Gas]]>
- </goodflaghngnm>
- <csrreqdeptnm>응급실</csrreqdeptnm>
- <csrfixasetnm/>
- <day>3</day>
- <eve>0</eve>
- <sumcnt>3</sumcnt>
- </rgstqtylist>
- <rgstqtylist>
- <goodflaghngnm>
- <![CDATA[E.O Gas]]>
- </goodflaghngnm>
- <csrreqdeptnm>중환자실</csrreqdeptnm>
- <csrfixasetnm/>
- <day>36</day>
- <eve>0</eve>
- <sumcnt>36</sumcnt>
- </rgstqtylist>
- <rgstqtylist>
- <goodflaghngnm>
- <![CDATA[합계]]>
- </goodflaghngnm>
- <csrreqdeptnm/>
- <csrfixasetnm/>
- <day>242</day>
- <eve>292</eve>
- <sumcnt>534</sumcnt>
- </rgstqtylist>
- <machiuselist>
- <divsnm>
- <![CDATA[Autoclave]]>
- </divsnm>
- <csrfixasetnm>
- <![CDATA[1호기 HS1000]]>
- </csrfixasetnm>
- <dutyday>2</dutyday>
- <dutyeve>0</dutyeve>
- <sumcnt>2</sumcnt>
- </machiuselist>
- <machiuselist>
- <divsnm>
- <![CDATA[Autoclave]]>
- </divsnm>
- <csrfixasetnm>
- <![CDATA[2호기833HC]]>
- </csrfixasetnm>
- <dutyday>3</dutyday>
- <dutyeve>0</dutyeve>
- <sumcnt>3</sumcnt>
- </machiuselist>
- <machiuselist>
- <divsnm>
- <![CDATA[Autoclave]]>
- </divsnm>
- <csrfixasetnm>
- <![CDATA[4호기4233]]>
- </csrfixasetnm>
- <dutyday>4</dutyday>
- <dutyeve>2</dutyeve>
- <sumcnt>6</sumcnt>
- </machiuselist>
- <machiuselist>
- <divsnm>
- <![CDATA[Autoclave]]>
- </divsnm>
- <csrfixasetnm>
- <![CDATA[5호기4233]]>
- </csrfixasetnm>
- <dutyday>4</dutyday>
- <dutyeve>2</dutyeve>
- <sumcnt>6</sumcnt>
- </machiuselist>
- <machiuselist>
- <divsnm>
- <![CDATA[Autoclave]]>
- </divsnm>
- <csrfixasetnm>
- <![CDATA[6호기4233]]>
- </csrfixasetnm>
- <dutyday>4</dutyday>
- <dutyeve>2</dutyeve>
- <sumcnt>6</sumcnt>
- </machiuselist>
- <machiuselist>
- <divsnm>
- <![CDATA[합계]]>
- </divsnm>
- <csrfixasetnm/>
- <dutyday>17</dutyday>
- <dutyeve>6</dutyeve>
- <sumcnt>23</sumcnt>
- </machiuselist>
- <machiuselist>
- <divsnm>
- <![CDATA[Dry Heat]]>
- </divsnm>
- <csrfixasetnm>
- <![CDATA[소독기(건열)]]>
- </csrfixasetnm>
- <dutyday>1</dutyday>
- <dutyeve>0</dutyeve>
- <sumcnt>1</sumcnt>
- </machiuselist>
- <machiuselist>
- <divsnm>
- <![CDATA[합계]]>
- </divsnm>
- <csrfixasetnm/>
- <dutyday>1</dutyday>
- <dutyeve>0</dutyeve>
- <sumcnt>1</sumcnt>
- </machiuselist>
- <machiuselist>
- <divsnm>
- <![CDATA[E.O Gas]]>
- </divsnm>
- <csrfixasetnm>
- <![CDATA[1호기 8XL]]>
- </csrfixasetnm>
- <dutyday>1</dutyday>
- <dutyeve>1</dutyeve>
- <sumcnt>2</sumcnt>
- </machiuselist>
- <machiuselist>
- <divsnm>
- <![CDATA[E.O Gas]]>
- </divsnm>
- <csrfixasetnm>
- <![CDATA[2호기 8XL]]>
- </csrfixasetnm>
- <dutyday>1</dutyday>
- <dutyeve>0</dutyeve>
- <sumcnt>1</sumcnt>
- </machiuselist>
- <machiuselist>
- <divsnm>
- <![CDATA[E.O Gas]]>
- </divsnm>
- <csrfixasetnm>
- <![CDATA[3호기 8XL]]>
- </csrfixasetnm>
- <dutyday>1</dutyday>
- <dutyeve>1</dutyeve>
- <sumcnt>2</sumcnt>
- </machiuselist>
- <machiuselist>
- <divsnm>
- <![CDATA[E.O Gas]]>
- </divsnm>
- <csrfixasetnm>
- <![CDATA[4호기 8XL]]>
- </csrfixasetnm>
- <dutyday>0</dutyday>
- <dutyeve>1</dutyeve>
- <sumcnt>1</sumcnt>
- </machiuselist>
- <machiuselist>
- <divsnm>
- <![CDATA[합계]]>
- </divsnm>
- <csrfixasetnm/>
- <dutyday>3</dutyday>
- <dutyeve>3</dutyeve>
- <sumcnt>6</sumcnt>
- </machiuselist>
- <enemalist>
- <cdnm>Enema</cdnm>
- <day>2</day>
- <eve>9</eve>
- </enemalist>
- <enemalist>
- <cdnm>Skin Prep</cdnm>
- <day>5</day>
- <eve>10</eve>
- </enemalist>
- <ccdrcentrlist>
- <ioflag>O</ioflag>
- <instcd>031</instcd>
- <gubuncd>02</gubuncd>
- <workseq>1</workseq>
- <cdid>A001</cdid>
- <workdd>20120522</workdd>
- <cdnm>정규</cdnm>
- <day>63</day>
- <eve>0</eve>
- </ccdrcentrlist>
- <ccdrcentrlist>
- <ioflag>O</ioflag>
- <instcd>031</instcd>
- <gubuncd>02</gubuncd>
- <workseq>1</workseq>
- <cdid>A002</cdid>
- <workdd>20120522</workdd>
- <cdnm>응급</cdnm>
- <day>5</day>
- <eve>2</eve>
- </ccdrcentrlist>
- <ccdroperlist>
- <ioflag>O</ioflag>
- <instcd>031</instcd>
- <gubuncd>03</gubuncd>
- <workseq>1</workseq>
- <cdid>A001</cdid>
- <cdnm>정규</cdnm>
- <workdd>20120522</workdd>
- <day>18</day>
- <eve>0</eve>
- </ccdroperlist>
- <ccdroperlist>
- <ioflag>O</ioflag>
- <instcd>031</instcd>
- <gubuncd>03</gubuncd>
- <workseq>1</workseq>
- <cdid>A002</cdid>
- <cdnm>응급</cdnm>
- <workdd>20120522</workdd>
- <day>0</day>
- <eve>0</eve>
- </ccdroperlist>
- <etclist>
- <ioflag/>
- <cdid/>
- <item>
- <![CDATA[재입]]>
- </item>
- <instcd>031</instcd>
- <gubuncd/>
- <workdd>20120522</workdd>
- <workseq>1</workseq>
- <day>DAY</day>
- <eve>EVE</eve>
- <flag>1</flag>
- </etclist>
- <etclist>
- <ioflag>O</ioflag>
- <cdid>62</cdid>
- <item>
- <![CDATA[부직포 (60*60)]]>
- </item>
- <instcd>031</instcd>
- <gubuncd>04</gubuncd>
- <workdd>20120522</workdd>
- <workseq>1</workseq>
- <day>137</day>
- <eve>0</eve>
- <flag>1</flag>
- </etclist>
- <etclist>
- <ioflag>O</ioflag>
- <cdid>64</cdid>
- <item>
- <![CDATA[부직포 (65*65)]]>
- </item>
- <instcd>031</instcd>
- <gubuncd>04</gubuncd>
- <workdd>20120522</workdd>
- <workseq>1</workseq>
- <day>3</day>
- <eve>0</eve>
- <flag>1</flag>
- </etclist>
- <etclist>
- <ioflag>O</ioflag>
- <cdid>63</cdid>
- <item>
- <![CDATA[부직포 (75*75)]]>
- </item>
- <instcd>031</instcd>
- <gubuncd>04</gubuncd>
- <workdd>20120522</workdd>
- <workseq>1</workseq>
- <day>5</day>
- <eve>0</eve>
- <flag>1</flag>
- </etclist>
- <etclist>
- <ioflag>O</ioflag>
- <cdid>61</cdid>
- <item>
- <![CDATA[부직포 (90*90)]]>
- </item>
- <instcd>031</instcd>
- <gubuncd>04</gubuncd>
- <workdd>20120522</workdd>
- <workseq>1</workseq>
- <day>68</day>
- <eve>0</eve>
- <flag>1</flag>
- </etclist>
- <etclist>
- <ioflag>O</ioflag>
- <cdid>65</cdid>
- <item>
- <![CDATA[Glove (6.5-7.0)]]>
- </item>
- <instcd>031</instcd>
- <gubuncd>04</gubuncd>
- <workdd>20120522</workdd>
- <workseq>1</workseq>
- <day>0</day>
- <eve>0</eve>
- <flag>1</flag>
- </etclist>
- <etclist>
- <ioflag>O</ioflag>
- <cdid>66</cdid>
- <item>
- <![CDATA[Glove (7.5-8.0)]]>
- </item>
- <instcd>031</instcd>
- <gubuncd>04</gubuncd>
- <workdd>20120522</workdd>
- <workseq>1</workseq>
- <day>0</day>
- <eve>0</eve>
- <flag>1</flag>
- </etclist>
- <etclist>
- <ioflag>O</ioflag>
- <cdid>67</cdid>
- <item>
- <![CDATA[S-T]]>
- </item>
- <instcd>031</instcd>
- <gubuncd>04</gubuncd>
- <workdd>20120522</workdd>
- <workseq>1</workseq>
- <day>0</day>
- <eve>0</eve>
- <flag>1</flag>
- </etclist>
- <etclist>
- <ioflag>O</ioflag>
- <cdid>68</cdid>
- <item>
- <![CDATA[M-T]]>
- </item>
- <instcd>031</instcd>
- <gubuncd>04</gubuncd>
- <workdd>20120522</workdd>
- <workseq>1</workseq>
- <day>0</day>
- <eve>0</eve>
- <flag>1</flag>
- </etclist>
- <etclist>
- <ioflag>O</ioflag>
- <cdid>69</cdid>
- <item>
- <![CDATA[L-T]]>
- </item>
- <instcd>031</instcd>
- <gubuncd>04</gubuncd>
- <workdd>20120522</workdd>
- <workseq>1</workseq>
- <day>0</day>
- <eve>0</eve>
- <flag>1</flag>
- </etclist>
- <etclist>
- <ioflag>O</ioflag>
- <cdid>70</cdid>
- <item>
- <![CDATA[Gauze 4*8]]>
- </item>
- <instcd>031</instcd>
- <gubuncd>04</gubuncd>
- <workdd>20120522</workdd>
- <workseq>1</workseq>
- <day>0</day>
- <eve>0</eve>
- <flag>1</flag>
- </etclist>
- <etclist>
- <ioflag>O</ioflag>
- <cdid>71</cdid>
- <item>
- <![CDATA[면붕대]]>
- </item>
- <instcd>031</instcd>
- <gubuncd>04</gubuncd>
- <workdd>20120522</workdd>
- <workseq>1</workseq>
- <day>0</day>
- <eve>0</eve>
- <flag>1</flag>
- </etclist>
- <etclist>
- <ioflag>O</ioflag>
- <cdid>72</cdid>
- <item>
- <![CDATA[E-B (2")]]>
- </item>
- <instcd>031</instcd>
- <gubuncd>04</gubuncd>
- <workdd>20120522</workdd>
- <workseq>1</workseq>
- <day>0</day>
- <eve>0</eve>
- <flag>1</flag>
- </etclist>
- <etclist>
- <ioflag>O</ioflag>
- <cdid>73</cdid>
- <item>
- <![CDATA[E-B (3")]]>
- </item>
- <instcd>031</instcd>
- <gubuncd>04</gubuncd>
- <workdd>20120522</workdd>
- <workseq>1</workseq>
- <day>0</day>
- <eve>0</eve>
- <flag>1</flag>
- </etclist>
- <etclist>
- <ioflag>O</ioflag>
- <cdid>74</cdid>
- <item>
- <![CDATA[E-B (4")]]>
- </item>
- <instcd>031</instcd>
- <gubuncd>04</gubuncd>
- <workdd>20120522</workdd>
- <workseq>1</workseq>
- <day>0</day>
- <eve>0</eve>
- <flag>1</flag>
- </etclist>
- <etclist>
- <ioflag>O</ioflag>
- <cdid>75</cdid>
- <item>
- <![CDATA[E-B (6:)]]>
- </item>
- <instcd>031</instcd>
- <gubuncd>04</gubuncd>
- <workdd>20120522</workdd>
- <workseq>1</workseq>
- <day>0</day>
- <eve>0</eve>
- <flag>1</flag>
- </etclist>
- <etclist>
- <ioflag>O</ioflag>
- <cdid>76</cdid>
- <item>
- <![CDATA[1Utility Drape]]>
- </item>
- <instcd>031</instcd>
- <gubuncd>04</gubuncd>
- <workdd>20120522</workdd>
- <workseq>1</workseq>
- <day>0</day>
- <eve>0</eve>
- <flag>1</flag>
- </etclist>
- <etclist>
- <ioflag>O</ioflag>
- <cdid>77</cdid>
- <item>
- <![CDATA[2Utility Drape]]>
- </item>
- <instcd>031</instcd>
- <gubuncd>04</gubuncd>
- <workdd>20120522</workdd>
- <workseq>1</workseq>
- <day>32</day>
- <eve>0</eve>
- <flag>1</flag>
- </etclist>
- <etclist>
- <ioflag>O</ioflag>
- <cdid>78</cdid>
- <item>
- <![CDATA[Mayo Stand Cover]]>
- </item>
- <instcd>031</instcd>
- <gubuncd>04</gubuncd>
- <workdd>20120522</workdd>
- <workseq>1</workseq>
- <day>14</day>
- <eve>0</eve>
- <flag>1</flag>
- </etclist>
- <etclist>
- <ioflag>O</ioflag>
- <cdid>79</cdid>
- <item>
- <![CDATA[Surgical Gown (9002)]]>
- </item>
- <instcd>031</instcd>
- <gubuncd>04</gubuncd>
- <workdd>20120522</workdd>
- <workseq>1</workseq>
- <day>32</day>
- <eve>0</eve>
- <flag>1</flag>
- </etclist>
- <etclist>
- <ioflag>O</ioflag>
- <cdid>80</cdid>
- <item>
- <![CDATA[Large Utility Drape]]>
- </item>
- <instcd>031</instcd>
- <gubuncd>04</gubuncd>
- <workdd>20120522</workdd>
- <workseq>1</workseq>
- <day>0</day>
- <eve>0</eve>
- <flag>1</flag>
- </etclist>
- <etclist>
- <ioflag>O</ioflag>
- <cdid>81</cdid>
- <item>
- <![CDATA[Medium Utility Drape]]>
- </item>
- <instcd>031</instcd>
- <gubuncd>04</gubuncd>
- <workdd>20120522</workdd>
- <workseq>1</workseq>
- <day>0</day>
- <eve>0</eve>
- <flag>1</flag>
- </etclist>
- <etclist>
- <ioflag>O</ioflag>
- <cdid>82</cdid>
- <item>
- <![CDATA[Back Table Cover]]>
- </item>
- <instcd>031</instcd>
- <gubuncd>04</gubuncd>
- <workdd>20120522</workdd>
- <workseq>1</workseq>
- <day>0</day>
- <eve>0</eve>
- <flag>1</flag>
- </etclist>
- <etclist>
- <ioflag>O</ioflag>
- <cdid>83</cdid>
- <item>
- <![CDATA[Impervius Drape]]>
- </item>
- <instcd>031</instcd>
- <gubuncd>04</gubuncd>
- <workdd>20120522</workdd>
- <workseq>1</workseq>
- <day>0</day>
- <eve>0</eve>
- <flag>1</flag>
- </etclist>
- <etclist>
- <ioflag>O</ioflag>
- <cdid>88</cdid>
- <item>
- <![CDATA[bemsheets(1호)]]>
- </item>
- <instcd>031</instcd>
- <gubuncd>04</gubuncd>
- <workdd>20120522</workdd>
- <workseq>1</workseq>
- <day>0</day>
- <eve>0</eve>
- <flag>1</flag>
- </etclist>
- <etclist>
- <ioflag>O</ioflag>
- <cdid>89</cdid>
- <item>
- <![CDATA[Skin Stapler]]>
- </item>
- <instcd>031</instcd>
- <gubuncd>04</gubuncd>
- <workdd>20120522</workdd>
- <workseq>1</workseq>
- <day>0</day>
- <eve>0</eve>
- <flag>1</flag>
- </etclist>
- <etclist>
- <ioflag/>
- <cdid/>
- <item>
- <![CDATA[재멸균]]>
- </item>
- <instcd>031</instcd>
- <gubuncd/>
- <workdd>20120522</workdd>
- <workseq>1</workseq>
- <day>DAY</day>
- <eve>EVE</eve>
- <flag>2</flag>
- </etclist>
- <etclist>
- <ioflag>O</ioflag>
- <cdid>84</cdid>
- <item>
- <![CDATA[감마의뢰-병동]]>
- </item>
- <instcd>031</instcd>
- <gubuncd>04</gubuncd>
- <workdd>20120522</workdd>
- <workseq>1</workseq>
- <day>0</day>
- <eve>0</eve>
- <flag>2</flag>
- </etclist>
- <etclist>
- <ioflag>O</ioflag>
- <cdid>85</cdid>
- <item>
- <![CDATA[감마의뢰-외래]]>
- </item>
- <instcd>031</instcd>
- <gubuncd>04</gubuncd>
- <workdd>20120522</workdd>
- <workseq>1</workseq>
- <day>0</day>
- <eve>0</eve>
- <flag>2</flag>
- </etclist>
- <etclist>
- <ioflag>O</ioflag>
- <cdid>86</cdid>
- <item>
- <![CDATA[감마의뢰-OR]]>
- </item>
- <instcd>031</instcd>
- <gubuncd>04</gubuncd>
- <workdd>20120522</workdd>
- <workseq>1</workseq>
- <day>0</day>
- <eve>0</eve>
- <flag>2</flag>
- </etclist>
- <etclist>
- <ioflag>O</ioflag>
- <cdid>87</cdid>
- <item>
- <![CDATA[감마의뢰-CCDR]]>
- </item>
- <instcd>031</instcd>
- <gubuncd>04</gubuncd>
- <workdd>20120522</workdd>
- <workseq>1</workseq>
- <day>0</day>
- <eve>0</eve>
- <flag>2</flag>
- </etclist>
- <etclist>
- <ioflag/>
- <cdid/>
- <item>
- <![CDATA[세척]]>
- </item>
- <instcd>031</instcd>
- <gubuncd/>
- <workdd>20120522</workdd>
- <workseq>1</workseq>
- <day>DAY</day>
- <eve>EVE</eve>
- <flag>4</flag>
- </etclist>
- <etclist>
- <ioflag>O</ioflag>
- <cdid>55</cdid>
- <item>
- <![CDATA[D-Set (대)]]>
- </item>
- <instcd>031</instcd>
- <gubuncd>04</gubuncd>
- <workdd>20120522</workdd>
- <workseq>1</workseq>
- <day>82</day>
- <eve>0</eve>
- <flag>4</flag>
- </etclist>
- <etclist>
- <ioflag>O</ioflag>
- <cdid>56</cdid>
- <item>
- <![CDATA[D-Set (소)]]>
- </item>
- <instcd>031</instcd>
- <gubuncd>04</gubuncd>
- <workdd>20120522</workdd>
- <workseq>1</workseq>
- <day>44</day>
- <eve>0</eve>
- <flag>4</flag>
- </etclist>
- <etclist>
- <ioflag>O</ioflag>
- <cdid>57</cdid>
- <item>
- <![CDATA[각종 Set]]>
- </item>
- <instcd>031</instcd>
- <gubuncd>04</gubuncd>
- <workdd>20120522</workdd>
- <workseq>1</workseq>
- <day>165</day>
- <eve>0</eve>
- <flag>4</flag>
- </etclist>
- <etclist>
- <ioflag>O</ioflag>
- <cdid>58</cdid>
- <item>
- <![CDATA[무균 D-Set]]>
- </item>
- <instcd>031</instcd>
- <gubuncd>04</gubuncd>
- <workdd>20120522</workdd>
- <workseq>1</workseq>
- <day>30</day>
- <eve>0</eve>
- <flag>4</flag>
- </etclist>
- <etclist>
- <ioflag>O</ioflag>
- <cdid>59</cdid>
- <item>
- <![CDATA[무균 소기구류]]>
- </item>
- <instcd>031</instcd>
- <gubuncd>04</gubuncd>
- <workdd>20120522</workdd>
- <workseq>1</workseq>
- <day>6</day>
- <eve>0</eve>
- <flag>4</flag>
- </etclist>
- <etclist>
- <ioflag>O</ioflag>
- <cdid>60</cdid>
- <item>
- <![CDATA[의료 소기구 Single]]>
- </item>
- <instcd>031</instcd>
- <gubuncd>04</gubuncd>
- <workdd>20120522</workdd>
- <workseq>1</workseq>
- <day>31</day>
- <eve>0</eve>
- <flag>4</flag>
- </etclist>
- <linenlist>
- <csrgoodnm>
- <![CDATA[Bandage 면붕대]]>
- </csrgoodnm>
- <certrgstqtyday>24</certrgstqtyday>
- <certrgstqtyeve>0</certrgstqtyeve>
- </linenlist>
- <linenlist>
- <csrgoodnm>
- <![CDATA[Bandage 탄력붕대]]>
- </csrgoodnm>
- <certrgstqtyday>64</certrgstqtyday>
- <certrgstqtyeve>0</certrgstqtyeve>
- </linenlist>
- <linenlist>
- <csrgoodnm>
- <![CDATA[멸균 중포(녹색광목)]]>
- </csrgoodnm>
- <certrgstqtyday>50</certrgstqtyday>
- <certrgstqtyeve>0</certrgstqtyeve>
- </linenlist>
- <linenlist>
- <csrgoodnm>
- <![CDATA[무균 멸균소포]]>
- </csrgoodnm>
- <certrgstqtyday>10</certrgstqtyday>
- <certrgstqtyeve>0</certrgstqtyeve>
- </linenlist>
- <linenlist>
- <csrgoodnm>
- <![CDATA[일일 안과 Package]]>
- </csrgoodnm>
- <certrgstqtyday>5</certrgstqtyday>
- <certrgstqtyeve>0</certrgstqtyeve>
- </linenlist>
- <linenlist>
- <csrgoodnm>
- <![CDATA[무균개인Set Package]]>
- </csrgoodnm>
- <certrgstqtyday>1</certrgstqtyday>
- <certrgstqtyeve>0</certrgstqtyeve>
- </linenlist>
- <linenlist>
- <csrgoodnm>
- <![CDATA[Gauze Burn]]>
- </csrgoodnm>
- <certrgstqtyday>50</certrgstqtyday>
- <certrgstqtyeve>0</certrgstqtyeve>
- </linenlist>
- <linenlist>
- <csrgoodnm>
- <![CDATA[멸균 Sheet]]>
- </csrgoodnm>
- <certrgstqtyday>10</certrgstqtyday>
- <certrgstqtyeve>0</certrgstqtyeve>
- </linenlist>
- <linenlist>
- <csrgoodnm>
- <![CDATA[멸균 소포(녹색광목)]]>
- </csrgoodnm>
- <certrgstqtyday>270</certrgstqtyday>
- <certrgstqtyeve>0</certrgstqtyeve>
- </linenlist>
- <linenlist>
- <csrgoodnm>
- <![CDATA[멸균 대포(녹색광목)]]>
- </csrgoodnm>
- <certrgstqtyday>130</certrgstqtyday>
- <certrgstqtyeve>0</certrgstqtyeve>
- </linenlist>
- <linenlist>
- <csrgoodnm>
- <![CDATA[멸균 소공(녹색광목)(공 크기 9*9 2겹)]]>
- </csrgoodnm>
- <certrgstqtyday>20</certrgstqtyday>
- <certrgstqtyeve>0</certrgstqtyeve>
- </linenlist>
- <linenlist>
- <csrgoodnm>
- <![CDATA[멸균 중포(녹색광목)]]>
- </csrgoodnm>
- <certrgstqtyday>25</certrgstqtyday>
- <certrgstqtyeve>0</certrgstqtyeve>
- </linenlist>
- <rgstqtyiolist>
- <goodnm>
- <![CDATA[CAPD Set]]>
- </goodnm>
- <dlvexchngqtyday/>
- <dlvexchngqtyeve/>
- <dlvreqqtyday/>
- <dlvreqqtyeve/>
- <dlvlendqtyday/>
- <dlvlendqtyeve/>
- <dlvrgstqtyday>2</dlvrgstqtyday>
- <dlvrgstqtyeve/>
- <dlvrergstqtyday/>
- <dlvrergstqtyeve/>
- </rgstqtyiolist>
- <rgstqtyiolist>
- <goodnm>
- <![CDATA[Cardiac set]]>
- </goodnm>
- <dlvexchngqtyday/>
- <dlvexchngqtyeve/>
- <dlvreqqtyday/>
- <dlvreqqtyeve/>
- <dlvlendqtyday/>
- <dlvlendqtyeve/>
- <dlvrgstqtyday>5</dlvrgstqtyday>
- <dlvrgstqtyeve/>
- <dlvrergstqtyday/>
- <dlvrergstqtyeve/>
- </rgstqtyiolist>
- <rgstqtyiolist>
- <goodnm>
- <![CDATA[Tapping Set]]>
- </goodnm>
- <dlvexchngqtyday>2</dlvexchngqtyday>
- <dlvexchngqtyeve>1</dlvexchngqtyeve>
- <dlvreqqtyday/>
- <dlvreqqtyeve/>
- <dlvlendqtyday/>
- <dlvlendqtyeve/>
- <dlvrgstqtyday/>
- <dlvrgstqtyeve/>
- <dlvrergstqtyday/>
- <dlvrergstqtyeve/>
- </rgstqtyiolist>
- <rgstqtyiolist>
- <goodnm>
- <![CDATA[Thoracentesis set]]>
- </goodnm>
- <dlvexchngqtyday/>
- <dlvexchngqtyeve>1</dlvexchngqtyeve>
- <dlvreqqtyday/>
- <dlvreqqtyeve/>
- <dlvlendqtyday/>
- <dlvlendqtyeve/>
- <dlvrgstqtyday/>
- <dlvrgstqtyeve/>
- <dlvrergstqtyday/>
- <dlvrergstqtyeve/>
- </rgstqtyiolist>
- <rgstqtyiolist>
- <goodnm>
- <![CDATA[Baby Set]]>
- </goodnm>
- <dlvexchngqtyday/>
- <dlvexchngqtyeve/>
- <dlvreqqtyday/>
- <dlvreqqtyeve/>
- <dlvlendqtyday/>
- <dlvlendqtyeve/>
- <dlvrgstqtyday>2</dlvrgstqtyday>
- <dlvrgstqtyeve/>
- <dlvrergstqtyday/>
- <dlvrergstqtyeve/>
- </rgstqtyiolist>
- <rgstqtyiolist>
- <goodnm>
- <![CDATA[C-T guided biopsy set]]>
- </goodnm>
- <dlvexchngqtyday/>
- <dlvexchngqtyeve/>
- <dlvreqqtyday/>
- <dlvreqqtyeve/>
- <dlvlendqtyday>3</dlvlendqtyday>
- <dlvlendqtyeve/>
- <dlvrgstqtyday/>
- <dlvrgstqtyeve/>
- <dlvrergstqtyday/>
- <dlvrergstqtyeve/>
- </rgstqtyiolist>
- <rgstqtyiolist>
- <goodnm>
- <![CDATA[Cystoscopic set]]>
- </goodnm>
- <dlvexchngqtyday/>
- <dlvexchngqtyeve/>
- <dlvreqqtyday/>
- <dlvreqqtyeve/>
- <dlvlendqtyday/>
- <dlvlendqtyeve/>
- <dlvrgstqtyday>1</dlvrgstqtyday>
- <dlvrgstqtyeve/>
- <dlvrergstqtyday/>
- <dlvrergstqtyeve/>
- </rgstqtyiolist>
- <rgstqtyiolist>
- <goodnm>
- <![CDATA[Dressing Set(대)]]>
- </goodnm>
- <dlvexchngqtyday>77</dlvexchngqtyday>
- <dlvexchngqtyeve>1</dlvexchngqtyeve>
- <dlvreqqtyday/>
- <dlvreqqtyeve/>
- <dlvlendqtyday/>
- <dlvlendqtyeve>2</dlvlendqtyeve>
- <dlvrgstqtyday/>
- <dlvrgstqtyeve/>
- <dlvrergstqtyday>2</dlvrergstqtyday>
- <dlvrergstqtyeve/>
- </rgstqtyiolist>
- <rgstqtyiolist>
- <goodnm>
- <![CDATA[Foley Set]]>
- </goodnm>
- <dlvexchngqtyday>24</dlvexchngqtyday>
- <dlvexchngqtyeve>6</dlvexchngqtyeve>
- <dlvreqqtyday/>
- <dlvreqqtyeve/>
- <dlvlendqtyday/>
- <dlvlendqtyeve>2</dlvlendqtyeve>
- <dlvrgstqtyday/>
- <dlvrgstqtyeve/>
- <dlvrergstqtyday>1</dlvrergstqtyday>
- <dlvrergstqtyeve/>
- </rgstqtyiolist>
- <rgstqtyiolist>
- <goodnm>
- <![CDATA[P-S incision Set]]>
- </goodnm>
- <dlvexchngqtyday>2</dlvexchngqtyday>
- <dlvexchngqtyeve>3</dlvexchngqtyeve>
- <dlvreqqtyday/>
- <dlvreqqtyeve/>
- <dlvlendqtyday/>
- <dlvlendqtyeve/>
- <dlvrgstqtyday/>
- <dlvrgstqtyeve/>
- <dlvrergstqtyday/>
- <dlvrergstqtyeve/>
- </rgstqtyiolist>
- <rgstqtyiolist>
- <goodnm>
- <![CDATA[Puncture Set]]>
- </goodnm>
- <dlvexchngqtyday>6</dlvexchngqtyday>
- <dlvexchngqtyeve/>
- <dlvreqqtyday/>
- <dlvreqqtyeve/>
- <dlvlendqtyday>1</dlvlendqtyday>
- <dlvlendqtyeve/>
- <dlvrgstqtyday/>
- <dlvrgstqtyeve/>
- <dlvrergstqtyday/>
- <dlvrergstqtyeve/>
- </rgstqtyiolist>
- <rgstqtyiolist>
- <goodnm>
- <![CDATA[Incision Set]]>
- </goodnm>
- <dlvexchngqtyday>2</dlvexchngqtyday>
- <dlvexchngqtyeve>1</dlvexchngqtyeve>
- <dlvreqqtyday/>
- <dlvreqqtyeve/>
- <dlvlendqtyday>1</dlvlendqtyday>
- <dlvlendqtyeve>1</dlvlendqtyeve>
- <dlvrgstqtyday/>
- <dlvrgstqtyeve/>
- <dlvrergstqtyday/>
- <dlvrergstqtyeve/>
- </rgstqtyiolist>
- <rgstqtyiolist>
- <goodnm>
- <![CDATA[Arthrocentesis Set]]>
- </goodnm>
- <dlvexchngqtyday/>
- <dlvexchngqtyeve/>
- <dlvreqqtyday/>
- <dlvreqqtyeve/>
- <dlvlendqtyday/>
- <dlvlendqtyeve/>
- <dlvrgstqtyday>10</dlvrgstqtyday>
- <dlvrgstqtyeve/>
- <dlvrergstqtyday/>
- <dlvrergstqtyeve/>
- </rgstqtyiolist>
- <rgstqtyiolist>
- <goodnm>
- <![CDATA[Drill Bits]]>
- </goodnm>
- <dlvexchngqtyday/>
- <dlvexchngqtyeve>1</dlvexchngqtyeve>
- <dlvreqqtyday/>
- <dlvreqqtyeve/>
- <dlvlendqtyday/>
- <dlvlendqtyeve/>
- <dlvrgstqtyday/>
- <dlvrgstqtyeve/>
- <dlvrergstqtyday/>
- <dlvrergstqtyeve/>
- </rgstqtyiolist>
- <rgstqtyiolist>
- <goodnm>
- <![CDATA[Hand drill]]>
- </goodnm>
- <dlvexchngqtyday/>
- <dlvexchngqtyeve>1</dlvexchngqtyeve>
- <dlvreqqtyday/>
- <dlvreqqtyeve/>
- <dlvlendqtyday/>
- <dlvlendqtyeve/>
- <dlvrgstqtyday/>
- <dlvrgstqtyeve/>
- <dlvrergstqtyday/>
- <dlvrergstqtyeve/>
- </rgstqtyiolist>
- <rgstqtyiolist>
- <goodnm>
- <![CDATA[Hemostats Mosquito Forcep(공용)]]>
- </goodnm>
- <dlvexchngqtyday>4</dlvexchngqtyday>
- <dlvexchngqtyeve/>
- <dlvreqqtyday/>
- <dlvreqqtyeve/>
- <dlvlendqtyday/>
- <dlvlendqtyeve/>
- <dlvrgstqtyday/>
- <dlvrgstqtyeve/>
- <dlvrergstqtyday/>
- <dlvrergstqtyeve/>
- </rgstqtyiolist>
- <rgstqtyiolist>
- <goodnm>
- <![CDATA[Hemostats Kelly(중)]]>
- </goodnm>
- <dlvexchngqtyday>14</dlvexchngqtyday>
- <dlvexchngqtyeve/>
- <dlvreqqtyday/>
- <dlvreqqtyeve/>
- <dlvlendqtyday/>
- <dlvlendqtyeve/>
- <dlvrgstqtyday/>
- <dlvrgstqtyeve/>
- <dlvrergstqtyday/>
- <dlvrergstqtyeve/>
- </rgstqtyiolist>
- <rgstqtyiolist>
- <goodnm>
- <![CDATA[Mosquito]]>
- </goodnm>
- <dlvexchngqtyday/>
- <dlvexchngqtyeve/>
- <dlvreqqtyday/>
- <dlvreqqtyeve/>
- <dlvlendqtyday>2</dlvlendqtyday>
- <dlvlendqtyeve/>
- <dlvrgstqtyday/>
- <dlvrgstqtyeve/>
- <dlvrergstqtyday/>
- <dlvrergstqtyeve/>
- </rgstqtyiolist>
- <rgstqtyiolist>
- <goodnm>
- <![CDATA[Mosquito(Curved)]]>
- </goodnm>
- <dlvexchngqtyday/>
- <dlvexchngqtyeve/>
- <dlvreqqtyday/>
- <dlvreqqtyeve/>
- <dlvlendqtyday>4</dlvlendqtyday>
- <dlvlendqtyeve/>
- <dlvrgstqtyday/>
- <dlvrgstqtyeve/>
- <dlvrergstqtyday/>
- <dlvrergstqtyeve/>
- </rgstqtyiolist>
- <rgstqtyiolist>
- <goodnm>
- <![CDATA[Scissors]]>
- </goodnm>
- <dlvexchngqtyday>6</dlvexchngqtyday>
- <dlvexchngqtyeve/>
- <dlvreqqtyday/>
- <dlvreqqtyeve/>
- <dlvlendqtyday>1</dlvlendqtyday>
- <dlvlendqtyeve/>
- <dlvrgstqtyday/>
- <dlvrgstqtyeve/>
- <dlvrergstqtyday/>
- <dlvrergstqtyeve/>
- </rgstqtyiolist>
- <rgstqtyiolist>
- <goodnm>
- <![CDATA[Scissors]]>
- </goodnm>
- <dlvexchngqtyday/>
- <dlvexchngqtyeve/>
- <dlvreqqtyday/>
- <dlvreqqtyeve/>
- <dlvlendqtyday/>
- <dlvlendqtyeve>1</dlvlendqtyeve>
- <dlvrgstqtyday/>
- <dlvrgstqtyeve/>
- <dlvrergstqtyday/>
- <dlvrergstqtyeve/>
- </rgstqtyiolist>
- <rgstqtyiolist>
- <goodnm>
- <![CDATA[202병동전용세트]]>
- </goodnm>
- <dlvexchngqtyday>6</dlvexchngqtyday>
- <dlvexchngqtyeve>2</dlvexchngqtyeve>
- <dlvreqqtyday/>
- <dlvreqqtyeve/>
- <dlvlendqtyday/>
- <dlvlendqtyeve/>
- <dlvrgstqtyday/>
- <dlvrgstqtyeve/>
- <dlvrergstqtyday/>
- <dlvrergstqtyeve/>
- </rgstqtyiolist>
- <rgstqtyiolist>
- <goodnm>
- <![CDATA[Dressing set (소)]]>
- </goodnm>
- <dlvexchngqtyday>29</dlvexchngqtyday>
- <dlvexchngqtyeve/>
- <dlvreqqtyday/>
- <dlvreqqtyeve/>
- <dlvlendqtyday/>
- <dlvlendqtyeve/>
- <dlvrgstqtyday/>
- <dlvrgstqtyeve/>
- <dlvrergstqtyday>10</dlvrergstqtyday>
- <dlvrergstqtyeve/>
- </rgstqtyiolist>
- <rgstqtyiolist>
- <goodnm>
- <![CDATA[Hemodialysis set(Reusable)]]>
- </goodnm>
- <dlvexchngqtyday/>
- <dlvexchngqtyeve/>
- <dlvreqqtyday/>
- <dlvreqqtyeve/>
- <dlvlendqtyday/>
- <dlvlendqtyeve/>
- <dlvrgstqtyday>15</dlvrgstqtyday>
- <dlvrgstqtyeve/>
- <dlvrergstqtyday/>
- <dlvrergstqtyeve/>
- </rgstqtyiolist>
- <rgstqtyiolist>
- <goodnm>
- <![CDATA[Epidural Set]]>
- </goodnm>
- <dlvexchngqtyday>6</dlvexchngqtyday>
- <dlvexchngqtyeve/>
- <dlvreqqtyday/>
- <dlvreqqtyeve/>
- <dlvlendqtyday>13</dlvlendqtyday>
- <dlvlendqtyeve/>
- <dlvrgstqtyday/>
- <dlvrgstqtyeve/>
- <dlvrergstqtyday/>
- <dlvrergstqtyeve/>
- </rgstqtyiolist>
- <rgstqtyiolist>
- <goodnm>
- <![CDATA[G-Y Set]]>
- </goodnm>
- <dlvexchngqtyday/>
- <dlvexchngqtyeve/>
- <dlvreqqtyday/>
- <dlvreqqtyeve/>
- <dlvlendqtyday/>
- <dlvlendqtyeve/>
- <dlvrgstqtyday/>
- <dlvrgstqtyeve>1</dlvrgstqtyeve>
- <dlvrergstqtyday/>
- <dlvrergstqtyeve/>
- </rgstqtyiolist>
- <rgstqtyiolist>
- <goodnm>
- <![CDATA[Vaseline Gauze]]>
- </goodnm>
- <dlvexchngqtyday/>
- <dlvexchngqtyeve/>
- <dlvreqqtyday/>
- <dlvreqqtyeve/>
- <dlvlendqtyday>3</dlvlendqtyday>
- <dlvlendqtyeve/>
- <dlvrgstqtyday/>
- <dlvrgstqtyeve/>
- <dlvrergstqtyday/>
- <dlvrergstqtyeve/>
- </rgstqtyiolist>
- <rgstqtyiolist>
- <goodnm>
- <![CDATA[povidone stick swab]]>
- </goodnm>
- <dlvexchngqtyday/>
- <dlvexchngqtyeve/>
- <dlvreqqtyday>14</dlvreqqtyday>
- <dlvreqqtyeve/>
- <dlvlendqtyday/>
- <dlvlendqtyeve/>
- <dlvrgstqtyday/>
- <dlvrgstqtyeve/>
- <dlvrergstqtyday/>
- <dlvrergstqtyeve/>
- </rgstqtyiolist>
- <rgstqtyiolist>
- <goodnm>
- <![CDATA[일회용 드레싱세트(내용물포함)]]>
- </goodnm>
- <dlvexchngqtyday/>
- <dlvexchngqtyeve/>
- <dlvreqqtyday>550</dlvreqqtyday>
- <dlvreqqtyeve/>
- <dlvlendqtyday/>
- <dlvlendqtyeve/>
- <dlvrgstqtyday/>
- <dlvrgstqtyeve/>
- <dlvrergstqtyday/>
- <dlvrergstqtyeve/>
- </rgstqtyiolist>
- <rgstqtyiolist>
- <goodnm>
- <![CDATA[Angio set]]>
- </goodnm>
- <dlvexchngqtyday/>
- <dlvexchngqtyeve/>
- <dlvreqqtyday/>
- <dlvreqqtyeve/>
- <dlvlendqtyday/>
- <dlvlendqtyeve/>
- <dlvrgstqtyday>12</dlvrgstqtyday>
- <dlvrgstqtyeve/>
- <dlvrergstqtyday/>
- <dlvrergstqtyeve/>
- </rgstqtyiolist>
- <rgstqtyiolist>
- <goodnm>
- <![CDATA[Delivery Set]]>
- </goodnm>
- <dlvexchngqtyday/>
- <dlvexchngqtyeve/>
- <dlvreqqtyday/>
- <dlvreqqtyeve/>
- <dlvlendqtyday/>
- <dlvlendqtyeve/>
- <dlvrgstqtyday>2</dlvrgstqtyday>
- <dlvrgstqtyeve/>
- <dlvrergstqtyday/>
- <dlvrergstqtyeve/>
- </rgstqtyiolist>
- <rgstqtyiolist>
- <goodnm>
- <![CDATA[Forcep Jar(can)]]>
- </goodnm>
- <dlvexchngqtyday/>
- <dlvexchngqtyeve/>
- <dlvreqqtyday/>
- <dlvreqqtyeve/>
- <dlvlendqtyday/>
- <dlvlendqtyeve/>
- <dlvrgstqtyday>5</dlvrgstqtyday>
- <dlvrgstqtyeve/>
- <dlvrergstqtyday/>
- <dlvrergstqtyeve/>
- </rgstqtyiolist>
- <rgstqtyiolist>
- <goodnm>
- <![CDATA[무균 D-Set]]>
- </goodnm>
- <dlvexchngqtyday/>
- <dlvexchngqtyeve/>
- <dlvreqqtyday/>
- <dlvreqqtyeve/>
- <dlvlendqtyday/>
- <dlvlendqtyeve/>
- <dlvrgstqtyday>16</dlvrgstqtyday>
- <dlvrgstqtyeve/>
- <dlvrergstqtyday/>
- <dlvrergstqtyeve/>
- </rgstqtyiolist>
- <rgstqtyiolist>
- <goodnm>
- <![CDATA[Angio Bowl Set]]>
- </goodnm>
- <dlvexchngqtyday/>
- <dlvexchngqtyeve/>
- <dlvreqqtyday/>
- <dlvreqqtyeve/>
- <dlvlendqtyday/>
- <dlvlendqtyeve/>
- <dlvrgstqtyday>12</dlvrgstqtyday>
- <dlvrgstqtyeve/>
- <dlvrergstqtyday/>
- <dlvrergstqtyeve/>
- </rgstqtyiolist>
- <rgstqtyiolist>
- <goodnm>
- <![CDATA[Cardiac Bowl Set]]>
- </goodnm>
- <dlvexchngqtyday/>
- <dlvexchngqtyeve/>
- <dlvreqqtyday/>
- <dlvreqqtyeve/>
- <dlvlendqtyday/>
- <dlvlendqtyeve/>
- <dlvrgstqtyday>5</dlvrgstqtyday>
- <dlvrgstqtyeve/>
- <dlvrergstqtyday/>
- <dlvrergstqtyeve/>
- </rgstqtyiolist>
- <rgstqtyiolist>
- <goodnm>
- <![CDATA[가정간호 Dressing Set(소)]]>
- </goodnm>
- <dlvexchngqtyday/>
- <dlvexchngqtyeve/>
- <dlvreqqtyday/>
- <dlvreqqtyeve/>
- <dlvlendqtyday/>
- <dlvlendqtyeve/>
- <dlvrgstqtyday/>
- <dlvrgstqtyeve/>
- <dlvrergstqtyday/>
- <dlvrergstqtyeve/>
- </rgstqtyiolist>
- <rgstqtyiolist>
- <goodnm>
- <![CDATA[목욕대야]]>
- </goodnm>
- <dlvexchngqtyday/>
- <dlvexchngqtyeve/>
- <dlvreqqtyday/>
- <dlvreqqtyeve/>
- <dlvlendqtyday/>
- <dlvlendqtyeve/>
- <dlvrgstqtyday/>
- <dlvrgstqtyeve>17</dlvrgstqtyeve>
- <dlvrergstqtyday/>
- <dlvrergstqtyeve/>
- </rgstqtyiolist>
- <rgstqtyiolist>
- <goodnm>
- <![CDATA[무균환자용품]]>
- </goodnm>
- <dlvexchngqtyday/>
- <dlvexchngqtyeve/>
- <dlvreqqtyday/>
- <dlvreqqtyeve/>
- <dlvlendqtyday/>
- <dlvlendqtyeve/>
- <dlvrgstqtyday>1</dlvrgstqtyday>
- <dlvrgstqtyeve/>
- <dlvrergstqtyday/>
- <dlvrergstqtyeve/>
- </rgstqtyiolist>
- <rgstqtyiolist>
- <goodnm>
- <![CDATA[무균 Can]]>
- </goodnm>
- <dlvexchngqtyday/>
- <dlvexchngqtyeve/>
- <dlvreqqtyday/>
- <dlvreqqtyeve/>
- <dlvlendqtyday/>
- <dlvlendqtyeve/>
- <dlvrgstqtyday>1</dlvrgstqtyday>
- <dlvrgstqtyeve/>
- <dlvrergstqtyday/>
- <dlvrergstqtyeve/>
- </rgstqtyiolist>
- <rgstqtyiolist>
- <goodnm>
- <![CDATA[Steam 자루(물품목록등록)]]>
- </goodnm>
- <dlvexchngqtyday/>
- <dlvexchngqtyeve/>
- <dlvreqqtyday/>
- <dlvreqqtyeve/>
- <dlvlendqtyday/>
- <dlvlendqtyeve/>
- <dlvrgstqtyday>11</dlvrgstqtyday>
- <dlvrgstqtyeve>1</dlvrgstqtyeve>
- <dlvrergstqtyday/>
- <dlvrergstqtyeve/>
- </rgstqtyiolist>
- <rgstqtyiolist>
- <goodnm>
- <![CDATA[사각 Can]]>
- </goodnm>
- <dlvexchngqtyday/>
- <dlvexchngqtyeve/>
- <dlvreqqtyday/>
- <dlvreqqtyeve/>
- <dlvlendqtyday/>
- <dlvlendqtyeve/>
- <dlvrgstqtyday>1</dlvrgstqtyday>
- <dlvrgstqtyeve/>
- <dlvrergstqtyday/>
- <dlvrergstqtyeve/>
- </rgstqtyiolist>
- <rgstqtyiolist>
- <goodnm>
- <![CDATA[Steam pouch망(물품목록등록)]]>
- </goodnm>
- <dlvexchngqtyday/>
- <dlvexchngqtyeve/>
- <dlvreqqtyday/>
- <dlvreqqtyeve/>
- <dlvlendqtyday/>
- <dlvlendqtyeve/>
- <dlvrgstqtyday>1</dlvrgstqtyday>
- <dlvrgstqtyeve/>
- <dlvrergstqtyday/>
- <dlvrergstqtyeve/>
- </rgstqtyiolist>
- <rgstqtyiolist>
- <goodnm>
- <![CDATA[OR Steam Pouch ]]>
- </goodnm>
- <dlvexchngqtyday/>
- <dlvexchngqtyeve/>
- <dlvreqqtyday/>
- <dlvreqqtyeve/>
- <dlvlendqtyday/>
- <dlvlendqtyeve/>
- <dlvrgstqtyday/>
- <dlvrgstqtyeve>1</dlvrgstqtyeve>
- <dlvrergstqtyday/>
- <dlvrergstqtyeve/>
- </rgstqtyiolist>
- <rgstqtyiolist>
- <goodnm>
- <![CDATA[OR Cart (물품목록등록)]]>
- </goodnm>
- <dlvexchngqtyday/>
- <dlvexchngqtyeve/>
- <dlvreqqtyday/>
- <dlvreqqtyeve/>
- <dlvlendqtyday/>
- <dlvlendqtyeve/>
- <dlvrgstqtyday/>
- <dlvrgstqtyeve>5</dlvrgstqtyeve>
- <dlvrergstqtyday/>
- <dlvrergstqtyeve/>
- </rgstqtyiolist>
- <rgstqtyiolist>
- <goodnm>
- <![CDATA[DOR Cart (물품목록등록)]]>
- </goodnm>
- <dlvexchngqtyday/>
- <dlvexchngqtyeve/>
- <dlvreqqtyday/>
- <dlvreqqtyeve/>
- <dlvlendqtyday/>
- <dlvlendqtyeve/>
- <dlvrgstqtyday/>
- <dlvrgstqtyeve>1</dlvrgstqtyeve>
- <dlvrergstqtyday/>
- <dlvrergstqtyeve/>
- </rgstqtyiolist>
- <rgstqtyiolist>
- <goodnm>
- <![CDATA[DOR Steam Pouch(물품목록등록)]]>
- </goodnm>
- <dlvexchngqtyday/>
- <dlvexchngqtyeve/>
- <dlvreqqtyday/>
- <dlvreqqtyeve/>
- <dlvlendqtyday/>
- <dlvlendqtyeve/>
- <dlvrgstqtyday/>
- <dlvrgstqtyeve>1</dlvrgstqtyeve>
- <dlvrergstqtyday/>
- <dlvrergstqtyeve/>
- </rgstqtyiolist>
- <rgstqtyiolist>
- <goodnm>
- <![CDATA[Cardiac Long Catheter]]>
- </goodnm>
- <dlvexchngqtyday/>
- <dlvexchngqtyeve/>
- <dlvreqqtyday/>
- <dlvreqqtyeve/>
- <dlvlendqtyday/>
- <dlvlendqtyeve/>
- <dlvrgstqtyday/>
- <dlvrgstqtyeve/>
- <dlvrergstqtyday/>
- <dlvrergstqtyeve/>
- </rgstqtyiolist>
- <rgstqtyiolist>
- <goodnm>
- <![CDATA[E.O Gas망 (물품목록등록)]]>
- </goodnm>
- <dlvexchngqtyday/>
- <dlvexchngqtyeve/>
- <dlvreqqtyday/>
- <dlvreqqtyeve/>
- <dlvlendqtyday/>
- <dlvlendqtyeve/>
- <dlvrgstqtyday>4</dlvrgstqtyday>
- <dlvrgstqtyeve>2</dlvrgstqtyeve>
- <dlvrergstqtyday/>
- <dlvrergstqtyeve/>
- </rgstqtyiolist>
- <rgstqtyiolist>
- <goodnm>
- <![CDATA[E.O Gas망 OR 정규 (물품목록등록)]]>
- </goodnm>
- <dlvexchngqtyday/>
- <dlvexchngqtyeve/>
- <dlvreqqtyday/>
- <dlvreqqtyeve/>
- <dlvlendqtyday/>
- <dlvlendqtyeve/>
- <dlvrgstqtyday>1</dlvrgstqtyday>
- <dlvrgstqtyeve>1</dlvrgstqtyeve>
- <dlvrergstqtyday/>
- <dlvrergstqtyeve/>
- </rgstqtyiolist>
- <rgstqtyiolist>
- <goodnm>
- <![CDATA[E.O Gas망 OR 응급 (물품목록등록)]]>
- </goodnm>
- <dlvexchngqtyday/>
- <dlvexchngqtyeve/>
- <dlvreqqtyday/>
- <dlvreqqtyeve/>
- <dlvlendqtyday/>
- <dlvlendqtyeve/>
- <dlvrgstqtyday/>
- <dlvrgstqtyeve>1</dlvrgstqtyeve>
- <dlvrergstqtyday/>
- <dlvrergstqtyeve/>
- </rgstqtyiolist>
- <rgstqtyiolist>
- <goodnm>
- <![CDATA[수술가운(롱가운)]]>
- </goodnm>
- <dlvexchngqtyday/>
- <dlvexchngqtyeve/>
- <dlvreqqtyday>13</dlvreqqtyday>
- <dlvreqqtyeve/>
- <dlvlendqtyday/>
- <dlvlendqtyeve/>
- <dlvrgstqtyday/>
- <dlvrgstqtyeve/>
- <dlvrergstqtyday/>
- <dlvrergstqtyeve/>
- </rgstqtyiolist>
- <rgstqtyiolist>
- <goodnm>
- <![CDATA[소공(녹색광목)(공 크기 9*9, 2겹)]]>
- </goodnm>
- <dlvexchngqtyday/>
- <dlvexchngqtyeve/>
- <dlvreqqtyday>3</dlvreqqtyday>
- <dlvreqqtyeve/>
- <dlvlendqtyday/>
- <dlvlendqtyeve/>
- <dlvrgstqtyday/>
- <dlvrgstqtyeve/>
- <dlvrergstqtyday/>
- <dlvrergstqtyeve/>
- </rgstqtyiolist>
- <rgstqtyiolist>
- <goodnm>
- <![CDATA[중포(녹색광목)중]]>
- </goodnm>
- <dlvexchngqtyday/>
- <dlvexchngqtyeve/>
- <dlvreqqtyday>20</dlvreqqtyday>
- <dlvreqqtyeve/>
- <dlvlendqtyday/>
- <dlvlendqtyeve/>
- <dlvrgstqtyday/>
- <dlvrgstqtyeve/>
- <dlvrergstqtyday/>
- <dlvrergstqtyeve/>
- </rgstqtyiolist>
- <rgstqtyiolist>
- <goodnm>
- <![CDATA[수술가운(청색.병동환자용)]]>
- </goodnm>
- <dlvexchngqtyday/>
- <dlvexchngqtyeve/>
- <dlvreqqtyday>28</dlvreqqtyday>
- <dlvreqqtyeve/>
- <dlvlendqtyday/>
- <dlvlendqtyeve/>
- <dlvrgstqtyday/>
- <dlvrgstqtyeve/>
- <dlvrergstqtyday/>
- <dlvrergstqtyeve/>
- </rgstqtyiolist>
- <rgstqtyiolist>
- <goodnm>
- <![CDATA[수술가운(바지)]]>
- </goodnm>
- <dlvexchngqtyday/>
- <dlvexchngqtyeve/>
- <dlvreqqtyday>12</dlvreqqtyday>
- <dlvreqqtyeve/>
- <dlvlendqtyday/>
- <dlvlendqtyeve/>
- <dlvrgstqtyday/>
- <dlvrgstqtyeve/>
- <dlvrergstqtyday/>
- <dlvrergstqtyeve/>
- </rgstqtyiolist>
- <rgstqtyiolist>
- <goodnm>
- <![CDATA[멸균 Sheet]]>
- </goodnm>
- <dlvexchngqtyday/>
- <dlvexchngqtyeve/>
- <dlvreqqtyday>20</dlvreqqtyday>
- <dlvreqqtyeve/>
- <dlvlendqtyday/>
- <dlvlendqtyeve/>
- <dlvrgstqtyday/>
- <dlvrgstqtyeve/>
- <dlvrergstqtyday/>
- <dlvrergstqtyeve/>
- </rgstqtyiolist>
- <rgstqtyiolist>
- <goodnm>
- <![CDATA[멸균 중포(녹색광목)]]>
- </goodnm>
- <dlvexchngqtyday/>
- <dlvexchngqtyeve/>
- <dlvreqqtyday>55</dlvreqqtyday>
- <dlvreqqtyeve/>
- <dlvlendqtyday/>
- <dlvlendqtyeve/>
- <dlvrgstqtyday/>
- <dlvrgstqtyeve/>
- <dlvrergstqtyday/>
- <dlvrergstqtyeve/>
- </rgstqtyiolist>
- <rgstqtyiolist>
- <goodnm>
- <![CDATA[멸균 대포(녹색광목)]]>
- </goodnm>
- <dlvexchngqtyday/>
- <dlvexchngqtyeve/>
- <dlvreqqtyday/>
- <dlvreqqtyeve/>
- <dlvlendqtyday/>
- <dlvlendqtyeve/>
- <dlvrgstqtyday/>
- <dlvrgstqtyeve/>
- <dlvrergstqtyday/>
- <dlvrergstqtyeve/>
- </rgstqtyiolist>
- <rgstqtyiolist>
- <goodnm>
- <![CDATA[멸균 소공(녹색광목)(공 크기 9*9 2겹)]]>
- </goodnm>
- <dlvexchngqtyday/>
- <dlvexchngqtyeve/>
- <dlvreqqtyday>9</dlvreqqtyday>
- <dlvreqqtyeve/>
- <dlvlendqtyday/>
- <dlvlendqtyeve/>
- <dlvrgstqtyday/>
- <dlvrgstqtyeve/>
- <dlvrergstqtyday/>
- <dlvrergstqtyeve/>
- </rgstqtyiolist>
- <rgstqtyiolist>
- <goodnm>
- <![CDATA[무균 멸균소포]]>
- </goodnm>
- <dlvexchngqtyday/>
- <dlvexchngqtyeve/>
- <dlvreqqtyday>10</dlvreqqtyday>
- <dlvreqqtyeve/>
- <dlvlendqtyday/>
- <dlvlendqtyeve/>
- <dlvrgstqtyday/>
- <dlvrgstqtyeve/>
- <dlvrergstqtyday/>
- <dlvrergstqtyeve/>
- </rgstqtyiolist>
- <rgstqtyiolist>
- <goodnm>
- <![CDATA[일일 안과 Package]]>
- </goodnm>
- <dlvexchngqtyday/>
- <dlvexchngqtyeve/>
- <dlvreqqtyday/>
- <dlvreqqtyeve>8</dlvreqqtyeve>
- <dlvlendqtyday/>
- <dlvlendqtyeve/>
- <dlvrgstqtyday/>
- <dlvrgstqtyeve/>
- <dlvrergstqtyday/>
- <dlvrergstqtyeve/>
- </rgstqtyiolist>
- <rgstqtyiolist>
- <goodnm>
- <![CDATA[성형외과 중공]]>
- </goodnm>
- <dlvexchngqtyday/>
- <dlvexchngqtyeve/>
- <dlvreqqtyday>10</dlvreqqtyday>
- <dlvreqqtyeve/>
- <dlvlendqtyday/>
- <dlvlendqtyeve/>
- <dlvrgstqtyday/>
- <dlvrgstqtyeve/>
- <dlvrergstqtyday/>
- <dlvrergstqtyeve/>
- </rgstqtyiolist>
- <cleanlist>
- <cdnm>소기구</cdnm>
- <cnt>5</cnt>
- </cleanlist>
- <cleanlist>
- <cdnm>기구</cdnm>
- <cnt>3</cnt>
- </cleanlist>
- </nodeinfo>
- <workscinfo>
- <worksclist>
- <split/>
- <day>최영숙.장창식</day>
- <eve/>
- </worksclist>
- </workscinfo>
- </main>
- <temp/>
- <init>
- <srchflag/>
- <srchsumflag/>
- </init>
- <cond>
- <workdd>20120522</workdd>
- <instcd>031</instcd>
- <worktodd>20120822</worktodd>
- <instnm>경북대학교병원</instnm>
- <fromdd>20120501</fromdd>
- <todd>20120531</todd>
- </cond>
- <send>
- <workdd>20120522</workdd>
- <savedata>
- <savedrntdata/>
- <savedrctdata/>
- <enemalist/>
- <etclist/>
- <ccdrcentrlist/>
- <ccdroperlist/>
- </savedata>
- <srchflag>D</srchflag>
- <srchsumflag>D</srchsumflag>
- <cdgrupid>T65</cdgrupid>
- <worktodd>20120822</worktodd>
- <flag>1</flag>
- </send>
- <tmp/>
- <setvalue>
- <cnfmrid>93451</cnfmrid>
- </setvalue>
- <properties>
- <saveloc>true</saveloc>
- <uid>
- <myself>1345602954252</myself>
- <opener>1345602688989</opener>
- <children>
- <SPZUR00100/>
- <latest/>
- </children>
- </uid>
- <domain/>
- <auth>11100000</auth>
- <menu>
- <menuparam/>
- <menugroupcd>MG01850000|MA00000280|중앙공급실(중앙공급실)</menugroupcd>
- <menuitemcd>MI01850079</menuitemcd>
- <menuprestdeptcd>3080000000</menuprestdeptcd>
- </menu>
- <title>CSR 일일 업무일지</title>
- <report>
- <mainreport>
- <params>
- <userid>ENR</userid>
- <logoimgurl>http://his999dev.knu.ac.kr:8088/himed/webapps/com/commonweb/images/error_logo031.gif</logoimgurl>
- <url>RPMSG04001</url>
- </params>
- <props>
- <rex_rptname>RPMSG04001</rex_rptname>
- <rex_datatype>XMLSTR</rex_datatype>
- <rex_submitid/>
- <rex_userservice/>
- <rex_data_xpath/>
- <rex_xpath/>
- <rex_xpath1/>
- </props>
- <options>
- <rex_print>false</rex_print>
- <rex_printdialog/>
- <rex_printpaperbin/>
- <rex_filetype/>
- <rex_filename/>
- <rex_filedialog/>
- <rex_close>false</rex_close>
- <rex_showbutton/>
- <rex_printcount/>
- <rex_zoomrate/>
- <rex_printoption/>
- </options>
- </mainreport>
- </report>
- <parameters>
- <onready>
- <onreadyvalue>true</onreadyvalue>
- </onready>
- <reportPageCount>
- <reportPageCountvalue>6</reportPageCountvalue>
- </reportPageCount>
- <reportprintyn>
- <reportprintynvalue>Y</reportprintynvalue>
- </reportprintyn>
- </parameters>
- <error>
- <type>info</type>
- <code/>
- <msg>
- <![CDATA[정상적으로 처리되었습니다.]]>
- </msg>
- <description/>
- </error>
- </properties>
- <hidden>
- <setvalue>
- <cdid>93451</cdid>
- </setvalue>
- </hidden>
- </root>
|