123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112 |
- <?xml version="1.0" encoding="utf-8"?>
- <FDL version="1.4">
- <TypeDefinition url="..\..\..\default_typedef.xml"/>
- <Form id="SMMRI00400" position="absolute 0 0 1280 943" titletext="통합기록조회" onload="SMMRI00400_onload" onkeydown="SMMRI00400_onkeydown">
- <Layouts>
- <Layout>
- <Radio position="absolute 150 2 750 19" align="align:center middle;" id="rdo_lindx" columncount="10" innerdataset="ds_init_rdo_lindx" datacolumn="indxnm" codecolumn="itemindxseq" onitemclick="rdo_lindx_onitemclick" onitemchanged="rdo_lindx_onitemchanged" index="-1" visible="false"/>
- <Shape position="absolute 0 20 1250 26" linetype="horizontal" id="line17" class="line_1"/>
- <Div position="absolute 0 24 342 936" id="grup_left">
- <Layouts>
- <Layout width="342" height="912">
- <Shape position="absolute 339 2 341 887" linetype="vertical" id="line1" class="line_2" anchor="default"/>
- <Div position="absolute 0 2 339 81" id="roundrect2" type="roundrectangle" class="div_SA2" anchor="default">
- <Layouts>
- <Layout>
- <Button id="button5" taborder="7" onclick="grup_left_button5_onclick" position="absolute 215 28 245 48" anchor="default"/>
- <Static id="caption21" text="등록번호" class="cell_1" position="absolute 3 3 63 26" anchor="default"/>
- <Edit id="ipt_pid" taborder="1" onkeydown="grup_left_ipt_pid_onkeydown" class="input_essential" position="absolute 66 5 161 24" anchor="default"/>
- <Static id="caption35" text="주민번호" class="cell_1" position="absolute 3 28 63 51" anchor="default"/>
- <MaskEdit id="ipt_rrgstno1" taborder="2" mask="999999" onkeydown="grup_left_roundrec2_ipt_rrgstno1_onkeydown" class="input_essential" position="absolute 66 29 136 48" anchor="default" style="align:left middle;"/>
- <Edit id="ipt_rrgstno2" taborder="3" onkeydown="grup_left_roundrec2_ipt_rrgstno2_onkeydown" class="input_essential" position="absolute 140 29 210 48" mask="9999999" anchor="default" password="true"/>
- <Static id="caption23" text="성명" class="cell_1" position="absolute 165 3 225 26" anchor="default"/>
- <Edit id="ipt_hngnm" taborder="4" class="input_essential" position="absolute 227 5 312 24" onkeydown="grup_left_roundrect2_ipt_hngnm_onkeydown" anchor="default"/>
- <Button id="btn_search" taborder="5" onclick="grup_left_roundrec2_btn_search_onclick" class="icon_search" position="absolute 315 7 331 23" anchor="default"/>
- <Edit id="opt_age" taborder="6" readonly="true" position="absolute 281 30 334 49" anchor="default"/>
- <Static id="caption57" text="성별/나이" class="cell_1" position="absolute 213 28 279 51" anchor="default"/>
- <Combo id="cmb_dept" taborder="8" innerdataset="ds_init_cmb_dept" codecolumn="deptcd" datacolumn="deptnm" onitemchanged="grup_left_cmb_dept_onitemchanged" onkeydown="grup_left_cmb_dept_onkeydown" class="combo_default" position="absolute 66 55 276 74" canitemchange="grup_left_roundrect2_cmb_dept_canitemchange" oncloseup="grup_left_roundrect2_cmb_dept_oncloseup" onitemclick="grup_left_roundrect2_cmb_dept_onitemclick" anchor="default"/>
- <Button id="button3" taborder="9" text="조회" onclick="grup_left_roundrec2_button3_onclick" class="btn1" position="absolute 280 53 336 75" anchor="default"/>
- <Static id="caption5" text="진료부서" class="cell_1" position="absolute 3 53 63 76" anchor="default"/>
- </Layout>
- </Layouts>
- </Div>
- <Static text="수진이력" position="absolute 0 113 100 129" id="caption2" class="tit_2" anchor="default"/>
- <Tab position="absolute 0 118 338 893" id="switch1" style="buttonbackground:stretch 10,0;buttonmargin:0 1 0 0;showextrabutton:false;cursor:auto;" anchor="default">
- <Tabpages>
- <Tabpage text="" id="grd">
- <Layouts>
- <Layout width="338" height="760">
- <Grid position="absolute 0 344 338 755" id="grd_midindx" binddataset="ds_grd_midindx" anchor="default" oncelldblclick="grup_left_switch1_grd_grd_midindx_oncelldblclick" onrbuttondown="grup_left_switch1_grd_grd_midindx_onrbuttondown" onkeydown="grup_left_switch1_grd_grd_midindx_onkeydown" autofittype="none" autosizingtype="row" style="font:Dotum,8,bold;" cellsizingtype="none">
- <Formats>
- <Format id="default">
- <Columns>
- <Column size="0"/>
- <Column size="0"/>
- <Column size="0"/>
- <Column size="0"/>
- <Column size="0"/>
- <Column size="0"/>
- <Column size="240"/>
- <Column size="0"/>
- </Columns>
- <Rows>
- <Row size="22" band="head"/>
- <Row size="20"/>
- </Rows>
- <Band id="head">
- <Cell text="lisflag"/>
- <Cell col="1" text="reckind"/>
- <Cell col="2" text="emrflag"/>
- <Cell col="3" text="정렬순번"/>
- <Cell col="4" text="상위아이템코드"/>
- <Cell col="5" text="아이템코드"/>
- <Cell col="6" text="중분류명"/>
- <Cell col="7" text="중분류명"/>
- </Band>
- <Band id="body">
- <Cell text="bind:lisflag"/>
- <Cell col="1" text="bind:reckind"/>
- <Cell col="2" text="bind:emrflag"/>
- <Cell col="3" text="bind:sortno"/>
- <Cell col="4" text="bind:supitemindxseq"/>
- <Cell col="5" text="bind:itemindxseq"/>
- <Cell col="6" style="align:left middle;padding:0 0 0 5;" text="bind:indxnm" autosizerow="limitmin"/>
- <Cell col="7" text="bind:cnt"/>
- </Band>
- </Format>
- </Formats>
- </Grid>
- <Button position="absolute 89 532 109 547" align="align:center middle;" id="button1" visible="false" text="<<" anchor="default" onclick="grup_left_switch1_grd_button1_onclick"/>
- <Button position="absolute 104 532 124 547" align="align:center middle;" id="button2" visible="false" text="<" anchor="default" onclick="grup_left_switch1_grd_button2_onclick"/>
- <Button position="absolute 119 532 139 547" align="align:center middle;" id="button4" visible="false" text=">" anchor="default" onclick="grup_left_switch1_grd_button4_onclick"/>
- <Static position="absolute 239 531 282 546" align="align:right middle;" id="lbl_totcnt" visible="false" anchor="default" style="background:#ffff99ff;"/>
- <Static position="absolute 289 531 332 546" align="align:right middle;" id="caption1" visible="false" anchor="default" style="background:#ccffffff;"/>
- <Button position="absolute 134 532 154 547" align="align:center middle;" id="button6" visible="false" text=">>" anchor="default" onclick="grup_left_switch1_grd_button6_onclick"/>
- <Button position="absolute 154 477 184 492" align="align:center middle;" id="button7" visible="false" text="all" anchor="default" onclick="grup_left_switch1_grd_button7_onclick"/>
- <Static position="absolute 164 531 224 546" align="align:right middle;" id="caption4" visible="false" anchor="default" style="background:#ccffccff;"/>
- <Grid position="absolute 0 581 285 736" id="datagrid1" visible="false" binddataset="ds_datagrid1" anchor="default">
- <Formats>
- <Format id="default">
- <Columns>
- <Column size="22"/>
- <Column size="30"/>
- <Column size="30"/>
- <Column size="30"/>
- <Column size="30"/>
- <Column size="30"/>
- <Column size="30"/>
- <Column size="30"/>
- <Column size="30"/>
- <Column size="30"/>
- <Column size="30"/>
- <Column size="30"/>
- <Column size="56"/>
- <Column size="63"/>
- <Column size="38"/>
- </Columns>
- <Rows>
- <Row size="24" band="head"/>
- <Row size="24"/>
- </Rows>
- <Band id="head">
- <Cell/>
- <Cell col="1" text="caption1"/>
- <Cell col="2" text="caption2"/>
- <Cell col="3" text="caption3"/>
- <Cell col="4" text="caption4"/>
- <Cell col="5" text="caption5"/>
- <Cell col="6" text="caption6"/>
- <Cell col="7" text="caption7"/>
- <Cell col="8" text="caption8"/>
- <Cell col="9" text="caption9"/>
- <Cell col="10" text="caption10"/>
- <Cell col="11" text="caption11"/>
- <Cell col="12" text="caption12"/>
- <Cell col="13" text="caption13"/>
- <Cell col="14" text="caption14"/>
- </Band>
- <Band id="body">
- <Cell displaytype="normal"/>
- <Cell col="1" text="bind:pid"/>
- <Cell col="2" text="bind:orddd"/>
- <Cell col="3" text="bind:cretno"/>
- <Cell col="4" text="bind:chosflag"/>
- <Cell col="5" text="bind:signno"/>
- <Cell col="6" text="bind:formcd"/>
- <Cell col="7" text="bind:reckind"/>
- <Cell col="8" text="bind:userdeptcd"/>
- <Cell col="9" text="bind:readprtflag"/>
- <Cell col="10" text="bind:refusge"/>
- <Cell col="11" text="bind:refremark"/>
- <Cell col="12" text="bind:appno"/>
- <Cell col="13" text="bind:histno"/>
- <Cell col="14"/>
- </Band>
- </Format>
- </Formats>
- </Grid>
- <!--<Tab position="absolute 0 0 338 320" id="switch2">
- <Tabpages>
- <Tabpage text="" id="case_dept">
- <Layouts>
- <Layout>-->
- <Grid position="absolute 0 0 338 318" id="grd_pathist" binddataset="ds_grd_pathist" anchor="default" oncelldblclick="grup_left_switch1_grd_grd_pathist_oncelldblclick" onkeydown="grup_left_switch1_grd_grd_pathist_onkeydown" tooltiptype="default">
- <Formats>
- <Format id="default">
- <Columns>
- <Column size="32"/>
- <Column size="70"/>
- <Column size="70"/>
- <Column size="40"/>
- <Column size="55"/>
- <Column size="60"/>
- <Column size="45"/>
- <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"/>
- </Rows>
- <Band id="head">
- <Cell text="구분"/>
- <Cell col="1" text="퇴(내)원일"/>
- <Cell col="2" text="입원일"/>
- <Cell col="3" text="과"/>
- <Cell col="4" text="가"/>
- <Cell col="5" text="진료의"/>
- <Cell col="6" text="센터"/>
- <Cell col="7" text="orddd"/>
- <Cell col="8" text="cretno"/>
- <Cell col="9" text="orddeptcd"/>
- <Cell col="10" text="ordtype"/>
- <Cell col="11" text="emrflag"/>
- <Cell col="12" text="bfopentest"/>
- <Cell col="13" text="wardcd"/>
- </Band>
- <Band id="body">
- <Cell displaytype="normal" edittype="none" text="bind:ioflag" expandshow="hide"/>
- <Cell col="1" text="bind:dschdd" mask="####-##-##"/>
- <Cell col="2" text="bind:indd" mask="expr:utlf_isNull(indd)?"":"####-##-##""/>
- <Cell col="3" text="bind:orddeptnm"/>
- <Cell col="4" style="align: ;" text="bind:medamtfreeresn" wordwrap="char" tooltiptype="bottom"/>
- <Cell col="5" text="bind:orddrnm"/>
- <Cell col="6" text="bind:centcd"/>
- <Cell col="7" text="bind:orddd"/>
- <Cell col="8" text="bind:cretno"/>
- <Cell col="9" text="bind:orddeptcd"/>
- <Cell col="10" text="bind:ordtype"/>
- <Cell col="11" text="bind:emrflag"/>
- <Cell col="12" text="bind:bfopentest"/>
- <Cell col="13" text="bind:wardcd"/>
- </Band>
- </Format>
- </Formats>
- </Grid>
- <Grid position="absolute 0 0 0 318" align="align:center middle;" id="datagrid3" binddataset="ds_init_cmb_dept" anchor="default" oncelldblclick="grup_left_switch1_grd_datagrid3_oncelldblclick">
- <Formats>
- <Format id="default">
- <Columns>
- <Column size="90"/>
- <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="bgchk"/>
- </Band>
- <Band id="body">
- <Cell style="background:EXPR(bgchk=="true"?"#ffcc99":"default");background2:EXPR(bgchk=="true"?"#ffcc99":"default");" text="bind:deptengabbr"/>
- <Cell col="1" text="bind:deptcd"/>
- <Cell col="2" text="bind:bgchk"/>
- </Band>
- </Format>
- </Formats>
- </Grid>
- <!--
-
- </Layout>
- </Layouts>
- </Tabpage>
- </Tabpages>
- </Tab>
- -->
- <CheckBox position="absolute 81 323 126 343" id="cbx_paging" anchor="default" text="기간" truevalue="Y" falsevalue="N" onchanged="grup_left_switch1_grd_cbx_paging_onchanged"/>
- <Static text="정렬" position="absolute 5 323 40 343" id="caption8" anchor="default"/>
- <Combo position="absolute 35 323 80 342" align="align:center middle;" id="cmb_sort" codecolumn="codecolumn" datacolumn="datacolumn" anchor="default">
- <Dataset id="innerdataset">
- <ColumnInfo>
- <Column id="codecolumn"/>
- <Column id="datacolumn"/>
- </ColumnInfo>
- <Rows>
- <Row>
- <Col id="codecolumn">A</Col>
- <Col id="datacolumn">↑</Col>
- </Row>
- <Row>
- <Col id="codecolumn">D</Col>
- <Col id="datacolumn">↓</Col>
- </Row>
- </Rows>
- </Dataset>
- </Combo>
- <Calendar position="absolute 219 323 311 342" id="input4" class="input_essential" enable="false" anchor="default"/>
- <Calendar position="absolute 127 323 219 342" id="input5" class="input_essential" enable="false" anchor="default"/>
- </Layout>
- </Layouts>
- </Tabpage>
- <Tabpage text="" id="trv">
- <Layouts>
- <Layout width="338" height="760">
- <Grid position="absolute 0 0 338 752" treeusecheckbox="false" autofit="col" id="trv_bookmark" anchor="default" oncelldblclick="grup_left_switch1_trv_trv_bookmark_oncelldblclick" onrbuttondown="grup_left_switch1_trv_trv_bookmark_onrbuttondown" binddataset="ds_treeview">
- <Formats>
- <Format id="default">
- <Columns>
- <Column size="335"/>
- </Columns>
- <Rows>
- <Row size="0" band="head"/>
- <Row size="24"/>
- </Rows>
- <Band id="head">
- <Cell/>
- </Band>
- <Band id="body">
- <Cell displaytype="tree" text="bind:itemnm" treelevel="bind:level" treestate="bind:itemno" treeitemimage="bind:image"/>
- </Band>
- </Format>
- </Formats>
- </Grid>
- <CheckBox position="absolute 230 765 330 785" id="chk_allbmk" visible="false" anchor="default" onchanged="grup_left_switch1_trv_chk_allbmk_onchanged"/>
- </Layout>
- </Layouts>
- </Tabpage>
- <Tabpage text="" id="rec">
- <Layouts>
- <Layout>
- <Div position="absolute 0 0 336 88" id="roundrect1" anchor="default" class="div_SA">
- <Layouts>
- <Layout>
- <Static id="caption6" text="조회기간 :" class="search_name" position="absolute 5 8 110 25" anchor="default"/>
- <Static id="caption3" text="서식기록 :" class="search_name" position="absolute 5 34 110 51" anchor="default"/>
- <Calendar id="input3" taborder="1" class="input_essential" position="absolute 94 7 199 26" anchor="default"/>
- <Static id="caption7" text="~" position="absolute 202 8 217 25" anchor="default"/>
- <Calendar id="input2" taborder="2" class="input_essential" position="absolute 217 7 322 26" anchor="default"/>
- <Button id="btn_recsearch" taborder="3" text="조회" onclick="grup_left_switch1_rec_btn_recsearch_onclick" class="btn1" position="absolute 266 31 322 53" anchor="default"/>
- <Combo id="cmb_recformcd" taborder="4" innerdataset="ds_init_cmb_recformcd" codecolumn="trgtcd" datacolumn="trgtcdnm" class="combo_default" position="absolute 94 32 262 51" anchor="default"/>
- <Button id="button9" taborder="5" text="전체선택" onclick="grup_left_switch1_rec_button9_onclick" class="btn2" visible="false" position="absolute 12 62 76 81" anchor="default"/>
- <Button id="button11" taborder="6" text="선택항목조회" onclick="grup_left_switch1_rec_button11_onclick" class="btn5" position="absolute 236 58 322 77" anchor="default"/>
- </Layout>
- </Layouts>
- </Div>
- <Grid position="absolute 0 91 336 752" id="grd_reclist" binddataset="ds_grd_reclist" anchor="default" oncelldblclick="grup_left_switch1_rec_grd_reclist_oncelldblclick" onkeydown="grup_left_switch1_rec_grd_reclist_onkeydown" onheadclick="grup_left_switch1_rec_grd_reclist_onheadclick">
- <Formats>
- <Format id="default">
- <Columns>
- <Column size="33"/>
- <Column size="0"/>
- <Column size="0"/>
- <Column size="58"/>
- <Column size="72"/>
- <Column size="72"/>
- <Column size="63"/>
- <Column size="0"/>
- <Column size="0"/>
- <Column size="0"/>
- <Column size="0"/>
- <Column size="0"/>
- <Column size="0"/>
- <Column size="0"/>
- <Column size="0"/>
- <Column size="0"/>
- <Column size="0"/>
- <Column size="0"/>
- <Column size="0"/>
- <Column size="0"/>
- <Column size="0"/>
- <Column size="0"/>
- <Column size="0"/>
- <Column size="0"/>
- <Column size="0"/>
- <Column size="0"/>
- <Column size="0"/>
- <Column size="0"/>
- <Column size="0"/>
- <Column size="0"/>
- <Column size="0"/>
- <Column size="0"/>
- <Column size="0"/>
- <Column size="0"/>
- <Column size="0"/>
- <Column size="0"/>
- <Column size="0"/>
- <Column size="0"/>
- <Column size="0"/>
- <Column size="0"/>
- <Column size="0"/>
- <Column size="0"/>
- <Column size="0"/>
- <Column size="0"/>
- <Column size="0"/>
- <Column size="0"/>
- <Column size="0"/>
- <Column size="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 displaytype="checkbox" edittype="checkbox"/>
- <Cell col="1" text="구분"/>
- <Cell col="2" text="기록명"/>
- <Cell col="3" text="과"/>
- <Cell col="4" text="작성일"/>
- <Cell col="5" text="입원일"/>
- <Cell col="6" text="진료의"/>
- <Cell col="7" text="센터"/>
- <Cell col="8" text="orddd"/>
- <Cell col="9" text="cretno"/>
- <Cell col="10" text="orddeptcd"/>
- <Cell col="11" text="ordtype"/>
- <Cell col="12" text="emrflag"/>
- <Cell col="13" text="bfopentest"/>
- <Cell col="14" text="wardcd"/>
- <Cell col="15"/>
- <Cell col="16"/>
- <Cell col="17"/>
- <Cell col="18"/>
- <Cell col="19"/>
- <Cell col="20"/>
- <Cell col="21"/>
- <Cell col="22"/>
- <Cell col="23"/>
- <Cell col="24"/>
- <Cell col="25"/>
- <Cell col="26"/>
- <Cell col="27"/>
- <Cell col="28"/>
- <Cell col="29"/>
- <Cell col="30"/>
- <Cell col="31"/>
- <Cell col="32"/>
- <Cell col="33"/>
- <Cell col="34"/>
- <Cell col="35"/>
- <Cell col="36"/>
- <Cell col="37"/>
- <Cell col="38"/>
- <Cell col="39"/>
- <Cell col="40"/>
- <Cell col="41"/>
- <Cell col="42"/>
- <Cell col="43"/>
- <Cell col="44"/>
- <Cell col="45"/>
- <Cell col="46"/>
- <Cell col="47"/>
- <Cell col="48"/>
- <Cell col="49"/>
- <Cell col="50"/>
- <Cell col="51"/>
- </Band>
- <Band id="body">
- <Cell displaytype="checkbox" edittype="checkbox" text="bind:recchk"/>
- <Cell col="1" text="bind:ordtype"/>
- <Cell col="2" text="bind:formnm"/>
- <Cell col="3" text="bind:deptengabbr"/>
- <Cell col="4" text="bind:recdd" mask="yyyy-mm-dd"/>
- <Cell col="5" text="bind:indd" mask="yyyy-mm-dd"/>
- <Cell col="6" text="bind:drid"/>
- <Cell col="7" text="bind:orddd"/>
- <Cell col="8" text="bind:cretno"/>
- <Cell col="9" text="bind:orddeptcd"/>
- <Cell col="10" text="bind:emrflag"/>
- <Cell col="11" text="bind:bfopentest"/>
- <Cell col="12" text="bind:wardcd"/>
- <Cell col="13" text="bind:signno"/>
- <Cell col="14" text="bind:formcd"/>
- <Cell col="15" text="bind:trans"/>
- <Cell col="16" text="bind:pid"/>
- <Cell col="17" text="bind:ptnm"/>
- <Cell col="18" text="bind:depthngnm"/>
- <Cell col="19" text="bind:rgstno"/>
- <Cell col="20" text="bind:sa/"/>
- <Cell col="21" text="bind:disporddd"/>
- <Cell col="22" text="bind:roomcd"/>
- <Cell col="23" text="bind:chosflag"/>
- <Cell col="24" text="bind:signdeptcd"/>
- <Cell col="25" text="bind:signdeptengabbr"/>
- <Cell col="26" text="bind:srcformcd"/>
- <Cell col="27" text="bind:formprogflag"/>
- <Cell col="28" text="bind:recdt"/>
- <Cell col="29" text="bind:signflag"/>
- <Cell col="30" text="bind:imgflag"/>
- <Cell col="31" text="bind:langflag"/>
- <Cell col="32" text="bind:formrecdt"/>
- <Cell col="33" text="bind:fstrgstdt"/>
- <Cell col="34" text="bind:lastupdtdt"/>
- <Cell col="35" text="bind:staffconfirmdt"/>
- <Cell col="36" text="bind:fstrgstrusrnm"/>
- <Cell col="37" text="bind:lastupdtrusrnm"/>
- <Cell col="38" text="bind:staffnm"/>
- <Cell col="39" text="bind:emrrecusrnm"/>
- <Cell col="40" text="bind:erdt"/>
- <Cell col="41" text="bind:ervisittm"/>
- <Cell col="42" text="bind:dschdd"/>
- <Cell col="43" text="bind:inorddepthngnm"/>
- <Cell col="44" text="bind:dschorddepthngnm"/>
- <Cell col="45" text="bind:incnt"/>
- <Cell col="46" text="bind:sortno"/>
- <Cell col="47" text="bind:mainyn"/>
- <Cell col="48" text="bind:rowno"/>
- <Cell col="49" text="bind:signgenrflag"/>
- <Cell col="50" text="bind:careinrmdt"/>
- <Cell col="51" text="bind:cmc_orderseqno"/>
- </Band>
- </Format>
- </Formats>
- </Grid>
- </Layout>
- </Layouts>
- </Tabpage>
- </Tabpages>
- </Tab>
- <Radio position="absolute 5 85 175 105" align="align:center middle;" id="rdo_option" columncount="4" codecolumn="codecolumn" datacolumn="datacolumn" anchor="default" onitemchanged="grup_left_rdo_option_onitemchanged">
- <Dataset id="innerdataset">
- <ColumnInfo>
- <Column id="codecolumn"/>
- <Column id="datacolumn"/>
- </ColumnInfo>
- <Rows>
- <Row>
- <Col id="codecolumn">H</Col>
- <Col id="datacolumn">수진이력별</Col>
- </Row>
- <Row>
- <Col id="codecolumn">D</Col>
- <Col id="datacolumn">진료과별</Col>
- </Row>
- </Rows>
- </Dataset>
- </Radio>
- <Radio position="absolute 5 85 260 105" align="align:center middle;" id="rdo_option1" visible="false" columncount="4" codecolumn="codecolumn" datacolumn="datacolumn" anchor="default" onitemchanged="grup_left_rdo_option1_onitemchanged">
- <Dataset id="innerdataset">
- <ColumnInfo>
- <Column id="codecolumn"/>
- <Column id="datacolumn"/>
- </ColumnInfo>
- <Rows>
- <Row>
- <Col id="codecolumn">H</Col>
- <Col id="datacolumn">수진이력별</Col>
- </Row>
- <Row>
- <Col id="codecolumn">D</Col>
- <Col id="datacolumn">진료과별</Col>
- </Row>
- <Row>
- <Col id="codecolumn">F</Col>
- <Col id="datacolumn">기록지별</Col>
- </Row>
- </Rows>
- </Dataset>
- </Radio>
- <Button position="absolute 266 85 330 104" id="btn_careplan" class="btn2" visible="false" text="careplan" anchor="default"/>
- <Button position="absolute 266 85 330 104" id="btn_patedu" class="btn2" visible="false" text="환자교육" anchor="default" onclick="grup_left_btn_patedu_onclick" tooltiptext="환자교육 통합기록 조회"/>
- <Button id="btn_all" taborder="12" text="전체" class="btn_sw" anchor="default" position="absolute 154 110 201 132" style="align:center middle;" onclick="grup_left_btn_all_onclick" positiontype="position"/>
- <Button id="btn_out" taborder="13" text="외래" class="btn_sw" anchor="default" position="absolute 200 110 247 132" style="align:center middle;" onclick="grup_left_btn_out_onclick" positiontype="position"/>
- <Button id="btn_in" taborder="14" text="입원" class="btn_sw" anchor="default" position="absolute 246 110 293 132" style="align:center middle;" onclick="grup_left_btn_in_onclick" positiontype="position"/>
- <Button id="btn_er" taborder="15" text="응급" class="btn_sw" anchor="default" position="absolute 292 110 339 132" style="align:center middle;" onclick="grup_left_btn_er_onclick" positiontype="position"/>
- <Button id="btn_mark" taborder="16" text="북마크" onclick="grup_left_btn_mark_onclick" class="btn_sw" visible="false" position="absolute 95 110 156 132" style="align:center middle;" anchor="default"/>
- </Layout>
- </Layouts>
- </Div>
- <Div position="absolute 345 24 1251 936" id="grup_right">
- <Layouts>
- <Layout>
- <Div position="absolute 2 2 904 890" id="iviewerIemr" visible="true" url="emr_imgemrxp::SSMRC03130.xfdl">
- <Layouts>
- <Layout width="902" height="888"/>
- <Layout/>
- <Layout/>
- </Layouts>
- </Div>
- <Static position="absolute 480 890 900 910" id="cap_msg" style="color:#ff0000ff;"/>
- </Layout>
- </Layouts>
- </Div>
- <Button position="absolute 1053 0 1117 19" id="btn_copyprt" class="btn2" visible="false" text="사본신청" onclick="btn_copyprt_onclick"/>
- <Button position="absolute 1119 0 1183 19" id="button14" class="btn2" visible="true" text="조회이력" onclick="button14_onclick"/>
- <Button position="absolute 1185 0 1249 19" id="btn_unprep" class="btn2" enable="false" visible="true" text="미비확인" onclick="btn_unprep_onclick"/>
- <Button position="absolute 115 0 141 19" id="btn_minmax" class="icon_left" text="" onclick="btn_minmax_onclick" tooltiptext="최대화"/>
- <Div position="absolute 357 22 1147 872" id="iviewerIemrprt" visible="false" url="emr_imgemrxp::SSMRC03130.xfdl"/>
- <Button position="absolute 220 25 246 44" id="button8" class="icon_left" visible="false" text="" tooltiptext="최대화" onclick="button8_onclick"/>
- <Button position="absolute 1160 70 1235 89" id="btn_setbmk" class="btn2" visible="false" text="북마크등록" onclick="btn_setbmk_onclick"/>
- <Button position="absolute 1009 0 1051 19" id="btn_prnt" class="btn2_letter2" visible="false" text="출력" onclick="btn_prnt_onclick"/>
- <Button position="absolute 100 30 208 49" id="btn_newverform" class="btn2" visible="false" text="통합기록조회NEW" onclick="btn_newverform_onclick"/>
- <Button position="absolute 1155 100 1230 119" id="button10" class="btn2" visible="false" text="열람신청" onclick="button10_onclick"/>
- <Radio position="absolute 6 2 106 18" id="rdo_instcd" visible="false" columncount="2" codecolumn="codecolumn" datacolumn="datacolumn" onitemchanged="rdo_instcd_onitemchanged" onitemclick="rdo_instcd_onitemclick">
- <Dataset id="innerdataset">
- <ColumnInfo>
- <Column id="codecolumn"/>
- <Column id="datacolumn"/>
- </ColumnInfo>
- <Rows>
- <Row>
- <Col id="codecolumn">031</Col>
- <Col id="datacolumn">삼덕</Col>
- </Row>
- <Row>
- <Col id="codecolumn">032</Col>
- <Col id="datacolumn">칠곡</Col>
- </Row>
- </Rows>
- </Dataset>
- </Radio>
- <Static text="caption3" position="absolute 765 0 950 20" align="align:right middle;" id="txt_private" style="color:#ff0000ff;align:right middle;font:Dotum,9,bold;"/>
- <Radio position="absolute 765 0 865 20" id="cbx_private" visible="false" codecolumn="codecolumn" datacolumn="datacolumn">
- <Dataset id="innerdataset">
- <ColumnInfo>
- <Column id="codecolumn"/>
- <Column id="datacolumn"/>
- </ColumnInfo>
- <Rows>
- <Row>
- <Col id="codecolumn">radio1</Col>
- <Col id="datacolumn">radio1</Col>
- </Row>
- </Rows>
- </Dataset>
- </Radio>
- <Button position="absolute 955 0 1008 19" id="btn_txtcopy" class="btn5" visible="false" text="COPY" onclick="btn_txtcopy_onclick"/>
- <Button position="absolute 769 915 822 934" id="btn_paging" class="btn2" enable="false" text="더보기" onclick="btn_paging_onclick"/>
- <CheckBox id="bool_viewflag" taborder="1" visible="false" position="absolute 313 478 338 501" style="background:#ccffccff;align:center middle;"/>
- <PopupMenu id="midmsrght" innerdataset="@ds_midmsrght" idcolumn="hardcd" captioncolumn="hardcdnm" levelcolumn="level" position="absolute 1280 0 1381 22" onmenuclick="midmsrght_onmenuclick"/>
- </Layout>
- </Layouts>
- <Objects>
- <Dataset id="ds_init_rdo_lindx" firefirstcount="0" firenextcount="0" useclientlayout="true" updatecontrol="true" enableevent="true" loadkeymode="keep" reversesubsum="false">
- <ColumnInfo>
- <Column id="indxnm" type="STRING" size="255"/>
- <Column id="itemindxseq" type="STRING" size="255"/>
- </ColumnInfo>
- </Dataset>
- <Dataset id="ds_init_cmb_dept" firefirstcount="0" firenextcount="0" useclientlayout="false" updatecontrol="true" enableevent="true" loadkeymode="keep" reversesubsum="false">
- <ColumnInfo>
- <Column id="deptnm" type="STRING" size="255"/>
- <Column id="deptcd" type="STRING" size="255"/>
- <Column id="deptengabbr" type="STRING" size="256"/>
- <Column id="bgchk" type="STRING" size="256"/>
- </ColumnInfo>
- </Dataset>
- <Dataset id="ds_grd_midindx" firefirstcount="0" firenextcount="0" useclientlayout="false" updatecontrol="true" enableevent="true" loadkeymode="keep" reversesubsum="false">
- <ColumnInfo>
- <Column id="lisflag" type="STRING"/>
- <Column id="reckind" type="STRING"/>
- <Column id="emrflag" type="STRING"/>
- <Column id="sortno" type="STRING"/>
- <Column id="supitemindxseq" type="STRING"/>
- <Column id="itemindxseq" type="STRING"/>
- <Column id="indxnm" type="STRING"/>
- <Column id="cnt" type="STRING"/>
- </ColumnInfo>
- </Dataset>
- <Dataset id="ds_datagrid1" firefirstcount="0" firenextcount="0" useclientlayout="false" updatecontrol="true" enableevent="true" loadkeymode="keep" reversesubsum="false">
- <ColumnInfo>
- <Column id="pid" type="STRING" size="256"/>
- <Column id="orddd" type="STRING" size="256"/>
- <Column id="cretno" type="STRING" size="256"/>
- <Column id="chosflag" type="STRING" size="256"/>
- <Column id="signno" type="STRING" size="256"/>
- <Column id="formcd" type="STRING" size="256"/>
- <Column id="reckind" type="STRING" size="256"/>
- <Column id="userdeptcd" type="STRING" size="256"/>
- <Column id="readprtflag" type="STRING" size="256"/>
- <Column id="refusge" type="STRING" size="256"/>
- <Column id="refremark" type="STRING" size="256"/>
- <Column id="appno" type="STRING" size="256"/>
- <Column id="histno" type="STRING" size="256"/>
- </ColumnInfo>
- </Dataset>
- <Dataset id="ds_grd_pathist" firefirstcount="0" firenextcount="0" useclientlayout="false" updatecontrol="true" enableevent="true" loadkeymode="keep" reversesubsum="false">
- <ColumnInfo>
- <Column id="ioflag" type="STRING"/>
- <Column id="dschdd" type="STRING"/>
- <Column id="indd" type="STRING"/>
- <Column id="orddeptnm" type="STRING"/>
- <Column id="medamtfreeresn" type="STRING"/>
- <Column id="orddrnm" type="STRING"/>
- <Column id="centcd" type="STRING"/>
- <Column id="orddd" type="STRING"/>
- <Column id="cretno" type="STRING"/>
- <Column id="orddeptcd" type="STRING"/>
- <Column id="ordtype" type="STRING"/>
- <Column id="emrflag" type="STRING"/>
- <Column id="bfopentest" type="STRING"/>
- <Column id="wardcd" type="STRING"/>
- </ColumnInfo>
- </Dataset>
- <Dataset id="ds_datagrid3" firefirstcount="0" firenextcount="0" useclientlayout="false" updatecontrol="true" enableevent="true" loadkeymode="keep" reversesubsum="false">
- <ColumnInfo>
- <Column id="deptengabbr" type="STRING"/>
- <Column id="deptcd" type="STRING"/>
- <Column id="bgchk" type="STRING" size="256"/>
- </ColumnInfo>
- </Dataset>
- <Dataset id="ds_init_cmb_recformcd" firefirstcount="0" firenextcount="0" useclientlayout="false" updatecontrol="true" enableevent="true" loadkeymode="keep" reversesubsum="false">
- <ColumnInfo>
- <Column id="trgtcdnm" type="STRING"/>
- <Column id="trgtcd" type="STRING"/>
- </ColumnInfo>
- </Dataset>
- <Dataset id="ds_grd_reclist" firefirstcount="0" firenextcount="0" useclientlayout="false" updatecontrol="true" enableevent="true" loadkeymode="keep" reversesubsum="false">
- <ColumnInfo>
- <Column id="recchk" type="STRING"/>
- <Column id="ordtype" type="STRING"/>
- <Column id="formnm" type="STRING"/>
- <Column id="deptengabbr" type="STRING"/>
- <Column id="recdd" type="STRING"/>
- <Column id="indd" type="STRING"/>
- <Column id="drid" type="STRING"/>
- <Column id="orddd" type="STRING"/>
- <Column id="cretno" type="STRING"/>
- <Column id="orddeptcd" type="STRING"/>
- <Column id="emrflag" type="STRING"/>
- <Column id="bfopentest" type="STRING"/>
- <Column id="wardcd" type="STRING"/>
- <Column id="signno" type="STRING"/>
- <Column id="formcd" type="STRING"/>
- <Column id="trans" type="STRING"/>
- <Column id="pid" type="STRING"/>
- <Column id="ptnm" type="STRING"/>
- <Column id="depthngnm" type="STRING"/>
- <Column id="rgstno" type="STRING"/>
- <Column id="sa/" type="STRING"/>
- <Column id="disporddd" type="STRING"/>
- <Column id="roomcd" type="STRING"/>
- <Column id="chosflag" type="STRING"/>
- <Column id="signdeptcd" type="STRING"/>
- <Column id="signdeptengabbr" type="STRING"/>
- <Column id="srcformcd" type="STRING"/>
- <Column id="formprogflag" type="STRING"/>
- <Column id="recdt" type="STRING"/>
- <Column id="signflag" type="STRING"/>
- <Column id="imgflag" type="STRING"/>
- <Column id="langflag" type="STRING"/>
- <Column id="formrecdt" type="STRING"/>
- <Column id="fstrgstdt" type="STRING"/>
- <Column id="lastupdtdt" type="STRING"/>
- <Column id="staffconfirmdt" type="STRING"/>
- <Column id="fstrgstrusrnm" type="STRING"/>
- <Column id="lastupdtrusrnm" type="STRING"/>
- <Column id="staffnm" type="STRING"/>
- <Column id="emrrecusrnm" type="STRING"/>
- <Column id="erdt" type="STRING"/>
- <Column id="ervisittm" type="STRING"/>
- <Column id="dschdd" type="STRING"/>
- <Column id="inorddepthngnm" type="STRING"/>
- <Column id="dschorddepthngnm" type="STRING"/>
- <Column id="incnt" type="STRING"/>
- <Column id="sortno" type="STRING"/>
- <Column id="mainyn" type="STRING"/>
- <Column id="rowno" type="STRING"/>
- <Column id="signgenrflag" type="STRING"/>
- <Column id="careinrmdt" type="STRING"/>
- <Column id="cmc_orderseqno" type="STRING"/>
- </ColumnInfo>
- </Dataset>
- <Dataset id="ds_resnchk" firefirstcount="0" firenextcount="0" useclientlayout="false" updatecontrol="true" enableevent="true" loadkeymode="keep" loadfiltermode="keep" reversesubsum="false"/>
- <Dataset id="ds_recformuseyn" firefirstcount="0" firenextcount="0" useclientlayout="false" updatecontrol="true" enableevent="true" loadkeymode="keep" loadfiltermode="keep" reversesubsum="false"/>
- <Dataset id="ds_copybtnchk" firefirstcount="0" firenextcount="0" useclientlayout="false" updatecontrol="true" enableevent="true" loadkeymode="keep" loadfiltermode="keep" reversesubsum="false"/>
- <Dataset id="ds_fstsrcformcd" firefirstcount="0" firenextcount="0" useclientlayout="false" updatecontrol="true" enableevent="true" loadkeymode="keep" loadfiltermode="keep" reversesubsum="false"/>
- <Dataset id="ds_icdrsrcformcd" firefirstcount="0" firenextcount="0" useclientlayout="false" updatecontrol="true" enableevent="true" loadkeymode="keep" loadfiltermode="keep" reversesubsum="false"/>
- <Dataset id="ds_bmkuseyn" firefirstcount="0" firenextcount="0" useclientlayout="false" updatecontrol="true" enableevent="true" loadkeymode="keep" loadfiltermode="keep" reversesubsum="false"/>
- <Dataset id="ds_prntuseyn" firefirstcount="0" firenextcount="0" useclientlayout="false" updatecontrol="true" enableevent="true" loadkeymode="keep" loadfiltermode="keep" reversesubsum="false"/>
- <Dataset id="ds_prntdept" firefirstcount="0" firenextcount="0" useclientlayout="false" updatecontrol="true" enableevent="true" loadkeymode="keep" loadfiltermode="keep" reversesubsum="false"/>
- <Dataset id="ds_prntuserid" firefirstcount="0" firenextcount="0" useclientlayout="false" updatecontrol="true" enableevent="true" loadkeymode="keep" loadfiltermode="keep" reversesubsum="false"/>
- <Dataset id="ds_dutplcecd" firefirstcount="0" firenextcount="0" useclientlayout="false" updatecontrol="true" enableevent="true" loadkeymode="keep" loadfiltermode="keep" reversesubsum="false"/>
- <Dataset id="ds_crossusr" firefirstcount="0" firenextcount="0" useclientlayout="false" updatecontrol="true" enableevent="true" loadkeymode="keep" loadfiltermode="keep" reversesubsum="false"/>
- <Dataset id="ds_prntuser" firefirstcount="0" firenextcount="0" useclientlayout="false" updatecontrol="true" enableevent="true" loadkeymode="keep" loadfiltermode="keep" reversesubsum="false"/>
- <Dataset id="ds_indx" firefirstcount="0" firenextcount="0" useclientlayout="false" updatecontrol="true" enableevent="true" loadkeymode="keep" loadfiltermode="keep" reversesubsum="false"/>
- <Dataset id="ds_keyuseyn" firefirstcount="0" firenextcount="0" useclientlayout="false" updatecontrol="true" enableevent="true" loadkeymode="keep" loadfiltermode="keep" reversesubsum="false"/>
- <Dataset id="ds_keydept" firefirstcount="0" firenextcount="0" useclientlayout="false" updatecontrol="true" enableevent="true" loadkeymode="keep" loadfiltermode="keep" reversesubsum="false"/>
- <Dataset id="ds_keyjob" firefirstcount="0" firenextcount="0" useclientlayout="false" updatecontrol="true" enableevent="true" loadkeymode="keep" loadfiltermode="keep" reversesubsum="false"/>
- <Dataset id="ds_keypos" firefirstcount="0" firenextcount="0" useclientlayout="false" updatecontrol="true" enableevent="true" loadkeymode="keep" loadfiltermode="keep" reversesubsum="false"/>
- <Dataset id="ds_init_recformdata" firefirstcount="0" firenextcount="0" useclientlayout="false" updatecontrol="true" enableevent="true" loadkeymode="keep" loadfiltermode="keep" reversesubsum="false">
- <ColumnInfo>
- <Column id="formcd" type="STRING" size="256"/>
- <Column id="fromdd" type="STRING" size="256"/>
- <Column id="todd" type="STRING" size="256"/>
- </ColumnInfo>
- <Rows>
- <Row/>
- </Rows>
- </Dataset>
- <Dataset id="ds_init_env" firefirstcount="0" firenextcount="0" useclientlayout="false" updatecontrol="true" enableevent="true" loadkeymode="keep" loadfiltermode="keep" reversesubsum="false">
- <ColumnInfo>
- <Column id="option" type="STRING" size="256"/>
- <Column id="instcd" type="STRING" size="256"/>
- </ColumnInfo>
- <Rows>
- <Row/>
- </Rows>
- </Dataset>
- <Dataset id="ds_init_privatetxt" firefirstcount="0" firenextcount="0" useclientlayout="false" updatecontrol="true" enableevent="true" loadkeymode="keep" loadfiltermode="keep" reversesubsum="false">
- <ColumnInfo>
- <Column id="privatetxt" type="STRING" size="256"/>
- </ColumnInfo>
- <Rows>
- <Row/>
- </Rows>
- </Dataset>
- <Dataset id="ds_init_etc" firefirstcount="0" firenextcount="0" useclientlayout="false" updatecontrol="true" enableevent="true" loadkeymode="keep" loadfiltermode="keep" reversesubsum="false">
- <ColumnInfo>
- <Column id="ioflag" type="STRING" size="256"/>
- <Column id="pagingyn" type="STRING" size="256"/>
- <Column id="sortkind" type="STRING" size="256"/>
- <Column id="totcnt" type="STRING" size="256"/>
- <Column id="itemindxseq" type="STRING" size="256"/>
- <Column id="midreccnt" type="STRING" size="256"/>
- <Column id="reccurpos" type="STRING" size="256"/>
- <Column id="orddept" type="STRING" size="256"/>
- <Column id="tabflag" type="STRING" size="256"/>
- <Column id="emrflag" type="STRING" size="256"/>
- <Column id="bfopentest" type="STRING" size="256"/>
- <Column id="recall" type="STRING" size="256"/>
- <Column id="privateyn" type="STRING" size="256"/>
- </ColumnInfo>
- <Rows>
- <Row>
- <Col id="recall">N</Col>
- </Row>
- </Rows>
- </Dataset>
- <Dataset id="ds_patinfo" firefirstcount="0" firenextcount="0" useclientlayout="false" updatecontrol="true" enableevent="true" loadkeymode="keep" loadfiltermode="keep" reversesubsum="false" onvaluechanged="ds_patinfo_onvaluechanged">
- <ColumnInfo>
- <Column id="pid" type="STRING" size="256"/>
- <Column id="hngnm" type="STRING" size="256"/>
- <Column id="engnm" type="STRING" size="256"/>
- <Column id="chinm" type="STRING" size="256"/>
- <Column id="rrgstno1" type="STRING" size="256"/>
- <Column id="rrgstno2" type="STRING" size="256"/>
- <Column id="brthdd" type="STRING" size="256"/>
- <Column id="sex" type="STRING" size="256"/>
- <Column id="age" type="STRING" size="256"/>
- <Column id="bindpid" type="STRING" size="256"/>
- <Column id="hometel" type="STRING" size="256"/>
- <Column id="mpphontel" type="STRING" size="256"/>
- <Column id="etctel1" type="STRING" size="256"/>
- <Column id="etctel2" type="STRING" size="256"/>
- <Column id="smsaprvyn" type="STRING" size="256"/>
- <Column id="email" type="STRING" size="256"/>
- <Column id="zipcd1" type="STRING" size="256"/>
- <Column id="zipcd2" type="STRING" size="256"/>
- <Column id="zipcdseq" type="STRING" size="256"/>
- <Column id="addr" type="STRING" size="256"/>
- <Column id="detladdr" type="STRING" size="256"/>
- <Column id="btype" type="STRING" size="256"/>
- <Column id="rh" type="STRING" size="256"/>
- <Column id="forgeryn" type="STRING" size="256"/>
- <Column id="nati" type="STRING" size="256"/>
- <Column id="psptno" type="STRING" size="256"/>
- <Column id="recmyn" type="STRING" size="256"/>
- <Column id="recmerid" type="STRING" size="256"/>
- <Column id="recmerrela" type="STRING" size="256"/>
- <Column id="vipyn" type="STRING" size="256"/>
- <Column id="viprem" type="STRING" size="256"/>
- <Column id="religncd" type="STRING" size="256"/>
- <Column id="baptnm" type="STRING" size="256"/>
- <Column id="chchnm" type="STRING" size="256"/>
- <Column id="dethyn" type="STRING" size="256"/>
- <Column id="dethdt" type="STRING" size="256"/>
- <Column id="chosresn" type="STRING" size="256"/>
- <Column id="animyn" type="STRING" size="256"/>
- <Column id="exptresncd" type="STRING" size="256"/>
- <Column id="inhospyn" type="STRING" size="256"/>
- <Column id="remfact" type="STRING" size="256"/>
- <Column id="outuncoamt" type="STRING" size="256"/>
- <Column id="dschuncoamt" type="STRING" size="256"/>
- <Column id="fstrgstrid" type="STRING" size="256"/>
- <Column id="fstrgstdt" type="STRING" size="256"/>
- <Column id="lastupdtrid" type="STRING" size="256"/>
- <Column id="lastupdtdt" type="STRING" size="256"/>
- <Column id="agesex" type="STRING" size="256"/>
- </ColumnInfo>
- <Rows>
- <Row/>
- </Rows>
- </Dataset>
- <Dataset id="ds_treeview" firefirstcount="0" firenextcount="0" useclientlayout="false" updatecontrol="true" enableevent="true" loadkeymode="keep" loadfiltermode="keep" reversesubsum="false">
- <ColumnInfo>
- <Column id="itemnm" type="STRING" size="256"/>
- <Column id="itemno" type="STRING" size="256"/>
- <Column id="image" type="STRING" size="256"/>
- <Column id="level" type="STRING" size="256"/>
- </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="autoflag" type="STRING" size="256"/>
- </ColumnInfo>
- </Dataset>
- <Dataset id="ds_trgtdept" firefirstcount="0" firenextcount="0" useclientlayout="false" updatecontrol="true" enableevent="true" loadkeymode="keep" loadfiltermode="keep" reversesubsum="false">
- <ColumnInfo>
- <Column id="trgtcd" type="STRING" size="256" sumtext="부서코드"/>
- </ColumnInfo>
- </Dataset>
- <Dataset id="ds_exdept" firefirstcount="0" firenextcount="0" useclientlayout="false" updatecontrol="true" enableevent="true" loadkeymode="keep" loadfiltermode="keep" reversesubsum="false">
- <ColumnInfo>
- <Column id="trgtcd" type="STRING" size="256" sumtext="부서코드"/>
- </ColumnInfo>
- </Dataset>
- <Dataset id="ds_tmp" firefirstcount="0" firenextcount="0" useclientlayout="false" updatecontrol="true" enableevent="true" loadkeymode="keep" loadfiltermode="keep" reversesubsum="false">
- <ColumnInfo>
- <Column id="wheelmsg" type="STRING" size="256"/>
- <Column id="prcpfromdd" type="STRING" size="256"/>
- <Column id="prcptodd" type="STRING" size="256"/>
- <Column id="keys" type="STRING" size="256"/>
- </ColumnInfo>
- <Rows>
- <Row/>
- </Rows>
- </Dataset>
- <Dataset id="ds_envinit_wheel" firefirstcount="0" firenextcount="0" useclientlayout="false" updatecontrol="true" enableevent="true" loadkeymode="keep" loadfiltermode="keep" reversesubsum="false"/>
- <Dataset id="ds_envinit_option" firefirstcount="0" firenextcount="0" useclientlayout="false" updatecontrol="true" enableevent="true" loadkeymode="keep" loadfiltermode="keep" reversesubsum="false"/>
- <Dataset id="ds_envinit_defdept" firefirstcount="0" firenextcount="0" useclientlayout="false" updatecontrol="true" enableevent="true" loadkeymode="keep" loadfiltermode="keep" reversesubsum="false"/>
- <Dataset id="ds_envinit_tab" firefirstcount="0" firenextcount="0" useclientlayout="false" updatecontrol="true" enableevent="true" loadkeymode="keep" loadfiltermode="keep" reversesubsum="false"/>
- <Dataset id="ds_envinit_viewmode" firefirstcount="0" firenextcount="0" useclientlayout="false" updatecontrol="true" enableevent="true" loadkeymode="keep" loadfiltermode="keep" reversesubsum="false"/>
- <Dataset id="ds_envinit_paging" firefirstcount="0" firenextcount="0" useclientlayout="false" updatecontrol="true" enableevent="true" loadkeymode="keep" loadfiltermode="keep" reversesubsum="false"/>
- <Dataset id="ds_envinit_titledeluseyn" firefirstcount="0" firenextcount="0" useclientlayout="false" updatecontrol="true" enableevent="true" loadkeymode="keep" loadfiltermode="keep" reversesubsum="false"/>
- <Dataset id="ds_envinit_titledelyn" firefirstcount="0" firenextcount="0" useclientlayout="false" updatecontrol="true" enableevent="true" loadkeymode="keep" loadfiltermode="keep" reversesubsum="false"/>
- <Dataset id="ds_envinit" firefirstcount="0" firenextcount="0" useclientlayout="false" updatecontrol="true" enableevent="true" loadkeymode="keep" loadfiltermode="keep" reversesubsum="false">
- <ColumnInfo>
- <Column id="viewflag" type="STRING" size="256"/>
- </ColumnInfo>
- <Rows>
- <Row>
- <Col id="viewflag">false</Col>
- </Row>
- </Rows>
- </Dataset>
- <Dataset id="ds_init_accresn" firefirstcount="0" firenextcount="0" useclientlayout="false" updatecontrol="true" enableevent="true" loadkeymode="keep" loadfiltermode="keep" reversesubsum="false"/>
- <Dataset id="ds_init_prtresn" firefirstcount="0" firenextcount="0" useclientlayout="false" updatecontrol="true" enableevent="true" loadkeymode="keep" loadfiltermode="keep" reversesubsum="false"/>
- <Dataset id="ds_result_patinfo" 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="bindyn" type="STRING" size="256" sumtext="환자등록번호"/>
- <Column id="hngnm" type="STRING" size="256" sumtext="한글이름"/>
- <Column id="hngnm2" type="STRING" size="256" sumtext="표시이름"/>
- <Column id="engnm" type="STRING" size="256" sumtext="영문이름"/>
- <Column id="chinm" type="STRING" size="256" sumtext="영문이름"/>
- <Column id="rrgstno1" type="STRING" size="256" sumtext="주민번호앞6자리"/>
- <Column id="rrgstno2" type="STRING" size="256" sumtext="주민번호뒤7자리"/>
- <Column id="rrgstno3" type="STRING" size="256" sumtext="주민번호뒤4자리와별표3자리"/>
- <Column id="lastinsukind" type="STRING" size="256" sumtext="최근보험유형"/>
- <Column id="brthdd" type="STRING" size="256" sumtext="생년월일"/>
- <Column id="sex" type="STRING" size="256" sumtext="성별"/>
- <Column id="age" type="STRING" size="256" sumtext="나이"/>
- <Column id="bindpid" type="STRING" size="256" sumtext="합본등록번호"/>
- <Column id="hometel" type="STRING" size="256" sumtext="집전화번호"/>
- <Column id="mpphontel" type="STRING" size="256" sumtext="휴대전화번호"/>
- <Column id="etctel1" type="STRING" size="256" sumtext="기타전화번호1"/>
- <Column id="etctel2" type="STRING" size="256" sumtext="기타전화번호2"/>
- <Column id="smsaprvyn" type="STRING" size="256" sumtext="SMS전송승인여부"/>
- <Column id="email" type="STRING" size="256" sumtext="이메일게정"/>
- <Column id="zipcd1" type="STRING" size="256" sumtext="우편번호앞3자리"/>
- <Column id="zipcd2" type="STRING" size="256" sumtext="우편번호뒤3자리"/>
- <Column id="zipcdseq" type="STRING" size="256" sumtext="우편일련번호"/>
- <Column id="addr" type="STRING" size="256" sumtext="기본주소"/>
- <Column id="detladdr" type="STRING" size="256" sumtext="상세주소"/>
- <Column id="btype" type="STRING" size="256" sumtext="혈액형"/>
- <Column id="rh" type="STRING" size="256" sumtext="RH혈액형"/>
- <Column id="forgeryn" type="STRING" size="256" sumtext="외국인여부"/>
- <Column id="nati" type="STRING" size="256" sumtext="국적"/>
- <Column id="psptno" type="STRING" size="256" sumtext="여권번호"/>
- <Column id="recmyn" type="STRING" size="256" sumtext="추천여부"/>
- <Column id="recmerid" type="STRING" size="256" sumtext="추천인ID"/>
- <Column id="recmernm" type="STRING" size="256" sumtext="추천인명"/>
- <Column id="recmerrela" type="STRING" size="256" sumtext="추천인과의관계"/>
- <Column id="vipyn" type="STRING" size="256" sumtext="VIP여부"/>
- <Column id="viprem" type="STRING" size="256" sumtext="VIP비고"/>
- <Column id="religncd" type="STRING" size="256" sumtext="종교코드"/>
- <Column id="baptnm" type="STRING" size="256" sumtext="세례명"/>
- <Column id="chchnm" type="STRING" size="256" sumtext="성당명"/>
- <Column id="dethyn" type="STRING" size="256" sumtext="사망여부"/>
- <Column id="dethdt" type="STRING" size="256" sumtext="사망일시"/>
- <Column id="dethdd" type="STRING" size="256" sumtext="사망일자"/>
- <Column id="dethtm" type="STRING" size="256" sumtext="사망시간"/>
- <Column id="chosresn" type="STRING" size="256" sumtext="내원사유"/>
- <Column id="animyn" type="STRING" size="256" sumtext="동물여부"/>
- <Column id="exptresncd" type="STRING" size="256" sumtext="원외예외사유코드"/>
- <Column id="inhospyn" type="STRING" size="256" sumtext="재원여부"/>
- <Column id="handicapryn" type="STRING" size="256" sumtext="장애인여부"/>
- <Column id="pidflag" type="STRING" size="256" sumtext="등록번호구분"/>
- <Column id="remfact" type="STRING" size="256" sumtext="참고사항"/>
- <Column id="ptunyn" type="STRING" size="256" sumtext="미수안내"/>
- <Column id="lastorddd" type="STRING" size="256" sumtext="최근내원일"/>
- <Column id="lastorddeptcd" type="STRING" size="256" sumtext="최근내원과"/>
- <Column id="outuncoamt" type="STRING" size="256" sumtext="외래미수금"/>
- <Column id="dschuncoamt" type="STRING" size="256" sumtext="입원미수금"/>
- <Column id="kioskrcptnoyn" type="STRING" size="256" sumtext="무인수납불가여부"/>
- <Column id="carnum" type="STRING" size="256" sumtext="차량번호"/>
- <Column id="acptdd" type="STRING" size="256" sumtext="가예약접수일자"/>
- <Column id="acptno" type="STRING" size="256" sumtext="가예약접수일련번호"/>
- <Column id="patspcfyn" type="STRING" size="256" sumtext="특이환자여부"/>
- <Column id="tdaydsch" type="STRING" size="256" sumtext="특이환자여부"/>
- <Column id="mig" type="STRING" size="256" sumtext="마이그레이션여부"/>
- <Column id="scanyn" type="STRING" size="256" sumtext="동의서출력여부"/>
- <Column id="spifscanyn" type="STRING" size="256" sumtext="선택진료신청서스캔여부"/>
- <Column id="isolinfo" type="STRING" size="256" sumtext="격리환자정보"/>
- <Column id="builno" type="STRING" size="256" sumtext="도로명주소코드"/>
- </ColumnInfo>
- </Dataset>
- <Dataset id="ds_init_paging" firefirstcount="0" firenextcount="0" useclientlayout="false" updatecontrol="true" enableevent="true" loadkeymode="keep" loadfiltermode="keep" reversesubsum="false">
- <ColumnInfo>
- <Column id="fromdd" type="STRING" size="256"/>
- <Column id="todd" type="STRING" size="256"/>
- </ColumnInfo>
- <Rows>
- <Row/>
- </Rows>
- </Dataset>
- <Dataset id="ds_tmp_keys" firefirstcount="0" firenextcount="0" useclientlayout="false" updatecontrol="true" enableevent="true" loadkeymode="keep" loadfiltermode="keep" reversesubsum="false">
- <ColumnInfo>
- <Column id="kind" type="STRING" size="256" sumtext="기록종류"/>
- <Column id="signno" type="STRING" size="256" sumtext="키"/>
- <Column id="sortno" type="STRING" size="256" sumtext="소팅번호"/>
- <Column id="formnm" type="STRING" size="256" sumtext="기록지명"/>
- <Column id="recdt" type="STRING" size="256" sumtext="기록일자"/>
- </ColumnInfo>
- </Dataset>
- <Dataset id="ds_imgrec_iemr" firefirstcount="0" firenextcount="0" useclientlayout="false" updatecontrol="true" enableevent="true" loadkeymode="keep" loadfiltermode="keep" reversesubsum="false">
- <ColumnInfo>
- <Column id="treatno" type="STRING" size="256"/>
- <Column id="pid" type="STRING" size="256"/>
- <Column id="orddeptcd" type="STRING" size="256"/>
- <Column id="indd" type="STRING" size="256"/>
- <Column id="docucd" type="STRING" size="256"/>
- <Column id="ioflag" type="STRING" size="256"/>
- <Column id="cmc_cretno" type="STRING" size="256"/>
- <Column id="cmc_spcid" type="STRING" size="256"/>
- <Column id="cmc_orddate" type="STRING" size="256"/>
- <Column id="cmc_orderseqno" type="STRING" size="256"/>
- </ColumnInfo>
- <Rows>
- <Row/>
- </Rows>
- </Dataset>
- <Dataset id="ds_paging_iniinfo" useclientlayout="true" updatecontrol="true" enableevent="true" loadkeymode="keep" loadfiltermode="keep" reversesubsum="false" firefirstcount="40" firenextcount="40" onload="ds_paging_iniinfo_onload">
- <ColumnInfo>
- <Column id="pid" type="STRING" size="256" sumtext="pid"/>
- <Column id="ptnm" type="STRING" size="256" sumtext="ptnm"/>
- <Column id="depthngnm" type="STRING" size="256" sumtext="depthngnm"/>
- <Column id="deptengabbr" type="STRING" size="256" sumtext="deptengabbr"/>
- <Column id="icdrdeptengabbr" type="STRING" size="256" sumtext="icdrdeptengabbr"/>
- <Column id="rgstno" type="STRING" size="256" sumtext="rgstno"/>
- <Column id="sa" type="STRING" size="256" sumtext="sa"/>
- <Column id="disporddd" type="STRING" size="256" sumtext="disporddd"/>
- <Column id="orddd" type="STRING" size="256" sumtext="orddd"/>
- <Column id="drid" type="STRING" size="256" sumtext="drid"/>
- <Column id="icdrdrid" type="STRING" size="256" sumtext="icdrdrid"/>
- <Column id="roomcd" type="STRING" size="256" sumtext="roomcd"/>
- <Column id="icdrroomcd" type="STRING" size="256" sumtext="icdrroomcd"/>
- <Column id="ordtype" type="STRING" size="256" sumtext="ordtype"/>
- <Column id="chosflag" type="STRING" size="256" sumtext="chosflag"/>
- <Column id="orddeptcd" type="STRING" size="256" sumtext="orddeptcd"/>
- <Column id="signno" type="BIGDECIMAL" size="256" sumtext="signno"/>
- <Column id="signdeptcd" type="STRING" size="256" sumtext="signdeptcd"/>
- <Column id="signdeptengabbr" type="STRING" size="256" sumtext="signdeptengabbr"/>
- <Column id="formcd" type="STRING" size="256" sumtext="formcd"/>
- <Column id="srcformcd" type="STRING" size="256" sumtext="srcformcd"/>
- <Column id="formnm" type="STRING" size="256" sumtext="formnm"/>
- <Column id="formprogflag" type="STRING" size="256" sumtext="formprogflag"/>
- <Column id="recdt" type="STRING" size="256" sumtext="recdt"/>
- <Column id="recdd" type="STRING" size="256" sumtext="recdd"/>
- <Column id="trans" type="STRING" size="256" sumtext="trans"/>
- <Column id="signflag" type="STRING" size="256" sumtext="signflag"/>
- <Column id="imgflag" type="STRING" size="256" sumtext="영상기록여부"/>
- <Column id="langflag" type="STRING" size="256" sumtext="서식언어구분"/>
- <Column id="formrecdt" type="STRING" size="256" sumtext="기록일시"/>
- <Column id="fstrgstdt" type="STRING" size="256" sumtext="최초작성일시"/>
- <Column id="lastupdtdt" type="STRING" size="256" sumtext="최종수정일시"/>
- <Column id="staffconfirmdt" type="STRING" size="256" sumtext="staff확인일시"/>
- <Column id="fstrgstrusrnm" type="STRING" size="256" sumtext="최초작성자"/>
- <Column id="lastupdtrusrnm" type="STRING" size="256" sumtext="최종수정자"/>
- <Column id="staffnm" type="STRING" size="256" sumtext="staff이름"/>
- <Column id="emrrecusrnm" type="STRING" size="256" sumtext="의무기록사이름"/>
- <Column id="erdt" type="STRING" size="256" sumtext="응급실내원시간"/>
- <Column id="ervisittm" type="STRING" size="256" sumtext="의사VisitTime"/>
- <Column id="indd" type="STRING" size="256" sumtext="입원일"/>
- <Column id="dschdd" type="STRING" size="256" sumtext="퇴원일"/>
- <Column id="inorddepthngnm" type="STRING" size="256" sumtext="입원과"/>
- <Column id="dschorddepthngnm" type="STRING" size="256" sumtext="퇴원과"/>
- <Column id="incnt" type="STRING" size="256" sumtext="입원회차"/>
- <Column id="sortno" type="STRING" size="256" sumtext="조회순서"/>
- <Column id="mainyn" type="STRING" size="256" sumtext="공통서식여부"/>
- <Column id="rowno" type="STRING" size="256" sumtext="정렬순번"/>
- <Column id="cretno" type="STRING" size="256" sumtext="정렬순번"/>
- <Column id="signgenrflag" type="STRING" size="256" sumtext="서식발생구분"/>
- <Column id="careinrmdt" type="STRING" size="256" sumtext="간호입실시간"/>
- <Column id="execprcpuniqno" type="STRING" size="256" sumtext="실시처방키"/>
- <Column id="recchk" type="STRING" size="256" sumtext="실시처방키"/>
- <Column id="prcpdd" type="STRING" size="256" sumtext="처방일자"/>
- </ColumnInfo>
- </Dataset>
- <Dataset id="ds_pidynhcd" firefirstcount="0" firenextcount="0" useclientlayout="false" updatecontrol="true" enableevent="true" loadkeymode="keep" loadfiltermode="keep" reversesubsum="false"/>
- <Dataset id="ds_midmsrght" firefirstcount="0" firenextcount="0" useclientlayout="false" updatecontrol="true" enableevent="true" loadkeymode="keep" loadfiltermode="keep" reversesubsum="false">
- <ColumnInfo>
- <Column id="hardcd" type="STRING" size="256"/>
- <Column id="hardcdnm" type="STRING" size="256"/>
- <Column id="level" type="STRING" size="256"/>
- </ColumnInfo>
- <Rows>
- <Row>
- <Col id="hardcd">fMidPrint</Col>
- <Col id="hardcdnm">분류출력</Col>
- <Col id="level">0</Col>
- </Row>
- </Rows>
- </Dataset>
- <Dataset id="ds_main_cond" firefirstcount="0" firenextcount="0" useclientlayout="false" updatecontrol="true" enableevent="true" loadkeymode="keep" loadfiltermode="keep" reversesubsum="false">
- <ColumnInfo>
- <Column id="bmkall" type="STRING" size="256"/>
- </ColumnInfo>
- <Rows>
- <Row/>
- </Rows>
- </Dataset>
- </Objects>
- <Bind>
- <BindItem id="item6" compid="txt_private" propid="text" datasetid="ds_init_privatetxt" columnid="privatetxt"/>
- <BindItem id="item7" compid="grup_left.roundrect2.ipt_pid" propid="value" datasetid="ds_patinfo" columnid="pid"/>
- <BindItem id="item8" compid="grup_left.roundrect2.ipt_hngnm" propid="value" datasetid="ds_patinfo" columnid="hngnm"/>
- <BindItem id="item9" compid="grup_left.roundrect2.ipt_rrgstno1" propid="value" datasetid="ds_patinfo" columnid="rrgstno1"/>
- <BindItem id="item10" compid="grup_left.roundrect2.ipt_rrgstno2" propid="value" datasetid="ds_patinfo" columnid="rrgstno2"/>
- <BindItem id="item11" compid="grup_left.roundrect2.opt_age" propid="value" datasetid="ds_patinfo" columnid="agesex"/>
- <BindItem id="item4" compid="grup_left.rdo_option1" propid="value" datasetid="ds_init_env" columnid="option"/>
- <BindItem id="item5" compid="grup_left.rdo_option" propid="value" datasetid="ds_init_env" columnid="option"/>
- <BindItem id="item12" compid="grup_left.roundrect2.cmb_dept" propid="value" datasetid="ds_init_etc" columnid="orddept"/>
- <BindItem id="item13" compid="grup_left.switch1.rec.roundrect1.cmb_recformcd" propid="value" datasetid="ds_init_recformdata" columnid="formcd"/>
- <BindItem id="item0" compid="grup_left.switch1.rec.roundrect1.input3" propid="value" datasetid="ds_init_recformdata" columnid="fromdd"/>
- <BindItem id="item1" compid="grup_left.switch1.rec.roundrect1.input2" propid="value" datasetid="ds_init_recformdata" columnid="todd"/>
- <BindItem id="item2" compid="rdo_lindx" propid="value" datasetid="ds_init_etc" columnid="tabflag"/>
- <BindItem id="item14" compid="grup_left.switch1.grd.input5" propid="value" datasetid="ds_init_paging" columnid="fromdd"/>
- <BindItem id="item15" compid="grup_left.switch1.grd.input4" propid="value" datasetid="ds_init_paging" columnid="todd"/>
- <BindItem id="item16" compid="grup_left.switch1.grd.cmb_sort" propid="value" datasetid="ds_init_etc" columnid="sortkind"/>
- <BindItem id="item17" compid="grup_left.switch1.grd.cbx_paging" propid="value" datasetid="ds_init_etc" columnid="pagingyn"/>
- <BindItem id="item18" compid="bool_viewflag" propid="value" datasetid="ds_envinit" columnid="viewflag"/>
- <BindItem id="item3" compid="rdo_instcd" propid="value" datasetid="ds_init_env" columnid="instcd"/>
- </Bind>
- <Script type="xscript4.0"><![CDATA[/***************************************************************************************
- * System Name :
- * Job Name :
- * Creator :
- * Make Date : 2014-08-28
- * Description :
- *---------------------------------------------------------------------------------------
- * Modify Date Modifier Modify Description
- *---------------------------------------------------------------------------------------
- * 2014-08-28 Live Converter TF->XP
- *
- *---------------------------------------------------------------------------------------
- ****************************************************************************************/
- //=======================================================================================
- // Lib Include
- //---------------------------------------------------------------------------------------
- include "com_commonxp::comm_main.xjs"
- include "emr_commonxp::EMRCommon.xjs"
- include "emr_recmngtxp::SMMRI03000.xjs"
- include "emr_prcpmngtxp::MMO001.xjs"
- //include "emr_prcpmngtxp::SMMMB01100.xjs"
- include "emr_prcpmngtxp::SMMMO04100.xjs"
- //=======================================================================================
- // Global Form Variable
- //---------------------------------------------------------------------------------------
- var arErrorCode = new HashArray();
- var popupendflag = "";
- var chkflag = "";
- var fso = inff_fileSystemObject();
- //=======================================================================================
- // Function
- //---------------------------------------------------------------------------------------
- /****************************************************************************************
- * Argument : 01.sKey : 코드아이디
- * : 02.sValue : 코드명
- * Description : 공통코드를 가져온다.
- ****************************************************************************************/
- //=======================================================================================
- // Transaction Callback
- //---------------------------------------------------------------------------------------
- /****************************************************************************************
- * Argument : 01.sSvcId : 서비스 ID
- * : 02.nErrorCode : 에러코드
- * : 03.sErrorMsg : 에러메시지
- * Description : tr_getCodeList의 콜백함수
- ****************************************************************************************/
- //=======================================================================================
- // Event
- //---------------------------------------------------------------------------------------
- /****************************************************************************************
- * Components :
- * Components ID : button5
- * Event : onlbuttonup
- * Argument : 01.obj : Object Event has occurred
- * : 02.e : Event Object
- * Description :
- ****************************************************************************************/
- function SMMRI00400_onload(obj:Form, e:LoadEventInfo)
- {
-
- frmf_initForm(obj);
-
- //makeReportPreview("100", "100", "500", "500", "grp_report");
- fInitalize();
-
-
- }
- function rdo_lindx_onitemchanged(obj:Radio, e:ItemChangeEventInfo)
- {
- fGetRecMidIndx();
- }
- function grup_left_roundrec2_button3_onclick(obj:Button, e:ClickEventInfo)
- {
- fGetPatOrddept();
-
- //2010/03/20 강지훈 수정 : fGetPatOrddept()안에서 fGetPatOrdHist을 호출하면서 조회가 멈추는 문제.
- var option = ds_envinit_option.getColumn(0, "answcnt");//model.getValue("/root/envinit/option/answcnt");
- if(option != "002"){
- if(ds_init_env.getColumn(0, "option") != "F"){
- ds_grd_reclist.clearData(); //model.removeNodeset("/root/copytmpinicert");
- fGetPatOrdHist(null);
- }else{
- grup_left.switch1.rec.grd_reclist.setCellProperty("Head", 0, "expr", 0); //grd_reclist.fixedcellischeck(0,1)=false;
- fGetDetlFormRec();
- }
- }
- }
- function grup_left_ipt_pid_onkeydown(obj:Edit, e:KeyEventInfo)
- {
- if(e.keycode == "13") {
- var chkPidRtn = fPidKeyPress();
- if (chkPidRtn)
- {
- fGetPatOrddept();
- //2010/03/20 강지훈 수정 : fGetPatOrddept()안에서 fGetPatOrdHist을 호출하면서 조회가 멈추는 문제.
- var option = ds_envinit_option.getColumn(0, "answcnt");
- sysf_trace("option" + option);
- if(option != "002" ){
- if(ds_init_env.getColumn(0, "option") != "F"){
- sysf_trace("ds_init_env.getColumn(0, \"option\") != \"F\"");
- ds_grd_reclist.clearData();// model.removeNodeset("/root/copytmpinicert");
- fGetPatOrdHist(null);
- }else{
- sysf_trace("ds_init_env.getColumn(0, \"option\") != \"F\" else");
- grup_left.switch1.rec.grd_reclist.setCellProperty("Head", 0, "expr", 0); //grd_reclist.fixedcellischeck(0,1)=false;
- fGetDetlFormRec();
- }
- }
- }
- // model.refresh();
- }
- }
- function grup_left_roundrec2_btn_search_onclick(obj:Button, e:ClickEventInfo)
- {
- fPopPtinfo();
- }
- function grup_left_btn_mark_onclick(obj:Button, e:ClickEventInfo)
- {
- btn_sw_onchanged(obj, e);
- }
- function grup_left_btn_all_onclick(obj:Button, e:ClickEventInfo)
- {
- btn_sw_onchanged(obj, e);
- }
- function grup_left_btn_out_onclick(obj:Button, e:ClickEventInfo)
- {
- btn_sw_onchanged(obj, e);
- }
- function grup_left_btn_in_onclick(obj:Button, e:ClickEventInfo)
- {
- btn_sw_onchanged(obj, e);
- }
- function grup_left_btn_er_onclick(obj:Button, e:ClickEventInfo)
- {
-
- btn_sw_onchanged(obj, e);
- }
- function btn_sw_onchanged(obj:Button, e)
- {
- sysf_trace("***** btn_sw_onchanged *****");
-
- // var tCnt = obj.getTabpageCount();
- // var tIdx = obj.tabindex;
- var tNm = obj.name;
- grup_left.btn_mark.setSelectStatus(false);
- grup_left.btn_all.setSelectStatus(false);
- grup_left.btn_in.setSelectStatus(false);
- grup_left.btn_out.setSelectStatus(false);
- grup_left.btn_er.setSelectStatus(false);
-
- obj.setSelectStatus(true);
-
- if( tNm == "btn_mark" ){ // btn_mark
-
- grup_left.switch1.tabindex = 1; // id = trv
- fGetTreeView();
- }else if( tNm == "btn_all"){ // btn_all
- //grup_left.switch1.tabindex = 0; // id = grv
-
- if( ds_init_env.getColumn(0, "option") == "F" ){
-
- }else{
- fGetPatOrdHist("ALL");
- //첫번째수진 첫번째 기록 자동조회
- if (ds_grd_pathist.rowcount > 0 && ds_init_env.getColumn(0, "option") == "D"){
- ds_grd_pathist.rowposition = 0;
- fGetRecMidIndx();
- }
- }
- }else if( tNm == "btn_out" ){ // btn_out
- //grup_left.switch1.tabindex = 0; // id = grv
-
- if( ds_init_env.getColumn(0, "option") == "F" ){
- // 기록지별 조회를 위한 Combo박스에 들어갈 서식 조회 2014.02.19
-
- ds_grd_reclist.clearData(); //model.removeNodeset("/root/copytmpinicert");
- //ds_init_recformdata
- //ds_init_cmb_recformcd
-
- var objColInfo = new Array();
- objColInfo.push({col: "instcd", type:"string", size:256, val:sysf_getUserInfo("dutplceinstcd")});
- objColInfo.push({col: "hardcd", type:"string", size:256, val:"5627"});
- objColInfo.push({col: "ordtype", type:"string", size:256, val:"O"});
- dsf_createDsRow("ds_send_recsrch", objColInfo);
-
- var oParam = {};
- oParam.id = "TRMRI08115";
- oParam.service = "recmngtapp.IntegrityRec";
- oParam.method = "reqGetHardCdList";
- oParam.inds = "req=" + "ds_send_recsrch";
- oParam.outds = "ds_init_cmb_recformcd" + "=hardcdlist";
- oParam.async = true;//비동기
- oParam.callback = "cf_TRMRI08115"
-
- tranf_submit(oParam);
-
- }else{
- fGetPatOrdHist("O");
-
- //첫번째수진 첫번째 기록 자동조회
- if (grup_left.switch1.grd.grd_pathist.rowcount > 0 && ds_init_env.getColumn(0, "option") == "D"){
- ds_grd_pathist.selectRow(1);
- fGetRecMidIndx();
- }
- }
- }else if( tNm == "btn_in" ){ // btn_in
- //grup_left.switch1.tabindex = 0; // id = grv
-
- if( ds_init_env.getColumn(0, "option") == "F" ){
- // 기록지별 조회를 위한 Combo박스에 들어갈 서식 조회 2014.02.19
- ds_grd_reclist.clearData();
- var objColInfo = new Array();
- objColInfo.push({col: "instcd", type:"string", size:256, val:sysf_getUserInfo("dutplceinstcd")});
- objColInfo.push({col: "hardcd", type:"string", size:256, val:"5627"});
- objColInfo.push({col: "ordtype", type:"string", size:256, val:"I"});
- dsf_createDsRow("ds_send_recsrch", objColInfo);
-
- var oParam = {};
- oParam.id = "TRMRI08115";
- oParam.service = "recmngtapp.IntegrityRec";
- oParam.method = "reqGetHardCdList";
- oParam.inds = "req=" + "ds_send_recsrch";
- oParam.outds = "ds_init_cmb_recformcd" + "=hardcdlist";
- oParam.async = true;//비동기
- oParam.callback = "cf_TRMRI08115"
-
- tranf_submit(oParam);
-
- }else{
- fGetPatOrdHist("I");
-
- //첫번째수진 첫번째 기록 자동조회
- if (grup_left.switch1.grd.grd_pathist.rowcount > 0 && ds_init_env.getColumn(0, "option") == "D"){
- ds_grd_pathist.selectRow(1);
- fGetRecMidIndx();
- }
-
- }
- }else if( tNm == "btn_er" ){ // btn_er
- //grup_left.switch1.tabindex = 0; // id = grv
-
- if( ds_init_env.getColumn(0, "option") == "F" ){
-
- }else{
- fGetPatOrdHist("E");
- //첫번째수진 첫번째 기록 자동조회
- if (grup_left.switch1.grd.grd_pathist.rowcount > 0 && ds_init_env.getColumn(0, "option") == "D"){
- ds_grd_pathist.selectRow(1);
- fGetRecMidIndx();
- }
- }
- }
-
- }
- function grup_left_roundrec2_ipt_rrgstno2_onkeydown(obj:Edit, e:KeyEventInfo)
- {
- fRgstno2KeyPress(e);
- }
- function grup_left_rdo_option1_onitemchanged(obj:Radio, e:ItemChangeEventInfo)
- {
- fSelectOption();
-
- }
- function grup_left_rdo_option_onitemchanged(obj:Radio, e:ItemChangeEventInfo)
- {
- fSelectOption();
- }
- function grup_left_btn_patedu_onclick(obj:Button, e:ClickEventInfo)
- {
- //20100405-kys-CAREPLAN LIST 연동추가
- var pid = "";
- var curpid = "";
- pid = ds_result_patinfo.getColumn(0, "pid");
- curpid = ds_patinfo.getColumn(0, "pid");
- if(utlf_isNull(pid)){ //키인 입력한 pid가 없으면 상단정보 pid set
- pid = model.getValue("/root/main/result/paminfo/list/pid");
- }
- if(utlf_isNull(pid)){
- sysf_messageBox("환자가 조회되지 않았습니다.", "E");
- return;
- }else{
- if(pid != curpid){
- sysf_messageBox("조회한 환자와 등록번호 입력창의 등록번호가 상이합니다. 조회후 다시 시도해 주십시요.", "E");
- return;
- }
- frmf_open("SMMRJ00200", "SMMRJ00200", null, null, null, null, null, null, null, null, null, null, "M");
- }
- }
- function grup_left_button5_onclick(obj:Button, e:ClickEventInfo)
- {
- if (grup_paging.visible) {
- grup_paging.visible = false;
- } else {
- grup_paging.visible = true;
- }
- }
- function btn_copyprt_onclick(obj:Button, e:ClickEventInfo)
- {
- fAppcopy();
- }
- function button14_onclick(obj:Button, e:ClickEventInfo)
- {
- var parampid = grup_left.roundrect2.ipt_pid.value;
-
- if(utlf_isNull(parampid))
- {
- sysf_messageBox("환자번호는", "I003");
- }
- else
- {
- frmf_setParameter("SMMRI00900_param",parampid);
- frmf_open("SMMRI00900", "SMMRI00900", null, null, null, null, null, null, null, null, null, null, "M");
- }
- }
- function btn_unprep_onclick(obj:Button, e:ClickEventInfo)
- {
- fOpenUnprep();
- }
- function btn_minmax_onclick(obj:Button, e:ClickEventInfo)
- {
- fMaxMin();
- }
- function SMMRI00400_onkeydown(obj:Form, e:KeyEventInfo)
- {
- if (e.keycode == "33") //PageUp
- {
- //fGetRec("prev");
- grup_right.iviewerIemr.fn_ChartPageScroll("PageUp");
- }
- else if (e.keycode == "34") //PageDown
- {
- //fGetRec("next");
- grup_right.iviewerIemr.fn_ChartPageScroll("PageDown");
- }
- /* 2013/02/15 LCtech 모듈 관련 주석 처리
- else if (event.keyCode == "35") //End
- {
- if (event.ctrlKey)
- {
- fGetRec("end");
- }
- else
- {
- //fGetRec("midend");
- iviewerIemr.window.javascript.fn_ChartPageScroll("End");
- }
- }
- else if (event.keyCode == "36") //Home
- {
- if (event.ctrlKey)
- {
- fGetRec("first");
- }
- else
- {
- //fGetRec("midfirst");
- iviewerIemr.window.javascript.fn_ChartPageScroll("Home");
- }
- }
- */
- else if (e.keycode == "38") //↑
- {
- fUpKeyBtn();
- }
- else if (e.keycode == "40") //↓
- {
- sysf_trace("1234");
- fDownKeyBtn();
- }
- }
- function button8_onclick(obj:Button, e:ClickEventInfo)
- {
- frmf_setParameter("SPMRI02400_prtrecinfo", "E▦900000000515710▦0900005822▩");
- frmf_open("SPMRI02400", "SPMRI02400", null, null, null, null, null, null, null, null, null, null, "M");
- }
- function btn_setbmk_onclick(obj:Button, e:ClickEventInfo)
- {
- //2009-10-18 강지훈 추가 : 북마크기능 요청번호 7815
- fSetBookmark();
- }
- function btn_prnt_onclick(obj:Button, e:ClickEventInfo)
- {
- fClickPrint();
- }
- function btn_newverform_onclick(obj:Button, e:ClickEventInfo)
- {
- frmf_open("SMMRB00101", "SMMRB00101", null, null, null, null, null, null, null, null, null, null, "M");
- }
- function button10_onclick(obj:Button, e:ClickEventInfo)
- {
- fAppreq();
- }
- function rdo_instcd_onitemchanged(obj:Radio, e:ItemChangeEventInfo)
- {
- var e = new ClickEventInfo;
- grup_left.roundrect2.button3.onclick.fireEvent(grup_left.roundrect2.button3, e);
- }
- function btn_txtcopy_onclick(obj:Button, e:ClickEventInfo)
- {
- var currentpage = grup_right.iviewerIemr.ds_main_chartinfo.getColumn(0, "pagecurrent");
- sysf_trace("***** btn_txtcopy currentpage : " + currentpage + " *****");
- if( !utlf_isNull(currentpage) && currentpage != "0" ){
- var imgflag = ds_paging_iniinfo.getColumn(currentpage -1, "imgflag");
- sysf_trace("***** btn_txtcopy imgflag : " + imgflag + " *****");
- if( imgflag == "N" ){
- var signno = ds_paging_iniinfo.getColumn(currentpage -1, "signno");
- var formcd = ds_paging_iniinfo.getColumn(currentpage -1, "formcd");
- var formnm = ds_paging_iniinfo.getColumn(currentpage -1, "formnm");
- var recdd = ds_paging_iniinfo.getColumn(currentpage -1, "recdd");
-
- //var filenm = signno + currentpage + "_" + formcd + ".html" ;
- var filenm = recdd + currentpage + "_" + formnm.substr(0,4) + ".html";
- var foldernm = "C:\\Certrec" + sysf_getUserInfo("dutplceinstcd");
-
- if (!utlf_isNull(foldernm)) {
-
- var objColInfo = new Array();
- objColInfo.push({col: "filepath", type:"string", size:256, val:filenm});
- dsf_createDsRow("ds_reqfilepath", objColInfo);
-
- objColInfo = new Array();
- objColInfo.push({col: "filedata", type:"blob", size:256});
- dsf_createDs("ds_filedata", objColInfo, true);
-
- var oParam = {};
- oParam.id = "TRMQP00605";
- oParam.service = "prcpbaseapp.CpMngt";
- oParam.method = "reqGetAttFileData";
- oParam.inds = "req=" + "ds_reqfilepath";
- oParam.outds = "ds_filedata" + "=attachfile";
- oParam.async = false;
- //oParam.callback = "cf_TRMQP00605"
-
- tranf_submit(oParam);
-
- // sysf_trace(ds_reqfilepath.saveXML());
- // sysf_trace(ds_filedata.saveXML());
-
- var extobj = new ExtCommon();
- dsf_readFileFromDs(foldernm + "\\" + filenm, ds_filedata, 0, "filedata"); // 파일저장
- extobj.executeProcess(foldernm + "\\" + filenm, "", "");
-
- sysf_trace(foldernm + filenm);
-
-
- // model.download(getActionURL("TRMQP00605")+"&filepath="+filenm,foldernm, false);
- //window.showIEMenu(false);
- // window.exec(foldernm+ "\\"+filenm);
- //window.load(foldernm+ "\\"+filenm, "html" , "" , "caption:hidden");
-
- // var popupWid = "notice";
- // var w = 800;
- // var h = 700;
- //
- // var leftPosition = (htmlwindow.screen.availWidth) ? (htmlwindow.screen.availWidth-w)/2 : 0;
- // var topPosition = (htmlwindow.screen.availHeight) ? (htmlwindow.screen.availHeight-h)/2 : 0;
- // var prop = "height=" + h + ",width=" + w + ",top=" + topPosition + ",left=" + leftPosition + ",scrollbars=no";
- //
- // var url = foldernm+ "\\"+filenm; // getActionURL("TRMQP00605")+"&filepath="+filenm;
- //
- // //htmlwindow.open(url,wid);
- // openHtml(url, popupWid, prop);
- }
- }else{
- sysf_messageBox("기록내용이 없거나, OCR일 경우 COPY불가","I");
- return;
- }
- }else{
- sysf_messageBox("기록을 선택한후 진행하십시오.","I");
- return;
- }
- }
- function btn_paging_onclick(obj:Button, e:ClickEventInfo)
- {
- grup_right.iviewerIemr.fClickNext();
- }
- function grup_left_roundrec2_ipt_rrgstno1_onkeydown(obj:MaskEdit, e:KeyEventInfo)
- {
- fRgstnoKeyPress();
- }
- function grup_left_cmb_dept_onkeydown(obj:Combo, e:KeyEventInfo)
- {
- //event.preventDefault();
- }
- function grup_left_cmb_dept_onitemchanged(obj:Combo, e:ItemChangeEventInfo)
- {
- sysf_trace("***** grup_left_cmb_dept_onitemchanged "+ ds_init_env.getColumn(0, "option"));
- if(ds_init_env.getColumn(0, "option") != "F"){
- fGetPatOrdHist(null);
- }else{
- grup_left.switch1.rec.grd_reclist.setCellProperty("Head", 0, "expr", 0); //grd_reclist.fixedcellischeck(0,1)=false;
- fGetDetlFormRec();
- }
- }
-
- function grup_left_switch1_grd_grd_midindx_oncelldblclick(obj:Grid, e:GridClickEventInfo)
- {
- //2014/04/15 이정택
- var objColInfo = new Array();
- objColInfo.push({col: "hardcdno", type:"string", size:256, val:"6000"});
- objColInfo.push({col: "srchdd", type:"string", size:256, val:""});
- dsf_createDsRow("ds_send_reqdata_hardcdno", objColInfo);
-
- objColInfo = new Array();
- objColInfo.push({col: "hardcdno", type:"string", size:256});
- objColInfo.push({col: "trgtcd", type:"string", size:256});
- objColInfo.push({col: "trgtcdnm", type:"string", size:256});
- dsf_createDs("ds_hardcodeinfo", objColInfo);
-
- var oParam = {};
- oParam.id = "TRMMR01204";
- oParam.service = "medirecapp.util";
- oParam.method = "reqGetHardCodeInfo";
- oParam.inds = "req=" + "ds_send_reqdata_hardcdno";
- oParam.outds = "ds_hardcodeinfo" + "=item";
- oParam.async = false;
- oParam.callback = "cf_TRMMR01204"
-
- tranf_submit(oParam);
-
- if(ds_hardcodeinfo.getColumn(0, "trgtcd")=="Y"){
- grup_left.switch1.grd.cmb_sort.enable=true;
- fPaging();
- }else{
- ds_init_etc.setColumn(0, "sortkind", "A");
- grup_left.switch1.grd.cmb_sort.enable=false;
- fPagebtnCtl();
- fDbClickMidIndx();
- }
-
- if(arErrorCode.pop("TRMMR01204") > -1){
- //temp dataset delete
- dsf_deleteDataSet("ds_send_reqdata_hardcdno");
- dsf_deleteDataSet("ds_hardcodeinfo");
- }
-
- }
- function grup_left_switch1_grd_grd_midindx_onrbuttondown(obj:Grid, e:GridMouseEventInfo)
- {
- fMidindxMouseRight(e);
- }
- function grup_left_switch1_grd_grd_midindx_onkeydown(obj:Grid, e:KeyEventInfo)
- {
- //event.preventDefault();
- }
- function grup_left_switch1_grd_button1_onclick(obj:Button, e:ClickEventInfo)
- {
- fGetRec("first");
- }
- function grup_left_switch1_grd_button2_onclick(obj:Button, e:ClickEventInfo)
- {
- fGetRec("midfirst");
- }
- function grup_left_switch1_grd_button4_onclick(obj:Button, e:ClickEventInfo)
- {
- fGetRec("midend");
- }
- function grup_left_switch1_grd_button6_onclick(obj:Button, e:ClickEventInfo)
- {
- fGetRec("end");
- }
- function grup_left_switch1_grd_button7_onclick(obj:Button, e:ClickEventInfo)
- {
- fGetRec("all");
- }
- function grup_left_switch1_grd_grd_pathist_oncelldblclick(obj:Grid, e:GridClickEventInfo)
- {
- if( e.row > -1 ){
- fGetRecMidIndx(null, e);
- }
-
- var ctrl = grup_left.switch1.grd.grd_midindx;
- if( ctrl != null )
- {
- ctrl.setFocus();
- var e = new KeyEventInfo();
- ctrl.onkeyup.fireEvent(ctrl, e);
- }
-
- }
- function grup_left_switch1_grd_grd_pathist_onkeydown(obj:Grid, e:KeyEventInfo)
- {
- //event.preventDefault();
- }
- function grup_left_switch1_grd_datagrid3_oncelldblclick(obj:Grid, e:GridClickEventInfo)
- {
- if( e.row > -1 ) {
- fDbclickDept();
- }
- }
- function grup_left_switch1_grd_cbx_paging_onchanged(obj:CheckBox, e:CheckBoxChangeEventInfo)
- {
- if(grup_left.switch1.grd.cbx_paging.value=="Y"){
- grup_left.switch1.grd.input4.enable = true;
- grup_left.switch1.grd.input5.enable = true;
- }else{
- grup_left.switch1.grd.input4.enable = false;
- grup_left.switch1.grd.input5.enable = false;
- }
- }
- function grup_left_switch1_trv_trv_bookmark_oncelldblclick(obj:Grid, e:GridClickEventInfo)
- {
- fGetBookmarkItem();
- }
- function grup_left_switch1_trv_trv_bookmark_onrbuttondown(obj:Grid, e:GridMouseEventInfo)
- {
- if (event.button == 3) {
- setPopupMenu("trv_bookmark", false, "/root/init/bmkrght/mouserght", "label", "func");
- }
- }
- function grup_left_switch1_trv_chk_allbmk_onchanged(obj:CheckBox, e:CheckBoxChangeEventInfo)
- {
- fGetTreeView();
- }
- function grup_left_switch1_rec_btn_recsearch_onclick(obj:Button, e:ClickEventInfo)
- {
- fGetDetlFormRec();
- }
- function grup_left_switch1_rec_grd_reclist_oncelldblclick(obj:Grid, e:GridClickEventInfo)
- {
- if((grd_reclist.isCell(event.target) && grd_reclist.mouserow >= grd_reclist.fixedrows))
- {
- model.removenode("/root/send/ordddtxt");
- fGetDetlFormRecDetail("1");
-
- }
- }
- function grup_left_switch1_rec_grd_reclist_onkeydown(obj:Grid, e:KeyEventInfo)
- {
- //event.preventDefault();
- }
- function grup_left_switch1_rec_button9_onclick(obj:Button, e:ClickEventInfo)
- {
- if( model.getValue("/root/copytmpinicert/iniinfo[1]/recchk") == "true"){
- for(var i = 1; i <= grd_reclist.rows-grd_reclist.fixedRows; i++ ){
- model.setValue("/root/copytmpinicert/iniinfo["+ i +"]/recchk", "false");
- }
- }else{
- for(var i = 1; i <= grd_reclist.rows-grd_reclist.fixedRows; i++ ){
- model.setValue("/root/copytmpinicert/iniinfo["+ i +"]/recchk", "true");
- }
- }
- model.refresh();
- }
- function grup_left_switch1_rec_button11_onclick(obj:Button, e:ClickEventInfo)
- {
- grup_right.iviewerIemr.cleanViewer();
- var iexNodeCnt = ds_grd_reclist.getCaseCount("recchk == 'true'");;//getNodesetCnt(model, "/root/copytmpinicert/iniinfo[recchk = 'true']");
- var ordddtxt = "";
- var signnotxt = "";
- var idx = 1;
-
- if(iexNodeCnt>0){
- for(var i = 0; i < ds_grd_reclist.rowcount; i++ ){
- if( ds_grd_reclist.getColumn(i, "recchk") == "true" ){
- if( idx == 1 ){
- ordddtxt = "'" + ds_grd_reclist.getColumn(i, "orddd") + "'";
- idx++;
- }else{
- ordddtxt = ordddtxt + ", '" + ds_grd_reclist.getColumn(i, "orddd") + "'";
- }
-
- }
- }
- ds_send.addColumn("signnotxt", "string");
- ds_send.addColumn("ordddtxt", "string");
- var nRow = 0;
- if(ds_send.rowcount == 0) nRow = ds_send.addRow();
-
- ds_send.setColumn(nRow, "signnotxt" , signnotxt );
- ds_send.setColumn(nRow, "ordddtxt" , ordddtxt );
- fGetDetlFormRecDetail("2");
- }else{
- sysf_messageBox("조회할 서식을 선택한 후 진행하십시오.", "C999");
- return;
- }
-
- }
- function cf_TRMRI03001(sSvcId, nErrorCode, sErrorMsg){
- if(nErrorCode > -1) {
-
- sysf_trace("***** cf_TRMRI03001 *****");
-
- //sysf_trace(ds_init_rdo_lindx.saveXML());
-
-
- //2010-03-20 오전 10:35:43 강지훈 수정 : 환경설정에 따라 조회가 되지않는 오류수정 : 긴급배포로인해 주석처리
- //var dplistNode = instance1.selectSingleNode("/root/initinfo/dplist");
- //if(dplistNode == null || dplistNode == ""){
- //var dpCnt = getNodesetCount(model, "/root/initinfo/dplist");
- //if (dpCnt == 0) {
- // model.makeValue("/root/initinfo/dplist[1]/deptcd", "ALL");
- // model.makeValue("/root/initinfo/dplist[1]/deptlist", "전체");
- //}
- //else{
- // addComboInstance("/root/initinfo", "deptcd^deptnm", "ALL^전체", "dplist");
- //}
- // color change check column
- ds_init_cmb_dept.addColumn("bgchk", "string");
-
- frmf_addComboItem("grup_left.roundrect2.cmb_dept", "전체", "ALL");
- frmf_addComboItem("rdo_lindx", "전체", "ALL");
-
- ds_init_cmb_dept.setColumn(0, "deptengabbr", "전체");
- ds_init_etc.setColumn(0, "tabflag", "ALL");
- //rdo_lindx.index = 0;
- rdo_lindx.visible = true;
-
- // sysf_trace(ds_init_rdo_lindx.saveXML());
-
- var sUserDeptcd = sysf_getUserInfo("dutplcecd");
- var defdept = ds_envinit_defdept.getColumn(0, "answcnt");
- if (defdept == "")
- defdept = "002";
-
- //해당과, 전체과 환경설정
- if (defdept == "002")
- {
- ds_init_etc.setColumn(0, "orddept", "ALL");
- ds_init_cmb_dept.rowposition = 0;
- ds_init_cmb_dept.setColumn(0, "bgchk", "true");
- }
- else if (defdept == "001")
- {
- var itrgtNodeCnt = ds_init_cmb_dept.getCaseCount("deptcd == '"+ sUserDeptcd +"");
- if (itrgtNodeCnt > 0){
- ds_init_etc.setColumn(0, "orddept", sUserDeptcd);
-
- var row = ds_init_cmb_dept.findRowAs("deptcd", sUserDeptcd);
- ds_init_cmb_dept.rowposition = row;
- ds_init_cmb_dept.setColumn(row, "bgchk", "true");
- }else{
- ds_init_etc.setColumn(0, "orddept", "ALL");
- ds_init_cmb_dept.rowposition = 0;
- ds_init_cmb_dept.setColumn(0, "bgchk", "true");
- }
- }
- else
- {
- ds_init_etc.setColumn(0, "orddept", "ALL");
- ds_init_cmb_dept.rowposition = 0;
- ds_init_cmb_dept.setColumn(0, "bgchk", "true");
- }
-
- var option = ds_envinit_option.getColumn(0, "answcnt");
- if (option == "")
- option = "001";
-
- var tab = ds_envinit_tab.getColumn(0, "answcnt");
- if (tab == "")
- tab = "001";
- //수진이력, 진료과별, 서식지별(미개발)에 따른 조건 설정
- if(option == "002" && tab != "005") //북마크가 아닌경우에 자동 조회
- {
- fDbclickDept();
- }
-
- }
- }
- function grup_left_switch1_rec_grd_reclist_onheadclick(obj:Grid, e:GridClickEventInfo)
- {
- sysf_trace("grup_left_switch1_rec_grd_reclist_onheadclick");
- if (e.cell == 0) {
- //grdf_addHeadClickHandler(obj,e, ds_grd_reclist ,true)
- }
- }
- function cf_TRMRC00501(sSvcId, nErrorCode, sErrorMsg){
- arErrorCode.push(sSvcId, nErrorCode);
- sysf_trace("***** cf_TRMRC00501 *****");
- }
- function cf_TRPMC02500(sSvcId, nErrorCode, sErrorMsg){
- arErrorCode.push(sSvcId, nErrorCode);
- sysf_trace("***** cf_TRPMC02500 *****");
- }
- function cf_TRMRI00416(sSvcId, nErrorCode, sErrorMsg){
- arErrorCode.push(sSvcId, nErrorCode);
- sysf_trace("***** cf_TRMRI00416 *****");
- }
- function cf_TRMRI08115(sSvcId, nErrorCode, sErrorMsg){
- arErrorCode.push(sSvcId, nErrorCode);
- sysf_trace("***** cf_TRMRI08115 *****");
- // temp dataset delete
- dsf_deleteDataSet("ds_send_recsrch")
- }
- function cf_TRMRI03007(sSvcId, nErrorCode, sErrorMsg){
- arErrorCode.push(sSvcId, nErrorCode);
- sysf_trace("***** cf_TRMRI03007 *****");
- }
- function cf_TRMRI08114(sSvcId, nErrorCode, sErrorMsg){
- arErrorCode.push(sSvcId, nErrorCode);
- sysf_trace("***** cf_TRMRI08114 *****");
- }
- function cf_TRMRI03003(sSvcId, nErrorCode, sErrorMsg){
- arErrorCode.push(sSvcId, nErrorCode);
- sysf_trace("***** cf_TRMRI03003 *****");
- }
- function cf_TRMMR01204(sSvcId, nErrorCode, sErrorMsg){
- arErrorCode.push(sSvcId, nErrorCode);
- sysf_trace("***** cf_TRMMR01204 *****");
- }
- function cf_TRMRI03009(sSvcId, nErrorCode, sErrorMsg){
- arErrorCode.push(sSvcId, nErrorCode);
- sysf_trace("***** cf_TRMRI03009 *****");
- }
- function cf_TRMRI03010(sSvcId, nErrorCode, sErrorMsg){
- arErrorCode.push(sSvcId, nErrorCode);
- sysf_trace("***** cf_TRMRI03010 *****");
-
- //xp code add : col id change!!!execprcpuniqno
- if( !utlf_isNull(ds_paging_iniinfo.getColumnInfo("execprcpuniqno")))
- ds_paging_iniinfo.updateColID("execprcpuniqno", "cmc_orderseqno");
- dsf_setDefaultVal(ds_paging_iniinfo, "all");
- //var certnodeList = instance1.selectNodes("/root/paging/iniinfo");
-
- //sysf_trace(ds_paging_iniinfo.saveXML());
-
-
- //if(certnodeList.length > 1 && certnodeList.length >= nodeposcnt){
- if(ds_paging_iniinfo.rowcount > 1 && ds_paging_iniinfo.rowcount >= nodeposcnt){
- multirecyn = "Y";
- if(prevflag == "Y"){
- nodeposcnt = ds_paging_iniinfo.rowcount;
- }else{
- nodeposcnt = 0; // 1->0
- }
- }else{
- multirecyn = "N";
- nodeposcnt = 0; // 1->0
- }
- //iviewerIemr.window.javascript.cleanViewer();
- if(page_number!="1"){
- //copyNodeset("/root/tmpinicert/iniinfo", "/root/paging/iniinfo", "append", model, model);
- }else{
- //iviewerIemr.window.javascript.cleanViewer();
- //copyNodeset("/root/tmpinicert/iniinfo", "/root/paging/iniinfo", "replace", model, model);
- }
-
- if (ds_init_etc.getColumn(0, "recall") == "Y"){
- fGetNextEmrImgRec_New();
- }else{
- fGetNextEmrImgRec_New();
- }
- ds_init_etc.setColumn(0, "recall", "N");
-
- //frmf_closeLoadingBar();
- }
- function cf_TRMRI03004(sSvcId, nErrorCode, sErrorMsg){
- arErrorCode.push(sSvcId, nErrorCode);
- sysf_trace("***** cf_TRMRI03004 *****");
- }
- function ds_patinfo_onvaluechanged(obj:Dataset, e:DSColChangeEventInfo)
- {
- if( e.columnid == "pid" ){
- //sysf_trace("***** ds_patinfo_onvaluechanged *****");
- sysf_trace("***** ds_patinfo_onvaluechanged ***** value :" + e.oldvalue + " : " + e.newvalue);
- chkflag = "true";
- }
- }
- var isMouseClick = false;
- function grup_left_roundrect2_cmb_dept_canitemchange(obj:Combo, e:ItemChangeEventInfo)
- {
- return isMouseClick;
- }
- function grup_left_roundrect2_cmb_dept_oncloseup(obj:Combo, e:ComboCloseUpEventInfo)
- {
- isMouseClick = false;
- }
- function grup_left_roundrect2_cmb_dept_onitemclick(obj:Combo, e:ListBoxClickEventInfo)
- {
- isMouseClick = true;
- }
- function grup_left_roundrect2_ipt_hngnm_onkeydown(obj:Edit, e:KeyEventInfo)
- {
- fPnmKeyPress();
- }
- function midmsrght_onmenuclick(obj:PopupMenu, e:MenuClickEventInfo)
- {
- eval(e.id + "()");
- }
- // function ds_paging_iniinfo_onload(obj:Dataset, e:DSLoadEventInfo)
- // {
- //
- // }
- function ds_paging_iniinfo_onload(obj:Dataset, e:DSLoadEventInfo)
- {
- // sysf_trace("******************************");
- }
- ]]></Script>
- </Form>
- </FDL>
|