123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211 |
- <?xml version="1.0" encoding="utf-8"?>
- <FDL version="1.5">
- <TypeDefinition url="..\..\..\default_typedef.xml"/>
- <Form id="SMRFE00900" position="absolute 0 0 1203 799" titletext="수리접수 및 결과 등록" oninit="SMRFE00900_oninit" onload="SMRFE00900_onload">
- <Layouts>
- <Layout>
- <Edit id="ipt_acptpsnid" taborder="28" class="input_essential" enable="false" visible="false" position="absolute 731 374 828 393" anchor="top right" autoselect="true"/>
- <Edit id="ipt_acptpsnnm" taborder="30" class="input_defalut" enable="false" visible="false" position="absolute 820 374 915 393" anchor="top right" autoselect="true"/>
- <Edit id="ipt_deprtmangrsanctnm" taborder="52" class="input_default" enable="false" position="absolute 833 374 913 393" anchor="top right" autoselect="true"/>
- <Combo id="cmb_rpirflag1" taborder="34" class="combo_default" position="absolute 731 348 854 367" anchor="top right"/>
- <Combo id="cmb_bugtcd" taborder="10" enable="false" visible="false" position="absolute 781 348 854 367" anchor="top right"/>
- <Static id="caption16" text="~" position="absolute 863 457 875 469" anchor="top right"/>
- <Combo id="cmb_rpirflag2" taborder="35" class="combo_default" enable="false" position="absolute 947 348 1053 367" anchor="top right"/>
- <Static id="caption6" text="수리접수 및 결과 등록" class="tit_1" position="absolute 0 0 186 25"/>
- <Button id="btn_save" taborder="1" text="저장" class="btn4" position="absolute 1069 26 1125 48" anchor="top right" onclick="btn_save_onclick"/>
- <Button id="btn_init" taborder="2" text="초기화" class="btn4" position="absolute 1127 26 1195 48" anchor="top right" onclick="btn_init_onclick"/>
- <Button id="button1" taborder="3" text="출력" class="btn6" visible="false" position="absolute 588 26 644 48"/>
- <Button id="button26" taborder="4" text="화면이동" class="btn3" visible="false" position="absolute 506 26 586 48"/>
- <Shape id="line3" class="line_6" position="absolute 0 47 1195 53" anchor="left top right"/>
- <Button id="button5" taborder="5" text="전자결재" class="btn2" visible="false" position="absolute 382 26 462 48"/>
- <Button id="button2" taborder="6" text="출력(일괄)" class="btn6" position="absolute 58 26 150 48" onclick="button2_onclick"/>
- <Button id="btn_prnt" taborder="7" text="출력" class="btn6" position="absolute 0 26 56 48" onclick="btn_prnt_onclick"/>
- <Button id="btn_deprtmangrsanctid" taborder="8" class="icon_search" position="absolute 811 375 827 391" anchor="top right" onclick="btn_deprtmangrsanctid_onclick"/>
- <Grid id="grd_rfehemhtlist" taborder="9" binddataset="ds_main_grid_rfehemhtlist" autoenter="select" useinputpanel="false" cellsizingtype="col" position="absolute 0 168 635 790" anchor="all" oncellclick="grd_rfehemhtlist_oncellclick" oncelldblclick="grd_rfehemhtlist_oncelldblclick" onheadclick="grd_rfehemhtlist_onheadclick" onrbuttondown="grd_rfehemhtlist_onrbuttondown" onrbuttonup="grd_rfehemhtlist_onrbuttonup">
- <Formats>
- <Format id="default">
- <Columns>
- <Column size="20" band="left"/>
- <Column size="19"/>
- <Column size="0"/>
- <Column size="74"/>
- <Column size="37"/>
- <Column size="71"/>
- <Column size="81"/>
- <Column size="100"/>
- <Column size="167"/>
- <Column size="68"/>
- <Column size="0"/>
- <Column size="70"/>
- <Column size="57"/>
- <Column size="75"/>
- <Column size="70"/>
- <Column size="70"/>
- <Column size="70"/>
- <Column size="0"/>
- <Column size="0"/>
- <Column size="0"/>
- <Column size="0"/>
- <Column size="0"/>
- <Column size="0"/>
- <Column size="0"/>
- <Column size="0"/>
- <Column size="0"/>
- <Column size="0"/>
- <Column size="0"/>
- <Column size="0"/>
- <Column size="0"/>
- <Column size="0"/>
- <Column size="0"/>
- <Column size="0"/>
- <Column size="0"/>
- <Column size="0"/>
- <Column size="0"/>
- <Column size="0"/>
- <Column size="0"/>
- <Column size="0"/>
- <Column size="0"/>
- <Column size="0"/>
- <Column size="0"/>
- <Column size="0"/>
- <Column size="0"/>
- <Column size="0"/>
- <Column size="0"/>
- <Column size="0"/>
- <Column size="0"/>
- <Column size="0"/>
- <Column size="0"/>
- <Column size="0"/>
- <Column size="0"/>
- <Column size="0"/>
- <Column size="0"/>
- <Column size="0"/>
- <Column size="0"/>
- <Column size="0"/>
- <Column size="0"/>
- <Column size="0"/>
- <Column size="0"/>
- <Column size="0"/>
- <Column size="0"/>
- <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="80"/>
- <Column size="150"/>
- <Column size="150"/>
- <Column size="100"/>
- <Column size="80"/>
- </Columns>
- <Rows>
- <Row size="24" band="head"/>
- <Row size="24"/>
- </Rows>
- <Band id="head">
- <Cell/>
- <Cell col="1" displaytype="checkbox" edittype="checkbox" expr="0"/>
- <Cell col="2" text="자산구분"/>
- <Cell col="3" colspan="2" text="의뢰일자" taborder="undefined"/>
- <Cell col="5" text="의뢰부서"/>
- <Cell col="6" text="계정과목"/>
- <Cell col="7" text="자산번호"/>
- <Cell col="8" text="자산명"/>
- <Cell col="9" text="수리형태"/>
- <Cell col="10" text="완료상태"/>
- <Cell col="11" text="담당자"/>
- <Cell col="12" text="서류상태"/>
- <Cell col="13" text="수리상태"/>
- <Cell col="14" text="실장"/>
- <Cell col="15" text="과장"/>
- <Cell col="16" text="검수자"/>
- <Cell col="17" text="승인"/>
- <Cell col="18" text="S/N"/>
- <Cell col="19" text="접수일자"/>
- <Cell col="20" text="결재상태"/>
- <Cell col="21" text="담당자comment"/>
- <Cell col="22" text="미가동일수"/>
- <Cell col="23" text="접수구분"/>
- <Cell col="24" text="기관코드"/>
- <Cell col="25" text="비품_장비구분"/>
- <Cell col="26" text="접수자ID"/>
- <Cell col="27" text="접수자이름"/>
- <Cell col="28" text="A/S대리점"/>
- <Cell col="29" text="A/S연락처"/>
- <Cell col="30" text="예산년도"/>
- <Cell col="31" text="담당자전화번호(사내전화번호)"/>
- <Cell col="32" text="완료인수일"/>
- <Cell col="33" text="인수자이름"/>
- <Cell col="34" text="의뢰부서명"/>
- <Cell col="35" text="하자보수기간from"/>
- <Cell col="36" text="하자보수기간to"/>
- <Cell col="37" text="발생일자"/>
- <Cell col="38" text="물품모델"/>
- <Cell col="39" text="설치장소CODE"/>
- <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="담당자ID(수리담당자)"/>
- <Cell col="48" text="연구과제code"/>
- <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="화면id"/>
- <Cell col="57" text="승인자"/>
- <Cell col="58" text="견적금액"/>
- <Cell col="59" text="구코드번호"/>
- <Cell col="60" text="제조원명"/>
- <Cell col="61" text="절감액"/>
- <Cell col="62" text="부품사용금액"/>
- <Cell col="63" text="수리완료일"/>
- <Cell col="64" text="수리시간"/>
- <Cell col="65" text="팀장결재일"/>
- <Cell col="66" text="거래처명"/>
- <Cell col="67"/>
- <Cell col="68"/>
- <Cell col="69"/>
- <Cell col="70"/>
- <Cell col="71" text="caption1"/>
- <Cell col="72"/>
- <Cell col="73"/>
- <Cell col="74"/>
- <Cell col="75"/>
- <Cell col="76"/>
- <Cell col="77"/>
- <Cell col="78" text="공급처코드"/>
- <Cell col="79" text="공급처명"/>
- <Cell col="80" text="수리거래처명"/>
- <Cell col="81" text="구매품의일자"/>
- <Cell col="82" text="구매품의번호"/>
- </Band>
- <Band id="body">
- <Cell celltype="head"/>
- <Cell col="1" displaytype="checkbox" edittype="checkbox" text="bind:chk" expr="expr:chk == 'Y' || chk == '1' ? 1 : 0"/>
- <Cell col="2" displaytype="combo" edittype="combo" text="bind:fixtrseqmtflag"/>
- <Cell col="3" displaytype="date" text="bind:reqdd" calendardisplaynulltype="nulltext"/>
- <Cell col="4" text="bind:reqno"/>
- <Cell col="5" style="align:left middle;padding:0 0 0 3;" text="bind:depthngnm"/>
- <Cell col="6" style="align:left middle;padding:0 0 0 3;" text="bind:acntnm"/>
- <Cell col="7" text="bind:fixasetcd"/>
- <Cell col="8" style="align:left middle;padding:0 0 0 3;cursor:hand;" text="bind:fixasetnm"/>
- <Cell col="9" displaytype="combo" style="padding:0 0 0 3;" text="bind:rpirflag2" enable="false"/>
- <Cell col="10" text="bind:endflag"/>
- <Cell col="11" text="bind:chrgpsnnm"/>
- <Cell col="12" displaytype="combo" style="align:center;" text="bind:docustat" combodataset="ds_init_comcd__030M001210__030M001210" combocodecol="cdid" combodatacol="cdnm" enable="false"/>
- <Cell col="13" displaytype="combo" style="align:center;" text="bind:workstat"/>
- <Cell col="14" text="bind:deprtmangrsanctnm"/>
- <Cell col="15" text="bind:mngersanctnm"/>
- <Cell col="16" text="bind:chkpsnnm"/>
- <Cell col="17" displaytype="checkbox" edittype="checkbox" text="bind:deptaprvyn" enable="false"/>
- <Cell col="18" text="bind:mngtno"/>
- <Cell col="19" text="bind:acptdd"/>
- <Cell col="20" displaytype="combo" edittype="combo" text="bind:sanctyn" enable="false"/>
- <Cell col="21" text="bind:chrgpsncmt"/>
- <Cell col="22" text="bind:nonworkdayno"/>
- <Cell col="23" displaytype="combo" edittype="combo" text="bind:acptflag"/>
- <Cell col="24" text="bind:instcd"/>
- <Cell col="25" text="bind:fixtrseqmtflag"/>
- <Cell col="26" text="bind:acptpsnid"/>
- <Cell col="27" text="bind:acptpsnnm"/>
- <Cell col="28" text="bind:agency"/>
- <Cell col="29" text="bind:agencycntctel"/>
- <Cell col="30" text="bind:bugtyy"/>
- <Cell col="31" text="bind:chrgtel"/>
- <Cell col="32" text="bind:deptacptdd"/>
- <Cell col="33" text="bind:deptacptpsnnm"/>
- <Cell col="34" text="bind:depthngnm"/>
- <Cell col="35" text="bind:flwgrnttermfr"/>
- <Cell col="36" text="bind:flwgrnttermto"/>
- <Cell col="37" text="bind:genrdd"/>
- <Cell col="38" text="bind:goodmodel"/>
- <Cell col="39" text="bind:installplcecd"/>
- <Cell col="40" text="bind:installplcenm"/>
- <Cell col="41" text="bind:possnamt"/>
- <Cell col="42" text="bind:possndd"/>
- <Cell col="43" text="bind:reqpsnnm"/>
- <Cell col="44" text="bind:reqtel"/>
- <Cell col="45" text="bind:rpiramt"/>
- <Cell col="46" text="bind:stdysubjnm"/>
- <Cell col="47" text="bind:chrgpsnid"/>
- <Cell col="48" text="bind:stdysubjno"/>
- <Cell col="49" text="bind:bugtcd"/>
- <Cell col="50" text="bind:rpirflag1"/>
- <Cell col="51" text="bind:useyn"/>
- <Cell col="52" text="bind:cmt"/>
- <Cell col="53" text="bind:hdrncspec"/>
- <Cell col="54" text="bind:lastrpirrslt"/>
- <Cell col="55" text="bind:rpirspec"/>
- <Cell col="56" text="bind:bizscrnid"/>
- <Cell col="57" text="bind:deptaprvpsnnm"/>
- <Cell col="58" text="bind:estimateamt"/>
- <Cell col="59" text="bind:oldcd"/>
- <Cell col="60" text="bind:prodcmpynm"/>
- <Cell col="61" text="bind:reductionamt"/>
- <Cell col="62" text="bind:rfehdabptotal"/>
- <Cell col="63" text="bind:rpirenddd"/>
- <Cell col="64" text="bind:rpirtm"/>
- <Cell col="65" text="bind:sanctdd"/>
- <Cell col="66" text="bind:suplplcenm"/>
- <Cell col="67" text="bind:mngersanctyn"/>
- <Cell col="68" text="bind:mngersanctdd"/>
- <Cell col="69" text="bind:mngersanctid"/>
- <Cell col="70" text="bind:deprtmangrsanctyn"/>
- <Cell col="71" text="bind:deprtmangrsanctdd"/>
- <Cell col="72" text="bind:deprtmangrsanctid"/>
- <Cell col="73" text="bind:execdept"/>
- <Cell col="74" text="bind:execdeptnm"/>
- <Cell col="75" text="bind:rpirendyn"/>
- <Cell col="76" text="bind:chkpsn"/>
- <Cell col="77" text="bind:goodspec"/>
- <Cell col="78" text="bind:suplplcecd"/>
- <Cell col="79" text="bind:suplplcenm"/>
- <Cell col="80" text="bind:agency"/>
- <Cell col="81" text="bind:purccnsttndd"/>
- <Cell col="82" text="bind:purccnsttnno"/>
- </Band>
- </Format>
- </Formats>
- </Grid>
- <Static id="caption9" text="예산년도/계정" class="cell_1" visible="false" position="absolute 639 346 729 369" anchor="top right"/>
- <Edit id="ipt_stdysubjno" taborder="11" class="input_dafault" enable="false" visible="false" position="absolute 947 348 1053 367" anchor="top right" autoselect="true"/>
- <Edit id="ipt_stdysubjnm" taborder="12" class="input_dafault" enable="false" visible="false" position="absolute 1055 348 1192 367" anchor="top right" autoselect="true"/>
- <Static id="caption13" text="연구과제" class="cell_1" visible="false" position="absolute 855 346 920 369" anchor="top right"/>
- <Edit id="ipt_bugtyy" taborder="13" class="input_default" enable="false" visible="false" position="absolute 731 348 780 367" anchor="top right" autoselect="true"/>
- <Shape id="line4" class="line_2" position="absolute 639 420 1194 426" anchor="top right"/>
- <Shape id="line28" class="line_2" position="absolute 639 290 1194 296" anchor="top right"/>
- <Shape id="line1" class="line_10" position="absolute 639 163 1194 169" anchor="top right"/>
- <Shape id="line15" class="line_2" position="absolute 640 446 1195 452" anchor="top right"/>
- <Shape id="line37" class="line_2" position="absolute 639 342 1194 348" anchor="top right"/>
- <Shape id="line14" linetype="vertical" class="line_2" position="absolute 639 688 1194 694" anchor="top right"/>
- <Shape id="line35" class="line_2" position="absolute 639 316 1194 322" anchor="top right"/>
- <Shape id="line10" class="line_2" position="absolute 639 190 1194 196" anchor="top right"/>
- <Shape id="line9" class="line_2" position="absolute 639 264 1194 270" anchor="top right"/>
- <Shape id="line40" class="line_2" position="absolute 639 394 1194 400" anchor="top right"/>
- <Shape id="line8" class="line_2" position="absolute 639 238 1194 244" anchor="top right"/>
- <Div id="grp_sea" anchor="left top right" taborder="14" class="div_SA2" position="absolute 0 51 1195 131">
- <Layouts>
- <Layout>
- <Static id="caption2" text="자산구분 :" class="search_name" position="absolute 15 32 101 49"/>
- <Button id="btn_search" taborder="21" text="조회" class="btn1" position="absolute 1124 30 1180 52" anchor="top right" onclick="grp_sea_btn_search_onclick"/>
- <Shape id="line13" linetype="vertical" class="line_4" position="absolute 1106 9 1112 77" anchor="top right"/>
- <Button id="btn_reqdeptcd" taborder="22" class="icon_search" position="absolute 441 57 457 73" onclick="grp_sea_btn_reqdeptcd_onclick"/>
- <Edit id="ipt_reqdeptcdS" taborder="23" class="input_default" position="absolute 360 55 438 74" autoselect="true" onkeydown="grp_sea_ipt_reqdeptcdS_onkeydown"/>
- <Edit id="ipt_reqdeptnmS" taborder="24" readonly="true" class="output" position="absolute 460 55 620 74"/>
- <Static id="caption3" text="의뢰부서 :" class="search_name" position="absolute 268 56 355 73"/>
- <Static id="cap_reqdd1S" text="의뢰일자 :" class="search_name" position="absolute 268 5 354 22"/>
- <Calendar id="ipt_reqdd1S" taborder="25" class="input_essential" position="absolute 360 4 463 23" autoselect="true"/>
- <Calendar id="ipt_reqdd2S" taborder="26" class="input_essential" position="absolute 480 4 583 23" autoselect="true"/>
- <Button id="btn_chrgpsnidS" taborder="27" class="icon_search" position="absolute 814 58 830 74" onclick="grp_sea_btn_chrgpsnidS_onclick"/>
- <Static id="caption20" text="검 토 자 :" class="search_name" position="absolute 651 57 738 74"/>
- <Edit id="ipt_chrgpsnidS" taborder="28" class="input_default" position="absolute 733 56 811 75" autoselect="true" onkeydown="grp_sea_ipt_chrgpsnidS_onkeydown"/>
- <Edit id="ipt_chrgpsnnmS" taborder="29" readonly="true" class="output" position="absolute 833 56 945 75"/>
- <Combo id="cmb_fixtrseqmtflag" taborder="30" innerdataset="@ds_init_goodflag" codecolumn="value" datacolumn="label" class="combo_essential" position="absolute 105 31 245 50" onitemchanged="grp_sea_cmb_fixtrseqmtflag_onitemchanged"/>
- <Combo id="cmb_instcd" taborder="31" class="combo_essential" position="absolute 105 5 245 24" onitemchanged="grp_sea_cmb_instcd_onitemchanged"/>
- <Static id="caption11" text="기관코드 :" class="search_name" position="absolute 15 6 101 23"/>
- <Static id="caption12" text="~" position="absolute 465 4 477 24"/>
- <Static id="caption30" text="수리형태 :" class="search_name" position="absolute 650 6 739 23"/>
- <Combo id="cmb_rpirflag2_search" taborder="32" position="absolute 732 6 830 25"/>
- <Static id="caption34" text="검수여부 :" class="search_name" position="absolute 769 32 860 49"/>
- <Static id="caption35" text="결재여부 :" class="search_name" position="absolute 650 31 741 48"/>
- <CheckBox id="chk_chkyn" taborder="33" position="absolute 859 33 879 48" truevalue="Y" falsevalue="N" onclick="grp_sea_chk_chkyn_onclick"/>
- <CheckBox id="chk_acptyn" taborder="34" position="absolute 732 32 752 47" truevalue="Y" falsevalue="N" onclick="grp_sea_chk_acptyn_onclick"/>
- <Static id="caption22" text="진행상태 :" class="search_name" position="absolute 865 9 966 26"/>
- <Combo id="cmb_exedeptcd" taborder="35" codecolumn="codecolumn" datacolumn="datacolumn" visible="false" position="absolute 1079 57 1179 76">
- <Dataset id="innerdataset">
- <ColumnInfo>
- <Column id="codecolumn"/>
- <Column id="datacolumn"/>
- </ColumnInfo>
- <Rows>
- <Row>
- <Col id="codecolumn"/>
- <Col id="datacolumn">전체</Col>
- </Row>
- <Row>
- <Col id="codecolumn">4090500000</Col>
- <Col id="datacolumn">의공학과</Col>
- </Row>
- <Row>
- <Col id="codecolumn">4020334000</Col>
- <Col id="datacolumn">물류파트</Col>
- </Row>
- <Row>
- <Col id="codecolumn">4130100000</Col>
- <Col id="datacolumn">정보통신실</Col>
- </Row>
- </Rows>
- </Dataset>
- </Combo>
- <Edit id="ipt_fixasetcd_search" taborder="36" class="input_default" position="absolute 105 56 245 75" onkeyup="grp_sea_ipt_fixasetcd_search_onkeyup" autoselect="true"/>
- <Static id="caption38" text="자산코드 :" class="search_name" position="absolute 16 57 104 74"/>
- <cp_checkboxList id="chk_workstatmulti" titletext="CheckBox List" taborder="37" scrollbars="none" position="absolute 950 6 1099 52" style="background:transparent; " col="1" row="1" cellspacing="2" vcellspacing="0" itemWidth="100" itemHeight="20" overflow="visible"/>
- <Static id="caption42" text="완료일자 :" class="search_name" position="absolute 268 31 354 48"/>
- <Calendar id="input2" taborder="38" class="input_essential" position="absolute 360 29 463 48" autoselect="true"/>
- <Static id="caption41" text="~" position="absolute 465 29 477 49"/>
- <Calendar id="ipt_rpirenddd2" taborder="39" class="input_essential" position="absolute 480 29 583 48" autoselect="true"/>
- </Layout>
- </Layouts>
- </Div>
- <Static id="caption1" text="의뢰내역" class="tit_2" position="absolute 0 147 157 168"/>
- <Shape id="line2" class="line_10" position="absolute 0 163 634 169" anchor="left top right"/>
- <Static id="caption60" text="서류상태" class="cell_1" position="absolute 639 502 729 525" anchor="top right"/>
- <Combo id="cmb_docustat" taborder="15" class="combo_default" enable="false" position="absolute 731 504 846 523" anchor="top right"/>
- <Static id="caption4" text="수리상태" class="cell_1" position="absolute 900 502 990 525" anchor="top right"/>
- <Static id="caption32" text="의뢰번호" class="cell_1" position="absolute 639 320 729 343" anchor="top right"/>
- <Static id="caption5" text="의뢰부서" class="cell_1" position="absolute 639 294 729 317" anchor="top right"/>
- <Edit id="ipt_depthngnm" taborder="16" class="output" position="absolute 731 296 854 315" anchor="top right" autoselect="true" readonly="true"/>
- <Static id="caption7" text="완료인수일" class="cell_1" position="absolute 639 268 729 291" anchor="top right"/>
- <Edit id="ipt_installplcecd" taborder="17" class="output" position="absolute 947 270 1053 289" anchor="top right" autoselect="true" readonly="true"/>
- <Static id="caption8" text="설치장소" class="cell_1" position="absolute 855 268 945 291" anchor="top right"/>
- <Edit id="ipt_reqtel" taborder="18" class="output" position="absolute 947 296 1053 315" anchor="top right" autoselect="true" readonly="true"/>
- <Static id="cap_reqtel" text="의뢰자 연락처" class="cell_1" position="absolute 855 294 945 317" anchor="top right"/>
- <Shape id="line11" linetype="vertical" class="line_2" position="absolute 639 756 1194 762" anchor="top right"/>
- <Static id="caption18" text="수리내역" class="cell_1" position="absolute 639 649 729 790" anchor="top right"/>
- <MaskEdit id="ipt_genrdd" taborder="19" type="string" mask="####-##-##" maskchar=" " trimtype="both" class="output" position="absolute 1040 323 1192 342" anchor="top right" style=":disabled {align:center middle;}" autoselect="true" displaynulltext=" " readonly="true"/>
- <TextArea id="txt_lastrpirrslt" taborder="20" class="output" position="absolute 731 649 1192 790" anchor="top right" acceptstab="true" wordwrap="word" readonly="true"/>
- <Static id="caption19" position="absolute 295 438 395 458"/>
- <Static id="caption23" text="인수자" class="cell_1" position="absolute 855 242 945 265" anchor="top right"/>
- <Static id="caption26" text="의뢰자" class="cell_1" position="absolute 639 242 729 265" anchor="top right"/>
- <Static id="caption27" text="자산코드" class="cell_1" position="absolute 639 168 729 191" anchor="top right"/>
- <Edit id="ipt_fixasetcd" taborder="21" position="absolute 731 170 855 189" anchor="top right" autoselect="true" class="output" readonly="true"/>
- <Edit id="ipt_fixasetnm" taborder="22" class="output" position="absolute 731 218 1192 237" anchor="top right" autoselect="true" readonly="true"/>
- <Edit id="ipt_deptacptpsnnm" taborder="23" class="output" position="absolute 947 244 1053 263" anchor="top right" autoselect="true" readonly="true"/>
- <Edit id="ipt_reqpsnnm" taborder="24" class="output" position="absolute 731 244 854 263" anchor="top right" autoselect="true" readonly="true"/>
- <Edit id="ipt_deptacptdd" taborder="25" class="output" position="absolute 731 270 854 289" anchor="top right" autoselect="true" readonly="true"/>
- <Edit id="ipt_installplcenm" taborder="26" class="output" position="absolute 1055 270 1192 289" anchor="top right" autoselect="true" readonly="true"/>
- <Static id="caption31" text="고장유형" class="cell_1" position="absolute 639 346 729 369" anchor="top right"/>
- <Static id="caption10" text="수리형태" class="cell_1" position="absolute 855 346 945 369" anchor="top right"/>
- <Combo id="cmb_workstat" taborder="27" class="combo_default" enable="false" position="absolute 992 504 1107 523" anchor="top right"/>
- <Button id="btn_acptpsnid" taborder="29" class="icon_search" enable="false" visible="false" position="absolute 811 375 827 391" anchor="top right" onclick="btn_acptpsnid_onclick"/>
- <Static id="caption24" text="비고" class="cell_1" position="absolute 639 398 729 421" anchor="top right"/>
- <Static id="cap_acptpsnid" text="접수자" class="cell_1" visible="false" position="absolute 639 372 729 395" anchor="top right"/>
- <TextArea id="txt_cmt" taborder="31" class="output" enable="false" position="absolute 731 400 1192 419" anchor="top right" acceptstab="true"/>
- <TextArea id="txt_hdrncspec" taborder="32" class="output" position="absolute 731 529 1192 647" anchor="top right" wordwrap="word" acceptstab="true" readonly="true"/>
- <Static id="cap_genrdd" text="발생일자" class="cell_1" position="absolute 948 320 1038 343" anchor="top right"/>
- <Edit id="ipt_reqno" taborder="33" class="output" position="absolute 856 322 945 341" anchor="top right" autoselect="true" readonly="true"/>
- <Radio id="rdo_useyn" taborder="36" columncount="2" rowcount="0" innerdataset="@ds_init_useyn" codecolumn="value" datacolumn="label" enable="false" visible="false" position="absolute 1067 564 1157 583" anchor="top right"/>
- <Static id="caption14" text="수리구분" class="cell_1" visible="false" position="absolute 1000 561 1063 584" anchor="top right"/>
- <Static id="cap_acptdd" text="납품일자" class="cell_1" visible="false" position="absolute 1000 541 1063 564" anchor="top right"/>
- <Edit id="ipt_acptdd" taborder="37" class="input_essential" enable="false" visible="false" position="absolute 1067 542 1130 561" anchor="top right" autoselect="true"/>
- <MaskEdit id="ipt_reqdd" taborder="38" type="string" mask="####-##-##" maskchar=" " trimtype="both" class="output" position="absolute 731 322 854 341" anchor="top right" style=":disabled {align:center middle;}" autoselect="true" displaynulltext=" " readonly="true"/>
- <Shape id="line5" class="line_2" position="absolute 638 368 1193 374" anchor="top right"/>
- <Button id="btn_chrgpsnid" taborder="39" class="icon_search" enable="false" position="absolute 831 428 847 444" anchor="top right" onclick="btn_chrgpsnid_onclick"/>
- <Edit id="ipt_chrgpsnid" taborder="40" class="input_essential" enable="false" position="absolute 731 426 828 445" anchor="top right" autoselect="true" onkeydown="ipt_chrgpsnid_onkeydown"/>
- <Edit id="ipt_chrgpsnnm" taborder="41" class="input_search" enable="false" position="absolute 849 426 944 445" anchor="top right" autoselect="true"/>
- <Edit id="ipt_chrgtel" taborder="42" class="input_essential" enable="false" position="absolute 1038 426 1192 445" anchor="top right" autoselect="true"/>
- <Shape id="line6" class="line_2" position="absolute 637 472 1192 478" anchor="top right"/>
- <Button id="btn_excel" taborder="43" text="Excel" class="btn5" position="absolute 1142 144 1195 163" anchor="top right" onclick="btn_excel_onclick"/>
- <MaskEdit id="ipt_flwgrnttermto" taborder="44" type="string" mask="####-##-##" maskchar=" " trimtype="both" class="output" position="absolute 876 452 1001 471" anchor="top right" style=":disabled {align:center middle;}" autoselect="true" displaynulltext=" " readonly="true"/>
- <MaskEdit id="ipt_flwgrnttermfr" taborder="45" type="string" mask="####-##-##" maskchar=" " trimtype="both" class="output" position="absolute 731 452 856 471" anchor="top right" style=":disabled {align:center middle;}" autoselect="true" displaynulltext=" " readonly="true"/>
- <MaskEdit id="ipt_possnamt" taborder="46" mask="#,###" class="output" position="absolute 731 478 897 497" anchor="top right" autoselect="true" readonly="true"/>
- <Edit id="ipt_agency" taborder="47" class="input_default" visible="false" position="absolute 1074 587 1088 606" anchor="top right" autoselect="true"/>
- <MaskEdit id="ipt_possndd" taborder="48" type="string" mask="####-##-##" maskchar=" " trimtype="both" class="output" position="absolute 1067 453 1192 472" anchor="top right" style=":disabled {align:center middle;}" autoselect="true" displaynulltext=" " readonly="true"/>
- <Edit id="ipt_agencycntctel" taborder="49" class="input_default" visible="false" position="absolute 1167 588 1180 607" anchor="top right" autoselect="true"/>
- <Grid id="grd_erfehemhtlist" taborder="50" binddataset="ds_main_grid_erfehemhtlist" useinputpanel="false" visible="false" position="absolute 10 403 630 538">
- <Formats>
- <Format id="default">
- <Columns>
- <Column size="100"/>
- <Column size="50"/>
- <Column size="120"/>
- <Column size="85"/>
- <Column size="120"/>
- <Column size="120"/>
- <Column size="150"/>
- <Column size="110"/>
- <Column size="120"/>
- <Column size="100"/>
- <Column size="80"/>
- <Column size="80"/>
- <Column size="80"/>
- <Column size="100"/>
- <Column size="120"/>
- <Column size="120"/>
- <Column size="100"/>
- <Column size="80"/>
- <Column size="80"/>
- <Column size="80"/>
- <Column size="80"/>
- <Column size="80"/>
- <Column size="80"/>
- <Column size="100"/>
- <Column size="80"/>
- <Column size="80"/>
- <Column size="100"/>
- <Column size="100"/>
- <Column size="180"/>
- <Column size="180"/>
- <Column size="100"/>
- <Column size="80"/>
- </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="S/N"/>
- <Cell col="9" text="취득일자"/>
- <Cell col="10" text="의뢰인명"/>
- <Cell col="11" text="승인자"/>
- <Cell col="12" text="전화번호"/>
- <Cell col="13" text="제조원명"/>
- <Cell col="14" text="공급처명"/>
- <Cell col="15" text="수리거래처명"/>
- <Cell col="16" text="수리진행상태"/>
- <Cell col="17" text="담당자명"/>
- <Cell col="18" text="청구구분"/>
- <Cell col="19" text="고장구분"/>
- <Cell col="20" text="수리형태"/>
- <Cell col="21" text="수리시간"/>
- <Cell col="22" text="견적금액"/>
- <Cell col="23" text="부품사용금액"/>
- <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="구입금액"/>
- </Band>
- <Band id="body">
- <Cell displaytype="date" text="bind:reqdd" calendardisplaynulltype="none"/>
- <Cell col="1" text="bind:reqno"/>
- <Cell col="2" text="bind:depthngnm"/>
- <Cell col="3" text="bind:acntnm"/>
- <Cell col="4" text="bind:fixasetcd"/>
- <Cell col="5" text="bind:oldcd"/>
- <Cell col="6" text="bind:fixasetnm"/>
- <Cell col="7" text="bind:goodmodel"/>
- <Cell col="8" text="bind:mngtno"/>
- <Cell col="9" displaytype="date" text="bind:possndd" calendardisplaynulltype="none"/>
- <Cell col="10" text="bind:reqpsnnm"/>
- <Cell col="11" text="bind:deptaprvpsnnm"/>
- <Cell col="12" text="bind:reqtel"/>
- <Cell col="13" text="bind:prodcmpynm"/>
- <Cell col="14" text="bind:suplplcenm"/>
- <Cell col="15" text="bind:agency"/>
- <Cell col="16" displaytype="combo" edittype="combo" text="bind:workstat"/>
- <Cell col="17" text="bind:chrgpsnnm"/>
- <Cell col="18" displaytype="combo" edittype="combo" text="bind:useyn"/>
- <Cell col="19" displaytype="combo" edittype="combo" text="bind:rpirflag1"/>
- <Cell col="20" displaytype="combo" edittype="combo" text="bind:rpirflag2"/>
- <Cell col="21" text="bind:rpirtm" mask="expr:utlf_isNull(rpirtm) ? '' : '##:##'"/>
- <Cell col="22" displaytype="number" text="bind:estimateamt" mask="#,###"/>
- <Cell col="23" displaytype="number" text="bind:rfehdabptotal" mask="#,###"/>
- <Cell col="24" displaytype="number" text="bind:reductionamt" mask="#,###"/>
- <Cell col="25" displaytype="number" text="bind:rpiramt" mask="#,###"/>
- <Cell col="26" displaytype="date" text="bind:rpirenddd" calendardisplaynulltype="none"/>
- <Cell col="27" displaytype="date" text="bind:sanctdd" calendardisplaynulltype="none"/>
- <Cell col="28" text="bind:hdrncspec"/>
- <Cell col="29" text="bind:lastrpirrslt"/>
- <Cell col="30" displaytype="combo" edittype="combo" text="bind:acptflag"/>
- <Cell col="31" displaytype="number" text="bind:possnamt"/>
- </Band>
- </Format>
- </Formats>
- </Grid>
- <MaskEdit id="ipt_rpiramt" taborder="51" mask="#,###" class="output" position="absolute 992 479 1192 498" anchor="top right" autoselect="true" readonly="true"/>
- <Static id="cap_chrgpsnid" text="검토자" class="cell_1" position="absolute 639 424 729 447" anchor="top right"/>
- <Static id="cap_chrgtel" text="검토자 연락처" class="cell_1" position="absolute 946 424 1036 447" anchor="top right"/>
- <Shape id="line7" class="line_2" position="absolute 639 498 1194 504" anchor="top right"/>
- <Static id="caption15" text="하자보수기간" class="cell_1" position="absolute 639 450 729 473" anchor="top right"/>
- <Static id="caption17" text="취득일" class="cell_1" position="absolute 1005 450 1065 473" anchor="top right"/>
- <Shape id="line12" class="line_2" position="absolute 640 524 1195 530" anchor="top right"/>
- <Static id="caption29" text="확정금액" class="cell_1" position="absolute 900 476 990 499" anchor="top right"/>
- <Static id="caption21" text="구입금액" class="cell_1" position="absolute 639 476 729 499" anchor="top right"/>
- <Static id="caption25" text="A/S대리점" class="cell_1" visible="false" position="absolute 997 586 1071 609" anchor="top right"/>
- <Static id="caption28" text="A/S연락처" class="cell_1" visible="false" position="absolute 1092 586 1165 609" anchor="top right"/>
- <Shape id="line17" class="line_2" position="absolute 640 645 1195 651" anchor="top right"/>
- <Static id="caption33" text="의뢰내역" class="cell_1" position="absolute 639 528 729 646" anchor="top right"/>
- <Shape id="line24" class="line_3" position="absolute 639 790 1194 796" anchor="top right"/>
- <Edit id="ipt_mngersanctid" taborder="53" class="input_default" position="absolute 984 373 1064 392" anchor="top right" autoselect="true" onkeydown="ipt_mngersanctid_onkeydown"/>
- <Button id="btn_mngersanctid" taborder="54" class="icon_search" position="absolute 1068 374 1084 390" anchor="top right" onclick="btn_mngersanctid_onclick"/>
- <Edit id="ipt_mngersanctnm" taborder="55" class="input_default" enable="false" position="absolute 1087 373 1167 392" anchor="top right" autoselect="true"/>
- <Static id="caption36" text="과장 결재" class="cell_1" position="absolute 916 372 981 395" anchor="top right"/>
- <Static id="caption37" text="실장 결재" class="cell_1" position="absolute 639 372 729 395" anchor="top right"/>
- <Edit id="ipt_deprtmangrsanctid" taborder="56" class="input_default" position="absolute 731 374 811 393" anchor="top right" autoselect="true" onkeydown="ipt_deprtmangrsanctid_onkeydown"/>
- <Edit id="ipt_goodspec" taborder="57" class="output" position="absolute 948 170 1192 189" anchor="top right" autoselect="true" readonly="true"/>
- <Edit id="ipt_goodmodel" taborder="58" class="input_default" visible="false" position="absolute 1040 170 1187 189" anchor="top right" autoselect="true" readonly="true"/>
- <Static id="caption39" text="규격" class="cell_1" position="absolute 856 168 946 191" anchor="top right"/>
- <Static id="caption40" text="자산명" class="cell_1" position="absolute 639 216 729 239" anchor="top right"/>
- <TextArea id="txt_rpirspec" taborder="59" wordwrap="word" visible="false" position="absolute 731 654 1192 783" anchor="top right" acceptstab="true" readonly="true"/>
- <Button id="button4" taborder="60" text="(미)정산현황" class="btn6" position="absolute 151 26 259 48" onclick="button4_onclick"/>
- <Button id="button3" taborder="61" text="미처리내역" class="btn2" visible="false" position="absolute 293 26 381 48" onclick="button3_onclick"/>
- <Grid id="grd_prttemp" taborder="62" position="absolute 201 590 401 672" binddataset="ds_main_grid_prttemp" visible="false">
- <Formats>
- <Format id="default">
- <Columns>
- <Column size="40"/>
- <Column size="40"/>
- <Column size="40"/>
- <Column size="40"/>
- <Column size="40"/>
- <Column size="40"/>
- <Column size="40"/>
- <Column size="40"/>
- </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="견적금액"/>
- </Band>
- <Band id="body">
- <Cell text="bind:fixasetcd"/>
- <Cell col="1" text="bind:fixasetnm"/>
- <Cell col="2" text="bind:depthngnm"/>
- <Cell col="3" text="bind:rpirflag2"/>
- <Cell col="4" text="bind:reqdd"/>
- <Cell col="5" text="bind:rpirenddd"/>
- <Cell col="6" text="bind:agency"/>
- <Cell col="7" text="bind:estimateamt"/>
- </Band>
- </Format>
- </Formats>
- </Grid>
- <Static id="caption00" text="S/N" class="cell_1" position="absolute 948 192 1038 215" anchor="top right"/>
- <Edit id="ipt_mngtno" taborder="63" readonly="true" autoselect="true" class="output" position="absolute 1040 195 1192 214" anchor="top right"/>
- <Static id="caption02" text="제조사" class="cell_1" position="absolute 639 192 729 215" anchor="top right"/>
- <Edit id="ipt_prodcmpynm" taborder="64" readonly="true" autoselect="true" class="output" position="absolute 731 195 946 214" anchor="top right"/>
- <PopupMenu id="pMenu_discardmenu" innerdataset="@ds_discard_menu" idcolumn="func" captioncolumn="name" levelcolumn="lev" position="absolute 10 809 80 831" style="buttonsize:-1;" onmenuclick="pMenu_discardmenu_onmenuclick"/>
- <Div id="div_discard" taborder="65" position="absolute 45 203 624 401" style="background:white;border:1 solid #808080ff ;" visible="false">
- <Layouts>
- <Layout>
- <Static id="cap_rpirspec" text="수리내역" class="cell_1" position="absolute 10 35 110 106" anchor="default"/>
- <TextArea id="txt_rpirspec" taborder="1" wordwrap="word" autoselect="true" acceptstab="true" class="input_essential" position="absolute 115 37 567 104" anchor="default" maxlength="333"/>
- <Static id="cap_chrgtel" text="전화번호" class="cell_1" position="absolute 10 109 110 132" anchor="default"/>
- <Shape id="line3" class="line_2" position="absolute 10 105 567 111" anchor="default"/>
- <Edit id="ipt_chrgtel" taborder="2" autoselect="true" class="input_essential" position="absolute 115 112 225 131" anchor="default" maxlength="14" inputtype="number"/>
- <Shape id="line22" class="line_3" position="absolute 10 131 567 137" anchor="default"/>
- <Button id="btn_discard" taborder="3" text="일괄처리" class="btn3" position="absolute 430 154 506 176" anchor="default" onclick="div_discard_btn_discard_onclick"/>
- <Button id="btn_cancel" taborder="4" text="취소" class="btn3" position="absolute 511 154 567 176" anchor="default" onclick="div_discard_btn_cancel_onclick"/>
- <Shape id="line00" class="line_2" position="absolute 10 31 567 37" anchor="default"/>
- <Static id="cap_rpirflag2" text="수리형태" class="cell_1" position="absolute 10 9 110 32" anchor="default"/>
- <Combo id="cmb_rpirflag2" taborder="5" class="input_default" position="absolute 115 11 228 30" codecolumn="codecolumn" datacolumn="datacolumn" index="0" value="5" text="폐기">
- <Dataset id="innerdataset">
- <ColumnInfo>
- <Column id="codecolumn" size="256"/>
- <Column id="datacolumn" size="256"/>
- </ColumnInfo>
- <Rows>
- <Row>
- <Col id="codecolumn">5</Col>
- <Col id="datacolumn">폐기</Col>
- </Row>
- <Row>
- <Col id="codecolumn">4</Col>
- <Col id="datacolumn">외주</Col>
- </Row>
- <Row>
- <Col id="codecolumn">1</Col>
- <Col id="datacolumn">무비용</Col>
- </Row>
- </Rows>
- </Dataset>
- </Combo>
- </Layout>
- </Layouts>
- </Div>
- </Layout>
- </Layouts>
- <Objects>
- <Dataset id="ds_send" firefirstcount="0" firenextcount="0" useclientlayout="false" updatecontrol="true" enableevent="true" loadkeymode="keep" loadfiltermode="keep" reversesubsum="false" oncolumnchanged="ds_send_oncolumnchanged">
- <ColumnInfo>
- <Column id="instcd" type="STRING" size="256"/>
- <Column id="fixtrseqmtflag" type="STRING" size="256"/>
- <Column id="reqdd1" type="STRING" size="256"/>
- <Column id="reqdd2" type="STRING" size="256"/>
- <Column id="chrgpsnid" type="STRING" size="256"/>
- <Column id="chrgpsnnm" type="STRING" size="256"/>
- <Column id="reqdeptcd" type="STRING" size="256"/>
- <Column id="reqdeptnm" type="STRING" size="256"/>
- <Column id="deptaprvyn" type="STRING" size="256"/>
- <Column id="condflag" type="STRING" size="256"/>
- <Column id="chrgpsnid" type="STRING" size="256"/>
- <Column id="chrgpsnnm" type="STRING" size="256"/>
- <Column id="rpirflag2" type="STRING" size="256"/>
- <Column id="workstatmulti" type="STRING" size="256"/>
- <Column id="bizscrnid" type="STRING" size="256"/>
- <Column id="workstat" type="STRING" size="256"/>
- <Column id="chkyn" type="STRING" size="256"/>
- <Column id="acptyn" type="STRING" size="256"/>
- <Column id="execdeptcd" type="STRING" size="256"/>
- <Column id="fixasetcd" type="STRING" size="256"/>
- <Column id="rpirenddd1" type="STRING" size="256"/>
- <Column id="rpirenddd2" type="STRING" size="256"/>
- <Column id="rpirenmm" type="STRING" size="256"/>
- <Column id="lastrpirenmm" type="STRING" size="256"/>
- <Column id="screen_id" type="STRING" size="256"/>
- <Column id="purflag" type="STRING" size="256"/>
- </ColumnInfo>
- <Rows>
- <Row>
- <Col id="instcd"/>
- <Col id="fixtrseqmtflag"/>
- <Col id="reqdd1"/>
- <Col id="reqdd2"/>
- <Col id="chrgpsnid"/>
- <Col id="chrgpsnnm"/>
- <Col id="reqdeptcd"/>
- <Col id="reqdeptnm"/>
- <Col id="deptaprvyn"/>
- <Col id="condflag">Y</Col>
- <Col id="chrgpsnid"/>
- <Col id="chrgpsnnm"/>
- <Col id="rpirflag2"/>
- <Col id="workstatmulti"/>
- <Col id="bizscrnid">SMRFE00900</Col>
- <Col id="workstat"/>
- <Col id="chkyn"/>
- <Col id="acptyn"/>
- <Col id="execdeptcd"/>
- <Col id="fixasetcd"/>
- <Col id="rpirenddd1"/>
- <Col id="rpirenddd2"/>
- <Col id="rpirenmm"/>
- <Col id="lastrpirenmm"/>
- <Col id="screen_id">SMRFE00900</Col>
- </Row>
- </Rows>
- </Dataset>
- <Dataset id="ds_main_grid_rfehemhtlist" firefirstcount="0" firenextcount="0" useclientlayout="false" updatecontrol="true" enableevent="true" loadkeymode="keep" loadfiltermode="keep" reversesubsum="false" oncolumnchanged="ds_main_grid_rfehemhtlist_oncolumnchanged">
- <ColumnInfo>
- <Column id="reqdd" type="STRING" size="256" sumtext=" 의뢰일자* "/>
- <Column id="reqno" type="STRING" size="256" sumtext=" 의뢰번호 "/>
- <Column id="reqdeptcd" type="STRING" size="256" sumtext=" 의뢰부서 "/>
- <Column id="mngtno" type="STRING" size="256" sumtext=" S/N(관리번호) "/>
- <Column id="fixasetnm" type="STRING" size="256" sumtext=" 고정자산코드명 "/>
- <Column id="workstat" type="STRING" size="256" sumtext=" 작업상태* "/>
- <Column id="deptaprvyn" type="STRING" size="256" sumtext=" 부서승인여부 "/>
- <Column id="fixasetcd" type="STRING" size="256" sumtext=" 고정자산코드*- "/>
- <Column id="chrgpsnnm" type="STRING" size="256" sumtext=" 담당자명 "/>
- <Column id="acptdd" type="STRING" size="256" sumtext=" 접수일자 "/>
- <Column id="sanctyn" type="STRING" size="256" sumtext=" 결재여부 "/>
- <Column id="chrgpsncmt" type="STRING" size="256" sumtext=" 담당자comment "/>
- <Column id="nonworkdayno" type="STRING" size="256" sumtext=" 미가동일수 "/>
- <Column id="acptflag" type="STRING" size="256" sumtext=" 접수구분 "/>
- <Column id="instcd" type="STRING" size="256" sumtext=" 기관코드 "/>
- <Column id="fixtrseqmtflag" type="STRING" size="256" sumtext=" 비품_장비구분 "/>
- <Column id="acptpsnid" type="STRING" size="256" sumtext=" 접수자ID "/>
- <Column id="acptpsnnm" type="STRING" size="256" sumtext=" 접수자이름 "/>
- <Column id="agency" type="STRING" size="256" sumtext=" A/S대리점 "/>
- <Column id="agencycntctel" type="STRING" size="256" sumtext=" A/S연락처 "/>
- <Column id="bugtyy" type="STRING" size="256" sumtext=" 예산년도 "/>
- <Column id="chrgtel" type="STRING" size="256" sumtext=" 담당자전화번호(사내) "/>
- <Column id="deptacptdd" type="STRING" size="256" sumtext=" 완료인수일 "/>
- <Column id="deptacptpsnnm" type="STRING" size="256" sumtext=" 인수자 이름 "/>
- <Column id="depthngnm" type="STRING" size="256" sumtext=" 의뢰부서명 "/>
- <Column id="flwgrnttermfr" type="STRING" size="256" sumtext=" 하자보수기간from "/>
- <Column id="flwgrnttermto" type="STRING" size="256" sumtext=" 하자보수기간to "/>
- <Column id="genrdd" type="STRING" size="256" sumtext=" 발생일자 "/>
- <Column id="goodmodel" type="STRING" size="256" sumtext=" 물품모델 "/>
- <Column id="goodspec" type="STRING" size="256" sumtext=" 물품스펙 "/>
- <Column id="installplcecd" type="STRING" size="256" sumtext=" 설치장소CODE "/>
- <Column id="installplcenm" type="STRING" size="256" sumtext=" 설치장소 "/>
- <Column id="possnamt" type="STRING" size="256" sumtext=" 구입금액 "/>
- <Column id="possndd" type="STRING" size="256" sumtext=" 취득일 "/>
- <Column id="reqpsnnm" type="STRING" size="256" sumtext=" 의뢰자이름 "/>
- <Column id="reqtel" type="STRING" size="256" sumtext=" 의뢰자 연락처 "/>
- <Column id="rpiramt" type="STRING" size="256" sumtext=" 수리비 "/>
- <Column id="stdysubjnm" type="STRING" size="256" sumtext=" 연구과제명 "/>
- <Column id="chrgpsnid" type="STRING" size="256" sumtext=" 담당자ID(수리담당자) "/>
- <Column id="stdysubjno" type="STRING" size="256" sumtext=" 연구과제code "/>
- <Column id="bugtcd" type="STRING" size="256" sumtext=" 예산계정 "/>
- <Column id="rpirflag1" type="STRING" size="256" sumtext=" 고장유형 "/>
- <Column id="rpirflag2" type="STRING" size="256" sumtext=" 수리형태 "/>
- <Column id="endflag" type="STRING" size="256" sumtext=" 완료구분 "/>
- <Column id="useyn" type="STRING" size="256" sumtext=" 청구구분 "/>
- <Column id="cmt" type="STRING" size="256" sumtext=" 비고 "/>
- <Column id="hdrncspec" type="STRING" size="256" sumtext=" 고장내역(의뢰내역) "/>
- <Column id="lastrpirrslt" type="STRING" size="256" sumtext=" 최종수리결과 "/>
- <Column id="rpirspec" type="STRING" size="256" sumtext=" 수리내역 "/>
- <Column id="bizscrnid" type="STRING" size="256" sumtext=" 화면id "/>
- <Column id="deptaprvpsnnm" type="STRING" size="256" sumtext=" 승인자 "/>
- <Column id="estimateamt" type="STRING" size="256" sumtext=" 견적금액 "/>
- <Column id="oldcd" type="STRING" size="256" sumtext=" 구코드번호 "/>
- <Column id="prodcmpynm" type="STRING" size="256" sumtext=" 제조원명 "/>
- <Column id="reductionamt" type="STRING" size="256" sumtext=" 절감액 "/>
- <Column id="rfehdabptotal" type="STRING" size="256" sumtext=" 부품사용금액 "/>
- <Column id="rpirenddd" type="STRING" size="256" sumtext=" 수리완료일 "/>
- <Column id="rpirtm" type="STRING" size="256" sumtext=" 수리시간 "/>
- <Column id="sanctdd" type="STRING" size="256" sumtext=" 팀장결재일 "/>
- <Column id="suplplcenm" type="STRING" size="256" sumtext=" 거래처명 "/>
- <Column id="suplplcecd" type="STRING" size="256" sumtext=" 거래처코드 "/>
- <Column id="mngersanctyn" type="STRING" size="256" sumtext=" 과장승인여부 "/>
- <Column id="mngersanctdd" type="STRING" size="256" sumtext=" 과장승인일자 "/>
- <Column id="mngersanctid" type="STRING" size="256" sumtext=" 과장승인자ID "/>
- <Column id="mngersanctnm" type="STRING" size="256" sumtext=" 과장승인자 "/>
- <Column id="chkpsn" type="STRING" size="256" sumtext=" 검수자ID "/>
- <Column id="chkpsnnm" type="STRING" size="256" sumtext=" 검수자명 "/>
- <Column id="deprtmangrsanctyn" type="STRING" size="256" sumtext=" 실장승인여부 "/>
- <Column id="deprtmangrsanctdd" type="STRING" size="256" sumtext=" 실장승인일자 "/>
- <Column id="deprtmangrsanctid" type="STRING" size="256" sumtext=" 실장승인자ID "/>
- <Column id="deprtmangrsanctnm" type="STRING" size="256" sumtext=" 실장승인자 "/>
- <Column id="execdept" type="STRING" size="256" sumtext=" 담당부서 "/>
- <Column id="execdeptnm" type="STRING" size="256" sumtext=" 담당부서명 "/>
- <Column id="docustat" type="STRING" size="256" sumtext=" 서류상태 "/>
- <Column id="rpirendyn" type="STRING" size="256" sumtext=" 수리완료여부 "/>
- <Column id="acntcd" type="STRING" size="256" sumtext=" 계정과목코드 "/>
- <Column id="acntnm" type="STRING" size="256" sumtext=" 계정과목명 "/>
- <Column id="purccnsttndd" type="STRING" size="256" sumtext=" 구매품의일자 "/>
- <Column id="purccnsttnno" type="STRING" size="256" sumtext=" 구매품의번호 "/>
- </ColumnInfo>
- </Dataset>
- <Dataset id="ds_init_goodflag" firefirstcount="0" firenextcount="0" useclientlayout="false" updatecontrol="true" enableevent="true" loadkeymode="keep" loadfiltermode="keep" reversesubsum="false">
- <ColumnInfo>
- <Column id="label" type="STRING" size="256"/>
- <Column id="value" type="STRING" size="256"/>
- </ColumnInfo>
- <Rows>
- <Row>
- <Col id="label">전체</Col>
- <Col id="value"/>
- </Row>
- <Row>
- <Col id="label">비품</Col>
- <Col id="value">GE</Col>
- </Row>
- <Row>
- <Col id="label">의료장비</Col>
- <Col id="value">EQ</Col>
- </Row>
- </Rows>
- </Dataset>
- <Dataset id="ds_main_component_rfehemhtlist" firefirstcount="0" firenextcount="0" useclientlayout="false" updatecontrol="true" enableevent="true" loadkeymode="keep" loadfiltermode="keep" reversesubsum="false" oncolumnchanged="ds_main_component_rfehemhtlist_oncolumnchanged">
- <ColumnInfo>
- <Column id="reqdd" type="STRING" size="256" sumtext=" 의뢰일자* "/>
- <Column id="reqno" type="STRING" size="256" sumtext=" 의뢰번호 "/>
- <Column id="reqdeptcd" type="STRING" size="256" sumtext=" 의뢰부서 "/>
- <Column id="mngtno" type="STRING" size="256" sumtext=" S/N(관리번호) "/>
- <Column id="fixasetnm" type="STRING" size="256" sumtext=" 고정자산코드명 "/>
- <Column id="workstat" type="STRING" size="256" sumtext=" 작업상태* "/>
- <Column id="deptaprvyn" type="STRING" size="256" sumtext=" 부서승인여부 "/>
- <Column id="fixasetcd" type="STRING" size="256" sumtext=" 고정자산코드*- "/>
- <Column id="chrgpsnnm" type="STRING" size="256" sumtext=" 담당자명 "/>
- <Column id="acptdd" type="STRING" size="256" sumtext=" 접수일자 "/>
- <Column id="sanctyn" type="STRING" size="256" sumtext=" 결재여부 "/>
- <Column id="chrgpsncmt" type="STRING" size="256" sumtext=" 담당자comment "/>
- <Column id="nonworkdayno" type="STRING" size="256" sumtext=" 미가동일수 "/>
- <Column id="acptflag" type="STRING" size="256" sumtext=" 접수구분 "/>
- <Column id="instcd" type="STRING" size="256" sumtext=" 기관코드 "/>
- <Column id="fixtrseqmtflag" type="STRING" size="256" sumtext=" 비품_장비구분 "/>
- <Column id="acptpsnid" type="STRING" size="256" sumtext=" 접수자ID "/>
- <Column id="acptpsnnm" type="STRING" size="256" sumtext=" 접수자이름 "/>
- <Column id="agency" type="STRING" size="256" sumtext=" A/S대리점 "/>
- <Column id="agencycntctel" type="STRING" size="256" sumtext=" A/S연락처 "/>
- <Column id="bugtyy" type="STRING" size="256" sumtext=" 예산년도 "/>
- <Column id="chrgtel" type="STRING" size="256" sumtext=" 담당자전화번호(사내) "/>
- <Column id="deptacptdd" type="STRING" size="256" sumtext=" 완료인수일 "/>
- <Column id="deptacptpsnnm" type="STRING" size="256" sumtext=" 인수자 이름 "/>
- <Column id="depthngnm" type="STRING" size="256" sumtext=" 의뢰부서명 "/>
- <Column id="flwgrnttermfr" type="STRING" size="256" sumtext=" 하자보수기간from "/>
- <Column id="flwgrnttermto" type="STRING" size="256" sumtext=" 하자보수기간to "/>
- <Column id="genrdd" type="STRING" size="256" sumtext=" 발생일자 "/>
- <Column id="goodmodel" type="STRING" size="256" sumtext=" 물품모델 "/>
- <Column id="goodspec" type="STRING" size="256" sumtext=" 물품스펙 "/>
- <Column id="installplcecd" type="STRING" size="256" sumtext=" 설치장소CODE "/>
- <Column id="installplcenm" type="STRING" size="256" sumtext=" 설치장소 "/>
- <Column id="possnamt" type="STRING" size="256" sumtext=" 구입금액 "/>
- <Column id="possndd" type="STRING" size="256" sumtext=" 취득일 "/>
- <Column id="reqpsnnm" type="STRING" size="256" sumtext=" 의뢰자이름 "/>
- <Column id="reqtel" type="STRING" size="256" sumtext=" 의뢰자 연락처 "/>
- <Column id="rpiramt" type="STRING" size="256" sumtext=" 수리비 "/>
- <Column id="stdysubjnm" type="STRING" size="256" sumtext=" 연구과제명 "/>
- <Column id="chrgpsnid" type="STRING" size="256" sumtext=" 담당자ID(수리담당자) "/>
- <Column id="stdysubjno" type="STRING" size="256" sumtext=" 연구과제code "/>
- <Column id="bugtcd" type="STRING" size="256" sumtext=" 예산계정 "/>
- <Column id="rpirflag1" type="STRING" size="256" sumtext=" 고장유형 "/>
- <Column id="rpirflag2" type="STRING" size="256" sumtext=" 수리형태 "/>
- <Column id="endflag" type="STRING" size="256" sumtext=" 완료구분 "/>
- <Column id="useyn" type="STRING" size="256" sumtext=" 청구구분 "/>
- <Column id="cmt" type="STRING" size="256" sumtext=" 비고 "/>
- <Column id="hdrncspec" type="STRING" size="256" sumtext=" 고장내역(의뢰내역) "/>
- <Column id="lastrpirrslt" type="STRING" size="256" sumtext=" 최종수리결과 "/>
- <Column id="rpirspec" type="STRING" size="256" sumtext=" 수리내역 "/>
- <Column id="bizscrnid" type="STRING" size="256" sumtext=" 화면id "/>
- <Column id="deptaprvpsnnm" type="STRING" size="256" sumtext=" 승인자 "/>
- <Column id="estimateamt" type="STRING" size="256" sumtext=" 견적금액 "/>
- <Column id="oldcd" type="STRING" size="256" sumtext=" 구코드번호 "/>
- <Column id="prodcmpynm" type="STRING" size="256" sumtext=" 제조원명 "/>
- <Column id="reductionamt" type="STRING" size="256" sumtext=" 절감액 "/>
- <Column id="rfehdabptotal" type="STRING" size="256" sumtext=" 부품사용금액 "/>
- <Column id="rpirenddd" type="STRING" size="256" sumtext=" 수리완료일 "/>
- <Column id="rpirtm" type="STRING" size="256" sumtext=" 수리시간 "/>
- <Column id="sanctdd" type="STRING" size="256" sumtext=" 팀장결재일 "/>
- <Column id="suplplcenm" type="STRING" size="256" sumtext=" 거래처명 "/>
- <Column id="suplplcecd" type="STRING" size="256" sumtext=" 거래처코드 "/>
- <Column id="mngersanctyn" type="STRING" size="256" sumtext=" 과장승인여부 "/>
- <Column id="mngersanctdd" type="STRING" size="256" sumtext=" 과장승인일자 "/>
- <Column id="mngersanctid" type="STRING" size="256" sumtext=" 과장승인자ID "/>
- <Column id="mngersanctnm" type="STRING" size="256" sumtext=" 과장승인자 "/>
- <Column id="chkpsn" type="STRING" size="256" sumtext=" 검수자ID "/>
- <Column id="chkpsnnm" type="STRING" size="256" sumtext=" 검수자명 "/>
- <Column id="deprtmangrsanctyn" type="STRING" size="256" sumtext=" 실장승인여부 "/>
- <Column id="deprtmangrsanctdd" type="STRING" size="256" sumtext=" 실장승인일자 "/>
- <Column id="deprtmangrsanctid" type="STRING" size="256" sumtext=" 실장승인자ID "/>
- <Column id="deprtmangrsanctnm" type="STRING" size="256" sumtext=" 실장승인자 "/>
- <Column id="execdept" type="STRING" size="256" sumtext=" 담당부서 "/>
- <Column id="execdeptnm" type="STRING" size="256" sumtext=" 담당부서명 "/>
- <Column id="docustat" type="STRING" size="256" sumtext=" 서류상태 "/>
- <Column id="rpirendyn" type="STRING" size="256" sumtext=" 수리완료여부 "/>
- <Column id="acntcd" type="STRING" size="256" sumtext=" 계정과목코드 "/>
- <Column id="acntnm" type="STRING" size="256" sumtext=" 계정과목명 "/>
- <Column id="purccnsttndd" type="STRING" size="256" sumtext=" 구매품의일자 "/>
- <Column id="purccnsttnno" type="STRING" size="256" sumtext=" 구매품의번호 "/>
- </ColumnInfo>
- <Rows>
- <Row/>
- </Rows>
- </Dataset>
- <Dataset id="ds_init_useyn" firefirstcount="0" firenextcount="0" useclientlayout="false" updatecontrol="true" enableevent="true" loadkeymode="keep" loadfiltermode="keep" reversesubsum="false">
- <ColumnInfo>
- <Column id="label" type="STRING" size="256"/>
- <Column id="value" type="STRING" size="256"/>
- </ColumnInfo>
- <Rows>
- <Row>
- <Col id="label">내부</Col>
- <Col id="value">1</Col>
- </Row>
- <Row>
- <Col id="label">외부</Col>
- <Col id="value">2</Col>
- </Row>
- </Rows>
- </Dataset>
- <Dataset id="ds_main_grid_prttemp" firefirstcount="0" firenextcount="0" useclientlayout="false" updatecontrol="true" enableevent="true" loadkeymode="keep" loadfiltermode="keep" reversesubsum="false"/>
- <Dataset id="ds_temp" firefirstcount="0" firenextcount="0" useclientlayout="false" updatecontrol="true" enableevent="true" loadkeymode="keep" loadfiltermode="keep" reversesubsum="false">
- <ColumnInfo>
- <Column id="rfehemhtlist" type="STRING" size="256"/>
- <Column id="acptpsnid" type="STRING" size="256"/>
- <Column id="chrgpsnid" type="STRING" size="256"/>
- <Column id="bfworkstatmulti" type="STRING" size="256"/>
- </ColumnInfo>
- <Rows>
- <Row>
- <Col id="rfehemhtlist"/>
- <Col id="acptpsnid"/>
- <Col id="chrgpsnid"/>
- </Row>
- </Rows>
- </Dataset>
- <Dataset id="ds_temp_grid_rfehemhtlist" firefirstcount="0" firenextcount="0" useclientlayout="false" updatecontrol="true" enableevent="true" loadkeymode="keep" loadfiltermode="keep" reversesubsum="false">
- <ColumnInfo>
- <Column id="reqdd" type="STRING" size="256" sumtext=" 의뢰일자* "/>
- <Column id="reqno" type="STRING" size="256" sumtext=" 의뢰번호 "/>
- <Column id="reqdeptcd" type="STRING" size="256" sumtext=" 의뢰부서 "/>
- <Column id="mngtno" type="STRING" size="256" sumtext=" S/N(관리번호) "/>
- <Column id="fixasetnm" type="STRING" size="256" sumtext=" 고정자산코드명 "/>
- <Column id="workstat" type="STRING" size="256" sumtext=" 작업상태* "/>
- <Column id="deptaprvyn" type="STRING" size="256" sumtext=" 부서승인여부 "/>
- <Column id="fixasetcd" type="STRING" size="256" sumtext=" 고정자산코드*- "/>
- <Column id="chrgpsnnm" type="STRING" size="256" sumtext=" 담당자명 "/>
- <Column id="acptdd" type="STRING" size="256" sumtext=" 접수일자 "/>
- <Column id="sanctyn" type="STRING" size="256" sumtext=" 결재여부 "/>
- <Column id="chrgpsncmt" type="STRING" size="256" sumtext=" 담당자comment "/>
- <Column id="nonworkdayno" type="STRING" size="256" sumtext=" 미가동일수 "/>
- <Column id="acptflag" type="STRING" size="256" sumtext=" 접수구분 "/>
- <Column id="instcd" type="STRING" size="256" sumtext=" 기관코드 "/>
- <Column id="fixtrseqmtflag" type="STRING" size="256" sumtext=" 비품_장비구분 "/>
- <Column id="acptpsnid" type="STRING" size="256" sumtext=" 접수자ID "/>
- <Column id="acptpsnnm" type="STRING" size="256" sumtext=" 접수자이름 "/>
- <Column id="agency" type="STRING" size="256" sumtext=" A/S대리점 "/>
- <Column id="agencycntctel" type="STRING" size="256" sumtext=" A/S연락처 "/>
- <Column id="bugtyy" type="STRING" size="256" sumtext=" 예산년도 "/>
- <Column id="chrgtel" type="STRING" size="256" sumtext=" 담당자전화번호(사내) "/>
- <Column id="deptacptdd" type="STRING" size="256" sumtext=" 완료인수일 "/>
- <Column id="deptacptpsnnm" type="STRING" size="256" sumtext=" 인수자 이름 "/>
- <Column id="depthngnm" type="STRING" size="256" sumtext=" 의뢰부서명 "/>
- <Column id="flwgrnttermfr" type="STRING" size="256" sumtext=" 하자보수기간from "/>
- <Column id="flwgrnttermto" type="STRING" size="256" sumtext=" 하자보수기간to "/>
- <Column id="genrdd" type="STRING" size="256" sumtext=" 발생일자 "/>
- <Column id="goodmodel" type="STRING" size="256" sumtext=" 물품모델 "/>
- <Column id="goodspec" type="STRING" size="256" sumtext=" 물품스펙 "/>
- <Column id="installplcecd" type="STRING" size="256" sumtext=" 설치장소CODE "/>
- <Column id="installplcenm" type="STRING" size="256" sumtext=" 설치장소 "/>
- <Column id="possnamt" type="STRING" size="256" sumtext=" 구입금액 "/>
- <Column id="possndd" type="STRING" size="256" sumtext=" 취득일 "/>
- <Column id="reqpsnnm" type="STRING" size="256" sumtext=" 의뢰자이름 "/>
- <Column id="reqtel" type="STRING" size="256" sumtext=" 의뢰자 연락처 "/>
- <Column id="rpiramt" type="STRING" size="256" sumtext=" 수리비 "/>
- <Column id="stdysubjnm" type="STRING" size="256" sumtext=" 연구과제명 "/>
- <Column id="chrgpsnid" type="STRING" size="256" sumtext=" 담당자ID(수리담당자) "/>
- <Column id="stdysubjno" type="STRING" size="256" sumtext=" 연구과제code "/>
- <Column id="bugtcd" type="STRING" size="256" sumtext=" 예산계정 "/>
- <Column id="rpirflag1" type="STRING" size="256" sumtext=" 고장유형 "/>
- <Column id="rpirflag2" type="STRING" size="256" sumtext=" 수리형태 "/>
- <Column id="endflag" type="STRING" size="256" sumtext=" 완료구분 "/>
- <Column id="useyn" type="STRING" size="256" sumtext=" 청구구분 "/>
- <Column id="cmt" type="STRING" size="256" sumtext=" 비고 "/>
- <Column id="hdrncspec" type="STRING" size="256" sumtext=" 고장내역(의뢰내역) "/>
- <Column id="lastrpirrslt" type="STRING" size="256" sumtext=" 최종수리결과 "/>
- <Column id="rpirspec" type="STRING" size="256" sumtext=" 수리내역 "/>
- <Column id="bizscrnid" type="STRING" size="256" sumtext=" 화면id "/>
- <Column id="deptaprvpsnnm" type="STRING" size="256" sumtext=" 승인자 "/>
- <Column id="estimateamt" type="STRING" size="256" sumtext=" 견적금액 "/>
- <Column id="oldcd" type="STRING" size="256" sumtext=" 구코드번호 "/>
- <Column id="prodcmpynm" type="STRING" size="256" sumtext=" 제조원명 "/>
- <Column id="reductionamt" type="STRING" size="256" sumtext=" 절감액 "/>
- <Column id="rfehdabptotal" type="STRING" size="256" sumtext=" 부품사용금액 "/>
- <Column id="rpirenddd" type="STRING" size="256" sumtext=" 수리완료일 "/>
- <Column id="rpirtm" type="STRING" size="256" sumtext=" 수리시간 "/>
- <Column id="sanctdd" type="STRING" size="256" sumtext=" 팀장결재일 "/>
- <Column id="suplplcenm" type="STRING" size="256" sumtext=" 거래처명 "/>
- <Column id="suplplcecd" type="STRING" size="256" sumtext=" 거래처코드 "/>
- <Column id="mngersanctyn" type="STRING" size="256" sumtext=" 과장승인여부 "/>
- <Column id="mngersanctdd" type="STRING" size="256" sumtext=" 과장승인일자 "/>
- <Column id="mngersanctid" type="STRING" size="256" sumtext=" 과장승인자ID "/>
- <Column id="mngersanctnm" type="STRING" size="256" sumtext=" 과장승인자 "/>
- <Column id="chkpsn" type="STRING" size="256" sumtext=" 검수자ID "/>
- <Column id="chkpsnnm" type="STRING" size="256" sumtext=" 검수자명 "/>
- <Column id="deprtmangrsanctyn" type="STRING" size="256" sumtext=" 실장승인여부 "/>
- <Column id="deprtmangrsanctdd" type="STRING" size="256" sumtext=" 실장승인일자 "/>
- <Column id="deprtmangrsanctid" type="STRING" size="256" sumtext=" 실장승인자ID "/>
- <Column id="deprtmangrsanctnm" type="STRING" size="256" sumtext=" 실장승인자 "/>
- <Column id="execdept" type="STRING" size="256" sumtext=" 담당부서 "/>
- <Column id="execdeptnm" type="STRING" size="256" sumtext=" 담당부서명 "/>
- <Column id="docustat" type="STRING" size="256" sumtext=" 서류상태 "/>
- <Column id="rpirendyn" type="STRING" size="256" sumtext=" 수리완료여부 "/>
- <Column id="acntcd" type="STRING" size="256" sumtext=" 계정과목코드 "/>
- <Column id="acntnm" type="STRING" size="256" sumtext=" 계정과목명 "/>
- <Column id="purccnsttndd" type="STRING" size="256" sumtext=" 구매품의일자 "/>
- <Column id="purccnsttnno" type="STRING" size="256" sumtext=" 구매품의번호 "/>
- </ColumnInfo>
- </Dataset>
- <Dataset id="ds_main_grid_erfehemhtlist" firefirstcount="0" firenextcount="0" useclientlayout="false" updatecontrol="true" enableevent="true" loadkeymode="keep" loadfiltermode="keep" reversesubsum="false"/>
- <Dataset id="ds_send_sendprint" firefirstcount="0" firenextcount="0" useclientlayout="false" updatecontrol="true" enableevent="true" loadkeymode="keep" loadfiltermode="keep" reversesubsum="false">
- <ColumnInfo>
- <Column id="instcd" type="STRING" size="256"/>
- <Column id="reqdd" type="STRING" size="256"/>
- <Column id="reqno" type="STRING" size="256"/>
- <Column id="fixtrseqmtflag" type="STRING" size="256"/>
- </ColumnInfo>
- <Rows>
- <Row>
- <Col id="instcd"/>
- <Col id="reqdd"/>
- <Col id="reqno"/>
- <Col id="fixtrseqmtflag"/>
- </Row>
- </Rows>
- </Dataset>
- <Dataset id="ds_print_rpirprntinfo" firefirstcount="0" firenextcount="0" useclientlayout="false" updatecontrol="true" enableevent="true" loadkeymode="keep" loadfiltermode="keep" reversesubsum="false">
- <ColumnInfo>
- <Column id="instcd" type="STRING" size="256" sumtext="기관코드"/>
- <Column id="fixasetcd" type="STRING" size="256" sumtext="고정자산코드"/>
- <Column id="fixtrseqmtflag" type="STRING" size="256" sumtext="비품_장비구분"/>
- <Column id="goodflaghngnm" type="STRING" size="256" sumtext="자산품명"/>
- <Column id="goodflagengnm" type="STRING" size="256" sumtext="자산영문품명"/>
- <Column id="installplcecd" type="STRING" size="256" sumtext="설치장소코드"/>
- <Column id="installplcenm" type="STRING" size="256" sumtext="설치장소명"/>
- <Column id="execdept" type="STRING" size="256" sumtext="시행부서"/>
- <Column id="execdeptnm" type="STRING" size="256" sumtext="시행부서명"/>
- <Column id="goodspec" type="STRING" size="256" sumtext="설치장소명"/>
- <Column id="possnamt" type="STRING" size="256" sumtext="취득금액"/>
- <Column id="suplplcecd" type="STRING" size="256" sumtext="거래처코드"/>
- <Column id="suplplcenm" type="STRING" size="256" sumtext="거래처명"/>
- <Column id="prodcmpy" type="STRING" size="256" sumtext="제조원"/>
- <Column id="prodcmpynm" type="STRING" size="256" sumtext="제조원명"/>
- <Column id="possndd" type="STRING" size="256" sumtext="취득일자"/>
- <Column id="genrdd" type="STRING" size="256" sumtext="발생일자"/>
- <Column id="reqpsnid" type="STRING" size="256" sumtext="의뢰자id"/>
- <Column id="reqpsnnm" type="STRING" size="256" sumtext="의뢰자"/>
- <Column id="reqtel" type="STRING" size="256" sumtext="수리담당자연락처"/>
- <Column id="reqdd" type="STRING" size="256" sumtext="의뢰일자"/>
- <Column id="reqno" type="STRING" size="256" sumtext="의뢰번호"/>
- <Column id="hdrncspec" type="STRING" size="256" sumtext="고장내역"/>
- <Column id="chrgpsnid" type="STRING" size="256" sumtext="담당자id"/>
- <Column id="chrgpsnnm" type="STRING" size="256" sumtext="담당자"/>
- <Column id="rpirflag2" type="STRING" size="256" sumtext="수리형태"/>
- <Column id="rpirflag2nm" type="STRING" size="256" sumtext="수리형태"/>
- <Column id="lastrpirrslt" type="STRING" size="256" sumtext="최종수리결과"/>
- <Column id="rpiramt" type="STRING" size="256" sumtext="확정금액"/>
- <Column id="rpirenddd" type="STRING" size="256" sumtext="수리완료일자"/>
- <Column id="deprtmangrsanctid" type="STRING" size="256" sumtext="실장승인자id"/>
- <Column id="deprtmangrsanctnm" type="STRING" size="256" sumtext="실장승인자"/>
- <Column id="mngersanctid" type="STRING" size="256" sumtext="과장승인자id"/>
- <Column id="mngersanctnm" type="STRING" size="256" sumtext="과장승인자"/>
- <Column id="acsrscd" type="STRING" size="256" sumtext="부품코드"/>
- <Column id="acsrsnm" type="STRING" size="256" sumtext="부품명"/>
- <Column id="acsrsspec" type="STRING" size="256" sumtext="규격"/>
- <Column id="acsrsqty" type="STRING" size="256" sumtext="수량"/>
- <Column id="acsrsunit" type="STRING" size="256" sumtext="단위"/>
- <Column id="reqdeptnm" type="STRING" size="256" sumtext="의뢰부서"/>
- <Column id="agency" type="STRING" size="256" sumtext="수리거래처"/>
- <Column id="estimateamt" type="STRING" size="256" sumtext="견적금액"/>
- </ColumnInfo>
- </Dataset>
- <Dataset id="ds_main_grind_prtrfehemht" firefirstcount="0" firenextcount="0" useclientlayout="false" updatecontrol="true" enableevent="true" loadkeymode="keep" loadfiltermode="keep" reversesubsum="false"/>
- <Dataset id="ds_main_grid_lastprtrfehemht" firefirstcount="0" firenextcount="0" useclientlayout="false" updatecontrol="true" enableevent="true" loadkeymode="keep" loadfiltermode="keep" reversesubsum="false"/>
- <Dataset id="ds_print_totfehemht" firefirstcount="0" firenextcount="0" useclientlayout="false" updatecontrol="true" enableevent="true" loadkeymode="keep" loadfiltermode="keep" reversesubsum="false"/>
- <Dataset id="ds_print_prtinfo" firefirstcount="0" firenextcount="0" useclientlayout="false" updatecontrol="true" enableevent="true" loadkeymode="keep" loadfiltermode="keep" reversesubsum="false"/>
- <Dataset id="ds_print_prtinfo_temp" firefirstcount="0" firenextcount="0" useclientlayout="false" updatecontrol="true" enableevent="true" loadkeymode="keep" loadfiltermode="keep" reversesubsum="false"/>
- <Dataset id="ds_discard_menu" firefirstcount="0" firenextcount="0" useclientlayout="false" updatecontrol="true" enableevent="true" loadkeymode="keep" loadfiltermode="keep" reversesubsum="false">
- <ColumnInfo>
- <Column id="name" type="STRING" size="256"/>
- <Column id="func" type="STRING" size="256"/>
- <Column id="lev" type="STRING" size="256"/>
- </ColumnInfo>
- <Rows>
- <Row>
- <Col id="name">일괄처리</Col>
- <Col id="func">fDiscard</Col>
- <Col id="lev">0</Col>
- </Row>
- </Rows>
- </Dataset>
- <Dataset id="ds_discard_rfehemhtlist" firefirstcount="0" firenextcount="0" useclientlayout="false" updatecontrol="true" enableevent="true" loadkeymode="keep" loadfiltermode="keep" reversesubsum="false" oncolumnchanged="ds_main_grid_rfehemhtlist_oncolumnchanged">
- <ColumnInfo>
- <Column id="flag" type="STRING" size="256"/>
- <Column id="workstat" type="STRING" size="256"/>
- <Column id="acptdeptcd" type="STRING" size="256"/>
- <Column id="chrgtel" type="STRING" size="256"/>
- <Column id="lastrpirrslt" type="STRING" size="256"/>
- <Column id="instcd" type="STRING" size="256"/>
- <Column id="reqdd" type="STRING" size="256"/>
- <Column id="reqno" type="STRING" size="256"/>
- <Column id="fixtrseqmtflag" type="STRING" size="256"/>
- <Column id="rpirspec" type="STRING" size="256"/>
- <Column id="fixasetcd" type="STRING" size="256"/>
- <Column id="fixasetnm" type="STRING" size="256"/>
- <Column id="rpirflag2" type="STRING" size="256"/>
- </ColumnInfo>
- </Dataset>
- <Dataset id="ds_discard_send" firefirstcount="0" firenextcount="0" useclientlayout="false" updatecontrol="true" enableevent="true" loadkeymode="keep" loadfiltermode="keep" reversesubsum="false">
- <ColumnInfo>
- <Column id="rpirspec" type="STRING" size="256"/>
- <Column id="chrgtel" type="STRING" size="256"/>
- <Column id="rpirflag2" type="STRING" size="256"/>
- </ColumnInfo>
- <Rows>
- <Row/>
- </Rows>
- </Dataset>
- </Objects>
- <Bind>
- <BindItem id="item0" compid="grp_sea.cmb_instcd" propid="value" datasetid="ds_send" columnid="instcd"/>
- <BindItem id="item1" compid="grp_sea.cmb_fixtrseqmtflag" propid="value" datasetid="ds_send" columnid="fixtrseqmtflag"/>
- <BindItem id="item2" compid="grp_sea.ipt_fixasetcd_search" propid="value" datasetid="ds_send" columnid="fixasetcd"/>
- <BindItem id="item3" compid="grp_sea.ipt_reqdd1S" propid="value" datasetid="ds_send" columnid="reqdd1"/>
- <BindItem id="item4" compid="grp_sea.ipt_reqdd2S" propid="value" datasetid="ds_send" columnid="reqdd2"/>
- <BindItem id="item5" compid="grp_sea.input2" propid="value" datasetid="ds_send" columnid="rpirenddd1"/>
- <BindItem id="item6" compid="grp_sea.ipt_rpirenddd2" propid="value" datasetid="ds_send" columnid="rpirenddd2"/>
- <BindItem id="item7" compid="grp_sea.ipt_reqdeptcdS" propid="value" datasetid="ds_send" columnid="reqdeptcd"/>
- <BindItem id="item8" compid="grp_sea.ipt_reqdeptnmS" propid="value" datasetid="ds_send" columnid="reqdeptnm"/>
- <BindItem id="item9" compid="grp_sea.cmb_rpirflag2_search" propid="value" datasetid="ds_send" columnid="rpirflag2"/>
- <BindItem id="item10" compid="grp_sea.chk_acptyn" propid="value" datasetid="ds_send" columnid="acptyn"/>
- <BindItem id="item11" compid="grp_sea.chk_chkyn" propid="value" datasetid="ds_send" columnid="chkyn"/>
- <BindItem id="item12" compid="grp_sea.ipt_chrgpsnidS" propid="value" datasetid="ds_send" columnid="chrgpsnid"/>
- <BindItem id="item13" compid="grp_sea.ipt_chrgpsnnmS" propid="value" datasetid="ds_send" columnid="chrgpsnnm"/>
- <BindItem id="item14" compid="grp_sea.cmb_exedeptcd" propid="value" datasetid="ds_send" columnid="execdeptcd"/>
- <BindItem id="item15" compid="ipt_fixasetcd" propid="value" datasetid="ds_main_component_rfehemhtlist" columnid="fixasetcd"/>
- <BindItem id="item16" compid="ipt_fixasetnm" propid="value" datasetid="ds_main_component_rfehemhtlist" columnid="fixasetnm"/>
- <BindItem id="item17" compid="ipt_reqpsnnm" propid="value" datasetid="ds_main_component_rfehemhtlist" columnid="reqpsnnm"/>
- <BindItem id="item18" compid="ipt_deptacptdd" propid="value" datasetid="ds_main_component_rfehemhtlist" columnid="deptacptdd"/>
- <BindItem id="item19" compid="ipt_depthngnm" propid="value" datasetid="ds_main_component_rfehemhtlist" columnid="depthngnm"/>
- <BindItem id="item20" compid="ipt_reqdd" propid="value" datasetid="ds_main_component_rfehemhtlist" columnid="reqdd"/>
- <BindItem id="item21" compid="cmb_bugtcd" propid="value" datasetid="ds_main_component_rfehemhtlist" columnid="bugtcd"/>
- <BindItem id="item22" compid="ipt_bugtyy" propid="value" datasetid="ds_main_component_rfehemhtlist" columnid="bugtyy"/>
- <BindItem id="item23" compid="ipt_deprtmangrsanctid" propid="value" datasetid="ds_main_component_rfehemhtlist" columnid="deprtmangrsanctid"/>
- <BindItem id="item24" compid="ipt_acptpsnid" propid="value" datasetid="ds_main_component_rfehemhtlist" columnid="acptpsnid"/>
- <BindItem id="item25" compid="ipt_deprtmangrsanctnm" propid="value" datasetid="ds_main_component_rfehemhtlist" columnid="deprtmangrsanctnm"/>
- <BindItem id="item26" compid="ipt_mngersanctid" propid="value" datasetid="ds_main_component_rfehemhtlist" columnid="mngersanctid"/>
- <BindItem id="item27" compid="ipt_mngersanctnm" propid="value" datasetid="ds_main_component_rfehemhtlist" columnid="mngersanctnm"/>
- <BindItem id="item28" compid="ipt_stdysubjno" propid="value" datasetid="ds_main_component_rfehemhtlist" columnid=""/>
- <BindItem id="item29" compid="ipt_stdysubjnm" propid="value" datasetid="ds_main_component_rfehemhtlist" columnid="stdysubjnm"/>
- <BindItem id="item30" compid="ipt_genrdd" propid="value" datasetid="ds_main_component_rfehemhtlist" columnid="genrdd"/>
- <BindItem id="item31" compid="ipt_reqtel" propid="value" datasetid="ds_main_component_rfehemhtlist" columnid="reqtel"/>
- <BindItem id="item32" compid="ipt_installplcecd" propid="value" datasetid="ds_main_component_rfehemhtlist" columnid="installplcecd"/>
- <BindItem id="item33" compid="ipt_installplcenm" propid="value" datasetid="ds_main_component_rfehemhtlist" columnid="installplcenm"/>
- <BindItem id="item34" compid="ipt_deptacptpsnnm" propid="value" datasetid="ds_main_component_rfehemhtlist" columnid="deptacptpsnnm"/>
- <BindItem id="item35" compid="ipt_goodspec" propid="value" datasetid="ds_main_component_rfehemhtlist" columnid="goodspec"/>
- <BindItem id="item36" compid="ipt_goodmodel" propid="value" datasetid="ds_main_component_rfehemhtlist" columnid="goodmodel"/>
- <BindItem id="item37" compid="txt_cmt" propid="value" datasetid="ds_main_component_rfehemhtlist" columnid="cmt"/>
- <BindItem id="item38" compid="ipt_chrgpsnid" propid="value" datasetid="ds_main_component_rfehemhtlist" columnid="chrgpsnid"/>
- <BindItem id="item39" compid="ipt_chrgpsnnm" propid="value" datasetid="ds_main_component_rfehemhtlist" columnid="chrgpsnnm"/>
- <BindItem id="item40" compid="ipt_flwgrnttermfr" propid="value" datasetid="ds_main_component_rfehemhtlist" columnid="flwgrnttermfr"/>
- <BindItem id="item41" compid="ipt_flwgrnttermto" propid="value" datasetid="ds_main_component_rfehemhtlist" columnid="flwgrnttermto"/>
- <BindItem id="item42" compid="ipt_possnamt" propid="value" datasetid="ds_main_component_rfehemhtlist" columnid="possnamt"/>
- <BindItem id="item43" compid="cmb_docustat" propid="value" datasetid="ds_main_component_rfehemhtlist" columnid="docustat"/>
- <BindItem id="item44" compid="txt_hdrncspec" propid="value" datasetid="ds_main_component_rfehemhtlist" columnid="hdrncspec"/>
- <BindItem id="item45" compid="cmb_workstat" propid="value" datasetid="ds_main_component_rfehemhtlist" columnid="workstat"/>
- <BindItem id="item46" compid="ipt_rpiramt" propid="value" datasetid="ds_main_component_rfehemhtlist" columnid="rpiramt"/>
- <BindItem id="item47" compid="ipt_possndd" propid="value" datasetid="ds_main_component_rfehemhtlist" columnid="possndd"/>
- <BindItem id="item48" compid="ipt_chrgtel" propid="value" datasetid="ds_main_component_rfehemhtlist" columnid="chrgtel"/>
- <BindItem id="item49" compid="ipt_acptdd" propid="value" datasetid="ds_main_component_rfehemhtlist" columnid="acptdd"/>
- <BindItem id="item50" compid="rdo_useyn" propid="value" datasetid="ds_main_component_rfehemhtlist" columnid="useyn"/>
- <BindItem id="item51" compid="ipt_agency" propid="value" datasetid="ds_main_component_rfehemhtlist" columnid="agency"/>
- <BindItem id="item52" compid="ipt_agencycntctel" propid="value" datasetid="ds_main_component_rfehemhtlist" columnid="agencycntctel"/>
- <BindItem id="item53" compid="txt_rpirspec" propid="value" datasetid="ds_main_component_rfehemhtlist" columnid="rpirspec"/>
- <BindItem id="item54" compid="txt_lastrpirrslt" propid="value" datasetid="ds_main_component_rfehemhtlist" columnid="lastrpirrslt"/>
- <BindItem id="item55" compid="ipt_reqno" propid="value" datasetid="ds_main_component_rfehemhtlist" columnid="reqno"/>
- <BindItem id="item56" compid="cmb_rpirflag1" propid="value" datasetid="ds_main_component_rfehemhtlist" columnid="rpirflag1"/>
- <BindItem id="item57" compid="ipt_acptpsnnm" propid="value" datasetid="ds_main_component_rfehemhtlist" columnid="acptpsnnm"/>
- <BindItem id="item58" compid="cmb_rpirflag2" propid="value" datasetid="ds_main_component_rfehemhtlist" columnid="rpirflag2"/>
- <BindItem id="item59" compid="ipt_mngtno" propid="value" datasetid="ds_main_component_rfehemhtlist" columnid="mngtno"/>
- <BindItem id="item60" compid="ipt_prodcmpynm" propid="value" datasetid="ds_main_component_rfehemhtlist" columnid="prodcmpynm"/>
- <BindItem id="item72" compid="div_discard.txt_rpirspec" propid="value" datasetid="ds_discard_send" columnid="rpirspec"/>
- <BindItem id="item61" compid="div_discard.ipt_chrgtel" propid="value" datasetid="ds_discard_send" columnid="chrgtel"/>
- <BindItem id="item62" compid="div_discard.cmb_rpirflag2" propid="value" datasetid="ds_discard_send" columnid="rpirflag2"/>
- </Bind>
- <Script type="xscript4.0"><![CDATA[/***************************************************************************************
- * System Name :
- * Job Name :
- * Creator :
- * Make Date : 2017-06-19
- * Description :
- *---------------------------------------------------------------------------------------
- * Modify Date Modifier Modify Description
- *---------------------------------------------------------------------------------------
- * 2017-06-19 Live Converter TF->XP
- *
- *---------------------------------------------------------------------------------------
- ****************************************************************************************/
- include "com_commonxp::comm_main.xjs";
- include "mis_miscommonxp::MIS.xjs";
- include "mis_miscommonxp::RSZ001.xjs";
- var arErrorCode = new HashArray();
- function SMRFE00900_oninit(obj:Form, e:InitEventInfo)
- {
- frmf_initForm(obj);
- }
- function SMRFE00900_onload(obj:Form, e:LoadEventInfo)
- {
- //grdf_initGrid(grd_rfehemhtlist);
- grdf_setGridSort(grd_rfehemhtlist);
- grdf_setRowTypeIcon(grd_rfehemhtlist, 0);
-
- fInitialize();
- grp_sea.btn_search.click();
- }
- function fInitialize()
- {
- misfGridInit(grd_rfehemhtlist);
-
- ds_main_component_rfehemhtlist.clearData();
- ds_main_component_rfehemhtlist.addRow();
-
- rszfComboBugtList("cmb_bugtcd",sysf_getUserInfo("dutplceinstcd"));
-
- misfComboComCdListMulti("R0285,R0055,R0055,R0055,R0055"
- + ",R0285,R0285,R0286,R0285,R0286"
- + ",030M0012,C0048" ,
- "grd_rfehemhtlist.rpirflag2,grp_sea.chk_workstatmulti,grd_rfehemhtlist.workstat,grd_erfehemhtlist.workstat,cmb_workstat"
- + ",grp_sea.cmb_rpirflag2_search,cmb_rpirflag2,cmb_rpirflag1,grd_erfehemhtlist.rpirflag2,grd_erfehemhtlist.rpirflag1"
- + ",cmb_docustat,grp_sea.cmb_instcd" );
-
- var addRow = ds_init_comcd_R00551_R00551.addRow();
- ds_init_comcd_R00551_R00551.setColumn(addRow, "cdnm", "전체");
- ds_init_comcd_R00551_R00551.setColumn(addRow, "cdid", "A");
-
- var sProp="col=2,row=3,cellspacing=4,vcellspacing=0,itemWidth=-1,itemHeight=20,overflow='visible'";
- grp_sea.chk_workstatmulti.setInitComp(sProp, ds_init_comcd_R00551_R00551,"cdid","cdnm","fn_cmpEvent");
-
- frmf_addComboItem("grp_sea.cmb_rpirflag2_search","서류접수","02","above");
- frmf_addComboItem("grp_sea.cmb_rpirflag2_search","전체","","above");
- grp_sea.cmb_rpirflag2_search.value = "";
-
- var reqdate = utlf_getCurrentDate().toDate("YYYYMMDD");
- ds_send.setColumn(0, "reqdd1", reqdate.getAddDate(-6, "M").getDateFormat("YYYYMMDD"));
- ds_send.setColumn(0, "reqdd2", utlf_getCurrentDate());
-
- misfMsterDetailSet(grd_rfehemhtlist, null, "TRRFE00502", "Y");
-
- ds_send.setColumn(0, "instcd", sysf_getUserInfo("dutplceinstcd"));
-
- fdisabledTF(true);
-
- if(!frmf_checkAuth("X"))
- {
- btn_save.enable = false;
- }
-
- grd_rfehemhtlist.setCellProperty("Head", 1, "text", 0);
-
- grp_sea.cmb_exedeptcd.value = sysf_getUserInfo("dutplcecd");
- grp_sea.ipt_fixasetcd_search.setFocus();
-
- div_discard.cmb_rpirflag2.index = 0;
- ds_send.setColumn(0, "execdeptcd", sysf_getUserInfo("dutplcecd"));
- }
- function fn_cmpEvent()
- {
- var bfworkstatmulti = ds_temp.getColumn(0, "bfworkstatmulti");
- var workstatmulti = grp_sea.chk_workstatmulti.getData()+"";
- if (utlf_isSearchString(bfworkstatmulti, 'A'))
- {
- workstatmulti = workstatmulti.replace("A", "");
-
- var aData = new Array();
- aData[0] = workstatmulti;
- grp_sea.chk_workstatmulti.setData(aData, "",false);
- }
- else
- {
- workstatmultiArr = workstatmulti.split(",");
-
- for (var i = 0; i < workstatmultiArr.length; i++)
- {
- if (workstatmultiArr[i] == "A")
- {
- var aData = new Array();
- aData[0] = "A";
- grp_sea.chk_workstatmulti.setData(aData, "",false);
- break;
- }
- }
- }
- ds_temp.setColumn(0, "bfworkstatmulti", grp_sea.chk_workstatmulti.getData());
- ds_send.setColumn(0, "workstatmulti", grp_sea.chk_workstatmulti.getData());
- }
- function fdisabledTF( fbool)
- {
- cmb_rpirflag1.enable = false;
- }
- function grp_sea_cmb_instcd_onitemchanged(obj:Combo, e:ItemChangeEventInfo)
- {
- grp_sea.btn_search.click();
- }
- function grp_sea_cmb_fixtrseqmtflag_onitemchanged(obj:Combo, e:ItemChangeEventInfo)
- {
- grp_sea.btn_search.click();
- }
- function grp_sea_ipt_fixasetcd_search_onkeyup(obj:Edit, e:KeyEventInfo)
- {
- if(e.keycode == 13)
- {
- obj.updateToDataset();
- grp_sea.btn_search.click();
- }
- }
- function ds_send_oncolumnchanged(obj:Dataset, e:DSColChangeEventInfo)
- {
- if(e.columnid == "reqdeptcd")
- {
- var objFocus = this.getFocus();
- grp_sea.ipt_reqdeptcdS.value = e.newvalue;
- grp_sea.ipt_reqdeptcdS.setFocus();
- misfSearchDept(grp_sea.ipt_reqdeptnmS);
- objFocus.setFocus();
- }
- if(e.columnid == "chrgpsnid")
- {
- var objFocus = this.getFocus();
- grp_sea.ipt_chrgpsnidS.value = e.newvalue;
- grp_sea.ipt_chrgpsnidS.setFocus();
-
- if(utlf_transNullToEmpty(e.newvalue).length == 0)
- {
- grp_sea.ipt_chrgpsnnmS.value = "";
- }
- else
- {
- misfValidationCheck("01-1", "", "chrgpsnid,chrgpsnnm");
- }
-
- objFocus.setFocus();
- }
- }
- function grp_sea_btn_reqdeptcd_onclick(obj:Button, e:ClickEventInfo)
- {
- misfOpenPopUpList("02", grp_sea.ipt_reqdeptcdS, "", "reqdeptcd,reqdeptnm");
- }
- function grp_sea_chk_acptyn_onclick(obj:CheckBox, e:ClickEventInfo)
- {
- if(grp_sea.chk_chkyn.value == "Y" && obj.value == "Y") grp_sea.chk_chkyn.value = "N";
- }
- function grp_sea_chk_chkyn_onclick(obj:CheckBox, e:ClickEventInfo)
- {
- if(obj.value == "Y" && grp_sea.chk_acptyn.value == "Y") grp_sea.chk_acptyn.value = "N";
- }
- function grp_sea_btn_chrgpsnidS_onclick(obj:Button, e:ClickEventInfo)
- {
- misfOpenPopUpList("12", grp_sea.ipt_chrgpsnidS, "", "chrgpsnid,chrgpsnnm");
- }
- function grp_sea_btn_search_onclick(obj:Button, e:ClickEventInfo)
- {
- arrCompId = new Array("grp_sea.cmb_instcd","grp_sea.ipt_reqdd1S","grp_sea.ipt_reqdd2S");
- if(!frmf_isRequiredControls(arrCompId)) return;
-
- fRdoChangedInit();
-
- // 물류 의공팀 선생님 3명에 대해서 조회시 물류팀꺼만 조회되도록 수정 - 물류팀 김진섭샘 요청 2018.12.20
- if (sysf_getUserInfo("userid") == "15183" || sysf_getUserInfo("userid") == "97006" || sysf_getUserInfo("userid") == "10150" ){
- ds_send.setColumn(0, "purflag", "Y");
- }
-
- misfMsterDetailRetrieve();
-
- if( utlf_isNull(ds_main_grid_rfehemhtlist.getColumnInfo("chk")) ){
- ds_main_grid_rfehemhtlist.addColumn("chk", "string");
- }
-
- misfSetReadOnlyCol(grd_rfehemhtlist, "acptflag,reqdd,reqno,depthngnm,fixasetnm,workstat", true);
- }
- function fRdoChangedInit()
- {
- misfGridInit(grd_rfehemhtlist);
-
- ds_main_component_rfehemhtlist.clearData();
- ds_main_component_rfehemhtlist.addRow();
- }
- function ds_main_grid_rfehemhtlist_oncolumnchanged(obj:Dataset, e:DSColChangeEventInfo)
- {
- if(e.columnid == "chk")
- {
- obj.setColumn(e.row, "chk", (e.newvalue == "Y" || e.newvalue == 1) ? "Y" : "N");
- }
- }
- function grd_rfehemhtlist_oncellclick(obj:Grid, e:GridClickEventInfo){
- fGridRowChangedEvent();
- }
- function grd_rfehemhtlist_oncelldblclick(obj:Grid, e:GridClickEventInfo)
- {
- if(e.cell == obj.getBindCellIndex("Body", "fixasetnm"))
- {
- var workstat = ds_main_grid_rfehemhtlist.getColumn(ds_main_grid_rfehemhtlist.rowposition, "workstat");
- var deptaprvreqyn = ds_main_grid_rfehemhtlist.getColumn(ds_main_grid_rfehemhtlist.rowposition, "deptaprvreqyn");
-
- if (workstat == "00" && deptaprvreqyn == "Y")
- {
- sysf_messageBox("상태가 청구 의뢰(부서장 승인 필요)인 건은 접근 하실 수 ","I004");
- return;
- }
- else
- {
- ds_temp_grid_rfehemhtlist.clearData();
- ds_temp_grid_rfehemhtlist.addRow();
- ds_temp_grid_rfehemhtlist.copyRow(0, ds_main_grid_rfehemhtlist, ds_main_grid_rfehemhtlist.rowposition);
-
- var objArg = new Object();
- objArg.arg_ds_temp = ds_temp_grid_rfehemhtlist;
- frmf_modal("SMRFE01000", "SMRFE01000", objArg, "", "", "", "", "", "", "", "", "", "M");
- }
- }
- }
- function fGridRowChangedEvent()
- {
- ds_main_component_rfehemhtlist.clearData();
- ds_main_component_rfehemhtlist.addRow();
- ds_main_component_rfehemhtlist.copyRow(0, ds_main_grid_rfehemhtlist, ds_main_grid_rfehemhtlist.rowposition);
- fResetDisabled();
- }
- function fResetDisabled()
- {
- var workstat = cmb_workstat.value;
- var docustat = cmb_docustat.value;
-
- if(workstat == "01" || workstat == "02" || workstat == "03")
- {
- fDisabledControl(false,"chr");
- }
- else
- {
- fDisabledControl(true,"chr");
- }
- if(utlf_transNullToEmpty(cmb_rpirflag2.value).length != 0)
- {
- fDisabledControl(false,"sanct");
- }
- else
- {
- fDisabledControl(true,"sanct");
- }
- }
- function fDisabledControl(state,control)
- {
- switch(control)
- {
- case "sanct":
- if (sysf_getUserInfo("userid") == "93518" || sysf_getUserInfo("userid") == "MIS" || sysf_getUserInfo("userid") == "10306"|| sysf_getUserInfo("userid") == "KNUH99207" || sysf_getUserInfo("userid") == "99207")
- {
- btn_mngersanctid.enable = !state;
- ipt_mngersanctid.enable = !state;
- ipt_mngersanctnm.enable = !state;
-
- btn_deprtmangrsanctid.enable= false;
- ipt_deprtmangrsanctid.enable = false;
- ipt_deprtmangrsanctnm.enable = false;
- }
- else if (sysf_getUserInfo("userid") == "93507" || sysf_getUserInfo("userid") == "95047")// 실장님 변경에 따른 수정 93361(이병원) ->93507(오형태) by by 2019.07.01 김금련
- {
- btn_mngersanctid.enable = false;
- ipt_mngersanctid.enable = false;
- ipt_mngersanctnm.enable = false;
-
- btn_deprtmangrsanctid.enable = !state;
- ipt_deprtmangrsanctid.enable = !state;
- ipt_deprtmangrsanctnm.enable = !state;
- }
- else
- {
- btn_mngersanctid.enable = false;
- ipt_mngersanctid.enable = false;
- ipt_mngersanctnm.enable = false;
-
- btn_deprtmangrsanctid.enable = false;
- ipt_deprtmangrsanctid.enable = false;
- ipt_deprtmangrsanctnm.enable = false;
- }
- break;
- case "chr":
- ipt_chrgpsnid.enable = !state;
- btn_chrgpsnid.enable = !state;
- ipt_chrgpsnnm.enable = !state;
- ipt_chrgtel.enable = !state;
- break;
- }
- }
- function ds_main_component_rfehemhtlist_oncolumnchanged(obj, e)
- {
- if(e.columnid == "deprtmangrsanctnm")
- {
- var objFocus = this.getFocus();
- ipt_deprtmangrsanctnm.value = e.newvalue;
- ipt_deprtmangrsanctnm.setFocus();
-
- if(utlf_transNullToEmpty(e.newvalue).length == 0)
- {
- ipt_deprtmangrsanctid.value = "";
- }
- else
- {
- misfValidationCheck("01-2", "", "deprtmangrsanctid,deprtmangrsanctnm");
- }
-
- objFocus.setFocus();
- }
- if(e.columnid == "deprtmangrsanctid")
- {
- var objFocus = this.getFocus();
- ipt_deprtmangrsanctid.value = e.newvalue;
- ipt_deprtmangrsanctid.setFocus();
-
- if(utlf_transNullToEmpty(e.newvalue).length == 0)
- {
- ipt_deprtmangrsanctnm.value = "";
- }
- else
- {
- misfValidationCheck("01-1", "", "deprtmangrsanctid,deprtmangrsanctnm");
- }
- fResetState();
- objFocus.setFocus();
- }
- if(e.columnid == "mngersanctid")
- {
- var objFocus = this.getFocus();
- ipt_mngersanctid.value = e.newvalue;
- ipt_mngersanctid.setFocus();
-
- if(utlf_transNullToEmpty(e.newvalue).length == 0)
- {
- ipt_mngersanctnm.value = "";
- }
- else
- {
- misfValidationCheck("01-1", "", "mngersanctid,mngersanctnm");
- }
-
- fResetState();
- objFocus.setFocus();
- }
- if(e.columnid == "stdysubjnm")
- {
- ipt_stdysubjnm.value = e.newvalue;
- ipt_stdysubjnm.setFocus();
- if(utlf_isNull(e.newvalue))
- {
- rszfValidationCheck("TRRSD00261", "studylist", "refcond,instcd,stdysubjnm", "stdysubjnm," + grp_sea.cmb_instcd.value + "," + ipt_stdysubjnm.value, "",
- "stdysubjno,stdysubjnm", ipt_stdysubjnm, "SPRSD00260", "instcd", "grp_sea.cmb_instcd");
- }
- else
- {
- ipt_stdysubjno.value = "";
- ipt_stdysubjnm.value = "";
- }
- }
- if(e.columnid == "chrgpsnid")
- {
- var objFocus = this.getFocus();
- ipt_chrgpsnid.value = e.newvalue;
- ipt_chrgpsnid.setFocus();
- misfValidationCheck("01-1", "", "chrgpsnid,chrgpsnnm");
- fResetState();
- objFocus.setFocus();
- }
- if(e.columnid == "chrgpsnnm")
- {
- var objFocus = this.getFocus();
- ipt_chrgpsnnm.value = e.newvalue;
- ipt_chrgpsnnm.setFocus();
- misfValidationCheck("01-2", "", "chrgpsnid,chrgpsnnm");
- objFocus.setFocus();
- }
- }
- function btn_acptpsnid_onclick(obj:Button, e:ClickEventInfo)
- {
- misfOpenPopUpList("12", ipt_acptpsnid, "", "acptpsnid,acptpsnnm");
- }
- function btn_deprtmangrsanctid_onclick(obj:Button, e:ClickEventInfo)
- {
- misfOpenPopUpList("12", ipt_deprtmangrsanctid, "", "deprtmangrsanctid,deprtmangrsanctnm");
- fResetState();
- }
- function fResetState()
- {
- var workstat = "01";
- var docustat = "";
- var chrgpsnid = ipt_chrgpsnid.value;
-
- if(utlf_transNullToEmpty(chrgpsnid).length != 0)
- {
- workstat = "02";
- docustat = "01";
- }
- else
- {
- workstat = "01";
- docustat = "01";
- }
- if(utlf_transNullToEmpty(cmb_rpirflag2.value).length != 0)
- {
- workstat = "03";
- }
-
- if(ds_main_component_rfehemhtlist.getColumn(0, "rpirendyn") == "Y")
- {
- workstat = "04";
- }
-
- switch(cmb_rpirflag2.value)
- {
- case "1": // 무비용
- case "2": // 전도금
- case "5": // 폐기
- case "7": // 검토의견
- if(fSanctState())
- {
- docustat = "03";
- if(workstat == "04") workstat = "05";
- }
- break;
- case "6": // 용역
- if(fSanctState())
- {
- docustat = "03";
- if(workstat == "04")workstat = "05";
- }
- break;
- case "3": // 부품
- case "4": // 외주
- if(fSanctState())
- {
- if(workstat == "04" && utlf_transNullToEmpty(ds_main_component_rfehemhtlist.getColumn(0, "chkpsn")).length != 0)
- {
- workstat = "05";
- docustat = "03";
- }
- else
- {
- docustat = "02";
- }
- }
- break;
- }
-
- cmb_workstat.value = workstat;
- cmb_docustat.value = docustat;
- fResetDisabled();
- }
- function fSanctState()
- {
- if(cmb_rpirflag2.value == "1" && utlf_transNullToEmpty(ipt_deprtmangrsanctid.value).length != 0) return true; // 무비용일 경우 실장만 결재
- else if(cmb_rpirflag2.value == "6" && utlf_transNullToEmpty(ipt_deprtmangrsanctid.value).length != 0) return true; // 용역일 경우 실장만 결재
- else if(utlf_transNullToEmpty(ipt_deprtmangrsanctid.value).length != 0 && utlf_transNullToEmpty(ipt_mngersanctid.value).length != 0) return true; // 다른상태일경우 실장&과장 결재
- return false;
- }
- function btn_mngersanctid_onclick(obj:Button, e:ClickEventInfo)
- {
- misfOpenPopUpList("12", ipt_mngersanctid, "", "mngersanctid,mngersanctnm");
- fResetState();
- }
- function btn_chrgpsnid_onclick(obj:Button, e:ClickEventInfo)
- {
- misfOpenPopUpList("01", ipt_chrgpsnid, "", "chrgpsnid,chrgpsnnm");
-
- var eventObj = new EventInfo(); // 이벤트생성
- eventObj.columnid = "chrgpsnid"; //이벤트객체에 값 셋팅
- eventObj.newvalue = ds_main_component_rfehemhtlist.getColumn(0, "chrgpsnid"); //이벤트객체에 값 셋팅
- ds_main_component_rfehemhtlist_oncolumnchanged(ds_main_component_rfehemhtlist, eventObj); //이벤트 호출
- }
- function btn_excel_onclick(obj:Button, e:ClickEventInfo)
- {
- ds_main_grid_erfehemhtlist.copyData(ds_main_grid_rfehemhtlist);
-
- var fileName = "수리접수리스트_" + utlf_getCurrentDate();
- grdf_exportExcel(grd_erfehemhtlist, fileName, "수리접수", "true", "", "");
- }
- function btn_init_onclick(obj:Button, e:ClickEventInfo)
- {
- fInitialize();
- }
- function btn_save_onclick(obj:Button, e:ClickEventInfo)
- {
- var focus = ds_main_grid_rfehemhtlist.rowposition;
- if(fUpdateData() == "N")
- {
- sysf_messageBox("변경된 데이터가","I004");
- return;
- }
- dsf_makeValue(ds_main_component_rfehemhtlist, "bizscrnid", "string", "SMRFE00900_수리접수 및 결과등록.xrw", 0);
- var instcd = sysf_getUserInfo("dutplceinstcd");
-
- if( instcd != ds_main_component_rfehemhtlist.getColumn(0, "instcd") ){
- sysf_messageBox("현재 로그인한 기관코드와 저장할 기관코드가 달라 저장","E001");
- return;
- }
-
- if(instcd == "033")
- {
- for ( var i = 0 ; i < ds_main_grid_rfehemhtlist.rowcount;i++)
- {
- if(utlf_transNullToEmpty(ipt_chrgpsnid.value).length != 0)
- {
- if(utlf_transNullToEmpty(ipt_mngersanctid.value).length != 0)
- {
- ds_main_component_rfehemhtlist.setColumn(0, "docustat", "03");
- ds_main_component_rfehemhtlist.setColumn(0, "workstat", "05");
- }
- else
- {
- ds_main_component_rfehemhtlist.setColumn(0, "docustat", "01");
- ds_main_component_rfehemhtlist.setColumn(0, "workstat", "02");
- }
- }
- else
- {
- ds_main_component_rfehemhtlist.setColumn(0, "docustat", "01");
- ds_main_component_rfehemhtlist.setColumn(0, "workstat", "01");
- }
- }
- }
- var oParam = {};
- oParam.id = "TXRFE00502";
- oParam.service = "reqapp.ReqMngt";
- oParam.method = "reqExeSaveRpirRsltInpt";
- oParam.inds = "rfehemhtlist=ds_main_component_rfehemhtlist";
- oParam.async = false;
- oParam.callback = "cf_TXRFE00502";
- tranf_submit(oParam);
-
- ds_main_grid_rfehemhtlist.selectRow(0, false);
- ds_main_grid_rfehemhtlist.rowposition = focus;
- ds_main_grid_rfehemhtlist.selectRow(focus, true);
- fGridRowChangedEvent();
- }
- function cf_TXRFE00502(sSvcId, nErrorCode, sErrorMsg)
- {
- if(nErrorCode < 0) return;
- else grp_sea.btn_search.click();
- }
- function fUpdateData()
- {
- var detailNode = ds_main_component_rfehemhtlist;
- var mainGrid = ds_main_grid_rfehemhtlist;
- var gridRow = ds_main_grid_rfehemhtlist.rowposition;
-
- if ( detailNode.getColumn(0, "acptdd") != mainGrid.getColumn(gridRow, "acptdd")) return "Y" ;
- if ( detailNode.getColumn(0, "acptpsnid") != mainGrid.getColumn(gridRow, "acptpsnid")) return "Y" ;
- if ( detailNode.getColumn(0, "bugtcd") != mainGrid.getColumn(gridRow, "bugtcd")) return "Y" ;
- if ( detailNode.getColumn(0, "bugtyy") != mainGrid.getColumn(gridRow, "bugtyy")) return "Y" ;
- if ( detailNode.getColumn(0, "chrgpsnid") != mainGrid.getColumn(gridRow, "chrgpsnid")) return "Y" ;
- if ( detailNode.getColumn(0, "chrgtel") != mainGrid.getColumn(gridRow, "chrgtel")) return "Y" ;
- if ( detailNode.getColumn(0, "cmt") != mainGrid.getColumn(gridRow, "cmt")) return "Y" ;
- if ( detailNode.getColumn(0, "deptacptdd") != mainGrid.getColumn(gridRow, "deptacptdd")) return "Y" ;
- if ( detailNode.getColumn(0, "genrdd") != mainGrid.getColumn(gridRow, "genrdd")) return "Y" ;
- if ( detailNode.getColumn(0, "hdrncspec") != mainGrid.getColumn(gridRow, "hdrncspec")) return "Y" ;
- if ( detailNode.getColumn(0, "lastrpirrslt") != mainGrid.getColumn(gridRow, "lastrpirrslt")) return "Y" ;
- if ( detailNode.getColumn(0, "reqtel") != mainGrid.getColumn(gridRow, "reqtel")) return "Y" ;
- if ( detailNode.getColumn(0, "rpirflag1") != mainGrid.getColumn(gridRow, "rpirflag1")) return "Y" ;
- if ( detailNode.getColumn(0, "rpirflag2") != mainGrid.getColumn(gridRow, "rpirflag2")) return "Y" ;
- if ( detailNode.getColumn(0, "stdysubjno") != mainGrid.getColumn(gridRow, "stdysubjno")) return "Y" ;
- if ( detailNode.getColumn(0, "mngersanctid") != mainGrid.getColumn(gridRow, "mngersanctid")) return "Y" ;
- if ( detailNode.getColumn(0, "docustat") != mainGrid.getColumn(gridRow, "docustat")) return "Y" ;
- if ( detailNode.getColumn(0, "workstat") != mainGrid.getColumn(gridRow, "workstat")) return "Y" ;
- if ( detailNode.getColumn(0, "deprtmangrsanctid") != mainGrid.getColumn(gridRow, "deprtmangrsanctid")) return "Y" ;
-
- return "N";
- }
- function btn_prnt_onclick(obj:Button, e:ClickEventInfo)
- {
- var Cnt = ds_main_grid_rfehemhtlist.rowcount;
- var print = 0;
- for(var i = 0; i < Cnt;i++)
- {
- if(ds_main_grid_rfehemhtlist.getColumn(i, "chk") == "Y")
- {
- ds_send_sendprint.clearData();
- ds_send_sendprint.addRow();
-
- ds_send_sendprint.setColumn(0, "instcd", ds_main_grid_rfehemhtlist.getColumn(i, "instcd"));
- ds_send_sendprint.setColumn(0, "reqdd", ds_main_grid_rfehemhtlist.getColumn(i, "reqdd"));
- ds_send_sendprint.setColumn(0, "reqno", ds_main_grid_rfehemhtlist.getColumn(i, "reqno"));
- ds_send_sendprint.setColumn(0, "fixtrseqmtflag", ds_main_grid_rfehemhtlist.getColumn(i, "fixtrseqmtflag"));
-
- var oParam = {};
- oParam.id = "TRRFE00703";
- oParam.service = "reqapp.ReqMngt";
- oParam.method = "reqGetRpirPrntInfo";
- oParam.inds = "req=ds_send_sendprint";
- oParam.outds = "ds_print_rpirprntinfo=rpirprntinfo";
- oParam.async = false;
- oParam.callback = "cf_TRRFE00703";
- tranf_submit(oParam);
-
- if(arErrorCode.pop("TRRFE00703") > -1)
- {
- var objDOM = rptf_createDOM();
- rptf_setNodeListToDOM(objDOM, "/root/print/rpirprntinfo", ds_print_rpirprntinfo);
- var objParam = new Object();
- objParam.xml_data_XML1 = objDOM.documentElement.source;
- var option = "";
- rptf_exeReportPreview30(["RPRFE00601"],[objParam], option);
- }
- print = parseInt(print + 1);
- }
- }
- if(print == 0)
- {
- sysf_messageBox("출력할 리스트가 없습니다.\n일괄출력 가능합니다.\n출력을 원하는 리스트를 체크","I008");
- return;
- }
- }
- function cf_TRRFE00703(sSvcId, nErrorCode, sErrorMsg)
- {
- arErrorCode.push(sSvcId, nErrorCode);
- if(nErrorCode < 0) return;
- }
- function button2_onclick(obj:Button, e:ClickEventInfo)
- {
- var Cnt = ds_main_grid_rfehemhtlist.rowcount;
- var print = 0;
-
- for(var i = 0; i < Cnt; i++)
- {
- if(ds_main_grid_rfehemhtlist.getColumn(i, "chk") == "Y")
- {
- ds_send_sendprint.clearData();
- ds_send_sendprint.addRow();
-
- ds_send_sendprint.setColumn(0, "instcd", ds_main_grid_rfehemhtlist.getColumn(i, "instcd"));
- ds_send_sendprint.setColumn(0, "reqdd", ds_main_grid_rfehemhtlist.getColumn(i, "reqdd"));
- ds_send_sendprint.setColumn(0, "reqno", ds_main_grid_rfehemhtlist.getColumn(i, "reqno"));
- ds_send_sendprint.setColumn(0, "fixtrseqmtflag", ds_main_grid_rfehemhtlist.getColumn(i, "fixtrseqmtflag"));
-
- var oParam = {};
- oParam.id = "TRRFE00703";
- oParam.service = "reqapp.ReqMngt";
- oParam.method = "reqGetRpirPrntInfo";
- oParam.inds = "req=ds_send_sendprint";
- oParam.outds = "ds_print_rpirprntinfo=rpirprntinfo";
- oParam.async = false;
- oParam.callback = "cf_TRRFE00703";
- tranf_submit(oParam);
-
- if(arErrorCode.pop("TRRFE00703") > -1)
- {
- var objDOM = rptf_createDOM();
- rptf_setNodeListToDOM(objDOM, "/root/print/rpirprntinfo", ds_print_rpirprntinfo);
- var objParam = new Object();
- objParam.xml_data_XML1 = objDOM.documentElement.source;
- //var option = "";
- var option = "open=1;save=1;directprint=1;printdialog=0;print=1;zoom=0;";
-
- rptf_exeReportPreview30(["RPRFE00601"],[objParam], option);
- }
- print = parseInt(print + 1);
- }
- }
- if(print == 0)
- {
- sysf_messageBox("출력할 리스트가 없습니다.\n일괄출력 가능합니다.\n출력을 원하는 리스트를 체크","I008");
- return;
- }
- }
- function button4_onclick(obj:Button, e:ClickEventInfo)
- {
- // model.removeNodeset("/root/print");
- var rpirenddd1 = ds_send.getColumn(0, "rpirenddd1");
- var rpirenddd2 = ds_send.getColumn(0, "rpirenddd2");
- if(utlf_isNull(rpirenddd1) || utlf_isNull(rpirenddd2))
- {
- sysf_messageBox("완료일자를 입력","I008");
- return;
- }
-
- var reqdate = (grp_sea.ipt_rpirenddd2.value+"").toDate("YYYYMM");
-
- ds_send.setColumn(0, "rpirenmm", String(grp_sea.ipt_rpirenddd2.value).substr(0,6));
- ds_send.setColumn(0, "lastrpirenmm", reqdate.getAddDate(-1, "M").getDateFormat("YYYYMM"));
-
- var oParam = {};
- oParam.id = "TRRFE00503";
- oParam.service = "reqapp.ReqMngt";
- oParam.method = "reqGetPrtRfehemhtList";
- oParam.inds = "req=ds_send";
- oParam.outds = "ds_main_grind_prtrfehemht=prtrfehemht ds_main_grid_lastprtrfehemht=lastprtrfehemht ds_print_totfehemht=totfehemht";
- oParam.async = false;
- //oParam.callback = "cf_TRRFE00503";
- tranf_submit(oParam);
- var Cnt = ds_main_grind_prtrfehemht.rowcount;
- var Cnt1 = ds_main_grid_lastprtrfehemht.rowcount;
-
- if(Cnt == 0 && Cnt1 != 0)
- {
- sysf_messageBox("당월 정산 내역이","I004");
-
- var objDOM = rptf_createDOM();
- rptf_setNodeListToDOM(objDOM, "/root/print/lastprtrfehemht", ds_main_grid_lastprtrfehemht);
- rptf_setNodeListToDOM(objDOM, "/root/print/temp", ds_send);
- var objParam = new Object();
- objParam.xml_data_XML1 = objDOM.documentElement.source;
- var option = "";
- rptf_exeReportPreview30(["RPRFE00605"],[objParam], option);
- }
- else if(Cnt != 0 && Cnt1 == 0)
- {
- sysf_messageBox("이월 정산 내역이","I004");
-
- var objDOM = rptf_createDOM();
- rptf_setNodeListToDOM(objDOM, "/root/print/prtrfehemht", ds_main_grind_prtrfehemht);
- rptf_setNodeListToDOM(objDOM, "/root/print/temp", ds_send);
- var objParam = new Object();
- objParam.xml_data_XML1 = objDOM.documentElement.source;
- var option = "";
- rptf_exeReportPreview30(["RPRFE00604"],[objParam], option);
- }
- else if(Cnt == 0 && Cnt1 == 0)
- {
- sysf_messageBox("당월 정산 내역과 이월 미정산 내역이","I004");
- return;
- }
- else
- {
- var objDOM = rptf_createDOM();
- rptf_setNodeListToDOM(objDOM, "/root/print/prtrfehemht", ds_main_grind_prtrfehemht);
- rptf_setNodeListToDOM(objDOM, "/root/print/temp", ds_send);
- var objParam = new Object();
- objParam.xml_data_XML1 = objDOM.documentElement.source;
- var option = "";
- rptf_exeReportPreview30(["RPRFE00604"],[objParam], option);
- var objDOM = rptf_createDOM();
- rptf_setNodeListToDOM(objDOM, "/root/print/lastprtrfehemht", ds_main_grid_lastprtrfehemht);
- rptf_setNodeListToDOM(objDOM, "/root/print/temp", ds_send);
- var objParam = new Object();
- objParam.xml_data_XML1 = objDOM.documentElement.source;
- var option = "";
- rptf_exeReportPreview30(["RPRFE00605"],[objParam], option);
- }
-
- var objDOM = rptf_createDOM();
- rptf_setNodeListToDOM(objDOM, "/root/print/totfehemht", ds_print_totfehemht);
- rptf_setNodeListToDOM(objDOM, "/root/print/temp", ds_send);
- var objParam = new Object();
- objParam.xml_data_XML1 = objDOM.documentElement.source;
- var option = "";
- rptf_exeReportPreview30(["RPRFE00606"],[objParam], option);
- }
- function grp_sea_ipt_reqdeptcdS_onkeydown(obj:Edit, e:KeyEventInfo)
- {
- if( e.keycode == 13 ){
- obj.updateToDataset();
- grp_sea.ipt_reqdeptnmS.setFocus();
- }
- }
- function grp_sea_ipt_chrgpsnidS_onkeydown(obj:Edit, e:KeyEventInfo)
- {
- if( e.keycode == 13 ){
- obj.updateToDataset();
- grp_sea.ipt_chrgpsnnmS.setFocus();
- }
- }
- function ipt_chrgpsnid_onkeydown(obj:Edit, e:KeyEventInfo)
- {
- if( e.keycode == 13 ){
- obj.updateToDataset();
- ipt_chrgpsnnm.setFocus();
- }
- }
- function grd_rfehemhtlist_onheadclick(obj:Grid, e:GridClickEventInfo)
- {
- if(e.col == grd_rfehemhtlist.getBindCellIndex("body", "chk")){
- ds_main_grid_rfehemhtlist.enableevent = false;
- ds_main_grid_rfehemhtlist.updatecontrol = false;
- if(grd_rfehemhtlist.getCellProperty("head", e.col, "expr") == "0"){
- for(var i = 0; i < ds_main_grid_rfehemhtlist.rowcount ;i++){
- ds_main_grid_rfehemhtlist.setColumn(i, "chk", "Y");
- }
- grd_rfehemhtlist.setCellProperty("head", e.col, "expr", "1");
- }else{
- for(var i = 0; i < ds_main_grid_rfehemhtlist.rowcount ;i++){
- ds_main_grid_rfehemhtlist.setColumn(i, "chk", "N");
- }
- grd_rfehemhtlist.setCellProperty("head", e.col, "expr", "0");
- }
- ds_main_grid_rfehemhtlist.updatecontrol = true;
- ds_main_grid_rfehemhtlist.enableevent = true;
- }
- }
- function ipt_deprtmangrsanctid_onkeydown(obj:Edit, e:KeyEventInfo)
- {
- if(e.keycode == 13){
- obj.updateToDataset();
- ipt_deprtmangrsanctnm.setFocus();
- }
- }
- function ipt_mngersanctid_onkeydown(obj:Edit, e:KeyEventInfo)
- {
- if(e.keycode == 13){
- obj.updateToDataset();
- ipt_mngersanctnm.setFocus();
- }
- }
- function button3_onclick(obj:Button, e:ClickEventInfo)
- {
- misfGridInit(grd_prttemp);
- var print = 0;
- for(var row = 0; row < ds_main_grid_rfehemhtlist.rowcount; row++)
- {
- if(ds_main_grid_rfehemhtlist.getColumn(row, "chk") == "Y") {
- var fixasetcd = ds_main_grid_rfehemhtlist.getColumn(row, "fixasetcd");
- var fixasetnm = ds_main_grid_rfehemhtlist.getColumn(row, "fixasetnm");
- var depthngnm = ds_main_grid_rfehemhtlist.getColumn(row, "depthngnm");
- var reqdd = ds_main_grid_rfehemhtlist.getColumn(row, "reqdd");
- var rpirenddd = ds_main_grid_rfehemhtlist.getColumn(row, "rpirenddd");
- var agency = ds_main_grid_rfehemhtlist.getColumn(row, "agency");
- var estimateamt = ds_main_grid_rfehemhtlist.getColumn(row, "estimateamt");
- var rpirflag2 = ds_main_grid_rfehemhtlist.getColumn(row, "rpirflag2");
- misfGridIUD(grd_prttemp,"A","N");
- ds_main_grid_prttemp.setColumn(ds_main_grid_prttemp.rowposition, "fixasetcd", fixasetcd );
- ds_main_grid_prttemp.setColumn(ds_main_grid_prttemp.rowposition, "fixasetnm", fixasetnm );
- ds_main_grid_prttemp.setColumn(ds_main_grid_prttemp.rowposition, "depthngnm", depthngnm );
- ds_main_grid_prttemp.setColumn(ds_main_grid_prttemp.rowposition, "reqdd", reqdd );
- ds_main_grid_prttemp.setColumn(ds_main_grid_prttemp.rowposition, "rpirenddd", rpirenddd );
- ds_main_grid_prttemp.setColumn(ds_main_grid_prttemp.rowposition, "agency", agency );
- ds_main_grid_prttemp.setColumn(ds_main_grid_prttemp.rowposition, "estimateamt", estimateamt );
- ds_main_grid_prttemp.setColumn(ds_main_grid_prttemp.rowposition, "rpirflag2", rpirflag2 );
-
- print = print + 1;
- }
- }
- ds_print_prtinfo_temp.clearData();
- ds_print_prtinfo.clearData();
- ds_print_prtinfo.copyData(ds_main_grid_prttemp);
-
- dsf_makeValue(ds_print_prtinfo_temp, "reqdd1", "string", ds_send.getColumn(0, "reqdd1"));
- dsf_makeValue(ds_print_prtinfo_temp, "reqdd2", "string", ds_send.getColumn(0, "reqdd2"));
- exeReportPreview("RPRFE00603", "XMLSTR");
- var objDOM = rptf_createDOM();
- rptf_setNodeListToDOM(objDOM, "root/print/prtinfo/temp" , ds_print_prtinfo_temp);
- rptf_setNodeListToDOM(objDOM, "root/print/prtinfo", ds_print_prtinfo);
- var objParam = new Object();
- objParam.xml_data_XML1 = objDOM.documentElement.source;
- var option = "open=1;save=1;directprint=0;print=1;zoom=0;";
- rptf_exeReportPreview30(["RPRFE00603"],[objParam], option);
-
- if(print == "0"){
- sysf_messageBox("출력할 리스트가 없습니다.\n출력을 원하는 리스트를 체크","I008");
- return;
- }
- }
- function grd_rfehemhtlist_onrbuttondown(obj:Grid, e:GridMouseEventInfo)
- {
- if( e.row > -1 ){
- grdf_setSelectedCell(obj, e); // 선택된 행 확실히 선택해줌
- }
- }
- function grd_rfehemhtlist_onrbuttonup(obj:Grid, e:GridMouseEventInfo)
- {
- if( e.row > -1 ){
- grdf_setSelectedCell(obj, e); // 선택된 행 확실히 선택해줌
-
- pMenu_discardmenu.trackPopup(e.screenX, e.screenY);
- }
-
- return true;
- }
- function pMenu_discardmenu_onmenuclick(obj:PopupMenu, e:MenuClickEventInfo)
- {
- ds_discard_rfehemhtlist.clearData();
-
- for( var i=0 ; i<grd_rfehemhtlist.selectcount ; i++ ){
- for( var j=grd_rfehemhtlist.selectstartrow[i] ; j<=grd_rfehemhtlist.selectendrow[i] ; j++ ){
- var nRow = ds_discard_rfehemhtlist.addRow();
- ds_discard_rfehemhtlist.copyRow(nRow, ds_main_grid_rfehemhtlist, j);
- }
- }
-
- var nFindRow = ds_discard_rfehemhtlist.findRowExpr("instcd!='"+sysf_getUserInfo("dutplceinstcd")+"'");
-
- if( nFindRow > -1 ){
- sysf_messageBox("현재 로그인한 기관코드와 저장할 기관코드가 달라 저장","E001");
- return;
- }
-
- var nFindRow = ds_discard_rfehemhtlist.findRowExpr("workstat=='04' || workstat=='04'");
-
- if( nFindRow > -1 ){
- sysf_messageBox(ds_discard_rfehemhtlist.getColumn(nFindRow, "fixasetcd")+"("+ds_discard_rfehemhtlist.getColumn(nFindRow, "fixasetnm")+")은 수리상태가 폐기처리할 수 없는 상태입니다.", "I999");
- return false;
- }
-
- div_discard.visible = true;
- }
- function div_discard_btn_cancel_onclick(obj:Button, e:ClickEventInfo)
- {
- div_discard.visible = false;
- }
- function div_discard_btn_discard_onclick(obj:Button, e:ClickEventInfo)
- {
- if( utlf_isNull(ds_discard_send.getColumn(0, "rpirspec")) ){
- sysf_messageBox("수리내역은", "I003");
- return false;
- }
- if( utlf_isNull(ds_discard_send.getColumn(0, "chrgtel")) ){
- sysf_messageBox("전화번호는", "I003");
- return false;
- }
-
- var sTodate = utlf_getCurrentDate();
-
- for( var i=0 ; i<ds_discard_rfehemhtlist.rowcount ; i++ ){
- ds_discard_rfehemhtlist.setColumn(i, "flag", "S");
- ds_discard_rfehemhtlist.setColumn(i, "acptdeptcd", sysf_getUserInfo("dutplcecd"));
- ds_discard_rfehemhtlist.setColumn(i, "rpirspec", ds_discard_send.getColumn(0, "rpirspec"));
-
- ds_discard_rfehemhtlist.setColumn(i, "lastrpirrslt", sTodate.substr(0, 4)+"-"+sTodate.substr(4, 2)+"-"+sTodate.substr(6, 2)+" >>\n"+ds_discard_send.getColumn(0, "rpirspec"));
- ds_discard_rfehemhtlist.setColumn(i, "chrgtel", ds_discard_send.getColumn(0, "chrgtel"));
- ds_discard_rfehemhtlist.setColumn(i, "rpirflag2", ds_discard_send.getColumn(0, "rpirflag2"));
- }
-
- var oParam = {};
- oParam.id = "TXRFE00901";
- oParam.service = "reqapp.ReqMngt";
- oParam.method = "reqSetEmhtDisposal";
- oParam.inds = "rfehemhtlist=ds_discard_rfehemhtlist";
- oParam.async = false;
- //oParam.callback = "cf_TXRFE00502";
- tranf_submit(oParam);
-
- ds_discard_send.clearData();
- ds_discard_send.addRow();
- div_discard.cmb_rpirflag2.index = 0;
- div_discard.visible = false;
-
- grp_sea.btn_search.click();
- }
- ]]></Script>
- </Form>
- </FDL>
|