123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211 |
- <?xml version="1.0" encoding="utf-8"?>
- <FDL version="1.5">
- <TypeDefinition url="..\..\..\default_typedef.xml"/>
- <Form id="SMMNW04700" position="absolute 0 0 1200 776" titletext="욕창상처관찰기록" oninit="SMMNW04700_oninit" onload="SMMNW04700_onload" ontimer="SMMNW04700_ontimer">
- <Layouts>
- <Layout>
- <Div position="absolute 0 0 1195 25" id="group1">
- <Layouts>
- <Layout>
- <Static text="욕창상처관찰기록" position="absolute 0 0 140 25" id="caption6" class="tit_1"/>
- <Radio position="absolute 147 2 247 22" id="rdo_indsch" columncount="2" codecolumn="codecolumn" datacolumn="datacolumn" onitemchanged="group1_rdo_indsch_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>
- </Rows>
- </Dataset>
- </Radio>
- <Static text="※ 욕창상처관찰기록 등록시 자동으로 보고 되도록 변경되었습니다. SMS는 별도로 선택한 1건만 전송됩니다." position="absolute 545 2 1195 22" id="caption2" style="color:#0000ffff;font:Dotum,9,bold;"/>
- </Layout>
- </Layouts>
- </Div>
- <Div position="absolute 0 21 1195 776" id="group5" scrollbars="autoboth">
- <Layouts>
- <Layout>
- <Div position="absolute 0 3 1195 83" align="align:center top;" id="grp_sea" class="div_SA" anchor="default">
- <Layouts>
- <Layout>
- <Static text="병 동 :" position="absolute 15 14 75 34" id="ctn_ward" class="search_name" anchor="default"/>
- <Combo position="absolute 78 14 217 34" id="cmb_wardcd" class="combo_s_essential" innerdataset="@ds_init_ward" datacolumn="wardnm" codecolumn="wardcd" onitemchanged="group5_grp_sea_cmb_wardcd_onitemchanged" anchor="default"/>
- <Static text="병 실 :" position="absolute 252 14 316 34" id="ctn_room" class="search_name" visible="false" anchor="default"/>
- <Combo position="absolute 317 14 388 34" id="cmb_roomcd" class="combo_search" visible="false" innerdataset="@ds_data_roomcdgruplist" datacolumn="roomnm" codecolumn="roomcd" onitemchanged="group5_grp_sea_cmb_roomcd_onitemchanged" anchor="default"/>
- <Static text="환자정보 :" position="absolute 425 14 500 34" id="ctn_pid" class="search_name" visible="false" anchor="default"/>
- <Combo position="absolute 500 14 570 34" id="cmb_patientnm" class="combo_search" enable="false" visible="false" innerdataset="@ds_data_patientgruplist" datacolumn="patientnm" codecolumn="pid" anchor="default"/>
- <Edit position="absolute 572 14 626 34" id="ipt_pid" class="input_search" visible="false" onkeyup="group5_grp_sea_ipt_pid_onkeyup" anchor="default" autoselect="true"/>
- <Button position="absolute 628 13 648 33" id="btn_patSearch" class="icon_search" visible="false" text="" onclick="group5_grp_sea_btn_patSearch_onclick" anchor="default"/>
- <Static text="기준일시 :" position="absolute 660 14 736 34" id="caption8" class="search_name" anchor="default"/>
- <Calendar position="absolute 736 14 821 34" id="ipt_genrdd" class="input_default" onchanged="group5_grp_sea_ipt_genrdd_onchanged" anchor="default" autoselect="true"/>
- <MaskEdit position="absolute 823 14 875 34" id="ipt_genrtm" class="input_search" mask="##:##" maskchar=" " type="string" tooltiptext="시간을 입력하세요[ ex)23:11" tooltiptype="hover" style="align:center middle;" onkeyup="group5_grp_sea_ipt_genrtm_onkeyup" anchor="default" displaynulltext=" " autoselect="true" ontextchange="group5_grp_sea_ipt_genrtm_ontextchange" trimtype="both"/>
- <Radio position="absolute 77 47 402 67" id="rdo_stdradio" class="radio_search" columncount="-1" codecolumn="codecolumn" datacolumn="datacolumn" rowcount="-1" onitemchanged="group5_grp_sea_rdo_stdradio_onitemchanged" anchor="default" style="textpadding:0 5 0 3;">
- <Dataset id="innerdataset">
- <ColumnInfo>
- <Column id="codecolumn"/>
- <Column id="datacolumn"/>
- </ColumnInfo>
- <Rows>
- <Row>
- <Col id="codecolumn">0</Col>
- <Col id="datacolumn">전체</Col>
- </Row>
- <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>
- <Div position="absolute 425 40 1008 72" align="align:center top;" id="grp_icupnt" anchor="default">
- <Layouts>
- <Layout>
- <Shape position="absolute 2 2 581 8" align="align:center bottom;" linetype="horizontal" id="line4" class="line_3" anchor="default"/>
- <Static text="중증도사정 운동 및 활동" position="absolute 2 6 147 26" align="align:center middle;" id="caption38" class="cell_1" anchor="default"/>
- <Edit position="absolute 149 6 202 26" align="align:right middle;" id="ipt_actvpnt" enable="false" anchor="default" style=":disabled {align:right middle;}"/>
- <Static text="욕창위험사정" position="absolute 204 6 289 26" align="align:center middle;" id="caption7" class="cell_1" anchor="default"/>
- <Calendar position="absolute 291 6 377 26" id="ipt_recdd" class="input_default" enable="false" anchor="default"/>
- <MaskEdit position="absolute 379 6 430 26" align="align:center middle;" id="ipt_rectm" enable="false" mask="##:##" anchor="default" style=":disabled {align:center middle;}" type="string" maskchar=" " displaynulltext=" " ontextchange="group5_grp_sea_grp_icupnt_ipt_rectm_ontextchange" trimtype="both"/>
- <Edit position="absolute 432 6 483 26" align="align:right middle;" id="ipt_pnt" enable="false" anchor="default" style=":disabled {align:right middle;}"/>
- <Edit position="absolute 485 6 581 26" align="align:center middle;" id="ipt_rslt" enable="false" anchor="default" style=":disabled {align:center middle;}"/>
- <Shape position="absolute 2 25 581 31" align="align:center bottom;" linetype="horizontal" id="line1" class="line_3" anchor="default"/>
- </Layout>
- </Layouts>
- </Div>
- <Shape position="absolute 1013 14 1019 68" linetype="vertical" id="line13" class="line_4" anchor="default"/>
- <Button position="absolute 1088 52 1178 72" id="button2" class="btn2" text="발생부위추가" onclick="group5_grp_sea_button2_onclick" anchor="default"/>
- <Button position="absolute 1132 30 1178 50" id="button1" class="btn2" text="삭제" onclick="group5_grp_sea_button1_onclick" anchor="default"/>
- <Button position="absolute 1060 30 1130 50" id="button3" class="btn5" text="인증저장" onclick="group5_grp_sea_button3_onclick" anchor="default"/>
- <Static text="구 분 :" position="absolute 15 47 75 67" id="ctn_searchflag" class="search_name" anchor="default"/>
- <Button position="absolute 1031 8 1079 28" id="button4" class="btn2" text="push" onclick="group5_grp_sea_button4_onclick" anchor="default"/>
- <Combo position="absolute 317 14 387 34" id="cmb_settingrn" class="combo_search" innerdataset="@ds_init_settinginfo_settingrn" datacolumn="settingrnnm" codecolumn="settingrnid" onitemchanged="group5_grp_sea_cmb_settingrn_onitemchanged" anchor="default"/>
- <Static text="내환자 :" position="absolute 252 14 317 34" id="cap_settingrn" class="search_name" anchor="default"/>
- <Static text="구 역 :" position="absolute 252 14 312 34" align="align:center middle;" id="cap_Zone" class="search_name" visible="false" anchor="default"/>
- <Combo position="absolute 317 14 387 34" id="cmb_Zone" class="combo_search" visible="false" innerdataset="@ds_temp_zoneinfo_zonelist" datacolumn="bednm" codecolumn="bedcd" onitemchanged="group5_grp_sea_cmb_Zone_onitemchanged" anchor="default"/>
- <Button position="absolute 922 14 1005 34" id="button6" class="btn2" text="push그래프" onclick="group5_grp_sea_button6_onclick" anchor="default"/>
- </Layout>
- </Layouts>
- </Div>
- <ImageViewer position="absolute 1015 175 1080 200" align="align:center middle;" id="img_tmp" visible="false" anchor="default"/>
- <Button position="absolute 1081 11 1178 31" id="button26" class="btn2" text="욕창발생보고서" onclick="group5_button26_onclick" anchor="default"/>
- <Static text="[표]" position="absolute 1169 738 1195 751" id="caption1" anchor="default"/>
- <Grid position="absolute 0 85 210 735" id="grd_wardpatlist" binddataset="ds_main_wardpatinfo_wardpatlist" oncelldblclick="group5_grd_wardpatlist_oncelldblclick" cellsizingtype="col" anchor="default" scrollpixel="all" autofittype="col">
- <Formats>
- <Format id="default">
- <Columns>
- <Column size="50"/>
- <Column size="60"/>
- <Column size="47"/>
- <Column size="30"/>
- <Column size="0"/>
- <Column size="0"/>
- <Column size="0"/>
- <Column size="0"/>
- <Column size="0"/>
- <Column size="0"/>
- </Columns>
- <Rows>
- <Row size="24" band="head"/>
- <Row size="24"/>
- </Rows>
- <Band id="head">
- <Cell text="병실"/>
- <Cell col="1" text="환자명"/>
- <Cell col="2" text="S/A"/>
- <Cell col="3" text="수행"/>
- <Cell col="4"/>
- <Cell col="5"/>
- <Cell col="6"/>
- <Cell col="7"/>
- <Cell col="8"/>
- <Cell col="9"/>
- </Band>
- <Band id="body">
- <Cell text="bind:roomcd"/>
- <Cell col="1" style="align:left;" text="bind:patnm"/>
- <Cell col="2" style="align:left;" text="bind:sexage"/>
- <Cell col="3" text="bind:recflag"/>
- <Cell col="4" text="bind:indd"/>
- <Cell col="5" text="bind:cretno"/>
- <Cell col="6" text="bind:pid"/>
- <Cell col="7" text="bind:ordtype"/>
- <Cell col="8" text="bind:orddeptcd"/>
- <Cell col="9" text="bind:orddrid"/>
- </Band>
- </Format>
- </Formats>
- </Grid>
- <Grid position="absolute 215 85 1195 735" id="grd_detlgrup" class="datagrid2" visible="true" binddataset="ds_main_detlgrup_detlgruplist" onrbuttondown="group5_grd_detlgrup_onrbuttondown" oncelldblclick="group5_grd_detlgrup_oncelldblclick" oncellclick="group5_grd_detlgrup_oncellclick" autoenter="key" ondropdown="group5_grd_detlgrup_ondropdown" cellsizingtype="col" anchor="default" tooltiptype="hover" scrollpixel="all" cellsizebandtype="allband" onlbuttondown="group5_grd_detlgrup_onlbuttondown" onlbuttonup="group5_grd_detlgrup_onlbuttonup" onrbuttonup="group5_grd_detlgrup_onrbuttonup" oncloseup="group5_grd_detlgrup_oncloseup">
- <Formats>
- <Format id="default">
- <Columns>
- <Column size="20" band="left"/>
- <Column size="0"/>
- <Column size="0"/>
- <Column size="180"/>
- <Column size="88"/>
- <Column size="35"/>
- <Column size="100"/>
- <Column size="100"/>
- <Column size="70"/>
- <Column size="36"/>
- <Column size="33"/>
- <Column size="56"/>
- <Column size="30"/>
- <Column size="25"/>
- <Column size="88"/>
- <Column size="35"/>
- <Column size="30"/>
- <Column size="30"/>
- <Column size="30"/>
- <Column size="46"/>
- <Column size="47"/>
- <Column size="56"/>
- <Column size="70"/>
- <Column size="0"/>
- <Column size="54"/>
- <Column size="37"/>
- <Column size="58"/>
- <Column size="22"/>
- <Column size="18"/>
- <Column size="25"/>
- <Column size="22"/>
- <Column size="75"/>
- <Column size="31"/>
- <Column size="0"/>
- <Column size="81"/>
- <Column size="49"/>
- <Column size="0"/>
- <Column size="0"/>
- <Column size="0"/>
- <Column size="0"/>
- <Column size="0"/>
- <Column size="0"/>
- <Column size="0"/>
- <Column size="0"/>
- <Column size="0"/>
- <Column size="0"/>
- <Column size="0"/>
- <Column size="0"/>
- <Column size="0"/>
- <Column size="0"/>
- <Column size="0"/>
- <Column size="0"/>
- <Column size="0"/>
- <Column size="0"/>
- <Column size="0"/>
- </Columns>
- <Rows>
- <Row size="24" band="head"/>
- <Row size="24" band="head"/>
- <Row size="24"/>
- </Rows>
- <Band id="head">
- <Cell rowspan="2" taborder="undefined"/>
- <Cell col="1" rowspan="2" text="상태" taborder="undefined"/>
- <Cell col="2" rowspan="2" text="상태2" taborder="undefined"/>
- <Cell col="3" rowspan="2" text="욕창발생부위" taborder="undefined"/>
- <Cell col="4" rowspan="2" text="발생일자" taborder="undefined"/>
- <Cell col="5" rowspan="2" text="시간" taborder="undefined"/>
- <Cell col="6" rowspan="2" text="발생장소" taborder="undefined"/>
- <Cell col="7" rowspan="2" text="발생장소(원내)" taborder="undefined"/>
- <Cell col="8" rowspan="2" text="원인" taborder="undefined"/>
- <Cell col="9" rowspan="2" text="구분" taborder="undefined"/>
- <Cell col="10" rowspan="2" text="푸시 여부" taborder="undefined"/>
- <Cell col="11" rowspan="2" text="SMS 전송" taborder="undefined"/>
- <Cell col="12" rowspan="2" text="보고 확인" taborder="undefined"/>
- <Cell col="13" rowspan="2" text="선택" taborder="undefined"/>
- <Cell col="14" rowspan="2" text="기록일자" taborder="undefined"/>
- <Cell col="15" rowspan="2" text="시간" taborder="undefined"/>
- <Cell col="16" colspan="3" text="크기(cm)" taborder="undefined"/>
- <Cell col="19" colspan="2" text="욕창분류단계" taborder="undefined"/>
- <Cell col="21" rowspan="2" text="기저부색" taborder="undefined"/>
- <Cell col="22" rowspan="2" text="조직유형" taborder="undefined"/>
- <Cell col="23" rowspan="2" text="caption1" taborder="undefined"/>
- <Cell col="24" colspan="2" text="삼출액" taborder="undefined"/>
- <Cell col="26" rowspan="2" text="상처 감염증상" taborder="undefined"/>
- <Cell col="27" colspan="4" style="align:left;" text="잠식(Undermining)" taborder="undefined"/>
- <Cell col="31" rowspan="2" text="Dressing" taborder="undefined"/>
- <Cell col="32" rowspan="2" text="첨부 파일" taborder="undefined"/>
- <Cell col="33" rowspan="2" text="첨부파일 갯수" taborder="undefined"/>
- <Cell col="34" rowspan="2" text="비고" taborder="undefined"/>
- <Cell col="35" rowspan="2" text="기록자" taborder="undefined"/>
- <Cell col="36" rowspan="2" text="recrid" taborder="undefined"/>
- <Cell col="37" text="genrplceid"/>
- <Cell col="38" text="causeid"/>
- <Cell col="39" text="colorid"/>
- <Cell col="40" text="symptomid"/>
- <Cell col="41" text="underangleid"/>
- <Cell col="42" text="dressingid"/>
- <Cell col="43" text="stageid"/>
- <Cell col="44" text="stateid"/>
- <Cell col="45" text="amountid"/>
- <Cell col="46" text="pid"/>
- <Cell col="47" text="grupcd"/>
- <Cell col="48" text="instcd"/>
- <Cell col="49" text="obsrecseq"/>
- <Cell col="50" text="signno"/>
- <Cell col="51" text="indd"/>
- <Cell col="52" text="cretno"/>
- <Cell col="53" text="totpnt"/>
- <Cell col="54" text="clsgrupkind"/>
- <Cell row="1" col="16" text="가로"/>
- <Cell row="1" col="17" text="세로"/>
- <Cell row="1" col="18" text="깊이"/>
- <Cell row="1" col="19" text="사정"/>
- <Cell row="1" col="20" text="재사정"/>
- <Cell row="1" col="24" text="유형"/>
- <Cell row="1" col="25" text="양"/>
- <Cell row="1" col="27" colspan="2" text="방향" taborder="undefined"/>
- <Cell row="1" col="29" colspan="2" text="깊이" taborder="undefined"/>
- <Cell row="1" col="37" text="genrplceid"/>
- <Cell row="1" col="38" text="causeid"/>
- <Cell row="1" col="39" text="colorid"/>
- <Cell row="1" col="40" text="symptomid"/>
- <Cell row="1" col="41" text="underangleid"/>
- <Cell row="1" col="42" text="dressingid"/>
- <Cell row="1" col="43" text="stageid"/>
- <Cell row="1" col="44" text="stateid"/>
- <Cell row="1" col="45" text="amountid"/>
- <Cell row="1" col="46" text="pid"/>
- <Cell row="1" col="47" text="grupcd"/>
- <Cell row="1" col="48" text="instcd"/>
- <Cell row="1" col="49" text="obsrecseq"/>
- <Cell row="1" col="50" text="signno"/>
- <Cell row="1" col="51" text="indd"/>
- <Cell row="1" col="52" text="cretno"/>
- <Cell row="1" col="53" text="totpnt"/>
- <Cell row="1" col="54" text="clsgrupkind"/>
- </Band>
- <Band id="body">
- <Cell celltype="head" edittype="none"/>
- <Cell col="1" displaytype="combo" edittype="combo" text="bind:stat" suppress="1" combodataset="ds_stat" combocodecol="value" combodatacol="label"/>
- <Cell col="2" displaytype="combo" edittype="combo" text="bind:stat2" combodataset="ds_stat" combocodecol="value" combodatacol="label"/>
- <Cell col="3" displaytype="text" edittype="none" style="align:center;" text="bind:obspartnm" editautoselect="true" expandshow="show" suppress="2" suppressalign="middle,over" tooltiptext="bind:obspartnm"/>
- <Cell col="4" displaytype="date" edittype="none" style="padding:0 0 0 0;" text="bind:genrdd" suppress="3" suppressalign="middle,over" calendardisplaynulltype="none" tooltiptext="bind:genrdd" enable="false"/>
- <Cell col="5" displaytype="text" edittype="none" text="bind:genrtm" mask="expr:utlf_isNull(genrtm) ? '' : '##:##'" editautoselect="true" suppress="4" suppressalign="middle,over" tooltiptext="bind:genrtm" enable="false"/>
- <Cell col="6" displaytype="text" edittype="none" text="bind:genrplce" editautoselect="true" expandshow="show" suppress="5" suppressalign="middle,over" tooltiptext="bind:genrplce"/>
- <Cell col="7" displaytype="combo" edittype="none" text="bind:genrplcewardcd" suppress="6" suppressalign="middle,over" combodataset="ds_init_ward" combocodecol="wardcd" combodatacol="wardnm" combodisplayrowcount="30" tooltiptext="bind:genrplcewardcd" enable="false"/>
- <Cell col="8" displaytype="text" edittype="none" style="align:left top;padding:1 2 0 1;linespace:1;" text="bind:cause" wordwrap="word" editautoselect="true" expandshow="show" suppress="7" suppressalign="middle,over" tooltiptext="bind:cause"/>
- <Cell col="9" displaytype="combo" edittype="none" style="align:center;" text="bind:flag" suppress="8" suppressalign="middle,over" combodataset="ds_flag" combocodecol="value" combodatacol="label" tooltiptext="bind:flag" enable="false"/>
- <Cell col="10" displaytype="checkbox" edittype="checkbox" text="bind:pushyn" tooltiptext="bind:pushyn"/>
- <Cell col="11" displaytype="checkbox" edittype="checkbox" text="bind:rptsmsflag" tooltiptext="bind:rptsmsflag"/>
- <Cell col="12" displaytype="checkbox" edittype="none" style="controlbackground:silver;controlborder:1 solid #708090cc ;" text="bind:rptconfirmflag" tooltiptext="bind:rptconfirmflag" enable="false"/>
- <Cell col="13" displaytype="checkbox" edittype="checkbox" text="bind:sel" tooltiptext="bind:sel"/>
- <Cell col="14" displaytype="date" edittype="none" style="padding:0 0 0 0;" text="bind:recdd" calendardisplaynulltype="none" tooltiptext="bind:recdd" enable="false"/>
- <Cell col="15" displaytype="text" edittype="none" text="bind:rectm" mask="expr:utlf_isNull(genrtm) ? '' : '##:##'" editautoselect="true" tooltiptext="bind:rectm" enable="false"/>
- <Cell col="16" displaytype="text" edittype="text" style="align:center;" text="bind:sizewidth" editautoselect="true" tooltiptext="bind:sizewidth"/>
- <Cell col="17" displaytype="text" edittype="text" style="align:center;" text="bind:sizeheight" editautoselect="true" tooltiptext="bind:sizeheight"/>
- <Cell col="18" displaytype="text" edittype="text" style="align:center;" text="bind:sizedepth" editautoselect="true" tooltiptext="bind:sizedepth"/>
- <Cell col="19" displaytype="text" edittype="none" style="align:top;" text="bind:stage" wordwrap="word" editautoselect="true" expandshow="show" tooltiptext="bind:stage"/>
- <Cell col="20" displaytype="combo" edittype="combo" text="bind:restage" editautoselect="true" combodataset="ds_restage" combocodecol="value" combodatacol="label" tooltiptext="bind:restage"/>
- <Cell col="21" displaytype="text" edittype="none" text="bind:color" editautoselect="true" expandshow="show" tooltiptext="bind:color"/>
- <Cell col="22" displaytype="text" edittype="none" text="bind:tissue" editautoselect="true" expandshow="show" tooltiptext="bind:tissue"/>
- <Cell col="23" text="bind:tissueid"/>
- <Cell col="24" displaytype="combo" edittype="combo" text="bind:state" editautoselect="true" combodataset="ds_hidden_codelist_getVOState" combocodecol="cd" combodatacol="cdnm" tooltiptext="bind:state"/>
- <Cell col="25" displaytype="combo" edittype="combo" text="bind:amount" editautoselect="true" combodataset="ds_hidden_codelist_getVOAmount" combocodecol="cd" combodatacol="cdnm" tooltiptext="bind:amount" enable="true"/>
- <Cell col="26" displaytype="text" edittype="none" text="bind:symptom" editautoselect="true" expandshow="show" tooltiptext="bind:symptom"/>
- <Cell col="27" displaytype="combo" edittype="none" style="align:right;line:1 solid #b0b0b0ff,0 none #b0b0b0ff;" text="bind:underangle" combodataset="ds_hidden_codelist_getVOAngle" combocodecol="cd" combodatacol="cdnm" combodisplayrowcount="20" tooltiptext="bind:underangle" enable="false"/>
- <Cell col="28" edittype="none" style="align:left;padding:0 0 0 0;" text="bind:underangleunit" tooltiptext="bind:underangleunit"/>
- <Cell col="29" edittype="none" style="align:right;line:1 solid #b0b0b0ff,0 none #b0b0b0ff;" text="bind:underdepth" tooltiptext="bind:underdepth"/>
- <Cell col="30" edittype="none" style="align:left;padding:0 0 0 0;" text="bind:underdepthunit" tooltiptext="bind:underdepthunit"/>
- <Cell col="31" displaytype="text" edittype="none" style="align:left top;padding:4 2 1 2;" text="bind:dressing" wordwrap="word" editautoselect="true" expandshow="show" tooltiptext="bind:dressing"/>
- <Cell col="32" displaytype="image" edittype="none" style="align:center;" text="bind:fileimg" tooltiptext="bind:fileimg"/>
- <Cell col="33" text="bind:addfile"/>
- <Cell col="34" displaytype="text" edittype="text" style="align:center;" text="bind:etc" editautoselect="true" tooltiptext="bind:etc"/>
- <Cell col="35" edittype="none" style="align:left;" text="bind:recrnm" tooltiptext="bind:recrnm"/>
- <Cell col="36" text="bind:recrid"/>
- <Cell col="37" text="bind:genrplceid"/>
- <Cell col="38" displaytype="text" edittype="text" text="bind:causeid"/>
- <Cell col="39" displaytype="text" edittype="text" text="bind:colorid"/>
- <Cell col="40" displaytype="text" edittype="text" text="bind:symptomid"/>
- <Cell col="41" displaytype="text" edittype="text" text="bind:underangleid"/>
- <Cell col="42" displaytype="text" edittype="text" text="bind:dressingid"/>
- <Cell col="43" displaytype="text" edittype="text" text="bind:stageid"/>
- <Cell col="44" displaytype="text" edittype="text" text="bind:stateid"/>
- <Cell col="45" displaytype="text" edittype="text" text="bind:amountid"/>
- <Cell col="46" displaytype="text" edittype="text" text="bind:pid"/>
- <Cell col="47" displaytype="text" edittype="text" text="bind:grupcd"/>
- <Cell col="48" displaytype="text" edittype="text" text="bind:instcd"/>
- <Cell col="49" displaytype="text" edittype="text" text="bind:obsrecseq"/>
- <Cell col="50" displaytype="text" edittype="text" text="bind:signno"/>
- <Cell col="51" text="bind:indd"/>
- <Cell col="52" text="bind:cretno"/>
- <Cell col="53" text="bind:totpnt"/>
- <Cell col="54" text="bind:clsgrupkind"/>
- </Band>
- </Format>
- </Formats>
- </Grid>
- <Div position="absolute 411 40 656 210" id="group2" visible="false" style="background:#ffcc00ff;" anchor="default">
- <Layouts>
- <Layout>
- <Grid position="absolute 10 15 235 165" id="grd_patindschlist" binddataset="ds_main_patindschinfo_patindschlist" anchor="default" oncelldblclick="group5_group2_grd_patindschlist_oncelldblclick" cellsizingtype="col" autofittype="col">
- <Formats>
- <Format id="default">
- <Columns>
- <Column size="100"/>
- <Column size="109"/>
- <Column size="0"/>
- <Column size="0"/>
- <Column size="0"/>
- <Column size="0"/>
- <Column size="0"/>
- </Columns>
- <Rows>
- <Row size="24" band="head"/>
- <Row size="24"/>
- </Rows>
- <Band id="head">
- <Cell text="입원일자"/>
- <Cell col="1" text="퇴원일자"/>
- <Cell col="2" text="caption5"/>
- <Cell col="3" text="caption6"/>
- <Cell col="4" text="caption7"/>
- <Cell col="5" text="caption8"/>
- <Cell col="6" text="caption9"/>
- </Band>
- <Band id="body">
- <Cell displaytype="date" text="bind:indd" calendardisplaynulltype="none"/>
- <Cell col="1" displaytype="date" text="bind:dschdd" calendardisplaynulltype="none"/>
- <Cell col="2" text="bind:instcd"/>
- <Cell col="3" text="bind:pid"/>
- <Cell col="4" text="bind:cretno"/>
- <Cell col="5" text="bind:indschacptstat"/>
- <Cell col="6" text="bind:ordtype"/>
- </Band>
- </Format>
- </Formats>
- </Grid>
- <Button position="absolute 221 0 236 15" id="button5" text="X" anchor="default" onclick="group5_group2_button5_onclick"/>
- </Layout>
- </Layouts>
- </Div>
- </Layout>
- </Layouts>
- </Div>
- <PopupMenu id="pMenu_detlgrupmenu" innerdataset="@ds_hidden_detlgrup_sameinflevl_popmenu_menu" idcolumn="func" captioncolumn="name" levelcolumn="lev" position="absolute 5 811 85 873" onmenuclick="pMenu_detlgrupmenu_onmenuclick"/>
- </Layout>
- </Layouts>
- <Objects>
- <Dataset id="ds_data_roomcdgruplist" firefirstcount="0" firenextcount="0" useclientlayout="false" updatecontrol="true" enableevent="true" loadkeymode="keep" reversesubsum="false">
- <ColumnInfo>
- <Column id="roomnm" type="STRING"/>
- <Column id="roomcd" type="STRING"/>
- </ColumnInfo>
- </Dataset>
- <Dataset id="ds_data_patientgruplist" firefirstcount="0" firenextcount="0" useclientlayout="false" updatecontrol="true" enableevent="true" loadkeymode="keep" reversesubsum="false">
- <ColumnInfo>
- <Column id="patientnm" type="STRING"/>
- <Column id="pid" type="STRING"/>
- <Column id="indd" type="STRING" size="256"/>
- <Column id="cretno" type="STRING" size="256"/>
- <Column id="orddrid" type="STRING" size="256"/>
- <Column id="orddeptcd" type="STRING" size="256"/>
- <Column id="ordtype" type="STRING" size="256"/>
- <Column id="diag" type="STRING" size="256"/>
- </ColumnInfo>
- </Dataset>
- <Dataset id="ds_temp_zoneinfo_zonelist" firefirstcount="0" firenextcount="0" useclientlayout="false" updatecontrol="true" enableevent="true" loadkeymode="keep" reversesubsum="false">
- <ColumnInfo>
- <Column id="bednm" type="STRING"/>
- <Column id="bedcd" type="STRING"/>
- </ColumnInfo>
- </Dataset>
- <Dataset id="ds_send_reqdata" firefirstcount="0" firenextcount="0" useclientlayout="false" updatecontrol="true" enableevent="true" loadkeymode="keep" loadfiltermode="keep" reversesubsum="false">
- <ColumnInfo>
- <Column id="pid" type="STRING" size="256" sumtext="등록번호"/>
- <Column id="wardcd" type="STRING" size="256"/>
- <Column id="settingrnid" type="STRING" size="256"/>
- <Column id="genrdd" type="STRING" size="256"/>
- <Column id="emcflag" type="STRING" size="256"/>
- <Column id="zonecd" type="STRING" size="256"/>
- <Column id="indd" type="STRING" size="256" sumtext="입원일"/>
- <Column id="cretno" type="STRING" size="256" sumtext="원무생성번호"/>
- <Column id="indsch" type="STRING" size="256"/>
- <Column id="stdradio" type="STRING" size="256"/>
- <Column id="genrtm" type="STRING" size="256"/>
- <Column id="roomcd" type="STRING" size="256"/>
- <Column id="patientnm" type="STRING" size="256"/>
- </ColumnInfo>
- <Rows>
- <Row/>
- </Rows>
- </Dataset>
- <Dataset id="ds_main_patindschinfo_patindschlist" firefirstcount="0" firenextcount="0" useclientlayout="false" updatecontrol="true" enableevent="true" loadkeymode="keep" loadfiltermode="keep" reversesubsum="false">
- <ColumnInfo>
- <Column id="instcd" type="STRING" size="256" sumtext="기간코드"/>
- <Column id="pid" type="STRING" size="256" sumtext="등록번호"/>
- <Column id="indd" type="STRING" size="256" sumtext="입원일자"/>
- <Column id="cretno" type="STRING" size="256" sumtext="생성번호"/>
- <Column id="indschacptstat" type="STRING" size="256" sumtext="입퇴원접수상태"/>
- <Column id="ordtype" type="STRING" size="256" sumtext="진료형태"/>
- <Column id="dschdd" type="STRING" size="256" sumtext="퇴원일자"/>
- <Column id="medispclid" type="STRING" size="256" sumtext="전문의id"/>
- </ColumnInfo>
- </Dataset>
- <Dataset id="ds_cond" firefirstcount="0" firenextcount="0" useclientlayout="false" updatecontrol="true" enableevent="true" loadkeymode="keep" loadfiltermode="keep" reversesubsum="false">
- <ColumnInfo>
- <Column id="wardcd" type="STRING" size="256" sumtext="병동코드"/>
- <Column id="pid" type="STRING" size="256" sumtext="환자번호"/>
- <Column id="indd" type="STRING" size="256" sumtext="입원일"/>
- <Column id="cretno" type="STRING" size="256" sumtext="원무생성번호"/>
- <Column id="indsch" type="STRING" size="256"/>
- <Column id="stdradio" type="STRING" size="256"/>
- <Column id="genrdd" type="STRING" size="256"/>
- <Column id="genrtm" type="STRING" size="256"/>
- <Column id="roomcd" type="STRING" size="256"/>
- <Column id="patientnm" type="STRING" size="256"/>
- <Column id="settingrnid" type="STRING" size="256"/>
- <Column id="zonecd" type="STRING" size="256"/>
- </ColumnInfo>
- <Rows>
- <Row/>
- </Rows>
- </Dataset>
- <Dataset id="ds_init_ward" firefirstcount="0" firenextcount="0" useclientlayout="false" updatecontrol="true" enableevent="true" loadkeymode="keep" loadfiltermode="keep" reversesubsum="false">
- <ColumnInfo>
- <Column id="wardcd" type="STRING" size="256" sumtext="병동코드"/>
- <Column id="wardnm" type="STRING" size="256" sumtext="병동명"/>
- </ColumnInfo>
- </Dataset>
- <Dataset id="ds_hidden_codelist_getVOCause" firefirstcount="0" firenextcount="0" useclientlayout="false" updatecontrol="true" enableevent="true" loadkeymode="keep" loadfiltermode="keep" reversesubsum="false">
- <ColumnInfo>
- <Column id="cd" type="STRING" size="256" sumtext="코드"/>
- <Column id="cdnm" type="STRING" size="256" sumtext="코드명"/>
- </ColumnInfo>
- </Dataset>
- <Dataset id="ds_hidden_codelist_getVOStage" firefirstcount="0" firenextcount="0" useclientlayout="false" updatecontrol="true" enableevent="true" loadkeymode="keep" loadfiltermode="keep" reversesubsum="false">
- <ColumnInfo>
- <Column id="cd" type="STRING" size="256" sumtext="코드"/>
- <Column id="cdnm" type="STRING" size="256" sumtext="코드명"/>
- </ColumnInfo>
- </Dataset>
- <Dataset id="ds_hidden_codelist_getVOColor" firefirstcount="0" firenextcount="0" useclientlayout="false" updatecontrol="true" enableevent="true" loadkeymode="keep" loadfiltermode="keep" reversesubsum="false">
- <ColumnInfo>
- <Column id="cd" type="STRING" size="256" sumtext="코드"/>
- <Column id="cdnm" type="STRING" size="256" sumtext="코드명"/>
- </ColumnInfo>
- </Dataset>
- <Dataset id="ds_hidden_codelist_getVOState" firefirstcount="0" firenextcount="0" useclientlayout="false" updatecontrol="true" enableevent="true" loadkeymode="keep" loadfiltermode="keep" reversesubsum="false">
- <ColumnInfo>
- <Column id="cd" type="STRING" size="256" sumtext="코드"/>
- <Column id="cdnm" type="STRING" size="256" sumtext="코드명"/>
- </ColumnInfo>
- </Dataset>
- <Dataset id="ds_hidden_codelist_getVOAmount" firefirstcount="0" firenextcount="0" useclientlayout="false" updatecontrol="true" enableevent="true" loadkeymode="keep" loadfiltermode="keep" reversesubsum="false">
- <ColumnInfo>
- <Column id="cd" type="STRING" size="256" sumtext="코드"/>
- <Column id="cdnm" type="STRING" size="256" sumtext="코드명"/>
- </ColumnInfo>
- </Dataset>
- <Dataset id="ds_hidden_codelist_getVOSympTom" firefirstcount="0" firenextcount="0" useclientlayout="false" updatecontrol="true" enableevent="true" loadkeymode="keep" loadfiltermode="keep" reversesubsum="false">
- <ColumnInfo>
- <Column id="cd" type="STRING" size="256" sumtext="코드"/>
- <Column id="cdnm" type="STRING" size="256" sumtext="코드명"/>
- </ColumnInfo>
- </Dataset>
- <Dataset id="ds_hidden_codelist_getVOAngle" firefirstcount="0" firenextcount="0" useclientlayout="false" updatecontrol="true" enableevent="true" loadkeymode="keep" loadfiltermode="keep" reversesubsum="false">
- <ColumnInfo>
- <Column id="cd" type="STRING" size="256" sumtext="코드"/>
- <Column id="cdnm" type="STRING" size="256" sumtext="코드명"/>
- </ColumnInfo>
- </Dataset>
- <Dataset id="ds_hidden_codelist_getVODressing" firefirstcount="0" firenextcount="0" useclientlayout="false" updatecontrol="true" enableevent="true" loadkeymode="keep" loadfiltermode="keep" reversesubsum="false">
- <ColumnInfo>
- <Column id="cd" type="STRING" size="256" sumtext="코드"/>
- <Column id="cdnm" type="STRING" size="256" sumtext="코드명"/>
- </ColumnInfo>
- </Dataset>
- <Dataset id="ds_send" firefirstcount="0" firenextcount="0" useclientlayout="false" updatecontrol="true" enableevent="true" loadkeymode="keep" loadfiltermode="keep" reversesubsum="false">
- <ColumnInfo>
- <Column id="pid" type="STRING" size="256" sumtext="등록번호"/>
- <Column id="indd" type="STRING" size="256" sumtext="입원일"/>
- <Column id="cretno" type="STRING" size="256" sumtext="원무생성번호"/>
- <Column id="genrdd" type="STRING" size="256" sumtext="기준일자(발생일자)"/>
- <Column id="genrtm" type="STRING" size="256" sumtext="기준시간(발생시간)"/>
- <Column id="stdradio" type="STRING" size="256" sumtext="조회조건의라디오버튼"/>
- <Column id="homecare" type="STRING" size="256" sumtext="가정간호대상자여부"/>
- <Column id="careflag" type="STRING" size="256" sumtext="가정간호대상자조회 키"/>
- <Column id="inptdt" type="STRING" size="256" sumtext="가정간호대상자조회 키"/>
- </ColumnInfo>
- <Rows>
- <Row/>
- </Rows>
- </Dataset>
- <Dataset id="ds_main_patinfo_patinfolist" firefirstcount="0" firenextcount="0" useclientlayout="false" updatecontrol="true" enableevent="true" loadkeymode="keep" loadfiltermode="keep" reversesubsum="false">
- <ColumnInfo>
- <Column id="wardcd" 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="indd" type="STRING" size="256" sumtext="입원일"/>
- <Column id="cretno" type="STRING" size="256" sumtext="생성번호"/>
- <Column id="dschdd" type="STRING" size="256" sumtext="퇴원일자"/>
- <Column id="orddeptcd" type="STRING" size="256" sumtext="진료과"/>
- <Column id="medispclid" type="STRING" size="256" sumtext="주치의"/>
- <Column id="ordtype" type="STRING" size="256" sumtext="ioflag"/>
- </ColumnInfo>
- </Dataset>
- <Dataset id="ds_main_sriusgrup" firefirstcount="0" firenextcount="0" useclientlayout="false" updatecontrol="true" enableevent="true" loadkeymode="keep" loadfiltermode="keep" reversesubsum="false">
- <ColumnInfo>
- <Column id="tims" type="STRING" size="256" sumtext="중증도점수"/>
- <Column id="execdd" type="STRING" size="256" sumtext="욕창수행일자"/>
- <Column id="exectm" type="STRING" size="256" sumtext="욕창수행시간"/>
- <Column id="totpnt" type="STRING" size="256" sumtext="욕창점수"/>
- <Column id="clsgrupkind" type="STRING" size="256" sumtext="욕창분류군"/>
- </ColumnInfo>
- </Dataset>
- <Dataset id="ds_main_detlgrup_detlgruplist" firefirstcount="0" firenextcount="0" useclientlayout="false" updatecontrol="true" enableevent="true" loadkeymode="keep" loadfiltermode="keep" reversesubsum="false" oncolumnchanged="ds_main_detlgrup_detlgruplist_oncolumnchanged">
- <ColumnInfo>
- <Column id="stat" type="STRING" size="256" sumtext="그리드상태"/>
- <Column id="stat2" type="STRING" size="256" sumtext="그리드상태"/>
- <Column id="obspartnm" type="STRING" size="256" sumtext="욕창발생부위"/>
- <Column id="genrdd" type="STRING" size="256" sumtext="발생일자"/>
- <Column id="genrtm" type="STRING" size="256" sumtext="발생시간"/>
- <Column id="genrplce" type="STRING" size="256" sumtext="발생장소"/>
- <Column id="cause" type="STRING" size="256" sumtext="원인"/>
- <Column id="flag" type="STRING" size="256" sumtext="등록구분(등록사정종료)"/>
- <Column id="recdd" type="STRING" size="256" sumtext="기록일자"/>
- <Column id="rectm" type="STRING" size="256" sumtext="기록시간"/>
- <!-- 욕창보고 및 SMS / 보고확인 컬럼 추가 (2011.04.20 Ahn) -->
- <Column id="rptsmsflag" type="STRING" size="256" sumtext="욕창보고 및 SMS 체크박스"/>
- <Column id="rptconfirmflag" type="STRING" size="256" sumtext="보고확인체크박스"/>
- <Column id="sel" type="STRING" size="256" sumtext="삭제선택체크박스"/>
- <Column id="sizewidth" type="STRING" size="256" sumtext="너비"/>
- <Column id="sizeheight" type="STRING" size="256" sumtext="길이"/>
- <Column id="sizedepth" type="STRING" size="256" sumtext="깊이"/>
- <Column id="stage" type="STRING" size="256" sumtext="단계"/>
- <Column id="stageid" type="STRING" size="256" sumtext="단계"/>
- <Column id="restage" type="STRING" size="256" sumtext="재사정단계"/>
- <Column id="tissue" type="STRING" size="256" sumtext="조직의 종류"/>
- <Column id="tissueid" type="STRING" size="256" sumtext="조직의 종류"/>
- <Column id="color" type="STRING" size="256" sumtext="색"/>
- <Column id="state" type="STRING" size="256" sumtext="삼출물상태"/>
- <Column id="amount" type="STRING" size="256" sumtext="삼출물양"/>
- <Column id="symptom" type="STRING" size="256" sumtext="증상"/>
- <Column id="underangle" type="STRING" size="256" sumtext="under방향"/>
- <Column id="underdepth" type="STRING" size="256" sumtext="under깊이"/>
- <Column id="underangleunit" type="STRING" size="256" sumtext="under방향단위"/>
- <Column id="underdepthunit" type="STRING" size="256" sumtext="under깊이단위"/>
- <Column id="dressing" type="STRING" size="256" sumtext="드레싱"/>
- <Column id="addfile" type="STRING" size="256" sumtext="파일첨부갯수"/>
- <Column id="fileimg" type="STRING" size="256" sumtext="파일이미지"/>
- <Column id="etc" type="STRING" size="256" sumtext="비고"/>
- <Column id="recrnm" type="STRING" size="256" sumtext="기록자명"/>
- <Column id="genrplceid" type="STRING" size="256" sumtext="발생장소코드"/>
- <Column id="genrplcewardcd" type="STRING" size="256" sumtext="발생장소원내코드"/>
- <Column id="causeid" type="STRING" size="256" sumtext="원인코드"/>
- <Column id="colorid" type="STRING" size="256" sumtext="색코드"/>
- <Column id="symptomid" type="STRING" size="256" sumtext="증상코드"/>
- <Column id="underangleid" type="STRING" size="256" sumtext="under방향코드"/>
- <Column id="dressingid" type="STRING" size="256" sumtext="드레싱코드"/>
- <Column id="recrid" type="STRING" size="256" sumtext="기록자아이디"/>
- <Column id="pid" type="STRING" size="256" sumtext="등록번호"/>
- <Column id="grupcd" type="STRING" size="256" sumtext="그룹코드"/>
- <Column id="instcd" type="STRING" size="256" sumtext="기관코드"/>
- <Column id="obsrecseq" type="STRING" size="256" sumtext="욕창기록순번"/>
- <Column id="signno" type="STRING" size="256" sumtext="서명번호"/>
- <Column id="indd" type="STRING" size="256" sumtext="입원일자"/>
- <Column id="cretno" type="STRING" size="256" sumtext="생성번호"/>
- <Column id="orddeptcd" type="STRING" size="256" sumtext="진료과"/>
- <Column id="orddrid" type="STRING" size="256" sumtext="진료의"/>
- <Column id="careflag" type="STRING" size="256" sumtext="가정간호대상자조회 키"/>
- <Column id="inptdt" type="STRING" size="256" sumtext="가정간호대상자조회 키"/>
- <Column id="pushyn" type="STRING" size="256" sumtext="가정간호대상자조회 키"/>
- <Column id="totpnt" type="STRING" size="256"/>
- <Column id="clsgrupkind" type="STRING" size="256"/>
- </ColumnInfo>
- </Dataset>
- <Dataset id="ds_send_savedata" firefirstcount="0" firenextcount="0" useclientlayout="false" updatecontrol="true" enableevent="true" loadkeymode="keep" loadfiltermode="keep" reversesubsum="false">
- <ColumnInfo>
- <Column id="pid" type="STRING" size="256" sumtext="등록번호"/>
- <Column id="certflag" type="STRING" size="256" sumtext="인증저장여부"/>
- <Column id="orddd" type="STRING" size="256" sumtext="진료일자"/>
- <Column id="signno" type="BIGDECIMAL" size="256" sumtext="서명번호"/>
- <Column id="cretno" type="STRING" size="256" sumtext="생성번호"/>
- <Column id="recdd" type="STRING" size="256" sumtext="기록일자"/>
- <Column id="rectm" type="STRING" size="256" sumtext="기록시간"/>
- <Column id="recsaveflag" type="STRING" size="256" sumtext="전자서명인적정보변경여부"/>
- <Column id="signflag" type="STRING" size="256" sumtext="서명자료구분"/>
- <Column id="signgenrflag" type="STRING" size="256" sumtext="서명발생구분"/>
- <Column id="formcd" type="STRING" size="256" sumtext="서식코드"/>
- <Column id="orddeptcd" type="STRING" size="256" sumtext="진료부서코드"/>
- <Column id="orddrid" type="STRING" size="256" sumtext="진료의사ID"/>
- <Column id="signbfcnts" type="STRING" size="256" sumtext="인증전데이터정보"/>
- <Column id="signaftcnts" type="STRING" size="256" sumtext="인증후데이터정보"/>
- <Column id="screenid" type="STRING" size="256" sumtext="화면아이디"/>
- <Column id="dispyn" type="STRING" size="256" sumtext="디스플레이여부"/>
- </ColumnInfo>
- <Rows>
- <Row/>
- </Rows>
- </Dataset>
- <Dataset id="ds_send_savedata_detlgrup" firefirstcount="0" firenextcount="0" useclientlayout="false" updatecontrol="true" enableevent="true" loadkeymode="keep" loadfiltermode="keep" reversesubsum="false">
- <ColumnInfo>
- <Column id="stat" type="STRING" size="256" sumtext="그리드status"/>
- <Column id="obspartnm" type="STRING" size="256" sumtext="발생부위"/>
- <Column id="genrdd" type="STRING" size="256" sumtext="발생일자"/>
- <Column id="genrtm" type="STRING" size="256" sumtext="발생시간"/>
- <Column id="genrplce" type="STRING" size="256" sumtext="발생장소"/>
- <Column id="genrplcewardcd" type="STRING" size="256" sumtext="발생장소원내코드"/>
- <Column id="cause" type="STRING" size="256" sumtext="원인"/>
- <Column id="flag" type="STRING" size="256" sumtext="등록구분(등록사정종료)"/>
- <Column id="recdd" type="STRING" size="256" sumtext="기록일자"/>
- <Column id="rectm" type="STRING" size="256" sumtext="기록시간"/>
- <!-- 욕창보고 및 SMS 전송 체크 값 추가 (2011.04.21 ahn) -->
- <Column id="rptsmsflag" type="STRING" size="256" sumtext="욕창보고 및 SMS"/>
- <Column id="sel" type="STRING" size="256" sumtext="삭제선택체크박스"/>
- <Column id="sizewidth" type="STRING" size="256" sumtext="크기가로"/>
- <Column id="sizeheight" type="STRING" size="256" sumtext="크기세로"/>
- <Column id="sizedepth" type="STRING" size="256" sumtext="크기깊이"/>
- <Column id="stageid" type="STRING" size="256" sumtext="단계"/>
- <Column id="restage" type="STRING" size="256" sumtext="단계"/>
- <!-- column id="tissueid" desc="조직의 종류" ref="detlgrup.tissueid"/ -->
- <Column id="tissueid" type="STRING" size="256" sumtext="색"/>
- <Column id="color" type="STRING" size="256" sumtext="색"/>
- <Column id="state" type="STRING" size="256" sumtext="삼출물상태"/>
- <Column id="amount" type="STRING" size="256" sumtext="삼출물양"/>
- <Column id="symptom" type="STRING" size="256" sumtext="증상"/>
- <Column id="underangle" type="STRING" size="256" sumtext="under방향"/>
- <Column id="underdepth" type="STRING" size="256" sumtext="under깊이"/>
- <Column id="dressing" type="STRING" size="256" sumtext="dressing"/>
- <Column id="photimg" type="STRING" size="256" sumtext="첨부파일"/>
- <Column id="etc" type="STRING" size="256" sumtext="비고"/>
- <Column id="genrplceid" type="STRING" size="256" sumtext="발생장소코드"/>
- <Column id="causeid" type="STRING" size="256" sumtext="causeid"/>
- <Column id="colorid" type="STRING" size="256" sumtext="colorid"/>
- <Column id="symptomid" type="STRING" size="256" sumtext="symptomid"/>
- <Column id="underangleid" type="STRING" size="256" sumtext="underangleid"/>
- <Column id="dressingid" type="STRING" size="256" sumtext="dressingid"/>
- <Column id="pid" type="STRING" size="256" sumtext="등록번호"/>
- <Column id="grupcd" type="STRING" size="256" sumtext="그룹코드"/>
- <Column id="obsrecseq" type="STRING" size="256" sumtext="욕창기록순번"/>
- <Column id="instcd" type="STRING" size="256" sumtext="기관코드"/>
- <Column id="signno" type="BIGDECIMAL" size="256" sumtext="서명번호"/>
- <Column id="pushyn" type="STRING" size="256" sumtext="기관코드"/>
- <Column id="indd" type="STRING" size="256" sumtext="입원일자"/>
- <Column id="cretno" type="STRING" size="256" sumtext="생성번호"/>
- <Column id="totpnt" type="STRING" size="256" sumtext="Braden 점수"/>
- <Column id="clsgrupkind" type="STRING" size="256" sumtext="위험군"/>
- </ColumnInfo>
- </Dataset>
- <Dataset id="ds_temp_obsrecseqinfo_obsrecseqlist" firefirstcount="0" firenextcount="0" useclientlayout="false" updatecontrol="true" enableevent="true" loadkeymode="keep" loadfiltermode="keep" reversesubsum="false">
- <ColumnInfo>
- <!-- 욕창보고 및 SMS 전송 체크 값이 추가된 행의 기록순번 return (2011.04.21 ahn) -->
- <Column id="obsrecseq" type="STRING" size="256" sumtext="욕창기록순번(욕창보고용)"/>
- <Column id="obsrecrptseq" type="STRING" size="256" sumtext="욕창관찰기록보고서순번"/>
- </ColumnInfo>
- </Dataset>
- <Dataset id="ds_viewinfo_viewdetlgrup_detlgruplist" firefirstcount="0" firenextcount="0" useclientlayout="false" updatecontrol="true" enableevent="true" loadkeymode="keep" loadfiltermode="keep" reversesubsum="false">
- <ColumnInfo>
- <Column id="stat" type="STRING" size="256" sumtext="그리드상태"/>
- <Column id="stat2" type="STRING" size="256" sumtext="그리드상태"/>
- <Column id="obspartnm" type="STRING" size="256" sumtext="욕창발생부위"/>
- <Column id="genrdd" type="STRING" size="256" sumtext="발생일자"/>
- <Column id="genrtm" type="STRING" size="256" sumtext="발생시간"/>
- <Column id="genrplce" type="STRING" size="256" sumtext="발생장소"/>
- <Column id="genrplcewardcd" type="STRING" size="256" sumtext="발생장소원내코드"/>
- <Column id="genrplcewardnm" type="STRING" size="256" sumtext="발생장소원내"/>
- <Column id="cause" type="STRING" size="256" sumtext="원인"/>
- <Column id="flag" type="STRING" size="256" sumtext="등록구분(등록사정종료)"/>
- <Column id="recdd" type="STRING" size="256" sumtext="기록일자"/>
- <Column id="rectm" type="STRING" size="256" sumtext="기록시간"/>
- <Column id="sel" type="STRING" size="256" sumtext="삭제선택체크박스"/>
- <Column id="sizewidth" type="STRING" size="256" sumtext="너비"/>
- <Column id="sizeheight" type="STRING" size="256" sumtext="길이"/>
- <Column id="sizedepth" type="STRING" size="256" sumtext="깊이"/>
- <Column id="stage" type="STRING" size="256" sumtext="단계"/>
- <Column id="color" type="STRING" size="256" sumtext="색"/>
- <Column id="state" type="STRING" size="256" sumtext="삼출물상태"/>
- <Column id="amount" type="STRING" size="256" sumtext="삼출물양"/>
- <Column id="symptom" type="STRING" size="256" sumtext="증상"/>
- <Column id="underangle" type="STRING" size="256" sumtext="under방향"/>
- <Column id="underdepth" type="STRING" size="256" sumtext="under깊이"/>
- <Column id="underangleunit" type="STRING" size="256" sumtext="under방향단위"/>
- <Column id="underdepthunit" type="STRING" size="256" sumtext="under깊이단위"/>
- <Column id="dressing" type="STRING" size="256" sumtext="드레싱"/>
- <Column id="addfile" type="STRING" size="256" sumtext="파일첨부갯수"/>
- <Column id="fileimg" type="STRING" size="256" sumtext="파일이미지"/>
- <Column id="etc" type="STRING" size="256" sumtext="비고"/>
- <Column id="recrnm" type="STRING" size="256" sumtext="기록자명"/>
- <Column id="genrplceid" type="STRING" size="256" sumtext="발생장소코드"/>
- <Column id="causeid" type="STRING" size="256" sumtext="원인코드"/>
- <Column id="colorid" type="STRING" size="256" sumtext="색코드"/>
- <Column id="symptomid" type="STRING" size="256" sumtext="증상코드"/>
- <Column id="underangleid" type="STRING" size="256" sumtext="under방향코드"/>
- <Column id="dressingid" type="STRING" size="256" sumtext="드레싱코드"/>
- <Column id="recrid" type="STRING" size="256" sumtext="기록자아이디"/>
- <Column id="pid" type="STRING" size="256" sumtext="등록번호"/>
- <Column id="grupcd" type="STRING" size="256" sumtext="그룹코드"/>
- <Column id="instcd" type="STRING" size="256" sumtext="기관코드"/>
- <Column id="obsrecseq" type="STRING" size="256" sumtext="욕창기록순번"/>
- <Column id="signno" type="STRING" size="256" sumtext="서명번호"/>
- <Column id="indd" type="STRING" size="256" sumtext="입원일자"/>
- <Column id="cretno" type="STRING" size="256" sumtext="생성번호"/>
- <Column id="orddeptcd" type="STRING" size="256" sumtext="진료과"/>
- <Column id="orddrid" type="STRING" size="256" sumtext="진료의"/>
- <Column id="careflag" type="STRING" size="256" sumtext="가정간호대상자조회 키"/>
- <Column id="inptdt" type="STRING" size="256" sumtext="가정간호대상자조회 키"/>
- <Column id="signrecddmax" type="STRING" size="256" sumtext="인증저장시 기록한 최종일자를 recdd로 넘겨준다."/>
- </ColumnInfo>
- </Dataset>
- <Dataset id="ds_init_settinginfo_settingrn" firefirstcount="0" firenextcount="0" useclientlayout="false" updatecontrol="true" enableevent="true" loadkeymode="keep" loadfiltermode="keep" reversesubsum="false">
- <ColumnInfo>
- <Column id="settingrnnm" type="STRING" size="256" sumtext="부서명"/>
- <Column id="settingrnid" type="STRING" size="256" sumtext="부서구분"/>
- </ColumnInfo>
- </Dataset>
- <Dataset id="ds_main_wardpatinfo_wardpatlist" firefirstcount="0" firenextcount="0" useclientlayout="false" updatecontrol="true" enableevent="true" loadkeymode="keep" loadfiltermode="keep" reversesubsum="false">
- <ColumnInfo>
- <Column id="instcd" type="STRING" size="256" sumtext="기간코드"/>
- <Column id="pid" type="STRING" size="256" sumtext="등록번호"/>
- <Column id="indd" type="STRING" size="256" sumtext="입원일자"/>
- <Column id="cretno" type="STRING" size="256" sumtext="생성번호"/>
- <Column id="wardcd" type="STRING" size="256" sumtext="병동코드"/>
- <Column id="roomcd" type="STRING" size="256" sumtext="병실"/>
- <Column id="patnm" type="STRING" size="256" sumtext="환자명"/>
- <Column id="sexage" type="STRING" size="256" sumtext="성별나이"/>
- <Column id="ordtype" type="STRING" size="256" sumtext="입원타입"/>
- <Column id="orddeptcd" type="STRING" size="256" sumtext="진료부서코드"/>
- <Column id="medispclid" type="STRING" size="256" sumtext="진료의ID"/>
- <Column id="recflag" type="STRING" size="256" sumtext="기록유무"/>
- </ColumnInfo>
- </Dataset>
- <Dataset id="ds_hidden_detlgrup_sameinflevl_popmenu_menu" firefirstcount="0" firenextcount="0" useclientlayout="false" updatecontrol="true" enableevent="true" loadkeymode="keep" loadfiltermode="keep" reversesubsum="false">
- <ColumnInfo>
- <Column id="name" type="STRING" size="256"/>
- <Column id="func" type="STRING" size="256"/>
- <Column id="lev" type="STRING" size="256"/>
- </ColumnInfo>
- <Rows>
- <Row>
- <Col id="name">사정</Col>
- <Col id="func">fAddSameLevlItem</Col>
- <Col id="lev">0</Col>
- </Row>
- <Row>
- <Col id="name">종료</Col>
- <Col id="func">fAddSameLevlItemEnd</Col>
- <Col id="lev">0</Col>
- </Row>
- </Rows>
- </Dataset>
- <Dataset id="ds_codelist" firefirstcount="0" firenextcount="0" useclientlayout="false" updatecontrol="true" enableevent="true" loadkeymode="keep" loadfiltermode="keep" reversesubsum="false">
- <ColumnInfo>
- <Column id="cdnm" type="STRING"/>
- <Column id="cdid" type="STRING"/>
- </ColumnInfo>
- </Dataset>
- <Dataset id="ds_temp_paminfo" firefirstcount="0" firenextcount="0" useclientlayout="false" updatecontrol="true" enableevent="true" loadkeymode="keep" loadfiltermode="keep" reversesubsum="false">
- <ColumnInfo>
- <Column id="pid" type="STRING" size="256"/>
- <Column id="indd" type="STRING" size="256"/>
- <Column id="cretno" type="STRING" size="256"/>
- <Column id="seqno" type="STRING" size="256"/>
- <Column id="instcd" type="STRING" size="256"/>
- <Column id="mskind" type="STRING" size="256"/>
- <Column id="histstat" type="STRING" size="256"/>
- <Column id="hospbrthyn" type="STRING" size="256"/>
- <Column id="rsrvinyn" type="STRING" size="256"/>
- <Column id="intm" type="STRING" size="256"/>
- <Column id="dschdd" type="STRING" size="256"/>
- <Column id="dschtm" type="STRING" size="256"/>
- <Column id="dschtype" type="STRING" size="256"/>
- <Column id="dethdt" type="STRING" size="256"/>
- <Column id="indschacptstat" type="STRING" size="256"/>
- <Column id="fsexamflag" type="STRING" size="256"/>
- <Column id="insukind" type="STRING" size="256"/>
- <Column id="suppkind" type="STRING" size="256"/>
- <Column id="centcd" type="STRING" size="256"/>
- <Column id="orddeptcd" type="STRING" size="256"/>
- <Column id="medispclid" type="STRING" size="256"/>
- <Column id="atdoctid" type="STRING" size="256"/>
- <Column id="specordyn" type="STRING" size="256"/>
- <Column id="wardcd" type="STRING" size="256"/>
- <Column id="wardnm" type="STRING" size="256"/>
- <Column id="roomcd" type="STRING" size="256"/>
- <Column id="roomgrdecd" type="STRING" size="256"/>
- <Column id="roomtypecd" type="STRING" size="256"/>
- <Column id="rqsthospcd" type="STRING" size="256"/>
- <Column id="rqstdrid" type="STRING" size="256"/>
- <Column id="drgyn" type="STRING" size="256"/>
- <Column id="bmtyn" type="STRING" size="256"/>
- <Column id="clincstdyyn" type="STRING" size="256"/>
- <Column id="clincstdycd" type="STRING" size="256"/>
- <Column id="batlockid" type="STRING" size="256"/>
- <Column id="batlockyn" type="STRING" size="256"/>
- <Column id="ordcostretcdd" type="STRING" size="256"/>
- <Column id="ordcostcalcdd" type="STRING" size="256"/>
- <Column id="dschdclrtyn" type="STRING" size="256"/>
- <Column id="dschdclrdt" type="STRING" size="256"/>
- <Column id="dschdclrtrgstid" type="STRING" size="256"/>
- <Column id="dschdclrtrgstnm" type="STRING" size="256"/>
- <Column id="dschdclrtrgstdt" type="STRING" size="256"/>
- <Column id="dschrgstacptdt" type="STRING" size="256"/>
- <Column id="dschrgstacptchar" type="STRING" size="256"/>
- <Column id="dschnotiyn" type="STRING" size="256"/>
- <Column id="dschnotidt" type="STRING" size="256"/>
- <Column id="dschnotirgstid" type="STRING" size="256"/>
- <Column id="dschnotirgstdt" type="STRING" size="256"/>
- <Column id="calclastdd" type="STRING" size="256"/>
- <Column id="dschjudgprcsstat" type="STRING" size="256"/>
- <Column id="lastjudgdd" type="STRING" size="256"/>
- <Column id="lastmdlclamdd" type="STRING" size="256"/>
- <Column id="lastjudgendid" type="STRING" size="256"/>
- <Column id="spcljudgflag" type="STRING" size="256"/>
- <Column id="mainjudgid" type="STRING" size="256"/>
- <Column id="icdr_roomgrdecd" type="STRING" size="256"/>
- <Column id="icdr_roomtypecd" type="STRING" size="256"/>
- <Column id="icdr_wardcd2" type="STRING" size="256"/>
- <Column id="icdr_roomcd2" type="STRING" size="256"/>
- <Column id="icdr_roomgrdecd2" type="STRING" size="256"/>
- <Column id="icdr_roomtypecd2" type="STRING" size="256"/>
- <Column id="hngnm" type="STRING" size="256"/>
- <Column id="hngnm2" type="STRING" size="256"/>
- <Column id="dispnm1" type="STRING" size="256"/>
- <Column id="dispnm2" type="STRING" size="256"/>
- <Column id="sex" type="STRING" size="256"/>
- <Column id="age" type="STRING" size="256"/>
- <Column id="arvpath" type="STRING" size="256"/>
- <Column id="ordrslt" type="STRING" size="256"/>
- <Column id="hospiceyn" type="STRING" size="256"/>
- <Column id="ioflag" type="STRING" size="256"/>
- <Column id="orgordtype" type="STRING" size="256"/>
- <Column id="brateflag" type="STRING" size="256"/>
- <Column id="ermngtamtcalcyn" type="STRING" size="256"/>
- <Column id="erbrthflag" type="STRING" size="256"/>
- <Column id="erchospath" type="STRING" size="256"/>
- <Column id="erorddeptcd" type="STRING" size="256"/>
- <Column id="eroutdt" type="STRING" size="256"/>
- <Column id="careinrmdd" type="STRING" size="256"/>
- <Column id="careinrmtm" type="STRING" size="256"/>
- <Column id="careinrmrgstrid" type="STRING" size="256"/>
- <Column id="prcplockid" type="STRING" size="256"/>
- <Column id="iprcaddyn" type="STRING" size="256"/>
- <Column id="rrgstno1" type="STRING" size="256"/>
- <Column id="hosoutexptresncd" type="STRING" size="256"/>
- <Column id="brthdd" type="STRING" size="256"/>
- <Column id="calcdd" type="STRING" size="256"/>
- <Column id="calctm" type="STRING" size="256"/>
- <Column id="orddrnm" type="STRING" size="256"/>
- <Column id="orddeptnm" type="STRING" size="256"/>
- <Column id="replyn" type="STRING" size="256"/>
- <Column id="repltypenm" type="STRING" size="256"/>
- <Column id="resnyn" type="STRING" size="256"/>
- <Column id="npresnyn" type="STRING" size="256"/>
- <Column id="autoformcd" type="STRING" size="256"/>
- <Column id="subcretno" type="STRING" size="256"/>
- <Column id="prcpsaveyn" type="STRING" size="256"/>
- <Column id="emrsaveyn" type="STRING" size="256"/>
- <Column id="ertransyn" type="STRING" size="256"/>
- <Column id="ercareinrmdd" type="STRING" size="256"/>
- <Column id="ercareinrmtm" type="STRING" size="256"/>
- <Column id="coopteamcd" type="STRING" size="256"/>
- <Column id="coopteamnm" type="STRING" size="256"/>
- <Column id="nonprgresncd" type="STRING" size="256"/>
- <Column id="nonprgresncnts" type="STRING" size="256"/>
- <Column id="scndyn" type="STRING" size="256"/>
- <Column id="rrgstno2" type="STRING" size="256"/>
- <Column id="rsrvflag" type="STRING" size="256"/>
- <Column id="etcordflag" type="STRING" size="256"/>
- <Column id="callvisityn" type="STRING" size="256"/>
- <Column id="specordtype" type="STRING" size="256"/>
- <Column id="specordtypenm" type="STRING" size="256"/>
- <Column id="mpphontel" type="STRING" size="256"/>
- <Column id="hometel" type="STRING" size="256"/>
- <Column id="bedposcntscd" type="STRING" size="256"/>
- <Column id="bedposcnts" type="STRING" size="256"/>
- <Column id="basetypecd" type="STRING" size="256"/>
- <Column id="typenm" type="STRING" size="256"/>
- <Column id="opfeechkyn" type="STRING" size="256"/>
- <Column id="erissdeptcd" type="STRING" size="256"/>
- <Column id="warnmsg" type="STRING" size="256"/>
- <Column id="errwarnmsg" type="STRING" size="256"/>
- <Column id="durdiagyn" type="STRING" size="256"/>
- <Column id="diag" type="STRING" size="256"/>
- </ColumnInfo>
- </Dataset>
- <Dataset id="ds_hidden_homecareparam" firefirstcount="0" firenextcount="0" useclientlayout="false" updatecontrol="true" enableevent="true" loadkeymode="keep" loadfiltermode="keep" reversesubsum="false"/>
- <Dataset id="ds_hidden_main_detlgrup_detlgruplist" firefirstcount="0" firenextcount="0" useclientlayout="false" updatecontrol="true" enableevent="true" loadkeymode="keep" loadfiltermode="keep" reversesubsum="false">
- <ColumnInfo>
- <Column id="stat" type="STRING" size="256" sumtext="그리드상태"/>
- <Column id="stat2" type="STRING" size="256" sumtext="그리드상태"/>
- <Column id="obspartnm" type="STRING" size="256" sumtext="욕창발생부위"/>
- <Column id="genrdd" type="STRING" size="256" sumtext="발생일자"/>
- <Column id="genrtm" type="STRING" size="256" sumtext="발생시간"/>
- <Column id="genrplce" type="STRING" size="256" sumtext="발생장소"/>
- <Column id="cause" type="STRING" size="256" sumtext="원인"/>
- <Column id="flag" type="STRING" size="256" sumtext="등록구분(등록사정종료)"/>
- <Column id="recdd" type="STRING" size="256" sumtext="기록일자"/>
- <Column id="rectm" type="STRING" size="256" sumtext="기록시간"/>
- <!-- 욕창보고 및 SMS / 보고확인 컬럼 추가 (2011.04.20 Ahn) -->
- <Column id="rptsmsflag" type="STRING" size="256" sumtext="욕창보고 및 SMS 체크박스"/>
- <Column id="rptconfirmflag" type="STRING" size="256" sumtext="보고확인체크박스"/>
- <Column id="sel" type="STRING" size="256" sumtext="삭제선택체크박스"/>
- <Column id="sizewidth" type="STRING" size="256" sumtext="너비"/>
- <Column id="sizeheight" type="STRING" size="256" sumtext="길이"/>
- <Column id="sizedepth" type="STRING" size="256" sumtext="깊이"/>
- <Column id="stage" type="STRING" size="256" sumtext="단계"/>
- <Column id="stageid" type="STRING" size="256" sumtext="단계"/>
- <Column id="restage" type="STRING" size="256" sumtext="재사정단계"/>
- <Column id="tissue" type="STRING" size="256" sumtext="조직의 종류"/>
- <Column id="tissueid" type="STRING" size="256" sumtext="조직의 종류"/>
- <Column id="color" type="STRING" size="256" sumtext="색"/>
- <Column id="state" type="STRING" size="256" sumtext="삼출물상태"/>
- <Column id="amount" type="STRING" size="256" sumtext="삼출물양"/>
- <Column id="symptom" type="STRING" size="256" sumtext="증상"/>
- <Column id="underangle" type="STRING" size="256" sumtext="under방향"/>
- <Column id="underdepth" type="STRING" size="256" sumtext="under깊이"/>
- <Column id="underangleunit" type="STRING" size="256" sumtext="under방향단위"/>
- <Column id="underdepthunit" type="STRING" size="256" sumtext="under깊이단위"/>
- <Column id="dressing" type="STRING" size="256" sumtext="드레싱"/>
- <Column id="addfile" type="STRING" size="256" sumtext="파일첨부갯수"/>
- <Column id="fileimg" type="STRING" size="256" sumtext="파일이미지"/>
- <Column id="etc" type="STRING" size="256" sumtext="비고"/>
- <Column id="recrnm" type="STRING" size="256" sumtext="기록자명"/>
- <Column id="genrplceid" type="STRING" size="256" sumtext="발생장소코드"/>
- <Column id="genrplcewardcd" type="STRING" size="256" sumtext="발생장소원내코드"/>
- <Column id="causeid" type="STRING" size="256" sumtext="원인코드"/>
- <Column id="colorid" type="STRING" size="256" sumtext="색코드"/>
- <Column id="symptomid" type="STRING" size="256" sumtext="증상코드"/>
- <Column id="underangleid" type="STRING" size="256" sumtext="under방향코드"/>
- <Column id="dressingid" type="STRING" size="256" sumtext="드레싱코드"/>
- <Column id="recrid" type="STRING" size="256" sumtext="기록자아이디"/>
- <Column id="pid" type="STRING" size="256" sumtext="등록번호"/>
- <Column id="grupcd" type="STRING" size="256" sumtext="그룹코드"/>
- <Column id="instcd" type="STRING" size="256" sumtext="기관코드"/>
- <Column id="obsrecseq" type="STRING" size="256" sumtext="욕창기록순번"/>
- <Column id="signno" type="STRING" size="256" sumtext="서명번호"/>
- <Column id="indd" type="STRING" size="256" sumtext="입원일자"/>
- <Column id="cretno" type="STRING" size="256" sumtext="생성번호"/>
- <Column id="orddeptcd" type="STRING" size="256" sumtext="진료과"/>
- <Column id="orddrid" type="STRING" size="256" sumtext="진료의"/>
- <Column id="careflag" type="STRING" size="256" sumtext="가정간호대상자조회 키"/>
- <Column id="inptdt" type="STRING" size="256" sumtext="가정간호대상자조회 키"/>
- <Column id="pushyn" type="STRING" size="256" sumtext="가정간호대상자조회 키"/>
- </ColumnInfo>
- </Dataset>
- <Dataset id="ds_source" firefirstcount="0" firenextcount="0" useclientlayout="false" updatecontrol="true" enableevent="true" loadkeymode="keep" loadfiltermode="keep" reversesubsum="false">
- <ColumnInfo>
- <Column id="srchcond" type="STRING" size="256"/>
- <Column id="pid" type="STRING" size="256"/>
- <Column id="hngnm" type="STRING" size="256"/>
- <Column id="rrgstno1" type="STRING" size="256"/>
- <Column id="rrgstno2" type="STRING" size="256"/>
- <Column id="acptdd" type="STRING" size="256"/>
- <Column id="inhospyn" type="STRING" size="256"/>
- </ColumnInfo>
- <Rows>
- <Row/>
- </Rows>
- </Dataset>
- <Dataset id="ds_flag" firefirstcount="0" firenextcount="0" useclientlayout="false" updatecontrol="true" enableevent="true" loadkeymode="keep" loadfiltermode="keep" reversesubsum="false">
- <ColumnInfo>
- <Column id="label" type="STRING" size="256"/>
- <Column id="value" type="STRING" size="256"/>
- </ColumnInfo>
- <Rows>
- <Row>
- <Col id="label">등록</Col>
- <Col id="value">00</Col>
- </Row>
- <Row>
- <Col id="value">01</Col>
- <Col id="label">사정</Col>
- </Row>
- <Row>
- <Col id="value">99</Col>
- <Col id="label">종료</Col>
- </Row>
- </Rows>
- </Dataset>
- <Dataset id="ds_restage" firefirstcount="0" firenextcount="0" useclientlayout="false" updatecontrol="true" enableevent="true" loadkeymode="keep" loadfiltermode="keep" reversesubsum="false">
- <ColumnInfo>
- <Column id="label" type="STRING" size="256"/>
- <Column id="value" type="STRING" size="256"/>
- </ColumnInfo>
- <Rows>
- <Row>
- <Col id="label">치유된 욕창</Col>
- <Col id="value">1</Col>
- </Row>
- <Row>
- <Col id="value">2</Col>
- <Col id="label">치유되고있는 욕창</Col>
- </Row>
- <Row>
- <Col id="value">3</Col>
- <Col id="label">악화된 욕창</Col>
- </Row>
- <Row>
- <Col id="label"/>
- <Col id="value"/>
- </Row>
- </Rows>
- </Dataset>
- <Dataset id="ds_stat" firefirstcount="0" firenextcount="0" useclientlayout="false" updatecontrol="true" enableevent="true" loadkeymode="keep" loadfiltermode="keep" reversesubsum="false">
- <ColumnInfo>
- <Column id="label" type="STRING" size="256"/>
- <Column id="value" type="STRING" size="256"/>
- </ColumnInfo>
- <Rows>
- <Row>
- <Col id="label">-</Col>
- <Col id="value">-</Col>
- </Row>
- <Row>
- <Col id="label">i</Col>
- <Col id="value">i</Col>
- </Row>
- <Row>
- <Col id="label">u</Col>
- <Col id="value">u</Col>
- </Row>
- <Row>
- <Col id="label">d</Col>
- <Col id="value">d</Col>
- </Row>
- </Rows>
- </Dataset>
- <Dataset id="ds_temp_detlgrup_detlgruplist" firefirstcount="0" firenextcount="0" useclientlayout="false" updatecontrol="true" enableevent="true" loadkeymode="keep" loadfiltermode="keep" reversesubsum="false">
- <ColumnInfo>
- <Column id="stat" type="STRING" size="256" sumtext="그리드상태"/>
- <Column id="stat2" type="STRING" size="256" sumtext="그리드상태"/>
- <Column id="obspartnm" type="STRING" size="256" sumtext="욕창발생부위"/>
- <Column id="genrdd" type="STRING" size="256" sumtext="발생일자"/>
- <Column id="genrtm" type="STRING" size="256" sumtext="발생시간"/>
- <Column id="genrplce" type="STRING" size="256" sumtext="발생장소"/>
- <Column id="cause" type="STRING" size="256" sumtext="원인"/>
- <Column id="flag" type="STRING" size="256" sumtext="등록구분(등록사정종료)"/>
- <Column id="recdd" type="STRING" size="256" sumtext="기록일자"/>
- <Column id="rectm" type="STRING" size="256" sumtext="기록시간"/>
- <!-- 욕창보고 및 SMS / 보고확인 컬럼 추가 (2011.04.20 Ahn) -->
- <Column id="rptsmsflag" type="STRING" size="256" sumtext="욕창보고 및 SMS 체크박스"/>
- <Column id="rptconfirmflag" type="STRING" size="256" sumtext="보고확인체크박스"/>
- <Column id="sel" type="STRING" size="256" sumtext="삭제선택체크박스"/>
- <Column id="sizewidth" type="STRING" size="256" sumtext="너비"/>
- <Column id="sizeheight" type="STRING" size="256" sumtext="길이"/>
- <Column id="sizedepth" type="STRING" size="256" sumtext="깊이"/>
- <Column id="stage" type="STRING" size="256" sumtext="단계"/>
- <Column id="stageid" type="STRING" size="256" sumtext="단계"/>
- <Column id="restage" type="STRING" size="256" sumtext="재사정단계"/>
- <Column id="tissue" type="STRING" size="256" sumtext="조직의 종류"/>
- <Column id="tissueid" type="STRING" size="256" sumtext="조직의 종류"/>
- <Column id="color" type="STRING" size="256" sumtext="색"/>
- <Column id="state" type="STRING" size="256" sumtext="삼출물상태"/>
- <Column id="amount" type="STRING" size="256" sumtext="삼출물양"/>
- <Column id="symptom" type="STRING" size="256" sumtext="증상"/>
- <Column id="underangle" type="STRING" size="256" sumtext="under방향"/>
- <Column id="underdepth" type="STRING" size="256" sumtext="under깊이"/>
- <Column id="underangleunit" type="STRING" size="256" sumtext="under방향단위"/>
- <Column id="underdepthunit" type="STRING" size="256" sumtext="under깊이단위"/>
- <Column id="dressing" type="STRING" size="256" sumtext="드레싱"/>
- <Column id="addfile" type="STRING" size="256" sumtext="파일첨부갯수"/>
- <Column id="fileimg" type="STRING" size="256" sumtext="파일이미지"/>
- <Column id="etc" type="STRING" size="256" sumtext="비고"/>
- <Column id="recrnm" type="STRING" size="256" sumtext="기록자명"/>
- <Column id="genrplceid" type="STRING" size="256" sumtext="발생장소코드"/>
- <Column id="genrplcewardcd" type="STRING" size="256" sumtext="발생장소원내코드"/>
- <Column id="causeid" type="STRING" size="256" sumtext="원인코드"/>
- <Column id="colorid" type="STRING" size="256" sumtext="색코드"/>
- <Column id="symptomid" type="STRING" size="256" sumtext="증상코드"/>
- <Column id="underangleid" type="STRING" size="256" sumtext="under방향코드"/>
- <Column id="dressingid" type="STRING" size="256" sumtext="드레싱코드"/>
- <Column id="recrid" type="STRING" size="256" sumtext="기록자아이디"/>
- <Column id="pid" type="STRING" size="256" sumtext="등록번호"/>
- <Column id="grupcd" type="STRING" size="256" sumtext="그룹코드"/>
- <Column id="instcd" type="STRING" size="256" sumtext="기관코드"/>
- <Column id="obsrecseq" type="STRING" size="256" sumtext="욕창기록순번"/>
- <Column id="signno" type="STRING" size="256" sumtext="서명번호"/>
- <Column id="indd" type="STRING" size="256" sumtext="입원일자"/>
- <Column id="cretno" type="STRING" size="256" sumtext="생성번호"/>
- <Column id="orddeptcd" type="STRING" size="256" sumtext="진료과"/>
- <Column id="orddrid" type="STRING" size="256" sumtext="진료의"/>
- <Column id="careflag" type="STRING" size="256" sumtext="가정간호대상자조회 키"/>
- <Column id="inptdt" type="STRING" size="256" sumtext="가정간호대상자조회 키"/>
- <Column id="pushyn" type="STRING" size="256" sumtext="가정간호대상자조회 키"/>
- <Column id="totpnt" type="STRING" size="256"/>
- <Column id="clsgrupkind" type="STRING" size="256"/>
- <Column id="obsrecrptseq" type="STRING" size="256"/>
- <Column id="genrplcewardnm" type="STRING" size="256"/>
- </ColumnInfo>
- <Rows>
- <Row/>
- </Rows>
- </Dataset>
- <Dataset id="ds_temp_sriusgrup" firefirstcount="0" firenextcount="0" useclientlayout="false" updatecontrol="true" enableevent="true" loadkeymode="keep" loadfiltermode="keep" reversesubsum="false">
- <ColumnInfo>
- <Column id="tims" type="STRING" size="256" sumtext="중증도점수"/>
- <Column id="execdd" type="STRING" size="256" sumtext="욕창수행일자"/>
- <Column id="exectm" type="STRING" size="256" sumtext="욕창수행시간"/>
- <Column id="totpnt" type="STRING" size="256" sumtext="욕창점수"/>
- <Column id="clsgrupkind" type="STRING" size="256" sumtext="욕창분류군"/>
- </ColumnInfo>
- </Dataset>
- <Dataset id="ds_signdata_main_detlgrup_detlgruplist" firefirstcount="0" firenextcount="0" useclientlayout="false" updatecontrol="true" enableevent="true" loadkeymode="keep" loadfiltermode="keep" reversesubsum="false">
- <ColumnInfo>
- <Column id="stat" type="STRING" size="256" sumtext="그리드상태"/>
- <Column id="stat2" type="STRING" size="256" sumtext="그리드상태"/>
- <Column id="obspartnm" type="STRING" size="256" sumtext="욕창발생부위"/>
- <Column id="genrdd" type="STRING" size="256" sumtext="발생일자"/>
- <Column id="genrtm" type="STRING" size="256" sumtext="발생시간"/>
- <Column id="genrplce" type="STRING" size="256" sumtext="발생장소"/>
- <Column id="cause" type="STRING" size="256" sumtext="원인"/>
- <Column id="flag" type="STRING" size="256" sumtext="등록구분(등록사정종료)"/>
- <Column id="recdd" type="STRING" size="256" sumtext="기록일자"/>
- <Column id="rectm" type="STRING" size="256" sumtext="기록시간"/>
- <!-- 욕창보고 및 SMS / 보고확인 컬럼 추가 (2011.04.20 Ahn) -->
- <Column id="rptsmsflag" type="STRING" size="256" sumtext="욕창보고 및 SMS 체크박스"/>
- <Column id="rptconfirmflag" type="STRING" size="256" sumtext="보고확인체크박스"/>
- <Column id="sel" type="STRING" size="256" sumtext="삭제선택체크박스"/>
- <Column id="sizewidth" type="STRING" size="256" sumtext="너비"/>
- <Column id="sizeheight" type="STRING" size="256" sumtext="길이"/>
- <Column id="sizedepth" type="STRING" size="256" sumtext="깊이"/>
- <Column id="stage" type="STRING" size="256" sumtext="단계"/>
- <Column id="stageid" type="STRING" size="256" sumtext="단계"/>
- <Column id="restage" type="STRING" size="256" sumtext="재사정단계"/>
- <Column id="tissue" type="STRING" size="256" sumtext="조직의 종류"/>
- <Column id="tissueid" type="STRING" size="256" sumtext="조직의 종류"/>
- <Column id="color" type="STRING" size="256" sumtext="색"/>
- <Column id="state" type="STRING" size="256" sumtext="삼출물상태"/>
- <Column id="amount" type="STRING" size="256" sumtext="삼출물양"/>
- <Column id="symptom" type="STRING" size="256" sumtext="증상"/>
- <Column id="underangle" type="STRING" size="256" sumtext="under방향"/>
- <Column id="underdepth" type="STRING" size="256" sumtext="under깊이"/>
- <Column id="underangleunit" type="STRING" size="256" sumtext="under방향단위"/>
- <Column id="underdepthunit" type="STRING" size="256" sumtext="under깊이단위"/>
- <Column id="dressing" type="STRING" size="256" sumtext="드레싱"/>
- <Column id="addfile" type="STRING" size="256" sumtext="파일첨부갯수"/>
- <Column id="fileimg" type="STRING" size="256" sumtext="파일이미지"/>
- <Column id="etc" type="STRING" size="256" sumtext="비고"/>
- <Column id="recrnm" type="STRING" size="256" sumtext="기록자명"/>
- <Column id="genrplceid" type="STRING" size="256" sumtext="발생장소코드"/>
- <Column id="genrplcewardcd" type="STRING" size="256" sumtext="발생장소원내코드"/>
- <Column id="causeid" type="STRING" size="256" sumtext="원인코드"/>
- <Column id="colorid" type="STRING" size="256" sumtext="색코드"/>
- <Column id="symptomid" type="STRING" size="256" sumtext="증상코드"/>
- <Column id="underangleid" type="STRING" size="256" sumtext="under방향코드"/>
- <Column id="dressingid" type="STRING" size="256" sumtext="드레싱코드"/>
- <Column id="recrid" type="STRING" size="256" sumtext="기록자아이디"/>
- <Column id="pid" type="STRING" size="256" sumtext="등록번호"/>
- <Column id="grupcd" type="STRING" size="256" sumtext="그룹코드"/>
- <Column id="instcd" type="STRING" size="256" sumtext="기관코드"/>
- <Column id="obsrecseq" type="STRING" size="256" sumtext="욕창기록순번"/>
- <Column id="signno" type="STRING" size="256" sumtext="서명번호"/>
- <Column id="indd" type="STRING" size="256" sumtext="입원일자"/>
- <Column id="cretno" type="STRING" size="256" sumtext="생성번호"/>
- <Column id="orddeptcd" type="STRING" size="256" sumtext="진료과"/>
- <Column id="orddrid" type="STRING" size="256" sumtext="진료의"/>
- <Column id="careflag" type="STRING" size="256" sumtext="가정간호대상자조회 키"/>
- <Column id="inptdt" type="STRING" size="256" sumtext="가정간호대상자조회 키"/>
- <Column id="pushyn" type="STRING" size="256" sumtext="가정간호대상자조회 키"/>
- <Column id="totpnt" type="STRING" size="256"/>
- <Column id="clsgrupkind" type="STRING" size="256"/>
- </ColumnInfo>
- <Rows>
- <Row/>
- </Rows>
- </Dataset>
- <Dataset id="ds_send_savedata_signlist" firefirstcount="0" firenextcount="0" useclientlayout="false" updatecontrol="true" enableevent="true" loadkeymode="keep" loadfiltermode="keep" reversesubsum="false">
- <ColumnInfo>
- <Column id="pid" type="STRING" size="256"/>
- <Column id="certflag" type="STRING" size="256"/>
- <Column id="orddd" type="STRING" size="256"/>
- <Column id="signno" type="STRING" size="256"/>
- <Column id="cretno" type="STRING" size="256"/>
- <Column id="recdd" type="STRING" size="256"/>
- <Column id="rectm" type="STRING" size="256"/>
- <Column id="recsaveflag" type="STRING" size="256"/>
- <Column id="signflag" type="STRING" size="256"/>
- <Column id="signgenrflag" type="STRING" size="256"/>
- <Column id="formcd" type="STRING" size="256"/>
- <Column id="orddeptcd" type="STRING" size="256"/>
- <Column id="orddrid" type="STRING" size="256"/>
- <Column id="signbfcnts" type="STRING" size="256"/>
- <Column id="signaftcnts" type="STRING" size="256"/>
- <Column id="screenid" type="STRING" size="256"/>
- <Column id="dispyn" type="STRING" size="256"/>
- </ColumnInfo>
- </Dataset>
- <Dataset id="ds_cond_patientgrupInfo_patientgruplistInfo" firefirstcount="0" firenextcount="0" useclientlayout="false" updatecontrol="true" enableevent="true" loadkeymode="keep" loadfiltermode="keep" reversesubsum="false">
- <ColumnInfo>
- <Column id="pid" type="STRING" size="256"/>
- </ColumnInfo>
- <Rows>
- <Row/>
- </Rows>
- </Dataset>
- </Objects>
- <Bind>
- <BindItem id="item0" compid="group1.rdo_indsch" propid="value" datasetid="ds_cond" columnid="indsch"/>
- <BindItem id="item1" compid="group5.grp_sea.cmb_wardcd" propid="value" datasetid="ds_cond" columnid="wardcd"/>
- <BindItem id="item2" compid="group5.grp_sea.rdo_stdradio" propid="value" datasetid="ds_cond" columnid="stdradio"/>
- <BindItem id="item3" compid="group5.grp_sea.cmb_roomcd" propid="value" datasetid="ds_cond" columnid="roomcd"/>
- <BindItem id="item4" compid="group5.grp_sea.cmb_Zone" propid="value" datasetid="ds_cond" columnid="zonecd"/>
- <BindItem id="item5" compid="group5.grp_sea.cmb_settingrn" propid="value" datasetid="ds_cond" columnid="settingrnid"/>
- <BindItem id="item6" compid="group5.grp_sea.cmb_patientnm" propid="value" datasetid="ds_cond" columnid="patientnm"/>
- <BindItem id="item7" compid="group5.grp_sea.ipt_pid" propid="value" datasetid="ds_cond" columnid="pid"/>
- <BindItem id="item8" compid="group5.grp_sea.ipt_genrdd" propid="value" datasetid="ds_cond" columnid="genrdd"/>
- <BindItem id="item9" compid="group5.grp_sea.ipt_genrtm" propid="value" datasetid="ds_cond" columnid="genrtm"/>
- <BindItem id="item10" compid="group5.grp_sea.grp_icupnt.ipt_actvpnt" propid="value" datasetid="ds_main_sriusgrup" columnid="tims"/>
- <BindItem id="item11" compid="group5.grp_sea.grp_icupnt.ipt_recdd" propid="value" datasetid="ds_main_sriusgrup" columnid="execdd"/>
- <BindItem id="item12" compid="group5.grp_sea.grp_icupnt.ipt_rectm" propid="value" datasetid="ds_main_sriusgrup" columnid="exectm"/>
- <BindItem id="item13" compid="group5.grp_sea.grp_icupnt.ipt_pnt" propid="value" datasetid="ds_main_sriusgrup" columnid="totpnt"/>
- <BindItem id="item14" compid="group5.grp_sea.grp_icupnt.ipt_rslt" propid="value" datasetid="ds_main_sriusgrup" columnid="clsgrupkind"/>
- </Bind>
- <Script type="xscript4.0"><![CDATA[/***************************************************************************************
- * System Name : 경대 의료정보시스템
- * Job Name : emr_wardcarexp -> SMMNW04700
- * Creator : yjh
- * Make Date : 2016-07-29
- * Description :
- *---------------------------------------------------------------------------------------
- * Modify Date Modifier Modify Description
- *---------------------------------------------------------------------------------------
- * 2016-07-29 yjh TF->XP
- *
- *---------------------------------------------------------------------------------------
- ****************************************************************************************/
- //=======================================================================================
- // Lib Include
- //---------------------------------------------------------------------------------------
- include "com_commonxp::comm_main.xjs";
- include "emr_wardcarexp::SMMNW4700.xjs"; //yjh : 커밋
- include "emr_carecomxp::CareCom.xjs";
- include "emr_carerecxp::CareRec.xjs";
- include "emr_carecomxp::ENRSignEngine.xjs";
- //=======================================================================================
- // Global Form Variable
- //---------------------------------------------------------------------------------------
- var arErrorCode = new HashArray();
- //=======================================================================================
- // Function
- //---------------------------------------------------------------------------------------
- /****************************************************************************************
- * Argument : N/A
- * Description :
- ****************************************************************************************/
- //=======================================================================================
- // Event
- //---------------------------------------------------------------------------------------
- /****************************************************************************************
- * Components : Form
- * Components ID : SMMNW04700
- * Event : oninit
- * Argument : 01.obj : Object Event has occurred
- * : 02.e : Event Object
- * Description : 화면 처음 초기화시
- ****************************************************************************************/
- function SMMNW04700_oninit(obj:Form, e:InitEventInfo)
- {
- frmf_initForm(obj); //폼 초기화
- }
- /****************************************************************************************
- * Components : Form
- * Components ID : SMMNW04700
- * Event : onload
- * Argument : 01.obj : Object Event has occurred
- * : 02.e : Event Object
- * Description : 화면 로딩 완료시
- ****************************************************************************************/
- function SMMNW04700_onload(obj:Form, e:LoadEventInfo)
- {
- grdf_setRowTypeIcon(group5.grd_detlgrup, 0);
-
- ds_hidden_detlgrup_sameinflevl_popmenu_menu.setColumn(0, "name", "사정");
- ds_hidden_detlgrup_sameinflevl_popmenu_menu.setColumn(0, "func", "fAddSameLevlItem");
- ds_hidden_detlgrup_sameinflevl_popmenu_menu.setColumn(1, "name", "종료");
- ds_hidden_detlgrup_sameinflevl_popmenu_menu.setColumn(1, "func", "fAddSameLevlItemEnd");
-
- var msg = '전체 - 기록된 모든 기록 조회 \r\n종료전(전체) - 기록된 등록/사정의 모든 기록 조회 \r\n종료전(최근입력만) - 등록과 가장 최근의 사정된 기록 조회 \r\n종료 - 종료된 발생부위의 등록과 종료된 기록 조회 ';
- group5.grp_sea.rdo_stdradio.tooltiptext = msg;
- ds_main_detlgrup_detlgruplist.clearData();
-
- //초기화(조회조건 세팅, 병동조회)
- //finit();
- this.setTimer(0, 100);
- Sign.init();
- }
- /****************************************************************************************
- * Components : Radio
- * Components ID : rdo_indsch
- * Event : onitemchanged
- * Argument : 01.obj : Object Event has occurred
- * : 02.e : Event Object
- * Description : 라디오 값 변경시
- ****************************************************************************************/
- function group1_rdo_indsch_onitemchanged(obj:Radio, e:ItemChangeEventInfo)
- {
- fSetInDschHidden();
- ds_main_detlgrup_detlgruplist.clearData();
-
- if( ds_cond.getColumn(0, "indsch") == "1" ){
- fGetWardPatList();
- }else{
- ds_main_wardpatinfo_wardpatlist.clearData();
-
- ds_cond.setColumn(0, "patientnm", "");
- ds_cond.setColumn(0, "pid", "");
- //fSearch();
- }
- }
- /****************************************************************************************
- * Components : Combo
- * Components ID : cmb_wardcd
- * Event : onitemchanged
- * Argument : 01.obj : Object Event has occurred
- * : 02.e : Event Object
- * Description : 콤보 값 변경시
- ****************************************************************************************/
- function group5_grp_sea_cmb_wardcd_onitemchanged(obj:Combo, e:ItemChangeEventInfo)
- {
- //병실정보 조회
- //fSearchRoomcd();
- fnZoneDisp();
- fSettingnurid();
- fGetWardPatList();
- }
- /****************************************************************************************
- * Components : Combo
- * Components ID : cmb_roomcd
- * Event : onitemchanged
- * Argument : 01.obj : Object Event has occurred
- * : 02.e : Event Object
- * Description : 콤보 값 변경시
- ****************************************************************************************/
- function group5_grp_sea_cmb_roomcd_onitemchanged(obj:Combo, e:ItemChangeEventInfo)
- {
- //해당병실의 환자를 조회
- fSearchPatInfo();
- }
- /****************************************************************************************
- * Components : Combo
- * Components ID : cmb_Zone
- * Event : onitemchanged
- * Argument : 01.obj : Object Event has occurred
- * : 02.e : Event Object
- * Description : 콤보 값 변경시
- ****************************************************************************************/
- function group5_grp_sea_cmb_Zone_onitemchanged(obj:Combo, e:ItemChangeEventInfo)
- {
- fGetWardPatList();
- }
- /****************************************************************************************
- * Components : Combo
- * Components ID : cmb_settingrn
- * Event : onitemchanged
- * Argument : 01.obj : Object Event has occurred
- * : 02.e : Event Object
- * Description : 콤보 값 변경시
- ****************************************************************************************/
- function group5_grp_sea_cmb_settingrn_onitemchanged(obj:Combo, e:ItemChangeEventInfo)
- {
- fGetWardPatList() ;
- }
- /****************************************************************************************
- * Components : Edit
- * Components ID : ipt_pid
- * Event : onkeyup
- * Argument : 01.obj : Object Event has occurred
- * : 02.e : Event Object
- * Description : 에디터 키 입력시
- ****************************************************************************************/
- function group5_grp_sea_ipt_pid_onkeyup(obj:Edit, e:KeyEventInfo)
- {
- if( e.keycode == 13 ){
-
- ds_cond.setColumn(0, "patientnm", "");
-
- obj.updateToDataset();
- var pid = ds_cond.getColumn(0, "pid");
- if( utlf_isNull(pid) ){
- sysf_messageBox("등록번호","C001");
- group5.grp_sea.ipt_pid.setFocus();
- return;
-
- }else{
- ds_send_reqdata.setColumn(0, "pid", pid);
-
- if( !utlf_isNull(HC_homecarecd) ){
- //등록번호에 해당되는 병동, 병실정보를 조회한다.
- fGetPidWardInfo(pid);
-
- //ipt_pid에 값이 들어가 있을때 조회를 실행한다.
- if( !utlf_isNull(ds_cond.getColumn(0, "pid")) ){
- fSearch();
- }
- }else{
- var oParam = {};
- oParam.id = "TRMNW04716";
- oParam.service = "wardcareapp.WardCareRec";
- oParam.method = "reqGetPatIndschinfo";
- oParam.inds = "reqdata=ds_send_reqdata";
- oParam.outds = "ds_main_patindschinfo_patindschlist=patindschlist";
- oParam.async = false;
- oParam.callback = "cf_TRMNW04716";
- tranf_submit(oParam);
-
- ds_main_patindschinfo_patindschlist.rowposition = -1;
-
- if( arErrorCode.pop("TRMNW04716") > -1 ){
-
- var cnt = ds_main_patindschinfo_patindschlist.rowcount;
-
- if( cnt > 0 ){
- group5.group2.visible = true;
- }
- }
- }
- }
- }
- }
- function cf_TRMNW04716(sSvcId, nErrorCode, sErrorMsg) {
- arErrorCode.push(sSvcId, nErrorCode);
- }
- /****************************************************************************************
- * Components : Button
- * Components ID : btn_patSearch
- * Event : onclick
- * Argument : 01.obj : Object Event has occurred
- * : 02.e : Event Object
- * Description : 돋보기버튼 클릭시
- ****************************************************************************************/
- function group5_grp_sea_btn_patSearch_onclick(obj:Button, e:ClickEventInfo)
- {
- var objArg = new Object();
- objArg.arg_ds_send = ds_source;
-
- frmf_modal("SPPMC02500","SPPMC02500",objArg,"",1,150,150,"","","","","","M");
-
- //환자번호 copy
- var popupendflag = frmf_getParameter("SPPMC02500_popupendflag");
- if( popupendflag == "ok" ){
- ds_cond.setColumn(0, "pid", ds_patinfolist.getColumn(0, "pid"));
- ds_cond.setColumn(0, "patientnm", ds_patinfolist.getColumn(0, "hngnm"));
- }
-
- var pid = ds_cond.getColumn(0, "pid");
- //환자번호를 가지고 병동, 병실을 조회하여 조회조건에 세팅한다.
- fGetPidWardInfo(pid);
-
- //욕창기록 조회
- fSearch();
- }
- /****************************************************************************************
- * Components : Calendar
- * Components ID : ipt_genrdd
- * Event : onchanged
- * Argument : 01.obj : Object Event has occurred
- * : 02.e : Event Object
- * Description : 달력 값 변경시
- ****************************************************************************************/
- function group5_grp_sea_ipt_genrdd_onchanged(obj:Calendar, e:ChangeEventInfo)
- {
- fSearch();
- }
- /****************************************************************************************
- * Components : MaskEdit
- * Components ID : ipt_genrtm
- * Event : onkeyup
- * Argument : 01.obj : Object Event has occurred
- * : 02.e : Event Object
- * Description : 마스크에디터 키 입력시
- ****************************************************************************************/
- function group5_grp_sea_ipt_genrtm_onkeyup(obj:MaskEdit, e:KeyEventInfo)
- {
- if( e.keycode == 13 ){
- fSearch();
- }
- }
- /****************************************************************************************
- * Components : Button
- * Components ID : button6
- * Event : onclick
- * Argument : 01.obj : Object Event has occurred
- * : 02.e : Event Object
- * Description : push 그래프버튼 클릭시
- ****************************************************************************************/
- function group5_grp_sea_button6_onclick(obj:Button, e:ClickEventInfo)
- {
- frmf_modal("SMMNW04703","SMMNW04703",null,"","","","","","","","","","M"); //yjh1
- }
- /****************************************************************************************
- * Components : Button
- * Components ID : button4
- * Event : onclick
- * Argument : 01.obj : Object Event has occurred
- * : 02.e : Event Object
- * Description : push버튼 클릭시
- ****************************************************************************************/
- function group5_grp_sea_button4_onclick(obj:Button, e:ClickEventInfo)
- {
- var sPid = ds_cond.getColumn(0, "pid");
-
- var sIndd = ds_data_patientgruplist.getColumn(ds_data_patientgruplist.findRow("pid", sPid), "indd");
- var sPatnm = ds_data_patientgruplist.getColumn(ds_data_patientgruplist.findRow("pid", sPid), "patientnm");
-
- frmf_setParameter("pid", sPid);
- frmf_setParameter("indd", sIndd);
- frmf_setParameter("pname", sPatnm);
-
- frmf_modal("SMMNW04702","SMMNW04702",null,"","","","","","","","","","M");
- }
- /****************************************************************************************
- * Components : Button
- * Components ID : button26
- * Event : onclick
- * Argument : 01.obj : Object Event has occurred
- * : 02.e : Event Object
- * Description : 욕창발생보고서버튼 클릭시
- ****************************************************************************************/
- function group5_button26_onclick(obj:Button, e:ClickEventInfo)
- {
- frmf_modal("SMMNW13800","SMMNW13800",null,"",0,0,150,"","","","","","M");
-
- if( !utlf_isNull(ds_cond.getColumn(0, "patientnm")) ){
- fSearch(); // 재조회
- }
- }
- /****************************************************************************************
- * Components : Radio
- * Components ID : rdo_stdradio
- * Event : onitemchanged
- * Argument : 01.obj : Object Event has occurred
- * : 02.e : Event Object
- * Description : 라디오 값 변경시
- ****************************************************************************************/
- function group5_grp_sea_rdo_stdradio_onitemchanged(obj:Radio, e:ItemChangeEventInfo)
- {
- fSearch();
- }
- /****************************************************************************************
- * Components : Button
- * Components ID : button3
- * Event : onclick
- * Argument : 01.obj : Object Event has occurred
- * : 02.e : Event Object
- * Description : 인증저장버튼 클릭시
- ****************************************************************************************/
- function group5_grp_sea_button3_onclick(obj:Button, e:ClickEventInfo)
- {
- fSignSave();
- }
- /****************************************************************************************
- * Components : Button
- * Components ID : button1
- * Event : onclick
- * Argument : 01.obj : Object Event has occurred
- * : 02.e : Event Object
- * Description : 삭제버튼 클릭시
- ****************************************************************************************/
- function group5_grp_sea_button1_onclick(obj:Button, e:ClickEventInfo)
- {
- fDel();
- }
- /****************************************************************************************
- * Components : Button
- * Components ID : button2
- * Event : onclick
- * Argument : 01.obj : Object Event has occurred
- * : 02.e : Event Object
- * Description : 발생부위추가버튼 클릭시
- ****************************************************************************************/
- function group5_grp_sea_button2_onclick(obj:Button, e:ClickEventInfo)
- {
- fAddGenArea();
- }
- /****************************************************************************************
- * Components : Grid
- * Components ID : grd_wardpatlist
- * Event : oncelldblclick
- * Argument : 01.obj : Object Event has occurred
- * : 02.e : Event Object
- * Description : 그리드 셀 더블클릭시
- ****************************************************************************************/
- function group5_grd_wardpatlist_oncelldblclick(obj:Grid, e:GridClickEventInfo)
- {
- fSetInDsch("A");
- fSearch("click");
- }
- /****************************************************************************************
- * Components : Button
- * Components ID : button5
- * Event : onclick
- * Argument : 01.obj : Object Event has occurred
- * : 02.e : Event Object
- * Description : X버튼 클릭시
- ****************************************************************************************/
- function group5_group2_button5_onclick(obj:Button, e:ClickEventInfo)
- {
- group5.group2.visible = false;
- }
- /****************************************************************************************
- * Components : Grid
- * Components ID : grd_patindschlist
- * Event : oncelldblclick
- * Argument : 01.obj : Object Event has occurred
- * : 02.e : Event Object
- * Description : 그리드 셀 더블클릭시
- ****************************************************************************************/
- function group5_group2_grd_patindschlist_oncelldblclick(obj:Grid, e:GridClickEventInfo)
- {
- var condparam = ds_main_patindschinfo_patindschlist.getColumn(ds_main_patindschinfo_patindschlist.rowposition, "ordtype")
- + "▦" + ds_main_patindschinfo_patindschlist.getColumn(ds_main_patindschinfo_patindschlist.rowposition, "pid")
- + "▦" + ds_main_patindschinfo_patindschlist.getColumn(ds_main_patindschinfo_patindschlist.rowposition, "indd")
- + "▦" + ds_main_patindschinfo_patindschlist.getColumn(ds_main_patindschinfo_patindschlist.rowposition, "cretno")
- + "▦" + ds_main_patindschinfo_patindschlist.getColumn(ds_main_patindschinfo_patindschlist.rowposition, "instcd")
- + "▦" + ds_main_patindschinfo_patindschlist.getColumn(ds_main_patindschinfo_patindschlist.rowposition, "dschdd");
-
- // setParameter("condparam", condparam);
- // modal("SPMMO08900", 1, "", "", "", "", "", "left:0; right:0; width:0; height:0; sysmenu:hidden; caption:hidden; min:hidden, max:hidden;");
-
- appf_initPatientInfo(condparam); //상단정보 셋팅
-
- group5.group2.visible = false;
-
- fSearch("search");
- }
- /****************************************************************************************
- * Components : Grid
- * Components ID : grd_detlgrup
- * Event : onexpandup
- * Argument : 01.obj : Object Event has occurred
- * : 02.e : Event Object
- * Description : 그리드 expand버튼 클릭시
- ****************************************************************************************/
- function group5_grd_detlgrup_onexpandup(obj, e)
- {
- var iCos = group5.grd_detlgrup.currentcol;
- var iRow = group5.grd_detlgrup.currentrow;
- var att = group5.grd_detlgrup.getCellProperty("Body", iCos, "text").replace("bind:", "");
- var stageid = ds_main_detlgrup_detlgruplist.getColumn(iRow, "stageid");
-
- trace("iCos : " + iCos);
- trace("iRow : " + iRow);
- trace("att : " + att);
- trace("stageid : " + stageid);
-
- if( att != "genrdd" && att != "recdd" ){
- if( ds_main_detlgrup_detlgruplist.getColumn(iRow, "stat") == "i" ){
- if( ds_main_detlgrup_detlgruplist.getColumn(iRow, "flag") == "00" ){
- if( att == "obspartnm" ){//피부욕창발생부위
- trace("obspartnm");
- fPopupBedSoreImg();
- } else if( att = "genrplce" || att == "cause" ){
- //발생장소, 발생원인, 단계
- trace("genrplce / cause");
- fPopupBedSoreData(group5.grd_detlgrup.currentrow);
- }
- }else{
- if( att == "color" || att == "symptom" || att == "dressing" || att == "tissue" ){
- fPopupBedSoreData(group5.grd_detlgrup.currentrow);
- }else if( att == "stage" ){
- if( stageid != "65" && stageid != "66" ){
- sysf_messageBox("1~4단계의 기록은 등록 시에만 사정 단계 변경이 가능합니다. 사정 및 종료 시에는 재사정 단계를 입력하세요.", "I999");
- } else {
- fPopupBedSoreData(group5.grd_detlgrup.currentrow);
- }
- }else{
- sysf_messageBox('발생부위,발생장소,발생원인은 수정이 불가합니다.', 'I');
- return;
- }
- }
- }else{
- if( att == "color" || att == "symptom" || att == "dressing" || att == "tissue" ){
- fPopupBedSoreData(group5.grd_detlgrup.currentrow);
- }else if( att == "stage" ){
- if( stageid != "65" && stageid != "66" ){
- sysf_messageBox("1~4단계의 기록은 등록 시에만 사정 단계 변경이 가능합니다. 사정 및 종료 시에는 재사정 단계를 입력하세요.", "I999");
- } else {
- fPopupBedSoreData(group5.grd_detlgrup.currentrow);
- }
- }else{
- sysf_messageBox('발생부위,발생장소,발생원인은 수정이 불가합니다.', 'I');
- return;
- }
- }
- }
- }
- /****************************************************************************************
- * Components : Grid
- * Components ID : grd_detlgrup
- * Event : ondropdown
- * Argument : 01.obj : Object Event has occurred
- * : 02.e : Event Object
- * Description : 그리드 콤보/달력 드랍다운시
- ****************************************************************************************/
- function group5_grd_detlgrup_ondropdown(obj:Grid, e:GridEditEventInfo)
- {
- if( e.col == group5.grd_detlgrup.getBindCellIndex("body", "genrplcewardcd") ){
- if( ds_main_detlgrup_detlgruplist.getColumn(e.row, "stat") == "i" && ds_main_detlgrup_detlgruplist.getColumn(e.row, "flag") == "00" ){
- if( utlf_isNull(ds_main_detlgrup_detlgruplist.getColumn(e.row, "genrplceid")) ){
- sysf_messageBox('발생장소를 먼저 입력하십시오.', 'I');
-
- return false;
- }
- }
- }
- }
- /****************************************************************************************
- * Components : Dataset
- * Components ID : ds_main_detlgrup_detlgruplist
- * Event : oncolumnchanged
- * Argument : 01.obj : Object Event has occurred
- * : 02.e : Event Object
- * Description : 데이터셋 값 변경시
- ****************************************************************************************/
- function ds_main_detlgrup_detlgruplist_oncolumnchanged(obj:Dataset, e:DSColChangeEventInfo)
- {
- if( e.columnid == "restage" ){
- //재사정 2013.02.01 KJS
- var iRow=group5.grd_detlgrup.currentrow;
-
- var ChkFlag= ds_main_detlgrup_detlgruplist.getColumn(iRow, "flag");
- if( ChkFlag == "00" ){
- sysf_messageBox("등록시에는 재사정 내역을 입력할 수 없습니다.","I");
- var ChkFlag= ds_main_detlgrup_detlgruplist.getColumn(iRow, "flag");
- ds_main_detlgrup_detlgruplist.setColumn(iRow, "restage", "");
-
- return;
- }
- }
- //상태를 수정상태로 변경
- fChangedGridCol();
-
- //체크 해제및 체크 하면 같은 그룹내의 데이터를 모두 체크 해제 및 체크상태로 바꾼다.
- /************************************ 미구현내역******************************************/
- }
- /****************************************************************************************
- * Components : Grid
- * Components ID : grd_detlgrup
- * Event : onrbuttondown
- * Argument : 01.obj : Object Event has occurred
- * : 02.e : Event Object
- * Description : 마우스 우클릭시
- ****************************************************************************************/
- function group5_grd_detlgrup_onrbuttondown(obj:Grid, e:GridMouseEventInfo)
- {
- if(e.row < 0 || e.col < 0) return;
- //group5.grd_detlgrup.autoenter = "key";
-
- group5.grd_detlgrup.setCellPos(e.col);
- grdf_setSelectedCell(obj, e);
- //ds_data_mainpop.filter("id == 'drugadditem'");
- //추민수
- //if(obj.getEditText() == undefined){
- // fMouseDownGridRow(e);
- //}
- }
- /****************************************************************************************
- * Components : PopupMenu
- * Components ID : pMenu_detlgrupmenu
- * Event : onmenuclick
- * Argument : 01.obj : Object Event has occurred
- * : 02.e : Event Object
- * Description : 팝업메뉴 클릭시
- ****************************************************************************************/
- function pMenu_detlgrupmenu_onmenuclick(obj:PopupMenu, e:MenuClickEventInfo)
- {
- switch( e.id ){
- case "fAddSameLevlItem" :
- fAddSameLevlItem();
- break;
-
- case "fAddSameLevlItemEnd" :
- fAddSameLevlItemEnd();
- break;
-
- case "fAddSameLevlDataCopy" :
- fAddSameLevlDataCopy();
- break;
-
- default :
- break;
- }
- }
- function fAddSameLevlDataCopy(){
- if( ds_main_detlgrup_detlgruplist.rowposition > 0 ){
- switch( group5.grd_detlgrup.getCurEditType() ){
- case "text" :
- case "date" :
- case "mask" :
- var sColNm = utlf_transNullToEmpty(group5.grd_detlgrup.getCellProperty("body", group5.grd_detlgrup.currentcol, "text")).replace("bind:", "");
-
- ds_main_detlgrup_detlgruplist.setColumn(ds_main_detlgrup_detlgruplist.rowposition, sColNm, ds_main_detlgrup_detlgruplist.getColumn(ds_main_detlgrup_detlgruplist.rowposition-1, sColNm));
-
- break;
-
- default :
- break;
- }
- }
- }
- /****************************************************************************************
- * Components : Grid
- * Components ID : grd_detlgrup
- * Event : oncelldblclick
- * Argument : 01.obj : Object Event has occurred
- * : 02.e : Event Object
- * Description : 그리드 셀 더블클릭시
- ****************************************************************************************/
- function group5_grd_detlgrup_oncelldblclick(obj:Grid, e:GridClickEventInfo)
- {
- var iCos = group5.grd_detlgrup.currentcol;
- var att = group5.grd_detlgrup.getCellProperty("Body", iCos, "text").replace("bind:", "");
- if( att == "fileimg" ){//첨부파일
- fOpenFilePopup();
- }else if( att == "underangle" || att == 'underdepth' || att == "underangleunit" || att == 'underdepthunit' ){//undermining
- fPopupUndermining();
- }else{
- obj.showEditor(true);
- }
- }
- var lastrow1 = -1;
- var lastcol1 = -1;
- var bDrop1 = false;
- /****************************************************************************************
- * Components : Grid
- * Components ID : grd_detlgrup
- * Event : oncellclick
- * Argument : 01.obj : Object Event has occurred
- * : 02.e : Event Object
- * Description : 그리드 셀클릭시
- ****************************************************************************************/
- function group5_grd_detlgrup_oncellclick(obj:Grid, e:GridClickEventInfo)
- {
- trace("start");
- lastrow1 = -1;
- lastcol1 = -1;
-
- var iRow = group5.grd_detlgrup.currentrow;
-
- //if(grd_detlgrup.col == 8){
- if( group5.grd_detlgrup.currentcol == group5.grd_detlgrup.getBindCellIndex("body", "sel") ){
-
- //체크 해제및 체크 하면 같은 그룹내의 데이터를 모두 체크 해제 및 체크상태로 바꾼다.
- /************************************ 미구현내역******************************************/
-
- //체크 해제하면 update상태를 select상태로 변경한다.
- fChangeStatus(group5.grd_detlgrup.currentrow);
-
- //발생부위별로 머지한다.
- fMergeGenrAreaDD();
-
- } else if( group5.grd_detlgrup.currentcol == group5.grd_detlgrup.getBindCellIndex("body", "rptsmsflag") ){
- var flag = ds_main_detlgrup_detlgruplist.getColumn(ds_main_detlgrup_detlgruplist.rowposition, "flag");
- if( 01 == flag || 99 == flag ){ // 사정, 종료 구분인 경우 욕창보고 컬럼 체크 blocking (2011.04.14 Ahn)
- sysf_messageBox('구분이 등록인 경우에만 해당됩니다.', "I");
- ds_main_detlgrup_detlgruplist.setColumn(ds_main_detlgrup_detlgruplist.rowposition, "rptsmsflag", "0");
- }
- }
-
- var genrplceh = 0;
-
- if( group5.grd_detlgrup.currentcol == group5.grd_detlgrup.getBindCellIndex("body", "genrplcewardcd") ){
- if( ds_main_detlgrup_detlgruplist.getColumn(iRow, "stat") == "i" && ds_main_detlgrup_detlgruplist.getColumn(iRow, "flag") == "00" ){
- if( utlf_isNull(ds_main_detlgrup_detlgruplist.getColumn(iRow, "genrplceid")) ){
- sysf_messageBox('발생장소를 먼저 입력하십시오.', 'I');
- }else{
- var genrplcesplit = utlf_transNullToEmpty(ds_main_detlgrup_detlgruplist.getColumn(iRow, "genrplceid")).split(",");
- for( var i=0 ; i<genrplcesplit.length ; i++ ){
- if( genrplcesplit[i] == "61" ){ // 61 : 원내
- genrplceh++;
- }
- }
-
- if( genrplceh == 0 ){
- sysf_messageBox('발생장소(원내)은 발생장소가 원내인 경우만 입력가능합니다.', 'I');
- obj.moveToNextCell();
- return;
- }
- }
-
- var sExprEdit = group5.grd_detlgrup.getCellProperty("Body", group5.grd_detlgrup.getBindCellIndex("body", "genrplcewardcd"), "edittype");
- if( sExprEdit.indexOf("currow == "+iRow+" ? 'combo' : ") < 0 ){
- if( sExprEdit == "none" ){
- sExprEdit = "expr:currow == "+iRow+" ? 'combo' : 'none'";
- }else{
- sExprEdit = sExprEdit.replace("'none'", "") + "currow == "+iRow+" ? 'combo' : 'none'";
- }
- }
- group5.grd_detlgrup.setCellProperty("Body", group5.grd_detlgrup.getBindCellIndex("body", "genrplcewardcd"), "edittype", sExprEdit);
- }else{
- var sExprEdit = group5.grd_detlgrup.getCellProperty("Body", group5.grd_detlgrup.getBindCellIndex("body", "genrplcewardcd"), "edittype").replace("currow == "+iRow+" ? 'combo' : ", "");
- if( sExprEdit == "expr:'none'" ){
- group5.grd_detlgrup.setCellProperty("Body", group5.grd_detlgrup.getBindCellIndex("body", "genrplcewardcd"), "edittype", "none");
- }else{
- group5.grd_detlgrup.setCellProperty("Body", group5.grd_detlgrup.getBindCellIndex("body", "genrplcewardcd"), "edittype", sExprEdit);
- }
- }
- }
-
- if( group5.grd_detlgrup.currentcol == group5.grd_detlgrup.getBindCellIndex("body", "genrdd") ){
- if( ds_main_detlgrup_detlgruplist.getColumn(iRow, "stat") == "i" && ds_main_detlgrup_detlgruplist.getColumn(iRow, "flag") == "00" ){
- var sExprEdit = group5.grd_detlgrup.getCellProperty("Body", group5.grd_detlgrup.getBindCellIndex("body", "genrdd"), "edittype");
- if( sExprEdit.indexOf("currow == "+iRow+" ? 'date' : ") < 0 ){
- if( sExprEdit == "none" ){
- sExprEdit = "expr:currow == "+iRow+" ? 'date' : 'none'";
- }else{
- sExprEdit = sExprEdit.replace("'none'", "") + "currow == "+iRow+" ? 'date' : 'none'";
- }
- }
- group5.grd_detlgrup.setCellProperty("Body", group5.grd_detlgrup.getBindCellIndex("body", "genrdd"), "edittype", sExprEdit);
- }else{
- var sExprEdit = group5.grd_detlgrup.getCellProperty("Body", group5.grd_detlgrup.getBindCellIndex("body", "genrdd"), "edittype").replace("currow == "+iRow+" ? 'date' : ", "");
- if( sExprEdit == "expr:'none'" ){
- group5.grd_detlgrup.setCellProperty("Body", group5.grd_detlgrup.getBindCellIndex("body", "genrdd"), "edittype", "none");
- }else{
- group5.grd_detlgrup.setCellProperty("Body", group5.grd_detlgrup.getBindCellIndex("body", "genrdd"), "edittype", sExprEdit);
- }
- return;
- }
- }
-
- if( group5.grd_detlgrup.currentcol == group5.grd_detlgrup.getBindCellIndex("body", "genrtm") ){
- if( ds_main_detlgrup_detlgruplist.getColumn(iRow, "stat") == "i" && ds_main_detlgrup_detlgruplist.getColumn(iRow, "flag") == "00" ){
- var sExprEdit = group5.grd_detlgrup.getCellProperty("Body", group5.grd_detlgrup.getBindCellIndex("body", "genrtm"), "edittype");
- if( sExprEdit.indexOf("currow == "+iRow+" ? 'text' : ") < 0 ){
- if( sExprEdit == "none" ){
- sExprEdit = "expr:currow == "+iRow+" ? 'text' : 'none'";
- }else{
- sExprEdit = sExprEdit.replace("'none'", "") + "currow == "+iRow+" ? 'text' : 'none'";
- }
- }
- group5.grd_detlgrup.setCellProperty("Body", group5.grd_detlgrup.getBindCellIndex("body", "genrtm"), "edittype", sExprEdit);
- }else{
- var sExprEdit = group5.grd_detlgrup.getCellProperty("Body", group5.grd_detlgrup.getBindCellIndex("body", "genrtm"), "edittype").replace("currow == "+iRow+" ? 'text' : ", "");
- if( sExprEdit == "expr:'none'" ){
- group5.grd_detlgrup.setCellProperty("Body", group5.grd_detlgrup.getBindCellIndex("body", "genrtm"), "edittype", "none");
- }else{
- group5.grd_detlgrup.setCellProperty("Body", group5.grd_detlgrup.getBindCellIndex("body", "genrtm"), "edittype", sExprEdit);
- }
- return;
- }
- }
-
- if( group5.grd_detlgrup.currentcol == group5.grd_detlgrup.getBindCellIndex("body", "recdd") ){
- if( ds_main_detlgrup_detlgruplist.getColumn(iRow, "stat") == "i" ){
- var sExprEdit = group5.grd_detlgrup.getCellProperty("Body", group5.grd_detlgrup.getBindCellIndex("body", "recdd"), "edittype");
- if( sExprEdit.indexOf("currow == "+iRow+" ? 'date' : ") < 0 ){
- if( sExprEdit == "none" ){
- sExprEdit = "expr:currow == "+iRow+" ? 'date' : 'none'";
- }else{
- sExprEdit = sExprEdit.replace("'none'", "") + "currow == "+iRow+" ? 'date' : 'none'";
- }
- }
- group5.grd_detlgrup.setCellProperty("Body", group5.grd_detlgrup.getBindCellIndex("body", "recdd"), "edittype", sExprEdit);
- }else{
- var sExprEdit = group5.grd_detlgrup.getCellProperty("Body", group5.grd_detlgrup.getBindCellIndex("body", "recdd"), "edittype").replace("currow == "+iRow+" ? 'date' : ", "");
- if( sExprEdit == "expr:'none'" ){
- group5.grd_detlgrup.setCellProperty("Body", group5.grd_detlgrup.getBindCellIndex("body", "recdd"), "edittype", "none");
- }else{
- group5.grd_detlgrup.setCellProperty("Body", group5.grd_detlgrup.getBindCellIndex("body", "recdd"), "edittype", sExprEdit);
- }
- return;
- }
- }
-
- if( group5.grd_detlgrup.currentcol == group5.grd_detlgrup.getBindCellIndex("body", "rectm") ){
- if( ds_main_detlgrup_detlgruplist.getColumn(iRow, "stat") == "i" ){
- var sExprEdit = group5.grd_detlgrup.getCellProperty("Body", group5.grd_detlgrup.getBindCellIndex("body", "rectm"), "edittype");
- if( sExprEdit.indexOf("currow == "+iRow+" ? 'text' : ") < 0 ){
- if( sExprEdit == "none" ){
- sExprEdit = "expr:currow == "+iRow+" ? 'text' : 'none'";
- }else{
- sExprEdit = sExprEdit.replace("'none'", "") + "currow == "+iRow+" ? 'text' : 'none'";
- }
- }
- group5.grd_detlgrup.setCellProperty("Body", group5.grd_detlgrup.getBindCellIndex("body", "rectm"), "edittype", sExprEdit);
- }else{
- var sExprEdit = group5.grd_detlgrup.getCellProperty("Body", group5.grd_detlgrup.getBindCellIndex("body", "rectm"), "edittype").replace("currow == "+iRow+" ? 'text' : ", "");
- if( sExprEdit == "expr:'none'" ){
- group5.grd_detlgrup.setCellProperty("Body", group5.grd_detlgrup.getBindCellIndex("body", "rectm"), "edittype", "none");
- }else{
- group5.grd_detlgrup.setCellProperty("Body", group5.grd_detlgrup.getBindCellIndex("body", "rectm"), "edittype", sExprEdit);
- }
- return;
- }
- }
-
- var rSize = 0;
-
- trace("befor in");
- trace("expand : " + obj.getCellProperty("body", e.col, "expandshow"));
- trace("edittype : " + obj.getCellProperty("body", e.col, "edittype"));
- trace("edittype expr : " + obj.getCellProperty("body", e.col, "edittype").indexOf("expr"));
- trace("oRect : " + obj.getCellRect(e.row, e.col));
-
- if( obj.getCellProperty("body", e.col, "expandshow") != "show" && obj.getCellProperty("body", e.col, "edittype").indexOf("expr") < 0) return;
- //|| (obj.getCellProperty("body", e.col, "edittype") != "text" && obj.getCellProperty("body", e.col, "edittype").indexOf("expr") < 0)) return;
-
-
- trace("after out");
-
- var oRect = obj.getCellRect(e.row, e.col);
- if( !utlf_isNull(oRect) ){
- rSize = oRect.right;
- trace("rSize : " + rSize);
- trace("e.clientX : " + e.clientX);
- if (e.clientX >= (rSize - 25) && e.clientX < rSize){
- var userEvent = new EventInfo();
- userEvent.col = e.col;
- userEvent.row = e.row;
-
- group5_grd_detlgrup_onexpandup(group5.grd_detlgrup, userEvent);
- }
- }
- }
- function group5_grd_detlgrup_onlbuttondown(obj:Grid, e:GridMouseEventInfo)
- {
- //group5.grd_detlgrup.autoenter = "key";
- }
- function group5_grd_detlgrup_onlbuttonup(obj:Grid, e:GridMouseEventInfo)
- {
- //group5.grd_detlgrup.autoenter = "select";
-
- grdf_setSelectedCell(obj, e);
-
- var dsGridBind = eval(obj.binddataset);
-
- // Combo DropDown Click 처리
- obj.autoenter = "key";
-
- if( e.fromreferenceobject.name == "dropbutton" ){
- bDrop1 = true;
- }
- if( e.row > -1 && obj.getCellProperty("body", e.col, "edittype") == "combo" ){
- // Combo 선택시 활성화 및 combodatacol 변경
- if( grdf_getSelectedCols(obj).length == 0 && grdf_getSelectedRows(obj).length == 0 && obj.getEditText() == undefined ){
- obj.showEditor(true);
- }else{
- if(!obj.isDropdownCombo() && (lastrow1 != e.row || lastcol1 != e.col)) {
- obj.setCellPos(e.col);
- dsGridBind.rowposition = e.row;
- obj.showEditor(true);
- if(bDrop1) {
- obj.dropdownCombo();
- }
- }
- }
- }else{
- obj.autoenter = "key";
- }
- }
- function group5_grd_detlgrup_onrbuttonup(obj:Grid, e:GridMouseEventInfo)
- {
- if(e.row < 0 || e.col < 0) return;
- //group5.grd_detlgrup.autoenter = "key";
-
- group5.grd_detlgrup.setCellPos(e.col);
- grdf_setSelectedCell(obj, e);
- //ds_data_mainpop.filter("id == 'drugadditem'");
- //추민수
- if(obj.getEditText() == undefined){
- fMouseDownGridRow(e);
- }
-
- //group5.grd_detlgrup.autoenter = "select";
- }
- function SMMNW04700_ontimer(obj:Form, e:TimerEventInfo)
- {
- if( e.timerid == 0 ){
- this.killTimer( 0 );
- finit();
- }
- }
- function group5_grp_sea_grp_icupnt_ipt_rectm_ontextchange(obj:MaskEdit, e:TextChangeEventInfo)
- {
- utlf_validMaskEditTime(obj, e);
- }
- function group5_grp_sea_ipt_genrtm_ontextchange(obj:MaskEdit, e:TextChangeEventInfo)
- {
- utlf_validMaskEditTime(obj, e);
- }
- function group5_grd_detlgrup_oncloseup(obj:Grid, e:GridEditEventInfo)
- {
- var dsGridBind = eval(obj.binddataset);
- var preVal = utlf_transNullToEmpty(dsGridBind.getColumn(e.row, e.col));
- var posVal = utlf_transNullToEmpty(e.value);
-
- if( bDrop1 == true && (!utlf_isNull(posVal) || preVal != posVal) ){
- obj.showEditor(false);
- }
-
- bDrop1 = false;
- lastrow1 = e.row;
- lastcol1 = e.col;
- }
- ]]></Script>
- </Form>
- </FDL>
|