123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286 |
- <?xml version="1.0" encoding="utf-8"?>
- <FDL version="1.5">
- <TypeDefinition url="..\..\..\default_typedef.xml"/>
- <Form id="SMMNP00400" position="absolute 0 0 1195 805" titletext="마취간호 메인" oninit="SMMNP00400_oninit" onload="SMMNP00400_onload">
- <Layouts>
- <Layout>
- <Div position="absolute 0 13 1195 759" id="group3" scrollbars="autoboth" anchor="all">
- <Layouts>
- <Layout>
- <Grid position="absolute 1 110 1194 720" id="grd_excel" class="datagrid2" visible="false" binddataset="ds_main_oppatinfoexcel" anchor="default">
- <Formats>
- <Format id="default">
- <Columns>
- <Column size="100"/>
- <Column size="100"/>
- <Column size="100"/>
- <Column size="100"/>
- <Column size="100"/>
- <Column size="100"/>
- <Column size="100"/>
- <Column size="100"/>
- <Column size="100"/>
- <Column size="100"/>
- <Column size="100"/>
- <Column size="100"/>
- <Column size="100"/>
- <Column size="100"/>
- <Column size="100"/>
- <Column size="100"/>
- <Column size="100"/>
- <Column size="100"/>
- <Column size="100"/>
- <Column size="100"/>
- <Column size="100"/>
- <Column size="100"/>
- <Column size="100"/>
- <Column size="100"/>
- <Column size="100"/>
- <Column size="100"/>
- <Column size="100"/>
- <Column size="100"/>
- <Column size="100"/>
- <Column size="100"/>
- <Column size="100"/>
- <Column size="100"/>
- <Column size="50"/>
- <Column size="100"/>
- <Column size="100"/>
- <Column size="100"/>
- <Column size="100"/>
- <Column size="100"/>
- <Column size="100"/>
- <Column size="100"/>
- <Column size="100"/>
- <Column size="100"/>
- <Column size="100"/>
- <Column size="100"/>
- <Column size="100"/>
- <Column size="100"/>
- <Column size="100"/>
- <Column size="100"/>
- <Column size="100"/>
- </Columns>
- <Rows>
- <Row size="24" band="head"/>
- <Row size="24"/>
- </Rows>
- <Band id="head">
- <Cell text="상태"/>
- <Cell col="1" text="구분"/>
- <Cell col="2" text="재수술"/>
- <Cell col="3" text="수술방"/>
- <Cell col="4" text="수술일자"/>
- <Cell col="5" text="소요시간"/>
- <Cell col="6" text="집도과"/>
- <Cell col="7" text="병실"/>
- <Cell col="8" text="환자명"/>
- <Cell col="9" text="등록번호"/>
- <Cell col="10" text="S/A"/>
- <Cell col="11" text="체중(kg)"/>
- <Cell col="12" text="키(cm)"/>
- <Cell col="13" text="진단명(한글)"/>
- <Cell col="14" text="진단명(영문)"/>
- <Cell col="15" text="수술후진단명"/>
- <Cell col="16" text="수술명(한글)"/>
- <Cell col="17" text="수술명(영문)"/>
- <Cell col="18" text="수술후수술명"/>
- <Cell col="19" text="집도의"/>
- <Cell col="20" text="마취의"/>
- <Cell col="21" text="마취 종류"/>
- <Cell col="22" text="병동출발일시"/>
- <Cell col="23" text="대기실도착일시"/>
- <Cell col="24" text="환자미팅시간"/>
- <Cell col="25" text="입실시간"/>
- <Cell col="26" text="퇴실시간"/>
- <Cell col="27" text="총수술시간"/>
- <Cell col="28" text="총수술(분)"/>
- <Cell col="29" text="집도의입실시간"/>
- <Cell col="30" text="집도의퇴실시간"/>
- <Cell col="31" text="집도의총재실시간"/>
- <Cell col="32" text="총재실(분)"/>
- <Cell col="33" text="수술시작시간"/>
- <Cell col="34" text="수술종료시간"/>
- <Cell col="35" text="마취시작시간"/>
- <Cell col="36" text="마취종료시간"/>
- <Cell col="37" text="취소사유"/>
- <Cell col="38" text="협진"/>
- <Cell col="39" text="대기실기록간호사"/>
- <Cell col="40" text="수술실기록간호사"/>
- <Cell col="41" text="입원일자"/>
- <Cell col="42" text="퇴원일자"/>
- <Cell col="43" text="수술스케일"/>
- <Cell col="44" text="내시경"/>
- <Cell col="45" text="수술료"/>
- <Cell col="46" text="마취료"/>
- <Cell col="47" text="SCRUB"/>
- <Cell col="48" text="CIR"/>
- </Band>
- <Band id="body">
- <Cell text="bind:opstatcdnm"/>
- <Cell col="1" text="bind:opflagcdnm"/>
- <Cell col="2" text="bind:reopflag"/>
- <Cell col="3" text="bind:oproomcdnm"/>
- <Cell col="4" text="bind:fstrgstdt"/>
- <Cell col="5" text="bind:opusetm" mask="hh:nn"/>
- <Cell col="6" text="bind:depthngnm"/>
- <Cell col="7" text="bind:oppatflagnm"/>
- <Cell col="8" text="bind:hngnm"/>
- <Cell col="9" text="bind:pid"/>
- <Cell col="10" text="bind:sa"/>
- <Cell col="11" text="bind:bdwt"/>
- <Cell col="12" text="bind:bdht"/>
- <Cell col="13" text="bind:diagcdnm"/>
- <Cell col="14" text="bind:diagengnm"/>
- <Cell col="15" text="bind:afdiagcdnm"/>
- <Cell col="16" text="bind:opcdknm"/>
- <Cell col="17" text="bind:opcdenm"/>
- <Cell col="18" text="bind:afopnm"/>
- <Cell col="19" text="bind:perfdridnm1"/>
- <Cell col="20" text="bind:perfdridnm2"/>
- <Cell col="21" text="bind:anstmthdcdnm"/>
- <Cell col="22" text="bind:wardstarttm" mask="yyyy-mm-dd hh:nn"/>
- <Cell col="23" text="bind:waitarrivetm" mask="yyyy-mm-dd hh:nn"/>
- <Cell col="24" text="bind:anstmeettime" mask="yyyy-mm-dd hh:nn"/>
- <Cell col="25" text="bind:intm" mask="yyyy-mm-dd hh:nn"/>
- <Cell col="26" text="bind:dschtm" mask="yyyy-mm-dd hh:nn"/>
- <Cell col="27" text="bind:totoptm"/>
- <Cell col="28" text="bind:totopmin"/>
- <Cell col="29" text="bind:perfintm" mask="yyyy-mm-dd hh:nn"/>
- <Cell col="30" text="bind:perfdschtm" mask="yyyy-mm-dd hh:nn"/>
- <Cell col="31" text="bind:totperftom"/>
- <Cell col="32" text="bind:totperfmin"/>
- <Cell col="33" text="bind:opstarttm" mask="yyyy-mm-dd hh:nn"/>
- <Cell col="34" text="bind:opendtm" mask="yyyy-mm-dd hh:nn"/>
- <Cell col="35" text="bind:anststarttm" mask="yyyy-mm-dd hh:nn"/>
- <Cell col="36" text="bind:anstendtm" mask="yyyy-mm-dd hh:nn"/>
- <Cell col="37" text="bind:cnclresn"/>
- <Cell col="38" text="bind:cnstopflag"/>
- <Cell col="39" text="bind:prestaynursenm"/>
- <Cell col="40" text="bind:preopnursenm"/>
- <Cell col="41" text="bind:indd" mask="yyyy-mm-dd"/>
- <Cell col="42" text="bind:dschdd" mask="yyyy-mm-dd"/>
- <Cell col="43" text="bind:opscale"/>
- <Cell col="44" text="bind:escopeeqmtuseyn"/>
- <Cell col="45" text="bind:opcost"/>
- <Cell col="46" text="bind:anstcost"/>
- <Cell col="47" text="bind:scrub"/>
- <Cell col="48" text="bind:cir"/>
- </Band>
- </Format>
- </Formats>
- </Grid>
- <Tab position="absolute 0 83 1195 738" id="switch1" anchor="all" onchanged="group3_switch1_onchanged" onlbuttondown="group3_switch1_onlbuttondown" style="buttonpadding:4 16 4 16;">
- <Tabpages>
- <Tabpage text="수술스케쥴" id="opmain">
- <Layouts>
- <Layout>
- <Grid position="absolute 0 0 1195 628" id="grd_oppatlist" class="datagrid2" binddataset="ds_main_opPatlist_opPatInfo" anchor="all" oncelldblclick="group3_switch1_opmain_grd_oppatlist_oncelldblclick" onrbuttondown="group3_switch1_opmain_grd_oppatlist_onrbuttondown" oncellclick="group3_switch1_opmain_grd_oppatlist_oncellclick" cellsizingtype="both" cellsizebandtype="allband" selecttype="multirow" tooltiptype="hover" extendsizetype="row">
- <Formats>
- <Format id="default">
- <Columns>
- <Column size="20" band="left"/>
- <Column size="0"/>
- <Column size="0"/>
- <Column size="0"/>
- <Column size="23"/>
- <Column size="23"/>
- <Column size="23"/>
- <Column size="23"/>
- <Column size="35"/>
- <Column size="18"/>
- <Column size="43"/>
- <Column size="18"/>
- <Column size="18"/>
- <Column size="18"/>
- <Column size="43"/>
- <Column size="35"/>
- <Column size="35"/>
- <Column size="35"/>
- <Column size="35"/>
- <Column size="30"/>
- <Column size="60"/>
- <Column size="35"/>
- <Column size="100"/>
- <Column size="35"/>
- <Column size="60"/>
- <Column size="45"/>
- <Column size="37"/>
- <Column size="36"/>
- <Column size="48"/>
- <Column size="81"/>
- <Column size="83"/>
- <Column size="66"/>
- <Column size="60"/>
- <Column size="115"/>
- <Column size="115"/>
- <Column size="110"/>
- <Column size="35"/>
- <Column size="35"/>
- <Column size="45"/>
- <Column size="45"/>
- <Column size="35"/>
- <Column size="35"/>
- <Column size="18"/>
- <Column size="18"/>
- <Column size="18"/>
- <Column size="45"/>
- <Column size="18"/>
- <Column size="35"/>
- <Column size="70"/>
- <Column size="70"/>
- <Column size="45"/>
- <Column size="18"/>
- <Column size="35"/>
- <Column size="35"/>
- <Column size="42"/>
- <Column size="0"/>
- <Column size="0"/>
- <Column size="0"/>
- <Column size="0"/>
- <Column size="0"/>
- <Column size="0"/>
- <Column size="0"/>
- <Column size="0"/>
- <Column size="0"/>
- <Column size="0"/>
- <Column size="0"/>
- <Column size="0"/>
- <Column size="0"/>
- <Column size="0"/>
- <Column size="0"/>
- <Column size="0"/>
- <Column size="0"/>
- <Column size="0"/>
- <Column size="0"/>
- <Column size="0"/>
- <Column size="0"/>
- <Column size="0"/>
- <Column size="0"/>
- <Column size="0"/>
- <Column size="0"/>
- <Column size="0"/>
- <Column size="0"/>
- <Column size="0"/>
- <Column size="0"/>
- <Column size="0"/>
- <Column size="0"/>
- <Column size="0"/>
- <Column size="0"/>
- <Column size="0"/>
- <Column size="0"/>
- <Column size="0"/>
- <Column size="0"/>
- <Column size="0"/>
- <Column size="0"/>
- <Column size="0"/>
- <Column size="0"/>
- <Column size="0"/>
- </Columns>
- <Rows>
- <Row size="26" band="head"/>
- <Row size="24"/>
- </Rows>
- <Band id="head">
- <Cell/>
- <Cell col="1" text="감염정보"/>
- <Cell col="2" text="감염정보"/>
- <Cell col="3" text="감염정보"/>
- <Cell col="4" colspan="4" text="감염정보" taborder="undefined"/>
- <Cell col="8" text="PCA"/>
- <Cell col="9" text="혈 액"/>
- <Cell col="10" text="미확인 처방"/>
- <Cell col="11" text="변 경"/>
- <Cell col="12" text="협 진"/>
- <Cell col="13" text="재 원"/>
- <Cell col="14" text="진행 상태"/>
- <Cell col="15" text="Cart 상태"/>
- <Cell col="16" text="환자 위치"/>
- <Cell col="17" text="환자 구분"/>
- <Cell col="18" text="수술 구분"/>
- <Cell col="19" text="재 수술"/>
- <Cell col="20" text="수술방"/>
- <Cell col="21" text="집도 과"/>
- <Cell col="22" text="수술일시"/>
- <Cell col="23" text="소요 시간"/>
- <Cell col="24" text="등록번호"/>
- <Cell col="25" text="환자명"/>
- <Cell col="26" text="S/A"/>
- <Cell col="27" text="체중 (kg)"/>
- <Cell col="28" text="키 (cm)"/>
- <Cell col="29" text="진단명(한글)"/>
- <Cell col="30" text="진단명(영문)"/>
- <Cell col="31" text="보험유형 (DRG)"/>
- <Cell col="32" text="수술후 진단명"/>
- <Cell col="33" text="수술전수술명(영문)"/>
- <Cell col="34" text="수술전수술명(한글)"/>
- <Cell col="35" text="수술후수술명"/>
- <Cell col="36" text="수술 부위"/>
- <Cell col="37" text="수술 체위"/>
- <Cell col="38" text="집도의"/>
- <Cell col="39" text="마취의"/>
- <Cell col="40" text="마취 종류"/>
- <Cell col="41" text="마취 방법"/>
- <Cell col="42" text="진 정"/>
- <Cell col="43" text="전 달"/>
- <Cell col="44" text="H x"/>
- <Cell col="45" text="예약자"/>
- <Cell col="46" text="공 개"/>
- <Cell col="47" text="취소 사유"/>
- <Cell col="48" text="입원일"/>
- <Cell col="49" text="퇴원일"/>
- <Cell col="50" text="심사자"/>
- <Cell col="51" text="호 출"/>
- <Cell col="52" text="물품 상태"/>
- <Cell col="53" text="기구 상태"/>
- <Cell col="54" text="소모품 상태"/>
- <Cell col="55" text="이송요원호출부서"/>
- <Cell col="56" text="oordtype"/>
- <Cell col="57" text="orddeptcd"/>
- <Cell col="58" text="caption1"/>
- <Cell col="59" text="caption2"/>
- <Cell col="60"/>
- <Cell col="61"/>
- <Cell col="62"/>
- <Cell col="63"/>
- <Cell col="64"/>
- <Cell col="65"/>
- <Cell col="66"/>
- <Cell col="67"/>
- <Cell col="68"/>
- <Cell col="69"/>
- <Cell col="70"/>
- <Cell col="71"/>
- <Cell col="72"/>
- <Cell col="73"/>
- <Cell col="74"/>
- <Cell col="75"/>
- <Cell col="76"/>
- <Cell col="77"/>
- <Cell col="78"/>
- <Cell col="79"/>
- <Cell col="80"/>
- <Cell col="81"/>
- <Cell col="82"/>
- <Cell col="83"/>
- <Cell col="84"/>
- <Cell col="85"/>
- <Cell col="86"/>
- <Cell col="87"/>
- <Cell col="88"/>
- <Cell col="89"/>
- <Cell col="90"/>
- <Cell col="91"/>
- <Cell col="92"/>
- <Cell col="93"/>
- <Cell col="94"/>
- <Cell col="95"/>
- <Cell col="96"/>
- </Band>
- <Band id="body">
- <Cell celltype="head" expr="expr:currow+1"/>
- <Cell col="1" style="background:EXPR(callyn == 'Y' ? '#c9d6b9' : '#F7FFF7');background2:EXPR(callyn == 'Y' ? '#c9d6b9' : '');" text="bind:disp1"/>
- <Cell col="2" style="background:EXPR(callyn == 'Y' ? '#c9d6b9' : '#F7FFF7');background2:EXPR(callyn == 'Y' ? '#c9d6b9' : '');" text="bind:disp2"/>
- <Cell col="3" style="background:EXPR(callyn == 'Y' ? '#c9d6b9' : '#F7FFF7');background2:EXPR(callyn == 'Y' ? '#c9d6b9' : '');" text="bind:disp3"/>
- <Cell col="4" displaytype="image" style="background:EXPR(callyn == 'Y' ? '#c9d6b9' : '#F7FFF7');background2:EXPR(callyn == 'Y' ? '#c9d6b9' : '');color:EXPR(ds_main_opPatlist_opPatInfo.getColumn(currow, 'opstatcd').substr(1,1) == '9' ? '#2D2DD2' : (opflagcd == '1' || opflagcd) == '3' ? '#2D2D2D' : opflagcd == '2' ? '#D22D2D' : opflagcd == '4' ? '#2D2DD2' : '');color2:EXPR(ds_main_opPatlist_opPatInfo.getColumn(currow, 'opstatcd').substr(1,1) == '9' ? '#2D2DD2' : (opflagcd == '1' || opflagcd) == '3' ? '#2D2D2D' : opflagcd == '2' ? '#D22D2D' : opflagcd == '4' ? '#2D2DD2' : '');selectcolor:EXPR(ds_main_opPatlist_opPatInfo.getColumn(currow, 'opstatcd').substr(1,1) == '9' ? '#2D2DD2' : (opflagcd == '1' || opflagcd) == '3' ? '#2D2D2D' : opflagcd == '2' ? '#D22D2D' : opflagcd == '4' ? '#2D2DD2' : '');" text="bind:disp3img"/>
- <Cell col="5" displaytype="image" style="background:EXPR(callyn == 'Y' ? '#c9d6b9' : '#F7FFF7');background2:EXPR(callyn == 'Y' ? '#c9d6b9' : '');color:EXPR(ds_main_opPatlist_opPatInfo.getColumn(currow, 'opstatcd').substr(1,1) == '9' ? '#2D2DD2' : (opflagcd == '1' || opflagcd) == '3' ? '#2D2D2D' : opflagcd == '2' ? '#D22D2D' : opflagcd == '4' ? '#2D2DD2' : '');color2:EXPR(ds_main_opPatlist_opPatInfo.getColumn(currow, 'opstatcd').substr(1,1) == '9' ? '#2D2DD2' : (opflagcd == '1' || opflagcd) == '3' ? '#2D2D2D' : opflagcd == '2' ? '#D22D2D' : opflagcd == '4' ? '#2D2DD2' : '');selectcolor:EXPR(ds_main_opPatlist_opPatInfo.getColumn(currow, 'opstatcd').substr(1,1) == '9' ? '#2D2DD2' : (opflagcd == '1' || opflagcd) == '3' ? '#2D2D2D' : opflagcd == '2' ? '#D22D2D' : opflagcd == '4' ? '#2D2DD2' : '');" text="bind:disp1img"/>
- <Cell col="6" displaytype="image" style="background:EXPR(callyn == 'Y' ? '#c9d6b9' : '#F7FFF7');background2:EXPR(callyn == 'Y' ? '#c9d6b9' : '');color:EXPR(ds_main_opPatlist_opPatInfo.getColumn(currow, 'opstatcd').substr(1,1) == '9' ? '#2D2DD2' : (opflagcd == '1' || opflagcd) == '3' ? '#2D2D2D' : opflagcd == '2' ? '#D22D2D' : opflagcd == '4' ? '#2D2DD2' : '');color2:EXPR(ds_main_opPatlist_opPatInfo.getColumn(currow, 'opstatcd').substr(1,1) == '9' ? '#2D2DD2' : (opflagcd == '1' || opflagcd) == '3' ? '#2D2D2D' : opflagcd == '2' ? '#D22D2D' : opflagcd == '4' ? '#2D2DD2' : '');selectcolor:EXPR(ds_main_opPatlist_opPatInfo.getColumn(currow, 'opstatcd').substr(1,1) == '9' ? '#2D2DD2' : (opflagcd == '1' || opflagcd) == '3' ? '#2D2D2D' : opflagcd == '2' ? '#D22D2D' : opflagcd == '4' ? '#2D2DD2' : '');" text="bind:disp2img"/>
- <Cell col="7" displaytype="image" text="bind:disp4img"/>
- <Cell col="8" style="background:EXPR(callyn == 'Y' ? '#c9d6b9' : '#F7FFF7');background2:EXPR(callyn == 'Y' ? '#c9d6b9' : '');color:EXPR(ds_main_opPatlist_opPatInfo.getColumn(currow, 'opstatcd').substr(1,1) == '9' ? '#2D2DD2' : (opflagcd == '1' || opflagcd) == '3' ? '#2D2D2D' : opflagcd == '2' ? '#D22D2D' : opflagcd == '4' ? '#2D2DD2' : '');color2:EXPR(ds_main_opPatlist_opPatInfo.getColumn(currow, 'opstatcd').substr(1,1) == '9' ? '#2D2DD2' : (opflagcd == '1' || opflagcd) == '3' ? '#2D2D2D' : opflagcd == '2' ? '#D22D2D' : opflagcd == '4' ? '#2D2DD2' : '');selectcolor:EXPR(ds_main_opPatlist_opPatInfo.getColumn(currow, 'opstatcd').substr(1,1) == '9' ? '#2D2DD2' : (opflagcd == '1' || opflagcd) == '3' ? '#2D2D2D' : opflagcd == '2' ? '#D22D2D' : opflagcd == '4' ? '#2D2DD2' : '');" text="bind:pca" tooltiptext="bind:pca"/>
- <Cell col="9" displaytype="image" style="background:EXPR(callyn == 'Y' ? '#c9d6b9' : '#F7FFF7');background2:EXPR(callyn == 'Y' ? '#c9d6b9' : '');color:EXPR(ds_main_opPatlist_opPatInfo.getColumn(currow, 'opstatcd').substr(1,1) == '9' ? '#2D2DD2' : (opflagcd == '1' || opflagcd) == '3' ? '#2D2D2D' : opflagcd == '2' ? '#D22D2D' : opflagcd == '4' ? '#2D2DD2' : '');color2:EXPR(ds_main_opPatlist_opPatInfo.getColumn(currow, 'opstatcd').substr(1,1) == '9' ? '#2D2DD2' : (opflagcd == '1' || opflagcd) == '3' ? '#2D2D2D' : opflagcd == '2' ? '#D22D2D' : opflagcd == '4' ? '#2D2DD2' : '');selectcolor:EXPR(ds_main_opPatlist_opPatInfo.getColumn(currow, 'opstatcd').substr(1,1) == '9' ? '#2D2DD2' : (opflagcd == '1' || opflagcd) == '3' ? '#2D2D2D' : opflagcd == '2' ? '#D22D2D' : opflagcd == '4' ? '#2D2DD2' : '');" text="bind:blodprepimg"/>
- <Cell col="10" style="background:EXPR(callyn == 'Y' ? '#c9d6b9' : '#F7FFF7');background2:EXPR(callyn == 'Y' ? '#c9d6b9' : '');color:EXPR(ds_main_opPatlist_opPatInfo.getColumn(currow, 'opstatcd').substr(1,1) == '9' ? '#2D2DD2' : (opflagcd == '1' || opflagcd) == '3' ? '#2D2D2D' : opflagcd == '2' ? '#D22D2D' : opflagcd == '4' ? '#2D2DD2' : '');color2:EXPR(ds_main_opPatlist_opPatInfo.getColumn(currow, 'opstatcd').substr(1,1) == '9' ? '#2D2DD2' : (opflagcd == '1' || opflagcd) == '3' ? '#2D2D2D' : opflagcd == '2' ? '#D22D2D' : opflagcd == '4' ? '#2D2DD2' : '');selectcolor:EXPR(ds_main_opPatlist_opPatInfo.getColumn(currow, 'opstatcd').substr(1,1) == '9' ? '#2D2DD2' : (opflagcd == '1' || opflagcd) == '3' ? '#2D2D2D' : opflagcd == '2' ? '#D22D2D' : opflagcd == '4' ? '#2D2DD2' : '');" text="bind:uncnfm" tooltiptext="bind:uncnfm"/>
- <Cell col="11" style="padding:0 0 0 0;background:EXPR(callyn == 'Y' ? '#c9d6b9' : '#F7FFF7');background2:EXPR(callyn == 'Y' ? '#c9d6b9' : '');color:EXPR(ds_main_opPatlist_opPatInfo.getColumn(currow, 'opstatcd').substr(1,1) == '9' ? '#2D2DD2' : (opflagcd == '1' || opflagcd) == '3' ? '#2D2D2D' : opflagcd == '2' ? '#D22D2D' : opflagcd == '4' ? '#2D2DD2' : '');color2:EXPR(ds_main_opPatlist_opPatInfo.getColumn(currow, 'opstatcd').substr(1,1) == '9' ? '#2D2DD2' : (opflagcd == '1' || opflagcd) == '3' ? '#2D2D2D' : opflagcd == '2' ? '#D22D2D' : opflagcd == '4' ? '#2D2DD2' : '');selectcolor:EXPR(ds_main_opPatlist_opPatInfo.getColumn(currow, 'opstatcd').substr(1,1) == '9' ? '#2D2DD2' : (opflagcd == '1' || opflagcd) == '3' ? '#2D2D2D' : opflagcd == '2' ? '#D22D2D' : opflagcd == '4' ? '#2D2DD2' : '');" text="bind:cnfmcnclresncd" tooltiptext="bind:cnfmcnclresncd"/>
- <Cell col="12" style="background:EXPR(callyn == 'Y' ? '#c9d6b9' : '#F7FFF7');background2:EXPR(callyn == 'Y' ? '#c9d6b9' : '');color:EXPR(ds_main_opPatlist_opPatInfo.getColumn(currow, 'opstatcd').substr(1,1) == '9' ? '#2D2DD2' : (opflagcd == '1' || opflagcd) == '3' ? '#2D2D2D' : opflagcd == '2' ? '#D22D2D' : opflagcd == '4' ? '#2D2DD2' : '');color2:EXPR(ds_main_opPatlist_opPatInfo.getColumn(currow, 'opstatcd').substr(1,1) == '9' ? '#2D2DD2' : (opflagcd == '1' || opflagcd) == '3' ? '#2D2D2D' : opflagcd == '2' ? '#D22D2D' : opflagcd == '4' ? '#2D2DD2' : '');selectcolor:EXPR(ds_main_opPatlist_opPatInfo.getColumn(currow, 'opstatcd').substr(1,1) == '9' ? '#2D2DD2' : (opflagcd == '1' || opflagcd) == '3' ? '#2D2D2D' : opflagcd == '2' ? '#D22D2D' : opflagcd == '4' ? '#2D2DD2' : '');" text="bind:cnstopflag" tooltiptext="bind:cnstopflag"/>
- <Cell col="13" style="padding:0 0 0 0;background:EXPR(callyn == 'Y' ? '#c9d6b9' : '#F7FFF7');background2:EXPR(callyn == 'Y' ? '#c9d6b9' : '');color:EXPR(ds_main_opPatlist_opPatInfo.getColumn(currow, 'opstatcd').substr(1,1) == '9' ? '#2D2DD2' : (opflagcd == '1' || opflagcd) == '3' ? '#2D2D2D' : opflagcd == '2' ? '#D22D2D' : opflagcd == '4' ? '#2D2DD2' : '');color2:EXPR(ds_main_opPatlist_opPatInfo.getColumn(currow, 'opstatcd').substr(1,1) == '9' ? '#2D2DD2' : (opflagcd == '1' || opflagcd) == '3' ? '#2D2D2D' : opflagcd == '2' ? '#D22D2D' : opflagcd == '4' ? '#2D2DD2' : '');selectcolor:EXPR(ds_main_opPatlist_opPatInfo.getColumn(currow, 'opstatcd').substr(1,1) == '9' ? '#2D2DD2' : (opflagcd == '1' || opflagcd) == '3' ? '#2D2D2D' : opflagcd == '2' ? '#D22D2D' : opflagcd == '4' ? '#2D2DD2' : '');" text="bind:inyn" tooltiptext="bind:inyn"/>
- <Cell col="14" style="background:EXPR(callyn == 'Y' ? '#c9d6b9' : '#F7FFF7');background2:EXPR(callyn == 'Y' ? '#c9d6b9' : '');color:EXPR(ds_main_opPatlist_opPatInfo.getColumn(currow, 'opstatcd').substr(1,1) == '9' ? '#2D2DD2' : (opflagcd == '1' || opflagcd) == '3' ? '#2D2D2D' : opflagcd == '2' ? '#D22D2D' : opflagcd == '4' ? '#2D2DD2' : '');color2:EXPR(ds_main_opPatlist_opPatInfo.getColumn(currow, 'opstatcd').substr(1,1) == '9' ? '#2D2DD2' : (opflagcd == '1' || opflagcd) == '3' ? '#2D2D2D' : opflagcd == '2' ? '#D22D2D' : opflagcd == '4' ? '#2D2DD2' : '');selectcolor:EXPR(ds_main_opPatlist_opPatInfo.getColumn(currow, 'opstatcd').substr(1,1) == '9' ? '#2D2DD2' : (opflagcd == '1' || opflagcd) == '3' ? '#2D2D2D' : opflagcd == '2' ? '#D22D2D' : opflagcd == '4' ? '#2D2DD2' : '');" text="bind:opstatcdnm" tooltiptext="bind:inyn"/>
- <Cell col="15" style="background:EXPR(!utlf_isNull(aerbgcd) ? '#FFFF00' : callyn == 'Y' ? '#c9d6b9' : '#F7FFF7');background2:EXPR(!utlf_isNull(aerbgcd) ? '#FFFF00' : callyn == 'Y' ? '#c9d6b9' : '');color:EXPR(ds_main_opPatlist_opPatInfo.getColumn(currow, 'opstatcd').substr(1,1) == '9' ? '#2D2DD2' : (opflagcd == '1' || opflagcd) == '3' ? '#2D2D2D' : opflagcd == '2' ? '#D22D2D' : opflagcd == '4' ? '#2D2DD2' : '');color2:EXPR(ds_main_opPatlist_opPatInfo.getColumn(currow, 'opstatcd').substr(1,1) == '9' ? '#2D2DD2' : (opflagcd == '1' || opflagcd) == '3' ? '#2D2D2D' : opflagcd == '2' ? '#D22D2D' : opflagcd == '4' ? '#2D2DD2' : '');selectcolor:EXPR(ds_main_opPatlist_opPatInfo.getColumn(currow, 'opstatcd').substr(1,1) == '9' ? '#2D2DD2' : (opflagcd == '1' || opflagcd) == '3' ? '#2D2D2D' : opflagcd == '2' ? '#D22D2D' : opflagcd == '4' ? '#2D2DD2' : '');" text="bind:ccrtstatnm" tooltiptext="bind:ccrtstatnm"/>
- <Cell col="16" style="background:EXPR(callyn == 'Y' ? '#c9d6b9' : '#F7FFF7');background2:EXPR(callyn == 'Y' ? '#c9d6b9' : '');color:EXPR(ds_main_opPatlist_opPatInfo.getColumn(currow, 'opstatcd').substr(1,1) == '9' ? '#2D2DD2' : (opflagcd == '1' || opflagcd) == '3' ? '#2D2D2D' : opflagcd == '2' ? '#D22D2D' : opflagcd == '4' ? '#2D2DD2' : '');color2:EXPR(ds_main_opPatlist_opPatInfo.getColumn(currow, 'opstatcd').substr(1,1) == '9' ? '#2D2DD2' : (opflagcd == '1' || opflagcd) == '3' ? '#2D2D2D' : opflagcd == '2' ? '#D22D2D' : opflagcd == '4' ? '#2D2DD2' : '');selectcolor:EXPR(ds_main_opPatlist_opPatInfo.getColumn(currow, 'opstatcd').substr(1,1) == '9' ? '#2D2DD2' : (opflagcd == '1' || opflagcd) == '3' ? '#2D2D2D' : opflagcd == '2' ? '#D22D2D' : opflagcd == '4' ? '#2D2DD2' : '');" text="bind:patposplcecd" wordwrap="word" tooltiptext="bind:patposplcecd"/>
- <Cell col="17" style="background:EXPR(callyn == 'Y' ? '#c9d6b9' : '#F7FFF7');background2:EXPR(callyn == 'Y' ? '#c9d6b9' : '');color:EXPR(ds_main_opPatlist_opPatInfo.getColumn(currow, 'opstatcd').substr(1,1) == '9' ? '#2D2DD2' : (opflagcd == '1' || opflagcd) == '3' ? '#2D2D2D' : opflagcd == '2' ? '#D22D2D' : opflagcd == '4' ? '#2D2DD2' : '');color2:EXPR(ds_main_opPatlist_opPatInfo.getColumn(currow, 'opstatcd').substr(1,1) == '9' ? '#2D2DD2' : (opflagcd == '1' || opflagcd) == '3' ? '#2D2D2D' : opflagcd == '2' ? '#D22D2D' : opflagcd == '4' ? '#2D2DD2' : '');selectcolor:EXPR(ds_main_opPatlist_opPatInfo.getColumn(currow, 'opstatcd').substr(1,1) == '9' ? '#2D2DD2' : (opflagcd == '1' || opflagcd) == '3' ? '#2D2D2D' : opflagcd == '2' ? '#D22D2D' : opflagcd == '4' ? '#2D2DD2' : '');" text="bind:oppatflagnm" tooltiptext="bind:oppatflagnm"/>
- <Cell col="18" style="background:EXPR(callyn == 'Y' ? '#c9d6b9' : '#F7FFF7');background2:EXPR(callyn == 'Y' ? '#c9d6b9' : '');color:EXPR(ds_main_opPatlist_opPatInfo.getColumn(currow, 'opstatcd').substr(1,1) == '9' ? '#2D2DD2' : (opflagcd == '1' || opflagcd) == '3' ? '#2D2D2D' : opflagcd == '2' ? '#D22D2D' : opflagcd == '4' ? '#2D2DD2' : '');color2:EXPR(ds_main_opPatlist_opPatInfo.getColumn(currow, 'opstatcd').substr(1,1) == '9' ? '#2D2DD2' : (opflagcd == '1' || opflagcd) == '3' ? '#2D2D2D' : opflagcd == '2' ? '#D22D2D' : opflagcd == '4' ? '#2D2DD2' : '');selectcolor:EXPR(ds_main_opPatlist_opPatInfo.getColumn(currow, 'opstatcd').substr(1,1) == '9' ? '#2D2DD2' : (opflagcd == '1' || opflagcd) == '3' ? '#2D2D2D' : opflagcd == '2' ? '#D22D2D' : opflagcd == '4' ? '#2D2DD2' : '');" text="bind:opflagcdnm" tooltiptext="bind:opflagcdnm"/>
- <Cell col="19" style="background:EXPR(callyn == 'Y' ? '#c9d6b9' : '#F7FFF7');background2:EXPR(callyn == 'Y' ? '#c9d6b9' : '');color:EXPR(ds_main_opPatlist_opPatInfo.getColumn(currow, 'opstatcd').substr(1,1) == '9' ? '#2D2DD2' : (opflagcd == '1' || opflagcd) == '3' ? '#2D2D2D' : opflagcd == '2' ? '#D22D2D' : opflagcd == '4' ? '#2D2DD2' : '');color2:EXPR(ds_main_opPatlist_opPatInfo.getColumn(currow, 'opstatcd').substr(1,1) == '9' ? '#2D2DD2' : (opflagcd == '1' || opflagcd) == '3' ? '#2D2D2D' : opflagcd == '2' ? '#D22D2D' : opflagcd == '4' ? '#2D2DD2' : '');selectcolor:EXPR(ds_main_opPatlist_opPatInfo.getColumn(currow, 'opstatcd').substr(1,1) == '9' ? '#2D2DD2' : (opflagcd == '1' || opflagcd) == '3' ? '#2D2D2D' : opflagcd == '2' ? '#D22D2D' : opflagcd == '4' ? '#2D2DD2' : '');" text="bind:reopflag" tooltiptext="bind:reopflag"/>
- <Cell col="20" style="align:center top;padding:4 2 2 2;background:EXPR(callyn == 'Y' ? '#c9d6b9' : '#F7FFF7');background2:EXPR(callyn == 'Y' ? '#c9d6b9' : '');color:EXPR(ds_main_opPatlist_opPatInfo.getColumn(currow, 'opstatcd').substr(1,1) == '9' ? '#2D2DD2' : (opflagcd == '1' || opflagcd) == '3' ? '#2D2D2D' : opflagcd == '2' ? '#D22D2D' : opflagcd == '4' ? '#2D2DD2' : '');color2:EXPR(ds_main_opPatlist_opPatInfo.getColumn(currow, 'opstatcd').substr(1,1) == '9' ? '#2D2DD2' : (opflagcd == '1' || opflagcd) == '3' ? '#2D2D2D' : opflagcd == '2' ? '#D22D2D' : opflagcd == '4' ? '#2D2DD2' : '');selectcolor:EXPR(ds_main_opPatlist_opPatInfo.getColumn(currow, 'opstatcd').substr(1,1) == '9' ? '#2D2DD2' : (opflagcd == '1' || opflagcd) == '3' ? '#2D2D2D' : opflagcd == '2' ? '#D22D2D' : opflagcd == '4' ? '#2D2DD2' : '');" text="bind:oproomcdnm" wordwrap="word" tooltiptext="bind:oproomcdnm"/>
- <Cell col="21" style="align:center top;padding:4 2 2 2;background:EXPR(callyn == 'Y' ? '#c9d6b9' : '#F7FFF7');background2:EXPR(callyn == 'Y' ? '#c9d6b9' : '');color:EXPR(ds_main_opPatlist_opPatInfo.getColumn(currow, 'opstatcd').substr(1,1) == '9' ? '#2D2DD2' : (opflagcd == '1' || opflagcd) == '3' ? '#2D2D2D' : opflagcd == '2' ? '#D22D2D' : opflagcd == '4' ? '#2D2DD2' : '');color2:EXPR(ds_main_opPatlist_opPatInfo.getColumn(currow, 'opstatcd').substr(1,1) == '9' ? '#2D2DD2' : (opflagcd == '1' || opflagcd) == '3' ? '#2D2D2D' : opflagcd == '2' ? '#D22D2D' : opflagcd == '4' ? '#2D2DD2' : '');selectcolor:EXPR(ds_main_opPatlist_opPatInfo.getColumn(currow, 'opstatcd').substr(1,1) == '9' ? '#2D2DD2' : (opflagcd == '1' || opflagcd) == '3' ? '#2D2D2D' : opflagcd == '2' ? '#D22D2D' : opflagcd == '4' ? '#2D2DD2' : '');" text="bind:depthngnm" wordwrap="word" tooltiptext="bind:depthngnm"/>
- <Cell col="22" style="background:EXPR(callyn == 'Y' ? '#c9d6b9' : '#F7FFF7');background2:EXPR(callyn == 'Y' ? '#c9d6b9' : '');color:EXPR(ds_main_opPatlist_opPatInfo.getColumn(currow, 'opstatcd').substr(1,1) == '9' ? '#2D2DD2' : (opflagcd == '1' || opflagcd) == '3' ? '#2D2D2D' : opflagcd == '2' ? '#D22D2D' : opflagcd == '4' ? '#2D2DD2' : '');color2:EXPR(ds_main_opPatlist_opPatInfo.getColumn(currow, 'opstatcd').substr(1,1) == '9' ? '#2D2DD2' : (opflagcd == '1' || opflagcd) == '3' ? '#2D2D2D' : opflagcd == '2' ? '#D22D2D' : opflagcd == '4' ? '#2D2DD2' : '');selectcolor:EXPR(ds_main_opPatlist_opPatInfo.getColumn(currow, 'opstatcd').substr(1,1) == '9' ? '#2D2DD2' : (opflagcd == '1' || opflagcd) == '3' ? '#2D2D2D' : opflagcd == '2' ? '#D22D2D' : opflagcd == '4' ? '#2D2DD2' : '');" text="bind:fstrgstdt" mask="expr:utlf_isNull(fstrgstdt) == true ? '' : '####-##-## ##:##'" tooltiptext="bind:fstrgstdt"/>
- <Cell col="23" style="padding:2 2 2 2;background:EXPR(callyn == 'Y' ? '#c9d6b9' : '#F7FFF7');background2:EXPR(callyn == 'Y' ? '#c9d6b9' : '');color:EXPR(ds_main_opPatlist_opPatInfo.getColumn(currow, 'opstatcd').substr(1,1) == '9' ? '#2D2DD2' : (opflagcd == '1' || opflagcd) == '3' ? '#2D2D2D' : opflagcd == '2' ? '#D22D2D' : opflagcd == '4' ? '#2D2DD2' : '');color2:EXPR(ds_main_opPatlist_opPatInfo.getColumn(currow, 'opstatcd').substr(1,1) == '9' ? '#2D2DD2' : (opflagcd == '1' || opflagcd) == '3' ? '#2D2D2D' : opflagcd == '2' ? '#D22D2D' : opflagcd == '4' ? '#2D2DD2' : '');selectcolor:EXPR(ds_main_opPatlist_opPatInfo.getColumn(currow, 'opstatcd').substr(1,1) == '9' ? '#2D2DD2' : (opflagcd == '1' || opflagcd) == '3' ? '#2D2D2D' : opflagcd == '2' ? '#D22D2D' : opflagcd == '4' ? '#2D2DD2' : '');" text="bind:opusetm" mask="expr:utlf_isNull(opusetm) == true ? '' : '##:##'" tooltiptext="bind:opusetm"/>
- <Cell col="24" style="background:EXPR(callyn == 'Y' ? '#c9d6b9' : '#F7FFF7');background2:EXPR(callyn == 'Y' ? '#c9d6b9' : '');color:EXPR(ds_main_opPatlist_opPatInfo.getColumn(currow, 'opstatcd').substr(1,1) == '9' ? '#2D2DD2' : (opflagcd == '1' || opflagcd) == '3' ? '#2D2D2D' : opflagcd == '2' ? '#D22D2D' : opflagcd == '4' ? '#2D2DD2' : '');color2:EXPR(ds_main_opPatlist_opPatInfo.getColumn(currow, 'opstatcd').substr(1,1) == '9' ? '#2D2DD2' : (opflagcd == '1' || opflagcd) == '3' ? '#2D2D2D' : opflagcd == '2' ? '#D22D2D' : opflagcd == '4' ? '#2D2DD2' : '');selectcolor:EXPR(ds_main_opPatlist_opPatInfo.getColumn(currow, 'opstatcd').substr(1,1) == '9' ? '#2D2DD2' : (opflagcd == '1' || opflagcd) == '3' ? '#2D2D2D' : opflagcd == '2' ? '#D22D2D' : opflagcd == '4' ? '#2D2DD2' : '');" text="bind:pid" tooltiptext="bind:pid"/>
- <Cell col="25" style="align:left top;padding:5 0 0 3;background:EXPR(callyn == 'Y' ? '#c9d6b9' : '#F7FFF7');background2:EXPR(callyn == 'Y' ? '#c9d6b9' : '');color:EXPR(ds_main_opPatlist_opPatInfo.getColumn(currow, 'opstatcd').substr(1,1) == '9' ? '#2D2DD2' : (opflagcd == '1' || opflagcd) == '3' ? '#2D2D2D' : opflagcd == '2' ? '#D22D2D' : opflagcd == '4' ? '#2D2DD2' : '');color2:EXPR(ds_main_opPatlist_opPatInfo.getColumn(currow, 'opstatcd').substr(1,1) == '9' ? '#2D2DD2' : (opflagcd == '1' || opflagcd) == '3' ? '#2D2D2D' : opflagcd == '2' ? '#D22D2D' : opflagcd == '4' ? '#2D2DD2' : '');selectcolor:EXPR(ds_main_opPatlist_opPatInfo.getColumn(currow, 'opstatcd').substr(1,1) == '9' ? '#2D2DD2' : (opflagcd == '1' || opflagcd) == '3' ? '#2D2D2D' : opflagcd == '2' ? '#D22D2D' : opflagcd == '4' ? '#2D2DD2' : '');" text="bind:hngnm" wordwrap="word" tooltiptext="bind:hngnm"/>
- <Cell col="26" style="align:center top;padding:4 2 2 2;background:EXPR(callyn == 'Y' ? '#c9d6b9' : '#F7FFF7');background2:EXPR(callyn == 'Y' ? '#c9d6b9' : '');color:EXPR(ds_main_opPatlist_opPatInfo.getColumn(currow, 'opstatcd').substr(1,1) == '9' ? '#2D2DD2' : (opflagcd == '1' || opflagcd) == '3' ? '#2D2D2D' : opflagcd == '2' ? '#D22D2D' : opflagcd == '4' ? '#2D2DD2' : '');color2:EXPR(ds_main_opPatlist_opPatInfo.getColumn(currow, 'opstatcd').substr(1,1) == '9' ? '#2D2DD2' : (opflagcd == '1' || opflagcd) == '3' ? '#2D2D2D' : opflagcd == '2' ? '#D22D2D' : opflagcd == '4' ? '#2D2DD2' : '');selectcolor:EXPR(ds_main_opPatlist_opPatInfo.getColumn(currow, 'opstatcd').substr(1,1) == '9' ? '#2D2DD2' : (opflagcd == '1' || opflagcd) == '3' ? '#2D2D2D' : opflagcd == '2' ? '#D22D2D' : opflagcd == '4' ? '#2D2DD2' : '');" text="bind:sa" wordwrap="word" tooltiptext="bind:sa"/>
- <Cell col="27" style="align:left top;padding:5 0 0 3;background:EXPR(callyn == 'Y' ? '#c9d6b9' : '#F7FFF7');background2:EXPR(callyn == 'Y' ? '#c9d6b9' : '');color:EXPR(ds_main_opPatlist_opPatInfo.getColumn(currow, 'opstatcd').substr(1,1) == '9' ? '#2D2DD2' : (opflagcd == '1' || opflagcd) == '3' ? '#2D2D2D' : opflagcd == '2' ? '#D22D2D' : opflagcd == '4' ? '#2D2DD2' : '');color2:EXPR(ds_main_opPatlist_opPatInfo.getColumn(currow, 'opstatcd').substr(1,1) == '9' ? '#2D2DD2' : (opflagcd == '1' || opflagcd) == '3' ? '#2D2D2D' : opflagcd == '2' ? '#D22D2D' : opflagcd == '4' ? '#2D2DD2' : '');selectcolor:EXPR(ds_main_opPatlist_opPatInfo.getColumn(currow, 'opstatcd').substr(1,1) == '9' ? '#2D2DD2' : (opflagcd == '1' || opflagcd) == '3' ? '#2D2D2D' : opflagcd == '2' ? '#D22D2D' : opflagcd == '4' ? '#2D2DD2' : '');" text="bind:bdwt" wordwrap="word" tooltiptext="bind:bdwt"/>
- <Cell col="28" style="align:left top;padding:5 0 0 3;background:EXPR(callyn == 'Y' ? '#c9d6b9' : '#F7FFF7');background2:EXPR(callyn == 'Y' ? '#c9d6b9' : '');color:EXPR(ds_main_opPatlist_opPatInfo.getColumn(currow, 'opstatcd').substr(1,1) == '9' ? '#2D2DD2' : (opflagcd == '1' || opflagcd) == '3' ? '#2D2D2D' : opflagcd == '2' ? '#D22D2D' : opflagcd == '4' ? '#2D2DD2' : '');color2:EXPR(ds_main_opPatlist_opPatInfo.getColumn(currow, 'opstatcd').substr(1,1) == '9' ? '#2D2DD2' : (opflagcd == '1' || opflagcd) == '3' ? '#2D2D2D' : opflagcd == '2' ? '#D22D2D' : opflagcd == '4' ? '#2D2DD2' : '');selectcolor:EXPR(ds_main_opPatlist_opPatInfo.getColumn(currow, 'opstatcd').substr(1,1) == '9' ? '#2D2DD2' : (opflagcd == '1' || opflagcd) == '3' ? '#2D2D2D' : opflagcd == '2' ? '#D22D2D' : opflagcd == '4' ? '#2D2DD2' : '');" text="bind:bdht" wordwrap="word" tooltiptext="bind:bdht"/>
- <Cell col="29" style="align:left top;padding:4 2 2 2;background:EXPR(callyn == 'Y' ? '#c9d6b9' : '#F7FFF7');background2:EXPR(callyn == 'Y' ? '#c9d6b9' : '');color:EXPR(ds_main_opPatlist_opPatInfo.getColumn(currow, 'opstatcd').substr(1,1) == '9' ? '#2D2DD2' : (opflagcd == '1' || opflagcd) == '3' ? '#2D2D2D' : opflagcd == '2' ? '#D22D2D' : opflagcd == '4' ? '#2D2DD2' : '');color2:EXPR(ds_main_opPatlist_opPatInfo.getColumn(currow, 'opstatcd').substr(1,1) == '9' ? '#2D2DD2' : (opflagcd == '1' || opflagcd) == '3' ? '#2D2D2D' : opflagcd == '2' ? '#D22D2D' : opflagcd == '4' ? '#2D2DD2' : '');selectcolor:EXPR(ds_main_opPatlist_opPatInfo.getColumn(currow, 'opstatcd').substr(1,1) == '9' ? '#2D2DD2' : (opflagcd == '1' || opflagcd) == '3' ? '#2D2D2D' : opflagcd == '2' ? '#D22D2D' : opflagcd == '4' ? '#2D2DD2' : '');" text="bind:diagcdnm" wordwrap="word" tooltiptext="bind:diagcdnm"/>
- <Cell col="30" style="align:left top;padding:4 2 2 2;background:EXPR(callyn == 'Y' ? '#c9d6b9' : '#F7FFF7');background2:EXPR(callyn == 'Y' ? '#c9d6b9' : '');color:EXPR(ds_main_opPatlist_opPatInfo.getColumn(currow, 'opstatcd').substr(1,1) == '9' ? '#2D2DD2' : (opflagcd == '1' || opflagcd) == '3' ? '#2D2D2D' : opflagcd == '2' ? '#D22D2D' : opflagcd == '4' ? '#2D2DD2' : '');color2:EXPR(ds_main_opPatlist_opPatInfo.getColumn(currow, 'opstatcd').substr(1,1) == '9' ? '#2D2DD2' : (opflagcd == '1' || opflagcd) == '3' ? '#2D2D2D' : opflagcd == '2' ? '#D22D2D' : opflagcd == '4' ? '#2D2DD2' : '');selectcolor:EXPR(ds_main_opPatlist_opPatInfo.getColumn(currow, 'opstatcd').substr(1,1) == '9' ? '#2D2DD2' : (opflagcd == '1' || opflagcd) == '3' ? '#2D2D2D' : opflagcd == '2' ? '#D22D2D' : opflagcd == '4' ? '#2D2DD2' : '');" text="bind:diagengnm" wordwrap="word" tooltiptext="bind:diagengnm"/>
- <Cell col="31" style="align:left top;padding:5 0 0 3;background:EXPR(callyn == 'Y' ? '#c9d6b9' : '#F7FFF7');background2:EXPR(callyn == 'Y' ? '#c9d6b9' : '');color:EXPR(ds_main_opPatlist_opPatInfo.getColumn(currow, 'opstatcd').substr(1,1) == '9' ? '#2D2DD2' : (opflagcd == '1' || opflagcd) == '3' ? '#2D2D2D' : opflagcd == '2' ? '#D22D2D' : opflagcd == '4' ? '#2D2DD2' : '');color2:EXPR(ds_main_opPatlist_opPatInfo.getColumn(currow, 'opstatcd').substr(1,1) == '9' ? '#2D2DD2' : (opflagcd == '1' || opflagcd) == '3' ? '#2D2D2D' : opflagcd == '2' ? '#D22D2D' : opflagcd == '4' ? '#2D2DD2' : '');selectcolor:EXPR(ds_main_opPatlist_opPatInfo.getColumn(currow, 'opstatcd').substr(1,1) == '9' ? '#2D2DD2' : (opflagcd == '1' || opflagcd) == '3' ? '#2D2D2D' : opflagcd == '2' ? '#D22D2D' : opflagcd == '4' ? '#2D2DD2' : '');" text="bind:insukind" wordwrap="word" tooltiptext="bind:insukind"/>
- <Cell col="32" style="align:left top;padding:5 0 0 3;background:EXPR(callyn == 'Y' ? '#c9d6b9' : '#F7FFF7');background2:EXPR(callyn == 'Y' ? '#c9d6b9' : '');color:EXPR(ds_main_opPatlist_opPatInfo.getColumn(currow, 'opstatcd').substr(1,1) == '9' ? '#2D2DD2' : (opflagcd == '1' || opflagcd) == '3' ? '#2D2D2D' : opflagcd == '2' ? '#D22D2D' : opflagcd == '4' ? '#2D2DD2' : '');color2:EXPR(ds_main_opPatlist_opPatInfo.getColumn(currow, 'opstatcd').substr(1,1) == '9' ? '#2D2DD2' : (opflagcd == '1' || opflagcd) == '3' ? '#2D2D2D' : opflagcd == '2' ? '#D22D2D' : opflagcd == '4' ? '#2D2DD2' : '');selectcolor:EXPR(ds_main_opPatlist_opPatInfo.getColumn(currow, 'opstatcd').substr(1,1) == '9' ? '#2D2DD2' : (opflagcd == '1' || opflagcd) == '3' ? '#2D2D2D' : opflagcd == '2' ? '#D22D2D' : opflagcd == '4' ? '#2D2DD2' : '');" text="bind:afdiagcdnm" wordwrap="word" tooltiptext="bind:afdiagcdnm"/>
- <Cell col="33" style="align:left top;padding:4 2 2 2;background:EXPR(callyn == 'Y' ? '#c9d6b9' : '#F7FFF7');background2:EXPR(callyn == 'Y' ? '#c9d6b9' : '');color:EXPR(ds_main_opPatlist_opPatInfo.getColumn(currow, 'opstatcd').substr(1,1) == '9' ? '#2D2DD2' : (opflagcd == '1' || opflagcd) == '3' ? '#2D2D2D' : opflagcd == '2' ? '#D22D2D' : opflagcd == '4' ? '#2D2DD2' : '');color2:EXPR(ds_main_opPatlist_opPatInfo.getColumn(currow, 'opstatcd').substr(1,1) == '9' ? '#2D2DD2' : (opflagcd == '1' || opflagcd) == '3' ? '#2D2D2D' : opflagcd == '2' ? '#D22D2D' : opflagcd == '4' ? '#2D2DD2' : '');selectcolor:EXPR(ds_main_opPatlist_opPatInfo.getColumn(currow, 'opstatcd').substr(1,1) == '9' ? '#2D2DD2' : (opflagcd == '1' || opflagcd) == '3' ? '#2D2D2D' : opflagcd == '2' ? '#D22D2D' : opflagcd == '4' ? '#2D2DD2' : '');" text="bind:opcdenm" wordwrap="word" tooltiptext="bind:opcdenm"/>
- <Cell col="34" style="align:left top;padding:4 2 2 2;background:EXPR(callyn == 'Y' ? '#c9d6b9' : '#F7FFF7');background2:EXPR(callyn == 'Y' ? '#c9d6b9' : '');color:EXPR(ds_main_opPatlist_opPatInfo.getColumn(currow, 'opstatcd').substr(1,1) == '9' ? '#2D2DD2' : (opflagcd == '1' || opflagcd) == '3' ? '#2D2D2D' : opflagcd == '2' ? '#D22D2D' : opflagcd == '4' ? '#2D2DD2' : '');color2:EXPR(ds_main_opPatlist_opPatInfo.getColumn(currow, 'opstatcd').substr(1,1) == '9' ? '#2D2DD2' : (opflagcd == '1' || opflagcd) == '3' ? '#2D2D2D' : opflagcd == '2' ? '#D22D2D' : opflagcd == '4' ? '#2D2DD2' : '');selectcolor:EXPR(ds_main_opPatlist_opPatInfo.getColumn(currow, 'opstatcd').substr(1,1) == '9' ? '#2D2DD2' : (opflagcd == '1' || opflagcd) == '3' ? '#2D2D2D' : opflagcd == '2' ? '#D22D2D' : opflagcd == '4' ? '#2D2DD2' : '');" text="bind:opcdknm" wordwrap="word" tooltiptext="bind:opcdknm"/>
- <Cell col="35" style="align:left top;padding:4 2 2 2;background:EXPR(callyn == 'Y' ? '#c9d6b9' : '#F7FFF7');background2:EXPR(callyn == 'Y' ? '#c9d6b9' : '');color:EXPR(ds_main_opPatlist_opPatInfo.getColumn(currow, 'opstatcd').substr(1,1) == '9' ? '#2D2DD2' : (opflagcd == '1' || opflagcd) == '3' ? '#2D2D2D' : opflagcd == '2' ? '#D22D2D' : opflagcd == '4' ? '#2D2DD2' : '');color2:EXPR(ds_main_opPatlist_opPatInfo.getColumn(currow, 'opstatcd').substr(1,1) == '9' ? '#2D2DD2' : (opflagcd == '1' || opflagcd) == '3' ? '#2D2D2D' : opflagcd == '2' ? '#D22D2D' : opflagcd == '4' ? '#2D2DD2' : '');selectcolor:EXPR(ds_main_opPatlist_opPatInfo.getColumn(currow, 'opstatcd').substr(1,1) == '9' ? '#2D2DD2' : (opflagcd == '1' || opflagcd) == '3' ? '#2D2D2D' : opflagcd == '2' ? '#D22D2D' : opflagcd == '4' ? '#2D2DD2' : '');" text="bind:afopnm" wordwrap="word" tooltiptext="bind:afopnm"/>
- <Cell col="36" style="align:center top;padding:4 2 2 2;background:EXPR(callyn == 'Y' ? '#c9d6b9' : '#F7FFF7');background2:EXPR(callyn == 'Y' ? '#c9d6b9' : '');color:EXPR(ds_main_opPatlist_opPatInfo.getColumn(currow, 'opstatcd').substr(1,1) == '9' ? '#2D2DD2' : (opflagcd == '1' || opflagcd) == '3' ? '#2D2D2D' : opflagcd == '2' ? '#D22D2D' : opflagcd == '4' ? '#2D2DD2' : '');color2:EXPR(ds_main_opPatlist_opPatInfo.getColumn(currow, 'opstatcd').substr(1,1) == '9' ? '#2D2DD2' : (opflagcd == '1' || opflagcd) == '3' ? '#2D2D2D' : opflagcd == '2' ? '#D22D2D' : opflagcd == '4' ? '#2D2DD2' : '');selectcolor:EXPR(ds_main_opPatlist_opPatInfo.getColumn(currow, 'opstatcd').substr(1,1) == '9' ? '#2D2DD2' : (opflagcd == '1' || opflagcd) == '3' ? '#2D2D2D' : opflagcd == '2' ? '#D22D2D' : opflagcd == '4' ? '#2D2DD2' : '');" text="bind:oppart" wordwrap="word" tooltiptext="bind:oppart"/>
- <Cell col="37" style="align:center top;padding:4 2 2 2;background:EXPR(callyn == 'Y' ? '#c9d6b9' : '#F7FFF7');background2:EXPR(callyn == 'Y' ? '#c9d6b9' : '');color:EXPR(ds_main_opPatlist_opPatInfo.getColumn(currow, 'opstatcd').substr(1,1) == '9' ? '#2D2DD2' : (opflagcd == '1' || opflagcd) == '3' ? '#2D2D2D' : opflagcd == '2' ? '#D22D2D' : opflagcd == '4' ? '#2D2DD2' : '');color2:EXPR(ds_main_opPatlist_opPatInfo.getColumn(currow, 'opstatcd').substr(1,1) == '9' ? '#2D2DD2' : (opflagcd == '1' || opflagcd) == '3' ? '#2D2D2D' : opflagcd == '2' ? '#D22D2D' : opflagcd == '4' ? '#2D2DD2' : '');selectcolor:EXPR(ds_main_opPatlist_opPatInfo.getColumn(currow, 'opstatcd').substr(1,1) == '9' ? '#2D2DD2' : (opflagcd == '1' || opflagcd) == '3' ? '#2D2D2D' : opflagcd == '2' ? '#D22D2D' : opflagcd == '4' ? '#2D2DD2' : '');" text="bind:opposition" wordwrap="word" tooltiptext="bind:opposition"/>
- <Cell col="38" style="align:left top;padding:5 0 0 3;background:EXPR(callyn == 'Y' ? '#c9d6b9' : '#F7FFF7');background2:EXPR(callyn == 'Y' ? '#c9d6b9' : '');color:EXPR(ds_main_opPatlist_opPatInfo.getColumn(currow, 'opstatcd').substr(1,1) == '9' ? '#2D2DD2' : (opflagcd == '1' || opflagcd) == '3' ? '#2D2D2D' : opflagcd == '2' ? '#D22D2D' : opflagcd == '4' ? '#2D2DD2' : '');color2:EXPR(ds_main_opPatlist_opPatInfo.getColumn(currow, 'opstatcd').substr(1,1) == '9' ? '#2D2DD2' : (opflagcd == '1' || opflagcd) == '3' ? '#2D2D2D' : opflagcd == '2' ? '#D22D2D' : opflagcd == '4' ? '#2D2DD2' : '');selectcolor:EXPR(ds_main_opPatlist_opPatInfo.getColumn(currow, 'opstatcd').substr(1,1) == '9' ? '#2D2DD2' : (opflagcd == '1' || opflagcd) == '3' ? '#2D2D2D' : opflagcd == '2' ? '#D22D2D' : opflagcd == '4' ? '#2D2DD2' : '');" text="bind:perfdridnm1" wordwrap="word" tooltiptext="bind:perfdridnm1"/>
- <Cell col="39" style="align:left top;padding:5 0 0 3;background:EXPR(callyn == 'Y' ? '#c9d6b9' : '#F7FFF7');background2:EXPR(callyn == 'Y' ? '#c9d6b9' : '');color:EXPR(ds_main_opPatlist_opPatInfo.getColumn(currow, 'opstatcd').substr(1,1) == '9' ? '#2D2DD2' : (opflagcd == '1' || opflagcd) == '3' ? '#2D2D2D' : opflagcd == '2' ? '#D22D2D' : opflagcd == '4' ? '#2D2DD2' : '');color2:EXPR(ds_main_opPatlist_opPatInfo.getColumn(currow, 'opstatcd').substr(1,1) == '9' ? '#2D2DD2' : (opflagcd == '1' || opflagcd) == '3' ? '#2D2D2D' : opflagcd == '2' ? '#D22D2D' : opflagcd == '4' ? '#2D2DD2' : '');selectcolor:EXPR(ds_main_opPatlist_opPatInfo.getColumn(currow, 'opstatcd').substr(1,1) == '9' ? '#2D2DD2' : (opflagcd == '1' || opflagcd) == '3' ? '#2D2D2D' : opflagcd == '2' ? '#D22D2D' : opflagcd == '4' ? '#2D2DD2' : '');" text="bind:perfdridnm2" wordwrap="word" tooltiptext="bind:perfdridnm2"/>
- <Cell col="40" style="background:EXPR(callyn == 'Y' ? '#c9d6b9' : '#F7FFF7');background2:EXPR(callyn == 'Y' ? '#c9d6b9' : '');color:EXPR(ds_main_opPatlist_opPatInfo.getColumn(currow, 'opstatcd').substr(1,1) == '9' ? '#2D2DD2' : (opflagcd == '1' || opflagcd) == '3' ? '#2D2D2D' : opflagcd == '2' ? '#D22D2D' : opflagcd == '4' ? '#2D2DD2' : '');color2:EXPR(ds_main_opPatlist_opPatInfo.getColumn(currow, 'opstatcd').substr(1,1) == '9' ? '#2D2DD2' : (opflagcd == '1' || opflagcd) == '3' ? '#2D2D2D' : opflagcd == '2' ? '#D22D2D' : opflagcd == '4' ? '#2D2DD2' : '');selectcolor:EXPR(ds_main_opPatlist_opPatInfo.getColumn(currow, 'opstatcd').substr(1,1) == '9' ? '#2D2DD2' : (opflagcd == '1' || opflagcd) == '3' ? '#2D2D2D' : opflagcd == '2' ? '#D22D2D' : opflagcd == '4' ? '#2D2DD2' : '');" text="bind:anstmthdcdnm" tooltiptext="bind:anstmthdcdnm"/>
- <Cell col="41" style="background:EXPR(callyn == 'Y' ? '#c9d6b9' : '#F7FFF7');background2:EXPR(callyn == 'Y' ? '#c9d6b9' : '');color:EXPR(ds_main_opPatlist_opPatInfo.getColumn(currow, 'opstatcd').substr(1,1) == '9' ? '#2D2DD2' : (opflagcd == '1' || opflagcd) == '3' ? '#2D2D2D' : opflagcd == '2' ? '#D22D2D' : opflagcd == '4' ? '#2D2DD2' : '');color2:EXPR(ds_main_opPatlist_opPatInfo.getColumn(currow, 'opstatcd').substr(1,1) == '9' ? '#2D2DD2' : (opflagcd == '1' || opflagcd) == '3' ? '#2D2D2D' : opflagcd == '2' ? '#D22D2D' : opflagcd == '4' ? '#2D2DD2' : '');selectcolor:EXPR(ds_main_opPatlist_opPatInfo.getColumn(currow, 'opstatcd').substr(1,1) == '9' ? '#2D2DD2' : (opflagcd == '1' || opflagcd) == '3' ? '#2D2D2D' : opflagcd == '2' ? '#D22D2D' : opflagcd == '4' ? '#2D2DD2' : '');" text="bind:anstmthdnm" tooltiptext="bind:anstmthdnm"/>
- <Cell col="42" style="background:EXPR(callyn == 'Y' ? '#c9d6b9' : '#F7FFF7');background2:EXPR(callyn == 'Y' ? '#c9d6b9' : '');color:EXPR(ds_main_opPatlist_opPatInfo.getColumn(currow, 'opstatcd').substr(1,1) == '9' ? '#2D2DD2' : (opflagcd == '1' || opflagcd) == '3' ? '#2D2D2D' : opflagcd == '2' ? '#D22D2D' : opflagcd == '4' ? '#2D2DD2' : '');color2:EXPR(ds_main_opPatlist_opPatInfo.getColumn(currow, 'opstatcd').substr(1,1) == '9' ? '#2D2DD2' : (opflagcd == '1' || opflagcd) == '3' ? '#2D2D2D' : opflagcd == '2' ? '#D22D2D' : opflagcd == '4' ? '#2D2DD2' : '');selectcolor:EXPR(ds_main_opPatlist_opPatInfo.getColumn(currow, 'opstatcd').substr(1,1) == '9' ? '#2D2DD2' : (opflagcd == '1' || opflagcd) == '3' ? '#2D2D2D' : opflagcd == '2' ? '#D22D2D' : opflagcd == '4' ? '#2D2DD2' : '');" text="bind:calmflag" tooltiptext="bind:calmflag"/>
- <Cell col="43" style="background:EXPR(callyn == 'Y' ? '#c9d6b9' : '#F7FFF7');background2:EXPR(callyn == 'Y' ? '#c9d6b9' : '');color:EXPR(ds_main_opPatlist_opPatInfo.getColumn(currow, 'opstatcd').substr(1,1) == '9' ? '#2D2DD2' : (opflagcd == '1' || opflagcd) == '3' ? '#2D2D2D' : opflagcd == '2' ? '#D22D2D' : opflagcd == '4' ? '#2D2DD2' : '');color2:EXPR(ds_main_opPatlist_opPatInfo.getColumn(currow, 'opstatcd').substr(1,1) == '9' ? '#2D2DD2' : (opflagcd == '1' || opflagcd) == '3' ? '#2D2D2D' : opflagcd == '2' ? '#D22D2D' : opflagcd == '4' ? '#2D2DD2' : '');selectcolor:EXPR(ds_main_opPatlist_opPatInfo.getColumn(currow, 'opstatcd').substr(1,1) == '9' ? '#2D2DD2' : (opflagcd == '1' || opflagcd) == '3' ? '#2D2D2D' : opflagcd == '2' ? '#D22D2D' : opflagcd == '4' ? '#2D2DD2' : '');backgroundimage:EXPR(delivefactimg);" text="bind:delivefactyn"/>
- <Cell col="44" style="background:EXPR(callyn == 'Y' ? '#c9d6b9' : '#F7FFF7');background2:EXPR(callyn == 'Y' ? '#c9d6b9' : '');color:EXPR(ds_main_opPatlist_opPatInfo.getColumn(currow, 'opstatcd').substr(1,1) == '9' ? '#2D2DD2' : (opflagcd == '1' || opflagcd) == '3' ? '#2D2D2D' : opflagcd == '2' ? '#D22D2D' : opflagcd == '4' ? '#2D2DD2' : '');color2:EXPR(ds_main_opPatlist_opPatInfo.getColumn(currow, 'opstatcd').substr(1,1) == '9' ? '#2D2DD2' : (opflagcd == '1' || opflagcd) == '3' ? '#2D2D2D' : opflagcd == '2' ? '#D22D2D' : opflagcd == '4' ? '#2D2DD2' : '');selectcolor:EXPR(ds_main_opPatlist_opPatInfo.getColumn(currow, 'opstatcd').substr(1,1) == '9' ? '#2D2DD2' : (opflagcd == '1' || opflagcd) == '3' ? '#2D2D2D' : opflagcd == '2' ? '#D22D2D' : opflagcd == '4' ? '#2D2DD2' : '');" text="bind:hx" tooltiptext="bind:hx"/>
- <Cell col="45" style="align:left top;padding:5 0 0 3;background:EXPR(callyn == 'Y' ? '#c9d6b9' : '#F7FFF7');background2:EXPR(callyn == 'Y' ? '#c9d6b9' : '');color:EXPR(ds_main_opPatlist_opPatInfo.getColumn(currow, 'opstatcd').substr(1,1) == '9' ? '#2D2DD2' : (opflagcd == '1' || opflagcd) == '3' ? '#2D2D2D' : opflagcd == '2' ? '#D22D2D' : opflagcd == '4' ? '#2D2DD2' : '');color2:EXPR(ds_main_opPatlist_opPatInfo.getColumn(currow, 'opstatcd').substr(1,1) == '9' ? '#2D2DD2' : (opflagcd == '1' || opflagcd) == '3' ? '#2D2D2D' : opflagcd == '2' ? '#D22D2D' : opflagcd == '4' ? '#2D2DD2' : '');selectcolor:EXPR(ds_main_opPatlist_opPatInfo.getColumn(currow, 'opstatcd').substr(1,1) == '9' ? '#2D2DD2' : (opflagcd == '1' || opflagcd) == '3' ? '#2D2D2D' : opflagcd == '2' ? '#D22D2D' : opflagcd == '4' ? '#2D2DD2' : '');" text="bind:rgstridnm" wordwrap="word" tooltiptext="bind:rgstridnm"/>
- <Cell col="46" style="background:EXPR(callyn == 'Y' ? '#c9d6b9' : '#F7FFF7');background2:EXPR(callyn == 'Y' ? '#c9d6b9' : '');color:EXPR(ds_main_opPatlist_opPatInfo.getColumn(currow, 'opstatcd').substr(1,1) == '9' ? '#2D2DD2' : (opflagcd == '1' || opflagcd) == '3' ? '#2D2D2D' : opflagcd == '2' ? '#D22D2D' : opflagcd == '4' ? '#2D2DD2' : '');color2:EXPR(ds_main_opPatlist_opPatInfo.getColumn(currow, 'opstatcd').substr(1,1) == '9' ? '#2D2DD2' : (opflagcd == '1' || opflagcd) == '3' ? '#2D2D2D' : opflagcd == '2' ? '#D22D2D' : opflagcd == '4' ? '#2D2DD2' : '');selectcolor:EXPR(ds_main_opPatlist_opPatInfo.getColumn(currow, 'opstatcd').substr(1,1) == '9' ? '#2D2DD2' : (opflagcd == '1' || opflagcd) == '3' ? '#2D2D2D' : opflagcd == '2' ? '#D22D2D' : opflagcd == '4' ? '#2D2DD2' : '');" text="bind:opopenflag" tooltiptext="bind:opopenflag"/>
- <Cell col="47" style="align:left top;padding:5 0 0 3;background:EXPR(callyn == 'Y' ? '#c9d6b9' : '#F7FFF7');background2:EXPR(callyn == 'Y' ? '#c9d6b9' : '');color:EXPR(ds_main_opPatlist_opPatInfo.getColumn(currow, 'opstatcd').substr(1,1) == '9' ? '#2D2DD2' : (opflagcd == '1' || opflagcd) == '3' ? '#2D2D2D' : opflagcd == '2' ? '#D22D2D' : opflagcd == '4' ? '#2D2DD2' : '');color2:EXPR(ds_main_opPatlist_opPatInfo.getColumn(currow, 'opstatcd').substr(1,1) == '9' ? '#2D2DD2' : (opflagcd == '1' || opflagcd) == '3' ? '#2D2D2D' : opflagcd == '2' ? '#D22D2D' : opflagcd == '4' ? '#2D2DD2' : '');selectcolor:EXPR(ds_main_opPatlist_opPatInfo.getColumn(currow, 'opstatcd').substr(1,1) == '9' ? '#2D2DD2' : (opflagcd == '1' || opflagcd) == '3' ? '#2D2D2D' : opflagcd == '2' ? '#D22D2D' : opflagcd == '4' ? '#2D2DD2' : '');" text="bind:cnclresn" wordwrap="word" tooltiptext="bind:cnclresn"/>
- <Cell col="48" displaytype="date" style="background:EXPR(callyn == 'Y' ? '#c9d6b9' : '#F7FFF7');background2:EXPR(callyn == 'Y' ? '#c9d6b9' : '');color:EXPR(ds_main_opPatlist_opPatInfo.getColumn(currow, 'opstatcd').substr(1,1) == '9' ? '#2D2DD2' : (opflagcd == '1' || opflagcd) == '3' ? '#2D2D2D' : opflagcd == '2' ? '#D22D2D' : opflagcd == '4' ? '#2D2DD2' : '');color2:EXPR(ds_main_opPatlist_opPatInfo.getColumn(currow, 'opstatcd').substr(1,1) == '9' ? '#2D2DD2' : (opflagcd == '1' || opflagcd) == '3' ? '#2D2D2D' : opflagcd == '2' ? '#D22D2D' : opflagcd == '4' ? '#2D2DD2' : '');selectcolor:EXPR(ds_main_opPatlist_opPatInfo.getColumn(currow, 'opstatcd').substr(1,1) == '9' ? '#2D2DD2' : (opflagcd == '1' || opflagcd) == '3' ? '#2D2D2D' : opflagcd == '2' ? '#D22D2D' : opflagcd == '4' ? '#2D2DD2' : '');" text="bind:iindd" calendardisplaynulltype="none" tooltiptext="bind:iindd"/>
- <Cell col="49" displaytype="date" style="background:EXPR(callyn == 'Y' ? '#c9d6b9' : '#F7FFF7');background2:EXPR(callyn == 'Y' ? '#c9d6b9' : '');color:EXPR(ds_main_opPatlist_opPatInfo.getColumn(currow, 'opstatcd').substr(1,1) == '9' ? '#2D2DD2' : (opflagcd == '1' || opflagcd) == '3' ? '#2D2D2D' : opflagcd == '2' ? '#D22D2D' : opflagcd == '4' ? '#2D2DD2' : '');color2:EXPR(ds_main_opPatlist_opPatInfo.getColumn(currow, 'opstatcd').substr(1,1) == '9' ? '#2D2DD2' : (opflagcd == '1' || opflagcd) == '3' ? '#2D2D2D' : opflagcd == '2' ? '#D22D2D' : opflagcd == '4' ? '#2D2DD2' : '');selectcolor:EXPR(ds_main_opPatlist_opPatInfo.getColumn(currow, 'opstatcd').substr(1,1) == '9' ? '#2D2DD2' : (opflagcd == '1' || opflagcd) == '3' ? '#2D2D2D' : opflagcd == '2' ? '#D22D2D' : opflagcd == '4' ? '#2D2DD2' : '');" text="bind:dschdd" calendardisplaynulltype="none" tooltiptext="bind:dschdd"/>
- <Cell col="50" style="align:left top;padding:5 0 0 3;background:EXPR(callyn == 'Y' ? '#c9d6b9' : '#F7FFF7');background2:EXPR(callyn == 'Y' ? '#c9d6b9' : '');color:EXPR(ds_main_opPatlist_opPatInfo.getColumn(currow, 'opstatcd').substr(1,1) == '9' ? '#2D2DD2' : (opflagcd == '1' || opflagcd) == '3' ? '#2D2D2D' : opflagcd == '2' ? '#D22D2D' : opflagcd == '4' ? '#2D2DD2' : '');color2:EXPR(ds_main_opPatlist_opPatInfo.getColumn(currow, 'opstatcd').substr(1,1) == '9' ? '#2D2DD2' : (opflagcd == '1' || opflagcd) == '3' ? '#2D2D2D' : opflagcd == '2' ? '#D22D2D' : opflagcd == '4' ? '#2D2DD2' : '');selectcolor:EXPR(ds_main_opPatlist_opPatInfo.getColumn(currow, 'opstatcd').substr(1,1) == '9' ? '#2D2DD2' : (opflagcd == '1' || opflagcd) == '3' ? '#2D2D2D' : opflagcd == '2' ? '#D22D2D' : opflagcd == '4' ? '#2D2DD2' : '');" text="bind:judgnm" wordwrap="word" tooltiptext="bind:judgnm"/>
- <Cell col="51" style="background:EXPR(callyn == 'Y' ? '#c9d6b9' : '#F7FFF7');background2:EXPR(callyn == 'Y' ? '#c9d6b9' : '');color:EXPR(ds_main_opPatlist_opPatInfo.getColumn(currow, 'opstatcd').substr(1,1) == '9' ? '#2D2DD2' : (opflagcd == '1' || opflagcd) == '3' ? '#2D2D2D' : opflagcd == '2' ? '#D22D2D' : opflagcd == '4' ? '#2D2DD2' : '');color2:EXPR(ds_main_opPatlist_opPatInfo.getColumn(currow, 'opstatcd').substr(1,1) == '9' ? '#2D2DD2' : (opflagcd == '1' || opflagcd) == '3' ? '#2D2D2D' : opflagcd == '2' ? '#D22D2D' : opflagcd == '4' ? '#2D2DD2' : '');selectcolor:EXPR(ds_main_opPatlist_opPatInfo.getColumn(currow, 'opstatcd').substr(1,1) == '9' ? '#2D2DD2' : (opflagcd == '1' || opflagcd) == '3' ? '#2D2D2D' : opflagcd == '2' ? '#D22D2D' : opflagcd == '4' ? '#2D2DD2' : '');" text="bind:callcnt" tooltiptext="bind:callcnt"/>
- <Cell col="52" style="background:EXPR(callyn == 'Y' ? '#c9d6b9' : '#F7FFF7');background2:EXPR(callyn == 'Y' ? '#c9d6b9' : '');color:EXPR(ds_main_opPatlist_opPatInfo.getColumn(currow, 'opstatcd').substr(1,1) == '9' ? '#2D2DD2' : (opflagcd == '1' || opflagcd) == '3' ? '#2D2D2D' : opflagcd == '2' ? '#D22D2D' : opflagcd == '4' ? '#2D2DD2' : '');color2:EXPR(ds_main_opPatlist_opPatInfo.getColumn(currow, 'opstatcd').substr(1,1) == '9' ? '#2D2DD2' : (opflagcd == '1' || opflagcd) == '3' ? '#2D2D2D' : opflagcd == '2' ? '#D22D2D' : opflagcd == '4' ? '#2D2DD2' : '');selectcolor:EXPR(ds_main_opPatlist_opPatInfo.getColumn(currow, 'opstatcd').substr(1,1) == '9' ? '#2D2DD2' : (opflagcd == '1' || opflagcd) == '3' ? '#2D2D2D' : opflagcd == '2' ? '#D22D2D' : opflagcd == '4' ? '#2D2DD2' : '');" text="bind:goodstat" tooltiptext="bind:goodstat"/>
- <Cell col="53" style="background:EXPR(callyn == 'Y' ? '#c9d6b9' : '#F7FFF7');background2:EXPR(callyn == 'Y' ? '#c9d6b9' : '');color:EXPR(ds_main_opPatlist_opPatInfo.getColumn(currow, 'opstatcd').substr(1,1) == '9' ? '#2D2DD2' : (opflagcd == '1' || opflagcd) == '3' ? '#2D2D2D' : opflagcd == '2' ? '#D22D2D' : opflagcd == '4' ? '#2D2DD2' : '');color2:EXPR(ds_main_opPatlist_opPatInfo.getColumn(currow, 'opstatcd').substr(1,1) == '9' ? '#2D2DD2' : (opflagcd == '1' || opflagcd) == '3' ? '#2D2D2D' : opflagcd == '2' ? '#D22D2D' : opflagcd == '4' ? '#2D2DD2' : '');selectcolor:EXPR(ds_main_opPatlist_opPatInfo.getColumn(currow, 'opstatcd').substr(1,1) == '9' ? '#2D2DD2' : (opflagcd == '1' || opflagcd) == '3' ? '#2D2D2D' : opflagcd == '2' ? '#D22D2D' : opflagcd == '4' ? '#2D2DD2' : '');" text="bind:instrstat" tooltiptext="bind:instrstat"/>
- <Cell col="54" style="background:EXPR(callyn == 'Y' ? '#c9d6b9' : '#F7FFF7');background2:EXPR(callyn == 'Y' ? '#c9d6b9' : '');color:EXPR(ds_main_opPatlist_opPatInfo.getColumn(currow, 'opstatcd').substr(1,1) == '9' ? '#2D2DD2' : (opflagcd == '1' || opflagcd) == '3' ? '#2D2D2D' : opflagcd == '2' ? '#D22D2D' : opflagcd == '4' ? '#2D2DD2' : '');color2:EXPR(ds_main_opPatlist_opPatInfo.getColumn(currow, 'opstatcd').substr(1,1) == '9' ? '#2D2DD2' : (opflagcd == '1' || opflagcd) == '3' ? '#2D2D2D' : opflagcd == '2' ? '#D22D2D' : opflagcd == '4' ? '#2D2DD2' : '');selectcolor:EXPR(ds_main_opPatlist_opPatInfo.getColumn(currow, 'opstatcd').substr(1,1) == '9' ? '#2D2DD2' : (opflagcd == '1' || opflagcd) == '3' ? '#2D2D2D' : opflagcd == '2' ? '#D22D2D' : opflagcd == '4' ? '#2D2DD2' : '');" text="bind:cststat" tooltiptext="bind:cststat"/>
- <Cell col="55" text="bind:oordtype"/>
- <Cell col="56" text="bind:orddeptcd"/>
- <Cell col="57" text="bind:ccrtstat"/>
- <Cell col="58" text="bind:opstatcd"/>
- <Cell col="59" text="bind:opflagcd"/>
- <Cell col="60" text="bind:oproomcd"/>
- <Cell col="61" text="bind:perfdeptcd"/>
- <Cell col="62" text="bind:oppatflagcd"/>
- <Cell col="63" text="bind:diagcd"/>
- <Cell col="64" text="bind:opcd"/>
- <Cell col="65" text="bind:perfdrid1"/>
- <Cell col="66" text="bind:perfdrid2"/>
- <Cell col="67" text="bind:anstmthdcd"/>
- <Cell col="68" text="bind:delivefact"/>
- <Cell col="69" text="bind:rgstrid"/>
- <Cell col="70" text="bind:oprsrvno"/>
- <Cell col="71" text="bind:ophistno"/>
- <Cell col="72" text="bind:ophistcd"/>
- <Cell col="73" text="bind:instcd"/>
- <Cell col="74" text="bind:icretno"/>
- <Cell col="75" text="bind:iseqno"/>
- <Cell col="76" text="bind:oorddd"/>
- <Cell col="77" text="bind:ocretno"/>
- <Cell col="78" text="bind:oacptseqno"/>
- <Cell col="79" text="bind:oorgorddd"/>
- <Cell col="80" text="bind:opcnfmdd"/>
- <Cell col="81" text="bind:callyn"/>
- <Cell col="82" text="bind:roomcd"/>
- <Cell col="83" text="bind:calltel"/>
- <Cell col="84" text="bind:opfromdd"/>
- <Cell col="85" text="bind:optodd"/>
- <Cell col="86" text="bind:startposcd"/>
- <Cell col="87" text="bind:judgperchgrcallno"/>
- <Cell col="88" text="bind:nursreoprgstid"/>
- <Cell col="89" text="bind:nursreoprgstdt"/>
- <Cell col="90" text="bind:nursreopcncldt"/>
- <Cell col="91" text="bind:patinroomdt"/>
- <Cell col="92" text="bind:patoutroomdt"/>
- <Cell col="93" text="bind:perfdrid3"/>
- <Cell col="94" text="bind:perfdridnm3"/>
- <Cell col="95" text="bind:wardcd"/>
- <Cell col="96" text="bind:medispclid"/>
- </Band>
- </Format>
- </Formats>
- </Grid>
- </Layout>
- </Layouts>
- </Tabpage>
- <Tabpage text="Order Manage" position="absolute 0 0 1195 636" id="ordermanage">
- <Layouts>
- <Layout>
- <Div position="absolute 0 0 1195 628" id="import1" url="emr_wardorderxp::SMMNW00300_OrderManage.xfdl" anchor="all"/>
- </Layout>
- </Layouts>
- </Tabpage>
- </Tabpages>
- </Tab>
- <Div position="absolute 0 10 1195 66" align="align:center top;" id="group2" class="div_SA" anchor="left top right">
- <Layouts>
- <Layout>
- <Shape position="absolute 1116 8 1122 48" linetype="vertical" id="line3" class="line_4" anchor="top right"/>
- <Static text="수술일자 :" position="absolute 5 7 85 27" id="caption20" class="search_name" anchor="default"/>
- <Static text="~" position="absolute 177 6 192 25" id="caption21" anchor="default"/>
- <Static text="수 술 방 :" position="absolute 302 7 376 27" id="caption22" class="search_name" anchor="default"/>
- <Static text="집도과/집도의 :" position="absolute 627 6 748 26" id="caption23" class="search_name" anchor="default"/>
- <Static text="진행상태 :" position="absolute 941 7 1029 27" id="caption1" class="search_name" anchor="default"/>
- <Static text="수술구분 :" position="absolute 5 32 82 52" id="caption19" class="search_name" anchor="default"/>
- <Static text="환자구분 :" position="absolute 302 32 379 52" id="caption25" class="search_name" anchor="default"/>
- <Static text="마취구분 :" position="absolute 627 31 714 51" id="caption26" class="search_name" anchor="default"/>
- <Static text="Cart상태 :" position="absolute 941 32 1029 52" id="caption5" class="search_name" anchor="default"/>
- <Calendar position="absolute 85 6 173 26" id="inp_opddfr" class="input_search" mask="yyyy-mm-dd" anchor="default" autoselect="true"/>
- <Calendar position="absolute 193 6 281 26" id="inp_opddto" class="input_search" mask="yyyy-mm-dd" anchor="default" autoselect="true"/>
- <Combo position="absolute 464 6 546 26" id="cmb_oproomlist" innerdataset="@ds_init_oproomlist" datacolumn="oproomnm" codecolumn="oproomcd" anchor="default" onitemchanged="group3_group2_cmb_oproomlist_onitemchanged"/>
- <Combo position="absolute 738 6 853 26" id="cmb_orddept" innerdataset="@ds_init_ComboLists_deptlist" datacolumn="depthngnm" codecolumn="deptcd" anchor="default" onitemchanged="group3_group2_cmb_orddept_onitemchanged"/>
- <Combo position="absolute 854 6 924 26" id="cmb_drlist" innerdataset="@ds_init_drlist" datacolumn="drnm" codecolumn="drid" anchor="default" onitemchanged="group3_group2_cmb_drlist_onitemchanged"/>
- <Combo position="absolute 1020 6 1100 26" id="cmb_opstatlist" codecolumn="codecolumn" datacolumn="datacolumn" anchor="default">
- <Dataset id="innerdataset">
- <ColumnInfo>
- <Column id="codecolumn"/>
- <Column id="datacolumn"/>
- </ColumnInfo>
- <Rows>
- <Row>
- <Col id="codecolumn">
- </Col>
- <Col id="datacolumn">전 체</Col>
- </Row>
- <Row>
- <Col id="codecolumn">1</Col>
- <Col id="datacolumn">예정</Col>
- </Row>
- <Row>
- <Col id="codecolumn">2</Col>
- <Col id="datacolumn">대기</Col>
- </Row>
- <Row>
- <Col id="codecolumn">3</Col>
- <Col id="datacolumn">수술</Col>
- </Row>
- <Row>
- <Col id="codecolumn">4</Col>
- <Col id="datacolumn">회복</Col>
- </Row>
- <Row>
- <Col id="codecolumn">5</Col>
- <Col id="datacolumn">종료</Col>
- </Row>
- <Row>
- <Col id="codecolumn">9</Col>
- <Col id="datacolumn">취소</Col>
- </Row>
- <Row>
- <Col id="codecolumn">6</Col>
- <Col id="datacolumn">취소제외</Col>
- </Row>
- <Row>
- <Col id="codecolumn">10</Col>
- <Col id="datacolumn">예정+대기+수술</Col>
- </Row>
- </Rows>
- </Dataset>
- </Combo>
- <CheckBox position="absolute 85 32 130 52" id="chk_opflag1" anchor="default" text="정규" truevalue="1" onchanged="group3_group2_chk_opflag1_onchanged"/>
- <CheckBox position="absolute 133 32 178 52" id="chk_opflag2" anchor="default" text="응급" truevalue="2" onchanged="group3_group2_chk_opflag2_onchanged"/>
- <CheckBox position="absolute 181 32 226 52" id="chk_opflag3" anchor="default" text="추가" truevalue="3" onchanged="group3_group2_chk_opflag3_onchanged"/>
- <CheckBox position="absolute 229 32 274 52" id="chk_opflag4" visible="false" anchor="default" text="취소" truevalue="4" onchanged="group3_group2_chk_opflag4_onchanged"/>
- <CheckBox position="absolute 707 31 752 51" id="checkbox31" anchor="default" text="전신" truevalue="01"/>
- <CheckBox position="absolute 754 31 799 51" id="checkbox32" anchor="default" text="국소" truevalue="03"/>
- <CheckBox position="absolute 801 31 846 51" id="checkbox33" anchor="default" text="부위" truevalue="02"/>
- <CheckBox position="absolute 851 31 896 51" id="checkbox2" anchor="default" text="진정" truevalue="Y"/>
- <Combo position="absolute 1020 31 1100 51" id="cmb_ccrtstatlist" innerdataset="@ds_init_ComboLists_ccrtstatlist" datacolumn="ccrtstatnm" codecolumn="ccrtstatcd" anchor="default"/>
- <Button position="absolute 1132 19 1188 39" id="button4" class="btn1" text="조회" anchor="top right" onclick="group3_group2_button4_onclick"/>
- <Combo position="absolute 380 6 462 26" id="cmb_rosette" class="combo_default" innerdataset="@ds_init_rosettelist" datacolumn="rosettenm" codecolumn="rosettecd" anchor="default" onitemchanged="group3_group2_cmb_rosette_onitemchanged"/>
- <Div position="absolute 382 33 612 51" id="grp_setting1" visible="false" anchor="default">
- <Layouts>
- <Layout>
- <CheckBox position="absolute 179 0 229 16" id="checkbox1" anchor="default" text="DCC" truevalue="I"/>
- <CheckBox position="absolute 0 0 45 16" id="checkbox16" anchor="default" text="병실" truevalue="I"/>
- <CheckBox position="absolute 47 0 92 16" id="checkbox17" anchor="default" text="DSC" truevalue="D"/>
- <CheckBox position="absolute 132 0 177 16" id="checkbox18" anchor="default" text="외래" truevalue="O"/>
- <CheckBox position="absolute 94 0 130 16" id="checkbox19" anchor="default" text="ER" truevalue="E"/>
- </Layout>
- </Layouts>
- </Div>
- <Div position="absolute 382 13 612 31" id="grp_setting2" visible="false" anchor="default">
- <Layouts>
- <Layout>
- <CheckBox position="absolute 0 0 45 16" id="checkbox3" anchor="default" text="병실" truevalue="I"/>
- <CheckBox position="absolute 47 0 92 16" id="checkbox4" anchor="default" text="DSC" truevalue="D"/>
- <CheckBox position="absolute 132 0 177 16" id="checkbox5" anchor="default" text="외래" truevalue="O"/>
- <CheckBox position="absolute 94 0 130 16" id="checkbox6" anchor="default" text="ER" truevalue="E"/>
- </Layout>
- </Layouts>
- </Div>
- <Div position="absolute 382 13 612 31" id="grp_setting3" visible="false" anchor="default">
- <Layouts>
- <Layout>
- <CheckBox position="absolute 0 0 45 16" id="checkbox8" anchor="default" text="병실" truevalue="I"/>
- <CheckBox position="absolute 85 0 130 16" id="checkbox10" anchor="default" text="외래" truevalue="O"/>
- <CheckBox position="absolute 47 0 83 16" id="checkbox11" anchor="default" text="ER" truevalue="E"/>
- </Layout>
- </Layouts>
- </Div>
- <Div position="absolute 382 13 612 31" id="grp_setting4" visible="false" anchor="default">
- <Layouts>
- <Layout>
- <CheckBox position="absolute 132 0 182 16" id="checkbox12" anchor="default" text="DCC" truevalue="I"/>
- <CheckBox position="absolute 0 0 45 16" id="checkbox13" anchor="default" text="병실" truevalue="I"/>
- <CheckBox position="absolute 85 0 130 16" id="checkbox15" anchor="default" text="외래" truevalue="O"/>
- <CheckBox position="absolute 47 0 83 16" id="checkbox20" anchor="default" text="ER" truevalue="E"/>
- </Layout>
- </Layouts>
- </Div>
- <Shape position="absolute 845 34 851 49" linetype="vertical" id="line4" anchor="default" style="strokepen:1 solid black;"/>
- </Layout>
- </Layouts>
- </Div>
- <Div position="absolute 250 78 1194 109" id="group1" anchor="top right">
- <Layouts>
- <Layout>
- <Button position="absolute 2 7 117 27" id="btn_prcpcnt" class="btn2" text="미확인처방 환자수" anchor="default"/>
- <Button position="absolute 151 7 215 27" id="button1" class="btn2" text="감염관리" anchor="default"/>
- <Edit readonly="true" position="absolute 119 7 149 26" id="opt_prcpcnt" anchor="default" style="background:stretch 5,5;font:Dotum,9,bold;"/>
- <Edit readonly="true" position="absolute 217 7 247 26" id="opt_dispcnt" anchor="default" style="background:stretch 5,5;font:Dotum,9,bold;"/>
- <Static text="수술명 :" position="absolute 534 10 584 25" id="caption7" anchor="default" style="font:Dotum,9,bold;"/>
- <CheckBox position="absolute 588 7 633 27" id="chk_opnmen" anchor="default" text="영문" truevalue="Y" falsevalue="N" onclick="group3_group1_chk_opnmen_onclick"/>
- <CheckBox position="absolute 638 7 683 27" id="chk_opnmkr" anchor="default" text="한글" truevalue="Y" falsevalue="N" onclick="group3_group1_chk_opnmkr_onclick"/>
- <CheckBox position="absolute 687 9 782 26" id="chk_afopnm" anchor="default" text="수술후수술명" truevalue="Y" falsevalue="N" onclick="group3_group1_chk_afopnm_onclick"/>
- <Static text="혈액준비 :" position="absolute 249 10 313 25" id="caption27" anchor="default" style="font:Dotum,9,bold;"/>
- <TextArea position="absolute 314 0 527 28" align="align:center middle;" id="tar_blodprep" enable="true" anchor="default" style="padding:2 2 2 2;background:stretch 5,5;" wordwrap="char"/>
- <Static text="진단명 :" position="absolute 789 10 839 25" id="caption28" anchor="default" style="font:Dotum,9,bold;"/>
- <CheckBox position="absolute 844 7 889 27" id="chk_diagnmen" anchor="default" text="영문" truevalue="Y" falsevalue="N" onclick="group3_group1_chk_diagnmen_onclick"/>
- <CheckBox position="absolute 894 7 939 27" id="chk_diagnmkr" anchor="default" text="한글" truevalue="Y" falsevalue="N" onclick="group3_group1_chk_diagnmkr_onclick"/>
- <Shape position="absolute 781 11 787 23" linetype="vertical" id="line2" anchor="default"/>
- </Layout>
- </Layouts>
- </Div>
- <Div position="absolute 485 395 686 452" id="group5" visible="false" style="background:#87cefaff;shadow:outer 3,3 3 gray;" anchor="default">
- <Layouts>
- <Layout>
- <Static text="출력할 장수를 입력하십시오." position="absolute 8 8 196 24" id="caption8" class="tit_2" anchor="default"/>
- <Edit position="absolute 27 28 87 48" align="align:right middle;" id="ipt_patcntctel" class="input_default" anchor="default" onkeyup="group3_group5_ipt_patcntctel_onkeyup"/>
- <Button position="absolute 90 28 132 48" id="btn_prtlabel" class="btn5" text="확인" anchor="default" onclick="group3_group5_btn_prtlabel_onclick"/>
- <Button position="absolute 135 28 177 48" id="button5" class="btn5" text="취소" anchor="default" onclick="group3_group5_button5_onclick"/>
- </Layout>
- </Layouts>
- </Div>
- </Layout>
- </Layouts>
- </Div>
- <Static text="마취간호 메인" position="absolute 0 0 120 25" id="caption6" class="tit_1"/>
- <Div position="absolute 0 760 1195 804" id="grp_btn" anchor="left right bottom">
- <Layouts>
- <Layout>
- <Div position="absolute 2 1 1162 21" id="grp_ordmn" anchor="default">
- <Layouts>
- <Layout>
- <Static text="*일반/반환/퇴원" position="absolute 105 3 205 18" id="cap_prcp" anchor="default" style="color:#0000ffff;"/>
- <Static text="*환자이름 파란색 표기 : 제증명/사본발급 확인" position="absolute 235 4 535 19" id="cap_certcpap" anchor="default" style="color:#0000ffff;"/>
- <Static position="absolute 5 3 20 16" id="cap_color" class="color_6" anchor="default" style="background:#ffccccff;"/>
- <Static text="미확인" position="absolute 25 3 105 18" id="cap_uncnfm" anchor="default"/>
- </Layout>
- </Layouts>
- </Div>
- <Div position="absolute 0 0 1195 44" id="grp_opmdisc" anchor="left right bottom">
- <Layouts>
- <Layout>
- <Div position="absolute 660 24 1010 44" id="grp_opm" anchor="top right">
- <Layouts>
- <Layout>
- <Static position="absolute 1 3 16 18" id="caption12" class="color_6" style="background:#2d2d2dff;" anchor="top right"/>
- <Static text="정규, 추가" position="absolute 21 4 79 19" id="caption13" anchor="top right"/>
- <Static position="absolute 105 3 120 18" id="caption14" class="color_6" style="background:#d22d2dff;" anchor="top right"/>
- <Static text="응급" position="absolute 125 4 160 19" id="caption15" anchor="top right"/>
- <Static position="absolute 176 3 191 18" id="caption18" class="color_6" style="background:#2d2dd2ff;" anchor="top right"/>
- <Static text="취소" position="absolute 196 4 231 19" id="caption2" anchor="top right"/>
- <Static position="absolute 245 3 260 18" id="caption3" class="color_6" style="background:#c9d6b9ff;" anchor="top right"/>
- <Static text="보호자호출" position="absolute 265 4 330 19" id="caption4" anchor="top right"/>
- </Layout>
- </Layouts>
- </Div>
- <Static text="변경상태" position="absolute 0 2 72 22" align="align:center middle;" id="cap_statetitle" style="background:#ddddddff;align:center middle;font:Dotum,9,bold;" anchor="default"/>
- <Static text="재원상태" position="absolute 0 24 72 44" align="align:center middle;" id="cap_state2title" style="background:#ddddddff;align:center middle;font:Dotum,9,bold;" anchor="default"/>
- <Static text="ⓡ 수술방, ⓣ 수술시간, ⓓ 집도과, ⓞ 집도의, ⓝ 수술명, ⓢ 수술부위, ⓐ 마취방법" position="absolute 80 2 562 22" id="cap_state" anchor="default"/>
- <Static text="ⓐ 입원, ⓓ 퇴원예고, ⓒ 간호사 퇴원정리완료, ⓝ 미심사, ⓡ 보류, ⓕ 완료" position="absolute 80 24 522 44" id="cap_state2" anchor="default"/>
- <Button position="absolute 1063 0 1105 20" id="bnt_output" class="btn2" text="출력" anchor="top right" onclick="grp_btn_grp_opmdisc_bnt_output_onclick"/>
- <Button position="absolute 1106 0 1159 20" id="bnt_excel" class="btn2" text="Excel" anchor="top right" onclick="grp_btn_grp_opmdisc_bnt_excel_onclick"/>
- <Button position="absolute 1103 24 1195 44" id="button2" class="btn3" text="프린터설정" anchor="top right" onclick="grp_btn_grp_opmdisc_button2_onclick"/>
- <Button position="absolute 999 24 1101 44" id="button3" class="btn3" text="라벨전체출력" anchor="top right" onclick="grp_btn_grp_opmdisc_button3_onclick"/>
- <Div position="absolute 660 1 1010 24" id="group4" anchor="top right">
- <Layouts>
- <Layout>
- <Static position="absolute 168 0 190 22" id="caption9" style="background:transparent URL('theme://images/btn_top_infection2.gif');" anchor="top right"/>
- <Static position="absolute 0 0 22 22" id="caption10" style="background:transparent URL('theme://images/btn_top_infection0.gif');" anchor="top right"/>
- <Static position="absolute 84 0 106 22" id="caption11" style="background:transparent URL('theme://images/btn_top_infection1.gif');" anchor="top right"/>
- <Static text="접촉주의" position="absolute 108 2 163 19" id="caption16" anchor="top right"/>
- <Static text="혈액주의" position="absolute 25 2 80 19" id="caption17" anchor="top right"/>
- <Static text="공기주의" position="absolute 192 2 247 19" id="caption24" anchor="top right"/>
- <Static id="caption00" position="absolute 252 0 274 22" anchor="top right" style="background:transparent URL('theme://images/btn_top_infection3.gif');"/>
- <Static id="caption01" text="비말주의" position="absolute 278 2 333 19" anchor="top right"/>
- </Layout>
- </Layouts>
- </Div>
- <Button position="absolute 998 0 1062 20" id="button" class="btn2" text="컬럼설정" anchor="top right" onclick="grp_btn_grp_opmdisc_button_onclick"/>
- <Button position="absolute 565 0 654 20" id="button6" class="btn2" visible="false" text="예방적항생제" anchor="top right" onclick="grp_btn_grp_opmdisc_button6_onclick"/>
- </Layout>
- </Layouts>
- </Div>
- </Layout>
- </Layouts>
- </Div>
- <Static text="[표]" position="absolute 1160 760 1190 780" align="align:right middle;" id="caption29" anchor="right bottom"/>
- <PopupMenu id="pMenu_oppatlistmenu" innerdataset="@ds_main_codedata_popup" idcolumn="popupcd" captioncolumn="popupnm" levelcolumn="lev" position="absolute 5 811 220 1163" onmenuclick="pMenu_oppatlistmenu_onmenuclick"/>
- <Div id="div_Prnt" taborder="1" position="absolute 691 352 1102 764" class="groupbox_blue" visible="false" anchor="right bottom" style="shadow:outer 3,3 3 gray;">
- <Layouts>
- <Layout>
- <Static id="Static00" text="라벨전체출력(환자별)" position="absolute 8 11 160 31" class="tit_3" anchor="default"/>
- <Grid id="Grid00" taborder="1" useinputpanel="false" position="absolute 9 37 401 377" binddataset="ds_prnt_opPatlist" anchor="default" cellsizingtype="col" selecttype="multirow" autoenter="key" autofittype="col">
- <Formats>
- <Format id="default">
- <Columns>
- <Column size="80"/>
- <Column size="55"/>
- <Column size="45"/>
- <Column size="45"/>
- <Column size="45"/>
- <Column size="50"/>
- <Column size="50"/>
- </Columns>
- <Rows>
- <Row size="24" band="head"/>
- <Row size="24"/>
- </Rows>
- <Band id="head">
- <Cell displaytype="normal" text="등록번호"/>
- <Cell col="1" displaytype="normal" text="환자명"/>
- <Cell col="2" displaytype="normal" text="S/A"/>
- <Cell col="3" displaytype="normal" text="수술방"/>
- <Cell col="4" displaytype="normal" text="진료과"/>
- <Cell col="5" displaytype="normal" text="병실"/>
- <Cell col="6" displaytype="normal" text="출력수"/>
- </Band>
- <Band id="body">
- <Cell displaytype="normal" text="bind:pid"/>
- <Cell col="1" displaytype="normal" text="bind:hngnm"/>
- <Cell col="2" displaytype="normal" text="bind:sa"/>
- <Cell col="3" displaytype="normal" text="bind:oproomcdnm"/>
- <Cell col="4" displaytype="normal" text="bind:depthngnm"/>
- <Cell col="5" displaytype="normal" text="bind:roomcd"/>
- <Cell col="6" displaytype="normal" edittype="text" editfilter="number" style="align:center middle;" text="bind:prntcnt" editlimit="1" editautoselect="true" editlengthunit="ascii"/>
- </Band>
- </Format>
- </Formats>
- </Grid>
- <Button id="btn_prnt" taborder="2" text="출력" position="absolute 299 381 349 401" class="btn4" anchor="default" onclick="div_Prnt_btn_prnt_onclick"/>
- <Button id="btn_cncl" taborder="3" text="취소" class="btn4" position="absolute 350 381 400 401" anchor="default" onclick="div_Prnt_btn_cncl_onclick"/>
- <Edit id="edt_allcnt" taborder="4" position="absolute 361 14 401 34" anchor="default" inputtype="number" lengthunit="ascii" maxlength="1" onkeyup="div_Prnt_edt_allcnt_onkeyup"/>
- <Static id="stx_setPrntCnt" text="출력장수 :" position="absolute 267 14 355 34" class="hand" anchor="default"/>
- </Layout>
- </Layouts>
- </Div>
- </Layout>
- </Layouts>
- <Objects>
- <Dataset id="ds_send_reqdata" firefirstcount="0" firenextcount="0" useclientlayout="false" updatecontrol="true" enableevent="true" loadkeymode="keep" loadfiltermode="keep" reversesubsum="false">
- <ColumnInfo>
- <Column id="opddfr" type="STRING" size="256"/>
- <Column id="opddto" type="STRING" size="256" sumtext="수술예정일자 "/>
- <Column id="opflag1" type="STRING" size="256" sumtext="정규 "/>
- <Column id="opflag2" type="STRING" size="256" sumtext="응급 "/>
- <Column id="opflag3" type="STRING" size="256" sumtext="추가 "/>
- <Column id="opflag4" type="STRING" size="256" sumtext="취소 "/>
- <Column id="oproomcd" type="STRING" size="256" sumtext="수술방코드 "/>
- <Column id="orddept" type="STRING" size="256" sumtext="진료과 "/>
- <Column id="orddr" type="STRING" size="256" sumtext="집도의 "/>
- <Column id="oppatflag1" type="STRING" size="256" sumtext="입원 I "/>
- <Column id="oppatflag2" type="STRING" size="256" sumtext="DSC D "/>
- <Column id="oppatflag3" type="STRING" size="256" sumtext="외래 O "/>
- <Column id="oppatflag4" type="STRING" size="256" sumtext="ER E "/>
- <Column id="oppatflag5" type="STRING" size="256" sumtext="DCC I "/>
- <Column id="anstmthdcd1" type="STRING" size="256" sumtext="전신 01 "/>
- <Column id="anstmthdcd2" type="STRING" size="256" sumtext="국소 03 "/>
- <Column id="anstmthdcd3" type="STRING" size="256" sumtext="부위 02 "/>
- <Column id="refdeptflag" type="STRING" size="256" sumtext="부서구분 "/>
- <Column id="opstat" type="STRING" size="256" sumtext="수술상태 "/>
- <Column id="ccrtstat" type="STRING" size="256" sumtext="Cart상태 "/>
- <Column id="oprosette" type="STRING" size="256" sumtext="rosette "/>
- <Column id="pid" type="STRING" size="256" sumtext="환자번호 "/>
- <Column id="calmflag" type="STRING" size="256" sumtext="진정유무 "/>
- <Column id="opcnfmdd" type="STRING" size="256"/>
- <Column id="scrnid" type="STRING" size="256"/>
- <Column id="compscd" type="STRING" size="256"/>
- <Column id="orddeptcd" type="STRING" size="256"/>
- </ColumnInfo>
- <Rows>
- <Row/>
- </Rows>
- </Dataset>
- <Dataset id="ds_init_drlist" firefirstcount="0" firenextcount="0" useclientlayout="false" updatecontrol="true" enableevent="true" loadkeymode="keep" reversesubsum="false">
- <ColumnInfo>
- <Column id="drnm" type="STRING"/>
- <Column id="drid" type="STRING"/>
- </ColumnInfo>
- </Dataset>
- <Dataset id="ds_send" firefirstcount="0" firenextcount="0" useclientlayout="false" updatecontrol="true" enableevent="true" loadkeymode="keep" loadfiltermode="keep" reversesubsum="false">
- <ColumnInfo>
- <Column id="opcnfmdd" type="STRING" size="256" sumtext="수술일자"/>
- <Column id="rosette" type="STRING" size="256" sumtext="rosette"/>
- <Column id="searchitem" type="STRING" size="256" sumtext="부서코드또는부서명 "/>
- <Column id="flag" type="STRING" size="256" sumtext="부서코드or명flag "/>
- <Column id="selectflag" type="STRING" size="256" sumtext="조회구분 "/>
- <Column id="deptflag" type="STRING" size="256" sumtext="(수술)부서조회구분 "/>
- <Column id="infection" type="STRING" size="256"/>
- </ColumnInfo>
- <Rows>
- <Row/>
- </Rows>
- </Dataset>
- <Dataset id="ds_init_oproomlist" firefirstcount="0" firenextcount="0" useclientlayout="false" updatecontrol="true" enableevent="true" loadkeymode="keep" reversesubsum="false">
- <ColumnInfo>
- <Column id="oproomnm" type="STRING"/>
- <Column id="oproomcd" type="STRING"/>
- </ColumnInfo>
- </Dataset>
- <Dataset id="ds_init_ComboLists_deptlist" firefirstcount="0" firenextcount="0" useclientlayout="false" updatecontrol="true" enableevent="true" loadkeymode="keep" loadfiltermode="keep" reversesubsum="false">
- <ColumnInfo>
- <Column id="deptcd" type="STRING" size="256" sumtext="부서코드 "/>
- <Column id="depthngnm" type="STRING" size="256" sumtext="부서코드 통합 마스터의 통합부서명 "/>
- <Column id="depthngabbr" type="STRING" size="256" sumtext="부서한글 약어 "/>
- <Column id="deptengnm" type="STRING" size="256" sumtext="부서코드의 영문명칭 "/>
- <Column id="deptengabbr" type="STRING" size="256" sumtext="진료과가 사용하고 있는 영문 약어 "/>
- <Column id="deptplce" type="STRING" size="256" sumtext="부서위치(층정보+부서명으로 Text구성)"/>
- </ColumnInfo>
- </Dataset>
- <Dataset id="ds_init_ComboLists_ccrtstatlist" firefirstcount="0" firenextcount="0" useclientlayout="false" updatecontrol="true" enableevent="true" loadkeymode="keep" loadfiltermode="keep" reversesubsum="false">
- <ColumnInfo>
- <Column id="ccrtstatcd" type="STRING" size="256" sumtext="Cart상태코드"/>
- <Column id="ccrtstatnm" type="STRING" size="256" sumtext="Cart상태명"/>
- </ColumnInfo>
- </Dataset>
- <Dataset id="ds_init_ComboLists_oproomlist" firefirstcount="0" firenextcount="0" useclientlayout="false" updatecontrol="true" enableevent="true" loadkeymode="keep" loadfiltermode="keep" reversesubsum="false">
- <ColumnInfo>
- <Column id="oproomcd" type="STRING" size="256" sumtext="수술방코드"/>
- <Column id="oproomnm" type="STRING" size="256" sumtext="수술방명"/>
- </ColumnInfo>
- </Dataset>
- <Dataset id="ds_init_rosettelist" firefirstcount="0" firenextcount="0" useclientlayout="false" updatecontrol="true" enableevent="true" loadkeymode="keep" reversesubsum="false">
- <ColumnInfo>
- <Column id="rosettenm" type="STRING"/>
- <Column id="rosettecd" type="STRING"/>
- </ColumnInfo>
- </Dataset>
- <Dataset id="ds_main_opPatlist_opPatInfo" firefirstcount="0" firenextcount="0" updatecontrol="true" enableevent="true" loadkeymode="keep" loadfiltermode="keep" reversesubsum="false">
- <ColumnInfo>
- <Column id="ccrtstat" type="STRING" size="256" sumtext="01 카트상태 "/>
- <Column id="ccrtstatnm" type="STRING" size="256" sumtext="02 카트상태명 "/>
- <Column id="opstatcd" type="STRING" size="256" sumtext="03 진행상태 "/>
- <Column id="opstatcdnm" type="STRING" size="256" sumtext="04 진행상태명 "/>
- <Column id="oprecstatnm" type="STRING" size="256" sumtext="04 간호기록 "/>
- <Column id="patposplcecd" type="STRING" size="256" sumtext="05 환자위치 "/>
- <Column id="opflagcd" type="STRING" size="256" sumtext="06 수술구분 "/>
- <Column id="opflagcdnm" type="STRING" size="256" sumtext="07 수술구분명 "/>
- <Column id="oproomcd" type="STRING" size="256" sumtext="08 수술방 "/>
- <Column id="oproomcdnm" type="STRING" size="256" sumtext="09 수술방명 "/>
- <Column id="fstrgstdt" type="STRING" size="256" sumtext="10 예약일시 "/>
- <Column id="opusetm" type="STRING" size="256" sumtext="11 소요시간 "/>
- <Column id="perfdeptcd" type="STRING" size="256" sumtext="12 진료과 "/>
- <Column id="depthngnm" type="STRING" size="256" sumtext="13 진료과명 "/>
- <Column id="oppatflagcd" type="STRING" size="256" sumtext="14 환자구분 "/>
- <Column id="oppatflagnm" type="STRING" size="256" sumtext="15 환자구분명 "/>
- <Column id="pid" type="STRING" size="256" sumtext="16 등록번호 "/>
- <Column id="hngnm" type="STRING" size="256" sumtext="17 환자명 "/>
- <Column id="sa" type="STRING" size="256" sumtext="18 성별나이 "/>
- <Column id="diagcd" type="STRING" size="256" sumtext="19 진단코드 "/>
- <Column id="diagcdnm" type="STRING" size="256" sumtext="20 진단코드명 "/>
- <Column id="diagengnm" type="STRING" size="256" sumtext="20 진단코드 영문명 "/>
- <Column id="opcd" type="STRING" size="256" sumtext="21 수술코드 "/>
- <Column id="opcdknm" type="STRING" size="256" sumtext="22 수술코드한글명 "/>
- <Column id="oppart" type="STRING" size="256" sumtext="23 수술부위 "/>
- <Column id="opposition" type="STRING" size="256" sumtext="24 수술체위 "/>
- <Column id="perfdrid1" type="STRING" size="256" sumtext="25 집도의 "/>
- <Column id="perfdridnm1" type="STRING" size="256" sumtext="26 집도의명 "/>
- <Column id="perfdrid2" type="STRING" size="256" sumtext="27 마취의 "/>
- <Column id="perfdridnm2" type="STRING" size="256" sumtext="28 마취의명 "/>
- <Column id="anstmthdcd" type="STRING" size="256" sumtext="29 마취종류 "/>
- <Column id="anstmthdcdnm" type="STRING" size="256" sumtext="30 마취종류명 "/>
- <Column id="delivefact" type="STRING" size="256" sumtext="31 전달사항 "/>
- <Column id="delivefactyn" type="STRING" size="256" sumtext="32 전달사항 "/>
- <Column id="hx" type="STRING" size="256" sumtext="33 HX "/>
- <Column id="rgstrid" type="STRING" size="256" sumtext="34 예약자 "/>
- <Column id="rgstridnm" type="STRING" size="256" sumtext="35 예약자명 "/>
- <Column id="opopenflag" type="STRING" size="256" sumtext="36 수술공개여부 "/>
- <Column id="oprsrvno" type="STRING" size="256" sumtext="37 수술예약번호 "/>
- <Column id="ophistno" type="STRING" size="256" sumtext="38 수술이력번호 "/>
- <Column id="ophistcd" type="STRING" size="256" sumtext="39 수술이력코드 "/>
- <Column id="instcd" type="STRING" size="256" sumtext="40 기관코드 "/>
- <Column id="iindd" type="STRING" size="256" sumtext="41 입원일자 "/>
- <Column id="icretno" type="STRING" size="256" sumtext="42 생성번호 "/>
- <Column id="iseqno" type="STRING" size="256" sumtext="43 일련번호 "/>
- <Column id="oorddd" type="STRING" size="256" sumtext="44 진료일자 "/>
- <Column id="ocretno" type="STRING" size="256" sumtext="45 생성번호 "/>
- <Column id="oacptseqno" type="STRING" size="256" sumtext="46 등록일련번호 "/>
- <Column id="oorgorddd" type="STRING" size="256" sumtext="47 원진료일자 "/>
- <Column id="oordtype" type="STRING" size="256" sumtext="47 외래진료형태 "/>
- <Column id="opcnfmdd" type="STRING" size="256" sumtext="48 수술시작일자 "/>
- <Column id="cnclresn" type="STRING" size="256" sumtext="49 취소이유 "/>
- <Column id="callyn" type="STRING" size="256" sumtext="50 호출여부 "/>
- <Column id="roomcd" type="STRING" size="256" sumtext="51 병실 "/>
- <Column id="calltel" type="STRING" size="256" sumtext="52 호출전화번호 "/>
- <Column id="cnstopflag" type="STRING" size="256" sumtext="53 협진여부 "/>
- <Column id="inyn" type="STRING" size="256" sumtext="54 재원여부 "/>
- <Column id="cnfmcnclresncd" type="STRING" size="256" sumtext="55 취소 사유 코드 "/>
- <Column id="opcdenm" type="STRING" size="256" sumtext="56 수술코드영문명 "/>
- <Column id="opfromdd" type="STRING" size="256" sumtext="57 조회일자 "/>
- <Column id="optodd" type="STRING" size="256" sumtext="58 조회 일자 "/>
- <Column id="usernm" type="STRING" size="256" sumtext="59 로그인사용자명 "/>
- <Column id="orddeptcd" type="STRING" size="256" sumtext="60 집도과코드 "/>
- <Column id="startposcd" type="STRING" size="256" sumtext="61 이송요원 호출부서코드 "/>
- <Column id="uncnfm" type="STRING" size="256" sumtext="62 처방카운트 "/>
- <Column id="callcnt" type="STRING" size="256" sumtext="63 호출건수 "/>
- <Column id="dschdd" type="STRING" size="256" sumtext="64 퇴원일자 "/>
- <Column id="judgnm" type="STRING" size="256" sumtext="65 심사자 "/>
- <Column id="disp1" type="STRING" size="256" sumtext="66 혈액주의 "/>
- <Column id="disp2" type="STRING" size="256" sumtext="67 접촉주의 "/>
- <Column id="disp3" type="STRING" size="256" sumtext="68 공기주의 "/>
- <Column id="judgperchgrcallno" type="STRING" size="256" sumtext="69 심사자연락번호 "/>
- <Column id="reopflag" type="STRING" size="256" sumtext="70 재수술여부 "/>
- <Column id="nursreoprgstid" type="STRING" size="256" sumtext="71 간호재수술등록ID "/>
- <Column id="nursreoprgstdt" type="STRING" size="256" sumtext="72 간호재수술등록일시 "/>
- <Column id="nursreopcncldt" type="STRING" size="256" sumtext="73 간호재수술취소일시 "/>
- <Column id="goodstat" type="STRING" size="256" sumtext="74 물품상태 "/>
- <Column id="instrstat" type="STRING" size="256" sumtext="75 기구상태 "/>
- <Column id="cststat" type="STRING" size="256" sumtext="76 소모품상태 "/>
- <Column id="patinroomdt" type="STRING" size="256" sumtext="77 수술실입실일시 "/>
- <Column id="patoutroom" type="STRING" size="256" sumtext="78 수술실퇴실장소 "/>
- <Column id="afopnm" type="STRING" size="256" sumtext="79 수술후수술명 "/>
- <Column id="afdiagcdnm" type="STRING" size="256" sumtext="81 수술후 진단명 "/>
- <Column id="perfdrid3" type="STRING" size="256" sumtext="82 마취의2 "/>
- <Column id="perfdridnm3" type="STRING" size="256" sumtext="83 마취의2명 "/>
- <Column id="subopcdknm" type="STRING" size="256" sumtext="84 부수술명 "/>
- <Column id="calmflag" type="STRING" size="256" sumtext="85 진정유무 "/>
- <Column id="inordtype" type="STRING" size="256" sumtext="85 입원타입 "/>
- <Column id="wardcd" type="STRING" size="256" sumtext="86 병동 "/>
- <Column id="medispclid" type="STRING" size="256" sumtext="87 주치의 "/>
- <Column id="mainoprsrvno" type="STRING" size="256" sumtext="88 주수술번호 "/>
- <Column id="insukind" type="STRING" size="256" sumtext="88 보험유형 "/>
- <Column id="blodprepyn" type="STRING" size="256"/>
- <Column id="bdwt" type="STRING" size="256"/>
- </ColumnInfo>
- </Dataset>
- <Dataset id="ds_HideData_otptinfo" firefirstcount="0" firenextcount="0" useclientlayout="false" updatecontrol="true" enableevent="true" loadkeymode="keep" loadfiltermode="keep" reversesubsum="false">
- <ColumnInfo>
- <Column id="pid" type="STRING" size="256" sumtext="등록번호 "/>
- <Column id="orddd" type="STRING" size="256" sumtext="진료일자 "/>
- <Column id="cretno" type="STRING" size="256" sumtext="생성번호 "/>
- <Column id="ordtype" type="STRING" size="256" sumtext="진료형태 "/>
- <Column id="orgorddd" type="STRING" size="256" sumtext="실제진료일자 "/>
- <Column id="instcd" type="STRING" size="256" sumtext="기관코드 "/>
- </ColumnInfo>
- </Dataset>
- <Dataset id="ds_send_savedata" firefirstcount="0" firenextcount="0" useclientlayout="false" updatecontrol="true" enableevent="true" loadkeymode="keep" loadfiltermode="keep" reversesubsum="false">
- <ColumnInfo>
- <Column id="oprsrvno" type="STRING" size="256" sumtext="수술예약번호"/>
- <Column id="message" type="STRING" size="256" sumtext="호출메세지"/>
- <Column id="calltel" type="STRING" size="256" sumtext="호출전화번호"/>
- <Column id="stat" type="STRING" size="256" sumtext="상태값"/>
- <Column id="patnm" type="STRING" size="256" sumtext="환자명"/>
- <Column id="procflag" type="STRING" size="256" sumtext="처리구분"/>
- <Column id="pid" type="STRING" size="256" sumtext="등록번호"/>
- <Column id="opcnfmdd" type="STRING" size="256" sumtext="수술확정일자"/>
- </ColumnInfo>
- <Rows>
- <Row/>
- </Rows>
- </Dataset>
- <Dataset id="ds_send_chngedata" firefirstcount="0" firenextcount="0" useclientlayout="false" updatecontrol="true" enableevent="true" loadkeymode="keep" loadfiltermode="keep" reversesubsum="false">
- <ColumnInfo>
- <Column id="oprsrvno" type="STRING" size="256" sumtext="수술예약번호"/>
- <Column id="ophistno" type="STRING" size="256" sumtext="수술 이력번호"/>
- <Column id="pid" type="STRING" size="256" sumtext="등록번호"/>
- <Column id="ordtype" type="STRING" size="256" sumtext="원무 환자구분"/>
- <Column id="cretno" type="STRING" size="256" sumtext="원무 생성 번호 "/>
- <Column id="seqno" type="STRING" size="256" sumtext="원무 이력 일련번호 "/>
- <Column id="indd" type="STRING" size="256" sumtext="입원일자"/>
- <Column id="oppatflagcd" type="STRING" size="256" sumtext="수술환자 구분코드"/>
- </ColumnInfo>
- <Rows>
- <Row/>
- </Rows>
- </Dataset>
- <Dataset id="ds_temp2_tmp" firefirstcount="0" firenextcount="0" useclientlayout="false" updatecontrol="true" enableevent="true" loadkeymode="keep" loadfiltermode="keep" reversesubsum="false">
- <ColumnInfo>
- <Column id="cnt" type="STRING" size="256" sumtext="01 수정갯수"/>
- </ColumnInfo>
- </Dataset>
- <Dataset id="ds_send_JobProc" firefirstcount="0" firenextcount="0" useclientlayout="false" updatecontrol="true" enableevent="true" loadkeymode="keep" loadfiltermode="keep" reversesubsum="false">
- <ColumnInfo>
- <Column id="pid" type="STRING" size="256" sumtext=" 01 환자번호 "/>
- <Column id="oprsrvno" type="STRING" size="256" sumtext=" 02 수술예약 "/>
- <Column id="ophistno" type="INT" size="256" sumtext=" 03 이력번호 "/>
- <Column id="instcd" type="STRING" size="256" sumtext=" 04 기관코드 "/>
- <Column id="jobflag" type="STRING" size="256" sumtext=" 05 작업구분(1:입실저장,2:퇴실저장,9:입실취소)"/>
- <Column id="outplcnm" type="STRING" size="256" sumtext=" 06 퇴실 장소명 "/>
- </ColumnInfo>
- <Rows>
- <Row/>
- </Rows>
- </Dataset>
- <Dataset id="ds_main_oppatinfoexcel" firefirstcount="0" firenextcount="0" useclientlayout="false" updatecontrol="true" enableevent="true" loadkeymode="keep" loadfiltermode="keep" reversesubsum="false">
- <ColumnInfo>
- <Column id="opstatcdnm" type="STRING" size="256" sumtext="01 상"/>
- <Column id="opflagcdnm" type="STRING" size="256" sumtext="02 구분"/>
- <Column id="oproomcdnm" type="STRING" size="256" sumtext="03 수술방"/>
- <Column id="fstrgstdt" type="STRING" size="256" sumtext="04 수술일자"/>
- <Column id="opusetm" type="STRING" size="256" sumtext="05 소요시간"/>
- <Column id="depthngnm" type="STRING" size="256" sumtext="06 집도과"/>
- <Column id="oppatflagnm" type="STRING" size="256" sumtext="07 병실"/>
- <Column id="hngnm" type="STRING" size="256" sumtext="08 환자명"/>
- <Column id="pid" type="STRING" size="256" sumtext="09 등록번호"/>
- <Column id="sa" type="STRING" size="256" sumtext="10 SA"/>
- <Column id="diagcdnm" type="STRING" size="256" sumtext="11 진단명(한글)"/>
- <Column id="diagengnm" type="STRING" size="256" sumtext="45 진단명(영문)"/>
- <Column id="opcdknm" type="STRING" size="256" sumtext="12 수술명"/>
- <Column id="opcdenm" type="STRING" size="256" sumtext="13 영문수술명"/>
- <Column id="perfdridnm1" type="STRING" size="256" sumtext="14 집도의"/>
- <Column id="perfdridnm2" type="STRING" size="256" sumtext="15 마취의"/>
- <Column id="anstmthdcdnm" type="STRING" size="256" sumtext="16 마취방법"/>
- <Column id="wardstarttm" type="STRING" size="256" sumtext="17 병동출발일시"/>
- <Column id="waitarrivetm" type="STRING" size="256" sumtext="18 대기실도착일시"/>
- <Column id="intm" type="STRING" size="256" sumtext="19 입실시간"/>
- <Column id="dschtm" type="STRING" size="256" sumtext="20 퇴실시간"/>
- <Column id="totoptm" type="STRING" size="256" sumtext="21 총소요시간"/>
- <Column id="totopmin" type="INT" size="256" sumtext="21 총소요시간(분)"/>
- <Column id="perfintm" type="STRING" size="256" sumtext="22 집도의입실시간"/>
- <Column id="perfdschtm" type="STRING" size="256" sumtext="23 집도의 퇴실시간"/>
- <Column id="totperftom" type="STRING" size="256" sumtext="24 총재실시간"/>
- <Column id="totperfmin" type="INT" size="256" sumtext="24 총재실시간(분)"/>
- <Column id="opstarttm" type="STRING" size="256" sumtext="25 수술시작시간"/>
- <Column id="opendtm" type="STRING" size="256" sumtext="26 수술종료시간"/>
- <Column id="anststarttm" type="STRING" size="256" sumtext="27 마취시작시간"/>
- <Column id="anstendtm" type="STRING" size="256" sumtext="28 마취종료시간"/>
- <Column id="anstmeettime" type="STRING" size="256" sumtext="29 환자맞이한시간"/>
- <Column id="cnclresn" type="STRING" size="256" sumtext="30 취소사유정보"/>
- <Column id="cnstopflag" type="STRING" size="256" sumtext="31 협진"/>
- <Column id="afopnm" type="STRING" size="256" sumtext="32 수술후수술명"/>
- <Column id="prestaynursenm" type="STRING" size="256" sumtext="33 대기실기록간호사"/>
- <Column id="preopnursenm" type="STRING" size="256" sumtext="34 수술실기록간호사"/>
- <Column id="indd" type="STRING" size="256" sumtext="35 입원일"/>
- <Column id="opscale" type="STRING" size="256" sumtext="36 수술스케일"/>
- <Column id="escopeeqmtuseyn" type="STRING" size="256" sumtext="37 내시경장비사용여부"/>
- <Column id="opcost" type="STRING" size="256" sumtext="38 수술료"/>
- <Column id="anstcost" type="STRING" size="256" sumtext="39 마취료"/>
- <Column id="scrub" type="STRING" size="256" sumtext="40 SCRUB"/>
- <Column id="cir" type="STRING" size="256" sumtext="41 CIR"/>
- <Column id="reopflag" type="STRING" size="256" sumtext="42 재수술"/>
- <Column id="afdiagcdnm" type="STRING" size="256" sumtext="43 수술후진단명"/>
- <Column id="dschdd" type="STRING" size="256" sumtext="44 퇴원일"/>
- <Column id="bdwt" type="STRING" size="256" sumtext="45 퇴원일"/>
- <Column id="bdht" type="STRING" size="256" sumtext="46 퇴원일"/>
- </ColumnInfo>
- </Dataset>
- <Dataset id="ds_init_userscrnenvinfo" firefirstcount="0" firenextcount="0" useclientlayout="false" updatecontrol="true" enableevent="true" loadkeymode="keep" loadfiltermode="keep" reversesubsum="false">
- <ColumnInfo>
- <Column id="compscd" type="STRING" size="256" sumtext="구성코드"/>
- <Column id="compscnts" type="STRING" size="256" sumtext="구성내용"/>
- <Column id="compsrefcnts" type="STRING" size="256" sumtext="구성참조내용"/>
- <Column id="compssizecnts" type="STRING" size="256" sumtext="구성크기내용"/>
- </ColumnInfo>
- </Dataset>
- <Dataset id="ds_main_operation" firefirstcount="0" firenextcount="0" useclientlayout="false" updatecontrol="true" enableevent="true" loadkeymode="keep" loadfiltermode="keep" reversesubsum="false"/>
- <Dataset id="ds_main_cond" firefirstcount="0" firenextcount="0" useclientlayout="false" updatecontrol="true" enableevent="true" loadkeymode="keep" loadfiltermode="keep" reversesubsum="false" oncolumnchanged="ds_main_cond_oncolumnchanged">
- <ColumnInfo>
- <Column id="usernm" type="STRING" size="256"/>
- <Column id="orddd" type="STRING" size="256"/>
- <Column id="opddfr" type="STRING" size="256"/>
- <Column id="opddto" type="STRING" size="256"/>
- <Column id="oprosette" type="STRING" size="256"/>
- <Column id="oproomcd" type="STRING" size="256"/>
- <Column id="orddept" type="STRING" size="256"/>
- <Column id="orddr" type="STRING" size="256"/>
- <Column id="opstat" type="STRING" size="256"/>
- <Column id="opflag1" type="STRING" size="256"/>
- <Column id="opflag2" type="STRING" size="256"/>
- <Column id="opflag3" type="STRING" size="256"/>
- <Column id="opflag4" type="STRING" size="256"/>
- <Column id="anstmthdcd1" type="STRING" size="256"/>
- <Column id="anstmthdcd2" type="STRING" size="256"/>
- <Column id="anstmthdcd3" type="STRING" size="256"/>
- <Column id="calmflag" type="STRING" size="256"/>
- <Column id="pid" type="STRING" size="256"/>
- <Column id="hngnm" type="STRING" size="256"/>
- <Column id="ccrtstat" type="STRING" size="256"/>
- <Column id="oppatflag1" type="STRING" size="256"/>
- <Column id="oppatflag4" type="STRING" size="256"/>
- <Column id="oppatflag3" type="STRING" size="256"/>
- <Column id="oppatflag5" type="STRING" size="256"/>
- <Column id="oppatflag2" type="STRING" size="256"/>
- <Column id="refdeptflag" type="STRING" size="256"/>
- <Column id="prestimportid" type="STRING" size="256"/>
- <Column id="wardcd" type="STRING" size="256"/>
- <Column id="section" type="STRING" size="256"/>
- <Column id="sortflag" type="STRING" size="256"/>
- <Column id="settingrnid" type="STRING" size="256"/>
- <Column id="orddeptcd" type="STRING" size="256"/>
- <Column id="medispclid" type="STRING" size="256"/>
- <Column id="atdoctid" type="STRING" size="256"/>
- <Column id="indschacptstat" type="STRING" size="256"/>
- <Column id="outdt" type="STRING" size="256"/>
- <Column id="srchinstcd" type="STRING" size="256"/>
- </ColumnInfo>
- <Rows>
- <Row/>
- </Rows>
- </Dataset>
- <Dataset id="ds_temp" firefirstcount="0" firenextcount="0" useclientlayout="false" updatecontrol="true" enableevent="true" loadkeymode="keep" loadfiltermode="keep" reversesubsum="false">
- <ColumnInfo>
- <Column id="sPrcpCnt" type="STRING" size="256"/>
- <Column id="sDispCnt" type="STRING" size="256"/>
- <Column id="opnmen" type="STRING" size="256"/>
- <Column id="opnmkr" type="STRING" size="256"/>
- <Column id="afopnmen" type="STRING" size="256"/>
- <Column id="diagnmen" type="STRING" size="256"/>
- <Column id="diagnmkr" type="STRING" size="256"/>
- <Column id="prncnt" type="STRING" size="256"/>
- <Column id="blodpreplist" type="STRING" size="256"/>
- </ColumnInfo>
- <Rows>
- <Row/>
- </Rows>
- </Dataset>
- <Dataset id="ds_main_opinfo_oplist" firefirstcount="0" firenextcount="0" useclientlayout="false" updatecontrol="true" enableevent="true" loadkeymode="keep" loadfiltermode="keep" reversesubsum="false">
- <ColumnInfo>
- <Column id="ccrtstat" type="STRING" size="256" sumtext="01 카트상태 "/>
- <Column id="ccrtstatnm" type="STRING" size="256" sumtext="02 카트상태명 "/>
- <Column id="opstatcd" type="STRING" size="256" sumtext="03 진행상태 "/>
- <Column id="opstatcdnm" type="STRING" size="256" sumtext="04 진행상태명 "/>
- <Column id="oprecstatnm" type="STRING" size="256" sumtext="04 간호기록 "/>
- <Column id="patposplcecd" type="STRING" size="256" sumtext="05 환자위치 "/>
- <Column id="opflagcd" type="STRING" size="256" sumtext="06 수술구분 "/>
- <Column id="opflagcdnm" type="STRING" size="256" sumtext="07 수술구분명 "/>
- <Column id="oproomcd" type="STRING" size="256" sumtext="08 수술방 "/>
- <Column id="oproomcdnm" type="STRING" size="256" sumtext="09 수술방명 "/>
- <Column id="fstrgstdt" type="STRING" size="256" sumtext="10 예약일시 "/>
- <Column id="opusetm" type="STRING" size="256" sumtext="11 소요시간 "/>
- <Column id="perfdeptcd" type="STRING" size="256" sumtext="12 진료과 "/>
- <Column id="depthngnm" type="STRING" size="256" sumtext="13 진료과명 "/>
- <Column id="oppatflagcd" type="STRING" size="256" sumtext="14 환자구분 "/>
- <Column id="oppatflagnm" type="STRING" size="256" sumtext="15 환자구분명 "/>
- <Column id="pid" type="STRING" size="256" sumtext="16 등록번호 "/>
- <Column id="hngnm" type="STRING" size="256" sumtext="17 환자명 "/>
- <Column id="sa" type="STRING" size="256" sumtext="18 성별나이 "/>
- <Column id="diagcd" type="STRING" size="256" sumtext="19 진단코드 "/>
- <Column id="diagcdnm" type="STRING" size="256" sumtext="20 진단코드명 "/>
- <Column id="diagengnm" type="STRING" size="256" sumtext="20 진단코드 영문명 "/>
- <Column id="opcd" type="STRING" size="256" sumtext="21 수술코드 "/>
- <Column id="opcdknm" type="STRING" size="256" sumtext="22 수술코드한글명 "/>
- <Column id="oppart" type="STRING" size="256" sumtext="23 수술부위 "/>
- <Column id="opposition" type="STRING" size="256" sumtext="24 수술체위 "/>
- <Column id="perfdrid1" type="STRING" size="256" sumtext="25 집도의 "/>
- <Column id="perfdridnm1" type="STRING" size="256" sumtext="26 집도의명 "/>
- <Column id="perfdrid2" type="STRING" size="256" sumtext="27 마취의 "/>
- <Column id="perfdridnm2" type="STRING" size="256" sumtext="28 마취의명 "/>
- <Column id="anstmthdcd" type="STRING" size="256" sumtext="29 마취종류 "/>
- <Column id="anstmthdcdnm" type="STRING" size="256" sumtext="30 마취종류명 "/>
- <Column id="delivefact" type="STRING" size="256" sumtext="31 전달사항 "/>
- <Column id="delivefactyn" type="STRING" size="256" sumtext="32 전달사항 "/>
- <Column id="hx" type="STRING" size="256" sumtext="33 HX "/>
- <Column id="rgstrid" type="STRING" size="256" sumtext="34 예약자 "/>
- <Column id="rgstridnm" type="STRING" size="256" sumtext="35 예약자명 "/>
- <Column id="opopenflag" type="STRING" size="256" sumtext="36 수술공개여부 "/>
- <Column id="oprsrvno" type="STRING" size="256" sumtext="37 수술예약번호 "/>
- <Column id="ophistno" type="STRING" size="256" sumtext="38 수술이력번호 "/>
- <Column id="ophistcd" type="STRING" size="256" sumtext="39 수술이력코드 "/>
- <Column id="instcd" type="STRING" size="256" sumtext="40 기관코드 "/>
- <Column id="iindd" type="STRING" size="256" sumtext="41 입원일자 "/>
- <Column id="icretno" type="STRING" size="256" sumtext="42 생성번호 "/>
- <Column id="iseqno" type="STRING" size="256" sumtext="43 일련번호 "/>
- <Column id="oorddd" type="STRING" size="256" sumtext="44 진료일자 "/>
- <Column id="ocretno" type="STRING" size="256" sumtext="45 생성번호 "/>
- <Column id="oacptseqno" type="STRING" size="256" sumtext="46 등록일련번호 "/>
- <Column id="oorgorddd" type="STRING" size="256" sumtext="47 원진료일자 "/>
- <Column id="oordtype" type="STRING" size="256" sumtext="47 외래진료형태 "/>
- <Column id="opcnfmdd" type="STRING" size="256" sumtext="48 수술시작일자 "/>
- <Column id="cnclresn" type="STRING" size="256" sumtext="49 취소이유 "/>
- <Column id="callyn" type="STRING" size="256" sumtext="50 호출여부 "/>
- <Column id="roomcd" type="STRING" size="256" sumtext="51 병실 "/>
- <Column id="calltel" type="STRING" size="256" sumtext="52 호출전화번호 "/>
- <Column id="cnstopflag" type="STRING" size="256" sumtext="53 협진여부 "/>
- <Column id="inyn" type="STRING" size="256" sumtext="54 재원여부 "/>
- <Column id="cnfmcnclresncd" type="STRING" size="256" sumtext="55 취소 사유 코드 "/>
- <Column id="opcdenm" type="STRING" size="256" sumtext="56 수술코드영문명 "/>
- <Column id="opfromdd" type="STRING" size="256" sumtext="57 조회일자 "/>
- <Column id="optodd" type="STRING" size="256" sumtext="58 조회 일자 "/>
- <Column id="usernm" type="STRING" size="256" sumtext="59 로그인사용자명 "/>
- <Column id="orddeptcd" type="STRING" size="256" sumtext="60 집도과코드 "/>
- <Column id="startposcd" type="STRING" size="256" sumtext="61 이송요원 호출부서코드 "/>
- <Column id="uncnfm" type="STRING" size="256" sumtext="62 처방카운트 "/>
- <Column id="callcnt" type="STRING" size="256" sumtext="63 호출건수 "/>
- <Column id="dschdd" type="STRING" size="256" sumtext="64 퇴원일자 "/>
- <Column id="judgnm" type="STRING" size="256" sumtext="65 심사자 "/>
- <Column id="disp1" type="STRING" size="256" sumtext="66 혈액주의 "/>
- <Column id="disp2" type="STRING" size="256" sumtext="67 접촉주의 "/>
- <Column id="disp3" type="STRING" size="256" sumtext="68 공기주의 "/>
- <Column id="judgperchgrcallno" type="STRING" size="256" sumtext="69 심사자연락번호 "/>
- <Column id="reopflag" type="STRING" size="256" sumtext="70 재수술여부 "/>
- <Column id="nursreoprgstid" type="STRING" size="256" sumtext="71 간호재수술등록ID "/>
- <Column id="nursreoprgstdt" type="STRING" size="256" sumtext="72 간호재수술등록일시 "/>
- <Column id="nursreopcncldt" type="STRING" size="256" sumtext="73 간호재수술취소일시 "/>
- <Column id="goodstat" type="STRING" size="256" sumtext="74 물품상태 "/>
- <Column id="instrstat" type="STRING" size="256" sumtext="75 기구상태 "/>
- <Column id="cststat" type="STRING" size="256" sumtext="76 소모품상태 "/>
- <Column id="patinroomdt" type="STRING" size="256" sumtext="77 수술실입실일시 "/>
- <Column id="patoutroom" type="STRING" size="256" sumtext="78 수술실퇴실장소 "/>
- <Column id="afopnm" type="STRING" size="256" sumtext="79 수술후수술명 "/>
- <Column id="afdiagcdnm" type="STRING" size="256" sumtext="81 수술후 진단명 "/>
- <Column id="perfdrid3" type="STRING" size="256" sumtext="82 마취의2 "/>
- <Column id="perfdridnm3" type="STRING" size="256" sumtext="83 마취의2명 "/>
- <Column id="subopcdknm" type="STRING" size="256" sumtext="84 부수술명 "/>
- <Column id="calmflag" type="STRING" size="256" sumtext="85 진정유무 "/>
- <Column id="inordtype" type="STRING" size="256" sumtext="85 입원타입 "/>
- <Column id="wardcd" type="STRING" size="256" sumtext="86 병동 "/>
- <Column id="medispclid" type="STRING" size="256" sumtext="87 주치의 "/>
- <Column id="mainoprsrvno" type="STRING" size="256" sumtext="88 주수술번호 "/>
- </ColumnInfo>
- </Dataset>
- <Dataset id="ds_barcdprntsetup" firefirstcount="0" firenextcount="0" useclientlayout="false" updatecontrol="true" enableevent="true" loadkeymode="keep" loadfiltermode="keep" reversesubsum="false">
- <ColumnInfo>
- <Column id="prntsetupinfo" type="STRING" size="256" sumtext="코드"/>
- <Column id="macaddr" type="STRING" size="256" sumtext="macaddr"/>
- </ColumnInfo>
- </Dataset>
- <Dataset id="ds_chngcol" firefirstcount="0" firenextcount="0" useclientlayout="false" updatecontrol="true" enableevent="true" loadkeymode="keep" loadfiltermode="keep" reversesubsum="false">
- <ColumnInfo>
- <Column id="chngcolflag" type="STRING" size="256"/>
- </ColumnInfo>
- <Rows>
- <Row/>
- </Rows>
- </Dataset>
- <Dataset id="ds_send_report" firefirstcount="0" firenextcount="0" useclientlayout="false" updatecontrol="true" enableevent="true" loadkeymode="keep" loadfiltermode="keep" reversesubsum="false">
- <ColumnInfo>
- <Column id="opnmflag" type="STRING" size="256"/>
- <Column id="diagnmflag" type="STRING" size="256"/>
- </ColumnInfo>
- <Rows>
- <Row/>
- </Rows>
- </Dataset>
- <Dataset id="ds_main_codedata_popup" firefirstcount="0" firenextcount="0" useclientlayout="false" updatecontrol="true" enableevent="true" loadkeymode="keep" loadfiltermode="keep" reversesubsum="false">
- <ColumnInfo>
- <Column id="popupnm" type="STRING" size="256"/>
- <Column id="popupcd" type="STRING" size="256"/>
- <Column id="lev" type="STRING" size="256"/>
- </ColumnInfo>
- <Rows>
- <Row>
- <Col id="popupnm">수술준비확인</Col>
- <Col id="popupcd">0</Col>
- <Col id="lev">0</Col>
- </Row>
- <Row>
- <Col id="popupnm">간호일지Type II</Col>
- <Col id="popupcd">1</Col>
- <Col id="lev">0</Col>
- </Row>
- <Row>
- <Col id="popupnm">마취간호처방</Col>
- <Col id="popupcd">2</Col>
- <Col id="lev">0</Col>
- </Row>
- <Row>
- <Col id="popupnm">수술간호기록</Col>
- <Col id="popupcd">8</Col>
- <Col id="lev">0</Col>
- </Row>
- <Row>
- <Col id="popupnm">수술실 전광판관리</Col>
- <Col id="popupcd">9</Col>
- <Col id="lev">0</Col>
- </Row>
- <Row>
- <Col id="popupnm">-</Col>
- <Col id="popupcd">[Undefined]</Col>
- <Col id="lev">0</Col>
- </Row>
- <Row>
- <Col id="popupnm">마약처방관리</Col>
- <Col id="popupcd">3</Col>
- <Col id="lev">0</Col>
- </Row>
- <Row>
- <Col id="popupnm">혈액불출관리</Col>
- <Col id="popupcd">4</Col>
- <Col id="lev">0</Col>
- </Row>
- <Row>
- <Col id="popupnm">현장검사입력</Col>
- <Col id="popupcd">5</Col>
- <Col id="lev">0</Col>
- </Row>
- <Row>
- <Col id="popupnm">-</Col>
- <Col id="popupcd">[Undefined]</Col>
- <Col id="lev">0</Col>
- </Row>
- <Row>
- <Col id="popupnm">바코드 출력</Col>
- <Col id="popupcd">6</Col>
- <Col id="lev">0</Col>
- </Row>
- <Row>
- <Col id="popupnm">NAME LABEL 출력</Col>
- <Col id="popupcd">7</Col>
- <Col id="lev">0</Col>
- </Row>
- <Row>
- <Col id="popupnm">-</Col>
- <Col id="popupcd">[Undefined]</Col>
- <Col id="lev">0</Col>
- </Row>
- <Row>
- <Col id="popupnm">단문메세지</Col>
- <Col id="popupcd">10</Col>
- <Col id="lev">0</Col>
- </Row>
- <Row>
- <Col id="popupnm">이송요원호출</Col>
- <Col id="popupcd">11</Col>
- <Col id="lev">0</Col>
- </Row>
- <Row>
- <Col id="popupnm">보호자 호출</Col>
- <Col id="popupcd">12</Col>
- <Col id="lev">0</Col>
- </Row>
- <Row>
- <Col id="popupnm">보호자 호출취소</Col>
- <Col id="popupcd">13</Col>
- <Col id="lev">0</Col>
- </Row>
- <Row>
- <Col id="popupnm">입 실 취 소</Col>
- <Col id="popupcd">14</Col>
- <Col id="lev">0</Col>
- </Row>
- <Row>
- <Col id="popupnm">재수술 승인/취소</Col>
- <Col id="popupcd">15</Col>
- <Col id="lev">0</Col>
- </Row>
- <Row>
- <Col id="popupnm">안전사고보고</Col>
- <Col id="popupcd">16</Col>
- <Col id="lev">0</Col>
- </Row>
- </Rows>
- </Dataset>
- <Dataset id="ds_prnt_opPatlist" firefirstcount="0" firenextcount="0" updatecontrol="true" enableevent="true" loadkeymode="keep" loadfiltermode="keep" reversesubsum="false" oncolumnchanged="ds_prnt_opPatlist_oncolumnchanged">
- <ColumnInfo>
- <Column id="pid" type="STRING" size="256" sumtext="등록번호"/>
- <Column id="hngnm" type="STRING" size="256" sumtext="환자명"/>
- <Column id="sa" type="STRING" size="256" sumtext="성별나이"/>
- <Column id="oproomcdnm" type="STRING" size="256" sumtext="수술방명"/>
- <Column id="depthngnm" type="STRING" size="256" sumtext="진료과명"/>
- <Column id="roomcd" type="STRING" size="256" sumtext="병실"/>
- <Column id="prntcnt" type="STRING" size="256" sumtext="출력장수"/>
- </ColumnInfo>
- </Dataset>
- </Objects>
- <Bind>
- <BindItem id="item0" compid="group3.group2.inp_opddfr" propid="value" datasetid="ds_main_cond" columnid="opddfr"/>
- <BindItem id="item1" compid="group3.group2.inp_opddto" propid="value" datasetid="ds_main_cond" columnid="opddto"/>
- <BindItem id="item2" compid="group3.group2.cmb_rosette" propid="value" datasetid="ds_main_cond" columnid="oprosette"/>
- <BindItem id="item4" compid="group3.group2.cmb_orddept" propid="value" datasetid="ds_main_cond" columnid="orddept"/>
- <BindItem id="item6" compid="group3.group2.cmb_opstatlist" propid="value" datasetid="ds_main_cond" columnid="opstat"/>
- <BindItem id="item7" compid="group3.group2.chk_opflag1" propid="value" datasetid="ds_main_cond" columnid="opflag1"/>
- <BindItem id="item8" compid="group3.group2.chk_opflag2" propid="value" datasetid="ds_main_cond" columnid="opflag2"/>
- <BindItem id="item9" compid="group3.group2.chk_opflag3" propid="value" datasetid="ds_main_cond" columnid="opflag3"/>
- <BindItem id="item10" compid="group3.group2.chk_opflag4" propid="value" datasetid="ds_main_cond" columnid="opflag4"/>
- <BindItem id="item11" compid="group3.group2.grp_setting4.checkbox13" propid="value" datasetid="ds_main_cond" columnid="oppatflag1"/>
- <BindItem id="item12" compid="group3.group2.grp_setting4.checkbox20" propid="value" datasetid="ds_main_cond" columnid="oppatflag4"/>
- <BindItem id="item13" compid="group3.group2.grp_setting4.checkbox15" propid="value" datasetid="ds_main_cond" columnid="oppatflag3"/>
- <BindItem id="item14" compid="group3.group2.grp_setting4.checkbox12" propid="value" datasetid="ds_main_cond" columnid="oppatflag5"/>
- <BindItem id="item15" compid="group3.group2.checkbox31" propid="value" datasetid="ds_main_cond" columnid="anstmthdcd1"/>
- <BindItem id="item16" compid="group3.group2.checkbox32" propid="value" datasetid="ds_main_cond" columnid="anstmthdcd2"/>
- <BindItem id="item17" compid="group3.group2.checkbox33" propid="value" datasetid="ds_main_cond" columnid="anstmthdcd3"/>
- <BindItem id="item18" compid="group3.group2.checkbox2" propid="value" datasetid="ds_main_cond" columnid="calmflag"/>
- <BindItem id="item19" compid="group3.group2.cmb_ccrtstatlist" propid="value" datasetid="ds_main_cond" columnid="ccrtstat"/>
- <BindItem id="item20" compid="group3.group2.grp_setting3.checkbox8" propid="value" datasetid="ds_main_cond" columnid="oppatflag1"/>
- <BindItem id="item21" compid="group3.group2.grp_setting3.checkbox11" propid="value" datasetid="ds_main_cond" columnid="oppatflag4"/>
- <BindItem id="item22" compid="group3.group2.grp_setting3.checkbox10" propid="value" datasetid="ds_main_cond" columnid="oppatflag3"/>
- <BindItem id="item23" compid="group3.group2.grp_setting2.checkbox3" propid="value" datasetid="ds_main_cond" columnid="oppatflag1"/>
- <BindItem id="item24" compid="group3.group2.grp_setting2.checkbox4" propid="value" datasetid="ds_main_cond" columnid="oppatflag2"/>
- <BindItem id="item25" compid="group3.group2.grp_setting2.checkbox6" propid="value" datasetid="ds_main_cond" columnid="oppatflag4"/>
- <BindItem id="item26" compid="group3.group2.grp_setting2.checkbox5" propid="value" datasetid="ds_main_cond" columnid="oppatflag3"/>
- <BindItem id="item27" compid="group3.group2.grp_setting1.checkbox16" propid="value" datasetid="ds_main_cond" columnid="oppatflag1"/>
- <BindItem id="item28" compid="group3.group2.grp_setting1.checkbox17" propid="value" datasetid="ds_main_cond" columnid="oppatflag2"/>
- <BindItem id="item29" compid="group3.group2.grp_setting1.checkbox19" propid="value" datasetid="ds_main_cond" columnid="oppatflag4"/>
- <BindItem id="item30" compid="group3.group2.grp_setting1.checkbox18" propid="value" datasetid="ds_main_cond" columnid="oppatflag3"/>
- <BindItem id="item31" compid="group3.group2.grp_setting1.checkbox1" propid="value" datasetid="ds_main_cond" columnid="oppatflag5"/>
- <BindItem id="item32" compid="group3.group1.opt_prcpcnt" propid="value" datasetid="ds_temp" columnid="sPrcpCnt"/>
- <BindItem id="item33" compid="group3.group1.opt_dispcnt" propid="value" datasetid="ds_temp" columnid="sDispCnt"/>
- <BindItem id="item34" compid="group3.group1.tar_blodprep" propid="value" datasetid="ds_temp" columnid="blodpreplist"/>
- <BindItem id="item35" compid="group3.group1.chk_opnmen" propid="value" datasetid="ds_temp" columnid="opnmen"/>
- <BindItem id="item36" compid="group3.group1.chk_opnmkr" propid="value" datasetid="ds_temp" columnid="opnmkr"/>
- <BindItem id="item37" compid="group3.group1.chk_afopnm" propid="value" datasetid="ds_temp" columnid="afopnmen"/>
- <BindItem id="item38" compid="group3.group1.chk_diagnmen" propid="value" datasetid="ds_temp" columnid="diagnmen"/>
- <BindItem id="item39" compid="group3.group1.chk_diagnmkr" propid="value" datasetid="ds_temp" columnid="diagnmkr"/>
- <BindItem id="item40" compid="group3.group5.ipt_patcntctel" propid="value" datasetid="ds_temp" columnid="prncnt"/>
- </Bind>
- <Script type="xscript4.0"><![CDATA[/***************************************************************************************
- * System Name : 경대 의료정보시스템
- * Job Name : emr_opanstxp -> SMMNP00400
- * Creator : yjh
- * Make Date : 2016-09-12
- * Description :
- *---------------------------------------------------------------------------------------
- * Modify Date Modifier Modify Description
- *---------------------------------------------------------------------------------------
- * 2016-09-12 yjh TF->XP
- *
- *---------------------------------------------------------------------------------------
- ****************************************************************************************/
- //=======================================================================================
- // Lib Include
- //---------------------------------------------------------------------------------------
- include "com_commonxp::comm_main.xjs";
- include "emr_opanstxp::SMMNP00400.xjs"; //yjh : 커밋
- include "lis_commonxp::LLZ001.xjs";
- include "emr_carecomxp::CareCom.xjs";
- include "com_commodulexp::SSZFM00901.xjs";
- //=======================================================================================
- // Global Form Variable
- //---------------------------------------------------------------------------------------
- //=======================================================================================
- // Function
- //---------------------------------------------------------------------------------------
- /****************************************************************************************
- * Argument : N/A
- * Description :
- ****************************************************************************************/
- var fv_OrderDepth = group3.switch1.ordermanage.import1;
- var fv_DsMenuinstDepth = this;
- var fv_DsWardDepth = this;
- //=======================================================================================
- // Event
- //---------------------------------------------------------------------------------------
- /****************************************************************************************
- * Components : Form
- * Components ID : SMMNP00400
- * Event : oninit
- * Argument : 01.obj : Object Event has occurred
- * : 02.e : Event Object
- * Description : 화면 처음 초기화시
- ****************************************************************************************/
- function SMMNP00400_oninit(obj:Form, e:InitEventInfo)
- {
- frmf_initForm(obj); //폼 초기화
- }
- /****************************************************************************************
- * Components : Form
- * Components ID : SMMNP00400
- * Event : onload
- * Argument : 01.obj : Object Event has occurred
- * : 02.e : Event Object
- * Description : 화면 로딩 완료시
- ****************************************************************************************/
- function SMMNP00400_onload(obj:Form, e:LoadEventInfo)
- {
- ds_main_cond.setColumn(0, "refdeptflag", "A");
- ds_main_cond.setColumn(0, "oprosette", "");
- ds_main_cond.setColumn(0, "oproomcd", "");
- ds_main_cond.setColumn(0, "orddept", "");
- ds_main_cond.setColumn(0, "orddr", "");
- ds_main_cond.setColumn(0, "opstat", "");
- ds_main_cond.setColumn(0, "ccrtstat", "");
-
- ds_temp.setColumn(0, "prncnt", "1");
-
- grp_btn.grp_ordmn.visible = false;
- group3.group2.grp_setting1.visible = true;
- if( sysf_getUserInfo("dutplceinstcd") == "032" ){
- grp_btn.grp_opmdisc.button6.visible = true;
- }else{
- grp_btn.grp_opmdisc.button6.visible = false;
- }
- reqOrderInfoOfCol("SMMNP00400", "group3.switch1.opmain.grd_oppatlist", "AN");
- fInit();
- fv_OrderDepth.fSetOPMode(); //SMMNW00300화면 안에있는 함수
-
- //1. 바코드 라벨 설정값 조회
- var scrnid = "SMMNP00400";
- ds_barcdprntsetup.clearData();
- fGetBarCodeInfo(scrnid); // CareCom.js
- // 노드값을 컬럼 값으로 가져옴에 따라 DS 로 변환 처리 ---------------------------------------------------
-
- //XML string 값을 파라미터로 넘김
- //성공시 : 'success' 실패시 : 'error' 값을 리턴함
- var sParamObj = new Object();
- sParamObj.pathYN = 'N'; //dsvaluepath 컬럼 사용여부
-
- var pXmlStr = ds_barcdprntsetup.getColumn(0, "prntsetupinfo");
-
- var succYn = lf_convertXmlToDs(pXmlStr, sParamObj);
-
- sysf_trace(succYn);
-
- // => retrun DS
- // : ds_data_setupinfo(prntkind, commkind)
- // : ds_data_comm01(setupval)
- // : ds_data_comm02(comm, databit, stopbit, baudrate, parity, setupval)
- // : ds_data_comm03(setupval)
- // : ds_data_blank(left, top)
-
- // ------------------------------------------------------------------------------------------------------------
-
- //2008.08.01 dhkim 추가
- // 바코드OCX 생성
- lzzfMakeBrcdPrntObjHanDo("CommAX");
- }
- /****************************************************************************************
- * Components : Dataset
- * Components ID : ds_main_cond
- * Event : oncolumnchanged
- * Argument : 01.obj : Object Event has occurred
- * : 02.e : Event Object
- * Description : 데이터셋 값 변경시
- ****************************************************************************************/
- function ds_main_cond_oncolumnchanged(obj:Dataset, e:DSColChangeEventInfo)
- {
- switch( e.columnid ){
- case "oppatflag1" :
- if( ds_main_cond.getColumn(0, "oppatflag1") != "I" ){
- ds_main_cond.setColumn(0, "oppatflag1", "");
- }
- break;
-
- case "oppatflag2" :
- if( ds_main_cond.getColumn(0, "oppatflag2") != "D" ){
- ds_main_cond.setColumn(0, "oppatflag2", "");
- }
- break;
-
- case "oppatflag3" :
- if( ds_main_cond.getColumn(0, "oppatflag3") != "O" ){
- ds_main_cond.setColumn(0, "oppatflag3", "");
- }
- break;
-
- case "oppatflag4" :
- if( ds_main_cond.getColumn(0, "oppatflag4") != "E" ){
- ds_main_cond.setColumn(0, "oppatflag4", "");
- }
- break;
-
- case "oppatflag5" :
- if( ds_main_cond.getColumn(0, "oppatflag5") != "I" ){
- ds_main_cond.setColumn(0, "oppatflag5", "");
- }
- break;
-
- case "anstmthdcd1" :
- if( ds_main_cond.getColumn(0, "anstmthdcd1") != "01" ){
- ds_main_cond.setColumn(0, "anstmthdcd1", "");
- }
- break;
-
- case "anstmthdcd2" :
- if( ds_main_cond.getColumn(0, "anstmthdcd2") != "03" ){
- ds_main_cond.setColumn(0, "anstmthdcd2", "");
- }
- break;
-
- case "anstmthdcd3" :
- if( ds_main_cond.getColumn(0, "anstmthdcd3") != "02" ){
- ds_main_cond.setColumn(0, "anstmthdcd3", "");
- }
- break;
-
- case "calmflag" :
- if( ds_main_cond.getColumn(0, "calmflag") != "Y" ){
- ds_main_cond.setColumn(0, "calmflag", "");
- }
- break;
-
- default :
- break;
- }
- }
- /****************************************************************************************
- * Components : Combo
- * Components ID : cmb_rosette
- * Event : onitemchanged
- * Argument : 01.obj : Object Event has occurred
- * : 02.e : Event Object
- * Description : 콤보 값 변경시
- ****************************************************************************************/
- function group3_group2_cmb_rosette_onitemchanged(obj:Combo, e:ItemChangeEventInfo)
- {
- dsf_makeValue(ds_send, "opcnfmdd", "string", ds_main_cond.getColumn(0, "opddfr"));
- dsf_makeValue(ds_send, "rosette", "string", ds_main_cond.getColumn(0, "oprosette"));
-
- var oParam = {};
- oParam.id = "TRMNP03002";
- oParam.service = "opanstapp.OpAnstCCrtGoodMngt";
- oParam.method = "reqGetOmcdlist";
- oParam.inds = "req=ds_send";
- oParam.outds = "ds_init_oproomlist=oproomlist";
- oParam.async = false;
- oParam.callback = "cf_TRMNP03002";
- tranf_submit(oParam);
-
- if( arErrorCode.pop("TRMNP03002") > -1 ){ // 수술실코드 가져오기
- frmf_addComboItem("group3.group2.cmb_oproomlist", "전체", "", "above");
- // group3.group2.cmb_oproomlist.index = -1;
- // group3.group2.cmb_oproomlist.index = 0;
-
- group3.group2.cmb_oproomlist.value = ds_main_cond.getColumn(0, "oproomcd");
- }
- }
- function cf_TRMNP03002(sSvcId, nErrorCode, sErrorMsg) {
- arErrorCode.push(sSvcId, nErrorCode);
- }
- /****************************************************************************************
- * Components : Combo
- * Components ID : cmb_orddept
- * Event : onitemchanged
- * Argument : 01.obj : Object Event has occurred
- * : 02.e : Event Object
- * Description : 콤보 값 변경시
- ****************************************************************************************/
- function group3_group2_cmb_orddept_onitemchanged(obj:Combo, e:ItemChangeEventInfo)
- {
- if( utlf_isNull(ds_main_cond.getColumn(0, "orddept")) ){
- ds_init_drlist.clearData();
- }else{
- ds_send_reqdata.copyRow(0, ds_main_cond, 0);
-
- var oParam = {};
- oParam.id = "TRMNP00101";
- oParam.service = "opanstapp.OpAnstPatMngt";
- oParam.method = "reqGetDrInfo";
- oParam.inds = "reqdata=ds_send_reqdata";
- oParam.outds = "ds_init_drlist=drlist";
- oParam.async = false;
- //oParam.callback = "cf_TRMNP00101";
- tranf_submit(oParam);
-
- frmf_addComboItem("group3.group2.cmb_drlist", "전 체", "", "above");
- group3.group2.cmb_drlist.value = ds_main_cond.getColumn(0, "orddr");
- }
- }
- /****************************************************************************************
- * Components : CheckBox
- * Components ID : chk_opflag
- * Event : onchanged
- * Argument : 01.obj : Object Event has occurred
- * : 02.e : Event Object
- * Description : 체크박스 값 변경시
- ****************************************************************************************/
- function group3_group2_chk_opflag1_onchanged(obj:CheckBox, e:CheckBoxChangeEventInfo)
- {
- if( ds_main_cond.getColumn(0, "opflag1") == "1" || ds_main_cond.getColumn(0, "opflag1") == "2" || ds_main_cond.getColumn(0, "opflag1") == "3" ){//정규, 응급, 추가 체크시 취소 비활성화
- group3.group2.chk_opflag4.enable = false;
- }else{
- group3.group2.chk_opflag4.enable = true;
- }
- }
- /****************************************************************************************
- * Components : CheckBox
- * Components ID : chk_opflag
- * Event : onchanged
- * Argument : 01.obj : Object Event has occurred
- * : 02.e : Event Object
- * Description : 체크박스 값 변경시
- ****************************************************************************************/
- function group3_group2_chk_opflag2_onchanged(obj:CheckBox, e:CheckBoxChangeEventInfo)
- {
- if( ds_main_cond.getColumn(0, "opflag1") == "1" || ds_main_cond.getColumn(0, "opflag1") == "2" || ds_main_cond.getColumn(0, "opflag1") == "3" ){//정규, 응급, 추가 체크시 취소 비활성화
- group3.group2.chk_opflag4.enable = false;
- }else{
- group3.group2.chk_opflag4.enable = true;
- }
- }
- /****************************************************************************************
- * Components : CheckBox
- * Components ID : chk_opflag
- * Event : onchanged
- * Argument : 01.obj : Object Event has occurred
- * : 02.e : Event Object
- * Description : 체크박스 값 변경시
- ****************************************************************************************/
- function group3_group2_chk_opflag3_onchanged(obj:CheckBox, e:CheckBoxChangeEventInfo)
- {
- if( ds_main_cond.getColumn(0, "opflag1") == "1" || ds_main_cond.getColumn(0, "opflag1") == "2" || ds_main_cond.getColumn(0, "opflag1") == "3" ){//정규, 응급, 추가 체크시 취소 비활성화
- group3.group2.chk_opflag4.enable = false;
- }else{
- group3.group2.chk_opflag4.enable = true;
- }
- }
- /****************************************************************************************
- * Components : CheckBox
- * Components ID : chk_opflag4
- * Event : onchanged
- * Argument : 01.obj : Object Event has occurred
- * : 02.e : Event Object
- * Description : 체크박스 값 변경시
- ****************************************************************************************/
- function group3_group2_chk_opflag4_onchanged(obj:CheckBox, e:CheckBoxChangeEventInfo)
- {
- if( ds_main_cond.getColumn(0, "opflag4") == "4" ){//취소 체크시 정규,응급,추가 비활성화
- group3.group2.chk_opflag1.enable = false;
- group3.group2.chk_opflag2.enable = false;
- group3.group2.chk_opflag3.enable = false;
- group3.group2.cmb_opstatlist.value = "";
- group3.group2.cmb_opstatlist.enable = false;
- group3.group2.cmb_ccrtstatlist.value = "";
- group3.group2.cmb_ccrtstatlist.enable = false;
- }else {
- group3.group2.chk_opflag1.enable = true;
- group3.group2.chk_opflag2.enable = true;
- group3.group2.chk_opflag3.enable = true;
- group3.group2.cmb_opstatlist.value = "";
- group3.group2.cmb_opstatlist.enable = true;
- group3.group2.cmb_ccrtstatlist.value = "";
- group3.group2.cmb_ccrtstatlist.enable = true;
- }
- }
- /****************************************************************************************
- * Components : Button
- * Components ID : btn_srch
- * Event : onclick
- * Argument : 01.obj : Object Event has occurred
- * : 02.e : Event Object
- * Description : 조회버튼 클릭시
- ****************************************************************************************/
- function group3_group2_button4_onclick(obj:Button, e:ClickEventInfo)
- {
- if( group3.switch1.tabindex == 0 ){
- fSelectPos();
- }else{
- fv_OrderDepth.fGetOMPatList("op");
- }
- }
- /****************************************************************************************
- * Components : Grid
- * Components ID : grd_oppatlist
- * Event : oncelldblclick
- * Argument : 01.obj : Object Event has occurred
- * : 02.e : Event Object
- * Description : 그리드 셀 더블클릭시
- ****************************************************************************************/
- function group3_switch1_opmain_grd_oppatlist_oncelldblclick(obj:Grid, e:GridClickEventInfo)
- {
- fSetParam(); // 환자 화면상단정보 설정
-
- if( e.col == group3.switch1.opmain.grd_oppatlist.getBindCellIndex("body", "disp1img") && ds_main_opPatlist_opPatInfo.getColumn(ds_main_opPatlist_opPatInfo.rowposition, "disp1") ){
- dsf_makeValue(ds_send, "infection", "string", "B");
-
- var objArg = new Object();
- objArg.arg_ds_send = ds_send;
- frmf_open("SPASB01600", "SPASB01600", objArg, null, "", "", "", null, null, null, null, null, "M"); //실질적인 화면은 SMASB01100
- }else if( e.col == group3.switch1.opmain.grd_oppatlist.getBindCellIndex("body", "disp2img") && ds_main_opPatlist_opPatInfo.getColumn(ds_main_opPatlist_opPatInfo.rowposition, "disp2") ){
- dsf_makeValue(ds_send, "infection", "string", "C");
-
- var objArg = new Object();
- objArg.arg_ds_send = ds_send;
- frmf_open("SPASB01600", "SPASB01600", objArg, null, "", "", "", null, null, null, null, null, "M");
- }else if( e.col == group3.switch1.opmain.grd_oppatlist.getBindCellIndex("body", "disp3img") && ds_main_opPatlist_opPatInfo.getColumn(ds_main_opPatlist_opPatInfo.rowposition, "disp3") ){
- dsf_makeValue(ds_send, "infection", "string", "A");
-
- var objArg = new Object();
- objArg.arg_ds_send = ds_send;
- frmf_open("SPASB01600", "SPASB01600", objArg, null, "", "", "", null, null, null, null, null, "M");
- }
- // 20190314 김현석, 감염정보 (비말주의) 항목 추가
- else if( e.col == group3.switch1.opmain.grd_oppatlist.getBindCellIndex("body", "disp4img") && ds_main_opPatlist_opPatInfo.getColumn(ds_main_opPatlist_opPatInfo.rowposition, "disp4") ){
- dsf_makeValue(ds_send, "infection", "string", "D");
-
- var objArg = new Object();
- objArg.arg_ds_send = ds_send;
- frmf_open("SPASB01600", "SPASB01600", objArg, null, "", "", "", null, null, null, null, null, "M");
- }
- }
- /****************************************************************************************
- * Components : Grid
- * Components ID : grd_oppatlist
- * Event : onrbuttondown
- * Argument : 01.obj : Object Event has occurred
- * : 02.e : Event Object
- * Description : 마우스 우클릭시
- ****************************************************************************************/
- function group3_switch1_opmain_grd_oppatlist_onrbuttondown(obj:Grid, e:GridMouseEventInfo)
- {
- if( e.row > -1 ){
- grdf_setSelectedCell(obj, e); // 선택된 행 확실히 선택해줌
- pMenu_oppatlistmenu.trackPopup(e.screenX, e.screenY);
- }
-
- return true;
- }
- /****************************************************************************************
- * Components : PopupMenu
- * Components ID : pMenu_oppatlistmenu
- * Event : onmenuclick
- * Argument : 01.obj : Object Event has occurred
- * : 02.e : Event Object
- * Description : 팝업메뉴 클릭시
- ****************************************************************************************/
- function pMenu_oppatlistmenu_onmenuclick(obj:PopupMenu, e:MenuClickEventInfo)
- {
- fShowPopup(e.id);
- }
- /****************************************************************************************
- * Components : Grid
- * Components ID : grd_oppatlist
- * Event : oncellclick
- * Argument : 01.obj : Object Event has occurred
- * : 02.e : Event Object
- * Description : 그리드 셀 클릭시
- ****************************************************************************************/
- function group3_switch1_opmain_grd_oppatlist_oncellclick(obj:Grid, e:GridClickEventInfo)
- {
- var sCol = e.col;
- var sRow = group3.switch1.opmain.grd_oppatlist.currentrow;
- // alert(sCol);
-
- if( sCol == group3.switch1.opmain.grd_oppatlist.getBindCellIndex("body", "delivefactyn") && !utlf_isNull(ds_main_opPatlist_opPatInfo.getColumn(sRow, "delivefact")) ){
- //var oprsrvno = model.getValue("/root/main/opPatlist/opPatInfo[" + sRow + "]/oprsrvno");
- //setParameter("oprsrvno", oprsrvno);
- //modal("SMMNP00101" ,"", "100", "100", "SMMNP00101", "", "");
-
- //fSelectPos();
-
- var sDelivefact = ds_main_opPatlist_opPatInfo.getColumn(sRow, "delivefact");
- frmf_setParameter("delivefact", sDelivefact);
-
- frmf_modal("SMMNP00101","SMMNP00101",null,"",1,100,100,"","","","","","M"); //yjh : 커밋
- }
- }
- /****************************************************************************************
- * Components : Edit
- * Components ID : ipt_patcntctel
- * Event : onkeyup
- * Argument : 01.obj : Object Event has occurred
- * : 02.e : Event Object
- * Description : 에디트 키 입력시
- ****************************************************************************************/
- function group3_group5_ipt_patcntctel_onkeyup(obj:Edit, e:KeyEventInfo)
- {
- if( e.keycode == 13 ){
- obj.updateToDataset();
- group3.group5.btn_prtlabel.click();
- }
- }
- /****************************************************************************************
- * Components : Button
- * Components ID : button5
- * Event : onclick
- * Argument : 01.obj : Object Event has occurred
- * : 02.e : Event Object
- * Description : 취소버튼 클릭시
- ****************************************************************************************/
- function group3_group5_button5_onclick(obj:Button, e:ClickEventInfo)
- {
- ds_temp.setColumn(0, "prncnt", "1");
- group3.group5.visible = false;
- }
- /****************************************************************************************
- * Components : Button
- * Components ID : btn_prtlabel
- * Event : onclick
- * Argument : 01.obj : Object Event has occurred
- * : 02.e : Event Object
- * Description : 확인버튼 클릭시
- ****************************************************************************************/
- function group3_group5_btn_prtlabel_onclick(obj:Button, e:ClickEventInfo)
- {
- var iRow = -1;
- iRow = group3.switch1.opmain.grd_oppatlist.currentrow;
- var pid = ds_main_opPatlist_opPatInfo.getColumn(iRow, "pid");
- var hngnm = ds_main_opPatlist_opPatInfo.getColumn(iRow, "hngnm");
- var sexage = ds_main_opPatlist_opPatInfo.getColumn(iRow, "sa");
- var oproomcdnm = ds_main_opPatlist_opPatInfo.getColumn(iRow, "oproomcdnm");
- var depthngnm = ds_main_opPatlist_opPatInfo.getColumn(iRow, "depthngnm");
- var roomcd = ds_main_opPatlist_opPatInfo.getColumn(iRow, "roomcd");
- var prncnt = ds_temp.getColumn(0, "prncnt");
- var pport = "";
-
- fPrintNameLabel(pid, hngnm, sexage, oproomcdnm, depthngnm, prncnt, pport, roomcd, "N");
- group3.group5.visible = false;
- }
- /****************************************************************************************
- * Components : Button
- * Components ID : button2
- * Event : onclick
- * Argument : 01.obj : Object Event has occurred
- * : 02.e : Event Object
- * Description : 프린터설정버튼 클릭시
- ****************************************************************************************/
- function grp_btn_grp_opmdisc_button2_onclick(obj:Button, e:ClickEventInfo)
- {
- //fOpenBrcdPrnt();
- //20101118_KNUH_김병국주석처리 수정
- // 바코드 프린터 설정_20090521(ByJA)
- var scrnid = "SMMNP00400";
- ds_barcdprntsetup.clearData();
- fGetBarCodeInfo(scrnid); // CareCom.js
-
- // 노드값을 컬럼 값으로 가져옴에 따라 DS 로 변환 처리 ---------------------------------------------------
-
- //XML string 값을 파라미터로 넘김
- //성공시 : 'success' 실패시 : 'error' 값을 리턴함
- var sParamObj = new Object();
- sParamObj.pathYN = 'N'; //dsvaluepath 컬럼 사용여부
-
- var pXmlStr = ds_barcdprntsetup.getColumn(0, "prntsetupinfo");
-
- var succYn = lf_convertXmlToDs(pXmlStr, sParamObj);
-
- sysf_trace(succYn);
-
- // => retrun DS
- // : ds_data_setupinfo(prntkind, commkind)
- // : ds_data_comm01(setupval)
- // : ds_data_comm02(comm, databit, stopbit, baudrate, parity, setupval)
- // : ds_data_comm03(setupval)
- // : ds_data_blank(left, top)
-
- // ------------------------------------------------------------------------------------------------------------
-
- var count = ds_data_setupinfo.rowcount;
- if(count == 0) {
- ds_data_setupinfo.addRow();
- }
-
- var objArg = new Object();
- objArg.arg_sSetupInfo = ds_barcdprntsetup.getColumn(0, "prntsetupinfo");
- objArg.arg_sCallBackFunction = "lf_convertXmlToDs";
- frmf_modal("SPZUR00300","SPZUR00300",objArg,"","","","","","","","","","M");
- // 바코드 프린터 설정_20101118_KNNUH주석처리.
- /*
- var scrnid = "SMMNI00100";
- model.removeNodeset("/root/main/barcdprntsetup");
- fGetBarCodeInfo(scrnid); // CareCom.js
- var count = getNodesetCount("/root/main/barcdprntsetup/prntsetupinfo/setupinfo");
- if(count == 0) {
- model.makeNode("/root/main/barcdprntsetup/prntsetupinfo/setupinfo");
- }
- modal("SPLLC90100" , "","","","","/root/main/barcdprntsetup/prntsetupinfo/setupinfo", "/root/main/barcdprntsetup/prntsetupinfo/setupinfo");
- */
- }
- /****************************************************************************************
- * Components : Button
- * Components ID : button6
- * Event : onclick
- * Argument : 01.obj : Object Event has occurred
- * : 02.e : Event Object
- * Description : 예방적항생제버튼 클릭시
- ****************************************************************************************/
- function grp_btn_grp_opmdisc_button6_onclick(obj:Button, e:ClickEventInfo)
- {
- frmf_open("SMMNP22000", "SMMNP22000", null, null, 1, 100, 100, null, null, null, null, null, "M");
- }
- /****************************************************************************************
- * Components : Button
- * Components ID : button
- * Event : onclick
- * Argument : 01.obj : Object Event has occurred
- * : 02.e : Event Object
- * Description : 컬럼설정버튼 클릭시
- ****************************************************************************************/
- function grp_btn_grp_opmdisc_button_onclick(obj:Button, e:ClickEventInfo)
- {
- frmf_setParameter("SPMMB02400_param_scrnid" , "SMMNP00400");
- frmf_setParameter("SPMMB02400_param_grdid" , "grd_anpatlist");
- frmf_setParameter("SPMMB02400_param_caseid" , "AN");
- frmf_setParameter("SPMMB02400_param_compscd" , "AN");
-
- frmf_modal("SPMNB02500","SPMNB02500","","","","","","","","","","","M"); //yjh : 커밋
-
- var useyn = frmf_getParameter("SPMMB02400_rtn_useyn");
- if(useyn == "Y"){
- ds_chngcol.setColumn(0, "chngcolflag", "Y");
-
- reqOrderInfoOfCol("SMMNP00400", "group3.switch1.opmain.grd_oppatlist", "AN");
-
- fv_OrderDepth.fGetOMPatList("op");
- }
- }
- /****************************************************************************************
- * Components : Button
- * Components ID : bnt_output
- * Event : onclick
- * Argument : 01.obj : Object Event has occurred
- * : 02.e : Event Object
- * Description : 출력버튼 클릭시
- ****************************************************************************************/
- function grp_btn_grp_opmdisc_bnt_output_onclick(obj:Button, e:ClickEventInfo)
- {
- var objDOM = rptf_createDOM(); // DOM 객체 설정
- // rptf_setNodeListToDOM(objDOM, "root/main/opPatlist", ds_main_opPatlist_opPatInfo); // 데이터셋
- rptf_setNodeListToDOM(objDOM, "root/main/opPatlist/opPatInfo", ds_main_opPatlist_opPatInfo); // 데이터셋
- // rptf_setNodeListToDOM(objDOM, "root/main/opPatlist/opPatInfo", ds_main_opPatlist_opPatInfo); // 데이터셋
-
- var objParam = new Object();
- objParam.xml_data_XML1 = objDOM.documentElement.source; // 최상의노드 XML 스트링 추출
- objParam.xml_data_XML2 = objDOM.documentElement.source; // 최상의노드 XML 스트링 추출
-
- var opnmen = ds_temp.getColumn(0, "opnmen");
- var diagnmen = ds_temp.getColumn(0, "diagnmen");
-
- if( opnmen == "Y" ) {
- objParam.opnmflag = "E";
- }else {
- objParam.opnmflag = "H";
- }
- // 진단명(영문/한글)별 출력화면 달리 설정_손성훈.
- if( diagnmen == "Y" ) {
- objParam.diagnmflag = "E";
- }else {
- objParam.diagnmflag = "H";
- }
-
- var option = "open=1;save=1;directprint=0;print=1;zoom=0;";
-
- rptf_exeReportPreview30(["RPMNP00101"],[objParam], option);
- }
- /****************************************************************************************
- * Components : Button
- * Components ID : bnt_excel
- * Event : onclick
- * Argument : 01.obj : Object Event has occurred
- * : 02.e : Event Object
- * Description : Excel버튼 클릭시
- ****************************************************************************************/
- function grp_btn_grp_opmdisc_bnt_excel_onclick(obj:Button, e:ClickEventInfo)
- {
- fSaveExcel();
- }
- /****************************************************************************************
- * Components : Button
- * Components ID : button3
- * Event : onclick
- * Argument : 01.obj : Object Event has occurred
- * : 02.e : Event Object
- * Description : 라벨전체출력버튼 클릭시
- ****************************************************************************************/
- function grp_btn_grp_opmdisc_button3_onclick(obj:Button, e:ClickEventInfo)
- {
- //var rtn = sysf_messageBox("전체출력하시겠습니까?", "Q");
-
- var rtn = sysf_messageBox("전체출력", "S003", "환자별 출력수를 지정");
- if(rtn == "6") {
- fPrintNameLabel("", "", "", "", "", 1, "","", "Y");
- }
- else if(rtn == "7"){
- ds_prnt_opPatlist.clearData();
- var pid, hngnm, sexage, oproomcdnm, depthngnm, roomcd;
- var prndd = utlf_getCurrentDate().substr(0,4) + "/" + utlf_getCurrentDate().substr(4,2) + "/" + utlf_getCurrentDate().substr(6,2);
- for(var i=0; i<ds_main_opPatlist_opPatInfo.rowcount; i++){
- pid = ds_main_opPatlist_opPatInfo.getColumn(i, "pid");
- hngnm = ds_main_opPatlist_opPatInfo.getColumn(i, "hngnm");
- sexage = ds_main_opPatlist_opPatInfo.getColumn(i, "sa");
- oproomcdnm = ds_main_opPatlist_opPatInfo.getColumn(i, "oproomcdnm");
- depthngnm = ds_main_opPatlist_opPatInfo.getColumn(i, "depthngnm");
- roomcd = ds_main_opPatlist_opPatInfo.getColumn(i, "roomcd");
-
- var nAddRow = ds_prnt_opPatlist.addRow();
- ds_prnt_opPatlist.setColumn(nAddRow, "pid", pid);
- ds_prnt_opPatlist.setColumn(nAddRow, "hngnm", hngnm);
- ds_prnt_opPatlist.setColumn(nAddRow, "sa", sexage);
- ds_prnt_opPatlist.setColumn(nAddRow, "oproomcdnm", oproomcdnm);
- ds_prnt_opPatlist.setColumn(nAddRow, "depthngnm", depthngnm);
- ds_prnt_opPatlist.setColumn(nAddRow, "roomcd", roomcd);
- ds_prnt_opPatlist.setColumn(nAddRow, "prntcnt", 1);
- }
-
- div_Prnt.position.x = obj.position.x - div_Prnt.position.width + obj.position.width;
- div_Prnt.visible = true;
- }
- }
- function div_Prnt_edt_allcnt_onkeyup(obj:Edit, e:KeyEventInfo)
- {
- if(e.keycode == 13){
- if( !utlf_isNull(obj.value) && obj.value > 0 ){
- dsf_setFixVal(ds_prnt_opPatlist, "prntcnt:"+obj.value);
- }else{
- sysf_messageBox("0 이상의 값을 입력하시기 바랍니다.", "I");
- }
- }
- }
- function ds_prnt_opPatlist_oncolumnchanged(obj:Dataset, e:DSColChangeEventInfo)
- {
-
- if( e.columnid == "prntcnt" ){
- if( e.newvalue == "0" ){
- obj.setColumn(e.row, e.col, utlf_transNullToChar(e.oldvalue, 1));
- }
- }
- }
- function div_Prnt_btn_cncl_onclick(obj:Button, e:ClickEventInfo)
- {
- div_Prnt.visible = false;
- }
- function div_Prnt_btn_prnt_onclick(obj:Button, e:ClickEventInfo)
- {
- fPrintNameLabel("", "", "", "", "", 1, "","", "T");
- }
- function group3_group1_chk_opnmen_onclick(obj:CheckBox, e:ClickEventInfo)
- {
- var objGrdOppatlist = group3.switch1.opmain.grd_oppatlist;
-
- if( group3.group1.chk_opnmen.value == "Y" ){
- objGrdOppatlist.setRealColSize(objGrdOppatlist.getBindCellIndex("body", "opcdenm"), objGrdOppatlist.getFormatColProperty(objGrdOppatlist.getBindCellIndex("body", "opcdenm"), "size"), false);
- //grd_oppatlist.colWidth(grd_oppatlist.colRef("opcdenm")) = "115";
- }else{
- objGrdOppatlist.setRealColSize(objGrdOppatlist.getBindCellIndex("body", "opcdenm"), 0, false);
- //grd_oppatlist.colWidth(grd_oppatlist.colRef("opcdenm")) = "0";
- }
- }
- function group3_group1_chk_opnmkr_onclick(obj:CheckBox, e:ClickEventInfo)
- {
- var objGrdOppatlist = group3.switch1.opmain.grd_oppatlist;
-
- if( group3.group1.chk_opnmkr.value == "Y" ){
- objGrdOppatlist.setRealColSize(objGrdOppatlist.getBindCellIndex("body", "opcdknm"), objGrdOppatlist.getFormatColProperty(objGrdOppatlist.getBindCellIndex("body", "opcdknm"), "size"), false);
- //grd_oppatlist.colWidth(grd_oppatlist.colRef("opcdknm")) = "115";
- }else{
- objGrdOppatlist.setRealColSize(objGrdOppatlist.getBindCellIndex("body", "opcdknm"), 0, false);
- //grd_oppatlist.colWidth(grd_oppatlist.colRef("opcdknm")) = "0";
- }
- }
- function group3_group1_chk_afopnm_onclick(obj:CheckBox, e:ClickEventInfo)
- {
- var objGrdOppatlist = group3.switch1.opmain.grd_oppatlist;
-
- if( group3.group1.chk_afopnm.value == "Y" ){
- objGrdOppatlist.setRealColSize(objGrdOppatlist.getBindCellIndex("body", "afopnm"), objGrdOppatlist.getFormatColProperty(objGrdOppatlist.getBindCellIndex("body", "afopnm"), "size"), false);
- //grd_oppatlist.colWidth(grd_oppatlist.colRef("afopnm")) = "115";
- }else{
- objGrdOppatlist.setRealColSize(objGrdOppatlist.getBindCellIndex("body", "afopnm"), 0, false);
- //grd_oppatlist.colWidth(grd_oppatlist.colRef("afopnm")) = "0";
- }
- }
- function group3_group1_chk_diagnmen_onclick(obj:CheckBox, e:ClickEventInfo)
- {
- var objGrdOppatlist = group3.switch1.opmain.grd_oppatlist;
-
- if( group3.group1.chk_diagnmen.value == "Y" ){
- objGrdOppatlist.setRealColSize(objGrdOppatlist.getBindCellIndex("body", "diagengnm"), objGrdOppatlist.getFormatColProperty(objGrdOppatlist.getBindCellIndex("body", "diagengnm"), "size"), false);
- //grd_oppatlist.colWidth(grd_oppatlist.colRef("opcdenm")) = "115";
- }else{
- objGrdOppatlist.setRealColSize(objGrdOppatlist.getBindCellIndex("body", "diagengnm"), 0, false);
- //grd_oppatlist.colWidth(grd_oppatlist.colRef("opcdenm")) = "0";
- }
- }
- function group3_group1_chk_diagnmkr_onclick(obj:CheckBox, e:ClickEventInfo)
- {
- var objGrdOppatlist = group3.switch1.opmain.grd_oppatlist;
-
- if( group3.group1.chk_diagnmkr.value == "Y" ){
- objGrdOppatlist.setRealColSize(objGrdOppatlist.getBindCellIndex("body", "diagcdnm"), objGrdOppatlist.getFormatColProperty(objGrdOppatlist.getBindCellIndex("body", "diagcdnm"), "size"), false);
- //grd_oppatlist.colWidth(grd_oppatlist.colRef("opcdknm")) = "115";
- }else{
- objGrdOppatlist.setRealColSize(objGrdOppatlist.getBindCellIndex("body", "diagcdnm"), 0, false);
- //grd_oppatlist.colWidth(grd_oppatlist.colRef("opcdknm")) = "0";
- }
- }
- function group3_switch1_onchanged(obj:Tab, e:TabIndexChangeEventInfo)
- {
- switch( e.postindex ){
- case 0 :
- var selFlag = "opm";
-
- grp_btn.grp_ordmn.visible = false;
- grp_btn.grp_opmdisc.visible = true;
-
- //grp_opm.visible = true;
- //grp_ordmn.visible = false;
- //sha_state.visible = true;
- //cap_state.visible = true;
- //roundrect1.visible = true;
- //cap_state.visible = true;
- //grp_ordmn.visible = false;
- group3.group1.visible = true;
-
- fSeletedToggle( selFlag );
- break;
-
- case 1 :
- var selFlag = "ordmn";
- grp_btn.grp_ordmn.visible = true;
- grp_btn.grp_opmdisc.visible = false;
-
- //grp_opm.visible = false;
- //grp_ordmn.visible = true;
- //sha_state.visible = false;
- //cap_state.visible = false;
- //roundrect1.visible = false;
- //cap_state.visible = false;
- group3.group1.visible = false;
-
- fSeletedToggle( selFlag );
- break;
-
- default :
- break;
- }
- }
- function group3_switch1_onlbuttondown(obj:Tab, e:TabMouseEventInfo)
- {
- if(e.fromreferenceobject.name == "switch1"){
- var sIdx = obj.getIndex(e.clientX, e.canvasY);
- if( sIdx != -1){
- if( e.index == sIdx ){
- obj.tabindex = sIdx;
- frmf_inputEnterKey("group3.switch1", "onchanged", new TabIndexChangeEventInfo);
- }
- }
- }
- }
- function group3_group2_cmb_drlist_onitemchanged(obj:Combo, e:ItemChangeEventInfo)
- {
- ds_main_cond.setColumn(0, "orddr", obj.value);
- }
- function group3_group2_cmb_oproomlist_onitemchanged(obj:Combo, e:ItemChangeEventInfo)
- {
- ds_main_cond.setColumn(0, "oproomcd", obj.value);
- }
- ]]></Script>
- </Form>
- </FDL>
|