SMMNR07800_중증도조회.xfdl 157 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577
  1. <?xml version="1.0" encoding="utf-8"?>
  2. <FDL version="1.5">
  3. <TypeDefinition url="..\..\..\default_typedef.xml"/>
  4. <Form id="SMMNR07800" position="absolute 0 0 1140 740" titletext="중증도 조회" oninit="SMMNR07800_oninit" onload="SMMNR07800_onload">
  5. <Layouts>
  6. <Layout>
  7. <Div position="absolute 0 0 1130 25" id="group1">
  8. <Layouts>
  9. <Layout>
  10. <Static text="중증도 조회" position="absolute 0 0 116 25" id="caption6" class="tit_1"/>
  11. </Layout>
  12. </Layouts>
  13. </Div>
  14. <Div position="absolute 0 20 1135 715" id="group5" scrollbars="autoboth">
  15. <Layouts>
  16. <Layout>
  17. <Div position="absolute 1 5 1132 40" align="align:center top;" id="grp_sea2" anchor="default">
  18. <Layouts>
  19. <Layout>
  20. <Shape position="absolute 0 0 1129 35" id="roundrect2" class="roundrect_search" type="roundrectangle" anchor="default"/>
  21. <Static text="조회 일자 :" position="absolute 395 10 491 27" id="caption5" class="search_name" anchor="default"/>
  22. <Static text="병 동 :" position="absolute 10 10 77 27" id="caption9" class="search_name" anchor="default"/>
  23. <Combo position="absolute 259 9 384 28" id="cmb_wardcd2" class="combo_search" innerdataset="@ds_hidden_wardcdgrup_wardcdgruplist" datacolumn="wardnm" codecolumn="wardcd" anchor="default" onitemchanged="group5_grp_sea2_cmb_wardcd2_onitemchanged"/>
  24. <Button position="absolute 1003 6 1059 28" id="button1" class="btn1" text="조회" anchor="default" onclick="group5_grp_sea2_button1_onclick"/>
  25. <Shape position="absolute 992 5 998 27" linetype="vertical" id="line2" class="line_4" anchor="default"/>
  26. <Button position="absolute 1060 6 1116 28" id="btn_excel" class="btn1" text="엑셀" anchor="default" onclick="group5_grp_sea2_btn_excel_onclick"/>
  27. <Calendar position="absolute 490 8 575 27" id="ipt_schtoyear" class="input_search" mask="yyyy" anchor="default" autoselect="true" autoskip="true" onchanged="group5_grp_sea2_ipt_schtoyear_onchanged" dateformat="yyyy" value="null" editformat="yyyy"/>
  28. <Radio position="absolute 70 9 250 29" id="radio2" columncount="-1" codecolumn="codecolumn" datacolumn="datacolumn" anchor="default" onitemchanged="group5_grp_sea2_radio2_onitemchanged" rowcount="-1">
  29. <Dataset id="innerdataset">
  30. <ColumnInfo>
  31. <Column id="codecolumn"/>
  32. <Column id="datacolumn"/>
  33. </ColumnInfo>
  34. <Rows>
  35. <Row>
  36. <Col id="codecolumn">1</Col>
  37. <Col id="datacolumn">병동</Col>
  38. </Row>
  39. <Row>
  40. <Col id="codecolumn">2</Col>
  41. <Col id="datacolumn">중환자실</Col>
  42. </Row>
  43. <Row>
  44. <Col id="codecolumn">3</Col>
  45. <Col id="datacolumn">혈액투석</Col>
  46. </Row>
  47. </Rows>
  48. </Dataset>
  49. </Radio>
  50. <Calendar position="absolute 490 8 575 27" id="ipt_schtomon" class="input_search" mask="yyyy-mm" anchor="default" autoskip="true" autoselect="true" onchanged="group5_grp_sea2_ipt_schtomon_onchanged" dateformat="yyyy-MM" value="null" editformat="yyyy-MM"/>
  51. </Layout>
  52. </Layouts>
  53. </Div>
  54. <Shape position="absolute 2 70 203 76" linetype="horizontal" id="line1" class="line_10" anchor="default"/>
  55. <Grid position="absolute 2 73 197 695" treeusecheckbox="false" autofit="col" id="trv_seridiagflag" anchor="default" binddataset="ds_hidden_treeitem_serdiaglist" oncellclick="group5_trv_seridiagflag_oncellclick" treeinitstatus="expand,all">
  56. <Formats>
  57. <Format id="default">
  58. <Columns>
  59. <Column size="193"/>
  60. </Columns>
  61. <Rows>
  62. <Row size="24"/>
  63. </Rows>
  64. <Band id="body">
  65. <Cell displaytype="tree" edittype="tree" text="bind:hngnm" expandshow="hide" treestartlevel="1" treelevel="bind:depth"/>
  66. </Band>
  67. </Format>
  68. </Formats>
  69. </Grid>
  70. <Tab position="absolute 202 48 1135 695" align="align:center top;" id="switch1" anchor="default" visible="true" style="background:URL('theme://images/bg_tab_BodyTop.png') stretch 10,26;">
  71. <Tabpages>
  72. <Tabpage text="" id="case1" scrollbars="none">
  73. <Layouts>
  74. <Layout>
  75. <Grid position="absolute 0 30 931 620" align="align:center middle;" id="grd_seridiag" binddataset="ds_main_gridgrup_gridlist" anchor="default">
  76. <Formats>
  77. <Format id="default">
  78. <Columns>
  79. <Column size="40"/>
  80. <Column size="101"/>
  81. <Column size="95"/>
  82. <Column size="86"/>
  83. <Column size="50"/>
  84. <Column size="61"/>
  85. <Column size="46"/>
  86. <Column size="46"/>
  87. <Column size="85"/>
  88. <Column size="50"/>
  89. <Column size="72"/>
  90. <Column size="73"/>
  91. <Column size="56"/>
  92. <Column size="56"/>
  93. </Columns>
  94. <Rows>
  95. <Row size="24" band="head"/>
  96. <Row size="24"/>
  97. </Rows>
  98. <Band id="head">
  99. <Cell/>
  100. <Cell col="1" text="일시"/>
  101. <Cell col="2" text="병동"/>
  102. <Cell col="3" text="병실"/>
  103. <Cell col="4" text="환자명"/>
  104. <Cell col="5" text="등록번호"/>
  105. <Cell col="6" text="총점"/>
  106. <Cell col="7" text="분류군"/>
  107. <Cell col="8" text="진료과"/>
  108. <Cell col="9" text="입력자"/>
  109. <Cell col="10" text="입원일"/>
  110. <Cell col="11" text="퇴원일"/>
  111. <Cell col="12" text="재원기간"/>
  112. <Cell col="13" text="입원경로"/>
  113. </Band>
  114. <Band id="body">
  115. <Cell celltype="head" expr="expr:currow + 1"/>
  116. <Cell col="1" style="align:center middle;" text="bind:execdt" mask="expr:!utlf_isNull(execdt) ? '####-##-## ##:##' : ''"/>
  117. <Cell col="2" style="align:center middle;" text="bind:wardnm"/>
  118. <Cell col="3" style="align:center middle;" text="bind:roomcd"/>
  119. <Cell col="4" style="align:center middle;" text="bind:hngnm"/>
  120. <Cell col="5" style="align:center middle;" text="bind:pid"/>
  121. <Cell col="6" style="align:center middle;" text="bind:total"/>
  122. <Cell col="7" style="align:center middle;" text="bind:bspntnm"/>
  123. <Cell col="8" style="align:center middle;" text="bind:deptnm"/>
  124. <Cell col="9" style="align:center middle;" text="bind:usernm"/>
  125. <Cell col="10" style="align:center middle;" text="bind:indd"/>
  126. <Cell col="11" style="align:center middle;" text="bind:dschdd"/>
  127. <Cell col="12" style="align:center middle;" text="bind:hd"/>
  128. <Cell col="13" style="align:center middle;" text="bind:inpath"/>
  129. </Band>
  130. </Format>
  131. </Formats>
  132. </Grid>
  133. <Static text="중환자,병동 - 환자별중증도조회" position="absolute 520 465 696 485" id="caption10" visible="false" anchor="default"/>
  134. <Grid position="absolute 0 3 545 28" id="grd_totalward1" class="datagrid0" binddataset="ds_main_gridgrup_bspnttotal" anchor="default" scrollbars="none">
  135. <Formats>
  136. <Format id="default">
  137. <Columns>
  138. <Column size="0"/>
  139. <Column size="0"/>
  140. <Column size="0"/>
  141. <Column size="0"/>
  142. <Column size="0"/>
  143. <Column size="0"/>
  144. <Column size="0"/>
  145. <Column size="0"/>
  146. <Column size="0"/>
  147. <Column size="0"/>
  148. <Column size="0"/>
  149. <Column size="0"/>
  150. <Column size="0"/>
  151. <Column size="0"/>
  152. <Column size="0"/>
  153. <Column size="0"/>
  154. <Column size="0"/>
  155. <Column size="0"/>
  156. <Column size="0"/>
  157. <Column size="0"/>
  158. </Columns>
  159. <Rows>
  160. <Row size="0" band="head"/>
  161. <Row size="24"/>
  162. </Rows>
  163. <Band id="head">
  164. <Cell/>
  165. <Cell col="1"/>
  166. <Cell col="2"/>
  167. <Cell col="3"/>
  168. <Cell col="4"/>
  169. <Cell col="5"/>
  170. <Cell col="6"/>
  171. <Cell col="7"/>
  172. <Cell col="8"/>
  173. <Cell col="9"/>
  174. <Cell col="10"/>
  175. <Cell col="11"/>
  176. <Cell col="12"/>
  177. <Cell col="13"/>
  178. <Cell col="14"/>
  179. <Cell col="15"/>
  180. <Cell col="16"/>
  181. <Cell col="17"/>
  182. <Cell col="18"/>
  183. <Cell col="19"/>
  184. </Band>
  185. <Band id="body">
  186. <Cell style="align:center middle;background:#b5d3ffff;background2:#b5d3ffff;font:arial,9,bold;" text="bind:bspntnm0"/>
  187. <Cell col="1" style="align:center middle;" text="bind:total0"/>
  188. <Cell col="2" style="align:center middle;background:#b5d3ffff;background2:#b5d3ffff;font:arial,9,bold;" text="bind:bspntnm1"/>
  189. <Cell col="3" style="align:center middle;" text="bind:total1"/>
  190. <Cell col="4" style="align:center middle;background:#b5d3ffff;background2:#b5d3ffff;font:arial,9,bold;" text="bind:bspntnm2"/>
  191. <Cell col="5" style="align:center middle;" text="bind:total2"/>
  192. <Cell col="6" style="align:center middle;background:#b5d3ffff;background2:#b5d3ffff;font:arial,9,bold;" text="bind:bspntnm3"/>
  193. <Cell col="7" style="align:center middle;" text="bind:total3"/>
  194. <Cell col="8" style="align:center middle;background:#b5d3ffff;background2:#b5d3ffff;font:arial,9,bold;" text="bind:bspntnm4"/>
  195. <Cell col="9" style="align:center middle;" text="bind:total4"/>
  196. <Cell col="10" style="align:center middle;background:#b5d3ffff;background2:#b5d3ffff;font:arial,9,bold;" text="bind:bspntnm5"/>
  197. <Cell col="11" style="align:center middle;" text="bind:total5"/>
  198. <Cell col="12" style="align:center middle;background:#b5d3ffff;background2:#b5d3ffff;font:arial,9,bold;" text="bind:bspntnm6"/>
  199. <Cell col="13" style="align:center middle;" text="bind:total6"/>
  200. <Cell col="14" style="align:center middle;background:#b5d3ffff;background2:#b5d3ffff;font:arial,9,bold;" text="bind:bspntnm7"/>
  201. <Cell col="15" style="align:center middle;" text="bind:total7"/>
  202. <Cell col="16" style="align:center middle;background:#b5d3ffff;background2:#b5d3ffff;font:arial,9,bold;" text="bind:bspntnm8"/>
  203. <Cell col="17" style="align:center middle;" text="bind:total8"/>
  204. <Cell col="18" style="align:center middle;background:#b5d3ffff;background2:#b5d3ffff;font:arial,9,bold;" text="bind:bspntnm9"/>
  205. <Cell col="19" style="align:center middle;" text="bind:total9"/>
  206. </Band>
  207. </Format>
  208. </Formats>
  209. </Grid>
  210. </Layout>
  211. </Layouts>
  212. </Tabpage>
  213. <Tabpage text="" id="case2" scrollbars="none">
  214. <Layouts>
  215. <Layout>
  216. <Radio position="absolute 785 5 920 25" id="rdo_flag" visible="false" columncount="3" codecolumn="codecolumn" datacolumn="datacolumn" anchor="default" onitemchanged="group5_switch1_case2_rdo_flag_onitemchanged">
  217. <Dataset id="innerdataset">
  218. <ColumnInfo>
  219. <Column id="codecolumn"/>
  220. <Column id="datacolumn"/>
  221. </ColumnInfo>
  222. <Rows>
  223. <Row>
  224. <Col id="codecolumn">A</Col>
  225. <Col id="datacolumn">전체</Col>
  226. </Row>
  227. <Row>
  228. <Col id="codecolumn">I</Col>
  229. <Col id="datacolumn">입실</Col>
  230. </Row>
  231. <Row>
  232. <Col id="codecolumn">D</Col>
  233. <Col id="datacolumn">퇴실</Col>
  234. </Row>
  235. </Rows>
  236. </Dataset>
  237. </Radio>
  238. <Grid position="absolute 0 30 931 620" align="align:center middle;" id="grd_seriindsch" binddataset="ds_main_gridgrup_gridlist" anchor="default">
  239. <Formats>
  240. <Format id="default">
  241. <Columns>
  242. <Column size="25"/>
  243. <Column size="113"/>
  244. <Column size="92"/>
  245. <Column size="77"/>
  246. <Column size="100"/>
  247. <Column size="100"/>
  248. <Column size="100"/>
  249. <Column size="100"/>
  250. <Column size="100"/>
  251. <Column size="100"/>
  252. </Columns>
  253. <Rows>
  254. <Row size="24" band="head"/>
  255. <Row size="24"/>
  256. </Rows>
  257. <Band id="head">
  258. <Cell/>
  259. <Cell col="1" text="병동"/>
  260. <Cell col="2" text="병실"/>
  261. <Cell col="3" text="환자명"/>
  262. <Cell col="4" text="등록번호"/>
  263. <Cell col="5" text="입실일"/>
  264. <Cell col="6" text="총점"/>
  265. <Cell col="7" text="분류군"/>
  266. <Cell col="8" text="퇴실일"/>
  267. <Cell col="9" text="재실기간"/>
  268. </Band>
  269. <Band id="body">
  270. <Cell celltype="head" expr="expr:currow + 1"/>
  271. <Cell col="1" text="bind:wardnm"/>
  272. <Cell col="2" text="bind:roomcd"/>
  273. <Cell col="3" text="bind:hngnm"/>
  274. <Cell col="4" text="bind:pid"/>
  275. <Cell col="5" text="bind:careinrmdd" mask="expr:!utlf_isNull(careinrmdd) ? '####-##-##' : ''"/>
  276. <Cell col="6" text="bind:total"/>
  277. <Cell col="7" text="bind:bspntnm"/>
  278. <Cell col="8" text="bind:dschdd" mask="expr:!utlf_isNull(dschdd) ? '####-##-##' : ''"/>
  279. <Cell col="9" text="bind:hd"/>
  280. </Band>
  281. </Format>
  282. </Formats>
  283. </Grid>
  284. <Static text="중환자-중환자입실/퇴실 화면" position="absolute 520 475 682 495" id="caption11" visible="false" anchor="default"/>
  285. </Layout>
  286. </Layouts>
  287. </Tabpage>
  288. <Tabpage text="" id="case3" scrollbars="none">
  289. <Layouts>
  290. <Layout>
  291. <Grid position="absolute 0 0 931 620" align="align:center middle;" id="grd_seritotal" binddataset="ds_main_gridgrup_gridlist" anchor="default">
  292. <Formats>
  293. <Format id="default">
  294. <Columns>
  295. <Column size="25"/>
  296. <Column size="154"/>
  297. <Column size="100"/>
  298. <Column size="100"/>
  299. </Columns>
  300. <Rows>
  301. <Row size="24" band="head"/>
  302. <Row size="24"/>
  303. </Rows>
  304. <Band id="head">
  305. <Cell/>
  306. <Cell col="1" text="병동"/>
  307. <Cell col="2" text="분류군"/>
  308. <Cell col="3" text="인원"/>
  309. </Band>
  310. <Band id="body">
  311. <Cell celltype="head" expr="expr:currow + 1"/>
  312. <Cell col="1" text="bind:wardnm"/>
  313. <Cell col="2" text="bind:bspntnm"/>
  314. <Cell col="3" text="bind:total"/>
  315. </Band>
  316. </Format>
  317. </Formats>
  318. </Grid>
  319. <Static text="중환자-중증도통계" position="absolute 500 455 604 475" id="caption12" visible="false" anchor="default"/>
  320. </Layout>
  321. </Layouts>
  322. </Tabpage>
  323. <Tabpage text="" id="case4" scrollbars="none">
  324. <Layouts>
  325. <Layout>
  326. <Grid position="absolute 0 0 521 25" id="grd_totalseriroom" class="datagrid0" binddataset="ds_main_gridgrup_bspnttotal" anchor="default" scrollbars="none">
  327. <Formats>
  328. <Format id="default">
  329. <Columns>
  330. <Column size="0"/>
  331. <Column size="0"/>
  332. <Column size="0"/>
  333. <Column size="0"/>
  334. <Column size="0"/>
  335. <Column size="0"/>
  336. <Column size="0"/>
  337. <Column size="0"/>
  338. <Column size="0"/>
  339. <Column size="0"/>
  340. <Column size="0"/>
  341. <Column size="0"/>
  342. <Column size="0"/>
  343. <Column size="0"/>
  344. <Column size="0"/>
  345. <Column size="0"/>
  346. <Column size="0"/>
  347. <Column size="0"/>
  348. <Column size="0"/>
  349. <Column size="0"/>
  350. </Columns>
  351. <Rows>
  352. <Row size="0" band="head"/>
  353. <Row size="24"/>
  354. </Rows>
  355. <Band id="head">
  356. <Cell/>
  357. <Cell col="1"/>
  358. <Cell col="2"/>
  359. <Cell col="3"/>
  360. <Cell col="4"/>
  361. <Cell col="5"/>
  362. <Cell col="6"/>
  363. <Cell col="7"/>
  364. <Cell col="8"/>
  365. <Cell col="9"/>
  366. <Cell col="10"/>
  367. <Cell col="11"/>
  368. <Cell col="12"/>
  369. <Cell col="13"/>
  370. <Cell col="14"/>
  371. <Cell col="15"/>
  372. <Cell col="16"/>
  373. <Cell col="17"/>
  374. <Cell col="18"/>
  375. <Cell col="19"/>
  376. </Band>
  377. <Band id="body">
  378. <Cell style="align:center middle;background:#b5d3ffff;background2:#b5d3ffff;font:arial,9,bold;" text="bind:bspntnm0"/>
  379. <Cell col="1" style="align:center middle;" text="bind:total0"/>
  380. <Cell col="2" style="align:center middle;background:#b5d3ffff;background2:#b5d3ffff;font:arial,9,bold;" text="bind:bspntnm1"/>
  381. <Cell col="3" style="align:center middle;" text="bind:total1"/>
  382. <Cell col="4" style="align:center middle;background:#b5d3ffff;background2:#b5d3ffff;font:arial,9,bold;" text="bind:bspntnm2"/>
  383. <Cell col="5" style="align:center middle;" text="bind:total2"/>
  384. <Cell col="6" style="align:center middle;background:#b5d3ffff;background2:#b5d3ffff;font:arial,9,bold;" text="bind:bspntnm3"/>
  385. <Cell col="7" style="align:center middle;" text="bind:total3"/>
  386. <Cell col="8" style="align:center middle;background:#b5d3ffff;background2:#b5d3ffff;font:arial,9,bold;" text="bind:bspntnm4"/>
  387. <Cell col="9" style="align:center middle;" text="bind:total4"/>
  388. <Cell col="10" style="align:center middle;background:#b5d3ffff;background2:#b5d3ffff;font:arial,9,bold;" text="bind:bspntnm5"/>
  389. <Cell col="11" style="align:center middle;" text="bind:total5"/>
  390. <Cell col="12" style="align:center middle;background:#b5d3ffff;background2:#b5d3ffff;font:arial,9,bold;" text="bind:bspntnm6"/>
  391. <Cell col="13" style="align:center middle;" text="bind:total6"/>
  392. <Cell col="14" style="align:center middle;background:#b5d3ffff;background2:#b5d3ffff;font:arial,9,bold;" text="bind:bspntnm7"/>
  393. <Cell col="15" style="align:center middle;" text="bind:total7"/>
  394. <Cell col="16" style="align:center middle;background:#b5d3ffff;background2:#b5d3ffff;font:arial,9,bold;" text="bind:bspntnm8"/>
  395. <Cell col="17" style="align:center middle;" text="bind:total8"/>
  396. <Cell col="18" style="align:center middle;background:#b5d3ffff;background2:#b5d3ffff;font:arial,9,bold;" text="bind:bspntnm9"/>
  397. <Cell col="19" style="align:center middle;" text="bind:total9"/>
  398. </Band>
  399. </Format>
  400. </Formats>
  401. </Grid>
  402. <Grid position="absolute 0 26 931 620" id="grd_seriroom" class="datagrid2" visible="true" binddataset="ds_main_gridgrup_recpntlist" anchor="default">
  403. <Formats>
  404. <Format id="default">
  405. <Columns>
  406. <Column size="25"/>
  407. <Column size="100"/>
  408. <Column size="107"/>
  409. <Column size="60"/>
  410. <Column size="80"/>
  411. <Column size="64"/>
  412. <Column size="56"/>
  413. <Column size="56"/>
  414. <Column size="80"/>
  415. <Column size="80"/>
  416. <Column size="80"/>
  417. <Column size="88"/>
  418. <Column size="80"/>
  419. <Column size="80"/>
  420. <Column size="80"/>
  421. <Column size="80"/>
  422. <Column size="80"/>
  423. <Column size="80"/>
  424. <Column size="80"/>
  425. <Column size="80"/>
  426. <Column size="80"/>
  427. <Column size="80"/>
  428. </Columns>
  429. <Rows>
  430. <Row size="55" band="head"/>
  431. <Row size="24"/>
  432. </Rows>
  433. <Band id="head">
  434. <Cell/>
  435. <Cell col="1" text="일시"/>
  436. <Cell col="2" text="병동"/>
  437. <Cell col="3" text="병실"/>
  438. <Cell col="4" text="환자명"/>
  439. <Cell col="5" text="등록번호"/>
  440. <Cell col="6" text="재원기간"/>
  441. <Cell col="7" text="ICU&#10;재실기간"/>
  442. <Cell col="8" text="활력징후 측정(V/S : manual)" wordwrap="word"/>
  443. <Cell col="9" text="감시 및 측정(monitoring)" wordwrap="word"/>
  444. <Cell col="10" text="활동(Activities of daily living)" wordwrap="word"/>
  445. <Cell col="11" text="영양(feeding)" wordwrap="word"/>
  446. <Cell col="12" text="정맥주입 및 약물요법(iv theraphy &amp; medication)" wordwrap="word"/>
  447. <Cell col="13" colspan="2" text="치료 및 시술(Treatment &amp; Procedure - 30분 이상)" wordwrap="word"/>
  448. <Cell col="15" text="호흡치료(Respiratory therapy)" wordwrap="word"/>
  449. <Cell col="16" text="교육 및 정서적 지지(Teaching &amp; emotional support)" wordwrap="word"/>
  450. <Cell col="17" text="지속적 요구"/>
  451. <Cell col="18" text="Treatment&#10;procedure"/>
  452. <Cell col="19" text="CPCR"/>
  453. <Cell col="20" text="총점"/>
  454. <Cell col="21" text="분류군"/>
  455. </Band>
  456. <Band id="body">
  457. <Cell celltype="head" expr="expr:currow + 1"/>
  458. <Cell col="1" style="align:center middle;" text="bind:execdt" mask="expr:!utlf_isNull(execdt) ? '####-##-## ##:##' : ''"/>
  459. <Cell col="2" style="align:center middle;" text="bind:wardnm"/>
  460. <Cell col="3" style="align:center middle;" text="bind:roomcd"/>
  461. <Cell col="4" style="align:center middle;" text="bind:hngnm"/>
  462. <Cell col="5" style="align:center middle;" text="bind:pid"/>
  463. <Cell col="6" style="align:center middle;" text="bind:hd"/>
  464. <Cell col="7" style="align:center middle;" text="bind:icu"/>
  465. <Cell col="8" style="align:center middle;" text="bind:timsval11"/>
  466. <Cell col="9" style="align:center middle;" text="bind:timsval12"/>
  467. <Cell col="10" style="align:center middle;" text="bind:timsval13"/>
  468. <Cell col="11" style="align:center middle;" text="bind:timsval14"/>
  469. <Cell col="12" style="align:center middle;" text="bind:timsval15"/>
  470. <Cell col="13" style="align:center middle;" text="bind:timsval16"/>
  471. <Cell col="14" style="align:center middle;" text="bind:timsval17"/>
  472. <Cell col="15" style="align:center middle;" text="bind:timsval18"/>
  473. <Cell col="16" style="align:center middle;" text="bind:timsval19"/>
  474. <Cell col="17" style="align:center middle;" text="bind:timsval20"/>
  475. <Cell col="18" style="align:center middle;" text="bind:timsval06"/>
  476. <Cell col="19" style="align:center middle;" text="bind:timsval10"/>
  477. <Cell col="20" style="align:center middle;" text="bind:totpnt"/>
  478. <Cell col="21" style="align:center middle;" text="bind:resultcd"/>
  479. </Band>
  480. </Format>
  481. </Formats>
  482. </Grid>
  483. <Static text="중환자-중환자상세분류 화면" position="absolute 480 475 636 495" id="caption13" visible="false" anchor="default"/>
  484. </Layout>
  485. </Layouts>
  486. </Tabpage>
  487. <Tabpage text="" id="case5" scrollbars="none">
  488. <Layouts>
  489. <Layout>
  490. <Grid position="absolute 0 3 545 29" id="grd_totalward" class="datagrid0" binddataset="ds_main_gridgrup_bspnttotal" anchor="default" scrollbars="none">
  491. <Formats>
  492. <Format id="default">
  493. <Columns>
  494. <Column size="0"/>
  495. <Column size="0"/>
  496. <Column size="0"/>
  497. <Column size="0"/>
  498. <Column size="0"/>
  499. <Column size="0"/>
  500. <Column size="0"/>
  501. <Column size="0"/>
  502. <Column size="0"/>
  503. <Column size="0"/>
  504. <Column size="0"/>
  505. <Column size="0"/>
  506. <Column size="0"/>
  507. <Column size="0"/>
  508. <Column size="0"/>
  509. <Column size="0"/>
  510. <Column size="0"/>
  511. <Column size="0"/>
  512. <Column size="0"/>
  513. <Column size="0"/>
  514. </Columns>
  515. <Rows>
  516. <Row size="0" band="head"/>
  517. <Row size="24"/>
  518. </Rows>
  519. <Band id="head">
  520. <Cell/>
  521. <Cell col="1"/>
  522. <Cell col="2"/>
  523. <Cell col="3"/>
  524. <Cell col="4"/>
  525. <Cell col="5"/>
  526. <Cell col="6"/>
  527. <Cell col="7"/>
  528. <Cell col="8"/>
  529. <Cell col="9"/>
  530. <Cell col="10"/>
  531. <Cell col="11"/>
  532. <Cell col="12"/>
  533. <Cell col="13"/>
  534. <Cell col="14"/>
  535. <Cell col="15"/>
  536. <Cell col="16"/>
  537. <Cell col="17"/>
  538. <Cell col="18"/>
  539. <Cell col="19"/>
  540. </Band>
  541. <Band id="body">
  542. <Cell style="align:center middle;background:#b5d3ffff;background2:#b5d3ffff;font:arial,9,bold;" text="bind:bspntnm0"/>
  543. <Cell col="1" style="align:center middle;" text="bind:total0"/>
  544. <Cell col="2" style="align:center middle;background:#b5d3ffff;background2:#b5d3ffff;font:arial,9,bold;" text="bind:bspntnm1"/>
  545. <Cell col="3" style="align:center middle;" text="bind:total1"/>
  546. <Cell col="4" style="align:center middle;background:#b5d3ffff;background2:#b5d3ffff;font:arial,9,bold;" text="bind:bspntnm2"/>
  547. <Cell col="5" style="align:center middle;" text="bind:total2"/>
  548. <Cell col="6" style="align:center middle;background:#b5d3ffff;background2:#b5d3ffff;font:arial,9,bold;" text="bind:bspntnm3"/>
  549. <Cell col="7" style="align:center middle;" text="bind:total3"/>
  550. <Cell col="8" style="align:center middle;background:#b5d3ffff;background2:#b5d3ffff;font:arial,9,bold;" text="bind:bspntnm4"/>
  551. <Cell col="9" style="align:center middle;" text="bind:total4"/>
  552. <Cell col="10" style="align:center middle;background:#b5d3ffff;background2:#b5d3ffff;font:arial,9,bold;" text="bind:bspntnm5"/>
  553. <Cell col="11" style="align:center middle;" text="bind:total5"/>
  554. <Cell col="12" style="align:center middle;background:#b5d3ffff;background2:#b5d3ffff;font:arial,9,bold;" text="bind:bspntnm6"/>
  555. <Cell col="13" style="align:center middle;" text="bind:total6"/>
  556. <Cell col="14" style="align:center middle;background:#b5d3ffff;background2:#b5d3ffff;font:arial,9,bold;" text="bind:bspntnm7"/>
  557. <Cell col="15" style="align:center middle;" text="bind:total7"/>
  558. <Cell col="16" style="align:center middle;background:#b5d3ffff;background2:#b5d3ffff;font:arial,9,bold;" text="bind:bspntnm8"/>
  559. <Cell col="17" style="align:center middle;" text="bind:total8"/>
  560. <Cell col="18" style="align:center middle;background:#b5d3ffff;background2:#b5d3ffff;font:arial,9,bold;" text="bind:bspntnm9"/>
  561. <Cell col="19" style="align:center middle;" text="bind:total9"/>
  562. </Band>
  563. </Format>
  564. </Formats>
  565. </Grid>
  566. <Grid position="absolute 0 30 931 620" id="grd_ward" class="datagrid2" visible="true" binddataset="ds_main_gridgrup_recpntlist" anchor="default">
  567. <Formats>
  568. <Format id="default">
  569. <Columns>
  570. <Column size="25"/>
  571. <Column size="100"/>
  572. <Column size="111"/>
  573. <Column size="60"/>
  574. <Column size="80"/>
  575. <Column size="64"/>
  576. <Column size="40"/>
  577. <Column size="74"/>
  578. <Column size="75"/>
  579. <Column size="75"/>
  580. <Column size="74"/>
  581. <Column size="75"/>
  582. <Column size="75"/>
  583. <Column size="75"/>
  584. <Column size="74"/>
  585. <Column size="75"/>
  586. <Column size="75"/>
  587. <Column size="75"/>
  588. <Column size="75"/>
  589. <Column size="74"/>
  590. <Column size="100"/>
  591. </Columns>
  592. <Rows>
  593. <Row size="40" band="head"/>
  594. <Row size="24"/>
  595. </Rows>
  596. <Band id="head">
  597. <Cell/>
  598. <Cell col="1" text="일시"/>
  599. <Cell col="2" text="병동"/>
  600. <Cell col="3" text="병실"/>
  601. <Cell col="4" text="환자명"/>
  602. <Cell col="5" text="등록번호"/>
  603. <Cell col="6" text="재원기간" wordwrap="word"/>
  604. <Cell col="7" text="위생관리"/>
  605. <Cell col="8" text="영양"/>
  606. <Cell col="9" text="배설"/>
  607. <Cell col="10" text="운동 및 활동"/>
  608. <Cell col="11" text="교육 및 자문"/>
  609. <Cell col="12" text="정서적 지지"/>
  610. <Cell col="13" text="의사소통 및 의식상태" wordwrap="word"/>
  611. <Cell col="14" text="치료 및 검사"/>
  612. <Cell col="15" text="투약"/>
  613. <Cell col="16" text="측정 및 관찰"/>
  614. <Cell col="17" text="환자관리를 위한 부서간 조정" wordwrap="word"/>
  615. <Cell col="18" text="퇴원 및 전동관리" wordwrap="word"/>
  616. <Cell col="19" text="총점"/>
  617. <Cell col="20" text="분류군"/>
  618. </Band>
  619. <Band id="body">
  620. <Cell celltype="head" expr="expr:currow + 1"/>
  621. <Cell col="1" style="align:center middle;" text="bind:execdt" mask="expr:!utlf_isNull(execdt) ? '####-##-## ##:##' : ''"/>
  622. <Cell col="2" style="align:center middle;" text="bind:wardnm"/>
  623. <Cell col="3" style="align:center middle;" text="bind:roomcd"/>
  624. <Cell col="4" style="align:center middle;" text="bind:hngnm"/>
  625. <Cell col="5" style="align:center middle;" text="bind:pid"/>
  626. <Cell col="6" style="align:center middle;" text="bind:hd"/>
  627. <Cell col="7" style="align:center middle;" text="bind:timsval01"/>
  628. <Cell col="8" style="align:center middle;" text="bind:timsval02"/>
  629. <Cell col="9" style="align:center middle;" text="bind:timsval03"/>
  630. <Cell col="10" style="align:center middle;" text="bind:timsval04"/>
  631. <Cell col="11" style="align:center middle;" text="bind:timsval05"/>
  632. <Cell col="12" style="align:center middle;" text="bind:timsval06"/>
  633. <Cell col="13" style="align:center middle;" text="bind:timsval07"/>
  634. <Cell col="14" style="align:center middle;" text="bind:timsval08"/>
  635. <Cell col="15" style="align:center middle;" text="bind:timsval09"/>
  636. <Cell col="16" style="align:center middle;" text="bind:timsval10"/>
  637. <Cell col="17" style="align:center middle;" text="bind:timsval11"/>
  638. <Cell col="18" style="align:center middle;" text="bind:timsval12"/>
  639. <Cell col="19" style="align:center middle;" text="bind:totpnt"/>
  640. <Cell col="20" style="align:center middle;" text="bind:resultcd"/>
  641. </Band>
  642. </Format>
  643. </Formats>
  644. </Grid>
  645. <Static text="병동-환자별상세분류 화면" position="absolute 470 475 656 495" id="caption14" visible="false" anchor="default"/>
  646. </Layout>
  647. </Layouts>
  648. </Tabpage>
  649. <Tabpage text="" id="case6" scrollbars="none">
  650. <Layouts>
  651. <Layout>
  652. <Grid position="absolute 0 0 931 620" align="align:center middle;" id="grd_basecare" binddataset="ds_main_gridgrup_basecarelist" anchor="default">
  653. <Formats>
  654. <Format id="default">
  655. <Columns>
  656. <Column size="25"/>
  657. <Column size="100"/>
  658. <Column size="121"/>
  659. <Column size="66"/>
  660. <Column size="100"/>
  661. <Column size="100"/>
  662. <Column size="64"/>
  663. <Column size="100"/>
  664. <Column size="100"/>
  665. <Column size="100"/>
  666. <Column size="100"/>
  667. <Column size="100"/>
  668. <Column size="100"/>
  669. <Column size="100"/>
  670. <Column size="100"/>
  671. <Column size="100"/>
  672. </Columns>
  673. <Rows>
  674. <Row size="24" band="head"/>
  675. <Row size="24" band="head"/>
  676. <Row size="24"/>
  677. </Rows>
  678. <Band id="head">
  679. <Cell rowspan="2"/>
  680. <Cell col="1" rowspan="2" text="일시"/>
  681. <Cell col="2" rowspan="2" text="병동"/>
  682. <Cell col="3" rowspan="2" text="병실"/>
  683. <Cell col="4" rowspan="2" text="환자명"/>
  684. <Cell col="5" rowspan="2" text="등록번호"/>
  685. <Cell col="6" rowspan="2" text="재원기간"/>
  686. <Cell col="7" rowspan="2" text="환자분류결과"/>
  687. <Cell col="8" colspan="3" text="항목별 평가결과"/>
  688. <Cell col="11" colspan="5" text="기본간호 항목"/>
  689. <Cell row="1" col="8" text="위생관리"/>
  690. <Cell row="1" col="9" text="영양"/>
  691. <Cell row="1" col="10" text="운동 및 활동"/>
  692. <Cell row="1" col="11" text="구강간호"/>
  693. <Cell row="1" col="12" text="세발간호"/>
  694. <Cell row="1" col="13" text="목욕간호"/>
  695. <Cell row="1" col="14" text="식사보조"/>
  696. <Cell row="1" col="15" text="배설간호"/>
  697. </Band>
  698. <Band id="body">
  699. <Cell celltype="head" expr="expr:currow + 1"/>
  700. <Cell col="1" style="align:center middle;" text="bind:execdt" mask="expr:!utlf_isNull(execdt) ? '####-##-## ##:##' : ''"/>
  701. <Cell col="2" text="bind:wardnm"/>
  702. <Cell col="3" text="bind:roomcd"/>
  703. <Cell col="4" text="bind:hngnm"/>
  704. <Cell col="5" text="bind:pid"/>
  705. <Cell col="6" text="bind:hd"/>
  706. <Cell col="7" style="align:center middle;" text="bind:resultcd"/>
  707. <Cell col="8" text="bind:timsval01"/>
  708. <Cell col="9" text="bind:timsval02"/>
  709. <Cell col="10" text="bind:timsval04"/>
  710. <Cell col="11" text="bind:gugang"/>
  711. <Cell col="12" text="bind:sebal"/>
  712. <Cell col="13" text="bind:mok"/>
  713. <Cell col="14" text="bind:sik"/>
  714. <Cell col="15" text="bind:besul"/>
  715. </Band>
  716. </Format>
  717. </Formats>
  718. </Grid>
  719. <Static text="중증도-병동-기본간호 화면" position="absolute 475 430 625 450" id="caption15" visible="false" anchor="default"/>
  720. </Layout>
  721. </Layouts>
  722. </Tabpage>
  723. <Tabpage text="" id="case7" scrollbars="none">
  724. <Layouts>
  725. <Layout>
  726. <Grid position="absolute 0 0 931 620" id="grd_fallseridiag" binddataset="ds_main_gridgrup_gridlist" anchor="default">
  727. <Formats>
  728. <Format id="default">
  729. <Columns>
  730. <Column size="25"/>
  731. <Column size="110"/>
  732. <Column size="109"/>
  733. <Column size="90"/>
  734. <Column size="91"/>
  735. <Column size="100"/>
  736. <Column size="91"/>
  737. <Column size="93"/>
  738. <Column size="93"/>
  739. <Column size="90"/>
  740. </Columns>
  741. <Rows>
  742. <Row size="24" band="head"/>
  743. <Row size="24"/>
  744. </Rows>
  745. <Band id="head">
  746. <Cell/>
  747. <Cell col="1" text="일시"/>
  748. <Cell col="2" text="병동"/>
  749. <Cell col="3" text="병실"/>
  750. <Cell col="4" text="환자명"/>
  751. <Cell col="5" text="등록번호"/>
  752. <Cell col="6" text="총점"/>
  753. <Cell col="7" text="분류군"/>
  754. <Cell col="8" text="진료과"/>
  755. <Cell col="9" text="입력자"/>
  756. </Band>
  757. <Band id="body">
  758. <Cell celltype="head" expr="expr:currow + 1"/>
  759. <Cell col="1" text="bind:execdt" mask="expr:!utlf_isNull(execdt) ? '####-##-## ##:##' : ''"/>
  760. <Cell col="2" style="align:center middle;" text="bind:wardnm"/>
  761. <Cell col="3" style="align:center middle;" text="bind:roomcd"/>
  762. <Cell col="4" style="align:center middle;" text="bind:hngnm"/>
  763. <Cell col="5" style="align:center middle;" text="bind:pid"/>
  764. <Cell col="6" style="align:center middle;" text="bind:total"/>
  765. <Cell col="7" text="bind:bspntnm"/>
  766. <Cell col="8" text="bind:deptnm"/>
  767. <Cell col="9" style="align:center middle;" text="bind:usernm"/>
  768. </Band>
  769. </Format>
  770. </Formats>
  771. </Grid>
  772. <Static text="낙상- 성인,아동 환자별 낙상" position="absolute 470 435 626 455" id="caption16" visible="false" anchor="default"/>
  773. </Layout>
  774. </Layouts>
  775. </Tabpage>
  776. <Tabpage text="" id="case8" scrollbars="none">
  777. <Layouts>
  778. <Layout>
  779. <Grid position="absolute 0 3 545 29" id="grd_totalfalladult" class="datagrid0" binddataset="ds_main_gridgrup_bspnttotal" anchor="default" scrollbars="none">
  780. <Formats>
  781. <Format id="default">
  782. <Columns>
  783. <Column size="0"/>
  784. <Column size="0"/>
  785. <Column size="0"/>
  786. <Column size="0"/>
  787. <Column size="0"/>
  788. <Column size="0"/>
  789. <Column size="0"/>
  790. <Column size="0"/>
  791. <Column size="0"/>
  792. <Column size="0"/>
  793. <Column size="0"/>
  794. <Column size="0"/>
  795. <Column size="0"/>
  796. <Column size="0"/>
  797. <Column size="0"/>
  798. <Column size="0"/>
  799. <Column size="0"/>
  800. <Column size="0"/>
  801. <Column size="0"/>
  802. <Column size="0"/>
  803. </Columns>
  804. <Rows>
  805. <Row size="0" band="head"/>
  806. <Row size="24"/>
  807. </Rows>
  808. <Band id="head">
  809. <Cell/>
  810. <Cell col="1"/>
  811. <Cell col="2"/>
  812. <Cell col="3"/>
  813. <Cell col="4"/>
  814. <Cell col="5"/>
  815. <Cell col="6"/>
  816. <Cell col="7"/>
  817. <Cell col="8"/>
  818. <Cell col="9"/>
  819. <Cell col="10"/>
  820. <Cell col="11"/>
  821. <Cell col="12"/>
  822. <Cell col="13"/>
  823. <Cell col="14"/>
  824. <Cell col="15"/>
  825. <Cell col="16"/>
  826. <Cell col="17"/>
  827. <Cell col="18"/>
  828. <Cell col="19"/>
  829. </Band>
  830. <Band id="body">
  831. <Cell style="align:center middle;background:#b5d3ffff;background2:#b5d3ffff;font:arial,9,bold;" text="bind:bspntnm0"/>
  832. <Cell col="1" style="align:center middle;" text="bind:total0"/>
  833. <Cell col="2" style="align:center middle;background:#b5d3ffff;background2:#b5d3ffff;font:arial,9,bold;" text="bind:bspntnm1"/>
  834. <Cell col="3" style="align:center middle;" text="bind:total1"/>
  835. <Cell col="4" style="align:center middle;background:#b5d3ffff;background2:#b5d3ffff;font:arial,9,bold;" text="bind:bspntnm2"/>
  836. <Cell col="5" style="align:center middle;" text="bind:total2"/>
  837. <Cell col="6" style="align:center middle;background:#b5d3ffff;background2:#b5d3ffff;font:arial,9,bold;" text="bind:bspntnm3"/>
  838. <Cell col="7" style="align:center middle;" text="bind:total3"/>
  839. <Cell col="8" style="align:center middle;background:#b5d3ffff;background2:#b5d3ffff;font:arial,9,bold;" text="bind:bspntnm4"/>
  840. <Cell col="9" style="align:center middle;" text="bind:total4"/>
  841. <Cell col="10" style="align:center middle;background:#b5d3ffff;background2:#b5d3ffff;font:arial,9,bold;" text="bind:bspntnm5"/>
  842. <Cell col="11" style="align:center middle;" text="bind:total5"/>
  843. <Cell col="12" style="align:center middle;background:#b5d3ffff;background2:#b5d3ffff;font:arial,9,bold;" text="bind:bspntnm6"/>
  844. <Cell col="13" style="align:center middle;" text="bind:total6"/>
  845. <Cell col="14" style="align:center middle;background:#b5d3ffff;background2:#b5d3ffff;font:arial,9,bold;" text="bind:bspntnm7"/>
  846. <Cell col="15" style="align:center middle;" text="bind:total7"/>
  847. <Cell col="16" style="align:center middle;background:#b5d3ffff;background2:#b5d3ffff;font:arial,9,bold;" text="bind:bspntnm8"/>
  848. <Cell col="17" style="align:center middle;" text="bind:total8"/>
  849. <Cell col="18" style="align:center middle;background:#b5d3ffff;background2:#b5d3ffff;font:arial,9,bold;" text="bind:bspntnm9"/>
  850. <Cell col="19" style="align:center middle;" text="bind:total9"/>
  851. </Band>
  852. </Format>
  853. </Formats>
  854. </Grid>
  855. <Grid position="absolute 0 30 931 620" id="grd_falladult" class="datagrid2" visible="true" binddataset="ds_main_gridgrup_recpntlist" anchor="default">
  856. <Formats>
  857. <Format id="default">
  858. <Columns>
  859. <Column size="25"/>
  860. <Column size="100"/>
  861. <Column size="109"/>
  862. <Column size="60"/>
  863. <Column size="80"/>
  864. <Column size="64"/>
  865. <Column size="40"/>
  866. <Column size="73"/>
  867. <Column size="74"/>
  868. <Column size="75"/>
  869. <Column size="75"/>
  870. <Column size="75"/>
  871. <Column size="74"/>
  872. <Column size="74"/>
  873. <Column size="74"/>
  874. <Column size="75"/>
  875. <Column size="85"/>
  876. <Column size="75"/>
  877. </Columns>
  878. <Rows>
  879. <Row size="30" band="head"/>
  880. <Row size="24"/>
  881. </Rows>
  882. <Band id="head">
  883. <Cell/>
  884. <Cell col="1" text="일시"/>
  885. <Cell col="2" text="병동"/>
  886. <Cell col="3" text="병실"/>
  887. <Cell col="4" text="환자명"/>
  888. <Cell col="5" text="등록번호"/>
  889. <Cell col="6" text="재원기간" wordwrap="word"/>
  890. <Cell col="7" text="나이"/>
  891. <Cell col="8" text="낙상과거력"/>
  892. <Cell col="9" text="보행장애"/>
  893. <Cell col="10" text="의식상태"/>
  894. <Cell col="11" text="의사소통"/>
  895. <Cell col="12" text="위험요인"/>
  896. <Cell col="13" text="만성질환"/>
  897. <Cell col="14" text="배뇨장애"/>
  898. <Cell col="15" text="약물"/>
  899. <Cell col="16" text="분류군"/>
  900. <Cell col="17" text="총점"/>
  901. </Band>
  902. <Band id="body">
  903. <Cell celltype="head" expr="expr:currow + 1"/>
  904. <Cell col="1" style="align:center middle;" text="bind:execdt" mask="expr:!utlf_isNull(execdt) ? '####-##-## ##:##' : ''"/>
  905. <Cell col="2" style="align:center middle;" text="bind:wardnm"/>
  906. <Cell col="3" style="align:center middle;" text="bind:roomcd"/>
  907. <Cell col="4" style="align:center middle;" text="bind:hngnm"/>
  908. <Cell col="5" style="align:center middle;" text="bind:pid"/>
  909. <Cell col="6" style="align:center middle;" text="bind:hd"/>
  910. <Cell col="7" style="align:center middle;" text="bind:timsval01"/>
  911. <Cell col="8" style="align:center middle;" text="bind:timsval02"/>
  912. <Cell col="9" style="align:center middle;" text="bind:timsval03"/>
  913. <Cell col="10" style="align:center middle;" text="bind:timsval04"/>
  914. <Cell col="11" style="align:center middle;" text="bind:timsval05"/>
  915. <Cell col="12" style="align:center middle;" text="bind:timsval06"/>
  916. <Cell col="13" style="align:center middle;" text="bind:timsval07"/>
  917. <Cell col="14" style="align:center middle;" text="bind:timsval08"/>
  918. <Cell col="15" style="align:center middle;" text="bind:timsval09"/>
  919. <Cell col="16" style="align:center middle;" text="bind:resultcd" combodataset="ds_main_gridgrup_bspntlist" combocodecol="cdid" combodatacol="cdnm"/>
  920. <Cell col="17" style="align:center middle;" text="bind:totpnt"/>
  921. </Band>
  922. </Format>
  923. </Formats>
  924. </Grid>
  925. <Static text="성인 낙상상세분류" position="absolute 520 460 626 480" id="caption17" visible="false" anchor="default"/>
  926. </Layout>
  927. </Layouts>
  928. </Tabpage>
  929. <Tabpage text="" id="case9" scrollbars="none">
  930. <Layouts>
  931. <Layout>
  932. <Grid position="absolute 0 3 545 29" id="grd_totalfallchild" class="datagrid0" binddataset="ds_main_gridgrup_bspnttotal" anchor="default" scrollbars="none">
  933. <Formats>
  934. <Format id="default">
  935. <Columns>
  936. <Column size="0"/>
  937. <Column size="0"/>
  938. <Column size="0"/>
  939. <Column size="0"/>
  940. <Column size="0"/>
  941. <Column size="0"/>
  942. <Column size="0"/>
  943. <Column size="0"/>
  944. <Column size="0"/>
  945. <Column size="0"/>
  946. <Column size="0"/>
  947. <Column size="0"/>
  948. <Column size="0"/>
  949. <Column size="0"/>
  950. <Column size="0"/>
  951. <Column size="0"/>
  952. <Column size="0"/>
  953. <Column size="0"/>
  954. <Column size="0"/>
  955. <Column size="0"/>
  956. </Columns>
  957. <Rows>
  958. <Row size="0" band="head"/>
  959. <Row size="24"/>
  960. </Rows>
  961. <Band id="head">
  962. <Cell/>
  963. <Cell col="1"/>
  964. <Cell col="2"/>
  965. <Cell col="3"/>
  966. <Cell col="4"/>
  967. <Cell col="5"/>
  968. <Cell col="6"/>
  969. <Cell col="7"/>
  970. <Cell col="8"/>
  971. <Cell col="9"/>
  972. <Cell col="10"/>
  973. <Cell col="11"/>
  974. <Cell col="12"/>
  975. <Cell col="13"/>
  976. <Cell col="14"/>
  977. <Cell col="15"/>
  978. <Cell col="16"/>
  979. <Cell col="17"/>
  980. <Cell col="18"/>
  981. <Cell col="19"/>
  982. </Band>
  983. <Band id="body">
  984. <Cell style="align:center middle;background:#b5d3ffff;background2:#b5d3ffff;font:arial,9,bold;" text="bind:bspntnm0"/>
  985. <Cell col="1" style="align:center middle;" text="bind:total0"/>
  986. <Cell col="2" style="align:center middle;background:#b5d3ffff;background2:#b5d3ffff;font:arial,9,bold;" text="bind:bspntnm1"/>
  987. <Cell col="3" style="align:center middle;" text="bind:total1"/>
  988. <Cell col="4" style="align:center middle;background:#b5d3ffff;background2:#b5d3ffff;font:arial,9,bold;" text="bind:bspntnm2"/>
  989. <Cell col="5" style="align:center middle;" text="bind:total2"/>
  990. <Cell col="6" style="align:center middle;background:#b5d3ffff;background2:#b5d3ffff;font:arial,9,bold;" text="bind:bspntnm3"/>
  991. <Cell col="7" style="align:center middle;" text="bind:total3"/>
  992. <Cell col="8" style="align:center middle;background:#b5d3ffff;background2:#b5d3ffff;font:arial,9,bold;" text="bind:bspntnm4"/>
  993. <Cell col="9" style="align:center middle;" text="bind:total4"/>
  994. <Cell col="10" style="align:center middle;background:#b5d3ffff;background2:#b5d3ffff;font:arial,9,bold;" text="bind:bspntnm5"/>
  995. <Cell col="11" style="align:center middle;" text="bind:total5"/>
  996. <Cell col="12" style="align:center middle;background:#b5d3ffff;background2:#b5d3ffff;font:arial,9,bold;" text="bind:bspntnm6"/>
  997. <Cell col="13" style="align:center middle;" text="bind:total6"/>
  998. <Cell col="14" style="align:center middle;background:#b5d3ffff;background2:#b5d3ffff;font:arial,9,bold;" text="bind:bspntnm7"/>
  999. <Cell col="15" style="align:center middle;" text="bind:total7"/>
  1000. <Cell col="16" style="align:center middle;background:#b5d3ffff;background2:#b5d3ffff;font:arial,9,bold;" text="bind:bspntnm8"/>
  1001. <Cell col="17" style="align:center middle;" text="bind:total8"/>
  1002. <Cell col="18" style="align:center middle;background:#b5d3ffff;background2:#b5d3ffff;font:arial,9,bold;" text="bind:bspntnm9"/>
  1003. <Cell col="19" style="align:center middle;" text="bind:total9"/>
  1004. </Band>
  1005. </Format>
  1006. </Formats>
  1007. </Grid>
  1008. <Grid position="absolute 0 30 931 620" id="grd_fallchild" class="datagrid2" visible="true" binddataset="ds_main_gridgrup_recpntlist" anchor="default">
  1009. <Formats>
  1010. <Format id="default">
  1011. <Columns>
  1012. <Column size="25"/>
  1013. <Column size="100"/>
  1014. <Column size="107"/>
  1015. <Column size="60"/>
  1016. <Column size="80"/>
  1017. <Column size="64"/>
  1018. <Column size="40"/>
  1019. <Column size="73"/>
  1020. <Column size="74"/>
  1021. <Column size="75"/>
  1022. <Column size="75"/>
  1023. <Column size="75"/>
  1024. <Column size="74"/>
  1025. <Column size="74"/>
  1026. <Column size="74"/>
  1027. <Column size="75"/>
  1028. <Column size="85"/>
  1029. <Column size="75"/>
  1030. </Columns>
  1031. <Rows>
  1032. <Row size="30" band="head"/>
  1033. <Row size="24"/>
  1034. </Rows>
  1035. <Band id="head">
  1036. <Cell/>
  1037. <Cell col="1" text="일시"/>
  1038. <Cell col="2" text="병동"/>
  1039. <Cell col="3" text="병실"/>
  1040. <Cell col="4" text="환자명"/>
  1041. <Cell col="5" text="등록번호"/>
  1042. <Cell col="6" text="재원기간" wordwrap="word"/>
  1043. <Cell col="7" text="나이"/>
  1044. <Cell col="8" text="활동상태"/>
  1045. <Cell col="9" text="행동상태"/>
  1046. <Cell col="10" text="건강상태"/>
  1047. <Cell col="11" text="진단명"/>
  1048. <Cell col="12" text="시설"/>
  1049. <Cell col="13" text="양육자와 관계" wordwrap="word"/>
  1050. <Cell col="14" text="낙상경험"/>
  1051. <Cell col="15" text="낙상교육"/>
  1052. <Cell col="16" text="분류군"/>
  1053. <Cell col="17" text="총점"/>
  1054. </Band>
  1055. <Band id="body">
  1056. <Cell celltype="head" expr="expr:currow + 1"/>
  1057. <Cell col="1" style="align:center middle;" text="bind:execdt" mask="expr:!utlf_isNull(execdt) ? '####-##-## ##:##' : ''"/>
  1058. <Cell col="2" style="align:center middle;" text="bind:wardnm"/>
  1059. <Cell col="3" style="align:center middle;" text="bind:roomcd"/>
  1060. <Cell col="4" style="align:center middle;" text="bind:hngnm"/>
  1061. <Cell col="5" style="align:center middle;" text="bind:pid"/>
  1062. <Cell col="6" style="align:center middle;" text="bind:hd"/>
  1063. <Cell col="7" style="align:center middle;" text="bind:timsval01"/>
  1064. <Cell col="8" style="align:center middle;" text="bind:timsval02"/>
  1065. <Cell col="9" style="align:center middle;" text="bind:timsval03"/>
  1066. <Cell col="10" style="align:center middle;" text="bind:timsval04"/>
  1067. <Cell col="11" style="align:center middle;" text="bind:timsval05"/>
  1068. <Cell col="12" style="align:center middle;" text="bind:timsval06"/>
  1069. <Cell col="13" style="align:center middle;" text="bind:timsval07"/>
  1070. <Cell col="14" style="align:center middle;" text="bind:timsval08"/>
  1071. <Cell col="15" style="align:center middle;" text="bind:timsval09"/>
  1072. <Cell col="16" style="align:center middle;" text="bind:resultcd" combodataset="ds_main_gridgrup_bspntlist" combocodecol="cdid" combodatacol="cdnm"/>
  1073. <Cell col="17" style="align:center middle;" text="bind:totpnt"/>
  1074. </Band>
  1075. </Format>
  1076. </Formats>
  1077. </Grid>
  1078. <Static text="낙상소아 상세분류" position="absolute 530 450 632 470" id="caption18" visible="false" anchor="default"/>
  1079. </Layout>
  1080. </Layouts>
  1081. </Tabpage>
  1082. <Tabpage text="" id="case10" scrollbars="none">
  1083. <Layouts>
  1084. <Layout>
  1085. <Grid position="absolute 0 0 931 620" id="grd_bedsrseridiag" binddataset="ds_main_gridgrup_gridlist" anchor="default">
  1086. <Formats>
  1087. <Format id="default">
  1088. <Columns>
  1089. <Column size="25"/>
  1090. <Column size="108"/>
  1091. <Column size="140"/>
  1092. <Column size="65"/>
  1093. <Column size="76"/>
  1094. <Column size="71"/>
  1095. <Column size="73"/>
  1096. <Column size="100"/>
  1097. <Column size="100"/>
  1098. <Column size="100"/>
  1099. </Columns>
  1100. <Rows>
  1101. <Row size="24" band="head"/>
  1102. <Row size="24"/>
  1103. </Rows>
  1104. <Band id="head">
  1105. <Cell/>
  1106. <Cell col="1" text="일시"/>
  1107. <Cell col="2" text="병동"/>
  1108. <Cell col="3" text="병실"/>
  1109. <Cell col="4" text="환자명"/>
  1110. <Cell col="5" text="등록번호"/>
  1111. <Cell col="6" text="총점"/>
  1112. <Cell col="7" text="분류군"/>
  1113. <Cell col="8" text="진료과"/>
  1114. <Cell col="9" text="입력자"/>
  1115. </Band>
  1116. <Band id="body">
  1117. <Cell celltype="head" expr="expr:currow + 1"/>
  1118. <Cell col="1" text="bind:execdt" mask="expr:!utlf_isNull(execdt) ? '####-##-## ##:##' : ''"/>
  1119. <Cell col="2" text="bind:wardnm"/>
  1120. <Cell col="3" text="bind:roomcd"/>
  1121. <Cell col="4" text="bind:hngnm"/>
  1122. <Cell col="5" text="bind:pid"/>
  1123. <Cell col="6" text="bind:total"/>
  1124. <Cell col="7" text="bind:bspntnm"/>
  1125. <Cell col="8" text="bind:deptnm"/>
  1126. <Cell col="9" text="bind:usernm"/>
  1127. </Band>
  1128. </Format>
  1129. </Formats>
  1130. </Grid>
  1131. <Static text="환자별욕창" position="absolute 525 440 625 460" id="caption19" visible="false" anchor="default"/>
  1132. </Layout>
  1133. </Layouts>
  1134. </Tabpage>
  1135. <Tabpage text="" id="case11" scrollbars="none">
  1136. <Layouts>
  1137. <Layout>
  1138. <Grid position="absolute 0 30 931 620" align="align:center middle;" id="grd_bedsr" class="datagrid2" visible="true" binddataset="ds_main_gridgrup_recpntlist" anchor="default">
  1139. <Formats>
  1140. <Format id="default">
  1141. <Columns>
  1142. <Column size="25"/>
  1143. <Column size="100"/>
  1144. <Column size="111"/>
  1145. <Column size="60"/>
  1146. <Column size="80"/>
  1147. <Column size="64"/>
  1148. <Column size="40"/>
  1149. <Column size="74"/>
  1150. <Column size="75"/>
  1151. <Column size="75"/>
  1152. <Column size="74"/>
  1153. <Column size="74"/>
  1154. <Column size="74"/>
  1155. <Column size="74"/>
  1156. <Column size="100"/>
  1157. </Columns>
  1158. <Rows>
  1159. <Row size="30" band="head"/>
  1160. <Row size="24"/>
  1161. </Rows>
  1162. <Band id="head">
  1163. <Cell/>
  1164. <Cell col="1" text="일시"/>
  1165. <Cell col="2" text="병동"/>
  1166. <Cell col="3" text="병실"/>
  1167. <Cell col="4" text="환자명"/>
  1168. <Cell col="5" text="등록번호"/>
  1169. <Cell col="6" text="재원기간" wordwrap="word"/>
  1170. <Cell col="7" text="감각인지"/>
  1171. <Cell col="8" text="습한정도"/>
  1172. <Cell col="9" text="활동정도"/>
  1173. <Cell col="10" text="기동력"/>
  1174. <Cell col="11" text="영양상태"/>
  1175. <Cell col="12" text="마찰력과응전력" wordwrap="word"/>
  1176. <Cell col="13" text="총점"/>
  1177. <Cell col="14" text="분류군"/>
  1178. </Band>
  1179. <Band id="body">
  1180. <Cell celltype="head" expr="expr:currow + 1"/>
  1181. <Cell col="1" style="align:center middle;" text="bind:execdt" mask="expr:!utlf_isNull(execdt) ? '####-##-## ##:##' : ''"/>
  1182. <Cell col="2" style="align:center middle;" text="bind:wardnm"/>
  1183. <Cell col="3" style="align:center middle;" text="bind:roomcd"/>
  1184. <Cell col="4" style="align:center middle;" text="bind:hngnm"/>
  1185. <Cell col="5" style="align:center middle;" text="bind:pid"/>
  1186. <Cell col="6" style="align:center middle;" text="bind:hd"/>
  1187. <Cell col="7" style="align:center middle;" text="bind:timsval01"/>
  1188. <Cell col="8" style="align:center middle;" text="bind:timsval02"/>
  1189. <Cell col="9" style="align:center middle;" text="bind:timsval03"/>
  1190. <Cell col="10" style="align:center middle;" text="bind:timsval04"/>
  1191. <Cell col="11" style="align:center middle;" text="bind:timsval05"/>
  1192. <Cell col="12" style="align:center middle;" text="bind:timsval06"/>
  1193. <Cell col="13" style="align:center middle;" text="bind:totpnt"/>
  1194. <Cell col="14" style="align:center middle;" text="bind:resultcd"/>
  1195. </Band>
  1196. </Format>
  1197. </Formats>
  1198. </Grid>
  1199. <Grid position="absolute 0 3 545 29" id="grd_totalbedsr" class="datagrid0" binddataset="ds_main_gridgrup_bspnttotal" anchor="default" scrollbars="none">
  1200. <Formats>
  1201. <Format id="default">
  1202. <Columns>
  1203. <Column size="0"/>
  1204. <Column size="0"/>
  1205. <Column size="0"/>
  1206. <Column size="0"/>
  1207. <Column size="0"/>
  1208. <Column size="0"/>
  1209. <Column size="0"/>
  1210. <Column size="0"/>
  1211. <Column size="0"/>
  1212. <Column size="0"/>
  1213. <Column size="0"/>
  1214. <Column size="0"/>
  1215. <Column size="0"/>
  1216. <Column size="0"/>
  1217. <Column size="0"/>
  1218. <Column size="0"/>
  1219. <Column size="0"/>
  1220. <Column size="0"/>
  1221. <Column size="0"/>
  1222. <Column size="0"/>
  1223. </Columns>
  1224. <Rows>
  1225. <Row size="0" band="head"/>
  1226. <Row size="24"/>
  1227. </Rows>
  1228. <Band id="head">
  1229. <Cell/>
  1230. <Cell col="1"/>
  1231. <Cell col="2"/>
  1232. <Cell col="3"/>
  1233. <Cell col="4"/>
  1234. <Cell col="5"/>
  1235. <Cell col="6"/>
  1236. <Cell col="7"/>
  1237. <Cell col="8"/>
  1238. <Cell col="9"/>
  1239. <Cell col="10"/>
  1240. <Cell col="11"/>
  1241. <Cell col="12"/>
  1242. <Cell col="13"/>
  1243. <Cell col="14"/>
  1244. <Cell col="15"/>
  1245. <Cell col="16"/>
  1246. <Cell col="17"/>
  1247. <Cell col="18"/>
  1248. <Cell col="19"/>
  1249. </Band>
  1250. <Band id="body">
  1251. <Cell style="align:center middle;background:#b5d3ffff;background2:#b5d3ffff;font:arial,9,bold;" text="bind:bspntnm0"/>
  1252. <Cell col="1" style="align:center middle;" text="bind:total0"/>
  1253. <Cell col="2" style="align:center middle;background:#b5d3ffff;background2:#b5d3ffff;font:arial,9,bold;" text="bind:bspntnm1"/>
  1254. <Cell col="3" style="align:center middle;" text="bind:total1"/>
  1255. <Cell col="4" style="align:center middle;background:#b5d3ffff;background2:#b5d3ffff;font:arial,9,bold;" text="bind:bspntnm2"/>
  1256. <Cell col="5" style="align:center middle;" text="bind:total2"/>
  1257. <Cell col="6" style="align:center middle;background:#b5d3ffff;background2:#b5d3ffff;font:arial,9,bold;" text="bind:bspntnm3"/>
  1258. <Cell col="7" style="align:center middle;" text="bind:total3"/>
  1259. <Cell col="8" style="align:center middle;background:#b5d3ffff;background2:#b5d3ffff;font:arial,9,bold;" text="bind:bspntnm4"/>
  1260. <Cell col="9" style="align:center middle;" text="bind:total4"/>
  1261. <Cell col="10" style="align:center middle;background:#b5d3ffff;background2:#b5d3ffff;font:arial,9,bold;" text="bind:bspntnm5"/>
  1262. <Cell col="11" style="align:center middle;" text="bind:total5"/>
  1263. <Cell col="12" style="align:center middle;background:#b5d3ffff;background2:#b5d3ffff;font:arial,9,bold;" text="bind:bspntnm6"/>
  1264. <Cell col="13" style="align:center middle;" text="bind:total6"/>
  1265. <Cell col="14" style="align:center middle;background:#b5d3ffff;background2:#b5d3ffff;font:arial,9,bold;" text="bind:bspntnm7"/>
  1266. <Cell col="15" style="align:center middle;" text="bind:total7"/>
  1267. <Cell col="16" style="align:center middle;background:#b5d3ffff;background2:#b5d3ffff;font:arial,9,bold;" text="bind:bspntnm8"/>
  1268. <Cell col="17" style="align:center middle;" text="bind:total8"/>
  1269. <Cell col="18" style="align:center middle;background:#b5d3ffff;background2:#b5d3ffff;font:arial,9,bold;" text="bind:bspntnm9"/>
  1270. <Cell col="19" style="align:center middle;" text="bind:total9"/>
  1271. </Band>
  1272. </Format>
  1273. </Formats>
  1274. </Grid>
  1275. <Static text="욕창상세분류" position="absolute 550 435 650 455" id="caption20" visible="false" anchor="default"/>
  1276. </Layout>
  1277. </Layouts>
  1278. </Tabpage>
  1279. <Tabpage text="" id="case12" scrollbars="none">
  1280. <Layouts>
  1281. <Layout>
  1282. <Grid position="absolute 0 0 931 620" align="align:center middle;" id="grd_totalwardterm" binddataset="ds_main_gridgrup_totalwardterm" anchor="default">
  1283. <Formats>
  1284. <Format id="default">
  1285. <Columns>
  1286. <Column size="25"/>
  1287. <Column size="115"/>
  1288. <Column size="100"/>
  1289. <Column size="0"/>
  1290. <Column size="0"/>
  1291. <Column size="0"/>
  1292. <Column size="0"/>
  1293. <Column size="0"/>
  1294. <Column size="0"/>
  1295. <Column size="0"/>
  1296. <Column size="0"/>
  1297. <Column size="0"/>
  1298. <Column size="0"/>
  1299. <Column size="0"/>
  1300. <Column size="0"/>
  1301. <Column size="0"/>
  1302. <Column size="0"/>
  1303. <Column size="0"/>
  1304. <Column size="0"/>
  1305. <Column size="0"/>
  1306. <Column size="0"/>
  1307. <Column size="0"/>
  1308. <Column size="0"/>
  1309. <Column size="0"/>
  1310. <Column size="0"/>
  1311. <Column size="0"/>
  1312. <Column size="0"/>
  1313. <Column size="0"/>
  1314. <Column size="0"/>
  1315. <Column size="0"/>
  1316. <Column size="0"/>
  1317. <Column size="0"/>
  1318. <Column size="0"/>
  1319. <Column size="0"/>
  1320. <Column size="0"/>
  1321. <Column size="0"/>
  1322. <Column size="0"/>
  1323. <Column size="0"/>
  1324. <Column size="0"/>
  1325. <Column size="0"/>
  1326. <Column size="0"/>
  1327. <Column size="0"/>
  1328. <Column size="0"/>
  1329. <Column size="100"/>
  1330. </Columns>
  1331. <Rows>
  1332. <Row size="24" band="head"/>
  1333. <Row size="24"/>
  1334. </Rows>
  1335. <Band id="head">
  1336. <Cell/>
  1337. <Cell col="1" text="병동"/>
  1338. <Cell col="2" text="병실"/>
  1339. <Cell col="3"/>
  1340. <Cell col="4"/>
  1341. <Cell col="5"/>
  1342. <Cell col="6"/>
  1343. <Cell col="7"/>
  1344. <Cell col="8"/>
  1345. <Cell col="9"/>
  1346. <Cell col="10"/>
  1347. <Cell col="11"/>
  1348. <Cell col="12"/>
  1349. <Cell col="13"/>
  1350. <Cell col="14"/>
  1351. <Cell col="15"/>
  1352. <Cell col="16"/>
  1353. <Cell col="17"/>
  1354. <Cell col="18"/>
  1355. <Cell col="19"/>
  1356. <Cell col="20"/>
  1357. <Cell col="21"/>
  1358. <Cell col="22"/>
  1359. <Cell col="23"/>
  1360. <Cell col="24"/>
  1361. <Cell col="25"/>
  1362. <Cell col="26"/>
  1363. <Cell col="27"/>
  1364. <Cell col="28"/>
  1365. <Cell col="29"/>
  1366. <Cell col="30"/>
  1367. <Cell col="31"/>
  1368. <Cell col="32"/>
  1369. <Cell col="33"/>
  1370. <Cell col="34"/>
  1371. <Cell col="35"/>
  1372. <Cell col="36"/>
  1373. <Cell col="37"/>
  1374. <Cell col="38"/>
  1375. <Cell col="39"/>
  1376. <Cell col="40"/>
  1377. <Cell col="41"/>
  1378. <Cell col="42"/>
  1379. <Cell col="43" text="계"/>
  1380. </Band>
  1381. <Band id="body">
  1382. <Cell celltype="head" expr="expr:currow + 1"/>
  1383. <Cell col="1" style="align:center middle;" text="bind:wardnm"/>
  1384. <Cell col="2" style="align:center middle;" text="bind:roomcd"/>
  1385. <Cell col="3" style="align:center middle;" text="bind:timsval01"/>
  1386. <Cell col="4" style="align:center middle;" text="bind:p01"/>
  1387. <Cell col="5" style="align:center middle;" text="bind:timsval02"/>
  1388. <Cell col="6" style="align:center middle;" text="bind:p02"/>
  1389. <Cell col="7" style="align:center middle;" text="bind:timsval03"/>
  1390. <Cell col="8" style="align:center middle;" text="bind:p03"/>
  1391. <Cell col="9" style="align:center middle;" text="bind:timsval04"/>
  1392. <Cell col="10" style="align:center middle;" text="bind:p04"/>
  1393. <Cell col="11" style="align:center middle;" text="bind:timsval05"/>
  1394. <Cell col="12" style="align:center middle;" text="bind:p05"/>
  1395. <Cell col="13" style="align:center middle;" text="bind:timsval06"/>
  1396. <Cell col="14" style="align:center middle;" text="bind:p06"/>
  1397. <Cell col="15" style="align:center middle;" text="bind:timsval07"/>
  1398. <Cell col="16" style="align:center middle;" text="bind:p07"/>
  1399. <Cell col="17" style="align:center middle;" text="bind:timsval08"/>
  1400. <Cell col="18" style="align:center middle;" text="bind:p08"/>
  1401. <Cell col="19" style="align:center middle;" text="bind:timsval09"/>
  1402. <Cell col="20" style="align:center middle;" text="bind:p09"/>
  1403. <Cell col="21" style="align:center middle;" text="bind:timsval10"/>
  1404. <Cell col="22" style="align:center middle;" text="bind:p10"/>
  1405. <Cell col="23" style="align:center middle;" text="bind:timsval11"/>
  1406. <Cell col="24" style="align:center middle;" text="bind:p11"/>
  1407. <Cell col="25" style="align:center middle;" text="bind:timsval12"/>
  1408. <Cell col="26" style="align:center middle;" text="bind:p12"/>
  1409. <Cell col="27" style="align:center middle;" text="bind:timsval13"/>
  1410. <Cell col="28" style="align:center middle;" text="bind:p13"/>
  1411. <Cell col="29" style="align:center middle;" text="bind:timsval14"/>
  1412. <Cell col="30" style="align:center middle;" text="bind:p14"/>
  1413. <Cell col="31" style="align:center middle;" text="bind:timsval15"/>
  1414. <Cell col="32" style="align:center middle;" text="bind:p15"/>
  1415. <Cell col="33" style="align:center middle;" text="bind:timsval16"/>
  1416. <Cell col="34" style="align:center middle;" text="bind:p16"/>
  1417. <Cell col="35" style="align:center middle;" text="bind:timsval17"/>
  1418. <Cell col="36" style="align:center middle;" text="bind:p17"/>
  1419. <Cell col="37" style="align:center middle;" text="bind:timsval18"/>
  1420. <Cell col="38" style="align:center middle;" text="bind:p18"/>
  1421. <Cell col="39" style="align:center middle;" text="bind:timsval19"/>
  1422. <Cell col="40" style="align:center middle;" text="bind:p19"/>
  1423. <Cell col="41" style="align:center middle;" text="bind:timsval20"/>
  1424. <Cell col="42" style="align:center middle;" text="bind:p20"/>
  1425. <Cell col="43" text="bind:cnt"/>
  1426. </Band>
  1427. </Format>
  1428. </Formats>
  1429. </Grid>
  1430. <Static text="중증도통계 - 기간별" position="absolute 550 450 662 470" id="caption21" visible="false" anchor="default"/>
  1431. </Layout>
  1432. </Layouts>
  1433. </Tabpage>
  1434. <Tabpage text="" id="case13" scrollbars="none">
  1435. <Layouts>
  1436. <Layout>
  1437. <Grid position="absolute 0 0 931 620" align="align:center middle;" id="grd_totalwardmon" binddataset="ds_main_gridgrup_totalwardterm" anchor="default">
  1438. <Formats>
  1439. <Format id="default">
  1440. <Columns>
  1441. <Column size="25"/>
  1442. <Column size="100"/>
  1443. <Column size="0"/>
  1444. <Column size="0"/>
  1445. <Column size="0"/>
  1446. <Column size="0"/>
  1447. <Column size="0"/>
  1448. <Column size="0"/>
  1449. <Column size="0"/>
  1450. <Column size="0"/>
  1451. <Column size="0"/>
  1452. <Column size="0"/>
  1453. <Column size="0"/>
  1454. <Column size="0"/>
  1455. <Column size="0"/>
  1456. <Column size="0"/>
  1457. <Column size="0"/>
  1458. <Column size="0"/>
  1459. <Column size="0"/>
  1460. <Column size="0"/>
  1461. <Column size="0"/>
  1462. <Column size="0"/>
  1463. <Column size="0"/>
  1464. <Column size="0"/>
  1465. <Column size="0"/>
  1466. <Column size="0"/>
  1467. <Column size="0"/>
  1468. <Column size="0"/>
  1469. <Column size="0"/>
  1470. <Column size="0"/>
  1471. <Column size="0"/>
  1472. <Column size="0"/>
  1473. <Column size="0"/>
  1474. <Column size="0"/>
  1475. <Column size="0"/>
  1476. <Column size="0"/>
  1477. <Column size="0"/>
  1478. <Column size="0"/>
  1479. <Column size="0"/>
  1480. <Column size="0"/>
  1481. <Column size="0"/>
  1482. <Column size="0"/>
  1483. <Column size="100"/>
  1484. </Columns>
  1485. <Rows>
  1486. <Row size="24" band="head"/>
  1487. <Row size="24"/>
  1488. </Rows>
  1489. <Band id="head">
  1490. <Cell/>
  1491. <Cell col="1" text="일자"/>
  1492. <Cell col="2"/>
  1493. <Cell col="3"/>
  1494. <Cell col="4"/>
  1495. <Cell col="5"/>
  1496. <Cell col="6"/>
  1497. <Cell col="7"/>
  1498. <Cell col="8"/>
  1499. <Cell col="9"/>
  1500. <Cell col="10"/>
  1501. <Cell col="11"/>
  1502. <Cell col="12"/>
  1503. <Cell col="13"/>
  1504. <Cell col="14"/>
  1505. <Cell col="15"/>
  1506. <Cell col="16"/>
  1507. <Cell col="17"/>
  1508. <Cell col="18"/>
  1509. <Cell col="19"/>
  1510. <Cell col="20"/>
  1511. <Cell col="21"/>
  1512. <Cell col="22"/>
  1513. <Cell col="23"/>
  1514. <Cell col="24"/>
  1515. <Cell col="25"/>
  1516. <Cell col="26"/>
  1517. <Cell col="27"/>
  1518. <Cell col="28"/>
  1519. <Cell col="29"/>
  1520. <Cell col="30"/>
  1521. <Cell col="31"/>
  1522. <Cell col="32"/>
  1523. <Cell col="33"/>
  1524. <Cell col="34"/>
  1525. <Cell col="35"/>
  1526. <Cell col="36"/>
  1527. <Cell col="37"/>
  1528. <Cell col="38"/>
  1529. <Cell col="39"/>
  1530. <Cell col="40"/>
  1531. <Cell col="41"/>
  1532. <Cell col="42" text="계"/>
  1533. </Band>
  1534. <Band id="body">
  1535. <Cell celltype="head" expr="expr:currow + 1"/>
  1536. <Cell col="1" style="align:center middle;" text="bind:execdd"/>
  1537. <Cell col="2" style="align:center middle;" text="bind:timsval01"/>
  1538. <Cell col="3" style="align:center middle;" text="bind:p01"/>
  1539. <Cell col="4" style="align:center middle;" text="bind:timsval02"/>
  1540. <Cell col="5" style="align:center middle;" text="bind:p02"/>
  1541. <Cell col="6" style="align:center middle;" text="bind:timsval03"/>
  1542. <Cell col="7" style="align:center middle;" text="bind:p03"/>
  1543. <Cell col="8" style="align:center middle;" text="bind:timsval04"/>
  1544. <Cell col="9" style="align:center middle;" text="bind:p04"/>
  1545. <Cell col="10" style="align:center middle;" text="bind:timsval05"/>
  1546. <Cell col="11" style="align:center middle;" text="bind:p05"/>
  1547. <Cell col="12" style="align:center middle;" text="bind:timsval06"/>
  1548. <Cell col="13" style="align:center middle;" text="bind:p06"/>
  1549. <Cell col="14" style="align:center middle;" text="bind:timsval07"/>
  1550. <Cell col="15" style="align:center middle;" text="bind:p07"/>
  1551. <Cell col="16" style="align:center middle;" text="bind:timsval08"/>
  1552. <Cell col="17" style="align:center middle;" text="bind:p08"/>
  1553. <Cell col="18" style="align:center middle;" text="bind:timsval09"/>
  1554. <Cell col="19" style="align:center middle;" text="bind:p09"/>
  1555. <Cell col="20" style="align:center middle;" text="bind:timsval10"/>
  1556. <Cell col="21" style="align:center middle;" text="bind:p10"/>
  1557. <Cell col="22" text="bind:timsval11"/>
  1558. <Cell col="23" style="align:center middle;" text="bind:p11"/>
  1559. <Cell col="24" style="align:center middle;" text="bind:timsval12"/>
  1560. <Cell col="25" style="align:center middle;" text="bind:p12"/>
  1561. <Cell col="26" style="align:center middle;" text="bind:timsval13"/>
  1562. <Cell col="27" style="align:center middle;" text="bind:p13"/>
  1563. <Cell col="28" style="align:center middle;" text="bind:timsval14"/>
  1564. <Cell col="29" style="align:center middle;" text="bind:p14"/>
  1565. <Cell col="30" style="align:center middle;" text="bind:timsval15"/>
  1566. <Cell col="31" style="align:center middle;" text="bind:p15"/>
  1567. <Cell col="32" style="align:center middle;" text="bind:timsval16"/>
  1568. <Cell col="33" style="align:center middle;" text="bind:p16"/>
  1569. <Cell col="34" style="align:center middle;" text="bind:timsval17"/>
  1570. <Cell col="35" style="align:center middle;" text="bind:p17"/>
  1571. <Cell col="36" style="align:center middle;" text="bind:timsval18"/>
  1572. <Cell col="37" style="align:center middle;" text="bind:p18"/>
  1573. <Cell col="38" style="align:center middle;" text="bind:timsval19"/>
  1574. <Cell col="39" style="align:center middle;" text="bind:p19"/>
  1575. <Cell col="40" style="align:center middle;" text="bind:timsval20"/>
  1576. <Cell col="41" style="align:center middle;" text="bind:p20"/>
  1577. <Cell col="42" text="bind:cnt"/>
  1578. </Band>
  1579. </Format>
  1580. </Formats>
  1581. </Grid>
  1582. <Static text="중증도통계 월간" position="absolute 545 465 663 485" id="caption22" visible="false" anchor="default"/>
  1583. </Layout>
  1584. </Layouts>
  1585. </Tabpage>
  1586. <Tabpage text="" id="case14" scrollbars="none">
  1587. <Layouts>
  1588. <Layout>
  1589. <Grid position="absolute 0 0 931 620" align="align:center middle;" id="grd_totalwardyear" binddataset="ds_main_gridgrup_totalwardterm" anchor="default">
  1590. <Formats>
  1591. <Format id="default">
  1592. <Columns>
  1593. <Column size="25"/>
  1594. <Column size="100"/>
  1595. <Column size="0"/>
  1596. <Column size="0"/>
  1597. <Column size="0"/>
  1598. <Column size="0"/>
  1599. <Column size="0"/>
  1600. <Column size="0"/>
  1601. <Column size="0"/>
  1602. <Column size="0"/>
  1603. <Column size="0"/>
  1604. <Column size="0"/>
  1605. <Column size="0"/>
  1606. <Column size="0"/>
  1607. <Column size="0"/>
  1608. <Column size="0"/>
  1609. <Column size="0"/>
  1610. <Column size="0"/>
  1611. <Column size="0"/>
  1612. <Column size="0"/>
  1613. <Column size="0"/>
  1614. <Column size="0"/>
  1615. <Column size="0"/>
  1616. <Column size="0"/>
  1617. <Column size="0"/>
  1618. <Column size="0"/>
  1619. <Column size="0"/>
  1620. <Column size="0"/>
  1621. <Column size="0"/>
  1622. <Column size="0"/>
  1623. <Column size="0"/>
  1624. <Column size="0"/>
  1625. <Column size="0"/>
  1626. <Column size="0"/>
  1627. <Column size="0"/>
  1628. <Column size="0"/>
  1629. <Column size="0"/>
  1630. <Column size="0"/>
  1631. <Column size="0"/>
  1632. <Column size="0"/>
  1633. <Column size="0"/>
  1634. <Column size="0"/>
  1635. <Column size="100"/>
  1636. </Columns>
  1637. <Rows>
  1638. <Row size="24" band="head"/>
  1639. <Row size="24"/>
  1640. </Rows>
  1641. <Band id="head">
  1642. <Cell/>
  1643. <Cell col="1" text="일자"/>
  1644. <Cell col="2"/>
  1645. <Cell col="3"/>
  1646. <Cell col="4"/>
  1647. <Cell col="5"/>
  1648. <Cell col="6"/>
  1649. <Cell col="7"/>
  1650. <Cell col="8"/>
  1651. <Cell col="9"/>
  1652. <Cell col="10"/>
  1653. <Cell col="11"/>
  1654. <Cell col="12"/>
  1655. <Cell col="13"/>
  1656. <Cell col="14"/>
  1657. <Cell col="15"/>
  1658. <Cell col="16"/>
  1659. <Cell col="17"/>
  1660. <Cell col="18"/>
  1661. <Cell col="19"/>
  1662. <Cell col="20"/>
  1663. <Cell col="21"/>
  1664. <Cell col="22"/>
  1665. <Cell col="23"/>
  1666. <Cell col="24"/>
  1667. <Cell col="25"/>
  1668. <Cell col="26"/>
  1669. <Cell col="27"/>
  1670. <Cell col="28"/>
  1671. <Cell col="29"/>
  1672. <Cell col="30"/>
  1673. <Cell col="31"/>
  1674. <Cell col="32"/>
  1675. <Cell col="33"/>
  1676. <Cell col="34"/>
  1677. <Cell col="35"/>
  1678. <Cell col="36"/>
  1679. <Cell col="37"/>
  1680. <Cell col="38"/>
  1681. <Cell col="39"/>
  1682. <Cell col="40"/>
  1683. <Cell col="41"/>
  1684. <Cell col="42" text="계"/>
  1685. </Band>
  1686. <Band id="body">
  1687. <Cell celltype="head" expr="expr:currow + 1"/>
  1688. <Cell col="1" style="align:center middle;" text="bind:execdd"/>
  1689. <Cell col="2" style="align:center middle;" text="bind:timsval01"/>
  1690. <Cell col="3" style="align:center middle;" text="bind:p01"/>
  1691. <Cell col="4" style="align:center middle;" text="bind:timsval02"/>
  1692. <Cell col="5" style="align:center middle;" text="bind:p02"/>
  1693. <Cell col="6" style="align:center middle;" text="bind:timsval03"/>
  1694. <Cell col="7" style="align:center middle;" text="bind:p03"/>
  1695. <Cell col="8" style="align:center middle;" text="bind:timsval04"/>
  1696. <Cell col="9" style="align:center middle;" text="bind:p04"/>
  1697. <Cell col="10" tstyle="align:center middle;" ext="bind:timsval05"/>
  1698. <Cell col="11" style="align:center middle;" text="bind:p05"/>
  1699. <Cell col="12" style="align:center middle;" text="bind:timsval06"/>
  1700. <Cell col="13" style="align:center middle;" text="bind:p06"/>
  1701. <Cell col="14" style="align:center middle;" text="bind:timsval07"/>
  1702. <Cell col="15" style="align:center middle;" text="bind:p07"/>
  1703. <Cell col="16" style="align:center middle;" text="bind:timsval08"/>
  1704. <Cell col="17" style="align:center middle;" text="bind:p08"/>
  1705. <Cell col="18" style="align:center middle;" text="bind:timsval09"/>
  1706. <Cell col="19" style="align:center middle;" text="bind:p09"/>
  1707. <Cell col="20" style="align:center middle;" text="bind:timsval10"/>
  1708. <Cell col="21" style="align:center middle;" text="bind:p10"/>
  1709. <Cell col="22" style="align:center middle;" text="bind:timsval11"/>
  1710. <Cell col="23" style="align:center middle;" text="bind:p11"/>
  1711. <Cell col="24" style="align:center middle;" text="bind:timsval12"/>
  1712. <Cell col="25" style="align:center middle;" text="bind:p12"/>
  1713. <Cell col="26" style="align:center middle;" text="bind:timsval13"/>
  1714. <Cell col="27" style="align:center middle;" text="bind:p13"/>
  1715. <Cell col="28" style="align:center middle;" text="bind:timsval14"/>
  1716. <Cell col="29" style="align:center middle;" text="bind:p14"/>
  1717. <Cell col="30" style="align:center middle;" text="bind:timsval15"/>
  1718. <Cell col="31" style="align:center middle;" text="bind:p15"/>
  1719. <Cell col="32" style="align:center middle;" text="bind:timsval16"/>
  1720. <Cell col="33" style="align:center middle;" text="bind:p16"/>
  1721. <Cell col="34" style="align:center middle;" text="bind:timsval17"/>
  1722. <Cell col="35" style="align:center middle;" text="bind:p17"/>
  1723. <Cell col="36" style="align:center middle;" text="bind:timsval18"/>
  1724. <Cell col="37" style="align:center middle;" text="bind:p18"/>
  1725. <Cell col="38" style="align:center middle;" text="bind:timsval19"/>
  1726. <Cell col="39" style="align:center middle;" text="bind:p19"/>
  1727. <Cell col="40" style="align:center middle;" text="bind:timsval20"/>
  1728. <Cell col="41" style="align:center middle;" text="bind:p20"/>
  1729. <Cell col="42" text="bind:cnt"/>
  1730. </Band>
  1731. </Format>
  1732. </Formats>
  1733. </Grid>
  1734. <Static text="중증도 통계 년간" position="absolute 535 475 635 495" id="caption23" visible="false" anchor="default"/>
  1735. </Layout>
  1736. </Layouts>
  1737. </Tabpage>
  1738. <Tabpage text="" id="case15" scrollbars="none">
  1739. <Layouts>
  1740. <Layout>
  1741. <Grid position="absolute 0 0 931 620" align="align:center middle;" id="grd_totalserterm" binddataset="ds_main_gridgrup_totalserterm" anchor="default">
  1742. <Formats>
  1743. <Format id="default">
  1744. <Columns>
  1745. <Column size="25"/>
  1746. <Column size="118"/>
  1747. <Column size="100"/>
  1748. <Column size="100"/>
  1749. <Column size="100"/>
  1750. <Column size="100"/>
  1751. </Columns>
  1752. <Rows>
  1753. <Row size="24" band="head"/>
  1754. <Row size="24"/>
  1755. </Rows>
  1756. <Band id="head">
  1757. <Cell/>
  1758. <Cell col="1" text="병동"/>
  1759. <Cell col="2" text="분류군"/>
  1760. <Cell col="3" text="분류군(%)"/>
  1761. <Cell col="4" text="인원"/>
  1762. <Cell col="5" text="계"/>
  1763. </Band>
  1764. <Band id="body">
  1765. <Cell celltype="head" expr="expr:currow + 1"/>
  1766. <Cell col="1" text="bind:wardnm"/>
  1767. <Cell col="2" text="bind:bspntnm"/>
  1768. <Cell col="3" text="bind:bspntpnm"/>
  1769. <Cell col="4" text="bind:cnt"/>
  1770. <Cell col="5" text="bind:cnt"/>
  1771. </Band>
  1772. </Format>
  1773. </Formats>
  1774. </Grid>
  1775. <Static text="중증도통계 - 기간별(중환자)" position="absolute 485 450 643 470" id="caption24" visible="false" anchor="default"/>
  1776. </Layout>
  1777. </Layouts>
  1778. </Tabpage>
  1779. <Tabpage text="" id="case16" scrollbars="none">
  1780. <Layouts>
  1781. <Layout>
  1782. <Grid position="absolute 0 3 545 29" id="grd_bloodroom" class="datagrid0" binddataset="ds_main_gridgrup_bspnttotal" anchor="default" scrollbars="none">
  1783. <Formats>
  1784. <Format id="default">
  1785. <Columns>
  1786. <Column size="0"/>
  1787. <Column size="0"/>
  1788. <Column size="0"/>
  1789. <Column size="0"/>
  1790. <Column size="0"/>
  1791. <Column size="0"/>
  1792. <Column size="0"/>
  1793. <Column size="0"/>
  1794. <Column size="0"/>
  1795. <Column size="0"/>
  1796. <Column size="0"/>
  1797. <Column size="0"/>
  1798. <Column size="0"/>
  1799. <Column size="0"/>
  1800. <Column size="0"/>
  1801. <Column size="0"/>
  1802. <Column size="0"/>
  1803. <Column size="0"/>
  1804. <Column size="0"/>
  1805. <Column size="0"/>
  1806. </Columns>
  1807. <Rows>
  1808. <Row size="0" band="head"/>
  1809. <Row size="24"/>
  1810. </Rows>
  1811. <Band id="head">
  1812. <Cell/>
  1813. <Cell col="1"/>
  1814. <Cell col="2"/>
  1815. <Cell col="3"/>
  1816. <Cell col="4"/>
  1817. <Cell col="5"/>
  1818. <Cell col="6"/>
  1819. <Cell col="7"/>
  1820. <Cell col="8"/>
  1821. <Cell col="9"/>
  1822. <Cell col="10"/>
  1823. <Cell col="11"/>
  1824. <Cell col="12"/>
  1825. <Cell col="13"/>
  1826. <Cell col="14"/>
  1827. <Cell col="15"/>
  1828. <Cell col="16"/>
  1829. <Cell col="17"/>
  1830. <Cell col="18"/>
  1831. <Cell col="19"/>
  1832. </Band>
  1833. <Band id="body">
  1834. <Cell style="align:center middle;background:#b5d3ffff;background2:#b5d3ffff;font:arial,9,bold;" text="bind:bspntnm0"/>
  1835. <Cell col="1" style="align:center middle;" text="bind:total0"/>
  1836. <Cell col="2" style="align:center middle;background:#b5d3ffff;background2:#b5d3ffff;font:arial,9,bold;" text="bind:bspntnm1"/>
  1837. <Cell col="3" style="align:center middle;" text="bind:total1"/>
  1838. <Cell col="4" style="align:center middle;background:#b5d3ffff;background2:#b5d3ffff;font:arial,9,bold;" text="bind:bspntnm2"/>
  1839. <Cell col="5" style="align:center middle;" text="bind:total2"/>
  1840. <Cell col="6" style="align:center middle;background:#b5d3ffff;background2:#b5d3ffff;font:arial,9,bold;" text="bind:bspntnm3"/>
  1841. <Cell col="7" style="align:center middle;" text="bind:total3"/>
  1842. <Cell col="8" style="align:center middle;background:#b5d3ffff;background2:#b5d3ffff;font:arial,9,bold;" text="bind:bspntnm4"/>
  1843. <Cell col="9" style="align:center middle;" text="bind:total4"/>
  1844. <Cell col="10" style="align:center middle;background:#b5d3ffff;background2:#b5d3ffff;font:arial,9,bold;" text="bind:bspntnm5"/>
  1845. <Cell col="11" style="align:center middle;" text="bind:total5"/>
  1846. <Cell col="12" style="align:center middle;background:#b5d3ffff;background2:#b5d3ffff;font:arial,9,bold;" text="bind:bspntnm6"/>
  1847. <Cell col="13" style="align:center middle;" text="bind:total6"/>
  1848. <Cell col="14" style="align:center middle;background:#b5d3ffff;background2:#b5d3ffff;font:arial,9,bold;" text="bind:bspntnm7"/>
  1849. <Cell col="15" style="align:center middle;" text="bind:total7"/>
  1850. <Cell col="16" style="align:center middle;background:#b5d3ffff;background2:#b5d3ffff;font:arial,9,bold;" text="bind:bspntnm8"/>
  1851. <Cell col="17" style="align:center middle;" text="bind:total8"/>
  1852. <Cell col="18" style="align:center middle;background:#b5d3ffff;background2:#b5d3ffff;font:arial,9,bold;" text="bind:bspntnm9"/>
  1853. <Cell col="19" style="align:center middle;" text="bind:total9"/>
  1854. </Band>
  1855. </Format>
  1856. </Formats>
  1857. </Grid>
  1858. <Grid position="absolute 0 30 931 620" id="grd_bloodroom1" class="datagrid2" visible="true" binddataset="ds_main_gridgrup_recpntlist" anchor="default">
  1859. <Formats>
  1860. <Format id="default">
  1861. <Columns>
  1862. <Column size="25"/>
  1863. <Column size="100"/>
  1864. <Column size="0"/>
  1865. <Column size="0"/>
  1866. <Column size="80"/>
  1867. <Column size="64"/>
  1868. <Column size="0"/>
  1869. <Column size="74"/>
  1870. <Column size="75"/>
  1871. <Column size="75"/>
  1872. <Column size="74"/>
  1873. <Column size="75"/>
  1874. <Column size="75"/>
  1875. <Column size="75"/>
  1876. <Column size="74"/>
  1877. <Column size="75"/>
  1878. <Column size="75"/>
  1879. <Column size="75"/>
  1880. <Column size="75"/>
  1881. <Column size="75"/>
  1882. <Column size="75"/>
  1883. <Column size="75"/>
  1884. <Column size="75"/>
  1885. <Column size="100"/>
  1886. </Columns>
  1887. <Rows>
  1888. <Row size="30" band="head"/>
  1889. <Row size="24"/>
  1890. </Rows>
  1891. <Band id="head">
  1892. <Cell/>
  1893. <Cell col="1" text="일시"/>
  1894. <Cell col="2" text="병동"/>
  1895. <Cell col="3" text="병실"/>
  1896. <Cell col="4" text="환자명"/>
  1897. <Cell col="5" text="등록번호"/>
  1898. <Cell col="6" text="재원기간"/>
  1899. <Cell col="7" text="사회 정서적지지" wordwrap="word"/>
  1900. <Cell col="8" text="투석 전 후&#10;이동"/>
  1901. <Cell col="9" text="혈관통로&#10;확보"/>
  1902. <Cell col="10" text="혈류속도&#10;유지"/>
  1903. <Cell col="11" text="투석회로&#10;개방 유지"/>
  1904. <Cell col="12" text="지혈"/>
  1905. <Cell col="13" text="교육"/>
  1906. <Cell col="14" text="자문"/>
  1907. <Cell col="15" text="활력증후&#10;측정"/>
  1908. <Cell col="16" text="안전간호&#10;(의식상태)"/>
  1909. <Cell col="17" text="체중측정"/>
  1910. <Cell col="18" text="투석중&#10;합병증"/>
  1911. <Cell col="19" text="투석 중 추가적 간호활동" wordwrap="word"/>
  1912. <Cell col="20" text="검사"/>
  1913. <Cell col="21" text="감염관리"/>
  1914. <Cell col="22" text="총점"/>
  1915. <Cell col="23" text="분류군"/>
  1916. </Band>
  1917. <Band id="body">
  1918. <Cell celltype="head" expr="expr:currow + 1"/>
  1919. <Cell col="1" style="align:center middle;" text="bind:execdt" mask="expr:!utlf_isNull(execdt) ? '####-##-## ##:##' : ''"/>
  1920. <Cell col="2" style="align:center middle;" text="bind:wardnm"/>
  1921. <Cell col="3" style="align:center middle;" text="bind:roomcd"/>
  1922. <Cell col="4" style="align:center middle;" text="bind:hngnm"/>
  1923. <Cell col="5" style="align:center middle;" text="bind:pid"/>
  1924. <Cell col="6" style="align:center middle;" text="bind:hd"/>
  1925. <Cell col="7" style="align:center middle;" text="bind:timsval01"/>
  1926. <Cell col="8" style="align:center middle;" text="bind:timsval02"/>
  1927. <Cell col="9" style="align:center middle;" text="bind:timsval03"/>
  1928. <Cell col="10" style="align:center middle;" text="bind:timsval04"/>
  1929. <Cell col="11" style="align:center middle;" text="bind:timsval05"/>
  1930. <Cell col="12" style="align:center middle;" text="bind:timsval06"/>
  1931. <Cell col="13" style="align:center middle;" text="bind:timsval07"/>
  1932. <Cell col="14" style="align:center middle;" text="bind:timsval08"/>
  1933. <Cell col="15" style="align:center middle;" text="bind:timsval09"/>
  1934. <Cell col="16" style="align:center middle;" text="bind:timsval10"/>
  1935. <Cell col="17" style="align:center middle;" text="bind:timsval11"/>
  1936. <Cell col="18" style="align:center middle;" text="bind:timsval12"/>
  1937. <Cell col="19" style="align:center middle;" text="bind:timsval13"/>
  1938. <Cell col="20" style="align:center middle;" text="bind:timsval14"/>
  1939. <Cell col="21" style="align:center middle;" text="bind:timsval15"/>
  1940. <Cell col="22" style="align:center middle;" text="bind:totpnt"/>
  1941. <Cell col="23" style="align:center middle;" text="bind:resultcd"/>
  1942. </Band>
  1943. </Format>
  1944. </Formats>
  1945. </Grid>
  1946. </Layout>
  1947. </Layouts>
  1948. </Tabpage>
  1949. <Tabpage text="" id="case17" scrollbars="none">
  1950. <Layouts>
  1951. <Layout>
  1952. <Grid position="absolute 0 3 545 29" id="grd_dmpg" class="datagrid0" binddataset="ds_main_gridgrup_bspnttotal" anchor="default" scrollbars="none">
  1953. <Formats>
  1954. <Format id="default">
  1955. <Columns>
  1956. <Column size="0"/>
  1957. <Column size="0"/>
  1958. <Column size="0"/>
  1959. <Column size="0"/>
  1960. <Column size="0"/>
  1961. <Column size="0"/>
  1962. <Column size="0"/>
  1963. <Column size="0"/>
  1964. <Column size="0"/>
  1965. <Column size="0"/>
  1966. <Column size="0"/>
  1967. <Column size="0"/>
  1968. <Column size="0"/>
  1969. <Column size="0"/>
  1970. <Column size="0"/>
  1971. <Column size="0"/>
  1972. <Column size="0"/>
  1973. <Column size="0"/>
  1974. <Column size="0"/>
  1975. <Column size="0"/>
  1976. </Columns>
  1977. <Rows>
  1978. <Row size="20" band="head"/>
  1979. <Row size="24"/>
  1980. </Rows>
  1981. <Band id="head">
  1982. <Cell/>
  1983. <Cell col="1"/>
  1984. <Cell col="2"/>
  1985. <Cell col="3"/>
  1986. <Cell col="4"/>
  1987. <Cell col="5"/>
  1988. <Cell col="6"/>
  1989. <Cell col="7"/>
  1990. <Cell col="8"/>
  1991. <Cell col="9"/>
  1992. <Cell col="10"/>
  1993. <Cell col="11"/>
  1994. <Cell col="12"/>
  1995. <Cell col="13"/>
  1996. <Cell col="14"/>
  1997. <Cell col="15"/>
  1998. <Cell col="16"/>
  1999. <Cell col="17"/>
  2000. <Cell col="18"/>
  2001. <Cell col="19"/>
  2002. </Band>
  2003. <Band id="body">
  2004. <Cell style="align:center middle;background:#b5d3ffff;background2:#b5d3ffff;font:arial,9,bold;" text="bind:bspntnm0"/>
  2005. <Cell col="1" style="align:center middle;" text="bind:total0"/>
  2006. <Cell col="2" style="align:center middle;background:#b5d3ffff;background2:#b5d3ffff;font:arial,9,bold;" text="bind:bspntnm1"/>
  2007. <Cell col="3" style="align:center middle;" text="bind:total1"/>
  2008. <Cell col="4" style="align:center middle;background:#b5d3ffff;background2:#b5d3ffff;font:arial,9,bold;" text="bind:bspntnm2"/>
  2009. <Cell col="5" style="align:center middle;" text="bind:total2"/>
  2010. <Cell col="6" style="align:center middle;background:#b5d3ffff;background2:#b5d3ffff;font:arial,9,bold;" text="bind:bspntnm3"/>
  2011. <Cell col="7" style="align:center middle;" text="bind:total3"/>
  2012. <Cell col="8" style="align:center middle;background:#b5d3ffff;background2:#b5d3ffff;font:arial,9,bold;" text="bind:bspntnm4"/>
  2013. <Cell col="9" style="align:center middle;" text="bind:total4"/>
  2014. <Cell col="10" style="align:center middle;background:#b5d3ffff;background2:#b5d3ffff;font:arial,9,bold;" text="bind:bspntnm5"/>
  2015. <Cell col="11" style="align:center middle;" text="bind:total5"/>
  2016. <Cell col="12" style="align:center middle;background:#b5d3ffff;background2:#b5d3ffff;font:arial,9,bold;" text="bind:bspntnm6"/>
  2017. <Cell col="13" style="align:center middle;" text="bind:total6"/>
  2018. <Cell col="14" style="align:center middle;background:#b5d3ffff;background2:#b5d3ffff;font:arial,9,bold;" text="bind:bspntnm7"/>
  2019. <Cell col="15" style="align:center middle;" text="bind:total7"/>
  2020. <Cell col="16" style="align:center middle;background:#b5d3ffff;background2:#b5d3ffff;font:arial,9,bold;" text="bind:bspntnm8"/>
  2021. <Cell col="17" style="align:center middle;" text="bind:total8"/>
  2022. <Cell col="18" style="align:center middle;background:#b5d3ffff;background2:#b5d3ffff;font:arial,9,bold;" text="bind:bspntnm9"/>
  2023. <Cell col="19" style="align:center middle;" text="bind:total9"/>
  2024. </Band>
  2025. </Format>
  2026. </Formats>
  2027. </Grid>
  2028. <Grid position="absolute 0 30 931 620" align="align:center middle;" id="grd_dmpg1" binddataset="ds_main_gridgrup_gridlist" anchor="default">
  2029. <Formats>
  2030. <Format id="default">
  2031. <Columns>
  2032. <Column size="25"/>
  2033. <Column size="140"/>
  2034. <Column size="140"/>
  2035. <Column size="140"/>
  2036. <Column size="140"/>
  2037. <Column size="140"/>
  2038. <Column size="140"/>
  2039. </Columns>
  2040. <Rows>
  2041. <Row size="24" band="head"/>
  2042. <Row size="24"/>
  2043. </Rows>
  2044. <Band id="head">
  2045. <Cell/>
  2046. <Cell col="1" text="일시"/>
  2047. <Cell col="2" text="환자명"/>
  2048. <Cell col="3" text="등록번호"/>
  2049. <Cell col="4" text="총점"/>
  2050. <Cell col="5" text="분류군"/>
  2051. <Cell col="6" text="유지환자 등록일자"/>
  2052. </Band>
  2053. <Band id="body">
  2054. <Cell celltype="head" expr="expr:currow + 1"/>
  2055. <Cell col="1" style="align:center middle;" text="bind:execdt" mask="expr:!utlf_isNull(execdt) ? '####-##-## ##:##' : ''"/>
  2056. <Cell col="2" style="align:center middle;" text="bind:hngnm"/>
  2057. <Cell col="3" style="align:center middle;" text="bind:pid"/>
  2058. <Cell col="4" style="align:center middle;" text="bind:total"/>
  2059. <Cell col="5" style="align:center middle;" text="bind:bspntnm"/>
  2060. <Cell col="6" style="align:center middle;" text="bind:maintepatrgstdd"/>
  2061. </Band>
  2062. </Format>
  2063. </Formats>
  2064. </Grid>
  2065. </Layout>
  2066. </Layouts>
  2067. </Tabpage>
  2068. </Tabpages>
  2069. </Tab>
  2070. <Static id="Static01" position="absolute 202 43 388 71" style="background:#f8f8f8ff;"/>
  2071. <Div position="absolute 1 5 1132 60" align="align:center top;" id="grp_sea" anchor="default">
  2072. <Layouts>
  2073. <Layout>
  2074. <Shape position="absolute 0 0 1129 55" id="roundrect1" class="roundrect_search" type="roundrectangle" anchor="default" style="fillbrush:solid #f8f8f8ff true;"/>
  2075. <Static text="조회 일자 :" position="absolute 10 9 86 26" id="caption2" class="search_name" anchor="default"/>
  2076. <Calendar position="absolute 92 8 177 27" id="ipt_schfromdd" class="input_search" anchor="default" autoselect="true" autoskip="true" dateformat="yyyy-MM-dd ddd" value="null"/>
  2077. <Static text="~" position="absolute 181 12 193 25" id="caption3" anchor="default"/>
  2078. <Calendar position="absolute 197 8 282 27" id="ipt_schtodd" class="input_search" anchor="default" autoselect="true" autoskip="true"/>
  2079. <Static text="부 서 :" position="absolute 297 9 348 26" id="caption1" class="search_name" anchor="default"/>
  2080. <Static text="분 류 :" position="absolute 672 9 722 26" id="caption4" class="search_name" anchor="default"/>
  2081. <Combo position="absolute 728 8 803 27" id="cmb_bspntcd" class="combo_search" visible="true" innerdataset="@ds_main_gridgrup_bspntlist" datacolumn="cdnm" codecolumn="cdid" anchor="default" onitemchanged="group5_grp_sea_cmb_bspntcd_onitemchanged"/>
  2082. <Static text="재원 기간 :" position="absolute 10 32 86 49" id="caption7" class="search_name" anchor="default"/>
  2083. <Button position="absolute 1012 16 1068 38" id="btn_ref" class="btn1" text="조회" anchor="default" onclick="group5_grp_sea_btn_ref_onclick"/>
  2084. <Shape position="absolute 1003 5 1009 49" linetype="vertical" id="line13" class="line_4" anchor="default"/>
  2085. <Static text="~" position="absolute 147 33 159 46" id="caption8" anchor="default"/>
  2086. <CheckBox position="absolute 216 32 286 52" id="chk_dschyn" anchor="default" text="퇴원제외" truevalue="Y"/>
  2087. <Combo position="absolute 535 8 660 27" id="cmb_wardcd" class="combo_search" innerdataset="@ds_hidden_wardcdgrup_wardcdgruplist" datacolumn="wardnm" codecolumn="wardcd" anchor="default" onitemchanged="group5_grp_sea_cmb_wardcd_onitemchanged"/>
  2088. <Button position="absolute 1071 16 1127 38" id="button2" class="btn7" text="엑셀" anchor="default" onclick="group5_grp_sea_button2_onclick"/>
  2089. <Radio position="absolute 352 9 547 29" id="radio1" columncount="-1" codecolumn="codecolumn" datacolumn="datacolumn" anchor="default" rowcount="-1" onitemchanged="group5_grp_sea_radio1_onitemchanged">
  2090. <Dataset id="innerdataset">
  2091. <ColumnInfo>
  2092. <Column id="codecolumn"/>
  2093. <Column id="datacolumn"/>
  2094. </ColumnInfo>
  2095. <Rows>
  2096. <Row>
  2097. <Col id="codecolumn">1</Col>
  2098. <Col id="datacolumn">병동</Col>
  2099. </Row>
  2100. <Row>
  2101. <Col id="codecolumn">2</Col>
  2102. <Col id="datacolumn">중환자실</Col>
  2103. </Row>
  2104. <Row>
  2105. <Col id="codecolumn">3</Col>
  2106. <Col id="datacolumn">혈액투석</Col>
  2107. </Row>
  2108. </Rows>
  2109. </Dataset>
  2110. </Radio>
  2111. <Edit position="absolute 92 31 142 50" id="input1" anchor="default"/>
  2112. <Edit position="absolute 163 31 213 50" id="input2" anchor="default"/>
  2113. </Layout>
  2114. </Layouts>
  2115. </Div>
  2116. </Layout>
  2117. </Layouts>
  2118. </Div>
  2119. <Static text="[표]" position="absolute 1033 722 1133 734" align="align:right middle;" id="caption25" style="align:right middle;"/>
  2120. </Layout>
  2121. </Layouts>
  2122. <Objects>
  2123. <Dataset id="ds_main_gridgrup_gridlist" firefirstcount="0" firenextcount="0" useclientlayout="false" updatecontrol="true" enableevent="true" loadkeymode="keep" loadfiltermode="keep" reversesubsum="false">
  2124. <ColumnInfo>
  2125. <Column id="recdd" type="STRING" size="256" sumtext="기록일자"/>
  2126. <Column id="execdt" type="STRING" size="256" sumtext="일시"/>
  2127. <Column id="wardnm" type="STRING" size="256" sumtext="병동코드"/>
  2128. <Column id="roomcd" type="STRING" size="256" sumtext="병실코드"/>
  2129. <Column id="pid" type="STRING" size="256" sumtext="등록번호"/>
  2130. <Column id="hngnm" type="STRING" size="256" sumtext="환자명"/>
  2131. <Column id="total" type="STRING" size="256" sumtext="성별/나이"/>
  2132. <Column id="bspntnm" type="STRING" size="256" sumtext="혈액형"/>
  2133. <Column id="deptnm" type="STRING" size="256" sumtext="상태"/>
  2134. <Column id="usernm" type="STRING" size="256" sumtext="기록자"/>
  2135. <Column id="careinrmdd" type="STRING" size="256" sumtext="간호확인일"/>
  2136. <Column id="indd" type="STRING" size="256" sumtext="입원일자"/>
  2137. <Column id="dschdd" type="STRING" size="256" sumtext="퇴실일자"/>
  2138. <Column id="hd" type="STRING" size="256" sumtext="재원일수"/>
  2139. <Column id="inpath" type="STRING" size="256" sumtext="입원경로"/>
  2140. <Column id="maintepatrgstdd" type="STRING" size="256" sumtext="유지환자등록일자"/>
  2141. </ColumnInfo>
  2142. <Rows>
  2143. <Row/>
  2144. </Rows>
  2145. </Dataset>
  2146. <Dataset id="ds_main_pntgrup" firefirstcount="0" firenextcount="0" useclientlayout="false" updatecontrol="true" enableevent="true" loadkeymode="keep" loadfiltermode="keep" reversesubsum="false"/>
  2147. <Dataset id="ds_cond" firefirstcount="0" firenextcount="0" useclientlayout="false" updatecontrol="true" enableevent="true" loadkeymode="keep" loadfiltermode="keep" reversesubsum="false" oncolumnchanged="ds_cond_oncolumnchanged">
  2148. <ColumnInfo>
  2149. <!-- 조회 시작, 종료일 -->
  2150. <Column id="schfromdd" type="STRING" size="256"/>
  2151. <Column id="schtodd" type="STRING" size="256"/>
  2152. <!-- 병동코드 -->
  2153. <Column id="wardcd" type="STRING" size="256"/>
  2154. <!-- 분류군 -->
  2155. <Column id="infromdd" type="STRING" size="256"/>
  2156. <Column id="intodd" type="STRING" size="256"/>
  2157. <!-- 퇴원제외구분 -->
  2158. <Column id="dschflag" type="STRING" size="256"/>
  2159. <Column id="bspntcd" type="STRING" size="256"/>
  2160. <Column id="recflag" type="STRING" size="256"/>
  2161. <Column id="clsflag" type="STRING" size="256"/>
  2162. <Column id="schcode" type="STRING" size="256"/>
  2163. <!-- 재원기간 시작, 종료일 -->
  2164. <!-- 호출할 그룹코드(treeview의 grupcd) -->
  2165. <Column id="rdoflag" type="STRING" size="256"/>
  2166. <Column id="schtomon" type="STRING" size="256"/>
  2167. <Column id="schtoyear" type="STRING" size="256"/>
  2168. <Column id="wardflag" type="STRING" size="256"/>
  2169. </ColumnInfo>
  2170. <Rows>
  2171. <Row>
  2172. <Col id="schfromdd"/>
  2173. <Col id="schtodd"/>
  2174. <Col id="wardcd"/>
  2175. <Col id="infromdd"/>
  2176. <Col id="intodd"/>
  2177. <Col id="dschflag"/>
  2178. <Col id="bspntcd"/>
  2179. <Col id="recflag"/>
  2180. <Col id="clsflag"/>
  2181. <Col id="schcode"/>
  2182. <Col id="rdoflag">A</Col>
  2183. <Col id="schtomon"/>
  2184. <Col id="schtoyear"/>
  2185. <Col id="wardflag"/>
  2186. </Row>
  2187. </Rows>
  2188. </Dataset>
  2189. <Dataset id="ds_hidden_wardcdgrup_wardcdgruplist" firefirstcount="0" firenextcount="0" useclientlayout="false" updatecontrol="true" enableevent="true" loadkeymode="keep" loadfiltermode="keep" reversesubsum="false">
  2190. <ColumnInfo>
  2191. <Column id="wardnm" type="STRING" size="256"/>
  2192. <Column id="wardcd" type="STRING" size="256"/>
  2193. </ColumnInfo>
  2194. <Rows>
  2195. <Row/>
  2196. </Rows>
  2197. </Dataset>
  2198. <Dataset id="ds_hidden_pntgrup_pntgruplist" firefirstcount="0" firenextcount="0" useclientlayout="false" updatecontrol="true" enableevent="true" loadkeymode="keep" loadfiltermode="keep" reversesubsum="false">
  2199. <ColumnInfo>
  2200. <Column id="cd" type="STRING" size="256"/>
  2201. <Column id="nm" type="STRING" size="256"/>
  2202. </ColumnInfo>
  2203. <Rows>
  2204. <Row/>
  2205. </Rows>
  2206. </Dataset>
  2207. <Dataset id="ds_hidden_recflaglist" firefirstcount="0" firenextcount="0" useclientlayout="false" updatecontrol="true" enableevent="true" loadkeymode="keep" loadfiltermode="keep" reversesubsum="false">
  2208. <ColumnInfo>
  2209. <Column id="icugrup" type="STRING" size="256"/>
  2210. <Column id="fallgrup" type="STRING" size="256"/>
  2211. <Column id="bedsoregrup" type="STRING" size="256"/>
  2212. </ColumnInfo>
  2213. <Rows>
  2214. <Row/>
  2215. </Rows>
  2216. </Dataset>
  2217. <Dataset id="ds_hidden_treeitem_serdiaglist" firefirstcount="0" firenextcount="0" useclientlayout="false" updatecontrol="true" enableevent="true" loadkeymode="keep" loadfiltermode="keep" reversesubsum="false">
  2218. <ColumnInfo>
  2219. <Column id="depth" type="STRING" size="256"/>
  2220. <Column id="hngnm" type="STRING" size="256"/>
  2221. <Column id="grupcd" type="STRING" size="256"/>
  2222. <Column id="recflag" type="STRING" size="256"/>
  2223. <Column id="clsflag" type="STRING" size="256"/>
  2224. <Column id="sqlflag" type="STRING" size="256"/>
  2225. </ColumnInfo>
  2226. <Rows>
  2227. <Row>
  2228. <Col id="depth">1</Col>
  2229. <Col id="hngnm">중증도</Col>
  2230. <Col id="grupcd">0</Col>
  2231. <Col id="recflag">1</Col>
  2232. <Col id="clsflag">0</Col>
  2233. <Col id="sqlflag">0</Col>
  2234. </Row>
  2235. <Row>
  2236. <Col id="depth">2</Col>
  2237. <Col id="hngnm">환자별 중증도</Col>
  2238. <Col id="grupcd">1</Col>
  2239. <Col id="recflag">1</Col>
  2240. <Col id="clsflag">'2','4'</Col>
  2241. <Col id="sqlflag">1</Col>
  2242. </Row>
  2243. <Row>
  2244. <Col id="depth">2</Col>
  2245. <Col id="hngnm">환자별 상세분류</Col>
  2246. <Col id="grupcd">3</Col>
  2247. <Col id="recflag">1</Col>
  2248. <Col id="clsflag">'2','4'</Col>
  2249. <Col id="sqlflag">4</Col>
  2250. </Row>
  2251. <Row>
  2252. <Col id="depth">2</Col>
  2253. <Col id="hngnm">기본간호</Col>
  2254. <Col id="grupcd">6</Col>
  2255. <Col id="recflag">1</Col>
  2256. <Col id="clsflag">'1','5'</Col>
  2257. <Col id="sqlflag">5</Col>
  2258. </Row>
  2259. <Row>
  2260. <Col id="depth">2</Col>
  2261. <Col id="hngnm">중증도 통계-기간별</Col>
  2262. <Col id="grupcd">12</Col>
  2263. <Col id="recflag">1</Col>
  2264. <Col id="clsflag">1</Col>
  2265. <Col id="sqlflag">6</Col>
  2266. </Row>
  2267. <Row>
  2268. <Col id="depth">2</Col>
  2269. <Col id="hngnm">중증도 통계-월간</Col>
  2270. <Col id="grupcd">13</Col>
  2271. <Col id="recflag">1</Col>
  2272. <Col id="clsflag">1</Col>
  2273. <Col id="sqlflag">7</Col>
  2274. </Row>
  2275. <Row>
  2276. <Col id="depth">2</Col>
  2277. <Col id="hngnm">중증도 통계-년간</Col>
  2278. <Col id="grupcd">14</Col>
  2279. <Col id="recflag">1</Col>
  2280. <Col id="clsflag">1</Col>
  2281. <Col id="sqlflag">8</Col>
  2282. </Row>
  2283. <Row>
  2284. <Col id="depth">1</Col>
  2285. <Col id="hngnm">낙상</Col>
  2286. <Col id="grupcd">0</Col>
  2287. <Col id="recflag">2</Col>
  2288. <Col id="clsflag">0</Col>
  2289. <Col id="sqlflag">0</Col>
  2290. </Row>
  2291. <Row>
  2292. <Col id="depth">2</Col>
  2293. <Col id="hngnm">성인</Col>
  2294. <Col id="grupcd">0</Col>
  2295. <Col id="recflag">2</Col>
  2296. <Col id="clsflag">2</Col>
  2297. <Col id="sqlflag">0</Col>
  2298. </Row>
  2299. <Row>
  2300. <Col id="depth">3</Col>
  2301. <Col id="hngnm">환자별 낙상</Col>
  2302. <Col id="grupcd">7</Col>
  2303. <Col id="recflag">2</Col>
  2304. <Col id="clsflag">2</Col>
  2305. <Col id="sqlflag">1</Col>
  2306. </Row>
  2307. <Row>
  2308. <Col id="depth">3</Col>
  2309. <Col id="hngnm">낙상 상세분류</Col>
  2310. <Col id="grupcd">8</Col>
  2311. <Col id="recflag">2</Col>
  2312. <Col id="clsflag">2</Col>
  2313. <Col id="sqlflag">2b</Col>
  2314. </Row>
  2315. <Row>
  2316. <Col id="depth">2</Col>
  2317. <Col id="hngnm">아동</Col>
  2318. <Col id="grupcd">0</Col>
  2319. <Col id="recflag">2</Col>
  2320. <Col id="clsflag">1</Col>
  2321. <Col id="sqlflag">0</Col>
  2322. </Row>
  2323. <Row>
  2324. <Col id="depth">3</Col>
  2325. <Col id="hngnm">환자별 낙상</Col>
  2326. <Col id="grupcd">7</Col>
  2327. <Col id="recflag">2</Col>
  2328. <Col id="clsflag">1</Col>
  2329. <Col id="sqlflag">1</Col>
  2330. </Row>
  2331. <Row>
  2332. <Col id="depth">3</Col>
  2333. <Col id="hngnm">낙상 상세분류</Col>
  2334. <Col id="grupcd">9</Col>
  2335. <Col id="recflag">2</Col>
  2336. <Col id="clsflag">1</Col>
  2337. <Col id="sqlflag">2b</Col>
  2338. </Row>
  2339. <Row>
  2340. <Col id="depth">1</Col>
  2341. <Col id="hngnm">욕창</Col>
  2342. <Col id="grupcd">0</Col>
  2343. <Col id="recflag">3</Col>
  2344. <Col id="clsflag">0</Col>
  2345. <Col id="sqlflag">0</Col>
  2346. </Row>
  2347. <Row>
  2348. <Col id="depth">2</Col>
  2349. <Col id="hngnm">환자별 욕창</Col>
  2350. <Col id="grupcd">10</Col>
  2351. <Col id="recflag">3</Col>
  2352. <Col id="clsflag">1</Col>
  2353. <Col id="sqlflag">1</Col>
  2354. </Row>
  2355. <Row>
  2356. <Col id="depth">2</Col>
  2357. <Col id="hngnm">욕창 상세분류</Col>
  2358. <Col id="grupcd">11</Col>
  2359. <Col id="recflag">3</Col>
  2360. <Col id="clsflag">1</Col>
  2361. <Col id="sqlflag">2b</Col>
  2362. </Row>
  2363. </Rows>
  2364. </Dataset>
  2365. <Dataset id="ds_init_icucdgrup_icucdgruplist" firefirstcount="0" firenextcount="0" useclientlayout="false" updatecontrol="true" enableevent="true" loadkeymode="keep" loadfiltermode="keep" reversesubsum="false">
  2366. <ColumnInfo>
  2367. <Column id="wardnm" type="STRING" size="256"/>
  2368. <Column id="wardcd" type="STRING" size="256"/>
  2369. </ColumnInfo>
  2370. <Rows>
  2371. <Row/>
  2372. </Rows>
  2373. </Dataset>
  2374. <Dataset id="ds_main_gridgrup_bspntlist" firefirstcount="0" firenextcount="0" useclientlayout="false" updatecontrol="true" enableevent="true" loadkeymode="keep" loadfiltermode="keep" reversesubsum="false">
  2375. <ColumnInfo>
  2376. <Column id="cdnm" type="STRING" size="256"/>
  2377. <Column id="cdid" type="STRING" size="256"/>
  2378. </ColumnInfo>
  2379. </Dataset>
  2380. <Dataset id="ds_send" firefirstcount="0" firenextcount="0" useclientlayout="false" updatecontrol="true" enableevent="true" loadkeymode="keep" loadfiltermode="keep" reversesubsum="false"/>
  2381. <Dataset id="ds_main_gridgrup_titlewardterm" firefirstcount="0" firenextcount="0" useclientlayout="false" updatecontrol="true" enableevent="true" loadkeymode="keep" loadfiltermode="keep" reversesubsum="false"/>
  2382. <Dataset id="ds_main_gridgrup_totalwardterm" firefirstcount="0" firenextcount="0" useclientlayout="false" updatecontrol="true" enableevent="true" loadkeymode="keep" loadfiltermode="keep" reversesubsum="false"/>
  2383. <Dataset id="ds_main_gridgrup_totalserterm" firefirstcount="0" firenextcount="0" useclientlayout="false" updatecontrol="true" enableevent="true" loadkeymode="keep" loadfiltermode="keep" reversesubsum="false"/>
  2384. <Dataset id="ds_main_gridgrup_recpntlist" firefirstcount="0" firenextcount="0" useclientlayout="false" updatecontrol="true" enableevent="true" loadkeymode="keep" loadfiltermode="keep" reversesubsum="false"/>
  2385. <Dataset id="ds_main_gridgrup_titlelist" firefirstcount="0" firenextcount="0" useclientlayout="false" updatecontrol="true" enableevent="true" loadkeymode="keep" loadfiltermode="keep" reversesubsum="false"/>
  2386. <Dataset id="ds_main_gridgrup_bspnttotal" firefirstcount="0" firenextcount="0" useclientlayout="false" updatecontrol="true" enableevent="true" loadkeymode="keep" loadfiltermode="keep" reversesubsum="false"/>
  2387. <Dataset id="ds_main_gridgrup_basecarelist" firefirstcount="0" firenextcount="0" useclientlayout="false" updatecontrol="true" enableevent="true" loadkeymode="keep" loadfiltermode="keep" reversesubsum="false"/>
  2388. </Objects>
  2389. <Bind>
  2390. <BindItem id="item0" compid="group5.grp_sea2.cmb_wardcd2" propid="value" datasetid="ds_cond" columnid="wardcd"/>
  2391. <BindItem id="item1" compid="group5.grp_sea2.ipt_schtoyear" propid="value" datasetid="ds_cond" columnid="schtoyear"/>
  2392. <BindItem id="item2" compid="group5.grp_sea2.radio2" propid="value" datasetid="ds_cond" columnid="wardflag"/>
  2393. <BindItem id="item3" compid="group5.grp_sea2.ipt_schtomon" propid="value" datasetid="ds_cond" columnid="schtomon"/>
  2394. <BindItem id="item4" compid="group5.grp_sea.ipt_schfromdd" propid="value" datasetid="ds_cond" columnid="schfromdd"/>
  2395. <BindItem id="item5" compid="group5.grp_sea.ipt_schtodd" propid="value" datasetid="ds_cond" columnid="schtodd"/>
  2396. <BindItem id="item6" compid="group5.grp_sea.cmb_bspntcd" propid="value" datasetid="ds_cond" columnid="bspntcd"/>
  2397. <BindItem id="item7" compid="group5.grp_sea.chk_dschyn" propid="value" datasetid="ds_cond" columnid="dschflag"/>
  2398. <BindItem id="item8" compid="group5.grp_sea.cmb_wardcd" propid="value" datasetid="ds_cond" columnid="wardcd"/>
  2399. <BindItem id="item9" compid="group5.grp_sea.radio1" propid="value" datasetid="ds_cond" columnid="wardflag"/>
  2400. <BindItem id="item10" compid="group5.grp_sea.input1" propid="value" datasetid="ds_cond" columnid="infromdd"/>
  2401. <BindItem id="item11" compid="group5.grp_sea.input2" propid="value" datasetid="ds_cond" columnid="intodd"/>
  2402. <BindItem id="item12" compid="group5.switch1.case2.rdo_flag" propid="value" datasetid="ds_cond" columnid="rdoflag"/>
  2403. </Bind>
  2404. <Script type="xscript4.0"><![CDATA[/***************************************************************************************
  2405. * System Name :
  2406. * Job Name :
  2407. * Creator :
  2408. * Make Date : 2015-11-13
  2409. * Description :
  2410. *---------------------------------------------------------------------------------------
  2411. * Modify Date Modifier Modify Description
  2412. *---------------------------------------------------------------------------------------
  2413. * 2015-11-13 Live Converter TF->XP
  2414. *
  2415. *---------------------------------------------------------------------------------------
  2416. ****************************************************************************************/
  2417. include "com_commonxp::comm_main.xjs";
  2418. include "com_commodulexp::SSZFM00701.xjs";
  2419. include "emr_carerecxp::SMMNR07800.xjs";
  2420. var arErrorCode = new HashArray();
  2421. function cf_TRMNR07801(sSvcId, nErrorCode, sErrorMsg) {
  2422. arErrorCode.push(sSvcId, nErrorCode);
  2423. if(nErrorCode < 0) return;
  2424. utlf_addLog("***** cf_TRMNR07801 *****");
  2425. }
  2426. function cf_TRMNR07803(sSvcId, nErrorCode, sErrorMsg) {
  2427. arErrorCode.push(sSvcId, nErrorCode);
  2428. if(nErrorCode < 0) return;
  2429. utlf_addLog("***** cf_TRMNR07803 *****");
  2430. }
  2431. function cf_TRMNR07804(sSvcId, nErrorCode, sErrorMsg) {
  2432. arErrorCode.push(sSvcId, nErrorCode);
  2433. if(nErrorCode < 0) return;
  2434. utlf_addLog("***** cf_TRMNR07804 *****");
  2435. }
  2436. function cf_TRMNR07802(sSvcId, nErrorCode, sErrorMsg) {
  2437. arErrorCode.push(sSvcId, nErrorCode);
  2438. if(nErrorCode < 0) return;
  2439. utlf_addLog("***** cf_TRMNR07802 *****");
  2440. }
  2441. function SMMNR07800_oninit(obj:Form, e:InitEventInfo)
  2442. {
  2443. frmf_initForm(obj);
  2444. }
  2445. function SMMNR07800_onload(obj:Form, e:LoadEventInfo)
  2446. {
  2447. group5.switch1.tabindex = 9;
  2448. fInit();
  2449. }
  2450. function group5_grp_sea2_cmb_wardcd2_onitemchanged(obj:Combo, e:ItemChangeEventInfo)
  2451. {
  2452. fSearch();
  2453. }
  2454. function group5_grp_sea2_button1_onclick(obj:Button, e:ClickEventInfo)
  2455. {
  2456. fSearch();
  2457. }
  2458. function group5_grp_sea2_btn_excel_onclick(obj:Button, e:ClickEventInfo)
  2459. {
  2460. fSaveExcel();
  2461. }
  2462. function group5_grp_sea2_ipt_schtoyear_onchanged(obj:Calendar, e:ChangeEventInfo)
  2463. {
  2464. var schtoyear = ds_cond.getColumn(0, "schtoyear");
  2465. ds_cond.setColumn(0, "schtoyear", schtoyear.substring(0, 4));
  2466. fSearch();
  2467. }
  2468. function group5_grp_sea2_radio2_onitemchanged(obj:Radio, e:ItemChangeEventInfo)
  2469. {
  2470. if( ds_cond.getColumn(0, "wardflag") == "3") {
  2471. group5.grp_sea2.cmb_wardcd2.value ="";
  2472. group5.grp_sea2.cmb_wardcd2.visible = false;
  2473. } else {
  2474. group5.grp_sea2.cmb_wardcd2.visible = true;
  2475. fGetWard();
  2476. group5.grp_sea2.cmb_wardcd2.value = ds_hidden_wardcdgrup_wardcdgruplist.getColumn(0, "wardcd");
  2477. }
  2478. }
  2479. function group5_grp_sea2_ipt_schtomon_onchanged(obj:Calendar, e:ChangeEventInfo)
  2480. {
  2481. var schtoyear = ds_cond.getColumn(0, "schtomon");
  2482. ds_cond.setColumn(0, "schtomon", schtoyear.substring(0, 6));
  2483. fSearch();
  2484. }
  2485. function group5_grp_sea_cmb_bspntcd_onitemchanged(obj:Combo, e:ItemChangeEventInfo)
  2486. {
  2487. fSearch();
  2488. }
  2489. function group5_grp_sea_btn_ref_onclick(obj:Button, e:ClickEventInfo)
  2490. {
  2491. fSearch();
  2492. }
  2493. function group5_grp_sea_cmb_wardcd_onitemchanged(obj:Combo, e:ItemChangeEventInfo)
  2494. {
  2495. var wardcd = ds_cond.getColumn(0, "wardcd");
  2496. var trv_idx = ds_hidden_treeitem_serdiaglist.rowposition;
  2497. if(trv_idx == -1){
  2498. trv_idx = 3;//default
  2499. }
  2500. var recflag = ds_hidden_treeitem_serdiaglist.getColumn(trv_idx-1, "recflag");
  2501. //fGetClsFlag(wardcd, recflag); //20090319_SMY_주석처리
  2502. fSearch();
  2503. }
  2504. function group5_grp_sea_button2_onclick(obj:Button, e:ClickEventInfo)
  2505. {
  2506. fSaveExcel();
  2507. }
  2508. function group5_grp_sea_radio1_onitemchanged(obj:Radio, e:ItemChangeEventInfo)
  2509. {
  2510. if( ds_cond.getColumn(0, "wardflag") == "1") {
  2511. ds_cond.setColumn(0, "infromdd", '');
  2512. ds_cond.setColumn(0, "intodd", '');
  2513. group5.grp_sea.cmb_wardcd.visible = true;
  2514. fGetWard();
  2515. // input1.value ="";
  2516. // input2.value ="";
  2517. group5.grp_sea.caption7.visible = true;
  2518. group5.grp_sea.input1.visible = true;
  2519. group5.grp_sea.caption8.visible = true;
  2520. group5.grp_sea.input2.visible = true;
  2521. group5.grp_sea.chk_dschyn.visible = true;
  2522. group5.grp_sea.cmb_wardcd.value = ds_hidden_wardcdgrup_wardcdgruplist.getColumn(0, "wardcd");
  2523. } else if( ds_cond.getColumn(0, "wardflag") == "2") {
  2524. ds_cond.setColumn(0, "infromdd", '');
  2525. ds_cond.setColumn(0, "intodd", '');
  2526. group5.grp_sea.cmb_wardcd.visible = true;
  2527. fGetWard();
  2528. // input1.value ="";
  2529. // input2.value ="";
  2530. group5.grp_sea.caption7.visible = false;
  2531. group5.grp_sea.input1.visible = false;
  2532. group5.grp_sea.caption8.visible = false;
  2533. group5.grp_sea.input2.visible = false;
  2534. group5.grp_sea.chk_dschyn.visible = false;
  2535. group5.grp_sea.cmb_wardcd.value = ds_hidden_wardcdgrup_wardcdgruplist.getColumn(0, "wardcd");
  2536. } else if( ds_cond.getColumn(0, "wardflag") == "3") {
  2537. group5.grp_sea.cmb_wardcd.value ="";
  2538. ds_cond.setColumn(0, "infromdd", '');
  2539. ds_cond.setColumn(0, "intodd", '');
  2540. group5.grp_sea.cmb_wardcd.visible = false;
  2541. // input1.value ="";
  2542. // input2.value ="";
  2543. group5.grp_sea.caption7.visible = false;
  2544. group5.grp_sea.input1.visible = false;
  2545. group5.grp_sea.caption8.visible = false;
  2546. group5.grp_sea.input2.visible = false;
  2547. group5.grp_sea.chk_dschyn.visible = false;
  2548. }
  2549. }
  2550. ]]></Script>
  2551. </Form>
  2552. </FDL>