123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187 |
- <?xml version="1.0" encoding="utf-8" standalone="no"?>
- <FDL version="1.5">
- <TypeDefinition url="..\..\..\default_typedef.xml"/>
- <Form id="SMMND01900" position="absolute 0 0 1202 796" titletext="상담기록" onload="SMMND01900_onload">
- <Layouts>
- <Layout>
- <Div id="group3" scrollbars="autoboth" position="absolute 0 20 1197 761" style="">
- <Layouts>
- <Layout>
- <Grid id="grd_pdmatnpatinfo" binddataset="ds_main_pdmatnpatlist_pdmatnpatinfo" position="absolute 0 75 270 409" style="" oncelldblclick="group3_grd_pdmatnpatinfo_oncelldblclick" anchor="default">
- <Formats>
- <Format id="default">
- <Columns>
- <Column size="24"/>
- <Column size="80"/>
- <Column size="80"/>
- <Column size="54"/>
- <Column size="0"/>
- <Column size="0"/>
- </Columns>
- <Rows>
- <Row size="24" band="head"/>
- <Row size="24"/>
- </Rows>
- <Band id="head">
- <Cell/>
- <Cell col="1" text="등록번호"/>
- <Cell col="2" text="환자명"/>
- <Cell col="3" text="S_A"/>
- <Cell col="4" text="유지환자등록일자"/>
- <Cell col="5" text="histstat"/>
- </Band>
- <Band id="body">
- <Cell style="selectbackground:#ffd9ffff;" expr="currow + 1"/>
- <Cell col="1" style="selectbackground:#ffd9ffff;" text="bind:pid"/>
- <Cell col="2" style="selectbackground:#ffd9ffff;" text="bind:hngnm"/>
- <Cell col="3" style="selectbackground:#ffd9ffff;" text="bind:sexage"/>
- <Cell col="4" text="bind:maintepatrgstdd"/>
- <Cell col="5" text="bind:histstat"/>
- </Band>
- </Format>
- </Formats>
- </Grid>
- <Grid id="grd_hdmatnpatinfo" binddataset="ds_main_hdmatnpatlist_hdmatnpatinfo" position="absolute 0 75 270 409" style="" oncelldblclick="group3_grd_hdmatnpatinfo_oncelldblclick" anchor="default" selecttype="row">
- <Formats>
- <Format id="default">
- <Columns>
- <Column size="24"/>
- <Column size="80"/>
- <Column size="80"/>
- <Column size="54"/>
- <Column size="0"/>
- <Column size="0"/>
- </Columns>
- <Rows>
- <Row size="24" band="head"/>
- <Row size="24"/>
- </Rows>
- <Band id="head">
- <Cell/>
- <Cell col="1" text="등록번호"/>
- <Cell col="2" text="환자명"/>
- <Cell col="3" text="S_A"/>
- <Cell col="4" text="유지환자등록일자"/>
- <Cell col="5" text="histstat"/>
- </Band>
- <Band id="body">
- <Cell style="background:#b2e6e1ff;background2:#b2e6e1ff;selectbackground:#ffd9ffff;" expr="currow + 1"/>
- <Cell col="1" style="selectbackground:#ffd9ffff;" text="bind:pid"/>
- <Cell col="2" style="selectbackground:#ffd9ffff;" text="bind:hngnm"/>
- <Cell col="3" style="selectbackground:#ffd9ffff;" text="bind:sexage"/>
- <Cell col="4" text="bind:maintepatrgstdd"/>
- <Cell col="5" text="bind:histstat"/>
- </Band>
- </Format>
- </Formats>
- </Grid>
- <Div id="grp_sea" position="absolute 0 10 270 45" style="align: top;" anchor="default">
- <Layouts>
- <Layout>
- <Shape id="roundrect1" anchor="default" type="roundrectangle" position="absolute 0 0 269 35" style="border: solid #ffd799 #ffd799;background:#fffbf2 ;"/>
- <Static id="caption2" class="search_name" position="absolute 16 9 102 26" style="" text="등록번호 :" anchor="default"/>
- <Button id="btn_srchmainpatlist" class="btn1" position="absolute 203 7 259 29" style="" text="조회" onclick="group3_grp_sea_btn_srchmainpatlist_onclick" anchor="default"/>
- <Shape id="line13" class="line_4" linetype="vertical" position="absolute 192 7 195 29" style="" anchor="default"/>
- <Edit id="input1" class="input_search" position="absolute 105 8 185 27" style="" anchor="default" onkeyup="group3_grp_sea_input1_onkeyup" autoselect="true"/>
- </Layout>
- </Layouts>
- </Div>
- <Shape id="line1" class="line_1" linetype="horizontal" position="absolute 0 71 270 76" style="strokepen:3 solid #33bbbbff;" anchor="default"/>
- <Button id="btn_hdreccase" class="btn_tab_S" position="absolute 273 3 355 28" style="" text="HD상담기록" onclick="group3_btn_hdreccase_onclick" anchor="default"/>
- <Tab id="switch1" position="absolute 273 17 1197 741" style="buttonbackground:stretch 10,10;background:stretch 10,26;border:1 solid #c7a3cfff #c7a3cfff;" anchor="default" tabindex="0">
- <Tabpages>
- <Tabpage id="case1" selected="true" position="absolute 0 0 921 715" style="" anchor="default">
- <Layouts>
- <Layout>
- <Shape id="line8" class="line_2" linetype="horizontal" position="absolute 6 322 915 325" style="" anchor="default"/>
- <Static id="caption10" class="cell_1" position="absolute 5 226 100 324" style="align:center middle;" text="동정맥루" anchor="default"/>
- <Static id="caption9" class="cell_1" position="absolute 5 130 100 225" style="align:center middle;" text="투석도관" anchor="default"/>
- <Static id="caption15" class="cell_1" position="absolute 243 681 321 704" style="align:center middle;" text="기록자" anchor="default"/>
- <Static id="caption14" class="cell_1" position="absolute 5 681 83 704" style="align:center middle;" text="기록일시" anchor="default"/>
- <Static id="caption4" class="cell_1" position="absolute 460 30 555 53" style="align:center middle;" text="기타전화1" anchor="default"/>
- <Static id="caption3" class="cell_1" position="absolute 231 30 326 53" style="align:center middle;" text="핸 드 폰" anchor="default"/>
- <Shape id="line2" class="line_1" linetype="horizontal" position="absolute 5 26 914 30" style="strokepen:3 solid #33bbbbff;" anchor="default"/>
- <Static id="caption22" class="tit_2" position="absolute 8 9 103 25" style="" text="환자 연락처" anchor="default"/>
- <Static id="caption1" class="cell_1" position="absolute 5 30 100 53" style="align:center middle;" text="집 전 화" anchor="default"/>
- <Edit id="input3" class="output_fix" position="absolute 103 31 228 50" style="align:center ;" anchor="default" readonly="true" autoselect="true"/>
- <Shape id="line3" class="line_3" linetype="horizontal" position="absolute 5 52 914 55" style="" anchor="default"/>
- <Edit id="input2" class="output_fix" position="absolute 329 31 457 50" style="align:center ;" anchor="default" readonly="true" autoselect="true"/>
- <Edit id="input4" class="output_fix" position="absolute 558 31 678 50" style="align:center ;" anchor="default" autoselect="true"/>
- <Static id="caption5" class="cell_1" position="absolute 5 82 100 105" style="align:center middle;" text="등록번호" anchor="default"/>
- <Shape id="line4" class="line_1" linetype="horizontal" position="absolute 5 78 914 82" style="strokepen:3 solid #33bbbbff;" anchor="default"/>
- <Shape id="line5" class="line_2" linetype="horizontal" position="absolute 5 104 914 107" style="" anchor="default"/>
- <Static id="caption7" class="cell_1" position="absolute 593 82 688 105" style="align:center middle;" text="투석구분" anchor="default"/>
- <Shape id="line6" class="line_2" linetype="horizontal" position="absolute 5 128 914 131" style="" anchor="default"/>
- <Static id="caption8" class="cell_1" position="absolute 5 106 100 129" style="align:center middle;" text="최초투석시작일" anchor="default"/>
- <Static id="caption11" class="cell_1" position="absolute 5 325 100 421" style="align:center middle;" text="시술과중재" anchor="default"/>
- <Static id="caption12" class="cell_1" position="absolute 5 422 100 455" style="align:center middle;" text="투석스케줄" anchor="default"/>
- <Shape id="line11" class="line_3" linetype="horizontal" position="absolute 5 454 914 457" style="" anchor="default"/>
- <TextArea id="txt_hdcnstcnts" enable="False" position="absolute 5 487 914 679" style="" anchor="default"/>
- <Static id="caption13" class="tit_2" position="absolute 10 466 111 481" style="" text="상담내용" anchor="default"/>
- <Shape id="line12" class="line_1" linetype="horizontal" position="absolute 5 483 914 487" style="strokepen:3 solid #33bbbbff;" anchor="default"/>
- <Calendar id="ipt_recdd" class="input_default" enable="False" position="absolute 86 682 176 701" style="align:left ;" anchor="default"/>
- <MaskEdit id="ipt_rectm" class="input_default" enable="False" mask="hh:nn" position="absolute 179 682 219 701" style="align:left ;" anchor="default"/>
- <Edit id="output1" class="output_fix" position="absolute 388 682 453 701" style="align:left ;" anchor="default" readonly="true"/>
- <Static id="caption16" class="cell_1" position="absolute 201 82 296 105" style="align:center middle;" text="환 자 명" anchor="default"/>
- <Static id="caption17" class="cell_1" position="absolute 397 82 492 105" style="align:center middle;" text="S / A" anchor="default"/>
- <Edit id="input8" class="output_fix" position="absolute 691 83 779 102" style="align:center ;" anchor="default" readonly="true" autoselect="true"/>
- <Static id="caption18" class="cell_1" position="absolute 201 106 296 129" style="align:center middle;" text="본원투석시작일" anchor="default"/>
- <Static id="caption19" class="cell_1" position="absolute 397 106 492 129" style="align:center middle;" text="최종투석일" anchor="default"/>
- <Edit id="input6" class="output_fix" position="absolute 103 83 198 102" style="align:center ;" anchor="default" readonly="true" autoselect="true"/>
- <Edit id="intput6" class="output_fix" position="absolute 299 83 394 102" style="align:center ;" anchor="default" readonly="true" autoselect="true"/>
- <Edit id="input9" class="output_fix" position="absolute 495 83 590 102" style="align:center ;" anchor="default" readonly="true" autoselect="true"/>
- <Edit id="input10" class="output_fix" position="absolute 103 107 198 126" style="align:center ;" anchor="default" readonly="true" autoselect="true"/>
- <Edit id="input11" class="output_fix" position="absolute 299 107 394 126" style="align:center ;" anchor="default" readonly="true" autoselect="true"/>
- <Edit id="input12" class="output_fix" position="absolute 495 107 590 126" style="align:center ;" anchor="default" readonly="true" autoselect="true"/>
- <Button id="btn_savehdcnstcnts" class="btn5" enable="False" position="absolute 872 461 914 480" style="" text="저장" onclick="group3_switch1_case1_btn_savehdcnstcnts_onclick" anchor="default"/>
- <Static id="caption21" class="tit_2" position="absolute 8 61 95 77" style="" text="환자정보" anchor="default"/>
- <Shape id="line14" class="line_3" linetype="horizontal" position="absolute 5 703 914 706" style="" anchor="default"/>
- <Button id="btn_clock" class="icon_clock" position="absolute 222 683 238 699" style="" text="" onclick="group3_switch1_case1_btn_clock_onclick" anchor="default"/>
- <Edit id="ipt_recid" class="output_fix" position="absolute 324 682 385 701" style="align:right ;" anchor="default" readonly="true"/>
- <Shape id="line28" class="line_2" linetype="horizontal" position="absolute 5 224 914 227" style="" anchor="default"/>
- <Shape id="line29" class="line_2" linetype="horizontal" position="absolute 5 418 914 421" style="" anchor="default"/>
- <Grid id="grd_hmdlspipeinfo" binddataset="ds_main_hmdlspipeinfolist_hmdlspipeinfo" position="absolute 102 131 917 225" style="" anchor="default" selecttype="multirow">
- <Formats>
- <Format id="default">
- <Columns>
- <Column size="24"/>
- <Column size="70"/>
- <Column size="90"/>
- <Column size="90"/>
- <Column size="70"/>
- <Column size="70"/>
- <Column size="234"/>
- <Column size="80"/>
- <Column size="70"/>
- <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/>
- <Cell col="1" text="부위"/>
- <Cell col="2" text="종류1"/>
- <Cell col="3" text="종류2"/>
- <Cell col="4" text="상태"/>
- <Cell col="5" text="수행일"/>
- <Cell col="6" text="제거이유"/>
- <Cell col="7" text="기록자"/>
- <Cell col="8" text="기록일"/>
- <Cell col="9" text="등록번호"/>
- <Cell col="10" text="유지환자등록일자"/>
- <Cell col="11" text="recdd"/>
- <Cell col="12" text="rectm"/>
- <Cell col="13" text="status"/>
- </Band>
- <Band id="body">
- <Cell style="background:#b2e6e1ff;background2:#b2e6e1ff;" expr="currow + 1"/>
- <Cell col="1" displaytype="combo" edittype="none" text="bind:partflag" combodataset="ds_init_M0133list_M0133" combocodecol="cdid" combodatacol="cdnm"/>
- <Cell col="2" displaytype="combo" edittype="none" text="bind:kindflag1" combodataset="ds_init_M0134list_M0134" combocodecol="cdid" combodatacol="cdnm"/>
- <Cell col="3" displaytype="combo" edittype="none" text="bind:kindflag2" combodataset="ds_init_M0135list_M0135" combocodecol="cdid" combodatacol="cdnm"/>
- <Cell col="4" displaytype="combo" edittype="none" text="bind:statusflag" combodataset="ds_init_statusflag" combocodecol="value" combodatacol="label"/>
- <Cell col="5" displaytype="date" edittype="none" text="bind:srgopdd" mask="yyyy-MM-dd" calendardisplaynulltype="nulltext"/>
- <Cell col="6" displaytype="combo" edittype="none" text="bind:elmnresnflag" combodataset="ds_init_M0136list_M0136" combocodecol="cdid" combodatacol="cdnm"/>
- <Cell col="7" displaytype="text" edittype="none" text="bind:btdgnm"/>
- <Cell col="8" displaytype="date" edittype="none" text="bind:btdgdd" mask="yyyy-MM-dd" calendardisplaynulltype="nulltext"/>
- <Cell col="9" text="bind:pid"/>
- <Cell col="10" text="bind:maintepatrgstdd"/>
- <Cell col="11" text="bind:recdd"/>
- <Cell col="12" text="bind:rectm"/>
- <Cell col="13" text="bind:status"/>
- </Band>
- </Format>
- </Formats>
- </Grid>
- <Grid id="grd_avfinfo" binddataset="ds_main_avfinfolist_avfinfo" position="absolute 102 228 917 322" style="" anchor="default" selecttype="multirow">
- <Formats>
- <Format id="default">
- <Columns>
- <Column size="24"/>
- <Column size="69"/>
- <Column size="110"/>
- <Column size="270"/>
- <Column size="70"/>
- <Column size="85"/>
- <Column size="85"/>
- <Column size="85"/>
- <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/>
- <Cell col="1" text="부위"/>
- <Cell col="2" text="종류"/>
- <Cell col="3" text="사용혈관"/>
- <Cell col="4" text="모양"/>
- <Cell col="5" text="수술일"/>
- <Cell col="6" text="최초사용일"/>
- <Cell col="7" text="최종사용일"/>
- <Cell col="8" text="기록자"/>
- <Cell col="9" text="기록일"/>
- <Cell col="10" text="등록번호"/>
- <Cell col="11" text="유지환자등록일자"/>
- <Cell col="12" text="recdd"/>
- <Cell col="13" text="rectm"/>
- <Cell col="14" text="status"/>
- </Band>
- <Band id="body">
- <Cell style="background:#b2e6e1ff;background2:#b2e6e1ff;" expr="currow + 1"/>
- <Cell col="1" displaytype="combo" edittype="none" text="bind:partflag" combodataset="ds_init_M0138list_M0138" combocodecol="cdid" combodatacol="cdnm"/>
- <Cell col="2" displaytype="combo" edittype="none" text="bind:kindflag" combodataset="ds_init_M0137list_M0137" combocodecol="cdid" combodatacol="cdnm"/>
- <Cell col="3" displaytype="combo" edittype="none" text="bind:useveslflag" combodataset="ds_init_M0139list_M0139" combocodecol="cdid" combodatacol="cdnm"/>
- <Cell col="4" displaytype="text" edittype="none" text="bind:shapeval"/>
- <Cell col="5" displaytype="date" edittype="none" text="bind:opdd" mask="yyyy-MM-dd" calendardisplaynulltype="nulltext"/>
- <Cell col="6" displaytype="date" edittype="none" text="bind:fstusedd" mask="yyyy-MM-dd" calendardisplaynulltype="none"/>
- <Cell col="7" displaytype="date" edittype="none" text="bind:lastusedd" mask="yyyy-MM-dd" calendardisplaynulltype="nulltext"/>
- <Cell col="8" text="bind:avfrecnm"/>
- <Cell col="9" text="bind:avfrecdd"/>
- <Cell col="10" text="bind:pid"/>
- <Cell col="11" text="bind:maintepatrgstdd"/>
- <Cell col="12" text="bind:recdd"/>
- <Cell col="13" text="bind:rectm"/>
- <Cell col="14" text="bind:status"/>
- </Band>
- </Format>
- </Formats>
- </Grid>
- <Grid id="grd_oprtinfo" binddataset="ds_main_oprtinfolist_oprtinfo" position="absolute 102 326 917 420" style="" anchor="default" selecttype="multirow">
- <Formats>
- <Format id="default">
- <Columns>
- <Column size="24"/>
- <Column size="345"/>
- <Column size="181"/>
- <Column size="163"/>
- <Column size="85"/>
- <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/>
- <Cell col="1" text="시술종류"/>
- <Cell col="2" text="시술원인"/>
- <Cell col="3" text="시술병원"/>
- <Cell col="4" text="시술일"/>
- <Cell col="5" text="기록자"/>
- <Cell col="6" text="기록일"/>
- <Cell col="7" text="등록번호"/>
- <Cell col="8" text="유지환자등록일자"/>
- <Cell col="9" text="recdd"/>
- <Cell col="10" text="rectm"/>
- <Cell col="11" text="status"/>
- </Band>
- <Band id="body">
- <Cell style="background:#b2e6e1ff;background2:#b2e6e1ff;" expr="currow + 1"/>
- <Cell col="1" displaytype="combo" edittype="none" text="bind:oprtkindflag" combodataset="ds_init_M0140list_M0140" combocodecol="cdid" combodatacol="cdnm"/>
- <Cell col="2" displaytype="combo" edittype="none" text="bind:oprtcasflag" combodataset="ds_init_M0141list_M0141" combocodecol="cdid" combodatacol="cdnm"/>
- <Cell col="3" displaytype="text" edittype="none" text="bind:oprthospnm"/>
- <Cell col="4" displaytype="date" edittype="none" text="bind:oprtdd" mask="yyyy-MM-dd" calendardisplaynulltype="nulltext"/>
- <Cell col="5" text="bind:oprtrecnm"/>
- <Cell col="6" text="bind:oprtrecdd"/>
- <Cell col="7" text="bind:pid"/>
- <Cell col="8" text="bind:maintepatrgstdd"/>
- <Cell col="9" text="bind:recdd"/>
- <Cell col="10" text="bind:rectm"/>
- <Cell col="11" text="bind:status"/>
- </Band>
- </Format>
- </Formats>
- </Grid>
- <Static id="caption27" class="cell_1" position="absolute 680 30 775 53" style="align:center middle;" text="기타전화2" anchor="default"/>
- <Edit id="input13" class="output_fix" position="absolute 778 31 913 50" style="align:center ;" anchor="default" autoselect="true"/>
- <TextArea id="textarea1" enable="False" position="absolute 102 422 917 452" style="" anchor="default"/>
- </Layout>
- </Layouts>
- </Tabpage>
- <Tabpage id="case2" anchor="default">
- <Layouts>
- <Layout>
- <Shape id="line10" class="line_2" linetype="horizontal" position="absolute 5 321 914 324" style="" anchor="default"/>
- <Grid id="grd_t_set" binddataset="ds_main_t_setlist_t_setinfo" position="absolute 102 226 916 320" style="background:transparent ;" ontextchanged="group3_switch1_case2_grd_t_set_ontextchanged" anchor="default" selecttype="multirow">
- <Formats>
- <Format id="default">
- <Columns>
- <Column size="24"/>
- <Column size="95"/>
- <Column size="95"/>
- <Column size="584"/>
- <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/>
- <Cell col="1" text="교환일"/>
- <Cell col="2" text="교환예정일"/>
- <Cell col="3" text="Remark"/>
- <Cell col="4" text="pid"/>
- <Cell col="5" text="유지환자등록일자"/>
- <Cell col="6" text="recdd"/>
- <Cell col="7" text="rectm"/>
- <Cell col="8" text="status"/>
- </Band>
- <Band id="body">
- <Cell style="background:#b2e6e1ff;background2:#b2e6e1ff;" expr="currow + 1"/>
- <Cell col="1" displaytype="date" edittype="none" text="bind:exchdd" mask="yyyy-MM-dd" calendardisplaynulltype="nulltext"/>
- <Cell col="2" displaytype="date" edittype="none" text="bind:scheexchdd" mask="yyyy-MM-dd" calendardisplaynulltype="nulltext"/>
- <Cell col="3" displaytype="text" edittype="none" text="bind:remark"/>
- <Cell col="4" text="bind:pid"/>
- <Cell col="5" text="bind:maintepatrgstdd"/>
- <Cell col="6" text="bind:recdd"/>
- <Cell col="7" text="bind:rectm"/>
- <Cell col="8" text="bind:status"/>
- </Band>
- </Format>
- </Formats>
- </Grid>
- <Button id="btn_pop" class="btn2" enable="False" position="absolute 700 422 869 441" style="" text="복막투석실시등록 내역보기" onclick="group3_switch1_case2_btn_pop_onclick" anchor="default"/>
- <Calendar id="ipt_recdd2" class="input_default" enable="False" position="absolute 86 684 176 703" style="align:left ;" anchor="default"/>
- <Edit id="output4" class="output_fix" position="absolute 691 83 779 102" style="align:center ;" anchor="default" readonly="true" autoselect="true"/>
- <Edit id="output21" class="output_fix" position="absolute 495 83 590 102" style="align:center ;" anchor="default" readonly="true" autoselect="true"/>
- <Edit id="input15" class="output_fix" position="absolute 324 684 385 703" style="align:right ;" anchor="default" readonly="true"/>
- <Edit id="output30" class="output_fix" position="absolute 103 107 198 126" style="align:center ;" anchor="default" readonly="true" autoselect="true"/>
- <Edit id="output31" class="output_fix" position="absolute 299 83 394 102" style="align:center ;" anchor="default" readonly="true" autoselect="true"/>
- <Shape id="line18" class="line_1" linetype="horizontal" position="absolute 5 445 914 449" style="strokepen:3 solid #33bbbbff;" anchor="default"/>
- <Static id="caption31" class="tit_2" position="absolute 8 61 91 77" style="" text="환자정보" anchor="default"/>
- <Edit id="output33" class="output_fix" position="absolute 299 107 394 126" style="align:center ;" anchor="default" readonly="true" autoselect="true"/>
- <Static id="caption32" class="cell_1" position="absolute 5 226 100 322" style="align:center middle;" text="T - Set" anchor="default"/>
- <Edit id="output35" class="output_fix" position="absolute 495 107 590 126" style="align:center ;" anchor="default" readonly="true" autoselect="true"/>
- <Static id="caption36" class="cell_1" position="absolute 5 323 100 419" style="align:center middle;" text="감염관리" anchor="default"/>
- <Static id="caption37" class="tit_2" position="absolute 8 9 103 25" style="" text="환자 연락처" anchor="default"/>
- <Static id="caption60" class="tit_2" position="absolute 10 428 101 444" style="" text="상담내용" anchor="default"/>
- <Shape id="line20" class="line_2" linetype="horizontal" position="absolute 5 224 914 227" style="" anchor="default"/>
- <Static id="caption64" class="cell_1" position="absolute 5 82 100 105" style="align:center middle;" text="등록번호" anchor="default"/>
- <Static id="caption65" class="cell_1" position="absolute 5 682 83 705" style="align:center middle;" text="기록일시" anchor="default"/>
- <Shape id="line22" class="line_3" linetype="horizontal" position="absolute 5 419 914 422" style="" anchor="default"/>
- <Shape id="line23" class="line_1" linetype="horizontal" position="absolute 5 26 914 30" style="strokepen:3 solid #33bbbbff;" anchor="default"/>
- <Static id="caption67" class="cell_1" position="absolute 243 682 321 705" style="align:center middle;" text="기록자" anchor="default"/>
- <Button id="btn_savepdcnstcnts" class="btn5" enable="False" position="absolute 871 422 913 441" style="" text="저장" onclick="group3_switch1_case2_btn_savepdcnstcnts_onclick" anchor="default"/>
- <Static id="caption69" class="cell_1" position="absolute 201 82 296 105" style="align:center middle;" text="환 자 명" anchor="default"/>
- <Static id="caption70" class="cell_1" position="absolute 593 82 688 105" style="align:center middle;" text="투석구분" anchor="default"/>
- <Shape id="line24" class="line_3" linetype="horizontal" position="absolute 5 52 914 55" style="" anchor="default"/>
- <Static id="caption72" class="cell_1" position="absolute 397 82 492 105" style="align:center middle;" text="S / A" anchor="default"/>
- <Static id="caption73" class="cell_1" position="absolute 5 106 100 129" style="align:center middle;" text="최초투석시작일" anchor="default"/>
- <Shape id="line25" class="line_1" linetype="horizontal" position="absolute 5 78 914 82" style="strokepen:3 solid #33bbbbff;" anchor="default"/>
- <Static id="caption74" class="cell_1" position="absolute 201 106 296 129" style="align:center middle;" text="본원투석시작일" anchor="default"/>
- <Edit id="output42" class="output_fix" position="absolute 388 684 453 703" style="align:left ;" anchor="default" readonly="true"/>
- <Static id="caption75" class="cell_1" position="absolute 5 130 100 225" style="align:center middle;" text="복막투석도관" anchor="default"/>
- <Shape id="line26" class="line_2" linetype="horizontal" position="absolute 5 104 914 107" style="" anchor="default"/>
- <Static id="caption76" class="cell_1" position="absolute 397 106 492 129" style="align:center middle;" text="최종방문일" anchor="default"/>
- <MaskEdit id="ipt_rectm2" class="input_default" enable="False" mask="hh:nn" position="absolute 179 684 219 703" style="align:left ;" anchor="default"/>
- <Shape id="line30" class="line_2" linetype="horizontal" position="absolute 5 128 914 131" style="" anchor="default"/>
- <Button id="btn_clock2" class="icon_clock" position="absolute 222 685 238 701" style="" text="" onclick="group3_switch1_case2_btn_clock2_onclick" anchor="default"/>
- <Edit id="output43" class="output_fix" position="absolute 103 83 198 102" style="align:center ;" anchor="default" readonly="true" autoselect="true"/>
- <Shape id="line19" class="line_3" linetype="horizontal" position="absolute 5 705 914 708" style="" anchor="default"/>
- <Static id="caption23" class="cell_1" position="absolute 5 30 100 53" style="align:center middle;" text="집 전 화" anchor="default"/>
- <Edit id="input16" class="output_fix" position="absolute 778 31 913 50" style="align:center ;" anchor="default" autoselect="true"/>
- <Static id="caption24" class="cell_1" position="absolute 231 30 326 53" style="align:center middle;" text="핸 드 폰" anchor="default"/>
- <Static id="caption25" class="cell_1" position="absolute 460 30 555 53" style="align:center middle;" text="기타전화1" anchor="default"/>
- <Static id="caption26" class="cell_1" position="absolute 680 30 775 53" style="align:center middle;" text="기타전화2" anchor="default"/>
- <Edit id="output2" class="output_fix" position="absolute 329 31 457 50" style="align:center ;" anchor="default" readonly="true" autoselect="true"/>
- <Edit id="output3" class="output_fix" position="absolute 103 31 228 50" style="align:center ;" anchor="default" readonly="true" autoselect="true"/>
- <Edit id="input18" class="output_fix" position="absolute 558 31 678 50" style="align:center ;" anchor="default" autoselect="true"/>
- <Grid id="grd_infc" binddataset="ds_main_infclist_infcinfo" position="absolute 102 323 916 417" style="" onlbuttonup="group3_switch1_case2_grd_infc_onlbuttonup" ontextchanged="group3_switch1_case2_grd_infc_ontextchanged" anchor="default" selecttype="multirow">
- <Formats>
- <Format id="default">
- <Columns>
- <Column size="24"/>
- <Column size="70"/>
- <Column size="80"/>
- <Column size="140"/>
- <Column size="96"/>
- <Column size="110"/>
- <Column size="85"/>
- <Column size="193"/>
- <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/>
- <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="Remark"/>
- <Cell col="8" text="pid"/>
- <Cell col="9" text="유지환자등록일자"/>
- <Cell col="10" text="recdd"/>
- <Cell col="11" text="rectm"/>
- <Cell col="12" text="status"/>
- </Band>
- <Band id="body">
- <Cell style="background:#b2e6e1ff;background2:#b2e6e1ff;" expr="currow + 1"/>
- <Cell col="1" displaytype="date" edittype="none" text="bind:genrday" mask="yyyy-MM-dd" calendardisplaynulltype="nulltext"/>
- <Cell col="2" displaytype="combo" edittype="none" text="bind:infckindflag" combodataset="ds_init_M0145list_M0145" combocodecol="cdid" combodatacol="cdnm"/>
- <Cell col="3" displaytype="combo" edittype="none" text="bind:casbacflag" combodataset="ds_init_M0146list_M0146" combocodecol="cdid" combodatacol="cdnm"/>
- <Cell col="4" displaytype="text" edittype="none" text="bind:antibionm"/>
- <Cell col="5" displaytype="text" edittype="none" text="bind:antibiouseterm"/>
- <Cell col="6" displaytype="combo" edittype="none" text="bind:afterflag" combodataset="ds_init_M0147list_M0147" combocodecol="cdid" combodatacol="cdnm"/>
- <Cell col="7" displaytype="text" edittype="none" text="bind:remark"/>
- <Cell col="8" text="bind:pid"/>
- <Cell col="9" text="bind:maintepatrgstdd"/>
- <Cell col="10" text="bind:recdd"/>
- <Cell col="11" text="bind:rectm"/>
- <Cell col="12" text="bind:status"/>
- </Band>
- </Format>
- </Formats>
- </Grid>
- <Grid id="grd_peritcoduit" binddataset="ds_main_peritcoduitlist_peritcoduitinfo" position="absolute 102 129 916 223" style="" ontextchanged="group3_switch1_case2_grd_peritcoduit_ontextchanged" anchor="default" selecttype="multirow">
- <Formats>
- <Format id="default">
- <Columns>
- <Column size="24"/>
- <Column size="180"/>
- <Column size="61"/>
- <Column size="55"/>
- <Column size="78"/>
- <Column size="245"/>
- <Column size="80"/>
- <Column size="75"/>
- <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/>
- <Cell col="1" text="Cath. 종류"/>
- <Cell col="2" text="부위"/>
- <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 style="background:#b2e6e1ff;background2:#b2e6e1ff;" expr="currow + 1"/>
- <Cell col="1" displaytype="combo" edittype="none" text="bind:cathkindflag" combodataset="ds_init_M0142list_M0142" combocodecol="cdid" combodatacol="cdnm"/>
- <Cell col="2" displaytype="combo" edittype="none" text="bind:partflag" combodataset="ds_init_M0133list_M0133" combocodecol="cdid" combodatacol="cdnm"/>
- <Cell col="3" displaytype="combo" edittype="none" text="bind:statusflag" combodataset="ds_init_statusflag" combocodecol="value" combodatacol="label"/>
- <Cell col="4" displaytype="date" edittype="none" text="bind:execdd" mask="yyyy-MM-dd" calendardisplaynulltype="nulltext"/>
- <Cell col="5" displaytype="combo" edittype="none" text="bind:elmnresnflag" combodataset="ds_init_M0144list_M0144" combocodecol="cdid" combodatacol="cdnm"/>
- <Cell col="6" displaytype="text" edittype="none" text="bind:htdgnm"/>
- <Cell col="7" displaytype="date" edittype="none" text="bind:htdgdd" mask="yyyy-MM-dd" calendardisplaynulltype="nulltext"/>
- <Cell col="8" text="bind:pid"/>
- <Cell col="9" text="bind:maintepatrgstdd"/>
- <Cell col="10" text="bind:recdd"/>
- <Cell col="11" text="bind:rectm"/>
- <Cell col="12" text="bind:status"/>
- </Band>
- </Format>
- </Formats>
- </Grid>
- <TextArea id="txt_pdcnstcnts" enable="False" position="absolute 5 449 914 681" style="" anchor="default"/>
- </Layout>
- </Layouts>
- </Tabpage>
- </Tabpages>
- </Tab>
- <Static id="caption20" class="tit_2" position="absolute 5 54 127 71" style="" text="유지환자 리스트" anchor="default"/>
- <Radio datacolumn="datacolumn" codecolumn="codecolumn" columncount="-1" rowcount="-1" id="rdo_dialflag" position="absolute 140 52 223 68" style="" onitemchanged="group3_rdo_dialflag_onitemchanged" anchor="default">
- <Dataset id="innerdataset">
- <ColumnInfo>
- <Column id="codecolumn"/>
- <Column id="datacolumn"/>
- </ColumnInfo>
- <Rows>
- <Row>
- <Col id="codecolumn">H</Col>
- <Col id="datacolumn">HD</Col>
- </Row>
- <Row>
- <Col id="codecolumn">P</Col>
- <Col id="datacolumn">PD</Col>
- </Row>
- </Rows>
- </Dataset>
- </Radio>
- <Button id="btn_pdreccase" class="btn_tab" position="absolute 355 4 438 28" style="" text="PD상담기록" onclick="group3_btn_pdreccase_onclick" anchor="default"/>
- <Static id="caption42" class="tit_2" position="absolute 5 419 126 435" style="" text="상담기록 리스트" anchor="default"/>
- <Shape id="line27" class="line_1" linetype="horizontal" position="absolute 0 436 270 441" style="strokepen:3 solid #33bbbbff;" anchor="default"/>
- <Grid id="grd_rechistinfo" binddataset="ds_main_cnstcntshistlist_cnstcntshistinfo" position="absolute 0 440 270 740" style="" oncelldblclick="group3_grd_rechistinfo_oncelldblclick" anchor="default" selecttype="multirow">
- <Formats>
- <Format id="default">
- <Columns>
- <Column size="24"/>
- <Column size="89"/>
- <Column size="60"/>
- <Column size="78"/>
- <Column size="0"/>
- <Column size="0"/>
- </Columns>
- <Rows>
- <Row size="24" band="head"/>
- <Row size="24"/>
- </Rows>
- <Band id="head">
- <Cell/>
- <Cell col="1" text="기록일자"/>
- <Cell col="2" text="기록시간"/>
- <Cell col="3" text="기록자"/>
- <Cell col="4" text="pid"/>
- <Cell col="5" text="maintepatrgstdd"/>
- </Band>
- <Band id="body">
- <Cell style="background:#b2e6e1ff;background2:#b2e6e1ff;selectbackground:#ffd9ffff;" expr="currow + 1"/>
- <Cell col="1" style="selectbackground:#ffd9ffff;" text="bind:recdd"/>
- <Cell col="2" style="selectbackground:#ffd9ffff;" text="bind:rectm"/>
- <Cell col="3" style="selectbackground:#ffd9ffff;" text="bind:recnm"/>
- <Cell col="4" text="bind:pid"/>
- <Cell col="5" text="bind:maintepatrgstdd"/>
- </Band>
- </Format>
- </Formats>
- </Grid>
- <Button id="btn_crt" class="btn2" enable="False" position="absolute 204 413 268 432" style="" text="신규등록" onclick="group3_btn_crt_onclick" anchor="default"/>
- <Edit id="opt_chkpid" class="output_fix" position="absolute 605 6 675 25" style="" anchor="default" readonly="true" visible="false"/>
- </Layout>
- </Layouts>
- </Div>
- <Static id="caption6" class="tit_1" position="absolute 0 0 95 23" style="" text="상담기록"/>
- <Div id="grp_btn" position="absolute 0 765 1195 792" style=""/>
- </Layout>
- </Layouts>
- <Objects>
- <Dataset id="ds_temp_getcnstcntsinfo_getcnstcnts" firefirstcount="0" firenextcount="0" useclientlayout="false" updatecontrol="true" enableevent="true" loadkeymode="keep" loadfiltermode="keep" reversesubsum="keep">
- <ColumnInfo>
- <Column id="cnstcnts" type="STRING" size="256"/>
- </ColumnInfo>
- <Rows>
- <Row>
- <Col id="cnstcnts"/>
- </Row>
- </Rows>
- </Dataset>
- <Dataset id="ds_temp_gettoplist" firefirstcount="0" firenextcount="0" useclientlayout="false" updatecontrol="true" enableevent="true" loadkeymode="keep" loadfiltermode="keep" reversesubsum="keep">
- <ColumnInfo>
- <Column id="gettopinfo" type="STRING" size="256"/>
- </ColumnInfo>
- <Rows>
- <Row>
- <Col id="gettopinfo"/>
- </Row>
- </Rows>
- </Dataset>
- <Dataset id="ds_main_chklist" firefirstcount="0" firenextcount="0" useclientlayout="false" updatecontrol="true" enableevent="true" loadkeymode="keep" loadfiltermode="keep" reversesubsum="keep">
- <ColumnInfo/>
- </Dataset>
- <Dataset id="ds_main_cnstcntshistlist" firefirstcount="0" firenextcount="0" useclientlayout="false" updatecontrol="true" enableevent="true" loadkeymode="keep" loadfiltermode="keep" reversesubsum="keep">
- <ColumnInfo/>
- </Dataset>
- <Dataset id="ds_main_infclist" firefirstcount="0" firenextcount="0" useclientlayout="false" updatecontrol="true" enableevent="true" loadkeymode="keep" loadfiltermode="keep" reversesubsum="keep">
- <ColumnInfo/>
- </Dataset>
- <Dataset id="ds_main_hmdlspipeinfolist" firefirstcount="0" firenextcount="0" useclientlayout="false" updatecontrol="true" enableevent="true" loadkeymode="keep" loadfiltermode="keep" reversesubsum="keep">
- <ColumnInfo/>
- </Dataset>
- <Dataset id="ds_main_cnstcntshistlist_cnstcntshistinfo" firefirstcount="0" firenextcount="0" useclientlayout="false" updatecontrol="true" enableevent="true" loadkeymode="keep" loadfiltermode="keep" reversesubsum="keep">
- <ColumnInfo>
- <Column id="recdd" type="STRING" size="256"/>
- <Column id="rectm" type="STRING" size="256"/>
- <Column id="recnm" type="STRING" size="256"/>
- <Column id="pid" type="STRING" size="256"/>
- <Column id="maintepatrgstdd" type="STRING" size="256"/>
- </ColumnInfo>
- <Rows>
- <Row>
- <Col id="recdd"/>
- <Col id="rectm"/>
- <Col id="recnm"/>
- <Col id="pid"/>
- <Col id="maintepatrgstdd"/>
- </Row>
- </Rows>
- </Dataset>
- <Dataset id="ds_main_hdmatnpatlist_hdmatnpatinfo" firefirstcount="0" firenextcount="0" useclientlayout="false" updatecontrol="true" enableevent="true" loadkeymode="keep" loadfiltermode="keep" reversesubsum="keep">
- <ColumnInfo>
- <Column id="pid" type="STRING" size="256"/>
- <Column id="hngnm" type="STRING" size="256"/>
- <Column id="sexage" type="STRING" size="256"/>
- <Column id="maintepatrgstdd" type="STRING" size="256"/>
- <Column id="histstat" type="STRING" size="256"/>
- </ColumnInfo>
- <Rows>
- <Row>
- <Col id="pid"/>
- <Col id="hngnm"/>
- <Col id="sexage"/>
- <Col id="maintepatrgstdd"/>
- <Col id="histstat"/>
- </Row>
- </Rows>
- </Dataset>
- <Dataset id="ds_main" firefirstcount="0" firenextcount="0" useclientlayout="false" updatecontrol="true" enableevent="true" loadkeymode="keep" loadfiltermode="keep" reversesubsum="keep">
- <ColumnInfo>
- <Column id="paminfo" type="STRING" size="256"/>
- </ColumnInfo>
- </Dataset>
- <Dataset id="ds_main_reclist" firefirstcount="0" firenextcount="0" useclientlayout="false" updatecontrol="true" enableevent="true" loadkeymode="keep" loadfiltermode="keep" reversesubsum="keep">
- <ColumnInfo/>
- </Dataset>
- <Dataset id="ds_temp_getcnstcntsinfo" firefirstcount="0" firenextcount="0" useclientlayout="false" updatecontrol="true" enableevent="true" loadkeymode="keep" loadfiltermode="keep" reversesubsum="keep">
- <ColumnInfo/>
- </Dataset>
- <Dataset id="ds_init" firefirstcount="0" firenextcount="0" useclientlayout="false" updatecontrol="true" enableevent="true" loadkeymode="keep" loadfiltermode="keep" reversesubsum="keep">
- <ColumnInfo/>
- </Dataset>
- <Dataset id="ds_main_t_setlist" firefirstcount="0" firenextcount="0" useclientlayout="false" updatecontrol="true" enableevent="true" loadkeymode="keep" loadfiltermode="keep" reversesubsum="keep">
- <ColumnInfo/>
- </Dataset>
- <Dataset id="ds_main_reclist_recinfo" firefirstcount="0" firenextcount="0" useclientlayout="false" updatecontrol="true" enableevent="true" loadkeymode="keep" loadfiltermode="keep" reversesubsum="keep">
- <ColumnInfo>
- <Column id="recid" type="STRING" size="256"/>
- <Column id="recnm" type="STRING" size="256"/>
- <Column id="recdd" type="STRING" size="256"/>
- <Column id="rectm" type="STRING" size="256"/>
- <Column id="pid" type="STRING" size="256"/>
- <Column id="maintepatrgstdd" type="STRING" size="256"/>
- <Column id="dialflag" type="STRING" size="256"/>
- <Column id="cnstrecflag" type="STRING" size="256"/>
- <Column id="cnstcnts" type="STRING" size="256"/>
- <Column id="status" type="STRING" size="256"/>
- </ColumnInfo>
- <Rows>
- <Row>
- <Col id="recid"/>
- <Col id="recnm"/>
- <Col id="recdd"/>
- <Col id="rectm"/>
- <Col id="pid"/>
- <Col id="maintepatrgstdd"/>
- <Col id="dialflag"/>
- <Col id="cnstrecflag"/>
- <Col id="cnstcnts"/>
- <Col id="status"/>
- </Row>
- </Rows>
- </Dataset>
- <Dataset id="ds_main_pdmatnpatlist" firefirstcount="0" firenextcount="0" useclientlayout="false" updatecontrol="true" enableevent="true" loadkeymode="keep" loadfiltermode="keep" reversesubsum="keep">
- <ColumnInfo/>
- </Dataset>
- <Dataset id="ds_main_hmdlspipeinfolist_hmdlspipeinfo" firefirstcount="0" firenextcount="0" useclientlayout="false" updatecontrol="true" enableevent="true" loadkeymode="keep" loadfiltermode="keep" reversesubsum="keep">
- <ColumnInfo>
- <Column id="lstbtdgrecdt" type="STRING" size="256"/>
- <Column id="partflag" type="STRING" size="256"/>
- <Column id="kindflag1" type="STRING" size="256"/>
- <Column id="kindflag2" type="STRING" size="256"/>
- <Column id="srgopdd" type="STRING" size="256"/>
- <Column id="exchdd" type="STRING" size="256"/>
- <Column id="elmnresnflag" type="STRING" size="256"/>
- <Column id="btdgnm" type="STRING" size="256"/>
- <Column id="btdgdd" type="STRING" size="256"/>
- <Column id="pid" type="STRING" size="256"/>
- <Column id="maintepatrgstdd" type="STRING" size="256"/>
- <Column id="recdd" type="STRING" size="256"/>
- <Column id="rectm" type="STRING" size="256"/>
- <Column id="status" type="STRING" size="256"/>
- <Column id="statusflag" type="STRING" size="256"/>
- </ColumnInfo>
- <Rows>
- <Row>
- <Col id="lstbtdgrecdt"/>
- <Col id="partflag"/>
- <Col id="kindflag1"/>
- <Col id="kindflag2"/>
- <Col id="srgopdd"/>
- <Col id="exchdd"/>
- <Col id="elmnresnflag"/>
- <Col id="btdgnm"/>
- <Col id="btdgdd"/>
- <Col id="pid"/>
- <Col id="maintepatrgstdd"/>
- <Col id="recdd"/>
- <Col id="rectm"/>
- <Col id="status"/>
- <Col id="statusflag"/>
- </Row>
- </Rows>
- </Dataset>
- <Dataset id="ds_main_pdmatnpatlist_pdmatnpatinfo" firefirstcount="0" firenextcount="0" useclientlayout="false" updatecontrol="true" enableevent="true" loadkeymode="keep" loadfiltermode="keep" reversesubsum="keep">
- <ColumnInfo>
- <Column id="pid" type="STRING" size="256"/>
- <Column id="hngnm" type="STRING" size="256"/>
- <Column id="sexage" type="STRING" size="256"/>
- <Column id="maintepatrgstdd" type="STRING" size="256"/>
- <Column id="histstat" type="STRING" size="256"/>
- </ColumnInfo>
- <Rows>
- <Row>
- <Col id="pid"/>
- <Col id="hngnm"/>
- <Col id="sexage"/>
- <Col id="maintepatrgstdd"/>
- <Col id="histstat"/>
- </Row>
- </Rows>
- </Dataset>
- <Dataset id="ds_temp" firefirstcount="0" firenextcount="0" useclientlayout="false" updatecontrol="true" enableevent="true" loadkeymode="keep" loadfiltermode="keep" reversesubsum="keep">
- <ColumnInfo>
- <Column id="paminfo" type="STRING" size="256"/>
- </ColumnInfo>
- </Dataset>
- <Dataset id="ds_main_peritcoduitlist_peritcoduitinfo" firefirstcount="0" firenextcount="0" useclientlayout="false" updatecontrol="true" enableevent="true" loadkeymode="keep" loadfiltermode="keep" reversesubsum="keep">
- <ColumnInfo>
- <Column id="lsthtdgrecdt" type="STRING" size="256"/>
- <Column id="statusflag" type="STRING" size="256"/>
- <Column id="execdd" type="STRING" size="256"/>
- <Column id="cathkindflag" type="STRING" size="256"/>
- <Column id="partflag" type="STRING" size="256"/>
- <Column id="elmnresnflag" type="STRING" size="256"/>
- <Column id="pid" type="STRING" size="256"/>
- <Column id="maintepatrgstdd" type="STRING" size="256"/>
- <Column id="recdd" type="STRING" size="256"/>
- <Column id="rectm" type="STRING" size="256"/>
- <Column id="status" type="STRING" size="256"/>
- <Column id="htdgnm" type="STRING" size="256"/>
- <Column id="htdgdd" type="STRING" size="256"/>
- </ColumnInfo>
- <Rows>
- <Row>
- <Col id="lsthtdgrecdt"/>
- <Col id="statusflag"/>
- <Col id="execdd"/>
- <Col id="cathkindflag"/>
- <Col id="partflag"/>
- <Col id="elmnresnflag"/>
- <Col id="pid"/>
- <Col id="maintepatrgstdd"/>
- <Col id="recdd"/>
- <Col id="rectm"/>
- <Col id="status"/>
- <Col id="htdgnm"/>
- <Col id="htdgdd"/>
- </Row>
- </Rows>
- </Dataset>
- <Dataset id="ds_main_avfinfolist" firefirstcount="0" firenextcount="0" useclientlayout="false" updatecontrol="true" enableevent="true" loadkeymode="keep" loadfiltermode="keep" reversesubsum="keep">
- <ColumnInfo/>
- </Dataset>
- <Dataset id="ds_main_peritcoduitlist" firefirstcount="0" firenextcount="0" useclientlayout="false" updatecontrol="true" enableevent="true" loadkeymode="keep" loadfiltermode="keep" reversesubsum="keep">
- <ColumnInfo/>
- </Dataset>
- <Dataset id="ds_main_chklist_chkinfo" firefirstcount="0" firenextcount="0" useclientlayout="false" updatecontrol="true" enableevent="true" loadkeymode="keep" loadfiltermode="keep" reversesubsum="keep">
- <ColumnInfo>
- <Column id="pid" type="STRING" size="256"/>
- </ColumnInfo>
- <Rows>
- <Row>
- <Col id="pid"/>
- </Row>
- </Rows>
- </Dataset>
- <Dataset id="ds_send" firefirstcount="0" firenextcount="0" useclientlayout="false" updatecontrol="true" enableevent="true" loadkeymode="keep" loadfiltermode="keep" reversesubsum="keep">
- <ColumnInfo>
- <Column id="reqdata" type="STRING" size="256"/>
- <Column id="savedata" type="STRING" size="256"/>
- </ColumnInfo>
- <Rows>
- <Row>
- <Col id="reqdata"/>
- <Col id="savedata"/>
- </Row>
- </Rows>
- </Dataset>
- <Dataset id="ds_main_avfinfolist_avfinfo" firefirstcount="0" firenextcount="0" useclientlayout="false" updatecontrol="true" enableevent="true" loadkeymode="keep" loadfiltermode="keep" reversesubsum="keep">
- <ColumnInfo>
- <Column id="lstwvrmrecdt" type="STRING" size="256"/>
- <Column id="partflag" type="STRING" size="256"/>
- <Column id="kindflag" type="STRING" size="256"/>
- <Column id="useveslflag" type="STRING" size="256"/>
- <Column id="shapeval" type="STRING" size="256"/>
- <Column id="opdd" type="STRING" size="256"/>
- <Column id="fstusedd" type="STRING" size="256"/>
- <Column id="lastusedd" type="STRING" size="256"/>
- <Column id="avfrecnm" type="STRING" size="256"/>
- <Column id="avfrecdd" type="STRING" size="256"/>
- <Column id="pid" type="STRING" size="256"/>
- <Column id="maintepatrgstdd" type="STRING" size="256"/>
- <Column id="recdd" type="STRING" size="256"/>
- <Column id="rectm" type="STRING" size="256"/>
- <Column id="status" type="STRING" size="256"/>
- </ColumnInfo>
- <Rows>
- <Row>
- <Col id="lstwvrmrecdt"/>
- <Col id="partflag"/>
- <Col id="kindflag"/>
- <Col id="useveslflag"/>
- <Col id="shapeval"/>
- <Col id="opdd"/>
- <Col id="fstusedd"/>
- <Col id="lastusedd"/>
- <Col id="avfrecnm"/>
- <Col id="avfrecdd"/>
- <Col id="pid"/>
- <Col id="maintepatrgstdd"/>
- <Col id="recdd"/>
- <Col id="rectm"/>
- <Col id="status"/>
- </Row>
- </Rows>
- </Dataset>
- <Dataset id="ds_main_condition" firefirstcount="0" firenextcount="0" useclientlayout="false" updatecontrol="true" enableevent="true" loadkeymode="keep" loadfiltermode="keep" reversesubsum="keep">
- <ColumnInfo>
- <Column id="pid" type="STRING" size="256"/>
- <Column id="dialflag" type="STRING" size="256"/>
- </ColumnInfo>
- <Rows>
- <Row>
- <Col id="pid"/>
- <Col id="dialflag">H</Col>
- </Row>
- </Rows>
- </Dataset>
- <Dataset id="ds_main_infclist_infcinfo" firefirstcount="0" firenextcount="0" useclientlayout="false" updatecontrol="true" enableevent="true" loadkeymode="keep" loadfiltermode="keep" reversesubsum="keep">
- <ColumnInfo>
- <Column id="lstinfmrecdt" type="STRING" size="256"/>
- <Column id="statusflag" type="STRING" size="256"/>
- <Column id="infckindflag" type="STRING" size="256"/>
- <Column id="casbacflag" type="STRING" size="256"/>
- <Column id="antibionm" type="STRING" size="256"/>
- <Column id="antibiouseterm" type="STRING" size="256"/>
- <Column id="afterflag" type="STRING" size="256"/>
- <Column id="infcrecnm" type="STRING" size="256"/>
- <Column id="infcrecdd" type="STRING" size="256"/>
- <Column id="infcrectm" type="STRING" size="256"/>
- <Column id="pid" type="STRING" size="256"/>
- <Column id="maintepatrgstdd" type="STRING" size="256"/>
- <Column id="recdd" type="STRING" size="256"/>
- <Column id="rectm" type="STRING" size="256"/>
- <Column id="status" type="STRING" size="256"/>
- </ColumnInfo>
- <Rows>
- <Row>
- <Col id="lstinfmrecdt"/>
- <Col id="statusflag"/>
- <Col id="infckindflag"/>
- <Col id="casbacflag"/>
- <Col id="antibionm"/>
- <Col id="antibiouseterm"/>
- <Col id="afterflag"/>
- <Col id="infcrecnm"/>
- <Col id="infcrecdd"/>
- <Col id="infcrectm"/>
- <Col id="pid"/>
- <Col id="maintepatrgstdd"/>
- <Col id="recdd"/>
- <Col id="rectm"/>
- <Col id="status"/>
- </Row>
- </Rows>
- </Dataset>
- <Dataset id="ds_main_getbaselist_getbaseinfo" firefirstcount="0" firenextcount="0" useclientlayout="false" updatecontrol="true" enableevent="true" loadkeymode="keep" loadfiltermode="keep" reversesubsum="keep">
- <ColumnInfo>
- <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="pid" type="STRING" size="256"/>
- <Column id="hngnm" type="STRING" size="256"/>
- <Column id="sexage" type="STRING" size="256"/>
- <Column id="fstdialfromdd" type="STRING" size="256"/>
- <Column id="lstdialfromdd" type="STRING" size="256"/>
- <Column id="roothospdialfromdd" type="STRING" size="256"/>
- <Column id="dialflag" type="STRING" size="256"/>
- <Column id="schedulinfo" type="STRING" size="256"/>
- </ColumnInfo>
- <Rows>
- <Row>
- <Col id="hometel"/>
- <Col id="mpphontel"/>
- <Col id="etctel1"/>
- <Col id="etctel2"/>
- <Col id="pid"/>
- <Col id="hngnm"/>
- <Col id="sexage"/>
- <Col id="fstdialfromdd"/>
- <Col id="lstdialfromdd"/>
- <Col id="roothospdialfromdd"/>
- <Col id="dialflag"/>
- <Col id="schedulinfo"/>
- </Row>
- </Rows>
- </Dataset>
- <Dataset id="ds_hidden" firefirstcount="0" firenextcount="0" useclientlayout="false" updatecontrol="true" enableevent="true" loadkeymode="keep" loadfiltermode="keep" reversesubsum="keep">
- <ColumnInfo>
- <Column id="hidden" type="STRING" size="256"/>
- </ColumnInfo>
- </Dataset>
- <Dataset id="ds_main_oprtinfolist" firefirstcount="0" firenextcount="0" useclientlayout="false" updatecontrol="true" enableevent="true" loadkeymode="keep" loadfiltermode="keep" reversesubsum="keep">
- <ColumnInfo/>
- </Dataset>
- <Dataset id="ds_main_t_setlist_t_setinfo" firefirstcount="0" firenextcount="0" useclientlayout="false" updatecontrol="true" enableevent="true" loadkeymode="keep" loadfiltermode="keep" reversesubsum="keep">
- <ColumnInfo>
- <Column id="lsttstmrecdt" type="STRING" size="256"/>
- <Column id="exchdd" type="STRING" size="256"/>
- <Column id="scheexchdd" type="STRING" size="256"/>
- <Column id="remark" type="STRING" size="256"/>
- <Column id="pid" type="STRING" size="256"/>
- <Column id="maintepatrgstdd" type="STRING" size="256"/>
- <Column id="recdd" type="STRING" size="256"/>
- <Column id="rectm" type="STRING" size="256"/>
- <Column id="status" type="STRING" size="256"/>
- </ColumnInfo>
- <Rows>
- <Row>
- <Col id="lsttstmrecdt"/>
- <Col id="exchdd"/>
- <Col id="scheexchdd"/>
- <Col id="remark"/>
- <Col id="pid"/>
- <Col id="maintepatrgstdd"/>
- <Col id="recdd"/>
- <Col id="rectm"/>
- <Col id="status"/>
- </Row>
- </Rows>
- </Dataset>
- <Dataset id="ds_main_oprtinfolist_oprtinfo" firefirstcount="0" firenextcount="0" useclientlayout="false" updatecontrol="true" enableevent="true" loadkeymode="keep" loadfiltermode="keep" reversesubsum="keep">
- <ColumnInfo>
- <Column id="lstoprtrecdt" type="STRING" size="256"/>
- <Column id="oprtkindflag" type="STRING" size="256"/>
- <Column id="oprtcasflag" type="STRING" size="256"/>
- <Column id="oprthospnm" type="STRING" size="256"/>
- <Column id="oprtdd" type="STRING" size="256"/>
- <Column id="oprtrecnm" type="STRING" size="256"/>
- <Column id="oprtrecdd" type="STRING" size="256"/>
- <Column id="pid" type="STRING" size="256"/>
- <Column id="maintepatrgstdd" type="STRING" size="256"/>
- <Column id="recdd" type="STRING" size="256"/>
- <Column id="rectm" type="STRING" size="256"/>
- <Column id="status" type="STRING" size="256"/>
- </ColumnInfo>
- <Rows>
- <Row>
- <Col id="lstoprtrecdt"/>
- <Col id="oprtkindflag"/>
- <Col id="oprtcasflag"/>
- <Col id="oprthospnm"/>
- <Col id="oprtdd"/>
- <Col id="oprtrecnm"/>
- <Col id="oprtrecdd"/>
- <Col id="pid"/>
- <Col id="maintepatrgstdd"/>
- <Col id="recdd"/>
- <Col id="rectm"/>
- <Col id="status"/>
- </Row>
- </Rows>
- </Dataset>
- <Dataset id="ds_main_hdmatnpatlist" firefirstcount="0" firenextcount="0" useclientlayout="false" updatecontrol="true" enableevent="true" loadkeymode="keep" loadfiltermode="keep" reversesubsum="keep">
- <ColumnInfo/>
- </Dataset>
- <Dataset id="ds_send_savedata" firefirstcount="0" firenextcount="0" useclientlayout="false" updatecontrol="true" enableevent="true" loadkeymode="keep" loadfiltermode="keep" reversesubsum="false"/>
- <Dataset id="ds_send_reqdata" firefirstcount="0" firenextcount="0" useclientlayout="false" updatecontrol="true" enableevent="true" loadkeymode="keep" loadfiltermode="keep" reversesubsum="false"/>
- <Dataset id="ds_temp_gettoplist_gettopinfo" firefirstcount="0" firenextcount="0" useclientlayout="false" updatecontrol="true" enableevent="true" loadkeymode="keep" loadfiltermode="keep" reversesubsum="false"/>
- <Dataset id="ds_init_M0147list_M0147" firefirstcount="0" firenextcount="0" useclientlayout="false" updatecontrol="true" enableevent="true" loadkeymode="keep" loadfiltermode="keep" reversesubsum="keep">
- <ColumnInfo>
- <Column id="cdnm" type="STRING" size="256"/>
- <Column id="cdid" type="STRING" size="256"/>
- </ColumnInfo>
- <Rows>
- <Row>
- <Col id="cdnm"/>
- <Col id="cdid"/>
- </Row>
- </Rows>
- </Dataset>
- <Dataset id="ds_init_M0137list_M0137" firefirstcount="0" firenextcount="0" useclientlayout="false" updatecontrol="true" enableevent="true" loadkeymode="keep" loadfiltermode="keep" reversesubsum="keep">
- <ColumnInfo>
- <Column id="cdnm" type="STRING" size="256"/>
- <Column id="cdid" type="STRING" size="256"/>
- </ColumnInfo>
- <Rows>
- <Row>
- <Col id="cdnm"/>
- <Col id="cdid"/>
- </Row>
- </Rows>
- </Dataset>
- <Dataset id="ds_init_M0146list_M0146" firefirstcount="0" firenextcount="0" useclientlayout="false" updatecontrol="true" enableevent="true" loadkeymode="keep" loadfiltermode="keep" reversesubsum="keep">
- <ColumnInfo>
- <Column id="cdnm" type="STRING" size="256"/>
- <Column id="cdid" type="STRING" size="256"/>
- </ColumnInfo>
- <Rows>
- <Row>
- <Col id="cdnm"/>
- <Col id="cdid"/>
- </Row>
- </Rows>
- </Dataset>
- <Dataset id="ds_init_M0133list_M0133" firefirstcount="0" firenextcount="0" useclientlayout="false" updatecontrol="true" enableevent="true" loadkeymode="keep" loadfiltermode="keep" reversesubsum="keep">
- <ColumnInfo>
- <Column id="cdnm" type="STRING" size="256"/>
- <Column id="cdid" type="STRING" size="256"/>
- <Column id="cdnm" type="STRING" size="256"/>
- <Column id="cdid" type="STRING" size="256"/>
- </ColumnInfo>
- <Rows>
- <Row>
- <Col id="cdnm"/>
- <Col id="cdid"/>
- </Row>
- </Rows>
- </Dataset>
- <Dataset id="ds_init_M0139list_M0139" firefirstcount="0" firenextcount="0" useclientlayout="false" updatecontrol="true" enableevent="true" loadkeymode="keep" loadfiltermode="keep" reversesubsum="keep">
- <ColumnInfo>
- <Column id="cdnm" type="STRING" size="256"/>
- <Column id="cdid" type="STRING" size="256"/>
- </ColumnInfo>
- <Rows>
- <Row>
- <Col id="cdnm"/>
- <Col id="cdid"/>
- </Row>
- </Rows>
- </Dataset>
- <Dataset id="ds_init_M0136list_M0136" firefirstcount="0" firenextcount="0" useclientlayout="false" updatecontrol="true" enableevent="true" loadkeymode="keep" loadfiltermode="keep" reversesubsum="keep">
- <ColumnInfo>
- <Column id="cdnm" type="STRING" size="256"/>
- <Column id="cdid" type="STRING" size="256"/>
- </ColumnInfo>
- <Rows>
- <Row>
- <Col id="cdnm"/>
- <Col id="cdid"/>
- </Row>
- </Rows>
- </Dataset>
- <Dataset id="ds_init_M0140list_M0140" firefirstcount="0" firenextcount="0" useclientlayout="false" updatecontrol="true" enableevent="true" loadkeymode="keep" loadfiltermode="keep" reversesubsum="keep">
- <ColumnInfo>
- <Column id="cdnm" type="STRING" size="256"/>
- <Column id="cdid" type="STRING" size="256"/>
- </ColumnInfo>
- <Rows>
- <Row>
- <Col id="cdnm"/>
- <Col id="cdid"/>
- </Row>
- </Rows>
- </Dataset>
- <Dataset id="ds_init_M0138list_M0138" firefirstcount="0" firenextcount="0" useclientlayout="false" updatecontrol="true" enableevent="true" loadkeymode="keep" loadfiltermode="keep" reversesubsum="keep">
- <ColumnInfo>
- <Column id="cdnm" type="STRING" size="256"/>
- <Column id="cdid" type="STRING" size="256"/>
- </ColumnInfo>
- <Rows>
- <Row>
- <Col id="cdnm"/>
- <Col id="cdid"/>
- </Row>
- </Rows>
- </Dataset>
- <Dataset id="ds_init_M0145list_M0145" firefirstcount="0" firenextcount="0" useclientlayout="false" updatecontrol="true" enableevent="true" loadkeymode="keep" loadfiltermode="keep" reversesubsum="keep">
- <ColumnInfo>
- <Column id="cdnm" type="STRING" size="256"/>
- <Column id="cdid" type="STRING" size="256"/>
- </ColumnInfo>
- <Rows>
- <Row>
- <Col id="cdnm"/>
- <Col id="cdid"/>
- </Row>
- </Rows>
- </Dataset>
- <Dataset id="ds_init_M0141list_M0141" firefirstcount="0" firenextcount="0" useclientlayout="false" updatecontrol="true" enableevent="true" loadkeymode="keep" loadfiltermode="keep" reversesubsum="keep">
- <ColumnInfo>
- <Column id="cdnm" type="STRING" size="256"/>
- <Column id="cdid" type="STRING" size="256"/>
- </ColumnInfo>
- <Rows>
- <Row>
- <Col id="cdnm"/>
- <Col id="cdid"/>
- </Row>
- </Rows>
- </Dataset>
- <Dataset id="ds_init_M0135list_M0135" firefirstcount="0" firenextcount="0" useclientlayout="false" updatecontrol="true" enableevent="true" loadkeymode="keep" loadfiltermode="keep" reversesubsum="keep">
- <ColumnInfo>
- <Column id="cdnm" type="STRING" size="256"/>
- <Column id="cdid" type="STRING" size="256"/>
- </ColumnInfo>
- <Rows>
- <Row>
- <Col id="cdnm"/>
- <Col id="cdid"/>
- </Row>
- </Rows>
- </Dataset>
- <Dataset id="ds_init_M0144list_M0144" firefirstcount="0" firenextcount="0" useclientlayout="false" updatecontrol="true" enableevent="true" loadkeymode="keep" loadfiltermode="keep" reversesubsum="keep">
- <ColumnInfo>
- <Column id="cdnm" type="STRING" size="256"/>
- <Column id="cdid" type="STRING" size="256"/>
- </ColumnInfo>
- <Rows>
- <Row>
- <Col id="cdnm"/>
- <Col id="cdid"/>
- </Row>
- </Rows>
- </Dataset>
- <Dataset id="ds_init_M0142list_M0142" firefirstcount="0" firenextcount="0" useclientlayout="false" updatecontrol="true" enableevent="true" loadkeymode="keep" loadfiltermode="keep" reversesubsum="keep">
- <ColumnInfo>
- <Column id="cdnm" type="STRING" size="256"/>
- <Column id="cdid" type="STRING" size="256"/>
- </ColumnInfo>
- <Rows>
- <Row>
- <Col id="cdnm"/>
- <Col id="cdid"/>
- </Row>
- </Rows>
- </Dataset>
- <Dataset id="ds_init_M0134list_M0134" firefirstcount="0" firenextcount="0" useclientlayout="false" updatecontrol="true" enableevent="true" loadkeymode="keep" loadfiltermode="keep" reversesubsum="keep">
- <ColumnInfo>
- <Column id="cdnm" type="STRING" size="256"/>
- <Column id="cdid" type="STRING" size="256"/>
- </ColumnInfo>
- <Rows>
- <Row>
- <Col id="cdnm"/>
- <Col id="cdid"/>
- </Row>
- </Rows>
- </Dataset>
- <Dataset id="ds_main_paminfo_list" firefirstcount="0" firenextcount="0" useclientlayout="false" updatecontrol="true" enableevent="true" loadkeymode="keep" loadfiltermode="keep" reversesubsum="false"/>
- <Dataset id="ds_init_statusflag" firefirstcount="0" firenextcount="0" useclientlayout="false" updatecontrol="true" enableevent="true" loadkeymode="keep" loadfiltermode="keep" reversesubsum="false">
- <ColumnInfo>
- <Column id="label" type="STRING" size="256"/>
- <Column id="value" type="STRING" size="256"/>
- </ColumnInfo>
- <Rows>
- <Row>
- <Col id="label">삽입</Col>
- <Col id="value">1</Col>
- </Row>
- <Row>
- <Col id="label">제거</Col>
- <Col id="value">2</Col>
- </Row>
- </Rows>
- </Dataset>
- </Objects>
- <Bind>
- <BindItem id="item0" compid="group3.grp_sea.input1" propid="value" datasetid="ds_main_condition" columnid="pid"/>
- <BindItem id="item1" compid="group3.switch1.case1.input3" propid="value" datasetid="ds_main_getbaselist_getbaseinfo" columnid="hometel"/>
- <BindItem id="item2" compid="group3.switch1.case1.input2" propid="value" datasetid="ds_main_getbaselist_getbaseinfo" columnid="mpphontel"/>
- <BindItem id="item3" compid="group3.switch1.case1.input4" propid="value" datasetid="ds_main_getbaselist_getbaseinfo" columnid="etctel1"/>
- <BindItem id="item4" compid="group3.switch1.case1.txt_hdcnstcnts" propid="value" datasetid="ds_main_reclist_recinfo" columnid="cnstcnts"/>
- <BindItem id="item5" compid="group3.switch1.case1.ipt_recdd" propid="value" datasetid="ds_main_reclist_recinfo" columnid="recdd"/>
- <BindItem id="item6" compid="group3.switch1.case1.ipt_rectm" propid="value" datasetid="ds_main_reclist_recinfo" columnid="rectm"/>
- <BindItem id="item7" compid="group3.switch1.case1.output1" propid="value" datasetid="ds_main_reclist_recinfo" columnid="recnm"/>
- <BindItem id="item8" compid="group3.switch1.case1.input8" propid="value" datasetid="ds_main_getbaselist_getbaseinfo" columnid="dialflag"/>
- <BindItem id="item9" compid="group3.switch1.case1.input6" propid="value" datasetid="ds_main_getbaselist_getbaseinfo" columnid="pid"/>
- <BindItem id="item10" compid="group3.switch1.case1.intput6" propid="value" datasetid="ds_main_getbaselist_getbaseinfo" columnid="hngnm"/>
- <BindItem id="item11" compid="group3.switch1.case1.input9" propid="value" datasetid="ds_main_getbaselist_getbaseinfo" columnid="sexage"/>
- <BindItem id="item12" compid="group3.switch1.case1.input10" propid="value" datasetid="ds_main_getbaselist_getbaseinfo" columnid="fstdialfromdd"/>
- <BindItem id="item13" compid="group3.switch1.case1.input11" propid="value" datasetid="ds_main_getbaselist_getbaseinfo" columnid="roothospdialfromdd"/>
- <BindItem id="item14" compid="group3.switch1.case1.input12" propid="value" datasetid="ds_main_getbaselist_getbaseinfo" columnid="lstdialfromdd"/>
- <BindItem id="item15" compid="group3.switch1.case1.ipt_recid" propid="value" datasetid="ds_main_reclist_recinfo" columnid="recid"/>
- <BindItem id="item16" compid="group3.switch1.case1.input13" propid="value" datasetid="ds_main_getbaselist_getbaseinfo" columnid="etctel2"/>
- <BindItem id="item17" compid="group3.switch1.case1.textarea1" propid="value" datasetid="ds_main_getbaselist_getbaseinfo" columnid="schedulinfo"/>
- <BindItem id="item18" compid="group3.switch1.case2.ipt_recdd2" propid="value" datasetid="ds_main_reclist_recinfo" columnid="recdd"/>
- <BindItem id="item19" compid="group3.switch1.case2.output4" propid="value" datasetid="ds_main_getbaselist_getbaseinfo" columnid="dialflag"/>
- <BindItem id="item20" compid="group3.switch1.case2.output21" propid="value" datasetid="ds_main_getbaselist_getbaseinfo" columnid="sexage"/>
- <BindItem id="item21" compid="group3.switch1.case2.input15" propid="value" datasetid="ds_main_reclist_recinfo" columnid="recid"/>
- <BindItem id="item22" compid="group3.switch1.case2.output30" propid="value" datasetid="ds_main_getbaselist_getbaseinfo" columnid="fstdialfromdd"/>
- <BindItem id="item23" compid="group3.switch1.case2.output31" propid="value" datasetid="ds_main_getbaselist_getbaseinfo" columnid="hngnm"/>
- <BindItem id="item24" compid="group3.switch1.case2.output33" propid="value" datasetid="ds_main_getbaselist_getbaseinfo" columnid="roothospdialfromdd"/>
- <BindItem id="item25" compid="group3.switch1.case2.output35" propid="value" datasetid="ds_main_getbaselist_getbaseinfo" columnid="lstdialfromdd"/>
- <BindItem id="item26" compid="group3.switch1.case2.output42" propid="value" datasetid="ds_main_reclist_recinfo" columnid="recnm"/>
- <BindItem id="item27" compid="group3.switch1.case2.ipt_rectm2" propid="value" datasetid="ds_main_reclist_recinfo" columnid="rectm"/>
- <BindItem id="item28" compid="group3.switch1.case2.output43" propid="value" datasetid="ds_main_getbaselist_getbaseinfo" columnid="pid"/>
- <BindItem id="item29" compid="group3.switch1.case2.input16" propid="value" datasetid="ds_main_getbaselist_getbaseinfo" columnid="etctel2"/>
- <BindItem id="item30" compid="group3.switch1.case2.output2" propid="value" datasetid="ds_main_getbaselist_getbaseinfo" columnid="mpphontel"/>
- <BindItem id="item31" compid="group3.switch1.case2.output3" propid="value" datasetid="ds_main_getbaselist_getbaseinfo" columnid="hometel"/>
- <BindItem id="item32" compid="group3.switch1.case2.input18" propid="value" datasetid="ds_main_getbaselist_getbaseinfo" columnid="etctel1"/>
- <BindItem id="item33" compid="group3.switch1.case2.txt_pdcnstcnts" propid="value" datasetid="ds_main_reclist_recinfo" columnid="cnstcnts"/>
- <BindItem id="item34" compid="group3.rdo_dialflag" propid="value" datasetid="ds_main_condition" columnid="dialflag"/>
- <BindItem id="item35" compid="group3.opt_chkpid" propid="value" datasetid="ds_main_chklist_chkinfo" columnid="pid"/>
- </Bind>
- <Script type="xscript4.0"><![CDATA[include 'com_commonxp::comm_main.xjs';
- //include 'emr_dialroomxp::SMMND01900.xjs';
- include 'emr_carecomxp::CareCom.xjs';
- include 'com_basiccodexp::ZBC001.xjs';
- var arErrorCode = new HashArray();
- function SMMND01900_onload(obj:Form, e:LoadEventInfo) {
- frmf_initForm(obj);
- grdf_initGrid(group3.grd_hdmatnpatinfo);
- grdf_initGrid(group3.grd_pdmatnpatinfo);
- grdf_initGrid(group3.grd_rechistinfo);
- grdf_initGrid(group3.switch1.case1.grd_avfinfo);
- grdf_initGrid(group3.switch1.case1.grd_hmdlspipeinfo);
- grdf_initGrid(group3.switch1.case1.grd_oprtinfo);
- grdf_initGrid(group3.switch1.case2.grd_infc);
- grdf_initGrid(group3.switch1.case2.grd_peritcoduit);
- grdf_initGrid(group3.switch1.case2.grd_t_set);
-
- //grdf_setGridSort(grd_XXX);
- //grdf_setRowTypeIcon(grd_XXX, 0_컬럼위치값);
- //setHelp(); // 온라인 도움말 화면이 있는 경우 ready 에서 실행.
- fDone(); // 화면초기화
-
- group3.switch1.tabindex = 0;
- }
- // header파일 중 SMMND01900.js 파일 시작
- /*
- 상담기록(SMMND01900.xrw - JScript )
- - Version :
- 1) : Ver.1.00.01
- */
- //**전역변수**//
- /**
- * _group :
- * _ver : 2007.07.11
- * _by : 김진아
- * _---------------------------------------------------
- * _type : function
- * _access : public
- * _desc : 화면 초기화
- * _param :
- * _return :
- * _---------------------------------------------------
- */
- function fDone(){
- //**그리드 초기화**//
- ds_main_hdmatnpatlist_hdmatnpatinfo.clearData();
- ds_main_pdmatnpatlist_pdmatnpatinfo.clearData();
- ds_main_cnstcntshistlist_cnstcntshistinfo.clearData();
- ds_main_hmdlspipeinfolist_hmdlspipeinfo.clearData(); // 혈액투석 도관관리
- ds_main_avfinfolist_avfinfo.clearData(); // 동정맥루 관리
- ds_main_oprtinfolist_oprtinfo.clearData(); // 시술과 중재
- //**공통코드 가져오기**//
- var arrParam = [
- {dsNm: "ds_init_M0133list_M0133" ,cdGrpId: "M0133" }, // 도관관리 부위
- {dsNm: "ds_init_M0134list_M0134" ,cdGrpId: "M0134" }, // 도관관리 종류1
- {dsNm: "ds_init_M0135list_M0135" ,cdGrpId: "M0135" }, // 도관관리 종류2
- {dsNm: "ds_init_M0136list_M0136" ,cdGrpId: "M0136" }, // 혈액투석도관 제거이유
- {dsNm: "ds_init_M0137list_M0137" ,cdGrpId: "M0137" }, // 동정맥루 관리 종류
- {dsNm: "ds_init_M0138list_M0138" ,cdGrpId: "M0138" }, // 동정맥루 관리 부위
- {dsNm: "ds_init_M0139list_M0139" ,cdGrpId: "M0139" }, // 동정맥루 사용혈관
- {dsNm: "ds_init_M0140list_M0140" ,cdGrpId: "M0140" }, // 시술종류
- {dsNm: "ds_init_M0141list_M0141" ,cdGrpId: "M0141" }, // 시술원인
- {dsNm: "ds_init_M0142list_M0142" ,cdGrpId: "M0142" }, // Cath종류
- {dsNm: "ds_init_M0999list_M0133" ,cdGrpId: "M0133" }, // 부위 - 2017.01.04 kimdo3 수정 , 도관관리 부위와 동일하여 수정함.
- {dsNm: "ds_init_M0144list_M0144" ,cdGrpId: "M0144" }, // 복막투석도관 제거이유
- {dsNm: "ds_init_M0145list_M0145" ,cdGrpId: "M0145" }, // 감염종류
- {dsNm: "ds_init_M0146list_M0146" ,cdGrpId: "M0146" }, // 원인균
- {dsNm: "ds_init_M0147list_M0147" ,cdGrpId: "M0147" } // 예후
- ];
- appf_getCodeList(arrParam);
- //** 유지환자리스트 설정 **//
- // fSrchHDMatnPatList(); // 혈액투석 유지환자 리스트 조회
- // group3.grd_hdmatnpatinfo.visible = true;
- // group3.grd_pdmatnpatinfo.visible = false;
- setGridbackgroundColor(group3.grd_hdmatnpatinfo, "white"); //.allstyle("all", "background-color") = "white";
- setGridbackgroundColor(group3.grd_pdmatnpatinfo, "white"); //.allstyle("all", "background-color") = "white";
- //** 상단환자 화면설정 **//
- var node = sysf_getGlobalVariable("paminfo");
- dsf_setCSVToDs("ds_temp_paminfo_list", node);
- if(!utlf_isNull(ds_temp_paminfo_list.getColumn(0, "pid"))) {
- var sSelPid = ds_temp_paminfo_list.getColumn(0, "pid"); // 등록번호
- ds_main_condition.setColumn( 0, "pid", sSelPid);
- }
- fSrchHDMatnPatList(); // 혈액투석 유지환자 리스트 조회
- //fSrchPDMatnPatList(); // 복막투석 유지환자 리스트 조회
- //
- //var sSelPid = group3.grd_pdmatnpatinfo.textmatrix(1, 1); // 등록번호
- //var sMaintePatRgstDD = group3.grd_pdmatnpatinfo.textmatrix(1, 4); // 유지환자 등록일자
- //
- //fInit(); // 초기화
- //fGetPatInfo(sSelPid, sMaintePatRgstDD); // 환자정보 설정
- //
- //if(group3.grd_hdmatnpatinfo.rows > 1) {
- // ds_main_condition.setColumn( 0, "dialflag", "H");
- // group3.grd_hdmatnpatinfo.visible = true;
- // group3.grd_pdmatnpatinfo.visible = false;
- // group3.grd_hdmatnpatinfo.allstyle("all", "background-color") = "white";
- //
- // group3.grd_hdmatnpatinfo.allstyle("all", "background-color") = "white"; // 선택 행 셀 색상 지정
- // group3.grd_hdmatnpatinfo.cellstyle("background-color", 1, 1, 1, 4) = "#ffd9ff";
- // model.toggle("group3.switch1.case1");
- // group3.btn_hdreccase.selected = true;
- //
- // fPatBaseHDPipeInfo(); // 혈액투석 환자 기본정보 및 최종 도관기록 정보 조회
- //} else if(group3.grd_pdmatnpatinfo.rows > 1){
- // ds_main_condition.setColumn( 0, "dialflag", "P");
- // group3.grd_hdmatnpatinfo.visible = false;
- // group3.grd_pdmatnpatinfo.visible = true;
- // group3.grd_pdmatnpatinfo.allstyle("all", "background-color") = "white";
- //
- // group3.grd_pdmatnpatinfo.allstyle("all", "background-color") = "white"; // 선택 행 셀 색상 지정
- // group3.grd_pdmatnpatinfo.cellstyle("background-color", 1, 1, 1, 4) = "#ffd9ff";
- // model.toggle("group3.switch1.case2");
- // group3.btn_pdreccase.selected = true;
- //
- // fPatBasePDPipeInfo(); // 복막투석 환자 기본정보 및 최종 도관기록 정보 조회
- //}
- //
- //group3.btn_crt.enable = true; // 신규등록버튼 활성화
- //group3.switch1.case1.txt_hdcnstcnts.enable = false; // 상담내용 텍스트박스 비활성화
- //group3.switch1.case2.txt_pdcnstcnts.enable = false;
- //group3.switch1.case1.btn_savehdcnstcnts.enable = false; // 저장버튼 비활성화
- //group3.switch1.case2.btn_savepdcnstcnts.enable = false;
- //group3.switch1.case2.btn_pop.enable = true;
- //
- //group3.grd_rechistinfo.allstyle("all", "background-color") = "white";
- //
- //fSrchCnstcntsHist (); // 상담기록 리스트 조회
- }
- function setGridbackgroundColor(objGrd, abgcolor) {
- for(var i = 0; i < objGrd.getFormatColCount(); i++) {
- objGrd.setCellProperty("body", i, "backgroundColor", abgcolor);
- }
- }
- /**
- * _group :
- * _ver : 2007.06.12
- * _by : 김진아
- * _---------------------------------------------------
- * _type : function
- * _access : public
- * _desc : 혈액투석 유지환자 리스트 조회
- * _param :
- * _return :
- * _---------------------------------------------------
- */
- function fSrchHDMatnPatList(){
- fInit(); // 초기화
- ds_send_reqdata.clearData();
- dsf_makeValue( ds_send_reqdata, "pid", "string", ds_main_condition.getColumn(0, "pid"));
- dsf_makeValue( ds_send_reqdata, "dialflag", "string", ds_main_condition.getColumn(0, "dialflag")); // 투석구분 (H:혈액)
-
- ds_main_hdmatnpatlist.clearData();
- // submit("TRMND01301");
- var oParam = {};
- oParam.id = "TRMND01301";
- oParam.service = "dialapp.DialRec";
- oParam.method = "reqGetMatnPatInfo";
- oParam.inds = "req=ds_send_reqdata";
- oParam.outds = "ds_main_hdmatnpatlist_hdmatnpatinfo=matnpatinfo";
- oParam.async = false;
- tranf_submit(oParam);
- if(ds_main_condition.getColumn(0, "pid") != "") {
- //group3.grd_hdmatnpatinfo.cellstyle("background-color", 1, 1, 1, 3) = "#ffd9ff"; // 혈액투석 유지환자리스트 셀 색상 지정 // selectbackground Color로 지정함.
- fGetPatInfo(ds_main_hdmatnpatlist_hdmatnpatinfo.getColumn(0, "pid"), ds_main_hdmatnpatlist_hdmatnpatinfo.getColumn(0, "maintepatrgstdd")); // 복막투석 유지환자 정보 설정 // 환자별 도관기록 리스트 조회
- }
- }
- /**
- * _group :
- * _ver : 2007.06.13
- * _by : 김진아
- * _---------------------------------------------------
- * _type : function
- * _access : public
- * _desc : 복막투석 유지환자 리스트 조회
- * _param :
- * _return :
- * _---------------------------------------------------
- */
- function fSrchPDMatnPatList(){
- fInit(); // 초기화
- ds_send_reqdata.clearData();
- dsf_makeValue( ds_send_reqdata, "pid", "string", ds_main_condition.getColumn(0, "pid"));
- dsf_makeValue( ds_send_reqdata, "dialflag", "string", "P"); // 투석구분 (P:복막)
- ds_main_pdmatnpatlist_pdmatnpatinfo.clearData();
- //ds_main_pdmatnpatlist.clearData();
- //submit("TRMND01401");
- var oParam = {};
- oParam.id = "TRMND01401";
- oParam.service = "dialapp.DialRec";
- oParam.method = "reqGetMatnPatInfo";
- oParam.inds = "req=ds_send_reqdata";
- oParam.outds = "ds_main_pdmatnpatlist_pdmatnpatinfo=matnpatinfo";
- oParam.async = false;
- tranf_submit(oParam);
-
- if(ds_main_condition.getColumn(0, "pid") != "") {
- //group3.grd_pdmatnpatinfo.cellstyle("background-color", 1, 1, 1, 3) = "#ffd9ff"; // 복막투석 유지환자리스트 셀 색상 지정 // selectbackground Color 로 지정함.
- fGetPatInfo(ds_main_pdmatnpatlist_pdmatnpatinfo.getColumn(0, "pid"), ds_main_pdmatnpatlist_pdmatnpatinfo.getColumn(0, "maintepatrgstdd")); // 복막투석 유지환자 정보 설정 // 환자별 도관기록 리스트 조회
- }
- }
- /**
- * _group :
- * _ver : 2007.06.12
- * _by : 김진아
- * _---------------------------------------------------
- * _type : function
- * _access : public
- * _desc : 혈액투석 유지환자 정보 설정
- * (혈액투석 유지환자 리스트 더블 클릭 시)
- * _param :
- * _return :
- * _---------------------------------------------------
- */
- function fGetPatInfo(sSelPid, sMaintePatRgstDD) {
- //기록자 정보 설정
- dsf_makeValue( ds_main_reclist_recinfo, "recid", "string", sysf_getUserId()); // 현재 로그인한 사용자 ID
- dsf_makeValue( ds_main_reclist_recinfo, "recnm", "string", sysf_getUserName()); // 현재 로그인한 사용자명
- // 기록일시 설정
- dsf_makeValue( ds_main_reclist_recinfo, "recdd", "string", utlf_getCurrentDate()); // 기록일자
- dsf_makeValue( ds_main_reclist_recinfo, "rectm", "string", utlf_getCurrentTime().substr(0,4)); // 기록시간
- // 환자 정보 설정
- dsf_makeValue( ds_main_reclist_recinfo, "pid", "string", sSelPid); // 등록번호
- dsf_makeValue( ds_main_reclist_recinfo, "maintepatrgstdd", "string", sMaintePatRgstDD); // 유지환자등록일자
- dsf_makeValue( ds_main_reclist_recinfo, "dialflag", "string", ds_main_condition.getColumn(0, "dialflag")); // 투석구분
- dsf_makeValue( ds_main_reclist_recinfo, "cnstrecflag", "string", ds_main_condition.getColumn(0, "dialflag")); // 상담기록구분
- //model.refresh();
- }
- /**
- * _group :
- * _ver : 2007.07.19
- * _by : 김진아
- * _---------------------------------------------------
- * _type : function
- * _access : public
- * _desc : 유지환자리스트 조회시 초기화
- * _param :
- * _return :
- * _---------------------------------------------------
- */
- function fInit(){
- //group3.grd_hdmatnpatinfo.allstyle("all", "background-color") = "white"; // 혈액투석유지환자 리스트 색상 초기화
- //group3.grd_pdmatnpatinfo.allstyle("all", "background-color") = "white"; // 복막투석유지환자 리스트 색상 초기화
- setGridbackgroundColor(group3.grd_hdmatnpatinfo, "white"); //.allstyle("all", "background-color") = "white";
- setGridbackgroundColor(group3.grd_pdmatnpatinfo, "white"); //.allstyle("all", "background-color") = "white";
- // 기록정보 초기화
- fClearChildNode("ds_main_reclist_recinfo");
- fClearChildNode("ds_main_getbaselist_getbaseinfo");
- //ds_main_getbaselist.clearData(); // 환자기본정보
- ds_main_hmdlspipeinfolist_hmdlspipeinfo.clearData(); // 혈액투석 도관관리
- ds_main_avfinfolist_avfinfo.clearData(); // 동정맥루 관리
- ds_main_oprtinfolist_oprtinfo.clearData(); // 시술과 중재
-
- ds_main_peritcoduitlist_peritcoduitinfo.clearData(); // 복막투석 도관관리
- ds_main_t_setlist_t_setinfo.clearData(); // T-Set
- ds_main_infclist_infcinfo.clearData(); // 감염관리
- ds_main_cnstcntshistlist_cnstcntshistinfo.clearData(); // 상담기록 리스트
- //model.refresh();
- }
- /**
- * _group :
- * _ver : 2007.07.21
- * _by : 김진아
- * _---------------------------------------------------
- * _type : function
- * _access : public
- * _desc : 상담내용 저장 (저장버튼 클릭 시)
- * _param :
- * _return :
- * _---------------------------------------------------
- */
- function fCnstInfo(recdd, rectm) {
- //** 신규등록일 경우 동일기록일자 도관기록 존재 확인 **//
- if(ds_main_reclist_recinfo.getColumn(0, "status") == "i") {
-
- ds_send_reqdata.clearData();
- dsf_makeValue( ds_send_reqdata, "pid", "string", ds_main_reclist_recinfo.getColumn(0, "pid") );
- dsf_makeValue( ds_send_reqdata, "recdd", "string", ds_main_reclist_recinfo.getColumn(0, "recdd"));
- dsf_makeValue( ds_send_reqdata, "rectm", "string", ds_main_reclist_recinfo.getColumn(0, "rectm"));
- ds_main_chklist.clearData();
- //submit("TRMND01904");
- var oParam = {};
- oParam.id = "TRMND01904";
- oParam.service = "dialapp.DialRec";
- oParam.method = "reqGetDuplCnstcntsInfo";
- oParam.inds = "req=ds_send_reqdata";
- oParam.outds = "ds_main_chklist_chkinfo=chkinfo";
- oParam.async = false;
- tranf_submit(oParam);
- // 동일기록일자에 도관기록 존재 할 경우
- if(ds_main_chklist_chkinfo.getColumn(0, "pid") != "") {
- sysf_messageBox("동일일자에 상담기록이 존재합니다.", "E");
- // 기록일시 설정
- dsf_makeValue( ds_main_reclist_recinfo, "recdd", "string", utlf_getCurrentDate()); // 기록일자
- dsf_makeValue( ds_main_reclist_recinfo, "rectm", "string", utlf_getCurrentTime().substr(0,4)); // 기록시간
- //model.refresh();
- return;
- }
- }
- //** 상담내용 저장실행 **//
- ds_send_savedata.clearData();
- ds_send_savedata.copyData(ds_main_reclist_recinfo);
- //submit("TXMND01901");
- var oParam = {};
- oParam.id = "TXMND01901";
- oParam.service = "dialapp.DialRec";
- oParam.method = "reqExeSaveCnstcntsInfo";
- oParam.inds = "req=ds_send_savedata";
- oParam.outds = "";
- oParam.async = false;
- tranf_submit(oParam);
- }
- /**
- * _group :
- * _ver : 2007.07.23
- * _by : 김진아
- * _---------------------------------------------------
- * _type : function
- * _access : public
- * _desc : 상담기록 리스트 조회 (유지환자 리스트 더블 클릭 시)
- * _param :
- * _return :
- * _---------------------------------------------------
- */
- function fSrchCnstcntsHist() {
- ds_send_reqdata.clearData();
- dsf_makeValue( ds_send_reqdata, "pid", "string", ds_main_reclist_recinfo.getColumn(0, "pid")); // 등록번호
- dsf_makeValue( ds_send_reqdata, "cnstrecflag", "string", ds_main_reclist_recinfo.getColumn(0, "cnstrecflag")); // 상담기록구분
- ds_main_cnstcntshistlist_cnstcntshistinfo.clearData();
- //submit("TRMND01901");
- var oParam = {};
- oParam.id = "TRMND01901";
- oParam.service = "dialapp.DialRec";
- oParam.method = "reqGetCnstcntsHistInfo";
- oParam.inds = "req=ds_send_reqdata";
- oParam.outds = "ds_main_cnstcntshistlist_cnstcntshistinfo=cnstcntshistinfo";
- oParam.async = false;
- tranf_submit(oParam);
- }
- /**
- * _group :
- * _ver : 2007.07.23
- * _by : 김진아
- * _---------------------------------------------------
- * _type : function
- * _access : public
- * _desc : 혈액투석 환자 기본정보 및 최종 도관기록 정보 조회
- (유지환자 리스트 더블 클릭 시)
- * _param :
- * _return :
- * _---------------------------------------------------
- */
- function fPatBaseHDPipeInfo() {
- ds_send_reqdata.clearData();
- dsf_makeValue( ds_send_reqdata, "pid", "string", ds_main_reclist_recinfo.getColumn(0, "pid")); // 등록번호
- dsf_makeValue( ds_send_reqdata, "maintepatrgstdd", "string", ds_main_reclist_recinfo.getColumn(0, "maintepatrgstdd")); // 유지등록일자
- ds_main_hmdlspipeinfolist_hmdlspipeinfo.clearData(); // 혈액투석 도관관리
- ds_main_avfinfolist_avfinfo.clearData(); // 동정맥루 관리
- ds_main_oprtinfolist_oprtinfo.clearData(); // 시술과 중재
- ds_main_getbaselist_getbaseinfo.clearData(); // 환자기본정보
- // submit("TRMND01902");
- var oParam = {};
- oParam.id = "TRMND01902";
- oParam.service = "dialapp.DialRec";
- oParam.method = "reqGetPatBaseHDPipeInfo";
- oParam.inds = "req=ds_send_reqdata";
- oParam.outds = "ds_main_getbaselist_getbaseinfo=baseinfo ds_main_hmdlspipeinfolist_hmdlspipeinfo=hmdlspipeinfo ds_main_avfinfolist_avfinfo=avfinfo ds_main_oprtinfolist_oprtinfo=oprtinfo";
- oParam.async = false;
- tranf_submit(oParam);
- }
- /**
- * _group :
- * _ver : 2007.07.31
- * _by : 김진아
- * _---------------------------------------------------
- * _type : function
- * _access : public
- * _desc : 복막투석 환자 기본정보 및 최종 도관기록 정보 조회
- (유지환자 리스트 더블 클릭 시)
- * _param :
- * _return :
- * _---------------------------------------------------
- */
- function fPatBasePDPipeInfo() {
- ds_send_reqdata.clearData();
- dsf_makeValue( ds_send_reqdata, "pid", "string", ds_main_reclist_recinfo.getColumn(0, "pid")); // 등록번호
- dsf_makeValue( ds_send_reqdata, "maintepatrgstdd", "string", ds_main_reclist_recinfo.getColumn(0, "maintepatrgstdd")); // 유지환자등록일자
- ds_main_peritcoduitlist_peritcoduitinfo.clearData(); // 복막투석 도관관리
- ds_main_t_setlist_t_setinfo.clearData(); // T-Set 관리
- ds_main_infclist_infcinfo.clearData(); // 감염관리
- ds_main_getbaselist_getbaseinfo.clearData(); // 환자기본정보
- //submit("TRMND01905");
- var oParam = {};
- oParam.id = "TRMND01905";
- oParam.service = "dialapp.DialRec";
- oParam.method = "reqGetPatBasePDPipeInfo";
- oParam.inds = "req=ds_send_reqdata";
- oParam.outds = "ds_main_getbaselist_getbaseinfo=baseinfo ds_main_peritcoduitlist_peritcoduitinfo=pdpipeinfo ds_main_t_setlist_t_setinfo=tsetinfo ds_main_infclist_infcinfo=infcinfo";
- oParam.async = false;
- tranf_submit(oParam);
- }
- /**
- * _group :
- * _ver : 2007.07.30
- * _by : 김진아
- * _---------------------------------------------------
- * _type : function
- * _access : public
- * _desc : 상담내용 조회 (상담기록리스트 더블 클릭 시)
- * _param :
- * _return :
- * _---------------------------------------------------
- */
- function fSrchCnstcntsInfo(iRow) {
- ds_send_reqdata.clearData();
- dsf_makeValue( ds_send_reqdata, "pid", "string", ds_main_reclist_recinfo.getColumn(0, "pid")); // 등록번호
- dsf_makeValue( ds_send_reqdata, "cnstrecflag", "string", ds_main_reclist_recinfo.getColumn(0, "cnstrecflag")); // 상담기록구분
- dsf_makeValue( ds_send_reqdata, "recdd", "string", ds_main_cnstcntshistlist_cnstcntshistinfo.getColumn(iRow, "recdd")); // 기록일자
- dsf_makeValue( ds_send_reqdata, "rectm", "string", ds_main_cnstcntshistlist_cnstcntshistinfo.getColumn(iRow, "rectm")); // 기록시간
- ds_temp_getcnstcntsinfo_getcnstcnts.clearData();
- //submit("TRMND01903");
- var oParam = {};
- oParam.id = "TRMND01903";
- oParam.service = "dialapp.DialRec";
- oParam.method = "reqGetCnstcntsInfo";
- oParam.inds = "req=ds_send_reqdata";
- oParam.outds = "ds_temp_getcnstcntsinfo_getcnstcnts=getcnstcnts";
- oParam.async = false;
- tranf_submit(oParam);
- ds_main_reclist_recinfo.setColumn( 0, "status" , "u"); // 상태값 설정 (update)
- ds_main_reclist_recinfo.setColumn( 0, "cnstcnts", ds_temp_getcnstcntsinfo_getcnstcnts.getColumn(0, "cnstcnts"));
- ds_main_reclist_recinfo.setColumn( 0, "recdd" , ds_temp_getcnstcntsinfo_getcnstcnts.getColumn(0, "recdd"));
- ds_main_reclist_recinfo.setColumn( 0, "rectm" , ds_temp_getcnstcntsinfo_getcnstcnts.getColumn(0, "rectm"));
- ds_main_reclist_recinfo.setColumn( 0, "recid" , ds_temp_getcnstcntsinfo_getcnstcnts.getColumn(0, "recid"));
- ds_main_reclist_recinfo.setColumn( 0, "recnm" , ds_temp_getcnstcntsinfo_getcnstcnts.getColumn(0, "recnm"));
- //group3.grd_rechistinfo.allstyle("all", "background-color") = "white";
- setGridbackgroundColor(group3.grd_rechistinfo, "whilte");
- //group3.grd_rechistinfo.cellstyle("background-color", iRow, 1, iRow, 4) = "#ffd9ff"; // selectbackground Color 로 설정함.
- if( ds_main_reclist_recinfo.getColumn(0, "cnstrecflag") == "H") {
- group3.switch1.case1.txt_hdcnstcnts.enable = true; // 상담내용 텍스트박스 활성화
- group3.switch1.case1.btn_savehdcnstcnts.enable = true; // 저장버튼 활성화
- group3.switch1.case1.ipt_recdd.enable = false; // 기록일시 비활성화
- group3.switch1.case1.ipt_rectm.enable = false;
- group3.switch1.case1.btn_clock.enable = false;
- } else if (ds_main_reclist_recinfo.getColumn(0, "cnstrecflag") == "P") {
- group3.switch1.case2.txt_pdcnstcnts.enable = true; // 상담내용 텍스트박스 활성화
- group3.switch1.case2.btn_savepdcnstcnts.enable = true; // 저장버튼 활성화
- group3.switch1.case2.ipt_recdd2.enable = false; // 기록일시 비활성화
- group3.switch1.case2.ipt_rectm2.enable = false;
- group3.switch1.case2.btn_clock2.enable = false;
- }
- //model.refresh();
- }
- /**
- * _group :
- * _ver : 2007.07.30
- * _by : 김진아
- * _---------------------------------------------------
- * _type : function
- * _access : public
- * _desc : 신규등록버튼 클릭 시
- * _param :
- * _return :
- * _---------------------------------------------------
- */
- function fSetNewRecInfo(){
- fSrchCnstcntsHist(); // 상담기록 리스트 조회
- if(ds_main_reclist_recinfo.getColumn(0, "pid") == "") {
- sysf_messageBox("혈액투석 유지환자를 선택한 후", "I", "신규등록을 할 수 있습니다.");
- return;
- }
- if( ds_main_reclist_recinfo.getColumn(0, "cnstrecflag") == "H") {
- group3.switch1.case1.txt_hdcnstcnts.enable = true; // 상담내용 텍스트박스 활성화
- group3.switch1.case1.btn_savehdcnstcnts.enable = true; // 저장버튼 활성화
- group3.switch1.case1.ipt_recdd.enable = true; // 기록일시 활성화
- group3.switch1.case1.ipt_rectm.enable = true;
- group3.switch1.case1.btn_clock.enable = true;
- } else if (ds_main_reclist_recinfo.getColumn(0, "cnstrecflag") == "P") {
- group3.switch1.case2.txt_pdcnstcnts.enable = true; // 상담내용 텍스트박스 활성화
- group3.switch1.case2.btn_savepdcnstcnts.enable = true; // 저장버튼 활성화
- group3.switch1.case2.ipt_recdd2.enable = true; // 기록일시 활성화
- group3.switch1.case2.ipt_rectm2.enable = true;
- group3.switch1.case2.btn_clock2.enable = true;
- }
- ds_main_reclist_recinfo.setColumn( 0, "status", "i"); // 상태값 설정 (insert)
- // 기록일시 설정
- dsf_makeValue( ds_main_reclist_recinfo, "recdd", "string", utlf_getCurrentDate()); // 기록일자
- dsf_makeValue( ds_main_reclist_recinfo, "rectm", "string", utlf_getCurrentTime().substr(0,4)); // 기록시간
- //model.refresh();
- // 환자별 도관기록 리스트 행 추가
- //group3.grd_rechistinfo.addItem(); // 행 추가
- var iRow = ds_main_cnstcntshistlist_cnstcntshistinfo.addRow();
-
- //var iRow = group3.grd_rechistinfo.rows - 1;
- // ds_main_cnstcntshistlist.setColumn( iRow , "recdd", ds_main_reclist_recinfo.getColumn(0, "recdd"));
- // ds_main_cnstcntshistlist.setColumn( iRow , "rectm", ds_main_reclist_recinfo.getColumn(0, "rectm"));
- // ds_main_cnstcntshistlist.setColumn( iRow , "recnm", ds_main_reclist_recinfo.getColumn(0, "recnm"));
- ds_main_cnstcntshistlist_cnstcntshistinfo.setColumn(iRow, "recdd", ds_main_reclist_recinfo.getColumn(0, "recdd") );
- ds_main_cnstcntshistlist_cnstcntshistinfo.setColumn(iRow, "rectm", ds_main_reclist_recinfo.getColumn(0, "rectm") );
- ds_main_cnstcntshistlist_cnstcntshistinfo.setColumn(iRow, "recnm", ds_main_reclist_recinfo.getColumn(0, "recnm") );
- // 초기화
- // for(var i=1; i<=group3.grd_rechistinfo.rows; i++) {
- // group3.grd_rechistinfo.cellstyle("background-color", i, 1, i, 3) = "white"; // 환자별 상담기록 리스트 셀 색상 초기화 (white)
- // }
- setGridbackgroundColor(group3.grd_rechistinfo, "whilte");
- ds_main_reclist_recinfo.setColumn( 0, "cnstcnts", "");
- //model.refresh();
- }
- /**
- * _group :
- * _ver : 2007.08.07
- * _by : 김진아
- * _---------------------------------------------------
- * _type : function
- * _access : public
- * _desc : 화면상단 정보설정
- * _param : 그리드 ID (pGrd), 투석구분(pFlag)
- * _return :
- * _---------------------------------------------------
- */
- function fsetHngBaseInfo(pGrd, pPath){
- //**상단정보 초기화**//
- appf_delPatientInfos(); //화면상단정보 삭제
- sysf_setGlobalVariable("paminfo", ""); //원무정보 reset
- if(ds_main_paminfo_list.rowcount > 0) {
- ds_main_paminfo_list.clearData();
- }
-
- var _tmpGrdDS = this.objects[pGrd.binddataset];
- var iRow = _tmpGrdDS.rowposition; // pGrd.row;
-
- // 상단 환자정보 parameter
- // var sIoflag = model.getValue(pPath + "[" + iRow + "]_histstat" ); //원무 입원외래구분(histstat)
- var sPid = _tmpGrdDS.getColumn(iRow, "pid" ); //등록번호
- ds_send_reqdata.clearData();
- dsf_makeValue( ds_send_reqdata, "pid", "string", sPid );
- dsf_makeValue( ds_send_reqdata, "histstat", "string", sIoflag);
- ds_temp_gettoplist.clearData();
- //submit("TRMND00103");
- var oParam = {};
- oParam.id = "TRMND00103";
- oParam.service = "dialapp.DialPatMngt";
- oParam.method = "reqGettopInfo";
- oParam.inds = "req=ds_send_reqdata";
- oParam.outds = "ds_temp_gettoplist_gettopinfo=gettopinfo";
- oParam.async = false;
- tranf_submit(oParam);
- var sCretno = ds_temp_gettoplist_gettopinfo.getColumn(0, "cretno"); //생성번호
- //var sSeqno = ds_temp_gettoplist_gettopinfo.getColumn(0, "seqno"); //일련번호
- var sInstcd = ds_temp_gettoplist_gettopinfo.getColumn(0, "instcd"); //기관코드
- var sIndd = ds_temp_gettoplist_gettopinfo.getColumn(0, "indd"); //입원일자
- var sOrddd = ds_temp_gettoplist_gettopinfo.getColumn(0, "orddd"); //진료일자
- var sAcptseqno = ds_temp_gettoplist_gettopinfo.getColumn(0, "acptseqno"); //등록일련번호
- var sOrgorddd = ds_temp_gettoplist_gettopinfo.getColumn(0, "orgorddd"); //원진료일자
- var sIoflag = ds_temp_gettoplist_gettopinfo.getColumn(0, "ioflag"); //입원외래구분
- var sParam;
- if(sIoflag == "O") { //외래환자일 경우(histstat : "O")
- sParam = (sIoflag + "▦" + sPid + "▦" + sOrddd + "▦" + sCretno + "▦" + sInstcd + "▦" + sAcptseqno + "▦" + sOrgorddd );
- } else { //입원_응급환자일 경우(histstat : "I", "E")
- //sParam = (sIoflag + "▦" + sPid + "▦" + sIndd + "▦" + sCretno + "▦" + sInstcd + "▦" );
- sParam = (sIoflag + "▦" + sPid + "▦" + sOrddd + "▦" + sCretno + "▦" + sInstcd + "▦" );
- }
-
- // frmf_setParameter("condparam", sParam);
- // frmf_modal("SPMMO08900", "SPMMO08900", "", "", "1", "", "", "", "", "left:0; right:0; width:0; height:0; sysmenu:hidden; caption:hidden; min:hidden", "", "", "M");
-
- appf_initPatientInfo(sParam);
- var node = sysf_getGlobalVariable("paminfo");
- dsf_setCSVToDs("ds_main_paminfo_list", node);
- }
- // header파일 중 SMMND01900.js 파일 끝
- function group3_grd_pdmatnpatinfo_oncelldblclick(obj:Grid, e:GridClickEventInfo) {
- fsetHngBaseInfo(group3.grd_pdmatnpatinfo, "ds_main_pdmatnpatlist_pdmatnpatinfo"); // 상단정보 설정
- var iRow = ds_main_pdmatnpatlist_pdmatnpatinfo.rowposition; //group3.grd_pdmatnpatinfo.row;
- if(iRow >= 0) {
- fInit(); // 초기화
- group3.btn_crt.enable = true; // 신규등록버튼 활성화
- group3.switch1.case1.txt_hdcnstcnts.enable = false; // 상담내용 텍스트박스 비활성화
- group3.switch1.case2.txt_pdcnstcnts.enable = false;
- group3.switch1.case1.btn_savehdcnstcnts.enable = false; // 저장버튼 비활성화
- group3.switch1.case2.btn_savepdcnstcnts.enable = false;
- group3.switch1.case2.btn_pop.enable = true;
- var sSelPid = ds_main_pdmatnpatlist_pdmatnpatinfo.getColumn(iRow, "pid"); //group3.grd_pdmatnpatinfo.textmatrix(iRow, 1); // 등록번호
- var sMaintePatRgstDD = ds_main_pdmatnpatlist_pdmatnpatinfo.getColumn(iRow, "maintepatrgstdd"); // group3.grd_pdmatnpatinfo.textmatrix(iRow, 4); // 유지환자 등록일자
- // 선택 행 셀 색상 지정
- //group3.grd_pdmatnpatinfo.allstyle("all", "background-color") = "white";
- setGridbackgroundColor(group3.grd_pdmatnpatinfo, "whilte");
- //group3.grd_pdmatnpatinfo.cellstyle("background-color", iRow, 1, iRow, 4) = "#ffd9ff";
- fGetPatInfo(sSelPid, sMaintePatRgstDD); // 환자정보 설정
- fSrchCnstcntsHist(); // 상담기록 리스트 조회
- fPatBasePDPipeInfo(); // 복막투석 환자 기본정보 및 최종 도관기록 정보 조회
- //group3.grd_rechistinfo.allstyle("all", "background-color") = "white";
- setGridbackgroundColor(group3.grd_rechistinfo, "whilte");
- }
- }
- function group3_grd_hdmatnpatinfo_oncelldblclick(obj:Grid, e:GridClickEventInfo) {
- fsetHngBaseInfo(group3.grd_hdmatnpatinfo, "ds_main_hdmatnpatlist_hdmatnpatinfo"); // 상단정보 설정
- var iRow = ds_main_hdmatnpatlist_hdmatnpatinfo.rowposition; //group3.grd_hdmatnpatinfo.row;
- if(iRow >= 0) {
- fInit(); // 초기화
- group3.btn_crt.enable = true; // 신규등록버튼 활성화
- group3.switch1.case1.txt_hdcnstcnts.enable = false; // 상담내용 텍스트박스 비활성화
- group3.switch1.case2.txt_pdcnstcnts.enable = false;
- group3.switch1.case1.btn_savehdcnstcnts.enable = false; // 저장버튼 비활성화
- group3.switch1.case2.btn_savepdcnstcnts.enable = false;
- group3.switch1.case2.btn_pop.enable = false;
- var sSelPid = ds_main_hdmatnpatlist_hdmatnpatinfo.getColumn(iRow, "pid"); //group3.grd_hdmatnpatinfo.textmatrix(iRow, 1); // 등록번호
- var sMaintePatRgstDD = ds_main_hdmatnpatlist_hdmatnpatinfo.getColumn(iRow, "maintepatrgstdd"); //group3.grd_hdmatnpatinfo.textmatrix(iRow, 4); // 유지환자 등록일자
- // 선택 행 셀 색상 지정
- //group3.grd_hdmatnpatinfo.allstyle("all", "background-color") = "white";
- setGridbackgroundColor(group3.grd_hdmatnpatinfo, "whilte");
-
- //group3.grd_hdmatnpatinfo.cellstyle("background-color", iRow, 1, iRow, 4) = "#ffd9ff";
- fGetPatInfo(sSelPid, sMaintePatRgstDD); // 환자정보 설정
- fSrchCnstcntsHist(); // 상담기록 리스트 조회
- fPatBaseHDPipeInfo(); // 혈액투석 환자 기본정보 및 최종 도관기록 정보 조회
- //group3.grd_rechistinfo.allstyle("all", "background-color") = "white";
- setGridbackgroundColor(group3.grd_rechistinfo, "whilte");
- }
- }
- function group3_grp_sea_btn_srchmainpatlist_onclick(obj:Button, e:ClickEventInfo) {
- var sDailFlag = ds_main_condition.getColumn(0, "dialflag");
- if(sDailFlag== "H") {
- fSrchHDMatnPatList(); // 혈액투석 유지환자 리스트 조회
- //fSrchCnstcntsHist(); // 상담기록 리스트 조회
- //fPatBaseHDPipeInfo(); // 혈액투석 환자 기본정보 및 최종 도관기록 정보 조회
- } else if(sDailFlag== "P"){
- fSrchPDMatnPatList(); // 복막투석 유지환자 리스트 조회
- //fSrchCnstcntsHist(); // 상담기록 리스트 조회
- //fPatBasePDPipeInfo(); // 복막투석 환자 기본정보 및 최종 도관기록 정보 조회
- }
- }
- function group3_grp_sea_input1_onkeyup(obj:Edit, e:KeyEventInfo) {
- frmf_inputEnterKey("group3.grp_sea.btn_srchmainpatlist", "onclick", new ClickEventInfo);
- }
- function group3_btn_hdreccase_onclick(obj:Button, e:ClickEventInfo) {
- lf_btn_Selected("btn_hdreccase");
-
- fInit(); // 초기화
- //model.toggle("group3.switch1.case1");
- group3.switch1.tabindex = 0;
- group3.rdo_dialflag.value = "H";
- fSrchHDMatnPatList(); // 혈액투석 유지환자 리스트 조회
- group3.btn_crt.enable = false; // 신규등록버튼 비활성화
- group3.switch1.case1.txt_hdcnstcnts.enable = false; // 상담내용 텍스트박스 비활성화
- group3.switch1.case2.txt_pdcnstcnts.enable = false;
- group3.switch1.case1.btn_savehdcnstcnts.enable = false; // 저장버튼 비활성화
- group3.switch1.case2.btn_savepdcnstcnts.enable = false;
- group3.switch1.case2.btn_pop.enable = false;
- group3.grd_hdmatnpatinfo.visible = true;
- group3.grd_pdmatnpatinfo.visible = false;
- //group3.grd_hdmatnpatinfo.allstyle("all", "background-color") = "white";
- setGridbackgroundColor(group3.grd_hdmatnpatinfo, "whilte");
-
- //group3.grd_pdmatnpatinfo.allstyle("all", "background-color") = "white";
- setGridbackgroundColor(group3.grd_pdmatnpatinfo, "whilte");
- }
- function group3_switch1_case1_btn_savehdcnstcnts_onclick(obj:Button, e:ClickEventInfo) {
- fCnstInfo(); // 상담내용 저장
- fSrchCnstcntsHist(); // 상담기록 리스트 조회
- }
- function group3_switch1_case1_btn_clock_onclick(obj:Button, e:ClickEventInfo) {
- dsf_makeValue( ds_main_reclist_recinfo, "recdd", "string", utlf_getCurrentDate());
- dsf_makeValue( ds_main_reclist_recinfo, "rectm", "string", utlf_getCurrentTime().substr(0,4));
- //group3.switch1.case1.ipt_recdd.refresh();
- //group3.switch1.case1.ipt_rectm.refresh();
- }
- function group3_switch1_case2_grd_t_set_ontextchanged(obj:Grid, e:GridEditTextChangedEventInfo) {
- var iRow = ds_main_t_setlist_t_setinfo.rowposition;
- if(ds_main_t_setlist_t_setinfo.getColumn(iRow, "status") == "") {
- ds_main_t_setlist_t_setinfo.setColumn( iRow , "status", "u"); // 상태값 설정 (update)
- }
- }
- function group3_switch1_case2_btn_pop_onclick(obj:Button, e:ClickEventInfo) {
- var objArg = new Objects();
- objArg.arg_ds_temp_paminfo = ds_main_paminfo_list;
- frmf_open("SMMND00800", "SMMND00800", objArg, "", "", "1", "1", "", "", "", "", "", "M");
- }
- function group3_switch1_case2_btn_savepdcnstcnts_onclick(obj:Button, e:ClickEventInfo) {
- fCnstInfo(); // 상담내용 저장
- fSrchCnstcntsHist(); // 상담기록 리스트 조회
- }
- function group3_switch1_case2_btn_clock2_onclick(obj:Button, e:ClickEventInfo) {
- dsf_makeValue( ds_main_reclist_recinfo, "recdd", "string", utlf_getCurrentDate());
- dsf_makeValue( ds_main_reclist_recinfo, "rectm", "string", utlf_getCurrentTime().substr(0,4));
- //group3.switch1.case2.ipt_recdd2.refresh();
- //group3.switch1.case2.ipt_rectm2.refresh();
- }
- function group3_switch1_case2_grd_infc_onlbuttonup(obj:Grid, e:MouseEventInfo) {
-
-
- // if(e.col == 9) {
- // group3.switch1.case2.grd_infc.textmatrix(group3.switch1.case2.grd_infc.row, 9) = utlf_getCurrentTime().substr(0,4); //기록시간
- // //model.refresh();
- // }
- }
- function group3_switch1_case2_grd_infc_ontextchanged(obj:Grid, e:GridEditTextChangedEventInfo) {
- var iRow = ds_main_infclist_infcinfo.rowposition; //group3.switch1.case2.grd_infc.row;
- if(ds_main_reclist_recinfo_infclist_infcinfo.getColumn(iRow, "status") == "") {
- ds_main_reclist_recinfo_infclist.setColumn( iRow , "status", "u"); // 상태값 설정 (update)
- }
- }
- function group3_switch1_case2_grd_peritcoduit_ontextchanged(obj:Grid, e:GridEditTextChangedEventInfo) {
- var iRow = ds_main_peritcoduitlist_peritcoduitinfo.rowposition; //group3.switch1.case2.grd_peritcoduit.row;
- if(ds_main_reclist_recinfo_peritcoduitlist_peritcoduitinfo.getColumn(iRow, "status") == "") {
- ds_main_reclist_recinfo_peritcoduitlist.setColumn( iRow , "status", "u"); // 상태값 설정 (update)
- }
- }
- function group3_rdo_dialflag_onitemchanged(obj:Radio, e:ItemChangeEventInfo) {
- fInit(); // 초기화
- group3.btn_crt.enable = false; // 신규등록버튼 비활성화
- group3.switch1.case1.txt_hdcnstcnts.enable = false; // 상담내용 텍스트박스 비활성화
- group3.switch1.case2.txt_pdcnstcnts.enable = false;
- group3.switch1.case1.btn_savehdcnstcnts.enable = false; // 저장버튼 비활성화
- group3.switch1.case2.btn_savepdcnstcnts.enable = false;
- group3.switch1.case2.btn_pop.enable = false;
- if(group3.rdo_dialflag.value == "H") {
- lf_btn_Selected("btn_hdreccase");
-
- fSrchHDMatnPatList(); // 혈액투석 유지환자 리스트 조회
- group3.grd_hdmatnpatinfo.visible = true;
- group3.grd_pdmatnpatinfo.visible = false;
- //group3.grd_hdmatnpatinfo.allstyle("all", "background-color") = "white";
- //group3.grd_pdmatnpatinfo.allstyle("all", "background-color") = "white";
- //model.toggle("group3.switch1.case1");
- group3.switch1.tabindex = 0;
- //group3.btn_hdreccase.enable = true;
- //group3.btn_pdreccase.enable = false;
- group3.btn_hdreccase.selected = true;
- } else if(group3.rdo_dialflag.value == "P") {
- lf_btn_Selected("btn_pdreccase");
-
- fSrchPDMatnPatList(); // 복막투석 유지환자 리스트 조회
- group3.grd_hdmatnpatinfo.visible = false;
- group3.grd_pdmatnpatinfo.visible = true;
- //group3.grd_hdmatnpatinfo.allstyle("all", "background-color") = "white";
- //group3.grd_pdmatnpatinfo.allstyle("all", "background-color") = "white";
- //model.toggle("group3.switch1.case2");
- group3.switch1.tabindex = 1;
- //group3.btn_hdreccase.enable = false;
- //group3.btn_pdreccase.enable = true;
- group3.btn_pdreccase.selected = true;
- }
-
- setGridbackgroundColor(group3.grd_hdmatnpatinfo, "whilte");
- setGridbackgroundColor(group3.grd_pdmatnpatinfo, "whilte");
- }
- function group3_btn_pdreccase_onclick(obj:Button, e:ClickEventInfo) {
- lf_btn_Selected("btn_pdreccase");
- fInit(); // 초기화
- //model.toggle("group3.switch1.case2");
- group3.switch1.tabindex = 1;
- group3.rdo_dialflag.value = "P";
- fSrchPDMatnPatList(); // 복막투석 유지환자 리스트 조회
- group3.btn_crt.enable = false; // 신규등록버튼 비활성화
- group3.switch1.case1.txt_hdcnstcnts.enable = false; // 상담내용 텍스트박스 비활성화
- group3.switch1.case2.txt_pdcnstcnts.enable = false;
- group3.switch1.case1.btn_savehdcnstcnts.enable = false; // 저장버튼 비활성화
- group3.switch1.case2.btn_savepdcnstcnts.enable = false;
- group3.switch1.case2.btn_pop.enable = false;
- group3.grd_hdmatnpatinfo.visible = false;
- group3.grd_pdmatnpatinfo.visible = true;
-
- //group3.grd_hdmatnpatinfo.allstyle("all", "background-color") = "white";
- //group3.grd_pdmatnpatinfo.allstyle("all", "background-color") = "white";
- setGridbackgroundColor(group3.grd_hdmatnpatinfo, "whilte");
- setGridbackgroundColor(group3.grd_pdmatnpatinfo, "whilte");
- }
- function group3_grd_rechistinfo_oncelldblclick(obj:Grid, e:GridClickEventInfo) {
- var iRow = ds_main_cnstcntshistlist_cnstcntshistinfo.rowposition; //group3.grd_rechistinfo.row;
- if (iRow >= 0) {
- fSrchCnstcntsHist(); // 상담기록 리스트 조회
- fSrchCnstcntsInfo(iRow); // HD상담기록 조회
- }
- }
- function group3_btn_crt_onclick(obj:Button, e:ClickEventInfo) {
- fSetNewRecInfo(); // 신규등록버튼 클릭 시
- }
- function lf_btn_Selected(btnId){
- if( utlf_isNull(btnId) ) return;
-
- group3.btn_hdreccase.class = "btn_tab";
- group3.btn_pdreccase.class = "btn_tab";
- var btnObj = group3.components[btnId];
- btnObj.setSelectStatus(true);
- btnObj.class = "btn_tab_S";
-
- }
- ]]></Script>
- </Form>
- </FDL>
|