| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126312731283129313031313132313331343135313631373138313931403141314231433144314531463147314831493150315131523153315431553156315731583159316031613162316331643165316631673168316931703171317231733174317531763177317831793180318131823183318431853186318731883189319031913192319331943195319631973198319932003201320232033204320532063207320832093210321132123213321432153216321732183219322032213222322332243225322632273228322932303231323232333234323532363237323832393240324132423243324432453246324732483249325032513252325332543255325632573258325932603261326232633264326532663267326832693270327132723273327432753276327732783279328032813282328332843285328632873288328932903291329232933294329532963297329832993300330133023303330433053306330733083309331033113312331333143315331633173318331933203321332233233324332533263327332833293330333133323333333433353336333733383339334033413342334333443345334633473348334933503351335233533354335533563357335833593360336133623363336433653366336733683369337033713372337333743375337633773378337933803381338233833384338533863387338833893390339133923393339433953396339733983399340034013402340334043405340634073408340934103411341234133414341534163417341834193420342134223423342434253426342734283429343034313432343334343435343634373438343934403441344234433444344534463447344834493450345134523453345434553456345734583459346034613462346334643465346634673468346934703471347234733474347534763477347834793480348134823483348434853486348734883489349034913492349334943495349634973498349935003501350235033504350535063507350835093510351135123513351435153516351735183519352035213522352335243525352635273528352935303531353235333534353535363537353835393540354135423543354435453546354735483549355035513552355335543555355635573558355935603561356235633564356535663567356835693570357135723573357435753576357735783579358035813582358335843585358635873588358935903591359235933594359535963597359835993600360136023603360436053606360736083609361036113612361336143615361636173618361936203621362236233624362536263627362836293630363136323633363436353636363736383639364036413642364336443645364636473648364936503651365236533654365536563657365836593660366136623663366436653666366736683669367036713672367336743675367636773678367936803681368236833684368536863687368836893690369136923693369436953696369736983699370037013702370337043705370637073708370937103711371237133714371537163717371837193720372137223723372437253726372737283729373037313732373337343735373637373738373937403741374237433744374537463747374837493750375137523753375437553756375737583759376037613762376337643765376637673768376937703771377237733774377537763777377837793780378137823783378437853786378737883789379037913792379337943795379637973798379938003801380238033804380538063807380838093810381138123813381438153816381738183819382038213822382338243825382638273828382938303831383238333834383538363837383838393840384138423843384438453846384738483849385038513852385338543855385638573858385938603861386238633864386538663867386838693870387138723873387438753876387738783879388038813882388338843885388638873888388938903891389238933894389538963897389838993900390139023903390439053906390739083909391039113912391339143915391639173918391939203921392239233924392539263927392839293930393139323933393439353936393739383939394039413942394339443945394639473948394939503951395239533954395539563957395839593960396139623963396439653966396739683969397039713972397339743975397639773978397939803981398239833984398539863987398839893990399139923993399439953996399739983999400040014002400340044005400640074008400940104011401240134014401540164017401840194020402140224023402440254026402740284029403040314032 |
- using System.Data;
- namespace Pur.configure
- {
- partial class FrmPurMat
- {
- /// <summary>
- /// Required designer variable.
- /// </summary>
- private System.ComponentModel.IContainer components = null;
- /// <summary>
- /// Clean up any resources being used.
- /// </summary>
- /// <param name="disposing">true if managed resources should be disposed; otherwise, false.</param>
- protected override void Dispose(bool disposing)
- {
- if (disposing && (components != null))
- {
- components.Dispose();
- }
- base.Dispose(disposing);
- }
- #region Windows Form Designer generated code
- /// <summary>
- /// Required method for Designer support - do not modify
- /// the contents of this method with the code editor.
- /// </summary>
- private void InitializeComponent()
- {
- this.components = new System.ComponentModel.Container();
- Infragistics.Win.UltraWinEditors.EditorButton editorButton1 = new Infragistics.Win.UltraWinEditors.EditorButton();
- Infragistics.Win.Appearance appearance4 = new Infragistics.Win.Appearance();
- Infragistics.Win.UltraWinEditors.EditorButton editorButton2 = new Infragistics.Win.UltraWinEditors.EditorButton();
- Infragistics.Win.Appearance appearance10 = new Infragistics.Win.Appearance();
- Infragistics.Win.UltraWinEditors.EditorButton editorButton3 = new Infragistics.Win.UltraWinEditors.EditorButton();
- Infragistics.Win.Appearance appearance12 = new Infragistics.Win.Appearance();
- Infragistics.Win.ValueListItem valueListItem30 = new Infragistics.Win.ValueListItem();
- Infragistics.Win.ValueListItem valueListItem8 = new Infragistics.Win.ValueListItem();
- Infragistics.Win.ValueListItem valueListItem9 = new Infragistics.Win.ValueListItem();
- Infragistics.Win.ValueListItem valueListItem31 = new Infragistics.Win.ValueListItem();
- Infragistics.Win.ValueListItem valueListItem22 = new Infragistics.Win.ValueListItem();
- Infragistics.Win.ValueListItem valueListItem23 = new Infragistics.Win.ValueListItem();
- Infragistics.Win.ValueListItem valueListItem40 = new Infragistics.Win.ValueListItem();
- Infragistics.Win.ValueListItem valueListItem41 = new Infragistics.Win.ValueListItem();
- Infragistics.Win.UltraWinEditors.EditorButton editorButton4 = new Infragistics.Win.UltraWinEditors.EditorButton();
- Infragistics.Win.Appearance appearance5 = new Infragistics.Win.Appearance();
- Infragistics.Win.UltraWinEditors.EditorButton editorButton5 = new Infragistics.Win.UltraWinEditors.EditorButton();
- Infragistics.Win.Appearance appearance14 = new Infragistics.Win.Appearance();
- Infragistics.Win.UltraWinEditors.EditorButton editorButton6 = new Infragistics.Win.UltraWinEditors.EditorButton();
- Infragistics.Win.Appearance appearance3 = new Infragistics.Win.Appearance();
- Infragistics.Win.ValueListItem valueListItem53 = new Infragistics.Win.ValueListItem();
- Infragistics.Win.ValueListItem valueListItem54 = new Infragistics.Win.ValueListItem();
- Infragistics.Win.ValueListItem valueListItem52 = new Infragistics.Win.ValueListItem();
- Infragistics.Win.ValueListItem valueListItem1 = new Infragistics.Win.ValueListItem();
- Infragistics.Win.ValueListItem valueListItem55 = new Infragistics.Win.ValueListItem();
- Infragistics.Win.ValueListItem valueListItem56 = new Infragistics.Win.ValueListItem();
- Infragistics.Win.ValueListItem valueListItem57 = new Infragistics.Win.ValueListItem();
- Infragistics.Win.ValueListItem valueListItem20 = new Infragistics.Win.ValueListItem();
- Infragistics.Win.ValueListItem valueListItem21 = new Infragistics.Win.ValueListItem();
- Infragistics.Win.ValueListItem valueListItem32 = new Infragistics.Win.ValueListItem();
- Infragistics.Win.ValueListItem valueListItem33 = new Infragistics.Win.ValueListItem();
- Infragistics.Win.ValueListItem valueListItem34 = new Infragistics.Win.ValueListItem();
- Infragistics.Win.ValueListItem valueListItem35 = new Infragistics.Win.ValueListItem();
- Infragistics.Win.ValueListItem valueListItem46 = new Infragistics.Win.ValueListItem();
- Infragistics.Win.ValueListItem valueListItem47 = new Infragistics.Win.ValueListItem();
- Infragistics.Win.ValueListItem valueListItem10 = new Infragistics.Win.ValueListItem();
- Infragistics.Win.ValueListItem valueListItem13 = new Infragistics.Win.ValueListItem();
- Infragistics.Win.ValueListItem valueListItem14 = new Infragistics.Win.ValueListItem();
- Infragistics.Win.ValueListItem valueListItem6 = new Infragistics.Win.ValueListItem();
- Infragistics.Win.ValueListItem valueListItem7 = new Infragistics.Win.ValueListItem();
- Infragistics.Win.ValueListItem valueListItem26 = new Infragistics.Win.ValueListItem();
- Infragistics.Win.ValueListItem valueListItem27 = new Infragistics.Win.ValueListItem();
- Infragistics.Win.ValueListItem valueListItem28 = new Infragistics.Win.ValueListItem();
- Infragistics.Win.ValueListItem valueListItem29 = new Infragistics.Win.ValueListItem();
- Infragistics.Win.UltraWinEditors.EditorButton editorButton7 = new Infragistics.Win.UltraWinEditors.EditorButton();
- Infragistics.Win.Appearance appearance6 = new Infragistics.Win.Appearance();
- Infragistics.Win.UltraWinEditors.EditorButton editorButton8 = new Infragistics.Win.UltraWinEditors.EditorButton();
- Infragistics.Win.Appearance appearance7 = new Infragistics.Win.Appearance();
- Infragistics.Win.UltraWinEditors.EditorButton editorButton9 = new Infragistics.Win.UltraWinEditors.EditorButton();
- Infragistics.Win.Appearance appearance1 = new Infragistics.Win.Appearance();
- Infragistics.Win.ValueListItem valueListItem11 = new Infragistics.Win.ValueListItem();
- Infragistics.Win.ValueListItem valueListItem12 = new Infragistics.Win.ValueListItem();
- Infragistics.Win.UltraWinEditors.EditorButton editorButton10 = new Infragistics.Win.UltraWinEditors.EditorButton();
- Infragistics.Win.Appearance appearance13 = new Infragistics.Win.Appearance();
- Infragistics.Win.ValueListItem valueListItem24 = new Infragistics.Win.ValueListItem();
- Infragistics.Win.ValueListItem valueListItem25 = new Infragistics.Win.ValueListItem();
- Infragistics.Win.UltraWinEditors.EditorButton editorButton11 = new Infragistics.Win.UltraWinEditors.EditorButton();
- Infragistics.Win.Appearance appearance9 = new Infragistics.Win.Appearance();
- Infragistics.Win.ValueListItem valueListItem4 = new Infragistics.Win.ValueListItem();
- Infragistics.Win.ValueListItem valueListItem5 = new Infragistics.Win.ValueListItem();
- Infragistics.Win.ValueListItem valueListItem2 = new Infragistics.Win.ValueListItem();
- Infragistics.Win.ValueListItem valueListItem3 = new Infragistics.Win.ValueListItem();
- Infragistics.Win.UltraWinEditors.EditorButton editorButton12 = new Infragistics.Win.UltraWinEditors.EditorButton();
- Infragistics.Win.Appearance appearance11 = new Infragistics.Win.Appearance();
- Infragistics.Win.UltraWinGrid.UltraGridBand ultraGridBand1 = new Infragistics.Win.UltraWinGrid.UltraGridBand("Table2", -1);
- Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn1 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("SUPPCODE");
- Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn2 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("SUPPNAME");
- Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn3 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("STATUS");
- Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn4 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("ISDEFAULT");
- Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn5 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("delvryRangeTpe");
- Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn6 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("delvryRangeMin");
- Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn7 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("delvryRangeMax");
- Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn8 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("id");
- Infragistics.Win.UltraWinGrid.UltraGridBand ultraGridBand2 = new Infragistics.Win.UltraWinGrid.UltraGridBand("Table3", -1);
- Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn9 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("ITEMCODE");
- Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn10 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("ItemAttr");
- Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn11 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("ORDERNUM");
- Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn12 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("ITEMUOM");
- Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn13 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("ITEMUOMCONEFFICIENT");
- Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn14 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("ITEMUSEUOM");
- Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn15 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("ITEMATTR1");
- Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn16 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("ITEMATTR2");
- Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn17 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("ITEMATTR3");
- Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn18 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("ITEMATTR4");
- Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn19 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("ItemAttrId");
- Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn20 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("ISDEFAULT");
- Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn21 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("REMARK");
- Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn22 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("ITEMATTRCODE");
- Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn23 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("ITEMATTRCLASS");
- Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn24 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("ITEMATTRCLASSNAME");
- Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn25 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("txtIsLevel");
- Infragistics.Win.UltraWinGrid.UltraGridBand ultraGridBand3 = new Infragistics.Win.UltraWinGrid.UltraGridBand("Table4", -1);
- Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn26 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("STANDARDSCODE");
- Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn27 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("ISDEFAULT");
- Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn28 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("ORDERNUM");
- Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn29 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("REMARK");
- Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn30 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("ITEMSTANDARDSID");
- Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn31 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("STANDARDSID");
- Infragistics.Win.UltraWinGrid.UltraGridBand ultraGridBand4 = new Infragistics.Win.UltraWinGrid.UltraGridBand("Table5", -1);
- Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn32 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("ITEMUOMID");
- Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn33 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("UOMCODE");
- Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn34 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("UOMNAME");
- Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn35 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("ITEMUOMCONEFFICIENT");
- Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn36 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("WEIGHTUNIT");
- Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn37 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("WEIGHTUNITCODE");
- Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn38 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("ISDEFAULT");
- Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn39 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("REMARK");
- Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn40 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("Validflag");
- Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn41 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("CREATENAME");
- Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn42 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("CREATETIME");
- System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(FrmPurMat));
- Infragistics.Win.UltraWinTabControl.UltraTab ultraTab1 = new Infragistics.Win.UltraWinTabControl.UltraTab();
- Infragistics.Win.UltraWinTabControl.UltraTab ultraTab2 = new Infragistics.Win.UltraWinTabControl.UltraTab();
- Infragistics.Win.UltraWinTabControl.UltraTab ultraTab3 = new Infragistics.Win.UltraWinTabControl.UltraTab();
- Infragistics.Win.UltraWinTabControl.UltraTab ultraTab7 = new Infragistics.Win.UltraWinTabControl.UltraTab();
- Infragistics.Win.UltraWinTabControl.UltraTab ultraTab9 = new Infragistics.Win.UltraWinTabControl.UltraTab();
- Infragistics.Win.UltraWinTree.Override _override1 = new Infragistics.Win.UltraWinTree.Override();
- Infragistics.Win.Appearance appearance8 = new Infragistics.Win.Appearance();
- Infragistics.Win.Appearance appearance2 = new Infragistics.Win.Appearance();
- Infragistics.Win.UltraWinTabControl.UltraTab ultraTab4 = new Infragistics.Win.UltraWinTabControl.UltraTab();
- Infragistics.Win.UltraWinTabControl.UltraTab ultraTab5 = new Infragistics.Win.UltraWinTabControl.UltraTab();
- Infragistics.Win.UltraWinTabControl.UltraTab ultraTab6 = new Infragistics.Win.UltraWinTabControl.UltraTab();
- Infragistics.Win.UltraWinTabControl.UltraTab ultraTab8 = new Infragistics.Win.UltraWinTabControl.UltraTab();
- Infragistics.Win.UltraWinGrid.UltraGridBand ultraGridBand5 = new Infragistics.Win.UltraWinGrid.UltraGridBand("Table1", -1);
- Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn43 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("ITEMCODE");
- Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn44 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("ITEMNAME");
- Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn45 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("ITEMSPEC");
- Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn46 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("WEIGHTUNIT");
- Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn47 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("ARCCODE");
- Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn48 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("ARCITEM");
- Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn49 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("CREATENAME");
- Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn50 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("CREATETIME");
- Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn51 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("UPDATENAME");
- Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn52 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("UPDATETIME");
- Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn53 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("BUYERROLEID");
- Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn54 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("PLANNERROLEID");
- Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn55 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("ITEMDESC");
- Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn56 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("BATCHFLAG");
- Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn57 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("WEIGHTUNITCODE");
- Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn58 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("VALIDFLAG");
- Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn59 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("BUGPRICE");
- Infragistics.Win.ValueListItem valueListItem15 = new Infragistics.Win.ValueListItem();
- Infragistics.Win.ValueListItem valueListItem16 = new Infragistics.Win.ValueListItem();
- Infragistics.Win.ValueListItem valueListItem17 = new Infragistics.Win.ValueListItem();
- Infragistics.Win.ValueListItem valueListItem18 = new Infragistics.Win.ValueListItem();
- Infragistics.Win.ValueListItem valueListItem19 = new Infragistics.Win.ValueListItem();
- Infragistics.Win.ValueListItem valueListItem48 = new Infragistics.Win.ValueListItem();
- Infragistics.Win.ValueListItem valueListItem49 = new Infragistics.Win.ValueListItem();
- Infragistics.Win.ValueListItem valueListItem50 = new Infragistics.Win.ValueListItem();
- Infragistics.Win.ValueListItem valueListItem51 = new Infragistics.Win.ValueListItem();
- this.ultraTabPageControl1 = new Infragistics.Win.UltraWinTabControl.UltraTabPageControl();
- this.panel1 = new System.Windows.Forms.Panel();
- this.ultraGroupBox6 = new Infragistics.Win.Misc.UltraGroupBox();
- this.txt_INV_PHYSIC_USERID = new Infragistics.Win.UltraWinEditors.UltraTextEditor();
- this.label77 = new System.Windows.Forms.Label();
- this.txt_ItemArcCodeName = new Infragistics.Win.UltraWinEditors.UltraTextEditor();
- this.txt_ItemArcCode = new Infragistics.Win.UltraWinEditors.UltraTextEditor();
- this.label76 = new System.Windows.Forms.Label();
- this.label74 = new System.Windows.Forms.Label();
- this.label73 = new System.Windows.Forms.Label();
- this.label72 = new System.Windows.Forms.Label();
- this.label71 = new System.Windows.Forms.Label();
- this.txt_DELVRY_RANGE_MIN = new Infragistics.Win.UltraWinEditors.UltraNumericEditor();
- this.txt_DELVRY_RANGE_MAX = new Infragistics.Win.UltraWinEditors.UltraNumericEditor();
- this.txt_DELVRY_RANGE_TPE = new Infragistics.Win.UltraWinEditors.UltraComboEditor();
- this.label70 = new System.Windows.Forms.Label();
- this.txt_PC_FLAG = new Infragistics.Win.UltraWinEditors.UltraComboEditor();
- this.label69 = new System.Windows.Forms.Label();
- this.txt_BASE_UNIT_VALUE = new Infragistics.Win.UltraWinEditors.UltraTextEditor();
- this.cb_BASE_UNIT_FLAG = new System.Windows.Forms.CheckBox();
- this.txt_IS_BUDGET_CTRL = new Infragistics.Win.UltraWinEditors.UltraComboEditor();
- this.label63 = new System.Windows.Forms.Label();
- this.label61 = new System.Windows.Forms.Label();
- this.Ultcmb_WEIGHT_UNIT_CODE = new Infragistics.Win.UltraWinEditors.UltraTextEditor();
- this.label52 = new System.Windows.Forms.Label();
- this.Ultcmb_WEIGHT_UNIT = new Infragistics.Win.UltraWinEditors.UltraTextEditor();
- this.txt_PLANNER_ROLE_NAME = new Infragistics.Win.UltraWinEditors.UltraTextEditor();
- this.txt_BUYER_ROLE_NAME = new Infragistics.Win.UltraWinEditors.UltraTextEditor();
- this.label3 = new System.Windows.Forms.Label();
- this.label26 = new System.Windows.Forms.Label();
- this.label22 = new System.Windows.Forms.Label();
- this.Ultcmb_RECEIVE_TYPE = new Infragistics.Win.UltraWinEditors.UltraComboEditor();
- this.Ultcmb_BATCH_FLAG = new Infragistics.Win.UltraWinEditors.UltraComboEditor();
- this.Ultcmb_PUR_STANDARDS = new Infragistics.Win.UltraWinEditors.UltraComboEditor();
- this.Ultcmb_INV_WASTE_FAC_UOM = new Infragistics.Win.UltraWinEditors.UltraComboEditor();
- this.Ultcmb_METERING_FLAG = new Infragistics.Win.UltraWinEditors.UltraComboEditor();
- this.Ultcmb_PRICE_TYPE = new Infragistics.Win.UltraWinEditors.UltraComboEditor();
- this.Ultcmb_CURRENCY_CODE = new Infragistics.Win.UltraWinEditors.UltraComboEditor();
- this.Ultcmb_LIFE_CYCLE_UOM = new Infragistics.Win.UltraWinEditors.UltraComboEditor();
- this.label25 = new System.Windows.Forms.Label();
- this.label27 = new System.Windows.Forms.Label();
- this.txt_PUR_STANDARDS_CODE = new System.Windows.Forms.TextBox();
- this.label28 = new System.Windows.Forms.Label();
- this.label29 = new System.Windows.Forms.Label();
- this.label30 = new System.Windows.Forms.Label();
- this.label19 = new System.Windows.Forms.Label();
- this.txt_MIN_STOCK = new System.Windows.Forms.TextBox();
- this.label20 = new System.Windows.Forms.Label();
- this.txt_MAX_STOCK = new System.Windows.Forms.TextBox();
- this.label21 = new System.Windows.Forms.Label();
- this.txt_LEAD_TIME = new System.Windows.Forms.TextBox();
- this.txt_INV_WASTE_FAC = new System.Windows.Forms.TextBox();
- this.label23 = new System.Windows.Forms.Label();
- this.label24 = new System.Windows.Forms.Label();
- this.txt_LIFE_CYCLE = new System.Windows.Forms.TextBox();
- this.label18 = new System.Windows.Forms.Label();
- this.txt_MIN_QTY = new System.Windows.Forms.TextBox();
- this.label17 = new System.Windows.Forms.Label();
- this.txt_QTY_MULTIPLE = new System.Windows.Forms.TextBox();
- this.label16 = new System.Windows.Forms.Label();
- this.label15 = new System.Windows.Forms.Label();
- this.txt_BUG_PRICE = new System.Windows.Forms.TextBox();
- this.label14 = new System.Windows.Forms.Label();
- this.txt_LAST_PRICE = new System.Windows.Forms.TextBox();
- this.label13 = new System.Windows.Forms.Label();
- this.label12 = new System.Windows.Forms.Label();
- this.label11 = new System.Windows.Forms.Label();
- this.txt_MONTH_END_AVG_PRICE = new System.Windows.Forms.TextBox();
- this.label10 = new System.Windows.Forms.Label();
- this.label9 = new System.Windows.Forms.Label();
- this.txt_ITEM_NAME = new System.Windows.Forms.TextBox();
- this.label8 = new System.Windows.Forms.Label();
- this.txt_ITEM_DESC_E = new System.Windows.Forms.TextBox();
- this.label7 = new System.Windows.Forms.Label();
- this.txt_ITEM_DESC = new System.Windows.Forms.TextBox();
- this.label6 = new System.Windows.Forms.Label();
- this.txt_ITEM_MODEL = new System.Windows.Forms.TextBox();
- this.label5 = new System.Windows.Forms.Label();
- this.txt_ITEM_SPEC = new System.Windows.Forms.TextBox();
- this.txt_ITEM_CODE = new System.Windows.Forms.TextBox();
- this.label1 = new System.Windows.Forms.Label();
- this.ultraTabPageControl2 = new Infragistics.Win.UltraWinTabControl.UltraTabPageControl();
- this.label81 = new System.Windows.Forms.Label();
- this.label82 = new System.Windows.Forms.Label();
- this.label80 = new System.Windows.Forms.Label();
- this.label79 = new System.Windows.Forms.Label();
- this.txt_DELVRY_RANGE_MIN2 = new Infragistics.Win.UltraWinEditors.UltraNumericEditor();
- this.txt_DELVRY_RANGE_MAX2 = new Infragistics.Win.UltraWinEditors.UltraNumericEditor();
- this.txt_delivery_type_2 = new Infragistics.Win.UltraWinEditors.UltraComboEditor();
- this.label78 = new System.Windows.Forms.Label();
- this.txt_IS_DEFAULT = new Infragistics.Win.UltraWinEditors.UltraComboEditor();
- this.label62 = new System.Windows.Forms.Label();
- this.txt_PLANNER_ROLE_NAME1 = new Infragistics.Win.UltraWinEditors.UltraTextEditor();
- this.txt_BUYER_ROLE_NAME1 = new Infragistics.Win.UltraWinEditors.UltraTextEditor();
- this.label31 = new System.Windows.Forms.Label();
- this.label42 = new System.Windows.Forms.Label();
- this.txt_SUPP_NAME = new Infragistics.Win.UltraWinEditors.UltraTextEditor();
- this.label40 = new System.Windows.Forms.Label();
- this.txt_suppCode = new System.Windows.Forms.TextBox();
- this.txt_JS = new System.Windows.Forms.TextBox();
- this.label32 = new System.Windows.Forms.Label();
- this.txt_YWKS = new System.Windows.Forms.TextBox();
- this.label33 = new System.Windows.Forms.Label();
- this.label34 = new System.Windows.Forms.Label();
- this.ultraTabPageControl3 = new Infragistics.Win.UltraWinTabControl.UltraTabPageControl();
- this.txt_IsLevel = new Infragistics.Win.UltraWinEditors.UltraComboEditor();
- this.label75 = new System.Windows.Forms.Label();
- this.txt_MatAttrClassName = new System.Windows.Forms.TextBox();
- this.label67 = new System.Windows.Forms.Label();
- this.txt_MatAttrClass = new System.Windows.Forms.TextBox();
- this.label68 = new System.Windows.Forms.Label();
- this.txt_ITEM_ATTR_CODE = new Infragistics.Win.UltraWinEditors.UltraTextEditor();
- this.txt_ITEM_ATTR = new Infragistics.Win.UltraWinEditors.UltraTextEditor();
- this.label60 = new System.Windows.Forms.Label();
- this.txt_IS_DEFAULT_ATTR = new Infragistics.Win.UltraWinEditors.UltraComboEditor();
- this.label53 = new System.Windows.Forms.Label();
- this.txt_REMARK_ATTR = new System.Windows.Forms.TextBox();
- this.label51 = new System.Windows.Forms.Label();
- this.txt_ORDER_NUM = new Infragistics.Win.UltraWinEditors.UltraNumericEditor();
- this.txt_item_Attr4 = new System.Windows.Forms.TextBox();
- this.label50 = new System.Windows.Forms.Label();
- this.txt_item_Attr3 = new System.Windows.Forms.TextBox();
- this.label49 = new System.Windows.Forms.Label();
- this.txt_item_Attr2 = new System.Windows.Forms.TextBox();
- this.label48 = new System.Windows.Forms.Label();
- this.txt_item_Attr1 = new System.Windows.Forms.TextBox();
- this.label47 = new System.Windows.Forms.Label();
- this.txt_ORDER_NUM11 = new System.Windows.Forms.TextBox();
- this.label37 = new System.Windows.Forms.Label();
- this.label38 = new System.Windows.Forms.Label();
- this.txt_ITEM_CODE2 = new System.Windows.Forms.TextBox();
- this.label39 = new System.Windows.Forms.Label();
- this.ultraTabPageControl7 = new Infragistics.Win.UltraWinTabControl.UltraTabPageControl();
- this.txt_STANDARDS_ID = new Infragistics.Win.UltraWinEditors.UltraTextEditor();
- this.txt_STANDARDS_CODE = new Infragistics.Win.UltraWinEditors.UltraTextEditor();
- this.label54 = new System.Windows.Forms.Label();
- this.txt_IS_DEFAULT_STANDRANDS = new Infragistics.Win.UltraWinEditors.UltraComboEditor();
- this.label46 = new System.Windows.Forms.Label();
- this.txt_REMARK_STANDARD = new Infragistics.Win.UltraWinEditors.UltraTextEditor();
- this.label45 = new System.Windows.Forms.Label();
- this.txtORDER_NUM = new Infragistics.Win.UltraWinEditors.UltraTextEditor();
- this.label44 = new System.Windows.Forms.Label();
- this.label43 = new System.Windows.Forms.Label();
- this.ultraTabPageControl9 = new Infragistics.Win.UltraWinTabControl.UltraTabPageControl();
- this.txt_ITEM_UOM_CONEFFICIENT = new Infragistics.Win.UltraWinEditors.UltraTextEditor();
- this.txt_WEIGHT_UNIT_CODE = new Infragistics.Win.UltraWinEditors.UltraTextEditor();
- this.txt_UOM_CODE = new Infragistics.Win.UltraWinEditors.UltraTextEditor();
- this.label59 = new System.Windows.Forms.Label();
- this.txt_REMARK_UOM = new Infragistics.Win.UltraWinEditors.UltraTextEditor();
- this.txt_IS_DEFAULT_UOM = new Infragistics.Win.UltraWinEditors.UltraComboEditor();
- this.label58 = new System.Windows.Forms.Label();
- this.label2 = new System.Windows.Forms.Label();
- this.label57 = new System.Windows.Forms.Label();
- this.txt_WEIGHT_UNIT = new Infragistics.Win.UltraWinEditors.UltraTextEditor();
- this.label56 = new System.Windows.Forms.Label();
- this.label55 = new System.Windows.Forms.Label();
- this.txt_UOM_NAME = new Infragistics.Win.UltraWinEditors.UltraTextEditor();
- this.label4 = new System.Windows.Forms.Label();
- this.ultraTabPageControl4 = new Infragistics.Win.UltraWinTabControl.UltraTabPageControl();
- this.ultraGrid2 = new Infragistics.Win.UltraWinGrid.UltraGrid();
- this.dataSet1 = new System.Data.DataSet();
- this.dataTable1 = new System.Data.DataTable();
- this.dataColumn1 = new System.Data.DataColumn();
- this.dataColumn2 = new System.Data.DataColumn();
- this.dataColumn3 = new System.Data.DataColumn();
- this.dataColumn5 = new System.Data.DataColumn();
- this.dataColumn6 = new System.Data.DataColumn();
- this.dataColumn7 = new System.Data.DataColumn();
- this.dataColumn8 = new System.Data.DataColumn();
- this.dataColumn9 = new System.Data.DataColumn();
- this.dataColumn10 = new System.Data.DataColumn();
- this.dataColumn11 = new System.Data.DataColumn();
- this.dataColumn28 = new System.Data.DataColumn();
- this.dataColumn29 = new System.Data.DataColumn();
- this.dataColumn34 = new System.Data.DataColumn();
- this.dataColumn41 = new System.Data.DataColumn();
- this.dataColumn55 = new System.Data.DataColumn();
- this.dataColumn57 = new System.Data.DataColumn();
- this.dataColumn19 = new System.Data.DataColumn();
- this.dataTable2 = new System.Data.DataTable();
- this.dataColumn16 = new System.Data.DataColumn();
- this.dataColumn17 = new System.Data.DataColumn();
- this.dataColumn22 = new System.Data.DataColumn();
- this.dataColumn56 = new System.Data.DataColumn();
- this.dataColumn68 = new System.Data.DataColumn();
- this.dataColumn69 = new System.Data.DataColumn();
- this.dataColumn70 = new System.Data.DataColumn();
- this.dataColumn18 = new System.Data.DataColumn();
- this.dataTable3 = new System.Data.DataTable();
- this.dataColumn12 = new System.Data.DataColumn();
- this.dataColumn13 = new System.Data.DataColumn();
- this.dataColumn15 = new System.Data.DataColumn();
- this.dataColumn14 = new System.Data.DataColumn();
- this.dataColumn36 = new System.Data.DataColumn();
- this.dataColumn4 = new System.Data.DataColumn();
- this.dataColumn37 = new System.Data.DataColumn();
- this.dataColumn38 = new System.Data.DataColumn();
- this.dataColumn39 = new System.Data.DataColumn();
- this.dataColumn40 = new System.Data.DataColumn();
- this.dataColumn42 = new System.Data.DataColumn();
- this.dataColumn43 = new System.Data.DataColumn();
- this.dataColumn44 = new System.Data.DataColumn();
- this.dataColumn54 = new System.Data.DataColumn();
- this.dataColumn62 = new System.Data.DataColumn();
- this.dataColumn63 = new System.Data.DataColumn();
- this.dataColumn65 = new System.Data.DataColumn();
- this.dataTable4 = new System.Data.DataTable();
- this.dataColumn30 = new System.Data.DataColumn();
- this.dataColumn31 = new System.Data.DataColumn();
- this.dataColumn32 = new System.Data.DataColumn();
- this.dataColumn33 = new System.Data.DataColumn();
- this.dataColumn35 = new System.Data.DataColumn();
- this.dataColumn45 = new System.Data.DataColumn();
- this.dataTable5 = new System.Data.DataTable();
- this.dataColumn46 = new System.Data.DataColumn();
- this.dataColumn47 = new System.Data.DataColumn();
- this.dataColumn48 = new System.Data.DataColumn();
- this.dataColumn49 = new System.Data.DataColumn();
- this.dataColumn50 = new System.Data.DataColumn();
- this.dataColumn51 = new System.Data.DataColumn();
- this.dataColumn52 = new System.Data.DataColumn();
- this.dataColumn53 = new System.Data.DataColumn();
- this.dataColumn64 = new System.Data.DataColumn();
- this.dataColumn66 = new System.Data.DataColumn();
- this.dataColumn67 = new System.Data.DataColumn();
- this.dataTable7 = new System.Data.DataTable();
- this.dataColumn60 = new System.Data.DataColumn();
- this.dataColumn61 = new System.Data.DataColumn();
- this.ultraTabPageControl5 = new Infragistics.Win.UltraWinTabControl.UltraTabPageControl();
- this.ultraGrid3 = new Infragistics.Win.UltraWinGrid.UltraGrid();
- this.ultraTabPageControl6 = new Infragistics.Win.UltraWinTabControl.UltraTabPageControl();
- this.ultraGrid4 = new Infragistics.Win.UltraWinGrid.UltraGrid();
- this.ultraTabPageControl8 = new Infragistics.Win.UltraWinTabControl.UltraTabPageControl();
- this.ultraGrid5 = new Infragistics.Win.UltraWinGrid.UltraGrid();
- this.imageList1 = new System.Windows.Forms.ImageList(this.components);
- this.dataSet2 = new System.Data.DataSet();
- this.dataTable6 = new System.Data.DataTable();
- this.dataColumn58 = new System.Data.DataColumn();
- this.dataColumn59 = new System.Data.DataColumn();
- this.tableLayoutPanel1 = new System.Windows.Forms.TableLayoutPanel();
- this.ultraGroupBox5 = new Infragistics.Win.Misc.UltraGroupBox();
- this.ultraTabControl1 = new Infragistics.Win.UltraWinTabControl.UltraTabControl();
- this.ultraTabSharedControlsPage1 = new Infragistics.Win.UltraWinTabControl.UltraTabSharedControlsPage();
- this.ultraGroupBox2 = new Infragistics.Win.Misc.UltraGroupBox();
- this.tableLayoutPanel2 = new System.Windows.Forms.TableLayoutPanel();
- this.ulTreeMat = new Infragistics.Win.UltraWinTree.UltraTree();
- this.ultraGroupBox3 = new Infragistics.Win.Misc.UltraGroupBox();
- this.tableLayoutPanel3 = new System.Windows.Forms.TableLayoutPanel();
- this.ultraTabControl2 = new Infragistics.Win.UltraWinTabControl.UltraTabControl();
- this.ultraTabSharedControlsPage2 = new Infragistics.Win.UltraWinTabControl.UltraTabSharedControlsPage();
- this.ultraGrid1 = new Infragistics.Win.UltraWinGrid.UltraGrid();
- this.ultraGroupBox1 = new Infragistics.Win.Misc.UltraGroupBox();
- this.label66 = new System.Windows.Forms.Label();
- this.txt_ARC_ITEM = new Infragistics.Win.UltraWinEditors.UltraTextEditor();
- this.txt_ARC_CODE = new Infragistics.Win.UltraWinEditors.UltraTextEditor();
- this.checkBox1 = new System.Windows.Forms.CheckBox();
- this.cmbNum = new Infragistics.Win.UltraWinEditors.UltraComboEditor();
- this.label65 = new System.Windows.Forms.Label();
- this.label64 = new System.Windows.Forms.Label();
- this.chk_showHasDelete = new System.Windows.Forms.CheckBox();
- this.label41 = new System.Windows.Forms.Label();
- this.label36 = new System.Windows.Forms.Label();
- this.label35 = new System.Windows.Forms.Label();
- this.ultraTextEditor2 = new Infragistics.Win.UltraWinEditors.UltraTextEditor();
- this.ultraTextEditor1 = new Infragistics.Win.UltraWinEditors.UltraTextEditor();
- this.Ultcmb_MAT_TYPE = new Infragistics.Win.UltraWinEditors.UltraComboEditor();
- this.label83 = new System.Windows.Forms.Label();
- this.ultraTabPageControl1.SuspendLayout();
- this.panel1.SuspendLayout();
- ((System.ComponentModel.ISupportInitialize)(this.ultraGroupBox6)).BeginInit();
- this.ultraGroupBox6.SuspendLayout();
- ((System.ComponentModel.ISupportInitialize)(this.txt_INV_PHYSIC_USERID)).BeginInit();
- ((System.ComponentModel.ISupportInitialize)(this.txt_ItemArcCodeName)).BeginInit();
- ((System.ComponentModel.ISupportInitialize)(this.txt_ItemArcCode)).BeginInit();
- ((System.ComponentModel.ISupportInitialize)(this.txt_DELVRY_RANGE_MIN)).BeginInit();
- ((System.ComponentModel.ISupportInitialize)(this.txt_DELVRY_RANGE_MAX)).BeginInit();
- ((System.ComponentModel.ISupportInitialize)(this.txt_DELVRY_RANGE_TPE)).BeginInit();
- ((System.ComponentModel.ISupportInitialize)(this.txt_PC_FLAG)).BeginInit();
- ((System.ComponentModel.ISupportInitialize)(this.txt_BASE_UNIT_VALUE)).BeginInit();
- ((System.ComponentModel.ISupportInitialize)(this.txt_IS_BUDGET_CTRL)).BeginInit();
- ((System.ComponentModel.ISupportInitialize)(this.Ultcmb_WEIGHT_UNIT_CODE)).BeginInit();
- ((System.ComponentModel.ISupportInitialize)(this.Ultcmb_WEIGHT_UNIT)).BeginInit();
- ((System.ComponentModel.ISupportInitialize)(this.txt_PLANNER_ROLE_NAME)).BeginInit();
- ((System.ComponentModel.ISupportInitialize)(this.txt_BUYER_ROLE_NAME)).BeginInit();
- ((System.ComponentModel.ISupportInitialize)(this.Ultcmb_RECEIVE_TYPE)).BeginInit();
- ((System.ComponentModel.ISupportInitialize)(this.Ultcmb_BATCH_FLAG)).BeginInit();
- ((System.ComponentModel.ISupportInitialize)(this.Ultcmb_PUR_STANDARDS)).BeginInit();
- ((System.ComponentModel.ISupportInitialize)(this.Ultcmb_INV_WASTE_FAC_UOM)).BeginInit();
- ((System.ComponentModel.ISupportInitialize)(this.Ultcmb_METERING_FLAG)).BeginInit();
- ((System.ComponentModel.ISupportInitialize)(this.Ultcmb_PRICE_TYPE)).BeginInit();
- ((System.ComponentModel.ISupportInitialize)(this.Ultcmb_CURRENCY_CODE)).BeginInit();
- ((System.ComponentModel.ISupportInitialize)(this.Ultcmb_LIFE_CYCLE_UOM)).BeginInit();
- this.ultraTabPageControl2.SuspendLayout();
- ((System.ComponentModel.ISupportInitialize)(this.txt_DELVRY_RANGE_MIN2)).BeginInit();
- ((System.ComponentModel.ISupportInitialize)(this.txt_DELVRY_RANGE_MAX2)).BeginInit();
- ((System.ComponentModel.ISupportInitialize)(this.txt_delivery_type_2)).BeginInit();
- ((System.ComponentModel.ISupportInitialize)(this.txt_IS_DEFAULT)).BeginInit();
- ((System.ComponentModel.ISupportInitialize)(this.txt_PLANNER_ROLE_NAME1)).BeginInit();
- ((System.ComponentModel.ISupportInitialize)(this.txt_BUYER_ROLE_NAME1)).BeginInit();
- ((System.ComponentModel.ISupportInitialize)(this.txt_SUPP_NAME)).BeginInit();
- this.ultraTabPageControl3.SuspendLayout();
- ((System.ComponentModel.ISupportInitialize)(this.txt_IsLevel)).BeginInit();
- ((System.ComponentModel.ISupportInitialize)(this.txt_ITEM_ATTR_CODE)).BeginInit();
- ((System.ComponentModel.ISupportInitialize)(this.txt_ITEM_ATTR)).BeginInit();
- ((System.ComponentModel.ISupportInitialize)(this.txt_IS_DEFAULT_ATTR)).BeginInit();
- ((System.ComponentModel.ISupportInitialize)(this.txt_ORDER_NUM)).BeginInit();
- this.ultraTabPageControl7.SuspendLayout();
- ((System.ComponentModel.ISupportInitialize)(this.txt_STANDARDS_ID)).BeginInit();
- ((System.ComponentModel.ISupportInitialize)(this.txt_STANDARDS_CODE)).BeginInit();
- ((System.ComponentModel.ISupportInitialize)(this.txt_IS_DEFAULT_STANDRANDS)).BeginInit();
- ((System.ComponentModel.ISupportInitialize)(this.txt_REMARK_STANDARD)).BeginInit();
- ((System.ComponentModel.ISupportInitialize)(this.txtORDER_NUM)).BeginInit();
- this.ultraTabPageControl9.SuspendLayout();
- ((System.ComponentModel.ISupportInitialize)(this.txt_ITEM_UOM_CONEFFICIENT)).BeginInit();
- ((System.ComponentModel.ISupportInitialize)(this.txt_WEIGHT_UNIT_CODE)).BeginInit();
- ((System.ComponentModel.ISupportInitialize)(this.txt_UOM_CODE)).BeginInit();
- ((System.ComponentModel.ISupportInitialize)(this.txt_REMARK_UOM)).BeginInit();
- ((System.ComponentModel.ISupportInitialize)(this.txt_IS_DEFAULT_UOM)).BeginInit();
- ((System.ComponentModel.ISupportInitialize)(this.txt_WEIGHT_UNIT)).BeginInit();
- ((System.ComponentModel.ISupportInitialize)(this.txt_UOM_NAME)).BeginInit();
- this.ultraTabPageControl4.SuspendLayout();
- ((System.ComponentModel.ISupportInitialize)(this.ultraGrid2)).BeginInit();
- ((System.ComponentModel.ISupportInitialize)(this.dataSet1)).BeginInit();
- ((System.ComponentModel.ISupportInitialize)(this.dataTable1)).BeginInit();
- ((System.ComponentModel.ISupportInitialize)(this.dataTable2)).BeginInit();
- ((System.ComponentModel.ISupportInitialize)(this.dataTable3)).BeginInit();
- ((System.ComponentModel.ISupportInitialize)(this.dataTable4)).BeginInit();
- ((System.ComponentModel.ISupportInitialize)(this.dataTable5)).BeginInit();
- ((System.ComponentModel.ISupportInitialize)(this.dataTable7)).BeginInit();
- this.ultraTabPageControl5.SuspendLayout();
- ((System.ComponentModel.ISupportInitialize)(this.ultraGrid3)).BeginInit();
- this.ultraTabPageControl6.SuspendLayout();
- ((System.ComponentModel.ISupportInitialize)(this.ultraGrid4)).BeginInit();
- this.ultraTabPageControl8.SuspendLayout();
- ((System.ComponentModel.ISupportInitialize)(this.ultraGrid5)).BeginInit();
- ((System.ComponentModel.ISupportInitialize)(this.dataSet2)).BeginInit();
- ((System.ComponentModel.ISupportInitialize)(this.dataTable6)).BeginInit();
- this.tableLayoutPanel1.SuspendLayout();
- ((System.ComponentModel.ISupportInitialize)(this.ultraGroupBox5)).BeginInit();
- this.ultraGroupBox5.SuspendLayout();
- ((System.ComponentModel.ISupportInitialize)(this.ultraTabControl1)).BeginInit();
- this.ultraTabControl1.SuspendLayout();
- ((System.ComponentModel.ISupportInitialize)(this.ultraGroupBox2)).BeginInit();
- this.ultraGroupBox2.SuspendLayout();
- this.tableLayoutPanel2.SuspendLayout();
- ((System.ComponentModel.ISupportInitialize)(this.ulTreeMat)).BeginInit();
- ((System.ComponentModel.ISupportInitialize)(this.ultraGroupBox3)).BeginInit();
- this.ultraGroupBox3.SuspendLayout();
- this.tableLayoutPanel3.SuspendLayout();
- ((System.ComponentModel.ISupportInitialize)(this.ultraTabControl2)).BeginInit();
- this.ultraTabControl2.SuspendLayout();
- ((System.ComponentModel.ISupportInitialize)(this.ultraGrid1)).BeginInit();
- ((System.ComponentModel.ISupportInitialize)(this.ultraGroupBox1)).BeginInit();
- this.ultraGroupBox1.SuspendLayout();
- ((System.ComponentModel.ISupportInitialize)(this.txt_ARC_ITEM)).BeginInit();
- ((System.ComponentModel.ISupportInitialize)(this.txt_ARC_CODE)).BeginInit();
- ((System.ComponentModel.ISupportInitialize)(this.cmbNum)).BeginInit();
- ((System.ComponentModel.ISupportInitialize)(this.ultraTextEditor2)).BeginInit();
- ((System.ComponentModel.ISupportInitialize)(this.ultraTextEditor1)).BeginInit();
- ((System.ComponentModel.ISupportInitialize)(this.Ultcmb_MAT_TYPE)).BeginInit();
- this.SuspendLayout();
- //
- // ultraTabPageControl1
- //
- this.ultraTabPageControl1.Controls.Add(this.panel1);
- this.ultraTabPageControl1.Location = new System.Drawing.Point(1, 25);
- this.ultraTabPageControl1.Margin = new System.Windows.Forms.Padding(4);
- this.ultraTabPageControl1.Name = "ultraTabPageControl1";
- this.ultraTabPageControl1.Size = new System.Drawing.Size(1771, 161);
- //
- // panel1
- //
- this.panel1.AutoScroll = true;
- this.panel1.Controls.Add(this.ultraGroupBox6);
- this.panel1.Dock = System.Windows.Forms.DockStyle.Fill;
- this.panel1.Location = new System.Drawing.Point(0, 0);
- this.panel1.Margin = new System.Windows.Forms.Padding(4);
- this.panel1.Name = "panel1";
- this.panel1.Size = new System.Drawing.Size(1771, 161);
- this.panel1.TabIndex = 77;
- //
- // ultraGroupBox6
- //
- this.ultraGroupBox6.CaptionAlignment = Infragistics.Win.Misc.GroupBoxCaptionAlignment.Far;
- this.ultraGroupBox6.Controls.Add(this.Ultcmb_MAT_TYPE);
- this.ultraGroupBox6.Controls.Add(this.label83);
- this.ultraGroupBox6.Controls.Add(this.txt_INV_PHYSIC_USERID);
- this.ultraGroupBox6.Controls.Add(this.label77);
- this.ultraGroupBox6.Controls.Add(this.txt_ItemArcCodeName);
- this.ultraGroupBox6.Controls.Add(this.txt_ItemArcCode);
- this.ultraGroupBox6.Controls.Add(this.label76);
- this.ultraGroupBox6.Controls.Add(this.label74);
- this.ultraGroupBox6.Controls.Add(this.label73);
- this.ultraGroupBox6.Controls.Add(this.label72);
- this.ultraGroupBox6.Controls.Add(this.label71);
- this.ultraGroupBox6.Controls.Add(this.txt_DELVRY_RANGE_MIN);
- this.ultraGroupBox6.Controls.Add(this.txt_DELVRY_RANGE_MAX);
- this.ultraGroupBox6.Controls.Add(this.txt_DELVRY_RANGE_TPE);
- this.ultraGroupBox6.Controls.Add(this.label70);
- this.ultraGroupBox6.Controls.Add(this.txt_PC_FLAG);
- this.ultraGroupBox6.Controls.Add(this.label69);
- this.ultraGroupBox6.Controls.Add(this.txt_BASE_UNIT_VALUE);
- this.ultraGroupBox6.Controls.Add(this.cb_BASE_UNIT_FLAG);
- this.ultraGroupBox6.Controls.Add(this.txt_IS_BUDGET_CTRL);
- this.ultraGroupBox6.Controls.Add(this.label63);
- this.ultraGroupBox6.Controls.Add(this.label61);
- this.ultraGroupBox6.Controls.Add(this.Ultcmb_WEIGHT_UNIT);
- this.ultraGroupBox6.Controls.Add(this.txt_PLANNER_ROLE_NAME);
- this.ultraGroupBox6.Controls.Add(this.label3);
- this.ultraGroupBox6.Controls.Add(this.label26);
- this.ultraGroupBox6.Controls.Add(this.Ultcmb_RECEIVE_TYPE);
- this.ultraGroupBox6.Controls.Add(this.Ultcmb_BATCH_FLAG);
- this.ultraGroupBox6.Controls.Add(this.Ultcmb_METERING_FLAG);
- this.ultraGroupBox6.Controls.Add(this.Ultcmb_PRICE_TYPE);
- this.ultraGroupBox6.Controls.Add(this.Ultcmb_CURRENCY_CODE);
- this.ultraGroupBox6.Controls.Add(this.Ultcmb_LIFE_CYCLE_UOM);
- this.ultraGroupBox6.Controls.Add(this.label25);
- this.ultraGroupBox6.Controls.Add(this.label30);
- this.ultraGroupBox6.Controls.Add(this.label19);
- this.ultraGroupBox6.Controls.Add(this.txt_MIN_STOCK);
- this.ultraGroupBox6.Controls.Add(this.label20);
- this.ultraGroupBox6.Controls.Add(this.txt_MAX_STOCK);
- this.ultraGroupBox6.Controls.Add(this.label21);
- this.ultraGroupBox6.Controls.Add(this.txt_LEAD_TIME);
- this.ultraGroupBox6.Controls.Add(this.txt_INV_WASTE_FAC);
- this.ultraGroupBox6.Controls.Add(this.label23);
- this.ultraGroupBox6.Controls.Add(this.label24);
- this.ultraGroupBox6.Controls.Add(this.txt_LIFE_CYCLE);
- this.ultraGroupBox6.Controls.Add(this.label18);
- this.ultraGroupBox6.Controls.Add(this.txt_QTY_MULTIPLE);
- this.ultraGroupBox6.Controls.Add(this.label16);
- this.ultraGroupBox6.Controls.Add(this.label15);
- this.ultraGroupBox6.Controls.Add(this.txt_BUG_PRICE);
- this.ultraGroupBox6.Controls.Add(this.label14);
- this.ultraGroupBox6.Controls.Add(this.label12);
- this.ultraGroupBox6.Controls.Add(this.label9);
- this.ultraGroupBox6.Controls.Add(this.txt_ITEM_NAME);
- this.ultraGroupBox6.Controls.Add(this.label8);
- this.ultraGroupBox6.Controls.Add(this.txt_ITEM_DESC);
- this.ultraGroupBox6.Controls.Add(this.label6);
- this.ultraGroupBox6.Controls.Add(this.txt_ITEM_CODE);
- this.ultraGroupBox6.Controls.Add(this.label1);
- this.ultraGroupBox6.Dock = System.Windows.Forms.DockStyle.Fill;
- this.ultraGroupBox6.Location = new System.Drawing.Point(0, 0);
- this.ultraGroupBox6.Margin = new System.Windows.Forms.Padding(4);
- this.ultraGroupBox6.Name = "ultraGroupBox6";
- this.ultraGroupBox6.Size = new System.Drawing.Size(1771, 161);
- this.ultraGroupBox6.TabIndex = 76;
- //
- // txt_INV_PHYSIC_USERID
- //
- appearance4.FontData.BoldAsString = "True";
- appearance4.TextHAlignAsString = "Center";
- appearance4.TextVAlignAsString = "Middle";
- editorButton1.Appearance = appearance4;
- editorButton1.Text = "+";
- this.txt_INV_PHYSIC_USERID.ButtonsRight.Add(editorButton1);
- this.txt_INV_PHYSIC_USERID.DisplayStyle = Infragistics.Win.EmbeddableElementDisplayStyle.Office2007;
- this.txt_INV_PHYSIC_USERID.Location = new System.Drawing.Point(747, 125);
- this.txt_INV_PHYSIC_USERID.Margin = new System.Windows.Forms.Padding(4);
- this.txt_INV_PHYSIC_USERID.Name = "txt_INV_PHYSIC_USERID";
- this.txt_INV_PHYSIC_USERID.ReadOnly = true;
- this.txt_INV_PHYSIC_USERID.Size = new System.Drawing.Size(189, 24);
- this.txt_INV_PHYSIC_USERID.TabIndex = 175;
- this.txt_INV_PHYSIC_USERID.EditorButtonClick += new Infragistics.Win.UltraWinEditors.EditorButtonEventHandler(this.txt_INV_PHYSIC_USERID_EditorButtonClick);
- //
- // label77
- //
- this.label77.BackColor = System.Drawing.SystemColors.Highlight;
- this.label77.Location = new System.Drawing.Point(629, 125);
- this.label77.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
- this.label77.Name = "label77";
- this.label77.Size = new System.Drawing.Size(115, 26);
- this.label77.TabIndex = 174;
- this.label77.Text = "库管员";
- this.label77.TextAlign = System.Drawing.ContentAlignment.MiddleRight;
- //
- // txt_ItemArcCodeName
- //
- appearance10.TextHAlignAsString = "Center";
- appearance10.TextVAlignAsString = "Middle";
- editorButton2.Appearance = appearance10;
- editorButton2.Text = "+";
- this.txt_ItemArcCodeName.ButtonsRight.Add(editorButton2);
- this.txt_ItemArcCodeName.Location = new System.Drawing.Point(124, 124);
- this.txt_ItemArcCodeName.Margin = new System.Windows.Forms.Padding(4);
- this.txt_ItemArcCodeName.Name = "txt_ItemArcCodeName";
- this.txt_ItemArcCodeName.ReadOnly = true;
- this.txt_ItemArcCodeName.Size = new System.Drawing.Size(189, 24);
- this.txt_ItemArcCodeName.TabIndex = 173;
- this.txt_ItemArcCodeName.EditorButtonClick += new Infragistics.Win.UltraWinEditors.EditorButtonEventHandler(this.txt_ItemArcCodeName_EditorButtonClick);
- //
- // txt_ItemArcCode
- //
- appearance12.TextHAlignAsString = "Center";
- appearance12.TextVAlignAsString = "Middle";
- editorButton3.Appearance = appearance12;
- editorButton3.Text = "+";
- this.txt_ItemArcCode.ButtonsRight.Add(editorButton3);
- this.txt_ItemArcCode.Location = new System.Drawing.Point(224, 125);
- this.txt_ItemArcCode.Margin = new System.Windows.Forms.Padding(4);
- this.txt_ItemArcCode.Name = "txt_ItemArcCode";
- this.txt_ItemArcCode.ReadOnly = true;
- this.txt_ItemArcCode.Size = new System.Drawing.Size(76, 24);
- this.txt_ItemArcCode.TabIndex = 172;
- this.txt_ItemArcCode.Visible = false;
- this.txt_ItemArcCode.EditorButtonClick += new Infragistics.Win.UltraWinEditors.EditorButtonEventHandler(this.txt_ItemArcCode_EditorButtonClick);
- //
- // label76
- //
- this.label76.BackColor = System.Drawing.SystemColors.Highlight;
- this.label76.Location = new System.Drawing.Point(7, 122);
- this.label76.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
- this.label76.Name = "label76";
- this.label76.Size = new System.Drawing.Size(115, 26);
- this.label76.TabIndex = 171;
- this.label76.Text = "物 料 分 类";
- this.label76.TextAlign = System.Drawing.ContentAlignment.MiddleRight;
- //
- // label74
- //
- this.label74.BackColor = System.Drawing.SystemColors.Highlight;
- this.label74.Location = new System.Drawing.Point(1537, 124);
- this.label74.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
- this.label74.Name = "label74";
- this.label74.Size = new System.Drawing.Size(21, 26);
- this.label74.TabIndex = 170;
- this.label74.Text = "%";
- this.label74.TextAlign = System.Drawing.ContentAlignment.MiddleLeft;
- this.label74.Visible = false;
- //
- // label73
- //
- this.label73.BackColor = System.Drawing.SystemColors.Highlight;
- this.label73.Location = new System.Drawing.Point(1537, 96);
- this.label73.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
- this.label73.Name = "label73";
- this.label73.Size = new System.Drawing.Size(21, 26);
- this.label73.TabIndex = 169;
- this.label73.Text = "%";
- this.label73.TextAlign = System.Drawing.ContentAlignment.MiddleLeft;
- this.label73.Visible = false;
- //
- // label72
- //
- this.label72.BackColor = System.Drawing.SystemColors.Highlight;
- this.label72.Location = new System.Drawing.Point(1249, 124);
- this.label72.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
- this.label72.Name = "label72";
- this.label72.Size = new System.Drawing.Size(115, 26);
- this.label72.TabIndex = 168;
- this.label72.Text = "交货量差下限";
- this.label72.TextAlign = System.Drawing.ContentAlignment.MiddleRight;
- //
- // label71
- //
- this.label71.BackColor = System.Drawing.SystemColors.Highlight;
- this.label71.Location = new System.Drawing.Point(1249, 95);
- this.label71.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
- this.label71.Name = "label71";
- this.label71.Size = new System.Drawing.Size(115, 26);
- this.label71.TabIndex = 167;
- this.label71.Text = "交货量差上限";
- this.label71.TextAlign = System.Drawing.ContentAlignment.MiddleRight;
- //
- // txt_DELVRY_RANGE_MIN
- //
- this.txt_DELVRY_RANGE_MIN.Location = new System.Drawing.Point(1367, 122);
- this.txt_DELVRY_RANGE_MIN.Margin = new System.Windows.Forms.Padding(4);
- this.txt_DELVRY_RANGE_MIN.Name = "txt_DELVRY_RANGE_MIN";
- this.txt_DELVRY_RANGE_MIN.Nullable = true;
- this.txt_DELVRY_RANGE_MIN.Size = new System.Drawing.Size(160, 24);
- this.txt_DELVRY_RANGE_MIN.TabIndex = 166;
- //
- // txt_DELVRY_RANGE_MAX
- //
- this.txt_DELVRY_RANGE_MAX.Location = new System.Drawing.Point(1367, 95);
- this.txt_DELVRY_RANGE_MAX.Margin = new System.Windows.Forms.Padding(4);
- this.txt_DELVRY_RANGE_MAX.Name = "txt_DELVRY_RANGE_MAX";
- this.txt_DELVRY_RANGE_MAX.Nullable = true;
- this.txt_DELVRY_RANGE_MAX.Size = new System.Drawing.Size(160, 24);
- this.txt_DELVRY_RANGE_MAX.TabIndex = 165;
- //
- // txt_DELVRY_RANGE_TPE
- //
- this.txt_DELVRY_RANGE_TPE.DisplayStyle = Infragistics.Win.EmbeddableElementDisplayStyle.Office2007;
- this.txt_DELVRY_RANGE_TPE.DropDownStyle = Infragistics.Win.DropDownStyle.DropDownList;
- valueListItem30.DataValue = "0";
- valueListItem30.DisplayText = "不限制";
- valueListItem8.DataValue = "1";
- valueListItem8.DisplayText = "绝对值";
- valueListItem9.CheckState = System.Windows.Forms.CheckState.Checked;
- valueListItem9.DataValue = "2";
- valueListItem9.DisplayText = "百分比";
- valueListItem31.DataValue = "3";
- valueListItem31.DisplayText = "不允许";
- this.txt_DELVRY_RANGE_TPE.Items.AddRange(new Infragistics.Win.ValueListItem[] {
- valueListItem30,
- valueListItem8,
- valueListItem9,
- valueListItem31});
- this.txt_DELVRY_RANGE_TPE.Location = new System.Drawing.Point(1059, 124);
- this.txt_DELVRY_RANGE_TPE.Margin = new System.Windows.Forms.Padding(4);
- this.txt_DELVRY_RANGE_TPE.Name = "txt_DELVRY_RANGE_TPE";
- this.txt_DELVRY_RANGE_TPE.Size = new System.Drawing.Size(189, 24);
- this.txt_DELVRY_RANGE_TPE.TabIndex = 164;
- this.txt_DELVRY_RANGE_TPE.ValueChanged += new System.EventHandler(this.txt_DELVRY_RANGE_TPE_ValueChanged);
- //
- // label70
- //
- this.label70.BackColor = System.Drawing.SystemColors.Highlight;
- this.label70.Location = new System.Drawing.Point(941, 124);
- this.label70.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
- this.label70.Name = "label70";
- this.label70.Size = new System.Drawing.Size(115, 26);
- this.label70.TabIndex = 163;
- this.label70.Text = "交货量差方式";
- this.label70.TextAlign = System.Drawing.ContentAlignment.MiddleCenter;
- //
- // txt_PC_FLAG
- //
- this.txt_PC_FLAG.DisplayStyle = Infragistics.Win.EmbeddableElementDisplayStyle.Office2007;
- this.txt_PC_FLAG.DropDownStyle = Infragistics.Win.DropDownStyle.DropDownList;
- valueListItem22.DataValue = "0";
- valueListItem22.DisplayText = "否";
- valueListItem23.CheckState = System.Windows.Forms.CheckState.Checked;
- valueListItem23.DataValue = "1";
- valueListItem23.DisplayText = "是";
- this.txt_PC_FLAG.Items.AddRange(new Infragistics.Win.ValueListItem[] {
- valueListItem22,
- valueListItem23});
- this.txt_PC_FLAG.Location = new System.Drawing.Point(1059, 95);
- this.txt_PC_FLAG.Margin = new System.Windows.Forms.Padding(4);
- this.txt_PC_FLAG.Name = "txt_PC_FLAG";
- this.txt_PC_FLAG.Size = new System.Drawing.Size(189, 24);
- this.txt_PC_FLAG.TabIndex = 162;
- //
- // label69
- //
- this.label69.BackColor = System.Drawing.SystemColors.Highlight;
- this.label69.Location = new System.Drawing.Point(941, 95);
- this.label69.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
- this.label69.Name = "label69";
- this.label69.Size = new System.Drawing.Size(115, 26);
- this.label69.TabIndex = 161;
- this.label69.Text = "是否检化验";
- this.label69.TextAlign = System.Drawing.ContentAlignment.MiddleCenter;
- //
- // txt_BASE_UNIT_VALUE
- //
- this.txt_BASE_UNIT_VALUE.Location = new System.Drawing.Point(1395, 35);
- this.txt_BASE_UNIT_VALUE.Margin = new System.Windows.Forms.Padding(4);
- this.txt_BASE_UNIT_VALUE.Name = "txt_BASE_UNIT_VALUE";
- this.txt_BASE_UNIT_VALUE.ReadOnly = true;
- this.txt_BASE_UNIT_VALUE.Size = new System.Drawing.Size(161, 24);
- this.txt_BASE_UNIT_VALUE.TabIndex = 160;
- //
- // cb_BASE_UNIT_FLAG
- //
- this.cb_BASE_UNIT_FLAG.AutoSize = true;
- this.cb_BASE_UNIT_FLAG.BackColor = System.Drawing.SystemColors.GradientInactiveCaption;
- this.cb_BASE_UNIT_FLAG.Location = new System.Drawing.Point(1368, 39);
- this.cb_BASE_UNIT_FLAG.Margin = new System.Windows.Forms.Padding(4);
- this.cb_BASE_UNIT_FLAG.Name = "cb_BASE_UNIT_FLAG";
- this.cb_BASE_UNIT_FLAG.Size = new System.Drawing.Size(18, 17);
- this.cb_BASE_UNIT_FLAG.TabIndex = 159;
- this.cb_BASE_UNIT_FLAG.UseVisualStyleBackColor = false;
- this.cb_BASE_UNIT_FLAG.CheckedChanged += new System.EventHandler(this.cb_BASE_UNIT_FLAG_CheckedChanged);
- //
- // txt_IS_BUDGET_CTRL
- //
- this.txt_IS_BUDGET_CTRL.DisplayStyle = Infragistics.Win.EmbeddableElementDisplayStyle.Office2007;
- this.txt_IS_BUDGET_CTRL.DropDownStyle = Infragistics.Win.DropDownStyle.DropDownList;
- valueListItem40.DataValue = "0";
- valueListItem40.DisplayText = "否";
- valueListItem41.CheckState = System.Windows.Forms.CheckState.Checked;
- valueListItem41.DataValue = "1";
- valueListItem41.DisplayText = "是";
- this.txt_IS_BUDGET_CTRL.Items.AddRange(new Infragistics.Win.ValueListItem[] {
- valueListItem40,
- valueListItem41});
- this.txt_IS_BUDGET_CTRL.Location = new System.Drawing.Point(1367, 65);
- this.txt_IS_BUDGET_CTRL.Margin = new System.Windows.Forms.Padding(4);
- this.txt_IS_BUDGET_CTRL.Name = "txt_IS_BUDGET_CTRL";
- this.txt_IS_BUDGET_CTRL.Size = new System.Drawing.Size(189, 24);
- this.txt_IS_BUDGET_CTRL.TabIndex = 157;
- //
- // label63
- //
- this.label63.BackColor = System.Drawing.SystemColors.Highlight;
- this.label63.Location = new System.Drawing.Point(1249, 65);
- this.label63.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
- this.label63.Name = "label63";
- this.label63.Size = new System.Drawing.Size(115, 26);
- this.label63.TabIndex = 153;
- this.label63.Text = "是否定额控制";
- this.label63.TextAlign = System.Drawing.ContentAlignment.MiddleRight;
- //
- // label61
- //
- this.label61.BackColor = System.Drawing.SystemColors.Highlight;
- this.label61.Location = new System.Drawing.Point(1249, 35);
- this.label61.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
- this.label61.Name = "label61";
- this.label61.Size = new System.Drawing.Size(115, 26);
- this.label61.TabIndex = 151;
- this.label61.Text = "基 吨 值";
- this.label61.TextAlign = System.Drawing.ContentAlignment.MiddleRight;
- //
- // Ultcmb_WEIGHT_UNIT_CODE
- //
- this.Ultcmb_WEIGHT_UNIT_CODE.Location = new System.Drawing.Point(1260, 52);
- this.Ultcmb_WEIGHT_UNIT_CODE.Margin = new System.Windows.Forms.Padding(4);
- this.Ultcmb_WEIGHT_UNIT_CODE.Name = "Ultcmb_WEIGHT_UNIT_CODE";
- this.Ultcmb_WEIGHT_UNIT_CODE.ReadOnly = true;
- this.Ultcmb_WEIGHT_UNIT_CODE.Size = new System.Drawing.Size(31, 24);
- this.Ultcmb_WEIGHT_UNIT_CODE.TabIndex = 149;
- this.Ultcmb_WEIGHT_UNIT_CODE.Visible = false;
- //
- // label52
- //
- this.label52.AutoSize = true;
- this.label52.Location = new System.Drawing.Point(1154, 56);
- this.label52.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
- this.label52.Name = "label52";
- this.label52.Size = new System.Drawing.Size(97, 15);
- this.label52.TabIndex = 148;
- this.label52.Text = "库存单位编码";
- this.label52.Visible = false;
- //
- // Ultcmb_WEIGHT_UNIT
- //
- appearance5.TextHAlignAsString = "Center";
- appearance5.TextVAlignAsString = "Middle";
- editorButton4.Appearance = appearance5;
- editorButton4.Text = "+";
- this.Ultcmb_WEIGHT_UNIT.ButtonsRight.Add(editorButton4);
- this.Ultcmb_WEIGHT_UNIT.Location = new System.Drawing.Point(747, 35);
- this.Ultcmb_WEIGHT_UNIT.Margin = new System.Windows.Forms.Padding(4);
- this.Ultcmb_WEIGHT_UNIT.Name = "Ultcmb_WEIGHT_UNIT";
- this.Ultcmb_WEIGHT_UNIT.ReadOnly = true;
- this.Ultcmb_WEIGHT_UNIT.Size = new System.Drawing.Size(189, 24);
- this.Ultcmb_WEIGHT_UNIT.TabIndex = 147;
- this.Ultcmb_WEIGHT_UNIT.EditorButtonClick += new Infragistics.Win.UltraWinEditors.EditorButtonEventHandler(this.Ultcmb_WEIGHT_UNIT_EditorButtonClick);
- //
- // txt_PLANNER_ROLE_NAME
- //
- appearance14.FontData.BoldAsString = "True";
- appearance14.TextHAlignAsString = "Center";
- appearance14.TextVAlignAsString = "Middle";
- editorButton5.Appearance = appearance14;
- editorButton5.Text = "+";
- this.txt_PLANNER_ROLE_NAME.ButtonsRight.Add(editorButton5);
- this.txt_PLANNER_ROLE_NAME.DisplayStyle = Infragistics.Win.EmbeddableElementDisplayStyle.Office2007;
- this.txt_PLANNER_ROLE_NAME.Location = new System.Drawing.Point(747, 95);
- this.txt_PLANNER_ROLE_NAME.Margin = new System.Windows.Forms.Padding(4);
- this.txt_PLANNER_ROLE_NAME.Name = "txt_PLANNER_ROLE_NAME";
- this.txt_PLANNER_ROLE_NAME.ReadOnly = true;
- this.txt_PLANNER_ROLE_NAME.Size = new System.Drawing.Size(189, 24);
- this.txt_PLANNER_ROLE_NAME.TabIndex = 146;
- this.txt_PLANNER_ROLE_NAME.EditorButtonClick += new Infragistics.Win.UltraWinEditors.EditorButtonEventHandler(this.txt_PLANNER_ROLE_ID_EditorButtonClick);
- //
- // txt_BUYER_ROLE_NAME
- //
- appearance3.FontData.BoldAsString = "True";
- appearance3.TextHAlignAsString = "Center";
- appearance3.TextVAlignAsString = "Middle";
- editorButton6.Appearance = appearance3;
- editorButton6.Text = "+";
- this.txt_BUYER_ROLE_NAME.ButtonsRight.Add(editorButton6);
- this.txt_BUYER_ROLE_NAME.DisplayStyle = Infragistics.Win.EmbeddableElementDisplayStyle.Office2007;
- this.txt_BUYER_ROLE_NAME.Location = new System.Drawing.Point(1326, 56);
- this.txt_BUYER_ROLE_NAME.Margin = new System.Windows.Forms.Padding(4);
- this.txt_BUYER_ROLE_NAME.Name = "txt_BUYER_ROLE_NAME";
- this.txt_BUYER_ROLE_NAME.ReadOnly = true;
- this.txt_BUYER_ROLE_NAME.Size = new System.Drawing.Size(12, 24);
- this.txt_BUYER_ROLE_NAME.TabIndex = 145;
- this.txt_BUYER_ROLE_NAME.Visible = false;
- this.txt_BUYER_ROLE_NAME.EditorButtonClick += new Infragistics.Win.UltraWinEditors.EditorButtonEventHandler(this.txt_BUYER_ROLE_ID_EditorButtonClick);
- //
- // label3
- //
- this.label3.AutoSize = true;
- this.label3.BackColor = System.Drawing.SystemColors.GradientActiveCaption;
- this.label3.Location = new System.Drawing.Point(288, 40);
- this.label3.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
- this.label3.Name = "label3";
- this.label3.Size = new System.Drawing.Size(22, 15);
- this.label3.TabIndex = 142;
- this.label3.Text = "天";
- //
- // label26
- //
- this.label26.BackColor = System.Drawing.SystemColors.Highlight;
- this.label26.Location = new System.Drawing.Point(629, 95);
- this.label26.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
- this.label26.Name = "label26";
- this.label26.Size = new System.Drawing.Size(115, 26);
- this.label26.TabIndex = 139;
- this.label26.Text = "计划员角色";
- this.label26.TextAlign = System.Drawing.ContentAlignment.MiddleRight;
- //
- // label22
- //
- this.label22.BackColor = System.Drawing.SystemColors.Highlight;
- this.label22.Location = new System.Drawing.Point(1311, 56);
- this.label22.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
- this.label22.Name = "label22";
- this.label22.Size = new System.Drawing.Size(13, 26);
- this.label22.TabIndex = 137;
- this.label22.Text = "采购员角色";
- this.label22.TextAlign = System.Drawing.ContentAlignment.MiddleRight;
- this.label22.Visible = false;
- //
- // Ultcmb_RECEIVE_TYPE
- //
- this.Ultcmb_RECEIVE_TYPE.DisplayStyle = Infragistics.Win.EmbeddableElementDisplayStyle.Office2007;
- this.Ultcmb_RECEIVE_TYPE.DropDownStyle = Infragistics.Win.DropDownStyle.DropDownList;
- this.Ultcmb_RECEIVE_TYPE.Location = new System.Drawing.Point(124, 95);
- this.Ultcmb_RECEIVE_TYPE.Margin = new System.Windows.Forms.Padding(4);
- this.Ultcmb_RECEIVE_TYPE.Name = "Ultcmb_RECEIVE_TYPE";
- this.Ultcmb_RECEIVE_TYPE.Size = new System.Drawing.Size(189, 24);
- this.Ultcmb_RECEIVE_TYPE.TabIndex = 133;
- //
- // Ultcmb_BATCH_FLAG
- //
- this.Ultcmb_BATCH_FLAG.DisplayStyle = Infragistics.Win.EmbeddableElementDisplayStyle.Office2007;
- this.Ultcmb_BATCH_FLAG.DropDownStyle = Infragistics.Win.DropDownStyle.DropDownList;
- valueListItem53.DataValue = "0";
- valueListItem53.DisplayText = "否";
- valueListItem54.CheckState = System.Windows.Forms.CheckState.Checked;
- valueListItem54.DataValue = "1";
- valueListItem54.DisplayText = "是";
- this.Ultcmb_BATCH_FLAG.Items.AddRange(new Infragistics.Win.ValueListItem[] {
- valueListItem53,
- valueListItem54});
- this.Ultcmb_BATCH_FLAG.Location = new System.Drawing.Point(124, 65);
- this.Ultcmb_BATCH_FLAG.Margin = new System.Windows.Forms.Padding(4);
- this.Ultcmb_BATCH_FLAG.Name = "Ultcmb_BATCH_FLAG";
- this.Ultcmb_BATCH_FLAG.Size = new System.Drawing.Size(189, 24);
- this.Ultcmb_BATCH_FLAG.TabIndex = 132;
- //
- // Ultcmb_PUR_STANDARDS
- //
- this.Ultcmb_PUR_STANDARDS.DisplayStyle = Infragistics.Win.EmbeddableElementDisplayStyle.Office2007;
- this.Ultcmb_PUR_STANDARDS.DropDownStyle = Infragistics.Win.DropDownStyle.DropDownList;
- valueListItem52.CheckState = System.Windows.Forms.CheckState.Checked;
- valueListItem52.DataValue = "1";
- valueListItem52.DisplayText = "国标";
- valueListItem1.DataValue = "2";
- valueListItem1.DisplayText = "行标";
- this.Ultcmb_PUR_STANDARDS.Items.AddRange(new Infragistics.Win.ValueListItem[] {
- valueListItem52,
- valueListItem1});
- this.Ultcmb_PUR_STANDARDS.Location = new System.Drawing.Point(1274, 172);
- this.Ultcmb_PUR_STANDARDS.Margin = new System.Windows.Forms.Padding(4);
- this.Ultcmb_PUR_STANDARDS.Name = "Ultcmb_PUR_STANDARDS";
- this.Ultcmb_PUR_STANDARDS.Size = new System.Drawing.Size(24, 24);
- this.Ultcmb_PUR_STANDARDS.TabIndex = 131;
- this.Ultcmb_PUR_STANDARDS.Visible = false;
- //
- // Ultcmb_INV_WASTE_FAC_UOM
- //
- this.Ultcmb_INV_WASTE_FAC_UOM.DisplayStyle = Infragistics.Win.EmbeddableElementDisplayStyle.Office2007;
- this.Ultcmb_INV_WASTE_FAC_UOM.DropDownStyle = Infragistics.Win.DropDownStyle.DropDownList;
- valueListItem55.DataValue = "1";
- valueListItem55.DisplayText = "日";
- valueListItem56.DataValue = "2";
- valueListItem56.DisplayText = "月";
- valueListItem57.DataValue = "3";
- valueListItem57.DisplayText = "年";
- this.Ultcmb_INV_WASTE_FAC_UOM.Items.AddRange(new Infragistics.Win.ValueListItem[] {
- valueListItem55,
- valueListItem56,
- valueListItem57});
- this.Ultcmb_INV_WASTE_FAC_UOM.Location = new System.Drawing.Point(1322, 173);
- this.Ultcmb_INV_WASTE_FAC_UOM.Margin = new System.Windows.Forms.Padding(4);
- this.Ultcmb_INV_WASTE_FAC_UOM.Name = "Ultcmb_INV_WASTE_FAC_UOM";
- this.Ultcmb_INV_WASTE_FAC_UOM.Size = new System.Drawing.Size(29, 24);
- this.Ultcmb_INV_WASTE_FAC_UOM.TabIndex = 130;
- this.Ultcmb_INV_WASTE_FAC_UOM.Visible = false;
- //
- // Ultcmb_METERING_FLAG
- //
- this.Ultcmb_METERING_FLAG.DisplayStyle = Infragistics.Win.EmbeddableElementDisplayStyle.Office2007;
- this.Ultcmb_METERING_FLAG.DropDownStyle = Infragistics.Win.DropDownStyle.DropDownList;
- valueListItem20.DataValue = "0";
- valueListItem20.DisplayText = "否";
- valueListItem21.CheckState = System.Windows.Forms.CheckState.Checked;
- valueListItem21.DataValue = "1";
- valueListItem21.DisplayText = "是";
- this.Ultcmb_METERING_FLAG.Items.AddRange(new Infragistics.Win.ValueListItem[] {
- valueListItem20,
- valueListItem21});
- this.Ultcmb_METERING_FLAG.Location = new System.Drawing.Point(435, 65);
- this.Ultcmb_METERING_FLAG.Margin = new System.Windows.Forms.Padding(4);
- this.Ultcmb_METERING_FLAG.Name = "Ultcmb_METERING_FLAG";
- this.Ultcmb_METERING_FLAG.Size = new System.Drawing.Size(189, 24);
- this.Ultcmb_METERING_FLAG.TabIndex = 128;
- //
- // Ultcmb_PRICE_TYPE
- //
- this.Ultcmb_PRICE_TYPE.DisplayStyle = Infragistics.Win.EmbeddableElementDisplayStyle.Office2007;
- this.Ultcmb_PRICE_TYPE.DropDownStyle = Infragistics.Win.DropDownStyle.DropDownList;
- valueListItem32.CheckState = System.Windows.Forms.CheckState.Checked;
- valueListItem32.DataValue = "1";
- valueListItem32.DisplayText = "计划价";
- valueListItem33.DataValue = "2";
- valueListItem33.DisplayText = "批次计价";
- valueListItem34.DataValue = "3";
- valueListItem34.DisplayText = "实时移动平均价";
- valueListItem35.DataValue = "4";
- valueListItem35.DisplayText = "月末移动平均价";
- this.Ultcmb_PRICE_TYPE.Items.AddRange(new Infragistics.Win.ValueListItem[] {
- valueListItem32,
- valueListItem33,
- valueListItem34,
- valueListItem35});
- this.Ultcmb_PRICE_TYPE.Location = new System.Drawing.Point(1367, 5);
- this.Ultcmb_PRICE_TYPE.Margin = new System.Windows.Forms.Padding(4);
- this.Ultcmb_PRICE_TYPE.Name = "Ultcmb_PRICE_TYPE";
- this.Ultcmb_PRICE_TYPE.Size = new System.Drawing.Size(189, 24);
- this.Ultcmb_PRICE_TYPE.TabIndex = 127;
- //
- // Ultcmb_CURRENCY_CODE
- //
- this.Ultcmb_CURRENCY_CODE.DisplayStyle = Infragistics.Win.EmbeddableElementDisplayStyle.Office2007;
- this.Ultcmb_CURRENCY_CODE.DropDownStyle = Infragistics.Win.DropDownStyle.DropDownList;
- valueListItem46.CheckState = System.Windows.Forms.CheckState.Checked;
- valueListItem46.DataValue = "1";
- valueListItem46.DisplayText = "人民币";
- valueListItem47.CheckState = System.Windows.Forms.CheckState.Indeterminate;
- valueListItem47.DataValue = "2";
- valueListItem47.DisplayText = "美元";
- this.Ultcmb_CURRENCY_CODE.Items.AddRange(new Infragistics.Win.ValueListItem[] {
- valueListItem46,
- valueListItem47});
- this.Ultcmb_CURRENCY_CODE.Location = new System.Drawing.Point(435, 35);
- this.Ultcmb_CURRENCY_CODE.Margin = new System.Windows.Forms.Padding(4);
- this.Ultcmb_CURRENCY_CODE.Name = "Ultcmb_CURRENCY_CODE";
- this.Ultcmb_CURRENCY_CODE.Size = new System.Drawing.Size(189, 24);
- this.Ultcmb_CURRENCY_CODE.TabIndex = 126;
- //
- // Ultcmb_LIFE_CYCLE_UOM
- //
- this.Ultcmb_LIFE_CYCLE_UOM.DisplayStyle = Infragistics.Win.EmbeddableElementDisplayStyle.Office2007;
- this.Ultcmb_LIFE_CYCLE_UOM.DropDownStyle = Infragistics.Win.DropDownStyle.DropDownList;
- valueListItem10.DataValue = "0";
- valueListItem10.DisplayText = "日";
- valueListItem13.DataValue = "1";
- valueListItem13.DisplayText = "月";
- valueListItem14.DataValue = "2";
- valueListItem14.DisplayText = "年";
- this.Ultcmb_LIFE_CYCLE_UOM.Items.AddRange(new Infragistics.Win.ValueListItem[] {
- valueListItem10,
- valueListItem13,
- valueListItem14});
- this.Ultcmb_LIFE_CYCLE_UOM.Location = new System.Drawing.Point(568, 124);
- this.Ultcmb_LIFE_CYCLE_UOM.Margin = new System.Windows.Forms.Padding(4);
- this.Ultcmb_LIFE_CYCLE_UOM.Name = "Ultcmb_LIFE_CYCLE_UOM";
- this.Ultcmb_LIFE_CYCLE_UOM.Size = new System.Drawing.Size(56, 24);
- this.Ultcmb_LIFE_CYCLE_UOM.TabIndex = 125;
- //
- // label25
- //
- this.label25.BackColor = System.Drawing.SystemColors.Highlight;
- this.label25.Location = new System.Drawing.Point(941, 5);
- this.label25.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
- this.label25.Name = "label25";
- this.label25.Size = new System.Drawing.Size(115, 26);
- this.label25.TabIndex = 121;
- this.label25.Text = "单 耗";
- this.label25.TextAlign = System.Drawing.ContentAlignment.MiddleRight;
- //
- // label27
- //
- this.label27.BackColor = System.Drawing.SystemColors.Highlight;
- this.label27.Location = new System.Drawing.Point(1299, 173);
- this.label27.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
- this.label27.Name = "label27";
- this.label27.Size = new System.Drawing.Size(20, 26);
- this.label27.TabIndex = 120;
- this.label27.Text = "单 耗 单 位";
- this.label27.TextAlign = System.Drawing.ContentAlignment.MiddleRight;
- this.label27.Visible = false;
- //
- // txt_PUR_STANDARDS_CODE
- //
- this.txt_PUR_STANDARDS_CODE.Location = new System.Drawing.Point(1343, 149);
- this.txt_PUR_STANDARDS_CODE.Margin = new System.Windows.Forms.Padding(4);
- this.txt_PUR_STANDARDS_CODE.Name = "txt_PUR_STANDARDS_CODE";
- this.txt_PUR_STANDARDS_CODE.Size = new System.Drawing.Size(13, 25);
- this.txt_PUR_STANDARDS_CODE.TabIndex = 119;
- this.txt_PUR_STANDARDS_CODE.Visible = false;
- //
- // label28
- //
- this.label28.AutoSize = true;
- this.label28.Location = new System.Drawing.Point(1187, 149);
- this.label28.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
- this.label28.Name = "label28";
- this.label28.Size = new System.Drawing.Size(97, 15);
- this.label28.TabIndex = 118;
- this.label28.Text = "采购标准编号";
- this.label28.Visible = false;
- //
- // label29
- //
- this.label29.AutoSize = true;
- this.label29.Location = new System.Drawing.Point(1202, 177);
- this.label29.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
- this.label29.Name = "label29";
- this.label29.Size = new System.Drawing.Size(67, 15);
- this.label29.TabIndex = 117;
- this.label29.Text = "采购标准";
- this.label29.Visible = false;
- //
- // label30
- //
- this.label30.BackColor = System.Drawing.SystemColors.Highlight;
- this.label30.Location = new System.Drawing.Point(7, 65);
- this.label30.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
- this.label30.Name = "label30";
- this.label30.Size = new System.Drawing.Size(115, 26);
- this.label30.TabIndex = 116;
- this.label30.Text = "是否批次控制";
- this.label30.TextAlign = System.Drawing.ContentAlignment.MiddleRight;
- //
- // label19
- //
- this.label19.BackColor = System.Drawing.SystemColors.Highlight;
- this.label19.Location = new System.Drawing.Point(7, 95);
- this.label19.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
- this.label19.Name = "label19";
- this.label19.Size = new System.Drawing.Size(115, 26);
- this.label19.TabIndex = 115;
- this.label19.Text = "收 货 方 式";
- this.label19.TextAlign = System.Drawing.ContentAlignment.MiddleRight;
- //
- // txt_MIN_STOCK
- //
- this.txt_MIN_STOCK.Location = new System.Drawing.Point(1059, 65);
- this.txt_MIN_STOCK.Margin = new System.Windows.Forms.Padding(4);
- this.txt_MIN_STOCK.Name = "txt_MIN_STOCK";
- this.txt_MIN_STOCK.Size = new System.Drawing.Size(188, 25);
- this.txt_MIN_STOCK.TabIndex = 114;
- //
- // label20
- //
- this.label20.BackColor = System.Drawing.SystemColors.Highlight;
- this.label20.Location = new System.Drawing.Point(941, 65);
- this.label20.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
- this.label20.Name = "label20";
- this.label20.Size = new System.Drawing.Size(115, 26);
- this.label20.TabIndex = 113;
- this.label20.Text = "最小库存预警";
- this.label20.TextAlign = System.Drawing.ContentAlignment.MiddleRight;
- //
- // txt_MAX_STOCK
- //
- this.txt_MAX_STOCK.Location = new System.Drawing.Point(435, 95);
- this.txt_MAX_STOCK.Margin = new System.Windows.Forms.Padding(4);
- this.txt_MAX_STOCK.Name = "txt_MAX_STOCK";
- this.txt_MAX_STOCK.Size = new System.Drawing.Size(188, 25);
- this.txt_MAX_STOCK.TabIndex = 112;
- //
- // label21
- //
- this.label21.BackColor = System.Drawing.SystemColors.Highlight;
- this.label21.Location = new System.Drawing.Point(317, 95);
- this.label21.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
- this.label21.Name = "label21";
- this.label21.Size = new System.Drawing.Size(115, 26);
- this.label21.TabIndex = 111;
- this.label21.Text = "最大库存预警";
- this.label21.TextAlign = System.Drawing.ContentAlignment.MiddleRight;
- //
- // txt_LEAD_TIME
- //
- this.txt_LEAD_TIME.Location = new System.Drawing.Point(124, 35);
- this.txt_LEAD_TIME.Margin = new System.Windows.Forms.Padding(4);
- this.txt_LEAD_TIME.Name = "txt_LEAD_TIME";
- this.txt_LEAD_TIME.Size = new System.Drawing.Size(155, 25);
- this.txt_LEAD_TIME.TabIndex = 110;
- //
- // txt_INV_WASTE_FAC
- //
- this.txt_INV_WASTE_FAC.Location = new System.Drawing.Point(1059, 5);
- this.txt_INV_WASTE_FAC.Margin = new System.Windows.Forms.Padding(4);
- this.txt_INV_WASTE_FAC.Name = "txt_INV_WASTE_FAC";
- this.txt_INV_WASTE_FAC.Size = new System.Drawing.Size(188, 25);
- this.txt_INV_WASTE_FAC.TabIndex = 109;
- //
- // label23
- //
- this.label23.BackColor = System.Drawing.SystemColors.Highlight;
- this.label23.Location = new System.Drawing.Point(317, 65);
- this.label23.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
- this.label23.Name = "label23";
- this.label23.Size = new System.Drawing.Size(115, 26);
- this.label23.TabIndex = 108;
- this.label23.Text = "是 否 过 磅";
- this.label23.TextAlign = System.Drawing.ContentAlignment.MiddleRight;
- //
- // label24
- //
- this.label24.BackColor = System.Drawing.SystemColors.Highlight;
- this.label24.Location = new System.Drawing.Point(7, 35);
- this.label24.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
- this.label24.Name = "label24";
- this.label24.Size = new System.Drawing.Size(115, 26);
- this.label24.TabIndex = 107;
- this.label24.Text = "采购提前时间";
- this.label24.TextAlign = System.Drawing.ContentAlignment.MiddleRight;
- //
- // txt_LIFE_CYCLE
- //
- this.txt_LIFE_CYCLE.Location = new System.Drawing.Point(435, 124);
- this.txt_LIFE_CYCLE.Margin = new System.Windows.Forms.Padding(4);
- this.txt_LIFE_CYCLE.Name = "txt_LIFE_CYCLE";
- this.txt_LIFE_CYCLE.Size = new System.Drawing.Size(124, 25);
- this.txt_LIFE_CYCLE.TabIndex = 106;
- //
- // label18
- //
- this.label18.BackColor = System.Drawing.SystemColors.Highlight;
- this.label18.Location = new System.Drawing.Point(317, 124);
- this.label18.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
- this.label18.Name = "label18";
- this.label18.Size = new System.Drawing.Size(115, 26);
- this.label18.TabIndex = 105;
- this.label18.Text = "有 效 期";
- this.label18.TextAlign = System.Drawing.ContentAlignment.MiddleRight;
- //
- // txt_MIN_QTY
- //
- this.txt_MIN_QTY.Location = new System.Drawing.Point(1118, 107);
- this.txt_MIN_QTY.Margin = new System.Windows.Forms.Padding(4);
- this.txt_MIN_QTY.Name = "txt_MIN_QTY";
- this.txt_MIN_QTY.Size = new System.Drawing.Size(12, 25);
- this.txt_MIN_QTY.TabIndex = 104;
- this.txt_MIN_QTY.Visible = false;
- //
- // label17
- //
- this.label17.BackColor = System.Drawing.SystemColors.Highlight;
- this.label17.Location = new System.Drawing.Point(1103, 107);
- this.label17.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
- this.label17.Name = "label17";
- this.label17.Size = new System.Drawing.Size(13, 26);
- this.label17.TabIndex = 103;
- this.label17.Text = "最小采购数量";
- this.label17.TextAlign = System.Drawing.ContentAlignment.MiddleRight;
- this.label17.Visible = false;
- //
- // txt_QTY_MULTIPLE
- //
- this.txt_QTY_MULTIPLE.Location = new System.Drawing.Point(747, 65);
- this.txt_QTY_MULTIPLE.Margin = new System.Windows.Forms.Padding(4);
- this.txt_QTY_MULTIPLE.Name = "txt_QTY_MULTIPLE";
- this.txt_QTY_MULTIPLE.Size = new System.Drawing.Size(188, 25);
- this.txt_QTY_MULTIPLE.TabIndex = 102;
- //
- // label16
- //
- this.label16.BackColor = System.Drawing.SystemColors.Highlight;
- this.label16.Location = new System.Drawing.Point(629, 65);
- this.label16.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
- this.label16.Name = "label16";
- this.label16.Size = new System.Drawing.Size(115, 26);
- this.label16.TabIndex = 101;
- this.label16.Text = "批 量 数";
- this.label16.TextAlign = System.Drawing.ContentAlignment.MiddleRight;
- //
- // label15
- //
- this.label15.BackColor = System.Drawing.SystemColors.Highlight;
- this.label15.Location = new System.Drawing.Point(629, 35);
- this.label15.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
- this.label15.Name = "label15";
- this.label15.Size = new System.Drawing.Size(115, 26);
- this.label15.TabIndex = 100;
- this.label15.Text = "库 存 单 位";
- this.label15.TextAlign = System.Drawing.ContentAlignment.MiddleRight;
- //
- // txt_BUG_PRICE
- //
- this.txt_BUG_PRICE.Location = new System.Drawing.Point(1059, 35);
- this.txt_BUG_PRICE.Margin = new System.Windows.Forms.Padding(4);
- this.txt_BUG_PRICE.Name = "txt_BUG_PRICE";
- this.txt_BUG_PRICE.Size = new System.Drawing.Size(188, 25);
- this.txt_BUG_PRICE.TabIndex = 99;
- //
- // label14
- //
- this.label14.BackColor = System.Drawing.SystemColors.Highlight;
- this.label14.Location = new System.Drawing.Point(1249, 5);
- this.label14.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
- this.label14.Name = "label14";
- this.label14.Size = new System.Drawing.Size(115, 26);
- this.label14.TabIndex = 98;
- this.label14.Text = "计 价 类 型";
- this.label14.TextAlign = System.Drawing.ContentAlignment.MiddleRight;
- //
- // txt_LAST_PRICE
- //
- this.txt_LAST_PRICE.Location = new System.Drawing.Point(1187, 173);
- this.txt_LAST_PRICE.Margin = new System.Windows.Forms.Padding(4);
- this.txt_LAST_PRICE.Name = "txt_LAST_PRICE";
- this.txt_LAST_PRICE.Size = new System.Drawing.Size(12, 25);
- this.txt_LAST_PRICE.TabIndex = 97;
- this.txt_LAST_PRICE.TextAlign = System.Windows.Forms.HorizontalAlignment.Right;
- this.txt_LAST_PRICE.Visible = false;
- //
- // label13
- //
- this.label13.BackColor = System.Drawing.SystemColors.Highlight;
- this.label13.Location = new System.Drawing.Point(1226, 178);
- this.label13.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
- this.label13.Name = "label13";
- this.label13.Size = new System.Drawing.Size(14, 26);
- this.label13.TabIndex = 96;
- this.label13.Text = "最近采购价";
- this.label13.TextAlign = System.Drawing.ContentAlignment.MiddleRight;
- this.label13.Visible = false;
- //
- // label12
- //
- this.label12.BackColor = System.Drawing.SystemColors.Highlight;
- this.label12.Location = new System.Drawing.Point(941, 35);
- this.label12.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
- this.label12.Name = "label12";
- this.label12.Size = new System.Drawing.Size(115, 26);
- this.label12.TabIndex = 95;
- this.label12.Text = "计 划 价";
- this.label12.TextAlign = System.Drawing.ContentAlignment.MiddleRight;
- //
- // label11
- //
- this.label11.AutoSize = true;
- this.label11.Location = new System.Drawing.Point(1202, 124);
- this.label11.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
- this.label11.Name = "label11";
- this.label11.Size = new System.Drawing.Size(67, 15);
- this.label11.TabIndex = 93;
- this.label11.Text = "型号规格";
- this.label11.Visible = false;
- //
- // txt_MONTH_END_AVG_PRICE
- //
- this.txt_MONTH_END_AVG_PRICE.Location = new System.Drawing.Point(1266, 116);
- this.txt_MONTH_END_AVG_PRICE.Margin = new System.Windows.Forms.Padding(4);
- this.txt_MONTH_END_AVG_PRICE.Name = "txt_MONTH_END_AVG_PRICE";
- this.txt_MONTH_END_AVG_PRICE.Size = new System.Drawing.Size(27, 25);
- this.txt_MONTH_END_AVG_PRICE.TabIndex = 92;
- this.txt_MONTH_END_AVG_PRICE.Visible = false;
- //
- // label10
- //
- this.label10.AutoSize = true;
- this.label10.Location = new System.Drawing.Point(1154, 120);
- this.label10.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
- this.label10.Name = "label10";
- this.label10.Size = new System.Drawing.Size(112, 15);
- this.label10.TabIndex = 91;
- this.label10.Text = "月末移动平均价";
- this.label10.Visible = false;
- //
- // label9
- //
- this.label9.BackColor = System.Drawing.SystemColors.Highlight;
- this.label9.Location = new System.Drawing.Point(317, 35);
- this.label9.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
- this.label9.Name = "label9";
- this.label9.Size = new System.Drawing.Size(115, 26);
- this.label9.TabIndex = 90;
- this.label9.Text = "币 种 代 码";
- this.label9.TextAlign = System.Drawing.ContentAlignment.MiddleRight;
- //
- // txt_ITEM_NAME
- //
- this.txt_ITEM_NAME.Location = new System.Drawing.Point(435, 5);
- this.txt_ITEM_NAME.Margin = new System.Windows.Forms.Padding(4);
- this.txt_ITEM_NAME.Name = "txt_ITEM_NAME";
- this.txt_ITEM_NAME.Size = new System.Drawing.Size(188, 25);
- this.txt_ITEM_NAME.TabIndex = 89;
- //
- // label8
- //
- this.label8.BackColor = System.Drawing.SystemColors.Highlight;
- this.label8.Location = new System.Drawing.Point(317, 5);
- this.label8.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
- this.label8.Name = "label8";
- this.label8.Size = new System.Drawing.Size(115, 26);
- this.label8.TabIndex = 88;
- this.label8.Text = "物 料 名 称";
- this.label8.TextAlign = System.Drawing.ContentAlignment.MiddleRight;
- //
- // txt_ITEM_DESC_E
- //
- this.txt_ITEM_DESC_E.Location = new System.Drawing.Point(1280, 90);
- this.txt_ITEM_DESC_E.Margin = new System.Windows.Forms.Padding(4);
- this.txt_ITEM_DESC_E.Name = "txt_ITEM_DESC_E";
- this.txt_ITEM_DESC_E.Size = new System.Drawing.Size(21, 25);
- this.txt_ITEM_DESC_E.TabIndex = 87;
- this.txt_ITEM_DESC_E.Visible = false;
- //
- // label7
- //
- this.label7.AutoSize = true;
- this.label7.Location = new System.Drawing.Point(1170, 96);
- this.label7.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
- this.label7.Name = "label7";
- this.label7.Size = new System.Drawing.Size(97, 15);
- this.label7.TabIndex = 86;
- this.label7.Text = "物料英文名称";
- this.label7.Visible = false;
- //
- // txt_ITEM_DESC
- //
- this.txt_ITEM_DESC.Location = new System.Drawing.Point(747, 5);
- this.txt_ITEM_DESC.Margin = new System.Windows.Forms.Padding(4);
- this.txt_ITEM_DESC.Multiline = true;
- this.txt_ITEM_DESC.Name = "txt_ITEM_DESC";
- this.txt_ITEM_DESC.Size = new System.Drawing.Size(188, 25);
- this.txt_ITEM_DESC.TabIndex = 85;
- //
- // label6
- //
- this.label6.BackColor = System.Drawing.SystemColors.Highlight;
- this.label6.Location = new System.Drawing.Point(629, 5);
- this.label6.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
- this.label6.Name = "label6";
- this.label6.Size = new System.Drawing.Size(115, 26);
- this.label6.TabIndex = 84;
- this.label6.Text = "物 料 描 述";
- this.label6.TextAlign = System.Drawing.ContentAlignment.MiddleRight;
- //
- // txt_ITEM_MODEL
- //
- this.txt_ITEM_MODEL.Location = new System.Drawing.Point(1346, 72);
- this.txt_ITEM_MODEL.Margin = new System.Windows.Forms.Padding(4);
- this.txt_ITEM_MODEL.Name = "txt_ITEM_MODEL";
- this.txt_ITEM_MODEL.Size = new System.Drawing.Size(13, 25);
- this.txt_ITEM_MODEL.TabIndex = 83;
- this.txt_ITEM_MODEL.Visible = false;
- //
- // label5
- //
- this.label5.AutoSize = true;
- this.label5.Location = new System.Drawing.Point(1219, 72);
- this.label5.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
- this.label5.Name = "label5";
- this.label5.Size = new System.Drawing.Size(67, 15);
- this.label5.TabIndex = 82;
- this.label5.Text = "物料材质";
- this.label5.Visible = false;
- //
- // txt_ITEM_SPEC
- //
- this.txt_ITEM_SPEC.Location = new System.Drawing.Point(1330, 124);
- this.txt_ITEM_SPEC.Margin = new System.Windows.Forms.Padding(4);
- this.txt_ITEM_SPEC.Name = "txt_ITEM_SPEC";
- this.txt_ITEM_SPEC.Size = new System.Drawing.Size(25, 25);
- this.txt_ITEM_SPEC.TabIndex = 80;
- this.txt_ITEM_SPEC.Visible = false;
- //
- // txt_ITEM_CODE
- //
- this.txt_ITEM_CODE.Location = new System.Drawing.Point(124, 5);
- this.txt_ITEM_CODE.Margin = new System.Windows.Forms.Padding(4);
- this.txt_ITEM_CODE.Name = "txt_ITEM_CODE";
- this.txt_ITEM_CODE.Size = new System.Drawing.Size(188, 25);
- this.txt_ITEM_CODE.TabIndex = 77;
- //
- // label1
- //
- this.label1.BackColor = System.Drawing.SystemColors.Highlight;
- this.label1.Location = new System.Drawing.Point(7, 5);
- this.label1.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
- this.label1.Name = "label1";
- this.label1.Size = new System.Drawing.Size(115, 26);
- this.label1.TabIndex = 76;
- this.label1.Text = "物 料 编 码";
- this.label1.TextAlign = System.Drawing.ContentAlignment.MiddleRight;
- //
- // ultraTabPageControl2
- //
- this.ultraTabPageControl2.Controls.Add(this.label81);
- this.ultraTabPageControl2.Controls.Add(this.label82);
- this.ultraTabPageControl2.Controls.Add(this.label80);
- this.ultraTabPageControl2.Controls.Add(this.label79);
- this.ultraTabPageControl2.Controls.Add(this.txt_DELVRY_RANGE_MIN2);
- this.ultraTabPageControl2.Controls.Add(this.txt_DELVRY_RANGE_MAX2);
- this.ultraTabPageControl2.Controls.Add(this.txt_delivery_type_2);
- this.ultraTabPageControl2.Controls.Add(this.label78);
- this.ultraTabPageControl2.Controls.Add(this.txt_IS_DEFAULT);
- this.ultraTabPageControl2.Controls.Add(this.label62);
- this.ultraTabPageControl2.Controls.Add(this.txt_PLANNER_ROLE_NAME1);
- this.ultraTabPageControl2.Controls.Add(this.txt_BUYER_ROLE_NAME1);
- this.ultraTabPageControl2.Controls.Add(this.label31);
- this.ultraTabPageControl2.Controls.Add(this.label42);
- this.ultraTabPageControl2.Controls.Add(this.txt_SUPP_NAME);
- this.ultraTabPageControl2.Controls.Add(this.label40);
- this.ultraTabPageControl2.Controls.Add(this.txt_suppCode);
- this.ultraTabPageControl2.Controls.Add(this.txt_JS);
- this.ultraTabPageControl2.Controls.Add(this.label32);
- this.ultraTabPageControl2.Controls.Add(this.txt_YWKS);
- this.ultraTabPageControl2.Controls.Add(this.label33);
- this.ultraTabPageControl2.Controls.Add(this.label34);
- this.ultraTabPageControl2.Location = new System.Drawing.Point(-10000, -10000);
- this.ultraTabPageControl2.Margin = new System.Windows.Forms.Padding(4);
- this.ultraTabPageControl2.Name = "ultraTabPageControl2";
- this.ultraTabPageControl2.Size = new System.Drawing.Size(1771, 161);
- //
- // label81
- //
- this.label81.BackColor = System.Drawing.SystemColors.Highlight;
- this.label81.Location = new System.Drawing.Point(781, 36);
- this.label81.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
- this.label81.Name = "label81";
- this.label81.Size = new System.Drawing.Size(21, 26);
- this.label81.TabIndex = 172;
- this.label81.Text = "%";
- this.label81.TextAlign = System.Drawing.ContentAlignment.MiddleLeft;
- this.label81.Visible = false;
- //
- // label82
- //
- this.label82.BackColor = System.Drawing.SystemColors.Highlight;
- this.label82.Location = new System.Drawing.Point(781, 9);
- this.label82.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
- this.label82.Name = "label82";
- this.label82.Size = new System.Drawing.Size(21, 26);
- this.label82.TabIndex = 171;
- this.label82.Text = "%";
- this.label82.TextAlign = System.Drawing.ContentAlignment.MiddleLeft;
- this.label82.Visible = false;
- //
- // label80
- //
- this.label80.AutoSize = true;
- this.label80.Location = new System.Drawing.Point(481, 40);
- this.label80.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
- this.label80.Name = "label80";
- this.label80.Size = new System.Drawing.Size(97, 15);
- this.label80.TabIndex = 170;
- this.label80.Text = "交货量差下限";
- //
- // label79
- //
- this.label79.AutoSize = true;
- this.label79.Location = new System.Drawing.Point(481, 12);
- this.label79.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
- this.label79.Name = "label79";
- this.label79.Size = new System.Drawing.Size(97, 15);
- this.label79.TabIndex = 169;
- this.label79.Text = "交货量差上限";
- //
- // txt_DELVRY_RANGE_MIN2
- //
- this.txt_DELVRY_RANGE_MIN2.Location = new System.Drawing.Point(591, 35);
- this.txt_DELVRY_RANGE_MIN2.Margin = new System.Windows.Forms.Padding(4);
- this.txt_DELVRY_RANGE_MIN2.Name = "txt_DELVRY_RANGE_MIN2";
- this.txt_DELVRY_RANGE_MIN2.Nullable = true;
- this.txt_DELVRY_RANGE_MIN2.Size = new System.Drawing.Size(189, 24);
- this.txt_DELVRY_RANGE_MIN2.TabIndex = 168;
- //
- // txt_DELVRY_RANGE_MAX2
- //
- this.txt_DELVRY_RANGE_MAX2.Location = new System.Drawing.Point(591, 8);
- this.txt_DELVRY_RANGE_MAX2.Margin = new System.Windows.Forms.Padding(4);
- this.txt_DELVRY_RANGE_MAX2.Name = "txt_DELVRY_RANGE_MAX2";
- this.txt_DELVRY_RANGE_MAX2.Nullable = true;
- this.txt_DELVRY_RANGE_MAX2.Size = new System.Drawing.Size(189, 24);
- this.txt_DELVRY_RANGE_MAX2.TabIndex = 167;
- //
- // txt_delivery_type_2
- //
- this.txt_delivery_type_2.DisplayStyle = Infragistics.Win.EmbeddableElementDisplayStyle.Office2007;
- this.txt_delivery_type_2.DropDownStyle = Infragistics.Win.DropDownStyle.DropDownList;
- valueListItem6.DataValue = "0";
- valueListItem6.DisplayText = "不限制";
- valueListItem7.DataValue = "1";
- valueListItem7.DisplayText = "绝对值";
- valueListItem26.DataValue = "2";
- valueListItem26.DisplayText = "百分比";
- valueListItem27.DataValue = "3";
- valueListItem27.DisplayText = "不允许";
- this.txt_delivery_type_2.Items.AddRange(new Infragistics.Win.ValueListItem[] {
- valueListItem6,
- valueListItem7,
- valueListItem26,
- valueListItem27});
- this.txt_delivery_type_2.Location = new System.Drawing.Point(135, 98);
- this.txt_delivery_type_2.Margin = new System.Windows.Forms.Padding(4);
- this.txt_delivery_type_2.Name = "txt_delivery_type_2";
- this.txt_delivery_type_2.Size = new System.Drawing.Size(273, 24);
- this.txt_delivery_type_2.TabIndex = 160;
- this.txt_delivery_type_2.ValueChanged += new System.EventHandler(this.txt_delivery_type_2_ValueChanged);
- //
- // label78
- //
- this.label78.AutoSize = true;
- this.label78.Location = new System.Drawing.Point(29, 98);
- this.label78.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
- this.label78.Name = "label78";
- this.label78.Size = new System.Drawing.Size(97, 15);
- this.label78.TabIndex = 159;
- this.label78.Text = "交货量差方式";
- //
- // txt_IS_DEFAULT
- //
- this.txt_IS_DEFAULT.DisplayStyle = Infragistics.Win.EmbeddableElementDisplayStyle.Office2007;
- this.txt_IS_DEFAULT.DropDownStyle = Infragistics.Win.DropDownStyle.DropDownList;
- valueListItem28.DataValue = "1";
- valueListItem28.DisplayText = "是";
- valueListItem29.DataValue = "0";
- valueListItem29.DisplayText = "否";
- this.txt_IS_DEFAULT.Items.AddRange(new Infragistics.Win.ValueListItem[] {
- valueListItem28,
- valueListItem29});
- this.txt_IS_DEFAULT.Location = new System.Drawing.Point(135, 68);
- this.txt_IS_DEFAULT.Margin = new System.Windows.Forms.Padding(4);
- this.txt_IS_DEFAULT.Name = "txt_IS_DEFAULT";
- this.txt_IS_DEFAULT.Size = new System.Drawing.Size(273, 24);
- this.txt_IS_DEFAULT.TabIndex = 158;
- //
- // label62
- //
- this.label62.AutoSize = true;
- this.label62.Location = new System.Drawing.Point(29, 72);
- this.label62.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
- this.label62.Name = "label62";
- this.label62.Size = new System.Drawing.Size(97, 15);
- this.label62.TabIndex = 157;
- this.label62.Text = "是否主供应商";
- //
- // txt_PLANNER_ROLE_NAME1
- //
- appearance6.FontData.BoldAsString = "True";
- appearance6.TextHAlignAsString = "Center";
- appearance6.TextVAlignAsString = "Middle";
- editorButton7.Appearance = appearance6;
- editorButton7.Text = "+";
- this.txt_PLANNER_ROLE_NAME1.ButtonsRight.Add(editorButton7);
- this.txt_PLANNER_ROLE_NAME1.Location = new System.Drawing.Point(1093, 36);
- this.txt_PLANNER_ROLE_NAME1.Margin = new System.Windows.Forms.Padding(4);
- this.txt_PLANNER_ROLE_NAME1.Name = "txt_PLANNER_ROLE_NAME1";
- this.txt_PLANNER_ROLE_NAME1.ReadOnly = true;
- this.txt_PLANNER_ROLE_NAME1.Size = new System.Drawing.Size(273, 24);
- this.txt_PLANNER_ROLE_NAME1.TabIndex = 150;
- this.txt_PLANNER_ROLE_NAME1.Visible = false;
- this.txt_PLANNER_ROLE_NAME1.EditorButtonClick += new Infragistics.Win.UltraWinEditors.EditorButtonEventHandler(this.txt_PLANNER_ROLE_ID_EditorButtonClick);
- //
- // txt_BUYER_ROLE_NAME1
- //
- appearance7.FontData.BoldAsString = "True";
- appearance7.TextHAlignAsString = "Center";
- appearance7.TextVAlignAsString = "Middle";
- editorButton8.Appearance = appearance7;
- editorButton8.Text = "+";
- this.txt_BUYER_ROLE_NAME1.ButtonsRight.Add(editorButton8);
- this.txt_BUYER_ROLE_NAME1.Location = new System.Drawing.Point(1093, 8);
- this.txt_BUYER_ROLE_NAME1.Margin = new System.Windows.Forms.Padding(4);
- this.txt_BUYER_ROLE_NAME1.Name = "txt_BUYER_ROLE_NAME1";
- this.txt_BUYER_ROLE_NAME1.ReadOnly = true;
- this.txt_BUYER_ROLE_NAME1.Size = new System.Drawing.Size(273, 24);
- this.txt_BUYER_ROLE_NAME1.TabIndex = 149;
- this.txt_BUYER_ROLE_NAME1.Visible = false;
- this.txt_BUYER_ROLE_NAME1.EditorButtonClick += new Infragistics.Win.UltraWinEditors.EditorButtonEventHandler(this.txt_BUYER_ROLE_ID_EditorButtonClick);
- //
- // label31
- //
- this.label31.AutoSize = true;
- this.label31.Location = new System.Drawing.Point(973, 41);
- this.label31.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
- this.label31.Name = "label31";
- this.label31.Size = new System.Drawing.Size(112, 15);
- this.label31.TabIndex = 148;
- this.label31.Text = "计划员角色名称";
- this.label31.Visible = false;
- //
- // label42
- //
- this.label42.AutoSize = true;
- this.label42.Location = new System.Drawing.Point(972, 12);
- this.label42.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
- this.label42.Name = "label42";
- this.label42.Size = new System.Drawing.Size(112, 15);
- this.label42.TabIndex = 147;
- this.label42.Text = "采购员角色名称";
- this.label42.Visible = false;
- //
- // txt_SUPP_NAME
- //
- appearance1.FontData.BoldAsString = "True";
- editorButton9.Appearance = appearance1;
- editorButton9.Text = "+";
- this.txt_SUPP_NAME.ButtonsRight.Add(editorButton9);
- this.txt_SUPP_NAME.Location = new System.Drawing.Point(135, 9);
- this.txt_SUPP_NAME.Margin = new System.Windows.Forms.Padding(4);
- this.txt_SUPP_NAME.Name = "txt_SUPP_NAME";
- this.txt_SUPP_NAME.ReadOnly = true;
- this.txt_SUPP_NAME.Size = new System.Drawing.Size(273, 24);
- this.txt_SUPP_NAME.TabIndex = 14;
- this.txt_SUPP_NAME.EditorButtonClick += new Infragistics.Win.UltraWinEditors.EditorButtonEventHandler(this.txt_SUPP_NAME_EditorButtonClick);
- //
- // label40
- //
- this.label40.AutoSize = true;
- this.label40.Location = new System.Drawing.Point(45, 42);
- this.label40.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
- this.label40.Name = "label40";
- this.label40.Size = new System.Drawing.Size(82, 15);
- this.label40.TabIndex = 13;
- this.label40.Text = "供应商代码";
- //
- // txt_suppCode
- //
- this.txt_suppCode.Enabled = false;
- this.txt_suppCode.Location = new System.Drawing.Point(135, 38);
- this.txt_suppCode.Margin = new System.Windows.Forms.Padding(4);
- this.txt_suppCode.Name = "txt_suppCode";
- this.txt_suppCode.ReadOnly = true;
- this.txt_suppCode.Size = new System.Drawing.Size(272, 25);
- this.txt_suppCode.TabIndex = 12;
- //
- // txt_JS
- //
- this.txt_JS.Location = new System.Drawing.Point(945, 70);
- this.txt_JS.Margin = new System.Windows.Forms.Padding(4);
- this.txt_JS.Name = "txt_JS";
- this.txt_JS.Size = new System.Drawing.Size(145, 25);
- this.txt_JS.TabIndex = 11;
- this.txt_JS.Visible = false;
- //
- // label32
- //
- this.label32.AutoSize = true;
- this.label32.Location = new System.Drawing.Point(901, 74);
- this.label32.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
- this.label32.Name = "label32";
- this.label32.Size = new System.Drawing.Size(37, 15);
- this.label32.TabIndex = 10;
- this.label32.Text = "角色";
- this.label32.Visible = false;
- //
- // txt_YWKS
- //
- this.txt_YWKS.Location = new System.Drawing.Point(945, 99);
- this.txt_YWKS.Margin = new System.Windows.Forms.Padding(4);
- this.txt_YWKS.Name = "txt_YWKS";
- this.txt_YWKS.Size = new System.Drawing.Size(145, 25);
- this.txt_YWKS.TabIndex = 9;
- this.txt_YWKS.Visible = false;
- //
- // label33
- //
- this.label33.AutoSize = true;
- this.label33.Location = new System.Drawing.Point(872, 102);
- this.label33.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
- this.label33.Name = "label33";
- this.label33.Size = new System.Drawing.Size(67, 15);
- this.label33.TabIndex = 8;
- this.label33.Text = "业务科室";
- this.label33.Visible = false;
- //
- // label34
- //
- this.label34.AutoSize = true;
- this.label34.Location = new System.Drawing.Point(76, 14);
- this.label34.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
- this.label34.Name = "label34";
- this.label34.Size = new System.Drawing.Size(52, 15);
- this.label34.TabIndex = 6;
- this.label34.Text = "供应商";
- //
- // ultraTabPageControl3
- //
- this.ultraTabPageControl3.Controls.Add(this.txt_IsLevel);
- this.ultraTabPageControl3.Controls.Add(this.label75);
- this.ultraTabPageControl3.Controls.Add(this.txt_MatAttrClassName);
- this.ultraTabPageControl3.Controls.Add(this.label67);
- this.ultraTabPageControl3.Controls.Add(this.txt_MatAttrClass);
- this.ultraTabPageControl3.Controls.Add(this.label68);
- this.ultraTabPageControl3.Controls.Add(this.txt_ITEM_ATTR_CODE);
- this.ultraTabPageControl3.Controls.Add(this.txt_ITEM_ATTR);
- this.ultraTabPageControl3.Controls.Add(this.label60);
- this.ultraTabPageControl3.Controls.Add(this.txt_IS_DEFAULT_ATTR);
- this.ultraTabPageControl3.Controls.Add(this.label53);
- this.ultraTabPageControl3.Controls.Add(this.txt_REMARK_ATTR);
- this.ultraTabPageControl3.Controls.Add(this.label51);
- this.ultraTabPageControl3.Controls.Add(this.txt_ORDER_NUM);
- this.ultraTabPageControl3.Controls.Add(this.txt_item_Attr4);
- this.ultraTabPageControl3.Controls.Add(this.label50);
- this.ultraTabPageControl3.Controls.Add(this.txt_item_Attr3);
- this.ultraTabPageControl3.Controls.Add(this.label49);
- this.ultraTabPageControl3.Controls.Add(this.txt_item_Attr2);
- this.ultraTabPageControl3.Controls.Add(this.label48);
- this.ultraTabPageControl3.Controls.Add(this.txt_item_Attr1);
- this.ultraTabPageControl3.Controls.Add(this.label47);
- this.ultraTabPageControl3.Controls.Add(this.txt_ORDER_NUM11);
- this.ultraTabPageControl3.Controls.Add(this.label37);
- this.ultraTabPageControl3.Controls.Add(this.label38);
- this.ultraTabPageControl3.Controls.Add(this.txt_ITEM_CODE2);
- this.ultraTabPageControl3.Controls.Add(this.label39);
- this.ultraTabPageControl3.Location = new System.Drawing.Point(-10000, -10000);
- this.ultraTabPageControl3.Margin = new System.Windows.Forms.Padding(4);
- this.ultraTabPageControl3.Name = "ultraTabPageControl3";
- this.ultraTabPageControl3.Size = new System.Drawing.Size(1771, 161);
- //
- // txt_IsLevel
- //
- this.txt_IsLevel.DisplayStyle = Infragistics.Win.EmbeddableElementDisplayStyle.Office2007;
- this.txt_IsLevel.DropDownStyle = Infragistics.Win.DropDownStyle.DropDownList;
- valueListItem11.DataValue = "0";
- valueListItem11.DisplayText = "否";
- valueListItem12.DataValue = "1";
- valueListItem12.DisplayText = "是";
- this.txt_IsLevel.Items.AddRange(new Infragistics.Win.ValueListItem[] {
- valueListItem11,
- valueListItem12});
- this.txt_IsLevel.Location = new System.Drawing.Point(372, 38);
- this.txt_IsLevel.Margin = new System.Windows.Forms.Padding(4);
- this.txt_IsLevel.Name = "txt_IsLevel";
- this.txt_IsLevel.Size = new System.Drawing.Size(56, 24);
- this.txt_IsLevel.TabIndex = 166;
- //
- // label75
- //
- this.label75.AutoSize = true;
- this.label75.Location = new System.Drawing.Point(271, 42);
- this.label75.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
- this.label75.Name = "label75";
- this.label75.Size = new System.Drawing.Size(97, 15);
- this.label75.TabIndex = 165;
- this.label75.Text = "是否判定等级";
- //
- // txt_MatAttrClassName
- //
- this.txt_MatAttrClassName.Location = new System.Drawing.Point(856, 31);
- this.txt_MatAttrClassName.Margin = new System.Windows.Forms.Padding(4);
- this.txt_MatAttrClassName.Name = "txt_MatAttrClassName";
- this.txt_MatAttrClassName.Size = new System.Drawing.Size(169, 25);
- this.txt_MatAttrClassName.TabIndex = 164;
- this.txt_MatAttrClassName.Visible = false;
- //
- // label67
- //
- this.label67.AutoSize = true;
- this.label67.Location = new System.Drawing.Point(745, 34);
- this.label67.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
- this.label67.Name = "label67";
- this.label67.Size = new System.Drawing.Size(97, 15);
- this.label67.TabIndex = 163;
- this.label67.Text = "属性分类名称";
- this.label67.Visible = false;
- //
- // txt_MatAttrClass
- //
- this.txt_MatAttrClass.Location = new System.Drawing.Point(856, 5);
- this.txt_MatAttrClass.Margin = new System.Windows.Forms.Padding(4);
- this.txt_MatAttrClass.Name = "txt_MatAttrClass";
- this.txt_MatAttrClass.Size = new System.Drawing.Size(169, 25);
- this.txt_MatAttrClass.TabIndex = 162;
- this.txt_MatAttrClass.Visible = false;
- //
- // label68
- //
- this.label68.AutoSize = true;
- this.label68.Location = new System.Drawing.Point(745, 6);
- this.label68.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
- this.label68.Name = "label68";
- this.label68.Size = new System.Drawing.Size(97, 15);
- this.label68.TabIndex = 161;
- this.label68.Text = "属性分类编码";
- this.label68.Visible = false;
- //
- // txt_ITEM_ATTR_CODE
- //
- this.txt_ITEM_ATTR_CODE.Location = new System.Drawing.Point(104, 39);
- this.txt_ITEM_ATTR_CODE.Margin = new System.Windows.Forms.Padding(4);
- this.txt_ITEM_ATTR_CODE.Name = "txt_ITEM_ATTR_CODE";
- this.txt_ITEM_ATTR_CODE.ReadOnly = true;
- this.txt_ITEM_ATTR_CODE.Size = new System.Drawing.Size(161, 24);
- this.txt_ITEM_ATTR_CODE.TabIndex = 160;
- //
- // txt_ITEM_ATTR
- //
- appearance13.TextHAlignAsString = "Center";
- appearance13.TextVAlignAsString = "Middle";
- editorButton10.Appearance = appearance13;
- editorButton10.Text = "+";
- this.txt_ITEM_ATTR.ButtonsRight.Add(editorButton10);
- this.txt_ITEM_ATTR.Location = new System.Drawing.Point(104, 9);
- this.txt_ITEM_ATTR.Margin = new System.Windows.Forms.Padding(4);
- this.txt_ITEM_ATTR.Name = "txt_ITEM_ATTR";
- this.txt_ITEM_ATTR.ReadOnly = true;
- this.txt_ITEM_ATTR.Size = new System.Drawing.Size(161, 24);
- this.txt_ITEM_ATTR.TabIndex = 159;
- this.txt_ITEM_ATTR.EditorButtonClick += new Infragistics.Win.UltraWinEditors.EditorButtonEventHandler(this.txt_ITEM_ATTR_EditorButtonClick);
- //
- // label60
- //
- this.label60.AutoSize = true;
- this.label60.Location = new System.Drawing.Point(28, 44);
- this.label60.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
- this.label60.Name = "label60";
- this.label60.Size = new System.Drawing.Size(67, 15);
- this.label60.TabIndex = 157;
- this.label60.Text = "属性编码";
- //
- // txt_IS_DEFAULT_ATTR
- //
- this.txt_IS_DEFAULT_ATTR.DisplayStyle = Infragistics.Win.EmbeddableElementDisplayStyle.Office2007;
- this.txt_IS_DEFAULT_ATTR.DropDownStyle = Infragistics.Win.DropDownStyle.DropDownList;
- valueListItem24.DataValue = "0";
- valueListItem24.DisplayText = "不常用";
- valueListItem25.DataValue = "1";
- valueListItem25.DisplayText = "常用";
- this.txt_IS_DEFAULT_ATTR.Items.AddRange(new Infragistics.Win.ValueListItem[] {
- valueListItem24,
- valueListItem25});
- this.txt_IS_DEFAULT_ATTR.Location = new System.Drawing.Point(345, 9);
- this.txt_IS_DEFAULT_ATTR.Margin = new System.Windows.Forms.Padding(4);
- this.txt_IS_DEFAULT_ATTR.Name = "txt_IS_DEFAULT_ATTR";
- this.txt_IS_DEFAULT_ATTR.Size = new System.Drawing.Size(83, 24);
- this.txt_IS_DEFAULT_ATTR.TabIndex = 156;
- //
- // label53
- //
- this.label53.AutoSize = true;
- this.label53.Location = new System.Drawing.Point(271, 14);
- this.label53.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
- this.label53.Name = "label53";
- this.label53.Size = new System.Drawing.Size(67, 15);
- this.label53.TabIndex = 154;
- this.label53.Text = "是否常用";
- //
- // txt_REMARK_ATTR
- //
- this.txt_REMARK_ATTR.Location = new System.Drawing.Point(104, 69);
- this.txt_REMARK_ATTR.Margin = new System.Windows.Forms.Padding(4);
- this.txt_REMARK_ATTR.Multiline = true;
- this.txt_REMARK_ATTR.Name = "txt_REMARK_ATTR";
- this.txt_REMARK_ATTR.Size = new System.Drawing.Size(320, 80);
- this.txt_REMARK_ATTR.TabIndex = 153;
- //
- // label51
- //
- this.label51.AutoSize = true;
- this.label51.Location = new System.Drawing.Point(60, 74);
- this.label51.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
- this.label51.Name = "label51";
- this.label51.Size = new System.Drawing.Size(37, 15);
- this.label51.TabIndex = 152;
- this.label51.Text = "备注";
- //
- // txt_ORDER_NUM
- //
- this.txt_ORDER_NUM.Location = new System.Drawing.Point(1088, 110);
- this.txt_ORDER_NUM.Margin = new System.Windows.Forms.Padding(4);
- this.txt_ORDER_NUM.MaxValue = 99;
- this.txt_ORDER_NUM.MinValue = 0;
- this.txt_ORDER_NUM.Name = "txt_ORDER_NUM";
- this.txt_ORDER_NUM.NullText = "50";
- this.txt_ORDER_NUM.Size = new System.Drawing.Size(171, 24);
- this.txt_ORDER_NUM.TabIndex = 151;
- this.txt_ORDER_NUM.Value = 50;
- this.txt_ORDER_NUM.Visible = false;
- //
- // txt_item_Attr4
- //
- this.txt_item_Attr4.Location = new System.Drawing.Point(1088, 82);
- this.txt_item_Attr4.Margin = new System.Windows.Forms.Padding(4);
- this.txt_item_Attr4.Name = "txt_item_Attr4";
- this.txt_item_Attr4.Size = new System.Drawing.Size(169, 25);
- this.txt_item_Attr4.TabIndex = 150;
- this.txt_item_Attr4.Visible = false;
- //
- // label50
- //
- this.label50.AutoSize = true;
- this.label50.Location = new System.Drawing.Point(1035, 88);
- this.label50.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
- this.label50.Name = "label50";
- this.label50.Size = new System.Drawing.Size(45, 15);
- this.label50.TabIndex = 149;
- this.label50.Text = "属性4";
- this.label50.Visible = false;
- //
- // txt_item_Attr3
- //
- this.txt_item_Attr3.Location = new System.Drawing.Point(1088, 55);
- this.txt_item_Attr3.Margin = new System.Windows.Forms.Padding(4);
- this.txt_item_Attr3.Name = "txt_item_Attr3";
- this.txt_item_Attr3.Size = new System.Drawing.Size(168, 25);
- this.txt_item_Attr3.TabIndex = 148;
- this.txt_item_Attr3.Visible = false;
- //
- // label49
- //
- this.label49.AutoSize = true;
- this.label49.Location = new System.Drawing.Point(1035, 60);
- this.label49.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
- this.label49.Name = "label49";
- this.label49.Size = new System.Drawing.Size(45, 15);
- this.label49.TabIndex = 147;
- this.label49.Text = "属性3";
- this.label49.Visible = false;
- //
- // txt_item_Attr2
- //
- this.txt_item_Attr2.Location = new System.Drawing.Point(1088, 29);
- this.txt_item_Attr2.Margin = new System.Windows.Forms.Padding(4);
- this.txt_item_Attr2.Name = "txt_item_Attr2";
- this.txt_item_Attr2.Size = new System.Drawing.Size(169, 25);
- this.txt_item_Attr2.TabIndex = 146;
- this.txt_item_Attr2.Visible = false;
- //
- // label48
- //
- this.label48.AutoSize = true;
- this.label48.Location = new System.Drawing.Point(1035, 34);
- this.label48.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
- this.label48.Name = "label48";
- this.label48.Size = new System.Drawing.Size(45, 15);
- this.label48.TabIndex = 145;
- this.label48.Text = "属性2";
- this.label48.Visible = false;
- //
- // txt_item_Attr1
- //
- this.txt_item_Attr1.Location = new System.Drawing.Point(1088, 2);
- this.txt_item_Attr1.Margin = new System.Windows.Forms.Padding(4);
- this.txt_item_Attr1.Name = "txt_item_Attr1";
- this.txt_item_Attr1.Size = new System.Drawing.Size(169, 25);
- this.txt_item_Attr1.TabIndex = 144;
- this.txt_item_Attr1.Visible = false;
- //
- // label47
- //
- this.label47.AutoSize = true;
- this.label47.Location = new System.Drawing.Point(1035, 9);
- this.label47.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
- this.label47.Name = "label47";
- this.label47.Size = new System.Drawing.Size(45, 15);
- this.label47.TabIndex = 143;
- this.label47.Text = "属性1";
- this.label47.Visible = false;
- //
- // txt_ORDER_NUM11
- //
- this.txt_ORDER_NUM11.Location = new System.Drawing.Point(1340, 30);
- this.txt_ORDER_NUM11.Margin = new System.Windows.Forms.Padding(4);
- this.txt_ORDER_NUM11.Name = "txt_ORDER_NUM11";
- this.txt_ORDER_NUM11.Size = new System.Drawing.Size(169, 25);
- this.txt_ORDER_NUM11.TabIndex = 22;
- this.txt_ORDER_NUM11.Text = "50";
- this.txt_ORDER_NUM11.Visible = false;
- //
- // label37
- //
- this.label37.AutoSize = true;
- this.label37.Location = new System.Drawing.Point(1035, 115);
- this.label37.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
- this.label37.Name = "label37";
- this.label37.Size = new System.Drawing.Size(37, 15);
- this.label37.TabIndex = 21;
- this.label37.Text = "排序";
- this.label37.Visible = false;
- //
- // label38
- //
- this.label38.AutoSize = true;
- this.label38.Location = new System.Drawing.Point(60, 12);
- this.label38.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
- this.label38.Name = "label38";
- this.label38.Size = new System.Drawing.Size(37, 15);
- this.label38.TabIndex = 19;
- this.label38.Text = "属性";
- //
- // txt_ITEM_CODE2
- //
- this.txt_ITEM_CODE2.Location = new System.Drawing.Point(1340, 4);
- this.txt_ITEM_CODE2.Margin = new System.Windows.Forms.Padding(4);
- this.txt_ITEM_CODE2.Name = "txt_ITEM_CODE2";
- this.txt_ITEM_CODE2.ReadOnly = true;
- this.txt_ITEM_CODE2.Size = new System.Drawing.Size(172, 25);
- this.txt_ITEM_CODE2.TabIndex = 18;
- this.txt_ITEM_CODE2.Visible = false;
- //
- // label39
- //
- this.label39.AutoSize = true;
- this.label39.Location = new System.Drawing.Point(1264, 9);
- this.label39.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
- this.label39.Name = "label39";
- this.label39.Size = new System.Drawing.Size(67, 15);
- this.label39.TabIndex = 17;
- this.label39.Text = "物料编码";
- this.label39.Visible = false;
- //
- // ultraTabPageControl7
- //
- this.ultraTabPageControl7.Controls.Add(this.txt_STANDARDS_ID);
- this.ultraTabPageControl7.Controls.Add(this.txt_STANDARDS_CODE);
- this.ultraTabPageControl7.Controls.Add(this.label54);
- this.ultraTabPageControl7.Controls.Add(this.txt_IS_DEFAULT_STANDRANDS);
- this.ultraTabPageControl7.Controls.Add(this.label46);
- this.ultraTabPageControl7.Controls.Add(this.txt_REMARK_STANDARD);
- this.ultraTabPageControl7.Controls.Add(this.label45);
- this.ultraTabPageControl7.Controls.Add(this.txtORDER_NUM);
- this.ultraTabPageControl7.Controls.Add(this.label44);
- this.ultraTabPageControl7.Controls.Add(this.label43);
- this.ultraTabPageControl7.Location = new System.Drawing.Point(-10000, -10000);
- this.ultraTabPageControl7.Margin = new System.Windows.Forms.Padding(4);
- this.ultraTabPageControl7.Name = "ultraTabPageControl7";
- this.ultraTabPageControl7.Size = new System.Drawing.Size(1771, 161);
- //
- // txt_STANDARDS_ID
- //
- this.txt_STANDARDS_ID.Location = new System.Drawing.Point(1277, 12);
- this.txt_STANDARDS_ID.Margin = new System.Windows.Forms.Padding(4);
- this.txt_STANDARDS_ID.Name = "txt_STANDARDS_ID";
- this.txt_STANDARDS_ID.ReadOnly = true;
- this.txt_STANDARDS_ID.Size = new System.Drawing.Size(359, 24);
- this.txt_STANDARDS_ID.TabIndex = 161;
- this.txt_STANDARDS_ID.Visible = false;
- //
- // txt_STANDARDS_CODE
- //
- appearance9.TextHAlignAsString = "Center";
- appearance9.TextVAlignAsString = "Middle";
- editorButton11.Appearance = appearance9;
- editorButton11.Text = "+";
- this.txt_STANDARDS_CODE.ButtonsRight.Add(editorButton11);
- this.txt_STANDARDS_CODE.Location = new System.Drawing.Point(123, 11);
- this.txt_STANDARDS_CODE.Margin = new System.Windows.Forms.Padding(4);
- this.txt_STANDARDS_CODE.Name = "txt_STANDARDS_CODE";
- this.txt_STANDARDS_CODE.ReadOnly = true;
- this.txt_STANDARDS_CODE.Size = new System.Drawing.Size(264, 24);
- this.txt_STANDARDS_CODE.TabIndex = 160;
- this.txt_STANDARDS_CODE.EditorButtonClick += new Infragistics.Win.UltraWinEditors.EditorButtonEventHandler(this.txt_STANDARDS_CODE_EditorButtonClick);
- //
- // label54
- //
- this.label54.AutoSize = true;
- this.label54.Location = new System.Drawing.Point(16, 16);
- this.label54.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
- this.label54.Name = "label54";
- this.label54.Size = new System.Drawing.Size(97, 15);
- this.label54.TabIndex = 32;
- this.label54.Text = "采购标准编号";
- //
- // txt_IS_DEFAULT_STANDRANDS
- //
- this.txt_IS_DEFAULT_STANDRANDS.DisplayStyle = Infragistics.Win.EmbeddableElementDisplayStyle.Office2007;
- this.txt_IS_DEFAULT_STANDRANDS.DropDownStyle = Infragistics.Win.DropDownStyle.DropDownList;
- valueListItem4.DataValue = "0";
- valueListItem4.DisplayText = "不常用";
- valueListItem5.DataValue = "1";
- valueListItem5.DisplayText = "常用";
- this.txt_IS_DEFAULT_STANDRANDS.Items.AddRange(new Infragistics.Win.ValueListItem[] {
- valueListItem4,
- valueListItem5});
- this.txt_IS_DEFAULT_STANDRANDS.Location = new System.Drawing.Point(465, 11);
- this.txt_IS_DEFAULT_STANDRANDS.Margin = new System.Windows.Forms.Padding(4);
- this.txt_IS_DEFAULT_STANDRANDS.Name = "txt_IS_DEFAULT_STANDRANDS";
- this.txt_IS_DEFAULT_STANDRANDS.Size = new System.Drawing.Size(89, 24);
- this.txt_IS_DEFAULT_STANDRANDS.TabIndex = 31;
- //
- // label46
- //
- this.label46.AutoSize = true;
- this.label46.Location = new System.Drawing.Point(80, 48);
- this.label46.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
- this.label46.Name = "label46";
- this.label46.Size = new System.Drawing.Size(37, 15);
- this.label46.TabIndex = 30;
- this.label46.Text = "备注";
- //
- // txt_REMARK_STANDARD
- //
- this.txt_REMARK_STANDARD.Location = new System.Drawing.Point(123, 46);
- this.txt_REMARK_STANDARD.Margin = new System.Windows.Forms.Padding(4);
- this.txt_REMARK_STANDARD.Multiline = true;
- this.txt_REMARK_STANDARD.Name = "txt_REMARK_STANDARD";
- this.txt_REMARK_STANDARD.Size = new System.Drawing.Size(433, 100);
- this.txt_REMARK_STANDARD.TabIndex = 29;
- //
- // label45
- //
- this.label45.AutoSize = true;
- this.label45.Location = new System.Drawing.Point(1237, 42);
- this.label45.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
- this.label45.Name = "label45";
- this.label45.Size = new System.Drawing.Size(37, 15);
- this.label45.TabIndex = 28;
- this.label45.Text = "排序";
- this.label45.Visible = false;
- //
- // txtORDER_NUM
- //
- this.txtORDER_NUM.Location = new System.Drawing.Point(1277, 38);
- this.txtORDER_NUM.Margin = new System.Windows.Forms.Padding(4);
- this.txtORDER_NUM.MaxLength = 2;
- this.txtORDER_NUM.Name = "txtORDER_NUM";
- this.txtORDER_NUM.Size = new System.Drawing.Size(147, 24);
- this.txtORDER_NUM.TabIndex = 27;
- this.txtORDER_NUM.Visible = false;
- //
- // label44
- //
- this.label44.AutoSize = true;
- this.label44.Location = new System.Drawing.Point(395, 16);
- this.label44.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
- this.label44.Name = "label44";
- this.label44.Size = new System.Drawing.Size(67, 15);
- this.label44.TabIndex = 26;
- this.label44.Text = "是否常用";
- //
- // label43
- //
- this.label43.AutoSize = true;
- this.label43.Location = new System.Drawing.Point(1156, 16);
- this.label43.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
- this.label43.Name = "label43";
- this.label43.Size = new System.Drawing.Size(113, 15);
- this.label43.TabIndex = 23;
- this.label43.Text = "采购标准编号ID";
- this.label43.Visible = false;
- //
- // ultraTabPageControl9
- //
- this.ultraTabPageControl9.Controls.Add(this.txt_ITEM_UOM_CONEFFICIENT);
- this.ultraTabPageControl9.Controls.Add(this.txt_WEIGHT_UNIT_CODE);
- this.ultraTabPageControl9.Controls.Add(this.txt_UOM_CODE);
- this.ultraTabPageControl9.Controls.Add(this.label59);
- this.ultraTabPageControl9.Controls.Add(this.txt_REMARK_UOM);
- this.ultraTabPageControl9.Controls.Add(this.txt_IS_DEFAULT_UOM);
- this.ultraTabPageControl9.Controls.Add(this.label58);
- this.ultraTabPageControl9.Controls.Add(this.label2);
- this.ultraTabPageControl9.Controls.Add(this.label57);
- this.ultraTabPageControl9.Controls.Add(this.txt_WEIGHT_UNIT);
- this.ultraTabPageControl9.Controls.Add(this.label56);
- this.ultraTabPageControl9.Controls.Add(this.label55);
- this.ultraTabPageControl9.Controls.Add(this.txt_UOM_NAME);
- this.ultraTabPageControl9.Controls.Add(this.label4);
- this.ultraTabPageControl9.Location = new System.Drawing.Point(-10000, -10000);
- this.ultraTabPageControl9.Margin = new System.Windows.Forms.Padding(4);
- this.ultraTabPageControl9.Name = "ultraTabPageControl9";
- this.ultraTabPageControl9.Size = new System.Drawing.Size(1771, 161);
- //
- // txt_ITEM_UOM_CONEFFICIENT
- //
- this.txt_ITEM_UOM_CONEFFICIENT.Location = new System.Drawing.Point(265, 36);
- this.txt_ITEM_UOM_CONEFFICIENT.Margin = new System.Windows.Forms.Padding(4);
- this.txt_ITEM_UOM_CONEFFICIENT.Name = "txt_ITEM_UOM_CONEFFICIENT";
- this.txt_ITEM_UOM_CONEFFICIENT.ReadOnly = true;
- this.txt_ITEM_UOM_CONEFFICIENT.Size = new System.Drawing.Size(68, 24);
- this.txt_ITEM_UOM_CONEFFICIENT.TabIndex = 165;
- //
- // txt_WEIGHT_UNIT_CODE
- //
- this.txt_WEIGHT_UNIT_CODE.Location = new System.Drawing.Point(445, 36);
- this.txt_WEIGHT_UNIT_CODE.Margin = new System.Windows.Forms.Padding(4);
- this.txt_WEIGHT_UNIT_CODE.Name = "txt_WEIGHT_UNIT_CODE";
- this.txt_WEIGHT_UNIT_CODE.ReadOnly = true;
- this.txt_WEIGHT_UNIT_CODE.Size = new System.Drawing.Size(235, 24);
- this.txt_WEIGHT_UNIT_CODE.TabIndex = 164;
- //
- // txt_UOM_CODE
- //
- this.txt_UOM_CODE.Location = new System.Drawing.Point(975, 8);
- this.txt_UOM_CODE.Margin = new System.Windows.Forms.Padding(4);
- this.txt_UOM_CODE.Name = "txt_UOM_CODE";
- this.txt_UOM_CODE.ReadOnly = true;
- this.txt_UOM_CODE.Size = new System.Drawing.Size(235, 24);
- this.txt_UOM_CODE.TabIndex = 163;
- this.txt_UOM_CODE.Visible = false;
- //
- // label59
- //
- this.label59.AutoSize = true;
- this.label59.Location = new System.Drawing.Point(57, 70);
- this.label59.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
- this.label59.Name = "label59";
- this.label59.Size = new System.Drawing.Size(37, 15);
- this.label59.TabIndex = 162;
- this.label59.Text = "备注";
- //
- // txt_REMARK_UOM
- //
- this.txt_REMARK_UOM.Location = new System.Drawing.Point(100, 66);
- this.txt_REMARK_UOM.Margin = new System.Windows.Forms.Padding(4);
- this.txt_REMARK_UOM.Multiline = true;
- this.txt_REMARK_UOM.Name = "txt_REMARK_UOM";
- this.txt_REMARK_UOM.Size = new System.Drawing.Size(580, 86);
- this.txt_REMARK_UOM.TabIndex = 161;
- //
- // txt_IS_DEFAULT_UOM
- //
- this.txt_IS_DEFAULT_UOM.DisplayStyle = Infragistics.Win.EmbeddableElementDisplayStyle.Office2007;
- this.txt_IS_DEFAULT_UOM.DropDownStyle = Infragistics.Win.DropDownStyle.DropDownList;
- valueListItem2.DataValue = "0";
- valueListItem2.DisplayText = "不常用";
- valueListItem3.DataValue = "1";
- valueListItem3.DisplayText = "常用";
- this.txt_IS_DEFAULT_UOM.Items.AddRange(new Infragistics.Win.ValueListItem[] {
- valueListItem2,
- valueListItem3});
- this.txt_IS_DEFAULT_UOM.Location = new System.Drawing.Point(100, 36);
- this.txt_IS_DEFAULT_UOM.Margin = new System.Windows.Forms.Padding(4);
- this.txt_IS_DEFAULT_UOM.Name = "txt_IS_DEFAULT_UOM";
- this.txt_IS_DEFAULT_UOM.Size = new System.Drawing.Size(84, 24);
- this.txt_IS_DEFAULT_UOM.TabIndex = 160;
- //
- // label58
- //
- this.label58.AutoSize = true;
- this.label58.Location = new System.Drawing.Point(25, 41);
- this.label58.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
- this.label58.Name = "label58";
- this.label58.Size = new System.Drawing.Size(67, 15);
- this.label58.TabIndex = 159;
- this.label58.Text = "是否常用";
- //
- // label2
- //
- this.label2.AutoSize = true;
- this.label2.Location = new System.Drawing.Point(192, 40);
- this.label2.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
- this.label2.Name = "label2";
- this.label2.Size = new System.Drawing.Size(67, 15);
- this.label2.TabIndex = 157;
- this.label2.Text = "转换系数";
- //
- // label57
- //
- this.label57.AutoSize = true;
- this.label57.Location = new System.Drawing.Point(340, 40);
- this.label57.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
- this.label57.Name = "label57";
- this.label57.Size = new System.Drawing.Size(97, 15);
- this.label57.TabIndex = 155;
- this.label57.Text = "库存单位编码";
- //
- // txt_WEIGHT_UNIT
- //
- this.txt_WEIGHT_UNIT.Location = new System.Drawing.Point(445, 8);
- this.txt_WEIGHT_UNIT.Margin = new System.Windows.Forms.Padding(4);
- this.txt_WEIGHT_UNIT.Name = "txt_WEIGHT_UNIT";
- this.txt_WEIGHT_UNIT.ReadOnly = true;
- this.txt_WEIGHT_UNIT.Size = new System.Drawing.Size(235, 24);
- this.txt_WEIGHT_UNIT.TabIndex = 154;
- //
- // label56
- //
- this.label56.AutoSize = true;
- this.label56.Location = new System.Drawing.Point(372, 12);
- this.label56.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
- this.label56.Name = "label56";
- this.label56.Size = new System.Drawing.Size(67, 15);
- this.label56.TabIndex = 153;
- this.label56.Text = "库存单位";
- //
- // label55
- //
- this.label55.AutoSize = true;
- this.label55.Location = new System.Drawing.Point(869, 12);
- this.label55.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
- this.label55.Name = "label55";
- this.label55.Size = new System.Drawing.Size(97, 15);
- this.label55.TabIndex = 151;
- this.label55.Text = "采购单位编码";
- this.label55.Visible = false;
- //
- // txt_UOM_NAME
- //
- appearance11.TextHAlignAsString = "Center";
- appearance11.TextVAlignAsString = "Middle";
- editorButton12.Appearance = appearance11;
- editorButton12.Text = "+";
- this.txt_UOM_NAME.ButtonsRight.Add(editorButton12);
- this.txt_UOM_NAME.Location = new System.Drawing.Point(100, 6);
- this.txt_UOM_NAME.Margin = new System.Windows.Forms.Padding(4);
- this.txt_UOM_NAME.Name = "txt_UOM_NAME";
- this.txt_UOM_NAME.ReadOnly = true;
- this.txt_UOM_NAME.Size = new System.Drawing.Size(235, 24);
- this.txt_UOM_NAME.TabIndex = 144;
- this.txt_UOM_NAME.EditorButtonClick += new Infragistics.Win.UltraWinEditors.EditorButtonEventHandler(this.txt_UOM_NAME_EditorButtonClick);
- //
- // label4
- //
- this.label4.AutoSize = true;
- this.label4.Location = new System.Drawing.Point(27, 11);
- this.label4.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
- this.label4.Name = "label4";
- this.label4.Size = new System.Drawing.Size(67, 15);
- this.label4.TabIndex = 143;
- this.label4.Text = "采购单位";
- //
- // ultraTabPageControl4
- //
- this.ultraTabPageControl4.Controls.Add(this.txt_MIN_QTY);
- this.ultraTabPageControl4.Controls.Add(this.label17);
- this.ultraTabPageControl4.Controls.Add(this.label5);
- this.ultraTabPageControl4.Controls.Add(this.label7);
- this.ultraTabPageControl4.Controls.Add(this.txt_ITEM_DESC_E);
- this.ultraTabPageControl4.Controls.Add(this.label10);
- this.ultraTabPageControl4.Controls.Add(this.txt_MONTH_END_AVG_PRICE);
- this.ultraTabPageControl4.Controls.Add(this.label11);
- this.ultraTabPageControl4.Controls.Add(this.txt_LAST_PRICE);
- this.ultraTabPageControl4.Controls.Add(this.label29);
- this.ultraTabPageControl4.Controls.Add(this.label28);
- this.ultraTabPageControl4.Controls.Add(this.label27);
- this.ultraTabPageControl4.Controls.Add(this.Ultcmb_INV_WASTE_FAC_UOM);
- this.ultraTabPageControl4.Controls.Add(this.Ultcmb_PUR_STANDARDS);
- this.ultraTabPageControl4.Controls.Add(this.label22);
- this.ultraTabPageControl4.Controls.Add(this.txt_BUYER_ROLE_NAME);
- this.ultraTabPageControl4.Controls.Add(this.label52);
- this.ultraTabPageControl4.Controls.Add(this.Ultcmb_WEIGHT_UNIT_CODE);
- this.ultraTabPageControl4.Controls.Add(this.txt_ITEM_MODEL);
- this.ultraTabPageControl4.Controls.Add(this.txt_ITEM_SPEC);
- this.ultraTabPageControl4.Controls.Add(this.label13);
- this.ultraTabPageControl4.Controls.Add(this.txt_PUR_STANDARDS_CODE);
- this.ultraTabPageControl4.Controls.Add(this.ultraGrid2);
- this.ultraTabPageControl4.Location = new System.Drawing.Point(1, 25);
- this.ultraTabPageControl4.Margin = new System.Windows.Forms.Padding(4);
- this.ultraTabPageControl4.Name = "ultraTabPageControl4";
- this.ultraTabPageControl4.Size = new System.Drawing.Size(1490, 260);
- //
- // ultraGrid2
- //
- this.ultraGrid2.DataMember = "Table2";
- this.ultraGrid2.DataSource = this.dataSet1;
- ultraGridColumn1.Header.Caption = "供应商代码";
- ultraGridColumn1.Header.VisiblePosition = 1;
- ultraGridColumn2.Header.Caption = "供应商名称";
- ultraGridColumn2.Header.VisiblePosition = 2;
- ultraGridColumn3.Header.VisiblePosition = 4;
- ultraGridColumn4.Header.VisiblePosition = 3;
- ultraGridColumn4.Width = 96;
- ultraGridColumn5.Header.Caption = "允差方式";
- ultraGridColumn5.Header.VisiblePosition = 5;
- ultraGridColumn6.Header.Caption = "允差下线";
- ultraGridColumn6.Header.VisiblePosition = 6;
- ultraGridColumn7.Header.Caption = "允差上限";
- ultraGridColumn7.Header.VisiblePosition = 7;
- ultraGridColumn8.Header.VisiblePosition = 0;
- ultraGridBand1.Columns.AddRange(new object[] {
- ultraGridColumn1,
- ultraGridColumn2,
- ultraGridColumn3,
- ultraGridColumn4,
- ultraGridColumn5,
- ultraGridColumn6,
- ultraGridColumn7,
- ultraGridColumn8});
- this.ultraGrid2.DisplayLayout.BandsSerializer.Add(ultraGridBand1);
- this.ultraGrid2.DisplayLayout.CaptionVisible = Infragistics.Win.DefaultableBoolean.False;
- this.ultraGrid2.Dock = System.Windows.Forms.DockStyle.Fill;
- this.ultraGrid2.Location = new System.Drawing.Point(0, 0);
- this.ultraGrid2.Margin = new System.Windows.Forms.Padding(4);
- this.ultraGrid2.Name = "ultraGrid2";
- this.ultraGrid2.Size = new System.Drawing.Size(1490, 260);
- this.ultraGrid2.TabIndex = 2;
- this.ultraGrid2.Text = "ultraGrid2";
- this.ultraGrid2.AfterRowActivate += new System.EventHandler(this.ultraGrid2_AfterRowActivate);
- this.ultraGrid2.ClickCell += new Infragistics.Win.UltraWinGrid.ClickCellEventHandler(this.ultraGrid2_ClickCell);
- this.ultraGrid2.Click += new System.EventHandler(this.ultraGrid2_Click);
- //
- // dataSet1
- //
- this.dataSet1.DataSetName = "NewDataSet";
- this.dataSet1.Tables.AddRange(new System.Data.DataTable[] {
- this.dataTable1,
- this.dataTable2,
- this.dataTable3,
- this.dataTable4,
- this.dataTable5,
- this.dataTable7});
- //
- // dataTable1
- //
- this.dataTable1.Columns.AddRange(new System.Data.DataColumn[] {
- this.dataColumn1,
- this.dataColumn2,
- this.dataColumn3,
- this.dataColumn5,
- this.dataColumn6,
- this.dataColumn7,
- this.dataColumn8,
- this.dataColumn9,
- this.dataColumn10,
- this.dataColumn11,
- this.dataColumn28,
- this.dataColumn29,
- this.dataColumn34,
- this.dataColumn41,
- this.dataColumn55,
- this.dataColumn57,
- this.dataColumn19});
- this.dataTable1.TableName = "Table1";
- //
- // dataColumn1
- //
- this.dataColumn1.Caption = "物料编码";
- this.dataColumn1.ColumnName = "ITEMCODE";
- //
- // dataColumn2
- //
- this.dataColumn2.Caption = "物料名称";
- this.dataColumn2.ColumnName = "ITEMNAME";
- //
- // dataColumn3
- //
- this.dataColumn3.Caption = "物料规格";
- this.dataColumn3.ColumnName = "ITEMSPEC";
- //
- // dataColumn5
- //
- this.dataColumn5.Caption = "库存单位";
- this.dataColumn5.ColumnName = "WEIGHTUNIT";
- //
- // dataColumn6
- //
- this.dataColumn6.Caption = "分类编码";
- this.dataColumn6.ColumnName = "ARCCODE";
- //
- // dataColumn7
- //
- this.dataColumn7.Caption = "分类名称";
- this.dataColumn7.ColumnName = "ARCITEM";
- //
- // dataColumn8
- //
- this.dataColumn8.Caption = "申请人";
- this.dataColumn8.ColumnName = "CREATENAME";
- //
- // dataColumn9
- //
- this.dataColumn9.Caption = "创建时间";
- this.dataColumn9.ColumnName = "CREATETIME";
- //
- // dataColumn10
- //
- this.dataColumn10.Caption = "修改人";
- this.dataColumn10.ColumnName = "UPDATENAME";
- //
- // dataColumn11
- //
- this.dataColumn11.Caption = "修改时间";
- this.dataColumn11.ColumnName = "UPDATETIME";
- //
- // dataColumn28
- //
- this.dataColumn28.Caption = "BUYERROLEID";
- this.dataColumn28.ColumnName = "BUYERROLEID";
- //
- // dataColumn29
- //
- this.dataColumn29.ColumnName = "PLANNERROLEID";
- //
- // dataColumn34
- //
- this.dataColumn34.Caption = "物料描述";
- this.dataColumn34.ColumnName = "ITEMDESC";
- //
- // dataColumn41
- //
- this.dataColumn41.ColumnName = "BATCHFLAG";
- //
- // dataColumn55
- //
- this.dataColumn55.ColumnName = "WEIGHTUNITCODE";
- //
- // dataColumn57
- //
- this.dataColumn57.Caption = "是否作废";
- this.dataColumn57.ColumnName = "VALIDFLAG";
- //
- // dataColumn19
- //
- this.dataColumn19.Caption = "计划价格";
- this.dataColumn19.ColumnName = "BUGPRICE";
- //
- // dataTable2
- //
- this.dataTable2.Columns.AddRange(new System.Data.DataColumn[] {
- this.dataColumn16,
- this.dataColumn17,
- this.dataColumn22,
- this.dataColumn56,
- this.dataColumn68,
- this.dataColumn69,
- this.dataColumn70,
- this.dataColumn18});
- this.dataTable2.TableName = "Table2";
- //
- // dataColumn16
- //
- this.dataColumn16.Caption = "供方编码";
- this.dataColumn16.ColumnName = "SUPPCODE";
- //
- // dataColumn17
- //
- this.dataColumn17.Caption = "供方名称";
- this.dataColumn17.ColumnName = "SUPPNAME";
- //
- // dataColumn22
- //
- this.dataColumn22.Caption = "状态";
- this.dataColumn22.ColumnName = "STATUS";
- //
- // dataColumn56
- //
- this.dataColumn56.Caption = "是否主供应商";
- this.dataColumn56.ColumnName = "ISDEFAULT";
- //
- // dataColumn68
- //
- this.dataColumn68.Caption = "交货量差方式";
- this.dataColumn68.ColumnName = "delvryRangeTpe";
- //
- // dataColumn69
- //
- this.dataColumn69.Caption = "交货量差下限";
- this.dataColumn69.ColumnName = "delvryRangeMin";
- //
- // dataColumn70
- //
- this.dataColumn70.Caption = "交货量差上限";
- this.dataColumn70.ColumnName = "delvryRangeMax";
- //
- // dataColumn18
- //
- this.dataColumn18.Caption = "编号";
- this.dataColumn18.ColumnName = "id";
- //
- // dataTable3
- //
- this.dataTable3.Columns.AddRange(new System.Data.DataColumn[] {
- this.dataColumn12,
- this.dataColumn13,
- this.dataColumn15,
- this.dataColumn14,
- this.dataColumn36,
- this.dataColumn4,
- this.dataColumn37,
- this.dataColumn38,
- this.dataColumn39,
- this.dataColumn40,
- this.dataColumn42,
- this.dataColumn43,
- this.dataColumn44,
- this.dataColumn54,
- this.dataColumn62,
- this.dataColumn63,
- this.dataColumn65});
- this.dataTable3.TableName = "Table3";
- //
- // dataColumn12
- //
- this.dataColumn12.Caption = "物料编码";
- this.dataColumn12.ColumnName = "ITEMCODE";
- //
- // dataColumn13
- //
- this.dataColumn13.Caption = "属性";
- this.dataColumn13.ColumnName = "ItemAttr";
- //
- // dataColumn15
- //
- this.dataColumn15.Caption = "排序";
- this.dataColumn15.ColumnName = "ORDERNUM";
- //
- // dataColumn14
- //
- this.dataColumn14.Caption = "采购单位";
- this.dataColumn14.ColumnName = "ITEMUOM";
- //
- // dataColumn36
- //
- this.dataColumn36.Caption = "转换系数";
- this.dataColumn36.ColumnName = "ITEMUOMCONEFFICIENT";
- //
- // dataColumn4
- //
- this.dataColumn4.Caption = "是否使用采购单位";
- this.dataColumn4.ColumnName = "ITEMUSEUOM";
- //
- // dataColumn37
- //
- this.dataColumn37.Caption = "物料属性1";
- this.dataColumn37.ColumnName = "ITEMATTR1";
- //
- // dataColumn38
- //
- this.dataColumn38.Caption = "物料属性2";
- this.dataColumn38.ColumnName = "ITEMATTR2";
- //
- // dataColumn39
- //
- this.dataColumn39.Caption = "物料属性3";
- this.dataColumn39.ColumnName = "ITEMATTR3";
- //
- // dataColumn40
- //
- this.dataColumn40.Caption = "物料属性4";
- this.dataColumn40.ColumnName = "ITEMATTR4";
- //
- // dataColumn42
- //
- this.dataColumn42.ColumnName = "ItemAttrId";
- //
- // dataColumn43
- //
- this.dataColumn43.Caption = "是否为常用";
- this.dataColumn43.ColumnName = "ISDEFAULT";
- //
- // dataColumn44
- //
- this.dataColumn44.Caption = "备注";
- this.dataColumn44.ColumnName = "REMARK";
- //
- // dataColumn54
- //
- this.dataColumn54.Caption = "属性编码";
- this.dataColumn54.ColumnName = "ITEMATTRCODE";
- //
- // dataColumn62
- //
- this.dataColumn62.Caption = "属性分类编码";
- this.dataColumn62.ColumnName = "ITEMATTRCLASS";
- //
- // dataColumn63
- //
- this.dataColumn63.Caption = "属性分类名称";
- this.dataColumn63.ColumnName = "ITEMATTRCLASSNAME";
- //
- // dataColumn65
- //
- this.dataColumn65.Caption = "是否判定等级";
- this.dataColumn65.ColumnName = "txtIsLevel";
- //
- // dataTable4
- //
- this.dataTable4.Columns.AddRange(new System.Data.DataColumn[] {
- this.dataColumn30,
- this.dataColumn31,
- this.dataColumn32,
- this.dataColumn33,
- this.dataColumn35,
- this.dataColumn45});
- this.dataTable4.TableName = "Table4";
- //
- // dataColumn30
- //
- this.dataColumn30.Caption = "采购标准编号";
- this.dataColumn30.ColumnName = "STANDARDSCODE";
- //
- // dataColumn31
- //
- this.dataColumn31.Caption = "是否常用";
- this.dataColumn31.ColumnName = "ISDEFAULT";
- //
- // dataColumn32
- //
- this.dataColumn32.Caption = "排序";
- this.dataColumn32.ColumnName = "ORDERNUM";
- //
- // dataColumn33
- //
- this.dataColumn33.Caption = "备注";
- this.dataColumn33.ColumnName = "REMARK";
- //
- // dataColumn35
- //
- this.dataColumn35.ColumnName = "ITEMSTANDARDSID";
- //
- // dataColumn45
- //
- this.dataColumn45.Caption = "采购标准ID";
- this.dataColumn45.ColumnName = "STANDARDSID";
- //
- // dataTable5
- //
- this.dataTable5.Columns.AddRange(new System.Data.DataColumn[] {
- this.dataColumn46,
- this.dataColumn47,
- this.dataColumn48,
- this.dataColumn49,
- this.dataColumn50,
- this.dataColumn51,
- this.dataColumn52,
- this.dataColumn53,
- this.dataColumn64,
- this.dataColumn66,
- this.dataColumn67});
- this.dataTable5.TableName = "Table5";
- //
- // dataColumn46
- //
- this.dataColumn46.ColumnName = "ITEMUOMID";
- //
- // dataColumn47
- //
- this.dataColumn47.Caption = "采购单位编码";
- this.dataColumn47.ColumnName = "UOMCODE";
- //
- // dataColumn48
- //
- this.dataColumn48.Caption = "采购单位名称";
- this.dataColumn48.ColumnName = "UOMNAME";
- //
- // dataColumn49
- //
- this.dataColumn49.Caption = "转换系数";
- this.dataColumn49.ColumnName = "ITEMUOMCONEFFICIENT";
- //
- // dataColumn50
- //
- this.dataColumn50.Caption = "库存单位";
- this.dataColumn50.ColumnName = "WEIGHTUNIT";
- //
- // dataColumn51
- //
- this.dataColumn51.Caption = "库存单位编码";
- this.dataColumn51.ColumnName = "WEIGHTUNITCODE";
- //
- // dataColumn52
- //
- this.dataColumn52.Caption = "是否常用";
- this.dataColumn52.ColumnName = "ISDEFAULT";
- //
- // dataColumn53
- //
- this.dataColumn53.Caption = "备注";
- this.dataColumn53.ColumnName = "REMARK";
- //
- // dataColumn64
- //
- this.dataColumn64.Caption = "数据状态";
- this.dataColumn64.ColumnName = "Validflag";
- //
- // dataColumn66
- //
- this.dataColumn66.Caption = "创建人";
- this.dataColumn66.ColumnName = "CREATENAME";
- //
- // dataColumn67
- //
- this.dataColumn67.Caption = "创建时间";
- this.dataColumn67.ColumnName = "CREATETIME";
- //
- // dataTable7
- //
- this.dataTable7.Columns.AddRange(new System.Data.DataColumn[] {
- this.dataColumn60,
- this.dataColumn61});
- this.dataTable7.TableName = "Table6";
- //
- // dataColumn60
- //
- this.dataColumn60.Caption = "属性分类名称";
- this.dataColumn60.ColumnName = "ITEMATTRCLASSNAME";
- //
- // dataColumn61
- //
- this.dataColumn61.Caption = "属性分类编码";
- this.dataColumn61.ColumnName = "ITEMATTRCLASS";
- //
- // ultraTabPageControl5
- //
- this.ultraTabPageControl5.Controls.Add(this.ultraGrid3);
- this.ultraTabPageControl5.Location = new System.Drawing.Point(-10000, -10000);
- this.ultraTabPageControl5.Margin = new System.Windows.Forms.Padding(4);
- this.ultraTabPageControl5.Name = "ultraTabPageControl5";
- this.ultraTabPageControl5.Size = new System.Drawing.Size(1490, 260);
- //
- // ultraGrid3
- //
- this.ultraGrid3.DataMember = "Table3";
- this.ultraGrid3.DataSource = this.dataSet1;
- ultraGridColumn9.Header.VisiblePosition = 0;
- ultraGridColumn9.Hidden = true;
- ultraGridColumn10.Header.VisiblePosition = 1;
- ultraGridColumn11.Header.VisiblePosition = 2;
- ultraGridColumn12.Header.VisiblePosition = 3;
- ultraGridColumn13.Header.VisiblePosition = 4;
- ultraGridColumn13.Hidden = true;
- ultraGridColumn14.Header.VisiblePosition = 5;
- ultraGridColumn14.Hidden = true;
- ultraGridColumn15.Header.VisiblePosition = 6;
- ultraGridColumn15.Hidden = true;
- ultraGridColumn16.Header.VisiblePosition = 7;
- ultraGridColumn16.Hidden = true;
- ultraGridColumn17.Header.VisiblePosition = 8;
- ultraGridColumn17.Hidden = true;
- ultraGridColumn18.Header.VisiblePosition = 9;
- ultraGridColumn18.Hidden = true;
- ultraGridColumn19.Header.VisiblePosition = 10;
- ultraGridColumn19.Hidden = true;
- ultraGridColumn20.Header.VisiblePosition = 11;
- ultraGridColumn21.Header.VisiblePosition = 12;
- ultraGridColumn22.Header.VisiblePosition = 13;
- ultraGridColumn22.Hidden = true;
- ultraGridColumn23.Header.VisiblePosition = 14;
- ultraGridColumn23.Hidden = true;
- ultraGridColumn24.Header.VisiblePosition = 15;
- ultraGridColumn25.Header.VisiblePosition = 16;
- ultraGridBand2.Columns.AddRange(new object[] {
- ultraGridColumn9,
- ultraGridColumn10,
- ultraGridColumn11,
- ultraGridColumn12,
- ultraGridColumn13,
- ultraGridColumn14,
- ultraGridColumn15,
- ultraGridColumn16,
- ultraGridColumn17,
- ultraGridColumn18,
- ultraGridColumn19,
- ultraGridColumn20,
- ultraGridColumn21,
- ultraGridColumn22,
- ultraGridColumn23,
- ultraGridColumn24,
- ultraGridColumn25});
- ultraGridBand2.RowLayoutStyle = Infragistics.Win.UltraWinGrid.RowLayoutStyle.GroupLayout;
- this.ultraGrid3.DisplayLayout.BandsSerializer.Add(ultraGridBand2);
- this.ultraGrid3.DisplayLayout.CaptionVisible = Infragistics.Win.DefaultableBoolean.False;
- this.ultraGrid3.Dock = System.Windows.Forms.DockStyle.Fill;
- this.ultraGrid3.Location = new System.Drawing.Point(0, 0);
- this.ultraGrid3.Margin = new System.Windows.Forms.Padding(4);
- this.ultraGrid3.Name = "ultraGrid3";
- this.ultraGrid3.Size = new System.Drawing.Size(1490, 260);
- this.ultraGrid3.TabIndex = 2;
- this.ultraGrid3.Text = "ultraGrid3";
- this.ultraGrid3.AfterRowActivate += new System.EventHandler(this.ultraGrid3_AfterRowActivate);
- this.ultraGrid3.ClickCell += new Infragistics.Win.UltraWinGrid.ClickCellEventHandler(this.ultraGrid3_ClickCell);
- this.ultraGrid3.Click += new System.EventHandler(this.ultraGrid3_Click);
- //
- // ultraTabPageControl6
- //
- this.ultraTabPageControl6.Controls.Add(this.ultraGrid4);
- this.ultraTabPageControl6.Location = new System.Drawing.Point(-10000, -10000);
- this.ultraTabPageControl6.Margin = new System.Windows.Forms.Padding(4);
- this.ultraTabPageControl6.Name = "ultraTabPageControl6";
- this.ultraTabPageControl6.Size = new System.Drawing.Size(1490, 260);
- //
- // ultraGrid4
- //
- this.ultraGrid4.DataMember = "Table4";
- this.ultraGrid4.DataSource = this.dataSet1;
- ultraGridColumn26.Header.VisiblePosition = 0;
- ultraGridColumn26.RowLayoutColumnInfo.OriginX = 0;
- ultraGridColumn26.RowLayoutColumnInfo.OriginY = 0;
- ultraGridColumn26.RowLayoutColumnInfo.SpanX = 2;
- ultraGridColumn26.RowLayoutColumnInfo.SpanY = 2;
- ultraGridColumn27.Header.VisiblePosition = 1;
- ultraGridColumn27.RowLayoutColumnInfo.OriginX = 2;
- ultraGridColumn27.RowLayoutColumnInfo.OriginY = 0;
- ultraGridColumn27.RowLayoutColumnInfo.SpanX = 2;
- ultraGridColumn27.RowLayoutColumnInfo.SpanY = 2;
- ultraGridColumn28.Header.VisiblePosition = 2;
- ultraGridColumn28.RowLayoutColumnInfo.OriginX = 4;
- ultraGridColumn28.RowLayoutColumnInfo.OriginY = 0;
- ultraGridColumn28.RowLayoutColumnInfo.SpanX = 2;
- ultraGridColumn28.RowLayoutColumnInfo.SpanY = 2;
- ultraGridColumn29.Header.VisiblePosition = 3;
- ultraGridColumn29.RowLayoutColumnInfo.OriginX = 6;
- ultraGridColumn29.RowLayoutColumnInfo.OriginY = 0;
- ultraGridColumn29.RowLayoutColumnInfo.SpanX = 2;
- ultraGridColumn29.RowLayoutColumnInfo.SpanY = 2;
- ultraGridColumn30.Header.VisiblePosition = 4;
- ultraGridColumn30.Hidden = true;
- ultraGridColumn30.RowLayoutColumnInfo.OriginX = 8;
- ultraGridColumn30.RowLayoutColumnInfo.OriginY = 0;
- ultraGridColumn30.RowLayoutColumnInfo.SpanX = 2;
- ultraGridColumn30.RowLayoutColumnInfo.SpanY = 2;
- ultraGridColumn31.Header.VisiblePosition = 5;
- ultraGridColumn31.Hidden = true;
- ultraGridColumn31.RowLayoutColumnInfo.OriginX = 10;
- ultraGridColumn31.RowLayoutColumnInfo.OriginY = 0;
- ultraGridColumn31.RowLayoutColumnInfo.SpanX = 2;
- ultraGridColumn31.RowLayoutColumnInfo.SpanY = 2;
- ultraGridBand3.Columns.AddRange(new object[] {
- ultraGridColumn26,
- ultraGridColumn27,
- ultraGridColumn28,
- ultraGridColumn29,
- ultraGridColumn30,
- ultraGridColumn31});
- ultraGridBand3.RowLayoutStyle = Infragistics.Win.UltraWinGrid.RowLayoutStyle.GroupLayout;
- this.ultraGrid4.DisplayLayout.BandsSerializer.Add(ultraGridBand3);
- this.ultraGrid4.DisplayLayout.CaptionVisible = Infragistics.Win.DefaultableBoolean.False;
- this.ultraGrid4.Dock = System.Windows.Forms.DockStyle.Fill;
- this.ultraGrid4.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
- this.ultraGrid4.Location = new System.Drawing.Point(0, 0);
- this.ultraGrid4.Margin = new System.Windows.Forms.Padding(4);
- this.ultraGrid4.Name = "ultraGrid4";
- this.ultraGrid4.Size = new System.Drawing.Size(1490, 260);
- this.ultraGrid4.TabIndex = 0;
- this.ultraGrid4.Text = "ultraGrid4";
- this.ultraGrid4.AfterRowActivate += new System.EventHandler(this.ultraGrid3_AfterRowActivate);
- this.ultraGrid4.ClickCell += new Infragistics.Win.UltraWinGrid.ClickCellEventHandler(this.ultraGrid3_ClickCell);
- this.ultraGrid4.Click += new System.EventHandler(this.ultraGrid4_Click);
- //
- // ultraTabPageControl8
- //
- this.ultraTabPageControl8.Controls.Add(this.ultraGrid5);
- this.ultraTabPageControl8.Location = new System.Drawing.Point(-10000, -10000);
- this.ultraTabPageControl8.Margin = new System.Windows.Forms.Padding(4);
- this.ultraTabPageControl8.Name = "ultraTabPageControl8";
- this.ultraTabPageControl8.Size = new System.Drawing.Size(1490, 260);
- //
- // ultraGrid5
- //
- this.ultraGrid5.DataMember = "Table5";
- this.ultraGrid5.DataSource = this.dataSet1;
- ultraGridColumn32.Header.VisiblePosition = 0;
- ultraGridColumn32.Hidden = true;
- ultraGridColumn33.Header.VisiblePosition = 1;
- ultraGridColumn33.Hidden = true;
- ultraGridColumn34.Header.VisiblePosition = 2;
- ultraGridColumn35.Header.VisiblePosition = 3;
- ultraGridColumn36.Header.VisiblePosition = 4;
- ultraGridColumn37.Header.VisiblePosition = 5;
- ultraGridColumn37.Hidden = true;
- ultraGridColumn38.Header.VisiblePosition = 6;
- ultraGridColumn39.Header.VisiblePosition = 7;
- ultraGridColumn40.Header.VisiblePosition = 8;
- ultraGridColumn40.Hidden = true;
- ultraGridColumn41.Header.VisiblePosition = 9;
- ultraGridColumn42.Header.VisiblePosition = 10;
- ultraGridBand4.Columns.AddRange(new object[] {
- ultraGridColumn32,
- ultraGridColumn33,
- ultraGridColumn34,
- ultraGridColumn35,
- ultraGridColumn36,
- ultraGridColumn37,
- ultraGridColumn38,
- ultraGridColumn39,
- ultraGridColumn40,
- ultraGridColumn41,
- ultraGridColumn42});
- ultraGridBand4.RowLayoutStyle = Infragistics.Win.UltraWinGrid.RowLayoutStyle.GroupLayout;
- this.ultraGrid5.DisplayLayout.BandsSerializer.Add(ultraGridBand4);
- this.ultraGrid5.DisplayLayout.CaptionVisible = Infragistics.Win.DefaultableBoolean.False;
- this.ultraGrid5.Dock = System.Windows.Forms.DockStyle.Fill;
- this.ultraGrid5.Location = new System.Drawing.Point(0, 0);
- this.ultraGrid5.Margin = new System.Windows.Forms.Padding(4);
- this.ultraGrid5.Name = "ultraGrid5";
- this.ultraGrid5.Size = new System.Drawing.Size(1490, 260);
- this.ultraGrid5.TabIndex = 3;
- this.ultraGrid5.Text = "ultraGrid5";
- this.ultraGrid5.AfterRowActivate += new System.EventHandler(this.ultraGrid5_AfterRowActivate);
- this.ultraGrid5.ClickCell += new Infragistics.Win.UltraWinGrid.ClickCellEventHandler(this.ultraGrid5_ClickCell);
- this.ultraGrid5.Click += new System.EventHandler(this.ultraGrid5_Click);
- //
- // imageList1
- //
- this.imageList1.ImageStream = ((System.Windows.Forms.ImageListStreamer)(resources.GetObject("imageList1.ImageStream")));
- this.imageList1.TransparentColor = System.Drawing.Color.Transparent;
- this.imageList1.Images.SetKeyName(0, "");
- this.imageList1.Images.SetKeyName(1, "");
- this.imageList1.Images.SetKeyName(2, "");
- this.imageList1.Images.SetKeyName(3, "");
- //
- // dataSet2
- //
- this.dataSet2.DataSetName = "NewDataSet";
- this.dataSet2.Tables.AddRange(new System.Data.DataTable[] {
- this.dataTable6});
- //
- // dataTable6
- //
- this.dataTable6.Columns.AddRange(new System.Data.DataColumn[] {
- this.dataColumn58,
- this.dataColumn59});
- this.dataTable6.TableName = "Table1";
- //
- // dataColumn58
- //
- this.dataColumn58.Caption = "属性分类编码";
- this.dataColumn58.ColumnName = "ITEMATTRCLASS";
- //
- // dataColumn59
- //
- this.dataColumn59.Caption = "属性分类名称";
- this.dataColumn59.ColumnName = "ITEMATTRCLASSNAME";
- //
- // tableLayoutPanel1
- //
- this.tableLayoutPanel1.ColumnCount = 2;
- this.tableLayoutPanel1.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Percent, 62.5F));
- this.tableLayoutPanel1.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Percent, 37.5F));
- this.tableLayoutPanel1.Controls.Add(this.ultraGroupBox5, 0, 2);
- this.tableLayoutPanel1.Controls.Add(this.ultraGroupBox2, 0, 1);
- this.tableLayoutPanel1.Controls.Add(this.ultraGroupBox1, 0, 0);
- this.tableLayoutPanel1.Dock = System.Windows.Forms.DockStyle.Fill;
- this.tableLayoutPanel1.Location = new System.Drawing.Point(0, 0);
- this.tableLayoutPanel1.Margin = new System.Windows.Forms.Padding(4);
- this.tableLayoutPanel1.Name = "tableLayoutPanel1";
- this.tableLayoutPanel1.RowCount = 3;
- this.tableLayoutPanel1.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Absolute, 50F));
- this.tableLayoutPanel1.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Percent, 100F));
- this.tableLayoutPanel1.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Absolute, 219F));
- this.tableLayoutPanel1.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Absolute, 25F));
- this.tableLayoutPanel1.Size = new System.Drawing.Size(1787, 900);
- this.tableLayoutPanel1.TabIndex = 0;
- //
- // ultraGroupBox5
- //
- this.tableLayoutPanel1.SetColumnSpan(this.ultraGroupBox5, 2);
- this.ultraGroupBox5.Controls.Add(this.ultraTabControl1);
- this.ultraGroupBox5.Dock = System.Windows.Forms.DockStyle.Fill;
- this.ultraGroupBox5.Location = new System.Drawing.Point(4, 685);
- this.ultraGroupBox5.Margin = new System.Windows.Forms.Padding(4);
- this.ultraGroupBox5.Name = "ultraGroupBox5";
- this.ultraGroupBox5.Size = new System.Drawing.Size(1779, 211);
- this.ultraGroupBox5.TabIndex = 4;
- this.ultraGroupBox5.Text = "编辑区";
- this.ultraGroupBox5.ViewStyle = Infragistics.Win.Misc.GroupBoxViewStyle.Office2007;
- //
- // ultraTabControl1
- //
- this.ultraTabControl1.Controls.Add(this.ultraTabSharedControlsPage1);
- this.ultraTabControl1.Controls.Add(this.ultraTabPageControl1);
- this.ultraTabControl1.Controls.Add(this.ultraTabPageControl2);
- this.ultraTabControl1.Controls.Add(this.ultraTabPageControl3);
- this.ultraTabControl1.Controls.Add(this.ultraTabPageControl7);
- this.ultraTabControl1.Controls.Add(this.ultraTabPageControl9);
- this.ultraTabControl1.Dock = System.Windows.Forms.DockStyle.Fill;
- this.ultraTabControl1.Location = new System.Drawing.Point(3, 21);
- this.ultraTabControl1.Margin = new System.Windows.Forms.Padding(4);
- this.ultraTabControl1.Name = "ultraTabControl1";
- this.ultraTabControl1.SharedControlsPage = this.ultraTabSharedControlsPage1;
- this.ultraTabControl1.Size = new System.Drawing.Size(1773, 187);
- this.ultraTabControl1.TabIndex = 0;
- ultraTab1.Key = "01";
- ultraTab1.TabPage = this.ultraTabPageControl1;
- ultraTab1.Text = "编辑物料";
- ultraTab2.Key = "0";
- ultraTab2.TabPage = this.ultraTabPageControl2;
- ultraTab2.Text = "编辑供方";
- ultraTab3.Key = "1";
- ultraTab3.TabPage = this.ultraTabPageControl3;
- ultraTab3.Text = "编辑属性";
- ultraTab7.Key = "2";
- ultraTab7.TabPage = this.ultraTabPageControl7;
- ultraTab7.Text = "物料标准";
- ultraTab9.Key = "3";
- ultraTab9.TabPage = this.ultraTabPageControl9;
- ultraTab9.Text = "采购单位";
- this.ultraTabControl1.Tabs.AddRange(new Infragistics.Win.UltraWinTabControl.UltraTab[] {
- ultraTab1,
- ultraTab2,
- ultraTab3,
- ultraTab7,
- ultraTab9});
- this.ultraTabControl1.ViewStyle = Infragistics.Win.UltraWinTabControl.ViewStyle.Office2007;
- this.ultraTabControl1.SelectedTabChanged += new Infragistics.Win.UltraWinTabControl.SelectedTabChangedEventHandler(this.ultraTabControl1_SelectedTabChanged);
- //
- // ultraTabSharedControlsPage1
- //
- this.ultraTabSharedControlsPage1.Location = new System.Drawing.Point(-10000, -10000);
- this.ultraTabSharedControlsPage1.Margin = new System.Windows.Forms.Padding(4);
- this.ultraTabSharedControlsPage1.Name = "ultraTabSharedControlsPage1";
- this.ultraTabSharedControlsPage1.Size = new System.Drawing.Size(1771, 161);
- //
- // ultraGroupBox2
- //
- this.tableLayoutPanel1.SetColumnSpan(this.ultraGroupBox2, 2);
- this.ultraGroupBox2.Controls.Add(this.tableLayoutPanel2);
- this.ultraGroupBox2.Dock = System.Windows.Forms.DockStyle.Fill;
- this.ultraGroupBox2.Location = new System.Drawing.Point(4, 54);
- this.ultraGroupBox2.Margin = new System.Windows.Forms.Padding(4);
- this.ultraGroupBox2.Name = "ultraGroupBox2";
- this.ultraGroupBox2.Size = new System.Drawing.Size(1779, 623);
- this.ultraGroupBox2.TabIndex = 1;
- this.ultraGroupBox2.Text = "物料管理";
- this.ultraGroupBox2.ViewStyle = Infragistics.Win.Misc.GroupBoxViewStyle.Office2007;
- //
- // tableLayoutPanel2
- //
- this.tableLayoutPanel2.ColumnCount = 2;
- this.tableLayoutPanel2.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Absolute, 259F));
- this.tableLayoutPanel2.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Percent, 100F));
- this.tableLayoutPanel2.Controls.Add(this.ulTreeMat, 0, 0);
- this.tableLayoutPanel2.Controls.Add(this.ultraGroupBox3, 1, 0);
- this.tableLayoutPanel2.Dock = System.Windows.Forms.DockStyle.Fill;
- this.tableLayoutPanel2.Location = new System.Drawing.Point(3, 21);
- this.tableLayoutPanel2.Margin = new System.Windows.Forms.Padding(4);
- this.tableLayoutPanel2.Name = "tableLayoutPanel2";
- this.tableLayoutPanel2.RowCount = 1;
- this.tableLayoutPanel2.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Percent, 100F));
- this.tableLayoutPanel2.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Absolute, 599F));
- this.tableLayoutPanel2.Size = new System.Drawing.Size(1773, 599);
- this.tableLayoutPanel2.TabIndex = 0;
- //
- // ulTreeMat
- //
- this.ulTreeMat.DisplayStyle = Infragistics.Win.UltraWinTree.UltraTreeDisplayStyle.WindowsVista;
- this.ulTreeMat.Dock = System.Windows.Forms.DockStyle.Fill;
- this.ulTreeMat.HideExpansionIndicators = Infragistics.Win.UltraWinTree.HideExpansionIndicators.Never;
- this.ulTreeMat.Location = new System.Drawing.Point(4, 4);
- this.ulTreeMat.Margin = new System.Windows.Forms.Padding(4);
- this.ulTreeMat.Name = "ulTreeMat";
- this.ulTreeMat.NodeConnectorStyle = Infragistics.Win.UltraWinTree.NodeConnectorStyle.Dotted;
- appearance8.BackColor = System.Drawing.Color.SkyBlue;
- _override1.ActiveNodeAppearance = appearance8;
- appearance2.BorderColor = System.Drawing.Color.FromArgb(((int)(((byte)(224)))), ((int)(((byte)(224)))), ((int)(((byte)(224)))));
- _override1.NodeAppearance = appearance2;
- this.ulTreeMat.Override = _override1;
- this.ulTreeMat.Size = new System.Drawing.Size(251, 591);
- this.ulTreeMat.TabIndex = 0;
- this.ulTreeMat.AfterActivate += new Infragistics.Win.UltraWinTree.AfterNodeChangedEventHandler(this.ulTreeMat_AfterActivate);
- //
- // ultraGroupBox3
- //
- this.ultraGroupBox3.Controls.Add(this.tableLayoutPanel3);
- this.ultraGroupBox3.Dock = System.Windows.Forms.DockStyle.Fill;
- this.ultraGroupBox3.Location = new System.Drawing.Point(263, 4);
- this.ultraGroupBox3.Margin = new System.Windows.Forms.Padding(4);
- this.ultraGroupBox3.Name = "ultraGroupBox3";
- this.ultraGroupBox3.Size = new System.Drawing.Size(1506, 591);
- this.ultraGroupBox3.TabIndex = 2;
- this.ultraGroupBox3.ViewStyle = Infragistics.Win.Misc.GroupBoxViewStyle.Office2007;
- //
- // tableLayoutPanel3
- //
- this.tableLayoutPanel3.ColumnCount = 1;
- this.tableLayoutPanel3.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Percent, 100F));
- this.tableLayoutPanel3.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Absolute, 27F));
- this.tableLayoutPanel3.Controls.Add(this.ultraTabControl2, 0, 1);
- this.tableLayoutPanel3.Controls.Add(this.ultraGrid1, 0, 0);
- this.tableLayoutPanel3.Dock = System.Windows.Forms.DockStyle.Fill;
- this.tableLayoutPanel3.Location = new System.Drawing.Point(3, 0);
- this.tableLayoutPanel3.Margin = new System.Windows.Forms.Padding(4);
- this.tableLayoutPanel3.Name = "tableLayoutPanel3";
- this.tableLayoutPanel3.RowCount = 2;
- this.tableLayoutPanel3.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Percent, 50F));
- this.tableLayoutPanel3.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Percent, 50F));
- this.tableLayoutPanel3.Size = new System.Drawing.Size(1500, 588);
- this.tableLayoutPanel3.TabIndex = 2;
- //
- // ultraTabControl2
- //
- this.ultraTabControl2.CloseButtonLocation = Infragistics.Win.UltraWinTabs.TabCloseButtonLocation.None;
- this.ultraTabControl2.Controls.Add(this.ultraTabSharedControlsPage2);
- this.ultraTabControl2.Controls.Add(this.ultraTabPageControl4);
- this.ultraTabControl2.Controls.Add(this.ultraTabPageControl5);
- this.ultraTabControl2.Controls.Add(this.ultraTabPageControl6);
- this.ultraTabControl2.Controls.Add(this.ultraTabPageControl8);
- this.ultraTabControl2.Dock = System.Windows.Forms.DockStyle.Fill;
- this.ultraTabControl2.Location = new System.Drawing.Point(4, 298);
- this.ultraTabControl2.Margin = new System.Windows.Forms.Padding(4);
- this.ultraTabControl2.Name = "ultraTabControl2";
- this.ultraTabControl2.SharedControlsPage = this.ultraTabSharedControlsPage2;
- this.ultraTabControl2.Size = new System.Drawing.Size(1492, 286);
- this.ultraTabControl2.TabIndex = 0;
- ultraTab4.Key = "0";
- ultraTab4.TabPage = this.ultraTabPageControl4;
- ultraTab4.Text = "关联供方";
- ultraTab5.Key = "1";
- ultraTab5.TabPage = this.ultraTabPageControl5;
- ultraTab5.Text = "物料属性";
- ultraTab6.Key = "2";
- ultraTab6.TabPage = this.ultraTabPageControl6;
- ultraTab6.Text = "采购标准";
- ultraTab8.Key = "3";
- ultraTab8.TabPage = this.ultraTabPageControl8;
- ultraTab8.Text = "采购单位";
- this.ultraTabControl2.Tabs.AddRange(new Infragistics.Win.UltraWinTabControl.UltraTab[] {
- ultraTab4,
- ultraTab5,
- ultraTab6,
- ultraTab8});
- this.ultraTabControl2.ViewStyle = Infragistics.Win.UltraWinTabControl.ViewStyle.Office2007;
- this.ultraTabControl2.Click += new System.EventHandler(this.ultraTabControl2_Click);
- //
- // ultraTabSharedControlsPage2
- //
- this.ultraTabSharedControlsPage2.Location = new System.Drawing.Point(-10000, -10000);
- this.ultraTabSharedControlsPage2.Margin = new System.Windows.Forms.Padding(4);
- this.ultraTabSharedControlsPage2.Name = "ultraTabSharedControlsPage2";
- this.ultraTabSharedControlsPage2.Size = new System.Drawing.Size(1490, 260);
- //
- // ultraGrid1
- //
- this.ultraGrid1.DataMember = "Table1";
- this.ultraGrid1.DataSource = this.dataSet1;
- ultraGridColumn43.CellActivation = Infragistics.Win.UltraWinGrid.Activation.ActivateOnly;
- ultraGridColumn43.Header.VisiblePosition = 0;
- ultraGridColumn44.CellActivation = Infragistics.Win.UltraWinGrid.Activation.ActivateOnly;
- ultraGridColumn44.Header.VisiblePosition = 1;
- ultraGridColumn45.Header.VisiblePosition = 2;
- ultraGridColumn45.Hidden = true;
- ultraGridColumn46.Header.VisiblePosition = 4;
- ultraGridColumn47.CellActivation = Infragistics.Win.UltraWinGrid.Activation.ActivateOnly;
- ultraGridColumn47.Header.VisiblePosition = 5;
- ultraGridColumn48.Header.VisiblePosition = 6;
- ultraGridColumn48.Hidden = true;
- ultraGridColumn49.Header.VisiblePosition = 8;
- ultraGridColumn50.Header.VisiblePosition = 9;
- ultraGridColumn51.Header.VisiblePosition = 10;
- ultraGridColumn52.Header.VisiblePosition = 11;
- ultraGridColumn53.Header.VisiblePosition = 12;
- ultraGridColumn53.Hidden = true;
- ultraGridColumn54.Header.VisiblePosition = 13;
- ultraGridColumn54.Hidden = true;
- ultraGridColumn55.Header.VisiblePosition = 3;
- ultraGridColumn56.Header.VisiblePosition = 14;
- ultraGridColumn56.Hidden = true;
- ultraGridColumn57.Header.VisiblePosition = 15;
- ultraGridColumn57.Hidden = true;
- ultraGridColumn58.Header.VisiblePosition = 7;
- ultraGridColumn59.Header.VisiblePosition = 16;
- ultraGridColumn59.Hidden = true;
- ultraGridBand5.Columns.AddRange(new object[] {
- ultraGridColumn43,
- ultraGridColumn44,
- ultraGridColumn45,
- ultraGridColumn46,
- ultraGridColumn47,
- ultraGridColumn48,
- ultraGridColumn49,
- ultraGridColumn50,
- ultraGridColumn51,
- ultraGridColumn52,
- ultraGridColumn53,
- ultraGridColumn54,
- ultraGridColumn55,
- ultraGridColumn56,
- ultraGridColumn57,
- ultraGridColumn58,
- ultraGridColumn59});
- this.ultraGrid1.DisplayLayout.BandsSerializer.Add(ultraGridBand5);
- this.ultraGrid1.DisplayLayout.CaptionVisible = Infragistics.Win.DefaultableBoolean.False;
- this.ultraGrid1.Dock = System.Windows.Forms.DockStyle.Fill;
- this.ultraGrid1.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
- this.ultraGrid1.Location = new System.Drawing.Point(4, 4);
- this.ultraGrid1.Margin = new System.Windows.Forms.Padding(4);
- this.ultraGrid1.Name = "ultraGrid1";
- this.ultraGrid1.Size = new System.Drawing.Size(1492, 286);
- this.ultraGrid1.TabIndex = 1;
- this.ultraGrid1.Text = "ultraGrid1";
- this.ultraGrid1.AfterRowActivate += new System.EventHandler(this.ultraGrid1_AfterRowActivate);
- this.ultraGrid1.ClickCell += new Infragistics.Win.UltraWinGrid.ClickCellEventHandler(this.ultraGrid1_ClickCell);
- //
- // ultraGroupBox1
- //
- this.tableLayoutPanel1.SetColumnSpan(this.ultraGroupBox1, 2);
- this.ultraGroupBox1.Controls.Add(this.label66);
- this.ultraGroupBox1.Controls.Add(this.txt_ARC_ITEM);
- this.ultraGroupBox1.Controls.Add(this.txt_ARC_CODE);
- this.ultraGroupBox1.Controls.Add(this.checkBox1);
- this.ultraGroupBox1.Controls.Add(this.cmbNum);
- this.ultraGroupBox1.Controls.Add(this.label65);
- this.ultraGroupBox1.Controls.Add(this.label64);
- this.ultraGroupBox1.Controls.Add(this.chk_showHasDelete);
- this.ultraGroupBox1.Controls.Add(this.label41);
- this.ultraGroupBox1.Controls.Add(this.label36);
- this.ultraGroupBox1.Controls.Add(this.label35);
- this.ultraGroupBox1.Controls.Add(this.ultraTextEditor2);
- this.ultraGroupBox1.Controls.Add(this.ultraTextEditor1);
- this.ultraGroupBox1.Dock = System.Windows.Forms.DockStyle.Fill;
- this.ultraGroupBox1.Location = new System.Drawing.Point(4, 4);
- this.ultraGroupBox1.Margin = new System.Windows.Forms.Padding(4);
- this.ultraGroupBox1.Name = "ultraGroupBox1";
- this.ultraGroupBox1.Size = new System.Drawing.Size(1779, 42);
- this.ultraGroupBox1.TabIndex = 0;
- this.ultraGroupBox1.ViewStyle = Infragistics.Win.Misc.GroupBoxViewStyle.Office2007;
- //
- // label66
- //
- this.label66.AutoSize = true;
- this.label66.Location = new System.Drawing.Point(1453, 14);
- this.label66.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
- this.label66.Name = "label66";
- this.label66.Size = new System.Drawing.Size(97, 15);
- this.label66.TabIndex = 169;
- this.label66.Text = "物料分类编码";
- this.label66.Visible = false;
- //
- // txt_ARC_ITEM
- //
- this.txt_ARC_ITEM.Location = new System.Drawing.Point(789, 9);
- this.txt_ARC_ITEM.Margin = new System.Windows.Forms.Padding(4);
- this.txt_ARC_ITEM.Name = "txt_ARC_ITEM";
- this.txt_ARC_ITEM.ReadOnly = true;
- this.txt_ARC_ITEM.Size = new System.Drawing.Size(216, 24);
- this.txt_ARC_ITEM.TabIndex = 168;
- //
- // txt_ARC_CODE
- //
- this.txt_ARC_CODE.Location = new System.Drawing.Point(1560, 9);
- this.txt_ARC_CODE.Margin = new System.Windows.Forms.Padding(4);
- this.txt_ARC_CODE.Name = "txt_ARC_CODE";
- this.txt_ARC_CODE.ReadOnly = true;
- this.txt_ARC_CODE.Size = new System.Drawing.Size(57, 24);
- this.txt_ARC_CODE.TabIndex = 167;
- this.txt_ARC_CODE.Visible = false;
- //
- // checkBox1
- //
- this.checkBox1.AutoSize = true;
- this.checkBox1.BackColor = System.Drawing.SystemColors.GradientInactiveCaption;
- this.checkBox1.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
- this.checkBox1.Location = new System.Drawing.Point(689, 11);
- this.checkBox1.Margin = new System.Windows.Forms.Padding(4);
- this.checkBox1.Name = "checkBox1";
- this.checkBox1.Size = new System.Drawing.Size(89, 19);
- this.checkBox1.TabIndex = 166;
- this.checkBox1.Text = "物料分类";
- this.checkBox1.UseVisualStyleBackColor = false;
- //
- // cmbNum
- //
- this.cmbNum.DropDownStyle = Infragistics.Win.DropDownStyle.DropDownList;
- valueListItem15.DataValue = "500";
- valueListItem15.DisplayText = "五百";
- valueListItem16.DataValue = "1000";
- valueListItem16.DisplayText = "一千";
- valueListItem17.DataValue = "2000";
- valueListItem17.DisplayText = "二千";
- valueListItem18.DataValue = "5000";
- valueListItem18.DisplayText = "五千";
- valueListItem19.DataValue = "";
- valueListItem19.DisplayText = "全部";
- this.cmbNum.Items.AddRange(new Infragistics.Win.ValueListItem[] {
- valueListItem15,
- valueListItem16,
- valueListItem17,
- valueListItem18,
- valueListItem19});
- this.cmbNum.Location = new System.Drawing.Point(1097, 9);
- this.cmbNum.Margin = new System.Windows.Forms.Padding(4);
- this.cmbNum.Name = "cmbNum";
- this.cmbNum.Size = new System.Drawing.Size(75, 24);
- this.cmbNum.TabIndex = 164;
- //
- // label65
- //
- this.label65.AutoSize = true;
- this.label65.Location = new System.Drawing.Point(1176, 14);
- this.label65.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
- this.label65.Name = "label65";
- this.label65.Size = new System.Drawing.Size(52, 15);
- this.label65.TabIndex = 163;
- this.label65.Text = "条记录";
- //
- // label64
- //
- this.label64.AutoSize = true;
- this.label64.Location = new System.Drawing.Point(1025, 14);
- this.label64.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
- this.label64.Name = "label64";
- this.label64.Size = new System.Drawing.Size(67, 15);
- this.label64.TabIndex = 162;
- this.label64.Text = "每页显示";
- //
- // chk_showHasDelete
- //
- this.chk_showHasDelete.AutoSize = true;
- this.chk_showHasDelete.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
- this.chk_showHasDelete.ForeColor = System.Drawing.Color.Red;
- this.chk_showHasDelete.Location = new System.Drawing.Point(1255, 11);
- this.chk_showHasDelete.Margin = new System.Windows.Forms.Padding(4);
- this.chk_showHasDelete.Name = "chk_showHasDelete";
- this.chk_showHasDelete.Size = new System.Drawing.Size(149, 19);
- this.chk_showHasDelete.TabIndex = 160;
- this.chk_showHasDelete.Text = "显示已作废的物料";
- this.chk_showHasDelete.UseVisualStyleBackColor = true;
- this.chk_showHasDelete.CheckedChanged += new System.EventHandler(this.chk_showHasDelete_CheckedChanged);
- //
- // label41
- //
- this.label41.AutoSize = true;
- this.label41.BackColor = System.Drawing.SystemColors.GradientInactiveCaption;
- this.label41.Location = new System.Drawing.Point(313, 14);
- this.label41.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
- this.label41.Name = "label41";
- this.label41.Size = new System.Drawing.Size(67, 15);
- this.label41.TabIndex = 13;
- this.label41.Text = "物料名称";
- //
- // label36
- //
- this.label36.AutoSize = true;
- this.label36.BackColor = System.Drawing.SystemColors.GradientInactiveCaption;
- this.label36.Location = new System.Drawing.Point(13, 14);
- this.label36.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
- this.label36.Name = "label36";
- this.label36.Size = new System.Drawing.Size(67, 15);
- this.label36.TabIndex = 11;
- this.label36.Text = "物料编码";
- //
- // label35
- //
- this.label35.AutoSize = true;
- this.label35.BackColor = System.Drawing.SystemColors.GradientInactiveCaption;
- this.label35.Location = new System.Drawing.Point(1157, 14);
- this.label35.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
- this.label35.Name = "label35";
- this.label35.Size = new System.Drawing.Size(0, 15);
- this.label35.TabIndex = 10;
- //
- // ultraTextEditor2
- //
- this.ultraTextEditor2.Location = new System.Drawing.Point(387, 9);
- this.ultraTextEditor2.Margin = new System.Windows.Forms.Padding(4);
- this.ultraTextEditor2.Name = "ultraTextEditor2";
- this.ultraTextEditor2.Size = new System.Drawing.Size(283, 24);
- this.ultraTextEditor2.TabIndex = 7;
- //
- // ultraTextEditor1
- //
- this.ultraTextEditor1.Location = new System.Drawing.Point(88, 9);
- this.ultraTextEditor1.Margin = new System.Windows.Forms.Padding(4);
- this.ultraTextEditor1.Name = "ultraTextEditor1";
- this.ultraTextEditor1.Size = new System.Drawing.Size(216, 24);
- this.ultraTextEditor1.TabIndex = 5;
- //
- // Ultcmb_MAT_TYPE
- //
- this.Ultcmb_MAT_TYPE.DisplayStyle = Infragistics.Win.EmbeddableElementDisplayStyle.Office2007;
- this.Ultcmb_MAT_TYPE.DropDownStyle = Infragistics.Win.DropDownStyle.DropDownList;
- valueListItem48.CheckState = System.Windows.Forms.CheckState.Checked;
- valueListItem48.DataValue = "1";
- valueListItem48.DisplayText = "计划价";
- valueListItem49.DataValue = "2";
- valueListItem49.DisplayText = "批次计价";
- valueListItem50.DataValue = "3";
- valueListItem50.DisplayText = "实时移动平均价";
- valueListItem51.DataValue = "4";
- valueListItem51.DisplayText = "月末移动平均价";
- this.Ultcmb_MAT_TYPE.Items.AddRange(new Infragistics.Win.ValueListItem[] {
- valueListItem48,
- valueListItem49,
- valueListItem50,
- valueListItem51});
- this.Ultcmb_MAT_TYPE.Location = new System.Drawing.Point(1682, 4);
- this.Ultcmb_MAT_TYPE.Margin = new System.Windows.Forms.Padding(4);
- this.Ultcmb_MAT_TYPE.Name = "Ultcmb_MAT_TYPE";
- this.Ultcmb_MAT_TYPE.Size = new System.Drawing.Size(189, 24);
- this.Ultcmb_MAT_TYPE.TabIndex = 177;
- //
- // label83
- //
- this.label83.BackColor = System.Drawing.SystemColors.Highlight;
- this.label83.Location = new System.Drawing.Point(1564, 4);
- this.label83.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
- this.label83.Name = "label83";
- this.label83.Size = new System.Drawing.Size(115, 26);
- this.label83.TabIndex = 176;
- this.label83.Text = "物 料 大 类";
- this.label83.TextAlign = System.Drawing.ContentAlignment.MiddleRight;
- //
- // FrmPurMat
- //
- this.AutoScaleDimensions = new System.Drawing.SizeF(8F, 15F);
- this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
- this.ClientSize = new System.Drawing.Size(1787, 900);
- this.Controls.Add(this.tableLayoutPanel1);
- this.Margin = new System.Windows.Forms.Padding(7, 6, 7, 6);
- this.Name = "FrmPurMat";
- this.Text = "FrmPurMat";
- this.Load += new System.EventHandler(this.FrmPurMat_Load);
- this.ultraTabPageControl1.ResumeLayout(false);
- this.panel1.ResumeLayout(false);
- ((System.ComponentModel.ISupportInitialize)(this.ultraGroupBox6)).EndInit();
- this.ultraGroupBox6.ResumeLayout(false);
- this.ultraGroupBox6.PerformLayout();
- ((System.ComponentModel.ISupportInitialize)(this.txt_INV_PHYSIC_USERID)).EndInit();
- ((System.ComponentModel.ISupportInitialize)(this.txt_ItemArcCodeName)).EndInit();
- ((System.ComponentModel.ISupportInitialize)(this.txt_ItemArcCode)).EndInit();
- ((System.ComponentModel.ISupportInitialize)(this.txt_DELVRY_RANGE_MIN)).EndInit();
- ((System.ComponentModel.ISupportInitialize)(this.txt_DELVRY_RANGE_MAX)).EndInit();
- ((System.ComponentModel.ISupportInitialize)(this.txt_DELVRY_RANGE_TPE)).EndInit();
- ((System.ComponentModel.ISupportInitialize)(this.txt_PC_FLAG)).EndInit();
- ((System.ComponentModel.ISupportInitialize)(this.txt_BASE_UNIT_VALUE)).EndInit();
- ((System.ComponentModel.ISupportInitialize)(this.txt_IS_BUDGET_CTRL)).EndInit();
- ((System.ComponentModel.ISupportInitialize)(this.Ultcmb_WEIGHT_UNIT_CODE)).EndInit();
- ((System.ComponentModel.ISupportInitialize)(this.Ultcmb_WEIGHT_UNIT)).EndInit();
- ((System.ComponentModel.ISupportInitialize)(this.txt_PLANNER_ROLE_NAME)).EndInit();
- ((System.ComponentModel.ISupportInitialize)(this.txt_BUYER_ROLE_NAME)).EndInit();
- ((System.ComponentModel.ISupportInitialize)(this.Ultcmb_RECEIVE_TYPE)).EndInit();
- ((System.ComponentModel.ISupportInitialize)(this.Ultcmb_BATCH_FLAG)).EndInit();
- ((System.ComponentModel.ISupportInitialize)(this.Ultcmb_PUR_STANDARDS)).EndInit();
- ((System.ComponentModel.ISupportInitialize)(this.Ultcmb_INV_WASTE_FAC_UOM)).EndInit();
- ((System.ComponentModel.ISupportInitialize)(this.Ultcmb_METERING_FLAG)).EndInit();
- ((System.ComponentModel.ISupportInitialize)(this.Ultcmb_PRICE_TYPE)).EndInit();
- ((System.ComponentModel.ISupportInitialize)(this.Ultcmb_CURRENCY_CODE)).EndInit();
- ((System.ComponentModel.ISupportInitialize)(this.Ultcmb_LIFE_CYCLE_UOM)).EndInit();
- this.ultraTabPageControl2.ResumeLayout(false);
- this.ultraTabPageControl2.PerformLayout();
- ((System.ComponentModel.ISupportInitialize)(this.txt_DELVRY_RANGE_MIN2)).EndInit();
- ((System.ComponentModel.ISupportInitialize)(this.txt_DELVRY_RANGE_MAX2)).EndInit();
- ((System.ComponentModel.ISupportInitialize)(this.txt_delivery_type_2)).EndInit();
- ((System.ComponentModel.ISupportInitialize)(this.txt_IS_DEFAULT)).EndInit();
- ((System.ComponentModel.ISupportInitialize)(this.txt_PLANNER_ROLE_NAME1)).EndInit();
- ((System.ComponentModel.ISupportInitialize)(this.txt_BUYER_ROLE_NAME1)).EndInit();
- ((System.ComponentModel.ISupportInitialize)(this.txt_SUPP_NAME)).EndInit();
- this.ultraTabPageControl3.ResumeLayout(false);
- this.ultraTabPageControl3.PerformLayout();
- ((System.ComponentModel.ISupportInitialize)(this.txt_IsLevel)).EndInit();
- ((System.ComponentModel.ISupportInitialize)(this.txt_ITEM_ATTR_CODE)).EndInit();
- ((System.ComponentModel.ISupportInitialize)(this.txt_ITEM_ATTR)).EndInit();
- ((System.ComponentModel.ISupportInitialize)(this.txt_IS_DEFAULT_ATTR)).EndInit();
- ((System.ComponentModel.ISupportInitialize)(this.txt_ORDER_NUM)).EndInit();
- this.ultraTabPageControl7.ResumeLayout(false);
- this.ultraTabPageControl7.PerformLayout();
- ((System.ComponentModel.ISupportInitialize)(this.txt_STANDARDS_ID)).EndInit();
- ((System.ComponentModel.ISupportInitialize)(this.txt_STANDARDS_CODE)).EndInit();
- ((System.ComponentModel.ISupportInitialize)(this.txt_IS_DEFAULT_STANDRANDS)).EndInit();
- ((System.ComponentModel.ISupportInitialize)(this.txt_REMARK_STANDARD)).EndInit();
- ((System.ComponentModel.ISupportInitialize)(this.txtORDER_NUM)).EndInit();
- this.ultraTabPageControl9.ResumeLayout(false);
- this.ultraTabPageControl9.PerformLayout();
- ((System.ComponentModel.ISupportInitialize)(this.txt_ITEM_UOM_CONEFFICIENT)).EndInit();
- ((System.ComponentModel.ISupportInitialize)(this.txt_WEIGHT_UNIT_CODE)).EndInit();
- ((System.ComponentModel.ISupportInitialize)(this.txt_UOM_CODE)).EndInit();
- ((System.ComponentModel.ISupportInitialize)(this.txt_REMARK_UOM)).EndInit();
- ((System.ComponentModel.ISupportInitialize)(this.txt_IS_DEFAULT_UOM)).EndInit();
- ((System.ComponentModel.ISupportInitialize)(this.txt_WEIGHT_UNIT)).EndInit();
- ((System.ComponentModel.ISupportInitialize)(this.txt_UOM_NAME)).EndInit();
- this.ultraTabPageControl4.ResumeLayout(false);
- this.ultraTabPageControl4.PerformLayout();
- ((System.ComponentModel.ISupportInitialize)(this.ultraGrid2)).EndInit();
- ((System.ComponentModel.ISupportInitialize)(this.dataSet1)).EndInit();
- ((System.ComponentModel.ISupportInitialize)(this.dataTable1)).EndInit();
- ((System.ComponentModel.ISupportInitialize)(this.dataTable2)).EndInit();
- ((System.ComponentModel.ISupportInitialize)(this.dataTable3)).EndInit();
- ((System.ComponentModel.ISupportInitialize)(this.dataTable4)).EndInit();
- ((System.ComponentModel.ISupportInitialize)(this.dataTable5)).EndInit();
- ((System.ComponentModel.ISupportInitialize)(this.dataTable7)).EndInit();
- this.ultraTabPageControl5.ResumeLayout(false);
- ((System.ComponentModel.ISupportInitialize)(this.ultraGrid3)).EndInit();
- this.ultraTabPageControl6.ResumeLayout(false);
- ((System.ComponentModel.ISupportInitialize)(this.ultraGrid4)).EndInit();
- this.ultraTabPageControl8.ResumeLayout(false);
- ((System.ComponentModel.ISupportInitialize)(this.ultraGrid5)).EndInit();
- ((System.ComponentModel.ISupportInitialize)(this.dataSet2)).EndInit();
- ((System.ComponentModel.ISupportInitialize)(this.dataTable6)).EndInit();
- this.tableLayoutPanel1.ResumeLayout(false);
- ((System.ComponentModel.ISupportInitialize)(this.ultraGroupBox5)).EndInit();
- this.ultraGroupBox5.ResumeLayout(false);
- ((System.ComponentModel.ISupportInitialize)(this.ultraTabControl1)).EndInit();
- this.ultraTabControl1.ResumeLayout(false);
- ((System.ComponentModel.ISupportInitialize)(this.ultraGroupBox2)).EndInit();
- this.ultraGroupBox2.ResumeLayout(false);
- this.tableLayoutPanel2.ResumeLayout(false);
- ((System.ComponentModel.ISupportInitialize)(this.ulTreeMat)).EndInit();
- ((System.ComponentModel.ISupportInitialize)(this.ultraGroupBox3)).EndInit();
- this.ultraGroupBox3.ResumeLayout(false);
- this.tableLayoutPanel3.ResumeLayout(false);
- ((System.ComponentModel.ISupportInitialize)(this.ultraTabControl2)).EndInit();
- this.ultraTabControl2.ResumeLayout(false);
- ((System.ComponentModel.ISupportInitialize)(this.ultraGrid1)).EndInit();
- ((System.ComponentModel.ISupportInitialize)(this.ultraGroupBox1)).EndInit();
- this.ultraGroupBox1.ResumeLayout(false);
- this.ultraGroupBox1.PerformLayout();
- ((System.ComponentModel.ISupportInitialize)(this.txt_ARC_ITEM)).EndInit();
- ((System.ComponentModel.ISupportInitialize)(this.txt_ARC_CODE)).EndInit();
- ((System.ComponentModel.ISupportInitialize)(this.cmbNum)).EndInit();
- ((System.ComponentModel.ISupportInitialize)(this.ultraTextEditor2)).EndInit();
- ((System.ComponentModel.ISupportInitialize)(this.ultraTextEditor1)).EndInit();
- ((System.ComponentModel.ISupportInitialize)(this.Ultcmb_MAT_TYPE)).EndInit();
- this.ResumeLayout(false);
- }
- #endregion
- private System.Windows.Forms.TableLayoutPanel tableLayoutPanel1;
- private Infragistics.Win.Misc.UltraGroupBox ultraGroupBox5;
- private Infragistics.Win.UltraWinTabControl.UltraTabControl ultraTabControl1;
- private Infragistics.Win.UltraWinTabControl.UltraTabSharedControlsPage ultraTabSharedControlsPage1;
- private Infragistics.Win.UltraWinTabControl.UltraTabPageControl ultraTabPageControl1;
- private Infragistics.Win.UltraWinTabControl.UltraTabPageControl ultraTabPageControl3;
- private Infragistics.Win.Misc.UltraGroupBox ultraGroupBox3;
- private Infragistics.Win.Misc.UltraGroupBox ultraGroupBox2;
- private Infragistics.Win.Misc.UltraGroupBox ultraGroupBox1;
- private System.Windows.Forms.TableLayoutPanel tableLayoutPanel2;
- private Infragistics.Win.UltraWinEditors.UltraTextEditor ultraTextEditor2;
- private Infragistics.Win.UltraWinEditors.UltraTextEditor ultraTextEditor1;
- private Infragistics.Win.UltraWinGrid.UltraGrid ultraGrid3;
- private System.Data.DataSet dataSet1;
- private System.Data.DataTable dataTable1;
- private System.Data.DataTable dataTable2;
- private System.Data.DataTable dataTable3;
- private Infragistics.Win.UltraWinGrid.UltraGrid ultraGrid2;
- private Infragistics.Win.UltraWinTree.UltraTree ulTreeMat;
- private Infragistics.Win.UltraWinGrid.UltraGrid ultraGrid1;
- private System.Windows.Forms.TextBox txt_ORDER_NUM11;
- private System.Windows.Forms.Label label37;
- private System.Windows.Forms.Label label38;
- private System.Windows.Forms.TextBox txt_ITEM_CODE2;
- private System.Windows.Forms.Label label39;
- private Infragistics.Win.UltraWinTabControl.UltraTabPageControl ultraTabPageControl2;
- private System.Windows.Forms.TextBox txt_JS;
- private System.Windows.Forms.Label label32;
- private System.Windows.Forms.TextBox txt_YWKS;
- private System.Windows.Forms.Label label33;
- private System.Windows.Forms.Label label34;
- private System.Data.DataColumn dataColumn1;
- private System.Data.DataColumn dataColumn2;
- private System.Data.DataColumn dataColumn3;
- private System.Data.DataColumn dataColumn5;
- private System.Data.DataColumn dataColumn6;
- private System.Data.DataColumn dataColumn7;
- private System.Data.DataColumn dataColumn8;
- private System.Data.DataColumn dataColumn9;
- private System.Data.DataColumn dataColumn10;
- private System.Data.DataColumn dataColumn11;
- private Infragistics.Win.Misc.UltraGroupBox ultraGroupBox6;
- private Infragistics.Win.UltraWinEditors.UltraComboEditor Ultcmb_RECEIVE_TYPE;
- private Infragistics.Win.UltraWinEditors.UltraComboEditor Ultcmb_BATCH_FLAG;
- private Infragistics.Win.UltraWinEditors.UltraComboEditor Ultcmb_PUR_STANDARDS;
- private Infragistics.Win.UltraWinEditors.UltraComboEditor Ultcmb_INV_WASTE_FAC_UOM;
- private Infragistics.Win.UltraWinEditors.UltraComboEditor Ultcmb_METERING_FLAG;
- private Infragistics.Win.UltraWinEditors.UltraComboEditor Ultcmb_PRICE_TYPE;
- private Infragistics.Win.UltraWinEditors.UltraComboEditor Ultcmb_CURRENCY_CODE;
- private Infragistics.Win.UltraWinEditors.UltraComboEditor Ultcmb_LIFE_CYCLE_UOM;
- private System.Windows.Forms.Label label25;
- private System.Windows.Forms.Label label27;
- private System.Windows.Forms.TextBox txt_PUR_STANDARDS_CODE;
- private System.Windows.Forms.Label label28;
- private System.Windows.Forms.Label label29;
- private System.Windows.Forms.Label label30;
- private System.Windows.Forms.Label label19;
- private System.Windows.Forms.TextBox txt_MIN_STOCK;
- private System.Windows.Forms.Label label20;
- private System.Windows.Forms.TextBox txt_MAX_STOCK;
- private System.Windows.Forms.Label label21;
- private System.Windows.Forms.TextBox txt_LEAD_TIME;
- private System.Windows.Forms.TextBox txt_INV_WASTE_FAC;
- private System.Windows.Forms.Label label23;
- private System.Windows.Forms.Label label24;
- private System.Windows.Forms.TextBox txt_LIFE_CYCLE;
- private System.Windows.Forms.Label label18;
- private System.Windows.Forms.TextBox txt_MIN_QTY;
- private System.Windows.Forms.Label label17;
- private System.Windows.Forms.TextBox txt_QTY_MULTIPLE;
- private System.Windows.Forms.Label label16;
- private System.Windows.Forms.Label label15;
- private System.Windows.Forms.TextBox txt_BUG_PRICE;
- private System.Windows.Forms.Label label14;
- private System.Windows.Forms.TextBox txt_LAST_PRICE;
- private System.Windows.Forms.Label label13;
- private System.Windows.Forms.Label label12;
- private System.Windows.Forms.Label label11;
- private System.Windows.Forms.TextBox txt_MONTH_END_AVG_PRICE;
- private System.Windows.Forms.Label label10;
- private System.Windows.Forms.Label label9;
- private System.Windows.Forms.TextBox txt_ITEM_NAME;
- private System.Windows.Forms.Label label8;
- private System.Windows.Forms.TextBox txt_ITEM_DESC_E;
- private System.Windows.Forms.Label label7;
- private System.Windows.Forms.TextBox txt_ITEM_DESC;
- private System.Windows.Forms.Label label6;
- private System.Windows.Forms.TextBox txt_ITEM_MODEL;
- private System.Windows.Forms.Label label5;
- private System.Windows.Forms.TextBox txt_ITEM_SPEC;
- private System.Windows.Forms.TextBox txt_ITEM_CODE;
- private System.Windows.Forms.Label label1;
- private System.Data.DataColumn dataColumn12;
- private System.Data.DataColumn dataColumn13;
- private System.Data.DataColumn dataColumn15;
- private System.Data.DataColumn dataColumn16;
- private System.Data.DataColumn dataColumn17;
- private System.Data.DataColumn dataColumn22;
- private System.Windows.Forms.TextBox txt_suppCode;
- private System.Windows.Forms.Label label26;
- private System.Windows.Forms.Label label22;
- private System.Windows.Forms.Panel panel1;
- private System.Windows.Forms.Label label41;
- private System.Windows.Forms.Label label36;
- private System.Windows.Forms.Label label35;
- private System.Windows.Forms.Label label3;
- private System.Windows.Forms.Label label40;
- private Infragistics.Win.UltraWinEditors.UltraTextEditor txt_SUPP_NAME;
- private Infragistics.Win.UltraWinEditors.UltraTextEditor txt_PLANNER_ROLE_NAME;
- private Infragistics.Win.UltraWinEditors.UltraTextEditor txt_BUYER_ROLE_NAME;
- private Infragistics.Win.UltraWinTabControl.UltraTabControl ultraTabControl2;
- private Infragistics.Win.UltraWinTabControl.UltraTabSharedControlsPage ultraTabSharedControlsPage2;
- private Infragistics.Win.UltraWinTabControl.UltraTabPageControl ultraTabPageControl4;
- private Infragistics.Win.UltraWinTabControl.UltraTabPageControl ultraTabPageControl5;
- private Infragistics.Win.UltraWinEditors.UltraTextEditor txt_PLANNER_ROLE_NAME1;
- private Infragistics.Win.UltraWinEditors.UltraTextEditor txt_BUYER_ROLE_NAME1;
- private System.Windows.Forms.Label label31;
- private System.Windows.Forms.Label label42;
- private DataColumn dataColumn28;
- private DataColumn dataColumn29;
- private DataTable dataTable4;
- private DataColumn dataColumn30;
- private DataColumn dataColumn31;
- private DataColumn dataColumn32;
- private DataColumn dataColumn33;
- private Infragistics.Win.UltraWinTabControl.UltraTabPageControl ultraTabPageControl7;
- private Infragistics.Win.UltraWinTabControl.UltraTabPageControl ultraTabPageControl6;
- private Infragistics.Win.UltraWinGrid.UltraGrid ultraGrid4;
- private System.Windows.Forms.Label label46;
- private Infragistics.Win.UltraWinEditors.UltraTextEditor txt_REMARK_STANDARD;
- private System.Windows.Forms.Label label45;
- private Infragistics.Win.UltraWinEditors.UltraTextEditor txtORDER_NUM;
- private System.Windows.Forms.Label label44;
- private System.Windows.Forms.Label label43;
- private Infragistics.Win.UltraWinEditors.UltraComboEditor txt_IS_DEFAULT_STANDRANDS;
- private DataColumn dataColumn34;
- private DataColumn dataColumn35;
- private Infragistics.Win.UltraWinEditors.UltraTextEditor Ultcmb_WEIGHT_UNIT;
- private DataColumn dataColumn14;
- private DataColumn dataColumn36;
- private DataColumn dataColumn4;
- private System.Windows.Forms.TextBox txt_item_Attr4;
- private System.Windows.Forms.Label label50;
- private System.Windows.Forms.TextBox txt_item_Attr3;
- private System.Windows.Forms.Label label49;
- private System.Windows.Forms.TextBox txt_item_Attr2;
- private System.Windows.Forms.Label label48;
- private System.Windows.Forms.TextBox txt_item_Attr1;
- private System.Windows.Forms.Label label47;
- private DataColumn dataColumn37;
- private DataColumn dataColumn38;
- private DataColumn dataColumn39;
- private DataColumn dataColumn40;
- private DataColumn dataColumn41;
- private System.Windows.Forms.TableLayoutPanel tableLayoutPanel3;
- private Infragistics.Win.UltraWinEditors.UltraNumericEditor txt_ORDER_NUM;
- private System.Windows.Forms.TextBox txt_REMARK_ATTR;
- private System.Windows.Forms.Label label51;
- private DataColumn dataColumn42;
- private Infragistics.Win.UltraWinEditors.UltraTextEditor Ultcmb_WEIGHT_UNIT_CODE;
- private System.Windows.Forms.Label label52;
- private DataColumn dataColumn43;
- private DataColumn dataColumn44;
- private Infragistics.Win.UltraWinTabControl.UltraTabPageControl ultraTabPageControl9;
- private Infragistics.Win.UltraWinTabControl.UltraTabPageControl ultraTabPageControl8;
- private Infragistics.Win.UltraWinGrid.UltraGrid ultraGrid5;
- private Infragistics.Win.UltraWinEditors.UltraComboEditor txt_IS_DEFAULT_ATTR;
- private System.Windows.Forms.Label label53;
- private Infragistics.Win.UltraWinEditors.UltraTextEditor txt_UOM_NAME;
- private System.Windows.Forms.Label label4;
- private System.Windows.Forms.Label label54;
- private DataColumn dataColumn45;
- private Infragistics.Win.UltraWinEditors.UltraComboEditor txt_IS_DEFAULT_UOM;
- private System.Windows.Forms.Label label58;
- private System.Windows.Forms.Label label2;
- private System.Windows.Forms.Label label57;
- private Infragistics.Win.UltraWinEditors.UltraTextEditor txt_WEIGHT_UNIT;
- private System.Windows.Forms.Label label56;
- private System.Windows.Forms.Label label55;
- private DataTable dataTable5;
- private DataColumn dataColumn46;
- private DataColumn dataColumn47;
- private DataColumn dataColumn48;
- private DataColumn dataColumn49;
- private DataColumn dataColumn50;
- private DataColumn dataColumn51;
- private DataColumn dataColumn52;
- private DataColumn dataColumn53;
- private System.Windows.Forms.Label label59;
- private Infragistics.Win.UltraWinEditors.UltraTextEditor txt_REMARK_UOM;
- private System.Windows.Forms.Label label60;
- private DataColumn dataColumn54;
- private Infragistics.Win.UltraWinEditors.UltraTextEditor txt_ITEM_ATTR;
- private Infragistics.Win.UltraWinEditors.UltraTextEditor txt_ITEM_ATTR_CODE;
- private Infragistics.Win.UltraWinEditors.UltraTextEditor txt_STANDARDS_ID;
- private Infragistics.Win.UltraWinEditors.UltraTextEditor txt_STANDARDS_CODE;
- private Infragistics.Win.UltraWinEditors.UltraTextEditor txt_ITEM_UOM_CONEFFICIENT;
- private Infragistics.Win.UltraWinEditors.UltraTextEditor txt_WEIGHT_UNIT_CODE;
- private Infragistics.Win.UltraWinEditors.UltraTextEditor txt_UOM_CODE;
- private Infragistics.Win.UltraWinEditors.UltraComboEditor txt_IS_BUDGET_CTRL;
- private System.Windows.Forms.Label label63;
- private System.Windows.Forms.Label label61;
- private Infragistics.Win.UltraWinEditors.UltraTextEditor txt_BASE_UNIT_VALUE;
- private System.Windows.Forms.CheckBox cb_BASE_UNIT_FLAG;
- private DataColumn dataColumn55;
- private Infragistics.Win.UltraWinEditors.UltraComboEditor txt_IS_DEFAULT;
- private System.Windows.Forms.Label label62;
- private DataColumn dataColumn56;
- private System.Windows.Forms.CheckBox chk_showHasDelete;
- private DataColumn dataColumn57;
- private System.Windows.Forms.Label label65;
- private System.Windows.Forms.Label label64;
- private Infragistics.Win.UltraWinEditors.UltraComboEditor cmbNum;
- private System.Windows.Forms.ImageList imageList1;
- private System.Windows.Forms.Label label66;
- private Infragistics.Win.UltraWinEditors.UltraTextEditor txt_ARC_ITEM;
- private Infragistics.Win.UltraWinEditors.UltraTextEditor txt_ARC_CODE;
- private System.Windows.Forms.CheckBox checkBox1;
- private System.Windows.Forms.TextBox txt_MatAttrClassName;
- private System.Windows.Forms.Label label67;
- private System.Windows.Forms.TextBox txt_MatAttrClass;
- private System.Windows.Forms.Label label68;
- private DataColumn dataColumn62;
- private DataTable dataTable7;
- private DataColumn dataColumn60;
- private DataColumn dataColumn61;
- private DataSet dataSet2;
- private DataTable dataTable6;
- private DataColumn dataColumn58;
- private DataColumn dataColumn59;
- private DataColumn dataColumn63;
- private Infragistics.Win.UltraWinEditors.UltraComboEditor txt_PC_FLAG;
- private System.Windows.Forms.Label label69;
- private System.Windows.Forms.Label label74;
- private System.Windows.Forms.Label label73;
- private System.Windows.Forms.Label label72;
- private System.Windows.Forms.Label label71;
- private Infragistics.Win.UltraWinEditors.UltraNumericEditor txt_DELVRY_RANGE_MIN;
- private Infragistics.Win.UltraWinEditors.UltraNumericEditor txt_DELVRY_RANGE_MAX;
- private Infragistics.Win.UltraWinEditors.UltraComboEditor txt_DELVRY_RANGE_TPE;
- private System.Windows.Forms.Label label70;
- private DataColumn dataColumn64;
- private Infragistics.Win.UltraWinEditors.UltraComboEditor txt_IsLevel;
- private System.Windows.Forms.Label label75;
- private DataColumn dataColumn65;
- private Infragistics.Win.UltraWinEditors.UltraTextEditor txt_ItemArcCode;
- private System.Windows.Forms.Label label76;
- private Infragistics.Win.UltraWinEditors.UltraTextEditor txt_ItemArcCodeName;
- private DataColumn dataColumn66;
- private DataColumn dataColumn67;
- private Infragistics.Win.UltraWinEditors.UltraTextEditor txt_INV_PHYSIC_USERID;
- private System.Windows.Forms.Label label77;
- private DataColumn dataColumn68;
- private DataColumn dataColumn69;
- private DataColumn dataColumn70;
- private Infragistics.Win.UltraWinEditors.UltraComboEditor txt_delivery_type_2;
- private System.Windows.Forms.Label label78;
- private Infragistics.Win.UltraWinEditors.UltraNumericEditor txt_DELVRY_RANGE_MIN2;
- private Infragistics.Win.UltraWinEditors.UltraNumericEditor txt_DELVRY_RANGE_MAX2;
- private System.Windows.Forms.Label label80;
- private System.Windows.Forms.Label label79;
- private System.Windows.Forms.Label label81;
- private System.Windows.Forms.Label label82;
- private DataColumn dataColumn18;
- private DataColumn dataColumn19;
- private Infragistics.Win.UltraWinEditors.UltraComboEditor Ultcmb_MAT_TYPE;
- private System.Windows.Forms.Label label83;
- }
- }
|