123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577 |
- <?xml version="1.0" encoding="utf-8"?>
- <FDL version="1.5">
- <TypeDefinition url="..\..\..\default_typedef.xml"/>
- <Form id="SMMNR07800" position="absolute 0 0 1140 740" titletext="중증도 조회" oninit="SMMNR07800_oninit" onload="SMMNR07800_onload">
- <Layouts>
- <Layout>
- <Div position="absolute 0 0 1130 25" id="group1">
- <Layouts>
- <Layout>
- <Static text="중증도 조회" position="absolute 0 0 116 25" id="caption6" class="tit_1"/>
- </Layout>
- </Layouts>
- </Div>
- <Div position="absolute 0 20 1135 715" id="group5" scrollbars="autoboth">
- <Layouts>
- <Layout>
- <Div position="absolute 1 5 1132 40" align="align:center top;" id="grp_sea2" anchor="default">
- <Layouts>
- <Layout>
- <Shape position="absolute 0 0 1129 35" id="roundrect2" class="roundrect_search" type="roundrectangle" anchor="default"/>
- <Static text="조회 일자 :" position="absolute 395 10 491 27" id="caption5" class="search_name" anchor="default"/>
- <Static text="병 동 :" position="absolute 10 10 77 27" id="caption9" class="search_name" anchor="default"/>
- <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"/>
- <Button position="absolute 1003 6 1059 28" id="button1" class="btn1" text="조회" anchor="default" onclick="group5_grp_sea2_button1_onclick"/>
- <Shape position="absolute 992 5 998 27" linetype="vertical" id="line2" class="line_4" anchor="default"/>
- <Button position="absolute 1060 6 1116 28" id="btn_excel" class="btn1" text="엑셀" anchor="default" onclick="group5_grp_sea2_btn_excel_onclick"/>
- <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"/>
- <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">
- <Dataset id="innerdataset">
- <ColumnInfo>
- <Column id="codecolumn"/>
- <Column id="datacolumn"/>
- </ColumnInfo>
- <Rows>
- <Row>
- <Col id="codecolumn">1</Col>
- <Col id="datacolumn">병동</Col>
- </Row>
- <Row>
- <Col id="codecolumn">2</Col>
- <Col id="datacolumn">중환자실</Col>
- </Row>
- <Row>
- <Col id="codecolumn">3</Col>
- <Col id="datacolumn">혈액투석</Col>
- </Row>
- </Rows>
- </Dataset>
- </Radio>
- <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"/>
- </Layout>
- </Layouts>
- </Div>
- <Shape position="absolute 2 70 203 76" linetype="horizontal" id="line1" class="line_10" anchor="default"/>
- <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">
- <Formats>
- <Format id="default">
- <Columns>
- <Column size="193"/>
- </Columns>
- <Rows>
- <Row size="24"/>
- </Rows>
- <Band id="body">
- <Cell displaytype="tree" edittype="tree" text="bind:hngnm" expandshow="hide" treestartlevel="1" treelevel="bind:depth"/>
- </Band>
- </Format>
- </Formats>
- </Grid>
- <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;">
- <Tabpages>
- <Tabpage text="" id="case1" scrollbars="none">
- <Layouts>
- <Layout>
- <Grid position="absolute 0 30 931 620" align="align:center middle;" id="grd_seridiag" binddataset="ds_main_gridgrup_gridlist" anchor="default">
- <Formats>
- <Format id="default">
- <Columns>
- <Column size="40"/>
- <Column size="101"/>
- <Column size="95"/>
- <Column size="86"/>
- <Column size="50"/>
- <Column size="61"/>
- <Column size="46"/>
- <Column size="46"/>
- <Column size="85"/>
- <Column size="50"/>
- <Column size="72"/>
- <Column size="73"/>
- <Column size="56"/>
- <Column size="56"/>
- </Columns>
- <Rows>
- <Row size="24" band="head"/>
- <Row size="24"/>
- </Rows>
- <Band id="head">
- <Cell/>
- <Cell col="1" text="일시"/>
- <Cell col="2" text="병동"/>
- <Cell col="3" text="병실"/>
- <Cell col="4" text="환자명"/>
- <Cell col="5" text="등록번호"/>
- <Cell col="6" text="총점"/>
- <Cell col="7" text="분류군"/>
- <Cell col="8" text="진료과"/>
- <Cell col="9" text="입력자"/>
- <Cell col="10" text="입원일"/>
- <Cell col="11" text="퇴원일"/>
- <Cell col="12" text="재원기간"/>
- <Cell col="13" text="입원경로"/>
- </Band>
- <Band id="body">
- <Cell celltype="head" expr="expr:currow + 1"/>
- <Cell col="1" style="align:center middle;" text="bind:execdt" mask="expr:!utlf_isNull(execdt) ? '####-##-## ##:##' : ''"/>
- <Cell col="2" style="align:center middle;" text="bind:wardnm"/>
- <Cell col="3" style="align:center middle;" text="bind:roomcd"/>
- <Cell col="4" style="align:center middle;" text="bind:hngnm"/>
- <Cell col="5" style="align:center middle;" text="bind:pid"/>
- <Cell col="6" style="align:center middle;" text="bind:total"/>
- <Cell col="7" style="align:center middle;" text="bind:bspntnm"/>
- <Cell col="8" style="align:center middle;" text="bind:deptnm"/>
- <Cell col="9" style="align:center middle;" text="bind:usernm"/>
- <Cell col="10" style="align:center middle;" text="bind:indd"/>
- <Cell col="11" style="align:center middle;" text="bind:dschdd"/>
- <Cell col="12" style="align:center middle;" text="bind:hd"/>
- <Cell col="13" style="align:center middle;" text="bind:inpath"/>
- </Band>
- </Format>
- </Formats>
- </Grid>
- <Static text="중환자,병동 - 환자별중증도조회" position="absolute 520 465 696 485" id="caption10" visible="false" anchor="default"/>
- <Grid position="absolute 0 3 545 28" id="grd_totalward1" class="datagrid0" binddataset="ds_main_gridgrup_bspnttotal" anchor="default" scrollbars="none">
- <Formats>
- <Format id="default">
- <Columns>
- <Column size="0"/>
- <Column size="0"/>
- <Column size="0"/>
- <Column size="0"/>
- <Column size="0"/>
- <Column size="0"/>
- <Column size="0"/>
- <Column size="0"/>
- <Column size="0"/>
- <Column size="0"/>
- <Column size="0"/>
- <Column size="0"/>
- <Column size="0"/>
- <Column size="0"/>
- <Column size="0"/>
- <Column size="0"/>
- <Column size="0"/>
- <Column size="0"/>
- <Column size="0"/>
- <Column size="0"/>
- </Columns>
- <Rows>
- <Row size="0" band="head"/>
- <Row size="24"/>
- </Rows>
- <Band id="head">
- <Cell/>
- <Cell col="1"/>
- <Cell col="2"/>
- <Cell col="3"/>
- <Cell col="4"/>
- <Cell col="5"/>
- <Cell col="6"/>
- <Cell col="7"/>
- <Cell col="8"/>
- <Cell col="9"/>
- <Cell col="10"/>
- <Cell col="11"/>
- <Cell col="12"/>
- <Cell col="13"/>
- <Cell col="14"/>
- <Cell col="15"/>
- <Cell col="16"/>
- <Cell col="17"/>
- <Cell col="18"/>
- <Cell col="19"/>
- </Band>
- <Band id="body">
- <Cell style="align:center middle;background:#b5d3ffff;background2:#b5d3ffff;font:arial,9,bold;" text="bind:bspntnm0"/>
- <Cell col="1" style="align:center middle;" text="bind:total0"/>
- <Cell col="2" style="align:center middle;background:#b5d3ffff;background2:#b5d3ffff;font:arial,9,bold;" text="bind:bspntnm1"/>
- <Cell col="3" style="align:center middle;" text="bind:total1"/>
- <Cell col="4" style="align:center middle;background:#b5d3ffff;background2:#b5d3ffff;font:arial,9,bold;" text="bind:bspntnm2"/>
- <Cell col="5" style="align:center middle;" text="bind:total2"/>
- <Cell col="6" style="align:center middle;background:#b5d3ffff;background2:#b5d3ffff;font:arial,9,bold;" text="bind:bspntnm3"/>
- <Cell col="7" style="align:center middle;" text="bind:total3"/>
- <Cell col="8" style="align:center middle;background:#b5d3ffff;background2:#b5d3ffff;font:arial,9,bold;" text="bind:bspntnm4"/>
- <Cell col="9" style="align:center middle;" text="bind:total4"/>
- <Cell col="10" style="align:center middle;background:#b5d3ffff;background2:#b5d3ffff;font:arial,9,bold;" text="bind:bspntnm5"/>
- <Cell col="11" style="align:center middle;" text="bind:total5"/>
- <Cell col="12" style="align:center middle;background:#b5d3ffff;background2:#b5d3ffff;font:arial,9,bold;" text="bind:bspntnm6"/>
- <Cell col="13" style="align:center middle;" text="bind:total6"/>
- <Cell col="14" style="align:center middle;background:#b5d3ffff;background2:#b5d3ffff;font:arial,9,bold;" text="bind:bspntnm7"/>
- <Cell col="15" style="align:center middle;" text="bind:total7"/>
- <Cell col="16" style="align:center middle;background:#b5d3ffff;background2:#b5d3ffff;font:arial,9,bold;" text="bind:bspntnm8"/>
- <Cell col="17" style="align:center middle;" text="bind:total8"/>
- <Cell col="18" style="align:center middle;background:#b5d3ffff;background2:#b5d3ffff;font:arial,9,bold;" text="bind:bspntnm9"/>
- <Cell col="19" style="align:center middle;" text="bind:total9"/>
- </Band>
- </Format>
- </Formats>
- </Grid>
- </Layout>
- </Layouts>
- </Tabpage>
- <Tabpage text="" id="case2" scrollbars="none">
- <Layouts>
- <Layout>
- <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">
- <Dataset id="innerdataset">
- <ColumnInfo>
- <Column id="codecolumn"/>
- <Column id="datacolumn"/>
- </ColumnInfo>
- <Rows>
- <Row>
- <Col id="codecolumn">A</Col>
- <Col id="datacolumn">전체</Col>
- </Row>
- <Row>
- <Col id="codecolumn">I</Col>
- <Col id="datacolumn">입실</Col>
- </Row>
- <Row>
- <Col id="codecolumn">D</Col>
- <Col id="datacolumn">퇴실</Col>
- </Row>
- </Rows>
- </Dataset>
- </Radio>
- <Grid position="absolute 0 30 931 620" align="align:center middle;" id="grd_seriindsch" binddataset="ds_main_gridgrup_gridlist" anchor="default">
- <Formats>
- <Format id="default">
- <Columns>
- <Column size="25"/>
- <Column size="113"/>
- <Column size="92"/>
- <Column size="77"/>
- <Column size="100"/>
- <Column size="100"/>
- <Column size="100"/>
- <Column size="100"/>
- <Column size="100"/>
- <Column size="100"/>
- </Columns>
- <Rows>
- <Row size="24" band="head"/>
- <Row size="24"/>
- </Rows>
- <Band id="head">
- <Cell/>
- <Cell col="1" text="병동"/>
- <Cell col="2" text="병실"/>
- <Cell col="3" text="환자명"/>
- <Cell col="4" text="등록번호"/>
- <Cell col="5" text="입실일"/>
- <Cell col="6" text="총점"/>
- <Cell col="7" text="분류군"/>
- <Cell col="8" text="퇴실일"/>
- <Cell col="9" text="재실기간"/>
- </Band>
- <Band id="body">
- <Cell celltype="head" expr="expr:currow + 1"/>
- <Cell col="1" text="bind:wardnm"/>
- <Cell col="2" text="bind:roomcd"/>
- <Cell col="3" text="bind:hngnm"/>
- <Cell col="4" text="bind:pid"/>
- <Cell col="5" text="bind:careinrmdd" mask="expr:!utlf_isNull(careinrmdd) ? '####-##-##' : ''"/>
- <Cell col="6" text="bind:total"/>
- <Cell col="7" text="bind:bspntnm"/>
- <Cell col="8" text="bind:dschdd" mask="expr:!utlf_isNull(dschdd) ? '####-##-##' : ''"/>
- <Cell col="9" text="bind:hd"/>
- </Band>
- </Format>
- </Formats>
- </Grid>
- <Static text="중환자-중환자입실/퇴실 화면" position="absolute 520 475 682 495" id="caption11" visible="false" anchor="default"/>
- </Layout>
- </Layouts>
- </Tabpage>
- <Tabpage text="" id="case3" scrollbars="none">
- <Layouts>
- <Layout>
- <Grid position="absolute 0 0 931 620" align="align:center middle;" id="grd_seritotal" binddataset="ds_main_gridgrup_gridlist" anchor="default">
- <Formats>
- <Format id="default">
- <Columns>
- <Column size="25"/>
- <Column size="154"/>
- <Column size="100"/>
- <Column size="100"/>
- </Columns>
- <Rows>
- <Row size="24" band="head"/>
- <Row size="24"/>
- </Rows>
- <Band id="head">
- <Cell/>
- <Cell col="1" text="병동"/>
- <Cell col="2" text="분류군"/>
- <Cell col="3" text="인원"/>
- </Band>
- <Band id="body">
- <Cell celltype="head" expr="expr:currow + 1"/>
- <Cell col="1" text="bind:wardnm"/>
- <Cell col="2" text="bind:bspntnm"/>
- <Cell col="3" text="bind:total"/>
- </Band>
- </Format>
- </Formats>
- </Grid>
- <Static text="중환자-중증도통계" position="absolute 500 455 604 475" id="caption12" visible="false" anchor="default"/>
- </Layout>
- </Layouts>
- </Tabpage>
- <Tabpage text="" id="case4" scrollbars="none">
- <Layouts>
- <Layout>
- <Grid position="absolute 0 0 521 25" id="grd_totalseriroom" class="datagrid0" binddataset="ds_main_gridgrup_bspnttotal" anchor="default" scrollbars="none">
- <Formats>
- <Format id="default">
- <Columns>
- <Column size="0"/>
- <Column size="0"/>
- <Column size="0"/>
- <Column size="0"/>
- <Column size="0"/>
- <Column size="0"/>
- <Column size="0"/>
- <Column size="0"/>
- <Column size="0"/>
- <Column size="0"/>
- <Column size="0"/>
- <Column size="0"/>
- <Column size="0"/>
- <Column size="0"/>
- <Column size="0"/>
- <Column size="0"/>
- <Column size="0"/>
- <Column size="0"/>
- <Column size="0"/>
- <Column size="0"/>
- </Columns>
- <Rows>
- <Row size="0" band="head"/>
- <Row size="24"/>
- </Rows>
- <Band id="head">
- <Cell/>
- <Cell col="1"/>
- <Cell col="2"/>
- <Cell col="3"/>
- <Cell col="4"/>
- <Cell col="5"/>
- <Cell col="6"/>
- <Cell col="7"/>
- <Cell col="8"/>
- <Cell col="9"/>
- <Cell col="10"/>
- <Cell col="11"/>
- <Cell col="12"/>
- <Cell col="13"/>
- <Cell col="14"/>
- <Cell col="15"/>
- <Cell col="16"/>
- <Cell col="17"/>
- <Cell col="18"/>
- <Cell col="19"/>
- </Band>
- <Band id="body">
- <Cell style="align:center middle;background:#b5d3ffff;background2:#b5d3ffff;font:arial,9,bold;" text="bind:bspntnm0"/>
- <Cell col="1" style="align:center middle;" text="bind:total0"/>
- <Cell col="2" style="align:center middle;background:#b5d3ffff;background2:#b5d3ffff;font:arial,9,bold;" text="bind:bspntnm1"/>
- <Cell col="3" style="align:center middle;" text="bind:total1"/>
- <Cell col="4" style="align:center middle;background:#b5d3ffff;background2:#b5d3ffff;font:arial,9,bold;" text="bind:bspntnm2"/>
- <Cell col="5" style="align:center middle;" text="bind:total2"/>
- <Cell col="6" style="align:center middle;background:#b5d3ffff;background2:#b5d3ffff;font:arial,9,bold;" text="bind:bspntnm3"/>
- <Cell col="7" style="align:center middle;" text="bind:total3"/>
- <Cell col="8" style="align:center middle;background:#b5d3ffff;background2:#b5d3ffff;font:arial,9,bold;" text="bind:bspntnm4"/>
- <Cell col="9" style="align:center middle;" text="bind:total4"/>
- <Cell col="10" style="align:center middle;background:#b5d3ffff;background2:#b5d3ffff;font:arial,9,bold;" text="bind:bspntnm5"/>
- <Cell col="11" style="align:center middle;" text="bind:total5"/>
- <Cell col="12" style="align:center middle;background:#b5d3ffff;background2:#b5d3ffff;font:arial,9,bold;" text="bind:bspntnm6"/>
- <Cell col="13" style="align:center middle;" text="bind:total6"/>
- <Cell col="14" style="align:center middle;background:#b5d3ffff;background2:#b5d3ffff;font:arial,9,bold;" text="bind:bspntnm7"/>
- <Cell col="15" style="align:center middle;" text="bind:total7"/>
- <Cell col="16" style="align:center middle;background:#b5d3ffff;background2:#b5d3ffff;font:arial,9,bold;" text="bind:bspntnm8"/>
- <Cell col="17" style="align:center middle;" text="bind:total8"/>
- <Cell col="18" style="align:center middle;background:#b5d3ffff;background2:#b5d3ffff;font:arial,9,bold;" text="bind:bspntnm9"/>
- <Cell col="19" style="align:center middle;" text="bind:total9"/>
- </Band>
- </Format>
- </Formats>
- </Grid>
- <Grid position="absolute 0 26 931 620" id="grd_seriroom" class="datagrid2" visible="true" binddataset="ds_main_gridgrup_recpntlist" anchor="default">
- <Formats>
- <Format id="default">
- <Columns>
- <Column size="25"/>
- <Column size="100"/>
- <Column size="107"/>
- <Column size="60"/>
- <Column size="80"/>
- <Column size="64"/>
- <Column size="56"/>
- <Column size="56"/>
- <Column size="80"/>
- <Column size="80"/>
- <Column size="80"/>
- <Column size="88"/>
- <Column size="80"/>
- <Column size="80"/>
- <Column size="80"/>
- <Column size="80"/>
- <Column size="80"/>
- <Column size="80"/>
- <Column size="80"/>
- <Column size="80"/>
- <Column size="80"/>
- <Column size="80"/>
- </Columns>
- <Rows>
- <Row size="55" band="head"/>
- <Row size="24"/>
- </Rows>
- <Band id="head">
- <Cell/>
- <Cell col="1" text="일시"/>
- <Cell col="2" text="병동"/>
- <Cell col="3" text="병실"/>
- <Cell col="4" text="환자명"/>
- <Cell col="5" text="등록번호"/>
- <Cell col="6" text="재원기간"/>
- <Cell col="7" text="ICU 재실기간"/>
- <Cell col="8" text="활력징후 측정(V/S : manual)" wordwrap="word"/>
- <Cell col="9" text="감시 및 측정(monitoring)" wordwrap="word"/>
- <Cell col="10" text="활동(Activities of daily living)" wordwrap="word"/>
- <Cell col="11" text="영양(feeding)" wordwrap="word"/>
- <Cell col="12" text="정맥주입 및 약물요법(iv theraphy & medication)" wordwrap="word"/>
- <Cell col="13" colspan="2" text="치료 및 시술(Treatment & Procedure - 30분 이상)" wordwrap="word"/>
- <Cell col="15" text="호흡치료(Respiratory therapy)" wordwrap="word"/>
- <Cell col="16" text="교육 및 정서적 지지(Teaching & emotional support)" wordwrap="word"/>
- <Cell col="17" text="지속적 요구"/>
- <Cell col="18" text="Treatment procedure"/>
- <Cell col="19" text="CPCR"/>
- <Cell col="20" text="총점"/>
- <Cell col="21" text="분류군"/>
- </Band>
- <Band id="body">
- <Cell celltype="head" expr="expr:currow + 1"/>
- <Cell col="1" style="align:center middle;" text="bind:execdt" mask="expr:!utlf_isNull(execdt) ? '####-##-## ##:##' : ''"/>
- <Cell col="2" style="align:center middle;" text="bind:wardnm"/>
- <Cell col="3" style="align:center middle;" text="bind:roomcd"/>
- <Cell col="4" style="align:center middle;" text="bind:hngnm"/>
- <Cell col="5" style="align:center middle;" text="bind:pid"/>
- <Cell col="6" style="align:center middle;" text="bind:hd"/>
- <Cell col="7" style="align:center middle;" text="bind:icu"/>
- <Cell col="8" style="align:center middle;" text="bind:timsval11"/>
- <Cell col="9" style="align:center middle;" text="bind:timsval12"/>
- <Cell col="10" style="align:center middle;" text="bind:timsval13"/>
- <Cell col="11" style="align:center middle;" text="bind:timsval14"/>
- <Cell col="12" style="align:center middle;" text="bind:timsval15"/>
- <Cell col="13" style="align:center middle;" text="bind:timsval16"/>
- <Cell col="14" style="align:center middle;" text="bind:timsval17"/>
- <Cell col="15" style="align:center middle;" text="bind:timsval18"/>
- <Cell col="16" style="align:center middle;" text="bind:timsval19"/>
- <Cell col="17" style="align:center middle;" text="bind:timsval20"/>
- <Cell col="18" style="align:center middle;" text="bind:timsval06"/>
- <Cell col="19" style="align:center middle;" text="bind:timsval10"/>
- <Cell col="20" style="align:center middle;" text="bind:totpnt"/>
- <Cell col="21" style="align:center middle;" text="bind:resultcd"/>
- </Band>
- </Format>
- </Formats>
- </Grid>
- <Static text="중환자-중환자상세분류 화면" position="absolute 480 475 636 495" id="caption13" visible="false" anchor="default"/>
- </Layout>
- </Layouts>
- </Tabpage>
- <Tabpage text="" id="case5" scrollbars="none">
- <Layouts>
- <Layout>
- <Grid position="absolute 0 3 545 29" id="grd_totalward" class="datagrid0" binddataset="ds_main_gridgrup_bspnttotal" anchor="default" scrollbars="none">
- <Formats>
- <Format id="default">
- <Columns>
- <Column size="0"/>
- <Column size="0"/>
- <Column size="0"/>
- <Column size="0"/>
- <Column size="0"/>
- <Column size="0"/>
- <Column size="0"/>
- <Column size="0"/>
- <Column size="0"/>
- <Column size="0"/>
- <Column size="0"/>
- <Column size="0"/>
- <Column size="0"/>
- <Column size="0"/>
- <Column size="0"/>
- <Column size="0"/>
- <Column size="0"/>
- <Column size="0"/>
- <Column size="0"/>
- <Column size="0"/>
- </Columns>
- <Rows>
- <Row size="0" band="head"/>
- <Row size="24"/>
- </Rows>
- <Band id="head">
- <Cell/>
- <Cell col="1"/>
- <Cell col="2"/>
- <Cell col="3"/>
- <Cell col="4"/>
- <Cell col="5"/>
- <Cell col="6"/>
- <Cell col="7"/>
- <Cell col="8"/>
- <Cell col="9"/>
- <Cell col="10"/>
- <Cell col="11"/>
- <Cell col="12"/>
- <Cell col="13"/>
- <Cell col="14"/>
- <Cell col="15"/>
- <Cell col="16"/>
- <Cell col="17"/>
- <Cell col="18"/>
- <Cell col="19"/>
- </Band>
- <Band id="body">
- <Cell style="align:center middle;background:#b5d3ffff;background2:#b5d3ffff;font:arial,9,bold;" text="bind:bspntnm0"/>
- <Cell col="1" style="align:center middle;" text="bind:total0"/>
- <Cell col="2" style="align:center middle;background:#b5d3ffff;background2:#b5d3ffff;font:arial,9,bold;" text="bind:bspntnm1"/>
- <Cell col="3" style="align:center middle;" text="bind:total1"/>
- <Cell col="4" style="align:center middle;background:#b5d3ffff;background2:#b5d3ffff;font:arial,9,bold;" text="bind:bspntnm2"/>
- <Cell col="5" style="align:center middle;" text="bind:total2"/>
- <Cell col="6" style="align:center middle;background:#b5d3ffff;background2:#b5d3ffff;font:arial,9,bold;" text="bind:bspntnm3"/>
- <Cell col="7" style="align:center middle;" text="bind:total3"/>
- <Cell col="8" style="align:center middle;background:#b5d3ffff;background2:#b5d3ffff;font:arial,9,bold;" text="bind:bspntnm4"/>
- <Cell col="9" style="align:center middle;" text="bind:total4"/>
- <Cell col="10" style="align:center middle;background:#b5d3ffff;background2:#b5d3ffff;font:arial,9,bold;" text="bind:bspntnm5"/>
- <Cell col="11" style="align:center middle;" text="bind:total5"/>
- <Cell col="12" style="align:center middle;background:#b5d3ffff;background2:#b5d3ffff;font:arial,9,bold;" text="bind:bspntnm6"/>
- <Cell col="13" style="align:center middle;" text="bind:total6"/>
- <Cell col="14" style="align:center middle;background:#b5d3ffff;background2:#b5d3ffff;font:arial,9,bold;" text="bind:bspntnm7"/>
- <Cell col="15" style="align:center middle;" text="bind:total7"/>
- <Cell col="16" style="align:center middle;background:#b5d3ffff;background2:#b5d3ffff;font:arial,9,bold;" text="bind:bspntnm8"/>
- <Cell col="17" style="align:center middle;" text="bind:total8"/>
- <Cell col="18" style="align:center middle;background:#b5d3ffff;background2:#b5d3ffff;font:arial,9,bold;" text="bind:bspntnm9"/>
- <Cell col="19" style="align:center middle;" text="bind:total9"/>
- </Band>
- </Format>
- </Formats>
- </Grid>
- <Grid position="absolute 0 30 931 620" id="grd_ward" class="datagrid2" visible="true" binddataset="ds_main_gridgrup_recpntlist" anchor="default">
- <Formats>
- <Format id="default">
- <Columns>
- <Column size="25"/>
- <Column size="100"/>
- <Column size="111"/>
- <Column size="60"/>
- <Column size="80"/>
- <Column size="64"/>
- <Column size="40"/>
- <Column size="74"/>
- <Column size="75"/>
- <Column size="75"/>
- <Column size="74"/>
- <Column size="75"/>
- <Column size="75"/>
- <Column size="75"/>
- <Column size="74"/>
- <Column size="75"/>
- <Column size="75"/>
- <Column size="75"/>
- <Column size="75"/>
- <Column size="74"/>
- <Column size="100"/>
- </Columns>
- <Rows>
- <Row size="40" band="head"/>
- <Row size="24"/>
- </Rows>
- <Band id="head">
- <Cell/>
- <Cell col="1" text="일시"/>
- <Cell col="2" text="병동"/>
- <Cell col="3" text="병실"/>
- <Cell col="4" text="환자명"/>
- <Cell col="5" text="등록번호"/>
- <Cell col="6" text="재원기간" wordwrap="word"/>
- <Cell col="7" text="위생관리"/>
- <Cell col="8" text="영양"/>
- <Cell col="9" text="배설"/>
- <Cell col="10" text="운동 및 활동"/>
- <Cell col="11" text="교육 및 자문"/>
- <Cell col="12" text="정서적 지지"/>
- <Cell col="13" text="의사소통 및 의식상태" wordwrap="word"/>
- <Cell col="14" text="치료 및 검사"/>
- <Cell col="15" text="투약"/>
- <Cell col="16" text="측정 및 관찰"/>
- <Cell col="17" text="환자관리를 위한 부서간 조정" wordwrap="word"/>
- <Cell col="18" text="퇴원 및 전동관리" wordwrap="word"/>
- <Cell col="19" text="총점"/>
- <Cell col="20" text="분류군"/>
- </Band>
- <Band id="body">
- <Cell celltype="head" expr="expr:currow + 1"/>
- <Cell col="1" style="align:center middle;" text="bind:execdt" mask="expr:!utlf_isNull(execdt) ? '####-##-## ##:##' : ''"/>
- <Cell col="2" style="align:center middle;" text="bind:wardnm"/>
- <Cell col="3" style="align:center middle;" text="bind:roomcd"/>
- <Cell col="4" style="align:center middle;" text="bind:hngnm"/>
- <Cell col="5" style="align:center middle;" text="bind:pid"/>
- <Cell col="6" style="align:center middle;" text="bind:hd"/>
- <Cell col="7" style="align:center middle;" text="bind:timsval01"/>
- <Cell col="8" style="align:center middle;" text="bind:timsval02"/>
- <Cell col="9" style="align:center middle;" text="bind:timsval03"/>
- <Cell col="10" style="align:center middle;" text="bind:timsval04"/>
- <Cell col="11" style="align:center middle;" text="bind:timsval05"/>
- <Cell col="12" style="align:center middle;" text="bind:timsval06"/>
- <Cell col="13" style="align:center middle;" text="bind:timsval07"/>
- <Cell col="14" style="align:center middle;" text="bind:timsval08"/>
- <Cell col="15" style="align:center middle;" text="bind:timsval09"/>
- <Cell col="16" style="align:center middle;" text="bind:timsval10"/>
- <Cell col="17" style="align:center middle;" text="bind:timsval11"/>
- <Cell col="18" style="align:center middle;" text="bind:timsval12"/>
- <Cell col="19" style="align:center middle;" text="bind:totpnt"/>
- <Cell col="20" style="align:center middle;" text="bind:resultcd"/>
- </Band>
- </Format>
- </Formats>
- </Grid>
- <Static text="병동-환자별상세분류 화면" position="absolute 470 475 656 495" id="caption14" visible="false" anchor="default"/>
- </Layout>
- </Layouts>
- </Tabpage>
- <Tabpage text="" id="case6" scrollbars="none">
- <Layouts>
- <Layout>
- <Grid position="absolute 0 0 931 620" align="align:center middle;" id="grd_basecare" binddataset="ds_main_gridgrup_basecarelist" anchor="default">
- <Formats>
- <Format id="default">
- <Columns>
- <Column size="25"/>
- <Column size="100"/>
- <Column size="121"/>
- <Column size="66"/>
- <Column size="100"/>
- <Column size="100"/>
- <Column size="64"/>
- <Column size="100"/>
- <Column size="100"/>
- <Column size="100"/>
- <Column size="100"/>
- <Column size="100"/>
- <Column size="100"/>
- <Column size="100"/>
- <Column size="100"/>
- <Column size="100"/>
- </Columns>
- <Rows>
- <Row size="24" band="head"/>
- <Row size="24" band="head"/>
- <Row size="24"/>
- </Rows>
- <Band id="head">
- <Cell rowspan="2"/>
- <Cell col="1" rowspan="2" text="일시"/>
- <Cell col="2" rowspan="2" text="병동"/>
- <Cell col="3" rowspan="2" text="병실"/>
- <Cell col="4" rowspan="2" text="환자명"/>
- <Cell col="5" rowspan="2" text="등록번호"/>
- <Cell col="6" rowspan="2" text="재원기간"/>
- <Cell col="7" rowspan="2" text="환자분류결과"/>
- <Cell col="8" colspan="3" text="항목별 평가결과"/>
- <Cell col="11" colspan="5" text="기본간호 항목"/>
- <Cell row="1" col="8" text="위생관리"/>
- <Cell row="1" col="9" text="영양"/>
- <Cell row="1" col="10" text="운동 및 활동"/>
- <Cell row="1" col="11" text="구강간호"/>
- <Cell row="1" col="12" text="세발간호"/>
- <Cell row="1" col="13" text="목욕간호"/>
- <Cell row="1" col="14" text="식사보조"/>
- <Cell row="1" col="15" text="배설간호"/>
- </Band>
- <Band id="body">
- <Cell celltype="head" expr="expr:currow + 1"/>
- <Cell col="1" style="align:center middle;" text="bind:execdt" mask="expr:!utlf_isNull(execdt) ? '####-##-## ##:##' : ''"/>
- <Cell col="2" text="bind:wardnm"/>
- <Cell col="3" text="bind:roomcd"/>
- <Cell col="4" text="bind:hngnm"/>
- <Cell col="5" text="bind:pid"/>
- <Cell col="6" text="bind:hd"/>
- <Cell col="7" style="align:center middle;" text="bind:resultcd"/>
- <Cell col="8" text="bind:timsval01"/>
- <Cell col="9" text="bind:timsval02"/>
- <Cell col="10" text="bind:timsval04"/>
- <Cell col="11" text="bind:gugang"/>
- <Cell col="12" text="bind:sebal"/>
- <Cell col="13" text="bind:mok"/>
- <Cell col="14" text="bind:sik"/>
- <Cell col="15" text="bind:besul"/>
- </Band>
- </Format>
- </Formats>
- </Grid>
- <Static text="중증도-병동-기본간호 화면" position="absolute 475 430 625 450" id="caption15" visible="false" anchor="default"/>
- </Layout>
- </Layouts>
- </Tabpage>
- <Tabpage text="" id="case7" scrollbars="none">
- <Layouts>
- <Layout>
- <Grid position="absolute 0 0 931 620" id="grd_fallseridiag" binddataset="ds_main_gridgrup_gridlist" anchor="default">
- <Formats>
- <Format id="default">
- <Columns>
- <Column size="25"/>
- <Column size="110"/>
- <Column size="109"/>
- <Column size="90"/>
- <Column size="91"/>
- <Column size="100"/>
- <Column size="91"/>
- <Column size="93"/>
- <Column size="93"/>
- <Column size="90"/>
- </Columns>
- <Rows>
- <Row size="24" band="head"/>
- <Row size="24"/>
- </Rows>
- <Band id="head">
- <Cell/>
- <Cell col="1" text="일시"/>
- <Cell col="2" text="병동"/>
- <Cell col="3" text="병실"/>
- <Cell col="4" text="환자명"/>
- <Cell col="5" text="등록번호"/>
- <Cell col="6" text="총점"/>
- <Cell col="7" text="분류군"/>
- <Cell col="8" text="진료과"/>
- <Cell col="9" text="입력자"/>
- </Band>
- <Band id="body">
- <Cell celltype="head" expr="expr:currow + 1"/>
- <Cell col="1" text="bind:execdt" mask="expr:!utlf_isNull(execdt) ? '####-##-## ##:##' : ''"/>
- <Cell col="2" style="align:center middle;" text="bind:wardnm"/>
- <Cell col="3" style="align:center middle;" text="bind:roomcd"/>
- <Cell col="4" style="align:center middle;" text="bind:hngnm"/>
- <Cell col="5" style="align:center middle;" text="bind:pid"/>
- <Cell col="6" style="align:center middle;" text="bind:total"/>
- <Cell col="7" text="bind:bspntnm"/>
- <Cell col="8" text="bind:deptnm"/>
- <Cell col="9" style="align:center middle;" text="bind:usernm"/>
- </Band>
- </Format>
- </Formats>
- </Grid>
- <Static text="낙상- 성인,아동 환자별 낙상" position="absolute 470 435 626 455" id="caption16" visible="false" anchor="default"/>
- </Layout>
- </Layouts>
- </Tabpage>
- <Tabpage text="" id="case8" scrollbars="none">
- <Layouts>
- <Layout>
- <Grid position="absolute 0 3 545 29" id="grd_totalfalladult" class="datagrid0" binddataset="ds_main_gridgrup_bspnttotal" anchor="default" scrollbars="none">
- <Formats>
- <Format id="default">
- <Columns>
- <Column size="0"/>
- <Column size="0"/>
- <Column size="0"/>
- <Column size="0"/>
- <Column size="0"/>
- <Column size="0"/>
- <Column size="0"/>
- <Column size="0"/>
- <Column size="0"/>
- <Column size="0"/>
- <Column size="0"/>
- <Column size="0"/>
- <Column size="0"/>
- <Column size="0"/>
- <Column size="0"/>
- <Column size="0"/>
- <Column size="0"/>
- <Column size="0"/>
- <Column size="0"/>
- <Column size="0"/>
- </Columns>
- <Rows>
- <Row size="0" band="head"/>
- <Row size="24"/>
- </Rows>
- <Band id="head">
- <Cell/>
- <Cell col="1"/>
- <Cell col="2"/>
- <Cell col="3"/>
- <Cell col="4"/>
- <Cell col="5"/>
- <Cell col="6"/>
- <Cell col="7"/>
- <Cell col="8"/>
- <Cell col="9"/>
- <Cell col="10"/>
- <Cell col="11"/>
- <Cell col="12"/>
- <Cell col="13"/>
- <Cell col="14"/>
- <Cell col="15"/>
- <Cell col="16"/>
- <Cell col="17"/>
- <Cell col="18"/>
- <Cell col="19"/>
- </Band>
- <Band id="body">
- <Cell style="align:center middle;background:#b5d3ffff;background2:#b5d3ffff;font:arial,9,bold;" text="bind:bspntnm0"/>
- <Cell col="1" style="align:center middle;" text="bind:total0"/>
- <Cell col="2" style="align:center middle;background:#b5d3ffff;background2:#b5d3ffff;font:arial,9,bold;" text="bind:bspntnm1"/>
- <Cell col="3" style="align:center middle;" text="bind:total1"/>
- <Cell col="4" style="align:center middle;background:#b5d3ffff;background2:#b5d3ffff;font:arial,9,bold;" text="bind:bspntnm2"/>
- <Cell col="5" style="align:center middle;" text="bind:total2"/>
- <Cell col="6" style="align:center middle;background:#b5d3ffff;background2:#b5d3ffff;font:arial,9,bold;" text="bind:bspntnm3"/>
- <Cell col="7" style="align:center middle;" text="bind:total3"/>
- <Cell col="8" style="align:center middle;background:#b5d3ffff;background2:#b5d3ffff;font:arial,9,bold;" text="bind:bspntnm4"/>
- <Cell col="9" style="align:center middle;" text="bind:total4"/>
- <Cell col="10" style="align:center middle;background:#b5d3ffff;background2:#b5d3ffff;font:arial,9,bold;" text="bind:bspntnm5"/>
- <Cell col="11" style="align:center middle;" text="bind:total5"/>
- <Cell col="12" style="align:center middle;background:#b5d3ffff;background2:#b5d3ffff;font:arial,9,bold;" text="bind:bspntnm6"/>
- <Cell col="13" style="align:center middle;" text="bind:total6"/>
- <Cell col="14" style="align:center middle;background:#b5d3ffff;background2:#b5d3ffff;font:arial,9,bold;" text="bind:bspntnm7"/>
- <Cell col="15" style="align:center middle;" text="bind:total7"/>
- <Cell col="16" style="align:center middle;background:#b5d3ffff;background2:#b5d3ffff;font:arial,9,bold;" text="bind:bspntnm8"/>
- <Cell col="17" style="align:center middle;" text="bind:total8"/>
- <Cell col="18" style="align:center middle;background:#b5d3ffff;background2:#b5d3ffff;font:arial,9,bold;" text="bind:bspntnm9"/>
- <Cell col="19" style="align:center middle;" text="bind:total9"/>
- </Band>
- </Format>
- </Formats>
- </Grid>
- <Grid position="absolute 0 30 931 620" id="grd_falladult" class="datagrid2" visible="true" binddataset="ds_main_gridgrup_recpntlist" anchor="default">
- <Formats>
- <Format id="default">
- <Columns>
- <Column size="25"/>
- <Column size="100"/>
- <Column size="109"/>
- <Column size="60"/>
- <Column size="80"/>
- <Column size="64"/>
- <Column size="40"/>
- <Column size="73"/>
- <Column size="74"/>
- <Column size="75"/>
- <Column size="75"/>
- <Column size="75"/>
- <Column size="74"/>
- <Column size="74"/>
- <Column size="74"/>
- <Column size="75"/>
- <Column size="85"/>
- <Column size="75"/>
- </Columns>
- <Rows>
- <Row size="30" band="head"/>
- <Row size="24"/>
- </Rows>
- <Band id="head">
- <Cell/>
- <Cell col="1" text="일시"/>
- <Cell col="2" text="병동"/>
- <Cell col="3" text="병실"/>
- <Cell col="4" text="환자명"/>
- <Cell col="5" text="등록번호"/>
- <Cell col="6" text="재원기간" wordwrap="word"/>
- <Cell col="7" text="나이"/>
- <Cell col="8" text="낙상과거력"/>
- <Cell col="9" text="보행장애"/>
- <Cell col="10" text="의식상태"/>
- <Cell col="11" text="의사소통"/>
- <Cell col="12" text="위험요인"/>
- <Cell col="13" text="만성질환"/>
- <Cell col="14" text="배뇨장애"/>
- <Cell col="15" text="약물"/>
- <Cell col="16" text="분류군"/>
- <Cell col="17" text="총점"/>
- </Band>
- <Band id="body">
- <Cell celltype="head" expr="expr:currow + 1"/>
- <Cell col="1" style="align:center middle;" text="bind:execdt" mask="expr:!utlf_isNull(execdt) ? '####-##-## ##:##' : ''"/>
- <Cell col="2" style="align:center middle;" text="bind:wardnm"/>
- <Cell col="3" style="align:center middle;" text="bind:roomcd"/>
- <Cell col="4" style="align:center middle;" text="bind:hngnm"/>
- <Cell col="5" style="align:center middle;" text="bind:pid"/>
- <Cell col="6" style="align:center middle;" text="bind:hd"/>
- <Cell col="7" style="align:center middle;" text="bind:timsval01"/>
- <Cell col="8" style="align:center middle;" text="bind:timsval02"/>
- <Cell col="9" style="align:center middle;" text="bind:timsval03"/>
- <Cell col="10" style="align:center middle;" text="bind:timsval04"/>
- <Cell col="11" style="align:center middle;" text="bind:timsval05"/>
- <Cell col="12" style="align:center middle;" text="bind:timsval06"/>
- <Cell col="13" style="align:center middle;" text="bind:timsval07"/>
- <Cell col="14" style="align:center middle;" text="bind:timsval08"/>
- <Cell col="15" style="align:center middle;" text="bind:timsval09"/>
- <Cell col="16" style="align:center middle;" text="bind:resultcd" combodataset="ds_main_gridgrup_bspntlist" combocodecol="cdid" combodatacol="cdnm"/>
- <Cell col="17" style="align:center middle;" text="bind:totpnt"/>
- </Band>
- </Format>
- </Formats>
- </Grid>
- <Static text="성인 낙상상세분류" position="absolute 520 460 626 480" id="caption17" visible="false" anchor="default"/>
- </Layout>
- </Layouts>
- </Tabpage>
- <Tabpage text="" id="case9" scrollbars="none">
- <Layouts>
- <Layout>
- <Grid position="absolute 0 3 545 29" id="grd_totalfallchild" class="datagrid0" binddataset="ds_main_gridgrup_bspnttotal" anchor="default" scrollbars="none">
- <Formats>
- <Format id="default">
- <Columns>
- <Column size="0"/>
- <Column size="0"/>
- <Column size="0"/>
- <Column size="0"/>
- <Column size="0"/>
- <Column size="0"/>
- <Column size="0"/>
- <Column size="0"/>
- <Column size="0"/>
- <Column size="0"/>
- <Column size="0"/>
- <Column size="0"/>
- <Column size="0"/>
- <Column size="0"/>
- <Column size="0"/>
- <Column size="0"/>
- <Column size="0"/>
- <Column size="0"/>
- <Column size="0"/>
- <Column size="0"/>
- </Columns>
- <Rows>
- <Row size="0" band="head"/>
- <Row size="24"/>
- </Rows>
- <Band id="head">
- <Cell/>
- <Cell col="1"/>
- <Cell col="2"/>
- <Cell col="3"/>
- <Cell col="4"/>
- <Cell col="5"/>
- <Cell col="6"/>
- <Cell col="7"/>
- <Cell col="8"/>
- <Cell col="9"/>
- <Cell col="10"/>
- <Cell col="11"/>
- <Cell col="12"/>
- <Cell col="13"/>
- <Cell col="14"/>
- <Cell col="15"/>
- <Cell col="16"/>
- <Cell col="17"/>
- <Cell col="18"/>
- <Cell col="19"/>
- </Band>
- <Band id="body">
- <Cell style="align:center middle;background:#b5d3ffff;background2:#b5d3ffff;font:arial,9,bold;" text="bind:bspntnm0"/>
- <Cell col="1" style="align:center middle;" text="bind:total0"/>
- <Cell col="2" style="align:center middle;background:#b5d3ffff;background2:#b5d3ffff;font:arial,9,bold;" text="bind:bspntnm1"/>
- <Cell col="3" style="align:center middle;" text="bind:total1"/>
- <Cell col="4" style="align:center middle;background:#b5d3ffff;background2:#b5d3ffff;font:arial,9,bold;" text="bind:bspntnm2"/>
- <Cell col="5" style="align:center middle;" text="bind:total2"/>
- <Cell col="6" style="align:center middle;background:#b5d3ffff;background2:#b5d3ffff;font:arial,9,bold;" text="bind:bspntnm3"/>
- <Cell col="7" style="align:center middle;" text="bind:total3"/>
- <Cell col="8" style="align:center middle;background:#b5d3ffff;background2:#b5d3ffff;font:arial,9,bold;" text="bind:bspntnm4"/>
- <Cell col="9" style="align:center middle;" text="bind:total4"/>
- <Cell col="10" style="align:center middle;background:#b5d3ffff;background2:#b5d3ffff;font:arial,9,bold;" text="bind:bspntnm5"/>
- <Cell col="11" style="align:center middle;" text="bind:total5"/>
- <Cell col="12" style="align:center middle;background:#b5d3ffff;background2:#b5d3ffff;font:arial,9,bold;" text="bind:bspntnm6"/>
- <Cell col="13" style="align:center middle;" text="bind:total6"/>
- <Cell col="14" style="align:center middle;background:#b5d3ffff;background2:#b5d3ffff;font:arial,9,bold;" text="bind:bspntnm7"/>
- <Cell col="15" style="align:center middle;" text="bind:total7"/>
- <Cell col="16" style="align:center middle;background:#b5d3ffff;background2:#b5d3ffff;font:arial,9,bold;" text="bind:bspntnm8"/>
- <Cell col="17" style="align:center middle;" text="bind:total8"/>
- <Cell col="18" style="align:center middle;background:#b5d3ffff;background2:#b5d3ffff;font:arial,9,bold;" text="bind:bspntnm9"/>
- <Cell col="19" style="align:center middle;" text="bind:total9"/>
- </Band>
- </Format>
- </Formats>
- </Grid>
- <Grid position="absolute 0 30 931 620" id="grd_fallchild" class="datagrid2" visible="true" binddataset="ds_main_gridgrup_recpntlist" anchor="default">
- <Formats>
- <Format id="default">
- <Columns>
- <Column size="25"/>
- <Column size="100"/>
- <Column size="107"/>
- <Column size="60"/>
- <Column size="80"/>
- <Column size="64"/>
- <Column size="40"/>
- <Column size="73"/>
- <Column size="74"/>
- <Column size="75"/>
- <Column size="75"/>
- <Column size="75"/>
- <Column size="74"/>
- <Column size="74"/>
- <Column size="74"/>
- <Column size="75"/>
- <Column size="85"/>
- <Column size="75"/>
- </Columns>
- <Rows>
- <Row size="30" band="head"/>
- <Row size="24"/>
- </Rows>
- <Band id="head">
- <Cell/>
- <Cell col="1" text="일시"/>
- <Cell col="2" text="병동"/>
- <Cell col="3" text="병실"/>
- <Cell col="4" text="환자명"/>
- <Cell col="5" text="등록번호"/>
- <Cell col="6" text="재원기간" wordwrap="word"/>
- <Cell col="7" text="나이"/>
- <Cell col="8" text="활동상태"/>
- <Cell col="9" text="행동상태"/>
- <Cell col="10" text="건강상태"/>
- <Cell col="11" text="진단명"/>
- <Cell col="12" text="시설"/>
- <Cell col="13" text="양육자와 관계" wordwrap="word"/>
- <Cell col="14" text="낙상경험"/>
- <Cell col="15" text="낙상교육"/>
- <Cell col="16" text="분류군"/>
- <Cell col="17" text="총점"/>
- </Band>
- <Band id="body">
- <Cell celltype="head" expr="expr:currow + 1"/>
- <Cell col="1" style="align:center middle;" text="bind:execdt" mask="expr:!utlf_isNull(execdt) ? '####-##-## ##:##' : ''"/>
- <Cell col="2" style="align:center middle;" text="bind:wardnm"/>
- <Cell col="3" style="align:center middle;" text="bind:roomcd"/>
- <Cell col="4" style="align:center middle;" text="bind:hngnm"/>
- <Cell col="5" style="align:center middle;" text="bind:pid"/>
- <Cell col="6" style="align:center middle;" text="bind:hd"/>
- <Cell col="7" style="align:center middle;" text="bind:timsval01"/>
- <Cell col="8" style="align:center middle;" text="bind:timsval02"/>
- <Cell col="9" style="align:center middle;" text="bind:timsval03"/>
- <Cell col="10" style="align:center middle;" text="bind:timsval04"/>
- <Cell col="11" style="align:center middle;" text="bind:timsval05"/>
- <Cell col="12" style="align:center middle;" text="bind:timsval06"/>
- <Cell col="13" style="align:center middle;" text="bind:timsval07"/>
- <Cell col="14" style="align:center middle;" text="bind:timsval08"/>
- <Cell col="15" style="align:center middle;" text="bind:timsval09"/>
- <Cell col="16" style="align:center middle;" text="bind:resultcd" combodataset="ds_main_gridgrup_bspntlist" combocodecol="cdid" combodatacol="cdnm"/>
- <Cell col="17" style="align:center middle;" text="bind:totpnt"/>
- </Band>
- </Format>
- </Formats>
- </Grid>
- <Static text="낙상소아 상세분류" position="absolute 530 450 632 470" id="caption18" visible="false" anchor="default"/>
- </Layout>
- </Layouts>
- </Tabpage>
- <Tabpage text="" id="case10" scrollbars="none">
- <Layouts>
- <Layout>
- <Grid position="absolute 0 0 931 620" id="grd_bedsrseridiag" binddataset="ds_main_gridgrup_gridlist" anchor="default">
- <Formats>
- <Format id="default">
- <Columns>
- <Column size="25"/>
- <Column size="108"/>
- <Column size="140"/>
- <Column size="65"/>
- <Column size="76"/>
- <Column size="71"/>
- <Column size="73"/>
- <Column size="100"/>
- <Column size="100"/>
- <Column size="100"/>
- </Columns>
- <Rows>
- <Row size="24" band="head"/>
- <Row size="24"/>
- </Rows>
- <Band id="head">
- <Cell/>
- <Cell col="1" text="일시"/>
- <Cell col="2" text="병동"/>
- <Cell col="3" text="병실"/>
- <Cell col="4" text="환자명"/>
- <Cell col="5" text="등록번호"/>
- <Cell col="6" text="총점"/>
- <Cell col="7" text="분류군"/>
- <Cell col="8" text="진료과"/>
- <Cell col="9" text="입력자"/>
- </Band>
- <Band id="body">
- <Cell celltype="head" expr="expr:currow + 1"/>
- <Cell col="1" text="bind:execdt" mask="expr:!utlf_isNull(execdt) ? '####-##-## ##:##' : ''"/>
- <Cell col="2" text="bind:wardnm"/>
- <Cell col="3" text="bind:roomcd"/>
- <Cell col="4" text="bind:hngnm"/>
- <Cell col="5" text="bind:pid"/>
- <Cell col="6" text="bind:total"/>
- <Cell col="7" text="bind:bspntnm"/>
- <Cell col="8" text="bind:deptnm"/>
- <Cell col="9" text="bind:usernm"/>
- </Band>
- </Format>
- </Formats>
- </Grid>
- <Static text="환자별욕창" position="absolute 525 440 625 460" id="caption19" visible="false" anchor="default"/>
- </Layout>
- </Layouts>
- </Tabpage>
- <Tabpage text="" id="case11" scrollbars="none">
- <Layouts>
- <Layout>
- <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">
- <Formats>
- <Format id="default">
- <Columns>
- <Column size="25"/>
- <Column size="100"/>
- <Column size="111"/>
- <Column size="60"/>
- <Column size="80"/>
- <Column size="64"/>
- <Column size="40"/>
- <Column size="74"/>
- <Column size="75"/>
- <Column size="75"/>
- <Column size="74"/>
- <Column size="74"/>
- <Column size="74"/>
- <Column size="74"/>
- <Column size="100"/>
- </Columns>
- <Rows>
- <Row size="30" band="head"/>
- <Row size="24"/>
- </Rows>
- <Band id="head">
- <Cell/>
- <Cell col="1" text="일시"/>
- <Cell col="2" text="병동"/>
- <Cell col="3" text="병실"/>
- <Cell col="4" text="환자명"/>
- <Cell col="5" text="등록번호"/>
- <Cell col="6" text="재원기간" wordwrap="word"/>
- <Cell col="7" text="감각인지"/>
- <Cell col="8" text="습한정도"/>
- <Cell col="9" text="활동정도"/>
- <Cell col="10" text="기동력"/>
- <Cell col="11" text="영양상태"/>
- <Cell col="12" text="마찰력과응전력" wordwrap="word"/>
- <Cell col="13" text="총점"/>
- <Cell col="14" text="분류군"/>
- </Band>
- <Band id="body">
- <Cell celltype="head" expr="expr:currow + 1"/>
- <Cell col="1" style="align:center middle;" text="bind:execdt" mask="expr:!utlf_isNull(execdt) ? '####-##-## ##:##' : ''"/>
- <Cell col="2" style="align:center middle;" text="bind:wardnm"/>
- <Cell col="3" style="align:center middle;" text="bind:roomcd"/>
- <Cell col="4" style="align:center middle;" text="bind:hngnm"/>
- <Cell col="5" style="align:center middle;" text="bind:pid"/>
- <Cell col="6" style="align:center middle;" text="bind:hd"/>
- <Cell col="7" style="align:center middle;" text="bind:timsval01"/>
- <Cell col="8" style="align:center middle;" text="bind:timsval02"/>
- <Cell col="9" style="align:center middle;" text="bind:timsval03"/>
- <Cell col="10" style="align:center middle;" text="bind:timsval04"/>
- <Cell col="11" style="align:center middle;" text="bind:timsval05"/>
- <Cell col="12" style="align:center middle;" text="bind:timsval06"/>
- <Cell col="13" style="align:center middle;" text="bind:totpnt"/>
- <Cell col="14" style="align:center middle;" text="bind:resultcd"/>
- </Band>
- </Format>
- </Formats>
- </Grid>
- <Grid position="absolute 0 3 545 29" id="grd_totalbedsr" class="datagrid0" binddataset="ds_main_gridgrup_bspnttotal" anchor="default" scrollbars="none">
- <Formats>
- <Format id="default">
- <Columns>
- <Column size="0"/>
- <Column size="0"/>
- <Column size="0"/>
- <Column size="0"/>
- <Column size="0"/>
- <Column size="0"/>
- <Column size="0"/>
- <Column size="0"/>
- <Column size="0"/>
- <Column size="0"/>
- <Column size="0"/>
- <Column size="0"/>
- <Column size="0"/>
- <Column size="0"/>
- <Column size="0"/>
- <Column size="0"/>
- <Column size="0"/>
- <Column size="0"/>
- <Column size="0"/>
- <Column size="0"/>
- </Columns>
- <Rows>
- <Row size="0" band="head"/>
- <Row size="24"/>
- </Rows>
- <Band id="head">
- <Cell/>
- <Cell col="1"/>
- <Cell col="2"/>
- <Cell col="3"/>
- <Cell col="4"/>
- <Cell col="5"/>
- <Cell col="6"/>
- <Cell col="7"/>
- <Cell col="8"/>
- <Cell col="9"/>
- <Cell col="10"/>
- <Cell col="11"/>
- <Cell col="12"/>
- <Cell col="13"/>
- <Cell col="14"/>
- <Cell col="15"/>
- <Cell col="16"/>
- <Cell col="17"/>
- <Cell col="18"/>
- <Cell col="19"/>
- </Band>
- <Band id="body">
- <Cell style="align:center middle;background:#b5d3ffff;background2:#b5d3ffff;font:arial,9,bold;" text="bind:bspntnm0"/>
- <Cell col="1" style="align:center middle;" text="bind:total0"/>
- <Cell col="2" style="align:center middle;background:#b5d3ffff;background2:#b5d3ffff;font:arial,9,bold;" text="bind:bspntnm1"/>
- <Cell col="3" style="align:center middle;" text="bind:total1"/>
- <Cell col="4" style="align:center middle;background:#b5d3ffff;background2:#b5d3ffff;font:arial,9,bold;" text="bind:bspntnm2"/>
- <Cell col="5" style="align:center middle;" text="bind:total2"/>
- <Cell col="6" style="align:center middle;background:#b5d3ffff;background2:#b5d3ffff;font:arial,9,bold;" text="bind:bspntnm3"/>
- <Cell col="7" style="align:center middle;" text="bind:total3"/>
- <Cell col="8" style="align:center middle;background:#b5d3ffff;background2:#b5d3ffff;font:arial,9,bold;" text="bind:bspntnm4"/>
- <Cell col="9" style="align:center middle;" text="bind:total4"/>
- <Cell col="10" style="align:center middle;background:#b5d3ffff;background2:#b5d3ffff;font:arial,9,bold;" text="bind:bspntnm5"/>
- <Cell col="11" style="align:center middle;" text="bind:total5"/>
- <Cell col="12" style="align:center middle;background:#b5d3ffff;background2:#b5d3ffff;font:arial,9,bold;" text="bind:bspntnm6"/>
- <Cell col="13" style="align:center middle;" text="bind:total6"/>
- <Cell col="14" style="align:center middle;background:#b5d3ffff;background2:#b5d3ffff;font:arial,9,bold;" text="bind:bspntnm7"/>
- <Cell col="15" style="align:center middle;" text="bind:total7"/>
- <Cell col="16" style="align:center middle;background:#b5d3ffff;background2:#b5d3ffff;font:arial,9,bold;" text="bind:bspntnm8"/>
- <Cell col="17" style="align:center middle;" text="bind:total8"/>
- <Cell col="18" style="align:center middle;background:#b5d3ffff;background2:#b5d3ffff;font:arial,9,bold;" text="bind:bspntnm9"/>
- <Cell col="19" style="align:center middle;" text="bind:total9"/>
- </Band>
- </Format>
- </Formats>
- </Grid>
- <Static text="욕창상세분류" position="absolute 550 435 650 455" id="caption20" visible="false" anchor="default"/>
- </Layout>
- </Layouts>
- </Tabpage>
- <Tabpage text="" id="case12" scrollbars="none">
- <Layouts>
- <Layout>
- <Grid position="absolute 0 0 931 620" align="align:center middle;" id="grd_totalwardterm" binddataset="ds_main_gridgrup_totalwardterm" anchor="default">
- <Formats>
- <Format id="default">
- <Columns>
- <Column size="25"/>
- <Column size="115"/>
- <Column size="100"/>
- <Column size="0"/>
- <Column size="0"/>
- <Column size="0"/>
- <Column size="0"/>
- <Column size="0"/>
- <Column size="0"/>
- <Column size="0"/>
- <Column size="0"/>
- <Column size="0"/>
- <Column size="0"/>
- <Column size="0"/>
- <Column size="0"/>
- <Column size="0"/>
- <Column size="0"/>
- <Column size="0"/>
- <Column size="0"/>
- <Column size="0"/>
- <Column size="0"/>
- <Column size="0"/>
- <Column size="0"/>
- <Column size="0"/>
- <Column size="0"/>
- <Column size="0"/>
- <Column size="0"/>
- <Column size="0"/>
- <Column size="0"/>
- <Column size="0"/>
- <Column size="0"/>
- <Column size="0"/>
- <Column size="0"/>
- <Column size="0"/>
- <Column size="0"/>
- <Column size="0"/>
- <Column size="0"/>
- <Column size="0"/>
- <Column size="0"/>
- <Column size="0"/>
- <Column size="0"/>
- <Column size="0"/>
- <Column size="0"/>
- <Column size="100"/>
- </Columns>
- <Rows>
- <Row size="24" band="head"/>
- <Row size="24"/>
- </Rows>
- <Band id="head">
- <Cell/>
- <Cell col="1" text="병동"/>
- <Cell col="2" text="병실"/>
- <Cell col="3"/>
- <Cell col="4"/>
- <Cell col="5"/>
- <Cell col="6"/>
- <Cell col="7"/>
- <Cell col="8"/>
- <Cell col="9"/>
- <Cell col="10"/>
- <Cell col="11"/>
- <Cell col="12"/>
- <Cell col="13"/>
- <Cell col="14"/>
- <Cell col="15"/>
- <Cell col="16"/>
- <Cell col="17"/>
- <Cell col="18"/>
- <Cell col="19"/>
- <Cell col="20"/>
- <Cell col="21"/>
- <Cell col="22"/>
- <Cell col="23"/>
- <Cell col="24"/>
- <Cell col="25"/>
- <Cell col="26"/>
- <Cell col="27"/>
- <Cell col="28"/>
- <Cell col="29"/>
- <Cell col="30"/>
- <Cell col="31"/>
- <Cell col="32"/>
- <Cell col="33"/>
- <Cell col="34"/>
- <Cell col="35"/>
- <Cell col="36"/>
- <Cell col="37"/>
- <Cell col="38"/>
- <Cell col="39"/>
- <Cell col="40"/>
- <Cell col="41"/>
- <Cell col="42"/>
- <Cell col="43" text="계"/>
- </Band>
- <Band id="body">
- <Cell celltype="head" expr="expr:currow + 1"/>
- <Cell col="1" style="align:center middle;" text="bind:wardnm"/>
- <Cell col="2" style="align:center middle;" text="bind:roomcd"/>
- <Cell col="3" style="align:center middle;" text="bind:timsval01"/>
- <Cell col="4" style="align:center middle;" text="bind:p01"/>
- <Cell col="5" style="align:center middle;" text="bind:timsval02"/>
- <Cell col="6" style="align:center middle;" text="bind:p02"/>
- <Cell col="7" style="align:center middle;" text="bind:timsval03"/>
- <Cell col="8" style="align:center middle;" text="bind:p03"/>
- <Cell col="9" style="align:center middle;" text="bind:timsval04"/>
- <Cell col="10" style="align:center middle;" text="bind:p04"/>
- <Cell col="11" style="align:center middle;" text="bind:timsval05"/>
- <Cell col="12" style="align:center middle;" text="bind:p05"/>
- <Cell col="13" style="align:center middle;" text="bind:timsval06"/>
- <Cell col="14" style="align:center middle;" text="bind:p06"/>
- <Cell col="15" style="align:center middle;" text="bind:timsval07"/>
- <Cell col="16" style="align:center middle;" text="bind:p07"/>
- <Cell col="17" style="align:center middle;" text="bind:timsval08"/>
- <Cell col="18" style="align:center middle;" text="bind:p08"/>
- <Cell col="19" style="align:center middle;" text="bind:timsval09"/>
- <Cell col="20" style="align:center middle;" text="bind:p09"/>
- <Cell col="21" style="align:center middle;" text="bind:timsval10"/>
- <Cell col="22" style="align:center middle;" text="bind:p10"/>
- <Cell col="23" style="align:center middle;" text="bind:timsval11"/>
- <Cell col="24" style="align:center middle;" text="bind:p11"/>
- <Cell col="25" style="align:center middle;" text="bind:timsval12"/>
- <Cell col="26" style="align:center middle;" text="bind:p12"/>
- <Cell col="27" style="align:center middle;" text="bind:timsval13"/>
- <Cell col="28" style="align:center middle;" text="bind:p13"/>
- <Cell col="29" style="align:center middle;" text="bind:timsval14"/>
- <Cell col="30" style="align:center middle;" text="bind:p14"/>
- <Cell col="31" style="align:center middle;" text="bind:timsval15"/>
- <Cell col="32" style="align:center middle;" text="bind:p15"/>
- <Cell col="33" style="align:center middle;" text="bind:timsval16"/>
- <Cell col="34" style="align:center middle;" text="bind:p16"/>
- <Cell col="35" style="align:center middle;" text="bind:timsval17"/>
- <Cell col="36" style="align:center middle;" text="bind:p17"/>
- <Cell col="37" style="align:center middle;" text="bind:timsval18"/>
- <Cell col="38" style="align:center middle;" text="bind:p18"/>
- <Cell col="39" style="align:center middle;" text="bind:timsval19"/>
- <Cell col="40" style="align:center middle;" text="bind:p19"/>
- <Cell col="41" style="align:center middle;" text="bind:timsval20"/>
- <Cell col="42" style="align:center middle;" text="bind:p20"/>
- <Cell col="43" text="bind:cnt"/>
- </Band>
- </Format>
- </Formats>
- </Grid>
- <Static text="중증도통계 - 기간별" position="absolute 550 450 662 470" id="caption21" visible="false" anchor="default"/>
- </Layout>
- </Layouts>
- </Tabpage>
- <Tabpage text="" id="case13" scrollbars="none">
- <Layouts>
- <Layout>
- <Grid position="absolute 0 0 931 620" align="align:center middle;" id="grd_totalwardmon" binddataset="ds_main_gridgrup_totalwardterm" anchor="default">
- <Formats>
- <Format id="default">
- <Columns>
- <Column size="25"/>
- <Column size="100"/>
- <Column size="0"/>
- <Column size="0"/>
- <Column size="0"/>
- <Column size="0"/>
- <Column size="0"/>
- <Column size="0"/>
- <Column size="0"/>
- <Column size="0"/>
- <Column size="0"/>
- <Column size="0"/>
- <Column size="0"/>
- <Column size="0"/>
- <Column size="0"/>
- <Column size="0"/>
- <Column size="0"/>
- <Column size="0"/>
- <Column size="0"/>
- <Column size="0"/>
- <Column size="0"/>
- <Column size="0"/>
- <Column size="0"/>
- <Column size="0"/>
- <Column size="0"/>
- <Column size="0"/>
- <Column size="0"/>
- <Column size="0"/>
- <Column size="0"/>
- <Column size="0"/>
- <Column size="0"/>
- <Column size="0"/>
- <Column size="0"/>
- <Column size="0"/>
- <Column size="0"/>
- <Column size="0"/>
- <Column size="0"/>
- <Column size="0"/>
- <Column size="0"/>
- <Column size="0"/>
- <Column size="0"/>
- <Column size="0"/>
- <Column size="100"/>
- </Columns>
- <Rows>
- <Row size="24" band="head"/>
- <Row size="24"/>
- </Rows>
- <Band id="head">
- <Cell/>
- <Cell col="1" text="일자"/>
- <Cell col="2"/>
- <Cell col="3"/>
- <Cell col="4"/>
- <Cell col="5"/>
- <Cell col="6"/>
- <Cell col="7"/>
- <Cell col="8"/>
- <Cell col="9"/>
- <Cell col="10"/>
- <Cell col="11"/>
- <Cell col="12"/>
- <Cell col="13"/>
- <Cell col="14"/>
- <Cell col="15"/>
- <Cell col="16"/>
- <Cell col="17"/>
- <Cell col="18"/>
- <Cell col="19"/>
- <Cell col="20"/>
- <Cell col="21"/>
- <Cell col="22"/>
- <Cell col="23"/>
- <Cell col="24"/>
- <Cell col="25"/>
- <Cell col="26"/>
- <Cell col="27"/>
- <Cell col="28"/>
- <Cell col="29"/>
- <Cell col="30"/>
- <Cell col="31"/>
- <Cell col="32"/>
- <Cell col="33"/>
- <Cell col="34"/>
- <Cell col="35"/>
- <Cell col="36"/>
- <Cell col="37"/>
- <Cell col="38"/>
- <Cell col="39"/>
- <Cell col="40"/>
- <Cell col="41"/>
- <Cell col="42" text="계"/>
- </Band>
- <Band id="body">
- <Cell celltype="head" expr="expr:currow + 1"/>
- <Cell col="1" style="align:center middle;" text="bind:execdd"/>
- <Cell col="2" style="align:center middle;" text="bind:timsval01"/>
- <Cell col="3" style="align:center middle;" text="bind:p01"/>
- <Cell col="4" style="align:center middle;" text="bind:timsval02"/>
- <Cell col="5" style="align:center middle;" text="bind:p02"/>
- <Cell col="6" style="align:center middle;" text="bind:timsval03"/>
- <Cell col="7" style="align:center middle;" text="bind:p03"/>
- <Cell col="8" style="align:center middle;" text="bind:timsval04"/>
- <Cell col="9" style="align:center middle;" text="bind:p04"/>
- <Cell col="10" style="align:center middle;" text="bind:timsval05"/>
- <Cell col="11" style="align:center middle;" text="bind:p05"/>
- <Cell col="12" style="align:center middle;" text="bind:timsval06"/>
- <Cell col="13" style="align:center middle;" text="bind:p06"/>
- <Cell col="14" style="align:center middle;" text="bind:timsval07"/>
- <Cell col="15" style="align:center middle;" text="bind:p07"/>
- <Cell col="16" style="align:center middle;" text="bind:timsval08"/>
- <Cell col="17" style="align:center middle;" text="bind:p08"/>
- <Cell col="18" style="align:center middle;" text="bind:timsval09"/>
- <Cell col="19" style="align:center middle;" text="bind:p09"/>
- <Cell col="20" style="align:center middle;" text="bind:timsval10"/>
- <Cell col="21" style="align:center middle;" text="bind:p10"/>
- <Cell col="22" text="bind:timsval11"/>
- <Cell col="23" style="align:center middle;" text="bind:p11"/>
- <Cell col="24" style="align:center middle;" text="bind:timsval12"/>
- <Cell col="25" style="align:center middle;" text="bind:p12"/>
- <Cell col="26" style="align:center middle;" text="bind:timsval13"/>
- <Cell col="27" style="align:center middle;" text="bind:p13"/>
- <Cell col="28" style="align:center middle;" text="bind:timsval14"/>
- <Cell col="29" style="align:center middle;" text="bind:p14"/>
- <Cell col="30" style="align:center middle;" text="bind:timsval15"/>
- <Cell col="31" style="align:center middle;" text="bind:p15"/>
- <Cell col="32" style="align:center middle;" text="bind:timsval16"/>
- <Cell col="33" style="align:center middle;" text="bind:p16"/>
- <Cell col="34" style="align:center middle;" text="bind:timsval17"/>
- <Cell col="35" style="align:center middle;" text="bind:p17"/>
- <Cell col="36" style="align:center middle;" text="bind:timsval18"/>
- <Cell col="37" style="align:center middle;" text="bind:p18"/>
- <Cell col="38" style="align:center middle;" text="bind:timsval19"/>
- <Cell col="39" style="align:center middle;" text="bind:p19"/>
- <Cell col="40" style="align:center middle;" text="bind:timsval20"/>
- <Cell col="41" style="align:center middle;" text="bind:p20"/>
- <Cell col="42" text="bind:cnt"/>
- </Band>
- </Format>
- </Formats>
- </Grid>
- <Static text="중증도통계 월간" position="absolute 545 465 663 485" id="caption22" visible="false" anchor="default"/>
- </Layout>
- </Layouts>
- </Tabpage>
- <Tabpage text="" id="case14" scrollbars="none">
- <Layouts>
- <Layout>
- <Grid position="absolute 0 0 931 620" align="align:center middle;" id="grd_totalwardyear" binddataset="ds_main_gridgrup_totalwardterm" anchor="default">
- <Formats>
- <Format id="default">
- <Columns>
- <Column size="25"/>
- <Column size="100"/>
- <Column size="0"/>
- <Column size="0"/>
- <Column size="0"/>
- <Column size="0"/>
- <Column size="0"/>
- <Column size="0"/>
- <Column size="0"/>
- <Column size="0"/>
- <Column size="0"/>
- <Column size="0"/>
- <Column size="0"/>
- <Column size="0"/>
- <Column size="0"/>
- <Column size="0"/>
- <Column size="0"/>
- <Column size="0"/>
- <Column size="0"/>
- <Column size="0"/>
- <Column size="0"/>
- <Column size="0"/>
- <Column size="0"/>
- <Column size="0"/>
- <Column size="0"/>
- <Column size="0"/>
- <Column size="0"/>
- <Column size="0"/>
- <Column size="0"/>
- <Column size="0"/>
- <Column size="0"/>
- <Column size="0"/>
- <Column size="0"/>
- <Column size="0"/>
- <Column size="0"/>
- <Column size="0"/>
- <Column size="0"/>
- <Column size="0"/>
- <Column size="0"/>
- <Column size="0"/>
- <Column size="0"/>
- <Column size="0"/>
- <Column size="100"/>
- </Columns>
- <Rows>
- <Row size="24" band="head"/>
- <Row size="24"/>
- </Rows>
- <Band id="head">
- <Cell/>
- <Cell col="1" text="일자"/>
- <Cell col="2"/>
- <Cell col="3"/>
- <Cell col="4"/>
- <Cell col="5"/>
- <Cell col="6"/>
- <Cell col="7"/>
- <Cell col="8"/>
- <Cell col="9"/>
- <Cell col="10"/>
- <Cell col="11"/>
- <Cell col="12"/>
- <Cell col="13"/>
- <Cell col="14"/>
- <Cell col="15"/>
- <Cell col="16"/>
- <Cell col="17"/>
- <Cell col="18"/>
- <Cell col="19"/>
- <Cell col="20"/>
- <Cell col="21"/>
- <Cell col="22"/>
- <Cell col="23"/>
- <Cell col="24"/>
- <Cell col="25"/>
- <Cell col="26"/>
- <Cell col="27"/>
- <Cell col="28"/>
- <Cell col="29"/>
- <Cell col="30"/>
- <Cell col="31"/>
- <Cell col="32"/>
- <Cell col="33"/>
- <Cell col="34"/>
- <Cell col="35"/>
- <Cell col="36"/>
- <Cell col="37"/>
- <Cell col="38"/>
- <Cell col="39"/>
- <Cell col="40"/>
- <Cell col="41"/>
- <Cell col="42" text="계"/>
- </Band>
- <Band id="body">
- <Cell celltype="head" expr="expr:currow + 1"/>
- <Cell col="1" style="align:center middle;" text="bind:execdd"/>
- <Cell col="2" style="align:center middle;" text="bind:timsval01"/>
- <Cell col="3" style="align:center middle;" text="bind:p01"/>
- <Cell col="4" style="align:center middle;" text="bind:timsval02"/>
- <Cell col="5" style="align:center middle;" text="bind:p02"/>
- <Cell col="6" style="align:center middle;" text="bind:timsval03"/>
- <Cell col="7" style="align:center middle;" text="bind:p03"/>
- <Cell col="8" style="align:center middle;" text="bind:timsval04"/>
- <Cell col="9" style="align:center middle;" text="bind:p04"/>
- <Cell col="10" tstyle="align:center middle;" ext="bind:timsval05"/>
- <Cell col="11" style="align:center middle;" text="bind:p05"/>
- <Cell col="12" style="align:center middle;" text="bind:timsval06"/>
- <Cell col="13" style="align:center middle;" text="bind:p06"/>
- <Cell col="14" style="align:center middle;" text="bind:timsval07"/>
- <Cell col="15" style="align:center middle;" text="bind:p07"/>
- <Cell col="16" style="align:center middle;" text="bind:timsval08"/>
- <Cell col="17" style="align:center middle;" text="bind:p08"/>
- <Cell col="18" style="align:center middle;" text="bind:timsval09"/>
- <Cell col="19" style="align:center middle;" text="bind:p09"/>
- <Cell col="20" style="align:center middle;" text="bind:timsval10"/>
- <Cell col="21" style="align:center middle;" text="bind:p10"/>
- <Cell col="22" style="align:center middle;" text="bind:timsval11"/>
- <Cell col="23" style="align:center middle;" text="bind:p11"/>
- <Cell col="24" style="align:center middle;" text="bind:timsval12"/>
- <Cell col="25" style="align:center middle;" text="bind:p12"/>
- <Cell col="26" style="align:center middle;" text="bind:timsval13"/>
- <Cell col="27" style="align:center middle;" text="bind:p13"/>
- <Cell col="28" style="align:center middle;" text="bind:timsval14"/>
- <Cell col="29" style="align:center middle;" text="bind:p14"/>
- <Cell col="30" style="align:center middle;" text="bind:timsval15"/>
- <Cell col="31" style="align:center middle;" text="bind:p15"/>
- <Cell col="32" style="align:center middle;" text="bind:timsval16"/>
- <Cell col="33" style="align:center middle;" text="bind:p16"/>
- <Cell col="34" style="align:center middle;" text="bind:timsval17"/>
- <Cell col="35" style="align:center middle;" text="bind:p17"/>
- <Cell col="36" style="align:center middle;" text="bind:timsval18"/>
- <Cell col="37" style="align:center middle;" text="bind:p18"/>
- <Cell col="38" style="align:center middle;" text="bind:timsval19"/>
- <Cell col="39" style="align:center middle;" text="bind:p19"/>
- <Cell col="40" style="align:center middle;" text="bind:timsval20"/>
- <Cell col="41" style="align:center middle;" text="bind:p20"/>
- <Cell col="42" text="bind:cnt"/>
- </Band>
- </Format>
- </Formats>
- </Grid>
- <Static text="중증도 통계 년간" position="absolute 535 475 635 495" id="caption23" visible="false" anchor="default"/>
- </Layout>
- </Layouts>
- </Tabpage>
- <Tabpage text="" id="case15" scrollbars="none">
- <Layouts>
- <Layout>
- <Grid position="absolute 0 0 931 620" align="align:center middle;" id="grd_totalserterm" binddataset="ds_main_gridgrup_totalserterm" anchor="default">
- <Formats>
- <Format id="default">
- <Columns>
- <Column size="25"/>
- <Column size="118"/>
- <Column size="100"/>
- <Column size="100"/>
- <Column size="100"/>
- <Column size="100"/>
- </Columns>
- <Rows>
- <Row size="24" band="head"/>
- <Row size="24"/>
- </Rows>
- <Band id="head">
- <Cell/>
- <Cell col="1" text="병동"/>
- <Cell col="2" text="분류군"/>
- <Cell col="3" text="분류군(%)"/>
- <Cell col="4" text="인원"/>
- <Cell col="5" text="계"/>
- </Band>
- <Band id="body">
- <Cell celltype="head" expr="expr:currow + 1"/>
- <Cell col="1" text="bind:wardnm"/>
- <Cell col="2" text="bind:bspntnm"/>
- <Cell col="3" text="bind:bspntpnm"/>
- <Cell col="4" text="bind:cnt"/>
- <Cell col="5" text="bind:cnt"/>
- </Band>
- </Format>
- </Formats>
- </Grid>
- <Static text="중증도통계 - 기간별(중환자)" position="absolute 485 450 643 470" id="caption24" visible="false" anchor="default"/>
- </Layout>
- </Layouts>
- </Tabpage>
- <Tabpage text="" id="case16" scrollbars="none">
- <Layouts>
- <Layout>
- <Grid position="absolute 0 3 545 29" id="grd_bloodroom" class="datagrid0" binddataset="ds_main_gridgrup_bspnttotal" anchor="default" scrollbars="none">
- <Formats>
- <Format id="default">
- <Columns>
- <Column size="0"/>
- <Column size="0"/>
- <Column size="0"/>
- <Column size="0"/>
- <Column size="0"/>
- <Column size="0"/>
- <Column size="0"/>
- <Column size="0"/>
- <Column size="0"/>
- <Column size="0"/>
- <Column size="0"/>
- <Column size="0"/>
- <Column size="0"/>
- <Column size="0"/>
- <Column size="0"/>
- <Column size="0"/>
- <Column size="0"/>
- <Column size="0"/>
- <Column size="0"/>
- <Column size="0"/>
- </Columns>
- <Rows>
- <Row size="0" band="head"/>
- <Row size="24"/>
- </Rows>
- <Band id="head">
- <Cell/>
- <Cell col="1"/>
- <Cell col="2"/>
- <Cell col="3"/>
- <Cell col="4"/>
- <Cell col="5"/>
- <Cell col="6"/>
- <Cell col="7"/>
- <Cell col="8"/>
- <Cell col="9"/>
- <Cell col="10"/>
- <Cell col="11"/>
- <Cell col="12"/>
- <Cell col="13"/>
- <Cell col="14"/>
- <Cell col="15"/>
- <Cell col="16"/>
- <Cell col="17"/>
- <Cell col="18"/>
- <Cell col="19"/>
- </Band>
- <Band id="body">
- <Cell style="align:center middle;background:#b5d3ffff;background2:#b5d3ffff;font:arial,9,bold;" text="bind:bspntnm0"/>
- <Cell col="1" style="align:center middle;" text="bind:total0"/>
- <Cell col="2" style="align:center middle;background:#b5d3ffff;background2:#b5d3ffff;font:arial,9,bold;" text="bind:bspntnm1"/>
- <Cell col="3" style="align:center middle;" text="bind:total1"/>
- <Cell col="4" style="align:center middle;background:#b5d3ffff;background2:#b5d3ffff;font:arial,9,bold;" text="bind:bspntnm2"/>
- <Cell col="5" style="align:center middle;" text="bind:total2"/>
- <Cell col="6" style="align:center middle;background:#b5d3ffff;background2:#b5d3ffff;font:arial,9,bold;" text="bind:bspntnm3"/>
- <Cell col="7" style="align:center middle;" text="bind:total3"/>
- <Cell col="8" style="align:center middle;background:#b5d3ffff;background2:#b5d3ffff;font:arial,9,bold;" text="bind:bspntnm4"/>
- <Cell col="9" style="align:center middle;" text="bind:total4"/>
- <Cell col="10" style="align:center middle;background:#b5d3ffff;background2:#b5d3ffff;font:arial,9,bold;" text="bind:bspntnm5"/>
- <Cell col="11" style="align:center middle;" text="bind:total5"/>
- <Cell col="12" style="align:center middle;background:#b5d3ffff;background2:#b5d3ffff;font:arial,9,bold;" text="bind:bspntnm6"/>
- <Cell col="13" style="align:center middle;" text="bind:total6"/>
- <Cell col="14" style="align:center middle;background:#b5d3ffff;background2:#b5d3ffff;font:arial,9,bold;" text="bind:bspntnm7"/>
- <Cell col="15" style="align:center middle;" text="bind:total7"/>
- <Cell col="16" style="align:center middle;background:#b5d3ffff;background2:#b5d3ffff;font:arial,9,bold;" text="bind:bspntnm8"/>
- <Cell col="17" style="align:center middle;" text="bind:total8"/>
- <Cell col="18" style="align:center middle;background:#b5d3ffff;background2:#b5d3ffff;font:arial,9,bold;" text="bind:bspntnm9"/>
- <Cell col="19" style="align:center middle;" text="bind:total9"/>
- </Band>
- </Format>
- </Formats>
- </Grid>
- <Grid position="absolute 0 30 931 620" id="grd_bloodroom1" class="datagrid2" visible="true" binddataset="ds_main_gridgrup_recpntlist" anchor="default">
- <Formats>
- <Format id="default">
- <Columns>
- <Column size="25"/>
- <Column size="100"/>
- <Column size="0"/>
- <Column size="0"/>
- <Column size="80"/>
- <Column size="64"/>
- <Column size="0"/>
- <Column size="74"/>
- <Column size="75"/>
- <Column size="75"/>
- <Column size="74"/>
- <Column size="75"/>
- <Column size="75"/>
- <Column size="75"/>
- <Column size="74"/>
- <Column size="75"/>
- <Column size="75"/>
- <Column size="75"/>
- <Column size="75"/>
- <Column size="75"/>
- <Column size="75"/>
- <Column size="75"/>
- <Column size="75"/>
- <Column size="100"/>
- </Columns>
- <Rows>
- <Row size="30" band="head"/>
- <Row size="24"/>
- </Rows>
- <Band id="head">
- <Cell/>
- <Cell col="1" text="일시"/>
- <Cell col="2" text="병동"/>
- <Cell col="3" text="병실"/>
- <Cell col="4" text="환자명"/>
- <Cell col="5" text="등록번호"/>
- <Cell col="6" text="재원기간"/>
- <Cell col="7" text="사회 정서적지지" wordwrap="word"/>
- <Cell col="8" text="투석 전 후 이동"/>
- <Cell col="9" text="혈관통로 확보"/>
- <Cell col="10" text="혈류속도 유지"/>
- <Cell col="11" text="투석회로 개방 유지"/>
- <Cell col="12" text="지혈"/>
- <Cell col="13" text="교육"/>
- <Cell col="14" text="자문"/>
- <Cell col="15" text="활력증후 측정"/>
- <Cell col="16" text="안전간호 (의식상태)"/>
- <Cell col="17" text="체중측정"/>
- <Cell col="18" text="투석중 합병증"/>
- <Cell col="19" text="투석 중 추가적 간호활동" wordwrap="word"/>
- <Cell col="20" text="검사"/>
- <Cell col="21" text="감염관리"/>
- <Cell col="22" text="총점"/>
- <Cell col="23" text="분류군"/>
- </Band>
- <Band id="body">
- <Cell celltype="head" expr="expr:currow + 1"/>
- <Cell col="1" style="align:center middle;" text="bind:execdt" mask="expr:!utlf_isNull(execdt) ? '####-##-## ##:##' : ''"/>
- <Cell col="2" style="align:center middle;" text="bind:wardnm"/>
- <Cell col="3" style="align:center middle;" text="bind:roomcd"/>
- <Cell col="4" style="align:center middle;" text="bind:hngnm"/>
- <Cell col="5" style="align:center middle;" text="bind:pid"/>
- <Cell col="6" style="align:center middle;" text="bind:hd"/>
- <Cell col="7" style="align:center middle;" text="bind:timsval01"/>
- <Cell col="8" style="align:center middle;" text="bind:timsval02"/>
- <Cell col="9" style="align:center middle;" text="bind:timsval03"/>
- <Cell col="10" style="align:center middle;" text="bind:timsval04"/>
- <Cell col="11" style="align:center middle;" text="bind:timsval05"/>
- <Cell col="12" style="align:center middle;" text="bind:timsval06"/>
- <Cell col="13" style="align:center middle;" text="bind:timsval07"/>
- <Cell col="14" style="align:center middle;" text="bind:timsval08"/>
- <Cell col="15" style="align:center middle;" text="bind:timsval09"/>
- <Cell col="16" style="align:center middle;" text="bind:timsval10"/>
- <Cell col="17" style="align:center middle;" text="bind:timsval11"/>
- <Cell col="18" style="align:center middle;" text="bind:timsval12"/>
- <Cell col="19" style="align:center middle;" text="bind:timsval13"/>
- <Cell col="20" style="align:center middle;" text="bind:timsval14"/>
- <Cell col="21" style="align:center middle;" text="bind:timsval15"/>
- <Cell col="22" style="align:center middle;" text="bind:totpnt"/>
- <Cell col="23" style="align:center middle;" text="bind:resultcd"/>
- </Band>
- </Format>
- </Formats>
- </Grid>
- </Layout>
- </Layouts>
- </Tabpage>
- <Tabpage text="" id="case17" scrollbars="none">
- <Layouts>
- <Layout>
- <Grid position="absolute 0 3 545 29" id="grd_dmpg" class="datagrid0" binddataset="ds_main_gridgrup_bspnttotal" anchor="default" scrollbars="none">
- <Formats>
- <Format id="default">
- <Columns>
- <Column size="0"/>
- <Column size="0"/>
- <Column size="0"/>
- <Column size="0"/>
- <Column size="0"/>
- <Column size="0"/>
- <Column size="0"/>
- <Column size="0"/>
- <Column size="0"/>
- <Column size="0"/>
- <Column size="0"/>
- <Column size="0"/>
- <Column size="0"/>
- <Column size="0"/>
- <Column size="0"/>
- <Column size="0"/>
- <Column size="0"/>
- <Column size="0"/>
- <Column size="0"/>
- <Column size="0"/>
- </Columns>
- <Rows>
- <Row size="20" band="head"/>
- <Row size="24"/>
- </Rows>
- <Band id="head">
- <Cell/>
- <Cell col="1"/>
- <Cell col="2"/>
- <Cell col="3"/>
- <Cell col="4"/>
- <Cell col="5"/>
- <Cell col="6"/>
- <Cell col="7"/>
- <Cell col="8"/>
- <Cell col="9"/>
- <Cell col="10"/>
- <Cell col="11"/>
- <Cell col="12"/>
- <Cell col="13"/>
- <Cell col="14"/>
- <Cell col="15"/>
- <Cell col="16"/>
- <Cell col="17"/>
- <Cell col="18"/>
- <Cell col="19"/>
- </Band>
- <Band id="body">
- <Cell style="align:center middle;background:#b5d3ffff;background2:#b5d3ffff;font:arial,9,bold;" text="bind:bspntnm0"/>
- <Cell col="1" style="align:center middle;" text="bind:total0"/>
- <Cell col="2" style="align:center middle;background:#b5d3ffff;background2:#b5d3ffff;font:arial,9,bold;" text="bind:bspntnm1"/>
- <Cell col="3" style="align:center middle;" text="bind:total1"/>
- <Cell col="4" style="align:center middle;background:#b5d3ffff;background2:#b5d3ffff;font:arial,9,bold;" text="bind:bspntnm2"/>
- <Cell col="5" style="align:center middle;" text="bind:total2"/>
- <Cell col="6" style="align:center middle;background:#b5d3ffff;background2:#b5d3ffff;font:arial,9,bold;" text="bind:bspntnm3"/>
- <Cell col="7" style="align:center middle;" text="bind:total3"/>
- <Cell col="8" style="align:center middle;background:#b5d3ffff;background2:#b5d3ffff;font:arial,9,bold;" text="bind:bspntnm4"/>
- <Cell col="9" style="align:center middle;" text="bind:total4"/>
- <Cell col="10" style="align:center middle;background:#b5d3ffff;background2:#b5d3ffff;font:arial,9,bold;" text="bind:bspntnm5"/>
- <Cell col="11" style="align:center middle;" text="bind:total5"/>
- <Cell col="12" style="align:center middle;background:#b5d3ffff;background2:#b5d3ffff;font:arial,9,bold;" text="bind:bspntnm6"/>
- <Cell col="13" style="align:center middle;" text="bind:total6"/>
- <Cell col="14" style="align:center middle;background:#b5d3ffff;background2:#b5d3ffff;font:arial,9,bold;" text="bind:bspntnm7"/>
- <Cell col="15" style="align:center middle;" text="bind:total7"/>
- <Cell col="16" style="align:center middle;background:#b5d3ffff;background2:#b5d3ffff;font:arial,9,bold;" text="bind:bspntnm8"/>
- <Cell col="17" style="align:center middle;" text="bind:total8"/>
- <Cell col="18" style="align:center middle;background:#b5d3ffff;background2:#b5d3ffff;font:arial,9,bold;" text="bind:bspntnm9"/>
- <Cell col="19" style="align:center middle;" text="bind:total9"/>
- </Band>
- </Format>
- </Formats>
- </Grid>
- <Grid position="absolute 0 30 931 620" align="align:center middle;" id="grd_dmpg1" binddataset="ds_main_gridgrup_gridlist" anchor="default">
- <Formats>
- <Format id="default">
- <Columns>
- <Column size="25"/>
- <Column size="140"/>
- <Column size="140"/>
- <Column size="140"/>
- <Column size="140"/>
- <Column size="140"/>
- <Column size="140"/>
- </Columns>
- <Rows>
- <Row size="24" band="head"/>
- <Row size="24"/>
- </Rows>
- <Band id="head">
- <Cell/>
- <Cell col="1" text="일시"/>
- <Cell col="2" text="환자명"/>
- <Cell col="3" text="등록번호"/>
- <Cell col="4" text="총점"/>
- <Cell col="5" text="분류군"/>
- <Cell col="6" text="유지환자 등록일자"/>
- </Band>
- <Band id="body">
- <Cell celltype="head" expr="expr:currow + 1"/>
- <Cell col="1" style="align:center middle;" text="bind:execdt" mask="expr:!utlf_isNull(execdt) ? '####-##-## ##:##' : ''"/>
- <Cell col="2" style="align:center middle;" text="bind:hngnm"/>
- <Cell col="3" style="align:center middle;" text="bind:pid"/>
- <Cell col="4" style="align:center middle;" text="bind:total"/>
- <Cell col="5" style="align:center middle;" text="bind:bspntnm"/>
- <Cell col="6" style="align:center middle;" text="bind:maintepatrgstdd"/>
- </Band>
- </Format>
- </Formats>
- </Grid>
- </Layout>
- </Layouts>
- </Tabpage>
- </Tabpages>
- </Tab>
- <Static id="Static01" position="absolute 202 43 388 71" style="background:#f8f8f8ff;"/>
- <Div position="absolute 1 5 1132 60" align="align:center top;" id="grp_sea" anchor="default">
- <Layouts>
- <Layout>
- <Shape position="absolute 0 0 1129 55" id="roundrect1" class="roundrect_search" type="roundrectangle" anchor="default" style="fillbrush:solid #f8f8f8ff true;"/>
- <Static text="조회 일자 :" position="absolute 10 9 86 26" id="caption2" class="search_name" anchor="default"/>
- <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"/>
- <Static text="~" position="absolute 181 12 193 25" id="caption3" anchor="default"/>
- <Calendar position="absolute 197 8 282 27" id="ipt_schtodd" class="input_search" anchor="default" autoselect="true" autoskip="true"/>
- <Static text="부 서 :" position="absolute 297 9 348 26" id="caption1" class="search_name" anchor="default"/>
- <Static text="분 류 :" position="absolute 672 9 722 26" id="caption4" class="search_name" anchor="default"/>
- <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"/>
- <Static text="재원 기간 :" position="absolute 10 32 86 49" id="caption7" class="search_name" anchor="default"/>
- <Button position="absolute 1012 16 1068 38" id="btn_ref" class="btn1" text="조회" anchor="default" onclick="group5_grp_sea_btn_ref_onclick"/>
- <Shape position="absolute 1003 5 1009 49" linetype="vertical" id="line13" class="line_4" anchor="default"/>
- <Static text="~" position="absolute 147 33 159 46" id="caption8" anchor="default"/>
- <CheckBox position="absolute 216 32 286 52" id="chk_dschyn" anchor="default" text="퇴원제외" truevalue="Y"/>
- <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"/>
- <Button position="absolute 1071 16 1127 38" id="button2" class="btn7" text="엑셀" anchor="default" onclick="group5_grp_sea_button2_onclick"/>
- <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">
- <Dataset id="innerdataset">
- <ColumnInfo>
- <Column id="codecolumn"/>
- <Column id="datacolumn"/>
- </ColumnInfo>
- <Rows>
- <Row>
- <Col id="codecolumn">1</Col>
- <Col id="datacolumn">병동</Col>
- </Row>
- <Row>
- <Col id="codecolumn">2</Col>
- <Col id="datacolumn">중환자실</Col>
- </Row>
- <Row>
- <Col id="codecolumn">3</Col>
- <Col id="datacolumn">혈액투석</Col>
- </Row>
- </Rows>
- </Dataset>
- </Radio>
- <Edit position="absolute 92 31 142 50" id="input1" anchor="default"/>
- <Edit position="absolute 163 31 213 50" id="input2" anchor="default"/>
- </Layout>
- </Layouts>
- </Div>
- </Layout>
- </Layouts>
- </Div>
- <Static text="[표]" position="absolute 1033 722 1133 734" align="align:right middle;" id="caption25" style="align:right middle;"/>
- </Layout>
- </Layouts>
- <Objects>
- <Dataset id="ds_main_gridgrup_gridlist" firefirstcount="0" firenextcount="0" useclientlayout="false" updatecontrol="true" enableevent="true" loadkeymode="keep" loadfiltermode="keep" reversesubsum="false">
- <ColumnInfo>
- <Column id="recdd" type="STRING" size="256" sumtext="기록일자"/>
- <Column id="execdt" type="STRING" size="256" sumtext="일시"/>
- <Column id="wardnm" type="STRING" size="256" sumtext="병동코드"/>
- <Column id="roomcd" type="STRING" size="256" sumtext="병실코드"/>
- <Column id="pid" type="STRING" size="256" sumtext="등록번호"/>
- <Column id="hngnm" type="STRING" size="256" sumtext="환자명"/>
- <Column id="total" type="STRING" size="256" sumtext="성별/나이"/>
- <Column id="bspntnm" type="STRING" size="256" sumtext="혈액형"/>
- <Column id="deptnm" type="STRING" size="256" sumtext="상태"/>
- <Column id="usernm" type="STRING" size="256" sumtext="기록자"/>
- <Column id="careinrmdd" type="STRING" size="256" sumtext="간호확인일"/>
- <Column id="indd" type="STRING" size="256" sumtext="입원일자"/>
- <Column id="dschdd" type="STRING" size="256" sumtext="퇴실일자"/>
- <Column id="hd" type="STRING" size="256" sumtext="재원일수"/>
- <Column id="inpath" type="STRING" size="256" sumtext="입원경로"/>
- <Column id="maintepatrgstdd" type="STRING" size="256" sumtext="유지환자등록일자"/>
- </ColumnInfo>
- <Rows>
- <Row/>
- </Rows>
- </Dataset>
- <Dataset id="ds_main_pntgrup" firefirstcount="0" firenextcount="0" useclientlayout="false" updatecontrol="true" enableevent="true" loadkeymode="keep" loadfiltermode="keep" reversesubsum="false"/>
- <Dataset id="ds_cond" firefirstcount="0" firenextcount="0" useclientlayout="false" updatecontrol="true" enableevent="true" loadkeymode="keep" loadfiltermode="keep" reversesubsum="false" oncolumnchanged="ds_cond_oncolumnchanged">
- <ColumnInfo>
- <!-- 조회 시작, 종료일 -->
- <Column id="schfromdd" type="STRING" size="256"/>
- <Column id="schtodd" type="STRING" size="256"/>
- <!-- 병동코드 -->
- <Column id="wardcd" type="STRING" size="256"/>
- <!-- 분류군 -->
- <Column id="infromdd" type="STRING" size="256"/>
- <Column id="intodd" type="STRING" size="256"/>
- <!-- 퇴원제외구분 -->
- <Column id="dschflag" type="STRING" size="256"/>
- <Column id="bspntcd" type="STRING" size="256"/>
- <Column id="recflag" type="STRING" size="256"/>
- <Column id="clsflag" type="STRING" size="256"/>
- <Column id="schcode" type="STRING" size="256"/>
- <!-- 재원기간 시작, 종료일 -->
- <!-- 호출할 그룹코드(treeview의 grupcd) -->
- <Column id="rdoflag" type="STRING" size="256"/>
- <Column id="schtomon" type="STRING" size="256"/>
- <Column id="schtoyear" type="STRING" size="256"/>
- <Column id="wardflag" type="STRING" size="256"/>
- </ColumnInfo>
- <Rows>
- <Row>
- <Col id="schfromdd"/>
- <Col id="schtodd"/>
- <Col id="wardcd"/>
- <Col id="infromdd"/>
- <Col id="intodd"/>
- <Col id="dschflag"/>
- <Col id="bspntcd"/>
- <Col id="recflag"/>
- <Col id="clsflag"/>
- <Col id="schcode"/>
- <Col id="rdoflag">A</Col>
- <Col id="schtomon"/>
- <Col id="schtoyear"/>
- <Col id="wardflag"/>
- </Row>
- </Rows>
- </Dataset>
- <Dataset id="ds_hidden_wardcdgrup_wardcdgruplist" firefirstcount="0" firenextcount="0" useclientlayout="false" updatecontrol="true" enableevent="true" loadkeymode="keep" loadfiltermode="keep" reversesubsum="false">
- <ColumnInfo>
- <Column id="wardnm" type="STRING" size="256"/>
- <Column id="wardcd" type="STRING" size="256"/>
- </ColumnInfo>
- <Rows>
- <Row/>
- </Rows>
- </Dataset>
- <Dataset id="ds_hidden_pntgrup_pntgruplist" firefirstcount="0" firenextcount="0" useclientlayout="false" updatecontrol="true" enableevent="true" loadkeymode="keep" loadfiltermode="keep" reversesubsum="false">
- <ColumnInfo>
- <Column id="cd" type="STRING" size="256"/>
- <Column id="nm" type="STRING" size="256"/>
- </ColumnInfo>
- <Rows>
- <Row/>
- </Rows>
- </Dataset>
- <Dataset id="ds_hidden_recflaglist" firefirstcount="0" firenextcount="0" useclientlayout="false" updatecontrol="true" enableevent="true" loadkeymode="keep" loadfiltermode="keep" reversesubsum="false">
- <ColumnInfo>
- <Column id="icugrup" type="STRING" size="256"/>
- <Column id="fallgrup" type="STRING" size="256"/>
- <Column id="bedsoregrup" type="STRING" size="256"/>
- </ColumnInfo>
- <Rows>
- <Row/>
- </Rows>
- </Dataset>
- <Dataset id="ds_hidden_treeitem_serdiaglist" firefirstcount="0" firenextcount="0" useclientlayout="false" updatecontrol="true" enableevent="true" loadkeymode="keep" loadfiltermode="keep" reversesubsum="false">
- <ColumnInfo>
- <Column id="depth" type="STRING" size="256"/>
- <Column id="hngnm" type="STRING" size="256"/>
- <Column id="grupcd" type="STRING" size="256"/>
- <Column id="recflag" type="STRING" size="256"/>
- <Column id="clsflag" type="STRING" size="256"/>
- <Column id="sqlflag" type="STRING" size="256"/>
- </ColumnInfo>
- <Rows>
- <Row>
- <Col id="depth">1</Col>
- <Col id="hngnm">중증도</Col>
- <Col id="grupcd">0</Col>
- <Col id="recflag">1</Col>
- <Col id="clsflag">0</Col>
- <Col id="sqlflag">0</Col>
- </Row>
- <Row>
- <Col id="depth">2</Col>
- <Col id="hngnm">환자별 중증도</Col>
- <Col id="grupcd">1</Col>
- <Col id="recflag">1</Col>
- <Col id="clsflag">'2','4'</Col>
- <Col id="sqlflag">1</Col>
- </Row>
- <Row>
- <Col id="depth">2</Col>
- <Col id="hngnm">환자별 상세분류</Col>
- <Col id="grupcd">3</Col>
- <Col id="recflag">1</Col>
- <Col id="clsflag">'2','4'</Col>
- <Col id="sqlflag">4</Col>
- </Row>
- <Row>
- <Col id="depth">2</Col>
- <Col id="hngnm">기본간호</Col>
- <Col id="grupcd">6</Col>
- <Col id="recflag">1</Col>
- <Col id="clsflag">'1','5'</Col>
- <Col id="sqlflag">5</Col>
- </Row>
- <Row>
- <Col id="depth">2</Col>
- <Col id="hngnm">중증도 통계-기간별</Col>
- <Col id="grupcd">12</Col>
- <Col id="recflag">1</Col>
- <Col id="clsflag">1</Col>
- <Col id="sqlflag">6</Col>
- </Row>
- <Row>
- <Col id="depth">2</Col>
- <Col id="hngnm">중증도 통계-월간</Col>
- <Col id="grupcd">13</Col>
- <Col id="recflag">1</Col>
- <Col id="clsflag">1</Col>
- <Col id="sqlflag">7</Col>
- </Row>
- <Row>
- <Col id="depth">2</Col>
- <Col id="hngnm">중증도 통계-년간</Col>
- <Col id="grupcd">14</Col>
- <Col id="recflag">1</Col>
- <Col id="clsflag">1</Col>
- <Col id="sqlflag">8</Col>
- </Row>
- <Row>
- <Col id="depth">1</Col>
- <Col id="hngnm">낙상</Col>
- <Col id="grupcd">0</Col>
- <Col id="recflag">2</Col>
- <Col id="clsflag">0</Col>
- <Col id="sqlflag">0</Col>
- </Row>
- <Row>
- <Col id="depth">2</Col>
- <Col id="hngnm">성인</Col>
- <Col id="grupcd">0</Col>
- <Col id="recflag">2</Col>
- <Col id="clsflag">2</Col>
- <Col id="sqlflag">0</Col>
- </Row>
- <Row>
- <Col id="depth">3</Col>
- <Col id="hngnm">환자별 낙상</Col>
- <Col id="grupcd">7</Col>
- <Col id="recflag">2</Col>
- <Col id="clsflag">2</Col>
- <Col id="sqlflag">1</Col>
- </Row>
- <Row>
- <Col id="depth">3</Col>
- <Col id="hngnm">낙상 상세분류</Col>
- <Col id="grupcd">8</Col>
- <Col id="recflag">2</Col>
- <Col id="clsflag">2</Col>
- <Col id="sqlflag">2b</Col>
- </Row>
- <Row>
- <Col id="depth">2</Col>
- <Col id="hngnm">아동</Col>
- <Col id="grupcd">0</Col>
- <Col id="recflag">2</Col>
- <Col id="clsflag">1</Col>
- <Col id="sqlflag">0</Col>
- </Row>
- <Row>
- <Col id="depth">3</Col>
- <Col id="hngnm">환자별 낙상</Col>
- <Col id="grupcd">7</Col>
- <Col id="recflag">2</Col>
- <Col id="clsflag">1</Col>
- <Col id="sqlflag">1</Col>
- </Row>
- <Row>
- <Col id="depth">3</Col>
- <Col id="hngnm">낙상 상세분류</Col>
- <Col id="grupcd">9</Col>
- <Col id="recflag">2</Col>
- <Col id="clsflag">1</Col>
- <Col id="sqlflag">2b</Col>
- </Row>
- <Row>
- <Col id="depth">1</Col>
- <Col id="hngnm">욕창</Col>
- <Col id="grupcd">0</Col>
- <Col id="recflag">3</Col>
- <Col id="clsflag">0</Col>
- <Col id="sqlflag">0</Col>
- </Row>
- <Row>
- <Col id="depth">2</Col>
- <Col id="hngnm">환자별 욕창</Col>
- <Col id="grupcd">10</Col>
- <Col id="recflag">3</Col>
- <Col id="clsflag">1</Col>
- <Col id="sqlflag">1</Col>
- </Row>
- <Row>
- <Col id="depth">2</Col>
- <Col id="hngnm">욕창 상세분류</Col>
- <Col id="grupcd">11</Col>
- <Col id="recflag">3</Col>
- <Col id="clsflag">1</Col>
- <Col id="sqlflag">2b</Col>
- </Row>
- </Rows>
- </Dataset>
- <Dataset id="ds_init_icucdgrup_icucdgruplist" firefirstcount="0" firenextcount="0" useclientlayout="false" updatecontrol="true" enableevent="true" loadkeymode="keep" loadfiltermode="keep" reversesubsum="false">
- <ColumnInfo>
- <Column id="wardnm" type="STRING" size="256"/>
- <Column id="wardcd" type="STRING" size="256"/>
- </ColumnInfo>
- <Rows>
- <Row/>
- </Rows>
- </Dataset>
- <Dataset id="ds_main_gridgrup_bspntlist" firefirstcount="0" firenextcount="0" useclientlayout="false" updatecontrol="true" enableevent="true" loadkeymode="keep" loadfiltermode="keep" reversesubsum="false">
- <ColumnInfo>
- <Column id="cdnm" type="STRING" size="256"/>
- <Column id="cdid" type="STRING" size="256"/>
- </ColumnInfo>
- </Dataset>
- <Dataset id="ds_send" firefirstcount="0" firenextcount="0" useclientlayout="false" updatecontrol="true" enableevent="true" loadkeymode="keep" loadfiltermode="keep" reversesubsum="false"/>
- <Dataset id="ds_main_gridgrup_titlewardterm" firefirstcount="0" firenextcount="0" useclientlayout="false" updatecontrol="true" enableevent="true" loadkeymode="keep" loadfiltermode="keep" reversesubsum="false"/>
- <Dataset id="ds_main_gridgrup_totalwardterm" firefirstcount="0" firenextcount="0" useclientlayout="false" updatecontrol="true" enableevent="true" loadkeymode="keep" loadfiltermode="keep" reversesubsum="false"/>
- <Dataset id="ds_main_gridgrup_totalserterm" firefirstcount="0" firenextcount="0" useclientlayout="false" updatecontrol="true" enableevent="true" loadkeymode="keep" loadfiltermode="keep" reversesubsum="false"/>
- <Dataset id="ds_main_gridgrup_recpntlist" firefirstcount="0" firenextcount="0" useclientlayout="false" updatecontrol="true" enableevent="true" loadkeymode="keep" loadfiltermode="keep" reversesubsum="false"/>
- <Dataset id="ds_main_gridgrup_titlelist" firefirstcount="0" firenextcount="0" useclientlayout="false" updatecontrol="true" enableevent="true" loadkeymode="keep" loadfiltermode="keep" reversesubsum="false"/>
- <Dataset id="ds_main_gridgrup_bspnttotal" firefirstcount="0" firenextcount="0" useclientlayout="false" updatecontrol="true" enableevent="true" loadkeymode="keep" loadfiltermode="keep" reversesubsum="false"/>
- <Dataset id="ds_main_gridgrup_basecarelist" firefirstcount="0" firenextcount="0" useclientlayout="false" updatecontrol="true" enableevent="true" loadkeymode="keep" loadfiltermode="keep" reversesubsum="false"/>
- </Objects>
- <Bind>
- <BindItem id="item0" compid="group5.grp_sea2.cmb_wardcd2" propid="value" datasetid="ds_cond" columnid="wardcd"/>
- <BindItem id="item1" compid="group5.grp_sea2.ipt_schtoyear" propid="value" datasetid="ds_cond" columnid="schtoyear"/>
- <BindItem id="item2" compid="group5.grp_sea2.radio2" propid="value" datasetid="ds_cond" columnid="wardflag"/>
- <BindItem id="item3" compid="group5.grp_sea2.ipt_schtomon" propid="value" datasetid="ds_cond" columnid="schtomon"/>
- <BindItem id="item4" compid="group5.grp_sea.ipt_schfromdd" propid="value" datasetid="ds_cond" columnid="schfromdd"/>
- <BindItem id="item5" compid="group5.grp_sea.ipt_schtodd" propid="value" datasetid="ds_cond" columnid="schtodd"/>
- <BindItem id="item6" compid="group5.grp_sea.cmb_bspntcd" propid="value" datasetid="ds_cond" columnid="bspntcd"/>
- <BindItem id="item7" compid="group5.grp_sea.chk_dschyn" propid="value" datasetid="ds_cond" columnid="dschflag"/>
- <BindItem id="item8" compid="group5.grp_sea.cmb_wardcd" propid="value" datasetid="ds_cond" columnid="wardcd"/>
- <BindItem id="item9" compid="group5.grp_sea.radio1" propid="value" datasetid="ds_cond" columnid="wardflag"/>
- <BindItem id="item10" compid="group5.grp_sea.input1" propid="value" datasetid="ds_cond" columnid="infromdd"/>
- <BindItem id="item11" compid="group5.grp_sea.input2" propid="value" datasetid="ds_cond" columnid="intodd"/>
- <BindItem id="item12" compid="group5.switch1.case2.rdo_flag" propid="value" datasetid="ds_cond" columnid="rdoflag"/>
- </Bind>
- <Script type="xscript4.0"><![CDATA[/***************************************************************************************
- * System Name :
- * Job Name :
- * Creator :
- * Make Date : 2015-11-13
- * Description :
- *---------------------------------------------------------------------------------------
- * Modify Date Modifier Modify Description
- *---------------------------------------------------------------------------------------
- * 2015-11-13 Live Converter TF->XP
- *
- *---------------------------------------------------------------------------------------
- ****************************************************************************************/
- include "com_commonxp::comm_main.xjs";
- include "com_commodulexp::SSZFM00701.xjs";
- include "emr_carerecxp::SMMNR07800.xjs";
- var arErrorCode = new HashArray();
- function cf_TRMNR07801(sSvcId, nErrorCode, sErrorMsg) {
- arErrorCode.push(sSvcId, nErrorCode);
- if(nErrorCode < 0) return;
- utlf_addLog("***** cf_TRMNR07801 *****");
- }
- function cf_TRMNR07803(sSvcId, nErrorCode, sErrorMsg) {
- arErrorCode.push(sSvcId, nErrorCode);
- if(nErrorCode < 0) return;
- utlf_addLog("***** cf_TRMNR07803 *****");
- }
- function cf_TRMNR07804(sSvcId, nErrorCode, sErrorMsg) {
- arErrorCode.push(sSvcId, nErrorCode);
- if(nErrorCode < 0) return;
- utlf_addLog("***** cf_TRMNR07804 *****");
- }
- function cf_TRMNR07802(sSvcId, nErrorCode, sErrorMsg) {
- arErrorCode.push(sSvcId, nErrorCode);
- if(nErrorCode < 0) return;
- utlf_addLog("***** cf_TRMNR07802 *****");
- }
- function SMMNR07800_oninit(obj:Form, e:InitEventInfo)
- {
- frmf_initForm(obj);
- }
- function SMMNR07800_onload(obj:Form, e:LoadEventInfo)
- {
- group5.switch1.tabindex = 9;
- fInit();
- }
- function group5_grp_sea2_cmb_wardcd2_onitemchanged(obj:Combo, e:ItemChangeEventInfo)
- {
- fSearch();
- }
- function group5_grp_sea2_button1_onclick(obj:Button, e:ClickEventInfo)
- {
- fSearch();
- }
- function group5_grp_sea2_btn_excel_onclick(obj:Button, e:ClickEventInfo)
- {
- fSaveExcel();
- }
- function group5_grp_sea2_ipt_schtoyear_onchanged(obj:Calendar, e:ChangeEventInfo)
- {
- var schtoyear = ds_cond.getColumn(0, "schtoyear");
-
- ds_cond.setColumn(0, "schtoyear", schtoyear.substring(0, 4));
- fSearch();
- }
- function group5_grp_sea2_radio2_onitemchanged(obj:Radio, e:ItemChangeEventInfo)
- {
- if( ds_cond.getColumn(0, "wardflag") == "3") {
- group5.grp_sea2.cmb_wardcd2.value ="";
- group5.grp_sea2.cmb_wardcd2.visible = false;
- } else {
- group5.grp_sea2.cmb_wardcd2.visible = true;
- fGetWard();
- group5.grp_sea2.cmb_wardcd2.value = ds_hidden_wardcdgrup_wardcdgruplist.getColumn(0, "wardcd");
- }
- }
- function group5_grp_sea2_ipt_schtomon_onchanged(obj:Calendar, e:ChangeEventInfo)
- {
- var schtoyear = ds_cond.getColumn(0, "schtomon");
-
- ds_cond.setColumn(0, "schtomon", schtoyear.substring(0, 6));
- fSearch();
- }
- function group5_grp_sea_cmb_bspntcd_onitemchanged(obj:Combo, e:ItemChangeEventInfo)
- {
- fSearch();
- }
- function group5_grp_sea_btn_ref_onclick(obj:Button, e:ClickEventInfo)
- {
- fSearch();
- }
- function group5_grp_sea_cmb_wardcd_onitemchanged(obj:Combo, e:ItemChangeEventInfo)
- {
- var wardcd = ds_cond.getColumn(0, "wardcd");
- var trv_idx = ds_hidden_treeitem_serdiaglist.rowposition;
- if(trv_idx == -1){
- trv_idx = 3;//default
- }
- var recflag = ds_hidden_treeitem_serdiaglist.getColumn(trv_idx-1, "recflag");
- //fGetClsFlag(wardcd, recflag); //20090319_SMY_주석처리
- fSearch();
- }
- function group5_grp_sea_button2_onclick(obj:Button, e:ClickEventInfo)
- {
- fSaveExcel();
- }
- function group5_grp_sea_radio1_onitemchanged(obj:Radio, e:ItemChangeEventInfo)
- {
- if( ds_cond.getColumn(0, "wardflag") == "1") {
- ds_cond.setColumn(0, "infromdd", '');
- ds_cond.setColumn(0, "intodd", '');
- group5.grp_sea.cmb_wardcd.visible = true;
- fGetWard();
-
- // input1.value ="";
- // input2.value ="";
- group5.grp_sea.caption7.visible = true;
- group5.grp_sea.input1.visible = true;
- group5.grp_sea.caption8.visible = true;
- group5.grp_sea.input2.visible = true;
- group5.grp_sea.chk_dschyn.visible = true;
- group5.grp_sea.cmb_wardcd.value = ds_hidden_wardcdgrup_wardcdgruplist.getColumn(0, "wardcd");
- } else if( ds_cond.getColumn(0, "wardflag") == "2") {
-
- ds_cond.setColumn(0, "infromdd", '');
- ds_cond.setColumn(0, "intodd", '');
- group5.grp_sea.cmb_wardcd.visible = true;
- fGetWard();
-
- // input1.value ="";
- // input2.value ="";
- group5.grp_sea.caption7.visible = false;
- group5.grp_sea.input1.visible = false;
- group5.grp_sea.caption8.visible = false;
- group5.grp_sea.input2.visible = false;
- group5.grp_sea.chk_dschyn.visible = false;
- group5.grp_sea.cmb_wardcd.value = ds_hidden_wardcdgrup_wardcdgruplist.getColumn(0, "wardcd");
- } else if( ds_cond.getColumn(0, "wardflag") == "3") {
- group5.grp_sea.cmb_wardcd.value ="";
- ds_cond.setColumn(0, "infromdd", '');
- ds_cond.setColumn(0, "intodd", '');
- group5.grp_sea.cmb_wardcd.visible = false;
-
- // input1.value ="";
- // input2.value ="";
- group5.grp_sea.caption7.visible = false;
- group5.grp_sea.input1.visible = false;
- group5.grp_sea.caption8.visible = false;
- group5.grp_sea.input2.visible = false;
- group5.grp_sea.chk_dschyn.visible = false;
- }
- }
- ]]></Script>
- </Form>
- </FDL>
|