123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983 |
- <?xml version="1.0" encoding="utf-8"?>
- <FDL version="1.5">
- <TypeDefinition url="..\..\..\default_typedef.xml"/>
- <Form id="SMAEB00200" position="absolute 0 0 1196 792" titletext="검사치료코드관리" onload="SMAEB00200_onload" oninit="SMAEB00200_oninit">
- <Layouts>
- <Layout>
- <Div position="absolute 0 21 1195 765" id="grp_biz" scrollbars="autoboth">
- <Layouts>
- <Layout>
- <Grid position="absolute 0 75 1194 737" id="grd_examcurecdlist" binddataset="ds_grd_examcurecdlist" anchor="default" oncellclick="grp_biz_grd_examcurecdlist_oncellclick" ontextchanged="grp_biz_grd_examcurecdlist_ontextchanged" autoenter="key" scrollpixel="all" cellsizingtype="both" extendsizetype="row" cellsizebandtype="allband" onexpandup="grp_biz_grd_examcurecdlist_onexpandup" onmousemove="grp_biz_grd_examcurecdlist_onmousemove" cellclickbound="cell">
- <Formats>
- <Format id="default">
- <Columns>
- <Column size="25" band="left"/>
- <Column size="25" band="left"/>
- <Column size="85" band="left"/>
- <Column size="190" band="left"/>
- <Column size="68" band="left"/>
- <Column size="76" band="left"/>
- <Column size="84" band="left"/>
- <Column size="57" band="left"/>
- <Column size="60" band="left"/>
- <Column size="55" band="left"/>
- <Column size="54" band="left"/>
- <Column size="58" band="left"/>
- <Column size="57" band="left"/>
- <Column size="64"/>
- <Column size="47"/>
- <Column size="44"/>
- <Column size="55"/>
- <Column size="61"/>
- <Column size="56"/>
- <Column size="42"/>
- <Column size="55"/>
- <Column size="62"/>
- <Column size="69"/>
- <Column size="56"/>
- <Column size="111"/>
- <Column size="100"/>
- <Column size="67"/>
- <Column size="0"/>
- <Column size="57"/>
- <Column size="67"/>
- <Column size="54"/>
- <Column size="64"/>
- <Column size="63"/>
- <Column size="63"/>
- <Column size="63"/>
- <Column size="37"/>
- <Column size="62"/>
- <Column size="53"/>
- <Column size="43"/>
- <Column size="100"/>
- <Column size="100"/>
- <Column size="100"/>
- <Column size="63"/>
- <Column size="54"/>
- <Column size="100"/>
- <Column size="77"/>
- <Column size="70"/>
- <Column size="0"/>
- <Column size="0"/>
- <Column size="0"/>
- <Column size="30"/>
- <Column size="30"/>
- <Column size="119"/>
- <Column size="59"/>
- <Column size="58"/>
- <Column size="100"/>
- <Column size="61"/>
- <Column size="57"/>
- <Column size="63"/>
- <Column size="59"/>
- <Column size="61"/>
- <Column size="70"/>
- <Column size="66"/>
- <Column size="61"/>
- <Column size="100"/>
- <Column size="90"/>
- <Column size="100"/>
- <Column size="280"/>
- <Column size="0"/>
- <Column size="0"/>
- <Column size="100"/>
- <Column size="0"/>
- <Column size="0"/>
- </Columns>
- <Rows>
- <Row size="24" band="head"/>
- <Row size="28" band="head"/>
- <Row size="24"/>
- </Rows>
- <Band id="head">
- <Cell rowspan="2" taborder="undefined"/>
- <Cell col="1" rowspan="2" displaytype="image" taborder="undefined"/>
- <Cell col="2" rowspan="2" text="코드" taborder="undefined"/>
- <Cell col="3" rowspan="2" text="검사명" taborder="undefined"/>
- <Cell col="4" rowspan="2" text="처방가능 " taborder="undefined"/>
- <Cell col="5" colspan="8" text="기본설정" taborder="undefined" expandsize="5"/>
- <Cell col="13" colspan="8" text="분류" taborder="undefined"/>
- <Cell col="21" text="판독/대출"/>
- <Cell col="22" colspan="8" text="결과설정" taborder="undefined"/>
- <Cell col="30" colspan="2" text="결과조회" taborder="undefined"/>
- <Cell col="32" colspan="5" text="통계" taborder="undefined"/>
- <Cell col="37" colspan="16" text="예약설정" taborder="undefined"/>
- <Cell col="53" colspan="3" text="PACS설정" taborder="undefined"/>
- <Cell col="56" text="현재일자"/>
- <Cell col="57" text="타검사"/>
- <Cell col="58" text="검통응급"/>
- <Cell col="59" text="검통건진"/>
- <Cell col="60" text="당뇨체크"/>
- <Cell col="61" text="골밀도"/>
- <Cell col="62" text="검사의"/>
- <Cell col="63" text="진료"/>
- <Cell col="64" rowspan="2" colspan="2" text="시행부서" taborder="undefined"/>
- <Cell col="66" rowspan="2" text="다음치료실" taborder="undefined"/>
- <Cell col="67" rowspan="2" text="비고" taborder="undefined"/>
- <Cell col="68" text="caption1"/>
- <Cell col="69" text="caption2"/>
- <Cell col="70" rowspan="2" text="주의사항" taborder="undefined"/>
- <Cell col="71" text="saveflag"/>
- <Cell col="72" text="grupsnglflag"/>
- <Cell row="1" col="5" text="검사/치료실"/>
- <Cell row="1" col="6" text="검사부위/품목"/>
- <Cell row="1" col="7" text="실시기준"/>
- <Cell row="1" col="8" text="미수접수"/>
- <Cell row="1" col="9" text="미수예약"/>
- <Cell row="1" col="10" text="오늘결과"/>
- <Cell row="1" col="11" text="당일수납"/>
- <Cell row="1" col="12" text="예약구분" expandsize="5"/>
- <Cell row="1" col="13" text="분류코드"/>
- <Cell row="1" col="14" text="대"/>
- <Cell row="1" col="15" text="중"/>
- <Cell row="1" col="16" text="구분"/>
- <Cell row="1" col="17" text="상세내역"/>
- <Cell row="1" col="18" text="대체코드"/>
- <Cell row="1" col="19" text="조영제"/>
- <Cell row="1" col="20" text="자동배정"/>
- <Cell row="1" col="21" text="배정검사실"/>
- <Cell row="1" col="22" text="SECTION"/>
- <Cell row="1" col="23" text="선택의"/>
- <Cell row="1" col="24" colspan="2" text="결과Tmpl" taborder="undefined"/>
- <Cell row="1" col="26" text="내시경서식"/>
- <Cell row="1" col="27" text="OCR서식"/>
- <Cell row="1" col="28" text="CDIS I/F"/>
- <Cell row="1" col="29" text="판독의3"/>
- <Cell row="1" col="30" text="판독의명"/>
- <Cell row="1" col="31" text="조회여부"/>
- <Cell row="1" col="32" text="조회구분"/>
- <Cell row="1" col="33" text="대분류"/>
- <Cell row="1" col="34" text="중분류"/>
- <Cell row="1" col="35" text="부위"/>
- <Cell row="1" col="36" text="촬영"/>
- <Cell row="1" col="37" text="치료횟수"/>
- <Cell row="1" col="38" text="예약"/>
- <Cell row="1" col="39" text="통합검사/치료실"/>
- <Cell row="1" col="40" text="자체검사/치료실"/>
- <Cell row="1" col="41" text="나이제한/치료실"/>
- <Cell row="1" col="42" text="소요시간"/>
- <Cell row="1" col="43" text="예약예문"/>
- <Cell row="1" col="44" text="멀티예약예문"/>
- <Cell row="1" col="45" text="실시자명"/>
- <Cell row="1" col="46" text="출력장수"/>
- <Cell row="1" col="47" text="금식"/>
- <Cell row="1" col="48" text="관장"/>
- <Cell row="1" col="49" text="동의서"/>
- <Cell row="1" col="50" text="수면"/>
- <Cell row="1" col="51" text="협의"/>
- <Cell row="1" col="52" text="변경/취소 제한일수"/>
- <Cell row="1" col="53" text="Modality"/>
- <Cell row="1" col="54" text="I/F"/>
- <Cell row="1" col="55" text="장비구분"/>
- <Cell row="1" col="56" text="적용여부"/>
- <Cell row="1" col="57" text="표시여부"/>
- <Cell row="1" col="58" text="표시 여부"/>
- <Cell row="1" col="59" text="표시여부"/>
- <Cell row="1" col="60" text="유무"/>
- <Cell row="1" col="61" text="검사유무"/>
- <Cell row="1" col="62" text="지정유무"/>
- <Cell row="1" col="63" text="예약유무"/>
- <Cell row="1" col="68" text="부서코드"/>
- <Cell row="1" col="69" text="종료일자"/>
- <Cell row="1" col="71" text="saveflag"/>
- <Cell row="1" col="72" text="grupsnglflag"/>
- </Band>
- <Band id="body">
- <Cell celltype="head" text="expr:currow+1"/>
- <Cell col="1" celltype="head" text="bind:update" combodisplay="display"/>
- <Cell col="2" displaytype="text" edittype="text" style="align:left top;padding:5 3 1 3;" text="bind:excucd" wordwrap="char" editautoselect="true"/>
- <Cell col="3" displaytype="text" edittype="text" style="align:left top;padding:5 3 1 3;" text="bind:excucdnm" wordwrap="char" editautoselect="true"/>
- <Cell col="4" style="color:EXPR(ordinptflag=='가능'?'#000000':'red');color2:EXPR(ordinptflag=='가능'?'#000000':'red');" text="bind:ordinptflag"/>
- <Cell col="5" displaytype="combo" edittype="combo" style="align:left top;padding:5 3 1 3;" text="bind:excuroomcd" wordwrap="char" editautoselect="true" combodataset="ds_init_cmb_excuroom" combocodecol="basecd" combodatacol="basecdflagdesc" combodisplayrowcount="100" combotype="search"/>
- <Cell col="6" displaytype="combo" edittype="combo" style="align:left top;padding:5 3 1 3;" text="bind:excupartcd" wordwrap="char" editautoselect="true" combodataset="ds_init_bodypart" combocodecol="basecd" combodatacol="basecdflagdesc" combodisplayrowcount="100" combotype="search"/>
- <Cell col="7" displaytype="combo" edittype="combo" style="align:left top;padding:5 3 1 3;" text="bind:execbaseflag" wordwrap="char" editautoselect="true" combodataset="ds_init_A0071" combocodecol="cdid" combodatacol="cdnm" combodisplayrowcount="100" combotype="search"/>
- <Cell col="8" displaytype="checkbox" edittype="none" style="controlbackground:silver;controlborder:1 solid #808080ff ;" text="bind:rcptacptyn" expr="expr:(rcptacptyn=="Y"||rcptacptyn==1)?1:0" wordwrap="char" editautoselect="true" combodataset="ds_init_check" combocodecol="value" combodatacol="label" enable="false"/>
- <Cell col="9" displaytype="checkbox" edittype="checkbox" text="bind:rcptrsrvyn" expr="expr:(rcptrsrvyn=="Y"||rcptrsrvyn==1)?1:0" wordwrap="char" editautoselect="true" combodataset="ds_init_check" combocodecol="value" combodatacol="label"/>
- <Cell col="10" displaytype="checkbox" edittype="checkbox" text="bind:prcptdayaftrcptyn" expr="expr:(prcptdayaftrcptyn=="Y"||prcptdayaftrcptyn==1)?1:0" wordwrap="char" editautoselect="true" combodataset="ds_init_check" combocodecol="value" combodatacol="label"/>
- <Cell col="11" displaytype="checkbox" edittype="checkbox" text="bind:prcptdayrcptyn" expr="expr:(prcptdayrcptyn=="Y"||prcptdayrcptyn==1)?1:0" wordwrap="char" editautoselect="true"/>
- <Cell col="12" displaytype="combo" edittype="combo" style="align:left top;padding:5 3 1 3;" text="bind:rsrvplceflag" wordwrap="char" editautoselect="true" expandsize="5" combodataset="ds_init_A0073" combocodecol="cdid" combodatacol="cdnm" combotype="search"/>
- <Cell col="13" displaytype="combo" edittype="combo" style="align:left top;padding:5 3 1 3;" text="bind:excuclscd" wordwrap="char" editautoselect="true" editautoskip="false" combodataset="ds_init_A0463" combocodecol="cdid" combodatacol="cdnm" combodisplayrowcount="100" combodisplaynulltext="-" combodisplaynulltype="nulltext" combotype="search"/>
- <Cell col="14" displaytype="combo" edittype="combo" style="align:left top;padding:5 3 1 3;" text="bind:lrgcd" wordwrap="char" editautoselect="true" combodataset="ds_init_cmb_excuroomgrp" combocodecol="excuroomgrpcdid" combodatacol="excuroomgrpcdnm" combodisplayrowcount="100" combotype="search"/>
- <Cell col="15" displaytype="combo" edittype="combo" style="align:left top;padding:5 3 1 3;" text="bind:mdlcd" wordwrap="char" editautoselect="true" combodataset="ds_init_bodypart" combocodecol="basecd" combodatacol="basecdflagdesc" combodisplayrowcount="100" combotype="search"/>
- <Cell col="16" displaytype="combo" edittype="combo" style="align:left top;padding:5 3 1 3;" text="bind:ioexamflag" wordwrap="char" editautoselect="true" combodataset="ds_init_A0072" combocodecol="cdid" combodatacol="cdnm" combodisplayrowcount="100" combodisplaynulltext="없음" combodisplaynulltype="nulltext" combotype="search"/>
- <Cell col="17" displaytype="text" edittype="text" style="align:left top;padding:5 3 1 3;" text="bind:excucdrem" wordwrap="char" editautoselect="true" expandshow="show"/>
- <Cell col="18" displaytype="text" edittype="text" style="align:left top;padding:5 3 1 3;" text="bind:angioaltprcpcd" wordwrap="char" editautoselect="true" expandshow="show"/>
- <Cell col="19" displaytype="checkbox" edittype="checkbox" text="bind:angiouseyn" expr="expr:(angiouseyn=="Y"||angiouseyn==1)?1:0" wordwrap="char" editautoselect="true"/>
- <Cell col="20" displaytype="checkbox" style="controlbackground:silver;controlborder:1 solid #808080ff ;" text="bind:autroomassgyn" expr="expr:(autroomassgyn=="Y"||autroomassgyn==1)?1:0" wordwrap="char" editautoselect="true" enable="false"/>
- <Cell col="21" displaytype="text" edittype="text" style="align:left top;padding:5 3 1 3;" text="bind:autroomassgcd" wordwrap="char" editautoselect="true" expandshow="show"/>
- <Cell col="22" displaytype="combo" edittype="combo" style="align:left top;padding:5 3 1 3;" text="bind:section" wordwrap="char" editautoselect="true" combodataset="ds_init_cmb2_initsection" combocodecol="cdid" combodatacol="cdnm" combotype="search"/>
- <Cell col="23" displaytype="text" edittype="text" style="align:left top;padding:5 3 1 3;" text="bind:specdrcd" wordwrap="char" editautoselect="true" expandshow="show"/>
- <Cell col="24" displaytype="text" edittype="text" style="align:left top;padding:5 3 1 3;" text="bind:rslttmplcd" wordwrap="char" editautoselect="true" expandshow="show"/>
- <Cell col="25" displaytype="text" edittype="text" style="align:left top;padding:5 3 1 3;" text="bind:rslttmplcdnm" wordwrap="char" editautoselect="true" expandshow="show"/>
- <Cell col="26" displaytype="text" edittype="text" style="align:left top;padding:5 3 1 3;" text="bind:rslttmplcd2nd" wordwrap="char" editautoselect="true" expandshow="show" enable="false"/>
- <Cell col="27" displaytype="text" edittype="text" style="align:left top;padding:5 3 1 3;" text="bind:ocrtmplcd" wordwrap="char" editautoselect="true"/>
- <Cell col="28" displaytype="combo" edittype="combo" style="align:left top;padding:5 3 1 3;" text="bind:eqmtifyn" wordwrap="char" editautoselect="true" combodataset="ds_init_A0502" combocodecol="cdid" combodatacol="cdnm" combotype="search"/>
- <Cell col="29" displaytype="text" edittype="text" style="align:left top;padding:5 3 1 3;" text="bind:readdrid3" wordwrap="char" editautoselect="true" enable="false"/>
- <Cell col="30" displaytype="text" edittype="text" style="align:left top;padding:5 3 1 3;" text="bind:readdrid3nm" wordwrap="char" editautoselect="true" expandshow="show"/>
- <Cell col="31" displaytype="checkbox" edittype="checkbox" text="bind:rsltdispyn" expr="expr:(rsltdispyn=="Y"||rsltdispyn==1)?1:0" wordwrap="char" editautoselect="true"/>
- <Cell col="32" displaytype="combo" edittype="combo" style="align:left top;padding:5 3 1 3;" text="bind:rsltdispgbn" wordwrap="char" editautoselect="true" combodataset="ds_init_cmb2_initrsltgb" combocodecol="cdid" combodatacol="cdnm" combotype="search"/>
- <Cell col="33" displaytype="combo" edittype="combo" style="align:left top;padding:5 3 1 3;" text="bind:rsltclscd1" wordwrap="char" editautoselect="true" combodataset="ds_init_cmb_systgrd" combocodecol="rsltclscd1" combodatacol="rsltclsnm1" combodisplaynulltext="-" combodisplaynulltype="nulltext" combotype="search"/>
- <Cell col="34" displaytype="combo" edittype="combo" style="align:left top;padding:5 3 1 3;" text="bind:rsltclscd2" wordwrap="char" editautoselect="true" combodataset="ds_init_cmb_systmdl" combocodecol="rsltclscd2" combodatacol="rsltclsnm2" combodisplaynulltext="-" combodisplaynulltype="nulltext" combotype="search"/>
- <Cell col="35" displaytype="text" edittype="text" style="align:left top;padding:5 3 1 3;" text="bind:partcntstats" wordwrap="char" editautoselect="true"/>
- <Cell col="36" displaytype="text" edittype="text" style="align:left top;padding:5 3 1 3;" text="bind:phocntstats" wordwrap="char" editautoselect="true"/>
- <Cell col="37" displaytype="text" edittype="text" style="align:left top;padding:5 3 1 3;" text="bind:curetims" wordwrap="char" editautoselect="true"/>
- <Cell col="38" displaytype="checkbox" edittype="checkbox" text="bind:rsrvexcupossyn" expr="expr:(rsrvexcupossyn=="Y"||rsrvexcupossyn==1)?1:0" wordwrap="char" editautoselect="true"/>
- <Cell col="39" displaytype="text" edittype="text" style="align:left top;padding:5 3 1 3;" text="bind:rsrvexcuroomposscd" wordwrap="char" editautoselect="true" expandshow="show"/>
- <Cell col="40" displaytype="text" edittype="text" style="align:left top;padding:5 3 1 3;" text="bind:rsrvexcuroomposscd2" wordwrap="char" editautoselect="true" expandshow="show"/>
- <Cell col="41" displaytype="text" edittype="text" style="align:left top;padding:5 3 1 3;" text="bind:rsrvsono" wordwrap="char" editautoselect="true" expandshow="show"/>
- <Cell col="42" displaytype="text" edittype="text" style="align:left top;padding:5 3 1 3;" text="bind:excutm" wordwrap="char" editautoselect="true"/>
- <Cell col="43" displaytype="text" edittype="text" style="align:left top;padding:5 3 1 3;" text="bind:rsrvexmptmplcd" wordwrap="char" editautoselect="true" expandshow="show"/>
- <Cell col="44" displaytype="text" edittype="text" style="align:left top;padding:5 3 1 3;" text="bind:rsrvmultitmplcd" wordwrap="char" editautoselect="true" expandshow="show"/>
- <Cell col="45" displaytype="text" edittype="text" style="align:left top;padding:5 3 1 3;" text="bind:rsrvexmptmplexecrnm" wordwrap="char" editautoselect="true"/>
- <Cell col="46" displaytype="text" edittype="text" style="align:left top;padding:5 3 1 3;" text="bind:rsrvexmpcnt" wordwrap="char" editautoselect="true"/>
- <Cell col="47" displaytype="checkbox" edittype="checkbox" style="align:left top;padding:5 3 1 3;" text="bind:fastyn" wordwrap="char" editautoselect="true"/>
- <Cell col="48" displaytype="checkbox" edittype="checkbox" style="align:left top;padding:5 3 1 3;" text="bind:enemayn" wordwrap="char" editautoselect="true"/>
- <Cell col="49" displaytype="text" edittype="text" style="align:left top;padding:5 3 1 3;" text="bind:rsrvaprvtmplcd" wordwrap="char" editautoselect="true"/>
- <Cell col="50" displaytype="checkbox" edittype="checkbox" text="bind:slepyn" expr="expr:(slepyn=="Y"||slepyn==1)?1:0" wordwrap="char" editautoselect="true"/>
- <Cell col="51" displaytype="checkbox" edittype="checkbox" text="bind:dcusrsrvyn" expr="expr:(dcusrsrvyn=="Y"||dcusrsrvyn==1)?1:0" wordwrap="char" editautoselect="true"/>
- <Cell col="52" displaytype="text" edittype="text" style="align:left top;padding:5 3 1 3;" text="bind:rsrvupdtcncllimdayno" wordwrap="char" editautoselect="true"/>
- <Cell col="53" displaytype="combo" edittype="combo" style="align:left top;padding:5 3 1 3;" text="bind:modality" wordwrap="char" editautoselect="true" expandshow="hide" combodataset="ds_init_cmb2_initmodal" combocodecol="cdid" combodatacol="cdnm" combotype="search"/>
- <Cell col="54" displaytype="combo" edittype="combo" style="align:left top;padding:5 3 1 3;" text="bind:pacsnocretyn" wordwrap="char" editautoselect="true" combodataset="ds_init_A0501" combocodecol="cdid" combodatacol="cdnm" combotype="search"/>
- <Cell col="55" displaytype="combo" edittype="combo" style="align:left top;padding:5 3 1 3;" text="bind:etceqmtifyn" wordwrap="char" editautoselect="true" combodataset="ds_init_pacs_kind" combocodecol="value" combodatacol="label" combotype="search"/>
- <Cell col="56" displaytype="checkbox" edittype="checkbox" text="bind:prestddappyn" expr="expr:(prestddappyn=="Y"||prestddappyn==1)?1:0" wordwrap="char" editautoselect="true"/>
- <Cell col="57" displaytype="checkbox" edittype="checkbox" text="bind:anotestyn" expr="expr:(anotestyn=="Y"||anotestyn==1)?1:0" wordwrap="char" editautoselect="true"/>
- <Cell col="58" displaytype="checkbox" edittype="none" style="controlbackground:silver;controlborder:1 solid #808080ff ;" text="bind:sytserdispyn" expr="expr:(sytserdispyn=="Y"||sytserdispyn==1)?1:0" wordwrap="char" editautoselect="true"/>
- <Cell col="59" displaytype="checkbox" edittype="checkbox" text="bind:sytshealdispyn" expr="expr:(sytshealdispyn=="Y"||sytshealdispyn==1)?1:0" wordwrap="char" editautoselect="true"/>
- <Cell col="60" displaytype="checkbox" edittype="checkbox" text="bind:glycostestyn" expr="expr:(glycostestyn=="Y"||glycostestyn==1)?1:0" wordwrap="char" editautoselect="true"/>
- <Cell col="61" displaytype="checkbox" edittype="checkbox" text="bind:bonedentestyn" expr="expr:(bonedentestyn=="Y"||bonedentestyn==1)?1:0" wordwrap="char" editautoselect="true"/>
- <Cell col="62" displaytype="checkbox" edittype="checkbox" text="bind:selectdryn" expr="expr:(selectdryn=="Y"||selectdryn==1)?1:0" wordwrap="char"/>
- <Cell col="63" displaytype="checkbox" style="controlbackground:silver;controlborder:1 solid #808080ff ;" text="bind:emryn" expr="expr:(emryn=="Y"||emryn==1)?1:0" wordwrap="char" editautoselect="true" enable="false"/>
- <Cell col="64" displaytype="combo" edittype="combo" style="align:left top;padding:5 3 1 3;" text="bind:prcpexecdeptcd" wordwrap="char" editautoselect="true" combodataset="ds_init_dept_info" combocodecol="prcpexecdeptcdid" combodatacol="prcpexecdeptcdnm" combotype="search" enable="false"/>
- <Cell col="65" displaytype="text" edittype="text" style="align:left top;padding:5 3 1 3;" text="bind:prcpexecdeptcd1" wordwrap="char" editautoselect="true" expandshow="show"/>
- <Cell col="66" displaytype="combo" edittype="combo" style="align:left top;padding:5 3 1 3;" text="bind:nextexcuroomcd" wordwrap="char" editautoselect="true" combodataset="ds_init_cmb_excuroomgrp" combocodecol="excuroomgrpcdid" combodatacol="excuroomgrpcdnm" combodisplaynulltext="- 선택 -" combodisplaynulltype="nulltext" combotype="search"/>
- <Cell col="67" displaytype="text" edittype="text" style="align:left top;padding:5 3 1 3;" text="bind:excurem" wordwrap="char" editautoselect="true"/>
- <Cell col="68" style="align:left top;padding:5 3 1 3;" text="bind:basesuppdeptcd" wordwrap="char" editautoselect="true"/>
- <Cell col="69" style="align:left top;padding:5 3 1 3;" text="bind:excutodd" wordwrap="char" editautoselect="true"/>
- <Cell col="70" displaytype="text" edittype="text" style="align:left top;padding:5 3 1 3;" text="bind:excupatrem" wordwrap="char" editautoselect="true" expandshow="show"/>
- <Cell col="71" text="bind:saveflag"/>
- <Cell col="72" text="bind:grupsnglflag"/>
- </Band>
- </Format>
- </Formats>
- </Grid>
- <Div position="absolute 432 267 854 510" id="grp_excupatrem" visible="false" anchor="default">
- <Layouts>
- <Layout>
- <Shape id="rectangle1" type="rectangle" visible="true" position="absolute 0 0 413 224" anchor="default"/>
- <TextArea position="absolute 17 26 391 195" id="textarea1" anchor="default" oneditclick="grp_biz_grp_excupatrem_textarea1_oneditclick" scrollbars="autovert"/>
- <Button position="absolute 331 199 387 221" id="btn_cls" class="btn4" text="닫기" anchor="default" onclick="grp_biz_grp_excupatrem_btn_cls_onclick"/>
- <Button position="absolute 269 199 325 221" id="button3" class="btn4" text="적용" anchor="default" onclick="grp_biz_grp_excupatrem_button3_onclick"/>
- <Static text="검사 주의사항" position="absolute 10 5 183 19" id="caption32" class="tit_2" anchor="default"/>
- </Layout>
- </Layouts>
- </Div>
- <Div position="absolute 0 4 1194 44" align="align:center top;" id="grp_sea" anchor="default" class="div_SA">
- <Layouts>
- <Layout>
- <Shape position="absolute 1114 10 1120 32" linetype="vertical" id="line13" class="line_4" anchor="default"/>
- <Button position="absolute 1128 10 1184 32" id="btn_sea" class="btn1" text="조회" anchor="default" onclick="grp_biz_grp_sea_btn_sea_onclick"/>
- <Static text="검사코드 :" position="absolute 10 13 96 30" id="caption2" class="search_name" anchor="default"/>
- <Edit position="absolute 92 11 207 30" id="ipt_srchexamcurecd" class="input_search" anchor="default" oneditclick="grp_biz_grp_sea_ipt_srchexamcurecd_oneditclick" onkeydown="grp_biz_grp_sea_ipt_srchexamcurecd_onkeydown" autoselect="true"/>
- <Edit position="absolute 323 11 472 30" id="ipt_srchexamcurenm" class="input_search" anchor="default" autoselect="true"/>
- <Static text="검사코드명 :" position="absolute 227 13 327 30" id="caption3" class="search_name" anchor="default"/>
- <Button position="absolute 593 11 693 31" id="button1" visible="false" text="button1" anchor="default"/>
- <Static text="구/신코드 :" position="absolute 915 13 1015 30" id="caption4" class="search_name" anchor="default"/>
- <Combo position="absolute 1004 11 1094 30" id="combo1" codecolumn="codecolumn" datacolumn="datacolumn" anchor="default">
- <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">
- </Col>
- <Col id="datacolumn">전체</Col>
- </Row>
- </Rows>
- </Dataset>
- </Combo>
- <Combo position="absolute 570 11 695 30" id="cmb_deptcd" innerdataset="@ds_init_cmb_suppdept" datacolumn="depthngnm" codecolumn="suppdeptcd" anchor="default" onitemchanged="grp_biz_grp_sea_cmb_deptcd_onitemchanged"/>
- <Static text="지원부서 :" position="absolute 485 13 571 30" id="caption5" class="search_name" anchor="default"/>
- <Static text="검사실 :" position="absolute 711 13 776 30" id="caption7" class="search_name" anchor="default"/>
- <Combo position="absolute 780 11 900 30" id="cmb_excuroom" class="combo_default" taborder="1" innerdataset="@ds_init_cmb_excuroom" datacolumn="basecdflagdesc" codecolumn="basecd" anchor="default" onitemchanged="grp_biz_grp_sea_cmb_excuroom_onitemchanged"/>
- </Layout>
- </Layouts>
- </Div>
- <Static text="검사/치료 코드 현황" position="absolute 0 54 154 71" id="caption1" class="tit_2" anchor="default"/>
- <Button position="absolute 1006 48 1059 70" id="btn_grdcopy" class="btn2" text="행복사" anchor="default" onclick="grp_biz_btn_grdcopy_onclick"/>
- <Button position="absolute 624 48 677 70" id="btn_grdadd" class="btn2" visible="false" text="행추가" anchor="default" onclick="grp_biz_btn_grdadd_onclick"/>
- <Button position="absolute 1060 48 1113 70" id="btn_grddel" class="btn2" text="행삭제" anchor="default" onclick="grp_biz_btn_grddel_onclick"/>
- <Button position="absolute 877 48 1004 70" id="btn_selcalcscorcd" class="btn2" text="검사코드조회및추가" anchor="default" onclick="grp_biz_btn_selcalcscorcd_onclick"/>
- <Button position="absolute 756 48 875 70" id="button2" class="btn2" text="수가코드조회-보험" anchor="default" onclick="grp_biz_button2_onclick"/>
- <Button position="absolute 679 48 754 70" id="button6" class="btn2" text="마스터검증" anchor="default" onclick="grp_biz_button6_onclick"/>
- <Div position="absolute 432 267 854 510" id="grp_excucdrem" visible="true" anchor="default">
- <Layouts>
- <Layout>
- <Shape id="rectangle1" type="rectangle" visible="true" position="absolute 0 0 413 232" anchor="default"/>
- <TextArea position="absolute 9 26 404 195" id="textarea2" anchor="default" oneditclick="grp_biz_grp_excucdrem_textarea2_oneditclick"/>
- <Static text="분류 상세내역" position="absolute 9 8 132 30" id="caption8" class="tit_2" anchor="default"/>
- <Button position="absolute 289 201 345 223" id="button5" class="btn4" text="적용" anchor="default" onclick="grp_biz_grp_excucdrem_button5_onclick"/>
- <Button position="absolute 348 201 404 223" id="button4" class="btn4" text="닫기" anchor="default" onclick="grp_biz_grp_excucdrem_button4_onclick"/>
- </Layout>
- </Layouts>
- </Div>
- <Shape id="line1" class="line_10" position="absolute 0 70 1194 76"/>
- <Radio id="rdo_mech" taborder="1" columncount="0" rowcount="1" position="absolute 218 46 616 69" codecolumn="codecolumn" datacolumn="datacolumn" index="0" style="buttonborder:0 solid #808080ff ;background:transparent;border:1 solid #808080ff ;">
- <Dataset id="innerdataset">
- <ColumnInfo>
- <Column id="codecolumn" size="256"/>
- <Column id="datacolumn" size="256"/>
- </ColumnInfo>
- <Rows>
- <Row>
- <Col id="codecolumn"/>
- <Col id="datacolumn">전체</Col>
- </Row>
- <Row>
- <Col id="codecolumn">가능</Col>
- <Col id="datacolumn">가능</Col>
- </Row>
- <Row>
- <Col id="codecolumn">INVISIBLE</Col>
- <Col id="datacolumn">INVISIBLE</Col>
- </Row>
- <Row>
- <Col id="codecolumn">불가</Col>
- <Col id="datacolumn">불가</Col>
- </Row>
- <Row>
- <Col id="codecolumn">종료</Col>
- <Col id="datacolumn">종료</Col>
- </Row>
- </Rows>
- </Dataset>
- </Radio>
- </Layout>
- </Layouts>
- </Div>
- <Static text="검사/치료코드관리" position="absolute 0 0 160 25" id="caption6" class="tit_1"/>
- <Button position="absolute 1114 69 1194 91" id="button12" class="btn7" text="엑셀저장" onclick="button12_onclick"/>
- <Div id="grp_btn" taborder="1" position="absolute 0 759 1195 786">
- <Layouts>
- <Layout>
- <Button id="btn_save" taborder="0" text="저장" onclick="grp_btn_btn_save_onclick" class="btn4" position="absolute 1138 5 1194 27" anchor="default"/>
- </Layout>
- </Layouts>
- </Div>
- </Layout>
- </Layouts>
- <Objects>
- <Dataset id="ds_init_cmb_excuroom" firefirstcount="0" firenextcount="0" useclientlayout="false" updatecontrol="true" enableevent="true" loadkeymode="keep" reversesubsum="false">
- <ColumnInfo>
- <Column id="basecd" type="STRING"/>
- <Column id="basecdflagdesc" type="STRING"/>
- </ColumnInfo>
- </Dataset>
- <Dataset id="ds_grd_examcurecdlist" firefirstcount="0" firenextcount="0" useclientlayout="false" updatecontrol="true" enableevent="true" loadkeymode="keep" reversesubsum="false" oncolumnchanged="ds_grd_examcurecdlist_oncolumnchanged">
- <ColumnInfo>
- <Column id="update" type="STRING"/>
- <Column id="excucd" type="STRING"/>
- <Column id="excucdnm" type="STRING"/>
- <Column id="excuroomcd" type="STRING"/>
- <Column id="excupartcd" type="STRING"/>
- <Column id="execbaseflag" type="STRING"/>
- <Column id="rcptacptyn" type="STRING"/>
- <Column id="rcptrsrvyn" type="STRING"/>
- <Column id="prcptdayaftrcptyn" type="STRING"/>
- <Column id="prcptdayrcptyn" type="STRING"/>
- <Column id="rsrvplceflag" type="STRING"/>
- <Column id="excuclscd" type="STRING"/>
- <Column id="lrgcd" type="STRING"/>
- <Column id="mdlcd" type="STRING"/>
- <Column id="ioexamflag" type="STRING"/>
- <Column id="excucdrem" type="STRING"/>
- <Column id="angioaltprcpcd" type="STRING"/>
- <Column id="angiouseyn" type="STRING"/>
- <Column id="autroomassgyn" type="STRING"/>
- <Column id="autroomassgcd" type="STRING"/>
- <Column id="section" type="STRING"/>
- <Column id="specdrcd" type="STRING"/>
- <Column id="rslttmplcd" type="STRING"/>
- <Column id="rslttmplcdnm" type="STRING"/>
- <Column id="rslttmplcd2nd" type="STRING"/>
- <Column id="ocrtmplcd" type="STRING"/>
- <Column id="eqmtifyn" type="STRING"/>
- <Column id="readdrid3" type="STRING"/>
- <Column id="readdrid3nm" type="STRING"/>
- <Column id="rsltdispyn" type="STRING"/>
- <Column id="rsltdispgbn" type="STRING"/>
- <Column id="rsltclscd1" type="STRING"/>
- <Column id="rsltclscd2" type="STRING"/>
- <Column id="partcntstats" type="STRING"/>
- <Column id="phocntstats" type="STRING"/>
- <Column id="curetims" type="STRING"/>
- <Column id="rsrvexcupossyn" type="STRING"/>
- <Column id="rsrvexcuroomposscd" type="STRING"/>
- <Column id="rsrvexcuroomposscd2" type="STRING"/>
- <Column id="rsrvsono" type="STRING"/>
- <Column id="excutm" type="STRING"/>
- <Column id="rsrvexmptmplcd" type="STRING"/>
- <Column id="rsrvmultitmplcd" type="STRING"/>
- <Column id="rsrvexmptmplexecrnm" type="STRING"/>
- <Column id="rsrvexmpcnt" type="STRING"/>
- <Column id="fastyn" type="STRING"/>
- <Column id="enemayn" type="STRING"/>
- <Column id="rsrvaprvtmplcd" type="STRING"/>
- <Column id="slepyn" type="STRING"/>
- <Column id="dcusrsrvyn" type="STRING"/>
- <Column id="rsrvupdtcncllimdayno" type="STRING"/>
- <Column id="modality" type="STRING"/>
- <Column id="pacsnocretyn" type="STRING"/>
- <Column id="etceqmtifyn" type="STRING"/>
- <Column id="prestddappyn" type="STRING"/>
- <Column id="anotestyn" type="STRING"/>
- <Column id="sytserdispyn" type="STRING"/>
- <Column id="sytshealdispyn" type="STRING"/>
- <Column id="glycostestyn" type="STRING"/>
- <Column id="bonedentestyn" type="STRING"/>
- <Column id="emryn" type="STRING"/>
- <Column id="prcpexecdeptcd" type="STRING"/>
- <Column id="prcpexecdeptcd1" type="STRING"/>
- <Column id="nextexcuroomcd" type="STRING"/>
- <Column id="excurem" type="STRING"/>
- <Column id="basesuppdeptcd" type="STRING"/>
- <Column id="excutodd" type="STRING"/>
- <Column id="excupatrem" type="STRING"/>
- <Column id="saveflag" type="STRING"/>
- <Column id="grupsnglflag" type="STRING"/>
- <Column id="selectdryn" type="STRING" size="0"/>
- <Column id="ordinptflag" type="STRING" size="256"/>
- <Column id="mechtodd" type="STRING" size="256"/>
- </ColumnInfo>
- </Dataset>
- <Dataset id="ds_init_A0071" firefirstcount="0" firenextcount="0" useclientlayout="false" updatecontrol="true" enableevent="true" loadkeymode="keep" loadfiltermode="keep" reversesubsum="false">
- <ColumnInfo>
- <Column id="cdid" type="STRING" size="256"/>
- <Column id="cdnm" type="STRING" size="256"/>
- </ColumnInfo>
- </Dataset>
- <Dataset id="ds_init_A0072" firefirstcount="0" firenextcount="0" useclientlayout="false" updatecontrol="true" enableevent="true" loadkeymode="keep" loadfiltermode="keep" reversesubsum="false">
- <ColumnInfo>
- <Column id="cdid" type="STRING" size="256"/>
- <Column id="cdnm" type="STRING" size="256"/>
- </ColumnInfo>
- </Dataset>
- <Dataset id="ds_init_A0073" firefirstcount="0" firenextcount="0" useclientlayout="false" updatecontrol="true" enableevent="true" loadkeymode="keep" loadfiltermode="keep" reversesubsum="false">
- <ColumnInfo>
- <Column id="cdid" type="STRING" size="256"/>
- <Column id="cdnm" type="STRING" size="256"/>
- </ColumnInfo>
- </Dataset>
- <Dataset id="ds_init_A0463" firefirstcount="0" firenextcount="0" useclientlayout="false" updatecontrol="true" enableevent="true" loadkeymode="keep" loadfiltermode="keep" reversesubsum="false">
- <ColumnInfo>
- <Column id="cdid" type="STRING" size="256"/>
- <Column id="cdnm" type="STRING" size="256"/>
- </ColumnInfo>
- </Dataset>
- <Dataset id="ds_init_A0481" firefirstcount="0" firenextcount="0" useclientlayout="false" updatecontrol="true" enableevent="true" loadkeymode="keep" loadfiltermode="keep" reversesubsum="false">
- <ColumnInfo>
- <Column id="cdid" type="STRING" size="256"/>
- <Column id="cdnm" type="STRING" size="256"/>
- </ColumnInfo>
- </Dataset>
- <Dataset id="ds_init_A0502" firefirstcount="0" firenextcount="0" useclientlayout="false" updatecontrol="true" enableevent="true" loadkeymode="keep" loadfiltermode="keep" reversesubsum="false">
- <ColumnInfo>
- <Column id="cdid" type="STRING" size="256"/>
- <Column id="cdnm" type="STRING" size="256"/>
- </ColumnInfo>
- </Dataset>
- <Dataset id="ds_init_A0501" firefirstcount="0" firenextcount="0" useclientlayout="false" updatecontrol="true" enableevent="true" loadkeymode="keep" loadfiltermode="keep" reversesubsum="false">
- <ColumnInfo>
- <Column id="cdid" type="STRING" size="256"/>
- <Column id="cdnm" type="STRING" size="256"/>
- </ColumnInfo>
- </Dataset>
- <Dataset id="ds_init_A0482" firefirstcount="0" firenextcount="0" useclientlayout="false" updatecontrol="true" enableevent="true" loadkeymode="keep" loadfiltermode="keep" reversesubsum="false">
- <ColumnInfo>
- <Column id="cdid" type="STRING" size="256"/>
- <Column id="cdnm" type="STRING" size="256"/>
- </ColumnInfo>
- </Dataset>
- <Dataset id="ds_send_globalinstance" firefirstcount="0" firenextcount="0" useclientlayout="false" updatecontrol="true" enableevent="true" loadkeymode="keep" loadfiltermode="keep" reversesubsum="false">
- <ColumnInfo>
- <Column id="instance1" type="STRING" size="256"/>
- </ColumnInfo>
- <Rows>
- <Row/>
- </Rows>
- </Dataset>
- <Dataset id="ds_init_cmb_excuroomgrp" firefirstcount="0" firenextcount="0" useclientlayout="false" updatecontrol="true" enableevent="true" loadkeymode="keep" reversesubsum="false">
- <ColumnInfo>
- <Column id="basecdcnts" type="STRING" size="256"/>
- <Column id="basecdcnts2" type="STRING" size="256"/>
- <Column id="seq" type="STRING" size="256"/>
- </ColumnInfo>
- </Dataset>
- <Dataset id="ds_init_cmb_roomcd" firefirstcount="0" firenextcount="0" useclientlayout="false" updatecontrol="true" enableevent="true" loadkeymode="keep" reversesubsum="false">
- <ColumnInfo>
- <Column id="wardcd" type="STRING" size="256"/>
- <Column id="wardroomcdid" type="STRING" size="256"/>
- <Column id="wardroomcdnm" type="STRING" size="256"/>
- </ColumnInfo>
- </Dataset>
- <Dataset id="ds_init_cmb_wardcd" firefirstcount="0" firenextcount="0" useclientlayout="false" updatecontrol="true" enableevent="true" loadkeymode="keep" reversesubsum="false">
- <ColumnInfo>
- <Column id="wardroomcdid" type="STRING" size="256"/>
- <Column id="wardroomcdnm" type="STRING" size="256"/>
- </ColumnInfo>
- </Dataset>
- <Dataset id="ds_init_cmb_execrid1" firefirstcount="0" firenextcount="0" useclientlayout="false" updatecontrol="true" enableevent="true" loadkeymode="keep" loadfiltermode="keep" reversesubsum="false">
- <ColumnInfo>
- <Column id="execrid1cdid" type="STRING" size="256"/>
- <Column id="execrid1cdnm" type="STRING" size="256"/>
- <Column id="equaluserid" type="STRING" size="256"/>
- </ColumnInfo>
- </Dataset>
- <Dataset id="ds_init_cmb_excuroomgrp2" firefirstcount="0" firenextcount="0" useclientlayout="false" updatecontrol="true" enableevent="true" loadkeymode="keep" reversesubsum="false">
- <ColumnInfo>
- <Column id="basecdcnts" type="STRING"/>
- <Column id="basecdcnts2" type="STRING"/>
- <Column id="sortno" type="STRING" size="256"/>
- <Column id="dispseq" type="STRING" size="256"/>
- </ColumnInfo>
- </Dataset>
- <Dataset id="ds_init_cmb_execrid2" firefirstcount="0" firenextcount="0" useclientlayout="false" updatecontrol="true" enableevent="true" loadkeymode="keep" loadfiltermode="keep" reversesubsum="false">
- <ColumnInfo>
- <Column id="execrid2cdid" type="STRING" size="256"/>
- <Column id="execrid2cdnm" type="STRING" size="256"/>
- </ColumnInfo>
- </Dataset>
- <Dataset id="ds_init_cmb_execrid3" firefirstcount="0" firenextcount="0" useclientlayout="false" updatecontrol="true" enableevent="true" loadkeymode="keep" loadfiltermode="keep" reversesubsum="false">
- <ColumnInfo>
- <Column id="execrid3cdid" type="STRING" size="256"/>
- <Column id="execrid3cdnm" type="STRING" size="256"/>
- </ColumnInfo>
- </Dataset>
- <Dataset id="ds_init_cmb_execrid4" firefirstcount="0" firenextcount="0" useclientlayout="false" updatecontrol="true" enableevent="true" loadkeymode="keep" loadfiltermode="keep" reversesubsum="false">
- <ColumnInfo>
- <Column id="execrid4cdid" type="STRING" size="256"/>
- <Column id="execrid4cdnm" type="STRING" size="256"/>
- </ColumnInfo>
- </Dataset>
- <Dataset id="ds_init_cmb_suppdept" firefirstcount="0" firenextcount="0" useclientlayout="false" updatecontrol="true" enableevent="true" loadkeymode="keep" loadfiltermode="keep" reversesubsum="false">
- <ColumnInfo>
- <Column id="suppdeptcd" type="STRING" size="256"/>
- <Column id="depthngnm" type="STRING" size="256"/>
- </ColumnInfo>
- </Dataset>
- <Dataset id="ds_init_cmb_systgrd" firefirstcount="0" firenextcount="0" useclientlayout="false" updatecontrol="true" enableevent="true" loadkeymode="keep" loadfiltermode="keep" reversesubsum="false">
- <ColumnInfo>
- <Column id="rsltclscd1" type="STRING" size="256"/>
- <Column id="rsltclsnm1" type="STRING" size="256"/>
- </ColumnInfo>
- </Dataset>
- <Dataset id="ds_init_cmb_systmdl" firefirstcount="0" firenextcount="0" useclientlayout="false" updatecontrol="true" enableevent="true" loadkeymode="keep" loadfiltermode="keep" reversesubsum="false">
- <ColumnInfo>
- <Column id="rsltclscd2" type="STRING" size="256"/>
- <Column id="rsltclsnm2" type="STRING" size="256"/>
- <Column id="basecdcnts" type="STRING" size="256"/>
- </ColumnInfo>
- </Dataset>
- <Dataset id="ds_send" firefirstcount="0" firenextcount="0" useclientlayout="false" updatecontrol="true" enableevent="true" loadkeymode="keep" loadfiltermode="keep" reversesubsum="false" oncolumnchanged="ds_send_oncolumnchanged">
- <ColumnInfo>
- <Column id="srchexamcurecd" type="STRING" size="256" sumtext="검사실코드"/>
- <Column id="srchexamcurenm" type="STRING" size="256" sumtext="등록번호"/>
- <Column id="basesuppdeptcd" type="STRING" size="256"/>
- <Column id="excuroomcd" type="STRING" size="256" sumtext="적용시작일자"/>
- <Column id="newoldyb" type="STRING" size="256" sumtext="적용종료일자"/>
- <Column id="saveflag" type="STRING" size="256"/>
- <Column id="grupcdid" type="STRING" size="256"/>
- <Column id="excupatrem" type="STRING" size="256"/>
- <Column id="excucdrem" type="STRING" size="256"/>
- <Column id="windowloadinstance" type="STRING" size="256"/>
- </ColumnInfo>
- <Rows>
- <Row/>
- </Rows>
- </Dataset>
- <Dataset id="ds_send_instance1" firefirstcount="0" firenextcount="0" useclientlayout="false" updatecontrol="true" enableevent="true" loadkeymode="keep" loadfiltermode="keep" reversesubsum="false">
- <ColumnInfo>
- <Column id="basesuppdeptcd" type="STRING" size="256"/>
- <Column id="rbasecdflag" type="STRING" size="256"/>
- <Column id="ebasecdflag" type="STRING" size="256"/>
- <Column id="instcd" type="STRING" size="256"/>
- <Column id="initflag" type="STRING" size="256"/>
- <Column id="alladdyn" type="STRING" size="256"/>
- <Column id="bbasecdflag" type="STRING" size="256"/>
- </ColumnInfo>
- <Rows>
- <Row/>
- </Rows>
- </Dataset>
- <Dataset id="ds_init_bodypart" firefirstcount="0" firenextcount="0" useclientlayout="false" updatecontrol="true" enableevent="true" loadkeymode="keep" loadfiltermode="keep" reversesubsum="false">
- <ColumnInfo>
- <Column id="sortno" type="STRING" size="256" sumtext="부서코드"/>
- <Column id="basecd" type="STRING" size="256" sumtext="기본코드구분"/>
- <Column id="basecdflagdesc" type="STRING" size="256" sumtext="기본코드구분"/>
- <Column id="basecdcnts" type="STRING" size="256" sumtext="부서코드"/>
- <Column id="basesuppdeptcd" type="STRING" size="256" sumtext="지원부서코드"/>
- <Column id="basecdflag" type="STRING" size="256" sumtext="부서코드"/>
- </ColumnInfo>
- </Dataset>
- <Dataset id="ds_init_bodypartgrp" firefirstcount="0" firenextcount="0" useclientlayout="false" updatecontrol="true" enableevent="true" loadkeymode="keep" loadfiltermode="keep" reversesubsum="false">
- <ColumnInfo>
- <Column id="basecd" type="STRING" size="256"/>
- <Column id="basecdflagdesc" type="STRING" size="256"/>
- </ColumnInfo>
- </Dataset>
- <Dataset id="ds_init_dept_info" firefirstcount="0" firenextcount="0" useclientlayout="false" updatecontrol="true" enableevent="true" loadkeymode="keep" loadfiltermode="keep" reversesubsum="false">
- <ColumnInfo>
- <Column id="prcpexecdeptcdid" type="STRING" size="256" sumtext="시행부서코드"/>
- <Column id="prcpexecdeptcdnm" type="STRING" size="256" sumtext="시행부서명"/>
- </ColumnInfo>
- </Dataset>
- <Dataset id="ds_init_comcd_info" firefirstcount="0" firenextcount="0" useclientlayout="false" updatecontrol="true" enableevent="true" loadkeymode="keep" loadfiltermode="keep" reversesubsum="false">
- <ColumnInfo>
- <Column id="comgrupcdid" type="STRING" size="256" sumtext="공통그룹코드"/>
- <Column id="comgrupcdnm" type="STRING" size="256" sumtext="공통그룹코드명"/>
- </ColumnInfo>
- </Dataset>
- <Dataset id="ds_init_cmb2_initsection" firefirstcount="0" firenextcount="0" useclientlayout="false" updatecontrol="true" enableevent="true" loadkeymode="keep" loadfiltermode="keep" reversesubsum="false">
- <ColumnInfo>
- <Column id="cdid" type="STRING" size="256" sumtext="SECTION 코드"/>
- <Column id="cdnm" type="STRING" size="256" sumtext="SECTION 명칭"/>
- <Column id="grupcdid" type="STRING" size="256" sumtext="GRUPCDID"/>
- </ColumnInfo>
- </Dataset>
- <Dataset id="ds_init_cmb2_initmodal" firefirstcount="0" firenextcount="0" useclientlayout="false" updatecontrol="true" enableevent="true" loadkeymode="keep" loadfiltermode="keep" reversesubsum="false">
- <ColumnInfo>
- <Column id="cdid" type="STRING" size="256" sumtext="Modal코드"/>
- <Column id="cdnm" type="STRING" size="256" sumtext="Modal명칭"/>
- <Column id="grupcdid" type="STRING" size="256" sumtext="GRUPCDID"/>
- </ColumnInfo>
- </Dataset>
- <Dataset id="ds_init_cmb2_initrsltgb" firefirstcount="0" firenextcount="0" useclientlayout="false" updatecontrol="true" enableevent="true" loadkeymode="keep" loadfiltermode="keep" reversesubsum="false">
- <ColumnInfo>
- <Column id="cdid" type="STRING" size="256" sumtext="initrsltgb코드"/>
- <Column id="cdnm" type="STRING" size="256" sumtext="initrsltgb명칭"/>
- <Column id="grupcdid" type="STRING" size="256" sumtext="GRUPCDID"/>
- </ColumnInfo>
- </Dataset>
- <Dataset id="ds_init_pacs_kind" firefirstcount="0" firenextcount="0" useclientlayout="false" updatecontrol="true" enableevent="true" loadkeymode="keep" loadfiltermode="keep" reversesubsum="false">
- <ColumnInfo>
- <Column id="label" type="STRING" size="256"/>
- <Column id="value" type="STRING" size="256"/>
- </ColumnInfo>
- <Rows>
- <Row>
- <Col id="label">-</Col>
- <Col id="value">-</Col>
- </Row>
- <Row>
- <Col id="label">Main Pacs</Col>
- <Col id="value">0</Col>
- </Row>
- <Row>
- <Col id="label">Cardiac Pacs</Col>
- <Col id="value">1</Col>
- </Row>
- </Rows>
- </Dataset>
- <Dataset id="ds_init_check" 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>
- </Dataset>
- <Dataset id="ds_hidden" firefirstcount="0" firenextcount="0" useclientlayout="true" updatecontrol="true" enableevent="true" loadkeymode="keep" loadfiltermode="keep" reversesubsum="false">
- <ColumnInfo>
- <Column id="checkseq" type="STRING" size="256"/>
- <Column id="grupcdid" type="STRING" size="256"/>
- <Column id="count" type="STRING" size="256"/>
- </ColumnInfo>
- <Rows>
- <Row/>
- </Rows>
- </Dataset>
- <Dataset id="ds_main_prcplist" firefirstcount="0" firenextcount="0" useclientlayout="false" updatecontrol="true" enableevent="true" loadkeymode="keep" loadfiltermode="keep" reversesubsum="false">
- <ColumnInfo>
- <Column id="prcpexecdeptcd" type="STRING" size="256"/>
- </ColumnInfo>
- </Dataset>
- <Dataset id="ds_orddept" firefirstcount="0" firenextcount="0" useclientlayout="false" updatecontrol="true" enableevent="true" loadkeymode="keep" loadfiltermode="keep" reversesubsum="false"/>
- <Dataset id="ds_hidden_item" firefirstcount="0" firenextcount="0" useclientlayout="false" updatecontrol="true" enableevent="true" loadkeymode="keep" loadfiltermode="keep" reversesubsum="false">
- <ColumnInfo>
- <Column id="excucd" type="STRING" size="256"/>
- <Column id="excucdnm" type="STRING" size="256"/>
- <Column id="excuroomcd" type="STRING" size="256"/>
- <Column id="excupartcd" type="STRING" size="256"/>
- <Column id="execbaseflag" type="STRING" size="256"/>
- <Column id="rcptacptyn" type="STRING" size="256"/>
- <Column id="rcptrsrvyn" type="STRING" size="256"/>
- <Column id="prcptdayaftrcptyn" type="STRING" size="256"/>
- <Column id="excuclscd" type="STRING" size="256"/>
- <Column id="lrgcd" type="STRING" size="256"/>
- <Column id="mdlcd" type="STRING" size="256"/>
- <Column id="ioexamflag" type="STRING" size="256"/>
- <Column id="excucdrem" type="STRING" size="256"/>
- <Column id="angioaltprcpcd" type="STRING" size="256"/>
- <Column id="angiouseyn" type="STRING" size="256"/>
- <Column id="autroomassgyn" type="STRING" size="256"/>
- <Column id="autroomassgcd" type="STRING" size="256"/>
- <Column id="section" type="STRING" size="256"/>
- <Column id="rslttmplcd" type="STRING" size="256"/>
- <Column id="ocrtmplcd" type="STRING" size="256"/>
- <Column id="eqmtifyn" type="STRING" size="256"/>
- <Column id="readdrid3" type="STRING" size="256"/>
- <Column id="readdrid3nm" type="STRING" size="256"/>
- <Column id="rsltdispyn" type="STRING" size="256"/>
- <Column id="rsltdispgbn" type="STRING" size="256"/>
- <Column id="rsltclscd1" type="STRING" size="256"/>
- <Column id="rsltclscd2" type="STRING" size="256"/>
- <Column id="partcntstats" type="STRING" size="256"/>
- <Column id="phocntstats" type="STRING" size="256"/>
- <Column id="curetims" type="STRING" size="256"/>
- <Column id="rsrvexcupossyn" type="STRING" size="256"/>
- <Column id="rsrvexcuroomposscd" type="STRING" size="256"/>
- <Column id="rsrvexcuroomposscd2" type="STRING" size="256"/>
- <Column id="rsrvsono" type="STRING" size="256"/>
- <Column id="rsrvplceflag" type="STRING" size="256"/>
- <Column id="excutm" type="STRING" size="256"/>
- <Column id="rsrvexmptmplcd" type="STRING" size="256"/>
- <Column id="rsrvexmptmplexecrnm" type="STRING" size="256"/>
- <Column id="rsrvexmpcnt" type="STRING" size="256"/>
- <Column id="fastyn" type="STRING" size="256"/>
- <Column id="enemayn" type="STRING" size="256"/>
- <Column id="rsrvaprvtmplcd" type="STRING" size="256"/>
- <Column id="slepyn" type="STRING" size="256"/>
- <Column id="dcusrsrvyn" type="STRING" size="256"/>
- <Column id="rsrvupdtcncllimdayno" type="STRING" size="256"/>
- <Column id="modality" type="STRING" size="256"/>
- <Column id="pacsnocretyn" type="STRING" size="256"/>
- <Column id="etceqmtifyn" type="STRING" size="256"/>
- <Column id="prestddappyn" type="STRING" size="256"/>
- <Column id="anotestyn" type="STRING" size="256"/>
- <Column id="sytserdispyn" type="STRING" size="256"/>
- <Column id="sytshealdispyn" type="STRING" size="256"/>
- <Column id="glycostestyn" type="STRING" size="256"/>
- <Column id="bonedentestyn" type="STRING" size="256"/>
- <Column id="prcpexecdeptcd" type="STRING" size="256"/>
- <Column id="nextexcuroomcd" type="STRING" size="256"/>
- <Column id="excurem" type="STRING" size="256"/>
- <Column id="basesuppdeptcd" type="STRING" size="256"/>
- <Column id="excutodd" type="STRING" size="256"/>
- <Column id="prcpexecdeptcd1" type="STRING" size="256"/>
- </ColumnInfo>
- <Rows>
- <Row>
- <Col id="excucd"/>
- <Col id="excucdnm"/>
- <Col id="excuroomcd"/>
- <Col id="excupartcd"/>
- <Col id="execbaseflag"/>
- <Col id="rcptacptyn"/>
- <Col id="rcptrsrvyn"/>
- <Col id="prcptdayaftrcptyn">N</Col>
- <Col id="excuclscd"/>
- <Col id="lrgcd"/>
- <Col id="mdlcd"/>
- <Col id="ioexamflag"/>
- <Col id="excucdrem"/>
- <Col id="angioaltprcpcd"/>
- <Col id="angiouseyn"/>
- <Col id="autroomassgyn"/>
- <Col id="autroomassgcd"/>
- <Col id="section"/>
- <Col id="rslttmplcd"/>
- <Col id="ocrtmplcd"/>
- <Col id="eqmtifyn"/>
- <Col id="readdrid3"/>
- <Col id="readdrid3nm"/>
- <Col id="rsltdispyn"/>
- <Col id="rsltdispgbn"/>
- <Col id="rsltclscd1"/>
- <Col id="rsltclscd2"/>
- <Col id="partcntstats"/>
- <Col id="phocntstats"/>
- <Col id="curetims"/>
- <Col id="rsrvexcupossyn"/>
- <Col id="rsrvexcuroomposscd"/>
- <Col id="rsrvexcuroomposscd2"/>
- <Col id="rsrvsono"/>
- <Col id="rsrvplceflag"/>
- <Col id="excutm"/>
- <Col id="rsrvexmptmplcd"/>
- <Col id="rsrvexmptmplexecrnm"/>
- <Col id="rsrvexmpcnt"/>
- <Col id="fastyn"/>
- <Col id="enemayn"/>
- <Col id="rsrvaprvtmplcd"/>
- <Col id="slepyn"/>
- <Col id="dcusrsrvyn"/>
- <Col id="rsrvupdtcncllimdayno"/>
- <Col id="modality"/>
- <Col id="pacsnocretyn"/>
- <Col id="etceqmtifyn"/>
- <Col id="prestddappyn"/>
- <Col id="anotestyn">Y</Col>
- <Col id="sytserdispyn"/>
- <Col id="sytshealdispyn"/>
- <Col id="glycostestyn"/>
- <Col id="bonedentestyn"/>
- <Col id="prcpexecdeptcd"/>
- <Col id="nextexcuroomcd"/>
- <Col id="excurem"/>
- <Col id="basesuppdeptcd"/>
- <Col id="excutodd"/>
- <Col id="prcpexecdeptcd1"/>
- </Row>
- </Rows>
- </Dataset>
- <Dataset id="ds_temp_templst_list" firefirstcount="0" firenextcount="0" useclientlayout="false" updatecontrol="true" enableevent="true" loadkeymode="keep" loadfiltermode="keep" reversesubsum="false"/>
- <Dataset id="ds_main_userpopupinfo" firefirstcount="0" firenextcount="0" useclientlayout="false" updatecontrol="true" enableevent="true" loadkeymode="keep" loadfiltermode="keep" reversesubsum="false"/>
- <Dataset id="ds_main_userinfolist" firefirstcount="0" firenextcount="0" useclientlayout="false" updatecontrol="true" enableevent="true" loadkeymode="keep" loadfiltermode="keep" reversesubsum="false"/>
- <Dataset id="ds_send_req_data1" firefirstcount="0" firenextcount="0" useclientlayout="false" updatecontrol="true" enableevent="true" loadkeymode="keep" loadfiltermode="keep" reversesubsum="false"/>
- <Dataset id="ds_cond_formdata" firefirstcount="0" firenextcount="0" useclientlayout="false" updatecontrol="true" enableevent="true" loadkeymode="keep" loadfiltermode="keep" reversesubsum="false">
- <ColumnInfo>
- <Column id="formcd" type="STRING" size="256"/>
- <Column id="formkind" type="STRING" size="256"/>
- <Column id="pid" type="STRING" size="256"/>
- <Column id="orddd" type="STRING" size="256"/>
- <Column id="cretno" type="STRING" size="256"/>
- <Column id="btnvisible" type="STRING" size="256"/>
- <Column id="btnenable" type="STRING" size="256"/>
- <Column id="unpreprec" type="STRING" size="256"/>
- <Column id="modalyn" type="STRING" size="256"/>
- </ColumnInfo>
- <Rows>
- <Row>
- <Col id="formkind"/>
- <Col id="formcd"/>
- <Col id="pid"/>
- <Col id="orddd"/>
- <Col id="cretno"/>
- <Col id="btnvisible"/>
- </Row>
- </Rows>
- </Dataset>
- </Objects>
- <Bind>
- <BindItem id="item0" compid="grp_biz.grp_sea.cmb_deptcd" propid="value" datasetid="ds_send_globalinstance" columnid="instance1"/>
- <BindItem id="item1" compid="grp_biz.grp_sea.cmb_excuroom" propid="value" datasetid="ds_send" columnid="excuroomcd"/>
- <BindItem id="item2" compid="grp_biz.grp_excucdrem.textarea2" propid="value" datasetid="ds_send" columnid="excucdrem"/>
- <BindItem id="item3" compid="grp_biz.grp_excupatrem.textarea1" propid="value" datasetid="ds_send" columnid="excupatrem"/>
- <BindItem id="item4" compid="grp_biz.grp_sea.ipt_srchexamcurecd" propid="value" datasetid="ds_send" columnid="srchexamcurecd"/>
- <BindItem id="item5" compid="grp_biz.grp_sea.ipt_srchexamcurenm" propid="value" datasetid="ds_send" columnid="srchexamcurenm"/>
- <BindItem id="item6" compid="grp_biz.grp_sea.combo1" propid="value" datasetid="ds_send" columnid="newoldyb"/>
- </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 "ast_examcurexp::AEZ0001.xjs";
- include "com_departmentcodexp::ZSD001.xjs";
- include "emr_medirecxp::MMR01100.xjs";
- var arErrorCode = new HashArray();
- function fn_TRAEA01301(){
- if (ds_send_instance1.rowcount < 1 ) {
- ds_send_instance1.addRow();
- }
-
- // ds_send_instance1.setColumn(0,'basesuppdeptcd', utlf_transNullToEmpty(frmf_getParameter("AST_DEPTCD"))); //부서코드
- ds_send_instance1.setColumn(0,'basesuppdeptcd', grp_biz.grp_sea.cmb_deptcd.value); //부서코드
- ds_send_instance1.setColumn(0,'rbasecdflag', 'R'); //검사실기본코드구분
- ds_send_instance1.setColumn(0,'ebasecdflag', 'E'); //실시자기본코드구분
- ds_send_instance1.setColumn(0,'initflag', '1'); //astlib,병동병실코드구분,1:병동조회
- ds_send_instance1.setColumn(0,'instcd', sysf_getUserInfo("dutplceinstcd") ); //전체항목index추가
- ds_send_instance1.setColumn(0,'alladdyn', "");
-
-
- var oParam = {};
- oParam.id = "TRAEA01301";
- oParam.service = "examcureacptexecapp.ExamCureAcpt";
- oParam.method = "reqGetInitExamCureRoomGrpCodeList";
- oParam.inds = "reqparam=ds_send_instance1";
- oParam.outds = "ds_init_cmb_excuroomgrp=initexcuroomgrp ds_init_cmb_excuroomgrp2=initexcuroomgrp2 ds_init_cmb_excuroom=initexcuroom ds_init_cmb_execrid1=initexecrid ds_init_cmb_execrid2=initexecrid ds_init_cmb_execrid3=initexecrid ds_init_cmb_execrid4=initexecrid ds_init_cmb_wardcd=initexcuward ds_init_cmb_suppdept=suppdept ds_init_cmb_systgrd=initsystgrd ds_init_cmb_systmdl=initsystmdl";
- oParam.async = false;
- oParam.callback = "cf_TRAEA01301";
-
- tranf_submit(oParam);
-
- }
- function cf_TRAEA01301(strSvcID, nErrorCode, strErrorMsg){
- //에러 처리
- if(nErrorCode < 0) return;
- ds_init_cmb_excuroomgrp.updateColID("basecdcnts","excuroomgrpcdid");
- ds_init_cmb_excuroomgrp.updateColID("basecdcnts2","excuroomgrpcdnm");
- ds_init_cmb_systgrd.updateColID("basecd","rsltclscd1");
- ds_init_cmb_systgrd.updateColID("basecdflagdesc","rsltclsnm1");
- ds_init_cmb_systmdl.updateColID("basecd","rsltclscd2");
- ds_init_cmb_systmdl.updateColID("basecdflagdesc","rsltclsnm2");
- dsf_setDefaultVal(ds_init_cmb_excuroomgrp,"all");
- dsf_setDefaultVal(ds_init_cmb_systgrd,"all");
- dsf_setDefaultVal(ds_init_cmb_systmdl,"all");
-
- // var nRow = ds_init_cmb_excuroomgrp.findRow("basecdcnts2", "- 선택 -");
- // ds_init_cmb_excuroomgrp.setColumn(nRow, "basecdcnts", "-");
- // group3.cmb_excuroomgrp.value = "-";
- grp_biz_grp_sea_btn_sea_onclick();
- }
- function fn_TRAEA01313() {
-
- ds_send.updateColID("basesuppdeptcd", "suppdeptcd");
- var oParam = {};
- oParam.id = "TRAEA01313";
- oParam.service = "examcureacptexecapp.ExamCureAcpt";
- oParam.method = "reqGetInitCdCodeList";
- oParam.inds = "req=ds_send";
- oParam.outds = "ds_init_cmb2_initsection=initsection ds_init_cmb2_initmodal=initmodal ds_init_cmb2_initrsltgb=initrsltgb";
- oParam.async = false;
- oParam.callback = "cf_TRAEA01313";
- tranf_submit(oParam);
- }
- function cf_TRAEA01313(sSvcId, nErrorCode, sErrorMsg) {
- if(nErrorCode < 0) return;
- ds_send.updateColID("suppdeptcd", "basesuppdeptcd");
- }
- function fn_TRAEB00201() {
- dsf_createDsRow("ds_req", [
- {col:"srchexamcurecd", type:"STRING", size:256, val:ds_send.getColumn(0,"srchexamcurecd")}
- , {col:"srchexamcurenm", type:"STRING", size:256, val:ds_send.getColumn(0,"srchexamcurenm")}
- , {col:"basesuppdeptcd", type:"STRING", size:256, val:ds_send_globalinstance.getColumn(0,"instance1")}
- , {col:"newoldyb", type:"STRING", size:256, val:ds_send.getColumn(0,"newoldyb")}
- , {col:"excuroomcd", type:"STRING", size:256, val:ds_send.getColumn(0,"excuroomcd")}
- , {col:"saveflag", type:"STRING", size:256, val:ds_send.getColumn(0,"saveflag")}
- ]);
- var oParam = {};
- oParam.id = "TRAEB00201";
- oParam.service = "examcurebaseapp.ExamCureCode";
- oParam.method = "reqGetExamCureCodeList";
- oParam.inds = "req=ds_req";
- oParam.outds = "ds_grd_examcurecdlist=item";
- oParam.async = false;
- oParam.callback = "cf_TRAEB00201";
- tranf_submit(oParam);
- }
- function cf_TRAEB00201(sSvcId, nErrorCode, sErrorMsg) {
- if(nErrorCode < 0) return;
- ds_grd_examcurecdlist.updatecontrol = false;
- fMakeCopyColumn(ds_grd_examcurecdlist,"rcptrsrvyn","bfrcptrsrvyn");
- fMakeCopyColumn(ds_grd_examcurecdlist,"prcptdayrcptyn","bfprcptdayrcptyn");
- ds_grd_examcurecdlist.updateColID("suppdeptcd","basesuppdeptcd");
- ds_grd_examcurecdlist.updatecontrol = true;
- }
- function fn_TRAEB00205() {
- var oParam = {};
- oParam.id = "TRAEB00205";
- oParam.service = "examcurebaseapp.ComCode";
- oParam.method = "reqGetPrcpExecDeptCdList";
- oParam.inds = "req=ds_send_instance1";
- oParam.outds = "ds_init_dept_info=item";
- oParam.async = false;
- oParam.callback = "cf_TRAEB00205";
- tranf_submit(oParam);
- }
- function cf_TRAEB00205(sSvcId, nErrorCode, sErrorMsg) {
- if(nErrorCode < 0) return;
- }
- function fn_TRAEB00206() {
- var oParam = {};
- oParam.id = "TRAEB00206";
- oParam.service = "examcurebaseapp.ComCode";
- oParam.method = "reqGetComGrupCdList";
- oParam.inds = "req=ds_send_instance1";
- oParam.outds = "ds_init_comcd_info=item";
- oParam.async = false;
- oParam.callback = "cf_TRAEB00206";
- tranf_submit(oParam);
- }
- function cf_TRAEB00206(sSvcId, nErrorCode, sErrorMsg) {
- if(nErrorCode < 0) return;
- }
- function fn_TRAEB00601() {
- if (ds_send_instance1.rowcount < 1 ) {
- ds_send_instance1.addRow();
- }
- ds_send_instance1.setColumn(0,'bbasecdflag', 'B'); //부서코드
-
- var oParam = {};
- oParam.id = "TRAEB00601";
- oParam.service = "examcurebaseapp.BodyPart";
- oParam.method = "reqGetBodyPartList";
- oParam.inds = "req=ds_send_instance1";
- oParam.outds = "ds_init_bodypart=bodypart ds_init_bodypartgrp=bodypartgrp";
- oParam.async = false;
- oParam.callback = "cf_TRAEB00601";
- tranf_submit(oParam);
- }
- function cf_TRAEB00601(sSvcId, nErrorCode, sErrorMsg) {
- if(nErrorCode < 0) return;
- }
- function SMAEB00200_onload(obj:Form, e:LoadEventInfo) {
-
- grp_biz.grp_excucdrem.visible = false ;
-
- lf_aezfSetSuppDeptcd(); //AEZ0001.xjs
- ds_send_globalinstance.setColumn(0,"instance1",frmf_getParameter("AST_DEPTCD"));
-
- //sysf_trace("suppdeptcd = " + frmf_getParameter("AST_DEPTCD"));
-
- appf_getCodeList([{dsNm: "ds_init_A0071", cdGrpId: "A0071"}
- , {dsNm: "ds_init_A0072", cdGrpId: "A0072"}
- , {dsNm: "ds_init_A0073", cdGrpId: "A0073"}
- , {dsNm: "ds_init_A0463", cdGrpId: "A0463"}
- , {dsNm: "ds_init_A0481", cdGrpId: "A0481"}
- , {dsNm: "ds_init_A0502", cdGrpId: "A0502"}
- , {dsNm: "ds_init_A0501", cdGrpId: "A0501"}], true);
-
-
- //appf_getCodeListSubmit("A0481", "", "A0482", "cdnm", "asc", true, "ds_init_A0482", "false", "cf_TRAEB00201");
- //appf_getSubCodeList("A0481", "", "A0482", "cdnm", "asc", true, "ds_init_A0482", "false", "cf_TRAEB00201");
-
- //검사치료실 가져오기
- fn_TRAEA01301();
-
- ds_grd_examcurecdlist.clearData();
- grdf_setRowTypeIcon(grp_biz.grd_examcurecdlist, 1); //status 표시 : 입력, 삭제, 갱신
- grdf_setGridSort(grp_biz.grd_examcurecdlist); // 그리드 소트만
-
- grp_biz.grp_sea.combo1.index = 0;
-
- //sysf_trace("cmb_deptcd = " + utlf_transNullToEmpty(grp_biz.grp_sea.cmb_deptcd.value));
-
- if ( utlf_transNullToEmpty(grp_biz.grp_sea.cmb_deptcd.text) =="" ) {
- grp_biz.grp_sea.caption5.visible = true;
- grp_biz.grp_sea.cmb_deptcd.visible = true;
- grp_biz.btn_grdadd.disabled = true;
- grp_biz.btn_grdcopy.disabled = true;
- grp_biz.btn_grddel.disabled = true;
- //btn_save.disabled = true;
- //2010.11.02 통합예약에서 주의사항 저장기능 추가 - 박재영
- //2014/11/17 이정택 추가 원무과 및 원무팀에서 저장 할 수 있도록 플래그값 수정(미수예약, 검사일수납, 예약구분, 상세내역, 주의사항만 수정할 수 있도록)
- //model.setValue("/root/send/saveflag","A");
-
-
- if(sysf_getUserInfo("dutplcecd")=="4040300000" || sysf_getUserInfo("dutplcecd")=="4040326000" || sysf_getUserInfo("userid")=="PAM"){
-
- for(var i=0 ; i< grp_biz.grd_examcurecdlist.getCellCount("Body"); i++){
- if(i==grp_biz.grd_examcurecdlist.getBindCellIndex("body","rcptrsrvyn") || i==grp_biz.grd_examcurecdlist.getBindCellIndex("body","prcptdayrcptyn")){
- //grd_examcurecdlist.colDisabled(i)=false;
- grp_biz.grd_examcurecdlist.setCellProperty("body",i,"edittype","checkbox");
-
- }else if(i==grp_biz.grd_examcurecdlist.getBindCellIndex("body","rsrvplceflag")){
- //grd_examcurecdlist.colDisabled(i)=false;
- grp_biz.grd_examcurecdlist.setCellProperty("body",i,"edittype","combo");
-
- }
- else if(i==grp_biz.grd_examcurecdlist.getBindCellIndex("body","excucdrem") ||
- i==grp_biz.grd_examcurecdlist.getBindCellIndex("body","excupatrem")){
- //grd_examcurecdlist.colDisabled(i)=false;
- grp_biz.grd_examcurecdlist.setCellProperty("body",i,"edittype","expand");
-
- }
- else{
- //grd_examcurecdlist.colDisabled(i)=true;
- grp_biz.grd_examcurecdlist.setCellProperty("body",i,"edittype","none");
- grp_biz.grd_examcurecdlist.setCellProperty("body",i,"controlbackground","silver");
-
- }
- }
- }else{
- ds_send.setColumn(0, "saveflag","A");
- }
- //2014/11/17 이정택 추가
-
- grp_btn.btn_save.disabled = false;
- grp_biz.btn_selcalcscorcd.disabled = true;
- }else{
- //2014/11/21 이정택 수정(위치 변경에 따른 옵션 변경)
- //caption5.visible = false;
- //cmb_deptcd.visible = false;
- grp_biz.grp_sea.caption5.visible = true;
- grp_biz.grp_sea.cmb_deptcd.visible = true;
- grp_biz.grp_sea.cmb_deptcd.enable = false;
- //2014/11/21 이정택 수정(위치 변경에 따른 옵션 변경)
- grp_biz.btn_grdadd.enable = true;
- grp_biz.btn_grdcopy.enable = true;
- grp_biz.btn_grddel.endable = true;
- grp_btn.btn_save.enable = true;
- grp_biz.btn_selcalcscorcd.enable = true;
- }
-
-
-
- fn_TRAEB00601(); // 부위코드 가져오기
-
- fn_TRAEB00205(); // 수행부서 코드 가져오기
-
- fn_TRAEB00206(); // 공통 그룹코드 가져오기
-
- ds_send.setColumn(0, "basesuppdeptcd",ds_send_globalinstance.getColumn(0,"instance1"));
- ds_send.setColumn(0, "srchexamcurecd","%");
- ds_send.setColumn(0, "srchexamcurenm","%");
-
- fn_TRAEB00201();
- ds_send.setColumn(0, "srchexamcurecd","");
- ds_send.setColumn(0, "srchexamcurenm","");
-
- //copyNodesetType("/root/hidden1/initsystmdl", "/root/init/cmb_info/initsystmdl");
- //model.removeNodeset("/root/main/examcurecdlist/item");
-
- // Section, Modal 등의 공통정보를 가져온다. App단에서 그룹코드별 셋팅을 입력해 놓는다.
- ds_send.setColumn(0,"grupcdid","A");
- fn_TRAEA01313();
-
-
- }
- function grp_biz_grp_sea_btn_sea_onclick(obj:Button, e:ClickEventInfo)
- {
- // 2014/11/20 이정택 추가(원무과로 로그인시에 지원부서를 먼저 선택 후 검색 할 수 있도록 제어)
- if(sysf_getUserInfo("dutplcecd")=="4040300000" || sysf_getUserInfo("dutplcecd")=="4040326000" || sysf_getUserInfo("userid")=="PAM"){
-
- var deptcd = utlf_transNullToEmpty(grp_biz.grp_sea.cmb_deptcd.value);
- if( deptcd=="" || deptcd=="4040300000" || deptcd=="4040326000" || deptcd=="3170000000"){ // 검사통합예약실 : 3170000000
- sysf_messageBox("검색은 지원부서 선택 후 가능합니다.", "E");
- return;
- }
- }
- // 2014/11/20 이정택 추가(원무과로 로그인시에 지원부서를 먼저 선택 후 검색 할 수 있도록 제어)
- ds_grd_examcurecdlist.clearData();
- var examcurecd = utlf_transNullToEmpty(grp_biz.grp_sea.ipt_srchexamcurecd.value);
-
- // sysf_trace( "examcurecd = " + examcurecd );
- if ( examcurecd == "" ) {
- ds_send.setColumn(0, "srchexamcurecd", "%");
- }else {
- ds_send.setColumn(0, "srchexamcurecd", "%" + examcurecd.toUpperCase()+"%");
- }
-
- // if ( grp_biz.grp_sea.ipt_srchexamcurenm.value == "" ) {
- // ds_send.setColumn(0, "srchexamcurenm", "%");
- // }else {
- // ds_send.setColumn(0, "srchexamcurenm", "%" + grp_biz.grp_sea.ipt_srchexamcurenm.value.toUpperCase()+"%");
- // }
-
-
- fn_TRAEB00201();
- ds_send.setColumn(0, "srchexamcurecd","");
- ds_send.setColumn(0, "srchexamcurenm","");
-
- //for (var i = 1; i < grd_examcurecdlist.rowcount; i ++){
- // grd_examcurecdlist.cellStyle("background-image", i, 1) = "../../../com/commonweb/images/icon_n.gif";
- //}
- //grd_examcurecdlist.topRow = 1;
-
- if (!utlf_isNull(grp_biz.rdo_mech.value)) {
- var filterStr = "ordinptflag == '" + grp_biz.rdo_mech.value + "'";
- }else{
- var filterStr = "1==1";
- }
- ds_grd_examcurecdlist.filter(filterStr);
-
-
- }
- function grp_biz_grp_sea_cmb_deptcd_onitemchanged(obj:Combo, e:ItemChangeEventInfo)
- {
- ds_send_globalinstance.setColumn(0,"instance1",obj.value);
- fn_TRAEA01301();
- }
- function grp_biz_grp_excucdrem_button5_onclick(obj:Button, e:ClickEventInfo)
- {
- var rownum = ds_grd_examcurecdlist.rowposition;
- var excucdrem = ds_send.getColumn(0, "excucdrem");
-
- ds_grd_examcurecdlist.setColumn(rownum, "excucdrem",excucdrem);
- ds_send.setColumn(0, "excucdrem", "");
- grp_biz.grp_excucdrem.visible = false;
-
- }
- function grp_biz_grp_excucdrem_button4_onclick(obj:Button, e:ClickEventInfo)
- {
- grp_biz.grp_excucdrem.visible = false;
- }
- //주의사항
- function grp_biz_grp_excupatrem_button3_onclick(obj:Button, e:ClickEventInfo)
- {
- var rownum = ds_grd_examcurecdlist.rowposition;
- var excupatrem = ds_send.getColumn(0, "excupatrem");
-
- ds_grd_examcurecdlist.setColumn(rownum, "excupatrem",excupatrem);
- ds_send.setColumn(0, "excupatrem", "");
- grp_biz.grp_excupatrem.visible = false;
- }
- function grp_biz_grp_excupatrem_btn_cls_onclick(obj:Button, e:ClickEventInfo)
- {
- grp_biz.grp_excupatrem.visible = false;
- }
- function grp_biz_grp_sea_ipt_srchexamcurecd_onkeydown(obj:Edit, e:KeyEventInfo)
- {
- if(e.keycode == 13) {
- grp_biz_grp_sea_btn_sea_onclick();
- }
- }
- function grp_biz_grd_examcurecdlist_ontextchanged(obj:Grid, e:GridEditTextChangedEventInfo)
- {return;
- var iRow = obj.currentrow ;
-
- /*
- * 장비연동(CDIS/PACS) 중복 체크
- */
- if ( e.col == obj.getBindCellIndex("body", "eqmtifyn")) {
- var eqmtifyn = ds_grd_examcurecdlist.getColumn(iRow,"eqmtifyn");
- var pacsnocretyn = ds_grd_examcurecdlist.getColumn(iRow,"pacsnocretyn");
-
- if ( eqmtifyn != "N" ) {
- if ( pacsnocretyn != "N" ) {
- sysf_messageBox("검사코드에 CDIS 장비연동과 PACS연동을 동시적용 불가입니다. PACS연동을 해제합니다.","I999");
- ds_grd_examcurecdlist.setColumn(iRow,"pacsnocretyn", "N");
- }
- }
- }
-
- if (ds_grd_examcurecdlist.getColumn(iRow,"pacsnocretyn") == "N" ) {
- ds_grd_examcurecdlist.setColumn(iRow,"etceqmtifyn", "-");
- }
- if (e.col == obj.getBindCellIndex("body", "pacsnocretyn")) {
- var pacsnocretyn = ds_grd_examcurecdlist.getColumn(iRow, "pacsnocretyn");
- var eqmtifyn = ds_grd_examcurecdlist.getColumn(iRow, "eqmtifyn");
-
- if ( pacsnocretyn != "N" ) {
- if ( eqmtifyn != "N" ) {
- sysf_messageBox("검사코드에 CDIS 장비연동과 PACS연동을 동시적용 불가입니다. CDIS연동을 해제합니다.","I999");
- ds_grd_examcurecdlist.setColumn(iRow,"eqmtifyn", "N");
- }
- }
- }
-
-
- /**
- * 분류코드1,2 가져오기.
- */
- if (e.col == obj.getBindCellIndex("body", "rsltclscd1")) {
- ds_grd_examcurecdlist.setColumn(iRow,"rsltclscd2", "");
- var idx = ds_grd_examcurecdlist.getColumn(iRow, "rsltclscd1");
- }
-
- // //2015/02/11 이정택 M-SET처방의 싱글 관리추가
- // if(colidx==grd_examcurecdlist.colRef("prcptdayrcptyn") && grd_examcurecdlist.valueMatrix(grd_examcurecdlist.row, grd_examcurecdlist.colRef("grupsnglflag"))=='M'){
- // if(grd_examcurecdlist.valueMatrix(grd_examcurecdlist.row, grd_examcurecdlist.colRef("prcptdayrcptyn"))=='Y'){
- // frmf_setParameter("excucd", grd_examcurecdlist.valueMatrix(grd_examcurecdlist.row, grd_examcurecdlist.colRef("excucd")));
- // frmf_modal("SPAEB00020");
- // }
- // }
- // //2015/02/11 이정택 M-SET처방의 싱글 관리추가
-
-
- }
- function grp_biz_btn_grdadd_onclick(obj:Button, e:ClickEventInfo)
- {
- var nRow = ds_grd_examcurecdlist.addRow();
- // 행추가 시 bottomRow 사용하지 마세요!! 꼭
- grp_biz.grd_examcurecdlist.setCellPos(nRow);
- ds_grd_examcurecdlist.setColumn(nRow,"basesuppdeptcd",ds_send_globalinstance.getColumn(0,"instance1"));
- ds_grd_examcurecdlist.setColumn(nRow,"sortno",nRow + 1);
- }
- function grp_biz_btn_grddel_onclick(obj:Button, e:ClickEventInfo)
- {
- // var arrRow = new Array();
- // arrRow[0] = ds_grd_examcurecdlist.rowposition;
- // grdf_setStatus(grp_biz.grd_examcurecdlist, "D", arrRow);
- var cRow = ds_grd_examcurecdlist.rowposition;
-
- if( ds_grd_examcurecdlist.getRowType(cRow) == 2 ) {
- ds_grd_examcurecdlist.deleteRow(cRow);
- }else{
- grdf_setStatus(grp_biz.grd_examcurecdlist, "D", [cRow]);
- }
- }
- function button12_onclick(obj:Button, e:ClickEventInfo)
- {
- grdf_exportExcel(grp_biz.grd_examcurecdlist, "검사치료코드" , "검사치료코드");
- }
- function grp_biz_btn_grdcopy_onclick(obj:Button, e:ClickEventInfo)
- {
- ds_hidden_item.clearData();
- var grdrow = ds_grd_examcurecdlist.rowposition;
- if (grdrow < 0){
- sysf_messageBox("복사할 행을 선택하시기 바랍니다.", "E999", "");
- return;
- }
-
- var cRow = ds_hidden_item.addRow();
- ds_hidden_item.copyRow(cRow, ds_grd_examcurecdlist, grdrow);
- ds_hidden_item.setColumn(cRow, "excucd", "");
- ds_hidden_item.setColumn(cRow, "excucdnm", "");
-
- ds_grd_examcurecdlist.insertRow(grdrow);
- ds_grd_examcurecdlist.copyRow(grdrow, ds_hidden_item, cRow);
-
- }
- function grp_biz_button6_onclick(obj:Button, e:ClickEventInfo)
- {
- // var objArg = new Object();
- // objArg.arg_ds_source = "";
- frmf_modal("SMAEA04300", "SMAEA04300" ,"","","", "100", "100", "", "", "", "", "","M");
- }
- function grp_biz_button2_onclick(obj:Button, e:ClickEventInfo)
- {
- // var objArg = new Object();
- // objArg.arg_ds_source = "";
- frmf_open("SMPIC00700", "SMPIC00700" ,"","","", "100", "100", "", "", "", "", "","M")
- }
- function grp_biz_btn_selcalcscorcd_onclick(obj:Button, e:ClickEventInfo)
- {
- ds_temp_templst_list.clearData();
- var sessiondept = ds_send_globalinstance.getColumn(0, "instance1");
-
- fGetCalScorCd("cd", "", "Y"/*bMultiyn*/ , "ds_temp_templst_list" /*vMultiDestXPath*/, "" /*vCdDestXPath*/, "" /*vNmDestXPath*/, "" /*vAmtDestXPath*/);
- // 2010.11.19 c y w 검사코드 추가시 기본값셋팅
- var tempcnt = ds_temp_templst_list.rowcount;
- for( var i = 0 ; i < tempcnt ; i++ ) {
- ds_temp_templst_list.setColumn( i, "rsltdispgbn" , ds_grd_examcurecdlist.getColumn(0, "rsltdispgbn") );
- ds_temp_templst_list.setColumn( i, "prcpexecdeptcd" , ds_grd_examcurecdlist.getColumn(0, "prcpexecdeptcd") );
- ds_temp_templst_list.setColumn( i, "prcpexecdeptcd1", ds_grd_examcurecdlist.getColumn(0, "prcpexecdeptcd") );
- }
- fSetOcd(grp_biz.grd_examcurecdlist , "ds_temp_templst_list" , 2, "Y", "excucd", "excucdnm", sessiondept);
- }
- function SMAEB00200_oninit(obj:Form, e:InitEventInfo)
- {
- frmf_initForm(obj);
- }
- function ds_grd_examcurecdlist_oncolumnchanged(obj:Dataset, e:DSColChangeEventInfo)
- {
- if(e.columnid=="rcptrsrvyn" || e.columnid=="rcptacptyn" || e.columnid=="prcptdayaftrcptyn" || e.columnid=="prcptdayrcptyn"
- || e.columnid=="angiouseyn" || e.columnid=="autroomassgyn" || e.columnid=="rsltdispyn" || e.columnid=="rsrvexcupossyn" || e.columnid=="slepyn"
- || e.columnid=="dcusrsrvyn" || e.columnid=="prestddappyn" || e.columnid=="anotestyn" || e.columnid=="sytserdispyn" || e.columnid=="sytshealdispyn"
- || e.columnid=="glycostestyn" || e.columnid=="bonedentestyn" || e.columnid=="emryn") {
- obj.setColumn(e.row,e.columnid,(e.newvalue=="Y"||e.newvalue==1)?"Y":"N");
- }
-
- var iRow = e.row;
-
- /*
- * 장비연동(CDIS/PACS) 중복 체크
- */
- if (e.columnid == "eqmtifyn") {
- var eqmtifyn = obj.getColumn(iRow,"eqmtifyn");
- var pacsnocretyn = obj.getColumn(iRow,"pacsnocretyn");
-
- if ( eqmtifyn != "N" ) {
- if ( pacsnocretyn != "N" ) {
- sysf_messageBox("검사코드에 CDIS 장비연동과 PACS연동을 동시적용 불가입니다. PACS연동을 해제합니다.","I999");
- obj.setColumn(iRow,"pacsnocretyn", "N");
- }
- }
- }
-
- if (obj.getColumn(iRow,"pacsnocretyn") == "N" ) {
- obj.setColumn(iRow,"etceqmtifyn", "-");
- }
-
- if (e.columnid == "pacsnocretyn") {
- var pacsnocretyn = obj.getColumn(iRow, "pacsnocretyn");
- var eqmtifyn = obj.getColumn(iRow, "eqmtifyn");
-
- if ( pacsnocretyn != "N" ) {
- if ( eqmtifyn != "N" ) {
- sysf_messageBox("검사코드에 CDIS 장비연동과 PACS연동을 동시적용 불가입니다. CDIS연동을 해제합니다.","I999");
- obj.setColumn(iRow,"eqmtifyn", "N");
- }
- }
- }
-
- /**
- * 분류코드1,2 가져오기.
- */
- if (e.columnid == "rsltclscd1") {
- obj.setColumn(iRow,"rsltclscd2", "");
- var idx = obj.getColumn(iRow, "rsltclscd1");
- }
-
- //2015/02/11 이정택 M-SET처방의 싱글 관리추가
- if(e.columnid == "prcptdayrcptyn" && obj.getColumn(e.row, "grupsnglflag") == "M") {
- if(obj.getColumn(e.row, "prcptdayrcptyn") == "Y") {
- frmf_setParameter("excucd", obj.getColumn(e.row, "excucd"));
- frmf_modal("SPAEB00020","SPAEB00020","","","","","","","","","","","M");
- }
- }
- //2015/02/11 이정택 M-SET처방의 싱글 관리추가
- }
- /* @group : 검사치료코드 제 3판독의 등록
- * @ver :
- * @by : 장준원
- * @-----------------------------------
- * @type : function
- * @access : public
- * @desc : 제 3판독의를 통한 PACS 오더 전달..
- */
- function fSrchDrInfo() {
- ds_main_userinfolist.clear();
- ds_main_userpopupinfo.clearData();
- dsf_makeValue(ds_main_userpopupinfo,"param","string","_OneS");
- var objArg = new Object();
- objArg.param = ds_main_userpopupinfo.getColumn(0,"param");
- objArg.flag = "";
- objArg.searchitem = "";
- var iParam = frmf_modal("SPZSU10103", "SPZSU10103", objArg, "", 0, 200, 200, "", "", "", "", "", "M");
- // setCSVToNode("/root/temp/useroneselect", iParam);
- ds_main_userinfolist.copyData(iParam);
- }
- function grp_btn_btn_save_onclick(obj:Button, e:ClickEventInfo)
- {
- if ( sysf_messageBox("검사코드를","Q002")==6 ) {
- var check = fCheckExCuCd();
-
- if ( check == "1" ) return;
-
- // model.makeValue("/root/send/req/data1", grd_examcurecdlist.getUpdateData());
- var dsUpdate = grdf_getGridUpdateData(grp_biz.grd_examcurecdlist, "all");
- grdf_setStatusColumn(dsUpdate, "m");
- ds_send_req_data1.copyData(dsUpdate,true);
- dsf_setDefaultVal(ds_send_req_data1, "curetims:0,etceqmtifyn:-,emryn:N,rsrvupdtcncllimdayno:0,rsrvupdtcncllimdayno:0");
- var oParam = {};
- oParam.id = "TXAEB00201";
- oParam.service = "examcurebaseapp.ExamCureCode";
- oParam.method = "reqExeExamCureCode";
- oParam.inds = "req=ds_send_req_data1";
- oParam.outds = "ds_hidden=item";
- oParam.async = false;
- oParam.callback = "cf_TXAEB00201";
- tranf_submit(oParam);
- if( arErrorCode.pop("TXAEB00201") > -1 ) {
- ds_send.setColumn(0,"srchexamcurecd","%");
- ds_send.setColumn(0,"srchexamcurenm","%");
-
- grp_biz_grp_sea_btn_sea_onclick();
- // grd_examcurecdlist.topRow = 1;
- }
- }
- }
- function cf_TXAEB00201(sSvcId, nErrorCode, sErrorMsg) {
- arErrorCode.push(sSvcId, nErrorCode);
- }
- function fCheckExCuCd() {
- var srchLength1 = ds_grd_examcurecdlist.rowcount;
- var msg = "";
- var msgCnt = 0;
-
- for ( var i = 0 ; i < srchLength1; i++ ) {
- if ( utlf_isNull(ds_grd_examcurecdlist.getColumn(i,"excucd")) ) {
- sysf_messageBox("검사코드[필수입력사항]를 입력 해야 합니다.","I999");
- return "1";
- }
-
- if ( utlf_isNull(ds_grd_examcurecdlist.getColumn(i,"excucdnm")) ) {
- sysf_messageBox("["+ds_grd_examcurecdlist.getColumn(i,"excucd")+"]코드의 검사코드명칭[필수입력사항]를 입력 해야 합니다.","I999");
- return "1";
- }
-
- if ( utlf_isNull(ds_grd_examcurecdlist.getColumn(i,"prcpexecdeptcd")) ) {
- sysf_messageBox("["+ds_grd_examcurecdlist.getColumn(i,"excucd")+"]코드의 시행부서코드[필수입력사항]를 선택 해야 합니다.","I999");
- return "1";
- }
-
- ////20180130 영상의학과일경우 ,분류코드를 필수항목으로 입력
- if ( ds_send_globalinstance.getColumn(0,"instance1") == "2160000000" ) {
- //trace( "excuclscd =" + ds_grd_examcurecdlist.getColumn(i,"excuclscd"));
- if ( utlf_isNull(ds_grd_examcurecdlist.getColumn(i,"excuclscd")) || ds_grd_examcurecdlist.getColumn(i,"excuclscd") == "-") {
- sysf_messageBox("["+ds_grd_examcurecdlist.getColumn(i,"excuclscd")+"]코드의 분류코드[필수입력사항]를 선택 해야 합니다.","I999");
- return "1";
- }
-
- } else {
- if ( utlf_isNull(ds_grd_examcurecdlist.getColumn(i,"excuclscd")) ) {
- ds_grd_examcurecdlist.setColumn(i,"excuclscd", "-");
- }
- }
- ////////////////////////////////////////////////////////////////////
-
- if ( utlf_isNull(ds_grd_examcurecdlist.getColumn(i,"rsltclscd1")) ) {
- ds_grd_examcurecdlist.setColumn(i,"rsltclscd1", "-");
- }
-
- if ( utlf_isNull(ds_grd_examcurecdlist.getColumn(i,"rsltclscd2")) ) {
- ds_grd_examcurecdlist.setColumn(i,"rsltclscd2", "-");
- }
-
- if ( ds_grd_examcurecdlist.getColumn(i,"pacsnocretyn") == "N" ) {
- ds_grd_examcurecdlist.setColumn(i,"etceqmtifyn", "-");
- } else {
- if (ds_grd_examcurecdlist.getColumn(i,"etceqmtifyn") == "-"){
- sysf_messageBox("Pacs연동시 장비구분은 필수 선택항목입니다.", "E999", "");
- return "1";
- }
- }
- if ( utlf_isNull(ds_grd_examcurecdlist.getColumn(i,"rsrvmultitmplcd")) ){
- ds_grd_examcurecdlist.setColumn(i,"rsrvmultitmplcd", "-");
- }
-
- // 미수예약 및 당일수납 체크 변경시 확인
- var rsrvFlag = ds_grd_examcurecdlist.getColumn(i,"rcptrsrvyn") != ds_grd_examcurecdlist.getColumn(i,"bfrcptrsrvyn");
- var dayFlag = ds_grd_examcurecdlist.getColumn(i,"prcptdayrcptyn") != ds_grd_examcurecdlist.getColumn(i,"bfprcptdayrcptyn");
-
- if (rsrvFlag || dayFlag) {
- msgCnt++;
-
- if (msgCnt < 11) {
- msg += ( msg != "" ? "\n" : "" );
- msg += "[ " + i + " ] 행 - ";
- msg += ( rsrvFlag ? "[ 미수예약 ]" : "" );
- msg += ( dayFlag ? " " : "" );
- msg += ( dayFlag ? "[ 당일수납 ]" : "" );
- } else if (msgCnt == 11) {
- msg += "\n...";
- }
- }
-
- if ( utlf_isNull(ds_grd_examcurecdlist.getColumn(i,"rsrvmultitmplcd")) ){
- ds_grd_examcurecdlist.setColumn(i,"rsrvmultitmplcd", "-");
- }
- }
-
- if (msg != "") {
- if (sysf_messageBox("아래와 같은 변경 사항이 있습니다.\n\n" + msg + "\n\n진행하시겠습니까?", "Q999") != 6) {
- return "1";
- }
- }
- }
- function fMakeCopyColumn(objDs,sColSrc,sColTgt) {
- if(utlf_isNull(objDs.getColumnInfo(sColTgt))) objDs.addColumn(sColTgt,"string");
- for(var i = 0 ; i < objDs.rowcount ; i++) {
- objDs.setColumn(i,sColTgt,objDs.getColumn(i,sColSrc));
- }
- }
- function grp_biz_grp_sea_cmb_excuroom_onitemchanged(obj:Combo, e:ItemChangeEventInfo)
- {
- grp_biz_grp_sea_btn_sea_onclick();
- }
- function grp_biz_grd_examcurecdlist_oncellclick(obj:Grid, e:GridClickEventInfo)
- {
- // var iRow = grd_examcurecdlist.row - 1 ;
- // var colidx = grd_examcurecdlist.col;
- //
- // // 자동방배정 체크박스
- // if(grd_examcurecdlist.colAttribute(colidx, "ref") == "autroomassgyn") {
- // var check = ds_main_examcurecdlist_item.getColumn(iRow, "autroomassgyn");
- //
- // if ( check == "N" ) ds_main_examcurecdlist.setColumn( iRow , "autroomassgcd", "");
- // }
- //
- // if(grd_examcurecdlist.colAttribute(colidx, "ref") == "rslttmplcd") {
- // grd_examcurecdlist.addStatus(iRow, "update");
- // }
- // if(grd_examcurecdlist.colAttribute(colidx, "ref") == "ocrtmplcd") {
- // grd_examcurecdlist.addStatus(iRow, "update");
- // }
- // if(grd_examcurecdlist.colAttribute(colidx, "ref") == "eqmtifyn") {
- // grd_examcurecdlist.addStatus(iRow, "update");
- // }
- // // 예약여부 체크박스
- // if(grd_examcurecdlist.colAttribute(colidx, "ref") == "rsrvexcupossyn") {
- // var check = ds_main_examcurecdlist_item.getColumn(iRow, "rsrvexcupossyn"));
- //
- // if ( check == "N" ) {
- // ds_main_examcurecdlist.setColumn( iRow , "rsrvexcuroomposscd", "");
- // ds_main_examcurecdlist.setColumn( iRow , "rsrvplceflag", "");
- // ds_main_examcurecdlist.setColumn( iRow , "excutm", "");
- // ds_main_examcurecdlist.setColumn( iRow , "rsrvexmptmplcd", "");
- // }
- // }
- // if(grd_examcurecdlist.colAttribute(colidx, "ref") == "rsrvexcuroomposscd") {
- // grd_examcurecdlist.addStatus(iRow, "update");
- // }
- // if(grd_examcurecdlist.colAttribute(colidx, "ref") == "rsrvexmptmplcd") {
- // //alert('rsrvexmptmplcd');
- // grd_examcurecdlist.addStatus(iRow, "update");
- // }
- // if(grd_examcurecdlist.colAttribute(colidx, "ref") == "rsrvaprvtmplcd") {
- // //alert('rsrvaprvtmplcd');
- // grd_examcurecdlist.addStatus(iRow, "update");
- // }
- //
- // //2014_11_19 이정택 추가(원무과, 원무팀, PAM)
- // if(sysf_getUserInfo("dutplcecd")=='4040300000' || sysf_getUserInfo("dutplcecd")=='4040326000' || sysf_getUserInfo("userid")=='PAM'){
- // //이정택 추가(검사일수납 클릭시 미수예약도 같이 움직이도록 프로그램 수정)
- // if(grd_examcurecdlist.col==grd_examcurecdlist.colRef("prcptdayrcptyn")){
- // var row = grd_examcurecdlist.row;
- // grd_examcurecdlist.valueMatrix(row, grd_examcurecdlist.colRef("rcptrsrvyn"))=grd_examcurecdlist.valueMatrix(row, grd_examcurecdlist.colRef("prcptdayrcptyn"));
- // }
- //
- // // 이정택 추가(미수예약 클릭시 검사일 수납항목을 체크하도록 프로그램 수정)
- // if(grd_examcurecdlist.col==grd_examcurecdlist.colRef("rcptrsrvyn")){
- // var row = grd_examcurecdlist.row;
- // if(grd_examcurecdlist.valueMatrix(row, grd_examcurecdlist.colRef("rcptrsrvyn"))=="N"){
- // if(grd_examcurecdlist.valueMatrix(row, grd_examcurecdlist.colRef("prcptdayrcptyn"))=="Y"){
- // sysf_messageBox("검사일 수납에 체크가 되어 있을시, 미수예약은 체크해제가\n불가능합니다.", "E");
- // grd_examcurecdlist.valueMatrix(row, grd_examcurecdlist.colRef("rcptrsrvyn"))=grd_examcurecdlist.valueMatrix(row, grd_examcurecdlist.colRef("prcptdayrcptyn"));
- // return;
- // }
- // }
- // }
- // }
- // //2014_11_19 이정택 추가
- }
- function grp_biz_grd_examcurecdlist_onexpandup(obj:Grid, e:GridMouseEventInfo)
- {
- //sysf_trace("col = " + obj.currentcol);
- ds_send.setColumn(0, "windowloadinstance", "SMAEB00200"); //코드조회 참조정보
- ds_hidden.setColumn(0, "checkseq","");
- ds_hidden.setColumn(0, "grupcdid","");
-
- /**
- * 상세내역 입력
- */
- if ( e.col == obj.getBindCellIndex("body", "excucdrem")) { //상세내역
- ds_send.setColumn(0, "excucdrem", "");
- grp_biz.grp_excucdrem.visible = true;
- var rownum = obj.currentrow;
- var excucdrem = ds_grd_examcurecdlist.getColumn( rownum, "excucdrem");
- ds_send.setColumn(0, "excucdrem",excucdrem);
-
- }
-
- /**
- * 제3판독의 가져오기.
- */
- if ( e.col == obj.getBindCellIndex("body", "readdrid3nm") )
- {
- var rownum = e.row;
- fSrchDrInfo();
- ds_grd_examcurecdlist.setColumn( rownum , "readdrid3" , ds_main_userinfolist.getColumn(0, "userid") ); // 사용자 ID
- ds_grd_examcurecdlist.setColumn( rownum , "readdrid3nm" , ds_main_userinfolist.getColumn(0, "usernm") ); // 사용자 이름
- //grd_examcurecdlist.addStatus(grd_examcurecdlist.row,"update");
- //grd_examcurecdlist.dispatch("xforms-value-changed");
- }
-
- /**
- * 대체코드 가져오기.
- */
- //if ( obj.currentcol == 16) { //대체코드
- if ( e.col == obj.getBindCellIndex("body", "angioaltprcpcd")) {
- var rownum = obj.currentrow;
- var angiouseyn = utlf_transNullToEmpty(ds_grd_examcurecdlist.getColumn( rownum,"angiouseyn"));
- //sysf_trace("angiouseyn = " + angiouseyn);
- if ( angiouseyn != "Y" ) {
- sysf_messageBox("[조영제사용여부]를 선택하십시오.","I999");
- return true;
- }
-
- ds_send.setColumn(0, "windowloadinstance", "SMAEB00200"); //코드조회 참조정보
- dsf_createDsRow("ds_temp_source"
- , [{col: "SMAEB00200_param_srcXpath1", val: "/root/main/examcurecdlist/item"}
- , {col: "SMAEB00200_param_srcXgrid1" , val: "ds_grd_examcurecdlist"}
- , {col: "SMAEB00200_param_srcXrow1" , val: ds_grd_examcurecdlist.rowposition}
- , {col: "SMAEB00200_param_srcXnode1" , val: "angioaltprcpcd"}
- ]);
-
- var objArg = new Object();
- objArg.arg_ds_source = ds_temp_source;
-
- //sysf_trace( "objArg =" + objArg);
- frmf_modal("SPAEA02302", "SPAEA02302" ,objArg,"","", "100", "100", "", "", "", "", "","M");
- }
-
- /**
- * 배정가능검사실코드 가져오기.
- */
- //if ( obj.currentcol == 19) { //배정검사실
- if ( e.col == obj.getBindCellIndex("body", "autroomassgcd")) {
- var rownum = obj.currentrow;
- var assgyn = utlf_transNullToEmpty(ds_grd_examcurecdlist.getColumn( rownum,"autroomassgyn"));
- //sysf_trace("assgyn = " + assgyn);
- if ( assgyn != "Y" ) {
- sysf_messageBox("[자동방배정여부]를 선택하십시오.","I999");
- return true;
- }
-
- var objArg = new Object();
- objArg.arg_ds_source = "";
-
- //sysf_trace(" call SPAEA02301 " );
- frmf_modal("SPAEA02301", "SPAEA02301" ,objArg,"","", "100", "100", "", "", "", "", "","M");
-
- }
-
- /**
- * 20150921 권영애 선택진료의 가져오기.
- */
- //if( obj.currentcol == 21) // "specdrcd"
- if( e.col == obj.getBindCellIndex("body", "specdrcd"))
- {
- ds_hidden.setColumn(0, "checkseq","57");
- ds_hidden.setColumn(0, "grupcdid","A0012");
-
- var objArg = new Object();
- objArg.arg_ds_source = "";
- frmf_modal("SPAEA02301", "SPAEA02301" ,objArg,"","", "100", "100", "", "", "", "", "","M");
- }
-
-
- /**
- * 결과서식 가져오기.
- */
- //if(obj.currentcol == 22) // rslttmplcd"
- if( e.col == obj.getBindCellIndex("body", "rslttmplcd")) {
- frmf_setParameter("winid", "SMAEB00200");
- frmf_setParameter("SPMMR01000_param_flag", "F");
- frmf_modal("SPMMR01000", "SPMMR01000" ,"","","", "100", "100", "", "", "", "", "","M");
- var rownum = obj.currentrow;;
- if(!utlf_isNull(frmf_getParameter("SPMMR01000_formcd_rtn"))){
- ds_grd_examcurecdlist.setColumn(rownum,"rslttmplcd", frmf_getParameter("SPMMR01000_formcd_rtn"));
- ds_grd_examcurecdlist.setColumn(rownum,"rslttmplcdnm", frmf_getParameter("SPMMR01000_formnm_rtn"));
-
- }
- }
-
- /**
- * 결과 tmpl 미리보기
- * 20101013 -박재영
- */
- //if(grd_examcurecdlist.colAttribute(colidx, "ref") == "rslttmplcdnm"){
- if ( e.col == obj.getBindCellIndex("body", "rslttmplcdnm")) {
- var rownum = obj.currentrow;;
- var valu = ds_grd_examcurecdlist.getColumn( rownum, "rslttmplcd");
- if( !utlf_isNull(valu)){
- // frmf_setParameter("openmode", "preview"); //오픈모드는 “newform”
- // frmf_setParameter("formcd", valu); //서식테이블의 formcd(서식코드)
- //
- // // frmf_modal("SSMMR01100", 1, 0, 0 ,"", "", "");
- // frmf_modal("SSMMR01100", "SSMMR01100", null, null, 1, 0, 0, null, null, null, null, null, "M");
-
- var path = "";
- var objArg = new Object();
- var vFormKind = "new";
- ds_cond_formdata.clearData();
- ds_cond_formdata.addRow();
- ds_cond_formdata.setColumn(0, "formcd", valu); // 서식목록 - linkcd, 기록목록 - formrecseq 컬럼값.
- ds_cond_formdata.setColumn(0, "formkind", vFormKind); // 서식목록 탭 - new , 기록목록 - rec
- ds_cond_formdata.setColumn(0, "btnvisible", false);
- ds_cond_formdata.setColumn(0, "pid", "");
- ds_cond_formdata.setColumn(0, "orddd", "");
- ds_cond_formdata.setColumn(0, "cretno", "");
- ds_cond_formdata.setColumn(0, "orddeptcd", "");
- ds_cond_formdata.setColumn(0, "ioflag", "");
- ds_cond_formdata.setColumn(0, "modalyn", "Y");
-
- objArg.ds_cond_formdata = ds_cond_formdata;
-
- lf_loadSMMMR01100(true, objArg, path);
- }
- }
-
-
- /**
- * 예약가능검사실코드 가져오기.
- */
- //if( obj.currentcol == 37) // "rsrvexcuroomposscd"
- if( e.col == obj.getBindCellIndex("body", "rsrvexcuroomposscd")) {
- var rownum = obj.currentrow;
- var assgyn = utlf_transNullToEmpty(ds_grd_examcurecdlist.getColumn( rownum,"rsrvexcupossyn"));
- if ( assgyn != "Y" ) {
- sysf_messageBox("[예약여부]를 선택하십시오.","I999");
- return true;
- }
- ds_hidden.setColumn(0, "checkseq","23");
- var objArg = new Object();
- objArg.arg_ds_source = "";
- frmf_modal("SPAEA02301", "SPAEA02301" ,objArg,"","", "100", "100", "", "", "", "", "","M");
- }
- /**
- * 자체예약 검사/치료실 가져오기.
- */
- //if(obj.currentcol == 38) //rsrvexcuroomposscd2"
- if( e.col == obj.getBindCellIndex("body", "rsrvexcuroomposscd2")) {
- var rownum = obj.currentrow;
- var assgyn = utlf_transNullToEmpty(ds_grd_examcurecdlist.getColumn( rownum,"rsrvexcupossyn"));
- if ( assgyn != "Y" ) {
- sysf_messageBox("[예약여부]를 선택하십시오.","I999");
- return true;
- }
- ds_hidden.setColumn(0, "checkseq","55");
-
- var objArg = new Object();
- objArg.arg_ds_source = "";
- frmf_modal("SPAEA02301", "SPAEA02301" ,objArg,"","", "100", "100", "", "", "", "", "","M");
- }
- /**
- * 나이제한 검사/치료실 가져오기.
- */
- //if(obj.currentcol == 39) // "rsrvsono"
- if( e.col == obj.getBindCellIndex("body", "rsrvsono")) {
- ds_hidden.setColumn(0, "checkseq","56");
- frmf_modal("SPAEA02301", "SPAEA02301" ,objArg,"","", "100", "100", "", "", "", "", "","M");
- }
-
- /**
- * 예약예문코드 가져오기.
- */
- //if(obj.currentcol == 41) // "rsrvexmptmplcd"
- if( e.col == obj.getBindCellIndex("body", "rsrvexmptmplcd")) {
- ds_hidden.setColumn(0, "checkseq","26");
-
- var objArg = new Object();
- objArg.arg_ds_source = "";
- frmf_modal("SPAEA02301", "SPAEA02301" ,objArg,"","", "100", "100", "", "", "", "", "","M");
- }
- /**
- * 멀티예약예문코드 가져오기.
- */
- //if(obj.currentcol == 42) // "rsrvmultitmplcd"
- if( e.col == obj.getBindCellIndex("body", "rsrvmultitmplcd")) {
- ds_hidden.setColumn(0, "checkseq","27");
-
- var objArg = new Object();
- objArg.arg_ds_source = "";
- frmf_modal("SPAEA02301", "SPAEA02301" ,objArg,"","", "100", "100", "", "", "", "", "","M");
- }
-
- if( e.col == obj.getBindCellIndex("body", "rsrvaprvtmplcd")) {
- sysf_setParameter("formlistflag","true");
- //window.load( "../../../emr/medirecweb/xrw/SMMMR02500_서식리스트.xrw","modal","code", "left:100px; top:150px; width:530px; height:380px;min:hidden;max:hidden;resize:false;" );
- var objArg = new Object();
- objArg.arg_ds_source = "";
-
- frmf_modal("SMMMR02500", "SMMMR02500" ,objArg,"","", "100", "100", "", "", "", "", "","M");
- var rownum = obj.currentrow;
- ds_grd_examcurecdlist.setColumn( rownum, "rsrvaprvtmplcd", sysf_getParameter("formcd"));
- }
-
- /**
- * 검사코드별주의사항 입력
- */
- //if(obj.currentcol == 67 ) //"excupatrem"
- if( e.col == obj.getBindCellIndex("body", "excupatrem")){
- ds_send.setColumn(0, "excupatrem", "");
- grp_biz.grp_excupatrem.visible = true;
- var rownum = obj.currentrow;
- var excupatrem = ds_grd_examcurecdlist.getColumn(rownum, "excupatrem");
-
- ds_send.setColumn(0, "excupatrem",excupatrem);
- }
-
-
-
- // 2010.12.23 c y w 시행부서 팝업추가
- //if(obj.currentcol == 67) // "prcpexecdeptcd1")
- if ( e.col == obj.getBindCellIndex("body", "prcpexecdeptcd1")) {
-
- var rownum = obj.currentrow;
- var objArg = new Object();
- objArg.arg_ds_source = "";
-
- ds_main_prcplist.clearData();
- ds_main_prcplist.addRow();
-
- frmf_modal("SPMMB02500", "SPMMB02500" ,objArg,"","", "100", "100", "", "", "", "", "","M");
-
-
- if( !utlf_isNull(ds_main_prcplist.getColumn(0, "prcpexecdeptcd")) ){
- ds_grd_examcurecdlist.setColumn( rownum, "prcpexecdeptcd1", ds_main_prcplist.getColumn(0, "prcpexecdeptcd") );
- ds_grd_examcurecdlist.setColumn( rownum,"prcpexecdeptcd", ds_main_prcplist.getColumn(0, "prcpexecdeptcd"));
- }
- }
- }
- function grp_biz_grd_examcurecdlist_onmousemove(obj:Grid, e:GridMouseEventInfo)
- {
- if(e.row < 0) return;
- if(obj.getCellProperty("body",e.col,"expandshow") == "show") obj.autoenter = "select";
- else obj.autoenter = "key";
- }
- ]]></Script>
- </Form>
- </FDL>
|