123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800 |
- <?xml version="1.0" encoding="utf-8"?>
- <FDL version="1.5">
- <TypeDefinition url="..\..\..\default_typedef.xml"/>
- <Form id="SMRSC20100" position="absolute 0 0 1195 791" titletext="장비청구관리" onload="SMRSC20100_onload">
- <Layouts>
- <Layout>
- <Div position="absolute 0 46 1195 790" id="group3" scrollbars="autoboth" anchor="all">
- <Layouts>
- <Layout>
- <Div id="div_srch" taborder="14" class="div_SA2" position="absolute 0 5 1193 93" anchor="left top right">
- <Layouts>
- <Layout/>
- </Layouts>
- </Div>
- <Shape position="absolute 0 528 1195 534" linetype="vertical" id="line12" class="line_2" anchor="default"/>
- <Static text="장비신청 목록" position="absolute 0 100 124 118" id="caption9" class="tit_2" anchor="default"/>
- <Static text="포장단위" position="absolute -126 310 -18 333" align="align:center middle;" id="caption52" class="cell_1" anchor="default"/>
- <Static text="근속기준일/년" position="absolute -126 334 -18 357" align="align:center middle;" id="caption54" class="cell_1" anchor="default"/>
- <Grid position="absolute 0 121 1193 744" id="grd_reqeqmtlist" taborder="13" binddataset="ds_main_reqeqmt_reqeqmtlist" anchor="all" oncelldblclick="group3_grd_reqeqmtlist_oncelldblclick" cellsizingtype="col" tooltiptype="hover" autoenter="select" onexpanddown="group3_grd_reqeqmtlist_onexpanddown">
- <Formats>
- <Format id="default">
- <Columns>
- <Column size="25" band="left"/>
- <Column size="65"/>
- <Column size="100"/>
- <Column size="0"/>
- <Column size="59"/>
- <Column size="58"/>
- <Column size="75"/>
- <Column size="95"/>
- <Column size="60"/>
- <Column size="150"/>
- <Column size="130"/>
- <Column size="55"/>
- <Column size="70"/>
- <Column size="80"/>
- <Column size="80"/>
- <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="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="121"/>
- <Column size="156"/>
- <Column size="137"/>
- <Column size="81"/>
- <Column size="116"/>
- <Column size="0"/>
- <Column size="0"/>
- </Columns>
- <Rows>
- <Row size="24" band="head"/>
- <Row size="24"/>
- </Rows>
- <Band id="head">
- <Cell/>
- <Cell col="1" colspan="2" text="결재상태/번호" taborder="undefined"/>
- <Cell col="3" text="진행상태"/>
- <Cell col="4" text="심의차수"/>
- <Cell col="5" text="안건번호"/>
- <Cell col="6" text="장비구분"/>
- <Cell col="7" text="신청번호"/>
- <Cell col="8" text="신청자"/>
- <Cell col="9" text="장비명"/>
- <Cell col="10" text="설치장소"/>
- <Cell col="11" text="신청수량"/>
- <Cell col="12" text="단위"/>
- <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"/>
- <Cell col="21"/>
- <Cell col="22"/>
- <Cell col="23"/>
- <Cell col="24"/>
- <Cell col="25"/>
- <Cell col="26"/>
- <Cell col="27"/>
- <Cell col="28"/>
- <Cell col="29"/>
- <Cell col="30"/>
- <Cell col="31"/>
- <Cell col="32"/>
- <Cell col="33"/>
- <Cell col="34"/>
- <Cell col="35"/>
- <Cell col="36"/>
- <Cell col="37"/>
- <Cell col="38"/>
- <Cell col="39"/>
- <Cell col="40"/>
- <Cell col="41"/>
- <Cell col="42"/>
- <Cell col="43"/>
- <Cell col="44"/>
- <Cell col="45"/>
- <Cell col="46"/>
- <Cell col="47"/>
- <Cell col="48"/>
- <Cell col="49"/>
- <Cell col="50"/>
- <Cell col="51"/>
- <Cell col="52"/>
- <Cell col="53"/>
- <Cell col="54"/>
- <Cell col="55"/>
- <Cell col="56"/>
- <Cell col="57"/>
- <Cell col="58"/>
- <Cell col="59"/>
- <Cell col="60"/>
- <Cell col="61"/>
- <Cell col="62"/>
- <Cell col="63"/>
- <Cell col="64"/>
- <Cell col="65"/>
- <Cell col="66"/>
- <Cell col="67"/>
- <Cell col="68"/>
- <Cell col="69"/>
- <Cell col="70"/>
- <Cell col="71"/>
- <Cell col="72"/>
- <Cell col="73"/>
- <Cell col="74"/>
- <Cell col="75"/>
- <Cell col="76"/>
- <Cell col="77"/>
- <Cell col="78"/>
- <Cell col="79"/>
- <Cell col="80"/>
- <Cell col="81"/>
- <Cell col="82"/>
- <Cell col="83"/>
- <Cell col="84"/>
- <Cell col="85"/>
- <Cell col="86"/>
- <Cell col="87"/>
- <Cell col="88"/>
- <Cell col="89"/>
- <Cell col="90"/>
- <Cell col="91"/>
- <Cell col="92"/>
- <Cell col="93"/>
- <Cell col="94"/>
- <Cell col="95"/>
- <Cell col="96"/>
- <Cell col="97"/>
- <Cell col="98"/>
- <Cell col="99"/>
- <Cell col="100"/>
- <Cell col="101"/>
- <Cell col="102"/>
- <Cell col="103"/>
- <Cell col="104"/>
- <Cell col="105"/>
- <Cell col="106"/>
- <Cell col="107"/>
- <Cell col="108"/>
- <Cell col="109"/>
- <Cell col="110"/>
- <Cell col="111"/>
- <Cell col="112"/>
- <Cell col="113"/>
- <Cell col="114"/>
- <Cell col="115" style="background:navy;color:white;" text="진행상태(사용자용)"/>
- <Cell col="116" style="background:#e7e7e7ff;color:black;font:돋움,9,bold;" text="사전검토(검토부서용)" tooltiptext="사전검토 진행상태"/>
- <Cell col="117" style="background:#e7e7e7ff;color:black;font:돋움,9,bold;" text="심의" tooltiptext="심의 진행상태"/>
- <Cell col="118" style="background:#e7e7e7ff;color:black;font:돋움,9,bold;" text="구매"/>
- <Cell col="119" text="비고"/>
- <Cell col="120" text="장비코드"/>
- <Cell col="121" text="메모"/>
- </Band>
- <Band id="body">
- <Cell celltype="head"/>
- <Cell col="1" text="bind:docstatus" tooltiptext="bind:docstatus"/>
- <Cell col="2" style="align:left;" text="bind:docregno" tooltiptext="bind:docregno"/>
- <Cell col="3" displaytype="combo" edittype="combo" text="bind:prcsstat" enable="false"/>
- <Cell col="4" displaytype="text" edittype="expr:fstat == '물류부서장결재' ? 'text' : 'none'" style="align:center middle;" text="bind:aappseq"/>
- <Cell col="5" displaytype="text" edittype="expr:fstat == '물류부서장결재' ? 'text' : 'none'" style="align:center middle;" text="bind:casenum"/>
- <Cell col="6" text="bind:eqflagnm"/>
- <Cell col="7" text="bind:reqno" tooltiptext="bind:reqno"/>
- <Cell col="8" text="bind:reqpsnnm" tooltiptext="bind:reqpsnnm"/>
- <Cell col="9" displaytype="text" text="bind:goodflaghngnm" tooltiptext="bind:goodflagengnm"/>
- <Cell col="10" displaytype="text" text="bind:installplcenm" tooltiptext="bind:installplcenm"/>
- <Cell col="11" displaytype="number" style="align:center;" text="bind:appqty" tooltiptext="bind:appqty"/>
- <Cell col="12" text="bind:bugtforgnamtunitnm" tooltiptext="bind:bugtforgnamtunitnm"/>
- <Cell col="13" displaytype="number" text="bind:bugtwncurncy" tooltiptext="bind:bugtwncurncy"/>
- <Cell col="14" displaytype="number" text="bind:bugtforgnamt" tooltiptext="bind:bugtforgnamt"/>
- <Cell col="15" displaytype="combo" edittype="combo" text="bind:dcusrslt" tooltiptext="bind:dcusrslt" enable="false"/>
- <Cell col="16" displaytype="text" text="bind:dcuscmt" tooltiptext="bind:dcuscmt"/>
- <Cell col="17" displaytype="text" text="bind:badd" tooltiptext="bind:badd"/>
- <Cell col="18" displaytype="text" text="bind:purcprcsstat" tooltiptext="bind:purcprcsstat"/>
- <Cell col="19" displaytype="text" text="bind:purcprcscmt" tooltiptext="bind:purcprcscmt"/>
- <Cell col="20" text="bind:instcd"/>
- <Cell col="21" text="bind:reqdd"/>
- <Cell col="22" text="bind:reqseqno"/>
- <Cell col="23" text="bind:acptflag"/>
- <Cell col="24" text="bind:goodflaghngnm"/>
- <Cell col="25" text="bind:workflag"/>
- <Cell col="26" text="bind:workflagnm"/>
- <Cell col="27" text="bind:welfcd"/>
- <Cell col="28" text="bind:reqdeptcd"/>
- <Cell col="29" text="bind:reqdeptnm"/>
- <Cell col="30" text="bind:mngtdeptcd"/>
- <Cell col="31" text="bind:mngtdeptnm"/>
- <Cell col="32" text="bind:installplcecd"/>
- <Cell col="33" text="bind:usemthd"/>
- <Cell col="34" text="bind:usemthdnm"/>
- <Cell col="35" text="bind:fcstuseyearno"/>
- <Cell col="36" text="bind:goodunitcost"/>
- <Cell col="37" text="bind:bugtyy"/>
- <Cell col="38" text="bind:bugtforgnamtunit"/>
- <Cell col="39" text="bind:chgrate"/>
- <Cell col="40" text="bind:addmnpwrdr"/>
- <Cell col="41" text="bind:addmnpwrnurs"/>
- <Cell col="42" text="bind:addmnpwrengr"/>
- <Cell col="43" text="bind:addmnpwretc"/>
- <Cell col="44" text="bind:installspcepossnyn"/>
- <Cell col="45" text="bind:calcscorgenryn"/>
- <Cell col="46" text="bind:usgepurcneed"/>
- <Cell col="47" text="bind:reqpsnid"/>
- <Cell col="48" text="bind:requsrtel"/>
- <Cell col="49" text="bind:possesdocucd"/>
- <Cell col="50" text="bind:comusedept"/>
- <Cell col="51" text="bind:comusedeptnm"/>
- <Cell col="52" text="bind:smkindeqyn"/>
- <Cell col="53" text="bind:goodflag"/>
- <Cell col="54" text="bind:rowstatus"/>
- <Cell col="55" text="bind:adyn"/>
- <Cell col="56" text="bind:usepsn"/>
- <Cell col="57" text="bind:fileyn1"/>
- <Cell col="58" text="bind:filepath1"/>
- <Cell col="59" text="bind:filenm1"/>
- <Cell col="60" text="bind:fileyn2"/>
- <Cell col="61" text="bind:filepath2"/>
- <Cell col="62" text="bind:filenm2"/>
- <Cell col="63" text="bind:fileyn3"/>
- <Cell col="64" text="bind:filepath3"/>
- <Cell col="65" text="bind:filenm3"/>
- <Cell col="66" text="bind:fileyn4"/>
- <Cell col="67" text="bind:filepath4"/>
- <Cell col="68" text="bind:filenm4"/>
- <Cell col="69" text="bind:fileyn5"/>
- <Cell col="70" text="bind:filepath5"/>
- <Cell col="71" text="bind:filenm5"/>
- <Cell col="72" text="bind:fileyn6"/>
- <Cell col="73" text="bind:filepath6"/>
- <Cell col="74" text="bind:filenm6"/>
- <Cell col="75" text="bind:fileyn7"/>
- <Cell col="76" text="bind:filepath7"/>
- <Cell col="77" text="bind:filenm7"/>
- <Cell col="78" text="bind:fileyn8"/>
- <Cell col="79" text="bind:filepath8"/>
- <Cell col="80" text="bind:filenm8"/>
- <Cell col="81" text="bind:cstflag"/>
- <Cell col="82" text="bind:kreqmtcmt"/>
- <Cell col="83" text="bind:kreqmtyn"/>
- <Cell col="84" text="bind:deprdistprf1"/>
- <Cell col="85" text="bind:deprdistper1"/>
- <Cell col="86" text="bind:deprdistprf2"/>
- <Cell col="87" text="bind:deprdistper2"/>
- <Cell col="88" text="bind:deprdistprf3"/>
- <Cell col="89" text="bind:deprdistper3"/>
- <Cell col="90" text="bind:deprdistprf4"/>
- <Cell col="91" text="bind:deprdistper4"/>
- <Cell col="92" text="bind:deprdistprf5"/>
- <Cell col="93" text="bind:deprdistper5"/>
- <Cell col="94" text="bind:deprdistprf6"/>
- <Cell col="95" text="bind:deprdistper6"/>
- <Cell col="96" text="bind:deprdistprf7"/>
- <Cell col="97" text="bind:deprdistper7"/>
- <Cell col="98" text="bind:deprdistprf8"/>
- <Cell col="99" text="bind:deprdistper8"/>
- <Cell col="100" text="bind:deprdistprf9"/>
- <Cell col="101" text="bind:deprdistper9"/>
- <Cell col="102" text="bind:deprdistprf10"/>
- <Cell col="103" text="bind:deprdistper10"/>
- <Cell col="104" text="bind:dcusno"/>
- <Cell col="105" text="bind:dcusdd"/>
- <Cell col="106" text="bind:selectrow"/>
- <Cell col="107" text="bind:pinstid"/>
- <Cell col="108" text="bind:docregno"/>
- <Cell col="109" text="bind:docstatus"/>
- <Cell col="110" text="bind:docstat"/>
- <Cell col="111" text="bind:introtype"/>
- <Cell col="112" text="bind:rental"/>
- <Cell col="113" text="bind:prcpcntyn"/>
- <Cell col="114" text="bind:deprdistpyn"/>
- <Cell col="115" style="background:#e6fde5ff;background2:#e6fde5ff;color:darkblue;color2:darkblue;font:arial,9,bold;" text="bind:cfstat" expr="expr:utlf_isNull(cfstat) && utlf_isNull(docstatus) ? '신청' : (cfstat == '02' ||cfstat == '03' ||cfstat == '04') ? '시설검토중' : (cfstat == '05' || cfstat == '06' ||cfstat == '07' ||cfstat == '08') ? ' 전산검토중' : (cfstat == '09' || cfstat == '10' ||cfstat == '11' ||cfstat == '12' ) ? ' 의공검토중' : (cfstat == '13' ||cfstat == '14' ||cfstat == '15' ||cfstat == '16' ) ? '물류검토중' : cfstat == '17' ? '사전검토완료' : ''"/>
- <Cell col="116" displaytype="normal" edittype="none" style="align:center;font:arial,9,bold;" text="bind:fstat" expr="expr:fstat == '물류부서장결재' ? '사전검토완료' : utlf_isNull(fstat) == true ? '' : fstat"/>
- <Cell col="117" displaytype="combo" edittype="expr:fstat == '물류부서장결재' && !utlf_isNull(dcusstat) ? 'combo' : 'none'" style="align:center;" text="bind:dcusstat"/>
- <Cell col="118" displaytype="date" style="align:center;" text="bind:condd" calendardisplay="edit" calendardisplaynulltype="none"/>
- <Cell col="119" displaytype="text" edittype="text" text="bind:cmt" wordwrap="word" expandshow="show" tooltiptext="expr:bind:cmt"/>
- <Cell col="120" displaytype="normal" edittype="expr:!utlf_isNull(aappseq) && !utlf_isNull( casenum) ? 'text' : 'none'" style="align:center middle;" text="bind:fixasetcd" expandshow="show"/>
- <Cell col="121" displaytype="text" edittype="text" text="bind:memo" expandshow="show" tooltiptext="expr:expr:bind:memo"/>
- </Band>
- </Format>
- </Formats>
- </Grid>
- <Shape position="absolute 0 116 1193 122" id="line3" class="line_10" anchor="left top right"/>
- <Button position="absolute 1124 40 1180 62" id="btn_search" class="btn1" taborder="8" text="조회" anchor="top right" onclick="group3_btn_search_onclick"/>
- <Button position="absolute 529 39 545 55" id="button5" class="icon_search" enable="true" taborder="5" text="" anchor="default" onclick="group3_button5_onclick"/>
- <Static text="기관코드 :" position="absolute 15 14 97 31" id="caption4" class="search_name" anchor="default"/>
- <Shape position="absolute 1104 11 1116 90" linetype="vertical" id="line18" class="line_4" anchor="top right"/>
- <Edit position="absolute 424 37 528 56" id="ipt_reqdeptcd_search" class="input_essential" enable="true" taborder="4" anchor="default" onkeydown="group3_ipt_reqdeptcd_search_onkeydown"/>
- <Static text="신청부서 :" position="absolute 348 38 430 55" id="caption8" class="search_name" anchor="default"/>
- <Edit readonly="true" position="absolute 549 37 729 56" id="opt_reqdeptnm_search" anchor="default" class="output"/>
- <Static text="신청일자 :" position="absolute 15 39 97 56" id="caption14" class="search_name" anchor="default"/>
- <Calendar position="absolute 92 38 187 57" id="ipt_reqfrmdd_search" class="input_essential" taborder="2" anchor="default" dateformat="yyyy-MM-dd" value="null"/>
- <Static text="~" position="absolute 191 38 206 58" id="caption42" anchor="default"/>
- <Calendar position="absolute 207 38 302 57" id="ipt_reqtodd_search" class="input_essential" taborder="3" anchor="default" dateformat="yyyy-MM-dd"/>
- <Combo position="absolute 637 65 659 84" id="cmb_prcsstat_search" class="combo_default" taborder="7" visible="false" anchor="default"/>
- <Static text="장비구분 :" position="absolute 347 13 429 30" id="caption45" class="search_name" visible="true" anchor="default"/>
- <Combo position="absolute 92 13 302 32" id="cmb_instcd" class="combo_default" enable="false" taborder="1" anchor="default" onitemchanged="group3_cmb_instcd_onitemchanged"/>
- <Combo position="absolute 659 71 689 90" id="ipt_dcusrslt" visible="false" anchor="default"/>
- <Combo position="absolute 689 71 719 90" id="ipt_purcprcsstat" visible="false" anchor="default"/>
- <Button position="absolute 1086 94 1139 116" id="btn_delrow" class="btn2" text="행삭제" anchor="top right" onclick="group3_btn_delrow_onclick"/>
- <Static id="caption1" text="공지사항 :" class="search_name" position="absolute 688 14 770 31" style="color:crimson;"/>
- <TextArea id="ipt_termcmt" taborder="15" position="absolute 762 7 1097 90" wordwrap="word" readonly="true" style="background:lightyellow stretch 5,5;border:1 solid #808080ff ;color:dimgray;"/>
- <Static id="caption00" text="사전검토 진행상태 :" class="search_name" visible="true" position="absolute 15 66 154 83"/>
- <Combo id="cmb_eqflag_search" taborder="16" class="combo_default" visible="true" position="absolute 421 11 539 30" codecolumn="codecolumn" datacolumn="datacolumn" enable="true">
- <Dataset id="innerdataset">
- <ColumnInfo>
- <Column id="codecolumn" size="256"/>
- <Column id="datacolumn" size="256"/>
- </ColumnInfo>
- <Rows>
- <Row>
- <Col id="codecolumn">A</Col>
- <Col id="datacolumn">전체</Col>
- </Row>
- <Row>
- <Col id="codecolumn"/>
- <Col id="datacolumn">일반장비</Col>
- </Row>
- <Row>
- <Col id="codecolumn">C</Col>
- <Col id="datacolumn">임상실습동장비</Col>
- </Row>
- </Rows>
- </Dataset>
- </Combo>
- <Static id="caption02" text="심의 진행상태 :" class="search_name" visible="true" position="absolute 348 65 487 82"/>
- <Combo id="cmb_fstat_search" taborder="17" class="combo_default" visible="true" position="absolute 146 64 302 83" codecolumn="codecolumn" datacolumn="datacolumn" onitemchanged="group3_cmb_fstat_search_onitemchanged">
- <Dataset id="innerdataset">
- <ColumnInfo>
- <Column id="codecolumn" size="256"/>
- <Column id="datacolumn" size="256"/>
- </ColumnInfo>
- <Rows>
- <Row>
- <Col id="codecolumn">01</Col>
- <Col id="datacolumn">시설확인목록</Col>
- </Row>
- <Row>
- <Col id="codecolumn">05</Col>
- <Col id="datacolumn">전산확인목록</Col>
- </Row>
- <Row>
- <Col id="codecolumn">09</Col>
- <Col id="datacolumn">의공확인목록</Col>
- </Row>
- <Row>
- <Col id="codecolumn">13</Col>
- <Col id="datacolumn">물류확인목록</Col>
- </Row>
- <Row>
- <Col id="codecolumn">17</Col>
- <Col id="datacolumn">사전검토완료</Col>
- </Row>
- </Rows>
- </Dataset>
- </Combo>
- <Combo id="cmb_dcusstat_search" taborder="18" class="combo_default" visible="true" position="absolute 456 63 614 82"/>
- <Div id="grp_cmt" taborder="21" style="background:whitesmoke;bordertype:round 4 4 ;shadow:outer 4,4 4 gray;" class="div_SA3" visible="false" position="absolute 666 173 1123 412">
- <Layouts>
- <Layout>
- <Static id="caption2" text="비고 상세내역" class="tit_2" position="absolute 12 8 218 24" anchor="default"/>
- <TextArea id="textarea" taborder="1" wordwrap="word" position="absolute 12 28 447 208" anchor="default" enable="false"/>
- <Button id="btn_close" taborder="2" text="닫기" class="btn4" position="absolute 391 212 447 234" anchor="default" onclick="group3_grp_cmt_btn_close_onclick"/>
- <Div id="grp_cmt" taborder="3" style="background:whitesmoke;bordertype:round 4 4 ;shadow:outer 4,4 4 gray;" class="div_SA3" visible="false" position="absolute 634 453 1091 692" anchor="default">
- <Layouts>
- <Layout>
- <Static id="caption2" text="비고 상세내역" class="tit_2" position="absolute 12 8 218 24" anchor="default"/>
- <TextArea id="textarea2" taborder="3" wordwrap="word" position="absolute 12 28 447 208" anchor="default"/>
- <Button id="btn_close" taborder="4" text="닫기" onclick="group3_grp_cmt_btn_close_onclick" class="btn4" position="absolute 391 212 447 234" anchor="default"/>
- </Layout>
- </Layouts>
- </Div>
- <Div id="grp_cmt00" taborder="4" style="background:whitesmoke;bordertype:round 4 4 ;shadow:outer 4,4 4 gray;" class="div_SA3" visible="false" position="absolute 634 453 1091 692">
- <Layouts>
- <Layout>
- <Static id="caption2" text="비고 상세내역" class="tit_2" position="absolute 12 8 218 24"/>
- <TextArea id="textarea2" taborder="4" wordwrap="word" position="absolute 12 28 447 208"/>
- <Button id="btn_close" taborder="5" text="닫기" onclick="group3_grp_cmt_btn_close_onclick" class="btn4" position="absolute 391 212 447 234"/>
- <Div id="grp_cmt" taborder="6" style="background:whitesmoke;bordertype:round 4 4 ;shadow:outer 4,4 4 gray;" class="div_SA3" visible="false" position="absolute 634 453 1091 692">
- <Layouts>
- <Layout>
- <Static id="caption2" text="비고 상세내역" class="tit_2" position="absolute 12 8 218 24"/>
- <TextArea id="textarea2" taborder="5" wordwrap="word" position="absolute 12 28 447 208"/>
- <Button id="btn_close" taborder="6" text="닫기" onclick="group3_grp_cmt_btn_close_onclick" class="btn4" position="absolute 391 212 447 234"/>
- </Layout>
- </Layouts>
- </Div>
- </Layout>
- </Layouts>
- </Div>
- <Button id="btn_insert" taborder="5" text="입력" class="btn4" position="absolute 332 212 388 234" onclick="group3_grp_cmt_btn_insert_onclick" visible="false" enable="true"/>
- </Layout>
- </Layouts>
- </Div>
- <Div id="grp_memo" taborder="22" style="background:whitesmoke;bordertype:round 4 4 ;shadow:outer 4,4 4 gray;" class="div_SA3" visible="false" position="absolute 666 173 1123 412">
- <Layouts>
- <Layout>
- <Static id="caption2" text="메모 상세내역" class="tit_2" position="absolute 12 8 218 24" anchor="default"/>
- <TextArea id="textarea" taborder="5" wordwrap="word" position="absolute 12 28 447 208" anchor="default" enable="true" oneditclick="group3_grp_memo_textarea_oneditclick"/>
- <Button id="btn_close" taborder="6" text="닫기" class="btn4" position="absolute 391 212 447 234" anchor="default" onclick="group3_grp_memo_btn_close_onclick"/>
- <Div id="grp_cmt" taborder="7" style="background:whitesmoke;bordertype:round 4 4 ;shadow:outer 4,4 4 gray;" class="div_SA3" visible="false" position="absolute 634 453 1091 692" anchor="default">
- <Layouts>
- <Layout>
- <Static id="caption2" text="비고 상세내역" class="tit_2" position="absolute 12 8 218 24" anchor="default"/>
- <TextArea id="textarea2" taborder="5" wordwrap="word" position="absolute 12 28 447 208" anchor="default"/>
- <Button id="btn_close" taborder="6" text="닫기" onclick="group3_grp_cmt_btn_close_onclick" class="btn4" position="absolute 391 212 447 234" anchor="default"/>
- </Layout>
- </Layouts>
- </Div>
- <Div id="grp_cmt00" taborder="8" style="background:whitesmoke;bordertype:round 4 4 ;shadow:outer 4,4 4 gray;" class="div_SA3" visible="false" position="absolute 634 453 1091 692" anchor="default">
- <Layouts>
- <Layout>
- <Static id="caption2" text="비고 상세내역" class="tit_2" position="absolute 12 8 218 24" anchor="default"/>
- <TextArea id="textarea2" taborder="7" wordwrap="word" position="absolute 12 28 447 208" anchor="default"/>
- <Button id="btn_close" taborder="8" text="닫기" onclick="group3_grp_cmt_btn_close_onclick" class="btn4" position="absolute 391 212 447 234" anchor="default"/>
- <Div id="grp_cmt" taborder="9" style="background:whitesmoke;bordertype:round 4 4 ;shadow:outer 4,4 4 gray;" class="div_SA3" visible="false" position="absolute 634 453 1091 692" anchor="default">
- <Layouts>
- <Layout>
- <Static id="caption2" text="비고 상세내역" class="tit_2" position="absolute 12 8 218 24" anchor="default"/>
- <TextArea id="textarea2" taborder="7" wordwrap="word" position="absolute 12 28 447 208" anchor="default"/>
- <Button id="btn_close" taborder="8" text="닫기" onclick="group3_grp_cmt_btn_close_onclick" class="btn4" position="absolute 391 212 447 234" anchor="default"/>
- </Layout>
- </Layouts>
- </Div>
- </Layout>
- </Layouts>
- </Div>
- <Button id="btn_insert" taborder="9" text="입력" class="btn4" visible="true" position="absolute 332 212 388 234" onclick="group3_grp_memo_btn_insert_onclick" anchor="default"/>
- </Layout>
- </Layouts>
- </Div>
- <Button id="btn_save" taborder="23" text="저장" class="btn5" position="absolute 1031 94 1084 116" anchor="top right" style="font:dotum,9,bold;" onclick="group3_btn_save_onclick" visible="false"/>
- <Button id="btn_excel" taborder="24" text="엑셀" onclick="btn_excel_onclick" class="btn7" position="absolute 1141 94 1192 116" anchor="top right"/>
- <Static id="caption10" text="★ 진행절차 :신청부서 입력 → 검토(시설 → 전산 → 의공 → 물류) → 요청부서 전자결재(첨부파일 붙임, 기획예산과로 수신자 지정) → 심의 → 구매" position="absolute 117 95 1023 115" style="background:lightskyblue;border:1 solid black ;color:darkblue;align:center middle;font:Dotum,9,bold;" onclick="group3_caption10_onclick"/>
- </Layout>
- </Layouts>
- </Div>
- <Div position="absolute 0 25 1193 53" id="grp_btn" scrollbars="autoboth" anchor="left top right">
- <Layouts>
- <Layout>
- <Shape position="absolute 0 22 1193 28" id="line17" class="line_6" anchor="left top right"/>
- <Button position="absolute 1137 1 1193 23" id="button1" class="btn4" text="신규" anchor="top right" onclick="grp_btn_button1_onclick"/>
- <Button position="absolute 2 1 82 23" id="btn_reqapp" class="btn6" visible="false" text="전자결재" anchor="default" onclick="grp_btn_btn_reqapp_onclick"/>
- <Static id="cap_termmsg" position="absolute 188 0 1135 25" style="color:crimson;font:맑은 고딕,11,bold antialias;"/>
- </Layout>
- </Layouts>
- </Div>
- <Static id="caption6" text="장비신청" class="tit_1" position="absolute 0 0 100 25"/>
- <Div id="grp_msg" anchor="top right" taborder="1" style="background:whitesmoke;bordertype:round 4 4 ;shadow:outer 4,4 4 gray;" class="div_SA3" visible="false" position="absolute 320 204 824 472">
- <Layouts>
- <Layout>
- <Static id="Static07" position="absolute 14 16 492 222" style="border:1 solid #808080ff ;" anchor="default"/>
- <Button id="btn_msg" taborder="1" text="확인" onclick="grp_msg_btn_msg_onclick" class="btn8" position="absolute 229 236 285 258" anchor="default"/>
- <Static id="caption2" class="tit_4" position="absolute 124 30 384 66" style="background:navy;font:돋움,12,bold;" anchor="default"/>
- <Static id="Static00" text="○ 2019년 예산 부족 사유로 하반기 장비 신청은" position="absolute 18 89 322 109" style="font:Dotum,10;" anchor="default"/>
- <Static id="Static01" text=""노후교체", "무상임차" " position="absolute 291 89 462 109" style="color:mediumblue;font:Dotum,10,bold;" anchor="default"/>
- <Static id="Static02" text="○ 신규장비는 가급적 신청 바랍니다. " onclick="grp_msg_Static02_onclick" position="absolute 18 129 488 149" style="font:dotum,10,bold;" anchor="default"/>
- <Static id="Static03" text="<노후교체 장비 신청 시 의공학과 노후교체 의견서 필수>" position="absolute 17 172 492 192" style="background:transparent;color:crimson;font:dotum,10,bold;" anchor="default"/>
- <Static id="Static04" text="※ 장비 신청 시 " position="absolute 19 194 188 214" style="font:Dotum,10;" anchor="default"/>
- <Static id="Static05" text="신청매뉴얼" position="absolute 114 194 214 214" style="color:mediumblue;font:Dotum,10,bold;" anchor="default"/>
- <Static id="Static06" text="을 반드시 숙지하시고 신청하여 주시기 바랍니다." position="absolute 183 194 484 214" style="font:Dotum,10;" anchor="default"/>
- <Static id="Static08" text="의료장비 신규 신청 제한 알림" position="absolute 136 38 410 58" style="color:white;font:돋움,12,bold;" anchor="default"/>
- <Static id="Static09" text="긴급 ‧ 필수 사유가 없는 한" position="absolute 111 128 304 148" style="font:dotum,10,underline bold;" anchor="default"/>
- <Static id="Static10" text="장비를 우선적으로 신청하여 주시기 바랍니다." position="absolute 36 108 349 128" style="font:Dotum,10;" anchor="default"/>
- <Static id="Static11" text="지양 " onclick="grp_msg_Static11_onclick" position="absolute 378 129 433 149" style="color:deeppink;font:dotum,9,bold;" anchor="default"/>
- </Layout>
- </Layouts>
- </Div>
- <Div id="grp_fixasetinfo" taborder="2" class="div_SA2" visible="false" position="absolute 408 299 1044 540">
- <Layouts>
- <Layout>
- <Static id="caption3" text="장비 내역" position="absolute 9 13 189 33" style="color:darkblue;font:dotum,9,bold;" anchor="default" class="tit_2"/>
- <Grid id="grd_fixasetlist" taborder="6" binddataset="ds_fixasetlist" useinputpanel="false" cellsizingtype="col" autofittype="col" position="absolute 8 31 629 212" anchor="default" oncelldblclick="grp_fixasetinfo_grd_fixasetlist_oncelldblclick" tabstop="true" oncellclick="grp_fixasetinfo_grd_fixasetlist_oncellclick">
- <Formats>
- <Format id="default">
- <Columns>
- <Column size="102"/>
- <Column size="227"/>
- <Column size="129"/>
- <Column size="0"/>
- <Column size="0"/>
- <Column size="85"/>
- <Column size="61"/>
- <Column size="0"/>
- <Column size="0"/>
- <Column size="0"/>
- </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="chk"/>
- <Cell col="5" text="검수일자"/>
- <Cell col="6" text="수리내역" expandshow="hide"/>
- <Cell col="7" text="기관코드"/>
- <Cell col="8" text="심의차수"/>
- <Cell col="9" text="안건번호"/>
- </Band>
- <Band id="body">
- <Cell style="align:center middle;cursor:hand;" text="bind:fixasetcd"/>
- <Cell col="1" displaytype="text" style="align:left middle;" text="bind:goodflaghngnm"/>
- <Cell col="2" style="align:center middle;" text="bind:goodspec"/>
- <Cell col="3" style="align:center middle;" text="bind:eqreqdd"/>
- <Cell col="4" style="align:center middle;" text="bind:chk"/>
- <Cell col="5" displaytype="date" edittype="none" style="align:center;" text="bind:chkdd" calendardisplaynulltype="none"/>
- <Cell col="6" displaytype="button" edittype="button" style="align:center middle;padding:2 12 2 12;cursor:hand;controlbackground:lavender;controlborder:1 solid blueviolet ;" text="클릭" expandshow="hide" expandsize="35"/>
- <Cell col="7" text="bind:instcd"/>
- <Cell col="8" text="bind:aappseq"/>
- <Cell col="9" text="bind:casenum"/>
- </Band>
- </Format>
- </Formats>
- </Grid>
- <Button id="btn_close" taborder="7" text="닫기" class="btn4" position="absolute 569 215 625 237" anchor="default" ondblclick="grp_fixasetinfo_btn_close_ondblclick" onclick="grp_fixasetinfo_btn_close_onclick"/>
- <Static id="caption00" text="** 자산코드 더블클릭 시 장비마스터 화면 팝업 **" position="absolute 9 213 446 233" style="color:lightcoral;font:dotum,9,bold;" anchor="default" onclick="grp_fixasetinfo_caption00_onclick"/>
- <Div id="grp_prcpinfo" taborder="8" class="div_SA2" visible="false" position="absolute 594 435 1116 676" anchor="default">
- <Layouts>
- <Layout>
- <Static id="caption3" text="최근 3개월 처방부서 확인" position="absolute 13 5 193 25" style="color:darkblue;font:dotum,9,bold;" anchor="default"/>
- <Grid id="grd_reqprgmlist" taborder="7" binddataset="ds_rst_prcpcnt" useinputpanel="false" cellsizingtype="col" autofittype="col" onkeyup="grp_reqprgmlist_grd_reqprgmlist_onkeyup" oncelldblclick="grp_reqprgmlist_grd_reqprgmlist_oncelldblclick" position="absolute 8 31 508 212" anchor="default">
- <Formats>
- <Format id="default">
- <Columns>
- <Column size="77"/>
- <Column size="227"/>
- <Column size="129"/>
- <Column size="0"/>
- <Column size="0"/>
- <Column size="67"/>
- </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="chk"/>
- <Cell col="5" text="건수"/>
- </Band>
- <Band id="body">
- <Cell style="align:center middle;" text="bind:goodcd"/>
- <Cell col="1" displaytype="text" style="align:left middle;" text="bind:goodnm"/>
- <Cell col="2" style="align:center middle;" text="bind:orddeptnm"/>
- <Cell col="3" style="align:center middle;" text="bind:eqreqdd"/>
- <Cell col="4" style="align:center middle;" text="bind:chk"/>
- <Cell col="5" displaytype="number" edittype="masknumber" style="align:center;" text="bind:totqty" mask="#,##0"/>
- </Band>
- </Format>
- </Formats>
- </Grid>
- <Button id="btn_close" taborder="8" text="확인" onclick="group3_grp_prcpinfo_btn_close_onclick" class="btn4" position="absolute 449 215 505 237" anchor="default"/>
- <Static id="caption00" text="** 사용된 처방이 존재합니다 **" position="absolute 9 213 446 233" style="color:lightcoral;font:dotum,9,bold;" anchor="default"/>
- </Layout>
- </Layouts>
- </Div>
- </Layout>
- </Layouts>
- </Div>
- <Button id="btn_down" taborder="3" text="신청매뉴얼다운" class="btn2" visible="true" position="absolute 84 26 184 48" onclick="btn_down_onclick"/>
- </Layout>
- </Layouts>
- <Objects>
- <Dataset id="ds_combo" firefirstcount="0" firenextcount="0" useclientlayout="false" updatecontrol="true" enableevent="true" loadkeymode="keep" loadfiltermode="keep" reversesubsum="keep">
- <ColumnInfo>
- <Column id="dcusrslt" type="STRING" size="256"/>
- <Column id="purcprcsstat" type="STRING" size="256"/>
- </ColumnInfo>
- </Dataset>
- <Dataset id="ds_send_search" firefirstcount="0" firenextcount="0" useclientlayout="false" updatecontrol="true" enableevent="true" loadkeymode="keep" loadfiltermode="keep" reversesubsum="keep" oncolumnchanged="ds_send_search_oncolumnchanged">
- <ColumnInfo>
- <Column id="instcd" type="STRING" size="256"/>
- <Column id="reqdeptcd" type="STRING" size="256"/>
- <Column id="reqdeptnm" type="STRING" size="256"/>
- <Column id="reqfrmdd" type="STRING" size="256"/>
- <Column id="reqtodd" type="STRING" size="256"/>
- <Column id="prcsstat" type="STRING" size="256"/>
- <Column id="emplno" type="STRING" size="256"/>
- <Column id="flag" type="STRING" size="256"/>
- <Column id="userid" type="STRING" size="256"/>
- <Column id="grupcdid" type="STRING" size="256"/>
- <Column id="termmsg" type="STRING" size="256"/>
- <Column id="eqflag" type="STRING" size="256"/>
- <Column id="fstat" type="STRING" size="256" sumtext="사전검토진행사항"/>
- <Column id="dcusstat" type="STRING" size="256" sumtext="심의진행상태"/>
- </ColumnInfo>
- <Rows>
- <Row>
- <Col id="instcd"/>
- <Col id="reqdeptcd"/>
- <Col id="reqdeptnm"/>
- <Col id="reqfrmdd"/>
- <Col id="reqtodd"/>
- <Col id="prcsstat"/>
- <Col id="emplno"/>
- <Col id="flag"/>
- <Col id="userid"/>
- <Col id="grupcdid"/>
- <Col id="termmsg"/>
- </Row>
- </Rows>
- </Dataset>
- <Dataset id="ds_send" firefirstcount="0" firenextcount="0" useclientlayout="false" updatecontrol="true" enableevent="true" loadkeymode="keep" loadfiltermode="keep" reversesubsum="keep">
- <ColumnInfo/>
- </Dataset>
- <Dataset id="ds_temp_userinfo" firefirstcount="0" firenextcount="0" useclientlayout="false" updatecontrol="true" enableevent="true" loadkeymode="keep" loadfiltermode="keep" reversesubsum="keep"/>
- <Dataset id="ds_main_reqeqmt_reqeqmtlist" firefirstcount="0" firenextcount="0" useclientlayout="false" updatecontrol="true" enableevent="true" loadkeymode="keep" loadfiltermode="keep" reversesubsum="keep" oncolumnchanged="ds_main_reqeqmt_reqeqmtlist_oncolumnchanged">
- <ColumnInfo>
- <Column id="instcd" type="STRING" size="255"/>
- <Column id="reqdd" type="STRING" size="255"/>
- <Column id="reqseqno" type="STRING" size="255"/>
- <Column id="reqno" type="STRING" size="255"/>
- <Column id="prcsstat" type="STRING" size="255"/>
- <Column id="acptflag" type="STRING" size="255"/>
- <Column id="goodflaghngnm" type="STRING" size="255"/>
- <Column id="goodflagengnm" type="STRING" size="255"/>
- <Column id="workflag" type="STRING" size="255"/>
- <Column id="workflagnm" type="STRING" size="255"/>
- <Column id="welfcd" type="STRING" size="255"/>
- <Column id="reqdeptcd" type="STRING" size="255"/>
- <Column id="reqdeptnm" type="STRING" size="255"/>
- <Column id="mngtdeptcd" type="STRING" size="255"/>
- <Column id="mngtdeptnm" type="STRING" size="255"/>
- <Column id="installplcecd" type="STRING" size="255"/>
- <Column id="installplcenm" type="STRING" size="255"/>
- <Column id="usemthd" type="STRING" size="255"/>
- <Column id="usemthdnm" type="STRING" size="255"/>
- <Column id="fcstuseyearno" type="STRING" size="255"/>
- <Column id="appqty" type="BIGDECIMAL" size="255"/>
- <Column id="goodunitcost" type="BIGDECIMAL" size="255"/>
- <Column id="bugtyy" type="STRING" size="255"/>
- <Column id="bugtforgnamt" type="BIGDECIMAL" size="255"/>
- <Column id="bugtwncurncy" type="BIGDECIMAL" size="255"/>
- <Column id="bugtforgnamtunit" type="STRING" size="255"/>
- <Column id="bugtforgnamtunitnm" type="STRING" size="255"/>
- <Column id="chgrate" type="BIGDECIMAL" size="255"/>
- <Column id="addmnpwrdr" type="BIGDECIMAL" size="255"/>
- <Column id="addmnpwrnurs" type="BIGDECIMAL" size="255"/>
- <Column id="addmnpwrengr" type="BIGDECIMAL" size="255"/>
- <Column id="addmnpwretc" type="BIGDECIMAL" size="255"/>
- <Column id="installspcepossnyn" type="STRING" size="255"/>
- <Column id="calcscorgenryn" type="STRING" size="255"/>
- <Column id="usgepurcneed" type="STRING" size="255"/>
- <Column id="reqpsnid" type="STRING" size="255"/>
- <Column id="reqpsnnm" type="STRING" size="255"/>
- <Column id="requsrtel" type="STRING" size="255"/>
- <Column id="possesdocucd" type="STRING" size="255"/>
- <Column id="comusedept" type="STRING" size="255"/>
- <Column id="comusedeptnm" type="STRING" size="255"/>
- <Column id="smkindeqyn" type="STRING" size="255"/>
- <Column id="dcusrslt" type="STRING" size="255"/>
- <Column id="dcuscmt" type="STRING" size="255"/>
- <Column id="badd" type="STRING" size="255"/>
- <Column id="purcprcsstat" type="STRING" size="255"/>
- <Column id="purcprcscmt" type="STRING" size="255"/>
- <Column id="goodflag" type="STRING" size="255"/>
- <Column id="rowstatus" type="STRING" size="255"/>
- <Column id="revwopin1" type="STRING" size="255"/>
- <Column id="revwopin2" type="STRING" size="255"/>
- <Column id="revwopin3" type="STRING" size="255"/>
- <Column id="revwopin4" type="STRING" size="255"/>
- <Column id="deptaprvyn" type="STRING" size="255"/>
- <Column id="adyn" type="STRING" size="255"/>
- <Column id="usepsn" type="STRING" size="255"/>
- <Column id="fileyn1" type="STRING" size="255"/>
- <Column id="filepath1" type="STRING" size="255"/>
- <Column id="filenm1" type="STRING" size="255"/>
- <Column id="fileyn2" type="STRING" size="255"/>
- <Column id="filepath2" type="STRING" size="255"/>
- <Column id="filenm2" type="STRING" size="255"/>
- <Column id="fileyn3" type="STRING" size="255"/>
- <Column id="filepath3" type="STRING" size="255"/>
- <Column id="filenm3" type="STRING" size="255"/>
- <Column id="fileyn4" type="STRING" size="255"/>
- <Column id="filepath4" type="STRING" size="255"/>
- <Column id="filenm4" type="STRING" size="255"/>
- <Column id="fileyn5" type="STRING" size="255"/>
- <Column id="filepath5" type="STRING" size="255"/>
- <Column id="filenm5" type="STRING" size="255"/>
- <Column id="fileyn6" type="STRING" size="255"/>
- <Column id="filepath6" type="STRING" size="255"/>
- <Column id="filenm6" type="STRING" size="255"/>
- <Column id="fileyn7" type="STRING" size="255"/>
- <Column id="filepath7" type="STRING" size="255"/>
- <Column id="filenm7" type="STRING" size="255"/>
- <Column id="fileyn8" type="STRING" size="255"/>
- <Column id="filepath8" type="STRING" size="255"/>
- <Column id="filenm8" type="STRING" size="255"/>
- <Column id="commissionyn" type="STRING" size="255"/>
- <Column id="cstflag" type="STRING" size="255"/>
- <Column id="dcusno" type="BIGDECIMAL" size="255"/>
- <Column id="dcusdd" type="STRING" size="255"/>
- <Column id="selectrow" type="STRING" size="255"/>
- <Column id="pinstid" type="STRING" size="255"/>
- <Column id="docregno" type="STRING" size="255"/>
- <Column id="docstatus" type="STRING" size="255"/>
- <Column id="docstat" type="STRING" size="255"/>
- <Column id="kreqmtcmt" type="STRING" size="255"/>
- <Column id="kreqmtyn" type="STRING" size="255"/>
- <Column id="deprdistprf1" type="STRING" size="255"/>
- <Column id="deprdistper1" type="STRING" size="255"/>
- <Column id="deprdistprf2" type="STRING" size="255"/>
- <Column id="deprdistper2" type="STRING" size="255"/>
- <Column id="deprdistprf3" type="STRING" size="255"/>
- <Column id="deprdistper3" type="STRING" size="255"/>
- <Column id="deprdistprf4" type="STRING" size="255"/>
- <Column id="deprdistper4" type="STRING" size="255"/>
- <Column id="deprdistprf5" type="STRING" size="255"/>
- <Column id="deprdistper5" type="STRING" size="255"/>
- <Column id="deprdistprf6" type="STRING" size="255"/>
- <Column id="deprdistper6" type="STRING" size="255"/>
- <Column id="deprdistprf7" type="STRING" size="255"/>
- <Column id="deprdistper7" type="STRING" size="255"/>
- <Column id="deprdistprf8" type="STRING" size="255"/>
- <Column id="deprdistper8" type="STRING" size="255"/>
- <Column id="deprdistprf9" type="STRING" size="255"/>
- <Column id="deprdistper9" type="STRING" size="255"/>
- <Column id="deprdistprf10" type="STRING" size="255"/>
- <Column id="deprdistper10" type="STRING" size="255"/>
- <Column id="introtype" type="STRING" size="255"/>
- <Column id="rental" type="STRING" size="255"/>
- <Column id="prcpcntyn" type="STRING" size="255"/>
- <Column id="deprdistpyn" type="STRING" size="255"/>
- <Column id="docstatus_mis_readonly" type="STRING" size="256"/>
- <Column id="docregno_mis_readonly" type="STRING" size="256"/>
- <Column id="prcsstat_mis_readonly" type="STRING" size="256"/>
- <Column id="reqno_mis_readonly" type="STRING" size="256"/>
- <Column id="reqpsnnm_mis_readonly" type="STRING" size="256"/>
- <Column id="goodflagengnm_mis_readonly" type="STRING" size="256"/>
- <Column id="installplcenm_mis_readonly" type="STRING" size="256"/>
- <Column id="appqty_mis_readonly" type="STRING" size="256"/>
- <Column id="bugtforgnamtunitnm_mis_readonly" type="STRING" size="256"/>
- <Column id="bugtwncurncy_mis_readonly" type="STRING" size="256"/>
- <Column id="bugtforgnamt_mis_readonly" type="STRING" size="256"/>
- <Column id="dcusrslt_mis_readonly" type="STRING" size="256"/>
- <Column id="dcuscmt_mis_readonly" type="STRING" size="256"/>
- <Column id="badd_mis_readonly" type="STRING" size="256"/>
- <Column id="purcprcsstat_mis_readonly" type="STRING" size="256"/>
- <Column id="purcprcscmt_mis_readonly" type="STRING" size="256"/>
- <Column id="eqflag" type="STRING" size="256"/>
- <Column id="eqflagnm" type="STRING" size="256"/>
- <Column id="filekey" type="STRING" size="256" sumtext="첨부파일키"/>
- <Column id="aappseq" type="STRING" size="256" sumtext="심의차수"/>
- <Column id="casenum" type="STRING" size="256" sumtext="안건번호"/>
- <Column id="dcusstat" type="STRING" size="256" sumtext="심의"/>
- <Column id="cmt" type="STRING" size="256" sumtext="비고"/>
- <Column id="memo" type="STRING" size="256" sumtext="메모"/>
- <Column id="fstat" type="STRING" size="256" sumtext="사전검토"/>
- <Column id="fixinfo" type="STRING" size="256" sumtext="장비정보"/>
- <Column id="condd" type="STRING" size="256" sumtext="구매일자"/>
- <Column id="fixasetcd" type="STRING" size="256" sumtext="자산코드"/>
- <Column id="cfstat" type="STRING" size="256" sumtext="진행상태코드"/>
- </ColumnInfo>
- </Dataset>
- <Dataset id="ds_hidden" firefirstcount="0" firenextcount="0" useclientlayout="false" updatecontrol="true" enableevent="true" loadkeymode="keep" loadfiltermode="keep" reversesubsum="keep">
- <ColumnInfo>
- <Column id="hidden" type="STRING" size="256"/>
- </ColumnInfo>
- <Rows>
- <Row>
- <Col id="hidden"/>
- </Row>
- </Rows>
- </Dataset>
- <Dataset id="ds_main" firefirstcount="0" firenextcount="0" useclientlayout="false" updatecontrol="true" enableevent="true" loadkeymode="keep" loadfiltermode="keep" reversesubsum="keep">
- <ColumnInfo/>
- </Dataset>
- <Dataset id="ds_send_save_reqeqmtlist" firefirstcount="0" firenextcount="0" useclientlayout="false" updatecontrol="true" enableevent="true" loadkeymode="keep" loadfiltermode="keep" reversesubsum="keep"/>
- <Dataset id="ds_init" firefirstcount="0" firenextcount="0" useclientlayout="false" updatecontrol="true" enableevent="true" loadkeymode="keep" loadfiltermode="keep" reversesubsum="keep">
- <ColumnInfo>
- <Column id="init" type="STRING" size="256"/>
- </ColumnInfo>
- <Rows>
- <Row>
- <Col id="init"/>
- </Row>
- </Rows>
- </Dataset>
- <Dataset id="ds_temp_terminfo" firefirstcount="0" firenextcount="0" useclientlayout="false" updatecontrol="true" enableevent="true" loadkeymode="keep" loadfiltermode="keep" reversesubsum="keep">
- <ColumnInfo>
- <Column id="cdid" type="STRING" size="256"/>
- <Column id="cdnm" type="STRING" size="256"/>
- <Column id="cntlcd1" type="STRING" size="256"/>
- <Column id="cntlcd2" type="STRING" size="256"/>
- <Column id="detldesc" type="STRING" size="256"/>
- <Column id="cntlcd3" type="STRING" size="256"/>
- <Column id="cntlcd4" type="STRING" size="256"/>
- </ColumnInfo>
- <Rows>
- <Row/>
- </Rows>
- </Dataset>
- <Dataset id="ds_file" firefirstcount="0" firenextcount="0" useclientlayout="false" updatecontrol="true" enableevent="true" loadkeymode="keep" loadfiltermode="keep" reversesubsum="false">
- <ColumnInfo>
- <Column id="filekey" type="STRING" size="256"/>
- <Column id="fileseq" type="STRING" size="256"/>
- <Column id="filename" type="STRING" size="256" sumtext="파일명"/>
- <Column id="filepath" type="STRING" size="256" sumtext="파일서버경로"/>
- <Column id="filesize" type="STRING" size="256" sumtext="파일크기"/>
- <Column id="filetype" type="STRING" size="256" sumtext="파일종류"/>
- <Column id="filedata" type="BLOB" size="256" sumtext="파일데이터"/>
- </ColumnInfo>
- </Dataset>
- <Dataset id="ds_delete_file" firefirstcount="0" firenextcount="0" useclientlayout="false" updatecontrol="true" enableevent="true" loadkeymode="keep" loadfiltermode="keep" reversesubsum="false">
- <ColumnInfo>
- <Column id="filekey" type="STRING" size="256"/>
- <Column id="fileseq" type="STRING" size="256"/>
- <Column id="filename" type="STRING" size="256" sumtext="파일명"/>
- <Column id="filepath" type="STRING" size="256" sumtext="파일서버경로"/>
- <Column id="filesize" type="STRING" size="256" sumtext="파일크기"/>
- <Column id="filetype" type="STRING" size="256" sumtext="파일종류"/>
- <Column id="filedata" type="BLOB" size="256" sumtext="파일데이터"/>
- </ColumnInfo>
- </Dataset>
- <Dataset id="ds_popup" firefirstcount="0" firenextcount="0" useclientlayout="false" updatecontrol="true" enableevent="true" loadkeymode="keep" loadfiltermode="keep" reversesubsum="false">
- <ColumnInfo>
- <Column id="cmt" type="STRING" size="256" sumtext="비고"/>
- <Column id="memo" type="STRING" size="256" sumtext="메모"/>
- </ColumnInfo>
- <Rows>
- <Row/>
- </Rows>
- </Dataset>
- <Dataset id="ds_fixasetlist" firefirstcount="0" firenextcount="0" useclientlayout="false" updatecontrol="true" enableevent="true" loadkeymode="keep" loadfiltermode="keep" reversesubsum="false">
- <ColumnInfo>
- <Column id="fixasetcd" type="STRING" size="256" sumtext="자산코드"/>
- <Column id="goodflaghngnm" type="STRING" size="256" sumtext="장비명"/>
- <Column id="goodspec" type="STRING" size="256" sumtext="규격"/>
- <Column id="chkdd" type="STRING" size="256" sumtext="검수일자"/>
- <Column id="eaflag" type="STRING" size="256" sumtext="수리내역"/>
- <Column id="instcd" type="STRING" size="256" sumtext="기관코드"/>
- <Column id="aappseq" type="STRING" size="256" sumtext="심의차수"/>
- <Column id="casenum" type="STRING" size="256" sumtext="안건번호"/>
- </ColumnInfo>
- <Rows>
- <Row/>
- </Rows>
- </Dataset>
- <Dataset id="ds_temp_fixa" 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="aappseq" type="STRING" size="256" sumtext="심의차수"/>
- <Column id="casenum" type="STRING" size="256" sumtext="안건번호"/>
- </ColumnInfo>
- <Rows>
- <Row/>
- </Rows>
- </Dataset>
- <Dataset id="ds_temp_fixasetlist" firefirstcount="0" firenextcount="0" useclientlayout="false" updatecontrol="true" enableevent="true" loadkeymode="keep" loadfiltermode="keep" reversesubsum="false">
- <ColumnInfo>
- <Column id="fixasetcd" type="STRING" size="256" sumtext="자산코드"/>
- <Column id="goodflaghngnm" type="STRING" size="256" sumtext="장비명"/>
- <Column id="goodspec" type="STRING" size="256" sumtext="규격"/>
- <Column id="chkdd" type="STRING" size="256" sumtext="검수일자"/>
- <Column id="instcd" type="STRING" size="256" sumtext="기관코드"/>
- <Column id="aappseq" type="STRING" size="256" sumtext="심의차수"/>
- <Column id="casenum" type="STRING" size="256" sumtext="안건번호"/>
- </ColumnInfo>
- <Rows>
- <Row/>
- </Rows>
- </Dataset>
- <Dataset id="ds_temp_exdeptcd" firefirstcount="0" firenextcount="0" useclientlayout="false" updatecontrol="true" enableevent="true" loadkeymode="keep" loadfiltermode="keep" reversesubsum="false">
- <ColumnInfo>
- <Column id="exdeptcd" type="STRING" size="256" sumtext="예외부서"/>
- </ColumnInfo>
- <Rows>
- <Row/>
- </Rows>
- </Dataset>
- <Dataset id="ds_main_filepath" firefirstcount="0" firenextcount="0" useclientlayout="false" updatecontrol="true" enableevent="true" loadkeymode="keep" loadfiltermode="keep" reversesubsum="false">
- <ColumnInfo>
- <Column id="filepath" type="STRING" size="256" sumtext="파일경로"/>
- <Column id="filenm" type="STRING" size="256" sumtext="파일"/>
- </ColumnInfo>
- </Dataset>
- <Dataset id="ds_attachfile" firefirstcount="0" firenextcount="0" useclientlayout="false" updatecontrol="true" enableevent="true" loadkeymode="keep" loadfiltermode="keep" reversesubsum="false">
- <ColumnInfo>
- <Column id="filedata" type="STRING" size="256" sumtext="파일데이터"/>
- </ColumnInfo>
- </Dataset>
- <Dataset id="ds_fixhelpcnt" firefirstcount="0" firenextcount="0" useclientlayout="false" updatecontrol="true" enableevent="true" loadkeymode="keep" loadfiltermode="keep" reversesubsum="false">
- <ColumnInfo>
- <Column id="DETLDESC" type="STRING" size="255"/>
- </ColumnInfo>
- </Dataset>
- </Objects>
- <Bind>
- <BindItem id="item0" compid="group3.ipt_reqdeptcd_search" propid="value" datasetid="ds_send_search" columnid="reqdeptcd"/>
- <BindItem id="item1" compid="group3.opt_reqdeptnm_search" propid="value" datasetid="ds_send_search" columnid="reqdeptnm"/>
- <BindItem id="item2" compid="group3.ipt_reqfrmdd_search" propid="value" datasetid="ds_send_search" columnid="reqfrmdd"/>
- <BindItem id="item3" compid="group3.ipt_reqtodd_search" propid="value" datasetid="ds_send_search" columnid="reqtodd"/>
- <BindItem id="item4" compid="group3.cmb_prcsstat_search" propid="value" datasetid="ds_send_search" columnid="prcsstat"/>
- <BindItem id="item5" compid="group3.cmb_instcd" propid="value" datasetid="ds_send_search" columnid="instcd"/>
- <BindItem id="item6" compid="group3.ipt_dcusrslt" propid="value" datasetid="ds_combo" columnid="dcusrslt"/>
- <BindItem id="item7" compid="group3.ipt_purcprcsstat" propid="value" datasetid="ds_combo" columnid="purcprcsstat"/>
- <BindItem id="item8" compid="group3.ipt_termcmt" propid="value" datasetid="ds_temp_terminfo" columnid="detldesc"/>
- <BindItem id="item9" compid="grp_btn.cap_termmsg" propid="text" datasetid="ds_send_search" columnid="termmsg"/>
- <BindItem id="item10" compid="group3.cmb_eqflag_search" propid="value" datasetid="ds_send_search" columnid="eqflag"/>
- <BindItem id="item11" compid="group3.cmb_fstat_search" propid="value" datasetid="ds_send_search" columnid="fstat"/>
- <BindItem id="item12" compid="group3.cmb_dcusstat_search" propid="value" datasetid="ds_send_search" columnid="dcusstat"/>
- <BindItem id="item14" compid="group3.grp_cmt.textarea" propid="value" datasetid="ds_popup" columnid="cmt"/>
- <BindItem id="item13" compid="group3.grp_memo.textarea" propid="value" datasetid="ds_popup" columnid="memo"/>
- </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
- *
- *---------------------------------------------------------------------------------------
- ****************************************************************************************/
- //=======================================================================================
- // Lib Include
- //---------------------------------------------------------------------------------------
- include "com_commonxp::comm_main.xjs";
- include "mis_miscommonxp::MIS.xjs";
- include "mis_miscommonxp::RSZ001.xjs";
- //=======================================================================================
- // Global Form Variable
- //---------------------------------------------------------------------------------------
- var arErrorCode = new HashArray();
- //=======================================================================================
- // Function
- //---------------------------------------------------------------------------------------
- /****************************************************************************************
- * Argument : N/A
- * Description : 초기화
- ****************************************************************************************/
- function fInitialize()
- {
- misfGridInit(group3.grd_reqeqmtlist);
- ds_send_search.enableevent = false;
- ds_send_search.clearData();
- ds_send_search.addRow();
- ds_main_reqeqmt_reqeqmtlist.clearData();
- // misfComboComCdList("Z0007",group3.cmb_instcd);
- // misfComboComCdList("030R0025",group3.cmb_prcsstat_search);
- // misfGridComboComCdList("030R0026",group3.grd_reqeqmtlist,"dcusrslt");
- // misfComboCopyItemSet("group3.cmb_prcsstat_search", "", "group3.grd_reqeqmtlist", "prcsstat");
- misfComboComCdListMulti("Z0007,031M0041,031M0041","group3.cmb_instcd,group3.cmb_dcusstat_search,group3.grd_reqeqmtlist.dcusstat");
- //frmf_addComboItem( "group3.cmb_prcsstat_search", "전체", "", "above");
- frmf_addComboItem( "group3.cmb_fstat_search", "전체", "", "above");
- frmf_addComboItem( "group3.cmb_dcusstat_search", "전체", "", "above");
- group3.cmb_fstat_search.index = 0;
- group3.cmb_dcusstat_search.index = 0;
- //ds_send_search.setColumn(0,"prcsstat","");
- ds_send_search.setColumn(0,"instcd",sysf_getUserInfo("dutplceinstcd"));
- misfMsterDetailSet("group3.grd_reqeqmtlist", null, "TRRSC20101", "Y");
- var emplno = sysf_getUserInfo("userid")
- ds_send_search.setColumn( 0, "emplno", sysf_getUserInfo("userid"));
-
-
- var sDate = utlf_getNewDate().getAddDate(-3, "M")
- var rtnDate = sDate.getFullYear();
- rtnDate = rtnDate.toString() + (( sDate.getMonth() + 1 > 9 ) ? sDate.getMonth() + 1 : "0" + (sDate.getMonth() + 1));
- rtnDate = rtnDate.toString() + (( sDate.getDate() > 9 ) ? sDate.getDate() : "0" + sDate.getDate()) ;
-
- ds_send_search.setColumn(0, "reqfrmdd", rtnDate);
- ds_send_search.setColumn(0, "reqtodd", utlf_getCurrentDate());
- ds_send_search.setColumn( 0, "reqdeptcd", sysf_getUserInfo("dutplcecd"));
- ds_send_search.setColumn( 0, "reqdeptnm", sysf_getUserInfo("dutplcenm"));
- ds_send_search.setColumn( 0, "userid", sysf_getUserInfo("userid"));
-
- if(sysf_getUserInfo("dutplcecd") == "4171601000" || sysf_getUserInfo("dutplcecd") == "4171601100" ){ // 4171601000:임상실습동건립과, 4171601100:건립행정팀
- ds_send_search.setColumn( 0, "eqflag", "C"); //임상장비
- ds_send_search.setColumn( 0, "reqdeptcd", "");
- ds_send_search.setColumn( 0, "reqdeptnm", "");
- }else{
- ds_send_search.setColumn( 0, "eqflag", ""); //일반장비
- ds_send_search.setColumn( 0, "reqdeptcd", sysf_getUserInfo("dutplcecd"));
- ds_send_search.setColumn( 0, "reqdeptnm", sysf_getUserInfo("dutplcenm"));
- }
- // 장비신청 관리자 조회
- var oParam = {};
- oParam.id = "TRRSC20104";
- oParam.service = "reqapp.ReqMngt";
- oParam.method = "reqGetReqUserInfo";
- oParam.inds = "req=ds_send_search";
- oParam.outds = "ds_temp_userinfo=userinfo";
- oParam.async = false;
- //oParam.callback = "cf_TRRSC20104";
- tranf_submit(oParam);
- var cnt = ds_temp_userinfo.getColumn(0, "cnt");
- if(cnt != 0 ||sysf_getUserInfo("dutplcecd") == "4060100000" ||sysf_getUserInfo("dutplcecd") == "4060101000" ||sysf_getUserInfo("dutplcecd") == "4130100000"
- ||sysf_getUserInfo("dutplcecd") == "4130116000" ||sysf_getUserInfo("dutplcecd") == "4090500000" ||sysf_getUserInfo("dutplcecd") == "2364200000" ||sysf_getUserInfo("dutplcecd") == "4020334000" ){
- grp_btn.btn_reqapp.visible = true;
- group3.ipt_reqdeptcd_search.enable = true;
- group3.button5.enable = true;
- group3.opt_reqdeptnm_search.enable = true;
- group3.ipt_reqdeptcd_search.value = "";
- group3.opt_reqdeptnm_search.value = "";
-
- ds_send_search.setColumn( 0, "emplno", "");
- }else{
- grp_btn.btn_reqapp.visible = false;
- group3.ipt_reqdeptcd_search.enable = false;
- group3.button5.enable = false;
- group3.opt_reqdeptnm_search.enable = false;
- }
-
- // ** START
- // 장비신청 기간관리 관련 소스 by 김금련(2018.10.)
- ds_send_search.setColumn(0, "grupcdid","A0007");
-
- var oParam = {};
- oParam.id = "TRRSC20105";
- oParam.service = "reqapp.ReqMngt";
- oParam.method = "reqGetReqTermInfo";
- oParam.inds = "req=ds_send_search";
- oParam.outds = "ds_temp_terminfo=terminfo";
- oParam.async = false;
- //oParam.callback = "cf_TRRSC20105";
- tranf_submit(oParam); //장비신청기간 조회
-
- var termcdnm = ds_temp_terminfo.getColumn(0, "cdnm"); // 신청기간
- var termcntlcd1 = ds_temp_terminfo.getColumn(0, "cntlcd1"); //실제 체크할 신청기간 fromdd
- var termcntlcd2 = ds_temp_terminfo.getColumn(0, "cntlcd2"); // 실제 체크할 신청기간 todd
- var termdetldesc = ds_temp_terminfo.getColumn(0, "detldesc"); // 신청기간 공지사항
- var termdetlcntlcd4 = ds_temp_terminfo.getColumn(0, "cntlcd4"); // 신청기간 예외부서
-
- if( utlf_isNull(termcntlcd1) && utlf_isNull(termcntlcd2) ){
- ds_send_search.setColumn(0, "termmsg", "");
- }else{
- ds_send_search.setColumn(0, "termmsg", termcdnm);
- }
-
- if(!utlf_isNull(termdetlcntlcd4)){
- var objArr = termdetlcntlcd4.split(",");
- ds_temp_exdeptcd.clearData();
- for(var i = 0 ; i < objArr.length ; i++ ){
- ds_temp_exdeptcd.addRow();
- ds_temp_exdeptcd.setColumn(i,"exdeptcd" , objArr[i]);
- }
- }
-
- //** END
-
- ds_send_search.enableevent = true;
-
- //안내문구
- //sysf_messageBox("2019년 의료기기 장비 예산의 초과 사용 예상으로 하반기 장비 신청은 " + '"' + "노후교체" + '"' +" 장비만 신청하여 주시기바랍니다.\n <노후교체 장비 신청 시 의공학과 노후교체 의견서 필수>", "I999", "");
- grp_msg.visible = true;
-
- //도움말 첨부파일 조회
-
- var oParam = {};
- oParam.id = "TRRSC20207";
- oParam.service = "reqapp.ReqMngt";
- oParam.method = "reqGetFixHelpCnt";
- oParam.inds = "req=ds_send_search";
- oParam.outds = "ds_fixhelpcnt=fixhelpcnt";
- oParam.async = false;
- //oParam.callback = "";
-
- tranf_submit(oParam);
-
- if( ds_fixhelpcnt.rowcount > 0 ){
- btn_down.visible = true;
- }
- }
-
- /****************************************************************************************
- * Argument : N/A
- * Description : 전자결재
- ****************************************************************************************/
- function fElecapproval(){
- var instcd = utlf_transNullToEmpty(ds_main_reqeqmt_reqeqmtlist.getColumn(ds_main_reqeqmt_reqeqmtlist.rowposition, "instcd"));
- var reqdd = utlf_transNullToEmpty(ds_main_reqeqmt_reqeqmtlist.getColumn(ds_main_reqeqmt_reqeqmtlist.rowposition, "reqdd"));
- var reqseqno = utlf_transNullToEmpty(ds_main_reqeqmt_reqeqmtlist.getColumn(ds_main_reqeqmt_reqeqmtlist.rowposition, "reqseqno"));
-
- var pmaprefcol = "knuhdomain,instId";
- var pmaprefvalue = "KnuhMisAssetsReview,"+instcd+"-"+reqdd+"-"+reqseqno;
-
- misfMakeElctSanct("assetsReview",pmaprefcol,pmaprefvalue);
- }
-
- //=======================================================================================
- // Event
- //---------------------------------------------------------------------------------------
- /****************************************************************************************
- * Components : Form
- * Description : 화면 처음 초기화시 폼초기화
- ****************************************************************************************/
- function SMRSC20100_onload(obj:Form, e:LoadEventInfo) {
- frmf_initForm(obj);
- grdf_initGrid(group3.grd_reqeqmtlist);
- //grdf_initGrid(grd_XXX);
- //grdf_setGridSort(grd_XXX);
- grdf_setRowTypeIcon(group3.grd_reqeqmtlist, 0);
- fInitialize();
- }
- /****************************************************************************************
- * Components : Grid
- * Description : 신청목록 선택
- ****************************************************************************************/
- function group3_grd_reqeqmtlist_oncelldblclick(obj:Grid, e:GridClickEventInfo) {
- if(ds_main_reqeqmt_reqeqmtlist.rowcount == 0){
- return;
- }
-
- var docstat = dsf_getColumnNullToEmpty(ds_main_reqeqmt_reqeqmtlist, e.row, "docstat");
- var userid = sysf_getUserInfo("userid");
-
- ds_main_reqeqmt_reqeqmtlist.enableevent = false;
- ds_main_reqeqmt_reqeqmtlist.updatecontrol = false;
-
- if(docstat == "04" || docstat == "05" || utlf_isNull(docstat)){
- ds_main_reqeqmt_reqeqmtlist.setColumn(e.row, "rowstatus","u");
- }else if(userid == "MIS"){
- ds_main_reqeqmt_reqeqmtlist.setColumn(e.row, "rowstatus","u");
- }else{
- ds_main_reqeqmt_reqeqmtlist.setColumn(e.row, "rowstatus","disabled");
- }
-
- ds_main_reqeqmt_reqeqmtlist.updatecontrol = true;
- ds_main_reqeqmt_reqeqmtlist.enableevent = true;
-
- // window.load("SMRSC20200_장비신청상세내역(경북대).xrw", "modal","", "left:300; top:300;", "/root/main/reqeqmt/reqeqmtlist[" + group3.grd_reqeqmtlist.row + "]","/root/main/reqeqmtlist");
- dsf_createDs("ds_temp_reqeqmtlist");
- dsf_copyColInfo(ds_temp_reqeqmtlist,ds_main_reqeqmt_reqeqmtlist);
- ds_temp_reqeqmtlist.copyRow(ds_temp_reqeqmtlist.addRow(), ds_main_reqeqmt_reqeqmtlist, e.row);
- var objArg = new Object();
- objArg.arg_ds_main_reqeqmtlist = ds_temp_reqeqmtlist;
- frmf_modal("SMRSC20200","SMRSC20200",objArg,"","",300,300,"","","","","","M");
- group3.grd_reqeqmtlist.setFormatColProperty
- group3.btn_search.setFocus();
- //misfMsterDetailRetrieve();
- group3.btn_search.click();
- }
- /****************************************************************************************
- * Components : Button
- * Description : 조회
- ****************************************************************************************/
- function group3_btn_search_onclick(obj:Button, e:ClickEventInfo) {
- // ds_send_search.setColumn(0,"emplno","");
- // misfGridInit(group3.grd_reqeqmtlist);
- misfMsterDetailRetrieve();
- if(sysf_getUserInfo("dutplcecd") == "4010602000" || sysf_getUserInfo("dutplcecd") == "4010609000" || sysf_getUserInfo("userid") == "99207" ){
- group3.btn_save.visible = true;
- group3.grd_reqeqmtlist.setFormatColProperty(121,"size",120); //메모칼럼 보이게
- group3.grd_reqeqmtlist.setFormatColProperty(120,"size",114); //자산코드 보이게
- }else{
- if(sysf_getUserInfo("dutplcecd") == "4090500000" || sysf_getUserInfo("dutplcecd") =="2364200000"|| sysf_getUserInfo("dutplcecd") =="4010609000"){
- group3.grd_reqeqmtlist.setFormatColProperty(120,"size",114); //자산코드 보이게
- group3.btn_save.visible = false;
- group3.grd_reqeqmtlist.setFormatColProperty(121,"size",0); //메모칼럼안보이게
- }else{
- group3.grd_reqeqmtlist.setFormatColProperty(120,"size",0); //자산코드 보이게
- group3.grd_reqeqmtlist.setFormatColProperty(121,"size",0); //메모칼럼안보이게
- group3.btn_save.visible = false;
- }
- group3.btn_save.visible = false;
- group3.grd_reqeqmtlist.setFormatColProperty(121,"size",0); //메모칼럼안보이게
- group3.grd_reqeqmtlist.setFormatColProperty(120,"size",0); //자산코드 보이게
- }
- ds_main_reqeqmt_reqeqmtlist.enableevent = false;
- ds_main_reqeqmt_reqeqmtlist.updatecontrol = false;
- for(var i = 0 ; i < ds_main_reqeqmt_reqeqmtlist.rowcount ; i++ ){
- var fixinfo = ds_main_reqeqmt_reqeqmtlist.getColumn(i, "fixinfo");
- if(!utlf_isNull(fixinfo)){
- var objArr = fixinfo.split(",");
- ds_main_reqeqmt_reqeqmtlist.setColumn(i,"fixasetcd" , objArr[0]);
- ds_main_reqeqmt_reqeqmtlist.setColumn(i,"condd" , objArr[1]);
- }
- }
-
- ds_main_reqeqmt_reqeqmtlist.enableevent = true;
- ds_main_reqeqmt_reqeqmtlist.updatecontrol = true;
-
-
-
-
- // // var docstat = dsf_getColumnNullToEmpty(ds_main_reqeqmt_reqeqmtlist, i, "docstat");
- // // if(docstat == "04" || docstat == "05" || utlf_isNull(docstat)){//04:삭제, 05:회송
- // // }else{
- // // // group3.grd_reqeqmtlist.cellAttribute("disabled", i, group3.grd_reqeqmtlist.colRef("docstatus"), i, group3.grd_reqeqmtlist.colRef("purcprcscmt")) = "true";
- // // var startCol = group3.grd_reqeqmtlist.getBindCellIndex("body","docstatus");
- // // var endCol = group3.grd_reqeqmtlist.getBindCellIndex("body","purcprcscmt");
- // // for(var j = startCol ; j <= endCol ; j++) {
- // // misfSetReadOnlyCol(group3.grd_reqeqmtlist, grdf_getBindCellName(group3.grd_reqeqmtlist, j), false, i);
- // // }
- // // }
- // }
- // //ds_main_reqeqmt_reqeqmtlist.rowposition = -1;
- // ds_main_reqeqmt_reqeqmtlist.selectRow(0, false);
- }
- /****************************************************************************************
- * Components : Button
- * Description : 부서조회
- ****************************************************************************************/
- function group3_button5_onclick(obj:Button, e:ClickEventInfo) {
- var recv_list = "reqdeptcd,reqdeptnm";
- misfOpenPopUpList("02", ds_send_search, "", recv_list, group3.cmb_instcd.value, "instcd");
- }
- /****************************************************************************************
- * Components : Combo
- * Description : 사용안함
- ****************************************************************************************/
- function group3_cmb_instcd_onitemchanged(obj:Combo, e:ItemChangeEventInfo) {
- // opt_instcd.value = group3.cmb_instcd.value;
- }
- /****************************************************************************************
- * Components : Button
- * Description : 행삭제
- ****************************************************************************************/
- function group3_btn_delrow_onclick(obj:Button, e:ClickEventInfo) {
- var docstat = dsf_getColumnNullToEmpty(ds_main_reqeqmt_reqeqmtlist, ds_main_reqeqmt_reqeqmtlist.rowposition, "docstat");
- var cfstat = dsf_getColumnNullToEmpty(ds_main_reqeqmt_reqeqmtlist, ds_main_reqeqmt_reqeqmtlist.rowposition, "cfstat");
-
-
- if(docstat == "04" || docstat == "05" || utlf_isNull(docstat)){
- }else if(docstat == "09"){
- sysf_messageBox("전자결재가 완료된 자료는 삭제가 불가능합니다.", "E999", "");
- return;
- }else{
- sysf_messageBox("전자결재가 진행중인 자료는 삭제가 불가능합니다.", "E999", "");
- return;
- }
- if(!utlf_isNull(cfstat)) {
- sysf_messageBox("진행상태가 신청인 경우에만 삭제가 가능합니다. 확인하십시오.", "E999", "");
- return;
- }
- var req = sysf_messageBox("선택하신 자료에 관련된 모든 데이터가 삭제됩니다. (첨부파일까지 함께 삭제됩니다)", "Q003");
- if(req == 6){
- // misfGridIUD(group3.grd_reqeqmtlist, "D");
- // misfSave("TXRSC20102");
-
- ds_main_reqeqmt_reqeqmtlist.updatecontrol = false;
-
- for( var i=group3.grd_reqeqmtlist.selectcount-1 ; i>=0 ; i-- ){
- for( var j=group3.grd_reqeqmtlist.selectendrow[i] ; j>=group3.grd_reqeqmtlist.selectstartrow[i] ; j-- ){
- dsf_createDsRow("ds_req", [
- {col:"filekey", type:"STRING", size:256, val:dsf_getColumnNullToEmpty(ds_main_reqeqmt_reqeqmtlist, j, "filekey")}
- ]);
-
- var oParam = {};
- oParam.id = "TRRSC20202";
- oParam.service = "reqapp.ReqMngt";
- oParam.method = "reqGetAttFileList";
- oParam.inds = "req=ds_req";
- oParam.outds = "ds_file=files";
- oParam.async = false;
- //oParam.callback = "cf_TRRSC20201";
- tranf_submit(oParam);
-
- ds_main_reqeqmt_reqeqmtlist.setRowType(j, 8);
-
- grdf_setStatusColumn(ds_main_reqeqmt_reqeqmtlist, "status");
-
- var oParam = {};
- oParam.id = "TXRSC20101";
- oParam.service = "reqapp.ReqMngt";
- oParam.method = "reqExeDelReqEqmtAppList";
- oParam.inds = "reqeqmtlist=ds_main_reqeqmt_reqeqmtlist:U deletefiles=ds_file:A";
- oParam.outds = "";
- oParam.async = false;
- tranf_submit(oParam);
- }
- }
-
- ds_main_reqeqmt_reqeqmtlist.updatecontrol = true;
-
- group3.btn_search.click();
- }else{
- return;
- }
- }
- /****************************************************************************************
- * Components : Button
- * Description : 신규
- ****************************************************************************************/
- function grp_btn_button1_onclick(obj:Button, e:ClickEventInfo) {
- var btnchk = sysf_messageBox("임상실습동 관련 장비 신청", "S001","");
- if(btnchk == "6"){
- var instcd = sysf_getUserInfo("dutplceinstcd");
- if(instcd =="031"){
- misfGridIUD(group3.grd_reqeqmtlist,"A");
- ds_main_reqeqmt_reqeqmtlist.setColumn(ds_main_reqeqmt_reqeqmtlist.rowcount-1, "rowstatus", "i");
- dsf_createDs("ds_temp_reqeqmtlist");
- dsf_copyColInfo(ds_temp_reqeqmtlist,ds_main_reqeqmt_reqeqmtlist);
- ds_temp_reqeqmtlist.copyRow(ds_temp_reqeqmtlist.addRow(), ds_main_reqeqmt_reqeqmtlist, ds_main_reqeqmt_reqeqmtlist.rowcount - 1);
- dsf_makeValue(ds_temp_reqeqmtlist, "eqflag", "string", "C", 0);//임상실습동 관련 장비구분
- //alert("임상실습동"+ ds_temp_reqeqmtlist.getColumn(0,"eqflag"));
- var objArg = new Object();
- objArg.arg_ds_main_reqeqmtlist = ds_temp_reqeqmtlist;
- frmf_modal("SMRSC20200","SMRSC20200",objArg,"","",300,300,"","","","","","M");
- misfGridInit(group3.grd_reqeqmtlist);
- misfMsterDetailRetrieve();
- }else{
- sysf_messageBox("본원으로 로그인하여 임상실습동 관련 장비신청을 진행해주시기 바랍니다.", "E999", "");
- return;
- }
- }else if(btnchk == "7"){
- // ** START
- // 장비신청 기간관리 관련 소스 by 김금련(2018.10.)
- var termcntlcd1 = utlf_transNullToEmpty(ds_temp_terminfo.getColumn(0, "cntlcd1")); //실제 체크할 신청기간 fromdd
- var termcntlcd2 = utlf_transNullToEmpty(ds_temp_terminfo.getColumn(0, "cntlcd2")); // 실제 체크할 신청기간 todd
- var termdetlcntlcd4 = utlf_transNullToEmpty(ds_temp_terminfo.getColumn(0, "cntlcd4")); // 신청기간 예외부서
- var tfromdd = termcntlcd1.substr(0,4) + termcntlcd1.substr(4,2) + termcntlcd1.substr(6,2);
- var ttodd = termcntlcd2.substr(0,4) + termcntlcd2.substr(4,2) + termcntlcd2.substr(6,2);
- if( !utlf_isNull(termcntlcd1) && !utlf_isNull(termcntlcd2) ){
- if(parseInt(tfromdd) <= parseInt(utlf_getCurrentDate()) && parseInt(utlf_getCurrentDate())<= parseInt(ttodd)){
- misfGridIUD(group3.grd_reqeqmtlist,"A");
- ds_main_reqeqmt_reqeqmtlist.setColumn(ds_main_reqeqmt_reqeqmtlist.rowcount-1, "rowstatus", "i");
- // window.load("SMRSC20200_장비신청상세내역(경북대).xrw", "modal","", "left:300; top:300;", "/root/main/reqeqmt/reqeqmtlist[" + group3.grd_reqeqmtlist.row + "]","/root/main/reqeqmtlist");
- dsf_createDs("ds_temp_reqeqmtlist");
- dsf_copyColInfo(ds_temp_reqeqmtlist,ds_main_reqeqmt_reqeqmtlist);
- ds_temp_reqeqmtlist.copyRow(ds_temp_reqeqmtlist.addRow(), ds_main_reqeqmt_reqeqmtlist, ds_main_reqeqmt_reqeqmtlist.rowcount - 1);
- dsf_makeValue(ds_temp_reqeqmtlist, "eqflag", "string", "", 0); //임상실습동 관련 장비구분
-
- var objArg = new Object();
- objArg.arg_ds_main_reqeqmtlist = ds_temp_reqeqmtlist;
- frmf_modal("SMRSC20200","SMRSC20200",objArg,"","",300,300,"","","","","","M");
- misfGridInit(group3.grd_reqeqmtlist);
- misfMsterDetailRetrieve();
- }else{
-
- var temp = false;
- for(var i = 0 ; i < ds_temp_exdeptcd.rowcount ; i++ ){
- var termdetlcntlcd4 = ds_temp_exdeptcd.getColumn(i,"exdeptcd");
- if( !utlf_isNull(termdetlcntlcd4) && termdetlcntlcd4 == sysf_getUserInfo("dutplcecd")){ // 예외부서 체크, 등록된 예외부서가 있을경우 신규 신청 가능하도록 수정
- temp = true;
- continue;
- }
- }
-
- if(temp == true){
- misfGridIUD(group3.grd_reqeqmtlist,"A");
- ds_main_reqeqmt_reqeqmtlist.setColumn(ds_main_reqeqmt_reqeqmtlist.rowcount-1, "rowstatus", "i");
- // window.load("SMRSC20200_장비신청상세내역(경북대).xrw", "modal","", "left:300; top:300;", "/root/main/reqeqmt/reqeqmtlist[" + group3.grd_reqeqmtlist.row + "]","/root/main/reqeqmtlist");
- dsf_createDs("ds_temp_reqeqmtlist");
- dsf_copyColInfo(ds_temp_reqeqmtlist,ds_main_reqeqmt_reqeqmtlist);
- ds_temp_reqeqmtlist.copyRow(ds_temp_reqeqmtlist.addRow(), ds_main_reqeqmt_reqeqmtlist, ds_main_reqeqmt_reqeqmtlist.rowcount - 1);
- dsf_makeValue(ds_temp_reqeqmtlist, "eqflag", "string", "", 0); //임상실습동 관련 장비구분
-
- var objArg = new Object();
- objArg.arg_ds_main_reqeqmtlist = ds_temp_reqeqmtlist;
-
- frmf_modal("SMRSC20200","SMRSC20200",objArg,"","",300,300,"","","","","","M");
- misfGridInit(group3.grd_reqeqmtlist);
- misfMsterDetailRetrieve();
- }else{
- sysf_messageBox("장비신청기간이 아닙니다. 확인하십시오.", "E999", "");
- return;
- }
-
- }
- }else{
- misfGridIUD(group3.grd_reqeqmtlist,"A");
- ds_main_reqeqmt_reqeqmtlist.setColumn(ds_main_reqeqmt_reqeqmtlist.rowcount-1, "rowstatus", "i");
- // window.load("SMRSC20200_장비신청상세내역(경북대).xrw", "modal","", "left:300; top:300;", "/root/main/reqeqmt/reqeqmtlist[" + group3.grd_reqeqmtlist.row + "]","/root/main/reqeqmtlist");
- dsf_createDs("ds_temp_reqeqmtlist");
- dsf_copyColInfo(ds_temp_reqeqmtlist,ds_main_reqeqmt_reqeqmtlist);
- ds_temp_reqeqmtlist.copyRow(ds_temp_reqeqmtlist.addRow(), ds_main_reqeqmt_reqeqmtlist, ds_main_reqeqmt_reqeqmtlist.rowcount - 1);
- dsf_makeValue(ds_temp_reqeqmtlist, "eqflag", "string", "", 0); //임상실습동 관련 장비구분
-
- var objArg = new Object();
- objArg.arg_ds_main_reqeqmtlist = ds_temp_reqeqmtlist;
- frmf_modal("SMRSC20200","SMRSC20200",objArg,"","",300,300,"","","","","","M");
- misfGridInit(group3.grd_reqeqmtlist);
- misfMsterDetailRetrieve();
- }
- //** END
- }
- }
- /****************************************************************************************
- * Components : Button
- * Description : 전자결재
- ****************************************************************************************/
- function grp_btn_btn_reqapp_onclick(obj:Button, e:ClickEventInfo) {
- fElecapproval();
- }
- /****************************************************************************************
- * Components : Edit
- * Description : 신청부서 변경
- ****************************************************************************************/
- function group3_ipt_reqdeptcd_search_onkeydown(obj:Edit, e:KeyEventInfo)
- {
- if(e.keycode == 13) obj.updateToDataset();
- }
- /****************************************************************************************
- * Components : Edit
- * Description : 신청부서 변경
- ****************************************************************************************/
- function ds_send_search_oncolumnchanged(obj:Dataset, e:DSColChangeEventInfo)
- {
- if(e.columnid == "reqdeptcd") {
- if(utlf_isNull(e.newvalue))
- group3.opt_reqdeptnm_search.value = "";
- else
- misfValidationCheck("02", "", "reqdeptcd,reqdeptnm", group3.cmb_instcd.value, "instcd" );
- }
- }
- function grp_msg_btn_msg_onclick(obj:Button, e:ClickEventInfo)
- {
- grp_msg.visible = false;
- }
- function group3_grp_cmt_btn_close_onclick(obj:Button, e:ClickEventInfo)
- {
- group3.grp_cmt.visible = false;
- }
- function group3_grd_reqeqmtlist_onexpanddown(obj:Grid, e:GridMouseEventInfo)
- {
- obj.updateToDataset();
- var colidx = group3.grd_reqeqmtlist.currentcol;
- var rownum = ds_main_reqeqmt_reqeqmtlist.rowposition;
- if(group3.grd_reqeqmtlist.getBindCellIndex("body", "cmt") == colidx){
- ds_popup.setColumn(0, "cmt", "");
- group3.grp_cmt.visible = true;
- if(sysf_getUserInfo("dutplcecd") == "4010602000" ||sysf_getUserInfo("dutplcecd") == "4010609000"|| sysf_getUserInfo("userid") == "99207" ){ //예산팀,기획재무팀
- group3.grp_cmt.btn_insert.visible = true;
- group3.grp_cmt.textarea.enable = true;
- }else{
- group3.grp_cmt.btn_insert.visible = false;
- group3.grp_cmt.textarea.enable = false;
- }
- var rownum = ds_main_reqeqmt_reqeqmtlist.rowposition;
- var cmt = ds_main_reqeqmt_reqeqmtlist.getColumn(rownum, "cmt");
-
- ds_popup.setColumn(0, "cmt",cmt);
- }else if(group3.grd_reqeqmtlist.getBindCellIndex("body", "memo") == colidx){
- ds_popup.setColumn(0, "memo", "");
- group3.grp_memo.visible = true;
- var memo = ds_main_reqeqmt_reqeqmtlist.getColumn(rownum, "memo");
-
- ds_popup.setColumn(0, "memo",memo);
-
- }else if(group3.grd_reqeqmtlist.getBindCellIndex("body", "fixasetcd") == colidx){
- ds_temp_fixa.clearData();
- ds_temp_fixa.addRow();
-
- var pinstcd = ds_main_reqeqmt_reqeqmtlist.getColumn(rownum, "instcd");
- var paappseq = ds_main_reqeqmt_reqeqmtlist.getColumn(rownum, "aappseq"); //심의차수
- var pcasenum = ds_main_reqeqmt_reqeqmtlist.getColumn(rownum, "casenum"); //안건번호
-
- ds_temp_fixa.setColumn(0,"instcd", pinstcd);
- ds_temp_fixa.setColumn(0,"aappseq", paappseq);
- ds_temp_fixa.setColumn(0,"casenum", pcasenum);
-
-
- // 심의차수,안건번호로 자산마스터 상세정보조회
- var oParam = {};
- oParam.id = "TRRSC20106";
- oParam.service = "reqapp.ReqMngt";
- oParam.method = "reqGetFixaInfo";
- oParam.inds = "req=ds_temp_fixa";
- oParam.outds = "ds_fixasetlist=fixainfo";
- oParam.async = false;
- //oParam.callback = "cf_TRRSC20106";
- tranf_submit(oParam);
-
-
- var cnt = ds_fixasetlist.rowcount;
- if(cnt == 0)
- {
- sysf_messageBox("장비 상세내역이 존재하지" ,"I011");
- }else{
-
-
-
- grp_fixasetinfo.visible = true;
- }
- }
- }
- function group3_grp_memo_btn_close_onclick(obj:Button, e:ClickEventInfo)
- {
- group3.grp_memo.visible = false;
- }
- function group3_grp_cmt_btn_insert_onclick(obj:Button, e:ClickEventInfo)
- {
- var row = ds_main_reqeqmt_reqeqmtlist.rowposition;
- var cmt = ds_popup.getColumn(0, "cmt");
- ds_main_reqeqmt_reqeqmtlist.setColumn(row, "cmt", cmt);
- group3.grp_cmt.visible = false;
- }
- function group3_grp_memo_btn_insert_onclick(obj:Button, e:ClickEventInfo)
- {
- var row = ds_main_reqeqmt_reqeqmtlist.rowposition;
- var memo = ds_popup.getColumn(0, "memo");
- ds_main_reqeqmt_reqeqmtlist.setColumn(row, "memo", memo);
- group3.grp_memo.visible = false;
- }
- function group3_btn_save_onclick(obj:Button, e:ClickEventInfo)
- {
- updtdata = grdf_getGridUpdateData(group3.grd_reqeqmtlist).rowcount;
-
- if(updtdata == 0)
- {
- sysf_messageBox("저장할 데이터가 ","E014");
- return false;
- }
- else
- {
- var oParam = {};
- oParam.id = "TXRSC20103";
- oParam.service = "reqapp.ReqMngt";
- oParam.method = "reqExeSetReqEqmtList";
- oParam.inds = "reqeqmtlist=ds_main_reqeqmt_reqeqmtlist:U";
- oParam.outds = "";
- oParam.async = false;
- oParam.callback = "cf_TXRSC20103";
- tranf_submit(oParam);
- }
- }
- function cf_TXRSC20103(sSvcId, nErrorCode, sErrorMsg)
- {
- if(nErrorCode < 0)
- {
- sysf_messageBox("저장","E009");
- return;
- }
- else
- {
- sysf_messageBox("저장이","I002");
- group3.btn_search.click();
- }
- }
- function ds_main_reqeqmt_reqeqmtlist_oncolumnchanged(obj:Dataset, e:DSColChangeEventInfo)
- {
- if(e.columnid == "casenum"){
- var aappseq = obj.getColumn(e.row, "aappseq");
- var casenum = obj.getColumn(e.row, "casenum");
- var dcusstat = obj.getColumn(e.row, "dcusstat");
- if(!utlf_isNull(aappseq) && !utlf_isNull(casenum) && dcusstat == "01"){
- obj.setColumn(e.row, "dcusstat", "02");
- }else{
- obj.setColumn(e.row, "dcusstat", "01");
- }
- }
- }
- function btn_excel_onclick(obj:Button, e:ClickEventInfo)
- {
- misfSaveExcel(group3.grd_reqeqmtlist);
- }
- function grp_fixasetinfo_grd_fixasetlist_oncelldblclick(obj:Grid, e:GridClickEventInfo)
- {
- if(e.cell == obj.getBindCellIndex("Body", "fixasetcd")){
- ds_temp_fixasetlist.clearData();
- ds_temp_fixasetlist.addRow();
- ds_temp_fixasetlist.copyRow(0, ds_fixasetlist, e.row);
-
- var objArg = new Object();
- objArg.arg_ds_temp = ds_temp_fixasetlist;
- frmf_modal("SMRFC00200", "SMRFC00200", objArg, "", "", "", "", "", "", "", "", "", "M");
- }
- }
- function grp_fixasetinfo_btn_close_ondblclick(obj:Button, e:MouseEventInfo)
- {
- grp_fixasetinfo.visible = false;
- }
- function grp_fixasetinfo_btn_close_onclick(obj:Button, e:ClickEventInfo)
- {
- grp_fixasetinfo.visible = false;
- }
- function grp_fixasetinfo_grd_fixasetlist_oncellclick(obj:Grid, e:GridClickEventInfo)
- {
- if(ds_fixasetlist.rowcount == 0){
- return;
- }else{
- if(6 == e.col){
- ds_temp_fixasetlist.clearData();
- ds_temp_fixasetlist.addRow();
- ds_temp_fixasetlist.copyRow(0, ds_fixasetlist, e.row);
-
- var objArg = new Object();
- objArg.arg_ds_temp = ds_temp_fixasetlist;
- frmf_modal("SMRFE01000", "SMRFE01000", objArg, "", "", "", "", "", "", "", "", "", "M");
-
- }
-
- }
- }
- function btn_down_onclick(obj:Button, e:ClickEventInfo)
- {
- var filepath = ds_fixhelpcnt.getColumn(0, "detldesc");
- var filenm = "장비신청 도움말.hwp";
- var fd = new FileDialog;
- var objVFile = fd.open("FileSave", FileDialog.SAVE, "%MYDOCUMENT%", filenm); // 단일 파일 선택
- if(!utlf_isNull(objVFile))
- {
- dsf_createDsRow("ds_tmep_filepath", [{col : "filepath", val : filepath}]);
-
- sysf_setErrorMsg(false);
-
- var oParam = {};
- oParam.id = "TRRWC03003";
- oParam.service = "paybaseinfomngtapp.PayBaseInfoMngt";
- oParam.method = "reqGetManualAtt";
- oParam.inds = "req=ds_tmep_filepath";
- oParam.outds = "ds_attachfile=attachfile";
- oParam.async = false;
- //oParam.callback = "cf_TRRWC03003";
- tranf_submit(oParam);
-
- sysf_setErrorMsg(true);
-
- var temp = dsf_readFileFromDs(objVFile.fullpath, ds_attachfile, 0, "filedata"); // 파일저장
- if(!utlf_isNull(temp)){
- var rtn = sysf_messageBox("파일을", "Q004");
- if( rtn == 6 )
- {
- system.execShell("\"" + objVFile.fullpath + "\"");
- }
- }
- }
- }
- ]]></Script>
- </Form>
- </FDL>
|