123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998 |
- <?xml version="1.0" encoding="utf-8" standalone="no"?>
- <FDL version="1.5">
- <TypeDefinition url="..\..\..\default_typedef.xml"/>
- <Form id="SMMNF04600" position="absolute 0 0 1229 752" titletext="가정간호 진행상태별 조회" onload="SMMNF04600_onload" scrollbars="none">
- <Layouts>
- <Layout>
- <Div id="group1" position="absolute 0 0 1195 23" style="" scrollbars="none">
- <Layouts>
- <Layout>
- <Static id="caption6" class="tit_1" position="absolute 0 0 160 22" style="" text="진행상태별 조회" anchor="default"/>
- </Layout>
- </Layouts>
- </Div>
- <Div id="grp_btn" scrollbars="autoboth" position="absolute 0 740 1195 784" style=""/>
- <Div id="group5" scrollbars="autoboth" position="absolute 0 13 1195 750" style="">
- <Layouts>
- <Layout>
- <Grid id="grd_visitlist" binddataset="ds_main_grd_visitlist_visitlist" visible="false" position="absolute 0 115 1193 683" style="align: bottom;">
- <Formats>
- <Format id="default">
- <Columns>
- <Column size="22"/>
- <Column size="76"/>
- <Column size="70"/>
- <Column size="75"/>
- <Column size="50"/>
- <Column size="100"/>
- <Column size="54"/>
- <Column size="100"/>
- <Column size="38"/>
- <Column size="192"/>
- <Column size="88"/>
- <Column size="70"/>
- <Column size="70"/>
- <Column size="75"/>
- <Column size="55"/>
- <Column size="45"/>
- <Column size="41"/>
- <Column size="156"/>
- </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="S_A"/>
- <Cell col="5" text="주민등록번호"/>
- <Cell col="6" text="소속"/>
- <Cell col="7" text="본당명"/>
- <Cell col="8" text="분류"/>
- <Cell col="9" text="진단명"/>
- <Cell col="10" text="진료과"/>
- <Cell col="11" text="진료의"/>
- <Cell col="12" text="담당간호사"/>
- <Cell col="13" text="의뢰일"/>
- <Cell col="14" text="의뢰경로"/>
- <Cell col="15" text="중증도"/>
- <Cell col="16" text="등급"/>
- <Cell col="17" text="본인부담률"/>
- </Band>
- <Band id="body">
- <Cell celltype="head" expr="currow+1"/>
- <Cell col="1" displaytype="date" text="bind:fstvisitdd" calendardisplaynulltype="none"/>
- <Cell col="2" text="bind:pid"/>
- <Cell col="3" text="bind:pathngnm"/>
- <Cell col="4" text="bind:sex"/>
- <Cell col="5" text="bind:rrgstno"/>
- <Cell col="6" displaytype="combo" style="align:center middle;" text="bind:position" combodataset="ds_init_listset1_list" combocodecol="cdid" combodatacol="cdnm"/>
- <Cell col="7" text="bind:churchnm"/>
- <Cell col="8" text="bind:chrrgstkind"/>
- <Cell col="9" style="align:left middle;" text="bind:diaghngnm"/>
- <Cell col="10" text="bind:reqdeptnm"/>
- <Cell col="11" text="bind:reqdrnm"/>
- <Cell col="12" text="bind:chrgnursnm"/>
- <Cell col="13" displaytype="date" text="bind:reqdd" calendardisplaynulltype="none"/>
- <Cell col="14" displaytype="combo" style="align:center middle;" text="bind:reqpath" combodataset="ds_item_reqpath" combocodecol="cdid" combodatacol="cdnm"/>
- <Cell col="15" text="bind:result"/>
- <Cell col="16" text="bind:gradeflag"/>
- <Cell col="17" text="bind:qualflag"/>
- </Band>
- </Format>
- </Formats>
- </Grid>
- <Grid id="grd_proclist" binddataset="ds_main_grd_proclist_proclist" visible="false" position="absolute 0 147 1194 715" style="align: bottom;">
- <Formats>
- <Format id="default">
- <Columns>
- <Column size="22"/>
- <Column size="80"/>
- <Column size="70"/>
- <Column size="64"/>
- <Column size="40"/>
- <Column size="100"/>
- <Column size="46"/>
- <Column size="82"/>
- <Column size="46"/>
- <Column size="100"/>
- <Column size="92"/>
- <Column size="59"/>
- <Column size="92"/>
- <Column size="83"/>
- <Column size="54"/>
- <Column size="55"/>
- <Column size="76"/>
- <Column size="31"/>
- <Column size="143"/>
- <Column size="292"/>
- <Column size="100"/>
- <Column size="54"/>
- <Column size="48"/>
- <Column size="91"/>
- </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="S_A"/>
- <Cell col="5" text="주민등록번호"/>
- <Cell col="6" text="소속"/>
- <Cell col="7" text="본당명"/>
- <Cell col="8" text="분류"/>
- <Cell col="9" text="진단명"/>
- <Cell col="10" text="진료과"/>
- <Cell col="11" text="진료의"/>
- <Cell col="12" text="최근방문간호사"/>
- <Cell col="13" text="최근방문일"/>
- <Cell col="14" text="방문횟수"/>
- <Cell col="15" text="방문기간"/>
- <Cell col="16" text="최초의뢰일"/>
- <Cell col="17" text="등급"/>
- <Cell col="18" text="본인부담률"/>
- <Cell col="19" text="주소"/>
- <Cell col="20" text="전화번호"/>
- <Cell col="21" text="의뢰경로"/>
- <Cell col="22" text="중증도"/>
- <Cell col="23" text="최초의뢰확정일"/>
- </Band>
- <Band id="body">
- <Cell celltype="head" expr="currow+1"/>
- <Cell col="1" displaytype="date" text="bind:fstvisitdd" calendardisplaynulltype="none"/>
- <Cell col="2" text="bind:pid"/>
- <Cell col="3" text="bind:pathngnm"/>
- <Cell col="4" text="bind:sex"/>
- <Cell col="5" text="bind:rrgstno"/>
- <Cell col="6" text="bind:position"/>
- <Cell col="7" text="bind:churchnm"/>
- <Cell col="8" text="bind:chrrgstkind"/>
- <Cell col="9" style="align:left middle;" text="bind:diaghngnm"/>
- <Cell col="10" text="bind:reqdeptnm"/>
- <Cell col="11" text="bind:reqdrnm"/>
- <Cell col="12" text="bind:chrgnursnm"/>
- <Cell col="13" displaytype="date" text="bind:visitdd" calendardisplaynulltype="none"/>
- <Cell col="14" text="bind:visitcount"/>
- <Cell col="15" text="bind:visitterm"/>
- <Cell col="16" displaytype="date" text="bind:reqdd" calendardisplaynulltype="none"/>
- <Cell col="17" text="bind:gradeflag"/>
- <Cell col="18" text="bind:qualflag"/>
- <Cell col="19" text="bind:addr"/>
- <Cell col="20" text="bind:tel"/>
- <Cell col="21" text="bind:reqpath"/>
- <Cell col="22" text="bind:result"/>
- <Cell col="23" displaytype="date" text="bind:reqcnfmdd" calendardisplaynulltype="none"/>
- </Band>
- </Format>
- </Formats>
- </Grid>
- <Grid id="grd_endlist" binddataset="ds_main_grd_endlist_endlist" visible="false" position="absolute 0 179 1194 747" style="align: bottom;">
- <Formats>
- <Format id="default">
- <Columns>
- <Column size="22"/>
- <Column size="73"/>
- <Column size="72"/>
- <Column size="65"/>
- <Column size="62"/>
- <Column size="42"/>
- <Column size="100"/>
- <Column size="40"/>
- <Column size="85"/>
- <Column size="36"/>
- <Column size="100"/>
- <Column size="90"/>
- <Column size="57"/>
- <Column size="66"/>
- <Column size="56"/>
- <Column size="89"/>
- <Column size="66"/>
- <Column size="42"/>
- <Column size="79"/>
- <Column size="93"/>
- </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="S_A"/>
- <Cell col="6" text="주민등록번호"/>
- <Cell col="7" text="소속"/>
- <Cell col="8" text="본당명"/>
- <Cell col="9" text="분류"/>
- <Cell col="10" text="진단명"/>
- <Cell col="11" text="진료과"/>
- <Cell col="12" text="진료의"/>
- <Cell col="13" text="총방문횟수"/>
- <Cell col="14" text="방문기간"/>
- <Cell col="15" text="종결사유"/>
- <Cell col="16" text="종결간호사"/>
- <Cell col="17" text="등급"/>
- <Cell col="18" text="최초의뢰일"/>
- <Cell col="19" text="최초의뢰확정일"/>
- </Band>
- <Band id="body">
- <Cell celltype="head" expr="currow+1"/>
- <Cell col="1" text="bind:enddd"/>
- <Cell col="2" text="bind:fstvisitdd"/>
- <Cell col="3" text="bind:pid"/>
- <Cell col="4" text="bind:pathngnm"/>
- <Cell col="5" text="bind:sex"/>
- <Cell col="6" text="bind:rrgstno"/>
- <Cell col="7" text="bind:position"/>
- <Cell col="8" text="bind:churchnm"/>
- <Cell col="9" text="bind:chrrgstkind"/>
- <Cell col="10" text="bind:diaghngnm"/>
- <Cell col="11" text="bind:reqdeptnm"/>
- <Cell col="12" text="bind:reqdrnm"/>
- <Cell col="13" text="bind:visitcount"/>
- <Cell col="14" text="bind:visitterm"/>
- <Cell col="15" text="bind:endreason"/>
- <Cell col="16" text="bind:endnursnm"/>
- <Cell col="17" text="bind:gradeflag"/>
- <Cell col="18" text="bind:reqdd"/>
- <Cell col="19" text="bind:reqcnfmdd"/>
- </Band>
- </Format>
- </Formats>
- </Grid>
- <Grid id="grd_cnfmlist" binddataset="ds_main_grd_cnfmlist_cnfmlist" visible="false" position="absolute 0 211 1194 779" style="align: bottom;">
- <Formats>
- <Format id="default">
- <Columns>
- <Column size="22"/>
- <Column size="83"/>
- <Column size="70"/>
- <Column size="69"/>
- <Column size="40"/>
- <Column size="100"/>
- <Column size="68"/>
- <Column size="100"/>
- <Column size="63"/>
- <Column size="181"/>
- <Column size="100"/>
- <Column size="78"/>
- <Column size="100"/>
- <Column size="59"/>
- <Column size="71"/>
- <Column size="100"/>
- <Column size="0"/>
- <Column size="60"/>
- <Column size="100"/>
- <Column size="100"/>
- <Column size="100"/>
- <Column size="100"/>
- </Columns>
- <Rows>
- <Row size="24" band="head"/>
- <Row size="24"/>
- </Rows>
- <Band id="head">
- <Cell/>
- <Cell col="1" text="의뢰확정일"/>
- <Cell col="2" text="등록번호"/>
- <Cell col="3" text="환자명"/>
- <Cell col="4" text="S_A"/>
- <Cell col="5" text="주민등록번호"/>
- <Cell col="6" text="소속"/>
- <Cell col="7" text="본당명"/>
- <Cell col="8" text="분류"/>
- <Cell col="9" text="진단명"/>
- <Cell col="10" text="진료과"/>
- <Cell col="11" text="진료의"/>
- <Cell col="12" text="의뢰일"/>
- <Cell col="13" text="의뢰경로"/>
- <Cell col="14" text="등급"/>
- <Cell col="15" text="본인부담률"/>
- <Cell col="16" text="첫방문일"/>
- <Cell col="17" text="중증도"/>
- <Cell col="18"/>
- <Cell col="19"/>
- <Cell col="20"/>
- <Cell col="21"/>
- </Band>
- <Band id="body">
- <Cell celltype="head" expr="currow+1"/>
- <Cell col="1" text="bind:reqcnfmdd"/>
- <Cell col="2" text="bind:pid"/>
- <Cell col="3" text="bind:pathngnm"/>
- <Cell col="4" text="bind:sex"/>
- <Cell col="5" text="bind:rrgstno"/>
- <Cell col="6" text="bind:position"/>
- <Cell col="7" text="bind:churchnm"/>
- <Cell col="8" text="bind:chrrgstkind"/>
- <Cell col="9" text="bind:diaghngnm"/>
- <Cell col="10" text="bind:reqdeptnm"/>
- <Cell col="11" text="bind:reqdrnm"/>
- <Cell col="12" text="bind:reqdd"/>
- <Cell col="13" text="bind:reqpath"/>
- <Cell col="14" text="bind:gradeflag"/>
- <Cell col="15" text="bind:qualflag"/>
- <Cell col="16" text="bind:fstvisitdd"/>
- <Cell col="17" text="bind:result"/>
- <Cell col="18" text="bind:churchcd"/>
- <Cell col="19" text="bind:diagcd"/>
- <Cell col="20" text="bind:reqdeptcd"/>
- <Cell col="21" text="bind:reqdrid"/>
- </Band>
- </Format>
- </Formats>
- </Grid>
- <Grid id="grd_cancellist" binddataset="ds_main_grd_cancellist_cancellist" visible="false" position="absolute 0 243 1194 811" style="align: bottom;">
- <Formats>
- <Format id="default">
- <Columns>
- <Column size="22"/>
- <Column size="90"/>
- <Column size="70"/>
- <Column size="60"/>
- <Column size="43"/>
- <Column size="100"/>
- <Column size="50"/>
- <Column size="83"/>
- <Column size="41"/>
- <Column size="234"/>
- <Column size="100"/>
- <Column size="70"/>
- <Column size="151"/>
- <Column size="80"/>
- <Column size="41"/>
- <Column size="132"/>
- <Column size="58"/>
- <Column size="100"/>
- <Column size="100"/>
- <Column size="100"/>
- <Column size="100"/>
- </Columns>
- <Rows>
- <Row size="24" band="head"/>
- <Row size="24"/>
- </Rows>
- <Band id="head">
- <Cell/>
- <Cell col="1" text="의뢰취소일"/>
- <Cell col="2" text="등록번호"/>
- <Cell col="3" text="환자명"/>
- <Cell col="4" text="S_A"/>
- <Cell col="5" text="주민등록번호"/>
- <Cell col="6" text="소속"/>
- <Cell col="7" text="본당명"/>
- <Cell col="8" text="분류"/>
- <Cell col="9" text="진단명"/>
- <Cell col="10" text="진료과"/>
- <Cell col="11" text="진료의"/>
- <Cell col="12" text="취소사유"/>
- <Cell col="13" text="의뢰일"/>
- <Cell col="14" text="등급"/>
- <Cell col="15" text="본인부담률"/>
- <Cell col="16" text="의뢰경로"/>
- <Cell col="17"/>
- <Cell col="18"/>
- <Cell col="19"/>
- <Cell col="20"/>
- </Band>
- <Band id="body">
- <Cell celltype="head" expr="currow+1"/>
- <Cell col="1" text="bind:reqcanceldd"/>
- <Cell col="2" text="bind:pid"/>
- <Cell col="3" text="bind:pathngnm"/>
- <Cell col="4" text="bind:sex"/>
- <Cell col="5" text="bind:rrgstno"/>
- <Cell col="6" text="bind:position"/>
- <Cell col="7" text="bind:churchnm"/>
- <Cell col="8" text="bind:chrrgstkind"/>
- <Cell col="9" text="bind:diaghngnm"/>
- <Cell col="10" text="bind:reqdeptnm"/>
- <Cell col="11" text="bind:reqdrnm"/>
- <Cell col="12" text="bind:cancelreason"/>
- <Cell col="13" text="bind:reqdd"/>
- <Cell col="14" text="bind:gradeflag"/>
- <Cell col="15" text="bind:qualflag"/>
- <Cell col="16" text="bind:reqpath"/>
- <Cell col="17" text="bind:churchcd"/>
- <Cell col="18" text="bind:diagcd"/>
- <Cell col="19" text="bind:reqdeptcd"/>
- <Cell col="20" text="bind:reqdrid"/>
- </Band>
- </Format>
- </Formats>
- </Grid>
- <Grid id="grd_visitspeclist" binddataset="ds_main_grd_visitspeclist_visitspeclist" visible="false" position="absolute 0 275 1194 864" style="align: bottom;">
- <Formats>
- <Format id="default">
- <Columns>
- <Column size="22"/>
- <Column size="73"/>
- <Column size="70"/>
- <Column size="61"/>
- <Column size="42"/>
- <Column size="100"/>
- <Column size="44"/>
- <Column size="86"/>
- <Column size="40"/>
- <Column size="140"/>
- <Column size="80"/>
- <Column size="59"/>
- <Column size="72"/>
- <Column size="85"/>
- <Column size="41"/>
- <Column size="143"/>
- <Column size="248"/>
- <Column size="90"/>
- <Column size="58"/>
- <Column size="80"/>
- <Column size="54"/>
- <Column size="100"/>
- <Column size="100"/>
- <Column size="100"/>
- <Column size="100"/>
- </Columns>
- <Rows>
- <Row size="24" band="head"/>
- <Row size="24"/>
- </Rows>
- <Band id="head">
- <Cell/>
- <Cell col="1" text="방문일"/>
- <Cell col="2" text="등록번호"/>
- <Cell col="3" text="환자명"/>
- <Cell col="4" text="S_A"/>
- <Cell col="5" text="주민등록번호"/>
- <Cell col="6" text="소속"/>
- <Cell col="7" text="본당명"/>
- <Cell col="8" text="분류"/>
- <Cell col="9" text="진단명"/>
- <Cell col="10" text="진료과"/>
- <Cell col="11" text="진료의"/>
- <Cell col="12" text="방문간호사"/>
- <Cell col="13" text="의뢰일"/>
- <Cell col="14" text="등급"/>
- <Cell col="15" text="본인부담률"/>
- <Cell col="16" text="방문시간구분"/>
- <Cell col="17" text="의뢰확정일"/>
- <Cell col="18" text="의뢰경로"/>
- <Cell col="19" text="첫방문일"/>
- <Cell col="20" text="중증도"/>
- <Cell col="21"/>
- <Cell col="22"/>
- <Cell col="23"/>
- <Cell col="24"/>
- </Band>
- <Band id="body">
- <Cell celltype="head" expr="currow+1"/>
- <Cell col="1" text="bind:visitdd"/>
- <Cell col="2" text="bind:pid"/>
- <Cell col="3" text="bind:pathngnm"/>
- <Cell col="4" text="bind:sex"/>
- <Cell col="5" text="bind:rrgstno"/>
- <Cell col="6" text="bind:position"/>
- <Cell col="7" text="bind:churchnm"/>
- <Cell col="8" text="bind:chrrgstkind"/>
- <Cell col="9" style="align:left middle;" text="bind:diaghngnm"/>
- <Cell col="10" text="bind:reqdeptnm"/>
- <Cell col="11" text="bind:reqdrnm"/>
- <Cell col="12" text="bind:chrgnursnm"/>
- <Cell col="13" text="bind:reqdd"/>
- <Cell col="14" text="bind:gradeflag"/>
- <Cell col="15" text="bind:qualflag"/>
- <Cell col="16" text="bind:visittimeking"/>
- <Cell col="17" text="bind:reqcnfmdd"/>
- <Cell col="18" text="bind:reqpath"/>
- <Cell col="19" text="bind:fstvisitdd"/>
- <Cell col="20" text="bind:result"/>
- <Cell col="21" text="bind:churchcd"/>
- <Cell col="22" text="bind:diagcd"/>
- <Cell col="23" text="bind:reqdeptcd"/>
- <Cell col="24" text="bind:reqdrid"/>
- </Band>
- </Format>
- </Formats>
- </Grid>
- <Div id="grp_sea" position="absolute 0 10 1195 90" style="align: top;">
- <Layouts>
- <Layout>
- <Shape id="roundrect1" anchor="default" class="roundrect_search" type="roundrectangle" position="absolute 0 5 1195 75" style=""/>
- <Shape id="line13" class="line_4" linetype="vertical" position="absolute 1107 12 1110 68" style="" anchor="default"/>
- <Button id="btn_search" class="btn1" position="absolute 1126 28 1182 50" style="" text="조회" onclick="group5_grp_sea_btn_search_onclick"/>
- <Radio innerdataset="@ds_init_listset_list" datacolumn="cdnm" codecolumn="cdid" columncount="-1" rowcount="-1" id="rdo_kind" class="radio_search" position="absolute 350 16 543 36" style="" onitemchanged="group5_grp_sea_rdo_kind_onitemchanged" onkillfocus="group5_grp_sea_rdo_kind_onkillfocus"/>
- <Div id="grp_kindchurch" position="absolute 480 15 1040 35" style="background:transparent ;">
- <Layouts>
- <Layout>
- <Combo innerdataset="ds_item_church_churchlist" datacolumn="churchnm" codecolumn="churchcd" columncount="-1" rowcount="-1" id="combo5" class="combo_search" position="absolute 331 0 436 19" style="" onitemchanged="group5_grp_sea_grp_kindchurch_combo5_onitemchanged" visible="false"/>
- <Combo innerdataset="ds_item_chargenurse_nurselist" datacolumn="usernm" codecolumn="userid" columncount="-1" rowcount="-1" id="combo7" class="combo_search" position="absolute 98 0 188 19" style="" onitemchanged="group5_grp_sea_grp_kindchurch_combo7_onitemchanged"/>
- <Static id="caption28" class="search_name" position="absolute 16 0 96 17" style="" text="본당명 :" visible="false"/>
- <Static id="caption29" class="search_name" position="absolute 9 1 108 18" style="" text="방문간호사 :"/>
- <cp_checkboxList datacolumn="datacolumn" codecolumn="codecolumn" columncount="-1" rowcount="-1" id="checkbox1" class="checkbox_search" col="3" row="1" position="absolute 253 0 393 17" style="align:center ;" titletext="CheckBox List" text="checkbox1" scrollbars="none" cellspacing="2" vcellspacing="0" itemWidth="100" itemHeight="100" visible="false">
- <Dataset id="innerdataset">
- <ColumnInfo>
- <Column id="codecolumn"/>
- <Column id="datacolumn"/>
- </ColumnInfo>
- <Rows>
- <Row>
- <Col id="codecolumn">1</Col>
- <Col id="datacolumn">등록</Col>
- </Row>
- <Row>
- <Col id="codecolumn">2</Col>
- <Col id="datacolumn">무료</Col>
- </Row>
- <Row>
- <Col id="codecolumn">3</Col>
- <Col id="datacolumn">기타</Col>
- </Row>
- </Rows>
- </Dataset>
- </cp_checkboxList>
- </Layout>
- </Layouts>
- </Div>
- <Static id="caption1" class="search_name" position="absolute 15 17 113 34" style="" text="조회구간 :"/>
- <Div id="grp_kindhosp" position="absolute 720 15 799 38" style="background:transparent ;" visible="false">
- <Layouts>
- <Layout>
- <Combo innerdataset="ds_item_chargenurse_nurselist" datacolumn="usernm" codecolumn="userid" columncount="-1" rowcount="-1" id="combo6" class="combo_search" position="absolute 124 0 224 19" style="" onitemchanged="group5_grp_sea_grp_kindhosp_combo6_onitemchanged" visible="false" anchor="default"/>
- <Static id="caption27" class="search_name" position="absolute -112 1 -13 18" style="" text="방문간호사 :" visible="false" anchor="default"/>
- </Layout>
- </Layouts>
- </Div>
- <Calendar id="ipt_fromdd" class="input_search" position="absolute 107 16 207 35" style="" anchor="default" autoselect="true"/>
- <Calendar id="ipt_todd" class="input_search" position="absolute 235 16 335 35" style="" anchor="default" autoselect="true"/>
- <Static id="caption3" class="search_name" position="absolute 15 47 130 64" style="" text="진행상태 :"/>
- <Radio datacolumn="datacolumn" codecolumn="codecolumn" columncount="-1" rowcount="-1" id="rdo_procstatus" class="radio_search" position="absolute 110 48 465 68" style="" onitemchanged="group5_grp_sea_rdo_procstatus_onitemchanged">
- <Dataset id="innerdataset">
- <ColumnInfo>
- <Column id="codecolumn"/>
- <Column id="datacolumn"/>
- </ColumnInfo>
- <Rows>
- <Row>
- <Col id="codecolumn">1</Col>
- <Col id="datacolumn">첫방문</Col>
- </Row>
- <Row>
- <Col id="codecolumn">2</Col>
- <Col id="datacolumn">진행</Col>
- </Row>
- <Row>
- <Col id="codecolumn">3</Col>
- <Col id="datacolumn">종결</Col>
- </Row>
- <Row>
- <Col id="codecolumn">4</Col>
- <Col id="datacolumn">의뢰확정</Col>
- </Row>
- <Row>
- <Col id="codecolumn">5</Col>
- <Col id="datacolumn">의뢰취소</Col>
- </Row>
- <Row>
- <Col id="codecolumn">6</Col>
- <Col id="datacolumn">방문내역</Col>
- </Row>
- </Rows>
- </Dataset>
- </Radio>
- <Static id="caption10" position="absolute 215 19 227 32" style="" text="~"/>
- <Static id="caption60" class="search_name" position="absolute 480 50 591 67" style="" text="간호구분 :"/>
- <Radio datacolumn="datacolumn" codecolumn="codecolumn" columncount="-1" rowcount="-1" id="rdo_careflag" class="radio_search" position="absolute 585 50 725 70" style="" onitemchanged="group5_grp_sea_rdo_careflag_onitemchanged">
- <Dataset id="innerdataset">
- <ColumnInfo>
- <Column id="codecolumn"/>
- <Column id="datacolumn"/>
- </ColumnInfo>
- <Rows>
- <Row>
- <Col id="codecolumn">H</Col>
- <Col id="datacolumn">가정간호</Col>
- </Row>
- <Row>
- <Col id="codecolumn">V</Col>
- <Col id="datacolumn">방문간호</Col>
- </Row>
- </Rows>
- </Dataset>
- </Radio>
- </Layout>
- </Layouts>
- </Div>
- <Static id="cap_listtitle" class="tit_2" position="absolute 5 97 129 110" style="" text="환자 리스트"/>
- <Shape id="line2" class="line_1" linetype="horizontal" position="absolute 0 112 1194 115" style="" anchor="default"/>
- <Button id="btn_excel" class="btn2" position="absolute 1140 92 1193 111" style="" text="Excel" onclick="group5_btn_excel_onclick"/>
- <Button id="btn_print" class="btn2" position="absolute 1095 92 1137 111" style="" text="출력" onclick="group5_btn_print_onclick" visible="true"/>
- <Static id="caption8" position="absolute 400 705 500 730" style="" text="평균 방문수" visible="false"/>
- <Static id="caption9" position="absolute 645 705 747 730" style="" text="평균 방문기간" visible="false"/>
- <Edit id="input1" visible="false" position="absolute 480 707 585 726" style="" anchor="default"/>
- <Edit id="input2" visible="false" position="absolute 730 707 835 726" style="" anchor="default"/>
- </Layout>
- </Layouts>
- </Div>
- </Layout>
- </Layouts>
- <Objects>
- <Dataset id="ds_init_listset_list" firefirstcount="0" firenextcount="0" useclientlayout="false" updatecontrol="true" enableevent="true" loadkeymode="keep" loadfiltermode="keep" reversesubsum="keep">
- <ColumnInfo>
- <Column id="cdid" type="STRING" size="256"/>
- <Column id="cdnm" type="STRING" size="256"/>
- </ColumnInfo>
- <Rows>
- <Row>
- <Col id="cdid">1</Col>
- <Col id="cdnm">병원</Col>
- </Row>
- </Rows>
- </Dataset>
- <Dataset id="ds_item" firefirstcount="0" firenextcount="0" useclientlayout="false" updatecontrol="true" enableevent="true" loadkeymode="keep" loadfiltermode="keep" reversesubsum="keep">
- <ColumnInfo>
- <Column id="reqcancelreason" type="STRING" size="256"/>
- <Column id="endreason" type="STRING" size="256"/>
- <Column id="kind" type="STRING" size="256"/>
- <Column id="chrrgstkind" type="STRING" size="256"/>
- <Column id="reqpath" type="STRING" size="256"/>
- </ColumnInfo>
- </Dataset>
- <Dataset id="ds_init_listset1_list" firefirstcount="0" firenextcount="0" useclientlayout="false" updatecontrol="true" enableevent="true" loadkeymode="keep" loadfiltermode="keep" reversesubsum="keep">
- <ColumnInfo>
- <Column id="cdid" type="STRING" size="256"/>
- <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"/>
- <Column id="cdnm" type="STRING" size="256"/>
- </ColumnInfo>
- <Rows>
- <Row>
- <Col id="cdid">1</Col>
- <Col id="cdnm">병원</Col>
- </Row>
- <Row>
- <Col id="cdid">2</Col>
- <Col id="cdnm">본당</Col>
- </Row>
- <Row>
- <Col id="cdid">3</Col>
- <Col id="cdnm">재택</Col>
- </Row>
- </Rows>
- </Dataset>
- <Dataset id="ds_item_chargenurse_nurselist" firefirstcount="0" firenextcount="0" useclientlayout="false" updatecontrol="true" enableevent="true" loadkeymode="keep" loadfiltermode="keep" reversesubsum="keep">
- <ColumnInfo>
- <Column id="userid" type="STRING" size="256"/>
- <Column id="usernm" type="STRING" size="256"/>
- </ColumnInfo>
- <Rows>
- <Row>
- <Col id="userid"/>
- <Col id="usernm"/>
- </Row>
- </Rows>
- </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_item_chargenurse" firefirstcount="0" firenextcount="0" useclientlayout="false" updatecontrol="true" enableevent="true" loadkeymode="keep" loadfiltermode="keep" reversesubsum="keep">
- <ColumnInfo/>
- </Dataset>
- <Dataset id="ds_send" firefirstcount="0" firenextcount="0" useclientlayout="false" updatecontrol="true" enableevent="true" loadkeymode="keep" loadfiltermode="keep" reversesubsum="keep">
- <ColumnInfo>
- <Column id="fromdd" type="STRING" size="256"/>
- <Column id="todd" type="STRING" size="256"/>
- <Column id="procstatus" type="STRING" size="256"/>
- <Column id="kind" type="STRING" size="256"/>
- <Column id="chrgnursid" type="STRING" size="256"/>
- <Column id="churchcd" type="STRING" size="256"/>
- <Column id="chrrgstkind" type="STRING" size="256"/>
- <Column id="rgstkind1" type="STRING" size="256"/>
- <Column id="rgstkind23" type="STRING" size="256"/>
- <Column id="rgstkind23arr" type="STRING" size="256"/>
- <Column id="careflag" type="STRING" size="256"/>
- <Column id="patcareflag" type="STRING" size="256"/>
- </ColumnInfo>
- <Rows>
- <Row>
- <Col id="fromdd"/>
- <Col id="todd"/>
- <Col id="procstatus"/>
- <Col id="kind">1</Col>
- <Col id="chrgnursid">%</Col>
- <Col id="churchcd">-</Col>
- <Col id="chrrgstkind"/>
- <Col id="rgstkind1"/>
- <Col id="rgstkind23"/>
- <Col id="rgstkind23arr"/>
- <Col id="careflag">H</Col>
- <Col id="patcareflag">H</Col>
- </Row>
- </Rows>
- </Dataset>
- <Dataset id="ds_item_dctype" firefirstcount="0" firenextcount="0" useclientlayout="false" updatecontrol="true" enableevent="true" loadkeymode="keep" loadfiltermode="keep" reversesubsum="keep">
- <ColumnInfo>
- <Column id="qualflaglist" type="STRING" size="256"/>
- </ColumnInfo>
- <Rows>
- <Row>
- <Col id="qualflaglist"/>
- </Row>
- </Rows>
- </Dataset>
- <Dataset id="ds_item_church" firefirstcount="0" firenextcount="0" useclientlayout="false" updatecontrol="true" enableevent="true" loadkeymode="keep" loadfiltermode="keep" reversesubsum="keep">
- <ColumnInfo>
- <Column id="churchlist" type="STRING" size="256"/>
- </ColumnInfo>
- <Rows>
- <Row>
- <Col id="churchlist"/>
- </Row>
- </Rows>
- </Dataset>
- <Dataset id="ds_init_listset1" firefirstcount="0" firenextcount="0" useclientlayout="false" updatecontrol="true" enableevent="true" loadkeymode="keep" loadfiltermode="keep" reversesubsum="keep">
- <ColumnInfo/>
- </Dataset>
- <Dataset id="ds_main" firefirstcount="0" firenextcount="0" useclientlayout="false" updatecontrol="true" enableevent="true" loadkeymode="keep" loadfiltermode="keep" reversesubsum="keep">
- <ColumnInfo/>
- </Dataset>
- <Dataset id="ds_main_grd_proclist" firefirstcount="0" firenextcount="0" useclientlayout="false" updatecontrol="true" enableevent="true" loadkeymode="keep" loadfiltermode="keep" reversesubsum="keep">
- <ColumnInfo/>
- </Dataset>
- <Dataset id="ds_main_grd_visitlist" firefirstcount="0" firenextcount="0" useclientlayout="false" updatecontrol="true" enableevent="true" loadkeymode="keep" loadfiltermode="keep" reversesubsum="keep">
- <ColumnInfo/>
- </Dataset>
- <Dataset id="ds_main_grd_cancellist_cancellist" firefirstcount="0" firenextcount="0" useclientlayout="false" updatecontrol="true" enableevent="true" loadkeymode="keep" loadfiltermode="keep" reversesubsum="keep">
- <ColumnInfo>
- <Column id="reqcanceldd" type="STRING" size="256"/>
- <Column id="pid" type="STRING" size="256"/>
- <Column id="pathngnm" type="STRING" size="256"/>
- <Column id="sex" type="STRING" size="256"/>
- <Column id="rrgstno" type="STRING" size="256"/>
- <Column id="position" type="STRING" size="256"/>
- <Column id="churchnm" type="STRING" size="256"/>
- <Column id="chrrgstkind" type="STRING" size="256"/>
- <Column id="diaghngnm" type="STRING" size="256"/>
- <Column id="reqdeptnm" type="STRING" size="256"/>
- <Column id="reqdrnm" type="STRING" size="256"/>
- <Column id="cancelreason" type="STRING" size="256"/>
- <Column id="reqdd" type="STRING" size="256"/>
- <Column id="gradeflag" type="STRING" size="256"/>
- <Column id="qualflag" type="STRING" size="256"/>
- <Column id="reqpath" type="STRING" size="256"/>
- <Column id="churchcd" type="STRING" size="256"/>
- <Column id="diagcd" type="STRING" size="256"/>
- <Column id="reqdeptcd" type="STRING" size="256"/>
- <Column id="reqdrid" type="STRING" size="256"/>
- <Column id="chrgnursid" type="STRING" size="256"/>
- <Column id="careflag" type="STRING" size="256"/>
- </ColumnInfo>
- <Rows>
- <Row>
- <Col id="reqcanceldd"/>
- <Col id="pid"/>
- <Col id="pathngnm"/>
- <Col id="sex"/>
- <Col id="rrgstno"/>
- <Col id="position"/>
- <Col id="churchnm"/>
- <Col id="chrrgstkind"/>
- <Col id="diaghngnm"/>
- <Col id="reqdeptnm"/>
- <Col id="reqdrnm"/>
- <Col id="cancelreason"/>
- <Col id="reqdd"/>
- <Col id="gradeflag"/>
- <Col id="qualflag"/>
- <Col id="reqpath"/>
- <Col id="churchcd"/>
- <Col id="diagcd"/>
- <Col id="reqdeptcd"/>
- <Col id="reqdrid"/>
- <Col id="chrgnursid"/>
- <Col id="careflag"/>
- </Row>
- </Rows>
- </Dataset>
- <Dataset id="ds_main_grd_proclist_proclist" firefirstcount="0" firenextcount="0" useclientlayout="false" updatecontrol="true" enableevent="true" loadkeymode="keep" loadfiltermode="keep" reversesubsum="keep">
- <ColumnInfo>
- <Column id="fstvisitdd" type="STRING" size="256"/>
- <Column id="pid" type="STRING" size="256"/>
- <Column id="pathngnm" type="STRING" size="256"/>
- <Column id="sex" type="STRING" size="256"/>
- <Column id="rrgstno" type="STRING" size="256"/>
- <Column id="position" type="STRING" size="256"/>
- <Column id="churchnm" type="STRING" size="256"/>
- <Column id="chrrgstkind" type="STRING" size="256"/>
- <Column id="diaghngnm" type="STRING" size="256"/>
- <Column id="reqdeptnm" type="STRING" size="256"/>
- <Column id="reqdrnm" type="STRING" size="256"/>
- <Column id="chrgnursnm" type="STRING" size="256"/>
- <Column id="visitdd" type="STRING" size="256"/>
- <Column id="visitcount" type="STRING" size="256"/>
- <Column id="visitterm" type="STRING" size="256"/>
- <Column id="reqdd" type="STRING" size="256"/>
- <Column id="gradeflag" type="STRING" size="256"/>
- <Column id="qualflag" type="STRING" size="256"/>
- <Column id="addr" type="STRING" size="256"/>
- <Column id="tel" type="STRING" size="256"/>
- <Column id="reqpath" type="STRING" size="256"/>
- <Column id="result" type="STRING" size="256"/>
- <Column id="reqcnfmdd" type="STRING" size="256"/>
- <Column id="churchcd" type="STRING" size="256"/>
- <Column id="diagcd" type="STRING" size="256"/>
- <Column id="reqdeptcd" type="STRING" size="256"/>
- <Column id="reqdrid" type="STRING" size="256"/>
- <Column id="chrgnursid" type="STRING" size="256"/>
- <Column id="careflag" type="STRING" size="256"/>
- </ColumnInfo>
- <Rows>
- <Row>
- <Col id="fstvisitdd"/>
- <Col id="pid"/>
- <Col id="pathngnm"/>
- <Col id="sex"/>
- <Col id="rrgstno"/>
- <Col id="position"/>
- <Col id="churchnm"/>
- <Col id="chrrgstkind"/>
- <Col id="diaghngnm"/>
- <Col id="reqdeptnm"/>
- <Col id="reqdrnm"/>
- <Col id="chrgnursnm"/>
- <Col id="visitdd"/>
- <Col id="visitcount"/>
- <Col id="visitterm"/>
- <Col id="reqdd"/>
- <Col id="gradeflag"/>
- <Col id="qualflag"/>
- <Col id="addr"/>
- <Col id="tel"/>
- <Col id="reqpath"/>
- <Col id="result"/>
- <Col id="reqcnfmdd"/>
- <Col id="churchcd"/>
- <Col id="diagcd"/>
- <Col id="reqdeptcd"/>
- <Col id="reqdrid"/>
- <Col id="chrgnursid"/>
- <Col id="careflag"/>
- </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="temp" type="STRING" size="256"/>
- </ColumnInfo>
- <Rows>
- <Row>
- <Col id="temp"/>
- </Row>
- </Rows>
- </Dataset>
- <Dataset id="ds_main_grd_endlist_endlist" firefirstcount="0" firenextcount="0" useclientlayout="false" updatecontrol="true" enableevent="true" loadkeymode="keep" loadfiltermode="keep" reversesubsum="keep">
- <ColumnInfo>
- <Column id="enddd" type="STRING" size="256"/>
- <Column id="fstvisitdd" type="STRING" size="256"/>
- <Column id="pid" type="STRING" size="256"/>
- <Column id="pathngnm" type="STRING" size="256"/>
- <Column id="sex" type="STRING" size="256"/>
- <Column id="rrgstno" type="STRING" size="256"/>
- <Column id="position" type="STRING" size="256"/>
- <Column id="churchnm" type="STRING" size="256"/>
- <Column id="chrrgstkind" type="STRING" size="256"/>
- <Column id="diaghngnm" type="STRING" size="256"/>
- <Column id="reqdeptnm" type="STRING" size="256"/>
- <Column id="reqdrnm" type="STRING" size="256"/>
- <Column id="visitcount" type="STRING" size="256"/>
- <Column id="visitterm" type="STRING" size="256"/>
- <Column id="endreason" type="STRING" size="256"/>
- <Column id="endnursnm" type="STRING" size="256"/>
- <Column id="gradeflag" type="STRING" size="256"/>
- <Column id="reqdd" type="STRING" size="256"/>
- <Column id="reqcnfmdd" type="STRING" size="256"/>
- <Column id="churchcd" type="STRING" size="256"/>
- <Column id="diagcd" type="STRING" size="256"/>
- <Column id="reqdeptcd" type="STRING" size="256"/>
- <Column id="reqdrid" type="STRING" size="256"/>
- <Column id="chrgnursid" type="STRING" size="256"/>
- <Column id="careflag" type="STRING" size="256"/>
- </ColumnInfo>
- <Rows>
- <Row>
- <Col id="enddd"/>
- <Col id="fstvisitdd"/>
- <Col id="pid"/>
- <Col id="pathngnm"/>
- <Col id="sex"/>
- <Col id="rrgstno"/>
- <Col id="position"/>
- <Col id="churchnm"/>
- <Col id="chrrgstkind"/>
- <Col id="diaghngnm"/>
- <Col id="reqdeptnm"/>
- <Col id="reqdrnm"/>
- <Col id="visitcount"/>
- <Col id="visitterm"/>
- <Col id="endreason"/>
- <Col id="endnursnm"/>
- <Col id="gradeflag"/>
- <Col id="reqdd"/>
- <Col id="reqcnfmdd"/>
- <Col id="churchcd"/>
- <Col id="diagcd"/>
- <Col id="reqdeptcd"/>
- <Col id="reqdrid"/>
- <Col id="chrgnursid"/>
- <Col id="careflag"/>
- </Row>
- </Rows>
- </Dataset>
- <Dataset id="ds_main_grd_visitspeclist" firefirstcount="0" firenextcount="0" useclientlayout="false" updatecontrol="true" enableevent="true" loadkeymode="keep" loadfiltermode="keep" reversesubsum="keep">
- <ColumnInfo/>
- </Dataset>
- <Dataset id="ds_main_grd_endlist" firefirstcount="0" firenextcount="0" useclientlayout="false" updatecontrol="true" enableevent="true" loadkeymode="keep" loadfiltermode="keep" reversesubsum="keep">
- <ColumnInfo/>
- </Dataset>
- <Dataset id="ds_init_listset" firefirstcount="0" firenextcount="0" useclientlayout="false" updatecontrol="true" enableevent="true" loadkeymode="keep" loadfiltermode="keep" reversesubsum="keep">
- <ColumnInfo/>
- </Dataset>
- <Dataset id="ds_main_grd_cnfmlist" firefirstcount="0" firenextcount="0" useclientlayout="false" updatecontrol="true" enableevent="true" loadkeymode="keep" loadfiltermode="keep" reversesubsum="keep">
- <ColumnInfo/>
- </Dataset>
- <Dataset id="ds_main_grd_cnfmlist_cnfmlist" firefirstcount="0" firenextcount="0" useclientlayout="false" updatecontrol="true" enableevent="true" loadkeymode="keep" loadfiltermode="keep" reversesubsum="keep">
- <ColumnInfo>
- <Column id="reqcnfmdd" type="STRING" size="256"/>
- <Column id="pid" type="STRING" size="256"/>
- <Column id="pathngnm" type="STRING" size="256"/>
- <Column id="sex" type="STRING" size="256"/>
- <Column id="rrgstno" type="STRING" size="256"/>
- <Column id="position" type="STRING" size="256"/>
- <Column id="churchnm" type="STRING" size="256"/>
- <Column id="chrrgstkind" type="STRING" size="256"/>
- <Column id="diaghngnm" type="STRING" size="256"/>
- <Column id="reqdeptnm" type="STRING" size="256"/>
- <Column id="reqdrnm" type="STRING" size="256"/>
- <Column id="reqdd" type="STRING" size="256"/>
- <Column id="gradeflag" type="STRING" size="256"/>
- <Column id="qualflag" type="STRING" size="256"/>
- <Column id="visittimekind" type="STRING" size="256"/>
- <Column id="reqpath" type="STRING" size="256"/>
- <Column id="gradeflag" type="STRING" size="256"/>
- <Column id="qualflag" type="STRING" size="256"/>
- <Column id="fstvisitdd" type="STRING" size="256"/>
- <Column id="result" type="STRING" size="256"/>
- <Column id="churchcd" type="STRING" size="256"/>
- <Column id="diagcd" type="STRING" size="256"/>
- <Column id="reqdeptcd" type="STRING" size="256"/>
- <Column id="reqdrid" type="STRING" size="256"/>
- <Column id="chrgnursid" type="STRING" size="256"/>
- <Column id="careflag" type="STRING" size="256"/>
- </ColumnInfo>
- <Rows>
- <Row>
- <Col id="reqcnfmdd"/>
- <Col id="pid"/>
- <Col id="pathngnm"/>
- <Col id="sex"/>
- <Col id="rrgstno"/>
- <Col id="position"/>
- <Col id="churchnm"/>
- <Col id="chrrgstkind"/>
- <Col id="diaghngnm"/>
- <Col id="reqdeptnm"/>
- <Col id="reqdrnm"/>
- <Col id="reqdd"/>
- <Col id="gradeflag"/>
- <Col id="qualflag"/>
- <Col id="visittimekind"/>
- <Col id="reqpath"/>
- <Col id="gradeflag"/>
- <Col id="qualflag"/>
- <Col id="fstvisitdd"/>
- <Col id="result"/>
- <Col id="churchcd"/>
- <Col id="diagcd"/>
- <Col id="reqdeptcd"/>
- <Col id="reqdrid"/>
- <Col id="chrgnursid"/>
- <Col id="careflag"/>
- </Row>
- </Rows>
- </Dataset>
- <Dataset id="ds_main_grd_visitspeclist_visitspeclist" firefirstcount="0" firenextcount="0" useclientlayout="false" updatecontrol="true" enableevent="true" loadkeymode="keep" loadfiltermode="keep" reversesubsum="keep">
- <ColumnInfo>
- <Column id="visitdd" type="STRING" size="256"/>
- <Column id="pid" type="STRING" size="256"/>
- <Column id="pathngnm" type="STRING" size="256"/>
- <Column id="sex" type="STRING" size="256"/>
- <Column id="rrgstno" type="STRING" size="256"/>
- <Column id="position" type="STRING" size="256"/>
- <Column id="churchnm" type="STRING" size="256"/>
- <Column id="chrrgstkind" type="STRING" size="256"/>
- <Column id="diaghngnm" type="STRING" size="256"/>
- <Column id="reqdeptnm" type="STRING" size="256"/>
- <Column id="reqdrnm" type="STRING" size="256"/>
- <Column id="visitnursnm" type="STRING" size="256"/>
- <Column id="reqdd" type="STRING" size="256"/>
- <Column id="gradeflag" type="STRING" size="256"/>
- <Column id="qualflag" type="STRING" size="256"/>
- <Column id="visittimeking" type="STRING" size="256"/>
- <Column id="reqcnfmdd" type="STRING" size="256"/>
- <Column id="reqpath" type="STRING" size="256"/>
- <Column id="fstvisitdd" type="STRING" size="256"/>
- <Column id="result" type="STRING" size="256"/>
- <Column id="churchcd" type="STRING" size="256"/>
- <Column id="diagcd" type="STRING" size="256"/>
- <Column id="reqdeptcd" type="STRING" size="256"/>
- <Column id="reqdrid" type="STRING" size="256"/>
- <Column id="chrgnursid" type="STRING" size="256"/>
- <Column id="visitcount" type="STRING" size="256"/>
- <Column id="careflag" type="STRING" size="256"/>
- </ColumnInfo>
- <Rows>
- <Row>
- <Col id="visitdd"/>
- <Col id="pid"/>
- <Col id="pathngnm"/>
- <Col id="sex"/>
- <Col id="rrgstno"/>
- <Col id="position"/>
- <Col id="churchnm"/>
- <Col id="chrrgstkind"/>
- <Col id="diaghngnm"/>
- <Col id="reqdeptnm"/>
- <Col id="reqdrnm"/>
- <Col id="visitnursnm"/>
- <Col id="reqdd"/>
- <Col id="gradeflag"/>
- <Col id="qualflag"/>
- <Col id="visittimeking"/>
- <Col id="reqcnfmdd"/>
- <Col id="reqpath"/>
- <Col id="fstvisitdd"/>
- <Col id="result"/>
- <Col id="churchcd"/>
- <Col id="diagcd"/>
- <Col id="reqdeptcd"/>
- <Col id="reqdrid"/>
- <Col id="chrgnursid"/>
- <Col id="visitcount"/>
- <Col id="careflag"/>
- </Row>
- </Rows>
- </Dataset>
- <Dataset id="ds_main_grd_visitlist_visitlist" firefirstcount="0" firenextcount="0" useclientlayout="false" updatecontrol="true" enableevent="true" loadkeymode="keep" loadfiltermode="keep" reversesubsum="keep">
- <ColumnInfo>
- <Column id="fstvisitdd" type="STRING" size="256"/>
- <Column id="pid" type="STRING" size="256"/>
- <Column id="pathngnm" type="STRING" size="256"/>
- <Column id="sex" type="STRING" size="256"/>
- <Column id="rrgstno" type="STRING" size="256"/>
- <Column id="position" type="STRING" size="256"/>
- <Column id="churchnm" type="STRING" size="256"/>
- <Column id="chrrgstkind" type="STRING" size="256"/>
- <Column id="diaghngnm" type="STRING" size="256"/>
- <Column id="reqdeptnm" type="STRING" size="256"/>
- <Column id="reqdrnm" type="STRING" size="256"/>
- <Column id="chrgnursnm" type="STRING" size="256"/>
- <Column id="reqdd" type="STRING" size="256"/>
- <Column id="reqpath" type="STRING" size="256"/>
- <Column id="result" type="STRING" size="256"/>
- <Column id="gradeflag" type="STRING" size="256"/>
- <Column id="qualflag" type="STRING" size="256"/>
- <Column id="churchcd" type="STRING" size="256"/>
- <Column id="diagcd" type="STRING" size="256"/>
- <Column id="reqdeptcd" type="STRING" size="256"/>
- <Column id="reqdrid" type="STRING" size="256"/>
- <Column id="chrgnursid" type="STRING" size="256"/>
- <Column id="enddd" type="STRING" size="256"/>
- <Column id="canceltime" type="STRING" size="256"/>
- <Column id="careflag" type="STRING" size="256"/>
- </ColumnInfo>
- <Rows>
- <Row>
- <Col id="fstvisitdd"/>
- <Col id="pid"/>
- <Col id="pathngnm"/>
- <Col id="sex"/>
- <Col id="rrgstno"/>
- <Col id="position"/>
- <Col id="churchnm"/>
- <Col id="chrrgstkind"/>
- <Col id="diaghngnm"/>
- <Col id="reqdeptnm"/>
- <Col id="reqdrnm"/>
- <Col id="chrgnursnm"/>
- <Col id="reqdd"/>
- <Col id="reqpath"/>
- <Col id="result"/>
- <Col id="gradeflag"/>
- <Col id="qualflag"/>
- <Col id="churchcd"/>
- <Col id="diagcd"/>
- <Col id="reqdeptcd"/>
- <Col id="reqdrid"/>
- <Col id="chrgnursid"/>
- <Col id="enddd"/>
- <Col id="canceltime"/>
- <Col id="careflag"/>
- </Row>
- </Rows>
- </Dataset>
- <Dataset id="ds_main_grd_cancellist" firefirstcount="0" firenextcount="0" useclientlayout="false" updatecontrol="true" enableevent="true" loadkeymode="keep" loadfiltermode="keep" reversesubsum="keep">
- <ColumnInfo/>
- </Dataset>
- <Dataset id="ds_code_codeinfo_codelist" firefirstcount="0" firenextcount="0" useclientlayout="false" updatecontrol="true" enableevent="true" loadkeymode="keep" loadfiltermode="keep" reversesubsum="false"/>
- <Dataset id="ds_item_qualflag" firefirstcount="0" firenextcount="0" useclientlayout="false" updatecontrol="true" enableevent="true" loadkeymode="keep" loadfiltermode="keep" reversesubsum="false"/>
- <Dataset id="ds_item_vdctype" firefirstcount="0" firenextcount="0" useclientlayout="false" updatecontrol="true" enableevent="true" loadkeymode="keep" loadfiltermode="keep" reversesubsum="keep">
- <ColumnInfo>
- <Column id="qualflaglist" type="STRING" size="256"/>
- </ColumnInfo>
- <Rows>
- <Row>
- <Col id="qualflaglist"/>
- </Row>
- </Rows>
- </Dataset>
- <Dataset id="ds_grd_visitlist" firefirstcount="0" firenextcount="0" useclientlayout="false" updatecontrol="true" enableevent="true" loadkeymode="keep" loadfiltermode="keep" reversesubsum="false"/>
- <Dataset id="ds_grd_proclist" firefirstcount="0" firenextcount="0" useclientlayout="false" updatecontrol="true" enableevent="true" loadkeymode="keep" loadfiltermode="keep" reversesubsum="false"/>
- <Dataset id="ds_grd_endlist" firefirstcount="0" firenextcount="0" useclientlayout="false" updatecontrol="true" enableevent="true" loadkeymode="keep" loadfiltermode="keep" reversesubsum="false"/>
- <Dataset id="ds_grd_cancellist" firefirstcount="0" firenextcount="0" useclientlayout="false" updatecontrol="true" enableevent="true" loadkeymode="keep" loadfiltermode="keep" reversesubsum="false"/>
- <Dataset id="ds_grd_cnfmlist" firefirstcount="0" firenextcount="0" useclientlayout="false" updatecontrol="true" enableevent="true" loadkeymode="keep" loadfiltermode="keep" reversesubsum="false"/>
- <Dataset id="ds_grd_visitspeclist" firefirstcount="0" firenextcount="0" useclientlayout="false" updatecontrol="true" enableevent="true" loadkeymode="keep" loadfiltermode="keep" reversesubsum="false"/>
- <Dataset id="ds_item_reqpath" firefirstcount="0" firenextcount="0" useclientlayout="false" updatecontrol="true" enableevent="true" loadkeymode="keep" loadfiltermode="keep" reversesubsum="false">
- <ColumnInfo>
- <Column id="cdid" type="STRING" size="255"/>
- <Column id="cdnm" type="STRING" size="255"/>
- </ColumnInfo>
- <Rows>
- <Row/>
- </Rows>
- </Dataset>
- </Objects>
- <Bind>
- <BindItem id="item0" compid="group5.grp_sea.rdo_kind" propid="value" datasetid="ds_send" columnid="kind"/>
- <BindItem id="item1" compid="group5.grp_sea.grp_kindchurch.combo5" propid="value" datasetid="ds_send" columnid="churchcd"/>
- <BindItem id="item2" compid="group5.grp_sea.grp_kindchurch.combo7" propid="value" datasetid="ds_send" columnid="chrgnursid"/>
- <BindItem id="item3" compid="group5.grp_sea.grp_kindchurch.checkbox1" propid="value" datasetid="ds_send" columnid="chrrgstkind"/>
- <BindItem id="item4" compid="group5.grp_sea.grp_kindhosp.combo6" propid="value" datasetid="ds_send" columnid="chrgnursid"/>
- <BindItem id="item5" compid="group5.grp_sea.ipt_fromdd" propid="value" datasetid="ds_send" columnid="fromdd"/>
- <BindItem id="item6" compid="group5.grp_sea.ipt_todd" propid="value" datasetid="ds_send" columnid="todd"/>
- <BindItem id="item7" compid="group5.grp_sea.rdo_procstatus" propid="value" datasetid="ds_send" columnid="procstatus"/>
- <BindItem id="item8" compid="group5.grp_sea.rdo_careflag" propid="value" datasetid="ds_send" columnid="careflag"/>
- </Bind>
- <Script type="xscript4.0"><![CDATA[/***************************************************************************************
- * System Name :
- * Job Name :
- * Creator :
- * Make Date : 2015-11-13
- * Description :
- *---------------------------------------------------------------------------------------
- * Modify Date Modifier Modify Description
- *---------------------------------------------------------------------------------------
- * 2015-11-13 Live Converter TF->XP
- *
- *---------------------------------------------------------------------------------------
- ****************************************************************************************/
- include "com_commonxp::comm_main.xjs";
- include "emr_carecomxp::CareCom.xjs";
- include "emr_homecarexp::SMMNF00100.xjs";
- include "com_basiccodexp::ZBC001.xjs";
- //스크립트 시작 ***
- //전체에서 event와 src를 제외한 script 를 모두포함.
- var searchListFlag;
- function SMMNF04600_onload(obj:Form, e:LoadEventInfo) {
- frmf_initForm(obj);
-
- //grdf_initGrid(grd_XXX);
- //grdf_setGridSort(grd_XXX);
- //grdf_setRowTypeIcon(grd_XXX, 0_컬럼위치값);
- fInitHomeCareRdo("group5.grp_sea.rdo_kind");
-
- // Default 첫방문 선택
- group5.grp_sea.rdo_procstatus.value = 1;
- // Default 전체 선택
- group5.grp_sea.rdo_kind.value = 1;
- // 공통코드 가져오기( M0387-의뢰취소사유, M0348- 본당구분(등록,무료, 기타), M0347-구분(병원, 본당, 재택) A0001-의뢰경로(외래, 입원, 응급)
- var arrParam = [ {dsNm: "ds_item_reqcancelreason", cdGrpId: "M0387" }
- ,{dsNm: "ds_item_chrrgstkind", cdGrpId: "M0348" }
- ,{dsNm: "ds_item_kind", cdGrpId: "M0347" }
- ,{dsNm: "ds_item_reqpath", cdGrpId: "A0001" } ];
- appf_getCodeList(arrParam );
-
-
- // 환자 본인부담률을 가져온다.
- var oParam = {};
- oParam.id = "TRMNF00110";
- oParam.service = "homecareapp.HomeCare";
- oParam.method = "reqGetDcType";
- oParam.inds = "req=ds_send";
- oParam.outds = "ds_item_dctype=dctypelist ds_item_qualflag=qualflaglist ds_item_vdctype=vdctypelist";
- oParam.async = false;
- //oParam.callback = "cf_TRMNF00110";
- tranf_submit(oParam);
- group5.grd_visitlist.visible = true;
- group5.grd_proclist.visible = false;
- group5.grd_endlist.visible = false;
- group5.grd_cnfmlist.visible = false;
- group5.grd_cancellist.visible = false;
- group5.grd_visitspeclist.visible = false;
- var currDate;
- currDate = utlf_getCurrentDate();
- // ds_send.setColumn( 0, "fromdd", getDateCalc(currDate, 13));
- ds_send.setColumn( 0, "fromdd", currDate.substr(0, 6) + '01'); // 현재 월의 1일로 기본값 설정
- ds_send.setColumn( 0, "todd", currDate);
- ds_send.setColumn( 0, "procstatus", group5.grp_sea.rdo_procstatus.value);
- ds_send.setColumn( 0, "kind", group5.grp_sea.rdo_kind.value);
- //model.refresh();
- // 조회조건의 가정간호 담당간호사 리스트를 조회, 콤보박스에 세팅한다.
- var oParam = {};
- oParam.id = "TRMNF00106";
- oParam.service = "homecareapp.HomeCare";
- oParam.method = "reqGetChargeNurseList";
- oParam.inds = "req=ds_send";
- oParam.outds = "ds_item_chargenurse_nurselist=nurselist";
- oParam.async = false;
- //oParam.callback = "cf_TRMNF00106";
- tranf_submit(oParam);
- // Default 담당간호사 선택
- group5.grp_sea.grp_kindhosp.combo6.value = "%" ; // 전체
- // var updtdata;
- // group5.grd_visitlist.visible = false;
- // group5.grd_proclist.visible = false;
- // group5.grd_endlist.visible = false;
- // group5.grd_cnfmlist.visible = false;
- // group5.grd_cancellist.visible = false;
- // group5.grd_visitspeclist.visible = false;
- // ds_main_grd_visitlist.clearData();
- // ds_main_grd_proclist.clearData();
- // ds_main_grd_endlist.clearData();
- // ds_main_grd_cnfmlist.clearData();
- // ds_main_grd_cancellist.clearData();
- // ds_main_grd_visitspeclist.clearData();
- //
- //model.refresh();
- // 조회
- //group5.grp_sea.btn_search.dispatch("DOMActivate");
- // group5.grd_visitlist.rebuild();
- // group5.grd_proclist.rebuild();
- // group5.grd_endlist.rebuild();
- // group5.grd_cnfmlist.rebuild();
- // group5.grd_cancellist.rebuild();
- // group5.grd_visitspeclist.rebuild();
- //
- // if(group5.grp_sea.rdo_procstatus.value == 1)
- // {
- // updtdata = getGridUpdateData(group5.grd_visitlist);
- //
- // group5.grd_visitlist.attribute("left") = 0;
- // group5.grd_visitlist.attribute("top") = 117;
- // group5.grd_visitlist.attribute("width") = 1194;
- // group5.grd_visitlist.attribute("height") = 568;
- // }
- // else if(group5.grp_sea.rdo_procstatus.value == 2)
- // {
- // updtdata = getGridUpdateData(group5.grd_proclist);
- //
- // group5.grd_proclist.attribute("left") = 0;
- // group5.grd_proclist.attribute("top") = 117;
- // group5.grd_proclist.attribute("width") = 1194;
- // group5.grd_proclist.attribute("height") = 568;
- // }
- // else if(group5.grp_sea.rdo_procstatus.value == 3)
- // {
- // updtdata = getGridUpdateData(group5.grd_endlist);
- //
- // group5.grd_endlist.attribute("left") = 0;
- // group5.grd_endlist.attribute("top") = 117;
- // group5.grd_endlist.attribute("width") = 1194;
- // group5.grd_endlist.attribute("height") = 568;
- // }
- // else if(group5.grp_sea.rdo_procstatus.value == 4)
- // {
- // updtdata = getGridUpdateData(group5.grd_cnfmlist);
- //
- // group5.grd_cnfmlist.attribute("left") = 0;
- // group5.grd_cnfmlist.attribute("top") = 117;
- // group5.grd_cnfmlist.attribute("width") = 1194;
- // group5.grd_cnfmlist.attribute("height") = 568;
- // }
- // else if(group5.grp_sea.rdo_procstatus.value == 5)
- // {
- // updtdata = getGridUpdateData(group5.grd_cancellist);
- //
- // group5.grp_sea.caption1.value = "취소일자 :" ;
- // //group5.cap_listtitle.value = "취소 리스트";
- //
- // group5.grd_cancellist.attribute("left") = 0;
- // group5.grd_cancellist.attribute("top") = 117;
- // group5.grd_cancellist.attribute("width") = 1194;
- // group5.grd_cancellist.attribute("height") = 568;
- // }
- // else if(group5.grp_sea.rdo_procstatus.value == 6)
- // {
- // updtdata = getGridUpdateData(group5.grd_visitspeclist);
- //
- // group5.grp_sea.caption1.value = "취소일자 :" ;
- // //group5.cap_listtitle.value = "취소 리스트";
- //
- // group5.grd_visitspeclist.attribute("left") = 0;
- // group5.grd_visitspeclist.attribute("top") = 117;
- // group5.grd_visitspeclist.attribute("width") = 1194;
- // group5.grd_visitspeclist.attribute("height") = 568;
- // }
- //
- // if ( updtdata != "" ) {
- // var ret = sysf_messageBox("그리드에 작업 중인 내용이 있습니다. 조회 작업을","Q003");
- // if (ret != 6) { // not OK
- // return;
- // }
- // }
- //
- // if(group5.grp_sea.rdo_procstatus.value == 1)
- // {
- // // 1.첫방문 리스트 조회
- // submit("TRMNF04600");
- // group5.grd_visitlist.visible = true;
- // }
- // else if(group5.grp_sea.rdo_procstatus.value == 2)
- // {
- // // 3.진행 리스트 조회
- // submit("TRMNF04601");
- // group5.grd_proclist.visible = true;
- // }
- // else if(group5.grp_sea.rdo_procstatus.value == 3)
- // {
- // // 4.종결 리스트 조회
- // submit("TRMNF04602");
- // group5.grd_endlist.visible = true;
- // }
- // else if(group5.grp_sea.rdo_procstatus.value == 4)
- // {
- // // 5.의뢰확정 리스트 조회
- // submit("TRMNF04603");
- // group5.grd_cnfmlist.visible = true;
- // }
- // else if(group5.grp_sea.rdo_procstatus.value == 5)
- // {
- // // 5.취소 리스트 조회
- // submit("TRMNF04604");
- // group5.grd_cancellist.visible = true;
- // }
- // else if(group5.grp_sea.rdo_procstatus.value ==6)
- // {
- // // 5.방문내역 리스트 조회
- // submit("TRMNF04605");
- // group5.grd_visitspeclist.visible = true;
- // }
- //
- //*******************************************************************
- // 기준정보 로드
- //*******************************************************************
- // 1.본당을 조회, 콤보박스에 세팅한다.
- // submit("TRMNF00130");
- // Default 본당 선택
- // group5.grp_sea.grp_kindchurch.combo5.value = "-" ; // 전체
- }
- function fMakeChrRgstKind(){
- ds_send.setColumn( 0, "rgstkind23arr","");
- ds_send.setColumn( 0, "rgstkind1","");
- ds_send.setColumn( 0, "rgstkind23","");
- var getChrRgstKind = ds_send.getColumn(0, "chrrgstkind");
- if ( utlf_isNull(getChrRgstKind)
- || ( utlf_isSearchString(getChrRgstKind, "1")
- && utlf_isSearchString(getChrRgstKind, "2")
- && utlf_isSearchString(getChrRgstKind, "3") ) ){//선택되어진게 없으면 전체조회
- ds_send.setColumn( 0, "rgstkind23arr","'2','3'");
- ds_send.setColumn( 0, "rgstkind1","Y");
- ds_send.setColumn( 0, "rgstkind23","Y");
- } else{
- if ( getChrRgstKind == "1" ){
- ds_send.setColumn( 0, "rgstkind1","Y");
- }
- if ( getChrRgstKind == "2" ){
- ds_send.setColumn( 0, "rgstkind23","Y");
- ds_send.setColumn( 0, "rgstkind23arr", "'2'" );
- }
- if ( getChrRgstKind == "3" ){
- ds_send.setColumn( 0, "rgstkind23","Y");
- ds_send.setColumn( 0, "rgstkind23arr", "'3'" );
- }
- if ( utlf_isSearchString(getChrRgstKind, "1")
- && utlf_isSearchString(getChrRgstKind, "2") ){
- ds_send.setColumn( 0, "rgstkind1","Y");
- ds_send.setColumn( 0, "rgstkind23","Y");
- ds_send.setColumn( 0, "rgstkind23arr", "'2'" );
- }
- if ( utlf_isSearchString(getChrRgstKind, "1")
- && utlf_isSearchString(getChrRgstKind, "3") ){
- ds_send.setColumn( 0, "rgstkind1","Y");
- ds_send.setColumn( 0, "rgstkind23","Y");
- ds_send.setColumn( 0, "rgstkind23arr", "'3'" );
- }
- if ( utlf_isSearchString(getChrRgstKind, "2")
- && utlf_isSearchString(getChrRgstKind, "3") ){
- //ds_send.setColumn( 0, "rgstkind1","Y");
- ds_send.setColumn( 0, "rgstkind23","Y");
- ds_send.setColumn( 0, "rgstkind23arr", "'2','3'" );
- }
- }
- // ds_send_chrrgstkindarr.clearData();
- var getChrRgstKind = ds_send.getColumn(0, "chrrgstkind");
- if(getChrRgstKind == '1'){
- sAttConcat = '1'; //등록
- }else if(getChrRgstKind == '2'){
- sAttConcat = '2'; //무료
- }else if(getChrRgstKind == '3'){
- sAttConcat = '3'; //기타
- }else if(getChrRgstKind == '1,2'){
- sAttConcat = '4'; //등록 + 무료
- }else if(getChrRgstKind == '1,3'){
- sAttConcat = '5'; //등록 + 기타
- }else if(getChrRgstKind == '2,3'){
- sAttConcat = '6'; //기타 + 무료
- }else{
- sAttConcat = '7'; //등록 + 기타 + 무료
- }
- dsf_makeValue( ds_send, "chrrgstkindarr", "string", sAttConcat);
- }
- function group5_grp_sea_btn_search_onclick(obj:Button, e:ClickEventInfo) {
- ds_send.setColumn( 0, "fromdd", group5.grp_sea.ipt_fromdd.value);
- ds_send.setColumn( 0, "todd", group5.grp_sea.ipt_todd.value);
- ds_send.setColumn( 0, "procstatus", group5.grp_sea.rdo_procstatus.value);
- ds_send.setColumn( 0, "kind", group5.grp_sea.rdo_kind.value);
- fMakeChrRgstKind();
- //model.refresh();
- var fromdd = ds_send.getColumn(0, "fromdd");
- var todd = ds_send.getColumn(0, "todd");
- // 2010.02.16 HHM 추가
- if(utlf_getDateInterval(fromdd, todd) >31){
- sysf_messageBox("조회기간은 한달이상을 넘을 수", "I004");
- group5.grp_sea.ipt_todd.setFocus();
- return;
- }
- group5.grd_visitlist.visible = false;
- group5.grd_proclist.visible = false;
- group5.grd_endlist.visible = false;
- group5.grd_cnfmlist.visible = false;
- group5.grd_cancellist.visible = false;
- group5.grd_visitspeclist.visible = false;
- ds_grd_visitlist.clearData();
- ds_grd_proclist.clearData();
- ds_grd_endlist.clearData();
- ds_grd_cancellist.clearData();
- ds_grd_cnfmlist.clearData();
- ds_grd_visitspeclist.clearData();
- //model.refresh();
- // group5.grd_visitlist.rebuild();
- // group5.grd_proclist.rebuild();
- // group5.grd_endlist.rebuild();
- // group5.grd_cnfmlist.rebuild();
- // group5.grd_cancellist.rebuild();
- // group5.grd_visitspeclist.rebuild();
- // 첫방문
- if((group5.grp_sea.rdo_procstatus.value == 1) || (group5.grp_sea.rdo_procstatus.value == 0))
- {
- //updtdata = getGridUpdateData(group5.grd_visitlist);
- group5.grd_visitlist.position.left = 0;
- group5.grd_visitlist.position.top = 117;
- group5.grd_visitlist.position.width = 1194;
- group5.grd_visitlist.position.height = 568;
- }
- // 진행
- else if(group5.grp_sea.rdo_procstatus.value == 2)
- {
- //updtdata = getGridUpdateData(group5.grd_proclist);
-
- group5.grd_proclist.position.left = 0;
- group5.grd_proclist.position.top = 117;
- group5.grd_proclist.position.width = 1194;
- group5.grd_proclist.position.height = 568;
- }
- // 종결
- else if(group5.grp_sea.rdo_procstatus.value == 3)
- {
- //updtdata = getGridUpdateData(group5.grd_endlist);
- group5.grd_endlist.position.left = 0;
- group5.grd_endlist.position.top = 117;
- group5.grd_endlist.position.width = 1194;
- group5.grd_endlist.position.height = 568;
- }
- // 의뢰확정
- else if(group5.grp_sea.rdo_procstatus.value == 4)
- {
- //updtdata = getGridUpdateData(group5.grd_cnfmlist);
-
- group5.grd_cnfmlist.position.left = 0;
- group5.grd_cnfmlist.position.top = 117;
- group5.grd_cnfmlist.position.width = 1194;
- group5.grd_cnfmlist.position.height = 568;
- }
- // 의뢰취소
- else if(group5.grp_sea.rdo_procstatus.value == 5)
- {
- //updtdata = getGridUpdateData(group5.grd_cancellist);
- group5.grd_cancellist.position.left = 0;
- group5.grd_cancellist.position.top = 117;
- group5.grd_cancellist.position.width = 1194;
- group5.grd_cancellist.position.height = 568;
- }
- // 방문내역
- else if(group5.grp_sea.rdo_procstatus.value == 6)
- {
- //updtdata = getGridUpdateData(group5.grd_visitspeclist);
- group5.grd_visitspeclist.position.left = 0;
- group5.grd_visitspeclist.position.top = 117;
- group5.grd_visitspeclist.position.width = 1194;
- group5.grd_visitspeclist.position.height = 568;
- }
- if((group5.grp_sea.rdo_procstatus.value == 1) || (group5.grp_sea.rdo_procstatus.value == 0))
- {
- // 1.첫방문 리스트 조회
- var oParam = {};
- oParam.id = "TRMNF04600";
- oParam.service = "homecareapp.HomeCare";
- oParam.method = "reqGetFstVisitList";
- oParam.inds = "req=ds_send";
- oParam.outds = "ds_main_grd_visitlist_visitlist=visitlist";
- oParam.async = false;
- //oParam.callback = "cf_TRMNF04600";
- tranf_submit(oParam);
- group5.grd_visitlist.visible = true;
- if(group5.grp_sea.rdo_careflag.value == 'H'){
- group5.grd_visitlist.setFormatColProperty( 5, "size", 0); // 주민번호
- group5.grd_visitlist.setFormatColProperty( 14, "size", 0); // 의뢰경로
- group5.grd_visitlist.setFormatColProperty( 16, "size", 0); // 등급
- group5.grd_visitlist.setFormatColProperty( 17, "size", 0); // 본인부담률
- }else if(group5.grp_sea.rdo_careflag.value == 'V'){
- group5.grd_visitlist.setFormatColProperty( 5, "size", 100); // 주민번호
- group5.grd_visitlist.setFormatColProperty( 14, "size", 58); // 의뢰경로
- group5.grd_visitlist.setFormatColProperty( 16, "size", 41); // 등급
- group5.grd_visitlist.setFormatColProperty( 17, "size", 143); // 본인부담률
- }
- }
- else if(group5.grp_sea.rdo_procstatus.value == 2)
- {
- var oParam = {};
- oParam.id = "TRMNF04601";
- oParam.service = "homecareapp.HomeCare";
- oParam.method = "reqGetProcList";
- oParam.inds = "req=ds_send";
- oParam.outds = "ds_main_grd_proclist_proclist=proclist";
- oParam.async = false;
- //oParam.callback = "cf_TRMNF04601";
- tranf_submit(oParam);
- group5.grd_proclist.visible = true;
- if(group5.grp_sea.rdo_careflag.value == 'H'){
- group5.grd_proclist.setFormatColProperty( 5, "size", 0); // 주민번호
- group5.grd_proclist.setFormatColProperty( 17, "size", 0); // 등급
- group5.grd_proclist.setFormatColProperty( 18, "size", 0); // 본인부담률
- group5.grd_proclist.setFormatColProperty( 19, "size", 0); // 주소
- group5.grd_proclist.setFormatColProperty( 20, "size", 0); // 전화번호
- group5.grd_proclist.setFormatColProperty( 21, "size", 0); // 의뢰경로
- }else if(group5.grp_sea.rdo_careflag.value == 'V'){
- group5.grd_proclist.setFormatColProperty( 5, "size", 100); // 주민번호
- group5.grd_proclist.setFormatColProperty( 17, "size", 41); // 등급
- group5.grd_proclist.setFormatColProperty( 18, "size", 143); // 본인부담률
- group5.grd_proclist.setFormatColProperty( 19, "size", 200); // 주소
- group5.grd_proclist.setFormatColProperty( 20, "size", 100); // 전화번호
- group5.grd_proclist.setFormatColProperty( 21, "size", 58); // 의뢰경로
- }
- }
- else if(group5.grp_sea.rdo_procstatus.value == 3)
- {
- // 4.종결 리스트 조회
- var oParam = {};
- oParam.id = "TRMNF04602";
- oParam.service = "homecareapp.HomeCare";
- oParam.method = "reqGetProcEndList";
- oParam.inds = "req=ds_send";
- oParam.outds = "ds_main_grd_endlist_endlist=endlist";
- oParam.async = false;
- //oParam.callback = "cf_TRMNF04602";
- tranf_submit(oParam);
- group5.grd_endlist.visible = true;
- if(group5.grp_sea.rdo_careflag.value == 'H'){
- group5.grd_endlist.setFormatColProperty( 5, "size", 0); // 주민번호
- group5.grd_endlist.setFormatColProperty( 16, "size", 0); // 등급
- }else if(group5.grp_sea.rdo_careflag.value == 'V'){
- group5.grd_endlist.setFormatColProperty( 5, "size", 100); // 주민번호
- group5.grd_endlist.setFormatColProperty( 16, "size", 41); // 등급
- }
- }
- else if(group5.grp_sea.rdo_procstatus.value == 4)
- {
- // 5.의뢰확정 리스트 조회
- var oParam = {};
- oParam.id = "TRMNF04603";
- oParam.service = "homecareapp.HomeCare";
- oParam.method = "reqGetProcCnfmList";
- oParam.inds = "req=ds_send";
- oParam.outds = "ds_main_grd_cnfmlist_cnfmlist=cnfmlist";
- oParam.async = false;
- //oParam.callback = "cf_TRMNF04603";
- tranf_submit(oParam);
- group5.grd_cnfmlist.visible = true;
- if(group5.grp_sea.rdo_careflag.value == 'H'){
- group5.grd_cnfmlist.setFormatColProperty( 5, "size", 0); // 주민번호
- group5.grd_cnfmlist.setFormatColProperty( 14, "size", 0); // 등급
- group5.grd_cnfmlist.setFormatColProperty( 15, "size", 0); // 본인부담률
- }else if(group5.grp_sea.rdo_careflag.value == 'V'){
- group5.grd_cnfmlist.setFormatColProperty( 5, "size", 100); // 주민번호
- group5.grd_cnfmlist.setFormatColProperty( 14, "size", 41); // 등급
- group5.grd_cnfmlist.setFormatColProperty( 15, "size", 143); // 본인부담률
- }
- }
- else if(group5.grp_sea.rdo_procstatus.value == 5)
- {
- // 5.의뢰취소 리스트 조회
- var oParam = {};
- oParam.id = "TRMNF04604";
- oParam.service = "homecareapp.HomeCare";
- oParam.method = "reqGetProcCancelList";
- oParam.inds = "req=ds_send";
- oParam.outds = "ds_main_grd_cancellist_cancellist=cancellist";
- oParam.async = false;
- //oParam.callback = "cf_TRMNF04604";
- tranf_submit(oParam);
- group5.grd_cancellist.visible = true;
- if(group5.grp_sea.rdo_careflag.value == 'H'){
- group5.grd_cancellist.setFormatColProperty( 4, "size", 0); // 주민번호
- group5.grd_cancellist.setFormatColProperty( 13, "size", 0); // 등급
- group5.grd_cancellist.setFormatColProperty( 14, "size", 0); // 본인부담률
- group5.grd_cancellist.setFormatColProperty( 15, "size", 0); // 의뢰경로
- }else if(group5.grp_sea.rdo_careflag.value == 'V'){
- group5.grd_cancellist.setFormatColProperty( 4, "size", 100); // 주민번호
- group5.grd_cancellist.setFormatColProperty( 13, "size", 41); // 등급
- group5.grd_cancellist.setFormatColProperty( 14, "size", 143); // 본인부담률
- group5.grd_cancellist.setFormatColProperty( 15, "size", 58); // 의뢰경로
- }
- }
- else if(group5.grp_sea.rdo_procstatus.value == 6)
- {
- // 5.방문내역 리스트 조회
- var oParam = {};
- oParam.id = "TRMNF04604";
- oParam.service = "homecareapp.HomeCare";
- oParam.method = "reqGetVisitSpecList";
- oParam.inds = "req=ds_send";
- oParam.outds = "ds_main_grd_visitspeclist_visitspeclist=visitspeclist";
- oParam.async = false;
- //oParam.callback = "cf_TRMNF04604";
- tranf_submit(oParam);
- group5.grd_visitspeclist.visible = true;
- if(group5.grp_sea.rdo_careflag.value == 'H'){
- group5.grd_visitspeclist.setFormatColProperty( 5, "size", 0); // 주민번호
- group5.grd_visitspeclist.setFormatColProperty( 14, "size", 0); // 등급
- group5.grd_visitspeclist.setFormatColProperty( 15, "size", 0); // 본인부담률
- group5.grd_visitspeclist.setFormatColProperty( 16, "size", 0); // 방문시간 구분
- group5.grd_visitspeclist.setFormatColProperty( 18, "size", 0); // 의뢰경로
- }else if(group5.grp_sea.rdo_careflag.value == 'V'){
- group5.grd_visitspeclist.setFormatColProperty( 5, "size", 100); // 주민번호
- group5.grd_visitspeclist.setFormatColProperty( 14, "size", 41); // 등급
- group5.grd_visitspeclist.setFormatColProperty( 15, "size", 143); // 본인부담률
- group5.grd_visitspeclist.setFormatColProperty( 16, "size", 248); // 방문시간 구분
- group5.grd_visitspeclist.setFormatColProperty( 18, "size", 58); // 의뢰경로
- }
- }
- }
- function group5_grp_sea_rdo_kind_onitemchanged(obj:Radio, e:ItemChangeEventInfo) {
- group5.grp_sea.grp_kindchurch.checkbox1.deselect(0);
- group5.grp_sea.grp_kindchurch.checkbox1.deselect(1);
- group5.grp_sea.grp_kindchurch.checkbox1.deselect(2);
- if (group5.grp_sea.rdo_kind.value == 0) // 전체
- {
- group5.grp_sea.grp_kindchurch.visible = false;
- group5.grp_sea.grp_kindhosp.visible = true;
- group5.grd_visitlist.colhidden(group5.grd_visitlist.colRef("churchnm")) = false;
- group5.grd_visitlist.colhidden(group5.grd_visitlist.colRef("chrrgstkind")) = false;
- }
- else if (group5.grp_sea.rdo_kind.value == 1) // 병원
- {
- group5.grp_sea.grp_kindchurch.visible = false;
- group5.grp_sea.grp_kindhosp.visible = true;
- group5.grd_visitlist.colhidden(group5.grd_visitlist.colRef("churchnm")) = true;
- group5.grd_visitlist.colhidden(group5.grd_visitlist.colRef("chrrgstkind")) = true;
- }
- else if (group5.grp_sea.rdo_kind.value == 2) // 본당
- {
- group5.grp_sea.grp_kindhosp.visible = false;
- group5.grp_sea.grp_kindchurch.visible = true;
- group5.grd_visitlist.colhidden(group5.grd_visitlist.colRef("churchnm")) = false;
- group5.grd_visitlist.colhidden(group5.grd_visitlist.colRef("chrrgstkind")) = false;
- // 본당 리스트 조회
- var oParam = {};
- oParam.id = "TRMNF00130";
- oParam.service = "homecareapp.HomeCare";
- oParam.method = "reqGetChurchList";
- oParam.inds = "req=ds_send";
- oParam.outds = "ds_item_church=churchlist";
- oParam.async = false;
- //oParam.callback = "cf_TRMNF00130";
- tranf_submit(oParam);
- }
- else // 재택
- {
- sysf_messageBox("재택은 현재 강남에서 진행하지","E007"); //않았습니다.
- group5.grp_sea.rdo_kind.value = '1';
- return;
- // group5.grp_sea.grp_kindchurch.visible = false;
- // group5.grp_sea.grp_kindhosp.visible = true;
- //
- // group5.grd_visitlist.colhidden(group5.grd_visitlist.colRef("churchnm")) = false;
- // group5.grd_visitlist.colhidden(group5.grd_visitlist.colRef("chrrgstkind")) = false;
- }
- // 조회조건의 가정간호 담당간호사 리스트를 조회, 콤보박스에 세팅한다.
- var oParam = {};
- oParam.id = "TRMNF00106";
- oParam.service = "homecareapp.HomeCare";
- oParam.method = "reqGetChargeNurseList";
- oParam.inds = "req=ds_send";
- oParam.outds = "ds_item_chargenurse_nurselist=nurselist";
- oParam.async = false;
- //oParam.callback = "cf_TRMNF00106";
- tranf_submit(oParam);
- group5.grp_sea.btn_search.dispatch("DOMActivate");
- }
- function group5_grp_sea_rdo_kind_onkillfocus(obj:Radio, e:KillFocusEventInfo) {
- if (group5.grp_sea.rdo_kind.value == 1) // 병원
- {
- group5.grp_sea.grp_kindchurch.visible = false;
- group5.grp_sea.grp_kindhosp.visible = true;
- }
- else if (group5.grp_sea.rdo_kind.value == 2) // 본당
- {
- group5.grp_sea.grp_kindhosp.visible = false;
- group5.grp_sea.grp_kindchurch.visible = true;
- }
- else // 재택
- {
- group5.grp_sea.grp_kindchurch.visible = false;
- group5.grp_sea.grp_kindhosp.visible = true;
- }
- ds_send.setColumn( 0, "kind", group5.grp_sea.rdo_kind.value);
- //model.refresh();
- }
- function group5_grp_sea_grp_kindchurch_combo5_onitemchanged(obj:Combo, e:ItemChangeEventInfo) {
- // SEND DATA 변경
- ds_send.setColumn( 0, "churchcd", group5.grp_sea.grp_kindchurch.combo5.value);
- // 조회조건의 가정간호 담당간호사 리스트를 조회, 콤보박스에 세팅한다.
- var oParam = {};
- oParam.id = "TRMNF00106";
- oParam.service = "homecareapp.HomeCare";
- oParam.method = "reqGetChargeNurseList";
- oParam.inds = "req=ds_send";
- oParam.outds = "ds_item_chargenurse_nurselist=nurselist";
- oParam.async = false;
- //oParam.callback = "cf_TRMNF00106";
- tranf_submit(oParam);
- }
- function group5_grp_sea_grp_kindchurch_combo7_onitemchanged(obj:Combo, e:ItemChangeEventInfo) {
- // SEND DATA 변경
- // ds_send.setColumn( 0, "chrgnursid", group5.grp_sea.grp_kindchurch.combo7.value);
- //model.refresh();
- //group5.grp_sea.btn_search.dispatch("DOMActivate") ;
- }
- function group5_grp_sea_grp_kindhosp_combo6_onitemchanged(obj:Combo, e:ItemChangeEventInfo) {
- //group5.grp_sea.btn_search.dispatch("DOMActivate") ;
- // SEND DATA 변경
- // ds_send.setColumn( 0, "chrgnursid", group5.grp_sea.grp_kindhosp.combo6.value);
- //
- //model.refresh();
- }
- function group5_grp_sea_rdo_procstatus_onitemchanged(obj:Radio, e:ItemChangeEventInfo) {
- obj.updateToDataset();
-
- ds_send.setColumn( 0, "procstatus", group5.grp_sea.rdo_procstatus.value);
- //model.refresh();
- if(ds_send.getColumn(0, "procstatus") == "3"){
- var arrParam = [ {dsNm: "ds_item_endreason", cdGrpId: "M0349" } ];
- appf_getCodeList(arrParam);
- }
- //group5.grp_sea.btn_search.dispatch("DOMActivate");
- //group5_grp_sea_btn_search_onclick();
- group5_grp_sea_btn_search_onclick();
-
- }
- function group5_grp_sea_rdo_careflag_onitemchanged(obj:Radio, e:ItemChangeEventInfo) {
- ds_send.setColumn( 0, "careflag", group5.grp_sea.rdo_careflag.value);
- // 조회
- group5_grp_sea_btn_search_onclick();
- //
- //model.refresh();
- }
- function group5_btn_excel_onclick(obj:Button, e:ClickEventInfo) {
- if(group5.grp_sea.rdo_procstatus.value == 1)
- {
- // 1.첫방문 리스트 엑셀 저장
- grdf_exportExcel(group5.grd_visitlist, "가정간호 진행사태별조회(첫방문)", "sheet1", false);
- }
- else if(group5.grp_sea.rdo_procstatus.value == 2)
- {
- // 2.진행 리스트 엑셀 저장
- grdf_exportExcel(group5.grd_proclist, "가정간호 진행사태별조회(진행)", "sheet1", false);
- }
- else if(group5.grp_sea.rdo_procstatus.value == 3)
- {
- // 3.종결 리스트 엑셀 저장
- grdf_exportExcel(group5.grd_endlist, "가정간호 진행사태별조회(종결)", "sheet1", false);
- }
- else if(group5.grp_sea.rdo_procstatus.value == 4)
- {
- // 4.의뢰확정 리스트 엑셀 저장
- grdf_exportExcel(group5.grd_cnfmlist, "Sheet1", fileName, false, "" , 'user' , true);
- grdf_exportExcel(group5.grd_cnfmlist, "가정간호 진행사태별조회(의뢰확정)", "sheet1", false);
- }
- else if(group5.grp_sea.rdo_procstatus.value == 5)
- {
- // 5.의뢰취소 리스트 엑셀 저장
- grdf_exportExcel(group5.grd_cancellist, "Sheet1", fileName, false, "" , 'user' , true);
- grdf_exportExcel(group5.grd_cancellist, "가정간호 진행사태별조회(의뢰취소)", "sheet1", false);
- }
- else if(group5.grp_sea.rdo_procstatus.value == 6)
- {
- // 6.방문내역 리스트 엑셀 저장
- grdf_exportExcel(group5.grd_visitspeclist, "가정간호 진행사태별조회(방문)", "sheet1", false);
- }
- }
- function group5_btn_print_onclick(obj:Button, e:ClickEventInfo)
- {
- var objDOM = rptf_createDOM();
- var objParam = new Object();
- rptf_setNodeListToDOM(objDOM, "/root/main/grd_visitlist/visitlist" , ds_main_grd_visitlist_visitlist);
- rptf_setValueToDOM(objDOM, "/root/send/visitdd", group5.grp_sea.ipt_visitdd.value + ' ~ ' +group5.grp_sea.ipt_visitdd.value);
- objParam.xml_data_XML1 = objDOM.documentElement.source;
-
- var option = "open=1;save=1;directprint=0;printdialog=1;print=1;zoom=0";
- rptf_exeReportPreview30(["RPMNF01800"],[objParam], option);
-
- }
- ]]></Script>
- </Form>
- </FDL>
|