123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466 |
- <?xml version="1.0" encoding="utf-8"?>
- <FDL version="1.5">
- <TypeDefinition url="..\..\..\default_typedef.xml"/>
- <Form id="SMRSD00500" position="absolute 0 0 1200 783" titletext="물품청구관리_성의교정" oninit="SMRSD00500_oninit" onload="SMRSD00500_onload">
- <Layouts>
- <Layout>
- <Tab id="swt_search" taborder="4" tabindex="0" position="absolute 0 143 583 758" onchanged="swt_search_onchanged">
- <Tabpages>
- <Tabpage id="tabpage3" text="물품청구내역"/>
- <Tabpage id="gd_set" text="청구 Set 목록">
- <Layouts>
- <Layout>
- <Grid id="grd_setlist" taborder="4" binddataset="ds_main_list_reqmst_reqsetmst" autoenter="select" useinputpanel="false" cellsizingtype="col" autofittype="col" position="absolute 0 25 300 150" oncellclick="swt_search_gd_set_grd_setlist_oncellclick">
- <Formats>
- <Format id="default">
- <Columns>
- <Column size="23"/>
- <Column size="0"/>
- <Column size="0"/>
- <Column size="0"/>
- <Column size="0"/>
- <Column size="257"/>
- <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="청구SET명"/>
- <Cell col="6" text="물품구분"/>
- <Cell col="7" text="물품코드"/>
- <Cell col="8" text="물품명"/>
- <Cell col="9" text="청구량"/>
- <Cell col="10" text="청구단위"/>
- <Cell col="11" text="setcd"/>
- </Band>
- <Band id="body">
- <Cell celltype="head" expr="currow+1"/>
- <Cell col="1" text="bind:instcd"/>
- <Cell col="2" text="bind:reqdeptcd"/>
- <Cell col="3" text="bind:reqprid"/>
- <Cell col="4" text="bind:reqprnm"/>
- <Cell col="5" text="bind:goodsetnm"/>
- <Cell col="6" text="bind:goodflag"/>
- <Cell col="7" text="bind:goodcd"/>
- <Cell col="8" text="bind:goodnm"/>
- <Cell col="9" text="bind:goodqty"/>
- <Cell col="10" text="bind:requnit"/>
- <Cell col="11" text="bind:goodsetcd"/>
- </Band>
- </Format>
- </Formats>
- </Grid>
- <Shape id="line3" class="line_10" position="absolute 0 20 300 26"/>
- <Static id="caption17" text="부서 청구SET" class="tit_2" position="absolute 0 4 108 25"/>
- <Shape id="line1" class="line_10" position="absolute 0 184 574 190"/>
- <Grid id="grd_reqset" taborder="5" binddataset="ds_main_list_reqset_reqsetlist" autoenter="select" useinputpanel="false" cellsizingtype="col" position="absolute 0 189 575 585" oncellclick="swt_search_gd_set_grd_reqset_oncellclick" anchor="left top bottom">
- <Formats>
- <Format id="default">
- <Columns>
- <Column size="24"/>
- <Column size="22"/>
- <Column size="0"/>
- <Column size="0"/>
- <Column size="0"/>
- <Column size="0"/>
- <Column size="63"/>
- <Column size="0"/>
- <Column size="195"/>
- <Column size="50"/>
- <Column size="56"/>
- <Column size="90"/>
- <Column size="58"/>
- <Column size="50"/>
- <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" 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"/>
- <Cell col="18"/>
- <Cell col="19"/>
- <Cell col="20"/>
- <Cell col="21"/>
- <Cell col="22"/>
- <Cell col="23"/>
- <Cell col="24"/>
- <Cell col="25"/>
- <Cell col="26"/>
- </Band>
- <Band id="body">
- <Cell celltype="head" expr="currow+1"/>
- <Cell col="1" displaytype="checkbox" edittype="checkbox" text="bind:select" expr="expr:select == 'true' ? 1 : 0"/>
- <Cell col="2" text="bind:instcd"/>
- <Cell col="3" text="bind:reqdeptcd"/>
- <Cell col="4" text="bind:reqprid"/>
- <Cell col="5" text="bind:goodflagnm"/>
- <Cell col="6" text="bind:goodcd"/>
- <Cell col="7" text="bind:allsizespecid"/>
- <Cell col="8" text="bind:goodnm"/>
- <Cell col="9" text="bind:goodspec"/>
- <Cell col="10" text="bind:goodmodel"/>
- <Cell col="11" text="bind:constunit"/>
- <Cell col="12" text="bind:prodcmpynm"/>
- <Cell col="13" text="bind:reqpridnm"/>
- <Cell col="14" text="bind:goodqty"/>
- <Cell col="15" text="bind:prodcmpynm"/>
- <Cell col="16" text="bind:reqflagnm"/>
- <Cell col="17" text="bind:purcunit"/>
- <Cell col="18" text="bind:minexch"/>
- <Cell col="19" text="bind:stocqty"/>
- <Cell col="20" text="bind:ddavguseqty"/>
- <Cell col="21" text="bind:goodsetnm"/>
- <Cell col="22" text="bind:goodsetcd"/>
- <Cell col="23" text="bind:goodflag"/>
- <Cell col="24" text="bind:allsizeyn"/>
- <Cell col="25" text="bind:allsizespecid"/>
- <Cell col="26" text="bind:allsizespecidnm"/>
- </Band>
- </Format>
- </Formats>
- </Grid>
- <Static id="caption5" text="부서 청구SET 물품" class="tit_2" position="absolute 0 168 145 189"/>
- <Button id="btn_apply" taborder="6" text="선택" class="btn4" position="absolute 517 161 573 183" onclick="swt_search_gd_set_btn_apply_onclick"/>
- </Layout>
- </Layouts>
- </Tabpage>
- <Tabpage id="gd_find" text="물품검색">
- <Layouts>
- <Layout>
- <Div id="group2" taborder="5" class="div_SA2" position="absolute 0 0 576 120">
- <Layouts>
- <Layout>
- <Static id="caption12" text="대 분 류 :" class="search_name" position="absolute 5 28 91 45" anchor="default"/>
- <Combo id="ipt_lrgcd" taborder="14" position="absolute 91 28 243 47" anchor="default" onitemchanged="swt_search_gd_find_group2_ipt_lrgcd_onitemchanged"/>
- <Static id="caption15" text="중 분 류 :" class="search_name" position="absolute 5 50 91 67" anchor="default"/>
- <Combo id="ipt_mdlcd" taborder="15" position="absolute 91 49 243 68" anchor="default"/>
- <Static id="caption10" text="물 품 명 :" class="search_name" position="absolute 5 93 91 110" anchor="default"/>
- <Edit id="ipt_goodnm" taborder="16" class="input_essential" position="absolute 91 93 566 112" autoselect="true" autoskip="true" anchor="default" tooltiptext="조회구분을 먼저선택하세요!" tooltiptype="inplace,mouseleave" onkeyup="swt_search_gd_find_group2_ipt_goodnm_onkeyup"/>
- <Edit id="ipt_oldcd_search" taborder="17" class="input_search" position="absolute 345 71 410 90" tooltiptext="구 MIS시스템 앞자리를 구분없이 입력하세요(70101)" tooltiptype="inplace" autoselect="true" autoskip="true" anchor="default"/>
- <Static id="caption22" text="구 자 재 :" class="search_name" position="absolute 259 72 342 89" anchor="default"/>
- <Static id="caption23" text="ex) 70101" position="absolute 415 71 473 91" anchor="default"/>
- <Button id="btn_prodcmpycd" taborder="18" class="icon_search" position="absolute 416 51 432 67" anchor="default" onclick="swt_search_gd_find_group2_btn_prodcmpycd_onclick"/>
- <Static id="caption20" text="제조회사 :" class="search_name" position="absolute 259 49 345 66" anchor="default"/>
- <Edit id="ipt_prodcmpynm" taborder="19" class="input_search" position="absolute 435 49 569 68" autoselect="true" autoskip="true" anchor="default"/>
- <Edit id="ipt_prodcmpycd" taborder="20" class="input_default" position="absolute 345 49 410 68" autoselect="true" autoskip="true" anchor="default"/>
- <Static id="caption21" text="모 델 :" class="search_name" position="absolute 259 28 345 45" anchor="default"/>
- <Edit id="ipt_goodspec" taborder="21" class="input_default" position="absolute 345 7 570 26" autoselect="true" autoskip="true" anchor="default"/>
- <Edit id="ipt_goodmodel" taborder="22" class="input_default" position="absolute 345 28 570 47" autoselect="true" autoskip="true" anchor="default"/>
- <Static id="caption19" text="규 격 :" class="search_name" position="absolute 259 7 345 24" anchor="default"/>
- <Static id="caption14" text="청구구분 :" class="search_name" position="absolute 5 7 91 24" anchor="default"/>
- <Combo id="cmb_reqflag" taborder="23" innerdataset="ds_init_reqflag" codecolumn="reqflag" datacolumn="reqflagnm" class="combo_default" position="absolute 91 7 243 26" anchor="default" onitemchanged="swt_search_gd_find_group2_cmb_reqflag_onitemchanged"/>
- <Edit id="cmb_goodflag" taborder="24" class="input_default" visible="false" position="absolute 426 93 546 112" autoselect="true" autoskip="true" anchor="default"/>
- <Edit id="ipt_goodcd" taborder="25" class="input_essential" position="absolute 91 71 243 90" autoselect="true" autoskip="true" anchor="default" tooltiptext="조회구분을 먼저선택하세요!" tooltiptype="inplace,mouseleave" onkeyup="swt_search_gd_find_group2_ipt_goodcd_onkeyup"/>
- <Static id="caption13" text="물품코드 :" class="search_name" position="absolute 5 72 91 89" anchor="default"/>
- </Layout>
- </Layouts>
- </Div>
- <Shape id="lin_goodlist" linetype="vertical" class="line_1" position="absolute 3 143 579 144"/>
- <Grid id="grd_goodlist" class="grd_agtplcelist" taborder="6" binddataset="ds_main_GoodLists_goodlist" useinputpanel="false" position="absolute 0 147 576 586" autoenter="select" cellsizingtype="col" oncellclick="swt_search_gd_find_grd_goodlist_oncellclick" anchor="left top bottom">
- <Formats>
- <Format id="default">
- <Columns>
- <Column size="26"/>
- <Column size="20"/>
- <Column size="75"/>
- <Column size="0"/>
- <Column size="170"/>
- <Column size="0"/>
- <Column size="44"/>
- <Column size="44"/>
- <Column size="44"/>
- <Column size="65"/>
- <Column size="0"/>
- <Column size="0"/>
- <Column size="69"/>
- <Column size="0"/>
- <Column size="0"/>
- <Column size="0"/>
- <Column size="116"/>
- <Column size="0"/>
- <Column size="0"/>
- <Column size="0"/>
- <Column size="0"/>
- <Column size="0"/>
- <Column size="0"/>
- <Column size="0"/>
- <Column size="0"/>
- <Column size="0"/>
- <Column size="0"/>
- <Column size="0"/>
- <Column size="0"/>
- <Column size="0"/>
- <Column size="0"/>
- <Column size="0"/>
- <Column size="0"/>
- <Column size="0"/>
- <Column size="0"/>
- <Column size="0"/>
- <Column size="0"/>
- <Column size="0"/>
- <Column size="0"/>
- <Column size="0"/>
- <Column size="0"/>
- <Column size="0"/>
- <Column size="0"/>
- <Column size="0"/>
- <Column size="0"/>
- <Column size="0"/>
- <Column size="0"/>
- <Column size="0"/>
- <Column size="0"/>
- <Column size="0"/>
- <Column size="0"/>
- <Column size="0"/>
- <Column size="0"/>
- <Column size="0"/>
- <Column size="0"/>
- <Column size="0"/>
- <Column size="0"/>
- <Column size="0"/>
- <Column size="0"/>
- <Column size="0"/>
- <Column size="0"/>
- <Column size="0"/>
- <Column size="0"/>
- <Column size="0"/>
- <Column size="0"/>
- <Column size="0"/>
- <Column size="0"/>
- <Column size="0"/>
- <Column size="0"/>
- <Column size="0"/>
- <Column size="0"/>
- <Column size="0"/>
- <Column size="0"/>
- <Column size="0"/>
- <Column size="0"/>
- <Column size="0"/>
- <Column size="0"/>
- <Column size="0"/>
- <Column size="0"/>
- <Column size="0"/>
- <Column size="0"/>
- <Column size="0"/>
- <Column size="0"/>
- <Column size="0"/>
- <Column size="0"/>
- <Column size="0"/>
- <Column size="0"/>
- <Column size="0"/>
- <Column size="0"/>
- <Column size="0"/>
- <Column size="0"/>
- <Column size="0"/>
- <Column size="0"/>
- <Column size="0"/>
- <Column size="0"/>
- <Column size="0"/>
- <Column size="0"/>
- <Column size="0"/>
- <Column size="0"/>
- <Column size="0"/>
- <Column size="0"/>
- <Column size="0"/>
- <Column size="0"/>
- <Column size="0"/>
- <Column size="0"/>
- <Column size="0"/>
- <Column size="0"/>
- <Column size="0"/>
- <Column size="0"/>
- </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" text="물품코드"/>
- <Cell col="4" text="물품명"/>
- <Cell col="5" text="제조회사"/>
- <Cell col="6" text="규격"/>
- <Cell col="7" text="주기"/>
- <Cell col="8" text="모델"/>
- <Cell col="9" text="제조회사"/>
- <Cell col="10" text="기관코드"/>
- <Cell col="11" text="물품구분"/>
- <Cell col="12" text="최소청구량"/>
- <Cell col="13" text="기준량"/>
- <Cell col="14" text="재고량"/>
- <Cell col="15" text="사용자수량"/>
- <Cell col="16" text="포장구성단위"/>
- <Cell col="17"/>
- <Cell col="18"/>
- <Cell col="19"/>
- <Cell col="20"/>
- <Cell col="21"/>
- <Cell col="22"/>
- <Cell col="23"/>
- <Cell col="24"/>
- <Cell col="25"/>
- <Cell col="26"/>
- <Cell col="27"/>
- <Cell col="28"/>
- <Cell col="29"/>
- <Cell col="30"/>
- <Cell col="31"/>
- <Cell col="32"/>
- <Cell col="33"/>
- <Cell col="34"/>
- <Cell col="35"/>
- <Cell col="36"/>
- <Cell col="37"/>
- <Cell col="38"/>
- <Cell col="39"/>
- <Cell col="40"/>
- <Cell col="41"/>
- <Cell col="42"/>
- <Cell col="43"/>
- <Cell col="44"/>
- <Cell col="45"/>
- <Cell col="46"/>
- <Cell col="47"/>
- <Cell col="48"/>
- <Cell col="49"/>
- <Cell col="50"/>
- <Cell col="51"/>
- <Cell col="52"/>
- <Cell col="53"/>
- <Cell col="54"/>
- <Cell col="55"/>
- <Cell col="56"/>
- <Cell col="57"/>
- <Cell col="58"/>
- <Cell col="59"/>
- <Cell col="60"/>
- <Cell col="61"/>
- <Cell col="62"/>
- <Cell col="63"/>
- <Cell col="64"/>
- <Cell col="65"/>
- <Cell col="66"/>
- <Cell col="67"/>
- <Cell col="68"/>
- <Cell col="69"/>
- <Cell col="70"/>
- <Cell col="71"/>
- <Cell col="72"/>
- <Cell col="73"/>
- <Cell col="74"/>
- <Cell col="75"/>
- <Cell col="76"/>
- <Cell col="77"/>
- <Cell col="78"/>
- <Cell col="79"/>
- <Cell col="80"/>
- <Cell col="81"/>
- <Cell col="82"/>
- <Cell col="83"/>
- <Cell col="84"/>
- <Cell col="85"/>
- <Cell col="86"/>
- <Cell col="87"/>
- <Cell col="88"/>
- <Cell col="89"/>
- <Cell col="90"/>
- <Cell col="91"/>
- <Cell col="92"/>
- <Cell col="93"/>
- <Cell col="94"/>
- <Cell col="95"/>
- <Cell col="96"/>
- <Cell col="97"/>
- <Cell col="98"/>
- <Cell col="99"/>
- <Cell col="100"/>
- <Cell col="101"/>
- <Cell col="102"/>
- <Cell col="103"/>
- <Cell col="104" text="a"/>
- <Cell col="105"/>
- <Cell col="106"/>
- <Cell col="107"/>
- <Cell col="108"/>
- </Band>
- <Band id="body">
- <Cell celltype="head" expr="currow+1"/>
- <Cell col="1" displaytype="checkbox" edittype="checkbox" text="bind:select"/>
- <Cell col="2" displaytype="none" edittype="none" text="bind:goodcd"/>
- <Cell col="3" text="bind:allsizespecid"/>
- <Cell col="4" text="bind:goodnm"/>
- <Cell col="5" text="bind:prodcmpycd"/>
- <Cell col="6" text="bind:goodspec"/>
- <Cell col="7" text="bind:reqpridnm"/>
- <Cell col="8" text="bind:goodmodel"/>
- <Cell col="9" text="bind:prodcmpynm"/>
- <Cell col="10" text="bind:instcd"/>
- <Cell col="11" text="bind:goodflag"/>
- <Cell col="12" text="bind:minexch"/>
- <Cell col="13" text="bind:safestocqty"/>
- <Cell col="14" text="bind:stocqty"/>
- <Cell col="15" text="bind:userqty"/>
- <Cell col="16" text="bind:constunit"/>
- <Cell col="17" text="bind:todd"/>
- <Cell col="18" text="bind:useyn"/>
- <Cell col="19" text="bind:fromdd"/>
- <Cell col="20" text="bind:asetflag"/>
- <Cell col="21" text="bind:lrgcd"/>
- <Cell col="22" text="bind:lrgnm"/>
- <Cell col="23" text="bind:mdlcd"/>
- <Cell col="24" text="bind:mdlnm"/>
- <Cell col="25" text="bind:smlcd"/>
- <Cell col="26" text="bind:smlnm"/>
- <Cell col="27" text="bind:proddrugsetflag"/>
- <Cell col="28" text="bind:winacnt"/>
- <Cell col="29" text="bind:winacntnm"/>
- <Cell col="30" text="bind:amtacnt"/>
- <Cell col="31" text="bind:amtacntnm"/>
- <Cell col="32" text="bind:mainmngtdeptcd"/>
- <Cell col="33" text="bind:mainmngtdeptnm"/>
- <Cell col="34" text="bind:mainusedeptcd"/>
- <Cell col="35" text="bind:mainusedeptnm"/>
- <Cell col="36" text="bind:purclnkgoodcd"/>
- <Cell col="37" text="bind:stocmngtflag"/>
- <Cell col="38" text="bind:purcunit"/>
- <Cell col="39" text="bind:purcunitnm"/>
- <Cell col="40" text="bind:deliveunitnm"/>
- <Cell col="41" text="bind:exchqty"/>
- <Cell col="42" text="bind:reuseyn"/>
- <Cell col="43" text="bind:divusenvalqty"/>
- <Cell col="44" text="bind:calcscorinfoacptstat"/>
- <Cell col="45" text="bind:calcscorinfoacptdd"/>
- <Cell col="46" text="bind:insuyn"/>
- <Cell col="47" text="bind:edicd"/>
- <Cell col="48" text="bind:newrgstdd"/>
- <Cell col="49" text="bind:reqdeptcd"/>
- <Cell col="50" text="bind:reqdeptnm"/>
- <Cell col="51" text="bind:reqpsn"/>
- <Cell col="52" text="bind:reqpsnnm"/>
- <Cell col="53" text="bind:reqflag"/>
- <Cell col="54" text="bind:reqflagnm"/>
- <Cell col="55" text="bind:reqmthd"/>
- <Cell col="56" text="bind:reqprid"/>
- <Cell col="57" text="bind:iopsnflag"/>
- <Cell col="58" text="bind:prodplce"/>
- <Cell col="59" text="bind:prodplcenm"/>
- <Cell col="60" text="bind:maincustlastsuplplce"/>
- <Cell col="61" text="bind:maincustlastsuplplcenm"/>
- <Cell col="62" text="bind:suppcustcd"/>
- <Cell col="63" text="bind:suppcustnm"/>
- <Cell col="64" text="bind:conflag"/>
- <Cell col="65" text="bind:fromconterm"/>
- <Cell col="66" text="bind:toconterm"/>
- <Cell col="67" text="bind:estmamt"/>
- <Cell col="68" text="bind:forgncurncyunitcost"/>
- <Cell col="69" text="bind:curncyunit"/>
- <Cell col="70" text="bind:curncyunitnm"/>
- <Cell col="71" text="bind:goodunitcost"/>
- <Cell col="72" text="bind:purcflag"/>
- <Cell col="73" text="bind:allsizeyn"/>
- <Cell col="74" text="bind:setplceordflag"/>
- <Cell col="75" text="bind:plceordbase"/>
- <Cell col="76" text="bind:plceordqtycretflag"/>
- <Cell col="77" text="bind:plceordnonusedd"/>
- <Cell col="78" text="bind:addtaxrate"/>
- <Cell col="79" text="bind:lastpurcdd"/>
- <Cell col="80" text="bind:nonusetretresn"/>
- <Cell col="81" text="bind:mngtflag"/>
- <Cell col="82" text="bind:bnscd"/>
- <Cell col="83" text="bind:cntrdrugyn"/>
- <Cell col="84" text="bind:narcflag"/>
- <Cell col="85" text="bind:expnyn"/>
- <Cell col="86" text="bind:cntsunit"/>
- <Cell col="87" text="bind:cntsqty"/>
- <Cell col="88" text="bind:specvol"/>
- <Cell col="89" text="bind:drugkind"/>
- <Cell col="90" text="bind:cooppurcyn"/>
- <Cell col="91" text="bind:autrampharm"/>
- <Cell col="92" text="bind:keepmthd"/>
- <Cell col="93" text="bind:specldrug"/>
- <Cell col="94" text="bind:gnrlspcl"/>
- <Cell col="95" text="bind:welfprt"/>
- <Cell col="96" text="bind:goodtype"/>
- <Cell col="97" text="bind:com"/>
- <Cell col="98" text="bind:limdrugyn"/>
- <Cell col="99" text="bind:cmt"/>
- <Cell col="100" text="bind:safestocappdd"/>
- <Cell col="101" text="bind:ddavguseqty"/>
- <Cell col="102" text="bind:mmavgusescheqty"/>
- <Cell col="103" text="bind:mmavguseqty"/>
- <Cell col="104" text="bind:prprtystocpossndayno"/>
- <Cell col="105" text="bind:orgloc"/>
- <Cell col="106" text="bind:oldcd"/>
- <Cell col="107" text="bind:goodhngnm"/>
- <Cell col="108" text="bind:goodengnm"/>
- </Band>
- </Format>
- </Formats>
- </Grid>
- <Button id="bbt_apply2" taborder="7" text="적용" class="btn4" position="absolute 520 123 576 146" onclick="swt_search_gd_find_bbt_apply2_onclick"/>
- <Static id="cpt_cls" text="1" visible="false" position="absolute 500 74 565 93" style="font:Dotum,9,bold;"/>
- <Button id="bbt_goodfind" taborder="8" text="조회" class="btn1" position="absolute 450 123 506 146" onclick="swt_search_gd_find_bbt_goodfind_onclick"/>
- </Layout>
- </Layouts>
- </Tabpage>
- </Tabpages>
- </Tab>
- <Static id="caption6" text="물품청구관리_성의교정" class="tit_1" position="absolute 0 0 218 25"/>
- <Button id="btn_init" taborder="1" text="초기화" class="btn4" position="absolute 1128 1 1196 23" onclick="btn_init_onclick" anchor="top right"/>
- <Div id="grp_sea" anchor="left top right" taborder="3" class="div_SA" position="absolute 0 25 1195 125">
- <Layouts>
- <Layout>
- <Calendar id="ipt_reqdd" taborder="52" class="input_essential" position="absolute 395 31 497 50" mask="yyyy-mm-dd" autoselect="true" autoskip="true" onchanged="grp_sea_ipt_reqdd_onchanged"/>
- <MaskEdit id="ipt_todd" taborder="46" readonly="true" mask="####-##-##" position="absolute 395 31 464 50" maskchar=" " type="string" trimtype="both" style="align:center middle;"/>
- <Calendar id="ipt_reqddnew" taborder="51" class="input_essential" position="absolute 395 31 497 50" mask="yyyy-mm-dd" autoselect="true" autoskip="true" style="color:#ff0000ff;" onchanged="grp_sea_ipt_reqddnew_onchanged"/>
- <Static id="caption4" text="작업구분 :" class="search_name" position="absolute 310 6 396 23"/>
- <Static id="caption11" text="기관코드 :" class="search_name" position="absolute 11 6 97 23"/>
- <Static id="caption16" text="청구일자 :" class="search_name" position="absolute 310 31 396 48"/>
- <Combo id="cmb_workflag" taborder="39" codecolumn="value" datacolumn="label" class="combo_default" position="absolute 395 5 559 24" innerdataset="@ds_cmb_workflag" onitemchanged="grp_sea_cmb_workflag_onitemchanged" onitemclick="grp_sea_cmb_workflag_onitemclick"/>
- <Combo id="cmb_reqpridflag" taborder="40" innerdataset="ds_init_cmb_reqpridflag" codecolumn="value" datacolumn="label" class="combo_default" position="absolute 395 54 495 73"/>
- <Edit id="opt_requsernm" taborder="41" readonly="true" class="output" position="absolute 160 54 266 73"/>
- <Edit id="opt_requser" taborder="42" readonly="true" class="output" position="absolute 96 54 159 73"/>
- <Edit id="opt_reqfinaldept" taborder="43" readonly="true" class="output" visible="false" position="absolute 515 5 543 24"/>
- <Shape id="line14" linetype="vertical" class="line_4" position="absolute 1107 5 1113 97" anchor="top right"/>
- <Button id="btn_search" taborder="44" text="조회" class="btn1" position="absolute 1120 35 1176 57" onclick="grp_sea_btn_search_onclick" anchor="top right"/>
- <Radio id="rdo_inputmethod" taborder="45" columncount="2" rowcount="1" codecolumn="codecolumn" datacolumn="datacolumn" enable="false" position="absolute 96 78 265 98" onitemchanged="grp_sea_rdo_inputmethod_onitemchanged">
- <Dataset id="innerdataset">
- <ColumnInfo>
- <Column id="codecolumn"/>
- <Column id="datacolumn"/>
- </ColumnInfo>
- <Rows>
- <Row>
- <Col id="codecolumn">1</Col>
- <Col id="datacolumn">일반청구</Col>
- </Row>
- <Row>
- <Col id="codecolumn">2</Col>
- <Col id="datacolumn">정량보충</Col>
- </Row>
- </Rows>
- </Dataset>
- </Radio>
- <Static id="caption1" text="입력방식 :" class="search_name" position="absolute 11 80 97 97"/>
- <Static id="caption3" text="청구부서 :" class="search_name" position="absolute 310 55 396 72"/>
- <Combo id="cmb_reqdeptcd" taborder="47" innerdataset="@ds_init_ReqDeptLists_reqdeptlist" codecolumn="value" datacolumn="label" class="combo_default" position="absolute 395 54 561 73" onitemchanged="grp_sea_cmb_reqdeptcd_onitemchanged"/>
- <Combo id="cmb_hidden" taborder="48" position="absolute 516 31 571 50"/>
- <Combo id="cmb_reqno" taborder="49" innerdataset="@ds_main_DeptReqnoLists_reqnolist" codecolumn="reqno" datacolumn="reqno" class="combo_default" position="absolute 516 31 571 50" onitemchanged="grp_sea_cmb_reqno_onitemchanged"/>
- <CheckBox id="chk_reqnonew" taborder="50" position="absolute 574 33 624 48" text="신규" truevalue="Y" style="font:Dotum,9,bold;" onclick="grp_sea_chk_reqnonew_onclick"/>
- <Static id="caption9" text="청 구 자 :" class="search_name" position="absolute 11 55 97 72"/>
- <Radio id="rdo_instcd" taborder="53" columncount="2" rowcount="0" codecolumn="codecolumn" datacolumn="datacolumn" position="absolute 96 6 266 26" onitemchanged="grp_sea_rdo_instcd_onitemchanged">
- <Dataset id="innerdataset">
- <ColumnInfo>
- <Column id="codecolumn"/>
- <Column id="datacolumn"/>
- </ColumnInfo>
- <Rows>
- <Row>
- <Col id="codecolumn">103</Col>
- <Col id="datacolumn">성의교정</Col>
- </Row>
- <Row>
- <Col id="codecolumn">114</Col>
- <Col id="datacolumn">산학협력단</Col>
- </Row>
- </Rows>
- </Dataset>
- </Radio>
- <Edit id="opt_instcdgood" taborder="54" readonly="true" oneditclick="grp_biz_grp_sea_opt_instcdgood_oneditclick" class="output" visible="false" position="absolute 253 7 308 26"/>
- <Edit id="opt_projectyn" taborder="55" readonly="true" position="absolute 545 5 555 24" visible="false"/>
- <Edit id="ipt_stdysubjnm" taborder="56" class="input_fix" position="absolute 521 78 668 97"/>
- <Edit id="ipt_stdysubjno" taborder="57" class="input_search" position="absolute 395 78 499 97"/>
- <Static id="caption2" text="연구과제 :" class="search_name" position="absolute 310 80 396 97"/>
- <Button id="btn_stdysubjnm" taborder="58" class="icon_search" position="absolute 501 78 517 94" onclick="grp_sea_btn_stdysubjnm_onclick"/>
- <Static id="caption18" text="계 정 :" class="search_name" position="absolute 695 5 781 22"/>
- <Combo id="cmb_groupbugt" taborder="59" class="combo_default" position="absolute 785 5 889 24" onitemchanged="grp_sea_cmb_groupbugt_onitemchanged"/>
- <MaskEdit id="opt_remainder" taborder="60" readonly="true" mask="9,999999999999" position="absolute 1020 78 1098 97"/>
- <MaskEdit id="opt_totamt" taborder="61" readonly="true" mask="9,999999999999" position="absolute 1020 5 1098 24"/>
- <Edit id="opt_projectnm" taborder="62" readonly="true" class="output" position="absolute 840 56 950 75"/>
- <MaskEdit id="opt_bugtexpcamt" taborder="63" readonly="true" mask="9,999999999999" position="absolute 1020 30 1098 49"/>
- <Static id="caption24" text="예산편성" position="absolute 962 5 1016 25" style="font:Dotum,9,bold;"/>
- <Static id="caption27" text="가능액" position="absolute 975 79 1020 99" style="font:Dotum,9,bold;"/>
- <MaskEdit id="opt_bugtexecamt" taborder="64" readonly="true" mask="9,999999999999" position="absolute 1020 54 1098 73"/>
- <Static id="caption28" text="추산" position="absolute 988 30 1016 50" style="font:Dotum,9,bold;"/>
- <Static id="caption30" text="집행" position="absolute 988 55 1016 75" style="font:Dotum,9,bold;"/>
- <Edit id="opt_projectid" taborder="65" readonly="true" class="output" position="absolute 785 56 835 75"/>
- <Combo id="cmb_studyinstcd" taborder="66" position="absolute 96 30 266 49" onitemchanged="grp_sea_cmb_studyinstcd_onitemchanged" enable="false"/>
- <Static id="caption31" text="연구기관 :" class="search_name" position="absolute 11 31 97 48"/>
- <Static id="caption32" text="~" position="absolute 501 33 516 53"/>
- <Static id="caption7" text="프로젝트 :" class="search_name" position="absolute 695 56 781 73"/>
- <Static id="caption29" text="예산계정 :" class="search_name" position="absolute 695 31 781 48"/>
- <Button id="btn_purcdept" taborder="67" text="조회" class="btn1" visible="false" position="absolute 565 52 621 74" onclick="grp_sea_btn_purcdept_onclick"/>
- <Edit id="opt_bugtflag" taborder="68" readonly="true" position="absolute 785 30 870 49"/>
- <Combo id="cmb_bugtflag" taborder="69" innerdataset="@ds_main_BugLists_bugtlist" codecolumn="bugtproject" datacolumn="bugtprojectnm" class="combo_default" position="absolute 785 30 951 49" onitemchanged="grp_sea_cmb_bugtflag_onitemchanged"/>
- </Layout>
- </Layouts>
- </Div>
- <Button id="bbt_large" taborder="5" class="icon_pre_month" visible="false" position="absolute 589 145 605 161" onclick="bbt_large_onclick"/>
- <Button id="bbt_right" taborder="6" class="icon_next_month" visible="false" position="absolute 607 145 623 161" onclick="bbt_right_onclick"/>
- <Static id="caption25" text="All Size" position="absolute 718 141 768 156"/>
- <Static id="caption26" class="color_6" position="absolute 700 140 715 155" style="background:#ffff00ff;"/>
- <Edit id="ipt_tempdeptnm" taborder="7" class="input_search" visible="false" position="absolute 470 142 580 161" autoselect="true" autoskip="true"/>
- <Edit id="ipt_tempdeptcd" taborder="8" class="input_search" visible="false" position="absolute 360 142 440 161" autoselect="true" autoskip="true"/>
- <Button id="btn_tempdeptcd" taborder="9" class="icon_search" position="absolute 445 144 461 160" onclick="btn_tempdeptcd_onclick"/>
- <Static id="cpt_dept" text="부서선택:" class="search_name" visible="false" position="absolute 278 144 364 161"/>
- <Div id="grp_button" taborder="10" position="absolute 589 159 1195 186" anchor="top right">
- <Layouts>
- <Layout>
- <Button id="btn_delete" taborder="17" text="행삭제" class="btn2" position="absolute 56 3 109 22" onclick="grp_button_btn_delete_onclick"/>
- <Button id="btn_choice" taborder="18" text="승인전체/접수전체취소" class="btn2" position="absolute 111 3 257 22" onclick="grp_button_btn_choice_onclick"/>
- <Button id="btn_excel" taborder="19" text="엑셀" class="btn7" position="absolute 259 0 315 22" onclick="grp_button_btn_excel_onclick"/>
- <CheckBox id="ckb_accept" taborder="20" text="동시승인" truevalue="Y" position="absolute 534 3 601 18" onclick="grp_button_ckb_accept_onclick"/>
- <Button id="btn_save" taborder="21" text="저장" class="btn4" position="absolute 474 0 530 22" onclick="grp_button_btn_save_onclick"/>
- <Button id="btn_accept" taborder="22" text="승인/미승인" class="btn4" position="absolute 373 0 473 22" onclick="grp_button_btn_accept_onclick"/>
- <Button id="btn_print" taborder="23" text="출력" class="btn6" position="absolute 316 0 372 22" onclick="grp_button_btn_print_onclick"/>
- <Button id="btn_insert" taborder="24" text="행추가" class="btn2" position="absolute 1 3 54 22" onclick="grp_button_btn_insert_onclick">
- <Layouts>
- <Layout width="53" height="19"/>
- </Layouts>
- </Button>
- </Layout>
- </Layouts>
- </Div>
- <Shape id="lin_main" class="line_10" position="absolute 0 180 1195 189" anchor="left top right"/>
- <TextArea id="tar_cmt" taborder="14" visible="false" position="absolute 31 235 97 251"/>
- <Grid id="grd_goodreq" taborder="11" binddataset="ds_main_list_goodreq_goodreqlist" autoenter="select" useinputpanel="false" cellsizingtype="col" position="absolute 0 186 1195 755" anchor="all" oncellclick="grd_goodreq_oncellclick" onexpanddown="grd_goodreq_onexpanddown" onkeydown="grd_goodreq_onkeydown">
- <Formats>
- <Format id="default">
- <Columns>
- <Column size="21"/>
- <Column size="0"/>
- <Column size="0"/>
- <Column size="0"/>
- <Column size="0"/>
- <Column size="35"/>
- <Column size="94"/>
- <Column size="225"/>
- <Column size="124"/>
- <Column size="74"/>
- <Column size="66"/>
- <Column size="88"/>
- <Column size="83"/>
- <Column size="60"/>
- <Column size="48"/>
- <Column size="42"/>
- <Column size="30"/>
- <Column size="43"/>
- <Column size="137"/>
- <Column size="100"/>
- <Column size="112"/>
- <Column size="82"/>
- <Column size="83"/>
- <Column size="82"/>
- <Column size="168"/>
- <Column size="0"/>
- <Column size="0"/>
- <Column size="0"/>
- <Column size="0"/>
- <Column size="0"/>
- <Column size="0"/>
- <Column size="0"/>
- <Column size="0"/>
- <Column size="0"/>
- <Column size="0"/>
- <Column size="0"/>
- <Column size="0"/>
- <Column size="0"/>
- <Column size="0"/>
- <Column size="0"/>
- <Column size="0"/>
- <Column size="0"/>
- <Column size="0"/>
- <Column size="0"/>
- <Column size="0"/>
- <Column size="0"/>
- <Column size="0"/>
- <Column size="0"/>
- <Column size="0"/>
- <Column size="0"/>
- <Column size="0"/>
- <Column size="0"/>
- <Column size="0"/>
- <Column size="0"/>
- <Column size="0"/>
- <Column size="0"/>
- <Column size="0"/>
- <Column size="0"/>
- <Column size="0"/>
- <Column size="0"/>
- <Column size="0"/>
- <Column size="0"/>
- <Column size="0"/>
- <Column size="0"/>
- <Column size="0"/>
- <Column size="0"/>
- <Column size="0"/>
- <Column size="0"/>
- <Column size="0"/>
- <Column size="0"/>
- <Column size="0"/>
- <Column size="0"/>
- <Column size="0"/>
- <Column size="0"/>
- <Column size="0"/>
- <Column size="0"/>
- <Column size="0"/>
- <Column size="0"/>
- <Column size="0"/>
- <Column size="0"/>
- <Column size="0"/>
- <Column size="0"/>
- <Column size="0"/>
- <Column size="0"/>
- <Column size="0"/>
- <Column size="0"/>
- <Column size="0"/>
- </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="포장구성단위"/>
- <Cell col="12" text="연구과제"/>
- <Cell col="13" text="재고량"/>
- <Cell col="14" colspan="2" text="청구" taborder="undefined"/>
- <Cell col="16" colspan="2" text="승인" taborder="undefined"/>
- <Cell col="18" text="계정"/>
- <Cell col="19" text="프로젝트"/>
- <Cell col="20" text="예산편성액"/>
- <Cell col="21" text="예산추산액"/>
- <Cell col="22" text="예산집행액"/>
- <Cell col="23" text="예산잔액"/>
- <Cell col="24" text="비고"/>
- <Cell col="25"/>
- <Cell col="26"/>
- <Cell col="27"/>
- <Cell col="28"/>
- <Cell col="29"/>
- <Cell col="30"/>
- <Cell col="31"/>
- <Cell col="32"/>
- <Cell col="33"/>
- <Cell col="34"/>
- <Cell col="35"/>
- <Cell col="36"/>
- <Cell col="37"/>
- <Cell col="38"/>
- <Cell col="39"/>
- <Cell col="40"/>
- <Cell col="41"/>
- <Cell col="42"/>
- <Cell col="43"/>
- <Cell col="44"/>
- <Cell col="45"/>
- <Cell col="46"/>
- <Cell col="47"/>
- <Cell col="48"/>
- <Cell col="49"/>
- <Cell col="50"/>
- <Cell col="51"/>
- <Cell col="52"/>
- <Cell col="53"/>
- <Cell col="54"/>
- <Cell col="55"/>
- <Cell col="56"/>
- <Cell col="57"/>
- <Cell col="58"/>
- <Cell col="59"/>
- <Cell col="60"/>
- <Cell col="61"/>
- <Cell col="62"/>
- <Cell col="63"/>
- <Cell col="64"/>
- <Cell col="65"/>
- <Cell col="66"/>
- <Cell col="67"/>
- <Cell col="68"/>
- <Cell col="69"/>
- <Cell col="70"/>
- <Cell col="71"/>
- <Cell col="72"/>
- <Cell col="73"/>
- <Cell col="74"/>
- <Cell col="75"/>
- <Cell col="76"/>
- <Cell col="77"/>
- <Cell col="78"/>
- <Cell col="79"/>
- <Cell col="80"/>
- <Cell col="81"/>
- <Cell col="82"/>
- <Cell col="83"/>
- <Cell col="84"/>
- <Cell col="85"/>
- <Cell col="86"/>
- </Band>
- <Band id="body">
- <Cell celltype="head"/>
- <Cell col="1" text="bind:instcd"/>
- <Cell col="2" text="bind:reqflag"/>
- <Cell col="3" text="bind:reqdd"/>
- <Cell col="4" text="bind:reqno"/>
- <Cell col="5" text="bind:reqseqno"/>
- <Cell col="6" displaytype="text" edittype="text" text="bind:goodcd" expandshow="show"/>
- <Cell col="7" displaytype="text" edittype="text" text="bind:goodnm"/>
- <Cell col="8" displaytype="text" edittype="text" text="bind:goodspec" expandshow="show"/>
- <Cell col="9" edittype="none" text="bind:goodmodel"/>
- <Cell col="10" edittype="none" text="bind:prodcmpynm"/>
- <Cell col="11" text="bind:constunit"/>
- <Cell col="12" displaytype="text" edittype="text" text="bind:stdysubjnm" expandshow="show"/>
- <Cell col="13" displaytype="number" edittype="normal" text="bind:stocqty"/>
- <Cell col="14" displaytype="number" edittype="normal" text="bind:reqqty"/>
- <Cell col="15" text="bind:requnit"/>
- <Cell col="16" displaytype="checkbox" edittype="checkbox" text="bind:deptaprvyn"/>
- <Cell col="17" text="bind:deptaprvnm"/>
- <Cell col="18" displaytype="text" edittype="text" text="bind:bugtnm" expandshow="show"/>
- <Cell col="19" text="bind:projectnm"/>
- <Cell col="20" displaytype="number" edittype="normal" text="bind:totamt"/>
- <Cell col="21" displaytype="number" edittype="normal" text="bind:bugtexpcamt"/>
- <Cell col="22" displaytype="number" edittype="normal" text="bind:bugtexecamt"/>
- <Cell col="23" displaytype="number" edittype="normal" text="bind:remainder"/>
- <Cell col="24" displaytype="text" edittype="text" text="bind:cmt"/>
- <Cell col="25" text="bind:groupbugt"/>
- <Cell col="26" text="bind:workflag"/>
- <Cell col="27" text="bind:reqmthdflag"/>
- <Cell col="28" text="bind:deliveflag"/>
- <Cell col="29" text="bind:reqpridflag"/>
- <Cell col="30" text="bind:goodcd"/>
- <Cell col="31" text="bind:allsizespecid"/>
- <Cell col="32" text="bind:goodflag"/>
- <Cell col="33" text="bind:purcunit"/>
- <Cell col="34" text="bind:purcunitnm"/>
- <Cell col="35" text="bind:stocmngtflag"/>
- <Cell col="36" text="bind:bugtcd"/>
- <Cell col="37" text="bind:stdysubjno"/>
- <Cell col="38" text="bind:reqdeptcd"/>
- <Cell col="39" text="bind:reqcollcdeptcd"/>
- <Cell col="40" text="bind:delivedeptcd"/>
- <Cell col="41" text="bind:delivehopedd"/>
- <Cell col="42" text="bind:reqpsnid"/>
- <Cell col="43" text="bind:reqpsnnm"/>
- <Cell col="44" text="bind:reqtm"/>
- <Cell col="45" text="bind:ddavguseqty"/>
- <Cell col="46" text="bind:minexch"/>
- <Cell col="47" text="bind:basevol"/>
- <Cell col="48" text="bind:prereqqty"/>
- <Cell col="49" text="bind:adjtqty"/>
- <Cell col="50" text="bind:preadjtqty"/>
- <Cell col="51" text="bind:adjtrsn"/>
- <Cell col="52" text="bind:predeptaprvyn"/>
- <Cell col="53" text="bind:deptaprvdd"/>
- <Cell col="54" text="bind:acptflag"/>
- <Cell col="55" text="bind:acptflagnm"/>
- <Cell col="56" text="bind:acptdd"/>
- <Cell col="57" text="bind:acptcharid"/>
- <Cell col="58" text="bind:purcdmnddd"/>
- <Cell col="59" text="bind:purcdmndno"/>
- <Cell col="60" text="bind:purcdmndseq"/>
- <Cell col="61" text="bind:colreqdd"/>
- <Cell col="62" text="bind:colreqno"/>
- <Cell col="63" text="bind:colreqseqno"/>
- <Cell col="64" text="bind:deliveqty"/>
- <Cell col="65" text="bind:unwinresn"/>
- <Cell col="66" text="bind:deliveprcsflag"/>
- <Cell col="67" text="bind:chkcmt"/>
- <Cell col="68" text="bind:reqarthyn"/>
- <Cell col="69" text="bind:aprvyn"/>
- <Cell col="70" text="bind:lrgnm"/>
- <Cell col="71" text="bind:csrsafestocqty"/>
- <Cell col="72" text="bind:csrddavguseqty"/>
- <Cell col="73" text="bind:allsizespecidnm"/>
- <Cell col="74" text="bind:allsizeyn"/>
- <Cell col="75" text="bind:studyinstcd"/>
- <Cell col="76" text="bind:rgstqty"/>
- <Cell col="77" text="bind:exchqty"/>
- <Cell col="78" text="bind:projectid"/>
- <Cell col="79" text="bind:reqdeptnm"/>
- <Cell col="80" text="bind:reqflagnm"/>
- <Cell col="81" text="bind:reqflagnm"/>
- <Cell col="82" text="bind:setunit"/>
- <Cell col="83" text="bind:suppcustcd"/>
- <Cell col="84" text="bind:suppcustcdnm"/>
- <Cell col="85" text="bind:befmonreqqty"/>
- <Cell col="86" text="bind:jobstatus"/>
- </Band>
- </Format>
- </Formats>
- </Grid>
- <Div id="grp_bugtflag" taborder="12" style="background:#ffffffff;border:2 solid #339966ff ;" position="absolute 808 241 1083 463" visible="false">
- <Layouts>
- <Layout>
- <Shape id="roundrect3" type="roundrectangle" position="absolute 2 3 270 30" anchor="default"/>
- <Shape id="rectangle2" type="rectangle" position="absolute 0 0 2 212" anchor="default"/>
- <Button id="button2" taborder="28" text="확인" class="btn4" position="absolute 207 6 263 28" anchor="default" onclick="grp_bugtflag_button2_onclick"/>
- <MaskEdit id="output1" taborder="29" readonly="true" mask="#,###" position="absolute 156 183 266 202" anchor="default"/>
- <MaskEdit id="output2" taborder="30" readonly="true" mask="#,###" position="absolute 156 110 266 129" anchor="default"/>
- <Edit id="output3" taborder="31" readonly="true" class="output" position="absolute 156 86 266 105" anchor="default"/>
- <Static id="caption33" text="집행" position="absolute 122 160 150 180" style="font:Dotum,9,bold;" anchor="default"/>
- <Combo id="combo2" taborder="32" innerdataset="@ds_main_BugLists_bugtlist" codecolumn="bugtproject" datacolumn="bugtprojectnm" class="combo_default" position="absolute 100 60 266 79" anchor="default" onitemchanged="grp_bugtflag_combo2_onitemchanged"/>
- <MaskEdit id="output4" taborder="33" readonly="true" mask="#,###" position="absolute 156 135 266 154" anchor="default"/>
- <Static id="caption34" text="예산편성" position="absolute 96 110 150 130" style="font:Dotum,9,bold;" anchor="default"/>
- <MaskEdit id="output5" taborder="34" readonly="true" mask="#,###" position="absolute 156 159 266 178" anchor="default"/>
- <Static id="caption35" text="프로젝트 :" class="search_name" position="absolute 10 86 96 103" anchor="default"/>
- <Static id="caption36" text="가능액" position="absolute 105 184 150 204" style="font:Dotum,9,bold;" anchor="default"/>
- <Static id="caption37" text="추산" position="absolute 122 135 150 155" style="font:Dotum,9,bold;" anchor="default"/>
- <Static id="caption38" text="예산계정 :" class="search_name" position="absolute 10 61 96 78" anchor="default"/>
- <Static id="caption39" text="계 정 :" class="search_name" position="absolute 10 35 96 52" anchor="default"/>
- <Edit id="output6" taborder="35" readonly="true" class="output" position="absolute 100 86 150 105" anchor="default"/>
- <Combo id="combo3" taborder="36" innerdataset="ds_init_rscmbgcdlist" codecolumn="value" datacolumn="label" class="combo_default" position="absolute 100 35 266 54" anchor="default" onitemchanged="grp_bugtflag_combo3_onitemchanged"/>
- </Layout>
- </Layouts>
- </Div>
- <Div id="grp_allsize" taborder="13" style="background:#ffffffff;border:2 solid #339966ff ;" position="absolute 695 342 1059 650" visible="false">
- <Layouts>
- <Layout>
- <Grid id="grd_codelist" class="grd_prodcmpylist" taborder="7" binddataset="ds_main_codelist" autoenter="select" useinputpanel="false" cellsizingtype="col" autofittype="col" position="absolute 2 40 359 297" anchor="default">
- <Formats>
- <Format id="default">
- <Columns>
- <Column size="30"/>
- <Column size="40"/>
- <Column size="140"/>
- <Column size="76"/>
- <Column size="51"/>
- </Columns>
- <Rows>
- <Row size="24" band="head"/>
- <Row size="24"/>
- </Rows>
- <Band id="head">
- <Cell text="C"/>
- <Cell col="1" text="ID"/>
- <Cell col="2" text="명칭"/>
- <Cell col="3" text="모델"/>
- <Cell col="4" text="수량"/>
- </Band>
- <Band id="body">
- <Cell displaytype="checkbox" edittype="checkbox" text="bind:chk" expr="expr:chk == 'true' ? 1 : 0"/>
- <Cell col="1" text="bind:allsizespecid"/>
- <Cell col="2" text="bind:goodspec"/>
- <Cell col="3" text="bind:goodmodel"/>
- <Cell col="4" displaytype="text" edittype="text" text="bind:qty"/>
- </Band>
- </Format>
- </Formats>
- </Grid>
- <Button id="btn_confirm" taborder="8" text="확인" class="btn4" position="absolute 285 10 341 32" anchor="default" onclick="grp_allsize_btn_confirm_onclick"/>
- </Layout>
- </Layouts>
- </Div>
- </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="workflag" type="STRING" size="256"/>
- <Column id="instcd" type="STRING" size="256"/>
- <Column id="studyinstcd" type="STRING" size="256"/>
- <Column id="reqflag" type="STRING" size="256"/>
- <Column id="deliveflag" type="STRING" size="256"/>
- <Column id="reqdd" type="STRING" size="256"/>
- <Column id="reqpridflag" type="STRING" size="256"/>
- <Column id="flag" type="STRING" size="256"/>
- <Column id="reqdeptcd" type="STRING" size="256"/>
- <Column id="reqdeptnm" type="STRING" size="256"/>
- <Column id="reqpsnid" type="STRING" size="256"/>
- <Column id="retrmaxreqnoyn" type="STRING" size="256"/>
- <Column id="reqno" type="STRING" size="256"/>
- <Column id="stdysubjno" type="STRING" size="256"/>
- <Column id="stdysubjnm" type="STRING" size="256"/>
- <Column id="bugtflag" type="STRING" size="256"/>
- <Column id="bugtflagnm" type="STRING" size="256"/>
- <Column id="tmp_goodcd" type="STRING" size="256"/>
- <Column id="tmp_goodnm" type="STRING" size="256"/>
- <Column id="inputmethod" type="STRING" size="256"/>
- <Column id="instcdgood" type="STRING" size="256"/>
- <Column id="groupbugt" type="STRING" size="256"/>
- <Column id="totamt" type="STRING" size="256"/>
- <Column id="bugtexpcamt" type="STRING" size="256"/>
- <Column id="bugtexecamt" type="STRING" size="256"/>
- <Column id="remainder" type="STRING" size="256"/>
- <Column id="projectyn" type="STRING" size="256"/>
- <Column id="projectid" type="STRING" size="256"/>
- <Column id="projectnm" type="STRING" size="256"/>
- <Column id="deptcd" type="STRING" size="256"/>
- <Column id="supacntcd4" type="STRING" size="256"/>
- <Column id="pgoodflag" type="STRING" size="256"/>
- <Column id="bugtproject" type="STRING" size="256"/>
- </ColumnInfo>
- <Rows>
- <Row>
- <Col id="workflag">1</Col>
- <Col id="instcd"/>
- <Col id="studyinstcd"/>
- <Col id="reqflag"/>
- <Col id="deliveflag"/>
- <Col id="reqdd"/>
- <Col id="reqpridflag"/>
- <Col id="flag"/>
- <Col id="reqdeptcd"/>
- <Col id="reqdeptnm"/>
- <Col id="reqpsnid"/>
- <Col id="retrmaxreqnoyn"/>
- <Col id="reqno"/>
- <Col id="stdysubjno"/>
- <Col id="stdysubjnm"/>
- <Col id="bugtflag"/>
- <Col id="bugtflagnm"/>
- <Col id="tmp_goodcd"/>
- <Col id="tmp_goodnm"/>
- <Col id="inputmethod"/>
- <Col id="instcdgood"/>
- <Col id="groupbugt"/>
- <Col id="totamt"/>
- <Col id="bugtexpcamt"/>
- <Col id="bugtexecamt"/>
- <Col id="remainder"/>
- <Col id="projectyn"/>
- <Col id="projectid"/>
- <Col id="projectnm"/>
- <Col id="deptcd"/>
- <Col id="supacntcd4"/>
- <Col id="pgoodflag"/>
- <Col id="bugtproject"/>
- </Row>
- </Rows>
- </Dataset>
- <Dataset id="ds_init" firefirstcount="0" firenextcount="0" useclientlayout="false" updatecontrol="true" enableevent="true" loadkeymode="keep" loadfiltermode="keep" reversesubsum="false">
- <ColumnInfo>
- <Column id="reqdeptcd" type="STRING" size="256"/>
- <Column id="reqdeptnm" type="STRING" size="256"/>
- <Column id="requserno" type="STRING" size="256"/>
- <Column id="requsernm" type="STRING" size="256"/>
- <Column id="reqfinaldeptcd" type="STRING" size="256"/>
- <Column id="reqfinaldeptnm" type="STRING" size="256"/>
- <Column id="reqflag" type="STRING" size="256"/>
- </ColumnInfo>
- <Rows>
- <Row>
- <Col id="reqdeptcd"/>
- <Col id="reqdeptnm"/>
- <Col id="requserno"/>
- <Col id="requsernm"/>
- <Col id="reqfinaldeptcd"/>
- <Col id="reqfinaldeptnm"/>
- <Col id="reqflag"/>
- </Row>
- </Rows>
- </Dataset>
- <Dataset id="ds_main_rsdhdeymlist" firefirstcount="0" firenextcount="0" useclientlayout="false" updatecontrol="true" enableevent="true" loadkeymode="keep" loadfiltermode="keep" reversesubsum="false">
- <ColumnInfo>
- <Column id="todd" type="STRING" size="256"/>
- </ColumnInfo>
- <Rows>
- <Row/>
- </Rows>
- </Dataset>
- <Dataset id="ds_send_save_autoaprv" firefirstcount="0" firenextcount="0" useclientlayout="false" updatecontrol="true" enableevent="true" loadkeymode="keep" loadfiltermode="keep" reversesubsum="false">
- <ColumnInfo>
- <Column id="autoaprvyn" type="STRING" size="256"/>
- <Column id="reqnonew" type="STRING" size="256"/>
- <Column id="instcd" type="STRING" size="256"/>
- <Column id="reqdeptcd" type="STRING" size="256"/>
- <Column id="reqdd" type="STRING" size="256"/>
- </ColumnInfo>
- <Rows>
- <Row>
- <Col id="autoaprvyn"/>
- <Col id="reqnonew"/>
- <Col id="instcd"/>
- <Col id="reqdeptcd"/>
- <Col id="reqdd"/>
- </Row>
- </Rows>
- </Dataset>
- <Dataset id="ds_tempdept" firefirstcount="0" firenextcount="0" useclientlayout="false" updatecontrol="true" enableevent="true" loadkeymode="keep" loadfiltermode="keep" reversesubsum="false" oncolumnchanged="ds_tempdept_oncolumnchanged">
- <ColumnInfo>
- <Column id="tempdeptcd" type="STRING" size="256"/>
- <Column id="tempdeptnm" type="STRING" size="256"/>
- </ColumnInfo>
- <Rows>
- <Row>
- <Col id="tempdeptcd"/>
- <Col id="tempdeptnm"/>
- </Row>
- </Rows>
- </Dataset>
- <Dataset id="ds_send_goodlist" firefirstcount="0" firenextcount="0" useclientlayout="false" updatecontrol="true" enableevent="true" loadkeymode="keep" loadfiltermode="keep" reversesubsum="false" oncolumnchanged="ds_send_goodlist_oncolumnchanged">
- <ColumnInfo>
- <Column id="refcond" type="STRING" size="256"/>
- <Column id="instcd" type="STRING" size="256"/>
- <Column id="goodflag" type="STRING" size="256"/>
- <Column id="goodcd" type="STRING" size="256"/>
- <Column id="goodnm" type="STRING" size="256"/>
- <Column id="indexnm" type="STRING" size="256"/>
- <Column id="indexgb" type="STRING" size="256"/>
- <Column id="reqflag" type="STRING" size="256"/>
- <Column id="lrgcd" type="STRING" size="256"/>
- <Column id="lrgnm" type="STRING" size="256"/>
- <Column id="mdlcd" type="STRING" size="256"/>
- <Column id="mdlnm" type="STRING" size="256"/>
- <Column id="prodcmpycd" type="STRING" size="256"/>
- <Column id="prodcmpynm" type="STRING" size="256"/>
- <Column id="goodspec" type="STRING" size="256"/>
- <Column id="goodmodel" type="STRING" size="256"/>
- <Column id="oldcd" type="STRING" size="256"/>
- <Column id="reqdeptcd" type="STRING" size="256"/>
- <Column id="reqprid" type="STRING" size="256"/>
- <Column id="instcdnm" type="STRING" size="256"/>
- <Column id="reqflagnm" type="STRING" size="256"/>
- <Column id="reqpridnm" type="STRING" size="256"/>
- <Column id="reqcheck" type="STRING" size="256"/>
- <Column id="purcdeptflag" type="STRING" size="256"/>
- <Column id="workflag" type="STRING" size="256"/>
- </ColumnInfo>
- <Rows>
- <Row>
- <Col id="refcond"/>
- <Col id="instcd"/>
- <Col id="goodflag">Y</Col>
- <Col id="goodcd"/>
- <Col id="goodnm"/>
- <Col id="indexnm"/>
- <Col id="indexgb"/>
- <Col id="reqflag"/>
- <Col id="lrgcd"/>
- <Col id="lrgnm"/>
- <Col id="mdlcd"/>
- <Col id="mdlnm"/>
- <Col id="prodcmpycd"/>
- <Col id="prodcmpynm"/>
- <Col id="goodspec"/>
- <Col id="goodmodel"/>
- <Col id="oldcd"/>
- <Col id="reqdeptcd"/>
- <Col id="reqprid"/>
- <Col id="instcdnm"/>
- <Col id="reqflagnm"/>
- <Col id="reqpridnm"/>
- <Col id="reqcheck"/>
- <Col id="purcdeptflag"/>
- <Col id="workflag"/>
- </Row>
- </Rows>
- </Dataset>
- <Dataset id="ds_main_GoodLists_goodlist" firefirstcount="0" firenextcount="0" useclientlayout="false" updatecontrol="true" enableevent="true" loadkeymode="keep" loadfiltermode="keep" reversesubsum="false" oncolumnchanged="ds_main_GoodLists_goodlist_oncolumnchanged">
- <ColumnInfo>
- <Column id="goodcd" type="STRING" size="256" sumtext="물품코드 "/>
- <Column id="goodnm" type="STRING" size="256" sumtext="goodnm "/>
- <Column id="goodspec" type="STRING" size="256" sumtext="물품규격 "/>
- <Column id="userqty" type="STRING" size="256" sumtext="사용자입력수량 "/>
- <Column id="deliveunit" type="STRING" size="256" sumtext="수불단위 "/>
- <Column id="estmamt" type="STRING" size="256" sumtext="견적가 "/>
- <Column id="goodmodel" type="STRING" size="256" sumtext="모델 "/>
- <Column id="prodcmpynm" type="STRING" size="256" sumtext="제조회사명 "/>
- <Column id="prodcmpycd" type="STRING" size="256" sumtext="제조회사코드 "/>
- <Column id="todd" type="STRING" size="256" sumtext="todd "/>
- <Column id="instcd" type="STRING" size="256" sumtext="기관코드 "/>
- <Column id="useyn" type="STRING" size="256" sumtext="사용여부 "/>
- <Column id="fromdd" type="STRING" size="256" sumtext="fromdd "/>
- <Column id="goodflag" type="STRING" size="256" sumtext="물품구분(r0025) y 진료재료, ... "/>
- <Column id="goodhngnm" type="STRING" size="256" sumtext="영문명 "/>
- <Column id="goodengnm" 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="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="mainmngtdeptcd" type="STRING" size="256" sumtext="주관리부서코드 "/>
- <Column id="mainmngtdeptnm" type="STRING" size="256" sumtext="주관리부서명 "/>
- <Column id="stocmngtflag" type="STRING" size="256" sumtext="재고관리기준 "/>
- <Column id="purcunit" type="STRING" size="256" sumtext="입고단위 "/>
- <Column id="purcunitnm" type="STRING" size="256" sumtext="입고단위 "/>
- <Column id="deliveunitnm" type="STRING" size="256" sumtext="수불단위 "/>
- <Column id="exchqty" type="STRING" size="256" sumtext="환산배수 "/>
- <Column id="minexch" type="STRING" size="256" sumtext="최소환산수량 "/>
- <Column id="divusenvalqty" type="STRING" size="256" sumtext="분할사용수치 "/>
- <Column id="edicd" type="STRING" size="256" sumtext="edi코드 "/>
- <Column id="reqflag" type="STRING" size="256" sumtext="청구기준 "/>
- <Column id="reqflagnm" type="STRING" size="256" sumtext="청구기준명 "/>
- <Column id="reqmthd" type="STRING" size="256" sumtext="청구방법 "/>
- <Column id="reqmthdnm" type="STRING" size="256" sumtext="청구방법명 "/>
- <Column id="reqprid" type="STRING" size="256" sumtext="청구주기 "/>
- <Column id="prodplce" type="STRING" size="256" sumtext="제조국 "/>
- <Column id="prodplcenm" type="STRING" size="256" sumtext="제조국명 "/>
- <Column id="maincustlastsuplplce" type="STRING" size="256" sumtext="최종공급처 "/>
- <Column id="maincustlastsuplplcenm" type="STRING" size="256" sumtext="최종공급처 "/>
- <Column id="suppcustcd" type="STRING" size="256" sumtext="보조거래처코드 "/>
- <Column id="suppcustnm" type="STRING" size="256" sumtext="보조거래처명 "/>
- <Column id="forgncurncyunitcost" type="STRING" size="256" sumtext="외화단가 "/>
- <Column id="curncyunit" type="STRING" size="256" sumtext="화폐단위 "/>
- <Column id="curncyunitnm" type="STRING" size="256" sumtext="화폐단위 "/>
- <Column id="goodunitcost" type="STRING" size="256" sumtext="제품단가 "/>
- <Column id="purcflag" type="STRING" size="256" sumtext="구매구분 "/>
- <Column id="purcflagnm" type="STRING" size="256" sumtext="구매구분명 "/>
- <Column id="safestocqty" type="STRING" size="256" sumtext="안전재고량 "/>
- <Column id="ddavguseqty" type="STRING" size="256" sumtext="일평균사용량 "/>
- <Column id="prepargodqty" type="STRING" size="256" sumtext="상비품량 "/>
- <Column id="basevol" type="STRING" size="256" sumtext="청구방법 1:처방집계 상비품 그외 안전 "/>
- <Column id="mmavgusescheqty" type="STRING" size="256" sumtext="월평균사용예정량 "/>
- <Column id="mmavguseqty" type="STRING" size="256" sumtext="월평균사용량 "/>
- <Column id="prprtystocpossndayno" type="STRING" size="256" sumtext="적정재고보유일수 "/>
- <Column id="stocqty" type="STRING" size="256" sumtext="재고량 "/>
- <Column id="curemealstocqty" type="STRING" size="256" sumtext="치료식현재고수량 "/>
- <Column id="empmealstocqty" type="STRING" size="256" sumtext="직원식현재고수량 "/>
- <Column id="empnigtmealstocqty" type="STRING" size="256" sumtext="직원야식현재고수량 "/>
- <Column id="curemealstocqty" type="STRING" size="256" sumtext="영양팀치료식 "/>
- <Column id="empmealstocqty" type="STRING" size="256" sumtext="영양팀직원식 "/>
- <Column id="empnigtmealstocqty" type="STRING" size="256" sumtext="영양팀직원야식 "/>
- <Column id="allsizeyn" type="STRING" size="256" sumtext="allsize여부 "/>
- <Column id="orgloc" type="STRING" size="256" sumtext="원산지 "/>
- <Column id="select" type="STRING" size="256" sumtext=" "/>
- <Column id="bnscd" type="STRING" size="256" sumtext=" "/>
- <Column id="oldcd" type="STRING" size="256" sumtext="구코드 "/>
- <Column id="goodpurccost" type="STRING" size="256" sumtext="납품가 "/>
- <Column id="reqpridnm" type="STRING" size="256" sumtext="청구주기명 "/>
- <Column id="allsizespecid" type="STRING" size="256" sumtext="allsize코드 "/>
- <Column id="reqfnldeptcd" type="STRING" size="256" sumtext="출고부서 "/>
- <Column id="reqcollcdeptcd" type="STRING" size="256" sumtext="청구취합부서 "/>
- <Column id="setunit" type="STRING" size="256" sumtext="포장구성단위 "/>
- <Column id="constunit" type="STRING" size="256" sumtext="포장구성단위 "/>
- <Column id="tmpreqflag" type="STRING" size="256" sumtext="임의청구구분 Y:청구가능 N:청구불가능 "/>
- <Column id="prcpqty" type="STRING" size="256" sumtext="처방수량 "/>
- <Column id="prcpunit" type="STRING" size="256" sumtext="처방단위 "/>
- <Column id="prprtystocqty" type="STRING" size="256" sumtext="적정재고량 "/>
- <Column id="prprtyreqqty" type="STRING" size="256" sumtext="적정청구량 "/>
- <Column id="wstyn" type="STRING" size="256" sumtext="의료폐기물 용기 여부 "/>
- <Column id="reqmutpleqty" type="STRING" size="256" sumtext="청구수량고정배수 "/>
- </ColumnInfo>
- </Dataset>
- <Dataset id="ds_main_list_reqmst_reqsetmst" 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="reqprid" type="STRING" size="256" sumtext="청구주기"/>
- <Column id="reqdeptcd" type="STRING" size="256" sumtext="청구부서코드"/>
- <Column id="reqdeptnm" type="STRING" size="256" sumtext="청구부서명"/>
- <Column id="reqflag" type="STRING" size="256" sumtext="청구구분"/>
- <Column id="goodsetnm" type="STRING" size="256" sumtext="물품set명"/>
- <Column id="oldgoodsetnm" type="STRING" size="256" sumtext="물품set명"/>
- </ColumnInfo>
- </Dataset>
- <Dataset id="ds_main_list_reqset_reqsetlist" firefirstcount="0" firenextcount="0" useclientlayout="true" updatecontrol="true" enableevent="true" loadkeymode="keep" loadfiltermode="keep" reversesubsum="false" oncolumnchanged="ds_main_list_reqset_reqsetlist_oncolumnchanged">
- <ColumnInfo>
- <Column id="chk" type="STRING" size="256" sumtext="Check "/>
- <Column id="instcd" type="STRING" size="256" sumtext="기관코드 "/>
- <Column id="reqdeptcd" type="STRING" size="256" sumtext="청구부서코드 "/>
- <Column id="reqdeptnm" type="STRING" size="256" sumtext="청구부서명 "/>
- <Column id="reqflag" type="STRING" size="256" sumtext="청구구분(r0025) "/>
- <Column id="goodsetnm" type="STRING" size="256" sumtext="물품set명 "/>
- <Column id="goodcd" type="STRING" size="256" sumtext="물품코드 "/>
- <Column id="goodflag" type="STRING" size="256" sumtext="물품코드 "/>
- <Column id="goodflagnm" type="STRING" size="256" sumtext="물품코드 "/>
- <Column id="goodnm" type="STRING" size="256" sumtext="물품명 "/>
- <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="goodqty" type="STRING" size="256" sumtext="물품수량(안전재고량) "/>
- <Column id="basevol" type="STRING" size="256" sumtext="처방구분 "/>
- <Column id="prepargodqty" type="STRING" size="256" sumtext="부서 상비품량 "/>
- <Column id="deliveunit" type="STRING" size="256" sumtext="수불단위 "/>
- <Column id="deliveunitnm" type="STRING" size="256" sumtext="수불단위명 "/>
- <Column id="purcunit" type="STRING" size="256" sumtext="구매단위 "/>
- <Column id="minexch" type="STRING" size="256" sumtext="최소청구량 "/>
- <Column id="stocqty" type="STRING" size="256" sumtext="재고량 "/>
- <Column id="ddavguseqty" type="STRING" size="256" sumtext="일평균사용량 "/>
- <Column id="cmt" type="STRING" size="256" sumtext="비고 "/>
- <Column id="allsizeyn" type="STRING" size="256" sumtext="allsizeyn "/>
- <Column id="allsizespecid" type="STRING" size="256" sumtext="allsizespecid "/>
- <Column id="allsizespecidnm" type="STRING" size="256" sumtext="allsizespecidnm "/>
- <Column id="select" 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="최종수정일시 "/>
- <Column id="maincustlastsuplplce" type="STRING" size="256" sumtext="주거래처 "/>
- <Column id="suppcustcd" type="STRING" size="256" sumtext="부거래처 "/>
- <Column id="safestocqty" type="STRING" size="256" sumtext="안전재고량(약국구매화면) "/>
- <Column id="exchqty" type="STRING" size="256" sumtext="환산수량(약국구매화면) "/>
- <Column id="goodunitcost" type="STRING" size="256" sumtext="단가(약국구매화면) "/>
- <Column id="calcqty" type="STRING" size="256" sumtext="계산량(약국구매화면) "/>
- <Column id="reqpridnm" type="STRING" size="256" sumtext="청구주기명 "/>
- <Column id="reqprid" type="STRING" size="256" sumtext="청구주기 "/>
- <Column id="reqflagnm" type="STRING" size="256" sumtext="청구구분명 "/>
- <Column id="allsizespecid" type="STRING" size="256" sumtext="allsizespecidold "/>
- <Column id="reqfnldeptcd" type="STRING" size="256" sumtext="출고부서 "/>
- <Column id="reqcollcdeptcd" type="STRING" size="256" sumtext="청구취합부서 "/>
- <Column id="reqmthd" type="STRING" size="256" sumtext="청구방법 1:처방,2:정량,3:일반"/>
- <Column id="reqmthdnm" type="STRING" size="256" sumtext="청구방법명 "/>
- <Column id="purcflag" type="STRING" size="256" sumtext="구매구분 1:구매,2:수탁,3:가납"/>
- <Column id="purcflagnm" type="STRING" size="256" sumtext="구매구분명 "/>
- <Column id="setunit" type="STRING" size="256" sumtext="포장구성단위 "/>
- <Column id="constunit" type="STRING" size="256" sumtext="포장구성단위 "/>
- <Column id="tmpreqflag" type="STRING" size="256" sumtext="임의청구구분 Y:청구가능 N:청구불가능 "/>
- </ColumnInfo>
- </Dataset>
- <Dataset id="ds_main_codelist" firefirstcount="0" firenextcount="0" useclientlayout="true" updatecontrol="true" enableevent="true" loadkeymode="keep" loadfiltermode="keep" reversesubsum="false" oncolumnchanged="ds_main_codelist_oncolumnchanged">
- <ColumnInfo>
- <Column id="allsizespecid" type="STRING" size="256" sumtext="ID"/>
- <Column id="goodspec" type="STRING" size="256" sumtext="규격"/>
- <Column id="goodmodel" type="STRING" size="256" sumtext="모델"/>
- <Column id="chk" type="STRING" size="256" sumtext="Check"/>
- <Column id="qty" type="STRING" size="256" sumtext="수량"/>
- </ColumnInfo>
- </Dataset>
- <Dataset id="ds_main_list_goodreq_goodreqlist" firefirstcount="0" firenextcount="0" useclientlayout="false" 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="instcd "/>
- <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="goodnm" type="STRING" size="256" sumtext="물품명 "/>
- <Column id="goodspec" type="STRING" size="256" sumtext="규격 "/>
- <Column id="goodmodel" type="STRING" size="256" sumtext="모델 "/>
- <Column id="prodcmpynm" type="STRING" size="256" sumtext="제조사 "/>
- <Column id="setunit" type="STRING" size="256" sumtext="포장구성단위 "/>
- <Column id="stdysubjnm" type="STRING" size="256" sumtext="연구과제명 "/>
- <Column id="stocqty" type="STRING" size="256" sumtext="재고수량 "/>
- <Column id="reqqty" type="STRING" size="256" sumtext="청구수량 "/>
- <Column id="requnit" type="STRING" size="256" sumtext="청구단위 "/>
- <Column id="deptaprvyn" type="STRING" size="256" sumtext="부서승인여부 "/>
- <Column id="deptaprvnm" type="STRING" size="256" sumtext="부서승인여부 "/>
- <Column id="groupbugt" type="STRING" size="256" sumtext="예산코드그룹 "/>
- <Column id="bugtnm" type="STRING" size="256" sumtext="예산명 "/>
- <Column id="projectnm" 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="workflag" type="STRING" size="256" sumtext="작업구분(청구,반납) "/>
- <Column id="reqmthdflag" type="STRING" size="256" sumtext="청구방법 "/>
- <Column id="deliveflag" type="STRING" size="256" sumtext="불출구분(정기,응급) "/>
- <Column id="reqpridflag" type="STRING" size="256" sumtext="청구주기구분 "/>
- <Column id="goodcd" type="STRING" size="256" sumtext="물품코드 "/>
- <Column id="allsizespecid" type="STRING" size="256" sumtext="allsize id "/>
- <Column id="goodflag" type="STRING" size="256" sumtext="goodflag "/>
- <Column id="purcunit" type="STRING" size="256" sumtext="단위 "/>
- <Column id="purcunitnm" type="STRING" size="256" sumtext="단위명 "/>
- <Column id="stocmngtflag" type="STRING" size="256" sumtext="재고구분 "/>
- <Column id="bugtcd" type="STRING" size="256" sumtext="예산코드 "/>
- <Column id="stdysubjno" type="STRING" size="256" sumtext="연구과제번호 "/>
- <Column id="reqdeptcd" type="STRING" size="256" sumtext="청구부서 "/>
- <Column id="reqcollcdeptcd" type="STRING" size="256" sumtext="청구취합부서 "/>
- <Column id="delivedeptcd" type="STRING" size="256" sumtext="출고부서 "/>
- <Column id="delivehopedd" 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="ddavguseqty" type="STRING" size="256" sumtext="일평균사용량 "/>
- <Column id="minexch" type="STRING" size="256" sumtext="최소청구량 "/>
- <Column id="basevol" type="STRING" size="256" sumtext="기준량 "/>
- <Column id="prereqqty" type="STRING" size="256" sumtext="기청구수량 "/>
- <Column id="adjtqty" type="STRING" size="256" sumtext="조정수량 "/>
- <Column id="preadjtqty" type="STRING" size="256" sumtext="조정수량 "/>
- <Column id="adjtrsn" type="STRING" size="256" sumtext="조정사유 "/>
- <Column id="predeptaprvyn" 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="acptcharid" type="STRING" size="256" sumtext="접수담당자id "/>
- <Column id="purcdmnddd" type="STRING" size="256" sumtext="구매요구일자 "/>
- <Column id="purcdmndno" type="STRING" size="256" sumtext="구매요구번호 "/>
- <Column id="purcdmndseq" type="STRING" size="256" sumtext="구매요구일련번호 "/>
- <Column id="colreqdd" type="STRING" size="256" sumtext="colreqdept "/>
- <Column id="colreqno" type="STRING" size="256" sumtext="colreqno "/>
- <Column id="colreqseqno" type="STRING" size="256" sumtext="colreqseqno "/>
- <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="cmt" type="STRING" size="256" sumtext="비고 "/>
- <Column id="chkcmt" type="STRING" size="256" sumtext="CHECK비고 "/>
- <Column id="reqarthyn" type="STRING" size="256" sumtext="청구승인권한여부 "/>
- <Column id="aprvyn" type="STRING" size="256" sumtext="발주승인여부 "/>
- <Column id="lrgnm" type="STRING" size="256" sumtext="발주승인여부 "/>
- <Column id="csrsafestocqty" type="STRING" size="256" sumtext="중앙공급실 청구pgm 조회용컬럼(비품기준량)"/>
- <Column id="csrddavguseqty" type="STRING" size="256" sumtext="중앙공급실 청구pgm 조회용컬럼(기준대여량)"/>
- <Column id="allsizespecidnm" type="STRING" size="256" sumtext="allsize id "/>
- <Column id="allsizeyn" type="STRING" size="256" sumtext="allsize 여부 "/>
- <Column id="studyinstcd" type="STRING" size="256" sumtext="산학청구기관 "/>
- <Column id="rgstqty" type="STRING" size="256" sumtext="집계수량(수액) "/>
- <Column id="exchqty" type="STRING" size="256" sumtext="환산수량 "/>
- <Column id="projectid" type="STRING" size="256" sumtext="프로젝트id "/>
- <Column id="reqdeptnm" type="STRING" size="256" sumtext="청구부서명 "/>
- <Column id="reqflagnm" type="STRING" size="256" sumtext="청구구분명 "/>
- <Column id="reqflagnm" type="STRING" size="256" sumtext="청구구분명 "/>
- <Column id="setunit" type="STRING" size="256" sumtext="포장구성단위 "/>
- <Column id="suppcustcd" type="STRING" size="256" sumtext="보조거래처 "/>
- <Column id="suppcustcdnm" type="STRING" size="256" sumtext="보조거래처명 "/>
- <Column id="befmonreqqty" type="STRING" size="256" sumtext="전월청구수량 "/>
- <Column id="jobstatus" type="STRING" size="256" sumtext="작업구분 "/>
- <Column id="constunit" 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="reqno" type="STRING" size="256" sumtext="청구번호 "/>
- <Column id="reqfix" type="STRING" size="256" sumtext="청구번호수정가능여부 "/>
- </ColumnInfo>
- </Dataset>
- <Dataset id="ds_cmb_workflag" 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_send_reqpsn" 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="emplno" type="STRING" size="256"/>
- <Column id="reqflag" type="STRING" size="256"/>
- <Column id="reqdeptcd" type="STRING" size="256"/>
- </ColumnInfo>
- <Rows>
- <Row>
- <Col id="instcd"/>
- <Col id="emplno"/>
- </Row>
- </Rows>
- </Dataset>
- <Dataset id="ds_main_ReqpsnLists_reqpsnlist" firefirstcount="0" firenextcount="0" useclientlayout="false" updatecontrol="true" enableevent="true" loadkeymode="keep" loadfiltermode="keep" reversesubsum="false"/>
- <Dataset id="ds_init_CopyData" firefirstcount="0" firenextcount="0" useclientlayout="false" updatecontrol="true" enableevent="true" loadkeymode="keep" loadfiltermode="keep" reversesubsum="false">
- <ColumnInfo>
- <Column id="value" type="STRING" size="256"/>
- <Column id="label" type="STRING" size="256"/>
- </ColumnInfo>
- <Rows>
- <Row/>
- </Rows>
- </Dataset>
- <Dataset id="ds_init_ReqDeptLists_reqdeptlist" firefirstcount="0" firenextcount="0" useclientlayout="false" updatecontrol="true" enableevent="true" loadkeymode="keep" loadfiltermode="keep" reversesubsum="false"/>
- <Dataset id="ds_main_DeptReqnoLists_reqnolist" firefirstcount="0" firenextcount="0" useclientlayout="false" updatecontrol="true" enableevent="true" loadkeymode="keep" loadfiltermode="keep" reversesubsum="false"/>
- <Dataset id="ds_init_cmb_goodflag" firefirstcount="0" firenextcount="0" useclientlayout="false" updatecontrol="true" enableevent="true" loadkeymode="keep" loadfiltermode="keep" reversesubsum="false"/>
- <Dataset id="ds_init_cmb_goodflagcopy" firefirstcount="0" firenextcount="0" useclientlayout="false" updatecontrol="true" enableevent="true" loadkeymode="keep" loadfiltermode="keep" reversesubsum="false"/>
- <Dataset id="ds_main_BugLists_bugtlist" firefirstcount="0" firenextcount="0" useclientlayout="false" updatecontrol="true" enableevent="true" loadkeymode="keep" loadfiltermode="keep" reversesubsum="false">
- <ColumnInfo>
- <Column id="groupbugt" type="STRING" size="256" sumtext="예산코드그룹 "/>
- <Column id="groupbugtnm" type="STRING" size="256" sumtext="예산코드그룹명 "/>
- <Column id="bugtcd" type="STRING" size="256" sumtext="계정코드 "/>
- <Column id="bugtcdnm" type="STRING" size="256" sumtext="계정명 "/>
- <Column id="projectyn" type="STRING" size="256" sumtext="프로젝트여부 "/>
- <Column id="projectid" type="STRING" size="256" sumtext="프로젝트id "/>
- <Column id="projectnm" 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="bugtproject" type="STRING" size="256" sumtext="예산코드+프로젝트 "/>
- <Column id="bugtprojectnm" type="STRING" size="256" sumtext="예산코드+프로젝트 "/>
- </ColumnInfo>
- </Dataset>
- <Dataset id="ds_send_reqmst" 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="reqdeptcd" type="STRING" size="256"/>
- <Column id="reqflag" type="STRING" size="256"/>
- <Column id="reqpridflag" type="STRING" size="256"/>
- </ColumnInfo>
- <Rows>
- <Row>
- <Col id="instcd"/>
- <Col id="reqdeptcd"/>
- <Col id="reqflag"/>
- <Col id="reqpridflag"/>
- </Row>
- </Rows>
- </Dataset>
- <Dataset id="ds_send_reqset" 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="reqdeptcd" type="STRING" size="256"/>
- <Column id="reqprid" type="STRING" size="256"/>
- <Column id="goodsetcd" type="STRING" size="256"/>
- <Column id="reqflag" type="STRING" size="256"/>
- <Column id="goodsetnm" type="STRING" size="256"/>
- </ColumnInfo>
- <Rows>
- <Row>
- <Col id="instcd"/>
- <Col id="reqdeptcd"/>
- <Col id="reqprid"/>
- <Col id="goodsetcd"/>
- <Col id="reqflag"/>
- <Col id="goodsetnm"/>
- </Row>
- </Rows>
- </Dataset>
- <Dataset id="ds_target_defaultvalue" firefirstcount="0" firenextcount="0" useclientlayout="false" updatecontrol="true" enableevent="true" loadkeymode="keep" loadfiltermode="keep" reversesubsum="false">
- <ColumnInfo>
- <Column id="reqdeptcd" type="STRING" size="256"/>
- </ColumnInfo>
- </Dataset>
- <Dataset id="ds_send" firefirstcount="0" firenextcount="0" useclientlayout="false" updatecontrol="true" enableevent="true" loadkeymode="keep" loadfiltermode="keep" reversesubsum="false">
- <ColumnInfo>
- <Column id="goodnm" type="STRING" size="256"/>
- <Column id="indexnm" type="STRING" size="256"/>
- </ColumnInfo>
- <Rows>
- <Row/>
- </Rows>
- </Dataset>
- <Dataset id="ds_copynode" firefirstcount="0" firenextcount="0" useclientlayout="false" updatecontrol="true" enableevent="true" loadkeymode="keep" loadfiltermode="keep" reversesubsum="false"/>
- <Dataset id="ds_send_allsize" firefirstcount="0" firenextcount="0" useclientlayout="false" updatecontrol="true" enableevent="true" loadkeymode="keep" loadfiltermode="keep" reversesubsum="false">
- <ColumnInfo>
- <Column id="goodcd" type="STRING" size="256"/>
- <Column id="instcd" type="STRING" size="256"/>
- <Column id="goodspec" type="STRING" size="256"/>
- </ColumnInfo>
- <Rows>
- <Row>
- <Col id="goodcd"/>
- <Col id="instcd"/>
- <Col id="goodspec"/>
- </Row>
- </Rows>
- </Dataset>
- </Objects>
- <Bind>
- <BindItem id="item0" compid="grp_sea.rdo_instcd" propid="value" datasetid="ds_send_goodreq" columnid="instcd"/>
- <BindItem id="item1" compid="grp_sea.opt_instcdgood" propid="value" datasetid="ds_send_goodreq" columnid="instcdgood"/>
- <BindItem id="item2" compid="grp_sea.cmb_workflag" propid="value" datasetid="ds_send_goodreq" columnid="workflag"/>
- <BindItem id="item3" compid="grp_sea.opt_reqfinaldept" propid="value" datasetid="ds_init" columnid="reqfinaldeptcd"/>
- <BindItem id="item4" compid="grp_sea.opt_projectyn" propid="value" datasetid="ds_send_goodreq" columnid="projectyn"/>
- <BindItem id="item5" compid="grp_sea.cmb_groupbugt" propid="value" datasetid="ds_send_goodreq" columnid="groupbugt"/>
- <BindItem id="item6" compid="grp_sea.cmb_studyinstcd" propid="value" datasetid="ds_send_goodreq" columnid="studyinstcd"/>
- <BindItem id="item7" compid="grp_sea.opt_requser" propid="value" datasetid="ds_init" columnid="requserno"/>
- <BindItem id="item8" compid="grp_sea.opt_requsernm" propid="value" datasetid="ds_init" columnid="requsernm"/>
- <BindItem id="item9" compid="grp_sea.rdo_inputmethod" propid="value" datasetid="ds_send_goodreq" columnid="inputmethod"/>
- <BindItem id="item10" compid="grp_sea.ipt_reqddnew" propid="value" datasetid="ds_send_goodreq" columnid="reqdd"/>
- <BindItem id="item11" compid="grp_sea.ipt_todd" propid="value" datasetid="ds_main_rsdhdeymlist" columnid="todd"/>
- <BindItem id="item12" compid="grp_sea.ipt_reqdd" propid="value" datasetid="ds_send_goodreq" columnid="reqdd"/>
- <BindItem id="item13" compid="grp_sea.cmb_reqno" propid="value" datasetid="ds_send_goodreq" columnid="reqno"/>
- <BindItem id="item14" compid="grp_sea.chk_reqnonew" propid="value" datasetid="ds_send_save_autoaprv" columnid="reqnonew"/>
- <BindItem id="item15" compid="grp_sea.cmb_bugtflag" propid="value" datasetid="ds_send_goodreq" columnid="bugtproject"/>
- <BindItem id="item16" compid="grp_sea.cmb_reqdeptcd" propid="value" datasetid="ds_send_goodreq" columnid="reqdeptcd"/>
- <BindItem id="item17" compid="grp_sea.ipt_stdysubjno" propid="value" datasetid="ds_send_goodreq" columnid="stdysubjno"/>
- <BindItem id="item18" compid="grp_sea.ipt_stdysubjnm" propid="value" datasetid="ds_send_goodreq" columnid="stdysubjnm"/>
- <BindItem id="item19" compid="grp_sea.opt_projectid" propid="value" datasetid="ds_send_goodreq" columnid="projectid"/>
- <BindItem id="item20" compid="grp_sea.opt_projectnm" propid="value" datasetid="ds_send_goodreq" columnid="projectnm"/>
- <BindItem id="item21" compid="grp_sea.opt_totamt" propid="value" datasetid="ds_send_goodreq" columnid="totamt"/>
- <BindItem id="item22" compid="grp_sea.opt_bugtexpcamt" propid="value" datasetid="ds_send_goodreq" columnid="bugtexpcamt"/>
- <BindItem id="item23" compid="grp_sea.opt_bugtexecamt" propid="value" datasetid="ds_send_goodreq" columnid="bugtexecamt"/>
- <BindItem id="item24" compid="grp_sea.opt_remainder" propid="value" datasetid="ds_send_goodreq" columnid=""/>
- <BindItem id="item25" compid="ipt_tempdeptcd" propid="value" datasetid="ds_tempdept" columnid="tempdeptcd"/>
- <BindItem id="item26" compid="ipt_tempdeptnm" propid="value" datasetid="ds_tempdept" columnid="tempdeptnm"/>
- <BindItem id="item28" compid="swt_search.gd_find.group2.cmb_reqflag" propid="value" datasetid="ds_init" columnid="reqflag"/>
- <BindItem id="item29" compid="swt_search.gd_find.group2.ipt_goodspec" propid="value" datasetid="ds_send_goodlist" columnid="goodspec"/>
- <BindItem id="item30" compid="swt_search.gd_find.group2.ipt_goodmodel" propid="value" datasetid="ds_send_goodlist" columnid="goodmodel"/>
- <BindItem id="item31" compid="swt_search.gd_find.group2.ipt_prodcmpycd" propid="value" datasetid="ds_send_goodlist" columnid="prodcmpycd"/>
- <BindItem id="item32" compid="swt_search.gd_find.group2.ipt_prodcmpynm" propid="value" datasetid="ds_send_goodlist" columnid="prodcmpynm"/>
- <BindItem id="item33" compid="swt_search.gd_find.group2.ipt_oldcd_search" propid="value" datasetid="ds_send_goodlist" columnid="oldcd"/>
- <BindItem id="item34" compid="swt_search.gd_find.group2.ipt_goodnm" propid="value" datasetid="ds_send_goodlist" columnid=""/>
- <BindItem id="item35" compid="swt_search.gd_find.group2.cmb_goodflag" propid="value" datasetid="ds_send_goodlist" columnid=""/>
- </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";
- include "mis_reqxp::SMRSD00500.xjs";
- var cmbworkflagold = "";
- function SMRSD00500_oninit(obj:Form, e:InitEventInfo)
- {
- frmf_initForm(obj);
- }
- function SMRSD00500_onload(obj:Form, e:LoadEventInfo)
- {
- grdf_initGrid(swt_search.gd_find.grd_goodlist);
- grdf_initGrid(swt_search.gd_set.grd_reqset);
- grdf_initGrid(swt_search.gd_set.grd_setlist);
- grdf_initGrid(grd_goodreq);
- grdf_setRowTypeIcon(grd_goodreq, 0);
- grdf_initGrid(grp_allsize.grd_codelist);
- grdf_setRowTypeIcon(grd_goodreq, 0);
- fInit();
- }
- function grp_sea_rdo_instcd_onitemchanged(obj:Radio, e:ItemChangeEventInfo)
- {
- fInstcdChange(rdo_instcd.value);
- }
- function grp_sea_cmb_studyinstcd_onitemchanged(obj:Combo, e:ItemChangeEventInfo)
- {
- grp_sea.btn_search.click();
- }
- function grp_sea_rdo_inputmethod_onitemchanged(obj:Radio, e:ItemChangeEventInfo)
- {
- if (obj.value = "1")
- {
- grd_goodreq.setCellProperty("Body", grd_goodreq.getBindCellIndex("Body", "stocqty"), "edittype", "none");
- grd_goodreq.setCellProperty("Body", grd_goodreq.getBindCellIndex("Body", "reqqty"), "edittype", "normal");
- }
- else
- {
- grd_goodreq.setCellProperty("Body", grd_goodreq.getBindCellIndex("Body", "stocqty"), "edittype", "normal");
- grd_goodreq.setCellProperty("Body", grd_goodreq.getBindCellIndex("Body", "reqqty"), "edittype", "none");
- }
- }
- function grp_sea_cmb_workflag_onitemchanged(obj:Combo, e:ItemChangeEventInfo)
- {
- fWorkFlagChange();
- }
- function grp_sea_cmb_workflag_onitemclick(obj:Combo, e:ListBoxClickEventInfo)
- {
- cmbworkflagold = obj.value;
- }
- function grp_sea_ipt_reqdd_onchanged(obj:Calendar, e:ChangeEventInfo)
- {
- misfGridInit(grd_goodreq);
- fDeptReqNoQuery();
- }
- function grp_sea_ipt_reqddnew_onchanged(obj:Calendar, e:ChangeEventInfo)
- {
- if (obj.value < utlf_getCurrentDate())
- {
- var nowdeptcd = rszfGetPurcDeptCd( sysf_getUserInfo("dutplceinstcd") );
- if (nowdeptcd != sysf_getUserInfo("dutplcecd") )
- {
- sysf_messageBox("신규의 경우는 현재일자 보다 작은 청구일자를 입력 ", "C001");
- grp_sea.ipt_reqddnew.value = utlf_getCurrentDate();
- }
- }
- }
- function grp_sea_cmb_reqno_onitemchanged(obj:Combo, e:ItemChangeEventInfo)
- {
- if (fCheckRetrieveData(false) == false)return;
- misfGridInit(grd_goodreq);
- }
- function grp_sea_chk_reqnonew_onclick(obj:CheckBox, e:ClickEventInfo)
- {
- if(obj.value == "Y")
- {
- grp_sea.cmb_reqno.value ="";
- }
- else
- {
- ds_send_save_autoaprv.setColumn(0, "reqnonew", "")
- }
- fNewReqNo();
- }
-
- function grp_sea_cmb_reqdeptcd_onitemchanged(obj:Combo, e:ItemChangeEventInfo)
- {
- misfGridInit(grd_goodreq);
-
- grp_sea.cmb_groupbugt.value = "";
- frmf_inputEnterKey("grp_sea.cmb_groupbugt", "onitemchanged", new ItemChangeEventInfo);
-
- if (swt_search.tabindex == 1)
- {
- fReqSetList() ;
- }
- fDeptReqNoQuery();
- if (!utlf_isNull(grp_sea.cmb_reqno.value))
- {
- grp_sea.btn_search.click();
- }
- }
- function grp_sea_cmb_groupbugt_onitemchanged(obj:Combo, e:ItemChangeEventInfo)
- {
- fAcctDataClear();
-
- if (!utlf_isNull(obj.value))
- {
- ds_send_goodreq.setColumn(0, "deptcd" , grp_sea.cmb_reqdeptcd.value);
- ds_send_goodreq.setColumn(0, "supacntcd4" , obj.value);
-
- var oParam = {};
- oParam.id = "TRRSD00414";
- oParam.service = "purccommonapp.PurcCommon";
- oParam.method = "reqGetBugtListHelp";
- oParam.inds = "req=ds_send_goodreq";
- oParam.outds = "ds_main_BugLists_bugtlist=bugtlist";
- oParam.async = false;
- //oParam.callback = "cf_TRRSD00414";
- tranf_submit(oParam);
- }
- }
- function ds_send_goodreq_oncolumnchanged(obj:Dataset, e:DSColChangeEventInfo)
- {
- if(e.columnid == "stdysubjno")
- {
- grp_sea.ipt_stdysubjno.value = e.newvalue;
- grp_sea.ipt_stdysubjno.setFocus();
-
- if(String(e.newvalue).length == 0)
- {
- grp_sea.ipt_stdysubjnm.value = "";
- }
- else
- {
- rszfValidationCheck("TRRSD00261", "studylist", "instcd,refcond,stdysubjno,reqdd",
- grp_sea.rdo_instcd.value + ",stdysubjno," + e.newvalue + "," + grp_sea.ipt_reqdd.value, "", "stdysubjno,stdysubjnm",
- grp_sea.ipt_stdysubjno, "SPRSD00260", "instcd,reqdd", grp_sea.rdo_instcd.value + "," + grp_sea.ipt_reqdd.value);
- }
- }
- if(e.columnid == "stdysubjnm")
- {
- grp_sea.ipt_stdysubjnm.value = e.newvalue;
- grp_sea.ipt_stdysubjnm.setFocus();
-
- if(String(e.newvalue).length == 0)
- {
- grp_sea.ipt_stdysubjno.value = "";
- }
- else
- {
- rszfValidationCheck("TRRSD00261", "studylist", "instcd,refcond,stdysubjnm,reqdd",
- grp_sea.rdo_instcd.value + ",stdysubjnm," + e.newvalue + "," + grp_sea.ipt_reqdd.value, "", "stdysubjno,stdysubjnm",
- grp_sea.ipt_stdysubjnm, "SPRSD00260", "instcd,reqdd", grp_sea.rdo_instcd.value + "," + grp_sea.ipt_reqdd.value);
- }
- }
- }
- function grp_sea_btn_stdysubjnm_onclick(obj:Button, e:ClickEventInfo)
- {
- rszfOpenPopUpListByWndName(grp_sea.ipt_stdysubjno,"","stdysubjno,stdysubjnm","SPRSD00260","instcd,reqdd", grp_sea.rdo_instcd.value + "," + grp_sea.ipt_reqdd.value);
- }
- function grp_sea_cmb_bugtflag_onitemchanged(obj:Combo, e:ItemChangeEventInfo)
- {
- fBugtflagChange();
- }
- function grp_sea_btn_search_onclick(obj:Button, e:ClickEventInfo)
- {
- fSearchData();
- }
- function ds_tempdept_oncolumnchanged(obj:Dataset, e:DSColChangeEventInfo)
- {
- if(e.columnid == "tempdeptcd")
- {
- ipt_tempdeptcd.value = e.newvalue;
- ipt_tempdeptcd.setFocus();
- if(utlf_isNull(e.newvalue))
- {
- ipt_tempdeptnm.value = "";
- }
- else
- {
- misfValidationCheck("02", "", "tempdeptcd,tempdeptnm");
- vDeptcd = e.newvalue;
-
- if (utlf_isNull(vDeptcd))
- {
- return
- }
-
- if(utlf_isNull(ds_init_ReqDeptLists_reqdeptlist.lookup("value", vDeptcd, "value")))
- {
- fAddReqDeptcdCombo();
- }
- else
- {
- grp_sea.cmb_reqdeptcd.value = vDeptcd;
- }
- }
- }
- if(e.columnid == "tempdeptnm")
- {
- ipt_tempdeptnm.value = e.newvalue;
- ipt_tempdeptnm.setFocus();
- if(utlf_isNull(e.newvalue))
- {
- ipt_tempdeptcd.value = "";
- }
- else
- {
- misfValidationCheck("02", "", "tempdeptcd,tempdeptnm");
- vDeptcd = ds_tempdept.getColumn(0, "tempdeptcd");
-
- if (utlf_isNull(vDeptcd))
- {
- return
- }
-
- if(utlf_isNull(ds_init_ReqDeptLists_reqdeptlist.lookup("value", vDeptcd, "value")))
- {
- fAddReqDeptcdCombo();
- }
- else
- {
- grp_sea.cmb_reqdeptcd.value = vDeptcd;
- }
- }
- }
- }
- function btn_tempdeptcd_onclick(obj:Button, e:ClickEventInfo)
- {
- var tempolddeptcd = ds_tempdept.getColumn(0, "tempdeptcd");
- misfOpenPopUpList("02", ipt_tempdeptcd,"","tempdeptcd,tempdeptnm");
-
- var vDeptcd = ds_tempdept.getColumn(0, "tempdeptcd");
-
- if (utlf_isNull(vDeptcd))
- {
- return
- }
- if (utlf_isNull(ds_init_ReqDeptLists_reqdeptlist.lookup("value", vDeptcd, "value")))
- {
- fAddReqDeptcdCombo();
- }
- else
- {
- grp_sea.cmb_reqdeptcd.value = vDeptcd;
- }
- }
- function swt_search_onchanged(obj:Tab, e:TabIndexChangeEventInfo)
- {
- if(obj.tabindex == 0)
- {
- fViewToggle(1);
- }
- else if(obj.tabindex == 1)
- {
- fViewToggle(2);
- fReqSetList();
- }
- else if(obj.tabindex == 2)
- {
- fViewToggle(2);
- if (utlf_isNull(ds_init.getColumn(0, "reqflag")))
- {
- swt_search.gd_find.group2.cmb_reqflag.index = 0;
- fReqFagChange(swt_search.gd_find.group2.cmb_reqflag.value);
- }
- fGoodListReady("","");
- }
- }
- function bbt_large_onclick(obj:Button, e:ClickEventInfo)
- {
- swt_search.tabindex = 0;
- }
- function bbt_right_onclick(obj:Button, e:ClickEventInfo)
- {
- swt_search.tabindex = 0;
- }
- function grp_sea_btn_purcdept_onclick(obj:Button, e:ClickEventInfo)
- {
- grp_sea.cmb_reqno.value = "";
- grp_sea.chk_reqnonew.value = "Y";
-
- fSearchData("P");
- if (ds_main_list_goodreq_goodreqlist.rowcount > 0)
- {
- frmf_inputEnterKey("grp_sea.chk_reqnonew", "onclick", new ClickEventInfo );
- }
- }
- function btn_init_onclick(obj:Button, e:ClickEventInfo)
- {
- fInitialize();
- }
- function grp_button_ckb_accept_onclick(obj:CheckBox, e:ClickEventInfo)
- {
- if(obj.value == "Y")
- {
- }
- else
- {
- ds_send_save_autoaprv.setColumn(0, "autoaprvyn", "");
- }
- }
- function grp_button_btn_insert_onclick(obj:Button, e:ClickEventInfo)
- {
- if(fCheckRetrieveData(true) == false)return;
- var addRow = ds_main_list_goodreq_goodreqlist.addRow();
- tar_cmt.value = "";
- fDefaultSetting(addRow);
-
- grd_goodreq.setCellPos(grd_goodreq.getBindCellIndex("body", "goodcd"));
- grd_goodreq.showEditor(true);
- }
- function grp_button_btn_delete_onclick(obj:Button, e:ClickEventInfo)
- {
- if (ds_main_list_goodreq_goodreqlist.getColumn(ds_main_list_goodreq_goodreqlist.rowposition, "acptflag") == "Y")
- {
- sysf_messageBox("구매접수된 내역은 삭제","E001");
- return;
- }
- if(grp_sea.cmb_reqpridflag.value != "1")
- {
- if(rszfGetPurcAuthInfoByCond("reqaprvflag") == "1" && ds_main_list_goodreq_goodreqlist.getColumn(ds_main_list_goodreq_goodreqlist.rowposition, "deptaprvyn") == "Y")
- {
- sysf_messageBox("미승인권자가 승인된 내역은 삭제","E001");
- return;
- }
- }
-
- misfGridIUD(grd_goodreq, "D");
- }
- function grp_button_btn_choice_onclick(obj:Button, e:ClickEventInfo)
- {
- fSettingReqAprv();
- }
- function grp_button_btn_excel_onclick(obj:Button, e:ClickEventInfo)
- {
- misfSaveExcel(grd_goodreq);
- }
- function grp_button_btn_print_onclick(obj:Button, e:ClickEventInfo)
- {
- if(swt_search.gd_find.group2.cmb_reqflag.text == "약품")
- {
- var objDOM = rptf_createDOM();
- rptf_setNodeListToDOM(objDOM, "/root/init/reqflaguth/reqauthlist", ds_main_list_goodreq_goodreqlist);
- rptf_setNodeListToDOM(objDOM, "/root/main/list/goodreq/goodreqlist", ds_main_list_goodreq_goodreqlist);
- var objParam = new Object();
- objParam.xml_data_XML1 = objDOM.documentElement.source;
- var option = "";
- rptf_exeReportPreview30(["RPRSD00401"],[objParam], option);
- }
- else
- {
- var objDOM = rptf_createDOM();
- rptf_setNodeListToDOM(objDOM, "/root/main/list/goodreq/goodreqlist", ds_main_list_goodreq_goodreqlist);
- var objParam = new Object();
- objParam.xml_data_XML1 = objDOM.documentElement.source;
- var option = "";
- rptf_exeReportPreview30(["RPRSD00402"],[objParam], option);
- }
- }
- function grp_button_btn_accept_onclick(obj:Button, e:ClickEventInfo)
- {
- fSaveReqAprv();
- }
- function grp_button_btn_save_onclick(obj:Button, e:ClickEventInfo)
- {
- fSaveData();
- }
- function ds_main_list_reqset_reqsetlist_oncolumnchanged(obj:Dataset, e:DSColChangeEventInfo)
- {
- if(e.columnid == "select")
- {
- obj.setColumn(e.row, "select", (e.newvalue == "true" || e.newvalue == 1) ? "true" : "false");
- }
- }
- function swt_search_gd_set_grd_setlist_oncellclick(obj:Grid, e:GridClickEventInfo)
- {
- fReqSetRead(ds_main_list_reqmst_reqsetmst.rowposition);
- }
- function swt_search_gd_set_grd_reqset_oncellclick(obj:Grid, e:GridClickEventInfo)
- {
- if (ds_main_list_reqset_reqsetlist.rowposition < 0) return;
- if (ds_main_list_reqset_reqsetlist.getColumn(ds_main_list_reqset_reqsetlist.rowposition, "select" ) == "true" && ds_main_list_reqset_reqsetlist.getColumn(ds_main_list_reqset_reqsetlist.rowposition, "reqprid") != grp_sea.cmb_reqpridflag.value)
- {
- ds_main_list_reqset_reqsetlist.setColumn(ds_main_list_reqset_reqsetlist.rowposition, "select" , "false");
- alert("청구불가능!! 청구주기를 확인하십시요 !!");
- }
-
- if (grp_sea.cmb_workflag.value == 3 || grp_sea.cmb_workflag.value == 4 || grp_sea.cmb_workflag.value == 5 )
- {
- if (ds_main_list_reqset_reqsetlist.getColumn(ds_main_list_reqset_reqsetlist.rowposition, "reqmthd" ) != "1" && ds_main_list_reqset_reqsetlist.getColumn(ds_main_list_reqset_reqsetlist.rowposition, "purcflag") != "2")
- {
- ds_main_list_reqset_reqsetlist.setColumn(ds_main_list_reqset_reqsetlist.rowposition, "select" , "false");
- alert("상비품이 아닙니다. 확인하십시요!!");
- }
- }
- }
- function swt_search_gd_set_btn_apply_onclick(obj:Button, e:ClickEventInfo)
- {
- fSelectDataApply(swt_search.gd_set.grd_reqset, grd_goodreq, "goodreqlist", "goodqty");
- }
- function swt_search_gd_find_group2_cmb_reqflag_onitemchanged(obj:Combo, e:ItemChangeEventInfo)
- {
- swt_search.gd_find.group2.ipt_mdlcd.value = "";
- fReqFagChange(obj.value);
- rszfLMSComboList(swt_search.gd_find.group2.cmb_goodflag.value, "", "", "swt_search.gd_find.group2.ipt_lrgcd", "", "L","Y");
- }
- function swt_search_gd_find_group2_ipt_lrgcd_onitemchanged(obj:Combo, e:ItemChangeEventInfo)
- {
- rszfLMSComboList(swt_search.gd_find.group2.cmb_goodflag.value, obj.value, "", "swt_search.gd_find.group2.ipt_mdlcd", "", "M", "Y");
- }
- function swt_search_gd_find_group2_ipt_goodcd_onkeyup(obj:Edit, e:KeyEventInfo)
- {
- if(e.keycode == 13)
- {
- obj.updateToDataset();
- grp_sea.btn_search.click();
- }
- }
- function swt_search_gd_find_group2_ipt_goodnm_onkeyup(obj:Edit, e:KeyEventInfo)
- {
- if(e.keycode == 13)
- {
- obj.updateToDataset();
- grp_sea.btn_search.click();
- }
- }
- function ds_send_goodlist_oncolumnchanged(obj:Dataset, e:DSColChangeEventInfo)
- {
- if(e.columnid == "prodcmpycd")
- {
- swt_search.gd_find.group2.ipt_prodcmpycd.value = e.newvalue;
- swt_search.gd_find.group2.ipt_prodcmpycd.setFocus();
-
- if(!utlf_isNull(e.newvalue))
- {
- rszfValidationCheck("TRRSD00161", "prodcmpylist", "refcond,prodcmpycd,prodcmpynm","prodcmpycd," + e.newvalue + "," ,"","prodcmpycd,prodcmpynm" ,swt_search.gd_find.group2.ipt_prodcmpycd,"SPRSD00160","","");
- }
- else
- {
- swt_search.gd_find.group2.ipt_prodcmpynm.value ="";
- }
- }
- if(e.columnid == "prodcmpynm")
- {
- swt_search.gd_find.group2.ipt_prodcmpynm.value = e.newvalue;
- swt_search.gd_find.group2.ipt_prodcmpynm.setFocus();
-
- if(!utlf_isNull(e.newvalue))
- {
- rszfValidationCheck("TRRSD00161", "prodcmpylist", "refcond,prodcmpycd,prodcmpynm","prodcmpynm,," + e.newvalue ,"","prodcmpycd,prodcmpynm" ,swt_search.gd_find.group2.ipt_prodcmpycd,"SPRSD00160","","");
- }
- else
- {
- swt_search.gd_find.group2.ipt_prodcmpycd.value ="";
- }
- }
- }
- function swt_search_gd_find_group2_btn_prodcmpycd_onclick(obj:Button, e:ClickEventInfo)
- {
- rszfOpenPopUpListByWndName(swt_search.gd_find.group2.ipt_prodcmpycd,"","prodcmpycd,prodcmpynm","SPRSD00160","","");
- }
- function swt_search_gd_find_bbt_goodfind_onclick(obj:Button, e:ClickEventInfo)
- {
- fGoodListSearch();
- }
- function ds_main_GoodLists_goodlist_oncolumnchanged(obj:Dataset, e:DSColChangeEventInfo)
- {
- if(e.columnid == "select")
- {
- obj.setColumn(e.row, "select", (e.newvalue == "true" || e.newvalue == 1) ? "true" : "false");
- }
- }
- function swt_search_gd_find_grd_goodlist_oncellclick(obj:Grid, e:GridClickEventInfo)
- {
- if (ds_main_list_goodreq_goodreqlist.rowposition < 0) return;
-
- if (ds_main_list_goodreq_goodreqlist.getColumn(ds_main_list_goodreq_goodreqlist.rowposition, "select" ) == "true" && ds_main_list_goodreq_goodreqlist.getColumn(ds_main_list_goodreq_goodreqlist.rowposition, "reqprid") != grp_sea.cmb_reqpridflag.value)
- {
- ds_main_list_goodreq_goodreqlist.setColumn(ds_main_list_goodreq_goodreqlist.rowposition, "select" , "false");
- alert("청구 불가능!! 청구주기를 확인하십시요 !!");
- return;
- }
- if (grp_sea.cmb_workflag.value == 3 || grp_sea.cmb_workflag.value == 4 || grp_sea.cmb_workflag.value == 5 )
- {
- if(ds_main_list_goodreq_goodreqlist.getColumn(ds_main_list_goodreq_goodreqlist.rowposition, "reqmthd") != "1" && ds_main_list_goodreq_goodreqlist.getColumn(ds_main_list_goodreq_goodreqlist.rowposition, "purcflag") != "2")
- {
- ds_main_list_goodreq_goodreqlist.setColumn(ds_main_list_goodreq_goodreqlist.rowposition, "select" , "false");
- alert("상비품이 아닙니다. 확인하십시요!!");
- return;
- }
- }
- }
- function swt_search_gd_find_bbt_apply2_onclick(obj:Button, e:ClickEventInfo)
- {
- fSelectDataApply(ds_main_GoodLists_goodlist, "goodreqlist", "minexch");
- }
- function grd_goodreq_oncellclick(obj:Grid, e:GridClickEventInfo)
- {
- grp_allsize.visible = false;
- grp_bugtflag.visible = false;
- }
- function grd_goodreq_onexpanddown(obj:Grid, e:GridMouseEventInfo)
- {
- fGoodreqButtonClick();
- }
- function ds_main_list_goodreq_goodreqlist_oncolumnchanged(obj:Dataset, e:DSColChangeEventInfo)
- {
- if(e.columnid == "deptaprvyn")
- {
- obj.setColumn(e.row, "deptaprvyn", (e.newvalue == "Y" || e.newvalue == 1) ? "Y" : "N");
- }
-
- if(e.columnid == "deptaprvyn")
- {
- if(gPurcAuth != "2" && grp_sea.cmb_reqpridflag.value != "1" )
- {
- obj.setColumn(e.row, "deptaprvyn", obj.getColumn(e.row, "predeptaprvyn"));
-
- if ( obj.getRowType(e.row) != 2)
- {
- obj.updatecontrol = false;
- obj.setRowType(e.row, "");
- obj.updatecontrol = true;
- }
- sysf_messageBox("청구승인권한이 없으므로 수정" ,"E001");
- }
- else
- {
- if(obj.getColumn(e.row, "aprvyn") == "Y")
- {
- obj.updatecontrol = false;
- obj.setRowType(e.row, "");
- obj.updatecontrol = true;
- sysf_messageBox("발주승인이 되었으므로 수정" ,"E001");
- }
- }
- }
- else if(e.columnid == "reqqty")
- {
- if (obj.getColumn(e.row, "acptflag") == "Y")
- {
- sysf_messageBox("구매접수된 내역은 수정","E001");
- return;
- }
- if (grp_sea.cmb_reqpridflag.value != "1")
- {
- if(gPurcAuth =="1" && obj.getColumn(e.row, "predeptaprvyn") == "Y")
- {
- obj.updatecontrol = false;
- obj.setRowType(e.row, "");
- obj.updatecontrol = true;
- sysf_messageBox("청구승인되었으므로 재고량을 수정" ,"E001");
- return;
- }
- }
-
- reqqty = e.newvalue;
- obj.setColumn(e.row, "basevol", reqqty);
-
- minexch = obj.getColumn(e.row, "minexch");
- if(minexch > 0 && (reqqty%minexch != 0))
- {
- sysf_messageBox(parseInt(e.row+1)+ "번째 물품은 최소청구량["+ minexch + "] 에 맞춰서" , "C001");
- obj.rowposition = e.row;
- grd_goodreq.setCellPos(grd_goodreq.getBindCellIndex("body", "reqqty"));
- grd_goodreq.showEditor(true);
-
- obj.setColumn(e.row, "reqqty","");
- return;
- }
- }
- else if (e.columnid == "stocqty" || e.columnid == "basevol")
- {
- basevol = obj.getColumn(e.row, "basevol");
- stocqty = obj.getColumn(e.row, "stocqty");
-
- if (obj.getColumn(e.row, "acptflag") == "Y")
- {
- sysf_messageBox("구매접수된 내역은 수정","E001");
- return;
- }
- if(grp_sea.cmb_reqpridflag.value != "1")
- {
- if(gPurcAuth =="1" && obj.getColumn(e.row, "predeptaprvyn") == "Y")
- {
- obj.updatecontrol = false;
- obj.setRowType(e.row, "");
- obj.updatecontrol = true;
- sysf_messageBox("청구승인되었으므로 재고량을 수정" ,"E001");
- return;
- }
- }
- if(e.columnid == "basevol")
- {
- basevol = e.newvalue;
- }
- else if(e.columnid == "stocqty")
- {
- stocqty = e.newvalue;
- }
-
- reqqty = obj.getColumn(e.row, "reqqty");
- minexch = obj.getColumn(e.row, "minexch");
- calc_reqqty = basevol - stocqty;
- obj.setColumn(e.row, "reqqty", calc_reqqty);
- }
- else if(e.columnid == "goodcd" && String(e.newvalue).length > 0)
- {
- ds_copynode.clearData();
- frmf_clearParameter("SMRSD00400_");
-
- rszfValidationCheck("TRRSD00191", "goodlist" , "refcond,instcd,goodflag,goodcd,goodnm,indexgb,indexnm,reqflag,reqdeptcd,reqprid","goodcd," + grp_sea.opt_instcdgood.value + ","
- + obj.getColumn(e.row, "goodflag") + ","
- + e.newvalue + ",,,,"
- + swt_search.gd_find.group2.cmb_reqflag.value + ","
- + grp_sea.cmb_reqdeptcd.value + ","
- + grp_sea.cmb_reqpridflag.value ,""
- , "goodcd,goodnm,goodspec,goodmodel,prodcmpynm,purcunit,stocqty,minexch,goodflag,ddavguseqty,reqflag,allsizeyn,delivedeptcd,setunit,constunit"
- , grd_goodreq,"SPRSD00190"
- , "instcd,goodflag,reqflag,reqdeptcd,reqprid","grp_sea.opt_instcdgood,swt_search.gd_find.group2.cmb_reqflag,grp_sea.cmb_reqdeptcd,grp_sea.cmb_reqpridflag","Y");
- if(String(obj.getColumn(e.row, "goodnm")).length > 0)
- {
- if(obj.getColumn(e.row, "minexch") > 0)
- {
- obj.setColumn(e.row, "reqqty" ,obj.getColumn(e.row, "minexch"));
- }
- else
- {
- obj.setColumn(e.row, "reqqty","1");
- }
- obj.setColumn(e.row, "reqmthdflag", "3");
- }
- var cur_row = e.row;
- var CSV = frmf_getParameter("SMRSD00400_");
- if(String(CSV).length == 0 && String(obj.getColumn(cur_row, "goodnm")).length == 0)
- {
- obj.setColumn(e.row, "goodcd", "");
- obj.setColumn(e.row, "goodnm", "");
- obj.setColumn(e.row, "goodspec", "");
- obj.setColumn(e.row, "goodflag", "");
- obj.setColumn(e.row, "goodmodel", "");
- obj.setColumn(e.row, "purcunit", "");
- obj.setColumn(e.row, "basevol", "");
- obj.setColumn(e.row, "stocqty", "");
- obj.setColumn(e.row, "reqqty", "");
- obj.setColumn(e.row, "requnit", "");
- obj.setColumn(e.row, "minexch", "");
- obj.setColumn(e.row, "ddavguseqty", "");
- obj.setColumn(e.row, "allsizeyn", "");
- obj.setColumn(e.row, "allsizespecid", "");
-
- grd_goodreq.setCellPos(grd_goodreq.getBindCellIndex("body", "goodcd"));
- grd_goodreq.showEditor(true);
- }
- else if(String(CSV).length > 0)
- {
- obj.setColumn(e.row, "goodcd", "");
- dsf_setCSVToDs("ds_copynode", CSV, "goodreqlist");
- fSettingGoodList("ds_copynode", "goodreqlist" , "userqty");
- }
- }
- else if(e.columnid == "deptaprvyn")
- {
- if(gPurcAuth != "2" && grp_sea.cmb_reqpridflag.value != "1" )
- {
- obj.getColumn(e.row, "deptaprvyn", obj.getColumn(e.row, "predeptaprvyn"));
-
- if (obj.getRowType(e.row) != 2)
- {
- obj.updatecontrol = false;
- obj.setRowType(e.row, "");
- obj.updatecontrol = true;
- }
- sysf_messageBox("청구승인권한이 없으므로 수정" ,"E001");
- }
- else if(obj.getColumn(e.row, "aprvyn") == "Y")
- {
- obj.updatecontrol = false;
- obj.setRowType(e.row, "");
- obj.updatecontrol = true;
- sysf_messageBox("발주승인이 되었으므로 수정" ,"E001");
- }
- else
- {
- obj.setColumn(e.row, "deptaprvdd" , utlf_getCurrentDate());
- }
- }
- }
- function grd_goodreq_onkeydown(obj:Grid, e:KeyEventInfo)
- {
- if(e.keycode == 13)
- {
- fGoodreqOnKeyDown();
- }
- else if(e.shiftKey)
- {
-
- }
- }
- function grp_bugtflag_combo3_onitemchanged(obj:Combo, e:ItemChangeEventInfo)
- {
- fAcctDataClear();
-
- if (!utlf_isNull(grp_sea.cmb_groupbugt.value))
- {
- ds_send_goodreq.setColumn(0, "deptcd" , grp_sea.cmb_reqdeptcd.value);
- ds_send_goodreq.setColumn(0, "supacntcd4", grp_sea.cmb_groupbugt.value);
-
- var oParam = {};
- oParam.id = "TRRSD00414";
- oParam.service = "purccommonapp.PurcCommon";
- oParam.method = "reqGetBugtListHelp";
- oParam.inds = "req=ds_send_goodreq";
- oParam.outds = "ds_main_BugLists_bugtlist=bugtlist";
- oParam.async = false;
- //oParam.callback = "cf_TRRSD00414";
- tranf_submit(oParam);
- }
- }
- function grp_bugtflag_combo2_onitemchanged(obj:Combo, e:ItemChangeEventInfo)
- {
- fBugtflagChange();
- }
- function grp_bugtflag_button2_onclick(obj:Button, e:ClickEventInfo)
- {
- fBugtDataSet(ds_main_list_goodreq_goodreqlist.rowposition);
- grp_bugtflag.visible = false;
- }
- function grp_allsize_btn_confirm_onclick(obj:Button, e:ClickEventInfo)
- {
- fAllSizeSelect();
- }
- function ds_main_codelist_oncolumnchanged(obj:Dataset, e:DSColChangeEventInfo)
- {
- if(e.columnid == "chk")
- {
- obj.setColumn(e.row, "chk", (e.newvalue == "true" || e.newvalue == 1) ? "true" : "false");
- }
- }
- ]]></Script>
- </Form>
- </FDL>
|