FrmPurMat.Designer.cs 225 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126312731283129313031313132313331343135313631373138313931403141314231433144314531463147314831493150315131523153315431553156315731583159316031613162316331643165316631673168316931703171317231733174317531763177317831793180318131823183318431853186318731883189319031913192319331943195319631973198319932003201320232033204320532063207320832093210321132123213321432153216321732183219322032213222322332243225322632273228322932303231323232333234323532363237323832393240324132423243324432453246324732483249325032513252325332543255325632573258325932603261326232633264326532663267326832693270327132723273327432753276327732783279328032813282328332843285328632873288328932903291329232933294329532963297329832993300330133023303330433053306330733083309331033113312331333143315331633173318331933203321332233233324332533263327332833293330333133323333333433353336333733383339334033413342334333443345334633473348334933503351335233533354335533563357335833593360336133623363336433653366336733683369337033713372337333743375337633773378337933803381338233833384338533863387338833893390339133923393339433953396339733983399340034013402340334043405340634073408340934103411341234133414341534163417341834193420342134223423342434253426342734283429343034313432343334343435343634373438343934403441344234433444344534463447344834493450345134523453345434553456345734583459346034613462346334643465346634673468346934703471347234733474347534763477347834793480348134823483348434853486348734883489349034913492349334943495349634973498349935003501350235033504350535063507350835093510351135123513351435153516351735183519352035213522352335243525352635273528352935303531353235333534353535363537353835393540354135423543354435453546354735483549355035513552355335543555355635573558355935603561356235633564356535663567356835693570357135723573357435753576357735783579358035813582358335843585358635873588358935903591359235933594359535963597359835993600360136023603360436053606360736083609361036113612361336143615361636173618361936203621362236233624362536263627362836293630363136323633363436353636363736383639364036413642364336443645364636473648364936503651365236533654365536563657365836593660366136623663366436653666366736683669367036713672367336743675367636773678367936803681368236833684368536863687368836893690369136923693369436953696369736983699370037013702370337043705370637073708370937103711371237133714371537163717371837193720372137223723372437253726372737283729373037313732373337343735373637373738373937403741374237433744374537463747374837493750375137523753375437553756375737583759376037613762376337643765376637673768376937703771377237733774377537763777377837793780378137823783378437853786378737883789379037913792379337943795379637973798379938003801380238033804380538063807380838093810381138123813381438153816381738183819382038213822382338243825382638273828382938303831383238333834383538363837383838393840384138423843384438453846384738483849385038513852385338543855385638573858385938603861386238633864386538663867386838693870387138723873387438753876387738783879388038813882388338843885388638873888388938903891389238933894389538963897389838993900390139023903390439053906390739083909391039113912391339143915391639173918391939203921392239233924392539263927392839293930393139323933393439353936393739383939394039413942394339443945394639473948394939503951395239533954395539563957395839593960396139623963396439653966396739683969397039713972397339743975397639773978397939803981398239833984398539863987398839893990399139923993399439953996399739983999400040014002400340044005400640074008400940104011401240134014401540164017401840194020402140224023402440254026402740284029403040314032
  1. using System.Data;
  2. namespace Pur.configure
  3. {
  4. partial class FrmPurMat
  5. {
  6. /// <summary>
  7. /// Required designer variable.
  8. /// </summary>
  9. private System.ComponentModel.IContainer components = null;
  10. /// <summary>
  11. /// Clean up any resources being used.
  12. /// </summary>
  13. /// <param name="disposing">true if managed resources should be disposed; otherwise, false.</param>
  14. protected override void Dispose(bool disposing)
  15. {
  16. if (disposing && (components != null))
  17. {
  18. components.Dispose();
  19. }
  20. base.Dispose(disposing);
  21. }
  22. #region Windows Form Designer generated code
  23. /// <summary>
  24. /// Required method for Designer support - do not modify
  25. /// the contents of this method with the code editor.
  26. /// </summary>
  27. private void InitializeComponent()
  28. {
  29. this.components = new System.ComponentModel.Container();
  30. Infragistics.Win.UltraWinEditors.EditorButton editorButton1 = new Infragistics.Win.UltraWinEditors.EditorButton();
  31. Infragistics.Win.Appearance appearance4 = new Infragistics.Win.Appearance();
  32. Infragistics.Win.UltraWinEditors.EditorButton editorButton2 = new Infragistics.Win.UltraWinEditors.EditorButton();
  33. Infragistics.Win.Appearance appearance10 = new Infragistics.Win.Appearance();
  34. Infragistics.Win.UltraWinEditors.EditorButton editorButton3 = new Infragistics.Win.UltraWinEditors.EditorButton();
  35. Infragistics.Win.Appearance appearance12 = new Infragistics.Win.Appearance();
  36. Infragistics.Win.ValueListItem valueListItem30 = new Infragistics.Win.ValueListItem();
  37. Infragistics.Win.ValueListItem valueListItem8 = new Infragistics.Win.ValueListItem();
  38. Infragistics.Win.ValueListItem valueListItem9 = new Infragistics.Win.ValueListItem();
  39. Infragistics.Win.ValueListItem valueListItem31 = new Infragistics.Win.ValueListItem();
  40. Infragistics.Win.ValueListItem valueListItem22 = new Infragistics.Win.ValueListItem();
  41. Infragistics.Win.ValueListItem valueListItem23 = new Infragistics.Win.ValueListItem();
  42. Infragistics.Win.ValueListItem valueListItem40 = new Infragistics.Win.ValueListItem();
  43. Infragistics.Win.ValueListItem valueListItem41 = new Infragistics.Win.ValueListItem();
  44. Infragistics.Win.UltraWinEditors.EditorButton editorButton4 = new Infragistics.Win.UltraWinEditors.EditorButton();
  45. Infragistics.Win.Appearance appearance5 = new Infragistics.Win.Appearance();
  46. Infragistics.Win.UltraWinEditors.EditorButton editorButton5 = new Infragistics.Win.UltraWinEditors.EditorButton();
  47. Infragistics.Win.Appearance appearance14 = new Infragistics.Win.Appearance();
  48. Infragistics.Win.UltraWinEditors.EditorButton editorButton6 = new Infragistics.Win.UltraWinEditors.EditorButton();
  49. Infragistics.Win.Appearance appearance3 = new Infragistics.Win.Appearance();
  50. Infragistics.Win.ValueListItem valueListItem53 = new Infragistics.Win.ValueListItem();
  51. Infragistics.Win.ValueListItem valueListItem54 = new Infragistics.Win.ValueListItem();
  52. Infragistics.Win.ValueListItem valueListItem52 = new Infragistics.Win.ValueListItem();
  53. Infragistics.Win.ValueListItem valueListItem1 = new Infragistics.Win.ValueListItem();
  54. Infragistics.Win.ValueListItem valueListItem55 = new Infragistics.Win.ValueListItem();
  55. Infragistics.Win.ValueListItem valueListItem56 = new Infragistics.Win.ValueListItem();
  56. Infragistics.Win.ValueListItem valueListItem57 = new Infragistics.Win.ValueListItem();
  57. Infragistics.Win.ValueListItem valueListItem20 = new Infragistics.Win.ValueListItem();
  58. Infragistics.Win.ValueListItem valueListItem21 = new Infragistics.Win.ValueListItem();
  59. Infragistics.Win.ValueListItem valueListItem32 = new Infragistics.Win.ValueListItem();
  60. Infragistics.Win.ValueListItem valueListItem33 = new Infragistics.Win.ValueListItem();
  61. Infragistics.Win.ValueListItem valueListItem34 = new Infragistics.Win.ValueListItem();
  62. Infragistics.Win.ValueListItem valueListItem35 = new Infragistics.Win.ValueListItem();
  63. Infragistics.Win.ValueListItem valueListItem46 = new Infragistics.Win.ValueListItem();
  64. Infragistics.Win.ValueListItem valueListItem47 = new Infragistics.Win.ValueListItem();
  65. Infragistics.Win.ValueListItem valueListItem10 = new Infragistics.Win.ValueListItem();
  66. Infragistics.Win.ValueListItem valueListItem13 = new Infragistics.Win.ValueListItem();
  67. Infragistics.Win.ValueListItem valueListItem14 = new Infragistics.Win.ValueListItem();
  68. Infragistics.Win.ValueListItem valueListItem6 = new Infragistics.Win.ValueListItem();
  69. Infragistics.Win.ValueListItem valueListItem7 = new Infragistics.Win.ValueListItem();
  70. Infragistics.Win.ValueListItem valueListItem26 = new Infragistics.Win.ValueListItem();
  71. Infragistics.Win.ValueListItem valueListItem27 = new Infragistics.Win.ValueListItem();
  72. Infragistics.Win.ValueListItem valueListItem28 = new Infragistics.Win.ValueListItem();
  73. Infragistics.Win.ValueListItem valueListItem29 = new Infragistics.Win.ValueListItem();
  74. Infragistics.Win.UltraWinEditors.EditorButton editorButton7 = new Infragistics.Win.UltraWinEditors.EditorButton();
  75. Infragistics.Win.Appearance appearance6 = new Infragistics.Win.Appearance();
  76. Infragistics.Win.UltraWinEditors.EditorButton editorButton8 = new Infragistics.Win.UltraWinEditors.EditorButton();
  77. Infragistics.Win.Appearance appearance7 = new Infragistics.Win.Appearance();
  78. Infragistics.Win.UltraWinEditors.EditorButton editorButton9 = new Infragistics.Win.UltraWinEditors.EditorButton();
  79. Infragistics.Win.Appearance appearance1 = new Infragistics.Win.Appearance();
  80. Infragistics.Win.ValueListItem valueListItem11 = new Infragistics.Win.ValueListItem();
  81. Infragistics.Win.ValueListItem valueListItem12 = new Infragistics.Win.ValueListItem();
  82. Infragistics.Win.UltraWinEditors.EditorButton editorButton10 = new Infragistics.Win.UltraWinEditors.EditorButton();
  83. Infragistics.Win.Appearance appearance13 = new Infragistics.Win.Appearance();
  84. Infragistics.Win.ValueListItem valueListItem24 = new Infragistics.Win.ValueListItem();
  85. Infragistics.Win.ValueListItem valueListItem25 = new Infragistics.Win.ValueListItem();
  86. Infragistics.Win.UltraWinEditors.EditorButton editorButton11 = new Infragistics.Win.UltraWinEditors.EditorButton();
  87. Infragistics.Win.Appearance appearance9 = new Infragistics.Win.Appearance();
  88. Infragistics.Win.ValueListItem valueListItem4 = new Infragistics.Win.ValueListItem();
  89. Infragistics.Win.ValueListItem valueListItem5 = new Infragistics.Win.ValueListItem();
  90. Infragistics.Win.ValueListItem valueListItem2 = new Infragistics.Win.ValueListItem();
  91. Infragistics.Win.ValueListItem valueListItem3 = new Infragistics.Win.ValueListItem();
  92. Infragistics.Win.UltraWinEditors.EditorButton editorButton12 = new Infragistics.Win.UltraWinEditors.EditorButton();
  93. Infragistics.Win.Appearance appearance11 = new Infragistics.Win.Appearance();
  94. Infragistics.Win.UltraWinGrid.UltraGridBand ultraGridBand1 = new Infragistics.Win.UltraWinGrid.UltraGridBand("Table2", -1);
  95. Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn1 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("SUPPCODE");
  96. Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn2 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("SUPPNAME");
  97. Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn3 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("STATUS");
  98. Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn4 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("ISDEFAULT");
  99. Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn5 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("delvryRangeTpe");
  100. Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn6 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("delvryRangeMin");
  101. Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn7 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("delvryRangeMax");
  102. Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn8 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("id");
  103. Infragistics.Win.UltraWinGrid.UltraGridBand ultraGridBand2 = new Infragistics.Win.UltraWinGrid.UltraGridBand("Table3", -1);
  104. Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn9 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("ITEMCODE");
  105. Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn10 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("ItemAttr");
  106. Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn11 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("ORDERNUM");
  107. Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn12 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("ITEMUOM");
  108. Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn13 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("ITEMUOMCONEFFICIENT");
  109. Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn14 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("ITEMUSEUOM");
  110. Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn15 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("ITEMATTR1");
  111. Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn16 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("ITEMATTR2");
  112. Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn17 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("ITEMATTR3");
  113. Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn18 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("ITEMATTR4");
  114. Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn19 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("ItemAttrId");
  115. Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn20 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("ISDEFAULT");
  116. Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn21 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("REMARK");
  117. Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn22 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("ITEMATTRCODE");
  118. Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn23 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("ITEMATTRCLASS");
  119. Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn24 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("ITEMATTRCLASSNAME");
  120. Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn25 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("txtIsLevel");
  121. Infragistics.Win.UltraWinGrid.UltraGridBand ultraGridBand3 = new Infragistics.Win.UltraWinGrid.UltraGridBand("Table4", -1);
  122. Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn26 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("STANDARDSCODE");
  123. Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn27 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("ISDEFAULT");
  124. Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn28 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("ORDERNUM");
  125. Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn29 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("REMARK");
  126. Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn30 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("ITEMSTANDARDSID");
  127. Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn31 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("STANDARDSID");
  128. Infragistics.Win.UltraWinGrid.UltraGridBand ultraGridBand4 = new Infragistics.Win.UltraWinGrid.UltraGridBand("Table5", -1);
  129. Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn32 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("ITEMUOMID");
  130. Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn33 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("UOMCODE");
  131. Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn34 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("UOMNAME");
  132. Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn35 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("ITEMUOMCONEFFICIENT");
  133. Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn36 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("WEIGHTUNIT");
  134. Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn37 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("WEIGHTUNITCODE");
  135. Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn38 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("ISDEFAULT");
  136. Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn39 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("REMARK");
  137. Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn40 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("Validflag");
  138. Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn41 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("CREATENAME");
  139. Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn42 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("CREATETIME");
  140. System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(FrmPurMat));
  141. Infragistics.Win.UltraWinTabControl.UltraTab ultraTab1 = new Infragistics.Win.UltraWinTabControl.UltraTab();
  142. Infragistics.Win.UltraWinTabControl.UltraTab ultraTab2 = new Infragistics.Win.UltraWinTabControl.UltraTab();
  143. Infragistics.Win.UltraWinTabControl.UltraTab ultraTab3 = new Infragistics.Win.UltraWinTabControl.UltraTab();
  144. Infragistics.Win.UltraWinTabControl.UltraTab ultraTab7 = new Infragistics.Win.UltraWinTabControl.UltraTab();
  145. Infragistics.Win.UltraWinTabControl.UltraTab ultraTab9 = new Infragistics.Win.UltraWinTabControl.UltraTab();
  146. Infragistics.Win.UltraWinTree.Override _override1 = new Infragistics.Win.UltraWinTree.Override();
  147. Infragistics.Win.Appearance appearance8 = new Infragistics.Win.Appearance();
  148. Infragistics.Win.Appearance appearance2 = new Infragistics.Win.Appearance();
  149. Infragistics.Win.UltraWinTabControl.UltraTab ultraTab4 = new Infragistics.Win.UltraWinTabControl.UltraTab();
  150. Infragistics.Win.UltraWinTabControl.UltraTab ultraTab5 = new Infragistics.Win.UltraWinTabControl.UltraTab();
  151. Infragistics.Win.UltraWinTabControl.UltraTab ultraTab6 = new Infragistics.Win.UltraWinTabControl.UltraTab();
  152. Infragistics.Win.UltraWinTabControl.UltraTab ultraTab8 = new Infragistics.Win.UltraWinTabControl.UltraTab();
  153. Infragistics.Win.UltraWinGrid.UltraGridBand ultraGridBand5 = new Infragistics.Win.UltraWinGrid.UltraGridBand("Table1", -1);
  154. Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn43 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("ITEMCODE");
  155. Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn44 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("ITEMNAME");
  156. Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn45 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("ITEMSPEC");
  157. Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn46 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("WEIGHTUNIT");
  158. Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn47 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("ARCCODE");
  159. Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn48 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("ARCITEM");
  160. Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn49 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("CREATENAME");
  161. Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn50 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("CREATETIME");
  162. Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn51 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("UPDATENAME");
  163. Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn52 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("UPDATETIME");
  164. Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn53 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("BUYERROLEID");
  165. Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn54 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("PLANNERROLEID");
  166. Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn55 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("ITEMDESC");
  167. Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn56 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("BATCHFLAG");
  168. Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn57 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("WEIGHTUNITCODE");
  169. Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn58 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("VALIDFLAG");
  170. Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn59 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("BUGPRICE");
  171. Infragistics.Win.ValueListItem valueListItem15 = new Infragistics.Win.ValueListItem();
  172. Infragistics.Win.ValueListItem valueListItem16 = new Infragistics.Win.ValueListItem();
  173. Infragistics.Win.ValueListItem valueListItem17 = new Infragistics.Win.ValueListItem();
  174. Infragistics.Win.ValueListItem valueListItem18 = new Infragistics.Win.ValueListItem();
  175. Infragistics.Win.ValueListItem valueListItem19 = new Infragistics.Win.ValueListItem();
  176. Infragistics.Win.ValueListItem valueListItem48 = new Infragistics.Win.ValueListItem();
  177. Infragistics.Win.ValueListItem valueListItem49 = new Infragistics.Win.ValueListItem();
  178. Infragistics.Win.ValueListItem valueListItem50 = new Infragistics.Win.ValueListItem();
  179. Infragistics.Win.ValueListItem valueListItem51 = new Infragistics.Win.ValueListItem();
  180. this.ultraTabPageControl1 = new Infragistics.Win.UltraWinTabControl.UltraTabPageControl();
  181. this.panel1 = new System.Windows.Forms.Panel();
  182. this.ultraGroupBox6 = new Infragistics.Win.Misc.UltraGroupBox();
  183. this.txt_INV_PHYSIC_USERID = new Infragistics.Win.UltraWinEditors.UltraTextEditor();
  184. this.label77 = new System.Windows.Forms.Label();
  185. this.txt_ItemArcCodeName = new Infragistics.Win.UltraWinEditors.UltraTextEditor();
  186. this.txt_ItemArcCode = new Infragistics.Win.UltraWinEditors.UltraTextEditor();
  187. this.label76 = new System.Windows.Forms.Label();
  188. this.label74 = new System.Windows.Forms.Label();
  189. this.label73 = new System.Windows.Forms.Label();
  190. this.label72 = new System.Windows.Forms.Label();
  191. this.label71 = new System.Windows.Forms.Label();
  192. this.txt_DELVRY_RANGE_MIN = new Infragistics.Win.UltraWinEditors.UltraNumericEditor();
  193. this.txt_DELVRY_RANGE_MAX = new Infragistics.Win.UltraWinEditors.UltraNumericEditor();
  194. this.txt_DELVRY_RANGE_TPE = new Infragistics.Win.UltraWinEditors.UltraComboEditor();
  195. this.label70 = new System.Windows.Forms.Label();
  196. this.txt_PC_FLAG = new Infragistics.Win.UltraWinEditors.UltraComboEditor();
  197. this.label69 = new System.Windows.Forms.Label();
  198. this.txt_BASE_UNIT_VALUE = new Infragistics.Win.UltraWinEditors.UltraTextEditor();
  199. this.cb_BASE_UNIT_FLAG = new System.Windows.Forms.CheckBox();
  200. this.txt_IS_BUDGET_CTRL = new Infragistics.Win.UltraWinEditors.UltraComboEditor();
  201. this.label63 = new System.Windows.Forms.Label();
  202. this.label61 = new System.Windows.Forms.Label();
  203. this.Ultcmb_WEIGHT_UNIT_CODE = new Infragistics.Win.UltraWinEditors.UltraTextEditor();
  204. this.label52 = new System.Windows.Forms.Label();
  205. this.Ultcmb_WEIGHT_UNIT = new Infragistics.Win.UltraWinEditors.UltraTextEditor();
  206. this.txt_PLANNER_ROLE_NAME = new Infragistics.Win.UltraWinEditors.UltraTextEditor();
  207. this.txt_BUYER_ROLE_NAME = new Infragistics.Win.UltraWinEditors.UltraTextEditor();
  208. this.label3 = new System.Windows.Forms.Label();
  209. this.label26 = new System.Windows.Forms.Label();
  210. this.label22 = new System.Windows.Forms.Label();
  211. this.Ultcmb_RECEIVE_TYPE = new Infragistics.Win.UltraWinEditors.UltraComboEditor();
  212. this.Ultcmb_BATCH_FLAG = new Infragistics.Win.UltraWinEditors.UltraComboEditor();
  213. this.Ultcmb_PUR_STANDARDS = new Infragistics.Win.UltraWinEditors.UltraComboEditor();
  214. this.Ultcmb_INV_WASTE_FAC_UOM = new Infragistics.Win.UltraWinEditors.UltraComboEditor();
  215. this.Ultcmb_METERING_FLAG = new Infragistics.Win.UltraWinEditors.UltraComboEditor();
  216. this.Ultcmb_PRICE_TYPE = new Infragistics.Win.UltraWinEditors.UltraComboEditor();
  217. this.Ultcmb_CURRENCY_CODE = new Infragistics.Win.UltraWinEditors.UltraComboEditor();
  218. this.Ultcmb_LIFE_CYCLE_UOM = new Infragistics.Win.UltraWinEditors.UltraComboEditor();
  219. this.label25 = new System.Windows.Forms.Label();
  220. this.label27 = new System.Windows.Forms.Label();
  221. this.txt_PUR_STANDARDS_CODE = new System.Windows.Forms.TextBox();
  222. this.label28 = new System.Windows.Forms.Label();
  223. this.label29 = new System.Windows.Forms.Label();
  224. this.label30 = new System.Windows.Forms.Label();
  225. this.label19 = new System.Windows.Forms.Label();
  226. this.txt_MIN_STOCK = new System.Windows.Forms.TextBox();
  227. this.label20 = new System.Windows.Forms.Label();
  228. this.txt_MAX_STOCK = new System.Windows.Forms.TextBox();
  229. this.label21 = new System.Windows.Forms.Label();
  230. this.txt_LEAD_TIME = new System.Windows.Forms.TextBox();
  231. this.txt_INV_WASTE_FAC = new System.Windows.Forms.TextBox();
  232. this.label23 = new System.Windows.Forms.Label();
  233. this.label24 = new System.Windows.Forms.Label();
  234. this.txt_LIFE_CYCLE = new System.Windows.Forms.TextBox();
  235. this.label18 = new System.Windows.Forms.Label();
  236. this.txt_MIN_QTY = new System.Windows.Forms.TextBox();
  237. this.label17 = new System.Windows.Forms.Label();
  238. this.txt_QTY_MULTIPLE = new System.Windows.Forms.TextBox();
  239. this.label16 = new System.Windows.Forms.Label();
  240. this.label15 = new System.Windows.Forms.Label();
  241. this.txt_BUG_PRICE = new System.Windows.Forms.TextBox();
  242. this.label14 = new System.Windows.Forms.Label();
  243. this.txt_LAST_PRICE = new System.Windows.Forms.TextBox();
  244. this.label13 = new System.Windows.Forms.Label();
  245. this.label12 = new System.Windows.Forms.Label();
  246. this.label11 = new System.Windows.Forms.Label();
  247. this.txt_MONTH_END_AVG_PRICE = new System.Windows.Forms.TextBox();
  248. this.label10 = new System.Windows.Forms.Label();
  249. this.label9 = new System.Windows.Forms.Label();
  250. this.txt_ITEM_NAME = new System.Windows.Forms.TextBox();
  251. this.label8 = new System.Windows.Forms.Label();
  252. this.txt_ITEM_DESC_E = new System.Windows.Forms.TextBox();
  253. this.label7 = new System.Windows.Forms.Label();
  254. this.txt_ITEM_DESC = new System.Windows.Forms.TextBox();
  255. this.label6 = new System.Windows.Forms.Label();
  256. this.txt_ITEM_MODEL = new System.Windows.Forms.TextBox();
  257. this.label5 = new System.Windows.Forms.Label();
  258. this.txt_ITEM_SPEC = new System.Windows.Forms.TextBox();
  259. this.txt_ITEM_CODE = new System.Windows.Forms.TextBox();
  260. this.label1 = new System.Windows.Forms.Label();
  261. this.ultraTabPageControl2 = new Infragistics.Win.UltraWinTabControl.UltraTabPageControl();
  262. this.label81 = new System.Windows.Forms.Label();
  263. this.label82 = new System.Windows.Forms.Label();
  264. this.label80 = new System.Windows.Forms.Label();
  265. this.label79 = new System.Windows.Forms.Label();
  266. this.txt_DELVRY_RANGE_MIN2 = new Infragistics.Win.UltraWinEditors.UltraNumericEditor();
  267. this.txt_DELVRY_RANGE_MAX2 = new Infragistics.Win.UltraWinEditors.UltraNumericEditor();
  268. this.txt_delivery_type_2 = new Infragistics.Win.UltraWinEditors.UltraComboEditor();
  269. this.label78 = new System.Windows.Forms.Label();
  270. this.txt_IS_DEFAULT = new Infragistics.Win.UltraWinEditors.UltraComboEditor();
  271. this.label62 = new System.Windows.Forms.Label();
  272. this.txt_PLANNER_ROLE_NAME1 = new Infragistics.Win.UltraWinEditors.UltraTextEditor();
  273. this.txt_BUYER_ROLE_NAME1 = new Infragistics.Win.UltraWinEditors.UltraTextEditor();
  274. this.label31 = new System.Windows.Forms.Label();
  275. this.label42 = new System.Windows.Forms.Label();
  276. this.txt_SUPP_NAME = new Infragistics.Win.UltraWinEditors.UltraTextEditor();
  277. this.label40 = new System.Windows.Forms.Label();
  278. this.txt_suppCode = new System.Windows.Forms.TextBox();
  279. this.txt_JS = new System.Windows.Forms.TextBox();
  280. this.label32 = new System.Windows.Forms.Label();
  281. this.txt_YWKS = new System.Windows.Forms.TextBox();
  282. this.label33 = new System.Windows.Forms.Label();
  283. this.label34 = new System.Windows.Forms.Label();
  284. this.ultraTabPageControl3 = new Infragistics.Win.UltraWinTabControl.UltraTabPageControl();
  285. this.txt_IsLevel = new Infragistics.Win.UltraWinEditors.UltraComboEditor();
  286. this.label75 = new System.Windows.Forms.Label();
  287. this.txt_MatAttrClassName = new System.Windows.Forms.TextBox();
  288. this.label67 = new System.Windows.Forms.Label();
  289. this.txt_MatAttrClass = new System.Windows.Forms.TextBox();
  290. this.label68 = new System.Windows.Forms.Label();
  291. this.txt_ITEM_ATTR_CODE = new Infragistics.Win.UltraWinEditors.UltraTextEditor();
  292. this.txt_ITEM_ATTR = new Infragistics.Win.UltraWinEditors.UltraTextEditor();
  293. this.label60 = new System.Windows.Forms.Label();
  294. this.txt_IS_DEFAULT_ATTR = new Infragistics.Win.UltraWinEditors.UltraComboEditor();
  295. this.label53 = new System.Windows.Forms.Label();
  296. this.txt_REMARK_ATTR = new System.Windows.Forms.TextBox();
  297. this.label51 = new System.Windows.Forms.Label();
  298. this.txt_ORDER_NUM = new Infragistics.Win.UltraWinEditors.UltraNumericEditor();
  299. this.txt_item_Attr4 = new System.Windows.Forms.TextBox();
  300. this.label50 = new System.Windows.Forms.Label();
  301. this.txt_item_Attr3 = new System.Windows.Forms.TextBox();
  302. this.label49 = new System.Windows.Forms.Label();
  303. this.txt_item_Attr2 = new System.Windows.Forms.TextBox();
  304. this.label48 = new System.Windows.Forms.Label();
  305. this.txt_item_Attr1 = new System.Windows.Forms.TextBox();
  306. this.label47 = new System.Windows.Forms.Label();
  307. this.txt_ORDER_NUM11 = new System.Windows.Forms.TextBox();
  308. this.label37 = new System.Windows.Forms.Label();
  309. this.label38 = new System.Windows.Forms.Label();
  310. this.txt_ITEM_CODE2 = new System.Windows.Forms.TextBox();
  311. this.label39 = new System.Windows.Forms.Label();
  312. this.ultraTabPageControl7 = new Infragistics.Win.UltraWinTabControl.UltraTabPageControl();
  313. this.txt_STANDARDS_ID = new Infragistics.Win.UltraWinEditors.UltraTextEditor();
  314. this.txt_STANDARDS_CODE = new Infragistics.Win.UltraWinEditors.UltraTextEditor();
  315. this.label54 = new System.Windows.Forms.Label();
  316. this.txt_IS_DEFAULT_STANDRANDS = new Infragistics.Win.UltraWinEditors.UltraComboEditor();
  317. this.label46 = new System.Windows.Forms.Label();
  318. this.txt_REMARK_STANDARD = new Infragistics.Win.UltraWinEditors.UltraTextEditor();
  319. this.label45 = new System.Windows.Forms.Label();
  320. this.txtORDER_NUM = new Infragistics.Win.UltraWinEditors.UltraTextEditor();
  321. this.label44 = new System.Windows.Forms.Label();
  322. this.label43 = new System.Windows.Forms.Label();
  323. this.ultraTabPageControl9 = new Infragistics.Win.UltraWinTabControl.UltraTabPageControl();
  324. this.txt_ITEM_UOM_CONEFFICIENT = new Infragistics.Win.UltraWinEditors.UltraTextEditor();
  325. this.txt_WEIGHT_UNIT_CODE = new Infragistics.Win.UltraWinEditors.UltraTextEditor();
  326. this.txt_UOM_CODE = new Infragistics.Win.UltraWinEditors.UltraTextEditor();
  327. this.label59 = new System.Windows.Forms.Label();
  328. this.txt_REMARK_UOM = new Infragistics.Win.UltraWinEditors.UltraTextEditor();
  329. this.txt_IS_DEFAULT_UOM = new Infragistics.Win.UltraWinEditors.UltraComboEditor();
  330. this.label58 = new System.Windows.Forms.Label();
  331. this.label2 = new System.Windows.Forms.Label();
  332. this.label57 = new System.Windows.Forms.Label();
  333. this.txt_WEIGHT_UNIT = new Infragistics.Win.UltraWinEditors.UltraTextEditor();
  334. this.label56 = new System.Windows.Forms.Label();
  335. this.label55 = new System.Windows.Forms.Label();
  336. this.txt_UOM_NAME = new Infragistics.Win.UltraWinEditors.UltraTextEditor();
  337. this.label4 = new System.Windows.Forms.Label();
  338. this.ultraTabPageControl4 = new Infragistics.Win.UltraWinTabControl.UltraTabPageControl();
  339. this.ultraGrid2 = new Infragistics.Win.UltraWinGrid.UltraGrid();
  340. this.dataSet1 = new System.Data.DataSet();
  341. this.dataTable1 = new System.Data.DataTable();
  342. this.dataColumn1 = new System.Data.DataColumn();
  343. this.dataColumn2 = new System.Data.DataColumn();
  344. this.dataColumn3 = new System.Data.DataColumn();
  345. this.dataColumn5 = new System.Data.DataColumn();
  346. this.dataColumn6 = new System.Data.DataColumn();
  347. this.dataColumn7 = new System.Data.DataColumn();
  348. this.dataColumn8 = new System.Data.DataColumn();
  349. this.dataColumn9 = new System.Data.DataColumn();
  350. this.dataColumn10 = new System.Data.DataColumn();
  351. this.dataColumn11 = new System.Data.DataColumn();
  352. this.dataColumn28 = new System.Data.DataColumn();
  353. this.dataColumn29 = new System.Data.DataColumn();
  354. this.dataColumn34 = new System.Data.DataColumn();
  355. this.dataColumn41 = new System.Data.DataColumn();
  356. this.dataColumn55 = new System.Data.DataColumn();
  357. this.dataColumn57 = new System.Data.DataColumn();
  358. this.dataColumn19 = new System.Data.DataColumn();
  359. this.dataTable2 = new System.Data.DataTable();
  360. this.dataColumn16 = new System.Data.DataColumn();
  361. this.dataColumn17 = new System.Data.DataColumn();
  362. this.dataColumn22 = new System.Data.DataColumn();
  363. this.dataColumn56 = new System.Data.DataColumn();
  364. this.dataColumn68 = new System.Data.DataColumn();
  365. this.dataColumn69 = new System.Data.DataColumn();
  366. this.dataColumn70 = new System.Data.DataColumn();
  367. this.dataColumn18 = new System.Data.DataColumn();
  368. this.dataTable3 = new System.Data.DataTable();
  369. this.dataColumn12 = new System.Data.DataColumn();
  370. this.dataColumn13 = new System.Data.DataColumn();
  371. this.dataColumn15 = new System.Data.DataColumn();
  372. this.dataColumn14 = new System.Data.DataColumn();
  373. this.dataColumn36 = new System.Data.DataColumn();
  374. this.dataColumn4 = new System.Data.DataColumn();
  375. this.dataColumn37 = new System.Data.DataColumn();
  376. this.dataColumn38 = new System.Data.DataColumn();
  377. this.dataColumn39 = new System.Data.DataColumn();
  378. this.dataColumn40 = new System.Data.DataColumn();
  379. this.dataColumn42 = new System.Data.DataColumn();
  380. this.dataColumn43 = new System.Data.DataColumn();
  381. this.dataColumn44 = new System.Data.DataColumn();
  382. this.dataColumn54 = new System.Data.DataColumn();
  383. this.dataColumn62 = new System.Data.DataColumn();
  384. this.dataColumn63 = new System.Data.DataColumn();
  385. this.dataColumn65 = new System.Data.DataColumn();
  386. this.dataTable4 = new System.Data.DataTable();
  387. this.dataColumn30 = new System.Data.DataColumn();
  388. this.dataColumn31 = new System.Data.DataColumn();
  389. this.dataColumn32 = new System.Data.DataColumn();
  390. this.dataColumn33 = new System.Data.DataColumn();
  391. this.dataColumn35 = new System.Data.DataColumn();
  392. this.dataColumn45 = new System.Data.DataColumn();
  393. this.dataTable5 = new System.Data.DataTable();
  394. this.dataColumn46 = new System.Data.DataColumn();
  395. this.dataColumn47 = new System.Data.DataColumn();
  396. this.dataColumn48 = new System.Data.DataColumn();
  397. this.dataColumn49 = new System.Data.DataColumn();
  398. this.dataColumn50 = new System.Data.DataColumn();
  399. this.dataColumn51 = new System.Data.DataColumn();
  400. this.dataColumn52 = new System.Data.DataColumn();
  401. this.dataColumn53 = new System.Data.DataColumn();
  402. this.dataColumn64 = new System.Data.DataColumn();
  403. this.dataColumn66 = new System.Data.DataColumn();
  404. this.dataColumn67 = new System.Data.DataColumn();
  405. this.dataTable7 = new System.Data.DataTable();
  406. this.dataColumn60 = new System.Data.DataColumn();
  407. this.dataColumn61 = new System.Data.DataColumn();
  408. this.ultraTabPageControl5 = new Infragistics.Win.UltraWinTabControl.UltraTabPageControl();
  409. this.ultraGrid3 = new Infragistics.Win.UltraWinGrid.UltraGrid();
  410. this.ultraTabPageControl6 = new Infragistics.Win.UltraWinTabControl.UltraTabPageControl();
  411. this.ultraGrid4 = new Infragistics.Win.UltraWinGrid.UltraGrid();
  412. this.ultraTabPageControl8 = new Infragistics.Win.UltraWinTabControl.UltraTabPageControl();
  413. this.ultraGrid5 = new Infragistics.Win.UltraWinGrid.UltraGrid();
  414. this.imageList1 = new System.Windows.Forms.ImageList(this.components);
  415. this.dataSet2 = new System.Data.DataSet();
  416. this.dataTable6 = new System.Data.DataTable();
  417. this.dataColumn58 = new System.Data.DataColumn();
  418. this.dataColumn59 = new System.Data.DataColumn();
  419. this.tableLayoutPanel1 = new System.Windows.Forms.TableLayoutPanel();
  420. this.ultraGroupBox5 = new Infragistics.Win.Misc.UltraGroupBox();
  421. this.ultraTabControl1 = new Infragistics.Win.UltraWinTabControl.UltraTabControl();
  422. this.ultraTabSharedControlsPage1 = new Infragistics.Win.UltraWinTabControl.UltraTabSharedControlsPage();
  423. this.ultraGroupBox2 = new Infragistics.Win.Misc.UltraGroupBox();
  424. this.tableLayoutPanel2 = new System.Windows.Forms.TableLayoutPanel();
  425. this.ulTreeMat = new Infragistics.Win.UltraWinTree.UltraTree();
  426. this.ultraGroupBox3 = new Infragistics.Win.Misc.UltraGroupBox();
  427. this.tableLayoutPanel3 = new System.Windows.Forms.TableLayoutPanel();
  428. this.ultraTabControl2 = new Infragistics.Win.UltraWinTabControl.UltraTabControl();
  429. this.ultraTabSharedControlsPage2 = new Infragistics.Win.UltraWinTabControl.UltraTabSharedControlsPage();
  430. this.ultraGrid1 = new Infragistics.Win.UltraWinGrid.UltraGrid();
  431. this.ultraGroupBox1 = new Infragistics.Win.Misc.UltraGroupBox();
  432. this.label66 = new System.Windows.Forms.Label();
  433. this.txt_ARC_ITEM = new Infragistics.Win.UltraWinEditors.UltraTextEditor();
  434. this.txt_ARC_CODE = new Infragistics.Win.UltraWinEditors.UltraTextEditor();
  435. this.checkBox1 = new System.Windows.Forms.CheckBox();
  436. this.cmbNum = new Infragistics.Win.UltraWinEditors.UltraComboEditor();
  437. this.label65 = new System.Windows.Forms.Label();
  438. this.label64 = new System.Windows.Forms.Label();
  439. this.chk_showHasDelete = new System.Windows.Forms.CheckBox();
  440. this.label41 = new System.Windows.Forms.Label();
  441. this.label36 = new System.Windows.Forms.Label();
  442. this.label35 = new System.Windows.Forms.Label();
  443. this.ultraTextEditor2 = new Infragistics.Win.UltraWinEditors.UltraTextEditor();
  444. this.ultraTextEditor1 = new Infragistics.Win.UltraWinEditors.UltraTextEditor();
  445. this.Ultcmb_MAT_TYPE = new Infragistics.Win.UltraWinEditors.UltraComboEditor();
  446. this.label83 = new System.Windows.Forms.Label();
  447. this.ultraTabPageControl1.SuspendLayout();
  448. this.panel1.SuspendLayout();
  449. ((System.ComponentModel.ISupportInitialize)(this.ultraGroupBox6)).BeginInit();
  450. this.ultraGroupBox6.SuspendLayout();
  451. ((System.ComponentModel.ISupportInitialize)(this.txt_INV_PHYSIC_USERID)).BeginInit();
  452. ((System.ComponentModel.ISupportInitialize)(this.txt_ItemArcCodeName)).BeginInit();
  453. ((System.ComponentModel.ISupportInitialize)(this.txt_ItemArcCode)).BeginInit();
  454. ((System.ComponentModel.ISupportInitialize)(this.txt_DELVRY_RANGE_MIN)).BeginInit();
  455. ((System.ComponentModel.ISupportInitialize)(this.txt_DELVRY_RANGE_MAX)).BeginInit();
  456. ((System.ComponentModel.ISupportInitialize)(this.txt_DELVRY_RANGE_TPE)).BeginInit();
  457. ((System.ComponentModel.ISupportInitialize)(this.txt_PC_FLAG)).BeginInit();
  458. ((System.ComponentModel.ISupportInitialize)(this.txt_BASE_UNIT_VALUE)).BeginInit();
  459. ((System.ComponentModel.ISupportInitialize)(this.txt_IS_BUDGET_CTRL)).BeginInit();
  460. ((System.ComponentModel.ISupportInitialize)(this.Ultcmb_WEIGHT_UNIT_CODE)).BeginInit();
  461. ((System.ComponentModel.ISupportInitialize)(this.Ultcmb_WEIGHT_UNIT)).BeginInit();
  462. ((System.ComponentModel.ISupportInitialize)(this.txt_PLANNER_ROLE_NAME)).BeginInit();
  463. ((System.ComponentModel.ISupportInitialize)(this.txt_BUYER_ROLE_NAME)).BeginInit();
  464. ((System.ComponentModel.ISupportInitialize)(this.Ultcmb_RECEIVE_TYPE)).BeginInit();
  465. ((System.ComponentModel.ISupportInitialize)(this.Ultcmb_BATCH_FLAG)).BeginInit();
  466. ((System.ComponentModel.ISupportInitialize)(this.Ultcmb_PUR_STANDARDS)).BeginInit();
  467. ((System.ComponentModel.ISupportInitialize)(this.Ultcmb_INV_WASTE_FAC_UOM)).BeginInit();
  468. ((System.ComponentModel.ISupportInitialize)(this.Ultcmb_METERING_FLAG)).BeginInit();
  469. ((System.ComponentModel.ISupportInitialize)(this.Ultcmb_PRICE_TYPE)).BeginInit();
  470. ((System.ComponentModel.ISupportInitialize)(this.Ultcmb_CURRENCY_CODE)).BeginInit();
  471. ((System.ComponentModel.ISupportInitialize)(this.Ultcmb_LIFE_CYCLE_UOM)).BeginInit();
  472. this.ultraTabPageControl2.SuspendLayout();
  473. ((System.ComponentModel.ISupportInitialize)(this.txt_DELVRY_RANGE_MIN2)).BeginInit();
  474. ((System.ComponentModel.ISupportInitialize)(this.txt_DELVRY_RANGE_MAX2)).BeginInit();
  475. ((System.ComponentModel.ISupportInitialize)(this.txt_delivery_type_2)).BeginInit();
  476. ((System.ComponentModel.ISupportInitialize)(this.txt_IS_DEFAULT)).BeginInit();
  477. ((System.ComponentModel.ISupportInitialize)(this.txt_PLANNER_ROLE_NAME1)).BeginInit();
  478. ((System.ComponentModel.ISupportInitialize)(this.txt_BUYER_ROLE_NAME1)).BeginInit();
  479. ((System.ComponentModel.ISupportInitialize)(this.txt_SUPP_NAME)).BeginInit();
  480. this.ultraTabPageControl3.SuspendLayout();
  481. ((System.ComponentModel.ISupportInitialize)(this.txt_IsLevel)).BeginInit();
  482. ((System.ComponentModel.ISupportInitialize)(this.txt_ITEM_ATTR_CODE)).BeginInit();
  483. ((System.ComponentModel.ISupportInitialize)(this.txt_ITEM_ATTR)).BeginInit();
  484. ((System.ComponentModel.ISupportInitialize)(this.txt_IS_DEFAULT_ATTR)).BeginInit();
  485. ((System.ComponentModel.ISupportInitialize)(this.txt_ORDER_NUM)).BeginInit();
  486. this.ultraTabPageControl7.SuspendLayout();
  487. ((System.ComponentModel.ISupportInitialize)(this.txt_STANDARDS_ID)).BeginInit();
  488. ((System.ComponentModel.ISupportInitialize)(this.txt_STANDARDS_CODE)).BeginInit();
  489. ((System.ComponentModel.ISupportInitialize)(this.txt_IS_DEFAULT_STANDRANDS)).BeginInit();
  490. ((System.ComponentModel.ISupportInitialize)(this.txt_REMARK_STANDARD)).BeginInit();
  491. ((System.ComponentModel.ISupportInitialize)(this.txtORDER_NUM)).BeginInit();
  492. this.ultraTabPageControl9.SuspendLayout();
  493. ((System.ComponentModel.ISupportInitialize)(this.txt_ITEM_UOM_CONEFFICIENT)).BeginInit();
  494. ((System.ComponentModel.ISupportInitialize)(this.txt_WEIGHT_UNIT_CODE)).BeginInit();
  495. ((System.ComponentModel.ISupportInitialize)(this.txt_UOM_CODE)).BeginInit();
  496. ((System.ComponentModel.ISupportInitialize)(this.txt_REMARK_UOM)).BeginInit();
  497. ((System.ComponentModel.ISupportInitialize)(this.txt_IS_DEFAULT_UOM)).BeginInit();
  498. ((System.ComponentModel.ISupportInitialize)(this.txt_WEIGHT_UNIT)).BeginInit();
  499. ((System.ComponentModel.ISupportInitialize)(this.txt_UOM_NAME)).BeginInit();
  500. this.ultraTabPageControl4.SuspendLayout();
  501. ((System.ComponentModel.ISupportInitialize)(this.ultraGrid2)).BeginInit();
  502. ((System.ComponentModel.ISupportInitialize)(this.dataSet1)).BeginInit();
  503. ((System.ComponentModel.ISupportInitialize)(this.dataTable1)).BeginInit();
  504. ((System.ComponentModel.ISupportInitialize)(this.dataTable2)).BeginInit();
  505. ((System.ComponentModel.ISupportInitialize)(this.dataTable3)).BeginInit();
  506. ((System.ComponentModel.ISupportInitialize)(this.dataTable4)).BeginInit();
  507. ((System.ComponentModel.ISupportInitialize)(this.dataTable5)).BeginInit();
  508. ((System.ComponentModel.ISupportInitialize)(this.dataTable7)).BeginInit();
  509. this.ultraTabPageControl5.SuspendLayout();
  510. ((System.ComponentModel.ISupportInitialize)(this.ultraGrid3)).BeginInit();
  511. this.ultraTabPageControl6.SuspendLayout();
  512. ((System.ComponentModel.ISupportInitialize)(this.ultraGrid4)).BeginInit();
  513. this.ultraTabPageControl8.SuspendLayout();
  514. ((System.ComponentModel.ISupportInitialize)(this.ultraGrid5)).BeginInit();
  515. ((System.ComponentModel.ISupportInitialize)(this.dataSet2)).BeginInit();
  516. ((System.ComponentModel.ISupportInitialize)(this.dataTable6)).BeginInit();
  517. this.tableLayoutPanel1.SuspendLayout();
  518. ((System.ComponentModel.ISupportInitialize)(this.ultraGroupBox5)).BeginInit();
  519. this.ultraGroupBox5.SuspendLayout();
  520. ((System.ComponentModel.ISupportInitialize)(this.ultraTabControl1)).BeginInit();
  521. this.ultraTabControl1.SuspendLayout();
  522. ((System.ComponentModel.ISupportInitialize)(this.ultraGroupBox2)).BeginInit();
  523. this.ultraGroupBox2.SuspendLayout();
  524. this.tableLayoutPanel2.SuspendLayout();
  525. ((System.ComponentModel.ISupportInitialize)(this.ulTreeMat)).BeginInit();
  526. ((System.ComponentModel.ISupportInitialize)(this.ultraGroupBox3)).BeginInit();
  527. this.ultraGroupBox3.SuspendLayout();
  528. this.tableLayoutPanel3.SuspendLayout();
  529. ((System.ComponentModel.ISupportInitialize)(this.ultraTabControl2)).BeginInit();
  530. this.ultraTabControl2.SuspendLayout();
  531. ((System.ComponentModel.ISupportInitialize)(this.ultraGrid1)).BeginInit();
  532. ((System.ComponentModel.ISupportInitialize)(this.ultraGroupBox1)).BeginInit();
  533. this.ultraGroupBox1.SuspendLayout();
  534. ((System.ComponentModel.ISupportInitialize)(this.txt_ARC_ITEM)).BeginInit();
  535. ((System.ComponentModel.ISupportInitialize)(this.txt_ARC_CODE)).BeginInit();
  536. ((System.ComponentModel.ISupportInitialize)(this.cmbNum)).BeginInit();
  537. ((System.ComponentModel.ISupportInitialize)(this.ultraTextEditor2)).BeginInit();
  538. ((System.ComponentModel.ISupportInitialize)(this.ultraTextEditor1)).BeginInit();
  539. ((System.ComponentModel.ISupportInitialize)(this.Ultcmb_MAT_TYPE)).BeginInit();
  540. this.SuspendLayout();
  541. //
  542. // ultraTabPageControl1
  543. //
  544. this.ultraTabPageControl1.Controls.Add(this.panel1);
  545. this.ultraTabPageControl1.Location = new System.Drawing.Point(1, 25);
  546. this.ultraTabPageControl1.Margin = new System.Windows.Forms.Padding(4);
  547. this.ultraTabPageControl1.Name = "ultraTabPageControl1";
  548. this.ultraTabPageControl1.Size = new System.Drawing.Size(1771, 161);
  549. //
  550. // panel1
  551. //
  552. this.panel1.AutoScroll = true;
  553. this.panel1.Controls.Add(this.ultraGroupBox6);
  554. this.panel1.Dock = System.Windows.Forms.DockStyle.Fill;
  555. this.panel1.Location = new System.Drawing.Point(0, 0);
  556. this.panel1.Margin = new System.Windows.Forms.Padding(4);
  557. this.panel1.Name = "panel1";
  558. this.panel1.Size = new System.Drawing.Size(1771, 161);
  559. this.panel1.TabIndex = 77;
  560. //
  561. // ultraGroupBox6
  562. //
  563. this.ultraGroupBox6.CaptionAlignment = Infragistics.Win.Misc.GroupBoxCaptionAlignment.Far;
  564. this.ultraGroupBox6.Controls.Add(this.Ultcmb_MAT_TYPE);
  565. this.ultraGroupBox6.Controls.Add(this.label83);
  566. this.ultraGroupBox6.Controls.Add(this.txt_INV_PHYSIC_USERID);
  567. this.ultraGroupBox6.Controls.Add(this.label77);
  568. this.ultraGroupBox6.Controls.Add(this.txt_ItemArcCodeName);
  569. this.ultraGroupBox6.Controls.Add(this.txt_ItemArcCode);
  570. this.ultraGroupBox6.Controls.Add(this.label76);
  571. this.ultraGroupBox6.Controls.Add(this.label74);
  572. this.ultraGroupBox6.Controls.Add(this.label73);
  573. this.ultraGroupBox6.Controls.Add(this.label72);
  574. this.ultraGroupBox6.Controls.Add(this.label71);
  575. this.ultraGroupBox6.Controls.Add(this.txt_DELVRY_RANGE_MIN);
  576. this.ultraGroupBox6.Controls.Add(this.txt_DELVRY_RANGE_MAX);
  577. this.ultraGroupBox6.Controls.Add(this.txt_DELVRY_RANGE_TPE);
  578. this.ultraGroupBox6.Controls.Add(this.label70);
  579. this.ultraGroupBox6.Controls.Add(this.txt_PC_FLAG);
  580. this.ultraGroupBox6.Controls.Add(this.label69);
  581. this.ultraGroupBox6.Controls.Add(this.txt_BASE_UNIT_VALUE);
  582. this.ultraGroupBox6.Controls.Add(this.cb_BASE_UNIT_FLAG);
  583. this.ultraGroupBox6.Controls.Add(this.txt_IS_BUDGET_CTRL);
  584. this.ultraGroupBox6.Controls.Add(this.label63);
  585. this.ultraGroupBox6.Controls.Add(this.label61);
  586. this.ultraGroupBox6.Controls.Add(this.Ultcmb_WEIGHT_UNIT);
  587. this.ultraGroupBox6.Controls.Add(this.txt_PLANNER_ROLE_NAME);
  588. this.ultraGroupBox6.Controls.Add(this.label3);
  589. this.ultraGroupBox6.Controls.Add(this.label26);
  590. this.ultraGroupBox6.Controls.Add(this.Ultcmb_RECEIVE_TYPE);
  591. this.ultraGroupBox6.Controls.Add(this.Ultcmb_BATCH_FLAG);
  592. this.ultraGroupBox6.Controls.Add(this.Ultcmb_METERING_FLAG);
  593. this.ultraGroupBox6.Controls.Add(this.Ultcmb_PRICE_TYPE);
  594. this.ultraGroupBox6.Controls.Add(this.Ultcmb_CURRENCY_CODE);
  595. this.ultraGroupBox6.Controls.Add(this.Ultcmb_LIFE_CYCLE_UOM);
  596. this.ultraGroupBox6.Controls.Add(this.label25);
  597. this.ultraGroupBox6.Controls.Add(this.label30);
  598. this.ultraGroupBox6.Controls.Add(this.label19);
  599. this.ultraGroupBox6.Controls.Add(this.txt_MIN_STOCK);
  600. this.ultraGroupBox6.Controls.Add(this.label20);
  601. this.ultraGroupBox6.Controls.Add(this.txt_MAX_STOCK);
  602. this.ultraGroupBox6.Controls.Add(this.label21);
  603. this.ultraGroupBox6.Controls.Add(this.txt_LEAD_TIME);
  604. this.ultraGroupBox6.Controls.Add(this.txt_INV_WASTE_FAC);
  605. this.ultraGroupBox6.Controls.Add(this.label23);
  606. this.ultraGroupBox6.Controls.Add(this.label24);
  607. this.ultraGroupBox6.Controls.Add(this.txt_LIFE_CYCLE);
  608. this.ultraGroupBox6.Controls.Add(this.label18);
  609. this.ultraGroupBox6.Controls.Add(this.txt_QTY_MULTIPLE);
  610. this.ultraGroupBox6.Controls.Add(this.label16);
  611. this.ultraGroupBox6.Controls.Add(this.label15);
  612. this.ultraGroupBox6.Controls.Add(this.txt_BUG_PRICE);
  613. this.ultraGroupBox6.Controls.Add(this.label14);
  614. this.ultraGroupBox6.Controls.Add(this.label12);
  615. this.ultraGroupBox6.Controls.Add(this.label9);
  616. this.ultraGroupBox6.Controls.Add(this.txt_ITEM_NAME);
  617. this.ultraGroupBox6.Controls.Add(this.label8);
  618. this.ultraGroupBox6.Controls.Add(this.txt_ITEM_DESC);
  619. this.ultraGroupBox6.Controls.Add(this.label6);
  620. this.ultraGroupBox6.Controls.Add(this.txt_ITEM_CODE);
  621. this.ultraGroupBox6.Controls.Add(this.label1);
  622. this.ultraGroupBox6.Dock = System.Windows.Forms.DockStyle.Fill;
  623. this.ultraGroupBox6.Location = new System.Drawing.Point(0, 0);
  624. this.ultraGroupBox6.Margin = new System.Windows.Forms.Padding(4);
  625. this.ultraGroupBox6.Name = "ultraGroupBox6";
  626. this.ultraGroupBox6.Size = new System.Drawing.Size(1771, 161);
  627. this.ultraGroupBox6.TabIndex = 76;
  628. //
  629. // txt_INV_PHYSIC_USERID
  630. //
  631. appearance4.FontData.BoldAsString = "True";
  632. appearance4.TextHAlignAsString = "Center";
  633. appearance4.TextVAlignAsString = "Middle";
  634. editorButton1.Appearance = appearance4;
  635. editorButton1.Text = "+";
  636. this.txt_INV_PHYSIC_USERID.ButtonsRight.Add(editorButton1);
  637. this.txt_INV_PHYSIC_USERID.DisplayStyle = Infragistics.Win.EmbeddableElementDisplayStyle.Office2007;
  638. this.txt_INV_PHYSIC_USERID.Location = new System.Drawing.Point(747, 125);
  639. this.txt_INV_PHYSIC_USERID.Margin = new System.Windows.Forms.Padding(4);
  640. this.txt_INV_PHYSIC_USERID.Name = "txt_INV_PHYSIC_USERID";
  641. this.txt_INV_PHYSIC_USERID.ReadOnly = true;
  642. this.txt_INV_PHYSIC_USERID.Size = new System.Drawing.Size(189, 24);
  643. this.txt_INV_PHYSIC_USERID.TabIndex = 175;
  644. this.txt_INV_PHYSIC_USERID.EditorButtonClick += new Infragistics.Win.UltraWinEditors.EditorButtonEventHandler(this.txt_INV_PHYSIC_USERID_EditorButtonClick);
  645. //
  646. // label77
  647. //
  648. this.label77.BackColor = System.Drawing.SystemColors.Highlight;
  649. this.label77.Location = new System.Drawing.Point(629, 125);
  650. this.label77.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
  651. this.label77.Name = "label77";
  652. this.label77.Size = new System.Drawing.Size(115, 26);
  653. this.label77.TabIndex = 174;
  654. this.label77.Text = "库管员";
  655. this.label77.TextAlign = System.Drawing.ContentAlignment.MiddleRight;
  656. //
  657. // txt_ItemArcCodeName
  658. //
  659. appearance10.TextHAlignAsString = "Center";
  660. appearance10.TextVAlignAsString = "Middle";
  661. editorButton2.Appearance = appearance10;
  662. editorButton2.Text = "+";
  663. this.txt_ItemArcCodeName.ButtonsRight.Add(editorButton2);
  664. this.txt_ItemArcCodeName.Location = new System.Drawing.Point(124, 124);
  665. this.txt_ItemArcCodeName.Margin = new System.Windows.Forms.Padding(4);
  666. this.txt_ItemArcCodeName.Name = "txt_ItemArcCodeName";
  667. this.txt_ItemArcCodeName.ReadOnly = true;
  668. this.txt_ItemArcCodeName.Size = new System.Drawing.Size(189, 24);
  669. this.txt_ItemArcCodeName.TabIndex = 173;
  670. this.txt_ItemArcCodeName.EditorButtonClick += new Infragistics.Win.UltraWinEditors.EditorButtonEventHandler(this.txt_ItemArcCodeName_EditorButtonClick);
  671. //
  672. // txt_ItemArcCode
  673. //
  674. appearance12.TextHAlignAsString = "Center";
  675. appearance12.TextVAlignAsString = "Middle";
  676. editorButton3.Appearance = appearance12;
  677. editorButton3.Text = "+";
  678. this.txt_ItemArcCode.ButtonsRight.Add(editorButton3);
  679. this.txt_ItemArcCode.Location = new System.Drawing.Point(224, 125);
  680. this.txt_ItemArcCode.Margin = new System.Windows.Forms.Padding(4);
  681. this.txt_ItemArcCode.Name = "txt_ItemArcCode";
  682. this.txt_ItemArcCode.ReadOnly = true;
  683. this.txt_ItemArcCode.Size = new System.Drawing.Size(76, 24);
  684. this.txt_ItemArcCode.TabIndex = 172;
  685. this.txt_ItemArcCode.Visible = false;
  686. this.txt_ItemArcCode.EditorButtonClick += new Infragistics.Win.UltraWinEditors.EditorButtonEventHandler(this.txt_ItemArcCode_EditorButtonClick);
  687. //
  688. // label76
  689. //
  690. this.label76.BackColor = System.Drawing.SystemColors.Highlight;
  691. this.label76.Location = new System.Drawing.Point(7, 122);
  692. this.label76.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
  693. this.label76.Name = "label76";
  694. this.label76.Size = new System.Drawing.Size(115, 26);
  695. this.label76.TabIndex = 171;
  696. this.label76.Text = "物 料 分 类";
  697. this.label76.TextAlign = System.Drawing.ContentAlignment.MiddleRight;
  698. //
  699. // label74
  700. //
  701. this.label74.BackColor = System.Drawing.SystemColors.Highlight;
  702. this.label74.Location = new System.Drawing.Point(1537, 124);
  703. this.label74.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
  704. this.label74.Name = "label74";
  705. this.label74.Size = new System.Drawing.Size(21, 26);
  706. this.label74.TabIndex = 170;
  707. this.label74.Text = "%";
  708. this.label74.TextAlign = System.Drawing.ContentAlignment.MiddleLeft;
  709. this.label74.Visible = false;
  710. //
  711. // label73
  712. //
  713. this.label73.BackColor = System.Drawing.SystemColors.Highlight;
  714. this.label73.Location = new System.Drawing.Point(1537, 96);
  715. this.label73.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
  716. this.label73.Name = "label73";
  717. this.label73.Size = new System.Drawing.Size(21, 26);
  718. this.label73.TabIndex = 169;
  719. this.label73.Text = "%";
  720. this.label73.TextAlign = System.Drawing.ContentAlignment.MiddleLeft;
  721. this.label73.Visible = false;
  722. //
  723. // label72
  724. //
  725. this.label72.BackColor = System.Drawing.SystemColors.Highlight;
  726. this.label72.Location = new System.Drawing.Point(1249, 124);
  727. this.label72.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
  728. this.label72.Name = "label72";
  729. this.label72.Size = new System.Drawing.Size(115, 26);
  730. this.label72.TabIndex = 168;
  731. this.label72.Text = "交货量差下限";
  732. this.label72.TextAlign = System.Drawing.ContentAlignment.MiddleRight;
  733. //
  734. // label71
  735. //
  736. this.label71.BackColor = System.Drawing.SystemColors.Highlight;
  737. this.label71.Location = new System.Drawing.Point(1249, 95);
  738. this.label71.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
  739. this.label71.Name = "label71";
  740. this.label71.Size = new System.Drawing.Size(115, 26);
  741. this.label71.TabIndex = 167;
  742. this.label71.Text = "交货量差上限";
  743. this.label71.TextAlign = System.Drawing.ContentAlignment.MiddleRight;
  744. //
  745. // txt_DELVRY_RANGE_MIN
  746. //
  747. this.txt_DELVRY_RANGE_MIN.Location = new System.Drawing.Point(1367, 122);
  748. this.txt_DELVRY_RANGE_MIN.Margin = new System.Windows.Forms.Padding(4);
  749. this.txt_DELVRY_RANGE_MIN.Name = "txt_DELVRY_RANGE_MIN";
  750. this.txt_DELVRY_RANGE_MIN.Nullable = true;
  751. this.txt_DELVRY_RANGE_MIN.Size = new System.Drawing.Size(160, 24);
  752. this.txt_DELVRY_RANGE_MIN.TabIndex = 166;
  753. //
  754. // txt_DELVRY_RANGE_MAX
  755. //
  756. this.txt_DELVRY_RANGE_MAX.Location = new System.Drawing.Point(1367, 95);
  757. this.txt_DELVRY_RANGE_MAX.Margin = new System.Windows.Forms.Padding(4);
  758. this.txt_DELVRY_RANGE_MAX.Name = "txt_DELVRY_RANGE_MAX";
  759. this.txt_DELVRY_RANGE_MAX.Nullable = true;
  760. this.txt_DELVRY_RANGE_MAX.Size = new System.Drawing.Size(160, 24);
  761. this.txt_DELVRY_RANGE_MAX.TabIndex = 165;
  762. //
  763. // txt_DELVRY_RANGE_TPE
  764. //
  765. this.txt_DELVRY_RANGE_TPE.DisplayStyle = Infragistics.Win.EmbeddableElementDisplayStyle.Office2007;
  766. this.txt_DELVRY_RANGE_TPE.DropDownStyle = Infragistics.Win.DropDownStyle.DropDownList;
  767. valueListItem30.DataValue = "0";
  768. valueListItem30.DisplayText = "不限制";
  769. valueListItem8.DataValue = "1";
  770. valueListItem8.DisplayText = "绝对值";
  771. valueListItem9.CheckState = System.Windows.Forms.CheckState.Checked;
  772. valueListItem9.DataValue = "2";
  773. valueListItem9.DisplayText = "百分比";
  774. valueListItem31.DataValue = "3";
  775. valueListItem31.DisplayText = "不允许";
  776. this.txt_DELVRY_RANGE_TPE.Items.AddRange(new Infragistics.Win.ValueListItem[] {
  777. valueListItem30,
  778. valueListItem8,
  779. valueListItem9,
  780. valueListItem31});
  781. this.txt_DELVRY_RANGE_TPE.Location = new System.Drawing.Point(1059, 124);
  782. this.txt_DELVRY_RANGE_TPE.Margin = new System.Windows.Forms.Padding(4);
  783. this.txt_DELVRY_RANGE_TPE.Name = "txt_DELVRY_RANGE_TPE";
  784. this.txt_DELVRY_RANGE_TPE.Size = new System.Drawing.Size(189, 24);
  785. this.txt_DELVRY_RANGE_TPE.TabIndex = 164;
  786. this.txt_DELVRY_RANGE_TPE.ValueChanged += new System.EventHandler(this.txt_DELVRY_RANGE_TPE_ValueChanged);
  787. //
  788. // label70
  789. //
  790. this.label70.BackColor = System.Drawing.SystemColors.Highlight;
  791. this.label70.Location = new System.Drawing.Point(941, 124);
  792. this.label70.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
  793. this.label70.Name = "label70";
  794. this.label70.Size = new System.Drawing.Size(115, 26);
  795. this.label70.TabIndex = 163;
  796. this.label70.Text = "交货量差方式";
  797. this.label70.TextAlign = System.Drawing.ContentAlignment.MiddleCenter;
  798. //
  799. // txt_PC_FLAG
  800. //
  801. this.txt_PC_FLAG.DisplayStyle = Infragistics.Win.EmbeddableElementDisplayStyle.Office2007;
  802. this.txt_PC_FLAG.DropDownStyle = Infragistics.Win.DropDownStyle.DropDownList;
  803. valueListItem22.DataValue = "0";
  804. valueListItem22.DisplayText = "否";
  805. valueListItem23.CheckState = System.Windows.Forms.CheckState.Checked;
  806. valueListItem23.DataValue = "1";
  807. valueListItem23.DisplayText = "是";
  808. this.txt_PC_FLAG.Items.AddRange(new Infragistics.Win.ValueListItem[] {
  809. valueListItem22,
  810. valueListItem23});
  811. this.txt_PC_FLAG.Location = new System.Drawing.Point(1059, 95);
  812. this.txt_PC_FLAG.Margin = new System.Windows.Forms.Padding(4);
  813. this.txt_PC_FLAG.Name = "txt_PC_FLAG";
  814. this.txt_PC_FLAG.Size = new System.Drawing.Size(189, 24);
  815. this.txt_PC_FLAG.TabIndex = 162;
  816. //
  817. // label69
  818. //
  819. this.label69.BackColor = System.Drawing.SystemColors.Highlight;
  820. this.label69.Location = new System.Drawing.Point(941, 95);
  821. this.label69.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
  822. this.label69.Name = "label69";
  823. this.label69.Size = new System.Drawing.Size(115, 26);
  824. this.label69.TabIndex = 161;
  825. this.label69.Text = "是否检化验";
  826. this.label69.TextAlign = System.Drawing.ContentAlignment.MiddleCenter;
  827. //
  828. // txt_BASE_UNIT_VALUE
  829. //
  830. this.txt_BASE_UNIT_VALUE.Location = new System.Drawing.Point(1395, 35);
  831. this.txt_BASE_UNIT_VALUE.Margin = new System.Windows.Forms.Padding(4);
  832. this.txt_BASE_UNIT_VALUE.Name = "txt_BASE_UNIT_VALUE";
  833. this.txt_BASE_UNIT_VALUE.ReadOnly = true;
  834. this.txt_BASE_UNIT_VALUE.Size = new System.Drawing.Size(161, 24);
  835. this.txt_BASE_UNIT_VALUE.TabIndex = 160;
  836. //
  837. // cb_BASE_UNIT_FLAG
  838. //
  839. this.cb_BASE_UNIT_FLAG.AutoSize = true;
  840. this.cb_BASE_UNIT_FLAG.BackColor = System.Drawing.SystemColors.GradientInactiveCaption;
  841. this.cb_BASE_UNIT_FLAG.Location = new System.Drawing.Point(1368, 39);
  842. this.cb_BASE_UNIT_FLAG.Margin = new System.Windows.Forms.Padding(4);
  843. this.cb_BASE_UNIT_FLAG.Name = "cb_BASE_UNIT_FLAG";
  844. this.cb_BASE_UNIT_FLAG.Size = new System.Drawing.Size(18, 17);
  845. this.cb_BASE_UNIT_FLAG.TabIndex = 159;
  846. this.cb_BASE_UNIT_FLAG.UseVisualStyleBackColor = false;
  847. this.cb_BASE_UNIT_FLAG.CheckedChanged += new System.EventHandler(this.cb_BASE_UNIT_FLAG_CheckedChanged);
  848. //
  849. // txt_IS_BUDGET_CTRL
  850. //
  851. this.txt_IS_BUDGET_CTRL.DisplayStyle = Infragistics.Win.EmbeddableElementDisplayStyle.Office2007;
  852. this.txt_IS_BUDGET_CTRL.DropDownStyle = Infragistics.Win.DropDownStyle.DropDownList;
  853. valueListItem40.DataValue = "0";
  854. valueListItem40.DisplayText = "否";
  855. valueListItem41.CheckState = System.Windows.Forms.CheckState.Checked;
  856. valueListItem41.DataValue = "1";
  857. valueListItem41.DisplayText = "是";
  858. this.txt_IS_BUDGET_CTRL.Items.AddRange(new Infragistics.Win.ValueListItem[] {
  859. valueListItem40,
  860. valueListItem41});
  861. this.txt_IS_BUDGET_CTRL.Location = new System.Drawing.Point(1367, 65);
  862. this.txt_IS_BUDGET_CTRL.Margin = new System.Windows.Forms.Padding(4);
  863. this.txt_IS_BUDGET_CTRL.Name = "txt_IS_BUDGET_CTRL";
  864. this.txt_IS_BUDGET_CTRL.Size = new System.Drawing.Size(189, 24);
  865. this.txt_IS_BUDGET_CTRL.TabIndex = 157;
  866. //
  867. // label63
  868. //
  869. this.label63.BackColor = System.Drawing.SystemColors.Highlight;
  870. this.label63.Location = new System.Drawing.Point(1249, 65);
  871. this.label63.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
  872. this.label63.Name = "label63";
  873. this.label63.Size = new System.Drawing.Size(115, 26);
  874. this.label63.TabIndex = 153;
  875. this.label63.Text = "是否定额控制";
  876. this.label63.TextAlign = System.Drawing.ContentAlignment.MiddleRight;
  877. //
  878. // label61
  879. //
  880. this.label61.BackColor = System.Drawing.SystemColors.Highlight;
  881. this.label61.Location = new System.Drawing.Point(1249, 35);
  882. this.label61.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
  883. this.label61.Name = "label61";
  884. this.label61.Size = new System.Drawing.Size(115, 26);
  885. this.label61.TabIndex = 151;
  886. this.label61.Text = "基 吨 值";
  887. this.label61.TextAlign = System.Drawing.ContentAlignment.MiddleRight;
  888. //
  889. // Ultcmb_WEIGHT_UNIT_CODE
  890. //
  891. this.Ultcmb_WEIGHT_UNIT_CODE.Location = new System.Drawing.Point(1260, 52);
  892. this.Ultcmb_WEIGHT_UNIT_CODE.Margin = new System.Windows.Forms.Padding(4);
  893. this.Ultcmb_WEIGHT_UNIT_CODE.Name = "Ultcmb_WEIGHT_UNIT_CODE";
  894. this.Ultcmb_WEIGHT_UNIT_CODE.ReadOnly = true;
  895. this.Ultcmb_WEIGHT_UNIT_CODE.Size = new System.Drawing.Size(31, 24);
  896. this.Ultcmb_WEIGHT_UNIT_CODE.TabIndex = 149;
  897. this.Ultcmb_WEIGHT_UNIT_CODE.Visible = false;
  898. //
  899. // label52
  900. //
  901. this.label52.AutoSize = true;
  902. this.label52.Location = new System.Drawing.Point(1154, 56);
  903. this.label52.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
  904. this.label52.Name = "label52";
  905. this.label52.Size = new System.Drawing.Size(97, 15);
  906. this.label52.TabIndex = 148;
  907. this.label52.Text = "库存单位编码";
  908. this.label52.Visible = false;
  909. //
  910. // Ultcmb_WEIGHT_UNIT
  911. //
  912. appearance5.TextHAlignAsString = "Center";
  913. appearance5.TextVAlignAsString = "Middle";
  914. editorButton4.Appearance = appearance5;
  915. editorButton4.Text = "+";
  916. this.Ultcmb_WEIGHT_UNIT.ButtonsRight.Add(editorButton4);
  917. this.Ultcmb_WEIGHT_UNIT.Location = new System.Drawing.Point(747, 35);
  918. this.Ultcmb_WEIGHT_UNIT.Margin = new System.Windows.Forms.Padding(4);
  919. this.Ultcmb_WEIGHT_UNIT.Name = "Ultcmb_WEIGHT_UNIT";
  920. this.Ultcmb_WEIGHT_UNIT.ReadOnly = true;
  921. this.Ultcmb_WEIGHT_UNIT.Size = new System.Drawing.Size(189, 24);
  922. this.Ultcmb_WEIGHT_UNIT.TabIndex = 147;
  923. this.Ultcmb_WEIGHT_UNIT.EditorButtonClick += new Infragistics.Win.UltraWinEditors.EditorButtonEventHandler(this.Ultcmb_WEIGHT_UNIT_EditorButtonClick);
  924. //
  925. // txt_PLANNER_ROLE_NAME
  926. //
  927. appearance14.FontData.BoldAsString = "True";
  928. appearance14.TextHAlignAsString = "Center";
  929. appearance14.TextVAlignAsString = "Middle";
  930. editorButton5.Appearance = appearance14;
  931. editorButton5.Text = "+";
  932. this.txt_PLANNER_ROLE_NAME.ButtonsRight.Add(editorButton5);
  933. this.txt_PLANNER_ROLE_NAME.DisplayStyle = Infragistics.Win.EmbeddableElementDisplayStyle.Office2007;
  934. this.txt_PLANNER_ROLE_NAME.Location = new System.Drawing.Point(747, 95);
  935. this.txt_PLANNER_ROLE_NAME.Margin = new System.Windows.Forms.Padding(4);
  936. this.txt_PLANNER_ROLE_NAME.Name = "txt_PLANNER_ROLE_NAME";
  937. this.txt_PLANNER_ROLE_NAME.ReadOnly = true;
  938. this.txt_PLANNER_ROLE_NAME.Size = new System.Drawing.Size(189, 24);
  939. this.txt_PLANNER_ROLE_NAME.TabIndex = 146;
  940. this.txt_PLANNER_ROLE_NAME.EditorButtonClick += new Infragistics.Win.UltraWinEditors.EditorButtonEventHandler(this.txt_PLANNER_ROLE_ID_EditorButtonClick);
  941. //
  942. // txt_BUYER_ROLE_NAME
  943. //
  944. appearance3.FontData.BoldAsString = "True";
  945. appearance3.TextHAlignAsString = "Center";
  946. appearance3.TextVAlignAsString = "Middle";
  947. editorButton6.Appearance = appearance3;
  948. editorButton6.Text = "+";
  949. this.txt_BUYER_ROLE_NAME.ButtonsRight.Add(editorButton6);
  950. this.txt_BUYER_ROLE_NAME.DisplayStyle = Infragistics.Win.EmbeddableElementDisplayStyle.Office2007;
  951. this.txt_BUYER_ROLE_NAME.Location = new System.Drawing.Point(1326, 56);
  952. this.txt_BUYER_ROLE_NAME.Margin = new System.Windows.Forms.Padding(4);
  953. this.txt_BUYER_ROLE_NAME.Name = "txt_BUYER_ROLE_NAME";
  954. this.txt_BUYER_ROLE_NAME.ReadOnly = true;
  955. this.txt_BUYER_ROLE_NAME.Size = new System.Drawing.Size(12, 24);
  956. this.txt_BUYER_ROLE_NAME.TabIndex = 145;
  957. this.txt_BUYER_ROLE_NAME.Visible = false;
  958. this.txt_BUYER_ROLE_NAME.EditorButtonClick += new Infragistics.Win.UltraWinEditors.EditorButtonEventHandler(this.txt_BUYER_ROLE_ID_EditorButtonClick);
  959. //
  960. // label3
  961. //
  962. this.label3.AutoSize = true;
  963. this.label3.BackColor = System.Drawing.SystemColors.GradientActiveCaption;
  964. this.label3.Location = new System.Drawing.Point(288, 40);
  965. this.label3.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
  966. this.label3.Name = "label3";
  967. this.label3.Size = new System.Drawing.Size(22, 15);
  968. this.label3.TabIndex = 142;
  969. this.label3.Text = "天";
  970. //
  971. // label26
  972. //
  973. this.label26.BackColor = System.Drawing.SystemColors.Highlight;
  974. this.label26.Location = new System.Drawing.Point(629, 95);
  975. this.label26.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
  976. this.label26.Name = "label26";
  977. this.label26.Size = new System.Drawing.Size(115, 26);
  978. this.label26.TabIndex = 139;
  979. this.label26.Text = "计划员角色";
  980. this.label26.TextAlign = System.Drawing.ContentAlignment.MiddleRight;
  981. //
  982. // label22
  983. //
  984. this.label22.BackColor = System.Drawing.SystemColors.Highlight;
  985. this.label22.Location = new System.Drawing.Point(1311, 56);
  986. this.label22.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
  987. this.label22.Name = "label22";
  988. this.label22.Size = new System.Drawing.Size(13, 26);
  989. this.label22.TabIndex = 137;
  990. this.label22.Text = "采购员角色";
  991. this.label22.TextAlign = System.Drawing.ContentAlignment.MiddleRight;
  992. this.label22.Visible = false;
  993. //
  994. // Ultcmb_RECEIVE_TYPE
  995. //
  996. this.Ultcmb_RECEIVE_TYPE.DisplayStyle = Infragistics.Win.EmbeddableElementDisplayStyle.Office2007;
  997. this.Ultcmb_RECEIVE_TYPE.DropDownStyle = Infragistics.Win.DropDownStyle.DropDownList;
  998. this.Ultcmb_RECEIVE_TYPE.Location = new System.Drawing.Point(124, 95);
  999. this.Ultcmb_RECEIVE_TYPE.Margin = new System.Windows.Forms.Padding(4);
  1000. this.Ultcmb_RECEIVE_TYPE.Name = "Ultcmb_RECEIVE_TYPE";
  1001. this.Ultcmb_RECEIVE_TYPE.Size = new System.Drawing.Size(189, 24);
  1002. this.Ultcmb_RECEIVE_TYPE.TabIndex = 133;
  1003. //
  1004. // Ultcmb_BATCH_FLAG
  1005. //
  1006. this.Ultcmb_BATCH_FLAG.DisplayStyle = Infragistics.Win.EmbeddableElementDisplayStyle.Office2007;
  1007. this.Ultcmb_BATCH_FLAG.DropDownStyle = Infragistics.Win.DropDownStyle.DropDownList;
  1008. valueListItem53.DataValue = "0";
  1009. valueListItem53.DisplayText = "否";
  1010. valueListItem54.CheckState = System.Windows.Forms.CheckState.Checked;
  1011. valueListItem54.DataValue = "1";
  1012. valueListItem54.DisplayText = "是";
  1013. this.Ultcmb_BATCH_FLAG.Items.AddRange(new Infragistics.Win.ValueListItem[] {
  1014. valueListItem53,
  1015. valueListItem54});
  1016. this.Ultcmb_BATCH_FLAG.Location = new System.Drawing.Point(124, 65);
  1017. this.Ultcmb_BATCH_FLAG.Margin = new System.Windows.Forms.Padding(4);
  1018. this.Ultcmb_BATCH_FLAG.Name = "Ultcmb_BATCH_FLAG";
  1019. this.Ultcmb_BATCH_FLAG.Size = new System.Drawing.Size(189, 24);
  1020. this.Ultcmb_BATCH_FLAG.TabIndex = 132;
  1021. //
  1022. // Ultcmb_PUR_STANDARDS
  1023. //
  1024. this.Ultcmb_PUR_STANDARDS.DisplayStyle = Infragistics.Win.EmbeddableElementDisplayStyle.Office2007;
  1025. this.Ultcmb_PUR_STANDARDS.DropDownStyle = Infragistics.Win.DropDownStyle.DropDownList;
  1026. valueListItem52.CheckState = System.Windows.Forms.CheckState.Checked;
  1027. valueListItem52.DataValue = "1";
  1028. valueListItem52.DisplayText = "国标";
  1029. valueListItem1.DataValue = "2";
  1030. valueListItem1.DisplayText = "行标";
  1031. this.Ultcmb_PUR_STANDARDS.Items.AddRange(new Infragistics.Win.ValueListItem[] {
  1032. valueListItem52,
  1033. valueListItem1});
  1034. this.Ultcmb_PUR_STANDARDS.Location = new System.Drawing.Point(1274, 172);
  1035. this.Ultcmb_PUR_STANDARDS.Margin = new System.Windows.Forms.Padding(4);
  1036. this.Ultcmb_PUR_STANDARDS.Name = "Ultcmb_PUR_STANDARDS";
  1037. this.Ultcmb_PUR_STANDARDS.Size = new System.Drawing.Size(24, 24);
  1038. this.Ultcmb_PUR_STANDARDS.TabIndex = 131;
  1039. this.Ultcmb_PUR_STANDARDS.Visible = false;
  1040. //
  1041. // Ultcmb_INV_WASTE_FAC_UOM
  1042. //
  1043. this.Ultcmb_INV_WASTE_FAC_UOM.DisplayStyle = Infragistics.Win.EmbeddableElementDisplayStyle.Office2007;
  1044. this.Ultcmb_INV_WASTE_FAC_UOM.DropDownStyle = Infragistics.Win.DropDownStyle.DropDownList;
  1045. valueListItem55.DataValue = "1";
  1046. valueListItem55.DisplayText = "日";
  1047. valueListItem56.DataValue = "2";
  1048. valueListItem56.DisplayText = "月";
  1049. valueListItem57.DataValue = "3";
  1050. valueListItem57.DisplayText = "年";
  1051. this.Ultcmb_INV_WASTE_FAC_UOM.Items.AddRange(new Infragistics.Win.ValueListItem[] {
  1052. valueListItem55,
  1053. valueListItem56,
  1054. valueListItem57});
  1055. this.Ultcmb_INV_WASTE_FAC_UOM.Location = new System.Drawing.Point(1322, 173);
  1056. this.Ultcmb_INV_WASTE_FAC_UOM.Margin = new System.Windows.Forms.Padding(4);
  1057. this.Ultcmb_INV_WASTE_FAC_UOM.Name = "Ultcmb_INV_WASTE_FAC_UOM";
  1058. this.Ultcmb_INV_WASTE_FAC_UOM.Size = new System.Drawing.Size(29, 24);
  1059. this.Ultcmb_INV_WASTE_FAC_UOM.TabIndex = 130;
  1060. this.Ultcmb_INV_WASTE_FAC_UOM.Visible = false;
  1061. //
  1062. // Ultcmb_METERING_FLAG
  1063. //
  1064. this.Ultcmb_METERING_FLAG.DisplayStyle = Infragistics.Win.EmbeddableElementDisplayStyle.Office2007;
  1065. this.Ultcmb_METERING_FLAG.DropDownStyle = Infragistics.Win.DropDownStyle.DropDownList;
  1066. valueListItem20.DataValue = "0";
  1067. valueListItem20.DisplayText = "否";
  1068. valueListItem21.CheckState = System.Windows.Forms.CheckState.Checked;
  1069. valueListItem21.DataValue = "1";
  1070. valueListItem21.DisplayText = "是";
  1071. this.Ultcmb_METERING_FLAG.Items.AddRange(new Infragistics.Win.ValueListItem[] {
  1072. valueListItem20,
  1073. valueListItem21});
  1074. this.Ultcmb_METERING_FLAG.Location = new System.Drawing.Point(435, 65);
  1075. this.Ultcmb_METERING_FLAG.Margin = new System.Windows.Forms.Padding(4);
  1076. this.Ultcmb_METERING_FLAG.Name = "Ultcmb_METERING_FLAG";
  1077. this.Ultcmb_METERING_FLAG.Size = new System.Drawing.Size(189, 24);
  1078. this.Ultcmb_METERING_FLAG.TabIndex = 128;
  1079. //
  1080. // Ultcmb_PRICE_TYPE
  1081. //
  1082. this.Ultcmb_PRICE_TYPE.DisplayStyle = Infragistics.Win.EmbeddableElementDisplayStyle.Office2007;
  1083. this.Ultcmb_PRICE_TYPE.DropDownStyle = Infragistics.Win.DropDownStyle.DropDownList;
  1084. valueListItem32.CheckState = System.Windows.Forms.CheckState.Checked;
  1085. valueListItem32.DataValue = "1";
  1086. valueListItem32.DisplayText = "计划价";
  1087. valueListItem33.DataValue = "2";
  1088. valueListItem33.DisplayText = "批次计价";
  1089. valueListItem34.DataValue = "3";
  1090. valueListItem34.DisplayText = "实时移动平均价";
  1091. valueListItem35.DataValue = "4";
  1092. valueListItem35.DisplayText = "月末移动平均价";
  1093. this.Ultcmb_PRICE_TYPE.Items.AddRange(new Infragistics.Win.ValueListItem[] {
  1094. valueListItem32,
  1095. valueListItem33,
  1096. valueListItem34,
  1097. valueListItem35});
  1098. this.Ultcmb_PRICE_TYPE.Location = new System.Drawing.Point(1367, 5);
  1099. this.Ultcmb_PRICE_TYPE.Margin = new System.Windows.Forms.Padding(4);
  1100. this.Ultcmb_PRICE_TYPE.Name = "Ultcmb_PRICE_TYPE";
  1101. this.Ultcmb_PRICE_TYPE.Size = new System.Drawing.Size(189, 24);
  1102. this.Ultcmb_PRICE_TYPE.TabIndex = 127;
  1103. //
  1104. // Ultcmb_CURRENCY_CODE
  1105. //
  1106. this.Ultcmb_CURRENCY_CODE.DisplayStyle = Infragistics.Win.EmbeddableElementDisplayStyle.Office2007;
  1107. this.Ultcmb_CURRENCY_CODE.DropDownStyle = Infragistics.Win.DropDownStyle.DropDownList;
  1108. valueListItem46.CheckState = System.Windows.Forms.CheckState.Checked;
  1109. valueListItem46.DataValue = "1";
  1110. valueListItem46.DisplayText = "人民币";
  1111. valueListItem47.CheckState = System.Windows.Forms.CheckState.Indeterminate;
  1112. valueListItem47.DataValue = "2";
  1113. valueListItem47.DisplayText = "美元";
  1114. this.Ultcmb_CURRENCY_CODE.Items.AddRange(new Infragistics.Win.ValueListItem[] {
  1115. valueListItem46,
  1116. valueListItem47});
  1117. this.Ultcmb_CURRENCY_CODE.Location = new System.Drawing.Point(435, 35);
  1118. this.Ultcmb_CURRENCY_CODE.Margin = new System.Windows.Forms.Padding(4);
  1119. this.Ultcmb_CURRENCY_CODE.Name = "Ultcmb_CURRENCY_CODE";
  1120. this.Ultcmb_CURRENCY_CODE.Size = new System.Drawing.Size(189, 24);
  1121. this.Ultcmb_CURRENCY_CODE.TabIndex = 126;
  1122. //
  1123. // Ultcmb_LIFE_CYCLE_UOM
  1124. //
  1125. this.Ultcmb_LIFE_CYCLE_UOM.DisplayStyle = Infragistics.Win.EmbeddableElementDisplayStyle.Office2007;
  1126. this.Ultcmb_LIFE_CYCLE_UOM.DropDownStyle = Infragistics.Win.DropDownStyle.DropDownList;
  1127. valueListItem10.DataValue = "0";
  1128. valueListItem10.DisplayText = "日";
  1129. valueListItem13.DataValue = "1";
  1130. valueListItem13.DisplayText = "月";
  1131. valueListItem14.DataValue = "2";
  1132. valueListItem14.DisplayText = "年";
  1133. this.Ultcmb_LIFE_CYCLE_UOM.Items.AddRange(new Infragistics.Win.ValueListItem[] {
  1134. valueListItem10,
  1135. valueListItem13,
  1136. valueListItem14});
  1137. this.Ultcmb_LIFE_CYCLE_UOM.Location = new System.Drawing.Point(568, 124);
  1138. this.Ultcmb_LIFE_CYCLE_UOM.Margin = new System.Windows.Forms.Padding(4);
  1139. this.Ultcmb_LIFE_CYCLE_UOM.Name = "Ultcmb_LIFE_CYCLE_UOM";
  1140. this.Ultcmb_LIFE_CYCLE_UOM.Size = new System.Drawing.Size(56, 24);
  1141. this.Ultcmb_LIFE_CYCLE_UOM.TabIndex = 125;
  1142. //
  1143. // label25
  1144. //
  1145. this.label25.BackColor = System.Drawing.SystemColors.Highlight;
  1146. this.label25.Location = new System.Drawing.Point(941, 5);
  1147. this.label25.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
  1148. this.label25.Name = "label25";
  1149. this.label25.Size = new System.Drawing.Size(115, 26);
  1150. this.label25.TabIndex = 121;
  1151. this.label25.Text = "单 耗";
  1152. this.label25.TextAlign = System.Drawing.ContentAlignment.MiddleRight;
  1153. //
  1154. // label27
  1155. //
  1156. this.label27.BackColor = System.Drawing.SystemColors.Highlight;
  1157. this.label27.Location = new System.Drawing.Point(1299, 173);
  1158. this.label27.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
  1159. this.label27.Name = "label27";
  1160. this.label27.Size = new System.Drawing.Size(20, 26);
  1161. this.label27.TabIndex = 120;
  1162. this.label27.Text = "单 耗 单 位";
  1163. this.label27.TextAlign = System.Drawing.ContentAlignment.MiddleRight;
  1164. this.label27.Visible = false;
  1165. //
  1166. // txt_PUR_STANDARDS_CODE
  1167. //
  1168. this.txt_PUR_STANDARDS_CODE.Location = new System.Drawing.Point(1343, 149);
  1169. this.txt_PUR_STANDARDS_CODE.Margin = new System.Windows.Forms.Padding(4);
  1170. this.txt_PUR_STANDARDS_CODE.Name = "txt_PUR_STANDARDS_CODE";
  1171. this.txt_PUR_STANDARDS_CODE.Size = new System.Drawing.Size(13, 25);
  1172. this.txt_PUR_STANDARDS_CODE.TabIndex = 119;
  1173. this.txt_PUR_STANDARDS_CODE.Visible = false;
  1174. //
  1175. // label28
  1176. //
  1177. this.label28.AutoSize = true;
  1178. this.label28.Location = new System.Drawing.Point(1187, 149);
  1179. this.label28.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
  1180. this.label28.Name = "label28";
  1181. this.label28.Size = new System.Drawing.Size(97, 15);
  1182. this.label28.TabIndex = 118;
  1183. this.label28.Text = "采购标准编号";
  1184. this.label28.Visible = false;
  1185. //
  1186. // label29
  1187. //
  1188. this.label29.AutoSize = true;
  1189. this.label29.Location = new System.Drawing.Point(1202, 177);
  1190. this.label29.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
  1191. this.label29.Name = "label29";
  1192. this.label29.Size = new System.Drawing.Size(67, 15);
  1193. this.label29.TabIndex = 117;
  1194. this.label29.Text = "采购标准";
  1195. this.label29.Visible = false;
  1196. //
  1197. // label30
  1198. //
  1199. this.label30.BackColor = System.Drawing.SystemColors.Highlight;
  1200. this.label30.Location = new System.Drawing.Point(7, 65);
  1201. this.label30.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
  1202. this.label30.Name = "label30";
  1203. this.label30.Size = new System.Drawing.Size(115, 26);
  1204. this.label30.TabIndex = 116;
  1205. this.label30.Text = "是否批次控制";
  1206. this.label30.TextAlign = System.Drawing.ContentAlignment.MiddleRight;
  1207. //
  1208. // label19
  1209. //
  1210. this.label19.BackColor = System.Drawing.SystemColors.Highlight;
  1211. this.label19.Location = new System.Drawing.Point(7, 95);
  1212. this.label19.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
  1213. this.label19.Name = "label19";
  1214. this.label19.Size = new System.Drawing.Size(115, 26);
  1215. this.label19.TabIndex = 115;
  1216. this.label19.Text = "收 货 方 式";
  1217. this.label19.TextAlign = System.Drawing.ContentAlignment.MiddleRight;
  1218. //
  1219. // txt_MIN_STOCK
  1220. //
  1221. this.txt_MIN_STOCK.Location = new System.Drawing.Point(1059, 65);
  1222. this.txt_MIN_STOCK.Margin = new System.Windows.Forms.Padding(4);
  1223. this.txt_MIN_STOCK.Name = "txt_MIN_STOCK";
  1224. this.txt_MIN_STOCK.Size = new System.Drawing.Size(188, 25);
  1225. this.txt_MIN_STOCK.TabIndex = 114;
  1226. //
  1227. // label20
  1228. //
  1229. this.label20.BackColor = System.Drawing.SystemColors.Highlight;
  1230. this.label20.Location = new System.Drawing.Point(941, 65);
  1231. this.label20.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
  1232. this.label20.Name = "label20";
  1233. this.label20.Size = new System.Drawing.Size(115, 26);
  1234. this.label20.TabIndex = 113;
  1235. this.label20.Text = "最小库存预警";
  1236. this.label20.TextAlign = System.Drawing.ContentAlignment.MiddleRight;
  1237. //
  1238. // txt_MAX_STOCK
  1239. //
  1240. this.txt_MAX_STOCK.Location = new System.Drawing.Point(435, 95);
  1241. this.txt_MAX_STOCK.Margin = new System.Windows.Forms.Padding(4);
  1242. this.txt_MAX_STOCK.Name = "txt_MAX_STOCK";
  1243. this.txt_MAX_STOCK.Size = new System.Drawing.Size(188, 25);
  1244. this.txt_MAX_STOCK.TabIndex = 112;
  1245. //
  1246. // label21
  1247. //
  1248. this.label21.BackColor = System.Drawing.SystemColors.Highlight;
  1249. this.label21.Location = new System.Drawing.Point(317, 95);
  1250. this.label21.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
  1251. this.label21.Name = "label21";
  1252. this.label21.Size = new System.Drawing.Size(115, 26);
  1253. this.label21.TabIndex = 111;
  1254. this.label21.Text = "最大库存预警";
  1255. this.label21.TextAlign = System.Drawing.ContentAlignment.MiddleRight;
  1256. //
  1257. // txt_LEAD_TIME
  1258. //
  1259. this.txt_LEAD_TIME.Location = new System.Drawing.Point(124, 35);
  1260. this.txt_LEAD_TIME.Margin = new System.Windows.Forms.Padding(4);
  1261. this.txt_LEAD_TIME.Name = "txt_LEAD_TIME";
  1262. this.txt_LEAD_TIME.Size = new System.Drawing.Size(155, 25);
  1263. this.txt_LEAD_TIME.TabIndex = 110;
  1264. //
  1265. // txt_INV_WASTE_FAC
  1266. //
  1267. this.txt_INV_WASTE_FAC.Location = new System.Drawing.Point(1059, 5);
  1268. this.txt_INV_WASTE_FAC.Margin = new System.Windows.Forms.Padding(4);
  1269. this.txt_INV_WASTE_FAC.Name = "txt_INV_WASTE_FAC";
  1270. this.txt_INV_WASTE_FAC.Size = new System.Drawing.Size(188, 25);
  1271. this.txt_INV_WASTE_FAC.TabIndex = 109;
  1272. //
  1273. // label23
  1274. //
  1275. this.label23.BackColor = System.Drawing.SystemColors.Highlight;
  1276. this.label23.Location = new System.Drawing.Point(317, 65);
  1277. this.label23.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
  1278. this.label23.Name = "label23";
  1279. this.label23.Size = new System.Drawing.Size(115, 26);
  1280. this.label23.TabIndex = 108;
  1281. this.label23.Text = "是 否 过 磅";
  1282. this.label23.TextAlign = System.Drawing.ContentAlignment.MiddleRight;
  1283. //
  1284. // label24
  1285. //
  1286. this.label24.BackColor = System.Drawing.SystemColors.Highlight;
  1287. this.label24.Location = new System.Drawing.Point(7, 35);
  1288. this.label24.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
  1289. this.label24.Name = "label24";
  1290. this.label24.Size = new System.Drawing.Size(115, 26);
  1291. this.label24.TabIndex = 107;
  1292. this.label24.Text = "采购提前时间";
  1293. this.label24.TextAlign = System.Drawing.ContentAlignment.MiddleRight;
  1294. //
  1295. // txt_LIFE_CYCLE
  1296. //
  1297. this.txt_LIFE_CYCLE.Location = new System.Drawing.Point(435, 124);
  1298. this.txt_LIFE_CYCLE.Margin = new System.Windows.Forms.Padding(4);
  1299. this.txt_LIFE_CYCLE.Name = "txt_LIFE_CYCLE";
  1300. this.txt_LIFE_CYCLE.Size = new System.Drawing.Size(124, 25);
  1301. this.txt_LIFE_CYCLE.TabIndex = 106;
  1302. //
  1303. // label18
  1304. //
  1305. this.label18.BackColor = System.Drawing.SystemColors.Highlight;
  1306. this.label18.Location = new System.Drawing.Point(317, 124);
  1307. this.label18.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
  1308. this.label18.Name = "label18";
  1309. this.label18.Size = new System.Drawing.Size(115, 26);
  1310. this.label18.TabIndex = 105;
  1311. this.label18.Text = "有 效 期";
  1312. this.label18.TextAlign = System.Drawing.ContentAlignment.MiddleRight;
  1313. //
  1314. // txt_MIN_QTY
  1315. //
  1316. this.txt_MIN_QTY.Location = new System.Drawing.Point(1118, 107);
  1317. this.txt_MIN_QTY.Margin = new System.Windows.Forms.Padding(4);
  1318. this.txt_MIN_QTY.Name = "txt_MIN_QTY";
  1319. this.txt_MIN_QTY.Size = new System.Drawing.Size(12, 25);
  1320. this.txt_MIN_QTY.TabIndex = 104;
  1321. this.txt_MIN_QTY.Visible = false;
  1322. //
  1323. // label17
  1324. //
  1325. this.label17.BackColor = System.Drawing.SystemColors.Highlight;
  1326. this.label17.Location = new System.Drawing.Point(1103, 107);
  1327. this.label17.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
  1328. this.label17.Name = "label17";
  1329. this.label17.Size = new System.Drawing.Size(13, 26);
  1330. this.label17.TabIndex = 103;
  1331. this.label17.Text = "最小采购数量";
  1332. this.label17.TextAlign = System.Drawing.ContentAlignment.MiddleRight;
  1333. this.label17.Visible = false;
  1334. //
  1335. // txt_QTY_MULTIPLE
  1336. //
  1337. this.txt_QTY_MULTIPLE.Location = new System.Drawing.Point(747, 65);
  1338. this.txt_QTY_MULTIPLE.Margin = new System.Windows.Forms.Padding(4);
  1339. this.txt_QTY_MULTIPLE.Name = "txt_QTY_MULTIPLE";
  1340. this.txt_QTY_MULTIPLE.Size = new System.Drawing.Size(188, 25);
  1341. this.txt_QTY_MULTIPLE.TabIndex = 102;
  1342. //
  1343. // label16
  1344. //
  1345. this.label16.BackColor = System.Drawing.SystemColors.Highlight;
  1346. this.label16.Location = new System.Drawing.Point(629, 65);
  1347. this.label16.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
  1348. this.label16.Name = "label16";
  1349. this.label16.Size = new System.Drawing.Size(115, 26);
  1350. this.label16.TabIndex = 101;
  1351. this.label16.Text = "批 量 数";
  1352. this.label16.TextAlign = System.Drawing.ContentAlignment.MiddleRight;
  1353. //
  1354. // label15
  1355. //
  1356. this.label15.BackColor = System.Drawing.SystemColors.Highlight;
  1357. this.label15.Location = new System.Drawing.Point(629, 35);
  1358. this.label15.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
  1359. this.label15.Name = "label15";
  1360. this.label15.Size = new System.Drawing.Size(115, 26);
  1361. this.label15.TabIndex = 100;
  1362. this.label15.Text = "库 存 单 位";
  1363. this.label15.TextAlign = System.Drawing.ContentAlignment.MiddleRight;
  1364. //
  1365. // txt_BUG_PRICE
  1366. //
  1367. this.txt_BUG_PRICE.Location = new System.Drawing.Point(1059, 35);
  1368. this.txt_BUG_PRICE.Margin = new System.Windows.Forms.Padding(4);
  1369. this.txt_BUG_PRICE.Name = "txt_BUG_PRICE";
  1370. this.txt_BUG_PRICE.Size = new System.Drawing.Size(188, 25);
  1371. this.txt_BUG_PRICE.TabIndex = 99;
  1372. //
  1373. // label14
  1374. //
  1375. this.label14.BackColor = System.Drawing.SystemColors.Highlight;
  1376. this.label14.Location = new System.Drawing.Point(1249, 5);
  1377. this.label14.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
  1378. this.label14.Name = "label14";
  1379. this.label14.Size = new System.Drawing.Size(115, 26);
  1380. this.label14.TabIndex = 98;
  1381. this.label14.Text = "计 价 类 型";
  1382. this.label14.TextAlign = System.Drawing.ContentAlignment.MiddleRight;
  1383. //
  1384. // txt_LAST_PRICE
  1385. //
  1386. this.txt_LAST_PRICE.Location = new System.Drawing.Point(1187, 173);
  1387. this.txt_LAST_PRICE.Margin = new System.Windows.Forms.Padding(4);
  1388. this.txt_LAST_PRICE.Name = "txt_LAST_PRICE";
  1389. this.txt_LAST_PRICE.Size = new System.Drawing.Size(12, 25);
  1390. this.txt_LAST_PRICE.TabIndex = 97;
  1391. this.txt_LAST_PRICE.TextAlign = System.Windows.Forms.HorizontalAlignment.Right;
  1392. this.txt_LAST_PRICE.Visible = false;
  1393. //
  1394. // label13
  1395. //
  1396. this.label13.BackColor = System.Drawing.SystemColors.Highlight;
  1397. this.label13.Location = new System.Drawing.Point(1226, 178);
  1398. this.label13.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
  1399. this.label13.Name = "label13";
  1400. this.label13.Size = new System.Drawing.Size(14, 26);
  1401. this.label13.TabIndex = 96;
  1402. this.label13.Text = "最近采购价";
  1403. this.label13.TextAlign = System.Drawing.ContentAlignment.MiddleRight;
  1404. this.label13.Visible = false;
  1405. //
  1406. // label12
  1407. //
  1408. this.label12.BackColor = System.Drawing.SystemColors.Highlight;
  1409. this.label12.Location = new System.Drawing.Point(941, 35);
  1410. this.label12.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
  1411. this.label12.Name = "label12";
  1412. this.label12.Size = new System.Drawing.Size(115, 26);
  1413. this.label12.TabIndex = 95;
  1414. this.label12.Text = "计 划 价";
  1415. this.label12.TextAlign = System.Drawing.ContentAlignment.MiddleRight;
  1416. //
  1417. // label11
  1418. //
  1419. this.label11.AutoSize = true;
  1420. this.label11.Location = new System.Drawing.Point(1202, 124);
  1421. this.label11.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
  1422. this.label11.Name = "label11";
  1423. this.label11.Size = new System.Drawing.Size(67, 15);
  1424. this.label11.TabIndex = 93;
  1425. this.label11.Text = "型号规格";
  1426. this.label11.Visible = false;
  1427. //
  1428. // txt_MONTH_END_AVG_PRICE
  1429. //
  1430. this.txt_MONTH_END_AVG_PRICE.Location = new System.Drawing.Point(1266, 116);
  1431. this.txt_MONTH_END_AVG_PRICE.Margin = new System.Windows.Forms.Padding(4);
  1432. this.txt_MONTH_END_AVG_PRICE.Name = "txt_MONTH_END_AVG_PRICE";
  1433. this.txt_MONTH_END_AVG_PRICE.Size = new System.Drawing.Size(27, 25);
  1434. this.txt_MONTH_END_AVG_PRICE.TabIndex = 92;
  1435. this.txt_MONTH_END_AVG_PRICE.Visible = false;
  1436. //
  1437. // label10
  1438. //
  1439. this.label10.AutoSize = true;
  1440. this.label10.Location = new System.Drawing.Point(1154, 120);
  1441. this.label10.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
  1442. this.label10.Name = "label10";
  1443. this.label10.Size = new System.Drawing.Size(112, 15);
  1444. this.label10.TabIndex = 91;
  1445. this.label10.Text = "月末移动平均价";
  1446. this.label10.Visible = false;
  1447. //
  1448. // label9
  1449. //
  1450. this.label9.BackColor = System.Drawing.SystemColors.Highlight;
  1451. this.label9.Location = new System.Drawing.Point(317, 35);
  1452. this.label9.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
  1453. this.label9.Name = "label9";
  1454. this.label9.Size = new System.Drawing.Size(115, 26);
  1455. this.label9.TabIndex = 90;
  1456. this.label9.Text = "币 种 代 码";
  1457. this.label9.TextAlign = System.Drawing.ContentAlignment.MiddleRight;
  1458. //
  1459. // txt_ITEM_NAME
  1460. //
  1461. this.txt_ITEM_NAME.Location = new System.Drawing.Point(435, 5);
  1462. this.txt_ITEM_NAME.Margin = new System.Windows.Forms.Padding(4);
  1463. this.txt_ITEM_NAME.Name = "txt_ITEM_NAME";
  1464. this.txt_ITEM_NAME.Size = new System.Drawing.Size(188, 25);
  1465. this.txt_ITEM_NAME.TabIndex = 89;
  1466. //
  1467. // label8
  1468. //
  1469. this.label8.BackColor = System.Drawing.SystemColors.Highlight;
  1470. this.label8.Location = new System.Drawing.Point(317, 5);
  1471. this.label8.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
  1472. this.label8.Name = "label8";
  1473. this.label8.Size = new System.Drawing.Size(115, 26);
  1474. this.label8.TabIndex = 88;
  1475. this.label8.Text = "物 料 名 称";
  1476. this.label8.TextAlign = System.Drawing.ContentAlignment.MiddleRight;
  1477. //
  1478. // txt_ITEM_DESC_E
  1479. //
  1480. this.txt_ITEM_DESC_E.Location = new System.Drawing.Point(1280, 90);
  1481. this.txt_ITEM_DESC_E.Margin = new System.Windows.Forms.Padding(4);
  1482. this.txt_ITEM_DESC_E.Name = "txt_ITEM_DESC_E";
  1483. this.txt_ITEM_DESC_E.Size = new System.Drawing.Size(21, 25);
  1484. this.txt_ITEM_DESC_E.TabIndex = 87;
  1485. this.txt_ITEM_DESC_E.Visible = false;
  1486. //
  1487. // label7
  1488. //
  1489. this.label7.AutoSize = true;
  1490. this.label7.Location = new System.Drawing.Point(1170, 96);
  1491. this.label7.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
  1492. this.label7.Name = "label7";
  1493. this.label7.Size = new System.Drawing.Size(97, 15);
  1494. this.label7.TabIndex = 86;
  1495. this.label7.Text = "物料英文名称";
  1496. this.label7.Visible = false;
  1497. //
  1498. // txt_ITEM_DESC
  1499. //
  1500. this.txt_ITEM_DESC.Location = new System.Drawing.Point(747, 5);
  1501. this.txt_ITEM_DESC.Margin = new System.Windows.Forms.Padding(4);
  1502. this.txt_ITEM_DESC.Multiline = true;
  1503. this.txt_ITEM_DESC.Name = "txt_ITEM_DESC";
  1504. this.txt_ITEM_DESC.Size = new System.Drawing.Size(188, 25);
  1505. this.txt_ITEM_DESC.TabIndex = 85;
  1506. //
  1507. // label6
  1508. //
  1509. this.label6.BackColor = System.Drawing.SystemColors.Highlight;
  1510. this.label6.Location = new System.Drawing.Point(629, 5);
  1511. this.label6.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
  1512. this.label6.Name = "label6";
  1513. this.label6.Size = new System.Drawing.Size(115, 26);
  1514. this.label6.TabIndex = 84;
  1515. this.label6.Text = "物 料 描 述";
  1516. this.label6.TextAlign = System.Drawing.ContentAlignment.MiddleRight;
  1517. //
  1518. // txt_ITEM_MODEL
  1519. //
  1520. this.txt_ITEM_MODEL.Location = new System.Drawing.Point(1346, 72);
  1521. this.txt_ITEM_MODEL.Margin = new System.Windows.Forms.Padding(4);
  1522. this.txt_ITEM_MODEL.Name = "txt_ITEM_MODEL";
  1523. this.txt_ITEM_MODEL.Size = new System.Drawing.Size(13, 25);
  1524. this.txt_ITEM_MODEL.TabIndex = 83;
  1525. this.txt_ITEM_MODEL.Visible = false;
  1526. //
  1527. // label5
  1528. //
  1529. this.label5.AutoSize = true;
  1530. this.label5.Location = new System.Drawing.Point(1219, 72);
  1531. this.label5.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
  1532. this.label5.Name = "label5";
  1533. this.label5.Size = new System.Drawing.Size(67, 15);
  1534. this.label5.TabIndex = 82;
  1535. this.label5.Text = "物料材质";
  1536. this.label5.Visible = false;
  1537. //
  1538. // txt_ITEM_SPEC
  1539. //
  1540. this.txt_ITEM_SPEC.Location = new System.Drawing.Point(1330, 124);
  1541. this.txt_ITEM_SPEC.Margin = new System.Windows.Forms.Padding(4);
  1542. this.txt_ITEM_SPEC.Name = "txt_ITEM_SPEC";
  1543. this.txt_ITEM_SPEC.Size = new System.Drawing.Size(25, 25);
  1544. this.txt_ITEM_SPEC.TabIndex = 80;
  1545. this.txt_ITEM_SPEC.Visible = false;
  1546. //
  1547. // txt_ITEM_CODE
  1548. //
  1549. this.txt_ITEM_CODE.Location = new System.Drawing.Point(124, 5);
  1550. this.txt_ITEM_CODE.Margin = new System.Windows.Forms.Padding(4);
  1551. this.txt_ITEM_CODE.Name = "txt_ITEM_CODE";
  1552. this.txt_ITEM_CODE.Size = new System.Drawing.Size(188, 25);
  1553. this.txt_ITEM_CODE.TabIndex = 77;
  1554. //
  1555. // label1
  1556. //
  1557. this.label1.BackColor = System.Drawing.SystemColors.Highlight;
  1558. this.label1.Location = new System.Drawing.Point(7, 5);
  1559. this.label1.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
  1560. this.label1.Name = "label1";
  1561. this.label1.Size = new System.Drawing.Size(115, 26);
  1562. this.label1.TabIndex = 76;
  1563. this.label1.Text = "物 料 编 码";
  1564. this.label1.TextAlign = System.Drawing.ContentAlignment.MiddleRight;
  1565. //
  1566. // ultraTabPageControl2
  1567. //
  1568. this.ultraTabPageControl2.Controls.Add(this.label81);
  1569. this.ultraTabPageControl2.Controls.Add(this.label82);
  1570. this.ultraTabPageControl2.Controls.Add(this.label80);
  1571. this.ultraTabPageControl2.Controls.Add(this.label79);
  1572. this.ultraTabPageControl2.Controls.Add(this.txt_DELVRY_RANGE_MIN2);
  1573. this.ultraTabPageControl2.Controls.Add(this.txt_DELVRY_RANGE_MAX2);
  1574. this.ultraTabPageControl2.Controls.Add(this.txt_delivery_type_2);
  1575. this.ultraTabPageControl2.Controls.Add(this.label78);
  1576. this.ultraTabPageControl2.Controls.Add(this.txt_IS_DEFAULT);
  1577. this.ultraTabPageControl2.Controls.Add(this.label62);
  1578. this.ultraTabPageControl2.Controls.Add(this.txt_PLANNER_ROLE_NAME1);
  1579. this.ultraTabPageControl2.Controls.Add(this.txt_BUYER_ROLE_NAME1);
  1580. this.ultraTabPageControl2.Controls.Add(this.label31);
  1581. this.ultraTabPageControl2.Controls.Add(this.label42);
  1582. this.ultraTabPageControl2.Controls.Add(this.txt_SUPP_NAME);
  1583. this.ultraTabPageControl2.Controls.Add(this.label40);
  1584. this.ultraTabPageControl2.Controls.Add(this.txt_suppCode);
  1585. this.ultraTabPageControl2.Controls.Add(this.txt_JS);
  1586. this.ultraTabPageControl2.Controls.Add(this.label32);
  1587. this.ultraTabPageControl2.Controls.Add(this.txt_YWKS);
  1588. this.ultraTabPageControl2.Controls.Add(this.label33);
  1589. this.ultraTabPageControl2.Controls.Add(this.label34);
  1590. this.ultraTabPageControl2.Location = new System.Drawing.Point(-10000, -10000);
  1591. this.ultraTabPageControl2.Margin = new System.Windows.Forms.Padding(4);
  1592. this.ultraTabPageControl2.Name = "ultraTabPageControl2";
  1593. this.ultraTabPageControl2.Size = new System.Drawing.Size(1771, 161);
  1594. //
  1595. // label81
  1596. //
  1597. this.label81.BackColor = System.Drawing.SystemColors.Highlight;
  1598. this.label81.Location = new System.Drawing.Point(781, 36);
  1599. this.label81.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
  1600. this.label81.Name = "label81";
  1601. this.label81.Size = new System.Drawing.Size(21, 26);
  1602. this.label81.TabIndex = 172;
  1603. this.label81.Text = "%";
  1604. this.label81.TextAlign = System.Drawing.ContentAlignment.MiddleLeft;
  1605. this.label81.Visible = false;
  1606. //
  1607. // label82
  1608. //
  1609. this.label82.BackColor = System.Drawing.SystemColors.Highlight;
  1610. this.label82.Location = new System.Drawing.Point(781, 9);
  1611. this.label82.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
  1612. this.label82.Name = "label82";
  1613. this.label82.Size = new System.Drawing.Size(21, 26);
  1614. this.label82.TabIndex = 171;
  1615. this.label82.Text = "%";
  1616. this.label82.TextAlign = System.Drawing.ContentAlignment.MiddleLeft;
  1617. this.label82.Visible = false;
  1618. //
  1619. // label80
  1620. //
  1621. this.label80.AutoSize = true;
  1622. this.label80.Location = new System.Drawing.Point(481, 40);
  1623. this.label80.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
  1624. this.label80.Name = "label80";
  1625. this.label80.Size = new System.Drawing.Size(97, 15);
  1626. this.label80.TabIndex = 170;
  1627. this.label80.Text = "交货量差下限";
  1628. //
  1629. // label79
  1630. //
  1631. this.label79.AutoSize = true;
  1632. this.label79.Location = new System.Drawing.Point(481, 12);
  1633. this.label79.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
  1634. this.label79.Name = "label79";
  1635. this.label79.Size = new System.Drawing.Size(97, 15);
  1636. this.label79.TabIndex = 169;
  1637. this.label79.Text = "交货量差上限";
  1638. //
  1639. // txt_DELVRY_RANGE_MIN2
  1640. //
  1641. this.txt_DELVRY_RANGE_MIN2.Location = new System.Drawing.Point(591, 35);
  1642. this.txt_DELVRY_RANGE_MIN2.Margin = new System.Windows.Forms.Padding(4);
  1643. this.txt_DELVRY_RANGE_MIN2.Name = "txt_DELVRY_RANGE_MIN2";
  1644. this.txt_DELVRY_RANGE_MIN2.Nullable = true;
  1645. this.txt_DELVRY_RANGE_MIN2.Size = new System.Drawing.Size(189, 24);
  1646. this.txt_DELVRY_RANGE_MIN2.TabIndex = 168;
  1647. //
  1648. // txt_DELVRY_RANGE_MAX2
  1649. //
  1650. this.txt_DELVRY_RANGE_MAX2.Location = new System.Drawing.Point(591, 8);
  1651. this.txt_DELVRY_RANGE_MAX2.Margin = new System.Windows.Forms.Padding(4);
  1652. this.txt_DELVRY_RANGE_MAX2.Name = "txt_DELVRY_RANGE_MAX2";
  1653. this.txt_DELVRY_RANGE_MAX2.Nullable = true;
  1654. this.txt_DELVRY_RANGE_MAX2.Size = new System.Drawing.Size(189, 24);
  1655. this.txt_DELVRY_RANGE_MAX2.TabIndex = 167;
  1656. //
  1657. // txt_delivery_type_2
  1658. //
  1659. this.txt_delivery_type_2.DisplayStyle = Infragistics.Win.EmbeddableElementDisplayStyle.Office2007;
  1660. this.txt_delivery_type_2.DropDownStyle = Infragistics.Win.DropDownStyle.DropDownList;
  1661. valueListItem6.DataValue = "0";
  1662. valueListItem6.DisplayText = "不限制";
  1663. valueListItem7.DataValue = "1";
  1664. valueListItem7.DisplayText = "绝对值";
  1665. valueListItem26.DataValue = "2";
  1666. valueListItem26.DisplayText = "百分比";
  1667. valueListItem27.DataValue = "3";
  1668. valueListItem27.DisplayText = "不允许";
  1669. this.txt_delivery_type_2.Items.AddRange(new Infragistics.Win.ValueListItem[] {
  1670. valueListItem6,
  1671. valueListItem7,
  1672. valueListItem26,
  1673. valueListItem27});
  1674. this.txt_delivery_type_2.Location = new System.Drawing.Point(135, 98);
  1675. this.txt_delivery_type_2.Margin = new System.Windows.Forms.Padding(4);
  1676. this.txt_delivery_type_2.Name = "txt_delivery_type_2";
  1677. this.txt_delivery_type_2.Size = new System.Drawing.Size(273, 24);
  1678. this.txt_delivery_type_2.TabIndex = 160;
  1679. this.txt_delivery_type_2.ValueChanged += new System.EventHandler(this.txt_delivery_type_2_ValueChanged);
  1680. //
  1681. // label78
  1682. //
  1683. this.label78.AutoSize = true;
  1684. this.label78.Location = new System.Drawing.Point(29, 98);
  1685. this.label78.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
  1686. this.label78.Name = "label78";
  1687. this.label78.Size = new System.Drawing.Size(97, 15);
  1688. this.label78.TabIndex = 159;
  1689. this.label78.Text = "交货量差方式";
  1690. //
  1691. // txt_IS_DEFAULT
  1692. //
  1693. this.txt_IS_DEFAULT.DisplayStyle = Infragistics.Win.EmbeddableElementDisplayStyle.Office2007;
  1694. this.txt_IS_DEFAULT.DropDownStyle = Infragistics.Win.DropDownStyle.DropDownList;
  1695. valueListItem28.DataValue = "1";
  1696. valueListItem28.DisplayText = "是";
  1697. valueListItem29.DataValue = "0";
  1698. valueListItem29.DisplayText = "否";
  1699. this.txt_IS_DEFAULT.Items.AddRange(new Infragistics.Win.ValueListItem[] {
  1700. valueListItem28,
  1701. valueListItem29});
  1702. this.txt_IS_DEFAULT.Location = new System.Drawing.Point(135, 68);
  1703. this.txt_IS_DEFAULT.Margin = new System.Windows.Forms.Padding(4);
  1704. this.txt_IS_DEFAULT.Name = "txt_IS_DEFAULT";
  1705. this.txt_IS_DEFAULT.Size = new System.Drawing.Size(273, 24);
  1706. this.txt_IS_DEFAULT.TabIndex = 158;
  1707. //
  1708. // label62
  1709. //
  1710. this.label62.AutoSize = true;
  1711. this.label62.Location = new System.Drawing.Point(29, 72);
  1712. this.label62.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
  1713. this.label62.Name = "label62";
  1714. this.label62.Size = new System.Drawing.Size(97, 15);
  1715. this.label62.TabIndex = 157;
  1716. this.label62.Text = "是否主供应商";
  1717. //
  1718. // txt_PLANNER_ROLE_NAME1
  1719. //
  1720. appearance6.FontData.BoldAsString = "True";
  1721. appearance6.TextHAlignAsString = "Center";
  1722. appearance6.TextVAlignAsString = "Middle";
  1723. editorButton7.Appearance = appearance6;
  1724. editorButton7.Text = "+";
  1725. this.txt_PLANNER_ROLE_NAME1.ButtonsRight.Add(editorButton7);
  1726. this.txt_PLANNER_ROLE_NAME1.Location = new System.Drawing.Point(1093, 36);
  1727. this.txt_PLANNER_ROLE_NAME1.Margin = new System.Windows.Forms.Padding(4);
  1728. this.txt_PLANNER_ROLE_NAME1.Name = "txt_PLANNER_ROLE_NAME1";
  1729. this.txt_PLANNER_ROLE_NAME1.ReadOnly = true;
  1730. this.txt_PLANNER_ROLE_NAME1.Size = new System.Drawing.Size(273, 24);
  1731. this.txt_PLANNER_ROLE_NAME1.TabIndex = 150;
  1732. this.txt_PLANNER_ROLE_NAME1.Visible = false;
  1733. this.txt_PLANNER_ROLE_NAME1.EditorButtonClick += new Infragistics.Win.UltraWinEditors.EditorButtonEventHandler(this.txt_PLANNER_ROLE_ID_EditorButtonClick);
  1734. //
  1735. // txt_BUYER_ROLE_NAME1
  1736. //
  1737. appearance7.FontData.BoldAsString = "True";
  1738. appearance7.TextHAlignAsString = "Center";
  1739. appearance7.TextVAlignAsString = "Middle";
  1740. editorButton8.Appearance = appearance7;
  1741. editorButton8.Text = "+";
  1742. this.txt_BUYER_ROLE_NAME1.ButtonsRight.Add(editorButton8);
  1743. this.txt_BUYER_ROLE_NAME1.Location = new System.Drawing.Point(1093, 8);
  1744. this.txt_BUYER_ROLE_NAME1.Margin = new System.Windows.Forms.Padding(4);
  1745. this.txt_BUYER_ROLE_NAME1.Name = "txt_BUYER_ROLE_NAME1";
  1746. this.txt_BUYER_ROLE_NAME1.ReadOnly = true;
  1747. this.txt_BUYER_ROLE_NAME1.Size = new System.Drawing.Size(273, 24);
  1748. this.txt_BUYER_ROLE_NAME1.TabIndex = 149;
  1749. this.txt_BUYER_ROLE_NAME1.Visible = false;
  1750. this.txt_BUYER_ROLE_NAME1.EditorButtonClick += new Infragistics.Win.UltraWinEditors.EditorButtonEventHandler(this.txt_BUYER_ROLE_ID_EditorButtonClick);
  1751. //
  1752. // label31
  1753. //
  1754. this.label31.AutoSize = true;
  1755. this.label31.Location = new System.Drawing.Point(973, 41);
  1756. this.label31.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
  1757. this.label31.Name = "label31";
  1758. this.label31.Size = new System.Drawing.Size(112, 15);
  1759. this.label31.TabIndex = 148;
  1760. this.label31.Text = "计划员角色名称";
  1761. this.label31.Visible = false;
  1762. //
  1763. // label42
  1764. //
  1765. this.label42.AutoSize = true;
  1766. this.label42.Location = new System.Drawing.Point(972, 12);
  1767. this.label42.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
  1768. this.label42.Name = "label42";
  1769. this.label42.Size = new System.Drawing.Size(112, 15);
  1770. this.label42.TabIndex = 147;
  1771. this.label42.Text = "采购员角色名称";
  1772. this.label42.Visible = false;
  1773. //
  1774. // txt_SUPP_NAME
  1775. //
  1776. appearance1.FontData.BoldAsString = "True";
  1777. editorButton9.Appearance = appearance1;
  1778. editorButton9.Text = "+";
  1779. this.txt_SUPP_NAME.ButtonsRight.Add(editorButton9);
  1780. this.txt_SUPP_NAME.Location = new System.Drawing.Point(135, 9);
  1781. this.txt_SUPP_NAME.Margin = new System.Windows.Forms.Padding(4);
  1782. this.txt_SUPP_NAME.Name = "txt_SUPP_NAME";
  1783. this.txt_SUPP_NAME.ReadOnly = true;
  1784. this.txt_SUPP_NAME.Size = new System.Drawing.Size(273, 24);
  1785. this.txt_SUPP_NAME.TabIndex = 14;
  1786. this.txt_SUPP_NAME.EditorButtonClick += new Infragistics.Win.UltraWinEditors.EditorButtonEventHandler(this.txt_SUPP_NAME_EditorButtonClick);
  1787. //
  1788. // label40
  1789. //
  1790. this.label40.AutoSize = true;
  1791. this.label40.Location = new System.Drawing.Point(45, 42);
  1792. this.label40.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
  1793. this.label40.Name = "label40";
  1794. this.label40.Size = new System.Drawing.Size(82, 15);
  1795. this.label40.TabIndex = 13;
  1796. this.label40.Text = "供应商代码";
  1797. //
  1798. // txt_suppCode
  1799. //
  1800. this.txt_suppCode.Enabled = false;
  1801. this.txt_suppCode.Location = new System.Drawing.Point(135, 38);
  1802. this.txt_suppCode.Margin = new System.Windows.Forms.Padding(4);
  1803. this.txt_suppCode.Name = "txt_suppCode";
  1804. this.txt_suppCode.ReadOnly = true;
  1805. this.txt_suppCode.Size = new System.Drawing.Size(272, 25);
  1806. this.txt_suppCode.TabIndex = 12;
  1807. //
  1808. // txt_JS
  1809. //
  1810. this.txt_JS.Location = new System.Drawing.Point(945, 70);
  1811. this.txt_JS.Margin = new System.Windows.Forms.Padding(4);
  1812. this.txt_JS.Name = "txt_JS";
  1813. this.txt_JS.Size = new System.Drawing.Size(145, 25);
  1814. this.txt_JS.TabIndex = 11;
  1815. this.txt_JS.Visible = false;
  1816. //
  1817. // label32
  1818. //
  1819. this.label32.AutoSize = true;
  1820. this.label32.Location = new System.Drawing.Point(901, 74);
  1821. this.label32.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
  1822. this.label32.Name = "label32";
  1823. this.label32.Size = new System.Drawing.Size(37, 15);
  1824. this.label32.TabIndex = 10;
  1825. this.label32.Text = "角色";
  1826. this.label32.Visible = false;
  1827. //
  1828. // txt_YWKS
  1829. //
  1830. this.txt_YWKS.Location = new System.Drawing.Point(945, 99);
  1831. this.txt_YWKS.Margin = new System.Windows.Forms.Padding(4);
  1832. this.txt_YWKS.Name = "txt_YWKS";
  1833. this.txt_YWKS.Size = new System.Drawing.Size(145, 25);
  1834. this.txt_YWKS.TabIndex = 9;
  1835. this.txt_YWKS.Visible = false;
  1836. //
  1837. // label33
  1838. //
  1839. this.label33.AutoSize = true;
  1840. this.label33.Location = new System.Drawing.Point(872, 102);
  1841. this.label33.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
  1842. this.label33.Name = "label33";
  1843. this.label33.Size = new System.Drawing.Size(67, 15);
  1844. this.label33.TabIndex = 8;
  1845. this.label33.Text = "业务科室";
  1846. this.label33.Visible = false;
  1847. //
  1848. // label34
  1849. //
  1850. this.label34.AutoSize = true;
  1851. this.label34.Location = new System.Drawing.Point(76, 14);
  1852. this.label34.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
  1853. this.label34.Name = "label34";
  1854. this.label34.Size = new System.Drawing.Size(52, 15);
  1855. this.label34.TabIndex = 6;
  1856. this.label34.Text = "供应商";
  1857. //
  1858. // ultraTabPageControl3
  1859. //
  1860. this.ultraTabPageControl3.Controls.Add(this.txt_IsLevel);
  1861. this.ultraTabPageControl3.Controls.Add(this.label75);
  1862. this.ultraTabPageControl3.Controls.Add(this.txt_MatAttrClassName);
  1863. this.ultraTabPageControl3.Controls.Add(this.label67);
  1864. this.ultraTabPageControl3.Controls.Add(this.txt_MatAttrClass);
  1865. this.ultraTabPageControl3.Controls.Add(this.label68);
  1866. this.ultraTabPageControl3.Controls.Add(this.txt_ITEM_ATTR_CODE);
  1867. this.ultraTabPageControl3.Controls.Add(this.txt_ITEM_ATTR);
  1868. this.ultraTabPageControl3.Controls.Add(this.label60);
  1869. this.ultraTabPageControl3.Controls.Add(this.txt_IS_DEFAULT_ATTR);
  1870. this.ultraTabPageControl3.Controls.Add(this.label53);
  1871. this.ultraTabPageControl3.Controls.Add(this.txt_REMARK_ATTR);
  1872. this.ultraTabPageControl3.Controls.Add(this.label51);
  1873. this.ultraTabPageControl3.Controls.Add(this.txt_ORDER_NUM);
  1874. this.ultraTabPageControl3.Controls.Add(this.txt_item_Attr4);
  1875. this.ultraTabPageControl3.Controls.Add(this.label50);
  1876. this.ultraTabPageControl3.Controls.Add(this.txt_item_Attr3);
  1877. this.ultraTabPageControl3.Controls.Add(this.label49);
  1878. this.ultraTabPageControl3.Controls.Add(this.txt_item_Attr2);
  1879. this.ultraTabPageControl3.Controls.Add(this.label48);
  1880. this.ultraTabPageControl3.Controls.Add(this.txt_item_Attr1);
  1881. this.ultraTabPageControl3.Controls.Add(this.label47);
  1882. this.ultraTabPageControl3.Controls.Add(this.txt_ORDER_NUM11);
  1883. this.ultraTabPageControl3.Controls.Add(this.label37);
  1884. this.ultraTabPageControl3.Controls.Add(this.label38);
  1885. this.ultraTabPageControl3.Controls.Add(this.txt_ITEM_CODE2);
  1886. this.ultraTabPageControl3.Controls.Add(this.label39);
  1887. this.ultraTabPageControl3.Location = new System.Drawing.Point(-10000, -10000);
  1888. this.ultraTabPageControl3.Margin = new System.Windows.Forms.Padding(4);
  1889. this.ultraTabPageControl3.Name = "ultraTabPageControl3";
  1890. this.ultraTabPageControl3.Size = new System.Drawing.Size(1771, 161);
  1891. //
  1892. // txt_IsLevel
  1893. //
  1894. this.txt_IsLevel.DisplayStyle = Infragistics.Win.EmbeddableElementDisplayStyle.Office2007;
  1895. this.txt_IsLevel.DropDownStyle = Infragistics.Win.DropDownStyle.DropDownList;
  1896. valueListItem11.DataValue = "0";
  1897. valueListItem11.DisplayText = "否";
  1898. valueListItem12.DataValue = "1";
  1899. valueListItem12.DisplayText = "是";
  1900. this.txt_IsLevel.Items.AddRange(new Infragistics.Win.ValueListItem[] {
  1901. valueListItem11,
  1902. valueListItem12});
  1903. this.txt_IsLevel.Location = new System.Drawing.Point(372, 38);
  1904. this.txt_IsLevel.Margin = new System.Windows.Forms.Padding(4);
  1905. this.txt_IsLevel.Name = "txt_IsLevel";
  1906. this.txt_IsLevel.Size = new System.Drawing.Size(56, 24);
  1907. this.txt_IsLevel.TabIndex = 166;
  1908. //
  1909. // label75
  1910. //
  1911. this.label75.AutoSize = true;
  1912. this.label75.Location = new System.Drawing.Point(271, 42);
  1913. this.label75.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
  1914. this.label75.Name = "label75";
  1915. this.label75.Size = new System.Drawing.Size(97, 15);
  1916. this.label75.TabIndex = 165;
  1917. this.label75.Text = "是否判定等级";
  1918. //
  1919. // txt_MatAttrClassName
  1920. //
  1921. this.txt_MatAttrClassName.Location = new System.Drawing.Point(856, 31);
  1922. this.txt_MatAttrClassName.Margin = new System.Windows.Forms.Padding(4);
  1923. this.txt_MatAttrClassName.Name = "txt_MatAttrClassName";
  1924. this.txt_MatAttrClassName.Size = new System.Drawing.Size(169, 25);
  1925. this.txt_MatAttrClassName.TabIndex = 164;
  1926. this.txt_MatAttrClassName.Visible = false;
  1927. //
  1928. // label67
  1929. //
  1930. this.label67.AutoSize = true;
  1931. this.label67.Location = new System.Drawing.Point(745, 34);
  1932. this.label67.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
  1933. this.label67.Name = "label67";
  1934. this.label67.Size = new System.Drawing.Size(97, 15);
  1935. this.label67.TabIndex = 163;
  1936. this.label67.Text = "属性分类名称";
  1937. this.label67.Visible = false;
  1938. //
  1939. // txt_MatAttrClass
  1940. //
  1941. this.txt_MatAttrClass.Location = new System.Drawing.Point(856, 5);
  1942. this.txt_MatAttrClass.Margin = new System.Windows.Forms.Padding(4);
  1943. this.txt_MatAttrClass.Name = "txt_MatAttrClass";
  1944. this.txt_MatAttrClass.Size = new System.Drawing.Size(169, 25);
  1945. this.txt_MatAttrClass.TabIndex = 162;
  1946. this.txt_MatAttrClass.Visible = false;
  1947. //
  1948. // label68
  1949. //
  1950. this.label68.AutoSize = true;
  1951. this.label68.Location = new System.Drawing.Point(745, 6);
  1952. this.label68.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
  1953. this.label68.Name = "label68";
  1954. this.label68.Size = new System.Drawing.Size(97, 15);
  1955. this.label68.TabIndex = 161;
  1956. this.label68.Text = "属性分类编码";
  1957. this.label68.Visible = false;
  1958. //
  1959. // txt_ITEM_ATTR_CODE
  1960. //
  1961. this.txt_ITEM_ATTR_CODE.Location = new System.Drawing.Point(104, 39);
  1962. this.txt_ITEM_ATTR_CODE.Margin = new System.Windows.Forms.Padding(4);
  1963. this.txt_ITEM_ATTR_CODE.Name = "txt_ITEM_ATTR_CODE";
  1964. this.txt_ITEM_ATTR_CODE.ReadOnly = true;
  1965. this.txt_ITEM_ATTR_CODE.Size = new System.Drawing.Size(161, 24);
  1966. this.txt_ITEM_ATTR_CODE.TabIndex = 160;
  1967. //
  1968. // txt_ITEM_ATTR
  1969. //
  1970. appearance13.TextHAlignAsString = "Center";
  1971. appearance13.TextVAlignAsString = "Middle";
  1972. editorButton10.Appearance = appearance13;
  1973. editorButton10.Text = "+";
  1974. this.txt_ITEM_ATTR.ButtonsRight.Add(editorButton10);
  1975. this.txt_ITEM_ATTR.Location = new System.Drawing.Point(104, 9);
  1976. this.txt_ITEM_ATTR.Margin = new System.Windows.Forms.Padding(4);
  1977. this.txt_ITEM_ATTR.Name = "txt_ITEM_ATTR";
  1978. this.txt_ITEM_ATTR.ReadOnly = true;
  1979. this.txt_ITEM_ATTR.Size = new System.Drawing.Size(161, 24);
  1980. this.txt_ITEM_ATTR.TabIndex = 159;
  1981. this.txt_ITEM_ATTR.EditorButtonClick += new Infragistics.Win.UltraWinEditors.EditorButtonEventHandler(this.txt_ITEM_ATTR_EditorButtonClick);
  1982. //
  1983. // label60
  1984. //
  1985. this.label60.AutoSize = true;
  1986. this.label60.Location = new System.Drawing.Point(28, 44);
  1987. this.label60.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
  1988. this.label60.Name = "label60";
  1989. this.label60.Size = new System.Drawing.Size(67, 15);
  1990. this.label60.TabIndex = 157;
  1991. this.label60.Text = "属性编码";
  1992. //
  1993. // txt_IS_DEFAULT_ATTR
  1994. //
  1995. this.txt_IS_DEFAULT_ATTR.DisplayStyle = Infragistics.Win.EmbeddableElementDisplayStyle.Office2007;
  1996. this.txt_IS_DEFAULT_ATTR.DropDownStyle = Infragistics.Win.DropDownStyle.DropDownList;
  1997. valueListItem24.DataValue = "0";
  1998. valueListItem24.DisplayText = "不常用";
  1999. valueListItem25.DataValue = "1";
  2000. valueListItem25.DisplayText = "常用";
  2001. this.txt_IS_DEFAULT_ATTR.Items.AddRange(new Infragistics.Win.ValueListItem[] {
  2002. valueListItem24,
  2003. valueListItem25});
  2004. this.txt_IS_DEFAULT_ATTR.Location = new System.Drawing.Point(345, 9);
  2005. this.txt_IS_DEFAULT_ATTR.Margin = new System.Windows.Forms.Padding(4);
  2006. this.txt_IS_DEFAULT_ATTR.Name = "txt_IS_DEFAULT_ATTR";
  2007. this.txt_IS_DEFAULT_ATTR.Size = new System.Drawing.Size(83, 24);
  2008. this.txt_IS_DEFAULT_ATTR.TabIndex = 156;
  2009. //
  2010. // label53
  2011. //
  2012. this.label53.AutoSize = true;
  2013. this.label53.Location = new System.Drawing.Point(271, 14);
  2014. this.label53.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
  2015. this.label53.Name = "label53";
  2016. this.label53.Size = new System.Drawing.Size(67, 15);
  2017. this.label53.TabIndex = 154;
  2018. this.label53.Text = "是否常用";
  2019. //
  2020. // txt_REMARK_ATTR
  2021. //
  2022. this.txt_REMARK_ATTR.Location = new System.Drawing.Point(104, 69);
  2023. this.txt_REMARK_ATTR.Margin = new System.Windows.Forms.Padding(4);
  2024. this.txt_REMARK_ATTR.Multiline = true;
  2025. this.txt_REMARK_ATTR.Name = "txt_REMARK_ATTR";
  2026. this.txt_REMARK_ATTR.Size = new System.Drawing.Size(320, 80);
  2027. this.txt_REMARK_ATTR.TabIndex = 153;
  2028. //
  2029. // label51
  2030. //
  2031. this.label51.AutoSize = true;
  2032. this.label51.Location = new System.Drawing.Point(60, 74);
  2033. this.label51.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
  2034. this.label51.Name = "label51";
  2035. this.label51.Size = new System.Drawing.Size(37, 15);
  2036. this.label51.TabIndex = 152;
  2037. this.label51.Text = "备注";
  2038. //
  2039. // txt_ORDER_NUM
  2040. //
  2041. this.txt_ORDER_NUM.Location = new System.Drawing.Point(1088, 110);
  2042. this.txt_ORDER_NUM.Margin = new System.Windows.Forms.Padding(4);
  2043. this.txt_ORDER_NUM.MaxValue = 99;
  2044. this.txt_ORDER_NUM.MinValue = 0;
  2045. this.txt_ORDER_NUM.Name = "txt_ORDER_NUM";
  2046. this.txt_ORDER_NUM.NullText = "50";
  2047. this.txt_ORDER_NUM.Size = new System.Drawing.Size(171, 24);
  2048. this.txt_ORDER_NUM.TabIndex = 151;
  2049. this.txt_ORDER_NUM.Value = 50;
  2050. this.txt_ORDER_NUM.Visible = false;
  2051. //
  2052. // txt_item_Attr4
  2053. //
  2054. this.txt_item_Attr4.Location = new System.Drawing.Point(1088, 82);
  2055. this.txt_item_Attr4.Margin = new System.Windows.Forms.Padding(4);
  2056. this.txt_item_Attr4.Name = "txt_item_Attr4";
  2057. this.txt_item_Attr4.Size = new System.Drawing.Size(169, 25);
  2058. this.txt_item_Attr4.TabIndex = 150;
  2059. this.txt_item_Attr4.Visible = false;
  2060. //
  2061. // label50
  2062. //
  2063. this.label50.AutoSize = true;
  2064. this.label50.Location = new System.Drawing.Point(1035, 88);
  2065. this.label50.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
  2066. this.label50.Name = "label50";
  2067. this.label50.Size = new System.Drawing.Size(45, 15);
  2068. this.label50.TabIndex = 149;
  2069. this.label50.Text = "属性4";
  2070. this.label50.Visible = false;
  2071. //
  2072. // txt_item_Attr3
  2073. //
  2074. this.txt_item_Attr3.Location = new System.Drawing.Point(1088, 55);
  2075. this.txt_item_Attr3.Margin = new System.Windows.Forms.Padding(4);
  2076. this.txt_item_Attr3.Name = "txt_item_Attr3";
  2077. this.txt_item_Attr3.Size = new System.Drawing.Size(168, 25);
  2078. this.txt_item_Attr3.TabIndex = 148;
  2079. this.txt_item_Attr3.Visible = false;
  2080. //
  2081. // label49
  2082. //
  2083. this.label49.AutoSize = true;
  2084. this.label49.Location = new System.Drawing.Point(1035, 60);
  2085. this.label49.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
  2086. this.label49.Name = "label49";
  2087. this.label49.Size = new System.Drawing.Size(45, 15);
  2088. this.label49.TabIndex = 147;
  2089. this.label49.Text = "属性3";
  2090. this.label49.Visible = false;
  2091. //
  2092. // txt_item_Attr2
  2093. //
  2094. this.txt_item_Attr2.Location = new System.Drawing.Point(1088, 29);
  2095. this.txt_item_Attr2.Margin = new System.Windows.Forms.Padding(4);
  2096. this.txt_item_Attr2.Name = "txt_item_Attr2";
  2097. this.txt_item_Attr2.Size = new System.Drawing.Size(169, 25);
  2098. this.txt_item_Attr2.TabIndex = 146;
  2099. this.txt_item_Attr2.Visible = false;
  2100. //
  2101. // label48
  2102. //
  2103. this.label48.AutoSize = true;
  2104. this.label48.Location = new System.Drawing.Point(1035, 34);
  2105. this.label48.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
  2106. this.label48.Name = "label48";
  2107. this.label48.Size = new System.Drawing.Size(45, 15);
  2108. this.label48.TabIndex = 145;
  2109. this.label48.Text = "属性2";
  2110. this.label48.Visible = false;
  2111. //
  2112. // txt_item_Attr1
  2113. //
  2114. this.txt_item_Attr1.Location = new System.Drawing.Point(1088, 2);
  2115. this.txt_item_Attr1.Margin = new System.Windows.Forms.Padding(4);
  2116. this.txt_item_Attr1.Name = "txt_item_Attr1";
  2117. this.txt_item_Attr1.Size = new System.Drawing.Size(169, 25);
  2118. this.txt_item_Attr1.TabIndex = 144;
  2119. this.txt_item_Attr1.Visible = false;
  2120. //
  2121. // label47
  2122. //
  2123. this.label47.AutoSize = true;
  2124. this.label47.Location = new System.Drawing.Point(1035, 9);
  2125. this.label47.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
  2126. this.label47.Name = "label47";
  2127. this.label47.Size = new System.Drawing.Size(45, 15);
  2128. this.label47.TabIndex = 143;
  2129. this.label47.Text = "属性1";
  2130. this.label47.Visible = false;
  2131. //
  2132. // txt_ORDER_NUM11
  2133. //
  2134. this.txt_ORDER_NUM11.Location = new System.Drawing.Point(1340, 30);
  2135. this.txt_ORDER_NUM11.Margin = new System.Windows.Forms.Padding(4);
  2136. this.txt_ORDER_NUM11.Name = "txt_ORDER_NUM11";
  2137. this.txt_ORDER_NUM11.Size = new System.Drawing.Size(169, 25);
  2138. this.txt_ORDER_NUM11.TabIndex = 22;
  2139. this.txt_ORDER_NUM11.Text = "50";
  2140. this.txt_ORDER_NUM11.Visible = false;
  2141. //
  2142. // label37
  2143. //
  2144. this.label37.AutoSize = true;
  2145. this.label37.Location = new System.Drawing.Point(1035, 115);
  2146. this.label37.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
  2147. this.label37.Name = "label37";
  2148. this.label37.Size = new System.Drawing.Size(37, 15);
  2149. this.label37.TabIndex = 21;
  2150. this.label37.Text = "排序";
  2151. this.label37.Visible = false;
  2152. //
  2153. // label38
  2154. //
  2155. this.label38.AutoSize = true;
  2156. this.label38.Location = new System.Drawing.Point(60, 12);
  2157. this.label38.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
  2158. this.label38.Name = "label38";
  2159. this.label38.Size = new System.Drawing.Size(37, 15);
  2160. this.label38.TabIndex = 19;
  2161. this.label38.Text = "属性";
  2162. //
  2163. // txt_ITEM_CODE2
  2164. //
  2165. this.txt_ITEM_CODE2.Location = new System.Drawing.Point(1340, 4);
  2166. this.txt_ITEM_CODE2.Margin = new System.Windows.Forms.Padding(4);
  2167. this.txt_ITEM_CODE2.Name = "txt_ITEM_CODE2";
  2168. this.txt_ITEM_CODE2.ReadOnly = true;
  2169. this.txt_ITEM_CODE2.Size = new System.Drawing.Size(172, 25);
  2170. this.txt_ITEM_CODE2.TabIndex = 18;
  2171. this.txt_ITEM_CODE2.Visible = false;
  2172. //
  2173. // label39
  2174. //
  2175. this.label39.AutoSize = true;
  2176. this.label39.Location = new System.Drawing.Point(1264, 9);
  2177. this.label39.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
  2178. this.label39.Name = "label39";
  2179. this.label39.Size = new System.Drawing.Size(67, 15);
  2180. this.label39.TabIndex = 17;
  2181. this.label39.Text = "物料编码";
  2182. this.label39.Visible = false;
  2183. //
  2184. // ultraTabPageControl7
  2185. //
  2186. this.ultraTabPageControl7.Controls.Add(this.txt_STANDARDS_ID);
  2187. this.ultraTabPageControl7.Controls.Add(this.txt_STANDARDS_CODE);
  2188. this.ultraTabPageControl7.Controls.Add(this.label54);
  2189. this.ultraTabPageControl7.Controls.Add(this.txt_IS_DEFAULT_STANDRANDS);
  2190. this.ultraTabPageControl7.Controls.Add(this.label46);
  2191. this.ultraTabPageControl7.Controls.Add(this.txt_REMARK_STANDARD);
  2192. this.ultraTabPageControl7.Controls.Add(this.label45);
  2193. this.ultraTabPageControl7.Controls.Add(this.txtORDER_NUM);
  2194. this.ultraTabPageControl7.Controls.Add(this.label44);
  2195. this.ultraTabPageControl7.Controls.Add(this.label43);
  2196. this.ultraTabPageControl7.Location = new System.Drawing.Point(-10000, -10000);
  2197. this.ultraTabPageControl7.Margin = new System.Windows.Forms.Padding(4);
  2198. this.ultraTabPageControl7.Name = "ultraTabPageControl7";
  2199. this.ultraTabPageControl7.Size = new System.Drawing.Size(1771, 161);
  2200. //
  2201. // txt_STANDARDS_ID
  2202. //
  2203. this.txt_STANDARDS_ID.Location = new System.Drawing.Point(1277, 12);
  2204. this.txt_STANDARDS_ID.Margin = new System.Windows.Forms.Padding(4);
  2205. this.txt_STANDARDS_ID.Name = "txt_STANDARDS_ID";
  2206. this.txt_STANDARDS_ID.ReadOnly = true;
  2207. this.txt_STANDARDS_ID.Size = new System.Drawing.Size(359, 24);
  2208. this.txt_STANDARDS_ID.TabIndex = 161;
  2209. this.txt_STANDARDS_ID.Visible = false;
  2210. //
  2211. // txt_STANDARDS_CODE
  2212. //
  2213. appearance9.TextHAlignAsString = "Center";
  2214. appearance9.TextVAlignAsString = "Middle";
  2215. editorButton11.Appearance = appearance9;
  2216. editorButton11.Text = "+";
  2217. this.txt_STANDARDS_CODE.ButtonsRight.Add(editorButton11);
  2218. this.txt_STANDARDS_CODE.Location = new System.Drawing.Point(123, 11);
  2219. this.txt_STANDARDS_CODE.Margin = new System.Windows.Forms.Padding(4);
  2220. this.txt_STANDARDS_CODE.Name = "txt_STANDARDS_CODE";
  2221. this.txt_STANDARDS_CODE.ReadOnly = true;
  2222. this.txt_STANDARDS_CODE.Size = new System.Drawing.Size(264, 24);
  2223. this.txt_STANDARDS_CODE.TabIndex = 160;
  2224. this.txt_STANDARDS_CODE.EditorButtonClick += new Infragistics.Win.UltraWinEditors.EditorButtonEventHandler(this.txt_STANDARDS_CODE_EditorButtonClick);
  2225. //
  2226. // label54
  2227. //
  2228. this.label54.AutoSize = true;
  2229. this.label54.Location = new System.Drawing.Point(16, 16);
  2230. this.label54.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
  2231. this.label54.Name = "label54";
  2232. this.label54.Size = new System.Drawing.Size(97, 15);
  2233. this.label54.TabIndex = 32;
  2234. this.label54.Text = "采购标准编号";
  2235. //
  2236. // txt_IS_DEFAULT_STANDRANDS
  2237. //
  2238. this.txt_IS_DEFAULT_STANDRANDS.DisplayStyle = Infragistics.Win.EmbeddableElementDisplayStyle.Office2007;
  2239. this.txt_IS_DEFAULT_STANDRANDS.DropDownStyle = Infragistics.Win.DropDownStyle.DropDownList;
  2240. valueListItem4.DataValue = "0";
  2241. valueListItem4.DisplayText = "不常用";
  2242. valueListItem5.DataValue = "1";
  2243. valueListItem5.DisplayText = "常用";
  2244. this.txt_IS_DEFAULT_STANDRANDS.Items.AddRange(new Infragistics.Win.ValueListItem[] {
  2245. valueListItem4,
  2246. valueListItem5});
  2247. this.txt_IS_DEFAULT_STANDRANDS.Location = new System.Drawing.Point(465, 11);
  2248. this.txt_IS_DEFAULT_STANDRANDS.Margin = new System.Windows.Forms.Padding(4);
  2249. this.txt_IS_DEFAULT_STANDRANDS.Name = "txt_IS_DEFAULT_STANDRANDS";
  2250. this.txt_IS_DEFAULT_STANDRANDS.Size = new System.Drawing.Size(89, 24);
  2251. this.txt_IS_DEFAULT_STANDRANDS.TabIndex = 31;
  2252. //
  2253. // label46
  2254. //
  2255. this.label46.AutoSize = true;
  2256. this.label46.Location = new System.Drawing.Point(80, 48);
  2257. this.label46.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
  2258. this.label46.Name = "label46";
  2259. this.label46.Size = new System.Drawing.Size(37, 15);
  2260. this.label46.TabIndex = 30;
  2261. this.label46.Text = "备注";
  2262. //
  2263. // txt_REMARK_STANDARD
  2264. //
  2265. this.txt_REMARK_STANDARD.Location = new System.Drawing.Point(123, 46);
  2266. this.txt_REMARK_STANDARD.Margin = new System.Windows.Forms.Padding(4);
  2267. this.txt_REMARK_STANDARD.Multiline = true;
  2268. this.txt_REMARK_STANDARD.Name = "txt_REMARK_STANDARD";
  2269. this.txt_REMARK_STANDARD.Size = new System.Drawing.Size(433, 100);
  2270. this.txt_REMARK_STANDARD.TabIndex = 29;
  2271. //
  2272. // label45
  2273. //
  2274. this.label45.AutoSize = true;
  2275. this.label45.Location = new System.Drawing.Point(1237, 42);
  2276. this.label45.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
  2277. this.label45.Name = "label45";
  2278. this.label45.Size = new System.Drawing.Size(37, 15);
  2279. this.label45.TabIndex = 28;
  2280. this.label45.Text = "排序";
  2281. this.label45.Visible = false;
  2282. //
  2283. // txtORDER_NUM
  2284. //
  2285. this.txtORDER_NUM.Location = new System.Drawing.Point(1277, 38);
  2286. this.txtORDER_NUM.Margin = new System.Windows.Forms.Padding(4);
  2287. this.txtORDER_NUM.MaxLength = 2;
  2288. this.txtORDER_NUM.Name = "txtORDER_NUM";
  2289. this.txtORDER_NUM.Size = new System.Drawing.Size(147, 24);
  2290. this.txtORDER_NUM.TabIndex = 27;
  2291. this.txtORDER_NUM.Visible = false;
  2292. //
  2293. // label44
  2294. //
  2295. this.label44.AutoSize = true;
  2296. this.label44.Location = new System.Drawing.Point(395, 16);
  2297. this.label44.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
  2298. this.label44.Name = "label44";
  2299. this.label44.Size = new System.Drawing.Size(67, 15);
  2300. this.label44.TabIndex = 26;
  2301. this.label44.Text = "是否常用";
  2302. //
  2303. // label43
  2304. //
  2305. this.label43.AutoSize = true;
  2306. this.label43.Location = new System.Drawing.Point(1156, 16);
  2307. this.label43.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
  2308. this.label43.Name = "label43";
  2309. this.label43.Size = new System.Drawing.Size(113, 15);
  2310. this.label43.TabIndex = 23;
  2311. this.label43.Text = "采购标准编号ID";
  2312. this.label43.Visible = false;
  2313. //
  2314. // ultraTabPageControl9
  2315. //
  2316. this.ultraTabPageControl9.Controls.Add(this.txt_ITEM_UOM_CONEFFICIENT);
  2317. this.ultraTabPageControl9.Controls.Add(this.txt_WEIGHT_UNIT_CODE);
  2318. this.ultraTabPageControl9.Controls.Add(this.txt_UOM_CODE);
  2319. this.ultraTabPageControl9.Controls.Add(this.label59);
  2320. this.ultraTabPageControl9.Controls.Add(this.txt_REMARK_UOM);
  2321. this.ultraTabPageControl9.Controls.Add(this.txt_IS_DEFAULT_UOM);
  2322. this.ultraTabPageControl9.Controls.Add(this.label58);
  2323. this.ultraTabPageControl9.Controls.Add(this.label2);
  2324. this.ultraTabPageControl9.Controls.Add(this.label57);
  2325. this.ultraTabPageControl9.Controls.Add(this.txt_WEIGHT_UNIT);
  2326. this.ultraTabPageControl9.Controls.Add(this.label56);
  2327. this.ultraTabPageControl9.Controls.Add(this.label55);
  2328. this.ultraTabPageControl9.Controls.Add(this.txt_UOM_NAME);
  2329. this.ultraTabPageControl9.Controls.Add(this.label4);
  2330. this.ultraTabPageControl9.Location = new System.Drawing.Point(-10000, -10000);
  2331. this.ultraTabPageControl9.Margin = new System.Windows.Forms.Padding(4);
  2332. this.ultraTabPageControl9.Name = "ultraTabPageControl9";
  2333. this.ultraTabPageControl9.Size = new System.Drawing.Size(1771, 161);
  2334. //
  2335. // txt_ITEM_UOM_CONEFFICIENT
  2336. //
  2337. this.txt_ITEM_UOM_CONEFFICIENT.Location = new System.Drawing.Point(265, 36);
  2338. this.txt_ITEM_UOM_CONEFFICIENT.Margin = new System.Windows.Forms.Padding(4);
  2339. this.txt_ITEM_UOM_CONEFFICIENT.Name = "txt_ITEM_UOM_CONEFFICIENT";
  2340. this.txt_ITEM_UOM_CONEFFICIENT.ReadOnly = true;
  2341. this.txt_ITEM_UOM_CONEFFICIENT.Size = new System.Drawing.Size(68, 24);
  2342. this.txt_ITEM_UOM_CONEFFICIENT.TabIndex = 165;
  2343. //
  2344. // txt_WEIGHT_UNIT_CODE
  2345. //
  2346. this.txt_WEIGHT_UNIT_CODE.Location = new System.Drawing.Point(445, 36);
  2347. this.txt_WEIGHT_UNIT_CODE.Margin = new System.Windows.Forms.Padding(4);
  2348. this.txt_WEIGHT_UNIT_CODE.Name = "txt_WEIGHT_UNIT_CODE";
  2349. this.txt_WEIGHT_UNIT_CODE.ReadOnly = true;
  2350. this.txt_WEIGHT_UNIT_CODE.Size = new System.Drawing.Size(235, 24);
  2351. this.txt_WEIGHT_UNIT_CODE.TabIndex = 164;
  2352. //
  2353. // txt_UOM_CODE
  2354. //
  2355. this.txt_UOM_CODE.Location = new System.Drawing.Point(975, 8);
  2356. this.txt_UOM_CODE.Margin = new System.Windows.Forms.Padding(4);
  2357. this.txt_UOM_CODE.Name = "txt_UOM_CODE";
  2358. this.txt_UOM_CODE.ReadOnly = true;
  2359. this.txt_UOM_CODE.Size = new System.Drawing.Size(235, 24);
  2360. this.txt_UOM_CODE.TabIndex = 163;
  2361. this.txt_UOM_CODE.Visible = false;
  2362. //
  2363. // label59
  2364. //
  2365. this.label59.AutoSize = true;
  2366. this.label59.Location = new System.Drawing.Point(57, 70);
  2367. this.label59.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
  2368. this.label59.Name = "label59";
  2369. this.label59.Size = new System.Drawing.Size(37, 15);
  2370. this.label59.TabIndex = 162;
  2371. this.label59.Text = "备注";
  2372. //
  2373. // txt_REMARK_UOM
  2374. //
  2375. this.txt_REMARK_UOM.Location = new System.Drawing.Point(100, 66);
  2376. this.txt_REMARK_UOM.Margin = new System.Windows.Forms.Padding(4);
  2377. this.txt_REMARK_UOM.Multiline = true;
  2378. this.txt_REMARK_UOM.Name = "txt_REMARK_UOM";
  2379. this.txt_REMARK_UOM.Size = new System.Drawing.Size(580, 86);
  2380. this.txt_REMARK_UOM.TabIndex = 161;
  2381. //
  2382. // txt_IS_DEFAULT_UOM
  2383. //
  2384. this.txt_IS_DEFAULT_UOM.DisplayStyle = Infragistics.Win.EmbeddableElementDisplayStyle.Office2007;
  2385. this.txt_IS_DEFAULT_UOM.DropDownStyle = Infragistics.Win.DropDownStyle.DropDownList;
  2386. valueListItem2.DataValue = "0";
  2387. valueListItem2.DisplayText = "不常用";
  2388. valueListItem3.DataValue = "1";
  2389. valueListItem3.DisplayText = "常用";
  2390. this.txt_IS_DEFAULT_UOM.Items.AddRange(new Infragistics.Win.ValueListItem[] {
  2391. valueListItem2,
  2392. valueListItem3});
  2393. this.txt_IS_DEFAULT_UOM.Location = new System.Drawing.Point(100, 36);
  2394. this.txt_IS_DEFAULT_UOM.Margin = new System.Windows.Forms.Padding(4);
  2395. this.txt_IS_DEFAULT_UOM.Name = "txt_IS_DEFAULT_UOM";
  2396. this.txt_IS_DEFAULT_UOM.Size = new System.Drawing.Size(84, 24);
  2397. this.txt_IS_DEFAULT_UOM.TabIndex = 160;
  2398. //
  2399. // label58
  2400. //
  2401. this.label58.AutoSize = true;
  2402. this.label58.Location = new System.Drawing.Point(25, 41);
  2403. this.label58.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
  2404. this.label58.Name = "label58";
  2405. this.label58.Size = new System.Drawing.Size(67, 15);
  2406. this.label58.TabIndex = 159;
  2407. this.label58.Text = "是否常用";
  2408. //
  2409. // label2
  2410. //
  2411. this.label2.AutoSize = true;
  2412. this.label2.Location = new System.Drawing.Point(192, 40);
  2413. this.label2.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
  2414. this.label2.Name = "label2";
  2415. this.label2.Size = new System.Drawing.Size(67, 15);
  2416. this.label2.TabIndex = 157;
  2417. this.label2.Text = "转换系数";
  2418. //
  2419. // label57
  2420. //
  2421. this.label57.AutoSize = true;
  2422. this.label57.Location = new System.Drawing.Point(340, 40);
  2423. this.label57.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
  2424. this.label57.Name = "label57";
  2425. this.label57.Size = new System.Drawing.Size(97, 15);
  2426. this.label57.TabIndex = 155;
  2427. this.label57.Text = "库存单位编码";
  2428. //
  2429. // txt_WEIGHT_UNIT
  2430. //
  2431. this.txt_WEIGHT_UNIT.Location = new System.Drawing.Point(445, 8);
  2432. this.txt_WEIGHT_UNIT.Margin = new System.Windows.Forms.Padding(4);
  2433. this.txt_WEIGHT_UNIT.Name = "txt_WEIGHT_UNIT";
  2434. this.txt_WEIGHT_UNIT.ReadOnly = true;
  2435. this.txt_WEIGHT_UNIT.Size = new System.Drawing.Size(235, 24);
  2436. this.txt_WEIGHT_UNIT.TabIndex = 154;
  2437. //
  2438. // label56
  2439. //
  2440. this.label56.AutoSize = true;
  2441. this.label56.Location = new System.Drawing.Point(372, 12);
  2442. this.label56.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
  2443. this.label56.Name = "label56";
  2444. this.label56.Size = new System.Drawing.Size(67, 15);
  2445. this.label56.TabIndex = 153;
  2446. this.label56.Text = "库存单位";
  2447. //
  2448. // label55
  2449. //
  2450. this.label55.AutoSize = true;
  2451. this.label55.Location = new System.Drawing.Point(869, 12);
  2452. this.label55.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
  2453. this.label55.Name = "label55";
  2454. this.label55.Size = new System.Drawing.Size(97, 15);
  2455. this.label55.TabIndex = 151;
  2456. this.label55.Text = "采购单位编码";
  2457. this.label55.Visible = false;
  2458. //
  2459. // txt_UOM_NAME
  2460. //
  2461. appearance11.TextHAlignAsString = "Center";
  2462. appearance11.TextVAlignAsString = "Middle";
  2463. editorButton12.Appearance = appearance11;
  2464. editorButton12.Text = "+";
  2465. this.txt_UOM_NAME.ButtonsRight.Add(editorButton12);
  2466. this.txt_UOM_NAME.Location = new System.Drawing.Point(100, 6);
  2467. this.txt_UOM_NAME.Margin = new System.Windows.Forms.Padding(4);
  2468. this.txt_UOM_NAME.Name = "txt_UOM_NAME";
  2469. this.txt_UOM_NAME.ReadOnly = true;
  2470. this.txt_UOM_NAME.Size = new System.Drawing.Size(235, 24);
  2471. this.txt_UOM_NAME.TabIndex = 144;
  2472. this.txt_UOM_NAME.EditorButtonClick += new Infragistics.Win.UltraWinEditors.EditorButtonEventHandler(this.txt_UOM_NAME_EditorButtonClick);
  2473. //
  2474. // label4
  2475. //
  2476. this.label4.AutoSize = true;
  2477. this.label4.Location = new System.Drawing.Point(27, 11);
  2478. this.label4.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
  2479. this.label4.Name = "label4";
  2480. this.label4.Size = new System.Drawing.Size(67, 15);
  2481. this.label4.TabIndex = 143;
  2482. this.label4.Text = "采购单位";
  2483. //
  2484. // ultraTabPageControl4
  2485. //
  2486. this.ultraTabPageControl4.Controls.Add(this.txt_MIN_QTY);
  2487. this.ultraTabPageControl4.Controls.Add(this.label17);
  2488. this.ultraTabPageControl4.Controls.Add(this.label5);
  2489. this.ultraTabPageControl4.Controls.Add(this.label7);
  2490. this.ultraTabPageControl4.Controls.Add(this.txt_ITEM_DESC_E);
  2491. this.ultraTabPageControl4.Controls.Add(this.label10);
  2492. this.ultraTabPageControl4.Controls.Add(this.txt_MONTH_END_AVG_PRICE);
  2493. this.ultraTabPageControl4.Controls.Add(this.label11);
  2494. this.ultraTabPageControl4.Controls.Add(this.txt_LAST_PRICE);
  2495. this.ultraTabPageControl4.Controls.Add(this.label29);
  2496. this.ultraTabPageControl4.Controls.Add(this.label28);
  2497. this.ultraTabPageControl4.Controls.Add(this.label27);
  2498. this.ultraTabPageControl4.Controls.Add(this.Ultcmb_INV_WASTE_FAC_UOM);
  2499. this.ultraTabPageControl4.Controls.Add(this.Ultcmb_PUR_STANDARDS);
  2500. this.ultraTabPageControl4.Controls.Add(this.label22);
  2501. this.ultraTabPageControl4.Controls.Add(this.txt_BUYER_ROLE_NAME);
  2502. this.ultraTabPageControl4.Controls.Add(this.label52);
  2503. this.ultraTabPageControl4.Controls.Add(this.Ultcmb_WEIGHT_UNIT_CODE);
  2504. this.ultraTabPageControl4.Controls.Add(this.txt_ITEM_MODEL);
  2505. this.ultraTabPageControl4.Controls.Add(this.txt_ITEM_SPEC);
  2506. this.ultraTabPageControl4.Controls.Add(this.label13);
  2507. this.ultraTabPageControl4.Controls.Add(this.txt_PUR_STANDARDS_CODE);
  2508. this.ultraTabPageControl4.Controls.Add(this.ultraGrid2);
  2509. this.ultraTabPageControl4.Location = new System.Drawing.Point(1, 25);
  2510. this.ultraTabPageControl4.Margin = new System.Windows.Forms.Padding(4);
  2511. this.ultraTabPageControl4.Name = "ultraTabPageControl4";
  2512. this.ultraTabPageControl4.Size = new System.Drawing.Size(1490, 260);
  2513. //
  2514. // ultraGrid2
  2515. //
  2516. this.ultraGrid2.DataMember = "Table2";
  2517. this.ultraGrid2.DataSource = this.dataSet1;
  2518. ultraGridColumn1.Header.Caption = "供应商代码";
  2519. ultraGridColumn1.Header.VisiblePosition = 1;
  2520. ultraGridColumn2.Header.Caption = "供应商名称";
  2521. ultraGridColumn2.Header.VisiblePosition = 2;
  2522. ultraGridColumn3.Header.VisiblePosition = 4;
  2523. ultraGridColumn4.Header.VisiblePosition = 3;
  2524. ultraGridColumn4.Width = 96;
  2525. ultraGridColumn5.Header.Caption = "允差方式";
  2526. ultraGridColumn5.Header.VisiblePosition = 5;
  2527. ultraGridColumn6.Header.Caption = "允差下线";
  2528. ultraGridColumn6.Header.VisiblePosition = 6;
  2529. ultraGridColumn7.Header.Caption = "允差上限";
  2530. ultraGridColumn7.Header.VisiblePosition = 7;
  2531. ultraGridColumn8.Header.VisiblePosition = 0;
  2532. ultraGridBand1.Columns.AddRange(new object[] {
  2533. ultraGridColumn1,
  2534. ultraGridColumn2,
  2535. ultraGridColumn3,
  2536. ultraGridColumn4,
  2537. ultraGridColumn5,
  2538. ultraGridColumn6,
  2539. ultraGridColumn7,
  2540. ultraGridColumn8});
  2541. this.ultraGrid2.DisplayLayout.BandsSerializer.Add(ultraGridBand1);
  2542. this.ultraGrid2.DisplayLayout.CaptionVisible = Infragistics.Win.DefaultableBoolean.False;
  2543. this.ultraGrid2.Dock = System.Windows.Forms.DockStyle.Fill;
  2544. this.ultraGrid2.Location = new System.Drawing.Point(0, 0);
  2545. this.ultraGrid2.Margin = new System.Windows.Forms.Padding(4);
  2546. this.ultraGrid2.Name = "ultraGrid2";
  2547. this.ultraGrid2.Size = new System.Drawing.Size(1490, 260);
  2548. this.ultraGrid2.TabIndex = 2;
  2549. this.ultraGrid2.Text = "ultraGrid2";
  2550. this.ultraGrid2.AfterRowActivate += new System.EventHandler(this.ultraGrid2_AfterRowActivate);
  2551. this.ultraGrid2.ClickCell += new Infragistics.Win.UltraWinGrid.ClickCellEventHandler(this.ultraGrid2_ClickCell);
  2552. this.ultraGrid2.Click += new System.EventHandler(this.ultraGrid2_Click);
  2553. //
  2554. // dataSet1
  2555. //
  2556. this.dataSet1.DataSetName = "NewDataSet";
  2557. this.dataSet1.Tables.AddRange(new System.Data.DataTable[] {
  2558. this.dataTable1,
  2559. this.dataTable2,
  2560. this.dataTable3,
  2561. this.dataTable4,
  2562. this.dataTable5,
  2563. this.dataTable7});
  2564. //
  2565. // dataTable1
  2566. //
  2567. this.dataTable1.Columns.AddRange(new System.Data.DataColumn[] {
  2568. this.dataColumn1,
  2569. this.dataColumn2,
  2570. this.dataColumn3,
  2571. this.dataColumn5,
  2572. this.dataColumn6,
  2573. this.dataColumn7,
  2574. this.dataColumn8,
  2575. this.dataColumn9,
  2576. this.dataColumn10,
  2577. this.dataColumn11,
  2578. this.dataColumn28,
  2579. this.dataColumn29,
  2580. this.dataColumn34,
  2581. this.dataColumn41,
  2582. this.dataColumn55,
  2583. this.dataColumn57,
  2584. this.dataColumn19});
  2585. this.dataTable1.TableName = "Table1";
  2586. //
  2587. // dataColumn1
  2588. //
  2589. this.dataColumn1.Caption = "物料编码";
  2590. this.dataColumn1.ColumnName = "ITEMCODE";
  2591. //
  2592. // dataColumn2
  2593. //
  2594. this.dataColumn2.Caption = "物料名称";
  2595. this.dataColumn2.ColumnName = "ITEMNAME";
  2596. //
  2597. // dataColumn3
  2598. //
  2599. this.dataColumn3.Caption = "物料规格";
  2600. this.dataColumn3.ColumnName = "ITEMSPEC";
  2601. //
  2602. // dataColumn5
  2603. //
  2604. this.dataColumn5.Caption = "库存单位";
  2605. this.dataColumn5.ColumnName = "WEIGHTUNIT";
  2606. //
  2607. // dataColumn6
  2608. //
  2609. this.dataColumn6.Caption = "分类编码";
  2610. this.dataColumn6.ColumnName = "ARCCODE";
  2611. //
  2612. // dataColumn7
  2613. //
  2614. this.dataColumn7.Caption = "分类名称";
  2615. this.dataColumn7.ColumnName = "ARCITEM";
  2616. //
  2617. // dataColumn8
  2618. //
  2619. this.dataColumn8.Caption = "申请人";
  2620. this.dataColumn8.ColumnName = "CREATENAME";
  2621. //
  2622. // dataColumn9
  2623. //
  2624. this.dataColumn9.Caption = "创建时间";
  2625. this.dataColumn9.ColumnName = "CREATETIME";
  2626. //
  2627. // dataColumn10
  2628. //
  2629. this.dataColumn10.Caption = "修改人";
  2630. this.dataColumn10.ColumnName = "UPDATENAME";
  2631. //
  2632. // dataColumn11
  2633. //
  2634. this.dataColumn11.Caption = "修改时间";
  2635. this.dataColumn11.ColumnName = "UPDATETIME";
  2636. //
  2637. // dataColumn28
  2638. //
  2639. this.dataColumn28.Caption = "BUYERROLEID";
  2640. this.dataColumn28.ColumnName = "BUYERROLEID";
  2641. //
  2642. // dataColumn29
  2643. //
  2644. this.dataColumn29.ColumnName = "PLANNERROLEID";
  2645. //
  2646. // dataColumn34
  2647. //
  2648. this.dataColumn34.Caption = "物料描述";
  2649. this.dataColumn34.ColumnName = "ITEMDESC";
  2650. //
  2651. // dataColumn41
  2652. //
  2653. this.dataColumn41.ColumnName = "BATCHFLAG";
  2654. //
  2655. // dataColumn55
  2656. //
  2657. this.dataColumn55.ColumnName = "WEIGHTUNITCODE";
  2658. //
  2659. // dataColumn57
  2660. //
  2661. this.dataColumn57.Caption = "是否作废";
  2662. this.dataColumn57.ColumnName = "VALIDFLAG";
  2663. //
  2664. // dataColumn19
  2665. //
  2666. this.dataColumn19.Caption = "计划价格";
  2667. this.dataColumn19.ColumnName = "BUGPRICE";
  2668. //
  2669. // dataTable2
  2670. //
  2671. this.dataTable2.Columns.AddRange(new System.Data.DataColumn[] {
  2672. this.dataColumn16,
  2673. this.dataColumn17,
  2674. this.dataColumn22,
  2675. this.dataColumn56,
  2676. this.dataColumn68,
  2677. this.dataColumn69,
  2678. this.dataColumn70,
  2679. this.dataColumn18});
  2680. this.dataTable2.TableName = "Table2";
  2681. //
  2682. // dataColumn16
  2683. //
  2684. this.dataColumn16.Caption = "供方编码";
  2685. this.dataColumn16.ColumnName = "SUPPCODE";
  2686. //
  2687. // dataColumn17
  2688. //
  2689. this.dataColumn17.Caption = "供方名称";
  2690. this.dataColumn17.ColumnName = "SUPPNAME";
  2691. //
  2692. // dataColumn22
  2693. //
  2694. this.dataColumn22.Caption = "状态";
  2695. this.dataColumn22.ColumnName = "STATUS";
  2696. //
  2697. // dataColumn56
  2698. //
  2699. this.dataColumn56.Caption = "是否主供应商";
  2700. this.dataColumn56.ColumnName = "ISDEFAULT";
  2701. //
  2702. // dataColumn68
  2703. //
  2704. this.dataColumn68.Caption = "交货量差方式";
  2705. this.dataColumn68.ColumnName = "delvryRangeTpe";
  2706. //
  2707. // dataColumn69
  2708. //
  2709. this.dataColumn69.Caption = "交货量差下限";
  2710. this.dataColumn69.ColumnName = "delvryRangeMin";
  2711. //
  2712. // dataColumn70
  2713. //
  2714. this.dataColumn70.Caption = "交货量差上限";
  2715. this.dataColumn70.ColumnName = "delvryRangeMax";
  2716. //
  2717. // dataColumn18
  2718. //
  2719. this.dataColumn18.Caption = "编号";
  2720. this.dataColumn18.ColumnName = "id";
  2721. //
  2722. // dataTable3
  2723. //
  2724. this.dataTable3.Columns.AddRange(new System.Data.DataColumn[] {
  2725. this.dataColumn12,
  2726. this.dataColumn13,
  2727. this.dataColumn15,
  2728. this.dataColumn14,
  2729. this.dataColumn36,
  2730. this.dataColumn4,
  2731. this.dataColumn37,
  2732. this.dataColumn38,
  2733. this.dataColumn39,
  2734. this.dataColumn40,
  2735. this.dataColumn42,
  2736. this.dataColumn43,
  2737. this.dataColumn44,
  2738. this.dataColumn54,
  2739. this.dataColumn62,
  2740. this.dataColumn63,
  2741. this.dataColumn65});
  2742. this.dataTable3.TableName = "Table3";
  2743. //
  2744. // dataColumn12
  2745. //
  2746. this.dataColumn12.Caption = "物料编码";
  2747. this.dataColumn12.ColumnName = "ITEMCODE";
  2748. //
  2749. // dataColumn13
  2750. //
  2751. this.dataColumn13.Caption = "属性";
  2752. this.dataColumn13.ColumnName = "ItemAttr";
  2753. //
  2754. // dataColumn15
  2755. //
  2756. this.dataColumn15.Caption = "排序";
  2757. this.dataColumn15.ColumnName = "ORDERNUM";
  2758. //
  2759. // dataColumn14
  2760. //
  2761. this.dataColumn14.Caption = "采购单位";
  2762. this.dataColumn14.ColumnName = "ITEMUOM";
  2763. //
  2764. // dataColumn36
  2765. //
  2766. this.dataColumn36.Caption = "转换系数";
  2767. this.dataColumn36.ColumnName = "ITEMUOMCONEFFICIENT";
  2768. //
  2769. // dataColumn4
  2770. //
  2771. this.dataColumn4.Caption = "是否使用采购单位";
  2772. this.dataColumn4.ColumnName = "ITEMUSEUOM";
  2773. //
  2774. // dataColumn37
  2775. //
  2776. this.dataColumn37.Caption = "物料属性1";
  2777. this.dataColumn37.ColumnName = "ITEMATTR1";
  2778. //
  2779. // dataColumn38
  2780. //
  2781. this.dataColumn38.Caption = "物料属性2";
  2782. this.dataColumn38.ColumnName = "ITEMATTR2";
  2783. //
  2784. // dataColumn39
  2785. //
  2786. this.dataColumn39.Caption = "物料属性3";
  2787. this.dataColumn39.ColumnName = "ITEMATTR3";
  2788. //
  2789. // dataColumn40
  2790. //
  2791. this.dataColumn40.Caption = "物料属性4";
  2792. this.dataColumn40.ColumnName = "ITEMATTR4";
  2793. //
  2794. // dataColumn42
  2795. //
  2796. this.dataColumn42.ColumnName = "ItemAttrId";
  2797. //
  2798. // dataColumn43
  2799. //
  2800. this.dataColumn43.Caption = "是否为常用";
  2801. this.dataColumn43.ColumnName = "ISDEFAULT";
  2802. //
  2803. // dataColumn44
  2804. //
  2805. this.dataColumn44.Caption = "备注";
  2806. this.dataColumn44.ColumnName = "REMARK";
  2807. //
  2808. // dataColumn54
  2809. //
  2810. this.dataColumn54.Caption = "属性编码";
  2811. this.dataColumn54.ColumnName = "ITEMATTRCODE";
  2812. //
  2813. // dataColumn62
  2814. //
  2815. this.dataColumn62.Caption = "属性分类编码";
  2816. this.dataColumn62.ColumnName = "ITEMATTRCLASS";
  2817. //
  2818. // dataColumn63
  2819. //
  2820. this.dataColumn63.Caption = "属性分类名称";
  2821. this.dataColumn63.ColumnName = "ITEMATTRCLASSNAME";
  2822. //
  2823. // dataColumn65
  2824. //
  2825. this.dataColumn65.Caption = "是否判定等级";
  2826. this.dataColumn65.ColumnName = "txtIsLevel";
  2827. //
  2828. // dataTable4
  2829. //
  2830. this.dataTable4.Columns.AddRange(new System.Data.DataColumn[] {
  2831. this.dataColumn30,
  2832. this.dataColumn31,
  2833. this.dataColumn32,
  2834. this.dataColumn33,
  2835. this.dataColumn35,
  2836. this.dataColumn45});
  2837. this.dataTable4.TableName = "Table4";
  2838. //
  2839. // dataColumn30
  2840. //
  2841. this.dataColumn30.Caption = "采购标准编号";
  2842. this.dataColumn30.ColumnName = "STANDARDSCODE";
  2843. //
  2844. // dataColumn31
  2845. //
  2846. this.dataColumn31.Caption = "是否常用";
  2847. this.dataColumn31.ColumnName = "ISDEFAULT";
  2848. //
  2849. // dataColumn32
  2850. //
  2851. this.dataColumn32.Caption = "排序";
  2852. this.dataColumn32.ColumnName = "ORDERNUM";
  2853. //
  2854. // dataColumn33
  2855. //
  2856. this.dataColumn33.Caption = "备注";
  2857. this.dataColumn33.ColumnName = "REMARK";
  2858. //
  2859. // dataColumn35
  2860. //
  2861. this.dataColumn35.ColumnName = "ITEMSTANDARDSID";
  2862. //
  2863. // dataColumn45
  2864. //
  2865. this.dataColumn45.Caption = "采购标准ID";
  2866. this.dataColumn45.ColumnName = "STANDARDSID";
  2867. //
  2868. // dataTable5
  2869. //
  2870. this.dataTable5.Columns.AddRange(new System.Data.DataColumn[] {
  2871. this.dataColumn46,
  2872. this.dataColumn47,
  2873. this.dataColumn48,
  2874. this.dataColumn49,
  2875. this.dataColumn50,
  2876. this.dataColumn51,
  2877. this.dataColumn52,
  2878. this.dataColumn53,
  2879. this.dataColumn64,
  2880. this.dataColumn66,
  2881. this.dataColumn67});
  2882. this.dataTable5.TableName = "Table5";
  2883. //
  2884. // dataColumn46
  2885. //
  2886. this.dataColumn46.ColumnName = "ITEMUOMID";
  2887. //
  2888. // dataColumn47
  2889. //
  2890. this.dataColumn47.Caption = "采购单位编码";
  2891. this.dataColumn47.ColumnName = "UOMCODE";
  2892. //
  2893. // dataColumn48
  2894. //
  2895. this.dataColumn48.Caption = "采购单位名称";
  2896. this.dataColumn48.ColumnName = "UOMNAME";
  2897. //
  2898. // dataColumn49
  2899. //
  2900. this.dataColumn49.Caption = "转换系数";
  2901. this.dataColumn49.ColumnName = "ITEMUOMCONEFFICIENT";
  2902. //
  2903. // dataColumn50
  2904. //
  2905. this.dataColumn50.Caption = "库存单位";
  2906. this.dataColumn50.ColumnName = "WEIGHTUNIT";
  2907. //
  2908. // dataColumn51
  2909. //
  2910. this.dataColumn51.Caption = "库存单位编码";
  2911. this.dataColumn51.ColumnName = "WEIGHTUNITCODE";
  2912. //
  2913. // dataColumn52
  2914. //
  2915. this.dataColumn52.Caption = "是否常用";
  2916. this.dataColumn52.ColumnName = "ISDEFAULT";
  2917. //
  2918. // dataColumn53
  2919. //
  2920. this.dataColumn53.Caption = "备注";
  2921. this.dataColumn53.ColumnName = "REMARK";
  2922. //
  2923. // dataColumn64
  2924. //
  2925. this.dataColumn64.Caption = "数据状态";
  2926. this.dataColumn64.ColumnName = "Validflag";
  2927. //
  2928. // dataColumn66
  2929. //
  2930. this.dataColumn66.Caption = "创建人";
  2931. this.dataColumn66.ColumnName = "CREATENAME";
  2932. //
  2933. // dataColumn67
  2934. //
  2935. this.dataColumn67.Caption = "创建时间";
  2936. this.dataColumn67.ColumnName = "CREATETIME";
  2937. //
  2938. // dataTable7
  2939. //
  2940. this.dataTable7.Columns.AddRange(new System.Data.DataColumn[] {
  2941. this.dataColumn60,
  2942. this.dataColumn61});
  2943. this.dataTable7.TableName = "Table6";
  2944. //
  2945. // dataColumn60
  2946. //
  2947. this.dataColumn60.Caption = "属性分类名称";
  2948. this.dataColumn60.ColumnName = "ITEMATTRCLASSNAME";
  2949. //
  2950. // dataColumn61
  2951. //
  2952. this.dataColumn61.Caption = "属性分类编码";
  2953. this.dataColumn61.ColumnName = "ITEMATTRCLASS";
  2954. //
  2955. // ultraTabPageControl5
  2956. //
  2957. this.ultraTabPageControl5.Controls.Add(this.ultraGrid3);
  2958. this.ultraTabPageControl5.Location = new System.Drawing.Point(-10000, -10000);
  2959. this.ultraTabPageControl5.Margin = new System.Windows.Forms.Padding(4);
  2960. this.ultraTabPageControl5.Name = "ultraTabPageControl5";
  2961. this.ultraTabPageControl5.Size = new System.Drawing.Size(1490, 260);
  2962. //
  2963. // ultraGrid3
  2964. //
  2965. this.ultraGrid3.DataMember = "Table3";
  2966. this.ultraGrid3.DataSource = this.dataSet1;
  2967. ultraGridColumn9.Header.VisiblePosition = 0;
  2968. ultraGridColumn9.Hidden = true;
  2969. ultraGridColumn10.Header.VisiblePosition = 1;
  2970. ultraGridColumn11.Header.VisiblePosition = 2;
  2971. ultraGridColumn12.Header.VisiblePosition = 3;
  2972. ultraGridColumn13.Header.VisiblePosition = 4;
  2973. ultraGridColumn13.Hidden = true;
  2974. ultraGridColumn14.Header.VisiblePosition = 5;
  2975. ultraGridColumn14.Hidden = true;
  2976. ultraGridColumn15.Header.VisiblePosition = 6;
  2977. ultraGridColumn15.Hidden = true;
  2978. ultraGridColumn16.Header.VisiblePosition = 7;
  2979. ultraGridColumn16.Hidden = true;
  2980. ultraGridColumn17.Header.VisiblePosition = 8;
  2981. ultraGridColumn17.Hidden = true;
  2982. ultraGridColumn18.Header.VisiblePosition = 9;
  2983. ultraGridColumn18.Hidden = true;
  2984. ultraGridColumn19.Header.VisiblePosition = 10;
  2985. ultraGridColumn19.Hidden = true;
  2986. ultraGridColumn20.Header.VisiblePosition = 11;
  2987. ultraGridColumn21.Header.VisiblePosition = 12;
  2988. ultraGridColumn22.Header.VisiblePosition = 13;
  2989. ultraGridColumn22.Hidden = true;
  2990. ultraGridColumn23.Header.VisiblePosition = 14;
  2991. ultraGridColumn23.Hidden = true;
  2992. ultraGridColumn24.Header.VisiblePosition = 15;
  2993. ultraGridColumn25.Header.VisiblePosition = 16;
  2994. ultraGridBand2.Columns.AddRange(new object[] {
  2995. ultraGridColumn9,
  2996. ultraGridColumn10,
  2997. ultraGridColumn11,
  2998. ultraGridColumn12,
  2999. ultraGridColumn13,
  3000. ultraGridColumn14,
  3001. ultraGridColumn15,
  3002. ultraGridColumn16,
  3003. ultraGridColumn17,
  3004. ultraGridColumn18,
  3005. ultraGridColumn19,
  3006. ultraGridColumn20,
  3007. ultraGridColumn21,
  3008. ultraGridColumn22,
  3009. ultraGridColumn23,
  3010. ultraGridColumn24,
  3011. ultraGridColumn25});
  3012. ultraGridBand2.RowLayoutStyle = Infragistics.Win.UltraWinGrid.RowLayoutStyle.GroupLayout;
  3013. this.ultraGrid3.DisplayLayout.BandsSerializer.Add(ultraGridBand2);
  3014. this.ultraGrid3.DisplayLayout.CaptionVisible = Infragistics.Win.DefaultableBoolean.False;
  3015. this.ultraGrid3.Dock = System.Windows.Forms.DockStyle.Fill;
  3016. this.ultraGrid3.Location = new System.Drawing.Point(0, 0);
  3017. this.ultraGrid3.Margin = new System.Windows.Forms.Padding(4);
  3018. this.ultraGrid3.Name = "ultraGrid3";
  3019. this.ultraGrid3.Size = new System.Drawing.Size(1490, 260);
  3020. this.ultraGrid3.TabIndex = 2;
  3021. this.ultraGrid3.Text = "ultraGrid3";
  3022. this.ultraGrid3.AfterRowActivate += new System.EventHandler(this.ultraGrid3_AfterRowActivate);
  3023. this.ultraGrid3.ClickCell += new Infragistics.Win.UltraWinGrid.ClickCellEventHandler(this.ultraGrid3_ClickCell);
  3024. this.ultraGrid3.Click += new System.EventHandler(this.ultraGrid3_Click);
  3025. //
  3026. // ultraTabPageControl6
  3027. //
  3028. this.ultraTabPageControl6.Controls.Add(this.ultraGrid4);
  3029. this.ultraTabPageControl6.Location = new System.Drawing.Point(-10000, -10000);
  3030. this.ultraTabPageControl6.Margin = new System.Windows.Forms.Padding(4);
  3031. this.ultraTabPageControl6.Name = "ultraTabPageControl6";
  3032. this.ultraTabPageControl6.Size = new System.Drawing.Size(1490, 260);
  3033. //
  3034. // ultraGrid4
  3035. //
  3036. this.ultraGrid4.DataMember = "Table4";
  3037. this.ultraGrid4.DataSource = this.dataSet1;
  3038. ultraGridColumn26.Header.VisiblePosition = 0;
  3039. ultraGridColumn26.RowLayoutColumnInfo.OriginX = 0;
  3040. ultraGridColumn26.RowLayoutColumnInfo.OriginY = 0;
  3041. ultraGridColumn26.RowLayoutColumnInfo.SpanX = 2;
  3042. ultraGridColumn26.RowLayoutColumnInfo.SpanY = 2;
  3043. ultraGridColumn27.Header.VisiblePosition = 1;
  3044. ultraGridColumn27.RowLayoutColumnInfo.OriginX = 2;
  3045. ultraGridColumn27.RowLayoutColumnInfo.OriginY = 0;
  3046. ultraGridColumn27.RowLayoutColumnInfo.SpanX = 2;
  3047. ultraGridColumn27.RowLayoutColumnInfo.SpanY = 2;
  3048. ultraGridColumn28.Header.VisiblePosition = 2;
  3049. ultraGridColumn28.RowLayoutColumnInfo.OriginX = 4;
  3050. ultraGridColumn28.RowLayoutColumnInfo.OriginY = 0;
  3051. ultraGridColumn28.RowLayoutColumnInfo.SpanX = 2;
  3052. ultraGridColumn28.RowLayoutColumnInfo.SpanY = 2;
  3053. ultraGridColumn29.Header.VisiblePosition = 3;
  3054. ultraGridColumn29.RowLayoutColumnInfo.OriginX = 6;
  3055. ultraGridColumn29.RowLayoutColumnInfo.OriginY = 0;
  3056. ultraGridColumn29.RowLayoutColumnInfo.SpanX = 2;
  3057. ultraGridColumn29.RowLayoutColumnInfo.SpanY = 2;
  3058. ultraGridColumn30.Header.VisiblePosition = 4;
  3059. ultraGridColumn30.Hidden = true;
  3060. ultraGridColumn30.RowLayoutColumnInfo.OriginX = 8;
  3061. ultraGridColumn30.RowLayoutColumnInfo.OriginY = 0;
  3062. ultraGridColumn30.RowLayoutColumnInfo.SpanX = 2;
  3063. ultraGridColumn30.RowLayoutColumnInfo.SpanY = 2;
  3064. ultraGridColumn31.Header.VisiblePosition = 5;
  3065. ultraGridColumn31.Hidden = true;
  3066. ultraGridColumn31.RowLayoutColumnInfo.OriginX = 10;
  3067. ultraGridColumn31.RowLayoutColumnInfo.OriginY = 0;
  3068. ultraGridColumn31.RowLayoutColumnInfo.SpanX = 2;
  3069. ultraGridColumn31.RowLayoutColumnInfo.SpanY = 2;
  3070. ultraGridBand3.Columns.AddRange(new object[] {
  3071. ultraGridColumn26,
  3072. ultraGridColumn27,
  3073. ultraGridColumn28,
  3074. ultraGridColumn29,
  3075. ultraGridColumn30,
  3076. ultraGridColumn31});
  3077. ultraGridBand3.RowLayoutStyle = Infragistics.Win.UltraWinGrid.RowLayoutStyle.GroupLayout;
  3078. this.ultraGrid4.DisplayLayout.BandsSerializer.Add(ultraGridBand3);
  3079. this.ultraGrid4.DisplayLayout.CaptionVisible = Infragistics.Win.DefaultableBoolean.False;
  3080. this.ultraGrid4.Dock = System.Windows.Forms.DockStyle.Fill;
  3081. this.ultraGrid4.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  3082. this.ultraGrid4.Location = new System.Drawing.Point(0, 0);
  3083. this.ultraGrid4.Margin = new System.Windows.Forms.Padding(4);
  3084. this.ultraGrid4.Name = "ultraGrid4";
  3085. this.ultraGrid4.Size = new System.Drawing.Size(1490, 260);
  3086. this.ultraGrid4.TabIndex = 0;
  3087. this.ultraGrid4.Text = "ultraGrid4";
  3088. this.ultraGrid4.AfterRowActivate += new System.EventHandler(this.ultraGrid3_AfterRowActivate);
  3089. this.ultraGrid4.ClickCell += new Infragistics.Win.UltraWinGrid.ClickCellEventHandler(this.ultraGrid3_ClickCell);
  3090. this.ultraGrid4.Click += new System.EventHandler(this.ultraGrid4_Click);
  3091. //
  3092. // ultraTabPageControl8
  3093. //
  3094. this.ultraTabPageControl8.Controls.Add(this.ultraGrid5);
  3095. this.ultraTabPageControl8.Location = new System.Drawing.Point(-10000, -10000);
  3096. this.ultraTabPageControl8.Margin = new System.Windows.Forms.Padding(4);
  3097. this.ultraTabPageControl8.Name = "ultraTabPageControl8";
  3098. this.ultraTabPageControl8.Size = new System.Drawing.Size(1490, 260);
  3099. //
  3100. // ultraGrid5
  3101. //
  3102. this.ultraGrid5.DataMember = "Table5";
  3103. this.ultraGrid5.DataSource = this.dataSet1;
  3104. ultraGridColumn32.Header.VisiblePosition = 0;
  3105. ultraGridColumn32.Hidden = true;
  3106. ultraGridColumn33.Header.VisiblePosition = 1;
  3107. ultraGridColumn33.Hidden = true;
  3108. ultraGridColumn34.Header.VisiblePosition = 2;
  3109. ultraGridColumn35.Header.VisiblePosition = 3;
  3110. ultraGridColumn36.Header.VisiblePosition = 4;
  3111. ultraGridColumn37.Header.VisiblePosition = 5;
  3112. ultraGridColumn37.Hidden = true;
  3113. ultraGridColumn38.Header.VisiblePosition = 6;
  3114. ultraGridColumn39.Header.VisiblePosition = 7;
  3115. ultraGridColumn40.Header.VisiblePosition = 8;
  3116. ultraGridColumn40.Hidden = true;
  3117. ultraGridColumn41.Header.VisiblePosition = 9;
  3118. ultraGridColumn42.Header.VisiblePosition = 10;
  3119. ultraGridBand4.Columns.AddRange(new object[] {
  3120. ultraGridColumn32,
  3121. ultraGridColumn33,
  3122. ultraGridColumn34,
  3123. ultraGridColumn35,
  3124. ultraGridColumn36,
  3125. ultraGridColumn37,
  3126. ultraGridColumn38,
  3127. ultraGridColumn39,
  3128. ultraGridColumn40,
  3129. ultraGridColumn41,
  3130. ultraGridColumn42});
  3131. ultraGridBand4.RowLayoutStyle = Infragistics.Win.UltraWinGrid.RowLayoutStyle.GroupLayout;
  3132. this.ultraGrid5.DisplayLayout.BandsSerializer.Add(ultraGridBand4);
  3133. this.ultraGrid5.DisplayLayout.CaptionVisible = Infragistics.Win.DefaultableBoolean.False;
  3134. this.ultraGrid5.Dock = System.Windows.Forms.DockStyle.Fill;
  3135. this.ultraGrid5.Location = new System.Drawing.Point(0, 0);
  3136. this.ultraGrid5.Margin = new System.Windows.Forms.Padding(4);
  3137. this.ultraGrid5.Name = "ultraGrid5";
  3138. this.ultraGrid5.Size = new System.Drawing.Size(1490, 260);
  3139. this.ultraGrid5.TabIndex = 3;
  3140. this.ultraGrid5.Text = "ultraGrid5";
  3141. this.ultraGrid5.AfterRowActivate += new System.EventHandler(this.ultraGrid5_AfterRowActivate);
  3142. this.ultraGrid5.ClickCell += new Infragistics.Win.UltraWinGrid.ClickCellEventHandler(this.ultraGrid5_ClickCell);
  3143. this.ultraGrid5.Click += new System.EventHandler(this.ultraGrid5_Click);
  3144. //
  3145. // imageList1
  3146. //
  3147. this.imageList1.ImageStream = ((System.Windows.Forms.ImageListStreamer)(resources.GetObject("imageList1.ImageStream")));
  3148. this.imageList1.TransparentColor = System.Drawing.Color.Transparent;
  3149. this.imageList1.Images.SetKeyName(0, "");
  3150. this.imageList1.Images.SetKeyName(1, "");
  3151. this.imageList1.Images.SetKeyName(2, "");
  3152. this.imageList1.Images.SetKeyName(3, "");
  3153. //
  3154. // dataSet2
  3155. //
  3156. this.dataSet2.DataSetName = "NewDataSet";
  3157. this.dataSet2.Tables.AddRange(new System.Data.DataTable[] {
  3158. this.dataTable6});
  3159. //
  3160. // dataTable6
  3161. //
  3162. this.dataTable6.Columns.AddRange(new System.Data.DataColumn[] {
  3163. this.dataColumn58,
  3164. this.dataColumn59});
  3165. this.dataTable6.TableName = "Table1";
  3166. //
  3167. // dataColumn58
  3168. //
  3169. this.dataColumn58.Caption = "属性分类编码";
  3170. this.dataColumn58.ColumnName = "ITEMATTRCLASS";
  3171. //
  3172. // dataColumn59
  3173. //
  3174. this.dataColumn59.Caption = "属性分类名称";
  3175. this.dataColumn59.ColumnName = "ITEMATTRCLASSNAME";
  3176. //
  3177. // tableLayoutPanel1
  3178. //
  3179. this.tableLayoutPanel1.ColumnCount = 2;
  3180. this.tableLayoutPanel1.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Percent, 62.5F));
  3181. this.tableLayoutPanel1.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Percent, 37.5F));
  3182. this.tableLayoutPanel1.Controls.Add(this.ultraGroupBox5, 0, 2);
  3183. this.tableLayoutPanel1.Controls.Add(this.ultraGroupBox2, 0, 1);
  3184. this.tableLayoutPanel1.Controls.Add(this.ultraGroupBox1, 0, 0);
  3185. this.tableLayoutPanel1.Dock = System.Windows.Forms.DockStyle.Fill;
  3186. this.tableLayoutPanel1.Location = new System.Drawing.Point(0, 0);
  3187. this.tableLayoutPanel1.Margin = new System.Windows.Forms.Padding(4);
  3188. this.tableLayoutPanel1.Name = "tableLayoutPanel1";
  3189. this.tableLayoutPanel1.RowCount = 3;
  3190. this.tableLayoutPanel1.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Absolute, 50F));
  3191. this.tableLayoutPanel1.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Percent, 100F));
  3192. this.tableLayoutPanel1.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Absolute, 219F));
  3193. this.tableLayoutPanel1.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Absolute, 25F));
  3194. this.tableLayoutPanel1.Size = new System.Drawing.Size(1787, 900);
  3195. this.tableLayoutPanel1.TabIndex = 0;
  3196. //
  3197. // ultraGroupBox5
  3198. //
  3199. this.tableLayoutPanel1.SetColumnSpan(this.ultraGroupBox5, 2);
  3200. this.ultraGroupBox5.Controls.Add(this.ultraTabControl1);
  3201. this.ultraGroupBox5.Dock = System.Windows.Forms.DockStyle.Fill;
  3202. this.ultraGroupBox5.Location = new System.Drawing.Point(4, 685);
  3203. this.ultraGroupBox5.Margin = new System.Windows.Forms.Padding(4);
  3204. this.ultraGroupBox5.Name = "ultraGroupBox5";
  3205. this.ultraGroupBox5.Size = new System.Drawing.Size(1779, 211);
  3206. this.ultraGroupBox5.TabIndex = 4;
  3207. this.ultraGroupBox5.Text = "编辑区";
  3208. this.ultraGroupBox5.ViewStyle = Infragistics.Win.Misc.GroupBoxViewStyle.Office2007;
  3209. //
  3210. // ultraTabControl1
  3211. //
  3212. this.ultraTabControl1.Controls.Add(this.ultraTabSharedControlsPage1);
  3213. this.ultraTabControl1.Controls.Add(this.ultraTabPageControl1);
  3214. this.ultraTabControl1.Controls.Add(this.ultraTabPageControl2);
  3215. this.ultraTabControl1.Controls.Add(this.ultraTabPageControl3);
  3216. this.ultraTabControl1.Controls.Add(this.ultraTabPageControl7);
  3217. this.ultraTabControl1.Controls.Add(this.ultraTabPageControl9);
  3218. this.ultraTabControl1.Dock = System.Windows.Forms.DockStyle.Fill;
  3219. this.ultraTabControl1.Location = new System.Drawing.Point(3, 21);
  3220. this.ultraTabControl1.Margin = new System.Windows.Forms.Padding(4);
  3221. this.ultraTabControl1.Name = "ultraTabControl1";
  3222. this.ultraTabControl1.SharedControlsPage = this.ultraTabSharedControlsPage1;
  3223. this.ultraTabControl1.Size = new System.Drawing.Size(1773, 187);
  3224. this.ultraTabControl1.TabIndex = 0;
  3225. ultraTab1.Key = "01";
  3226. ultraTab1.TabPage = this.ultraTabPageControl1;
  3227. ultraTab1.Text = "编辑物料";
  3228. ultraTab2.Key = "0";
  3229. ultraTab2.TabPage = this.ultraTabPageControl2;
  3230. ultraTab2.Text = "编辑供方";
  3231. ultraTab3.Key = "1";
  3232. ultraTab3.TabPage = this.ultraTabPageControl3;
  3233. ultraTab3.Text = "编辑属性";
  3234. ultraTab7.Key = "2";
  3235. ultraTab7.TabPage = this.ultraTabPageControl7;
  3236. ultraTab7.Text = "物料标准";
  3237. ultraTab9.Key = "3";
  3238. ultraTab9.TabPage = this.ultraTabPageControl9;
  3239. ultraTab9.Text = "采购单位";
  3240. this.ultraTabControl1.Tabs.AddRange(new Infragistics.Win.UltraWinTabControl.UltraTab[] {
  3241. ultraTab1,
  3242. ultraTab2,
  3243. ultraTab3,
  3244. ultraTab7,
  3245. ultraTab9});
  3246. this.ultraTabControl1.ViewStyle = Infragistics.Win.UltraWinTabControl.ViewStyle.Office2007;
  3247. this.ultraTabControl1.SelectedTabChanged += new Infragistics.Win.UltraWinTabControl.SelectedTabChangedEventHandler(this.ultraTabControl1_SelectedTabChanged);
  3248. //
  3249. // ultraTabSharedControlsPage1
  3250. //
  3251. this.ultraTabSharedControlsPage1.Location = new System.Drawing.Point(-10000, -10000);
  3252. this.ultraTabSharedControlsPage1.Margin = new System.Windows.Forms.Padding(4);
  3253. this.ultraTabSharedControlsPage1.Name = "ultraTabSharedControlsPage1";
  3254. this.ultraTabSharedControlsPage1.Size = new System.Drawing.Size(1771, 161);
  3255. //
  3256. // ultraGroupBox2
  3257. //
  3258. this.tableLayoutPanel1.SetColumnSpan(this.ultraGroupBox2, 2);
  3259. this.ultraGroupBox2.Controls.Add(this.tableLayoutPanel2);
  3260. this.ultraGroupBox2.Dock = System.Windows.Forms.DockStyle.Fill;
  3261. this.ultraGroupBox2.Location = new System.Drawing.Point(4, 54);
  3262. this.ultraGroupBox2.Margin = new System.Windows.Forms.Padding(4);
  3263. this.ultraGroupBox2.Name = "ultraGroupBox2";
  3264. this.ultraGroupBox2.Size = new System.Drawing.Size(1779, 623);
  3265. this.ultraGroupBox2.TabIndex = 1;
  3266. this.ultraGroupBox2.Text = "物料管理";
  3267. this.ultraGroupBox2.ViewStyle = Infragistics.Win.Misc.GroupBoxViewStyle.Office2007;
  3268. //
  3269. // tableLayoutPanel2
  3270. //
  3271. this.tableLayoutPanel2.ColumnCount = 2;
  3272. this.tableLayoutPanel2.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Absolute, 259F));
  3273. this.tableLayoutPanel2.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Percent, 100F));
  3274. this.tableLayoutPanel2.Controls.Add(this.ulTreeMat, 0, 0);
  3275. this.tableLayoutPanel2.Controls.Add(this.ultraGroupBox3, 1, 0);
  3276. this.tableLayoutPanel2.Dock = System.Windows.Forms.DockStyle.Fill;
  3277. this.tableLayoutPanel2.Location = new System.Drawing.Point(3, 21);
  3278. this.tableLayoutPanel2.Margin = new System.Windows.Forms.Padding(4);
  3279. this.tableLayoutPanel2.Name = "tableLayoutPanel2";
  3280. this.tableLayoutPanel2.RowCount = 1;
  3281. this.tableLayoutPanel2.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Percent, 100F));
  3282. this.tableLayoutPanel2.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Absolute, 599F));
  3283. this.tableLayoutPanel2.Size = new System.Drawing.Size(1773, 599);
  3284. this.tableLayoutPanel2.TabIndex = 0;
  3285. //
  3286. // ulTreeMat
  3287. //
  3288. this.ulTreeMat.DisplayStyle = Infragistics.Win.UltraWinTree.UltraTreeDisplayStyle.WindowsVista;
  3289. this.ulTreeMat.Dock = System.Windows.Forms.DockStyle.Fill;
  3290. this.ulTreeMat.HideExpansionIndicators = Infragistics.Win.UltraWinTree.HideExpansionIndicators.Never;
  3291. this.ulTreeMat.Location = new System.Drawing.Point(4, 4);
  3292. this.ulTreeMat.Margin = new System.Windows.Forms.Padding(4);
  3293. this.ulTreeMat.Name = "ulTreeMat";
  3294. this.ulTreeMat.NodeConnectorStyle = Infragistics.Win.UltraWinTree.NodeConnectorStyle.Dotted;
  3295. appearance8.BackColor = System.Drawing.Color.SkyBlue;
  3296. _override1.ActiveNodeAppearance = appearance8;
  3297. appearance2.BorderColor = System.Drawing.Color.FromArgb(((int)(((byte)(224)))), ((int)(((byte)(224)))), ((int)(((byte)(224)))));
  3298. _override1.NodeAppearance = appearance2;
  3299. this.ulTreeMat.Override = _override1;
  3300. this.ulTreeMat.Size = new System.Drawing.Size(251, 591);
  3301. this.ulTreeMat.TabIndex = 0;
  3302. this.ulTreeMat.AfterActivate += new Infragistics.Win.UltraWinTree.AfterNodeChangedEventHandler(this.ulTreeMat_AfterActivate);
  3303. //
  3304. // ultraGroupBox3
  3305. //
  3306. this.ultraGroupBox3.Controls.Add(this.tableLayoutPanel3);
  3307. this.ultraGroupBox3.Dock = System.Windows.Forms.DockStyle.Fill;
  3308. this.ultraGroupBox3.Location = new System.Drawing.Point(263, 4);
  3309. this.ultraGroupBox3.Margin = new System.Windows.Forms.Padding(4);
  3310. this.ultraGroupBox3.Name = "ultraGroupBox3";
  3311. this.ultraGroupBox3.Size = new System.Drawing.Size(1506, 591);
  3312. this.ultraGroupBox3.TabIndex = 2;
  3313. this.ultraGroupBox3.ViewStyle = Infragistics.Win.Misc.GroupBoxViewStyle.Office2007;
  3314. //
  3315. // tableLayoutPanel3
  3316. //
  3317. this.tableLayoutPanel3.ColumnCount = 1;
  3318. this.tableLayoutPanel3.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Percent, 100F));
  3319. this.tableLayoutPanel3.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Absolute, 27F));
  3320. this.tableLayoutPanel3.Controls.Add(this.ultraTabControl2, 0, 1);
  3321. this.tableLayoutPanel3.Controls.Add(this.ultraGrid1, 0, 0);
  3322. this.tableLayoutPanel3.Dock = System.Windows.Forms.DockStyle.Fill;
  3323. this.tableLayoutPanel3.Location = new System.Drawing.Point(3, 0);
  3324. this.tableLayoutPanel3.Margin = new System.Windows.Forms.Padding(4);
  3325. this.tableLayoutPanel3.Name = "tableLayoutPanel3";
  3326. this.tableLayoutPanel3.RowCount = 2;
  3327. this.tableLayoutPanel3.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Percent, 50F));
  3328. this.tableLayoutPanel3.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Percent, 50F));
  3329. this.tableLayoutPanel3.Size = new System.Drawing.Size(1500, 588);
  3330. this.tableLayoutPanel3.TabIndex = 2;
  3331. //
  3332. // ultraTabControl2
  3333. //
  3334. this.ultraTabControl2.CloseButtonLocation = Infragistics.Win.UltraWinTabs.TabCloseButtonLocation.None;
  3335. this.ultraTabControl2.Controls.Add(this.ultraTabSharedControlsPage2);
  3336. this.ultraTabControl2.Controls.Add(this.ultraTabPageControl4);
  3337. this.ultraTabControl2.Controls.Add(this.ultraTabPageControl5);
  3338. this.ultraTabControl2.Controls.Add(this.ultraTabPageControl6);
  3339. this.ultraTabControl2.Controls.Add(this.ultraTabPageControl8);
  3340. this.ultraTabControl2.Dock = System.Windows.Forms.DockStyle.Fill;
  3341. this.ultraTabControl2.Location = new System.Drawing.Point(4, 298);
  3342. this.ultraTabControl2.Margin = new System.Windows.Forms.Padding(4);
  3343. this.ultraTabControl2.Name = "ultraTabControl2";
  3344. this.ultraTabControl2.SharedControlsPage = this.ultraTabSharedControlsPage2;
  3345. this.ultraTabControl2.Size = new System.Drawing.Size(1492, 286);
  3346. this.ultraTabControl2.TabIndex = 0;
  3347. ultraTab4.Key = "0";
  3348. ultraTab4.TabPage = this.ultraTabPageControl4;
  3349. ultraTab4.Text = "关联供方";
  3350. ultraTab5.Key = "1";
  3351. ultraTab5.TabPage = this.ultraTabPageControl5;
  3352. ultraTab5.Text = "物料属性";
  3353. ultraTab6.Key = "2";
  3354. ultraTab6.TabPage = this.ultraTabPageControl6;
  3355. ultraTab6.Text = "采购标准";
  3356. ultraTab8.Key = "3";
  3357. ultraTab8.TabPage = this.ultraTabPageControl8;
  3358. ultraTab8.Text = "采购单位";
  3359. this.ultraTabControl2.Tabs.AddRange(new Infragistics.Win.UltraWinTabControl.UltraTab[] {
  3360. ultraTab4,
  3361. ultraTab5,
  3362. ultraTab6,
  3363. ultraTab8});
  3364. this.ultraTabControl2.ViewStyle = Infragistics.Win.UltraWinTabControl.ViewStyle.Office2007;
  3365. this.ultraTabControl2.Click += new System.EventHandler(this.ultraTabControl2_Click);
  3366. //
  3367. // ultraTabSharedControlsPage2
  3368. //
  3369. this.ultraTabSharedControlsPage2.Location = new System.Drawing.Point(-10000, -10000);
  3370. this.ultraTabSharedControlsPage2.Margin = new System.Windows.Forms.Padding(4);
  3371. this.ultraTabSharedControlsPage2.Name = "ultraTabSharedControlsPage2";
  3372. this.ultraTabSharedControlsPage2.Size = new System.Drawing.Size(1490, 260);
  3373. //
  3374. // ultraGrid1
  3375. //
  3376. this.ultraGrid1.DataMember = "Table1";
  3377. this.ultraGrid1.DataSource = this.dataSet1;
  3378. ultraGridColumn43.CellActivation = Infragistics.Win.UltraWinGrid.Activation.ActivateOnly;
  3379. ultraGridColumn43.Header.VisiblePosition = 0;
  3380. ultraGridColumn44.CellActivation = Infragistics.Win.UltraWinGrid.Activation.ActivateOnly;
  3381. ultraGridColumn44.Header.VisiblePosition = 1;
  3382. ultraGridColumn45.Header.VisiblePosition = 2;
  3383. ultraGridColumn45.Hidden = true;
  3384. ultraGridColumn46.Header.VisiblePosition = 4;
  3385. ultraGridColumn47.CellActivation = Infragistics.Win.UltraWinGrid.Activation.ActivateOnly;
  3386. ultraGridColumn47.Header.VisiblePosition = 5;
  3387. ultraGridColumn48.Header.VisiblePosition = 6;
  3388. ultraGridColumn48.Hidden = true;
  3389. ultraGridColumn49.Header.VisiblePosition = 8;
  3390. ultraGridColumn50.Header.VisiblePosition = 9;
  3391. ultraGridColumn51.Header.VisiblePosition = 10;
  3392. ultraGridColumn52.Header.VisiblePosition = 11;
  3393. ultraGridColumn53.Header.VisiblePosition = 12;
  3394. ultraGridColumn53.Hidden = true;
  3395. ultraGridColumn54.Header.VisiblePosition = 13;
  3396. ultraGridColumn54.Hidden = true;
  3397. ultraGridColumn55.Header.VisiblePosition = 3;
  3398. ultraGridColumn56.Header.VisiblePosition = 14;
  3399. ultraGridColumn56.Hidden = true;
  3400. ultraGridColumn57.Header.VisiblePosition = 15;
  3401. ultraGridColumn57.Hidden = true;
  3402. ultraGridColumn58.Header.VisiblePosition = 7;
  3403. ultraGridColumn59.Header.VisiblePosition = 16;
  3404. ultraGridColumn59.Hidden = true;
  3405. ultraGridBand5.Columns.AddRange(new object[] {
  3406. ultraGridColumn43,
  3407. ultraGridColumn44,
  3408. ultraGridColumn45,
  3409. ultraGridColumn46,
  3410. ultraGridColumn47,
  3411. ultraGridColumn48,
  3412. ultraGridColumn49,
  3413. ultraGridColumn50,
  3414. ultraGridColumn51,
  3415. ultraGridColumn52,
  3416. ultraGridColumn53,
  3417. ultraGridColumn54,
  3418. ultraGridColumn55,
  3419. ultraGridColumn56,
  3420. ultraGridColumn57,
  3421. ultraGridColumn58,
  3422. ultraGridColumn59});
  3423. this.ultraGrid1.DisplayLayout.BandsSerializer.Add(ultraGridBand5);
  3424. this.ultraGrid1.DisplayLayout.CaptionVisible = Infragistics.Win.DefaultableBoolean.False;
  3425. this.ultraGrid1.Dock = System.Windows.Forms.DockStyle.Fill;
  3426. this.ultraGrid1.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  3427. this.ultraGrid1.Location = new System.Drawing.Point(4, 4);
  3428. this.ultraGrid1.Margin = new System.Windows.Forms.Padding(4);
  3429. this.ultraGrid1.Name = "ultraGrid1";
  3430. this.ultraGrid1.Size = new System.Drawing.Size(1492, 286);
  3431. this.ultraGrid1.TabIndex = 1;
  3432. this.ultraGrid1.Text = "ultraGrid1";
  3433. this.ultraGrid1.AfterRowActivate += new System.EventHandler(this.ultraGrid1_AfterRowActivate);
  3434. this.ultraGrid1.ClickCell += new Infragistics.Win.UltraWinGrid.ClickCellEventHandler(this.ultraGrid1_ClickCell);
  3435. //
  3436. // ultraGroupBox1
  3437. //
  3438. this.tableLayoutPanel1.SetColumnSpan(this.ultraGroupBox1, 2);
  3439. this.ultraGroupBox1.Controls.Add(this.label66);
  3440. this.ultraGroupBox1.Controls.Add(this.txt_ARC_ITEM);
  3441. this.ultraGroupBox1.Controls.Add(this.txt_ARC_CODE);
  3442. this.ultraGroupBox1.Controls.Add(this.checkBox1);
  3443. this.ultraGroupBox1.Controls.Add(this.cmbNum);
  3444. this.ultraGroupBox1.Controls.Add(this.label65);
  3445. this.ultraGroupBox1.Controls.Add(this.label64);
  3446. this.ultraGroupBox1.Controls.Add(this.chk_showHasDelete);
  3447. this.ultraGroupBox1.Controls.Add(this.label41);
  3448. this.ultraGroupBox1.Controls.Add(this.label36);
  3449. this.ultraGroupBox1.Controls.Add(this.label35);
  3450. this.ultraGroupBox1.Controls.Add(this.ultraTextEditor2);
  3451. this.ultraGroupBox1.Controls.Add(this.ultraTextEditor1);
  3452. this.ultraGroupBox1.Dock = System.Windows.Forms.DockStyle.Fill;
  3453. this.ultraGroupBox1.Location = new System.Drawing.Point(4, 4);
  3454. this.ultraGroupBox1.Margin = new System.Windows.Forms.Padding(4);
  3455. this.ultraGroupBox1.Name = "ultraGroupBox1";
  3456. this.ultraGroupBox1.Size = new System.Drawing.Size(1779, 42);
  3457. this.ultraGroupBox1.TabIndex = 0;
  3458. this.ultraGroupBox1.ViewStyle = Infragistics.Win.Misc.GroupBoxViewStyle.Office2007;
  3459. //
  3460. // label66
  3461. //
  3462. this.label66.AutoSize = true;
  3463. this.label66.Location = new System.Drawing.Point(1453, 14);
  3464. this.label66.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
  3465. this.label66.Name = "label66";
  3466. this.label66.Size = new System.Drawing.Size(97, 15);
  3467. this.label66.TabIndex = 169;
  3468. this.label66.Text = "物料分类编码";
  3469. this.label66.Visible = false;
  3470. //
  3471. // txt_ARC_ITEM
  3472. //
  3473. this.txt_ARC_ITEM.Location = new System.Drawing.Point(789, 9);
  3474. this.txt_ARC_ITEM.Margin = new System.Windows.Forms.Padding(4);
  3475. this.txt_ARC_ITEM.Name = "txt_ARC_ITEM";
  3476. this.txt_ARC_ITEM.ReadOnly = true;
  3477. this.txt_ARC_ITEM.Size = new System.Drawing.Size(216, 24);
  3478. this.txt_ARC_ITEM.TabIndex = 168;
  3479. //
  3480. // txt_ARC_CODE
  3481. //
  3482. this.txt_ARC_CODE.Location = new System.Drawing.Point(1560, 9);
  3483. this.txt_ARC_CODE.Margin = new System.Windows.Forms.Padding(4);
  3484. this.txt_ARC_CODE.Name = "txt_ARC_CODE";
  3485. this.txt_ARC_CODE.ReadOnly = true;
  3486. this.txt_ARC_CODE.Size = new System.Drawing.Size(57, 24);
  3487. this.txt_ARC_CODE.TabIndex = 167;
  3488. this.txt_ARC_CODE.Visible = false;
  3489. //
  3490. // checkBox1
  3491. //
  3492. this.checkBox1.AutoSize = true;
  3493. this.checkBox1.BackColor = System.Drawing.SystemColors.GradientInactiveCaption;
  3494. this.checkBox1.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  3495. this.checkBox1.Location = new System.Drawing.Point(689, 11);
  3496. this.checkBox1.Margin = new System.Windows.Forms.Padding(4);
  3497. this.checkBox1.Name = "checkBox1";
  3498. this.checkBox1.Size = new System.Drawing.Size(89, 19);
  3499. this.checkBox1.TabIndex = 166;
  3500. this.checkBox1.Text = "物料分类";
  3501. this.checkBox1.UseVisualStyleBackColor = false;
  3502. //
  3503. // cmbNum
  3504. //
  3505. this.cmbNum.DropDownStyle = Infragistics.Win.DropDownStyle.DropDownList;
  3506. valueListItem15.DataValue = "500";
  3507. valueListItem15.DisplayText = "五百";
  3508. valueListItem16.DataValue = "1000";
  3509. valueListItem16.DisplayText = "一千";
  3510. valueListItem17.DataValue = "2000";
  3511. valueListItem17.DisplayText = "二千";
  3512. valueListItem18.DataValue = "5000";
  3513. valueListItem18.DisplayText = "五千";
  3514. valueListItem19.DataValue = "";
  3515. valueListItem19.DisplayText = "全部";
  3516. this.cmbNum.Items.AddRange(new Infragistics.Win.ValueListItem[] {
  3517. valueListItem15,
  3518. valueListItem16,
  3519. valueListItem17,
  3520. valueListItem18,
  3521. valueListItem19});
  3522. this.cmbNum.Location = new System.Drawing.Point(1097, 9);
  3523. this.cmbNum.Margin = new System.Windows.Forms.Padding(4);
  3524. this.cmbNum.Name = "cmbNum";
  3525. this.cmbNum.Size = new System.Drawing.Size(75, 24);
  3526. this.cmbNum.TabIndex = 164;
  3527. //
  3528. // label65
  3529. //
  3530. this.label65.AutoSize = true;
  3531. this.label65.Location = new System.Drawing.Point(1176, 14);
  3532. this.label65.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
  3533. this.label65.Name = "label65";
  3534. this.label65.Size = new System.Drawing.Size(52, 15);
  3535. this.label65.TabIndex = 163;
  3536. this.label65.Text = "条记录";
  3537. //
  3538. // label64
  3539. //
  3540. this.label64.AutoSize = true;
  3541. this.label64.Location = new System.Drawing.Point(1025, 14);
  3542. this.label64.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
  3543. this.label64.Name = "label64";
  3544. this.label64.Size = new System.Drawing.Size(67, 15);
  3545. this.label64.TabIndex = 162;
  3546. this.label64.Text = "每页显示";
  3547. //
  3548. // chk_showHasDelete
  3549. //
  3550. this.chk_showHasDelete.AutoSize = true;
  3551. this.chk_showHasDelete.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  3552. this.chk_showHasDelete.ForeColor = System.Drawing.Color.Red;
  3553. this.chk_showHasDelete.Location = new System.Drawing.Point(1255, 11);
  3554. this.chk_showHasDelete.Margin = new System.Windows.Forms.Padding(4);
  3555. this.chk_showHasDelete.Name = "chk_showHasDelete";
  3556. this.chk_showHasDelete.Size = new System.Drawing.Size(149, 19);
  3557. this.chk_showHasDelete.TabIndex = 160;
  3558. this.chk_showHasDelete.Text = "显示已作废的物料";
  3559. this.chk_showHasDelete.UseVisualStyleBackColor = true;
  3560. this.chk_showHasDelete.CheckedChanged += new System.EventHandler(this.chk_showHasDelete_CheckedChanged);
  3561. //
  3562. // label41
  3563. //
  3564. this.label41.AutoSize = true;
  3565. this.label41.BackColor = System.Drawing.SystemColors.GradientInactiveCaption;
  3566. this.label41.Location = new System.Drawing.Point(313, 14);
  3567. this.label41.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
  3568. this.label41.Name = "label41";
  3569. this.label41.Size = new System.Drawing.Size(67, 15);
  3570. this.label41.TabIndex = 13;
  3571. this.label41.Text = "物料名称";
  3572. //
  3573. // label36
  3574. //
  3575. this.label36.AutoSize = true;
  3576. this.label36.BackColor = System.Drawing.SystemColors.GradientInactiveCaption;
  3577. this.label36.Location = new System.Drawing.Point(13, 14);
  3578. this.label36.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
  3579. this.label36.Name = "label36";
  3580. this.label36.Size = new System.Drawing.Size(67, 15);
  3581. this.label36.TabIndex = 11;
  3582. this.label36.Text = "物料编码";
  3583. //
  3584. // label35
  3585. //
  3586. this.label35.AutoSize = true;
  3587. this.label35.BackColor = System.Drawing.SystemColors.GradientInactiveCaption;
  3588. this.label35.Location = new System.Drawing.Point(1157, 14);
  3589. this.label35.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
  3590. this.label35.Name = "label35";
  3591. this.label35.Size = new System.Drawing.Size(0, 15);
  3592. this.label35.TabIndex = 10;
  3593. //
  3594. // ultraTextEditor2
  3595. //
  3596. this.ultraTextEditor2.Location = new System.Drawing.Point(387, 9);
  3597. this.ultraTextEditor2.Margin = new System.Windows.Forms.Padding(4);
  3598. this.ultraTextEditor2.Name = "ultraTextEditor2";
  3599. this.ultraTextEditor2.Size = new System.Drawing.Size(283, 24);
  3600. this.ultraTextEditor2.TabIndex = 7;
  3601. //
  3602. // ultraTextEditor1
  3603. //
  3604. this.ultraTextEditor1.Location = new System.Drawing.Point(88, 9);
  3605. this.ultraTextEditor1.Margin = new System.Windows.Forms.Padding(4);
  3606. this.ultraTextEditor1.Name = "ultraTextEditor1";
  3607. this.ultraTextEditor1.Size = new System.Drawing.Size(216, 24);
  3608. this.ultraTextEditor1.TabIndex = 5;
  3609. //
  3610. // Ultcmb_MAT_TYPE
  3611. //
  3612. this.Ultcmb_MAT_TYPE.DisplayStyle = Infragistics.Win.EmbeddableElementDisplayStyle.Office2007;
  3613. this.Ultcmb_MAT_TYPE.DropDownStyle = Infragistics.Win.DropDownStyle.DropDownList;
  3614. valueListItem48.CheckState = System.Windows.Forms.CheckState.Checked;
  3615. valueListItem48.DataValue = "1";
  3616. valueListItem48.DisplayText = "计划价";
  3617. valueListItem49.DataValue = "2";
  3618. valueListItem49.DisplayText = "批次计价";
  3619. valueListItem50.DataValue = "3";
  3620. valueListItem50.DisplayText = "实时移动平均价";
  3621. valueListItem51.DataValue = "4";
  3622. valueListItem51.DisplayText = "月末移动平均价";
  3623. this.Ultcmb_MAT_TYPE.Items.AddRange(new Infragistics.Win.ValueListItem[] {
  3624. valueListItem48,
  3625. valueListItem49,
  3626. valueListItem50,
  3627. valueListItem51});
  3628. this.Ultcmb_MAT_TYPE.Location = new System.Drawing.Point(1682, 4);
  3629. this.Ultcmb_MAT_TYPE.Margin = new System.Windows.Forms.Padding(4);
  3630. this.Ultcmb_MAT_TYPE.Name = "Ultcmb_MAT_TYPE";
  3631. this.Ultcmb_MAT_TYPE.Size = new System.Drawing.Size(189, 24);
  3632. this.Ultcmb_MAT_TYPE.TabIndex = 177;
  3633. //
  3634. // label83
  3635. //
  3636. this.label83.BackColor = System.Drawing.SystemColors.Highlight;
  3637. this.label83.Location = new System.Drawing.Point(1564, 4);
  3638. this.label83.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
  3639. this.label83.Name = "label83";
  3640. this.label83.Size = new System.Drawing.Size(115, 26);
  3641. this.label83.TabIndex = 176;
  3642. this.label83.Text = "物 料 大 类";
  3643. this.label83.TextAlign = System.Drawing.ContentAlignment.MiddleRight;
  3644. //
  3645. // FrmPurMat
  3646. //
  3647. this.AutoScaleDimensions = new System.Drawing.SizeF(8F, 15F);
  3648. this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
  3649. this.ClientSize = new System.Drawing.Size(1787, 900);
  3650. this.Controls.Add(this.tableLayoutPanel1);
  3651. this.Margin = new System.Windows.Forms.Padding(7, 6, 7, 6);
  3652. this.Name = "FrmPurMat";
  3653. this.Text = "FrmPurMat";
  3654. this.Load += new System.EventHandler(this.FrmPurMat_Load);
  3655. this.ultraTabPageControl1.ResumeLayout(false);
  3656. this.panel1.ResumeLayout(false);
  3657. ((System.ComponentModel.ISupportInitialize)(this.ultraGroupBox6)).EndInit();
  3658. this.ultraGroupBox6.ResumeLayout(false);
  3659. this.ultraGroupBox6.PerformLayout();
  3660. ((System.ComponentModel.ISupportInitialize)(this.txt_INV_PHYSIC_USERID)).EndInit();
  3661. ((System.ComponentModel.ISupportInitialize)(this.txt_ItemArcCodeName)).EndInit();
  3662. ((System.ComponentModel.ISupportInitialize)(this.txt_ItemArcCode)).EndInit();
  3663. ((System.ComponentModel.ISupportInitialize)(this.txt_DELVRY_RANGE_MIN)).EndInit();
  3664. ((System.ComponentModel.ISupportInitialize)(this.txt_DELVRY_RANGE_MAX)).EndInit();
  3665. ((System.ComponentModel.ISupportInitialize)(this.txt_DELVRY_RANGE_TPE)).EndInit();
  3666. ((System.ComponentModel.ISupportInitialize)(this.txt_PC_FLAG)).EndInit();
  3667. ((System.ComponentModel.ISupportInitialize)(this.txt_BASE_UNIT_VALUE)).EndInit();
  3668. ((System.ComponentModel.ISupportInitialize)(this.txt_IS_BUDGET_CTRL)).EndInit();
  3669. ((System.ComponentModel.ISupportInitialize)(this.Ultcmb_WEIGHT_UNIT_CODE)).EndInit();
  3670. ((System.ComponentModel.ISupportInitialize)(this.Ultcmb_WEIGHT_UNIT)).EndInit();
  3671. ((System.ComponentModel.ISupportInitialize)(this.txt_PLANNER_ROLE_NAME)).EndInit();
  3672. ((System.ComponentModel.ISupportInitialize)(this.txt_BUYER_ROLE_NAME)).EndInit();
  3673. ((System.ComponentModel.ISupportInitialize)(this.Ultcmb_RECEIVE_TYPE)).EndInit();
  3674. ((System.ComponentModel.ISupportInitialize)(this.Ultcmb_BATCH_FLAG)).EndInit();
  3675. ((System.ComponentModel.ISupportInitialize)(this.Ultcmb_PUR_STANDARDS)).EndInit();
  3676. ((System.ComponentModel.ISupportInitialize)(this.Ultcmb_INV_WASTE_FAC_UOM)).EndInit();
  3677. ((System.ComponentModel.ISupportInitialize)(this.Ultcmb_METERING_FLAG)).EndInit();
  3678. ((System.ComponentModel.ISupportInitialize)(this.Ultcmb_PRICE_TYPE)).EndInit();
  3679. ((System.ComponentModel.ISupportInitialize)(this.Ultcmb_CURRENCY_CODE)).EndInit();
  3680. ((System.ComponentModel.ISupportInitialize)(this.Ultcmb_LIFE_CYCLE_UOM)).EndInit();
  3681. this.ultraTabPageControl2.ResumeLayout(false);
  3682. this.ultraTabPageControl2.PerformLayout();
  3683. ((System.ComponentModel.ISupportInitialize)(this.txt_DELVRY_RANGE_MIN2)).EndInit();
  3684. ((System.ComponentModel.ISupportInitialize)(this.txt_DELVRY_RANGE_MAX2)).EndInit();
  3685. ((System.ComponentModel.ISupportInitialize)(this.txt_delivery_type_2)).EndInit();
  3686. ((System.ComponentModel.ISupportInitialize)(this.txt_IS_DEFAULT)).EndInit();
  3687. ((System.ComponentModel.ISupportInitialize)(this.txt_PLANNER_ROLE_NAME1)).EndInit();
  3688. ((System.ComponentModel.ISupportInitialize)(this.txt_BUYER_ROLE_NAME1)).EndInit();
  3689. ((System.ComponentModel.ISupportInitialize)(this.txt_SUPP_NAME)).EndInit();
  3690. this.ultraTabPageControl3.ResumeLayout(false);
  3691. this.ultraTabPageControl3.PerformLayout();
  3692. ((System.ComponentModel.ISupportInitialize)(this.txt_IsLevel)).EndInit();
  3693. ((System.ComponentModel.ISupportInitialize)(this.txt_ITEM_ATTR_CODE)).EndInit();
  3694. ((System.ComponentModel.ISupportInitialize)(this.txt_ITEM_ATTR)).EndInit();
  3695. ((System.ComponentModel.ISupportInitialize)(this.txt_IS_DEFAULT_ATTR)).EndInit();
  3696. ((System.ComponentModel.ISupportInitialize)(this.txt_ORDER_NUM)).EndInit();
  3697. this.ultraTabPageControl7.ResumeLayout(false);
  3698. this.ultraTabPageControl7.PerformLayout();
  3699. ((System.ComponentModel.ISupportInitialize)(this.txt_STANDARDS_ID)).EndInit();
  3700. ((System.ComponentModel.ISupportInitialize)(this.txt_STANDARDS_CODE)).EndInit();
  3701. ((System.ComponentModel.ISupportInitialize)(this.txt_IS_DEFAULT_STANDRANDS)).EndInit();
  3702. ((System.ComponentModel.ISupportInitialize)(this.txt_REMARK_STANDARD)).EndInit();
  3703. ((System.ComponentModel.ISupportInitialize)(this.txtORDER_NUM)).EndInit();
  3704. this.ultraTabPageControl9.ResumeLayout(false);
  3705. this.ultraTabPageControl9.PerformLayout();
  3706. ((System.ComponentModel.ISupportInitialize)(this.txt_ITEM_UOM_CONEFFICIENT)).EndInit();
  3707. ((System.ComponentModel.ISupportInitialize)(this.txt_WEIGHT_UNIT_CODE)).EndInit();
  3708. ((System.ComponentModel.ISupportInitialize)(this.txt_UOM_CODE)).EndInit();
  3709. ((System.ComponentModel.ISupportInitialize)(this.txt_REMARK_UOM)).EndInit();
  3710. ((System.ComponentModel.ISupportInitialize)(this.txt_IS_DEFAULT_UOM)).EndInit();
  3711. ((System.ComponentModel.ISupportInitialize)(this.txt_WEIGHT_UNIT)).EndInit();
  3712. ((System.ComponentModel.ISupportInitialize)(this.txt_UOM_NAME)).EndInit();
  3713. this.ultraTabPageControl4.ResumeLayout(false);
  3714. this.ultraTabPageControl4.PerformLayout();
  3715. ((System.ComponentModel.ISupportInitialize)(this.ultraGrid2)).EndInit();
  3716. ((System.ComponentModel.ISupportInitialize)(this.dataSet1)).EndInit();
  3717. ((System.ComponentModel.ISupportInitialize)(this.dataTable1)).EndInit();
  3718. ((System.ComponentModel.ISupportInitialize)(this.dataTable2)).EndInit();
  3719. ((System.ComponentModel.ISupportInitialize)(this.dataTable3)).EndInit();
  3720. ((System.ComponentModel.ISupportInitialize)(this.dataTable4)).EndInit();
  3721. ((System.ComponentModel.ISupportInitialize)(this.dataTable5)).EndInit();
  3722. ((System.ComponentModel.ISupportInitialize)(this.dataTable7)).EndInit();
  3723. this.ultraTabPageControl5.ResumeLayout(false);
  3724. ((System.ComponentModel.ISupportInitialize)(this.ultraGrid3)).EndInit();
  3725. this.ultraTabPageControl6.ResumeLayout(false);
  3726. ((System.ComponentModel.ISupportInitialize)(this.ultraGrid4)).EndInit();
  3727. this.ultraTabPageControl8.ResumeLayout(false);
  3728. ((System.ComponentModel.ISupportInitialize)(this.ultraGrid5)).EndInit();
  3729. ((System.ComponentModel.ISupportInitialize)(this.dataSet2)).EndInit();
  3730. ((System.ComponentModel.ISupportInitialize)(this.dataTable6)).EndInit();
  3731. this.tableLayoutPanel1.ResumeLayout(false);
  3732. ((System.ComponentModel.ISupportInitialize)(this.ultraGroupBox5)).EndInit();
  3733. this.ultraGroupBox5.ResumeLayout(false);
  3734. ((System.ComponentModel.ISupportInitialize)(this.ultraTabControl1)).EndInit();
  3735. this.ultraTabControl1.ResumeLayout(false);
  3736. ((System.ComponentModel.ISupportInitialize)(this.ultraGroupBox2)).EndInit();
  3737. this.ultraGroupBox2.ResumeLayout(false);
  3738. this.tableLayoutPanel2.ResumeLayout(false);
  3739. ((System.ComponentModel.ISupportInitialize)(this.ulTreeMat)).EndInit();
  3740. ((System.ComponentModel.ISupportInitialize)(this.ultraGroupBox3)).EndInit();
  3741. this.ultraGroupBox3.ResumeLayout(false);
  3742. this.tableLayoutPanel3.ResumeLayout(false);
  3743. ((System.ComponentModel.ISupportInitialize)(this.ultraTabControl2)).EndInit();
  3744. this.ultraTabControl2.ResumeLayout(false);
  3745. ((System.ComponentModel.ISupportInitialize)(this.ultraGrid1)).EndInit();
  3746. ((System.ComponentModel.ISupportInitialize)(this.ultraGroupBox1)).EndInit();
  3747. this.ultraGroupBox1.ResumeLayout(false);
  3748. this.ultraGroupBox1.PerformLayout();
  3749. ((System.ComponentModel.ISupportInitialize)(this.txt_ARC_ITEM)).EndInit();
  3750. ((System.ComponentModel.ISupportInitialize)(this.txt_ARC_CODE)).EndInit();
  3751. ((System.ComponentModel.ISupportInitialize)(this.cmbNum)).EndInit();
  3752. ((System.ComponentModel.ISupportInitialize)(this.ultraTextEditor2)).EndInit();
  3753. ((System.ComponentModel.ISupportInitialize)(this.ultraTextEditor1)).EndInit();
  3754. ((System.ComponentModel.ISupportInitialize)(this.Ultcmb_MAT_TYPE)).EndInit();
  3755. this.ResumeLayout(false);
  3756. }
  3757. #endregion
  3758. private System.Windows.Forms.TableLayoutPanel tableLayoutPanel1;
  3759. private Infragistics.Win.Misc.UltraGroupBox ultraGroupBox5;
  3760. private Infragistics.Win.UltraWinTabControl.UltraTabControl ultraTabControl1;
  3761. private Infragistics.Win.UltraWinTabControl.UltraTabSharedControlsPage ultraTabSharedControlsPage1;
  3762. private Infragistics.Win.UltraWinTabControl.UltraTabPageControl ultraTabPageControl1;
  3763. private Infragistics.Win.UltraWinTabControl.UltraTabPageControl ultraTabPageControl3;
  3764. private Infragistics.Win.Misc.UltraGroupBox ultraGroupBox3;
  3765. private Infragistics.Win.Misc.UltraGroupBox ultraGroupBox2;
  3766. private Infragistics.Win.Misc.UltraGroupBox ultraGroupBox1;
  3767. private System.Windows.Forms.TableLayoutPanel tableLayoutPanel2;
  3768. private Infragistics.Win.UltraWinEditors.UltraTextEditor ultraTextEditor2;
  3769. private Infragistics.Win.UltraWinEditors.UltraTextEditor ultraTextEditor1;
  3770. private Infragistics.Win.UltraWinGrid.UltraGrid ultraGrid3;
  3771. private System.Data.DataSet dataSet1;
  3772. private System.Data.DataTable dataTable1;
  3773. private System.Data.DataTable dataTable2;
  3774. private System.Data.DataTable dataTable3;
  3775. private Infragistics.Win.UltraWinGrid.UltraGrid ultraGrid2;
  3776. private Infragistics.Win.UltraWinTree.UltraTree ulTreeMat;
  3777. private Infragistics.Win.UltraWinGrid.UltraGrid ultraGrid1;
  3778. private System.Windows.Forms.TextBox txt_ORDER_NUM11;
  3779. private System.Windows.Forms.Label label37;
  3780. private System.Windows.Forms.Label label38;
  3781. private System.Windows.Forms.TextBox txt_ITEM_CODE2;
  3782. private System.Windows.Forms.Label label39;
  3783. private Infragistics.Win.UltraWinTabControl.UltraTabPageControl ultraTabPageControl2;
  3784. private System.Windows.Forms.TextBox txt_JS;
  3785. private System.Windows.Forms.Label label32;
  3786. private System.Windows.Forms.TextBox txt_YWKS;
  3787. private System.Windows.Forms.Label label33;
  3788. private System.Windows.Forms.Label label34;
  3789. private System.Data.DataColumn dataColumn1;
  3790. private System.Data.DataColumn dataColumn2;
  3791. private System.Data.DataColumn dataColumn3;
  3792. private System.Data.DataColumn dataColumn5;
  3793. private System.Data.DataColumn dataColumn6;
  3794. private System.Data.DataColumn dataColumn7;
  3795. private System.Data.DataColumn dataColumn8;
  3796. private System.Data.DataColumn dataColumn9;
  3797. private System.Data.DataColumn dataColumn10;
  3798. private System.Data.DataColumn dataColumn11;
  3799. private Infragistics.Win.Misc.UltraGroupBox ultraGroupBox6;
  3800. private Infragistics.Win.UltraWinEditors.UltraComboEditor Ultcmb_RECEIVE_TYPE;
  3801. private Infragistics.Win.UltraWinEditors.UltraComboEditor Ultcmb_BATCH_FLAG;
  3802. private Infragistics.Win.UltraWinEditors.UltraComboEditor Ultcmb_PUR_STANDARDS;
  3803. private Infragistics.Win.UltraWinEditors.UltraComboEditor Ultcmb_INV_WASTE_FAC_UOM;
  3804. private Infragistics.Win.UltraWinEditors.UltraComboEditor Ultcmb_METERING_FLAG;
  3805. private Infragistics.Win.UltraWinEditors.UltraComboEditor Ultcmb_PRICE_TYPE;
  3806. private Infragistics.Win.UltraWinEditors.UltraComboEditor Ultcmb_CURRENCY_CODE;
  3807. private Infragistics.Win.UltraWinEditors.UltraComboEditor Ultcmb_LIFE_CYCLE_UOM;
  3808. private System.Windows.Forms.Label label25;
  3809. private System.Windows.Forms.Label label27;
  3810. private System.Windows.Forms.TextBox txt_PUR_STANDARDS_CODE;
  3811. private System.Windows.Forms.Label label28;
  3812. private System.Windows.Forms.Label label29;
  3813. private System.Windows.Forms.Label label30;
  3814. private System.Windows.Forms.Label label19;
  3815. private System.Windows.Forms.TextBox txt_MIN_STOCK;
  3816. private System.Windows.Forms.Label label20;
  3817. private System.Windows.Forms.TextBox txt_MAX_STOCK;
  3818. private System.Windows.Forms.Label label21;
  3819. private System.Windows.Forms.TextBox txt_LEAD_TIME;
  3820. private System.Windows.Forms.TextBox txt_INV_WASTE_FAC;
  3821. private System.Windows.Forms.Label label23;
  3822. private System.Windows.Forms.Label label24;
  3823. private System.Windows.Forms.TextBox txt_LIFE_CYCLE;
  3824. private System.Windows.Forms.Label label18;
  3825. private System.Windows.Forms.TextBox txt_MIN_QTY;
  3826. private System.Windows.Forms.Label label17;
  3827. private System.Windows.Forms.TextBox txt_QTY_MULTIPLE;
  3828. private System.Windows.Forms.Label label16;
  3829. private System.Windows.Forms.Label label15;
  3830. private System.Windows.Forms.TextBox txt_BUG_PRICE;
  3831. private System.Windows.Forms.Label label14;
  3832. private System.Windows.Forms.TextBox txt_LAST_PRICE;
  3833. private System.Windows.Forms.Label label13;
  3834. private System.Windows.Forms.Label label12;
  3835. private System.Windows.Forms.Label label11;
  3836. private System.Windows.Forms.TextBox txt_MONTH_END_AVG_PRICE;
  3837. private System.Windows.Forms.Label label10;
  3838. private System.Windows.Forms.Label label9;
  3839. private System.Windows.Forms.TextBox txt_ITEM_NAME;
  3840. private System.Windows.Forms.Label label8;
  3841. private System.Windows.Forms.TextBox txt_ITEM_DESC_E;
  3842. private System.Windows.Forms.Label label7;
  3843. private System.Windows.Forms.TextBox txt_ITEM_DESC;
  3844. private System.Windows.Forms.Label label6;
  3845. private System.Windows.Forms.TextBox txt_ITEM_MODEL;
  3846. private System.Windows.Forms.Label label5;
  3847. private System.Windows.Forms.TextBox txt_ITEM_SPEC;
  3848. private System.Windows.Forms.TextBox txt_ITEM_CODE;
  3849. private System.Windows.Forms.Label label1;
  3850. private System.Data.DataColumn dataColumn12;
  3851. private System.Data.DataColumn dataColumn13;
  3852. private System.Data.DataColumn dataColumn15;
  3853. private System.Data.DataColumn dataColumn16;
  3854. private System.Data.DataColumn dataColumn17;
  3855. private System.Data.DataColumn dataColumn22;
  3856. private System.Windows.Forms.TextBox txt_suppCode;
  3857. private System.Windows.Forms.Label label26;
  3858. private System.Windows.Forms.Label label22;
  3859. private System.Windows.Forms.Panel panel1;
  3860. private System.Windows.Forms.Label label41;
  3861. private System.Windows.Forms.Label label36;
  3862. private System.Windows.Forms.Label label35;
  3863. private System.Windows.Forms.Label label3;
  3864. private System.Windows.Forms.Label label40;
  3865. private Infragistics.Win.UltraWinEditors.UltraTextEditor txt_SUPP_NAME;
  3866. private Infragistics.Win.UltraWinEditors.UltraTextEditor txt_PLANNER_ROLE_NAME;
  3867. private Infragistics.Win.UltraWinEditors.UltraTextEditor txt_BUYER_ROLE_NAME;
  3868. private Infragistics.Win.UltraWinTabControl.UltraTabControl ultraTabControl2;
  3869. private Infragistics.Win.UltraWinTabControl.UltraTabSharedControlsPage ultraTabSharedControlsPage2;
  3870. private Infragistics.Win.UltraWinTabControl.UltraTabPageControl ultraTabPageControl4;
  3871. private Infragistics.Win.UltraWinTabControl.UltraTabPageControl ultraTabPageControl5;
  3872. private Infragistics.Win.UltraWinEditors.UltraTextEditor txt_PLANNER_ROLE_NAME1;
  3873. private Infragistics.Win.UltraWinEditors.UltraTextEditor txt_BUYER_ROLE_NAME1;
  3874. private System.Windows.Forms.Label label31;
  3875. private System.Windows.Forms.Label label42;
  3876. private DataColumn dataColumn28;
  3877. private DataColumn dataColumn29;
  3878. private DataTable dataTable4;
  3879. private DataColumn dataColumn30;
  3880. private DataColumn dataColumn31;
  3881. private DataColumn dataColumn32;
  3882. private DataColumn dataColumn33;
  3883. private Infragistics.Win.UltraWinTabControl.UltraTabPageControl ultraTabPageControl7;
  3884. private Infragistics.Win.UltraWinTabControl.UltraTabPageControl ultraTabPageControl6;
  3885. private Infragistics.Win.UltraWinGrid.UltraGrid ultraGrid4;
  3886. private System.Windows.Forms.Label label46;
  3887. private Infragistics.Win.UltraWinEditors.UltraTextEditor txt_REMARK_STANDARD;
  3888. private System.Windows.Forms.Label label45;
  3889. private Infragistics.Win.UltraWinEditors.UltraTextEditor txtORDER_NUM;
  3890. private System.Windows.Forms.Label label44;
  3891. private System.Windows.Forms.Label label43;
  3892. private Infragistics.Win.UltraWinEditors.UltraComboEditor txt_IS_DEFAULT_STANDRANDS;
  3893. private DataColumn dataColumn34;
  3894. private DataColumn dataColumn35;
  3895. private Infragistics.Win.UltraWinEditors.UltraTextEditor Ultcmb_WEIGHT_UNIT;
  3896. private DataColumn dataColumn14;
  3897. private DataColumn dataColumn36;
  3898. private DataColumn dataColumn4;
  3899. private System.Windows.Forms.TextBox txt_item_Attr4;
  3900. private System.Windows.Forms.Label label50;
  3901. private System.Windows.Forms.TextBox txt_item_Attr3;
  3902. private System.Windows.Forms.Label label49;
  3903. private System.Windows.Forms.TextBox txt_item_Attr2;
  3904. private System.Windows.Forms.Label label48;
  3905. private System.Windows.Forms.TextBox txt_item_Attr1;
  3906. private System.Windows.Forms.Label label47;
  3907. private DataColumn dataColumn37;
  3908. private DataColumn dataColumn38;
  3909. private DataColumn dataColumn39;
  3910. private DataColumn dataColumn40;
  3911. private DataColumn dataColumn41;
  3912. private System.Windows.Forms.TableLayoutPanel tableLayoutPanel3;
  3913. private Infragistics.Win.UltraWinEditors.UltraNumericEditor txt_ORDER_NUM;
  3914. private System.Windows.Forms.TextBox txt_REMARK_ATTR;
  3915. private System.Windows.Forms.Label label51;
  3916. private DataColumn dataColumn42;
  3917. private Infragistics.Win.UltraWinEditors.UltraTextEditor Ultcmb_WEIGHT_UNIT_CODE;
  3918. private System.Windows.Forms.Label label52;
  3919. private DataColumn dataColumn43;
  3920. private DataColumn dataColumn44;
  3921. private Infragistics.Win.UltraWinTabControl.UltraTabPageControl ultraTabPageControl9;
  3922. private Infragistics.Win.UltraWinTabControl.UltraTabPageControl ultraTabPageControl8;
  3923. private Infragistics.Win.UltraWinGrid.UltraGrid ultraGrid5;
  3924. private Infragistics.Win.UltraWinEditors.UltraComboEditor txt_IS_DEFAULT_ATTR;
  3925. private System.Windows.Forms.Label label53;
  3926. private Infragistics.Win.UltraWinEditors.UltraTextEditor txt_UOM_NAME;
  3927. private System.Windows.Forms.Label label4;
  3928. private System.Windows.Forms.Label label54;
  3929. private DataColumn dataColumn45;
  3930. private Infragistics.Win.UltraWinEditors.UltraComboEditor txt_IS_DEFAULT_UOM;
  3931. private System.Windows.Forms.Label label58;
  3932. private System.Windows.Forms.Label label2;
  3933. private System.Windows.Forms.Label label57;
  3934. private Infragistics.Win.UltraWinEditors.UltraTextEditor txt_WEIGHT_UNIT;
  3935. private System.Windows.Forms.Label label56;
  3936. private System.Windows.Forms.Label label55;
  3937. private DataTable dataTable5;
  3938. private DataColumn dataColumn46;
  3939. private DataColumn dataColumn47;
  3940. private DataColumn dataColumn48;
  3941. private DataColumn dataColumn49;
  3942. private DataColumn dataColumn50;
  3943. private DataColumn dataColumn51;
  3944. private DataColumn dataColumn52;
  3945. private DataColumn dataColumn53;
  3946. private System.Windows.Forms.Label label59;
  3947. private Infragistics.Win.UltraWinEditors.UltraTextEditor txt_REMARK_UOM;
  3948. private System.Windows.Forms.Label label60;
  3949. private DataColumn dataColumn54;
  3950. private Infragistics.Win.UltraWinEditors.UltraTextEditor txt_ITEM_ATTR;
  3951. private Infragistics.Win.UltraWinEditors.UltraTextEditor txt_ITEM_ATTR_CODE;
  3952. private Infragistics.Win.UltraWinEditors.UltraTextEditor txt_STANDARDS_ID;
  3953. private Infragistics.Win.UltraWinEditors.UltraTextEditor txt_STANDARDS_CODE;
  3954. private Infragistics.Win.UltraWinEditors.UltraTextEditor txt_ITEM_UOM_CONEFFICIENT;
  3955. private Infragistics.Win.UltraWinEditors.UltraTextEditor txt_WEIGHT_UNIT_CODE;
  3956. private Infragistics.Win.UltraWinEditors.UltraTextEditor txt_UOM_CODE;
  3957. private Infragistics.Win.UltraWinEditors.UltraComboEditor txt_IS_BUDGET_CTRL;
  3958. private System.Windows.Forms.Label label63;
  3959. private System.Windows.Forms.Label label61;
  3960. private Infragistics.Win.UltraWinEditors.UltraTextEditor txt_BASE_UNIT_VALUE;
  3961. private System.Windows.Forms.CheckBox cb_BASE_UNIT_FLAG;
  3962. private DataColumn dataColumn55;
  3963. private Infragistics.Win.UltraWinEditors.UltraComboEditor txt_IS_DEFAULT;
  3964. private System.Windows.Forms.Label label62;
  3965. private DataColumn dataColumn56;
  3966. private System.Windows.Forms.CheckBox chk_showHasDelete;
  3967. private DataColumn dataColumn57;
  3968. private System.Windows.Forms.Label label65;
  3969. private System.Windows.Forms.Label label64;
  3970. private Infragistics.Win.UltraWinEditors.UltraComboEditor cmbNum;
  3971. private System.Windows.Forms.ImageList imageList1;
  3972. private System.Windows.Forms.Label label66;
  3973. private Infragistics.Win.UltraWinEditors.UltraTextEditor txt_ARC_ITEM;
  3974. private Infragistics.Win.UltraWinEditors.UltraTextEditor txt_ARC_CODE;
  3975. private System.Windows.Forms.CheckBox checkBox1;
  3976. private System.Windows.Forms.TextBox txt_MatAttrClassName;
  3977. private System.Windows.Forms.Label label67;
  3978. private System.Windows.Forms.TextBox txt_MatAttrClass;
  3979. private System.Windows.Forms.Label label68;
  3980. private DataColumn dataColumn62;
  3981. private DataTable dataTable7;
  3982. private DataColumn dataColumn60;
  3983. private DataColumn dataColumn61;
  3984. private DataSet dataSet2;
  3985. private DataTable dataTable6;
  3986. private DataColumn dataColumn58;
  3987. private DataColumn dataColumn59;
  3988. private DataColumn dataColumn63;
  3989. private Infragistics.Win.UltraWinEditors.UltraComboEditor txt_PC_FLAG;
  3990. private System.Windows.Forms.Label label69;
  3991. private System.Windows.Forms.Label label74;
  3992. private System.Windows.Forms.Label label73;
  3993. private System.Windows.Forms.Label label72;
  3994. private System.Windows.Forms.Label label71;
  3995. private Infragistics.Win.UltraWinEditors.UltraNumericEditor txt_DELVRY_RANGE_MIN;
  3996. private Infragistics.Win.UltraWinEditors.UltraNumericEditor txt_DELVRY_RANGE_MAX;
  3997. private Infragistics.Win.UltraWinEditors.UltraComboEditor txt_DELVRY_RANGE_TPE;
  3998. private System.Windows.Forms.Label label70;
  3999. private DataColumn dataColumn64;
  4000. private Infragistics.Win.UltraWinEditors.UltraComboEditor txt_IsLevel;
  4001. private System.Windows.Forms.Label label75;
  4002. private DataColumn dataColumn65;
  4003. private Infragistics.Win.UltraWinEditors.UltraTextEditor txt_ItemArcCode;
  4004. private System.Windows.Forms.Label label76;
  4005. private Infragistics.Win.UltraWinEditors.UltraTextEditor txt_ItemArcCodeName;
  4006. private DataColumn dataColumn66;
  4007. private DataColumn dataColumn67;
  4008. private Infragistics.Win.UltraWinEditors.UltraTextEditor txt_INV_PHYSIC_USERID;
  4009. private System.Windows.Forms.Label label77;
  4010. private DataColumn dataColumn68;
  4011. private DataColumn dataColumn69;
  4012. private DataColumn dataColumn70;
  4013. private Infragistics.Win.UltraWinEditors.UltraComboEditor txt_delivery_type_2;
  4014. private System.Windows.Forms.Label label78;
  4015. private Infragistics.Win.UltraWinEditors.UltraNumericEditor txt_DELVRY_RANGE_MIN2;
  4016. private Infragistics.Win.UltraWinEditors.UltraNumericEditor txt_DELVRY_RANGE_MAX2;
  4017. private System.Windows.Forms.Label label80;
  4018. private System.Windows.Forms.Label label79;
  4019. private System.Windows.Forms.Label label81;
  4020. private System.Windows.Forms.Label label82;
  4021. private DataColumn dataColumn18;
  4022. private DataColumn dataColumn19;
  4023. private Infragistics.Win.UltraWinEditors.UltraComboEditor Ultcmb_MAT_TYPE;
  4024. private System.Windows.Forms.Label label83;
  4025. }
  4026. }