RPMSG04001.xml 44 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073
  1. <?xml version="1.0" encoding="EUC-KR"?>
  2. <root xmlns="">
  3. <main>
  4. <nodeinfo>
  5. <drntlist>
  6. <workdd>20120522</workdd>
  7. <workseq>1</workseq>
  8. <cnfmrid>93451</cnfmrid>
  9. <notice/>
  10. <spcf>
  11. <![CDATA[
  12. ]]>
  13. </spcf>
  14. <eqmt>
  15. <![CDATA[5/16 절단기 칼날무딘것 업체에 연락됨->2번:점검함(5/18),1번 :절단기교체후수리위해 본사로보냄(5/21)
  16. 5/18 스팀 6호기 c04 (스팀 지연) -> 수리완료 pkg 교체
  17. 5/22 외래배양기 새것으로 교체(구형은 캐비넷보관)]]>
  18. </eqmt>
  19. <tmpr>23.3</tmpr>
  20. <humi>20</humi>
  21. <csrnotice>
  22. <![CDATA[4/30 ER 집계 불출하기 : 봉합사 Surgipro 5/0(1635), 6/0(1697)
  23. 5/16 응급처방프로그램 : 의사직포함 입력안됨(monitoring중)
  24. 5/15 Chest Bottle C Type 업체에 포장변경 요청함
  25. 5/21 Soft Cloth with liner 입고됨. 규격 5*10[GFF004001],10*10[GFF004002]
  26. 5/22 Prismaflex ST60입고됨. 물품코드[E80203006]
  27. 5/22 마취회복실 휴일사용한 세트 올려 받을때 박스에 담아 올리도록 확인할것
  28. ]]>
  29. </csrnotice>
  30. <cdrnotice>
  31. <![CDATA[5/11 Chromic Catgut 공급 중단 예정.
  32. 5/22 CCD 추가합니다.: Surgi Paw 1001-74 위치-> B장
  33. ]]>
  34. </cdrnotice>
  35. <allnotice>
  36. <![CDATA[5/4 "2012년도 전직원 교육" 그랜드호텔 개인이동, 5/7~5/31, 08:20~17:50, 간편복, 운동화
  37. 출근부기재 "전직원 교육"
  38. 5/15 5월 월례회 5/17(목) 예정->변경 5/24(목) ]]>
  39. </allnotice>
  40. <instcd>031</instcd>
  41. <cnfmrnm>최영숙</cnfmrnm>
  42. </drntlist>
  43. <drctlist>
  44. <ioflag/>
  45. <bfstockcnt>11</bfstockcnt>
  46. <workdd>20120522</workdd>
  47. <workseq>1</workseq>
  48. <reqcnt>0</reqcnt>
  49. <usecnt>5</usecnt>
  50. <stockcnt>6</stockcnt>
  51. <instcd>031</instcd>
  52. </drctlist>
  53. <rgstqtylist>
  54. <goodflaghngnm>
  55. <![CDATA[Autoclave]]>
  56. </goodflaghngnm>
  57. <csrreqdeptnm>병동</csrreqdeptnm>
  58. <csrfixasetnm/>
  59. <day>212</day>
  60. <eve>0</eve>
  61. <sumcnt>212</sumcnt>
  62. </rgstqtylist>
  63. <rgstqtylist>
  64. <goodflaghngnm>
  65. <![CDATA[Autoclave]]>
  66. </goodflaghngnm>
  67. <csrreqdeptnm>수술실</csrreqdeptnm>
  68. <csrfixasetnm/>
  69. <day>283</day>
  70. <eve>420</eve>
  71. <sumcnt>703</sumcnt>
  72. </rgstqtylist>
  73. <rgstqtylist>
  74. <goodflaghngnm>
  75. <![CDATA[Autoclave]]>
  76. </goodflaghngnm>
  77. <csrreqdeptnm>외래</csrreqdeptnm>
  78. <csrfixasetnm/>
  79. <day>79</day>
  80. <eve>0</eve>
  81. <sumcnt>79</sumcnt>
  82. </rgstqtylist>
  83. <rgstqtylist>
  84. <goodflaghngnm>
  85. <![CDATA[Autoclave]]>
  86. </goodflaghngnm>
  87. <csrreqdeptnm>응급실</csrreqdeptnm>
  88. <csrfixasetnm/>
  89. <day>24</day>
  90. <eve>0</eve>
  91. <sumcnt>24</sumcnt>
  92. </rgstqtylist>
  93. <rgstqtylist>
  94. <goodflaghngnm>
  95. <![CDATA[Autoclave]]>
  96. </goodflaghngnm>
  97. <csrreqdeptnm>중앙공급실</csrreqdeptnm>
  98. <csrfixasetnm/>
  99. <day>999</day>
  100. <eve>0</eve>
  101. <sumcnt>999</sumcnt>
  102. </rgstqtylist>
  103. <rgstqtylist>
  104. <goodflaghngnm>
  105. <![CDATA[Autoclave]]>
  106. </goodflaghngnm>
  107. <csrreqdeptnm>중환자실</csrreqdeptnm>
  108. <csrfixasetnm/>
  109. <day>72</day>
  110. <eve>0</eve>
  111. <sumcnt>72</sumcnt>
  112. </rgstqtylist>
  113. <rgstqtylist>
  114. <goodflaghngnm>
  115. <![CDATA[합계]]>
  116. </goodflaghngnm>
  117. <csrreqdeptnm/>
  118. <csrfixasetnm/>
  119. <day>1669</day>
  120. <eve>420</eve>
  121. <sumcnt>2089</sumcnt>
  122. </rgstqtylist>
  123. <rgstqtylist>
  124. <goodflaghngnm>
  125. <![CDATA[Dry Heat]]>
  126. </goodflaghngnm>
  127. <csrreqdeptnm>수술실</csrreqdeptnm>
  128. <csrfixasetnm/>
  129. <day>1</day>
  130. <eve>0</eve>
  131. <sumcnt>1</sumcnt>
  132. </rgstqtylist>
  133. <rgstqtylist>
  134. <goodflaghngnm>
  135. <![CDATA[합계]]>
  136. </goodflaghngnm>
  137. <csrreqdeptnm/>
  138. <csrfixasetnm/>
  139. <day>1</day>
  140. <eve>0</eve>
  141. <sumcnt>1</sumcnt>
  142. </rgstqtylist>
  143. <rgstqtylist>
  144. <goodflaghngnm>
  145. <![CDATA[E.O Gas]]>
  146. </goodflaghngnm>
  147. <csrreqdeptnm>병동</csrreqdeptnm>
  148. <csrfixasetnm/>
  149. <day>17</day>
  150. <eve>44</eve>
  151. <sumcnt>61</sumcnt>
  152. </rgstqtylist>
  153. <rgstqtylist>
  154. <goodflaghngnm>
  155. <![CDATA[E.O Gas]]>
  156. </goodflaghngnm>
  157. <csrreqdeptnm>수술실</csrreqdeptnm>
  158. <csrfixasetnm/>
  159. <day>159</day>
  160. <eve>248</eve>
  161. <sumcnt>407</sumcnt>
  162. </rgstqtylist>
  163. <rgstqtylist>
  164. <goodflaghngnm>
  165. <![CDATA[E.O Gas]]>
  166. </goodflaghngnm>
  167. <csrreqdeptnm>외래</csrreqdeptnm>
  168. <csrfixasetnm/>
  169. <day>27</day>
  170. <eve>0</eve>
  171. <sumcnt>27</sumcnt>
  172. </rgstqtylist>
  173. <rgstqtylist>
  174. <goodflaghngnm>
  175. <![CDATA[E.O Gas]]>
  176. </goodflaghngnm>
  177. <csrreqdeptnm>응급실</csrreqdeptnm>
  178. <csrfixasetnm/>
  179. <day>3</day>
  180. <eve>0</eve>
  181. <sumcnt>3</sumcnt>
  182. </rgstqtylist>
  183. <rgstqtylist>
  184. <goodflaghngnm>
  185. <![CDATA[E.O Gas]]>
  186. </goodflaghngnm>
  187. <csrreqdeptnm>중환자실</csrreqdeptnm>
  188. <csrfixasetnm/>
  189. <day>36</day>
  190. <eve>0</eve>
  191. <sumcnt>36</sumcnt>
  192. </rgstqtylist>
  193. <rgstqtylist>
  194. <goodflaghngnm>
  195. <![CDATA[합계]]>
  196. </goodflaghngnm>
  197. <csrreqdeptnm/>
  198. <csrfixasetnm/>
  199. <day>242</day>
  200. <eve>292</eve>
  201. <sumcnt>534</sumcnt>
  202. </rgstqtylist>
  203. <machiuselist>
  204. <divsnm>
  205. <![CDATA[Autoclave]]>
  206. </divsnm>
  207. <csrfixasetnm>
  208. <![CDATA[1호기 HS1000]]>
  209. </csrfixasetnm>
  210. <dutyday>2</dutyday>
  211. <dutyeve>0</dutyeve>
  212. <sumcnt>2</sumcnt>
  213. </machiuselist>
  214. <machiuselist>
  215. <divsnm>
  216. <![CDATA[Autoclave]]>
  217. </divsnm>
  218. <csrfixasetnm>
  219. <![CDATA[2호기833HC]]>
  220. </csrfixasetnm>
  221. <dutyday>3</dutyday>
  222. <dutyeve>0</dutyeve>
  223. <sumcnt>3</sumcnt>
  224. </machiuselist>
  225. <machiuselist>
  226. <divsnm>
  227. <![CDATA[Autoclave]]>
  228. </divsnm>
  229. <csrfixasetnm>
  230. <![CDATA[4호기4233]]>
  231. </csrfixasetnm>
  232. <dutyday>4</dutyday>
  233. <dutyeve>2</dutyeve>
  234. <sumcnt>6</sumcnt>
  235. </machiuselist>
  236. <machiuselist>
  237. <divsnm>
  238. <![CDATA[Autoclave]]>
  239. </divsnm>
  240. <csrfixasetnm>
  241. <![CDATA[5호기4233]]>
  242. </csrfixasetnm>
  243. <dutyday>4</dutyday>
  244. <dutyeve>2</dutyeve>
  245. <sumcnt>6</sumcnt>
  246. </machiuselist>
  247. <machiuselist>
  248. <divsnm>
  249. <![CDATA[Autoclave]]>
  250. </divsnm>
  251. <csrfixasetnm>
  252. <![CDATA[6호기4233]]>
  253. </csrfixasetnm>
  254. <dutyday>4</dutyday>
  255. <dutyeve>2</dutyeve>
  256. <sumcnt>6</sumcnt>
  257. </machiuselist>
  258. <machiuselist>
  259. <divsnm>
  260. <![CDATA[합계]]>
  261. </divsnm>
  262. <csrfixasetnm/>
  263. <dutyday>17</dutyday>
  264. <dutyeve>6</dutyeve>
  265. <sumcnt>23</sumcnt>
  266. </machiuselist>
  267. <machiuselist>
  268. <divsnm>
  269. <![CDATA[Dry Heat]]>
  270. </divsnm>
  271. <csrfixasetnm>
  272. <![CDATA[소독기(건열)]]>
  273. </csrfixasetnm>
  274. <dutyday>1</dutyday>
  275. <dutyeve>0</dutyeve>
  276. <sumcnt>1</sumcnt>
  277. </machiuselist>
  278. <machiuselist>
  279. <divsnm>
  280. <![CDATA[합계]]>
  281. </divsnm>
  282. <csrfixasetnm/>
  283. <dutyday>1</dutyday>
  284. <dutyeve>0</dutyeve>
  285. <sumcnt>1</sumcnt>
  286. </machiuselist>
  287. <machiuselist>
  288. <divsnm>
  289. <![CDATA[E.O Gas]]>
  290. </divsnm>
  291. <csrfixasetnm>
  292. <![CDATA[1호기 8XL]]>
  293. </csrfixasetnm>
  294. <dutyday>1</dutyday>
  295. <dutyeve>1</dutyeve>
  296. <sumcnt>2</sumcnt>
  297. </machiuselist>
  298. <machiuselist>
  299. <divsnm>
  300. <![CDATA[E.O Gas]]>
  301. </divsnm>
  302. <csrfixasetnm>
  303. <![CDATA[2호기 8XL]]>
  304. </csrfixasetnm>
  305. <dutyday>1</dutyday>
  306. <dutyeve>0</dutyeve>
  307. <sumcnt>1</sumcnt>
  308. </machiuselist>
  309. <machiuselist>
  310. <divsnm>
  311. <![CDATA[E.O Gas]]>
  312. </divsnm>
  313. <csrfixasetnm>
  314. <![CDATA[3호기 8XL]]>
  315. </csrfixasetnm>
  316. <dutyday>1</dutyday>
  317. <dutyeve>1</dutyeve>
  318. <sumcnt>2</sumcnt>
  319. </machiuselist>
  320. <machiuselist>
  321. <divsnm>
  322. <![CDATA[E.O Gas]]>
  323. </divsnm>
  324. <csrfixasetnm>
  325. <![CDATA[4호기 8XL]]>
  326. </csrfixasetnm>
  327. <dutyday>0</dutyday>
  328. <dutyeve>1</dutyeve>
  329. <sumcnt>1</sumcnt>
  330. </machiuselist>
  331. <machiuselist>
  332. <divsnm>
  333. <![CDATA[합계]]>
  334. </divsnm>
  335. <csrfixasetnm/>
  336. <dutyday>3</dutyday>
  337. <dutyeve>3</dutyeve>
  338. <sumcnt>6</sumcnt>
  339. </machiuselist>
  340. <enemalist>
  341. <cdnm>Enema</cdnm>
  342. <day>2</day>
  343. <eve>9</eve>
  344. </enemalist>
  345. <enemalist>
  346. <cdnm>Skin Prep</cdnm>
  347. <day>5</day>
  348. <eve>10</eve>
  349. </enemalist>
  350. <ccdrcentrlist>
  351. <ioflag>O</ioflag>
  352. <instcd>031</instcd>
  353. <gubuncd>02</gubuncd>
  354. <workseq>1</workseq>
  355. <cdid>A001</cdid>
  356. <workdd>20120522</workdd>
  357. <cdnm>정규</cdnm>
  358. <day>63</day>
  359. <eve>0</eve>
  360. </ccdrcentrlist>
  361. <ccdrcentrlist>
  362. <ioflag>O</ioflag>
  363. <instcd>031</instcd>
  364. <gubuncd>02</gubuncd>
  365. <workseq>1</workseq>
  366. <cdid>A002</cdid>
  367. <workdd>20120522</workdd>
  368. <cdnm>응급</cdnm>
  369. <day>5</day>
  370. <eve>2</eve>
  371. </ccdrcentrlist>
  372. <ccdroperlist>
  373. <ioflag>O</ioflag>
  374. <instcd>031</instcd>
  375. <gubuncd>03</gubuncd>
  376. <workseq>1</workseq>
  377. <cdid>A001</cdid>
  378. <cdnm>정규</cdnm>
  379. <workdd>20120522</workdd>
  380. <day>18</day>
  381. <eve>0</eve>
  382. </ccdroperlist>
  383. <ccdroperlist>
  384. <ioflag>O</ioflag>
  385. <instcd>031</instcd>
  386. <gubuncd>03</gubuncd>
  387. <workseq>1</workseq>
  388. <cdid>A002</cdid>
  389. <cdnm>응급</cdnm>
  390. <workdd>20120522</workdd>
  391. <day>0</day>
  392. <eve>0</eve>
  393. </ccdroperlist>
  394. <etclist>
  395. <ioflag/>
  396. <cdid/>
  397. <item>
  398. <![CDATA[재입]]>
  399. </item>
  400. <instcd>031</instcd>
  401. <gubuncd/>
  402. <workdd>20120522</workdd>
  403. <workseq>1</workseq>
  404. <day>DAY</day>
  405. <eve>EVE</eve>
  406. <flag>1</flag>
  407. </etclist>
  408. <etclist>
  409. <ioflag>O</ioflag>
  410. <cdid>62</cdid>
  411. <item>
  412. <![CDATA[부직포 (60*60)]]>
  413. </item>
  414. <instcd>031</instcd>
  415. <gubuncd>04</gubuncd>
  416. <workdd>20120522</workdd>
  417. <workseq>1</workseq>
  418. <day>137</day>
  419. <eve>0</eve>
  420. <flag>1</flag>
  421. </etclist>
  422. <etclist>
  423. <ioflag>O</ioflag>
  424. <cdid>64</cdid>
  425. <item>
  426. <![CDATA[부직포 (65*65)]]>
  427. </item>
  428. <instcd>031</instcd>
  429. <gubuncd>04</gubuncd>
  430. <workdd>20120522</workdd>
  431. <workseq>1</workseq>
  432. <day>3</day>
  433. <eve>0</eve>
  434. <flag>1</flag>
  435. </etclist>
  436. <etclist>
  437. <ioflag>O</ioflag>
  438. <cdid>63</cdid>
  439. <item>
  440. <![CDATA[부직포 (75*75)]]>
  441. </item>
  442. <instcd>031</instcd>
  443. <gubuncd>04</gubuncd>
  444. <workdd>20120522</workdd>
  445. <workseq>1</workseq>
  446. <day>5</day>
  447. <eve>0</eve>
  448. <flag>1</flag>
  449. </etclist>
  450. <etclist>
  451. <ioflag>O</ioflag>
  452. <cdid>61</cdid>
  453. <item>
  454. <![CDATA[부직포 (90*90)]]>
  455. </item>
  456. <instcd>031</instcd>
  457. <gubuncd>04</gubuncd>
  458. <workdd>20120522</workdd>
  459. <workseq>1</workseq>
  460. <day>68</day>
  461. <eve>0</eve>
  462. <flag>1</flag>
  463. </etclist>
  464. <etclist>
  465. <ioflag>O</ioflag>
  466. <cdid>65</cdid>
  467. <item>
  468. <![CDATA[Glove (6.5-7.0)]]>
  469. </item>
  470. <instcd>031</instcd>
  471. <gubuncd>04</gubuncd>
  472. <workdd>20120522</workdd>
  473. <workseq>1</workseq>
  474. <day>0</day>
  475. <eve>0</eve>
  476. <flag>1</flag>
  477. </etclist>
  478. <etclist>
  479. <ioflag>O</ioflag>
  480. <cdid>66</cdid>
  481. <item>
  482. <![CDATA[Glove (7.5-8.0)]]>
  483. </item>
  484. <instcd>031</instcd>
  485. <gubuncd>04</gubuncd>
  486. <workdd>20120522</workdd>
  487. <workseq>1</workseq>
  488. <day>0</day>
  489. <eve>0</eve>
  490. <flag>1</flag>
  491. </etclist>
  492. <etclist>
  493. <ioflag>O</ioflag>
  494. <cdid>67</cdid>
  495. <item>
  496. <![CDATA[S-T]]>
  497. </item>
  498. <instcd>031</instcd>
  499. <gubuncd>04</gubuncd>
  500. <workdd>20120522</workdd>
  501. <workseq>1</workseq>
  502. <day>0</day>
  503. <eve>0</eve>
  504. <flag>1</flag>
  505. </etclist>
  506. <etclist>
  507. <ioflag>O</ioflag>
  508. <cdid>68</cdid>
  509. <item>
  510. <![CDATA[M-T]]>
  511. </item>
  512. <instcd>031</instcd>
  513. <gubuncd>04</gubuncd>
  514. <workdd>20120522</workdd>
  515. <workseq>1</workseq>
  516. <day>0</day>
  517. <eve>0</eve>
  518. <flag>1</flag>
  519. </etclist>
  520. <etclist>
  521. <ioflag>O</ioflag>
  522. <cdid>69</cdid>
  523. <item>
  524. <![CDATA[L-T]]>
  525. </item>
  526. <instcd>031</instcd>
  527. <gubuncd>04</gubuncd>
  528. <workdd>20120522</workdd>
  529. <workseq>1</workseq>
  530. <day>0</day>
  531. <eve>0</eve>
  532. <flag>1</flag>
  533. </etclist>
  534. <etclist>
  535. <ioflag>O</ioflag>
  536. <cdid>70</cdid>
  537. <item>
  538. <![CDATA[Gauze 4*8]]>
  539. </item>
  540. <instcd>031</instcd>
  541. <gubuncd>04</gubuncd>
  542. <workdd>20120522</workdd>
  543. <workseq>1</workseq>
  544. <day>0</day>
  545. <eve>0</eve>
  546. <flag>1</flag>
  547. </etclist>
  548. <etclist>
  549. <ioflag>O</ioflag>
  550. <cdid>71</cdid>
  551. <item>
  552. <![CDATA[면붕대]]>
  553. </item>
  554. <instcd>031</instcd>
  555. <gubuncd>04</gubuncd>
  556. <workdd>20120522</workdd>
  557. <workseq>1</workseq>
  558. <day>0</day>
  559. <eve>0</eve>
  560. <flag>1</flag>
  561. </etclist>
  562. <etclist>
  563. <ioflag>O</ioflag>
  564. <cdid>72</cdid>
  565. <item>
  566. <![CDATA[E-B (2")]]>
  567. </item>
  568. <instcd>031</instcd>
  569. <gubuncd>04</gubuncd>
  570. <workdd>20120522</workdd>
  571. <workseq>1</workseq>
  572. <day>0</day>
  573. <eve>0</eve>
  574. <flag>1</flag>
  575. </etclist>
  576. <etclist>
  577. <ioflag>O</ioflag>
  578. <cdid>73</cdid>
  579. <item>
  580. <![CDATA[E-B (3")]]>
  581. </item>
  582. <instcd>031</instcd>
  583. <gubuncd>04</gubuncd>
  584. <workdd>20120522</workdd>
  585. <workseq>1</workseq>
  586. <day>0</day>
  587. <eve>0</eve>
  588. <flag>1</flag>
  589. </etclist>
  590. <etclist>
  591. <ioflag>O</ioflag>
  592. <cdid>74</cdid>
  593. <item>
  594. <![CDATA[E-B (4")]]>
  595. </item>
  596. <instcd>031</instcd>
  597. <gubuncd>04</gubuncd>
  598. <workdd>20120522</workdd>
  599. <workseq>1</workseq>
  600. <day>0</day>
  601. <eve>0</eve>
  602. <flag>1</flag>
  603. </etclist>
  604. <etclist>
  605. <ioflag>O</ioflag>
  606. <cdid>75</cdid>
  607. <item>
  608. <![CDATA[E-B (6:)]]>
  609. </item>
  610. <instcd>031</instcd>
  611. <gubuncd>04</gubuncd>
  612. <workdd>20120522</workdd>
  613. <workseq>1</workseq>
  614. <day>0</day>
  615. <eve>0</eve>
  616. <flag>1</flag>
  617. </etclist>
  618. <etclist>
  619. <ioflag>O</ioflag>
  620. <cdid>76</cdid>
  621. <item>
  622. <![CDATA[1Utility Drape]]>
  623. </item>
  624. <instcd>031</instcd>
  625. <gubuncd>04</gubuncd>
  626. <workdd>20120522</workdd>
  627. <workseq>1</workseq>
  628. <day>0</day>
  629. <eve>0</eve>
  630. <flag>1</flag>
  631. </etclist>
  632. <etclist>
  633. <ioflag>O</ioflag>
  634. <cdid>77</cdid>
  635. <item>
  636. <![CDATA[2Utility Drape]]>
  637. </item>
  638. <instcd>031</instcd>
  639. <gubuncd>04</gubuncd>
  640. <workdd>20120522</workdd>
  641. <workseq>1</workseq>
  642. <day>32</day>
  643. <eve>0</eve>
  644. <flag>1</flag>
  645. </etclist>
  646. <etclist>
  647. <ioflag>O</ioflag>
  648. <cdid>78</cdid>
  649. <item>
  650. <![CDATA[Mayo Stand Cover]]>
  651. </item>
  652. <instcd>031</instcd>
  653. <gubuncd>04</gubuncd>
  654. <workdd>20120522</workdd>
  655. <workseq>1</workseq>
  656. <day>14</day>
  657. <eve>0</eve>
  658. <flag>1</flag>
  659. </etclist>
  660. <etclist>
  661. <ioflag>O</ioflag>
  662. <cdid>79</cdid>
  663. <item>
  664. <![CDATA[Surgical Gown (9002)]]>
  665. </item>
  666. <instcd>031</instcd>
  667. <gubuncd>04</gubuncd>
  668. <workdd>20120522</workdd>
  669. <workseq>1</workseq>
  670. <day>32</day>
  671. <eve>0</eve>
  672. <flag>1</flag>
  673. </etclist>
  674. <etclist>
  675. <ioflag>O</ioflag>
  676. <cdid>80</cdid>
  677. <item>
  678. <![CDATA[Large Utility Drape]]>
  679. </item>
  680. <instcd>031</instcd>
  681. <gubuncd>04</gubuncd>
  682. <workdd>20120522</workdd>
  683. <workseq>1</workseq>
  684. <day>0</day>
  685. <eve>0</eve>
  686. <flag>1</flag>
  687. </etclist>
  688. <etclist>
  689. <ioflag>O</ioflag>
  690. <cdid>81</cdid>
  691. <item>
  692. <![CDATA[Medium Utility Drape]]>
  693. </item>
  694. <instcd>031</instcd>
  695. <gubuncd>04</gubuncd>
  696. <workdd>20120522</workdd>
  697. <workseq>1</workseq>
  698. <day>0</day>
  699. <eve>0</eve>
  700. <flag>1</flag>
  701. </etclist>
  702. <etclist>
  703. <ioflag>O</ioflag>
  704. <cdid>82</cdid>
  705. <item>
  706. <![CDATA[Back Table Cover]]>
  707. </item>
  708. <instcd>031</instcd>
  709. <gubuncd>04</gubuncd>
  710. <workdd>20120522</workdd>
  711. <workseq>1</workseq>
  712. <day>0</day>
  713. <eve>0</eve>
  714. <flag>1</flag>
  715. </etclist>
  716. <etclist>
  717. <ioflag>O</ioflag>
  718. <cdid>83</cdid>
  719. <item>
  720. <![CDATA[Impervius Drape]]>
  721. </item>
  722. <instcd>031</instcd>
  723. <gubuncd>04</gubuncd>
  724. <workdd>20120522</workdd>
  725. <workseq>1</workseq>
  726. <day>0</day>
  727. <eve>0</eve>
  728. <flag>1</flag>
  729. </etclist>
  730. <etclist>
  731. <ioflag>O</ioflag>
  732. <cdid>88</cdid>
  733. <item>
  734. <![CDATA[bemsheets(1호)]]>
  735. </item>
  736. <instcd>031</instcd>
  737. <gubuncd>04</gubuncd>
  738. <workdd>20120522</workdd>
  739. <workseq>1</workseq>
  740. <day>0</day>
  741. <eve>0</eve>
  742. <flag>1</flag>
  743. </etclist>
  744. <etclist>
  745. <ioflag>O</ioflag>
  746. <cdid>89</cdid>
  747. <item>
  748. <![CDATA[Skin Stapler]]>
  749. </item>
  750. <instcd>031</instcd>
  751. <gubuncd>04</gubuncd>
  752. <workdd>20120522</workdd>
  753. <workseq>1</workseq>
  754. <day>0</day>
  755. <eve>0</eve>
  756. <flag>1</flag>
  757. </etclist>
  758. <etclist>
  759. <ioflag/>
  760. <cdid/>
  761. <item>
  762. <![CDATA[재멸균]]>
  763. </item>
  764. <instcd>031</instcd>
  765. <gubuncd/>
  766. <workdd>20120522</workdd>
  767. <workseq>1</workseq>
  768. <day>DAY</day>
  769. <eve>EVE</eve>
  770. <flag>2</flag>
  771. </etclist>
  772. <etclist>
  773. <ioflag>O</ioflag>
  774. <cdid>84</cdid>
  775. <item>
  776. <![CDATA[감마의뢰-병동]]>
  777. </item>
  778. <instcd>031</instcd>
  779. <gubuncd>04</gubuncd>
  780. <workdd>20120522</workdd>
  781. <workseq>1</workseq>
  782. <day>0</day>
  783. <eve>0</eve>
  784. <flag>2</flag>
  785. </etclist>
  786. <etclist>
  787. <ioflag>O</ioflag>
  788. <cdid>85</cdid>
  789. <item>
  790. <![CDATA[감마의뢰-외래]]>
  791. </item>
  792. <instcd>031</instcd>
  793. <gubuncd>04</gubuncd>
  794. <workdd>20120522</workdd>
  795. <workseq>1</workseq>
  796. <day>0</day>
  797. <eve>0</eve>
  798. <flag>2</flag>
  799. </etclist>
  800. <etclist>
  801. <ioflag>O</ioflag>
  802. <cdid>86</cdid>
  803. <item>
  804. <![CDATA[감마의뢰-OR]]>
  805. </item>
  806. <instcd>031</instcd>
  807. <gubuncd>04</gubuncd>
  808. <workdd>20120522</workdd>
  809. <workseq>1</workseq>
  810. <day>0</day>
  811. <eve>0</eve>
  812. <flag>2</flag>
  813. </etclist>
  814. <etclist>
  815. <ioflag>O</ioflag>
  816. <cdid>87</cdid>
  817. <item>
  818. <![CDATA[감마의뢰-CCDR]]>
  819. </item>
  820. <instcd>031</instcd>
  821. <gubuncd>04</gubuncd>
  822. <workdd>20120522</workdd>
  823. <workseq>1</workseq>
  824. <day>0</day>
  825. <eve>0</eve>
  826. <flag>2</flag>
  827. </etclist>
  828. <etclist>
  829. <ioflag/>
  830. <cdid/>
  831. <item>
  832. <![CDATA[세척]]>
  833. </item>
  834. <instcd>031</instcd>
  835. <gubuncd/>
  836. <workdd>20120522</workdd>
  837. <workseq>1</workseq>
  838. <day>DAY</day>
  839. <eve>EVE</eve>
  840. <flag>4</flag>
  841. </etclist>
  842. <etclist>
  843. <ioflag>O</ioflag>
  844. <cdid>55</cdid>
  845. <item>
  846. <![CDATA[D-Set (대)]]>
  847. </item>
  848. <instcd>031</instcd>
  849. <gubuncd>04</gubuncd>
  850. <workdd>20120522</workdd>
  851. <workseq>1</workseq>
  852. <day>82</day>
  853. <eve>0</eve>
  854. <flag>4</flag>
  855. </etclist>
  856. <etclist>
  857. <ioflag>O</ioflag>
  858. <cdid>56</cdid>
  859. <item>
  860. <![CDATA[D-Set (소)]]>
  861. </item>
  862. <instcd>031</instcd>
  863. <gubuncd>04</gubuncd>
  864. <workdd>20120522</workdd>
  865. <workseq>1</workseq>
  866. <day>44</day>
  867. <eve>0</eve>
  868. <flag>4</flag>
  869. </etclist>
  870. <etclist>
  871. <ioflag>O</ioflag>
  872. <cdid>57</cdid>
  873. <item>
  874. <![CDATA[각종 Set]]>
  875. </item>
  876. <instcd>031</instcd>
  877. <gubuncd>04</gubuncd>
  878. <workdd>20120522</workdd>
  879. <workseq>1</workseq>
  880. <day>165</day>
  881. <eve>0</eve>
  882. <flag>4</flag>
  883. </etclist>
  884. <etclist>
  885. <ioflag>O</ioflag>
  886. <cdid>58</cdid>
  887. <item>
  888. <![CDATA[무균 D-Set]]>
  889. </item>
  890. <instcd>031</instcd>
  891. <gubuncd>04</gubuncd>
  892. <workdd>20120522</workdd>
  893. <workseq>1</workseq>
  894. <day>30</day>
  895. <eve>0</eve>
  896. <flag>4</flag>
  897. </etclist>
  898. <etclist>
  899. <ioflag>O</ioflag>
  900. <cdid>59</cdid>
  901. <item>
  902. <![CDATA[무균 소기구류]]>
  903. </item>
  904. <instcd>031</instcd>
  905. <gubuncd>04</gubuncd>
  906. <workdd>20120522</workdd>
  907. <workseq>1</workseq>
  908. <day>6</day>
  909. <eve>0</eve>
  910. <flag>4</flag>
  911. </etclist>
  912. <etclist>
  913. <ioflag>O</ioflag>
  914. <cdid>60</cdid>
  915. <item>
  916. <![CDATA[의료 소기구 Single]]>
  917. </item>
  918. <instcd>031</instcd>
  919. <gubuncd>04</gubuncd>
  920. <workdd>20120522</workdd>
  921. <workseq>1</workseq>
  922. <day>31</day>
  923. <eve>0</eve>
  924. <flag>4</flag>
  925. </etclist>
  926. <linenlist>
  927. <csrgoodnm>
  928. <![CDATA[Bandage 면붕대]]>
  929. </csrgoodnm>
  930. <certrgstqtyday>24</certrgstqtyday>
  931. <certrgstqtyeve>0</certrgstqtyeve>
  932. </linenlist>
  933. <linenlist>
  934. <csrgoodnm>
  935. <![CDATA[Bandage 탄력붕대]]>
  936. </csrgoodnm>
  937. <certrgstqtyday>64</certrgstqtyday>
  938. <certrgstqtyeve>0</certrgstqtyeve>
  939. </linenlist>
  940. <linenlist>
  941. <csrgoodnm>
  942. <![CDATA[멸균 중포(녹색광목)]]>
  943. </csrgoodnm>
  944. <certrgstqtyday>50</certrgstqtyday>
  945. <certrgstqtyeve>0</certrgstqtyeve>
  946. </linenlist>
  947. <linenlist>
  948. <csrgoodnm>
  949. <![CDATA[무균 멸균소포]]>
  950. </csrgoodnm>
  951. <certrgstqtyday>10</certrgstqtyday>
  952. <certrgstqtyeve>0</certrgstqtyeve>
  953. </linenlist>
  954. <linenlist>
  955. <csrgoodnm>
  956. <![CDATA[일일 안과 Package]]>
  957. </csrgoodnm>
  958. <certrgstqtyday>5</certrgstqtyday>
  959. <certrgstqtyeve>0</certrgstqtyeve>
  960. </linenlist>
  961. <linenlist>
  962. <csrgoodnm>
  963. <![CDATA[무균개인Set Package]]>
  964. </csrgoodnm>
  965. <certrgstqtyday>1</certrgstqtyday>
  966. <certrgstqtyeve>0</certrgstqtyeve>
  967. </linenlist>
  968. <linenlist>
  969. <csrgoodnm>
  970. <![CDATA[Gauze Burn]]>
  971. </csrgoodnm>
  972. <certrgstqtyday>50</certrgstqtyday>
  973. <certrgstqtyeve>0</certrgstqtyeve>
  974. </linenlist>
  975. <linenlist>
  976. <csrgoodnm>
  977. <![CDATA[멸균 Sheet]]>
  978. </csrgoodnm>
  979. <certrgstqtyday>10</certrgstqtyday>
  980. <certrgstqtyeve>0</certrgstqtyeve>
  981. </linenlist>
  982. <linenlist>
  983. <csrgoodnm>
  984. <![CDATA[멸균 소포(녹색광목)]]>
  985. </csrgoodnm>
  986. <certrgstqtyday>270</certrgstqtyday>
  987. <certrgstqtyeve>0</certrgstqtyeve>
  988. </linenlist>
  989. <linenlist>
  990. <csrgoodnm>
  991. <![CDATA[멸균 대포(녹색광목)]]>
  992. </csrgoodnm>
  993. <certrgstqtyday>130</certrgstqtyday>
  994. <certrgstqtyeve>0</certrgstqtyeve>
  995. </linenlist>
  996. <linenlist>
  997. <csrgoodnm>
  998. <![CDATA[멸균 소공(녹색광목)(공 크기 9*9 2겹)]]>
  999. </csrgoodnm>
  1000. <certrgstqtyday>20</certrgstqtyday>
  1001. <certrgstqtyeve>0</certrgstqtyeve>
  1002. </linenlist>
  1003. <linenlist>
  1004. <csrgoodnm>
  1005. <![CDATA[멸균 중포(녹색광목)]]>
  1006. </csrgoodnm>
  1007. <certrgstqtyday>25</certrgstqtyday>
  1008. <certrgstqtyeve>0</certrgstqtyeve>
  1009. </linenlist>
  1010. <rgstqtyiolist>
  1011. <goodnm>
  1012. <![CDATA[CAPD Set]]>
  1013. </goodnm>
  1014. <dlvexchngqtyday/>
  1015. <dlvexchngqtyeve/>
  1016. <dlvreqqtyday/>
  1017. <dlvreqqtyeve/>
  1018. <dlvlendqtyday/>
  1019. <dlvlendqtyeve/>
  1020. <dlvrgstqtyday>2</dlvrgstqtyday>
  1021. <dlvrgstqtyeve/>
  1022. <dlvrergstqtyday/>
  1023. <dlvrergstqtyeve/>
  1024. </rgstqtyiolist>
  1025. <rgstqtyiolist>
  1026. <goodnm>
  1027. <![CDATA[Cardiac set]]>
  1028. </goodnm>
  1029. <dlvexchngqtyday/>
  1030. <dlvexchngqtyeve/>
  1031. <dlvreqqtyday/>
  1032. <dlvreqqtyeve/>
  1033. <dlvlendqtyday/>
  1034. <dlvlendqtyeve/>
  1035. <dlvrgstqtyday>5</dlvrgstqtyday>
  1036. <dlvrgstqtyeve/>
  1037. <dlvrergstqtyday/>
  1038. <dlvrergstqtyeve/>
  1039. </rgstqtyiolist>
  1040. <rgstqtyiolist>
  1041. <goodnm>
  1042. <![CDATA[Tapping Set]]>
  1043. </goodnm>
  1044. <dlvexchngqtyday>2</dlvexchngqtyday>
  1045. <dlvexchngqtyeve>1</dlvexchngqtyeve>
  1046. <dlvreqqtyday/>
  1047. <dlvreqqtyeve/>
  1048. <dlvlendqtyday/>
  1049. <dlvlendqtyeve/>
  1050. <dlvrgstqtyday/>
  1051. <dlvrgstqtyeve/>
  1052. <dlvrergstqtyday/>
  1053. <dlvrergstqtyeve/>
  1054. </rgstqtyiolist>
  1055. <rgstqtyiolist>
  1056. <goodnm>
  1057. <![CDATA[Thoracentesis set]]>
  1058. </goodnm>
  1059. <dlvexchngqtyday/>
  1060. <dlvexchngqtyeve>1</dlvexchngqtyeve>
  1061. <dlvreqqtyday/>
  1062. <dlvreqqtyeve/>
  1063. <dlvlendqtyday/>
  1064. <dlvlendqtyeve/>
  1065. <dlvrgstqtyday/>
  1066. <dlvrgstqtyeve/>
  1067. <dlvrergstqtyday/>
  1068. <dlvrergstqtyeve/>
  1069. </rgstqtyiolist>
  1070. <rgstqtyiolist>
  1071. <goodnm>
  1072. <![CDATA[Baby Set]]>
  1073. </goodnm>
  1074. <dlvexchngqtyday/>
  1075. <dlvexchngqtyeve/>
  1076. <dlvreqqtyday/>
  1077. <dlvreqqtyeve/>
  1078. <dlvlendqtyday/>
  1079. <dlvlendqtyeve/>
  1080. <dlvrgstqtyday>2</dlvrgstqtyday>
  1081. <dlvrgstqtyeve/>
  1082. <dlvrergstqtyday/>
  1083. <dlvrergstqtyeve/>
  1084. </rgstqtyiolist>
  1085. <rgstqtyiolist>
  1086. <goodnm>
  1087. <![CDATA[C-T guided biopsy set]]>
  1088. </goodnm>
  1089. <dlvexchngqtyday/>
  1090. <dlvexchngqtyeve/>
  1091. <dlvreqqtyday/>
  1092. <dlvreqqtyeve/>
  1093. <dlvlendqtyday>3</dlvlendqtyday>
  1094. <dlvlendqtyeve/>
  1095. <dlvrgstqtyday/>
  1096. <dlvrgstqtyeve/>
  1097. <dlvrergstqtyday/>
  1098. <dlvrergstqtyeve/>
  1099. </rgstqtyiolist>
  1100. <rgstqtyiolist>
  1101. <goodnm>
  1102. <![CDATA[Cystoscopic set]]>
  1103. </goodnm>
  1104. <dlvexchngqtyday/>
  1105. <dlvexchngqtyeve/>
  1106. <dlvreqqtyday/>
  1107. <dlvreqqtyeve/>
  1108. <dlvlendqtyday/>
  1109. <dlvlendqtyeve/>
  1110. <dlvrgstqtyday>1</dlvrgstqtyday>
  1111. <dlvrgstqtyeve/>
  1112. <dlvrergstqtyday/>
  1113. <dlvrergstqtyeve/>
  1114. </rgstqtyiolist>
  1115. <rgstqtyiolist>
  1116. <goodnm>
  1117. <![CDATA[Dressing Set(대)]]>
  1118. </goodnm>
  1119. <dlvexchngqtyday>77</dlvexchngqtyday>
  1120. <dlvexchngqtyeve>1</dlvexchngqtyeve>
  1121. <dlvreqqtyday/>
  1122. <dlvreqqtyeve/>
  1123. <dlvlendqtyday/>
  1124. <dlvlendqtyeve>2</dlvlendqtyeve>
  1125. <dlvrgstqtyday/>
  1126. <dlvrgstqtyeve/>
  1127. <dlvrergstqtyday>2</dlvrergstqtyday>
  1128. <dlvrergstqtyeve/>
  1129. </rgstqtyiolist>
  1130. <rgstqtyiolist>
  1131. <goodnm>
  1132. <![CDATA[Foley Set]]>
  1133. </goodnm>
  1134. <dlvexchngqtyday>24</dlvexchngqtyday>
  1135. <dlvexchngqtyeve>6</dlvexchngqtyeve>
  1136. <dlvreqqtyday/>
  1137. <dlvreqqtyeve/>
  1138. <dlvlendqtyday/>
  1139. <dlvlendqtyeve>2</dlvlendqtyeve>
  1140. <dlvrgstqtyday/>
  1141. <dlvrgstqtyeve/>
  1142. <dlvrergstqtyday>1</dlvrergstqtyday>
  1143. <dlvrergstqtyeve/>
  1144. </rgstqtyiolist>
  1145. <rgstqtyiolist>
  1146. <goodnm>
  1147. <![CDATA[P-S incision Set]]>
  1148. </goodnm>
  1149. <dlvexchngqtyday>2</dlvexchngqtyday>
  1150. <dlvexchngqtyeve>3</dlvexchngqtyeve>
  1151. <dlvreqqtyday/>
  1152. <dlvreqqtyeve/>
  1153. <dlvlendqtyday/>
  1154. <dlvlendqtyeve/>
  1155. <dlvrgstqtyday/>
  1156. <dlvrgstqtyeve/>
  1157. <dlvrergstqtyday/>
  1158. <dlvrergstqtyeve/>
  1159. </rgstqtyiolist>
  1160. <rgstqtyiolist>
  1161. <goodnm>
  1162. <![CDATA[Puncture Set]]>
  1163. </goodnm>
  1164. <dlvexchngqtyday>6</dlvexchngqtyday>
  1165. <dlvexchngqtyeve/>
  1166. <dlvreqqtyday/>
  1167. <dlvreqqtyeve/>
  1168. <dlvlendqtyday>1</dlvlendqtyday>
  1169. <dlvlendqtyeve/>
  1170. <dlvrgstqtyday/>
  1171. <dlvrgstqtyeve/>
  1172. <dlvrergstqtyday/>
  1173. <dlvrergstqtyeve/>
  1174. </rgstqtyiolist>
  1175. <rgstqtyiolist>
  1176. <goodnm>
  1177. <![CDATA[Incision Set]]>
  1178. </goodnm>
  1179. <dlvexchngqtyday>2</dlvexchngqtyday>
  1180. <dlvexchngqtyeve>1</dlvexchngqtyeve>
  1181. <dlvreqqtyday/>
  1182. <dlvreqqtyeve/>
  1183. <dlvlendqtyday>1</dlvlendqtyday>
  1184. <dlvlendqtyeve>1</dlvlendqtyeve>
  1185. <dlvrgstqtyday/>
  1186. <dlvrgstqtyeve/>
  1187. <dlvrergstqtyday/>
  1188. <dlvrergstqtyeve/>
  1189. </rgstqtyiolist>
  1190. <rgstqtyiolist>
  1191. <goodnm>
  1192. <![CDATA[Arthrocentesis Set]]>
  1193. </goodnm>
  1194. <dlvexchngqtyday/>
  1195. <dlvexchngqtyeve/>
  1196. <dlvreqqtyday/>
  1197. <dlvreqqtyeve/>
  1198. <dlvlendqtyday/>
  1199. <dlvlendqtyeve/>
  1200. <dlvrgstqtyday>10</dlvrgstqtyday>
  1201. <dlvrgstqtyeve/>
  1202. <dlvrergstqtyday/>
  1203. <dlvrergstqtyeve/>
  1204. </rgstqtyiolist>
  1205. <rgstqtyiolist>
  1206. <goodnm>
  1207. <![CDATA[Drill Bits]]>
  1208. </goodnm>
  1209. <dlvexchngqtyday/>
  1210. <dlvexchngqtyeve>1</dlvexchngqtyeve>
  1211. <dlvreqqtyday/>
  1212. <dlvreqqtyeve/>
  1213. <dlvlendqtyday/>
  1214. <dlvlendqtyeve/>
  1215. <dlvrgstqtyday/>
  1216. <dlvrgstqtyeve/>
  1217. <dlvrergstqtyday/>
  1218. <dlvrergstqtyeve/>
  1219. </rgstqtyiolist>
  1220. <rgstqtyiolist>
  1221. <goodnm>
  1222. <![CDATA[Hand drill]]>
  1223. </goodnm>
  1224. <dlvexchngqtyday/>
  1225. <dlvexchngqtyeve>1</dlvexchngqtyeve>
  1226. <dlvreqqtyday/>
  1227. <dlvreqqtyeve/>
  1228. <dlvlendqtyday/>
  1229. <dlvlendqtyeve/>
  1230. <dlvrgstqtyday/>
  1231. <dlvrgstqtyeve/>
  1232. <dlvrergstqtyday/>
  1233. <dlvrergstqtyeve/>
  1234. </rgstqtyiolist>
  1235. <rgstqtyiolist>
  1236. <goodnm>
  1237. <![CDATA[Hemostats Mosquito Forcep(공용)]]>
  1238. </goodnm>
  1239. <dlvexchngqtyday>4</dlvexchngqtyday>
  1240. <dlvexchngqtyeve/>
  1241. <dlvreqqtyday/>
  1242. <dlvreqqtyeve/>
  1243. <dlvlendqtyday/>
  1244. <dlvlendqtyeve/>
  1245. <dlvrgstqtyday/>
  1246. <dlvrgstqtyeve/>
  1247. <dlvrergstqtyday/>
  1248. <dlvrergstqtyeve/>
  1249. </rgstqtyiolist>
  1250. <rgstqtyiolist>
  1251. <goodnm>
  1252. <![CDATA[Hemostats Kelly(중)]]>
  1253. </goodnm>
  1254. <dlvexchngqtyday>14</dlvexchngqtyday>
  1255. <dlvexchngqtyeve/>
  1256. <dlvreqqtyday/>
  1257. <dlvreqqtyeve/>
  1258. <dlvlendqtyday/>
  1259. <dlvlendqtyeve/>
  1260. <dlvrgstqtyday/>
  1261. <dlvrgstqtyeve/>
  1262. <dlvrergstqtyday/>
  1263. <dlvrergstqtyeve/>
  1264. </rgstqtyiolist>
  1265. <rgstqtyiolist>
  1266. <goodnm>
  1267. <![CDATA[Mosquito]]>
  1268. </goodnm>
  1269. <dlvexchngqtyday/>
  1270. <dlvexchngqtyeve/>
  1271. <dlvreqqtyday/>
  1272. <dlvreqqtyeve/>
  1273. <dlvlendqtyday>2</dlvlendqtyday>
  1274. <dlvlendqtyeve/>
  1275. <dlvrgstqtyday/>
  1276. <dlvrgstqtyeve/>
  1277. <dlvrergstqtyday/>
  1278. <dlvrergstqtyeve/>
  1279. </rgstqtyiolist>
  1280. <rgstqtyiolist>
  1281. <goodnm>
  1282. <![CDATA[Mosquito(Curved)]]>
  1283. </goodnm>
  1284. <dlvexchngqtyday/>
  1285. <dlvexchngqtyeve/>
  1286. <dlvreqqtyday/>
  1287. <dlvreqqtyeve/>
  1288. <dlvlendqtyday>4</dlvlendqtyday>
  1289. <dlvlendqtyeve/>
  1290. <dlvrgstqtyday/>
  1291. <dlvrgstqtyeve/>
  1292. <dlvrergstqtyday/>
  1293. <dlvrergstqtyeve/>
  1294. </rgstqtyiolist>
  1295. <rgstqtyiolist>
  1296. <goodnm>
  1297. <![CDATA[Scissors]]>
  1298. </goodnm>
  1299. <dlvexchngqtyday>6</dlvexchngqtyday>
  1300. <dlvexchngqtyeve/>
  1301. <dlvreqqtyday/>
  1302. <dlvreqqtyeve/>
  1303. <dlvlendqtyday>1</dlvlendqtyday>
  1304. <dlvlendqtyeve/>
  1305. <dlvrgstqtyday/>
  1306. <dlvrgstqtyeve/>
  1307. <dlvrergstqtyday/>
  1308. <dlvrergstqtyeve/>
  1309. </rgstqtyiolist>
  1310. <rgstqtyiolist>
  1311. <goodnm>
  1312. <![CDATA[Scissors]]>
  1313. </goodnm>
  1314. <dlvexchngqtyday/>
  1315. <dlvexchngqtyeve/>
  1316. <dlvreqqtyday/>
  1317. <dlvreqqtyeve/>
  1318. <dlvlendqtyday/>
  1319. <dlvlendqtyeve>1</dlvlendqtyeve>
  1320. <dlvrgstqtyday/>
  1321. <dlvrgstqtyeve/>
  1322. <dlvrergstqtyday/>
  1323. <dlvrergstqtyeve/>
  1324. </rgstqtyiolist>
  1325. <rgstqtyiolist>
  1326. <goodnm>
  1327. <![CDATA[202병동전용세트]]>
  1328. </goodnm>
  1329. <dlvexchngqtyday>6</dlvexchngqtyday>
  1330. <dlvexchngqtyeve>2</dlvexchngqtyeve>
  1331. <dlvreqqtyday/>
  1332. <dlvreqqtyeve/>
  1333. <dlvlendqtyday/>
  1334. <dlvlendqtyeve/>
  1335. <dlvrgstqtyday/>
  1336. <dlvrgstqtyeve/>
  1337. <dlvrergstqtyday/>
  1338. <dlvrergstqtyeve/>
  1339. </rgstqtyiolist>
  1340. <rgstqtyiolist>
  1341. <goodnm>
  1342. <![CDATA[Dressing set (소)]]>
  1343. </goodnm>
  1344. <dlvexchngqtyday>29</dlvexchngqtyday>
  1345. <dlvexchngqtyeve/>
  1346. <dlvreqqtyday/>
  1347. <dlvreqqtyeve/>
  1348. <dlvlendqtyday/>
  1349. <dlvlendqtyeve/>
  1350. <dlvrgstqtyday/>
  1351. <dlvrgstqtyeve/>
  1352. <dlvrergstqtyday>10</dlvrergstqtyday>
  1353. <dlvrergstqtyeve/>
  1354. </rgstqtyiolist>
  1355. <rgstqtyiolist>
  1356. <goodnm>
  1357. <![CDATA[Hemodialysis set(Reusable)]]>
  1358. </goodnm>
  1359. <dlvexchngqtyday/>
  1360. <dlvexchngqtyeve/>
  1361. <dlvreqqtyday/>
  1362. <dlvreqqtyeve/>
  1363. <dlvlendqtyday/>
  1364. <dlvlendqtyeve/>
  1365. <dlvrgstqtyday>15</dlvrgstqtyday>
  1366. <dlvrgstqtyeve/>
  1367. <dlvrergstqtyday/>
  1368. <dlvrergstqtyeve/>
  1369. </rgstqtyiolist>
  1370. <rgstqtyiolist>
  1371. <goodnm>
  1372. <![CDATA[Epidural Set]]>
  1373. </goodnm>
  1374. <dlvexchngqtyday>6</dlvexchngqtyday>
  1375. <dlvexchngqtyeve/>
  1376. <dlvreqqtyday/>
  1377. <dlvreqqtyeve/>
  1378. <dlvlendqtyday>13</dlvlendqtyday>
  1379. <dlvlendqtyeve/>
  1380. <dlvrgstqtyday/>
  1381. <dlvrgstqtyeve/>
  1382. <dlvrergstqtyday/>
  1383. <dlvrergstqtyeve/>
  1384. </rgstqtyiolist>
  1385. <rgstqtyiolist>
  1386. <goodnm>
  1387. <![CDATA[G-Y Set]]>
  1388. </goodnm>
  1389. <dlvexchngqtyday/>
  1390. <dlvexchngqtyeve/>
  1391. <dlvreqqtyday/>
  1392. <dlvreqqtyeve/>
  1393. <dlvlendqtyday/>
  1394. <dlvlendqtyeve/>
  1395. <dlvrgstqtyday/>
  1396. <dlvrgstqtyeve>1</dlvrgstqtyeve>
  1397. <dlvrergstqtyday/>
  1398. <dlvrergstqtyeve/>
  1399. </rgstqtyiolist>
  1400. <rgstqtyiolist>
  1401. <goodnm>
  1402. <![CDATA[Vaseline Gauze]]>
  1403. </goodnm>
  1404. <dlvexchngqtyday/>
  1405. <dlvexchngqtyeve/>
  1406. <dlvreqqtyday/>
  1407. <dlvreqqtyeve/>
  1408. <dlvlendqtyday>3</dlvlendqtyday>
  1409. <dlvlendqtyeve/>
  1410. <dlvrgstqtyday/>
  1411. <dlvrgstqtyeve/>
  1412. <dlvrergstqtyday/>
  1413. <dlvrergstqtyeve/>
  1414. </rgstqtyiolist>
  1415. <rgstqtyiolist>
  1416. <goodnm>
  1417. <![CDATA[povidone stick swab]]>
  1418. </goodnm>
  1419. <dlvexchngqtyday/>
  1420. <dlvexchngqtyeve/>
  1421. <dlvreqqtyday>14</dlvreqqtyday>
  1422. <dlvreqqtyeve/>
  1423. <dlvlendqtyday/>
  1424. <dlvlendqtyeve/>
  1425. <dlvrgstqtyday/>
  1426. <dlvrgstqtyeve/>
  1427. <dlvrergstqtyday/>
  1428. <dlvrergstqtyeve/>
  1429. </rgstqtyiolist>
  1430. <rgstqtyiolist>
  1431. <goodnm>
  1432. <![CDATA[일회용 드레싱세트(내용물포함)]]>
  1433. </goodnm>
  1434. <dlvexchngqtyday/>
  1435. <dlvexchngqtyeve/>
  1436. <dlvreqqtyday>550</dlvreqqtyday>
  1437. <dlvreqqtyeve/>
  1438. <dlvlendqtyday/>
  1439. <dlvlendqtyeve/>
  1440. <dlvrgstqtyday/>
  1441. <dlvrgstqtyeve/>
  1442. <dlvrergstqtyday/>
  1443. <dlvrergstqtyeve/>
  1444. </rgstqtyiolist>
  1445. <rgstqtyiolist>
  1446. <goodnm>
  1447. <![CDATA[Angio set]]>
  1448. </goodnm>
  1449. <dlvexchngqtyday/>
  1450. <dlvexchngqtyeve/>
  1451. <dlvreqqtyday/>
  1452. <dlvreqqtyeve/>
  1453. <dlvlendqtyday/>
  1454. <dlvlendqtyeve/>
  1455. <dlvrgstqtyday>12</dlvrgstqtyday>
  1456. <dlvrgstqtyeve/>
  1457. <dlvrergstqtyday/>
  1458. <dlvrergstqtyeve/>
  1459. </rgstqtyiolist>
  1460. <rgstqtyiolist>
  1461. <goodnm>
  1462. <![CDATA[Delivery Set]]>
  1463. </goodnm>
  1464. <dlvexchngqtyday/>
  1465. <dlvexchngqtyeve/>
  1466. <dlvreqqtyday/>
  1467. <dlvreqqtyeve/>
  1468. <dlvlendqtyday/>
  1469. <dlvlendqtyeve/>
  1470. <dlvrgstqtyday>2</dlvrgstqtyday>
  1471. <dlvrgstqtyeve/>
  1472. <dlvrergstqtyday/>
  1473. <dlvrergstqtyeve/>
  1474. </rgstqtyiolist>
  1475. <rgstqtyiolist>
  1476. <goodnm>
  1477. <![CDATA[Forcep Jar(can)]]>
  1478. </goodnm>
  1479. <dlvexchngqtyday/>
  1480. <dlvexchngqtyeve/>
  1481. <dlvreqqtyday/>
  1482. <dlvreqqtyeve/>
  1483. <dlvlendqtyday/>
  1484. <dlvlendqtyeve/>
  1485. <dlvrgstqtyday>5</dlvrgstqtyday>
  1486. <dlvrgstqtyeve/>
  1487. <dlvrergstqtyday/>
  1488. <dlvrergstqtyeve/>
  1489. </rgstqtyiolist>
  1490. <rgstqtyiolist>
  1491. <goodnm>
  1492. <![CDATA[무균 D-Set]]>
  1493. </goodnm>
  1494. <dlvexchngqtyday/>
  1495. <dlvexchngqtyeve/>
  1496. <dlvreqqtyday/>
  1497. <dlvreqqtyeve/>
  1498. <dlvlendqtyday/>
  1499. <dlvlendqtyeve/>
  1500. <dlvrgstqtyday>16</dlvrgstqtyday>
  1501. <dlvrgstqtyeve/>
  1502. <dlvrergstqtyday/>
  1503. <dlvrergstqtyeve/>
  1504. </rgstqtyiolist>
  1505. <rgstqtyiolist>
  1506. <goodnm>
  1507. <![CDATA[Angio Bowl Set]]>
  1508. </goodnm>
  1509. <dlvexchngqtyday/>
  1510. <dlvexchngqtyeve/>
  1511. <dlvreqqtyday/>
  1512. <dlvreqqtyeve/>
  1513. <dlvlendqtyday/>
  1514. <dlvlendqtyeve/>
  1515. <dlvrgstqtyday>12</dlvrgstqtyday>
  1516. <dlvrgstqtyeve/>
  1517. <dlvrergstqtyday/>
  1518. <dlvrergstqtyeve/>
  1519. </rgstqtyiolist>
  1520. <rgstqtyiolist>
  1521. <goodnm>
  1522. <![CDATA[Cardiac Bowl Set]]>
  1523. </goodnm>
  1524. <dlvexchngqtyday/>
  1525. <dlvexchngqtyeve/>
  1526. <dlvreqqtyday/>
  1527. <dlvreqqtyeve/>
  1528. <dlvlendqtyday/>
  1529. <dlvlendqtyeve/>
  1530. <dlvrgstqtyday>5</dlvrgstqtyday>
  1531. <dlvrgstqtyeve/>
  1532. <dlvrergstqtyday/>
  1533. <dlvrergstqtyeve/>
  1534. </rgstqtyiolist>
  1535. <rgstqtyiolist>
  1536. <goodnm>
  1537. <![CDATA[가정간호 Dressing Set(소)]]>
  1538. </goodnm>
  1539. <dlvexchngqtyday/>
  1540. <dlvexchngqtyeve/>
  1541. <dlvreqqtyday/>
  1542. <dlvreqqtyeve/>
  1543. <dlvlendqtyday/>
  1544. <dlvlendqtyeve/>
  1545. <dlvrgstqtyday/>
  1546. <dlvrgstqtyeve/>
  1547. <dlvrergstqtyday/>
  1548. <dlvrergstqtyeve/>
  1549. </rgstqtyiolist>
  1550. <rgstqtyiolist>
  1551. <goodnm>
  1552. <![CDATA[목욕대야]]>
  1553. </goodnm>
  1554. <dlvexchngqtyday/>
  1555. <dlvexchngqtyeve/>
  1556. <dlvreqqtyday/>
  1557. <dlvreqqtyeve/>
  1558. <dlvlendqtyday/>
  1559. <dlvlendqtyeve/>
  1560. <dlvrgstqtyday/>
  1561. <dlvrgstqtyeve>17</dlvrgstqtyeve>
  1562. <dlvrergstqtyday/>
  1563. <dlvrergstqtyeve/>
  1564. </rgstqtyiolist>
  1565. <rgstqtyiolist>
  1566. <goodnm>
  1567. <![CDATA[무균환자용품]]>
  1568. </goodnm>
  1569. <dlvexchngqtyday/>
  1570. <dlvexchngqtyeve/>
  1571. <dlvreqqtyday/>
  1572. <dlvreqqtyeve/>
  1573. <dlvlendqtyday/>
  1574. <dlvlendqtyeve/>
  1575. <dlvrgstqtyday>1</dlvrgstqtyday>
  1576. <dlvrgstqtyeve/>
  1577. <dlvrergstqtyday/>
  1578. <dlvrergstqtyeve/>
  1579. </rgstqtyiolist>
  1580. <rgstqtyiolist>
  1581. <goodnm>
  1582. <![CDATA[무균 Can]]>
  1583. </goodnm>
  1584. <dlvexchngqtyday/>
  1585. <dlvexchngqtyeve/>
  1586. <dlvreqqtyday/>
  1587. <dlvreqqtyeve/>
  1588. <dlvlendqtyday/>
  1589. <dlvlendqtyeve/>
  1590. <dlvrgstqtyday>1</dlvrgstqtyday>
  1591. <dlvrgstqtyeve/>
  1592. <dlvrergstqtyday/>
  1593. <dlvrergstqtyeve/>
  1594. </rgstqtyiolist>
  1595. <rgstqtyiolist>
  1596. <goodnm>
  1597. <![CDATA[Steam 자루(물품목록등록)]]>
  1598. </goodnm>
  1599. <dlvexchngqtyday/>
  1600. <dlvexchngqtyeve/>
  1601. <dlvreqqtyday/>
  1602. <dlvreqqtyeve/>
  1603. <dlvlendqtyday/>
  1604. <dlvlendqtyeve/>
  1605. <dlvrgstqtyday>11</dlvrgstqtyday>
  1606. <dlvrgstqtyeve>1</dlvrgstqtyeve>
  1607. <dlvrergstqtyday/>
  1608. <dlvrergstqtyeve/>
  1609. </rgstqtyiolist>
  1610. <rgstqtyiolist>
  1611. <goodnm>
  1612. <![CDATA[사각 Can]]>
  1613. </goodnm>
  1614. <dlvexchngqtyday/>
  1615. <dlvexchngqtyeve/>
  1616. <dlvreqqtyday/>
  1617. <dlvreqqtyeve/>
  1618. <dlvlendqtyday/>
  1619. <dlvlendqtyeve/>
  1620. <dlvrgstqtyday>1</dlvrgstqtyday>
  1621. <dlvrgstqtyeve/>
  1622. <dlvrergstqtyday/>
  1623. <dlvrergstqtyeve/>
  1624. </rgstqtyiolist>
  1625. <rgstqtyiolist>
  1626. <goodnm>
  1627. <![CDATA[Steam pouch망(물품목록등록)]]>
  1628. </goodnm>
  1629. <dlvexchngqtyday/>
  1630. <dlvexchngqtyeve/>
  1631. <dlvreqqtyday/>
  1632. <dlvreqqtyeve/>
  1633. <dlvlendqtyday/>
  1634. <dlvlendqtyeve/>
  1635. <dlvrgstqtyday>1</dlvrgstqtyday>
  1636. <dlvrgstqtyeve/>
  1637. <dlvrergstqtyday/>
  1638. <dlvrergstqtyeve/>
  1639. </rgstqtyiolist>
  1640. <rgstqtyiolist>
  1641. <goodnm>
  1642. <![CDATA[OR Steam Pouch ]]>
  1643. </goodnm>
  1644. <dlvexchngqtyday/>
  1645. <dlvexchngqtyeve/>
  1646. <dlvreqqtyday/>
  1647. <dlvreqqtyeve/>
  1648. <dlvlendqtyday/>
  1649. <dlvlendqtyeve/>
  1650. <dlvrgstqtyday/>
  1651. <dlvrgstqtyeve>1</dlvrgstqtyeve>
  1652. <dlvrergstqtyday/>
  1653. <dlvrergstqtyeve/>
  1654. </rgstqtyiolist>
  1655. <rgstqtyiolist>
  1656. <goodnm>
  1657. <![CDATA[OR Cart (물품목록등록)]]>
  1658. </goodnm>
  1659. <dlvexchngqtyday/>
  1660. <dlvexchngqtyeve/>
  1661. <dlvreqqtyday/>
  1662. <dlvreqqtyeve/>
  1663. <dlvlendqtyday/>
  1664. <dlvlendqtyeve/>
  1665. <dlvrgstqtyday/>
  1666. <dlvrgstqtyeve>5</dlvrgstqtyeve>
  1667. <dlvrergstqtyday/>
  1668. <dlvrergstqtyeve/>
  1669. </rgstqtyiolist>
  1670. <rgstqtyiolist>
  1671. <goodnm>
  1672. <![CDATA[DOR Cart (물품목록등록)]]>
  1673. </goodnm>
  1674. <dlvexchngqtyday/>
  1675. <dlvexchngqtyeve/>
  1676. <dlvreqqtyday/>
  1677. <dlvreqqtyeve/>
  1678. <dlvlendqtyday/>
  1679. <dlvlendqtyeve/>
  1680. <dlvrgstqtyday/>
  1681. <dlvrgstqtyeve>1</dlvrgstqtyeve>
  1682. <dlvrergstqtyday/>
  1683. <dlvrergstqtyeve/>
  1684. </rgstqtyiolist>
  1685. <rgstqtyiolist>
  1686. <goodnm>
  1687. <![CDATA[DOR Steam Pouch(물품목록등록)]]>
  1688. </goodnm>
  1689. <dlvexchngqtyday/>
  1690. <dlvexchngqtyeve/>
  1691. <dlvreqqtyday/>
  1692. <dlvreqqtyeve/>
  1693. <dlvlendqtyday/>
  1694. <dlvlendqtyeve/>
  1695. <dlvrgstqtyday/>
  1696. <dlvrgstqtyeve>1</dlvrgstqtyeve>
  1697. <dlvrergstqtyday/>
  1698. <dlvrergstqtyeve/>
  1699. </rgstqtyiolist>
  1700. <rgstqtyiolist>
  1701. <goodnm>
  1702. <![CDATA[Cardiac Long Catheter]]>
  1703. </goodnm>
  1704. <dlvexchngqtyday/>
  1705. <dlvexchngqtyeve/>
  1706. <dlvreqqtyday/>
  1707. <dlvreqqtyeve/>
  1708. <dlvlendqtyday/>
  1709. <dlvlendqtyeve/>
  1710. <dlvrgstqtyday/>
  1711. <dlvrgstqtyeve/>
  1712. <dlvrergstqtyday/>
  1713. <dlvrergstqtyeve/>
  1714. </rgstqtyiolist>
  1715. <rgstqtyiolist>
  1716. <goodnm>
  1717. <![CDATA[E.O Gas망 (물품목록등록)]]>
  1718. </goodnm>
  1719. <dlvexchngqtyday/>
  1720. <dlvexchngqtyeve/>
  1721. <dlvreqqtyday/>
  1722. <dlvreqqtyeve/>
  1723. <dlvlendqtyday/>
  1724. <dlvlendqtyeve/>
  1725. <dlvrgstqtyday>4</dlvrgstqtyday>
  1726. <dlvrgstqtyeve>2</dlvrgstqtyeve>
  1727. <dlvrergstqtyday/>
  1728. <dlvrergstqtyeve/>
  1729. </rgstqtyiolist>
  1730. <rgstqtyiolist>
  1731. <goodnm>
  1732. <![CDATA[E.O Gas망 OR 정규 (물품목록등록)]]>
  1733. </goodnm>
  1734. <dlvexchngqtyday/>
  1735. <dlvexchngqtyeve/>
  1736. <dlvreqqtyday/>
  1737. <dlvreqqtyeve/>
  1738. <dlvlendqtyday/>
  1739. <dlvlendqtyeve/>
  1740. <dlvrgstqtyday>1</dlvrgstqtyday>
  1741. <dlvrgstqtyeve>1</dlvrgstqtyeve>
  1742. <dlvrergstqtyday/>
  1743. <dlvrergstqtyeve/>
  1744. </rgstqtyiolist>
  1745. <rgstqtyiolist>
  1746. <goodnm>
  1747. <![CDATA[E.O Gas망 OR 응급 (물품목록등록)]]>
  1748. </goodnm>
  1749. <dlvexchngqtyday/>
  1750. <dlvexchngqtyeve/>
  1751. <dlvreqqtyday/>
  1752. <dlvreqqtyeve/>
  1753. <dlvlendqtyday/>
  1754. <dlvlendqtyeve/>
  1755. <dlvrgstqtyday/>
  1756. <dlvrgstqtyeve>1</dlvrgstqtyeve>
  1757. <dlvrergstqtyday/>
  1758. <dlvrergstqtyeve/>
  1759. </rgstqtyiolist>
  1760. <rgstqtyiolist>
  1761. <goodnm>
  1762. <![CDATA[수술가운(롱가운)]]>
  1763. </goodnm>
  1764. <dlvexchngqtyday/>
  1765. <dlvexchngqtyeve/>
  1766. <dlvreqqtyday>13</dlvreqqtyday>
  1767. <dlvreqqtyeve/>
  1768. <dlvlendqtyday/>
  1769. <dlvlendqtyeve/>
  1770. <dlvrgstqtyday/>
  1771. <dlvrgstqtyeve/>
  1772. <dlvrergstqtyday/>
  1773. <dlvrergstqtyeve/>
  1774. </rgstqtyiolist>
  1775. <rgstqtyiolist>
  1776. <goodnm>
  1777. <![CDATA[소공(녹색광목)(공 크기 9*9, 2겹)]]>
  1778. </goodnm>
  1779. <dlvexchngqtyday/>
  1780. <dlvexchngqtyeve/>
  1781. <dlvreqqtyday>3</dlvreqqtyday>
  1782. <dlvreqqtyeve/>
  1783. <dlvlendqtyday/>
  1784. <dlvlendqtyeve/>
  1785. <dlvrgstqtyday/>
  1786. <dlvrgstqtyeve/>
  1787. <dlvrergstqtyday/>
  1788. <dlvrergstqtyeve/>
  1789. </rgstqtyiolist>
  1790. <rgstqtyiolist>
  1791. <goodnm>
  1792. <![CDATA[중포(녹색광목)중]]>
  1793. </goodnm>
  1794. <dlvexchngqtyday/>
  1795. <dlvexchngqtyeve/>
  1796. <dlvreqqtyday>20</dlvreqqtyday>
  1797. <dlvreqqtyeve/>
  1798. <dlvlendqtyday/>
  1799. <dlvlendqtyeve/>
  1800. <dlvrgstqtyday/>
  1801. <dlvrgstqtyeve/>
  1802. <dlvrergstqtyday/>
  1803. <dlvrergstqtyeve/>
  1804. </rgstqtyiolist>
  1805. <rgstqtyiolist>
  1806. <goodnm>
  1807. <![CDATA[수술가운(청색.병동환자용)]]>
  1808. </goodnm>
  1809. <dlvexchngqtyday/>
  1810. <dlvexchngqtyeve/>
  1811. <dlvreqqtyday>28</dlvreqqtyday>
  1812. <dlvreqqtyeve/>
  1813. <dlvlendqtyday/>
  1814. <dlvlendqtyeve/>
  1815. <dlvrgstqtyday/>
  1816. <dlvrgstqtyeve/>
  1817. <dlvrergstqtyday/>
  1818. <dlvrergstqtyeve/>
  1819. </rgstqtyiolist>
  1820. <rgstqtyiolist>
  1821. <goodnm>
  1822. <![CDATA[수술가운(바지)]]>
  1823. </goodnm>
  1824. <dlvexchngqtyday/>
  1825. <dlvexchngqtyeve/>
  1826. <dlvreqqtyday>12</dlvreqqtyday>
  1827. <dlvreqqtyeve/>
  1828. <dlvlendqtyday/>
  1829. <dlvlendqtyeve/>
  1830. <dlvrgstqtyday/>
  1831. <dlvrgstqtyeve/>
  1832. <dlvrergstqtyday/>
  1833. <dlvrergstqtyeve/>
  1834. </rgstqtyiolist>
  1835. <rgstqtyiolist>
  1836. <goodnm>
  1837. <![CDATA[멸균 Sheet]]>
  1838. </goodnm>
  1839. <dlvexchngqtyday/>
  1840. <dlvexchngqtyeve/>
  1841. <dlvreqqtyday>20</dlvreqqtyday>
  1842. <dlvreqqtyeve/>
  1843. <dlvlendqtyday/>
  1844. <dlvlendqtyeve/>
  1845. <dlvrgstqtyday/>
  1846. <dlvrgstqtyeve/>
  1847. <dlvrergstqtyday/>
  1848. <dlvrergstqtyeve/>
  1849. </rgstqtyiolist>
  1850. <rgstqtyiolist>
  1851. <goodnm>
  1852. <![CDATA[멸균 중포(녹색광목)]]>
  1853. </goodnm>
  1854. <dlvexchngqtyday/>
  1855. <dlvexchngqtyeve/>
  1856. <dlvreqqtyday>55</dlvreqqtyday>
  1857. <dlvreqqtyeve/>
  1858. <dlvlendqtyday/>
  1859. <dlvlendqtyeve/>
  1860. <dlvrgstqtyday/>
  1861. <dlvrgstqtyeve/>
  1862. <dlvrergstqtyday/>
  1863. <dlvrergstqtyeve/>
  1864. </rgstqtyiolist>
  1865. <rgstqtyiolist>
  1866. <goodnm>
  1867. <![CDATA[멸균 대포(녹색광목)]]>
  1868. </goodnm>
  1869. <dlvexchngqtyday/>
  1870. <dlvexchngqtyeve/>
  1871. <dlvreqqtyday/>
  1872. <dlvreqqtyeve/>
  1873. <dlvlendqtyday/>
  1874. <dlvlendqtyeve/>
  1875. <dlvrgstqtyday/>
  1876. <dlvrgstqtyeve/>
  1877. <dlvrergstqtyday/>
  1878. <dlvrergstqtyeve/>
  1879. </rgstqtyiolist>
  1880. <rgstqtyiolist>
  1881. <goodnm>
  1882. <![CDATA[멸균 소공(녹색광목)(공 크기 9*9 2겹)]]>
  1883. </goodnm>
  1884. <dlvexchngqtyday/>
  1885. <dlvexchngqtyeve/>
  1886. <dlvreqqtyday>9</dlvreqqtyday>
  1887. <dlvreqqtyeve/>
  1888. <dlvlendqtyday/>
  1889. <dlvlendqtyeve/>
  1890. <dlvrgstqtyday/>
  1891. <dlvrgstqtyeve/>
  1892. <dlvrergstqtyday/>
  1893. <dlvrergstqtyeve/>
  1894. </rgstqtyiolist>
  1895. <rgstqtyiolist>
  1896. <goodnm>
  1897. <![CDATA[무균 멸균소포]]>
  1898. </goodnm>
  1899. <dlvexchngqtyday/>
  1900. <dlvexchngqtyeve/>
  1901. <dlvreqqtyday>10</dlvreqqtyday>
  1902. <dlvreqqtyeve/>
  1903. <dlvlendqtyday/>
  1904. <dlvlendqtyeve/>
  1905. <dlvrgstqtyday/>
  1906. <dlvrgstqtyeve/>
  1907. <dlvrergstqtyday/>
  1908. <dlvrergstqtyeve/>
  1909. </rgstqtyiolist>
  1910. <rgstqtyiolist>
  1911. <goodnm>
  1912. <![CDATA[일일 안과 Package]]>
  1913. </goodnm>
  1914. <dlvexchngqtyday/>
  1915. <dlvexchngqtyeve/>
  1916. <dlvreqqtyday/>
  1917. <dlvreqqtyeve>8</dlvreqqtyeve>
  1918. <dlvlendqtyday/>
  1919. <dlvlendqtyeve/>
  1920. <dlvrgstqtyday/>
  1921. <dlvrgstqtyeve/>
  1922. <dlvrergstqtyday/>
  1923. <dlvrergstqtyeve/>
  1924. </rgstqtyiolist>
  1925. <rgstqtyiolist>
  1926. <goodnm>
  1927. <![CDATA[성형외과 중공]]>
  1928. </goodnm>
  1929. <dlvexchngqtyday/>
  1930. <dlvexchngqtyeve/>
  1931. <dlvreqqtyday>10</dlvreqqtyday>
  1932. <dlvreqqtyeve/>
  1933. <dlvlendqtyday/>
  1934. <dlvlendqtyeve/>
  1935. <dlvrgstqtyday/>
  1936. <dlvrgstqtyeve/>
  1937. <dlvrergstqtyday/>
  1938. <dlvrergstqtyeve/>
  1939. </rgstqtyiolist>
  1940. <cleanlist>
  1941. <cdnm>소기구</cdnm>
  1942. <cnt>5</cnt>
  1943. </cleanlist>
  1944. <cleanlist>
  1945. <cdnm>기구</cdnm>
  1946. <cnt>3</cnt>
  1947. </cleanlist>
  1948. </nodeinfo>
  1949. <workscinfo>
  1950. <worksclist>
  1951. <split/>
  1952. <day>최영숙.장창식</day>
  1953. <eve/>
  1954. </worksclist>
  1955. </workscinfo>
  1956. </main>
  1957. <temp/>
  1958. <init>
  1959. <srchflag/>
  1960. <srchsumflag/>
  1961. </init>
  1962. <cond>
  1963. <workdd>20120522</workdd>
  1964. <instcd>031</instcd>
  1965. <worktodd>20120822</worktodd>
  1966. <instnm>경북대학교병원</instnm>
  1967. <fromdd>20120501</fromdd>
  1968. <todd>20120531</todd>
  1969. </cond>
  1970. <send>
  1971. <workdd>20120522</workdd>
  1972. <savedata>
  1973. <savedrntdata/>
  1974. <savedrctdata/>
  1975. <enemalist/>
  1976. <etclist/>
  1977. <ccdrcentrlist/>
  1978. <ccdroperlist/>
  1979. </savedata>
  1980. <srchflag>D</srchflag>
  1981. <srchsumflag>D</srchsumflag>
  1982. <cdgrupid>T65</cdgrupid>
  1983. <worktodd>20120822</worktodd>
  1984. <flag>1</flag>
  1985. </send>
  1986. <tmp/>
  1987. <setvalue>
  1988. <cnfmrid>93451</cnfmrid>
  1989. </setvalue>
  1990. <properties>
  1991. <saveloc>true</saveloc>
  1992. <uid>
  1993. <myself>1345602954252</myself>
  1994. <opener>1345602688989</opener>
  1995. <children>
  1996. <SPZUR00100/>
  1997. <latest/>
  1998. </children>
  1999. </uid>
  2000. <domain/>
  2001. <auth>11100000</auth>
  2002. <menu>
  2003. <menuparam/>
  2004. <menugroupcd>MG01850000|MA00000280|중앙공급실(중앙공급실)</menugroupcd>
  2005. <menuitemcd>MI01850079</menuitemcd>
  2006. <menuprestdeptcd>3080000000</menuprestdeptcd>
  2007. </menu>
  2008. <title>CSR 일일 업무일지</title>
  2009. <report>
  2010. <mainreport>
  2011. <params>
  2012. <userid>ENR</userid>
  2013. <logoimgurl>http://his999dev.knu.ac.kr:8088/himed/webapps/com/commonweb/images/error_logo031.gif</logoimgurl>
  2014. <url>RPMSG04001</url>
  2015. </params>
  2016. <props>
  2017. <rex_rptname>RPMSG04001</rex_rptname>
  2018. <rex_datatype>XMLSTR</rex_datatype>
  2019. <rex_submitid/>
  2020. <rex_userservice/>
  2021. <rex_data_xpath/>
  2022. <rex_xpath/>
  2023. <rex_xpath1/>
  2024. </props>
  2025. <options>
  2026. <rex_print>false</rex_print>
  2027. <rex_printdialog/>
  2028. <rex_printpaperbin/>
  2029. <rex_filetype/>
  2030. <rex_filename/>
  2031. <rex_filedialog/>
  2032. <rex_close>false</rex_close>
  2033. <rex_showbutton/>
  2034. <rex_printcount/>
  2035. <rex_zoomrate/>
  2036. <rex_printoption/>
  2037. </options>
  2038. </mainreport>
  2039. </report>
  2040. <parameters>
  2041. <onready>
  2042. <onreadyvalue>true</onreadyvalue>
  2043. </onready>
  2044. <reportPageCount>
  2045. <reportPageCountvalue>6</reportPageCountvalue>
  2046. </reportPageCount>
  2047. <reportprintyn>
  2048. <reportprintynvalue>Y</reportprintynvalue>
  2049. </reportprintyn>
  2050. </parameters>
  2051. <error>
  2052. <type>info</type>
  2053. <code/>
  2054. <msg>
  2055. <![CDATA[정상적으로 처리되었습니다.]]>
  2056. </msg>
  2057. <description/>
  2058. </error>
  2059. </properties>
  2060. <hidden>
  2061. <setvalue>
  2062. <cdid>93451</cdid>
  2063. </setvalue>
  2064. </hidden>
  2065. </root>