123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859 |
- <?xml version="1.0" encoding="utf-8"?>
- <FDL version="1.5">
- <TypeDefinition url="..\..\..\default_typedef.xml"/>
- <Form id="SMRSD05100" position="absolute 0 0 1202 822" titletext="비품청구 접수" oninit="SMRSD05100_oninit" onload="SMRSD05100_onload">
- <Layouts>
- <Layout>
- <Static id="caption6" text="비품청구접수" class="tit_1" position="absolute 0 0 137 25"/>
- <Shape id="line17" class="line_6" position="absolute 0 47 1195 53" anchor="left top right"/>
- <Button id="button46" taborder="1" text="초기화" class="btn4" position="absolute 1126 26 1194 48" anchor="top right" onclick="button46_onclick"/>
- <Button id="btn_save" taborder="2" text="저장" class="btn4" position="absolute 1069 26 1125 48" anchor="top right" onclick="btn_save_onclick"/>
- <Button id="button1" taborder="3" text="전자결재" class="btn6" position="absolute 217 26 297 48"/>
- <Button id="btn_prta" taborder="4" text="청구서출력(일괄)" class="btn6" position="absolute 93 26 216 48" onclick="btn_prta_onclick"/>
- <Button id="btn_prt" taborder="5" text="청구서출력" class="btn6" position="absolute 0 26 92 48" onclick="btn_prt_onclick"/>
- <Div id="grp_sea" taborder="6" position="absolute 0 51 1195 111" class="div_SA2" anchor="left top right">
- <Layouts>
- <Layout>
- <Calendar id="input4" taborder="13" class="input_essential" position="absolute 507 32 611 51" onchanged="grp_sea_input4_onchanged"/>
- <Calendar id="ipt_reqfrdd_search" taborder="14" class="input_essential" position="absolute 507 7 611 26" onchanged="grp_sea_ipt_reqfrdd_search_onchanged"/>
- <Calendar id="ipt_deptaprvddto_search" taborder="8" class="input_essential" position="absolute 628 7 732 26" onchanged="grp_sea_ipt_deptaprvddto_search_onchanged" autoselect="true"/>
- <Calendar id="ipt_reqtodd_search" taborder="7" class="input_default" position="absolute 628 32 732 51" onchanged="grp_sea_ipt_reqtodd_search_onchanged" autoselect="true"/>
- <Static id="caption4" text="기관코드 :" class="search_name" position="absolute 20 7 137 24"/>
- <Static id="caption8" text="청구부서 :" class="search_name" position="absolute 20 33 106 50"/>
- <Edit id="ipt_reqdeptcd_search" taborder="1" class="input_default" position="absolute 110 32 190 51" autoselect="true" onkeydown="grp_sea_ipt_reqdeptcd_search_onkeydown"/>
- <Combo id="cmb_instcd_search" taborder="2" class="combo_essential" position="absolute 110 7 319 26" onitemchanged="grp_sea_cmb_instcd_search_onitemchanged"/>
- <Button id="btn_reqdept" taborder="3" class="icon_search" position="absolute 195 33 211 49" onclick="grp_sea_btn_reqdept_onclick"/>
- <Edit id="ipt_reqdeptnm_search" taborder="4" position="absolute 215 32 365 51" class="output" readonly="true"/>
- <Static id="caption19" text="승인일자 :" class="search_name" position="absolute 420 7 506 24"/>
- <Static id="caption20" text="청구일자 :" class="search_name" position="absolute 420 32 515 49"/>
- <Calendar id="input2" taborder="5" class="input_default" position="absolute 507 32 611 51" autoselect="true"/>
- <Calendar id="ipt_deptaprvddfr_search" taborder="6" class="input_essential" position="absolute 507 7 611 26" autoselect="true"/>
- <Static id="caption44" text="~" position="absolute 613 7 628 27"/>
- <Static id="caption14" text="~" position="absolute 613 32 628 52"/>
- <Static id="caption1" text="접수구분 :" class="search_name" position="absolute 785 9 871 26"/>
- <Combo id="cmb_acptflag_search" taborder="9" codecolumn="codecolumn" datacolumn="datacolumn" class="combo_essential" position="absolute 875 7 970 26" onitemchanged="grp_sea_cmb_acptflag_search_onitemchanged">
- <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">N</Col>
- <Col id="datacolumn">미접수</Col>
- </Row>
- <Row>
- <Col id="codecolumn">Y</Col>
- <Col id="datacolumn">접수</Col>
- </Row>
- <Row>
- <Col id="codecolumn">C</Col>
- <Col id="datacolumn">종료</Col>
- </Row>
- </Rows>
- </Dataset>
- </Combo>
- <Combo id="cmb_reqflag_search" taborder="10" class="combo_essential" position="absolute 810 34 900 53" onitemchanged="grp_sea_cmb_reqflag_search_onitemchanged" visible="false"/>
- <Edit id="ipt_goodflag" taborder="11" visible="false" position="absolute 902 34 932 53"/>
- <Shape id="line18" linetype="vertical" class="line_4" position="absolute 1106 9 1112 51" anchor="top right"/>
- <Button id="btn_search" taborder="12" text="조회" class="btn1" position="absolute 1124 22 1180 44" anchor="top right" onclick="grp_sea_btn_search_onclick"/>
- </Layout>
- </Layouts>
- </Div>
- <Shape id="line8" linetype="horizontal" class="line_2" position="absolute 0 755 605 761" anchor="left bottom"/>
- <Shape id="line29" linetype="horizontal" class="line_2" position="absolute 0 551 605 557" anchor="left bottom"/>
- <Shape id="line28" linetype="horizontal" class="line_2" position="absolute 0 527 605 533" anchor="left bottom"/>
- <Shape id="line16" linetype="horizontal" class="line_2" position="absolute 0 475 605 481" anchor="left bottom"/>
- <Shape id="line15" linetype="horizontal" class="line_2" position="absolute 0 449 605 455" anchor="left bottom"/>
- <Shape id="line26" linetype="horizontal" class="line_2" position="absolute 0 677 605 683" anchor="left bottom"/>
- <Shape id="line24" linetype="horizontal" class="line_2" position="absolute 0 603 605 609" anchor="left bottom"/>
- <Shape id="line23" linetype="vertical" class="line_2" position="absolute 0 564 605 570" anchor="left bottom"/>
- <Shape id="line22" linetype="horizontal" class="line_2" position="absolute 0 652 605 658" anchor="left bottom"/>
- <Shape id="line30" linetype="horizontal" class="line_2" position="absolute 0 577 605 583" anchor="left bottom"/>
- <Shape id="line5" linetype="horizontal" class="line_3" position="absolute 0 804 605 810" anchor="left bottom"/>
- <Static id="caption9" text="비품청구" class="tit_2" position="absolute 0 406 100 427" anchor="left bottom"/>
- <Static id="caption52" text="포장단위" class="cell_1" position="absolute -126 359 -18 382"/>
- <Static id="caption54" text="근속기준일/년" class="cell_1" position="absolute -126 383 -18 406"/>
- <Grid id="grd_goodreq" taborder="7" binddataset="ds_main_list_goodreq_goodreqlist" useinputpanel="false" position="absolute 0 148 1195 394" autoenter="select" cellsizingtype="col" anchor="all" oncellclick="grd_goodreq_oncellclick">
- <Formats>
- <Format id="default">
- <Columns>
- <Column size="21" band="left"/>
- <Column size="19"/>
- <Column size="70"/>
- <Column size="35"/>
- <Column size="30"/>
- <Column size="70"/>
- <Column size="55"/>
- <Column size="0"/>
- <Column size="60"/>
- <Column size="55"/>
- <Column size="55"/>
- <Column size="55"/>
- <Column size="190"/>
- <Column size="60"/>
- <Column size="70"/>
- <Column size="65"/>
- <Column size="45"/>
- <Column size="45"/>
- <Column size="55"/>
- <Column size="51"/>
- <Column size="70"/>
- <Column size="45"/>
- <Column size="51"/>
- <Column size="66"/>
- <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"/>
- </Columns>
- <Rows>
- <Row size="24" band="head"/>
- <Row size="24"/>
- </Rows>
- <Band id="head">
- <Cell/>
- <Cell col="1" displaytype="checkbox" edittype="checkbox"/>
- <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="진행상태"/>
- <Cell col="19" text="승인자"/>
- <Cell col="20" text="승인일자"/>
- <Cell col="21" text="접수"/>
- <Cell col="22" text="접수자"/>
- <Cell col="23" text="구매승인"/>
- <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"/>
- </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="date" text="bind:reqdd" calendardisplaynulltype="nulltext"/>
- <Cell col="3" text="bind:reqno"/>
- <Cell col="4" text="bind:reqseqno"/>
- <Cell col="5" style="align:left middle;padding:0 0 0 3;" text="bind:reqdeptnm"/>
- <Cell col="6" style="align:left middle;padding:0 0 0 3;" text="bind:reqpsnnm"/>
- <Cell col="7" style="align:left middle;padding:0 0 0 3;" text="bind:deliveprcsflagnm"/>
- <Cell col="8" style="align:left middle;padding:0 0 0 3;" text="bind:workflagnm"/>
- <Cell col="9" style="align:left middle;padding:0 0 0 3;" text="bind:lrgnm"/>
- <Cell col="10" style="align:left middle;padding:0 0 0 3;" text="bind:mdlnm"/>
- <Cell col="11" style="align:left middle;padding:0 0 0 3;" text="bind:smlnm"/>
- <Cell col="12" style="align:left middle;padding:0 0 0 3;" text="bind:goodnm"/>
- <Cell col="13" style="align:left middle;padding:0 0 0 3;" text="bind:goodmodel"/>
- <Cell col="14" style="align:left middle;padding:0 0 0 3;" text="bind:goodspec"/>
- <Cell col="15" style="align:left middle;padding:0 0 0 3;" text="bind:prodcmpynm"/>
- <Cell col="16" displaytype="number" text="bind:reqqty"/>
- <Cell col="17" displaytype="number" text="bind:adjtqty"/>
- <Cell col="18" displaytype="combo" style="align:center middle;" text="bind:deliveprcsflag" combodataset="ds_cmb_deliveprcsflag" combocodecol="value" combodatacol="label" enable="false"/>
- <Cell col="19" text="bind:deptaprvpsnnm"/>
- <Cell col="20" displaytype="date" text="bind:deptaprvdd" calendardisplaynulltype="nulltext"/>
- <Cell col="21" text="bind:acptflagnm"/>
- <Cell col="22" text="bind:acptcharid"/>
- <Cell col="23" displaytype="combo" edittype="combo" style="align:center middle;" text="bind:purcacptflag" combodataset="ds_init_purcacptflag" combocodecol="value" combodatacol="label"/>
- <Cell col="24" text="bind:acptdd"/>
- <Cell col="25" text="bind:bugtexpcamt" mask="#,###"/>
- <Cell col="26" text="bind:reqflag"/>
- <Cell col="27" text="bind:reqseqno"/>
- <Cell col="28" text="bind:prodcmpycd"/>
- <Cell col="29" text="bind:bugtcd"/>
- <Cell col="30" text="bind:bugtnm"/>
- <Cell col="31" text="bind:bugtyy"/>
- <Cell col="32" text="bind:stdysubjno"/>
- <Cell col="33" text="bind:reqdeptcd"/>
- <Cell col="34" text="bind:installplcecd"/>
- <Cell col="35" text="bind:reqpsnid"/>
- <Cell col="36" text="bind:reqtm"/>
- <Cell col="37" text="bind:delivedeptcd"/>
- <Cell col="38" text="bind:delivehopedd"/>
- <Cell col="39" text="bind:requnit"/>
- <Cell col="40" text="bind:attfilenm"/>
- <Cell col="41" text="bind:attfilepathnm"/>
- <Cell col="42" text="bind:adjtqty"/>
- <Cell col="43" text="bind:adjtrsn"/>
- <Cell col="44" text="bind:acptcharid"/>
- <Cell col="45" text="bind:plceorddd"/>
- <Cell col="46" text="bind:plceordseqno"/>
- <Cell col="47" text="bind:plceordno"/>
- <Cell col="48" text="bind:fixasetcd"/>
- <Cell col="49" text="bind:deliveqty"/>
- <Cell col="50" text="bind:unwinresn"/>
- <Cell col="51" text="bind:deliveprcsflag"/>
- <Cell col="52" text="bind:cmt"/>
- <Cell col="53" text="bind:instcd"/>
- <Cell col="54" text="bind:workflag"/>
- <Cell col="55" text="bind:reqpsnnm"/>
- <Cell col="56" text="bind:reqno"/>
- <Cell col="57" text="bind:makeyn"/>
- <Cell col="58" text="bind:deptaprvyn"/>
- <Cell col="59" text="bind:acptflag"/>
- <Cell col="60" text="bind:stdysubjnm"/>
- <Cell col="61" text="bind:installplcenm"/>
- <Cell col="62" text="bind:purcacptdd"/>
- <Cell col="63" text="bind:wncurncyamt"/>
- <Cell col="64" text="bind:plceordamt"/>
- <Cell col="65" text="bind:suplplcecd"/>
- <Cell col="66" text="bind:suplplcenm"/>
- <Cell col="67" text="bind:lrgcd"/>
- <Cell col="68" text="bind:mdlcd"/>
- <Cell col="69" text="bind:smlcd"/>
- <Cell col="70" text="bind:cntrdeptcd"/>
- <Cell col="71" text="bind:cntrdeptcdnm"/>
- <Cell col="72" text="bind:mngtdeptcd"/>
- <Cell col="73" text="bind:mngtdeptcdnm"/>
- <Cell col="74" text="bind:reqtel"/>
- <Cell col="75" text="bind:studyinstcd"/>
- <Cell col="76" text="bind:acpttype"/>
- <Cell col="77" text="bind:deptaprvpsnid"/>
- <Cell col="78" text="bind:prodplce"/>
- </Band>
- </Format>
- </Formats>
- </Grid>
- <Shape id="line3" linetype="horizontal" class="line_10" position="absolute 0 422 605 428" anchor="left bottom"/>
- <Edit id="ipt_reqno" taborder="8" class="input_essential" visible="false" position="absolute 535 429 555 448" anchor="left bottom" autoselect="true"/>
- <Edit id="ipt_reqdeptcd" taborder="9" readonly="true" position="absolute 460 429 490 448" anchor="left bottom" visible="false" class="output"/>
- <Edit id="opt_reqdeptnm" taborder="10" readonly="true" visible="false" position="absolute 315 429 340 448" anchor="left bottom" class="output"/>
- <Static id="caption67" text="물품명칭" class="cell_1" position="absolute 0 505 100 528" anchor="left bottom"/>
- <Edit id="ipt_goodnm" taborder="11" class="input_essential" position="absolute 102 507 606 526" anchor="left bottom" autoselect="true"/>
- <Static id="caption61" text="모델/규격" class="cell_1" position="absolute 0 531 100 552" anchor="left bottom"/>
- <Edit id="ipt_goodspec" taborder="12" class="input_fix" position="absolute 388 532 606 551" anchor="left bottom" autoselect="true"/>
- <Edit id="ipt_goodmodel" taborder="13" class="input_default" position="absolute 102 532 383 551" anchor="left bottom" autoselect="true"/>
- <Button id="btn_prodcmpycd" taborder="14" class="icon_search" visible="false" position="absolute 525 342 541 358" onclick="btn_prodcmpycd_onclick"/>
- <Static id="caption66" text="제조회사" class="cell_1" visible="false" position="absolute 350 338 450 360"/>
- <Edit id="ipt_prodcmpycd" taborder="15" class="input_fix" visible="false" position="absolute 452 340 522 359" autoselect="true"/>
- <Edit id="ipt_prodcmpynm" taborder="16" class="input_fix" visible="false" position="absolute 545 340 650 359" autoselect="true"/>
- <Static id="cap_prodplce" text="제조국" class="cell_1" position="absolute 0 555 100 578" anchor="left bottom"/>
- <Combo id="cmb_prodplce" taborder="17" position="absolute 102 557 302 576" anchor="left bottom"/>
- <Static id="caption64" text="청구수량" class="cell_1" position="absolute 304 555 390 578" anchor="left bottom"/>
- <MaskEdit id="ipt_reqqty" taborder="18" mask="#,###" class="input_essential" position="absolute 392 557 480 576" anchor="left bottom" autoselect="true"/>
- <Combo id="cmb_requnit" taborder="19" class="input_essential" position="absolute 496 557 605 576" anchor="left bottom"/>
- <MaskEdit id="ipt_bugtyy" taborder="20" mask="####" class="input_search" position="absolute 429 634 484 653" maskchar=" " type="string" trimtype="both" style="align:center middle;" anchor="left bottom" autoselect="true"/>
- <Static id="caption56" text="부서연락처" class="cell_1" position="absolute 304 607 390 630" anchor="left bottom"/>
- <MaskEdit id="ipt_bugtexpcamt" taborder="21" mask="9,999999999999" class="input_default" visible="false" position="absolute 100 397 120 416" anchor="left bottom" autoselect="true"/>
- <Static id="caption48" text="예산추산액" class="cell_1" visible="false" position="absolute 80 397 100 420" anchor="left bottom" style="align:left top;"/>
- <Static id="caption71" text="제작여부" class="cell_1" position="absolute 0 453 100 476" anchor="left bottom"/>
- <Edit id="ipt_installplcecd" taborder="22" class="input_essential" position="absolute 102 634 172 653" anchor="left bottom" autoselect="true" onkeydown="ipt_installplcecd_onkeydown"/>
- <Radio id="rbo_makeyn" taborder="23" columncount="2" rowcount="0" codecolumn="codecolumn" datacolumn="datacolumn" position="absolute 102 456 218 472" anchor="left bottom">
- <Dataset id="innerdataset">
- <ColumnInfo>
- <Column id="codecolumn"/>
- <Column id="datacolumn"/>
- </ColumnInfo>
- <Rows>
- <Row>
- <Col id="codecolumn">Y</Col>
- <Col id="datacolumn">예</Col>
- </Row>
- <Row>
- <Col id="codecolumn">N</Col>
- <Col id="datacolumn">아니오</Col>
- </Row>
- </Rows>
- </Dataset>
- </Radio>
- <Static id="caption3" text="설치장소" class="cell_1" position="absolute 0 633 100 653" anchor="left bottom"/>
- <Static id="caption57" text="접수/조정량" class="cell_1" position="absolute 23 733 101 756" anchor="left bottom"/>
- <Static id="caption60" text="첨부파일" class="cell_1" position="absolute 0 656 100 678" anchor="left bottom"/>
- <Edit id="ipt_attfilepathnm" taborder="24" class="input_default" enable="false" position="absolute 102 658 487 677" anchor="left bottom" autoselect="true"/>
- <Static id="caption2" text="청구사유" class="cell_1" position="absolute 0 427 100 450" anchor="left bottom"/>
- <Combo id="cmb_workflag" taborder="25" class="combo_essential" position="absolute 102 429 267 448" anchor="left bottom"/>
- <Shape id="line1" class="line_10" position="absolute 0 143 1195 149" anchor="left top right"/>
- <Static id="caption5" text="비품청구 내역" class="tit_2" position="absolute 0 127 108 148"/>
- <Static id="caption7" text="경유부서 정보" class="tit_2" position="absolute 610 683 718 704" anchor="left bottom"/>
- <Shape id="line2" linetype="horizontal" class="line_10" position="absolute 610 699 1195 705" anchor="left right bottom"/>
- <Edit id="ipt_reqflag" taborder="26" visible="false" position="absolute 340 429 365 448" anchor="left bottom" autoselect="true"/>
- <Edit id="ipt_reqdd" taborder="27" visible="false" position="absolute 490 429 510 448" anchor="left bottom" autoselect="true"/>
- <Edit id="ipt_reqpsnid" taborder="28" visible="false" position="absolute 440 429 460 448" anchor="left bottom" autoselect="true"/>
- <Edit id="ipt_instcd" taborder="29" visible="false" position="absolute 410 429 425 448" anchor="left bottom" autoselect="true"/>
- <Edit id="ipt_deliveprcsflag" taborder="30" visible="false" position="absolute 390 429 410 448" anchor="left bottom" autoselect="true"/>
- <Grid id="grd_psgelist" taborder="31" binddataset="ds_main_list_psgereq_psgereqlist" useinputpanel="false" position="absolute 610 704 1195 807" autoenter="select" autofittype="col" cellsizingtype="col" anchor="left right bottom" onexpanddown="grd_psgelist_onexpanddown">
- <Formats>
- <Format id="default">
- <Columns>
- <Column size="20" band="left"/>
- <Column size="89"/>
- <Column size="81"/>
- <Column size="34"/>
- <Column size="347"/>
- <Column size="0"/>
- <Column size="0"/>
- <Column size="0"/>
- <Column size="0"/>
- <Column size="0"/>
- <Column size="0"/>
- <Column size="0"/>
- </Columns>
- <Rows>
- <Row size="24" band="head"/>
- <Row size="24"/>
- </Rows>
- <Band id="head">
- <Cell/>
- <Cell col="1" text="경유부서"/>
- <Cell col="2" text="경유부서명"/>
- <Cell col="3" text="접수"/>
- <Cell col="4" text="의견"/>
- <Cell col="5"/>
- <Cell col="6"/>
- <Cell col="7"/>
- <Cell col="8"/>
- <Cell col="9"/>
- <Cell col="10"/>
- <Cell col="11"/>
- </Band>
- <Band id="body">
- <Cell celltype="head"/>
- <Cell col="1" displaytype="text" edittype="text" style="align:left middle;padding:0 0 0 3;" text="bind:psgedeptcd" expandshow="show"/>
- <Cell col="2" style="align:left middle;padding:0 0 0 3;" text="bind:psgedeptnm"/>
- <Cell col="3" style="align:left middle;padding:0 0 0 3;" text="bind:psgedeptaprvyn"/>
- <Cell col="4" style="align:left middle;padding:0 0 0 3;" text="bind:psgecmt"/>
- <Cell col="5" text="bind:instcd"/>
- <Cell col="6" text="bind:reqflag"/>
- <Cell col="7" text="bind:reqdd"/>
- <Cell col="8" text="bind:reqno"/>
- <Cell col="9" text="bind:reqseqno"/>
- <Cell col="10" text="bind:psgedeptaprvid"/>
- <Cell col="11" text="bind:psgedeptaprvdd"/>
- </Band>
- </Format>
- </Formats>
- </Grid>
- <Button id="btn_downfile" taborder="32" text="파일수정/다운로드" class="btn2" position="absolute 490 657 606 676" anchor="left bottom" onclick="btn_downfile_onclick"/>
- <Shape id="line4" linetype="horizontal" class="line_10" position="absolute 610 422 1195 428" anchor="left right bottom"/>
- <Static id="caption10" text="비품찾기" class="tit_2" position="absolute 610 406 710 427" anchor="left bottom"/>
- <Edit id="ipt_installplcenm" taborder="33" class="input_fix" position="absolute 197 609 302 628" anchor="left bottom" autoselect="true"/>
- <Button id="btn_installplcecd" taborder="34" class="icon_search" position="absolute 175 635 191 651" anchor="left bottom" onclick="btn_installplcecd_onclick"/>
- <Static id="caption17" text="대/중/소분류" class="cell_1" position="absolute 0 479 100 502" anchor="left bottom"/>
- <Edit id="opt_lrgnm" taborder="35" readonly="true" position="absolute 166 481 269 500" class="output" anchor="left bottom"/>
- <Edit id="opt_mdlnm" taborder="36" readonly="true" position="absolute 335 481 438 500" class="output" oneditclick="opt_mdlnm_oneditclick" anchor="left bottom"/>
- <Edit id="opt_smlnm" taborder="37" readonly="true" position="absolute 503 481 606 500" class="output" anchor="left bottom"/>
- <Static id="caption13" text="청구사유" class="cell_1" position="absolute 0 681 100 728" anchor="left bottom"/>
- <TextArea id="ipt_cmt" taborder="38" position="absolute 102 682 606 726" wordwrap="word" acceptstab="true" autoselect="true" anchor="left bottom"/>
- <Static id="caption15" text="자산코드" class="cell_1" position="absolute 269 453 349 476" anchor="left bottom"/>
- <Edit id="ipt_fixasetcd" taborder="39" class="input_fix" position="absolute 351 455 464 474" anchor="left bottom" autoselect="true"/>
- <Edit id="ipt_lrgcd" taborder="40" class="input_essential" position="absolute 128 481 164 500" anchor="left bottom" autoselect="true"/>
- <Edit id="ipt_mdlcd" taborder="41" class="input_fix" position="absolute 297 481 333 500" anchor="left bottom" autoselect="true"/>
- <Tab id="swh_select" taborder="42" tabindex="0" position="absolute 610 431 1195 675" anchor="left right bottom">
- <Tabpages>
- <Tabpage id="cse_lrgcd" text="분류코드">
- <Layouts>
- <Layout>
- <Grid id="grd_lrglist" taborder="6" binddataset="ds_main_list_lrg_lrglist" useinputpanel="false" position="absolute 0 8 583 210" autoenter="select" cellsizingtype="col" anchor="left right bottom" oncellclick="swh_select_cse_lrgcd_grd_lrglist_oncellclick" oncelldblclick="swh_select_cse_lrgcd_grd_lrglist_oncelldblclick">
- <Formats>
- <Format id="default">
- <Columns>
- <Column size="19" band="left"/>
- <Column size="0"/>
- <Column size="215"/>
- <Column size="0"/>
- <Column size="0"/>
- <Column size="0"/>
- <Column size="0"/>
- <Column size="0"/>
- <Column size="0"/>
- <Column size="0"/>
- <Column size="0"/>
- <Column size="0"/>
- <Column size="0"/>
- <Column size="0"/>
- <Column size="0"/>
- </Columns>
- <Rows>
- <Row size="24" band="head"/>
- <Row size="24"/>
- </Rows>
- <Band id="head">
- <Cell/>
- <Cell col="1" text="대분류코드"/>
- <Cell col="2" text="대분류명"/>
- <Cell col="3" text="주관부서"/>
- <Cell col="4" text="주관부서"/>
- <Cell col="5" text="계정코드(입고)"/>
- <Cell col="6" text="계정코드(입고)"/>
- <Cell col="7" text="계정코드(비용)"/>
- <Cell col="8" text="계정코드(비용)"/>
- <Cell col="9" text="기관코드"/>
- <Cell col="10" text="물품구분"/>
- <Cell col="11" text="최초등록자ID"/>
- <Cell col="12" text="최초등록일시"/>
- <Cell col="13" text="최종수정자ID"/>
- <Cell col="14" text="최종수정일시"/>
- </Band>
- <Band id="body">
- <Cell celltype="head"/>
- <Cell col="1" displaytype="text" edittype="text" class="input_essential" text="bind:lrgcd" enable="false"/>
- <Cell col="2" edittype="none" style="align:left middle;padding:0 0 0 3;" text="bind:lrgnm"/>
- <Cell col="3" text="bind:mainmngtdeptcd"/>
- <Cell col="4" text="bind:mainmngtdeptnm"/>
- <Cell col="5" text="bind:winacnt"/>
- <Cell col="6" text="bind:winacntnm"/>
- <Cell col="7" text="bind:amtacnt"/>
- <Cell col="8" text="bind:amtacntnm"/>
- <Cell col="9" text="bind:instcd"/>
- <Cell col="10" text="bind:goodflag"/>
- <Cell col="11" displaytype="none" edittype="none" text="bind:fstrgstrid"/>
- <Cell col="12" displaytype="none" edittype="none" text="bind:fstrgstdt"/>
- <Cell col="13" displaytype="none" edittype="none" text="bind:lastupdtrid"/>
- <Cell col="14" displaytype="none" edittype="none" text="bind:lastupdtdt"/>
- </Band>
- </Format>
- </Formats>
- </Grid>
- <Grid id="grd_mdllist" taborder="4" binddataset="ds_main_list_mdl_mdllist" useinputpanel="false" visible="false" position="absolute 197 8 389 210" autoenter="select" cellsizingtype="col" oncellclick="swh_select_cse_lrgcd_grd_mdllist_oncellclick" oncelldblclick="swh_select_cse_lrgcd_grd_mdllist_oncelldblclick">
- <Formats>
- <Format id="default">
- <Columns>
- <Column size="22" band="left"/>
- <Column size="100"/>
- <Column size="135"/>
- <Column size="0"/>
- <Column size="0"/>
- <Column size="0"/>
- <Column size="0"/>
- <Column size="0"/>
- <Column size="0"/>
- <Column size="0"/>
- <Column size="0"/>
- <Column size="0"/>
- <Column size="0"/>
- </Columns>
- <Rows>
- <Row size="24" band="head"/>
- <Row size="24"/>
- </Rows>
- <Band id="head">
- <Cell/>
- <Cell col="1" text="중분류코드"/>
- <Cell col="2" text="중분류명"/>
- <Cell col="3" text="계정코드(입고)"/>
- <Cell col="4" text="계정코드(입고)"/>
- <Cell col="5" text="계정코드(비용)"/>
- <Cell col="6" text="계정코드(비용)"/>
- <Cell col="7" text="물품구분"/>
- <Cell col="8" text="대분류코드"/>
- <Cell col="9" text="최초등록자ID"/>
- <Cell col="10" text="최초등록일시"/>
- <Cell col="11" text="최종등록자ID"/>
- <Cell col="12" text="최종등록일시"/>
- </Band>
- <Band id="body">
- <Cell celltype="head"/>
- <Cell col="1" displaytype="text" edittype="text" class="input_essential" text="bind:mdlcd" enable="false"/>
- <Cell col="2" displaytype="none" edittype="none" text="bind:mdlnm"/>
- <Cell col="3" text="bind:winacnt"/>
- <Cell col="4" text="bind:winacntnm"/>
- <Cell col="5" text="bind:amtacnt"/>
- <Cell col="6" text="bind:amtacntnm"/>
- <Cell col="7" displaytype="none" edittype="none" text="bind:instcd"/>
- <Cell col="8" displaytype="none" edittype="none" text="bind:goodflag"/>
- <Cell col="9" displaytype="none" edittype="none" text="bind:lrgcd"/>
- <Cell col="10" displaytype="none" edittype="none" text="bind:fstrgstrid"/>
- <Cell col="11" displaytype="none" edittype="none" text="bind:fstrgstdt"/>
- <Cell col="12" displaytype="none" edittype="none" text="bind:lastupdtrid"/>
- </Band>
- </Format>
- </Formats>
- </Grid>
- <Grid id="grd_smllist" taborder="5" binddataset="ds_main_list_sml_smllist" useinputpanel="false" visible="false" position="absolute 392 8 583 210" autoenter="select" autofittype="col" cellsizingtype="col" oncelldblclick="swh_select_cse_lrgcd_grd_smllist_oncelldblclick">
- <Formats>
- <Format id="default">
- <Columns>
- <Column size="18"/>
- <Column size="0"/>
- <Column size="144"/>
- <Column size="0"/>
- <Column size="0"/>
- <Column size="0"/>
- <Column size="0"/>
- <Column size="0"/>
- <Column size="0"/>
- <Column size="0"/>
- <Column size="0"/>
- <Column size="0"/>
- <Column size="0"/>
- </Columns>
- <Rows>
- <Row size="24" band="head"/>
- <Row size="24"/>
- </Rows>
- <Band id="head">
- <Cell/>
- <Cell col="1" text="소분류코드"/>
- <Cell col="2" text="소분류명"/>
- <Cell col="3" text="계정코드(입고)"/>
- <Cell col="4" text="계정코드(입고)"/>
- <Cell col="5" text="기관코드"/>
- <Cell col="6" text="물품구분"/>
- <Cell col="7" text="대분류코드"/>
- <Cell col="8" text="중분류코드"/>
- <Cell col="9" text="최초등록자ID"/>
- <Cell col="10" text="최초등록일시"/>
- <Cell col="11" text="최종수정자ID"/>
- <Cell col="12" text="최종수정일시"/>
- </Band>
- <Band id="body">
- <Cell celltype="head"/>
- <Cell col="1" displaytype="text" edittype="text" class="input_essential" text="bind:smlcd" enable="false"/>
- <Cell col="2" displaytype="none" edittype="none" text="bind:smlnm"/>
- <Cell col="3" text="bind:winacnt"/>
- <Cell col="4" text="bind:winacntnm"/>
- <Cell col="5" text="bind:instcd"/>
- <Cell col="6" text="bind:goodflag"/>
- <Cell col="7" text="bind:lrgcd"/>
- <Cell col="8" text="bind:mdlcd"/>
- <Cell col="9" text="bind:fstrgstrid"/>
- <Cell col="10" text="bind:fstrgstdt"/>
- <Cell col="11" text="bind:lastupdtrid"/>
- <Cell col="12" text="bind:lastupdtdt"/>
- </Band>
- </Format>
- </Formats>
- </Grid>
- <Shape id="line19" linetype="horizontal" class="line_10" position="absolute -1 3 582 9" anchor="left right bottom"/>
- </Layout>
- </Layouts>
- </Tabpage>
- <Tabpage id="cse_fixasetcd" text="부서내 자산코드">
- <Layouts>
- <Layout>
- <Grid id="grd_fixasetcdlist" taborder="1" binddataset="ds_main_list_fixasetcd_fixasetcdlist" autoenter="select" useinputpanel="false" cellsizingtype="col" position="absolute 0 8 583 210" anchor="left right bottom" oncelldblclick="swh_select_cse_fixasetcd_grd_fixasetcdlist_oncelldblclick">
- <Formats>
- <Format id="default">
- <Columns>
- <Column size="55"/>
- <Column size="54"/>
- <Column size="53"/>
- <Column size="95"/>
- <Column size="137"/>
- <Column size="81"/>
- <Column size="69"/>
- <Column size="75"/>
- <Column size="76"/>
- <Column size="80"/>
- <Column size="84"/>
- <Column size="88"/>
- <Column size="84"/>
- <Column size="0"/>
- <Column size="0"/>
- <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="비품명"/>
- <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"/>
- <Cell col="15"/>
- <Cell col="16"/>
- <Cell col="17"/>
- </Band>
- <Band id="body">
- <Cell style="align:left middle;padding:0 0 0 3;" text="bind:lrgnm"/>
- <Cell col="1" style="align:left middle;padding:0 0 0 3;" text="bind:mdlnm"/>
- <Cell col="2" style="align:left middle;padding:0 0 0 3;" text="bind:smlnm"/>
- <Cell col="3" text="bind:fixasetcd"/>
- <Cell col="4" style="align:left middle;padding:0 0 0 3;" text="bind:goodflaghngnm"/>
- <Cell col="5" style="align:left middle;padding:0 0 0 3;" text="bind:goodmodel"/>
- <Cell col="6" style="align:left middle;padding:0 0 0 3;" text="bind:goodspec"/>
- <Cell col="7" displaytype="number" text="bind:possnamt"/>
- <Cell col="8" displaytype="date" text="bind:possndd" calendardisplaynulltype="nulltext"/>
- <Cell col="9" style="align:left middle;padding:0 0 0 3;" text="bind:suplplcenm"/>
- <Cell col="10" style="align:left middle;padding:0 0 0 3;" text="bind:mngtdeptnm"/>
- <Cell col="11" style="align:left middle;padding:0 0 0 3;" text="bind:installplcenm"/>
- <Cell col="12" style="align:left middle;padding:0 0 0 3;" text="bind:cntrdeptnm"/>
- <Cell col="13" text="bind:windd" mask="yyyy-mm-dd"/>
- <Cell col="14" text="bind:lrgcd"/>
- <Cell col="15" text="bind:mdlcd"/>
- <Cell col="16" text="bind:smlcd"/>
- <Cell col="17" text="bind:fixasetcd"/>
- </Band>
- </Format>
- </Formats>
- </Grid>
- <Shape id="line20" class="line_10" position="absolute 0 3 583 9" anchor="left right bottom"/>
- </Layout>
- </Layouts>
- </Tabpage>
- </Tabpages>
- </Tab>
- <Edit id="ipt_smlcd" taborder="43" class="input_fix" position="absolute 465 481 501 500" anchor="left bottom" autoselect="true"/>
- <Button id="btn_search_cd" taborder="44" text="조회" class="btn2" position="absolute 1151 434 1193 453" anchor="right bottom" onclick="btn_search_cd_onclick"/>
- <MaskEdit id="ipt_adjtqty" taborder="45" mask="9,999999999999999" class="input_essential" position="absolute 291 736 606 755" autoskip="true" autoselect="true" anchor="left bottom"/>
- <Combo id="cmb_acptflag" taborder="46" innerdataset="@ds_init_acptflag" codecolumn="value" datacolumn="label" class="combo_essential" position="absolute 102 735 286 754" anchor="left bottom" onitemchanged="cmb_acptflag_onitemchanged"/>
- <Edit id="ipt_acptdd" taborder="47" class="input_essential" visible="false" position="absolute 560 429 585 448" anchor="left bottom" autoselect="true"/>
- <Edit id="ipt_acptcharid" taborder="48" class="input_essential" visible="false" position="absolute 570 455 585 474" anchor="left bottom" autoselect="true"/>
- <Static id="caption11" text="조정사유" class="cell_1" position="absolute 23 759 101 805" anchor="left bottom"/>
- <TextArea id="ipt_adjtrsn" taborder="49" class="input_essential" position="absolute 102 760 606 803" wordwrap="word" acceptstab="true" autoselect="true" anchor="left bottom"/>
- <Shape id="line6" linetype="horizontal" class="line_10" position="absolute 0 728 605 734" anchor="left bottom"/>
- <Static id="caption12" text="접수" class="cell_1" position="absolute 0 733 22 805" anchor="left bottom"/>
- <Static id="caption45" text="대" class="cell_1" position="absolute 101 479 126 502" anchor="left bottom"/>
- <Static id="caption46" text="중" class="cell_1" position="absolute 271 479 296 502" anchor="left bottom"/>
- <Static id="caption47" text="소" class="cell_1" position="absolute 439 479 464 502" anchor="left bottom"/>
- <Static id="caption49" text="예산계정" class="cell_1" visible="false" position="absolute 130 397 152 420" anchor="left bottom" style="align:left top;"/>
- <Static id="caption50" text="연구과제" class="cell_1" visible="false" position="absolute 181 395 200 418" anchor="left bottom" style="align:left top;"/>
- <Edit id="ipt_stdysubjno" taborder="50" class="input_search" visible="false" position="absolute 205 397 225 416" anchor="left bottom" autoselect="true"/>
- <Combo id="cmb_bugtcd" taborder="51" class="combo_default" visible="false" position="absolute 155 397 175 416" anchor="left bottom"/>
- <Edit id="ipt_stdysubjnm" taborder="52" class="input_fix" visible="false" position="absolute 240 397 260 416" anchor="left bottom" autoselect="true"/>
- <Button id="btn_stdysubjnm" taborder="53" class="icon_search" visible="false" position="absolute 225 397 241 413" anchor="left bottom" onclick="btn_stdysubjnm_onclick"/>
- <Button id="button12" taborder="54" text="행삭제" class="btn2" position="absolute 1140 680 1193 699" anchor="right bottom" onclick="button12_onclick"/>
- <Button id="button13" taborder="55" text="행추가" class="btn2" position="absolute 1085 680 1138 699" anchor="right bottom" onclick="button13_onclick"/>
- <Edit id="ipt_suplplcecd" taborder="56" class="input_fix" visible="false" position="absolute 452 316 522 335" autoselect="true"/>
- <Static id="caption51" text="거래처" class="cell_1" visible="false" position="absolute 350 314 450 337"/>
- <Button id="btn_suplplcecd" taborder="57" class="icon_search" visible="false" position="absolute 525 318 541 334" onclick="btn_suplplcecd_onclick"/>
- <Edit id="ipt_suplplcenm" taborder="58" class="input_fix" visible="false" position="absolute 545 316 650 335" autoselect="true"/>
- <MaskEdit id="ipt_plceordamt" taborder="59" mask="9,999999999999999" class="input_essential" enable="false" position="absolute 520 583 605 602" anchor="left bottom" autoselect="true"/>
- <Static id="caption53" text="단가" class="cell_1" position="absolute 304 582 365 604" anchor="left bottom"/>
- <Static id="caption55" text="금액" class="cell_1" position="absolute 457 582 518 604" anchor="left bottom"/>
- <MaskEdit id="ipt_wncurncyamt" taborder="60" mask="9,9999999999999" class="input_fix" position="absolute 367 583 452 602" autoselect="true" autoskip="true" anchor="left bottom"/>
- <Button id="brn_all_check" taborder="61" text="구매승인/미승인.선택" class="btn2" position="absolute 968 124 1106 143" anchor="top right" onclick="brn_all_check_onclick"/>
- <Button id="btn_purcaprv" taborder="62" text="선택승인처리" class="btn2" position="absolute 1108 124 1194 143" anchor="top right" onclick="btn_purcaprv_onclick"/>
- <Button id="btn_mngtdeptcd" taborder="63" class="icon_search" position="absolute 175 610 191 626" anchor="left bottom" onclick="btn_mngtdeptcd_onclick"/>
- <Static id="cap_mngtdeptcd" text="사용부서" class="cell_1" position="absolute 0 607 100 630" anchor="left bottom"/>
- <Edit id="ipt_mngtdeptcdnm" taborder="64" class="input_fix" position="absolute 195 634 300 653" anchor="left bottom" autoselect="true"/>
- <Edit id="ipt_cntrdeptcd" taborder="65" class="input_fix" position="absolute 102 583 172 602" anchor="left bottom" autoselect="true"/>
- <Button id="btn_cntrdeptcd" taborder="66" class="icon_search" position="absolute 175 584 191 600" anchor="left bottom" onclick="btn_cntrdeptcd_onclick"/>
- <Edit id="ipt_mngtdeptcd" taborder="67" class="input_fix" position="absolute 102 609 172 628" anchor="left bottom" autoselect="true"/>
- <Edit id="ipt_cntrdeptcdnm" taborder="68" class="input_fix" position="absolute 195 583 300 602" anchor="left bottom" autoselect="true"/>
- <Static id="cap_cntrdeptcd" text="청구부서" class="cell_1" position="absolute 0 581 100 604" anchor="left bottom"/>
- <Edit id="ipt_reqtel" taborder="69" visible="false" position="absolute 535 454 560 473" anchor="left bottom" autoselect="true"/>
- <Edit id="ipt_studyinstcd" taborder="70" visible="false" position="absolute 485 454 535 473" anchor="left bottom" autoselect="true"/>
- <Combo id="cmb_acpttype" taborder="71" innerdataset="@ds_init_acpttype" codecolumn="value" datacolumn="label" class="combo_essential" visible="false" position="absolute 770 314 920 333" onitemchanged="cmb_acpttype_onitemchanged"/>
- <Static id="caption16" text="지급기준" class="cell_1" visible="false" position="absolute 690 313 768 336"/>
- <Button id="btn_excel" taborder="72" text="Excel 저장" class="btn5" position="absolute 891 124 966 143" anchor="top right" onclick="btn_excel_onclick"/>
- <Static id="caption18" text="예산년도/집행/잔액" class="cell_1" position="absolute 304 633 427 653" anchor="left bottom"/>
- <MaskEdit id="ipt_bugtexecamt" taborder="73" mask="9,9999999999999" position="absolute 485 634 546 653" autoskip="true" autoselect="true" class="output" readonly="true" anchor="left bottom"/>
- <MaskEdit id="ipt_remainder" taborder="74" mask="9,99999999999" position="absolute 547 634 607 653" readonly="true" anchor="left bottom" class="output"/>
- <Shape id="line7" linetype="horizontal" class="line_2" position="absolute 0 629 605 635" anchor="left bottom"/>
- <Edit id="input1" taborder="75" enable="false" position="absolute 392 609 605 628" anchor="left bottom" autoselect="true" style=":disabled {align:right middle;}"/>
- <Shape id="line00" class="line_2" position="absolute 0 501 605 507" anchor="left bottom"/>
- <Button id="btn_print" taborder="77" text="출력" class="btn2" position="absolute 531 429 577 448" anchor="left bottom" onclick="btn_print_onclick" enable="false"/>
- <Static id="cap_comreqno" text="전산요청번호" class="cell_1" position="absolute 269 427 369 450" anchor="left bottom"/>
- <Combo id="cmb_comreqno" taborder="78" position="absolute 371 429 526 448" anchor="left bottom" innerdataset="@ds_comreqno" codecolumn="value" datacolumn="label"/>
- </Layout>
- </Layouts>
- <Objects>
- <Dataset id="ds_send_goodreq" firefirstcount="0" firenextcount="0" useclientlayout="false" updatecontrol="true" enableevent="true" loadkeymode="keep" loadfiltermode="keep" reversesubsum="false" oncolumnchanged="ds_send_goodreq_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="reqflag" type="STRING" size="256"/>
- <Column id="reqfrdd" type="STRING" size="256"/>
- <Column id="deliveprcsflag" type="STRING" size="256"/>
- <Column id="retrmaxreqnoyn" type="STRING" size="256"/>
- <Column id="reqtodd" type="STRING" size="256"/>
- <Column id="acptflag" type="STRING" size="256"/>
- <Column id="deptaprvddfr" type="STRING" size="256"/>
- <Column id="deptaprvddto" type="STRING" size="256"/>
- </ColumnInfo>
- <Rows>
- <Row>
- <Col id="instcd"/>
- <Col id="reqdeptcd"/>
- <Col id="reqdeptnm"/>
- <Col id="reqflag"/>
- <Col id="reqfrdd"/>
- <Col id="deliveprcsflag"/>
- <Col id="retrmaxreqnoyn"/>
- <Col id="reqtodd"/>
- <Col id="acptflag"/>
- <Col id="deptaprvddfr"/>
- <Col id="deptaprvddto"/>
- </Row>
- </Rows>
- </Dataset>
- <Dataset id="ds_send_lrgcd" firefirstcount="0" firenextcount="0" useclientlayout="false" updatecontrol="true" enableevent="true" loadkeymode="keep" loadfiltermode="keep" reversesubsum="false">
- <ColumnInfo>
- <Column id="lrgcd" type="STRING" size="256"/>
- <Column id="mdlcd" type="STRING" size="256"/>
- <Column id="instcd" type="STRING" size="256"/>
- <Column id="goodflag" type="STRING" size="256"/>
- </ColumnInfo>
- <Rows>
- <Row>
- <Col id="lrgcd"/>
- <Col id="mdlcd"/>
- <Col id="instcd"/>
- <Col id="goodflag"/>
- </Row>
- </Rows>
- </Dataset>
- <Dataset id="ds_main_list_goodreq_goodreqlist" firefirstcount="0" firenextcount="0" useclientlayout="true" updatecontrol="true" enableevent="true" loadkeymode="keep" loadfiltermode="keep" reversesubsum="false" oncolumnchanged="ds_main_list_goodreq_goodreqlist_oncolumnchanged">
- <ColumnInfo>
- <Column id="instcd" type="STRING" size="256" sumtext="기관코드"/>
- <Column id="reqflag" type="STRING" size="256" sumtext="물품구분"/>
- <Column id="reqdd" type="STRING" size="256" sumtext="청구일자"/>
- <Column id="reqno" type="STRING" size="256" sumtext="청구번호"/>
- <Column id="reqseqno" type="STRING" size="256" sumtext="청구 일련번호"/>
- <Column id="workflag" type="STRING" size="256" sumtext="작업구분"/>
- <Column id="workflagnm" type="STRING" size="256" sumtext="작업구분명"/>
- <Column id="lrgcd" type="STRING" size="256" sumtext="대분류"/>
- <Column id="lrgnm" type="STRING" size="256" sumtext="대분류명"/>
- <Column id="mdlcd" type="STRING" size="256" sumtext="중분류코드"/>
- <Column id="mdlnm" type="STRING" size="256" sumtext="중분류명"/>
- <Column id="smlcd" type="STRING" size="256" sumtext="소분류코드"/>
- <Column id="smlnm" type="STRING" size="256" sumtext="소분류명"/>
- <Column id="fixasetcd" type="STRING" size="256" sumtext="고정자산코드"/>
- <Column id="goodnm" type="STRING" size="256" sumtext="goodnm"/>
- <Column id="goodspec" type="STRING" size="256" sumtext="물품규격"/>
- <Column id="goodmodel" type="STRING" size="256" sumtext="모델"/>
- <Column id="prodcmpycd" type="STRING" size="256" sumtext="제조회사코드"/>
- <Column id="prodcmpynm" type="STRING" size="256" sumtext="제조회사명"/>
- <Column id="bugtcd" type="STRING" size="256" sumtext="예산코드"/>
- <Column id="bugtflag" type="STRING" size="256" sumtext="예산코드"/>
- <Column id="bugtnm" type="STRING" size="256" sumtext="계정명"/>
- <Column id="bugtyy" type="STRING" size="256" sumtext="bugtyy"/>
- <Column id="stdysubjno" type="STRING" size="256" sumtext="연구과제번호"/>
- <Column id="stdysubjnm" type="STRING" size="256" sumtext="연구과제번호"/>
- <Column id="reqdeptcd" type="STRING" size="256" sumtext="청구부서"/>
- <Column id="reqdeptnm" type="STRING" size="256" sumtext="청구부서명"/>
- <Column id="installplcecd" type="STRING" size="256" sumtext="설치장소"/>
- <Column id="installplcenm" type="STRING" size="256" sumtext="설치장소명"/>
- <Column id="reqpsnid" type="STRING" size="256" sumtext="청구자"/>
- <Column id="reqpsnnm" type="STRING" size="256" sumtext="청구자"/>
- <Column id="reqtm" type="STRING" size="256" sumtext="청구시간"/>
- <Column id="delivedeptcd" type="STRING" size="256" sumtext="출고부서"/>
- <Column id="delivehopedd" type="STRING" size="256" sumtext="출고희망일"/>
- <Column id="reqqty" type="BIGDECIMAL" size="256" sumtext="청구수량"/>
- <Column id="requnit" type="STRING" size="256" sumtext="청구단위"/>
- <Column id="attfilenm" type="STRING" size="256" sumtext="첨부파일명"/>
- <Column id="attfilepathnm" type="STRING" size="256" sumtext="첨부파일경로명"/>
- <Column id="makeyn" type="STRING" size="256" sumtext="제작여부"/>
- <Column id="deptaprvyn" type="STRING" size="256" sumtext="부서승인여부"/>
- <Column id="deptaprvdd" type="STRING" size="256" sumtext="부서승인일자"/>
- <Column id="acptflag" type="STRING" size="256" sumtext="접수여부"/>
- <Column id="acptflagnm" type="STRING" size="256" sumtext="접수여부명"/>
- <Column id="acptdd" type="STRING" size="256" sumtext="접수일자"/>
- <Column id="adjtqty" type="BIGDECIMAL" size="256" sumtext="조정수량"/>
- <Column id="adjtrsn" type="STRING" size="256" sumtext="조정사유"/>
- <Column id="acptcharid" type="STRING" size="256" sumtext="접수담당자id"/>
- <Column id="plceorddd" type="STRING" size="256" sumtext="구매요구일자"/>
- <Column id="plceordseqno" type="STRING" size="256" sumtext="구매요구번호"/>
- <Column id="deliveqty" type="STRING" size="256" sumtext="불출수량"/>
- <Column id="unwinresn" type="STRING" size="256" sumtext="미입고사유"/>
- <Column id="deliveprcsflag" type="STRING" size="256" sumtext="출고진행구분"/>
- <Column id="deliveprcsflagnm" type="STRING" size="256" sumtext="출고진행구분명"/>
- <Column id="cmt" type="STRING" size="256" sumtext="비고"/>
- <Column id="plceordyn" type="STRING" size="256" sumtext="발주여부(발주프로그램에서필요)"/>
- <Column id="plceordqty" type="STRING" size="256" sumtext="발주량(발주프로그램에서필요)"/>
- <Column id="wncurncyamt" type="STRING" size="256" sumtext="단가(발주프로그렘에서필요)"/>
- <Column id="plceordamt" type="STRING" size="256" sumtext="발주금액(발주프로그램에서필요)"/>
- <Column id="suplplcecd" type="STRING" size="256" sumtext="거래처(발주프로그램에서필요)"/>
- <Column id="suppcustcd" type="STRING" size="256" sumtext="보조거래처(발주프로그렘에서필요)"/>
- <Column id="delivedd" type="STRING" size="256" sumtext="납품일자(발주프로그램에서필요)"/>
- <Column id="purcacptflag" type="STRING" size="256" sumtext="구매승인여부"/>
- <Column id="purcacptdd" type="STRING" size="256" sumtext="구매승인일자"/>
- <Column id="suplplcenm" type="STRING" size="256" sumtext="거래처명"/>
- <Column id="cntrdeptcd" type="STRING" size="256" sumtext="귀속부서"/>
- <Column id="cntrdeptcdnm" type="STRING" size="256" sumtext="귀속부서명"/>
- <Column id="mngtdeptcd" type="STRING" size="256" sumtext="관리부서"/>
- <Column id="mngtdeptcdnm" type="STRING" size="256" sumtext="관리부서명"/>
- <Column id="studyinstcd" type="STRING" size="256" sumtext="연구기관"/>
- <Column id="acpttype" type="STRING" size="256" sumtext="지급기준"/>
- <Column id="projectnm" type="STRING" size="256" sumtext="프로젝트명"/>
- <Column id="projectid" type="STRING" size="256" sumtext="프로젝트id"/>
- <Column id="groupbugt" type="STRING" size="256" sumtext="계정"/>
- <Column id="totamt" type="STRING" size="256" sumtext="예산편성액"/>
- <Column id="bugtexpcamt" type="STRING" size="256" sumtext="예산추산액"/>
- <Column id="bugtexecamt" type="STRING" size="256" sumtext="예산집행액"/>
- <Column id="remainder" type="STRING" size="256" sumtext="예산잔액"/>
- <Column id="fundorigin" type="STRING" size="256" sumtext="자금출처"/>
- <Column id="reqtel" type="STRING" size="256" sumtext="부서연락처"/>
- <Column id="deptaprvpsnid" type="STRING" size="256" sumtext="부서승인자ID"/>
- <Column id="deptaprvpsnnm" type="STRING" size="256" sumtext="부서장명"/>
- <Column id="prodplce" type="STRING" size="256" sumtext="제조국"/>
- <Column id="chk" type="STRING" size="256"/>
- <Column id="comreqno" type="STRING" size="256"/>
- </ColumnInfo>
- </Dataset>
- <Dataset id="ds_main_goodreq_goodreqlist" firefirstcount="0" firenextcount="0" useclientlayout="false" updatecontrol="true" enableevent="true" loadkeymode="keep" loadfiltermode="keep" reversesubsum="false" oncolumnchanged="ds_main_goodreq_goodreqlist_oncolumnchanged">
- <ColumnInfo>
- <Column id="instcd" type="STRING" size="256" sumtext="기관코드"/>
- <Column id="reqflag" type="STRING" size="256" sumtext="물품구분"/>
- <Column id="reqdd" type="STRING" size="256" sumtext="청구일자"/>
- <Column id="reqno" type="STRING" size="256" sumtext="청구번호"/>
- <Column id="reqseqno" type="STRING" size="256" sumtext="청구 일련번호"/>
- <Column id="workflag" type="STRING" size="256" sumtext="작업구분"/>
- <Column id="workflagnm" type="STRING" size="256" sumtext="작업구분명"/>
- <Column id="lrgcd" type="STRING" size="256" sumtext="대분류"/>
- <Column id="lrgnm" type="STRING" size="256" sumtext="대분류명"/>
- <Column id="mdlcd" type="STRING" size="256" sumtext="중분류코드"/>
- <Column id="mdlnm" type="STRING" size="256" sumtext="중분류명"/>
- <Column id="smlcd" type="STRING" size="256" sumtext="소분류코드"/>
- <Column id="smlnm" type="STRING" size="256" sumtext="소분류명"/>
- <Column id="fixasetcd" type="STRING" size="256" sumtext="고정자산코드"/>
- <Column id="goodnm" type="STRING" size="256" sumtext="goodnm"/>
- <Column id="goodspec" type="STRING" size="256" sumtext="물품규격"/>
- <Column id="goodmodel" type="STRING" size="256" sumtext="모델"/>
- <Column id="prodcmpycd" type="STRING" size="256" sumtext="제조회사코드"/>
- <Column id="prodcmpynm" type="STRING" size="256" sumtext="제조회사명"/>
- <Column id="bugtcd" type="STRING" size="256" sumtext="예산코드"/>
- <Column id="bugtflag" type="STRING" size="256" sumtext="예산코드"/>
- <Column id="bugtnm" type="STRING" size="256" sumtext="계정명"/>
- <Column id="bugtyy" type="STRING" size="256" sumtext="bugtyy"/>
- <Column id="stdysubjno" type="STRING" size="256" sumtext="연구과제번호"/>
- <Column id="stdysubjnm" type="STRING" size="256" sumtext="연구과제번호"/>
- <Column id="reqdeptcd" type="STRING" size="256" sumtext="청구부서"/>
- <Column id="reqdeptnm" type="STRING" size="256" sumtext="청구부서명"/>
- <Column id="installplcecd" type="STRING" size="256" sumtext="설치장소"/>
- <Column id="installplcenm" type="STRING" size="256" sumtext="설치장소명"/>
- <Column id="reqpsnid" type="STRING" size="256" sumtext="청구자"/>
- <Column id="reqpsnnm" type="STRING" size="256" sumtext="청구자"/>
- <Column id="reqtm" type="STRING" size="256" sumtext="청구시간"/>
- <Column id="delivedeptcd" type="STRING" size="256" sumtext="출고부서"/>
- <Column id="delivehopedd" type="STRING" size="256" sumtext="출고희망일"/>
- <Column id="reqqty" type="BIGDECIMAL" size="256" sumtext="청구수량"/>
- <Column id="requnit" type="STRING" size="256" sumtext="청구단위"/>
- <Column id="attfilenm" type="STRING" size="256" sumtext="첨부파일명"/>
- <Column id="attfilepathnm" type="STRING" size="256" sumtext="첨부파일경로명"/>
- <Column id="makeyn" type="STRING" size="256" sumtext="제작여부"/>
- <Column id="deptaprvyn" type="STRING" size="256" sumtext="부서승인여부"/>
- <Column id="deptaprvdd" type="STRING" size="256" sumtext="부서승인일자"/>
- <Column id="acptflag" type="STRING" size="256" sumtext="접수여부"/>
- <Column id="acptflagnm" type="STRING" size="256" sumtext="접수여부명"/>
- <Column id="acptdd" type="STRING" size="256" sumtext="접수일자"/>
- <Column id="adjtqty" type="BIGDECIMAL" size="256" sumtext="조정수량"/>
- <Column id="adjtrsn" type="STRING" size="256" sumtext="조정사유"/>
- <Column id="acptcharid" type="STRING" size="256" sumtext="접수담당자id"/>
- <Column id="plceorddd" type="STRING" size="256" sumtext="구매요구일자"/>
- <Column id="plceordseqno" type="STRING" size="256" sumtext="구매요구번호"/>
- <Column id="deliveqty" type="STRING" size="256" sumtext="불출수량"/>
- <Column id="unwinresn" type="STRING" size="256" sumtext="미입고사유"/>
- <Column id="deliveprcsflag" type="STRING" size="256" sumtext="출고진행구분"/>
- <Column id="deliveprcsflagnm" type="STRING" size="256" sumtext="출고진행구분명"/>
- <Column id="cmt" type="STRING" size="256" sumtext="비고"/>
- <Column id="plceordyn" type="STRING" size="256" sumtext="발주여부(발주프로그램에서필요)"/>
- <Column id="plceordqty" type="STRING" size="256" sumtext="발주량(발주프로그램에서필요)"/>
- <Column id="wncurncyamt" type="STRING" size="256" sumtext="단가(발주프로그렘에서필요)"/>
- <Column id="plceordamt" type="STRING" size="256" sumtext="발주금액(발주프로그램에서필요)"/>
- <Column id="suplplcecd" type="STRING" size="256" sumtext="거래처(발주프로그램에서필요)"/>
- <Column id="suppcustcd" type="STRING" size="256" sumtext="보조거래처(발주프로그렘에서필요)"/>
- <Column id="delivedd" type="STRING" size="256" sumtext="납품일자(발주프로그램에서필요)"/>
- <Column id="purcacptflag" type="STRING" size="256" sumtext="구매승인여부"/>
- <Column id="purcacptdd" type="STRING" size="256" sumtext="구매승인일자"/>
- <Column id="suplplcenm" type="STRING" size="256" sumtext="거래처명"/>
- <Column id="cntrdeptcd" type="STRING" size="256" sumtext="귀속부서"/>
- <Column id="cntrdeptcdnm" type="STRING" size="256" sumtext="귀속부서명"/>
- <Column id="mngtdeptcd" type="STRING" size="256" sumtext="관리부서"/>
- <Column id="mngtdeptcdnm" type="STRING" size="256" sumtext="관리부서명"/>
- <Column id="studyinstcd" type="STRING" size="256" sumtext="연구기관"/>
- <Column id="acpttype" type="STRING" size="256" sumtext="지급기준"/>
- <Column id="projectnm" type="STRING" size="256" sumtext="프로젝트명"/>
- <Column id="projectid" type="STRING" size="256" sumtext="프로젝트id"/>
- <Column id="groupbugt" type="STRING" size="256" sumtext="계정"/>
- <Column id="totamt" type="STRING" size="256" sumtext="예산편성액"/>
- <Column id="bugtexpcamt" type="STRING" size="256" sumtext="예산추산액"/>
- <Column id="bugtexecamt" type="STRING" size="256" sumtext="예산집행액"/>
- <Column id="remainder" type="STRING" size="256" sumtext="예산잔액"/>
- <Column id="fundorigin" type="STRING" size="256" sumtext="자금출처"/>
- <Column id="reqtel" type="STRING" size="256" sumtext="부서연락처"/>
- <Column id="deptaprvpsnid" type="STRING" size="256" sumtext="부서승인자ID"/>
- <Column id="deptaprvpsnnm" type="STRING" size="256" sumtext="부서장명"/>
- <Column id="prodplce" type="STRING" size="256" sumtext="제조국"/>
- <Column id="comreqno" type="STRING" size="256"/>
- </ColumnInfo>
- </Dataset>
- <Dataset id="ds_init_acpttype" 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>
- <Row>
- <Col id="label">재고지급</Col>
- <Col id="value">3</Col>
- </Row>
- <Row>
- <Col id="label">임대</Col>
- <Col id="value">4</Col>
- </Row>
- </Rows>
- </Dataset>
- <Dataset id="ds_main_list_lrg_lrglist" firefirstcount="0" firenextcount="0" useclientlayout="false" updatecontrol="true" enableevent="true" loadkeymode="keep" loadfiltermode="keep" reversesubsum="false">
- <ColumnInfo>
- <Column id="lrgcd" type="STRING" size="256" sumtext="대분류코드"/>
- <Column id="lrgnm" type="STRING" size="256" sumtext="대분류명"/>
- <Column id="mainmngtdeptcd" type="STRING" size="256" sumtext="주관부서코드"/>
- <Column id="mainmngtdeptnm" type="STRING" size="256" sumtext="주관부서명"/>
- <Column id="winacnt" type="STRING" size="256" sumtext="계정코드(입고)"/>
- <Column id="winacntnm" type="STRING" size="256" sumtext="계정명(입고)"/>
- <Column id="amtacnt" type="STRING" size="256" sumtext="계정코드(출고)"/>
- <Column id="amtacntnm" type="STRING" size="256" sumtext="계정명(출고)"/>
- <Column id="instcd" type="STRING" size="256" sumtext="기관코드"/>
- <Column id="goodflag" type="STRING" size="256" sumtext="물품구분"/>
- <Column id="fstrgstrid" type="STRING" size="256" sumtext="최초등록자ID"/>
- <Column id="fstrgstdt" type="STRING" size="256" sumtext="최초등록일시"/>
- <Column id="lastupdtrid" type="STRING" size="256" sumtext="최종등록자ID"/>
- <Column id="lastupdtdt" type="STRING" size="256" sumtext="최종등록일시"/>
- </ColumnInfo>
- </Dataset>
- <Dataset id="ds_main_list_fixasetcd_fixasetcdlist" 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="installplcecd" type="STRING" size="256" sumtext="설치장소"/>
- <Column id="goodflag" type="STRING" size="256" sumtext="물품구분"/>
- <Column id="goodqty" type="STRING" size="256" sumtext="수량"/>
- <Column id="goodflaghngnm" type="STRING" size="256" sumtext="자산한글명"/>
- <Column id="goodflagengnm" type="STRING" size="256" sumtext="자산영문명"/>
- <Column id="goodspec" type="STRING" size="256" sumtext="규격"/>
- <Column id="goodmodel" type="STRING" size="256" sumtext="모델"/>
- <Column id="asetflag_maineqmtflag" type="STRING" size="256" sumtext="자산중요장비구분"/>
- <Column id="prodcmpynm" type="STRING" size="256" sumtext="제조회사명"/>
- <Column id="suplplcenm" type="STRING" size="256" sumtext="거래처명"/>
- <Column id="lrgcd" type="STRING" size="256" sumtext="대분류코드"/>
- <Column id="lrgnm" type="STRING" size="256" sumtext="대분류영"/>
- <Column id="mdlcd" type="STRING" size="256" sumtext="중분류코드"/>
- <Column id="mdlnm" type="STRING" size="256" sumtext="중분류명"/>
- <Column id="smlcd" type="STRING" size="256" sumtext="소분류코드"/>
- <Column id="smlnm" type="STRING" size="256" sumtext="소분류명칭"/>
- <Column id="windd" type="STRING" size="256" sumtext="입고일자"/>
- <Column id="installplcenm" type="STRING" size="256" sumtext="설치장소명"/>
- <Column id="possndd" type="STRING" size="256" sumtext="취득일"/>
- <Column id="possnamt" type="STRING" size="256" sumtext="구입금액"/>
- <Column id="mngtdeptnm" type="STRING" size="256" sumtext="사용부서명"/>
- <Column id="cntrdeptnm" type="STRING" size="256" sumtext="청구부서명"/>
- </ColumnInfo>
- </Dataset>
- <Dataset id="ds_main_list_psgereq_psgereqlist" firefirstcount="0" firenextcount="0" useclientlayout="false" updatecontrol="true" enableevent="true" loadkeymode="keep" loadfiltermode="keep" reversesubsum="false" oncolumnchanged="ds_main_list_psgereq_psgereqlist_oncolumnchanged">
- <ColumnInfo>
- <Column id="instcd" type="STRING" size="256" sumtext="기관번호"/>
- <Column id="reqflag" type="STRING" size="256" sumtext="물품구분"/>
- <Column id="reqdd" type="STRING" size="256" sumtext="청구일자"/>
- <Column id="reqno" type="STRING" size="256" sumtext="청구번호"/>
- <Column id="reqseqno" type="STRING" size="256" sumtext="청구순번"/>
- <Column id="psgedeptcd" type="STRING" size="256" sumtext="경유부서코드"/>
- <Column id="psgedeptnm" type="STRING" size="256" sumtext="경유부서명"/>
- <Column id="psgecmt" type="STRING" size="256" sumtext="경유부서의견"/>
- <Column id="psgedeptaprvyn" type="STRING" size="256" sumtext="경유부서승인여부"/>
- <Column id="psgedeptaprvid" type="STRING" size="256" sumtext="경유부서승인자 id"/>
- <Column id="psgedeptaprvnm" type="STRING" size="256" sumtext="경유부서승인자명"/>
- <Column id="psgedeptaprvdd" type="STRING" size="256" sumtext="경유부서승인일자"/>
- </ColumnInfo>
- </Dataset>
- <Dataset id="ds_send_psgereq" 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="reqflag" type="STRING" size="256"/>
- <Column id="reqdd" type="STRING" size="256"/>
- <Column id="reqno" type="STRING" size="256"/>
- <Column id="reqseqno" type="STRING" size="256"/>
- </ColumnInfo>
- <Rows>
- <Row>
- <Col id="instcd"/>
- <Col id="reqflag"/>
- <Col id="reqdd"/>
- <Col id="reqno"/>
- <Col id="reqseqno"/>
- </Row>
- </Rows>
- </Dataset>
- <Dataset id="ds_init_reqflagpurcarth_reqflagpurcarthlist" firefirstcount="0" firenextcount="0" useclientlayout="false" updatecontrol="true" enableevent="true" loadkeymode="keep" loadfiltermode="keep" reversesubsum="false"/>
- <Dataset id="ds_cmb_deliveprcsflag" 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">3</Col>
- </Row>
- <Row>
- <Col id="label">입고완료</Col>
- <Col id="value">5</Col>
- </Row>
- <Row>
- <Col id="label">강제종결</Col>
- <Col id="value">6</Col>
- </Row>
- <Row>
- <Col id="label">입고완료</Col>
- <Col id="value">7</Col>
- </Row>
- <Row>
- <Col id="label">자체제작</Col>
- <Col id="value">8</Col>
- </Row>
- <Row>
- <Col id="label">재고지급</Col>
- <Col id="value">9</Col>
- </Row>
- <Row>
- <Col id="label">임대</Col>
- <Col id="value">10</Col>
- </Row>
- </Rows>
- </Dataset>
- <Dataset id="ds_init_purcacptflag" firefirstcount="0" firenextcount="0" useclientlayout="false" updatecontrol="true" enableevent="true" loadkeymode="keep" loadfiltermode="keep" reversesubsum="false">
- <label>승인</label>
- <value>Y</value>
- <label>종료</label>
- <value>C</value>
- <label>미승인</label>
- <value>N</value>
- <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">Y</Col>
- </Row>
- <Row>
- <Col id="label">종료</Col>
- <Col id="value">C</Col>
- </Row>
- <Row>
- <Col id="label">미승인</Col>
- <Col id="value">N</Col>
- </Row>
- </Rows>
- <label>승인</label>
- <value>Y</value>
- <label>종료</label>
- <value>C</value>
- <label>미승인</label>
- <value>N</value>
- </Dataset>
- <Dataset id="ds_main_list_mdl_mdllist" firefirstcount="0" firenextcount="0" useclientlayout="false" updatecontrol="true" enableevent="true" loadkeymode="keep" loadfiltermode="keep" reversesubsum="false">
- <ColumnInfo>
- <Column id="mdlcd" type="STRING" size="256" sumtext="중분류코드"/>
- <Column id="mdlnm" type="STRING" size="256" sumtext="중분류명"/>
- <Column id="winacnt" type="STRING" size="256" sumtext="계정코드(입고)"/>
- <Column id="winacntnm" type="STRING" size="256" sumtext="계정코드(입고)명"/>
- <Column id="amtacnt" type="STRING" size="256" sumtext="계정코드(출고)"/>
- <Column id="instcd" type="STRING" size="256" sumtext="기관코드"/>
- <Column id="goodflag" type="STRING" size="256" sumtext="물품구분"/>
- <Column id="lrgcd" type="STRING" size="256" sumtext="대분류코드"/>
- <Column id="fstrgstrid" type="STRING" size="256" sumtext="최초등록자ID"/>
- <Column id="fstrgstdt" type="STRING" size="256" sumtext="최초등록일시"/>
- <Column id="lastupdtrid" type="STRING" size="256" sumtext="최종수정자ID"/>
- <Column id="lastupdtdt" type="STRING" size="256" sumtext="최종수정일시"/>
- </ColumnInfo>
- </Dataset>
- <Dataset id="ds_main_list_sml_smllist" firefirstcount="0" firenextcount="0" useclientlayout="false" updatecontrol="true" enableevent="true" loadkeymode="keep" loadfiltermode="keep" reversesubsum="false">
- <ColumnInfo>
- <Column id="smlcd" type="STRING" size="256" sumtext="중분류코드"/>
- <Column id="smlnm" type="STRING" size="256" sumtext="중분류명"/>
- <Column id="winacnt" type="STRING" size="256" sumtext="계정코드(입고)"/>
- <Column id="winacntnm" type="STRING" size="256" sumtext="계정명(입고)"/>
- <Column id="instcd" type="STRING" size="256" sumtext="기관코드"/>
- <Column id="goodflag" type="STRING" size="256" sumtext="물품구분"/>
- <Column id="lrgcd" type="STRING" size="256" sumtext="대분류코드"/>
- <Column id="mdlcd" type="STRING" size="256" sumtext="중분류코드"/>
- <Column id="fstrgstrid" type="STRING" size="256" sumtext="최초등록자ID"/>
- <Column id="fstrgstdt" type="STRING" size="256" sumtext="최초등록일시"/>
- <Column id="lastupdtrid" type="STRING" size="256" sumtext="최종수정자ID"/>
- <Column id="lastupdtdt" type="STRING" size="256" sumtext="최종수정일시"/>
- </ColumnInfo>
- </Dataset>
- <Dataset id="ds_main_list_goodreq_goodmaxreqno" firefirstcount="0" firenextcount="0" useclientlayout="false" updatecontrol="true" enableevent="true" loadkeymode="keep" loadfiltermode="keep" reversesubsum="false">
- <ColumnInfo>
- <Column id="reqfix" type="STRING" size="256"/>
- </ColumnInfo>
- </Dataset>
- <Dataset id="ds_init_acptflag" 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">N</Col>
- </Row>
- <Row>
- <Col id="label">접수</Col>
- <Col id="value">Y</Col>
- </Row>
- <Row>
- <Col id="label">종료</Col>
- <Col id="value">C</Col>
- </Row>
- </Rows>
- </Dataset>
- <Dataset id="ds_send_fileupcolumn" 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="fileseqno" type="STRING" size="256"/>
- <Column id="reqflag" type="STRING" size="256"/>
- <Column id="reqno" type="STRING" size="256"/>
- <Column id="reqseqno" type="STRING" size="256"/>
- <Column id="reqpsnid" type="STRING" size="256"/>
- <Column id="attfilenm" type="STRING" size="256"/>
- <Column id="attfilepathnm" type="STRING" size="256"/>
- <Column id="reqdeptcd" type="STRING" size="256"/>
- </ColumnInfo>
- <Rows>
- <Row>
- <Col id="instcd"/>
- <Col id="reqdd"/>
- <Col id="fileseqno"/>
- <Col id="reqflag"/>
- <Col id="reqno"/>
- <Col id="reqseqno"/>
- <Col id="reqpsnid"/>
- <Col id="attfilenm"/>
- <Col id="attfilepathnm"/>
- <Col id="reqdeptcd"/>
- </Row>
- </Rows>
- </Dataset>
- <Dataset id="ds_send_fileupcolumn_fileupload" firefirstcount="0" firenextcount="0" useclientlayout="false" updatecontrol="true" enableevent="true" loadkeymode="keep" loadfiltermode="keep" reversesubsum="false">
- <ColumnInfo>
- <Column id="file" type="STRING" size="256"/>
- </ColumnInfo>
- <Rows>
- <Row/>
- </Rows>
- </Dataset>
- <Dataset id="ds_send_fixasetcd" 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="goodflag" type="STRING" size="256"/>
- <Column id="cntrdeptcd" type="STRING" size="256"/>
- </ColumnInfo>
- <Rows>
- <Row>
- <Col id="instcd"/>
- <Col id="goodflag"/>
- <Col id="cntrdeptcd"/>
- </Row>
- </Rows>
- </Dataset>
- <Dataset id="ds_init_main_custlist" firefirstcount="0" firenextcount="0" updatecontrol="true" enableevent="true" loadkeymode="keep" loadfiltermode="keep" reversesubsum="false" useclientlayout="true">
- <ColumnInfo>
- <Column id="installplcecd" type="STRING" size="255"/>
- <Column id="installplcenm" type="STRING" size="255"/>
- <Column id="deptcd" type="STRING" size="255"/>
- <Column id="deptnm" type="STRING" size="255"/>
- </ColumnInfo>
- </Dataset>
- <Dataset id="ds_main_srinfo" firefirstcount="0" firenextcount="0" updatecontrol="true" enableevent="true" loadkeymode="keep" loadfiltermode="keep" reversesubsum="false">
- <ColumnInfo>
- <Column id="pageflag" type="STRING" size="256" sumtext="탭구분"/>
- <Column id="sm" type="STRING" size="256" sumtext="입력상태"/>
- <Column id="reqno" type="STRING" size="256" sumtext="요청번호"/>
- <Column id="reqdd" type="STRING" size="256" sumtext="요청일자"/>
- <Column id="gubun" type="STRING" size="256" sumtext="구분"/>
- <Column id="reqdeptcd" type="STRING" size="256" sumtext="요청부서"/>
- <Column id="reqdeptnm" type="STRING" size="256" sumtext="요청부서이름"/>
- <Column id="reqmanid" type="STRING" size="256" sumtext="요청자ID"/>
- <Column id="reqmannm" type="STRING" size="256" sumtext="요청자이름"/>
- <Column id="reqtelno" type="STRING" size="256" sumtext="요청자전화번호"/>
- <Column id="emgyn" type="STRING" size="256" sumtext="긴급여부"/>
- <Column id="emgrsn" type="STRING" size="256" sumtext="긴급사유"/>
- <Column id="newyn" type="STRING" size="256" sumtext="신규여부"/>
- <Column id="menupos" type="STRING" size="256" sumtext="메뉴위치"/>
- <Column id="deptmngraprvyn" type="STRING" size="256" sumtext="부서장승인여부"/>
- <Column id="deptmngrid" type="STRING" size="256" sumtext="부서장ID"/>
- <Column id="reqtitle" type="STRING" size="256" sumtext="요청제목"/>
- <Column id="reqconts" type="STRING" size="256" sumtext="요청내용"/>
- <Column id="attfilenm" type="STRING" size="256" sumtext="첨부파일명"/>
- <Column id="attfilepath" type="STRING" size="256" sumtext="첨부경로"/>
- <Column id="status" type="STRING" size="256" sumtext="상태"/>
- <Column id="chrgid" type="STRING" size="256" sumtext="담당자ID"/>
- <Column id="chrgtelno" type="STRING" size="256" sumtext="담당자전화번호"/>
- <Column id="reply" type="STRING" size="256" sumtext="답변"/>
- <Column id="eststartdd" type="STRING" size="256" sumtext="착수예정일"/>
- <Column id="estenddd" type="STRING" size="256" sumtext="완료예정일"/>
- <Column id="startdd" type="STRING" size="256" sumtext="착수일"/>
- <Column id="enddd" type="STRING" size="256" sumtext="완료일"/>
- <Column id="progress" type="STRING" size="256" sumtext="진척률"/>
- <Column id="reqgb" type="STRING" size="256" sumtext="요청구분"/>
- <Column id="fileyn" type="STRING" size="256" sumtext="파일유무"/>
- <Column id="devattfilenm" type="STRING" size="256" sumtext="첨부파일명"/>
- <Column id="devattfilepath" type="STRING" size="256" sumtext="첨부경로"/>
- <Column id="devfileyn" type="STRING" size="256" sumtext="파일유무"/>
- <Column id="replyyn" type="STRING" size="256" sumtext="공개유무"/>
- <Column id="devtitle" type="STRING" size="256" sumtext="개발제목"/>
- <Column id="instcd" type="STRING" size="256" sumtext="기관"/>
- <Column id="accauth" type="STRING" size="256" sumtext="접근권한"/>
- <Column id="privyn" type="STRING" size="256" sumtext="공개여부"/>
- <Column id="workcd1" type="STRING" size="256" sumtext="업무분류1"/>
- <Column id="workcd2" type="STRING" size="256" sumtext="업무분류2"/>
- <Column id="workcd3" type="STRING" size="256" sumtext="업무분류3"/>
- <Column id="aprvmsg1" type="STRING" size="256" sumtext="총괄메시지"/>
- <Column id="aprvmsg2" type="STRING" size="256" sumtext="파트장메시지"/>
- <Column id="devconts" type="STRING" size="256" sumtext="개발내용"/>
- <Column id="deptmngraprvchnged" type="STRING" size="256" sumtext="부서장결재변경여부"/>
- <Column id="email" type="STRING" size="256" sumtext="이메일"/>
- <Column id="priority" type="STRING" size="256" sumtext="우선순위"/>
- <Column id="devcnt" type="STRING" size="256" sumtext="총 개발 건수"/>
- <Column id="newdevcnt" type="STRING" size="256" sumtext="신규 개발 건수"/>
- <Column id="mdfydevcnt" type="STRING" size="256" sumtext="수정 개발 건수"/>
- <Column id="statdevcnt" type="STRING" size="256" sumtext="통계 건수"/>
- <Column id="stsstartdd" type="STRING" size="256" sumtext="통계시작일자"/>
- <Column id="stsenddd" type="STRING" size="256" sumtext="통계종료일자"/>
- <Column id="reqgbdetl" type="STRING" size="256" sumtext="인증평가 조항"/>
- <Column id="notiid" type="STRING" size="256" sumtext="완료통보자ID"/>
- <Column id="notidd" type="STRING" size="256" sumtext="완료통보일자"/>
- <Column id="notinm" type="STRING" size="256" sumtext="완료통보자명"/>
- <Column id="rereqgb" type="STRING" size="256" sumtext="재의뢰구분"/>
- <Column id="rereqconts" type="STRING" size="256" sumtext="재의뢰상세내용"/>
- <Column id="gubundetl" type="STRING" size="256" sumtext="상세구분"/>
- <Column id="deptmngrnm" type="STRING" size="256"/>
- </ColumnInfo>
- <Rows>
- <Row/>
- </Rows>
- </Dataset>
- <Dataset id="ds_comreqno" firefirstcount="0" firenextcount="0" useclientlayout="false" updatecontrol="true" enableevent="true" loadkeymode="keep" loadfiltermode="keep" reversesubsum="false">
- <ColumnInfo>
- <Column id="label" type="STRING" size="256"/>
- <Column id="value" type="STRING" size="256"/>
- </ColumnInfo>
- </Dataset>
- <Dataset id="ds_popreqnolist" firefirstcount="0" firenextcount="0" useclientlayout="false" updatecontrol="true" enableevent="true" loadkeymode="keep" loadfiltermode="keep" reversesubsum="false">
- <ColumnInfo>
- <Column id="reqno" type="STRING" size="256"/>
- <Column id="eqreqdd" type="STRING" size="256"/>
- </ColumnInfo>
- </Dataset>
- </Objects>
- <Bind>
- <BindItem id="item0" compid="grp_sea.cmb_instcd_search" propid="value" datasetid="ds_send_goodreq" columnid="instcd"/>
- <BindItem id="item1" compid="grp_sea.ipt_reqfrdd_search" propid="value" datasetid="ds_send_goodreq" columnid="reqfrdd"/>
- <BindItem id="item2" compid="grp_sea.ipt_deptaprvddto_search" propid="value" datasetid="ds_send_goodreq" columnid="deptaprvddto"/>
- <BindItem id="item3" compid="grp_sea.cmb_acptflag_search" propid="value" datasetid="ds_send_goodreq" columnid="acptflag"/>
- <BindItem id="item4" compid="grp_sea.ipt_reqdeptcd_search" propid="value" datasetid="ds_send_goodreq" columnid="reqdeptcd"/>
- <BindItem id="item5" compid="grp_sea.ipt_reqdeptnm_search" propid="value" datasetid="ds_send_goodreq" columnid="reqdeptnm"/>
- <BindItem id="item6" compid="grp_sea.input4" propid="value" datasetid="ds_send_goodreq" columnid="reqfrdd"/>
- <BindItem id="item7" compid="grp_sea.ipt_reqtodd_search" propid="value" datasetid="ds_send_goodreq" columnid="reqtodd"/>
- <BindItem id="item8" compid="grp_sea.cmb_reqflag_search" propid="value" datasetid="ds_send_goodreq" columnid="reqflag"/>
- <BindItem id="item9" compid="grp_sea.ipt_goodflag" propid="value" datasetid="ds_send_lrgcd" columnid="goodflag"/>
- <BindItem id="item10" compid="ipt_suplplcecd" propid="value" datasetid="ds_main_goodreq_goodreqlist" columnid="suplplcecd"/>
- <BindItem id="item11" compid="ipt_prodcmpycd" propid="value" datasetid="ds_main_goodreq_goodreqlist" columnid="prodcmpycd"/>
- <BindItem id="item12" compid="ipt_prodcmpynm" propid="value" datasetid="ds_main_goodreq_goodreqlist" columnid="prodcmpynm"/>
- <BindItem id="item13" compid="ipt_suplplcenm" propid="value" datasetid="ds_main_goodreq_goodreqlist" columnid="suplplcenm"/>
- <BindItem id="item14" compid="cmb_acpttype" propid="value" datasetid="ds_main_goodreq_goodreqlist" columnid="acpttype"/>
- <BindItem id="item15" compid="ipt_bugtexpcamt" propid="value" datasetid="ds_main_goodreq_goodreqlist" columnid="bugtexpcamt"/>
- <BindItem id="item16" compid="cmb_bugtcd" propid="value" datasetid="ds_main_goodreq_goodreqlist" columnid="bugtcd"/>
- <BindItem id="item17" compid="ipt_stdysubjno" propid="value" datasetid="ds_main_goodreq_goodreqlist" columnid="stdysubjno"/>
- <BindItem id="item18" compid="ipt_stdysubjnm" propid="value" datasetid="ds_main_goodreq_goodreqlist" columnid="stdysubjnm"/>
- <BindItem id="item19" compid="opt_reqdeptnm" propid="value" datasetid="ds_main_goodreq_goodreqlist" columnid="reqdeptnm"/>
- <BindItem id="item20" compid="ipt_reqflag" propid="value" datasetid="ds_main_goodreq_goodreqlist" columnid="reqflag"/>
- <BindItem id="item21" compid="ipt_deliveprcsflag" propid="value" datasetid="ds_main_goodreq_goodreqlist" columnid="deliveprcsflag"/>
- <BindItem id="item22" compid="ipt_instcd" propid="value" datasetid="ds_main_goodreq_goodreqlist" columnid="instcd"/>
- <BindItem id="item23" compid="ipt_reqpsnid" propid="value" datasetid="ds_main_goodreq_goodreqlist" columnid="reqpsnid"/>
- <BindItem id="item24" compid="ipt_reqdeptcd" propid="value" datasetid="ds_main_goodreq_goodreqlist" columnid="reqdeptcd"/>
- <BindItem id="item25" compid="ipt_reqdd" propid="value" datasetid="ds_main_goodreq_goodreqlist" columnid="reqdd"/>
- <BindItem id="item26" compid="ipt_reqno" propid="value" datasetid="ds_main_goodreq_goodreqlist" columnid="reqno"/>
- <BindItem id="item27" compid="ipt_acptdd" propid="value" datasetid="ds_main_goodreq_goodreqlist" columnid="acptdd"/>
- <BindItem id="item28" compid="cmb_workflag" propid="value" datasetid="ds_main_goodreq_goodreqlist" columnid="workflag"/>
- <BindItem id="item29" compid="rbo_makeyn" propid="value" datasetid="ds_main_goodreq_goodreqlist" columnid="makeyn"/>
- <BindItem id="item30" compid="ipt_lrgcd" propid="value" datasetid="ds_main_goodreq_goodreqlist" columnid="lrgcd"/>
- <BindItem id="item31" compid="opt_lrgnm" propid="value" datasetid="ds_main_goodreq_goodreqlist" columnid="lrgnm"/>
- <BindItem id="item32" compid="ipt_mdlcd" propid="value" datasetid="ds_main_goodreq_goodreqlist" columnid="mdlcd"/>
- <BindItem id="item33" compid="opt_mdlnm" propid="value" datasetid="ds_main_goodreq_goodreqlist" columnid="mdlnm"/>
- <BindItem id="item34" compid="ipt_fixasetcd" propid="value" datasetid="ds_main_goodreq_goodreqlist" columnid="fixasetcd"/>
- <BindItem id="item35" compid="ipt_studyinstcd" propid="value" datasetid="ds_main_goodreq_goodreqlist" columnid="studyinstcd"/>
- <BindItem id="item36" compid="ipt_reqtel" propid="value" datasetid="ds_main_goodreq_goodreqlist" columnid="reqtel"/>
- <BindItem id="item37" compid="ipt_acptcharid" propid="value" datasetid="ds_main_goodreq_goodreqlist" columnid="acptcharid"/>
- <BindItem id="item38" compid="opt_smlnm" propid="value" datasetid="ds_main_goodreq_goodreqlist" columnid="smlnm"/>
- <BindItem id="item39" compid="ipt_smlcd" propid="value" datasetid="ds_main_goodreq_goodreqlist" columnid="smlcd"/>
- <BindItem id="item40" compid="ipt_goodnm" propid="value" datasetid="ds_main_goodreq_goodreqlist" columnid="goodnm"/>
- <BindItem id="item41" compid="ipt_goodspec" propid="value" datasetid="ds_main_goodreq_goodreqlist" columnid="goodspec"/>
- <BindItem id="item42" compid="ipt_goodmodel" propid="value" datasetid="ds_main_goodreq_goodreqlist" columnid="goodmodel"/>
- <BindItem id="item43" compid="cmb_prodplce" propid="value" datasetid="ds_main_goodreq_goodreqlist" columnid="prodplce"/>
- <BindItem id="item44" compid="ipt_cntrdeptcd" propid="value" datasetid="ds_main_goodreq_goodreqlist" columnid="cntrdeptcd"/>
- <BindItem id="item45" compid="ipt_mngtdeptcd" propid="value" datasetid="ds_main_goodreq_goodreqlist" columnid="mngtdeptcd"/>
- <BindItem id="item46" compid="ipt_installplcecd" propid="value" datasetid="ds_main_goodreq_goodreqlist" columnid="installplcecd"/>
- <BindItem id="item47" compid="ipt_cntrdeptcdnm" propid="value" datasetid="ds_main_goodreq_goodreqlist" columnid="cntrdeptcdnm"/>
- <BindItem id="item48" compid="ipt_installplcenm" propid="value" datasetid="ds_main_goodreq_goodreqlist" columnid="mngtdeptcdnm"/>
- <BindItem id="item49" compid="ipt_mngtdeptcdnm" propid="value" datasetid="ds_main_goodreq_goodreqlist" columnid="installplcenm"/>
- <BindItem id="item50" compid="ipt_attfilepathnm" propid="value" datasetid="ds_main_goodreq_goodreqlist" columnid="attfilenm"/>
- <BindItem id="item51" compid="ipt_cmt" propid="value" datasetid="ds_main_goodreq_goodreqlist" columnid="cmt"/>
- <BindItem id="item52" compid="cmb_acptflag" propid="value" datasetid="ds_main_goodreq_goodreqlist" columnid="acptflag"/>
- <BindItem id="item53" compid="ipt_adjtqty" propid="value" datasetid="ds_main_goodreq_goodreqlist" columnid=""/>
- <BindItem id="item54" compid="ipt_adjtrsn" propid="value" datasetid="ds_main_goodreq_goodreqlist" columnid="adjtrsn"/>
- <BindItem id="item55" compid="ipt_bugtyy" propid="value" datasetid="ds_main_goodreq_goodreqlist" columnid="bugtyy"/>
- <BindItem id="item56" compid="ipt_bugtexecamt" propid="value" datasetid="ds_main_goodreq_goodreqlist" columnid=""/>
- <BindItem id="item57" compid="ipt_remainder" propid="value" datasetid="ds_main_goodreq_goodreqlist" columnid="remainder"/>
- <BindItem id="item58" compid="input1" propid="value" datasetid="ds_main_goodreq_goodreqlist" columnid="reqtel"/>
- <BindItem id="item59" compid="ipt_plceordamt" propid="value" datasetid="ds_main_goodreq_goodreqlist" columnid="plceordamt"/>
- <BindItem id="item60" compid="ipt_wncurncyamt" propid="value" datasetid="ds_main_goodreq_goodreqlist" columnid="wncurncyamt"/>
- <BindItem id="item61" compid="ipt_reqqty" propid="value" datasetid="ds_main_goodreq_goodreqlist" columnid="reqqty"/>
- <BindItem id="item62" compid="cmb_requnit" propid="value" datasetid="ds_main_goodreq_goodreqlist" columnid="requnit"/>
- <BindItem id="item63" compid="grp_sea.ipt_deptaprvddfr_search" propid="value" datasetid="ds_send_goodreq" columnid="deptaprvddfr"/>
- <BindItem id="item64" compid="grp_sea.input2" propid="value" datasetid="ds_send_goodreq" columnid="reqfrdd"/>
- <BindItem id="item66" compid="cmb_comreqno" propid="value" datasetid="ds_main_goodreq_goodreqlist" columnid="comreqno"/>
- </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";
- function SMRSD05100_oninit(obj:Form, e:InitEventInfo)
- {
- frmf_initForm(obj);
- }
- function SMRSD05100_onload(obj:Form, e:LoadEventInfo)
- {
- grdf_initGrid(grd_goodreq);
- grdf_setRowTypeIcon(grd_goodreq, 0);
- grdf_initGrid(swh_select.cse_lrgcd.grd_lrglist);
- grdf_setRowTypeIcon(swh_select.cse_lrgcd.grd_lrglist, 0);
- grdf_initGrid(swh_select.cse_lrgcd.grd_mdllist);
- grdf_setRowTypeIcon(swh_select.cse_lrgcd.grd_mdllist, 0);
- grdf_initGrid(swh_select.cse_lrgcd.grd_smllist);
- grdf_setRowTypeIcon(swh_select.cse_lrgcd.grd_smllist, 0);
- grdf_initGrid(swh_select.cse_fixasetcd.grd_fixasetcdlist);
- grdf_initGrid(grd_psgelist);
- grdf_setRowTypeIcon(grd_psgelist, 0);
-
- fCheckAuth();
- fInitialize();
- }
- function fInitialize()
- {
- ds_send_goodreq.clearData();
- ds_send_goodreq.addRow();
-
- misfComboComCdListMulti("C0048,R0032,R0246,R0035","grp_sea.cmb_instcd_search,cmb_requnit,cmb_workflag,cmb_prodplce");
- rszfComboBugtList("cmb_bugtcd",sysf_getUserInfo("dutplceinstcd"));
- rszfReqFlagComboComCdList(sysf_getUserInfo("userid"),"grp_sea.cmb_reqflag_search");
- misfGridInit(grd_goodreq);
- misfGridInit(grd_psgelist);
- misfGridInit(swh_select.cse_lrgcd.grd_lrglist);
- misfGridInit(swh_select.cse_lrgcd.grd_mdllist);
- misfGridInit(swh_select.cse_lrgcd.grd_mdllist);
- misfGridInit(swh_select.cse_fixasetcd.grd_fixasetcdlist);
- misfMsterDetailSet(grd_goodreq,null, "TRRSD05101" ,"Y");
- misfMsterDetailSet(grd_psgelist,grd_goodreq, "TRRSD11103" ,"Y");
- var curdate = utlf_getCurrentDate();
- var cvtdate = curdate.toDate("YYYYMMDD");
- ds_send_goodreq.setColumn(0, "deptaprvddfr", String(curdate).substr(0,4)+"0101");
- ds_send_goodreq.setColumn(0, "deptaprvddto", String(curdate).substr(0,6)+cvtdate.getMonthDay());
- ds_send_goodreq.setColumn(0, "reqfrdd", String(curdate).substr(0,4)+"0101");
- ds_send_goodreq.setColumn(0, "reqtodd", String(curdate).substr(0,6)+cvtdate.getMonthDay());
-
- grp_sea.cmb_instcd_search.value = sysf_getUserInfo("dutplceinstcd");
- ds_send_goodreq.setColumn(0, "reqflag", "D");
- grp_sea.ipt_goodflag.value = "GE";
- grp_sea.cmb_acptflag_search.value = "N";
- fSetReqAuth();
- grd_goodreq.setCellProperty("Head", 1, "text", 0);
- grp_sea.btn_search.click();
- }
- function fCheckAuth()
- {
- grp_sea.btn_search.enable = frmf_checkAuth("R") ;
- btn_save.enable = frmf_checkAuth("X") ;
- }
- function fSetReqAuth()
- {
- rszfGetReqFlagRurcAuthInfo(grp_sea.cmb_instcd_search.value, grp_sea.cmb_reqflag_search.value, sysf_getUserInfo("dutplcecd"), sysf_getUserInfo("userid"));
-
- if ( ds_init_reqflagpurcarth_reqflagpurcarthlist.getColumn(0, "purcarthyn") == "Y")
- {
- brn_all_check.enable = true;
- btn_purcaprv.enable = true;
- }
- else
- {
- brn_all_check.enable = false;
- btn_purcaprv.enable = false;
- }
- }
- function grp_sea_cmb_instcd_search_onitemchanged(obj:Combo, e:ItemChangeEventInfo)
- {
- rszfComboBugtList(cmb_bugtcd,obj.value);
- grp_sea.btn_search.click();
- }
- function ds_send_goodreq_oncolumnchanged(obj:Dataset, e:DSColChangeEventInfo)
- {
- if(e.columnid == "reqdeptcd")
- {
- var objFocus = this.getFocus();
- grp_sea.ipt_reqdeptcd_search.value = e.newvalue;
- grp_sea.ipt_reqdeptcd_search.setFocus();
- misfSearchDept(grp_sea.ipt_reqdeptnm_search);
- grp_sea.btn_search.click();
- objFocus.setFocus();
- }
- }
- function grp_sea_btn_reqdept_onclick(obj:Button, e:ClickEventInfo)
- {
- var recv_list = "reqdeptcd,reqdeptnm";
- misfOpenPopUpList("02", grp_sea.ipt_reqdeptcd_search,"", recv_list) ;
- grp_sea.btn_search.click();
- }
- function grp_sea_ipt_reqfrdd_search_onchanged(obj:Calendar, e:ChangeEventInfo)
- {
- grp_sea.btn_search.click();
- }
- function grp_sea_ipt_deptaprvddto_search_onchanged(obj:Calendar, e:ChangeEventInfo)
- {
- grp_sea.btn_search.click();
- }
- function grp_sea_input4_onchanged(obj:Calendar, e:ChangeEventInfo)
- {
- grp_sea.btn_search.click();
- }
- function grp_sea_ipt_reqtodd_search_onchanged(obj:Calendar, e:ChangeEventInfo)
- {
- grp_sea.btn_search.click();
- }
- function grp_sea_cmb_acptflag_search_onitemchanged(obj:Combo, e:ItemChangeEventInfo)
- {
- grp_sea.btn_search.click();
- }
- function grp_sea_cmb_reqflag_search_onitemchanged(obj:Combo, e:ItemChangeEventInfo)
- {
- grp_sea.btn_search.click();
- }
- function grp_sea_btn_search_onclick(obj:Button, e:ClickEventInfo)
- {
- if(fCheckRetrieveData(false) == false)return;
-
- ds_send_goodreq.setColumn(0, "retrmaxreqnoyn", "Y");
- misfMsterDetailRetrieve();
- fAfterRetr();
- }
- function fCheckRetrieveData(pmsg)
- {
- if(String(grp_sea.cmb_instcd_search.value).length== 0 )
- {
- if(pmsg == true)
- {
- sysf_messageBox("기관코드를 " ,"C002");
- grp_sea.cmb_instcd_search.setFocus();
- }
- return false;
- }
-
- if(String(grp_sea.cmb_reqflag_search.value).length== 0 )
- {
- if(pmsg == true)
- {
- sysf_messageBox("청구구분을 " ,"C001");
- grp_sea.cmb_reqflag_search.setFocus();
- }
- return false;
- }
-
- if(String(grp_sea.ipt_deptaprvddfr_search.value).length== 0 )
- {
- if(pmsg == true)
- {
- sysf_messageBox("승인시작일자를 " ,"C001");
- grp_sea.ipt_deptaprvddfr_search.setFocus();
- }
- return false;
- }
-
- if(String(grp_sea.ipt_deptaprvddto_search.value).length== 0 )
- {
- if(pmsg == true)
- {
- sysf_messageBox("승인종료일자를 " ,"C001");
- grp_sea.ipt_deptaprvddto_search.setFocus();
- }
- return false;
- }
- return true;
- }
- function fAfterRetr()
- {
- if ( ds_main_list_goodreq_goodreqlist.rowcount > 0)
- {
- ds_main_goodreq_goodreqlist.clearData();
- ds_main_goodreq_goodreqlist.addRow();
- ds_main_list_goodreq_goodreqlist.rowposition = 0;
- ds_main_goodreq_goodreqlist.copyRow(0, ds_main_list_goodreq_goodreqlist, ds_main_list_goodreq_goodreqlist.rowposition);
-
- var sComreqno = utlf_transNullToEmpty(ds_main_list_goodreq_goodreqlist.getColumn(0, "comreqno")).split("\n");
-
- ds_comreqno.clearData();
-
- for( var i=0 ; i<sComreqno.length-1 ; i++ ){
- ds_comreqno.addRow();
- ds_comreqno.setColumn(i, "label", sComreqno[i]);
- ds_comreqno.setColumn(i, "value", sComreqno[i]);
- }
-
- if( ds_comreqno.rowcount > 0 ){
- cmb_comreqno.index = 0;
- btn_print.enable = true;
- }else{
- btn_print.enable = false;
- }
-
- var row = ds_main_list_goodreq_goodreqlist.rowposition;
-
- if (ds_main_list_goodreq_goodreqlist.getColumn(row, "acptflagnm") == "접수" || ds_main_list_goodreq_goodreqlist.getColumn(row, "purcacptflag") == "Y")
- {
- }
- else
- {
- cmb_prodplce.value = "01";
- }
-
- }
- else
- {
- ds_main_goodreq_goodreqlist.clearData();
- ds_main_goodreq_goodreqlist.addRow();
-
- if(ds_main_list_goodreq_goodmaxreqno.getColumn(0, "reqfix") == "Y")
- {
- fSetControlDisabled(true);
- }
- else
- {
- fSetControlDisabled(false);
- }
-
- ipt_reqno.value = ds_main_list_goodreq_goodmaxreqno.getColumn(0, "reqno");
- ds_main_goodreq_goodreqlist.setColumn(0, "instcd", grp_sea.cmb_instcd_search.value);
- }
-
- for(var fRow = 0; fRow < ds_main_list_goodreq_goodreqlist.rowcount; fRow++)
- {
- if(ds_main_list_goodreq_goodreqlist.getColumn(fRow, "deliveprcsflag") == "1" || ds_main_list_goodreq_goodreqlist.getColumn(fRow, "deliveprcsflag") == "9")
- {
- misfSetReadOnlyCol(grd_goodreq, "purcacptflag", false, fRow);
- }
- else
- {
- misfSetReadOnlyCol(grd_goodreq, "purcacptflag", true, fRow);
- }
- }
- }
- function fSetControlDisabled(pDisabled)
- {
- ipt_reqno.enable = !pDisabled;
- }
- function ds_main_list_goodreq_goodreqlist_oncolumnchanged(obj:Dataset, e:DSColChangeEventInfo)
- {
- if(e.columnid == "chk")
- {
- obj.setColumn(e.row, "chk", (e.newvalue == "Y" || e.newvalue == 1) ? "Y" : "N");
- }
-
-
- if(e.columnid == "acptflag")
- {
- if(obj.getColumn(e.row, "acptflag") == "N" )
- {
- obj.setColumn(e.row, "acptdd", "");
- }
- else
- {
- obj.setColumn(e.row, "acptdd", utlf_getCurrentDate());
- }
- }
-
- if(e.columnid == "purcacptflag")
- {
- if (obj.getColumn(e.row, "prcsstat") != "1" || obj.getColumn(e.row, "acptflag") != "Y" )
- {
- sysf_messageBox("청구진행상태 및 접수 상태를 확인하세요 구매승인상태변경을 하실수 ","E001");
-
- if(obj.getColumn(e.row, "purcacptflag") == "Y")
- {
- obj.setColumn(e.row, "purcacptflag", "N");
- obj.updatecontrol = false;
- obj.setRowType(e.row, "");
- obj.updatecontrol = true;
- }
- else
- {
- obj.setColumn(e.row, "purcacptflag" ,"Y");
- obj.updatecontrol = false;
- obj.setRowType(e.row, "");
- obj.updatecontrol = true;
- }
- }
- else
- {
- obj.setColumn(e.row, "purcacptdd" ,utlf_getCurrentDate());
- }
- }
- }
- function grd_goodreq_oncellclick(obj:Grid, e:GridClickEventInfo)
- {
- var row = ds_main_list_goodreq_goodreqlist.rowposition
-
- if( row >= 0)
- {
- misfGridInit(grd_psgelist);
-
- ds_main_goodreq_goodreqlist.clearData();
- ds_main_goodreq_goodreqlist.addRow();
-
- ds_main_goodreq_goodreqlist.copyRow(0, ds_main_list_goodreq_goodreqlist, row);
-
- var sComreqno = utlf_transNullToEmpty(ds_main_list_goodreq_goodreqlist.getColumn(row, "comreqno")).split("\n");
-
- ds_comreqno.clearData();
-
- for( var i=0 ; i<sComreqno.length-1 ; i++ ){
- ds_comreqno.addRow();
- ds_comreqno.setColumn(i, "label", sComreqno[i]);
- ds_comreqno.setColumn(i, "value", sComreqno[i]);
- }
-
- if( ds_comreqno.rowcount > 0 ){
- cmb_comreqno.index = 0;
- btn_print.enable = true;
- }else{
- btn_print.enable = false;
- }
-
- ds_send_psgereq.setColumn(0, "instcd", ds_main_list_goodreq_goodreqlist.getColumn(row, "instcd"));
- ds_send_psgereq.setColumn(0, "reqflag", ds_main_list_goodreq_goodreqlist.getColumn(row, "reqflag"));
- ds_send_psgereq.setColumn(0, "reqdd", ds_main_list_goodreq_goodreqlist.getColumn(row, "reqdd"));
- ds_send_psgereq.setColumn(0, "reqno", ds_main_list_goodreq_goodreqlist.getColumn(row, "reqno"));
- ds_send_psgereq.setColumn(0, "reqseqno", ds_main_list_goodreq_goodreqlist.getColumn(row, "reqseqno"));
-
- misfMsterDetailRetrieve();
-
- fAllControlDisabled("N");
- if (ds_main_list_goodreq_goodreqlist.getColumn(row, "purcacptflag") == "Y" || ds_main_list_goodreq_goodreqlist.getColumn(row, "purcacptflag") == "C")
- {
- fAllControlDisabled("Y");
- }
- }
-
- if(ds_main_list_goodreq_goodreqlist.getColumn(row, "purcacptflag") == "Y" || ds_main_list_goodreq_goodreqlist.getColumn(row, "purcacptflag") == "C")
- {
- button13.enable = false;
- button12.enable = false;
- grd_psgelist.enable = false;
- }
- else
- {
- button13.enable = true;
- button12.enable = true;
- grd_psgelist.enable = true;
- }
-
- if (ds_main_list_goodreq_goodreqlist.getColumn(row, "acptflagnm") == "접수" || ds_main_list_goodreq_goodreqlist.getColumn(row, "purcacptflag") == "Y")
- {
- }
- else
- {
- cmb_prodplce.value = "01";
- }
- }
- function fAllControlDisabled(pDisableYn)
- {
- if(pDisableYn == "Y")
- {
- ipt_goodnm.enable = false;
- ipt_goodspec.enable = false;
- ipt_goodmodel.enable = false;
- cmb_workflag.enable = false;
- rbo_makeyn.enable = false;
- cmb_requnit.enable = false;
- ipt_prodcmpycd.enable = false;
- ipt_reqqty.enable = false;
- cmb_prodplce.enable = false;
- ipt_bugtyy.enable = false;
- ipt_bugtexecamt.enable = false;
- ipt_remainder.enable = false;
- ipt_bugtexpcamt.enable = false;
- ipt_attfilepathnm.enable = true;
-
- ipt_lrgcd.enable = false;
- opt_lrgnm.enable = false;
- ipt_mdlcd.enable = false;
- opt_mdlnm.enable = false;
- ipt_smlcd.enable = false;
- opt_smlnm.enable = false;
- ipt_fixasetcd.enable = false;
- ipt_acptcharid.enable = false;
- ipt_acptdd.enable = false;
-
- cmb_acptflag.enable = false;
- cmb_acpttype.enable = false;
- ipt_adjtqty.enable = false;
- ipt_adjtrsn.enable = false;
-
- ipt_cmt.enable = false;
- cmb_bugtcd.enable = false;
- ipt_stdysubjno.enable = false;
- ipt_suplplcecd.enable = false;
- btn_suplplcecd.enable = false;
- btn_prodcmpycd.enable = false;
-
- btn_installplcecd.enable = false;
- btn_stdysubjnm.enable = false;
-
- ipt_stdysubjnm.enable = false;
- ipt_installplcenm.enable = false;
- ipt_prodcmpynm.enable = false;
- ipt_suplplcenm.enable = false;
-
- ipt_wncurncyamt.enable = false;
- ipt_installplcecd.enable = false;
-
- ipt_cntrdeptcd.enable = false;
- btn_cntrdeptcd.enable = false;
- ipt_cntrdeptcdnm.enable = false;
-
- ipt_mngtdeptcd.enable = false;
- btn_mngtdeptcd.enable = false;
- ipt_mngtdeptcdnm.enable = false;
- }
- else
- {
- ipt_goodnm.enable = true;
- ipt_goodspec.enable = true;
- ipt_goodmodel.enable = true;
- cmb_workflag.enable = true;
- rbo_makeyn.enable = true;
- cmb_requnit.enable = true;
- ipt_prodcmpycd.enable = true;
- ipt_reqqty.enable = false;
- cmb_prodplce.enable = true;
- ipt_installplcecd.enable = true;
- ipt_bugtyy.enable = true;
- ipt_bugtexecamt.enable = true;
- ipt_remainder.enable = true;
- ipt_bugtexpcamt.enable = true;
- ipt_attfilepathnm.enable = true;
- ipt_acptcharid.enable = true;
- ipt_acptdd.enable = true;
-
- cmb_acptflag.enable = true;
- cmb_acpttype.enable = true;
- ipt_adjtqty.enable = true;
- ipt_adjtrsn.enable = true;
-
- ipt_cmt.enable= true;
- cmb_bugtcd.enable = true;
- ipt_stdysubjno.enable = true;
- ipt_suplplcecd.enable = true;
- btn_suplplcecd.enable = true;
- btn_prodcmpycd.enable = true;
-
- btn_installplcecd.enable = true;
- btn_stdysubjnm.enable = true;
-
- ipt_stdysubjnm.enable = true;
- ipt_installplcenm.enable = true;
- ipt_prodcmpynm.enable = true;
- ipt_suplplcenm.enable = true;
-
- ipt_wncurncyamt.enable = true;
- ipt_installplcecd.enable = true;
-
- ipt_cntrdeptcd.enable = true;
- btn_cntrdeptcd.enable = true;
- ipt_cntrdeptcdnm.enable = true;
-
- ipt_mngtdeptcd.enable = true;
- btn_mngtdeptcd.enable = true;
- ipt_mngtdeptcdnm.enable = true;
- }
- }
- function ds_main_goodreq_goodreqlist_oncolumnchanged(obj:Dataset, e:DSColChangeEventInfo)
- {
- if(e.columnid == "suplplcecd")
- {
- var objFocus = this.getFocus();
- ipt_suplplcecd.value = e.newvalue;
- ipt_suplplcecd.setFocus();
-
- if(String(e.newvalue).length == 0)
- {
- ipt_suplplcenm.value = "";
- }
- else
- {
- rszfValidationCheck("TRRSD00221", "reqcustomlist", "instcd,refcond,retrnm", grp_sea.cmb_instcd_search.value + "," + "entrregno," + e.newvalue, "",
- "suplplcecd,suplplcenm",ipt_suplplcecd, "SPRSD00220", "instcd","grp_sea.cmb_instcd_search");
- }
-
- objFocus.setFocus();
- }
- if(e.columnid == "suplplcenm")
- {
- var objFocus = this.getFocus();
- ipt_suplplcenm.value = e.newvalue;
- ipt_suplplcenm.setFocus();
-
- if(String(e.newvalue).length == 0)
- {
- ipt_suplplcecd.value = "";
- }
- else
- {
- rszfValidationCheck("TRRSD00221", "reqcustomlist", "instcd,refcond,retrnm",
- grp_sea.cmb_instcd_search.value + "," + "custnm," + e.newvalue, "", "suplplcecd,suplplcenm",
- ipt_suplplcenm, "SPRSD00220", "instcd","grp_sea.cmb_instcd_search");
- }
-
- objFocus.setFocus();
- }
- if(e.columnid == "prodcmpycd")
- {
- ipt_prodcmpycd.value = e.newvalue;
- ipt_prodcmpycd.setFocus();
-
- if(String(e.newvalue).length == 0)
- {
- ipt_prodcmpynm.value = "";
- }
- else
- {
- rszfValidationCheck("TRRSD00161", "prodcmpylist", "refcond,prodcmpycd",
- "prodcmpycd," + e.newvalue,"","prodcmpycd,prodcmpynm" ,
- ipt_prodcmpycd,"SPRSD00160","","");
- }
-
- ipt_goodmodel.setFocus();
- }
- if(e.columnid == "prodcmpynm")
- {
- var objFocus = this.getFocus();
- ipt_prodcmpynm.value = e.newvalue;
- ipt_prodcmpynm.setFocus();
-
- if(String(e.newvalue).length == 0)
- {
- ipt_prodcmpycd.value = "";
- }
- else
- {
- rszfValidationCheck("TRRSD00161", "prodcmpylist", "refcond,prodcmpynm","prodcmpynm," + e.newvalue, "", "prodcmpycd,prodcmpynm", ipt_prodcmpynm, "SPRSD00160", "","");
- }
-
- objFocus.setFocus();
- }
- if(e.columnid == "cntrdeptcd")
- {
- var objFocus = this.getFocus();
- ipt_cntrdeptcd.value = e.newvalue;
- ipt_cntrdeptcd.setFocus();
-
- if(String(e.newvalue).length == 0)
- {
- ipt_cntrdeptcdnm.value = "";
- }
- else
- {
- rszfValidationCheck("TRRPZ00201", "custlist", "refcond,retrnm,instcd",
- "deptcd," + e.newvalue + "," + grp_sea.cmb_instcd_search.value, "", "cntrdeptcd,cntrdeptcdnm",
- ipt_cntrdeptcd, "SPRPZ00200", "instcd","grp_sea.cmb_instcd_search");
- }
-
- objFocus.setFocus();
- }
- if(e.columnid == "cntrdeptcdnm")
- {
- var objFocus = this.getFocus();
- ipt_cntrdeptcdnm.value = e.newvalue;
- ipt_cntrdeptcdnm.setFocus();
-
- if(String(e.newvalue).length == 0)
- {
- ipt_cntrdeptcd.value = "";
- }
- else
- {
- rszfValidationCheck("TRRPZ00201", "custlist", "refcond,retrnm,instcd",
- "deptnm," + e.newvalue + "," + grp_sea.cmb_instcd_search.value, "", "cntrdeptcd,cntrdeptcdnm",
- ipt_cntrdeptcdnm, "SPRPZ00200", "instcd","grp_sea.cmb_instcd_search");
- }
-
- objFocus.setFocus();
- }
- if(e.columnid == "mngtdeptcd")
- {
- var objFocus = this.getFocus();
- ipt_mngtdeptcd.value = e.newvalue;
- ipt_mngtdeptcd.setFocus();
-
- if(String(e.newvalue).length == 0)
- {
- ipt_installplcenm.value = "";
- }
- else
- {
- rszfValidationCheck("TRRPZ00201", "custlist", "refcond,retrnm,instcd", "deptcd," + e.newvalue+ "," + grp_sea.cmb_instcd_search.value, "", "mngtdeptcd,mngtdeptcdnm",
- ipt_mngtdeptcd, "SPRPZ00200", "instcd","grp_sea.cmb_instcd_search");
- }
-
- objFocus.setFocus();
- }
- if(e.columnid == "mngtdeptcdnm")
- {
- var objFocus = this.getFocus();
- ipt_mngtdeptcdnm.value = e.newvalue;
- ipt_mngtdeptcdnm.setFocus();
-
- if(String(e.newvalue).length == 0)
- {
- ipt_mngtdeptcd.value = "";
- }
- else
- {
- rszfValidationCheck("TRRPZ00201", "custlist", "refcond,retrnm,instcd",
- "deptnm," + e.newvalue+ "," + grp_sea.cmb_instcd_search.value, "", "mngtdeptcd,mngtdeptcdnm",
- ipt_mngtdeptcdnm, "SPRPZ00200", "instcd","grp_sea.cmb_instcd_search");
- }
-
- objFocus.setFocus();
- }
- if(e.columnid == "installplcecd")
- {
- var objFocus = this.getFocus();
- ipt_installplcecd.value = e.newvalue;
- ipt_installplcecd.setFocus();
-
- if(String(e.newvalue).length == 0)
- {
- ipt_mngtdeptcdnm.value = "";
- }
- else
- {
- rszfValidationCheck("TRRAC90701", "custlist", "refcond,retrnm", "deptcd," + e.newvalue, "", "installplcecd,installplcenm",ipt_installplcecd, "PPRAC00700", "","");
- }
-
- objFocus.setFocus();
- }
- if(e.columnid == "installplcenm")
- {
- var objFocus = this.getFocus();
- ipt_installplcenm.value = e.newvalue;
- ipt_installplcenm.setFocus();
-
- if(String(e.newvalue).length == 0)
- {
- ipt_installplcecd.value = "";
- }
- else
- {
- rszfValidationCheck("TRRAC90701", "custlist", "refcond,retrnm", "deptnm," + e.newvalue, "", "installplcecd,installplcenm",ipt_installplcenm, "PPRAC00700", "","");
- }
-
- objFocus.setFocus();
- }
- if(e.columnid == "cmt")
- {
- if(String(e.newvalue).length == 100)
- {
- ipt_cmt.setFocus();
- sysf_messageBox("입력 가능한 글자수 초과","I009");
- }
- }
- if(e.columnid == "adjtrsn")
- {
- if(String(e.newvalue).length == 100)
- {
- ipt_adjtrsn.setFocus();
- sysf_messageBox("입력 가능한 글자수 초과","I009");
- }
- }
- }
- function btn_suplplcecd_onclick(obj:Button, e:ClickEventInfo)
- {
- rszfOpenPopUpListByWndName(ipt_suplplcecd,"","suplplcecd,suplplcenm","SPRSD00220","instcd","grp_sea.cmb_instcd_search");
- }
- function btn_prodcmpycd_onclick(obj:Button, e:ClickEventInfo)
- {
- rszfOpenPopUpListByWndName(ipt_prodcmpycd,"","prodcmpycd,prodcmpynm","SPRSD00160","","");
- }
- function cmb_acpttype_onitemchanged(obj:Combo, e:ItemChangeEventInfo)
- {
- if (cmb_acptflag.value == "N")
- {
- ipt_acptcharid.value = "";
- ipt_acptdd.value = "";
- ipt_adjtqty.value = 0;
- ipt_adjtrsn.value = "";
- }
- else if (cmb_acptflag.value == "Y")
- {
- ipt_acptcharid.value = sysf_getUserInfo("userid");
- ipt_acptdd.value = sysf_getCurrentDate();
- ipt_adjtqty.value = ipt_reqqty.value;
- }
- else if (cmb_acptflag.value == "C")
- {
- ipt_acptcharid.value = sysf_getUserInfo("userid");
- ipt_acptdd.value = utlf_getCurrentDate();
- ipt_adjtqty.value = 0;
- }
-
- if ( obj.value == "1")
- {
- ipt_deliveprcsflag.value = "1";
- }
- else if ( obj.value == "2")
- {
- ipt_deliveprcsflag.value = "8";
- }
- else if ( obj.value == "3")
- {
- ipt_deliveprcsflag.value = "9";
- }
- else if ( obj.value == "4")
- {
- ipt_deliveprcsflag.value = "10";
- }
- }
- function btn_cntrdeptcd_onclick(obj:Button, e:ClickEventInfo)
- {
- var recv_list = "cntrdeptcd,cntrdeptcdnm";
- misfOpenPopUpList("02", ipt_cntrdeptcd,"", recv_list) ;
- }
- function btn_mngtdeptcd_onclick(obj:Button, e:ClickEventInfo)
- {
- var recv_list = "mngtdeptcd,mngtdeptcdnm";
- misfOpenPopUpList("02", ipt_mngtdeptcd,"", recv_list) ;
- }
- function btn_installplcecd_onclick(obj:Button, e:ClickEventInfo)
- {
- var recv_list = "installplcecd,installplcenm";
- misfOpenPopUpList("19", ipt_installplcecd,"", recv_list) ;
- }
- function btn_stdysubjnm_onclick(obj:Button, e:ClickEventInfo)
- {
- rszfOpenPopUpListByWndName(ipt_stdysubjno,"","stdysubjno,stdysubjnm","SPRSD00260","instcd","grp_sea.cmb_instcd_search");
- }
- function cmb_acptflag_onitemchanged(obj:Combo, e:ItemChangeEventInfo)
- {
- if (obj.value == "N")
- {
- ipt_acptcharid.value = "";
- ipt_acptdd.value = "";
- ipt_adjtqty.value = "0";
- ipt_adjtrsn.value = "";
- cmb_acpttype.value = "";
- }
- else if (obj.value == "Y")
- {
- ipt_acptcharid.value = sysf_getUserInfo("userid");
- ipt_acptdd.value = utlf_getCurrentDate();
- ipt_adjtqty.value = ipt_reqqty.value;
- }
- else if (obj.value == "C")
- {
- ipt_acptcharid.value = sysf_getUserInfo("userid");
- ipt_acptdd.value = utlf_getCurrentDate();
- ipt_adjtqty.value = 0;
- cmb_acpttype.value = "";
- }
- }
- function btn_downfile_onclick(obj:Button, e:ClickEventInfo)
- {
- if ( String(ipt_attfilepathnm.value).length <= 0)
- {
- sysf_messageBox( "첨부파일이 존재하지 않아 첨부파일을 다운로드 할수" , "I004" );
- return;
- }
- fAttfileDown();
- }
- function fAttfileDown()
- {
- var row = ds_main_list_goodreq_goodreqlist.rowposition
- ds_send_fileupcolumn.setColumn(0, "instcd", ds_main_list_goodreq_goodreqlist.getColumn(row, "instcd"));
- ds_send_fileupcolumn.setColumn(0, "reqdd", ds_main_list_goodreq_goodreqlist.getColumn(row, "reqdd"));
- ds_send_fileupcolumn.setColumn(0, "fileseqno", ds_main_goodreq_goodreqlist.getColumn(0, "attfilepathnm"));
- ds_send_fileupcolumn.setColumn(0, "fileseqno", ds_main_goodreq_goodreqlist.getColumn(0, "attfilenm"));
- ds_send_fileupcolumn.setColumn(0, "reqflag", ds_main_list_goodreq_goodreqlist.getColumn(row, "reqflag"));
- ds_send_fileupcolumn.setColumn(0, "reqno", ds_main_list_goodreq_goodreqlist.getColumn(row, "reqno"));
- ds_send_fileupcolumn.setColumn(0, "reqseqno", ds_main_list_goodreq_goodreqlist.getColumn(row, "reqseqno"));
- ds_send_fileupcolumn.setColumn(0, "reqpsnid", ds_main_list_goodreq_goodreqlist.getColumn(row, "reqpsnid"));
- ds_send_fileupcolumn.setColumn(0, "reqdeptcd", ds_main_list_goodreq_goodreqlist.getColumn(row, "reqdeptcd"));
- ds_send_fileupcolumn.setColumn(0, "attfilenm", ds_main_goodreq_goodreqlist.getColumn(0, "attfilenm"));
- ds_send_fileupcolumn.setColumn(0, "attfilepathnm", ds_send_fileupcolumn_fileupload.getColumn(0, "file"));
-
-
- rszfOpenPopUpListByWndName(grd_goodreq,"","","SMRSD00420","instcd,reqdd,reqflag,reqno,reqseqno,reqpsnid,reqdeptcd,attfilepathnm"
- ,"instcd,reqdd,reqflag,reqno,reqseqno,reqpsnid,reqdeptcd,attfilepathnm", "Y");
- grp_sea.btn_search.click();
- }
-
- function swh_select_cse_lrgcd_grd_lrglist_oncellclick(obj:Grid, e:GridClickEventInfo)
- {
- ds_send_lrgcd.setColumn(0, "lrgcd", ds_main_list_lrg_lrglist.getColumn(ds_main_list_lrg_lrglist.rowposition, "lrgcd"));
-
- var oParam = {};
- oParam.id = "TRRSD11105";
- oParam.service = "purcbaseapp.GoodCdMngt";
- oParam.method = "reqGetMiddleCodeList";
- oParam.inds = "req=ds_send_lrgcd";
- oParam.outds = "ds_main_list_mdl_mdllist=mdllist";
- oParam.async = false;
- //oParam.callback = "cf_TRRSD11105";
- tranf_submit(oParam);
-
- if(ds_main_list_mdl_mdllist.rowcount > 0)
- {
- ds_main_list_mdl_mdllist.rowposition = 0;
- }
- }
- function swh_select_cse_lrgcd_grd_lrglist_oncelldblclick(obj:Grid, e:GridClickEventInfo)
- {
- if(ds_main_list_goodreq_goodreqlist.getColumn(ds_main_list_goodreq_goodreqlist.rowposition, "purcacptflag") == "Y" || ds_main_list_goodreq_goodreqlist.getColumn(ds_main_list_goodreq_goodreqlist.rowposition, "purcacptflag") == "C")
- {
- }
- else
- {
- fMovecd("grd_lrglist");
- }
- }
- function fMovecd(pgrid_name)
- {
- if(String(cmb_workflag.value).length == 0)
- {
- sysf_messageBox("입력오류 " ,"E008");
- return;
- }
- else if(ipt_deliveprcsflag.value != "1")
- {
- sysf_messageBox("'청구'진행상태를 " ,"E003");
- return;
- }
- if(swh_select.tabindex == 0)
- {
- if (pgrid_name == "grd_smllist")
- {
- if (ds_main_list_sml_smllist.rowposition > -1)
- {
- ipt_lrgcd.value = ds_main_list_lrg_lrglist.getColumn(ds_main_list_lrg_lrglist.rowposition, "lrgcd");
- opt_lrgnm.value = ds_main_list_lrg_lrglist.getColumn(ds_main_list_lrg_lrglist.rowposition, "lrgnm");
-
- ipt_mdlcd.value = ds_main_list_mdl_mdllist.getColumn(ds_main_list_mdl_mdllist.rowposition, "mdlcd");
- opt_mdlnm.value = ds_main_list_mdl_mdllist.getColumn(ds_main_list_mdl_mdllist.rowposition, "mdlnm");
-
- ipt_smlcd.value = ds_main_list_sml_smllist.getColumn(ds_main_list_sml_smllist.rowposition, "smlcd");
- opt_smlnm.value = ds_main_list_sml_smllist.getColumn(ds_main_list_sml_smllist.rowposition, "smlnm");
-
- ipt_goodnm.value = ds_main_list_mdl_mdllist.getColumn(ds_main_list_mdl_mdllist.rowposition, "mdlnm") + " / "+ ds_main_list_sml_smllist.getColumn(ds_main_list_sml_smllist.rowposition, "smlnm");
- }
- }
- else if(pgrid_name == "grd_mdllist")
- {
- if (ds_main_list_mdl_mdllist.rowposition > -1)
- {
- ipt_lrgcd.value = ds_main_list_lrg_lrglist.getColumn(ds_main_list_lrg_lrglist.rowposition, "lrgcd");
- opt_lrgnm.value = ds_main_list_lrg_lrglist.getColumn(ds_main_list_lrg_lrglist.rowposition, "lrgnm");
-
- ipt_mdlcd.value = ds_main_list_mdl_mdllist.getColumn(ds_main_list_mdl_mdllist.rowposition, "mdlcd");
- opt_mdlnm.value = ds_main_list_mdl_mdllist.getColumn(ds_main_list_mdl_mdllist.rowposition, "mdlnm");
-
- ipt_smlcd.value = "";
- opt_smlnm.value = "";
-
- ipt_goodnm.value = ds_main_list_mdl_mdllist.getColumn(ds_main_list_mdl_mdllist.rowposition, "mdlnm");
- }
- }
- else if(pgrid_name == "grd_lrglist")
- {
- if (ds_main_list_mdl_mdllist.rowposition > -1)
- {
- ipt_lrgcd.value = ds_main_list_lrg_lrglist.getColumn(ds_main_list_lrg_lrglist.rowposition, "lrgcd");
- opt_lrgnm.value = ds_main_list_lrg_lrglist.getColumn(ds_main_list_lrg_lrglist.rowposition, "lrgnm");
-
- ipt_mdlcd.value = ""
- opt_mdlnm.value = ""
-
- ipt_smlcd.value = "";
- opt_smlnm.value = "";
- }
- }
- }
- else
- {
- if (ds_main_list_fixasetcd_fixasetcdlist.rowposition > -1)
- {
- ipt_lrgcd.value = ds_main_list_fixasetcd_fixasetcdlist.getColumn(ds_main_list_fixasetcd_fixasetcdlist.rowposition, "lrgcd");
- opt_lrgnm.value = ds_main_list_fixasetcd_fixasetcdlist.getColumn(ds_main_list_fixasetcd_fixasetcdlist.rowposition, "lrgnm");
- ipt_mdlcd.value = ds_main_list_fixasetcd_fixasetcdlist.getColumn(ds_main_list_fixasetcd_fixasetcdlist.rowposition, "mdlcd");
- opt_mdlnm.value = ds_main_list_fixasetcd_fixasetcdlist.getColumn(ds_main_list_fixasetcd_fixasetcdlist.rowposition, "mdlnm");
- ipt_smlcd.value = ds_main_list_fixasetcd_fixasetcdlist.getColumn(ds_main_list_fixasetcd_fixasetcdlist.rowposition, "smlcd");
- opt_smlnm.value = ds_main_list_fixasetcd_fixasetcdlist.getColumn(ds_main_list_fixasetcd_fixasetcdlist.rowposition, "smlnm");
-
- ipt_fixasetcd.value = ds_main_list_fixasetcd_fixasetcdlist.getColumn(ds_main_list_fixasetcd_fixasetcdlist.rowposition, "fixasetcd");
- ipt_goodnm.value = ds_main_list_fixasetcd_fixasetcdlist.getColumn(ds_main_list_fixasetcd_fixasetcdlist.rowposition, "goodflaghngnm");
- ipt_goodspec.value = ds_main_list_fixasetcd_fixasetcdlist.getColumn(ds_main_list_fixasetcd_fixasetcdlist.rowposition, "goodspec");
- ipt_goodmodel.value = ds_main_list_fixasetcd_fixasetcdlist.getColumn(ds_main_list_fixasetcd_fixasetcdlist.rowposition, "goodmodel");
- }
- }
- }
- function swh_select_cse_lrgcd_grd_mdllist_oncellclick(obj:Grid, e:GridClickEventInfo)
- {
- ds_send_lrgcd.setColumn(0, "mdlcd", ds_main_list_mdl_mdllist.getColumn(ds_main_list_mdl_mdllist.rowposition, "mdlcd"));
-
- var oParam = {};
- oParam.id = "TRRSD11106";
- oParam.service = "purcbaseapp.GoodCdMngt";
- oParam.method = "reqGetSmallCodeList";
- oParam.inds = "req=ds_send_lrgcd";
- oParam.outds = "ds_main_list_sml_smllist=smllist";
- oParam.async = false;
- //oParam.callback = "cf_TRRSD11106";
- tranf_submit(oParam);
-
- ds_main_list_sml_smllist.rowposition = -1;
- }
- function swh_select_cse_lrgcd_grd_mdllist_oncelldblclick(obj:Grid, e:GridClickEventInfo)
- {
- if(ds_main_list_goodreq_goodreqlist.getColumn(ds_main_list_goodreq_goodreqlist.rowposition, "purcacptflag") == "Y" || ds_main_list_goodreq_goodreqlist.getColumn(ds_main_list_goodreq_goodreqlist.rowposition, "purcacptflag") == "C")
- {
- }
- else
- {
- fMovecd("grd_mdllist");
- }
- }
- function swh_select_cse_lrgcd_grd_smllist_oncelldblclick(obj:Grid, e:GridClickEventInfo)
- {
- if(ds_main_list_goodreq_goodreqlist.getColumn(ds_main_list_goodreq_goodreqlist.rowposition, "purcacptflag") == "Y" || ds_main_list_goodreq_goodreqlist.getColumn(ds_main_list_goodreq_goodreqlist.rowposition, "purcacptflag") == "C")
- {
- }
- else
- {
- fMovecd("grd_smllist");
- }
- }
- function btn_search_cd_onclick(obj:Button, e:ClickEventInfo)
- {
- if(swh_select.tabindex == 0)
- {
- misfGridInit(swh_select.cse_lrgcd.grd_lrglist);
- misfGridInit(swh_select.cse_lrgcd.grd_mdllist);
- misfGridInit(swh_select.cse_lrgcd.grd_smllist);
- ds_send_lrgcd.setColumn(0, "goodflag", grp_sea.ipt_goodflag.value);
- ds_send_lrgcd.setColumn(0, "instcd", grp_sea.cmb_instcd_search.value);
- var oParam = {};
- oParam.id = "TRRSD11104";
- oParam.service = "purcbaseapp.GoodCdMngt";
- oParam.method = "reqGetLargeCodeList";
- oParam.inds = "req=ds_send_lrgcd";
- oParam.outds = "ds_main_list_lrg_lrglist=lrglist";
- oParam.async = false;
- //oParam.callback = "cf_TRRSD11104";
- tranf_submit(oParam);
- if(ds_main_list_lrg_lrglist.rowcount > 0)
- {
- ds_main_list_lrg_lrglist.rowposition = 0;
- }
- swh_select_cse_lrgcd_grd_lrglist_oncellclick();
- }
- else
- {
- misfGridInit(swh_select.cse_fixasetcd.grd_fixasetcdlist);
- ds_send_fixasetcd.setColumn(0, "goodflag", grp_sea.ipt_goodflag.value);
- ds_send_fixasetcd.setColumn(0, "instcd", grp_sea.cmb_instcd_search.value);
- ds_send_fixasetcd.setColumn(0, "cntrdeptcd", ipt_reqdeptcd.value);
-
- var oParam = {};
- oParam.id = "TRRFC00201";
- oParam.service = "purcbaseapp.PurcBaseMngt";
- oParam.method = "reqGetFixAsetcdByCond";
- oParam.inds = "req=ds_send_fixasetcd";
- oParam.outds = "ds_main_list_fixasetcd_fixasetcdlist=fixasetcdlist";
- oParam.async = false;
- //oParam.callback = "cf_TRRFC00201";
- tranf_submit(oParam);
- }
- }
- function swh_select_cse_fixasetcd_grd_fixasetcdlist_oncelldblclick(obj:Grid, e:GridClickEventInfo)
- {
- if(ds_main_list_goodreq_goodreqlist.getColumn(ds_main_list_goodreq_goodreqlist.rowposition, "purcacptflag") == "Y" || ds_main_list_goodreq_goodreqlist.getColumn(ds_main_list_goodreq_goodreqlist.rowposition, "purcacptflag") == "C")
- {
- }
- else
- {
- fMovecd("grd_fixasetcdlist");
- }
- }
- function grd_psgelist_onexpanddown(obj:Grid, e:GridMouseEventInfo)
- {
- var recv_list = "psgedeptcd,psgedeptnm";
- misfOpenPopUpList("02", grd_psgelist,"",recv_list);
- }
- function ds_main_list_psgereq_psgereqlist_oncolumnchanged(obj:Dataset, e:DSColChangeEventInfo)
- {
- if (e.columnid == "psgedeptcd")
- {
- var recv_list = "psgedeptcd,psgedeptnm";
- misfValidationCheck("02", "", recv_list );
- }
- }
- function button13_onclick(obj:Button, e:ClickEventInfo)
- {
- if(ds_main_list_goodreq_goodreqlist.rowcount > 0) misfGridIUD(grd_psgelist, "A");
- }
- function button12_onclick(obj:Button, e:ClickEventInfo)
- {
- if(ds_main_list_psgereq_psgereqlist.getColumn(ds_main_list_psgereq_psgereqlist.rowposition, "psgedeptaprvyn") == "Y")
- {
- sysf_messageBox("경유부서에서 접수된건입니다! 삭제 할수 " ,"I004");
- return;
- }
- misfGridIUD(grd_psgelist, "D");
- }
- function btn_excel_onclick(obj:Button, e:ClickEventInfo)
- {
- if( ds_main_list_goodreq_goodreqlist.rowcount > 0)
- {
- var fileName = "비품청구내역_" + utlf_getCurrentDate();
- grdf_exportExcel(grd_goodreq, fileName, "Sheet", "true", "", "");
- }
- else
- {
- sysf_messageBox("저장 데이터가","I004");
- }
- }
- function brn_all_check_onclick(obj:Button, e:ClickEventInfo)
- {
- fSettingPurcRece();
- }
- function fSettingPurcRece ()
- {
- for(var liRow = 0; liRow < ds_main_list_goodreq_goodreqlist.rowcount; liRow++)
- {
- if (ds_main_list_goodreq_goodreqlist.getColumn(liRow, "prcsstat") == "1" )
- {
- if(ds_main_list_goodreq_goodreqlist.getColumn(liRow, "acptflag") == "Y")
- {
- if(ds_main_list_goodreq_goodreqlist.getColumn(liRow, "purcacptflag") == "Y")
- {
- ds_main_list_goodreq_goodreqlist.setColumn(liRow, "purcacptflag", "N");
- ds_main_list_goodreq_goodreqlist.setColumn(liRow, "purcacpdd", "");
- }
- else if(ds_main_list_goodreq_goodreqlist.getColumn(liRow, "purcacptflag") != "Y" || ds_main_list_goodreq_goodreqlist.getColumn(liRow, "purcacptflag") != "C")
- {
- ds_main_list_goodreq_goodreqlist.setColumn(liRow, "purcacptflag", "Y");
- ds_main_list_goodreq_goodreqlist.setColumn(liRow, "purcacptdd", utlf_getCurrentDate());
- }
- }
- }
- }
- }
- function btn_purcaprv_onclick(obj:Button, e:ClickEventInfo)
- {
- var updtdata = grdf_getGridUpdateData(grd_goodreq).rowcount;
- if( updtdata != 0)
- {
- ds_main_list_goodreq_goodreqlist.updatecontrol = false;
- dsf_setDefaultVal(ds_main_list_goodreq_goodreqlist, "bugtexpcamt:0,reqqty:0,adjtqty:0,deliveqty:0");
- ds_main_list_goodreq_goodreqlist.updatecontrol = true;
-
- var oParam = {};
- oParam.id = "TXRSD11101";
- oParam.service = "reqapp.ReqMngt";
- oParam.method = "reqExeFixtrsReq";
- oParam.inds = "req=ds_main_list_goodreq_goodreqlist:u psgereqlist=ds_main_list_psgereq_psgereqlist:u";
- oParam.outds = "";
- oParam.async = false;
- oParam.callback = "cf_TXRSD11101";
- tranf_submit(oParam);
- }
- }
- function cf_TXRSD11101(sSvcId, nErrorCode, sErrorMsg)
- {
- if(nErrorCode < 0) return;
- else grp_sea.btn_search.click();
- }
- function button46_onclick(obj:Button, e:ClickEventInfo)
- {
- fInitialize();
- }
- function fCheckSaveData()
- {
- if(String(grp_sea.cmb_instcd_search.value).length== 0 )
- {
- sysf_messageBox("기관코드를 " ,"C002");
- grp_sea.cmb_instcd_search.setFocus();
- return false;
- }
- if(String(grp_sea.cmb_reqflag_search.value).length== 0 )
- {
- sysf_messageBox("청구구분을 " ,"C001");
- grp_sea.cmb_reqflag_search.setFocus();
- return false;
- }
- if(String(grp_sea.ipt_reqfrdd_search.value).length== 0 )
- {
- sysf_messageBox("청구시작일자를 " ,"C001");
- grp_sea.ipt_reqfrdd_search.setFocus();
- return false;
- }
-
- if(String(grp_sea.ipt_reqtodd_search.value).length== 0 )
- {
- sysf_messageBox("청구끝일자를 " ,"C001");
- grp_sea.ipt_reqtodd_search.setFocus();
- return false;
- }
- if(String(ipt_goodnm.value).length== 0 )
- {
- sysf_messageBox("물품명을 " ,"C001");
- ipt_goodnm.setFocus();
- return false;
- }
-
- if(String(ipt_installplcecd.value).length== 0 )
- {
- sysf_messageBox("설치장소를 " ,"C001");
- ipt_installplcecd.setFocus();
- return false;
- }
- if(String(ipt_reqqty.value).length== 0 )
- {
- sysf_messageBox("청구수량을 " ,"C001");
- ipt_reqqty.setFocus();
- return false;
- }
- if(String(cmb_requnit.value).length== 0 )
- {
- sysf_messageBox("청구단위를 " ,"C001");
- cmb_requnit.setFocus();
- return false;
- }
- if(String(cmb_workflag.value).length== 0 )
- {
- sysf_messageBox("청구사유를 " ,"C001");
- cmb_workflag.setFocus();
- return false;
- }
- if(String(ipt_lrgcd.value).length== 0 )
- {
- sysf_messageBox("대분류코드를 " ,"C001");
- ipt_lrgcd.setFocus();
- return false;
- }
- return true;
- }
- function btn_save_onclick(obj:Button, e:ClickEventInfo)
- {
- if ( cmb_acpttype.value == "2" || cmb_acpttype.value == "3" || cmb_acptflag.value == "C" || cmb_acpttype.value == "4" )
- {
- }
- else
- {
- if(fCheckSaveData() == false)return;
- }
- if ( ds_main_list_goodreq_goodreqlist.rowcount == 0)
- {
- misfGridInit(grd_goodreq);
- misfGridIUD(grd_goodreq, "A");
- }
- misfGridRowStatusChange(grd_goodreq,"ds_main_list_goodreq_goodreqlist","ds_main_goodreq_goodreqlist");
- ds_main_list_goodreq_goodreqlist.updatecontrol = false;
- dsf_setDefaultVal(ds_main_list_goodreq_goodreqlist, "bugtexpcamt:0,reqqty:0,adjtqty:0,deliveqty:0");
- ds_main_list_goodreq_goodreqlist.updatecontrol = true;
-
- var oParam = {};
- oParam.id = "TXRSD11101";
- oParam.service = "reqapp.ReqMngt";
- oParam.method = "reqExeFixtrsReq";
- oParam.inds = "req=ds_main_list_goodreq_goodreqlist:u psgereqlist=ds_main_list_psgereq_psgereqlist:u popreq=ds_popreqnolist:u";
- oParam.outds = "";
- oParam.async = false;
- oParam.callback = "cf_TXRSD11101";
- tranf_submit(oParam);
- }
- function btn_prt_onclick(obj:Button, e:ClickEventInfo)
- {
- var Cnt = ds_main_list_goodreq_goodreqlist.rowcount;
-
- for(var i = 0; i < Cnt; i++)
- {
- if(ds_main_list_goodreq_goodreqlist.getColumn(i, "chk") == "Y")
- {
- if (sysf_getUserInfo("dutplceinstcd") == "031")
- {
- var checkID = frmf_getMenuParam().split(",");
- var checkFlag = false;
-
- for(var k = 0; k < checkID.length; k++)
- {
- if(sysf_getUserInfo("userid") == checkID[k]) checkFlag = true;
- }
-
- if (sysf_getUserInfo("userid") == 'MIS'|| checkFlag)
- {
- ds_main_goodreq_goodreqlist.copyRow(0, ds_main_list_goodreq_goodreqlist, i);
-
- var objDOM = rptf_createDOM();
- rptf_setNodeListToDOM(objDOM, "/root/main/goodreq/goodreqlist", ds_main_goodreq_goodreqlist);
- var objParam = new Object();
- objParam.xml_data_XML1 = objDOM.documentElement.source;
- var option = "";
- rptf_exeReportPreview30(["RPRSD05101"],[objParam], option);
- }
- else
- {
- sysf_messageBox("출력 ","E002");
- }
- }
- else
- {
- ds_main_goodreq_goodreqlist.copyRow(0, ds_main_list_goodreq_goodreqlist, i);
-
- var objDOM = rptf_createDOM();
- rptf_setNodeListToDOM(objDOM, "/root/main/goodreq/goodreqlist", ds_main_goodreq_goodreqlist);
- var objParam = new Object();
- objParam.xml_data_XML1 = objDOM.documentElement.source;
- var option = "";
- rptf_exeReportPreview30(["RPRSD05101"],[objParam], option);
- }
- }
- }
- }
- function btn_prta_onclick(obj:Button, e:ClickEventInfo)
- {
- var Cnt = ds_main_list_goodreq_goodreqlist.rowcount;
-
- for(var i = 0; i < Cnt; i++)
- {
- if(ds_main_list_goodreq_goodreqlist.getColumn(i, "chk") == "Y")
- {
- if (sysf_getUserInfo("dutplceinstcd") =='031')
- {
- var checkID = frmf_getMenuParam().split(",");
- var checkFlag = false;
-
- for(var k = 0 ; k < checkID.length; k++)
- {
- if(sysf_getUserInfo("userid") == checkID[k]) checkFlag = true;
- }
- if (sysf_getUserInfo("userid") == 'MIS'|| checkFlag)
- {
- ds_main_goodreq_goodreqlist.copyRow(0, ds_main_list_goodreq_goodreqlist, i);
-
- var objDOM = rptf_createDOM();
- rptf_setNodeListToDOM(objDOM, "/root/main/goodreq/goodreqlist", ds_main_goodreq_goodreqlist);
- var objParam = new Object();
- objParam.xml_data_XML1 = objDOM.documentElement.source;
- var option = "open=1;save=1;directprint=1;printdialog=0;print=1;zoom=0;";
- rptf_exeReportPreview30(["RPRSD05101"],[objParam], option);
- }
- else
- {
- sysf_messageBox("출력 ","E002");
- }
- }
- else
- {
- ds_main_goodreq_goodreqlist.copyRow(0, ds_main_list_goodreq_goodreqlist, i);
-
- var objDOM = rptf_createDOM();
- rptf_setNodeListToDOM(objDOM, "/root/main/goodreq/goodreqlist", ds_main_goodreq_goodreqlist);
- var objParam = new Object();
- objParam.xml_data_XML1 = objDOM.documentElement.source;
- var option = "open=1;save=1;directprint=1;printdialog=0;print=1;zoom=0;";
- rptf_exeReportPreview30(["RPRSD05101"],[objParam], option);
- }
- }
- }
- }
- function grp_sea_ipt_reqdeptcd_search_onkeydown(obj:Edit, e:KeyEventInfo)
- {
- if( e.keycode == 13 ){
- obj.updateToDataset();
- }
- }
- function ipt_installplcecd_onkeydown(obj:Edit, e:KeyEventInfo)
- {
- if( e.keycode == 13 ){
- obj.updateToDataset();
- }
- }
- function btn_print_onclick(obj:Button, e:ClickEventInfo)
- {
- var sTemp = ds_main_goodreq_goodreqlist.getColumn(0, "reqno");
-
- for( var i=0 ; i<ds_comreqno.rowcount ; i++ ){
- ds_main_goodreq_goodreqlist.setColumn(0, "reqno", ds_comreqno.getColumn(i, "value"));
-
- ds_main_srinfo.clearData();
-
- var oParam = {};
- oParam.id = "TRZHA20605";
- oParam.service = "reqprgmapp.ReqPrgm";
- oParam.method = "retGetReqHWDetail";
- oParam.inds = "req=ds_main_goodreq_goodreqlist";
- oParam.outds = "ds_main_srinfo=reqprgmlist";
- oParam.async = false;
- //oParam.callback = "cf_TRZHA20605";
- tranf_submit(oParam);
-
- var status = ds_main_srinfo.getColumn(0, "status");
-
- if(status == "05") {
- ds_main_srinfo.setColumn(0, "status", "06");
- }
-
- var reqconts = ds_main_srinfo.getColumn(0, "reqconts");
- var reqconts2 = reqconts.replace(/˟/g, "x");
- ds_main_srinfo.setColumn(0, "reqconts", reqconts2);
-
- var objDOM = rptf_createDOM(); // DOM 객체 설정
- rptf_setNodeListToDOM(objDOM, "/root/main/srinfo/srreqlist", ds_main_srinfo); // 데이터셋 1
- var objParam = new Object();
- objParam.xml_data_XML1 = objDOM.documentElement.source; // 최상의노드 XML 스트링 추출
- var option = "open=1;save=1;directprint=1;printdialog=0;print=1;zoom=0;";
- rptf_exeReportPreview30(["RPZHA20601"],[objParam], option);
- }
-
- ds_main_goodreq_goodreqlist.setColumn(0, "reqno", sTemp);
- }
- ]]></Script>
- </Form>
- </FDL>
|