FrmPurPlanMatNew.Designer.cs 125 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301
  1. namespace Pur.Pop_upWindow
  2. {
  3. partial class FrmPurPlanMatNew
  4. {
  5. /// <summary>
  6. /// Required designer variable.
  7. /// </summary>
  8. private System.ComponentModel.IContainer components = null;
  9. /// <summary>
  10. /// Clean up any resources being used.
  11. /// </summary>
  12. /// <param name="disposing">true if managed resources should be disposed; otherwise, false.</param>
  13. protected override void Dispose(bool disposing)
  14. {
  15. if (disposing && (components != null))
  16. {
  17. components.Dispose();
  18. }
  19. base.Dispose(disposing);
  20. }
  21. #region Windows Form Designer generated code
  22. /// <summary>
  23. /// Required method for Designer support - do not modify
  24. /// the contents of this method with the code editor.
  25. /// </summary>
  26. private void InitializeComponent()
  27. {
  28. this.components = new System.ComponentModel.Container();
  29. Infragistics.Win.Appearance appearance1 = new Infragistics.Win.Appearance();
  30. Infragistics.Win.UltraWinGrid.UltraGridBand ultraGridBand1 = new Infragistics.Win.UltraWinGrid.UltraGridBand("Table1", -1);
  31. Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn1 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("itemCode");
  32. Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn2 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("itemDesc");
  33. Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn3 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("itemName");
  34. Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn4 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("itemSpec");
  35. Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn5 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("itemModel");
  36. Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn6 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("itemUomFormula");
  37. Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn7 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("itemUomConefficient", -1, null, 0, Infragistics.Win.UltraWinGrid.SortIndicator.Ascending, false);
  38. Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn8 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("bugPrice");
  39. Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn9 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("ItemDescE");
  40. Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn10 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("WeightUnit");
  41. Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn11 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("PRICETYPE");
  42. Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn12 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("itemUseUom");
  43. Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn13 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("BuyerDeptCode");
  44. Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn14 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("BuyerDeptDesc");
  45. Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn15 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("BuyerUnitCode");
  46. Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn16 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("BuyerUnitDesc");
  47. Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn17 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("receiveType");
  48. Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn18 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("isBudgetCtrl");
  49. Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn19 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("ARCCODE");
  50. Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn20 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("UOMNAME");
  51. Infragistics.Win.Appearance appearance16 = new Infragistics.Win.Appearance();
  52. Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn21 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("STANDARDSCODE");
  53. Infragistics.Win.Appearance appearance18 = new Infragistics.Win.Appearance();
  54. Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn22 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("QTY");
  55. Infragistics.Win.Appearance appearance19 = new Infragistics.Win.Appearance();
  56. Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn23 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("ItemUnique");
  57. Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn24 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("Check", 0);
  58. Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn25 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("btnAdd", 1);
  59. Infragistics.Win.Appearance appearance20 = new Infragistics.Win.Appearance();
  60. Infragistics.Win.Appearance appearance21 = new Infragistics.Win.Appearance();
  61. Infragistics.Win.Appearance appearance2 = new Infragistics.Win.Appearance();
  62. Infragistics.Win.Appearance appearance3 = new Infragistics.Win.Appearance();
  63. Infragistics.Win.Appearance appearance4 = new Infragistics.Win.Appearance();
  64. Infragistics.Win.Appearance appearance5 = new Infragistics.Win.Appearance();
  65. Infragistics.Win.Appearance appearance6 = new Infragistics.Win.Appearance();
  66. Infragistics.Win.Appearance appearance7 = new Infragistics.Win.Appearance();
  67. Infragistics.Win.Appearance appearance8 = new Infragistics.Win.Appearance();
  68. Infragistics.Win.Appearance appearance9 = new Infragistics.Win.Appearance();
  69. Infragistics.Win.Appearance appearance10 = new Infragistics.Win.Appearance();
  70. Infragistics.Win.Appearance appearance12 = new Infragistics.Win.Appearance();
  71. Infragistics.Win.Appearance appearance23 = new Infragistics.Win.Appearance();
  72. Infragistics.Win.ValueListItem valueListItem15 = new Infragistics.Win.ValueListItem();
  73. Infragistics.Win.ValueListItem valueListItem16 = new Infragistics.Win.ValueListItem();
  74. Infragistics.Win.ValueListItem valueListItem17 = new Infragistics.Win.ValueListItem();
  75. Infragistics.Win.ValueListItem valueListItem18 = new Infragistics.Win.ValueListItem();
  76. Infragistics.Win.ValueListItem valueListItem19 = new Infragistics.Win.ValueListItem();
  77. Infragistics.Win.Appearance appearance13 = new Infragistics.Win.Appearance();
  78. Infragistics.Win.Appearance appearance17 = new Infragistics.Win.Appearance();
  79. Infragistics.Win.UltraWinGrid.UltraGridBand ultraGridBand2 = new Infragistics.Win.UltraWinGrid.UltraGridBand("Table3", -1);
  80. Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn26 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("ITEMATTRCLASS");
  81. Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn27 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("ITEMATTRCLASSNAME");
  82. Infragistics.Win.UltraWinGrid.UltraGridBand ultraGridBand3 = new Infragistics.Win.UltraWinGrid.UltraGridBand("Table1", -1);
  83. Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn28 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("itemCode");
  84. Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn29 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("itemDesc");
  85. Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn30 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("itemName");
  86. Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn31 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("itemSpec");
  87. Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn32 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("itemModel");
  88. Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn33 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("UOMNAME");
  89. Infragistics.Win.Appearance appearance22 = new Infragistics.Win.Appearance();
  90. Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn34 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("itemUomFormula");
  91. Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn35 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("itemUomConefficient");
  92. Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn36 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("bugPrice");
  93. Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn37 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("ItemDescE");
  94. Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn38 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("WeightUnit");
  95. Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn39 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("PRICETYPE");
  96. Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn40 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("itemUseUom");
  97. Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn41 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("BuyerDeptCode");
  98. Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn42 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("BuyerDeptDesc");
  99. Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn43 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("BuyerUnitCode");
  100. Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn44 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("BuyerUnitDesc");
  101. Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn45 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("receiveType");
  102. Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn46 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("isBudgetCtrl");
  103. Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn47 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("ARCCODE");
  104. Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn48 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("STANDARDSCODE");
  105. Infragistics.Win.Appearance appearance24 = new Infragistics.Win.Appearance();
  106. Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn49 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("QTY");
  107. Infragistics.Win.Appearance appearance25 = new Infragistics.Win.Appearance();
  108. Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn50 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("ItemAttr");
  109. Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn51 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("ItemAttrId");
  110. Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn52 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("ITEMUNIQUE");
  111. Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn53 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("btnDel", 0);
  112. Infragistics.Win.UltraWinGrid.UltraGridBand ultraGridBand4 = new Infragistics.Win.UltraWinGrid.UltraGridBand("Table5", -1);
  113. Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn54 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("ITEMUOMID");
  114. Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn55 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("UOMNAME");
  115. Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn56 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("itemUomConefficient");
  116. Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn57 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("Check", 0);
  117. Infragistics.Win.UltraWinGrid.UltraGridBand ultraGridBand5 = new Infragistics.Win.UltraWinGrid.UltraGridBand("Table4", -1);
  118. Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn58 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("ITEMSTANDARDSID");
  119. Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn59 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("STANDARDSCODE");
  120. Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn60 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("Check", 0);
  121. Infragistics.Win.UltraWinToolbars.RibbonTab ribbonTab1 = new Infragistics.Win.UltraWinToolbars.RibbonTab("ribbon1");
  122. Infragistics.Win.UltraWinToolbars.RibbonGroup ribbonGroup1 = new Infragistics.Win.UltraWinToolbars.RibbonGroup("ribbonGroup1");
  123. Infragistics.Win.UltraWinToolbars.RibbonGroup ribbonGroup2 = new Infragistics.Win.UltraWinToolbars.RibbonGroup("ribbonGroup2");
  124. Infragistics.Win.UltraWinToolbars.UltraToolbar ultraToolbar1 = new Infragistics.Win.UltraWinToolbars.UltraToolbar("UltraToolbar1");
  125. Infragistics.Win.UltraWinToolbars.ButtonTool buttonTool2 = new Infragistics.Win.UltraWinToolbars.ButtonTool("查询");
  126. Infragistics.Win.UltraWinToolbars.ButtonTool buttonTool5 = new Infragistics.Win.UltraWinToolbars.ButtonTool("关闭");
  127. Infragistics.Win.UltraWinToolbars.UltraToolbar ultraToolbar2 = new Infragistics.Win.UltraWinToolbars.UltraToolbar("UltraToolbar2");
  128. Infragistics.Win.UltraWinToolbars.ButtonTool buttonTool1 = new Infragistics.Win.UltraWinToolbars.ButtonTool("Query");
  129. Infragistics.Win.UltraWinToolbars.ButtonTool buttonTool4 = new Infragistics.Win.UltraWinToolbars.ButtonTool("conFirmation");
  130. Infragistics.Win.UltraWinToolbars.ButtonTool buttonTool16 = new Infragistics.Win.UltraWinToolbars.ButtonTool("ESC");
  131. Infragistics.Win.UltraWinToolbars.ButtonTool buttonTool6 = new Infragistics.Win.UltraWinToolbars.ButtonTool("新增");
  132. Infragistics.Win.UltraWinToolbars.ButtonTool buttonTool7 = new Infragistics.Win.UltraWinToolbars.ButtonTool("删除");
  133. Infragistics.Win.UltraWinToolbars.ButtonTool buttonTool8 = new Infragistics.Win.UltraWinToolbars.ButtonTool("修改");
  134. Infragistics.Win.UltraWinToolbars.ButtonTool buttonTool9 = new Infragistics.Win.UltraWinToolbars.ButtonTool("查询");
  135. Infragistics.Win.UltraWinToolbars.ButtonTool buttonTool10 = new Infragistics.Win.UltraWinToolbars.ButtonTool("关闭");
  136. Infragistics.Win.UltraWinToolbars.ButtonTool buttonTool12 = new Infragistics.Win.UltraWinToolbars.ButtonTool("恢复");
  137. Infragistics.Win.UltraWinToolbars.ButtonTool buttonTool3 = new Infragistics.Win.UltraWinToolbars.ButtonTool("确认");
  138. Infragistics.Win.UltraWinToolbars.ButtonTool buttonTool11 = new Infragistics.Win.UltraWinToolbars.ButtonTool("Query");
  139. Infragistics.Win.Appearance appearance29 = new Infragistics.Win.Appearance();
  140. System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(FrmPurPlanMatNew));
  141. Infragistics.Win.UltraWinToolbars.ButtonTool buttonTool13 = new Infragistics.Win.UltraWinToolbars.ButtonTool("ESC");
  142. Infragistics.Win.Appearance appearance30 = new Infragistics.Win.Appearance();
  143. Infragistics.Win.UltraWinToolbars.ButtonTool buttonTool17 = new Infragistics.Win.UltraWinToolbars.ButtonTool("conFirmation");
  144. Infragistics.Win.Appearance appearance11 = new Infragistics.Win.Appearance();
  145. Infragistics.Win.UltraWinTree.Override _override1 = new Infragistics.Win.UltraWinTree.Override();
  146. Infragistics.Win.Appearance appearance26 = new Infragistics.Win.Appearance();
  147. Infragistics.Win.UltraWinEditors.EditorButton editorButton1 = new Infragistics.Win.UltraWinEditors.EditorButton();
  148. Infragistics.Win.Appearance appearance15 = new Infragistics.Win.Appearance();
  149. Infragistics.Win.Appearance appearance14 = new Infragistics.Win.Appearance();
  150. Infragistics.Win.UltraWinGrid.UltraGridBand ultraGridBand6 = new Infragistics.Win.UltraWinGrid.UltraGridBand("Table6", -1);
  151. Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn61 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("ITEMATTRID");
  152. Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn62 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("ITEMATTR");
  153. Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn63 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("ITEMATTRCLASS");
  154. Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn64 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("ITEMATTRCODE");
  155. Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn65 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("Check", 0);
  156. this.dataColumn20 = new System.Data.DataColumn();
  157. this.ultraGrid1 = new Infragistics.Win.UltraWinGrid.UltraGrid();
  158. this.dataSet1 = new System.Data.DataSet();
  159. this.dataTable1 = new System.Data.DataTable();
  160. this.dataColumn1 = new System.Data.DataColumn();
  161. this.dataColumn2 = new System.Data.DataColumn();
  162. this.dataColumn3 = new System.Data.DataColumn();
  163. this.dataColumn4 = new System.Data.DataColumn();
  164. this.dataColumn5 = new System.Data.DataColumn();
  165. this.dataColumn7 = new System.Data.DataColumn();
  166. this.dataColumn8 = new System.Data.DataColumn();
  167. this.dataColumn9 = new System.Data.DataColumn();
  168. this.dataColumn10 = new System.Data.DataColumn();
  169. this.dataColumn11 = new System.Data.DataColumn();
  170. this.dataColumn12 = new System.Data.DataColumn();
  171. this.dataColumn13 = new System.Data.DataColumn();
  172. this.dataColumn14 = new System.Data.DataColumn();
  173. this.dataColumn15 = new System.Data.DataColumn();
  174. this.dataColumn16 = new System.Data.DataColumn();
  175. this.dataColumn17 = new System.Data.DataColumn();
  176. this.dataColumn18 = new System.Data.DataColumn();
  177. this.dataColumn84 = new System.Data.DataColumn();
  178. this.dataColumn56 = new System.Data.DataColumn();
  179. this.dataColumn98 = new System.Data.DataColumn();
  180. this.dataColumn101 = new System.Data.DataColumn();
  181. this.dataColumn102 = new System.Data.DataColumn();
  182. this.dataColumn105 = new System.Data.DataColumn();
  183. this.dataColumn42 = new System.Data.DataColumn();
  184. this.dataColumn39 = new System.Data.DataColumn();
  185. this.dataColumn41 = new System.Data.DataColumn();
  186. this.dataColumn40 = new System.Data.DataColumn();
  187. this.dataColumn38 = new System.Data.DataColumn();
  188. this.cmbNum = new Infragistics.Win.UltraWinEditors.UltraComboEditor();
  189. this.label65 = new System.Windows.Forms.Label();
  190. this.ultraLabel1 = new Infragistics.Win.Misc.UltraLabel();
  191. this.dataColumn37 = new System.Data.DataColumn();
  192. this.label64 = new System.Windows.Forms.Label();
  193. this.ultraLabel23 = new Infragistics.Win.Misc.UltraLabel();
  194. this.ultraTextEditor2 = new Infragistics.Win.UltraWinEditors.UltraTextEditor();
  195. this.txt_wlmc = new Infragistics.Win.UltraWinEditors.UltraTextEditor();
  196. this.dataColumn26 = new System.Data.DataColumn();
  197. this.txt_wlbm = new Infragistics.Win.UltraWinEditors.UltraTextEditor();
  198. this.dataColumn24 = new System.Data.DataColumn();
  199. this.dataColumn31 = new System.Data.DataColumn();
  200. this.dataSet2 = new System.Data.DataSet();
  201. this.dataTable2 = new System.Data.DataTable();
  202. this.dataColumn19 = new System.Data.DataColumn();
  203. this.ultraTextEditor4 = new Infragistics.Win.Misc.UltraLabel();
  204. this.ultraTextEditor6 = new Infragistics.Win.UltraWinEditors.UltraTextEditor();
  205. this.ultraTextEditor5 = new Infragistics.Win.UltraWinEditors.UltraTextEditor();
  206. this.ultraLabel3 = new Infragistics.Win.Misc.UltraLabel();
  207. this.ultraGroupBox7 = new Infragistics.Win.Misc.UltraGroupBox();
  208. this.ultraButton2 = new Infragistics.Win.Misc.UltraButton();
  209. this.ultraGrid7 = new Infragistics.Win.UltraWinGrid.UltraGrid();
  210. this.dataSet3 = new System.Data.DataSet();
  211. this.dataTable5 = new System.Data.DataTable();
  212. this.dataColumn85 = new System.Data.DataColumn();
  213. this.dataColumn91 = new System.Data.DataColumn();
  214. this.dataTable6 = new System.Data.DataTable();
  215. this.dataColumn108 = new System.Data.DataColumn();
  216. this.dataColumn109 = new System.Data.DataColumn();
  217. this.dataTable7 = new System.Data.DataTable();
  218. this.dataColumn106 = new System.Data.DataColumn();
  219. this.dataColumn107 = new System.Data.DataColumn();
  220. this.dataTable8 = new System.Data.DataTable();
  221. this.dataColumn86 = new System.Data.DataColumn();
  222. this.dataColumn88 = new System.Data.DataColumn();
  223. this.dataColumn90 = new System.Data.DataColumn();
  224. this.dataColumn87 = new System.Data.DataColumn();
  225. this.dataTable3 = new System.Data.DataTable();
  226. this.dataColumn21 = new System.Data.DataColumn();
  227. this.dataColumn22 = new System.Data.DataColumn();
  228. this.dataColumn23 = new System.Data.DataColumn();
  229. this.dataColumn25 = new System.Data.DataColumn();
  230. this.dataColumn27 = new System.Data.DataColumn();
  231. this.dataColumn28 = new System.Data.DataColumn();
  232. this.dataColumn29 = new System.Data.DataColumn();
  233. this.dataColumn30 = new System.Data.DataColumn();
  234. this.dataColumn32 = new System.Data.DataColumn();
  235. this.dataColumn33 = new System.Data.DataColumn();
  236. this.dataColumn34 = new System.Data.DataColumn();
  237. this.dataColumn35 = new System.Data.DataColumn();
  238. this.dataColumn36 = new System.Data.DataColumn();
  239. this.dataColumn43 = new System.Data.DataColumn();
  240. this.dataTable4 = new System.Data.DataTable();
  241. this.dataColumn44 = new System.Data.DataColumn();
  242. this.dataColumn45 = new System.Data.DataColumn();
  243. this.dataColumn46 = new System.Data.DataColumn();
  244. this.dataColumn47 = new System.Data.DataColumn();
  245. this.dataColumn48 = new System.Data.DataColumn();
  246. this.dataColumn49 = new System.Data.DataColumn();
  247. this.dataColumn50 = new System.Data.DataColumn();
  248. this.dataColumn51 = new System.Data.DataColumn();
  249. this.dataColumn52 = new System.Data.DataColumn();
  250. this.dataColumn53 = new System.Data.DataColumn();
  251. this.dataColumn54 = new System.Data.DataColumn();
  252. this.dataColumn55 = new System.Data.DataColumn();
  253. this.dataColumn69 = new System.Data.DataColumn();
  254. this.dataColumn70 = new System.Data.DataColumn();
  255. this.dataColumn71 = new System.Data.DataColumn();
  256. this.dataColumn72 = new System.Data.DataColumn();
  257. this.dataColumn73 = new System.Data.DataColumn();
  258. this.dataColumn74 = new System.Data.DataColumn();
  259. this.dataColumn75 = new System.Data.DataColumn();
  260. this.dataColumn76 = new System.Data.DataColumn();
  261. this.dataColumn77 = new System.Data.DataColumn();
  262. this.dataColumn78 = new System.Data.DataColumn();
  263. this.dataColumn79 = new System.Data.DataColumn();
  264. this.dataColumn80 = new System.Data.DataColumn();
  265. this.dataColumn81 = new System.Data.DataColumn();
  266. this.dataColumn82 = new System.Data.DataColumn();
  267. this.tableLayoutPanel2 = new System.Windows.Forms.TableLayoutPanel();
  268. this.ultraGroupBox8 = new Infragistics.Win.Misc.UltraGroupBox();
  269. this.ultraGrid2 = new Infragistics.Win.UltraWinGrid.UltraGrid();
  270. this.dataSet4 = new System.Data.DataSet();
  271. this.dataTable9 = new System.Data.DataTable();
  272. this.dataColumn57 = new System.Data.DataColumn();
  273. this.dataColumn58 = new System.Data.DataColumn();
  274. this.dataColumn59 = new System.Data.DataColumn();
  275. this.dataColumn60 = new System.Data.DataColumn();
  276. this.dataColumn61 = new System.Data.DataColumn();
  277. this.dataColumn62 = new System.Data.DataColumn();
  278. this.dataColumn63 = new System.Data.DataColumn();
  279. this.dataColumn64 = new System.Data.DataColumn();
  280. this.dataColumn65 = new System.Data.DataColumn();
  281. this.dataColumn66 = new System.Data.DataColumn();
  282. this.dataColumn67 = new System.Data.DataColumn();
  283. this.dataColumn68 = new System.Data.DataColumn();
  284. this.dataColumn83 = new System.Data.DataColumn();
  285. this.dataColumn89 = new System.Data.DataColumn();
  286. this.dataColumn92 = new System.Data.DataColumn();
  287. this.dataColumn93 = new System.Data.DataColumn();
  288. this.dataColumn94 = new System.Data.DataColumn();
  289. this.dataColumn95 = new System.Data.DataColumn();
  290. this.dataColumn96 = new System.Data.DataColumn();
  291. this.dataColumn97 = new System.Data.DataColumn();
  292. this.dataColumn99 = new System.Data.DataColumn();
  293. this.dataColumn100 = new System.Data.DataColumn();
  294. this.dataColumn6 = new System.Data.DataColumn();
  295. this.dataColumn103 = new System.Data.DataColumn();
  296. this.dataColumn104 = new System.Data.DataColumn();
  297. this.ultraGroupBox4 = new Infragistics.Win.Misc.UltraGroupBox();
  298. this.ultraGrid5 = new Infragistics.Win.UltraWinGrid.UltraGrid();
  299. this.ultraGroupBox5 = new Infragistics.Win.Misc.UltraGroupBox();
  300. this.ultraGrid4 = new Infragistics.Win.UltraWinGrid.UltraGrid();
  301. this._Form1_Toolbars_Dock_Area_Top = new Infragistics.Win.UltraWinToolbars.UltraToolbarsDockArea();
  302. this.barsManagerButon = new Infragistics.Win.UltraWinToolbars.UltraToolbarsManager(this.components);
  303. this._Form1_Toolbars_Dock_Area_Bottom = new Infragistics.Win.UltraWinToolbars.UltraToolbarsDockArea();
  304. this._Form1_Toolbars_Dock_Area_Left = new Infragistics.Win.UltraWinToolbars.UltraToolbarsDockArea();
  305. this._Form1_Toolbars_Dock_Area_Right = new Infragistics.Win.UltraWinToolbars.UltraToolbarsDockArea();
  306. this.ulTreeMat = new Infragistics.Win.UltraWinTree.UltraTree();
  307. this.ultraGroupBox1 = new Infragistics.Win.Misc.UltraGroupBox();
  308. this.ultraPanel3 = new Infragistics.Win.Misc.UltraPanel();
  309. this.tableLayoutPanel1 = new System.Windows.Forms.TableLayoutPanel();
  310. this.ultraGroupBox3 = new Infragistics.Win.Misc.UltraGroupBox();
  311. this.ultraGroupBox2 = new Infragistics.Win.Misc.UltraGroupBox();
  312. this.ultraPanel2 = new Infragistics.Win.Misc.UltraPanel();
  313. this.ultraButton1 = new Infragistics.Win.Misc.UltraButton();
  314. this.ultraPanel4 = new Infragistics.Win.Misc.UltraPanel();
  315. this.ultraTextEditor1 = new Infragistics.Win.UltraWinEditors.UltraTextEditor();
  316. this.ultraLabel2 = new Infragistics.Win.Misc.UltraLabel();
  317. this.label66 = new System.Windows.Forms.Label();
  318. this.txt_ARC_ITEM = new Infragistics.Win.UltraWinEditors.UltraTextEditor();
  319. this.checkBox1 = new System.Windows.Forms.CheckBox();
  320. this.txt_ARC_CODE = new Infragistics.Win.UltraWinEditors.UltraTextEditor();
  321. this.ultraPanel1 = new Infragistics.Win.Misc.UltraPanel();
  322. this.ultraGroupBox6 = new Infragistics.Win.Misc.UltraGroupBox();
  323. this.ultraGrid3 = new Infragistics.Win.UltraWinGrid.UltraGrid();
  324. this.ultraToolTipManager1 = new Infragistics.Win.UltraWinToolTip.UltraToolTipManager(this.components);
  325. this.dataColumn110 = new System.Data.DataColumn();
  326. ((System.ComponentModel.ISupportInitialize)(this.ultraGrid1)).BeginInit();
  327. ((System.ComponentModel.ISupportInitialize)(this.dataSet1)).BeginInit();
  328. ((System.ComponentModel.ISupportInitialize)(this.dataTable1)).BeginInit();
  329. ((System.ComponentModel.ISupportInitialize)(this.cmbNum)).BeginInit();
  330. ((System.ComponentModel.ISupportInitialize)(this.ultraTextEditor2)).BeginInit();
  331. ((System.ComponentModel.ISupportInitialize)(this.txt_wlmc)).BeginInit();
  332. ((System.ComponentModel.ISupportInitialize)(this.txt_wlbm)).BeginInit();
  333. ((System.ComponentModel.ISupportInitialize)(this.dataSet2)).BeginInit();
  334. ((System.ComponentModel.ISupportInitialize)(this.dataTable2)).BeginInit();
  335. ((System.ComponentModel.ISupportInitialize)(this.ultraTextEditor6)).BeginInit();
  336. ((System.ComponentModel.ISupportInitialize)(this.ultraTextEditor5)).BeginInit();
  337. ((System.ComponentModel.ISupportInitialize)(this.ultraGroupBox7)).BeginInit();
  338. this.ultraGroupBox7.SuspendLayout();
  339. ((System.ComponentModel.ISupportInitialize)(this.ultraGrid7)).BeginInit();
  340. ((System.ComponentModel.ISupportInitialize)(this.dataSet3)).BeginInit();
  341. ((System.ComponentModel.ISupportInitialize)(this.dataTable5)).BeginInit();
  342. ((System.ComponentModel.ISupportInitialize)(this.dataTable6)).BeginInit();
  343. ((System.ComponentModel.ISupportInitialize)(this.dataTable7)).BeginInit();
  344. ((System.ComponentModel.ISupportInitialize)(this.dataTable8)).BeginInit();
  345. ((System.ComponentModel.ISupportInitialize)(this.dataTable3)).BeginInit();
  346. ((System.ComponentModel.ISupportInitialize)(this.dataTable4)).BeginInit();
  347. this.tableLayoutPanel2.SuspendLayout();
  348. ((System.ComponentModel.ISupportInitialize)(this.ultraGroupBox8)).BeginInit();
  349. this.ultraGroupBox8.SuspendLayout();
  350. ((System.ComponentModel.ISupportInitialize)(this.ultraGrid2)).BeginInit();
  351. ((System.ComponentModel.ISupportInitialize)(this.dataSet4)).BeginInit();
  352. ((System.ComponentModel.ISupportInitialize)(this.dataTable9)).BeginInit();
  353. ((System.ComponentModel.ISupportInitialize)(this.ultraGroupBox4)).BeginInit();
  354. this.ultraGroupBox4.SuspendLayout();
  355. ((System.ComponentModel.ISupportInitialize)(this.ultraGrid5)).BeginInit();
  356. ((System.ComponentModel.ISupportInitialize)(this.ultraGroupBox5)).BeginInit();
  357. this.ultraGroupBox5.SuspendLayout();
  358. ((System.ComponentModel.ISupportInitialize)(this.ultraGrid4)).BeginInit();
  359. ((System.ComponentModel.ISupportInitialize)(this.barsManagerButon)).BeginInit();
  360. ((System.ComponentModel.ISupportInitialize)(this.ulTreeMat)).BeginInit();
  361. ((System.ComponentModel.ISupportInitialize)(this.ultraGroupBox1)).BeginInit();
  362. this.ultraGroupBox1.SuspendLayout();
  363. this.ultraPanel3.ClientArea.SuspendLayout();
  364. this.ultraPanel3.SuspendLayout();
  365. this.tableLayoutPanel1.SuspendLayout();
  366. ((System.ComponentModel.ISupportInitialize)(this.ultraGroupBox3)).BeginInit();
  367. this.ultraGroupBox3.SuspendLayout();
  368. ((System.ComponentModel.ISupportInitialize)(this.ultraGroupBox2)).BeginInit();
  369. this.ultraGroupBox2.SuspendLayout();
  370. this.ultraPanel2.ClientArea.SuspendLayout();
  371. this.ultraPanel2.SuspendLayout();
  372. this.ultraPanel4.ClientArea.SuspendLayout();
  373. this.ultraPanel4.SuspendLayout();
  374. ((System.ComponentModel.ISupportInitialize)(this.ultraTextEditor1)).BeginInit();
  375. ((System.ComponentModel.ISupportInitialize)(this.txt_ARC_ITEM)).BeginInit();
  376. ((System.ComponentModel.ISupportInitialize)(this.txt_ARC_CODE)).BeginInit();
  377. this.ultraPanel1.ClientArea.SuspendLayout();
  378. this.ultraPanel1.SuspendLayout();
  379. ((System.ComponentModel.ISupportInitialize)(this.ultraGroupBox6)).BeginInit();
  380. this.ultraGroupBox6.SuspendLayout();
  381. ((System.ComponentModel.ISupportInitialize)(this.ultraGrid3)).BeginInit();
  382. this.SuspendLayout();
  383. //
  384. // dataColumn20
  385. //
  386. this.dataColumn20.ColumnName = "ITEMATTRID";
  387. //
  388. // ultraGrid1
  389. //
  390. this.ultraGrid1.DataMember = "Table1";
  391. this.ultraGrid1.DataSource = this.dataSet1;
  392. appearance1.BackColor = System.Drawing.SystemColors.Window;
  393. appearance1.BorderColor = System.Drawing.SystemColors.InactiveCaption;
  394. this.ultraGrid1.DisplayLayout.Appearance = appearance1;
  395. ultraGridColumn1.Header.VisiblePosition = 1;
  396. ultraGridColumn1.Width = 131;
  397. ultraGridColumn2.Header.VisiblePosition = 16;
  398. ultraGridColumn2.Hidden = true;
  399. ultraGridColumn2.Width = 83;
  400. ultraGridColumn3.Header.VisiblePosition = 2;
  401. ultraGridColumn3.Width = 117;
  402. ultraGridColumn4.Header.VisiblePosition = 3;
  403. ultraGridColumn4.Hidden = true;
  404. ultraGridColumn5.Header.VisiblePosition = 4;
  405. ultraGridColumn5.Hidden = true;
  406. ultraGridColumn6.Header.VisiblePosition = 5;
  407. ultraGridColumn6.Hidden = true;
  408. ultraGridColumn7.Header.VisiblePosition = 22;
  409. ultraGridColumn7.Width = 80;
  410. ultraGridColumn8.Header.VisiblePosition = 6;
  411. ultraGridColumn8.Width = 71;
  412. ultraGridColumn9.Header.VisiblePosition = 8;
  413. ultraGridColumn9.Hidden = true;
  414. ultraGridColumn10.Header.VisiblePosition = 21;
  415. ultraGridColumn10.Width = 72;
  416. ultraGridColumn11.Header.VisiblePosition = 9;
  417. ultraGridColumn11.Hidden = true;
  418. ultraGridColumn11.Width = 85;
  419. ultraGridColumn12.Header.VisiblePosition = 10;
  420. ultraGridColumn12.Hidden = true;
  421. ultraGridColumn13.Header.VisiblePosition = 11;
  422. ultraGridColumn13.Hidden = true;
  423. ultraGridColumn14.Header.VisiblePosition = 12;
  424. ultraGridColumn14.Hidden = true;
  425. ultraGridColumn15.Header.VisiblePosition = 13;
  426. ultraGridColumn15.Hidden = true;
  427. ultraGridColumn16.Header.VisiblePosition = 14;
  428. ultraGridColumn16.Hidden = true;
  429. ultraGridColumn17.Header.VisiblePosition = 15;
  430. ultraGridColumn17.Hidden = true;
  431. ultraGridColumn18.Header.VisiblePosition = 7;
  432. ultraGridColumn18.Width = 68;
  433. ultraGridColumn19.Header.VisiblePosition = 19;
  434. ultraGridColumn19.Hidden = true;
  435. appearance16.BackColor = System.Drawing.Color.Yellow;
  436. ultraGridColumn20.CellAppearance = appearance16;
  437. ultraGridColumn20.Header.VisiblePosition = 17;
  438. appearance18.BackColor = System.Drawing.Color.Yellow;
  439. ultraGridColumn21.CellAppearance = appearance18;
  440. ultraGridColumn21.Header.VisiblePosition = 18;
  441. appearance19.BackColor = System.Drawing.Color.Yellow;
  442. ultraGridColumn22.CellAppearance = appearance19;
  443. ultraGridColumn22.Header.VisiblePosition = 20;
  444. ultraGridColumn22.MaskInput = "{LOC}nnnnnnn.nnn";
  445. ultraGridColumn22.Style = Infragistics.Win.UltraWinGrid.ColumnStyle.Double;
  446. ultraGridColumn23.Header.VisiblePosition = 23;
  447. ultraGridColumn23.Hidden = true;
  448. ultraGridColumn24.DataType = typeof(bool);
  449. ultraGridColumn24.DefaultCellValue = false;
  450. ultraGridColumn24.Header.Caption = "";
  451. ultraGridColumn24.Header.CheckBoxVisibility = Infragistics.Win.UltraWinGrid.HeaderCheckBoxVisibility.Always;
  452. ultraGridColumn24.Header.VisiblePosition = 0;
  453. ultraGridColumn24.Hidden = true;
  454. ultraGridColumn24.Style = Infragistics.Win.UltraWinGrid.ColumnStyle.CheckBox;
  455. ultraGridColumn24.Width = 26;
  456. ultraGridColumn25.ButtonDisplayStyle = Infragistics.Win.UltraWinGrid.ButtonDisplayStyle.Always;
  457. appearance20.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(255)))), ((int)(((byte)(255)))), ((int)(((byte)(192)))));
  458. ultraGridColumn25.CellAppearance = appearance20;
  459. appearance21.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(255)))), ((int)(((byte)(255)))), ((int)(((byte)(128)))));
  460. ultraGridColumn25.CellButtonAppearance = appearance21;
  461. ultraGridColumn25.Header.Caption = "添加物料";
  462. ultraGridColumn25.Header.VisiblePosition = 24;
  463. ultraGridColumn25.NullText = "添加到已选物料";
  464. ultraGridColumn25.Style = Infragistics.Win.UltraWinGrid.ColumnStyle.Button;
  465. ultraGridBand1.Columns.AddRange(new object[] {
  466. ultraGridColumn1,
  467. ultraGridColumn2,
  468. ultraGridColumn3,
  469. ultraGridColumn4,
  470. ultraGridColumn5,
  471. ultraGridColumn6,
  472. ultraGridColumn7,
  473. ultraGridColumn8,
  474. ultraGridColumn9,
  475. ultraGridColumn10,
  476. ultraGridColumn11,
  477. ultraGridColumn12,
  478. ultraGridColumn13,
  479. ultraGridColumn14,
  480. ultraGridColumn15,
  481. ultraGridColumn16,
  482. ultraGridColumn17,
  483. ultraGridColumn18,
  484. ultraGridColumn19,
  485. ultraGridColumn20,
  486. ultraGridColumn21,
  487. ultraGridColumn22,
  488. ultraGridColumn23,
  489. ultraGridColumn24,
  490. ultraGridColumn25});
  491. this.ultraGrid1.DisplayLayout.BandsSerializer.Add(ultraGridBand1);
  492. this.ultraGrid1.DisplayLayout.BorderStyle = Infragistics.Win.UIElementBorderStyle.Solid;
  493. this.ultraGrid1.DisplayLayout.CaptionVisible = Infragistics.Win.DefaultableBoolean.False;
  494. appearance2.BackColor = System.Drawing.SystemColors.ActiveBorder;
  495. appearance2.BackColor2 = System.Drawing.SystemColors.ControlDark;
  496. appearance2.BackGradientStyle = Infragistics.Win.GradientStyle.Vertical;
  497. appearance2.BorderColor = System.Drawing.SystemColors.Window;
  498. this.ultraGrid1.DisplayLayout.GroupByBox.Appearance = appearance2;
  499. appearance3.ForeColor = System.Drawing.SystemColors.GrayText;
  500. this.ultraGrid1.DisplayLayout.GroupByBox.BandLabelAppearance = appearance3;
  501. this.ultraGrid1.DisplayLayout.GroupByBox.BorderStyle = Infragistics.Win.UIElementBorderStyle.Solid;
  502. appearance4.BackColor = System.Drawing.SystemColors.ControlLightLight;
  503. appearance4.BackColor2 = System.Drawing.SystemColors.Control;
  504. appearance4.BackGradientStyle = Infragistics.Win.GradientStyle.Horizontal;
  505. appearance4.ForeColor = System.Drawing.SystemColors.GrayText;
  506. this.ultraGrid1.DisplayLayout.GroupByBox.PromptAppearance = appearance4;
  507. this.ultraGrid1.DisplayLayout.MaxColScrollRegions = 1;
  508. this.ultraGrid1.DisplayLayout.MaxRowScrollRegions = 1;
  509. appearance5.BackColor = System.Drawing.SystemColors.Window;
  510. appearance5.ForeColor = System.Drawing.SystemColors.ControlText;
  511. this.ultraGrid1.DisplayLayout.Override.ActiveCellAppearance = appearance5;
  512. appearance6.BackColor = System.Drawing.SystemColors.Highlight;
  513. appearance6.ForeColor = System.Drawing.SystemColors.HighlightText;
  514. this.ultraGrid1.DisplayLayout.Override.ActiveRowAppearance = appearance6;
  515. this.ultraGrid1.DisplayLayout.Override.BorderStyleCell = Infragistics.Win.UIElementBorderStyle.Dotted;
  516. this.ultraGrid1.DisplayLayout.Override.BorderStyleRow = Infragistics.Win.UIElementBorderStyle.Dotted;
  517. appearance7.BackColor = System.Drawing.SystemColors.Window;
  518. this.ultraGrid1.DisplayLayout.Override.CardAreaAppearance = appearance7;
  519. appearance8.BorderColor = System.Drawing.Color.Silver;
  520. appearance8.TextTrimming = Infragistics.Win.TextTrimming.EllipsisCharacter;
  521. this.ultraGrid1.DisplayLayout.Override.CellAppearance = appearance8;
  522. this.ultraGrid1.DisplayLayout.Override.CellClickAction = Infragistics.Win.UltraWinGrid.CellClickAction.EditAndSelectText;
  523. this.ultraGrid1.DisplayLayout.Override.CellPadding = 0;
  524. appearance9.BackColor = System.Drawing.SystemColors.Control;
  525. appearance9.BackColor2 = System.Drawing.SystemColors.ControlDark;
  526. appearance9.BackGradientAlignment = Infragistics.Win.GradientAlignment.Element;
  527. appearance9.BackGradientStyle = Infragistics.Win.GradientStyle.Horizontal;
  528. appearance9.BorderColor = System.Drawing.SystemColors.Window;
  529. this.ultraGrid1.DisplayLayout.Override.GroupByRowAppearance = appearance9;
  530. appearance10.TextHAlignAsString = "Left";
  531. this.ultraGrid1.DisplayLayout.Override.HeaderAppearance = appearance10;
  532. this.ultraGrid1.DisplayLayout.Override.HeaderClickAction = Infragistics.Win.UltraWinGrid.HeaderClickAction.SortMulti;
  533. this.ultraGrid1.DisplayLayout.Override.HeaderStyle = Infragistics.Win.HeaderStyle.WindowsXPCommand;
  534. appearance12.BackColor = System.Drawing.SystemColors.Window;
  535. appearance12.BorderColor = System.Drawing.Color.Silver;
  536. this.ultraGrid1.DisplayLayout.Override.RowAppearance = appearance12;
  537. this.ultraGrid1.DisplayLayout.Override.RowSelectors = Infragistics.Win.DefaultableBoolean.False;
  538. appearance23.BackColor = System.Drawing.SystemColors.ControlLight;
  539. this.ultraGrid1.DisplayLayout.Override.TemplateAddRowAppearance = appearance23;
  540. this.ultraGrid1.DisplayLayout.ScrollBounds = Infragistics.Win.UltraWinGrid.ScrollBounds.ScrollToFill;
  541. this.ultraGrid1.DisplayLayout.ScrollStyle = Infragistics.Win.UltraWinGrid.ScrollStyle.Immediate;
  542. this.ultraGrid1.DisplayLayout.ViewStyleBand = Infragistics.Win.UltraWinGrid.ViewStyleBand.OutlookGroupBy;
  543. this.ultraGrid1.Dock = System.Windows.Forms.DockStyle.Fill;
  544. this.ultraGrid1.Location = new System.Drawing.Point(3, 21);
  545. this.ultraGrid1.Margin = new System.Windows.Forms.Padding(3, 2, 3, 2);
  546. this.ultraGrid1.Name = "ultraGrid1";
  547. this.ultraGrid1.Size = new System.Drawing.Size(1004, 331);
  548. this.ultraGrid1.TabIndex = 2;
  549. this.ultraGrid1.Text = "ultraGrid1";
  550. this.ultraGrid1.AfterRowActivate += new System.EventHandler(this.ultraGrid1_AfterRowActivate);
  551. this.ultraGrid1.CellChange += new Infragistics.Win.UltraWinGrid.CellEventHandler(this.ultraGrid1_CellChange);
  552. this.ultraGrid1.ClickCellButton += new Infragistics.Win.UltraWinGrid.CellEventHandler(this.ultraGrid1_ClickCellButton);
  553. this.ultraGrid1.ClickCell += new Infragistics.Win.UltraWinGrid.ClickCellEventHandler(this.ultraGrid1_ClickCell);
  554. //
  555. // dataSet1
  556. //
  557. this.dataSet1.DataSetName = "NewDataSet";
  558. this.dataSet1.Tables.AddRange(new System.Data.DataTable[] {
  559. this.dataTable1});
  560. //
  561. // dataTable1
  562. //
  563. this.dataTable1.Columns.AddRange(new System.Data.DataColumn[] {
  564. this.dataColumn1,
  565. this.dataColumn2,
  566. this.dataColumn3,
  567. this.dataColumn4,
  568. this.dataColumn5,
  569. this.dataColumn7,
  570. this.dataColumn8,
  571. this.dataColumn9,
  572. this.dataColumn10,
  573. this.dataColumn11,
  574. this.dataColumn12,
  575. this.dataColumn13,
  576. this.dataColumn14,
  577. this.dataColumn15,
  578. this.dataColumn16,
  579. this.dataColumn17,
  580. this.dataColumn18,
  581. this.dataColumn84,
  582. this.dataColumn56,
  583. this.dataColumn98,
  584. this.dataColumn101,
  585. this.dataColumn102,
  586. this.dataColumn105});
  587. this.dataTable1.TableName = "Table1";
  588. //
  589. // dataColumn1
  590. //
  591. this.dataColumn1.Caption = "物料编码";
  592. this.dataColumn1.ColumnName = "itemCode";
  593. //
  594. // dataColumn2
  595. //
  596. this.dataColumn2.Caption = "物料描述";
  597. this.dataColumn2.ColumnName = "itemDesc";
  598. //
  599. // dataColumn3
  600. //
  601. this.dataColumn3.Caption = "物料名称";
  602. this.dataColumn3.ColumnName = "itemName";
  603. //
  604. // dataColumn4
  605. //
  606. this.dataColumn4.Caption = "物料型号规格";
  607. this.dataColumn4.ColumnName = "itemSpec";
  608. //
  609. // dataColumn5
  610. //
  611. this.dataColumn5.Caption = "物料材质";
  612. this.dataColumn5.ColumnName = "itemModel";
  613. //
  614. // dataColumn7
  615. //
  616. this.dataColumn7.Caption = "转换公式";
  617. this.dataColumn7.ColumnName = "itemUomFormula";
  618. //
  619. // dataColumn8
  620. //
  621. this.dataColumn8.Caption = "转换系数";
  622. this.dataColumn8.ColumnName = "itemUomConefficient";
  623. //
  624. // dataColumn9
  625. //
  626. this.dataColumn9.Caption = "计划价";
  627. this.dataColumn9.ColumnName = "bugPrice";
  628. //
  629. // dataColumn10
  630. //
  631. this.dataColumn10.Caption = "物料英文名称";
  632. this.dataColumn10.ColumnName = "ItemDescE";
  633. //
  634. // dataColumn11
  635. //
  636. this.dataColumn11.Caption = "库存单位";
  637. this.dataColumn11.ColumnName = "WeightUnit";
  638. //
  639. // dataColumn12
  640. //
  641. this.dataColumn12.Caption = "计价类型";
  642. this.dataColumn12.ColumnName = "PRICETYPE";
  643. //
  644. // dataColumn13
  645. //
  646. this.dataColumn13.Caption = "是否使用采购单位";
  647. this.dataColumn13.ColumnName = "itemUseUom";
  648. //
  649. // dataColumn14
  650. //
  651. this.dataColumn14.Caption = "采购管理部门代码";
  652. this.dataColumn14.ColumnName = "BuyerDeptCode";
  653. //
  654. // dataColumn15
  655. //
  656. this.dataColumn15.Caption = "采购管理部门描叙";
  657. this.dataColumn15.ColumnName = "BuyerDeptDesc";
  658. //
  659. // dataColumn16
  660. //
  661. this.dataColumn16.Caption = "采购管理科室代码";
  662. this.dataColumn16.ColumnName = "BuyerUnitCode";
  663. //
  664. // dataColumn17
  665. //
  666. this.dataColumn17.Caption = "采购管理科室描叙";
  667. this.dataColumn17.ColumnName = "BuyerUnitDesc";
  668. //
  669. // dataColumn18
  670. //
  671. this.dataColumn18.Caption = "入库类型";
  672. this.dataColumn18.ColumnName = "receiveType";
  673. //
  674. // dataColumn84
  675. //
  676. this.dataColumn84.Caption = "是否定额控制";
  677. this.dataColumn84.ColumnName = "isBudgetCtrl";
  678. //
  679. // dataColumn56
  680. //
  681. this.dataColumn56.ColumnName = "ARCCODE";
  682. //
  683. // dataColumn98
  684. //
  685. this.dataColumn98.Caption = "采购单位";
  686. this.dataColumn98.ColumnName = "UOMNAME";
  687. //
  688. // dataColumn101
  689. //
  690. this.dataColumn101.Caption = "标准";
  691. this.dataColumn101.ColumnName = "STANDARDSCODE";
  692. //
  693. // dataColumn102
  694. //
  695. this.dataColumn102.Caption = "数量";
  696. this.dataColumn102.ColumnName = "QTY";
  697. //
  698. // dataColumn105
  699. //
  700. this.dataColumn105.ColumnName = "ItemUnique";
  701. //
  702. // dataColumn42
  703. //
  704. this.dataColumn42.Caption = "物料属性4";
  705. this.dataColumn42.ColumnName = "ITEMATTR4";
  706. //
  707. // dataColumn39
  708. //
  709. this.dataColumn39.Caption = "物料属性1";
  710. this.dataColumn39.ColumnName = "ITEMATTR1";
  711. //
  712. // dataColumn41
  713. //
  714. this.dataColumn41.Caption = "物料属性3";
  715. this.dataColumn41.ColumnName = "ITEMATTR3";
  716. //
  717. // dataColumn40
  718. //
  719. this.dataColumn40.Caption = "物料属性2";
  720. this.dataColumn40.ColumnName = "ITEMATTR2";
  721. //
  722. // dataColumn38
  723. //
  724. this.dataColumn38.Caption = "排序";
  725. this.dataColumn38.ColumnName = "ORDERNUM";
  726. //
  727. // cmbNum
  728. //
  729. this.cmbNum.DropDownStyle = Infragistics.Win.DropDownStyle.DropDownList;
  730. valueListItem15.DataValue = "500";
  731. valueListItem15.DisplayText = "五百";
  732. valueListItem16.DataValue = "1000";
  733. valueListItem16.DisplayText = "一千";
  734. valueListItem17.DataValue = "2000";
  735. valueListItem17.DisplayText = "二千";
  736. valueListItem18.DataValue = "5000";
  737. valueListItem18.DisplayText = "五千";
  738. valueListItem19.DataValue = "";
  739. valueListItem19.DisplayText = "全部";
  740. this.cmbNum.Items.AddRange(new Infragistics.Win.ValueListItem[] {
  741. valueListItem15,
  742. valueListItem16,
  743. valueListItem17,
  744. valueListItem18,
  745. valueListItem19});
  746. this.cmbNum.Location = new System.Drawing.Point(993, 5);
  747. this.cmbNum.Margin = new System.Windows.Forms.Padding(4);
  748. this.cmbNum.Name = "cmbNum";
  749. this.cmbNum.Size = new System.Drawing.Size(71, 24);
  750. this.cmbNum.TabIndex = 167;
  751. //
  752. // label65
  753. //
  754. this.label65.AutoSize = true;
  755. this.label65.Location = new System.Drawing.Point(1068, 10);
  756. this.label65.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
  757. this.label65.Name = "label65";
  758. this.label65.Size = new System.Drawing.Size(52, 15);
  759. this.label65.TabIndex = 166;
  760. this.label65.Text = "条记录";
  761. //
  762. // ultraLabel1
  763. //
  764. this.ultraLabel1.AutoSize = true;
  765. this.ultraLabel1.Location = new System.Drawing.Point(285, 8);
  766. this.ultraLabel1.Margin = new System.Windows.Forms.Padding(3, 2, 3, 2);
  767. this.ultraLabel1.Name = "ultraLabel1";
  768. this.ultraLabel1.Size = new System.Drawing.Size(67, 19);
  769. this.ultraLabel1.TabIndex = 12;
  770. this.ultraLabel1.Text = "物料名称";
  771. //
  772. // dataColumn37
  773. //
  774. this.dataColumn37.Caption = "属性";
  775. this.dataColumn37.ColumnName = "ITEMATTR";
  776. //
  777. // label64
  778. //
  779. this.label64.AutoSize = true;
  780. this.label64.Location = new System.Drawing.Point(949, 10);
  781. this.label64.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
  782. this.label64.Name = "label64";
  783. this.label64.Size = new System.Drawing.Size(37, 15);
  784. this.label64.TabIndex = 165;
  785. this.label64.Text = "显示";
  786. //
  787. // ultraLabel23
  788. //
  789. this.ultraLabel23.AutoSize = true;
  790. this.ultraLabel23.Location = new System.Drawing.Point(9, 8);
  791. this.ultraLabel23.Margin = new System.Windows.Forms.Padding(3, 2, 3, 2);
  792. this.ultraLabel23.Name = "ultraLabel23";
  793. this.ultraLabel23.Size = new System.Drawing.Size(67, 19);
  794. this.ultraLabel23.TabIndex = 11;
  795. this.ultraLabel23.Text = "物料编码";
  796. //
  797. // ultraTextEditor2
  798. //
  799. this.ultraTextEditor2.Location = new System.Drawing.Point(24, 34);
  800. this.ultraTextEditor2.Margin = new System.Windows.Forms.Padding(4);
  801. this.ultraTextEditor2.Name = "ultraTextEditor2";
  802. this.ultraTextEditor2.Size = new System.Drawing.Size(72, 24);
  803. this.ultraTextEditor2.TabIndex = 3;
  804. this.ultraTextEditor2.Visible = false;
  805. //
  806. // txt_wlmc
  807. //
  808. this.txt_wlmc.Location = new System.Drawing.Point(359, 5);
  809. this.txt_wlmc.Margin = new System.Windows.Forms.Padding(3, 2, 3, 2);
  810. this.txt_wlmc.Name = "txt_wlmc";
  811. this.txt_wlmc.Size = new System.Drawing.Size(256, 24);
  812. this.txt_wlmc.TabIndex = 8;
  813. //
  814. // dataColumn26
  815. //
  816. this.dataColumn26.Caption = "转换系数";
  817. this.dataColumn26.ColumnName = "itemUomConefficient";
  818. //
  819. // txt_wlbm
  820. //
  821. this.txt_wlbm.Location = new System.Drawing.Point(79, 5);
  822. this.txt_wlbm.Margin = new System.Windows.Forms.Padding(3, 2, 3, 2);
  823. this.txt_wlbm.Name = "txt_wlbm";
  824. this.txt_wlbm.Size = new System.Drawing.Size(191, 24);
  825. this.txt_wlbm.TabIndex = 7;
  826. //
  827. // dataColumn24
  828. //
  829. this.dataColumn24.Caption = "采购单位";
  830. this.dataColumn24.ColumnName = "itemUom";
  831. //
  832. // dataColumn31
  833. //
  834. this.dataColumn31.Caption = "是否使用采购单位";
  835. this.dataColumn31.ColumnName = "itemUseUom";
  836. //
  837. // dataSet2
  838. //
  839. this.dataSet2.DataSetName = "NewDataSet";
  840. this.dataSet2.Tables.AddRange(new System.Data.DataTable[] {
  841. this.dataTable2});
  842. //
  843. // dataTable2
  844. //
  845. this.dataTable2.Columns.AddRange(new System.Data.DataColumn[] {
  846. this.dataColumn19,
  847. this.dataColumn24,
  848. this.dataColumn26,
  849. this.dataColumn31,
  850. this.dataColumn37,
  851. this.dataColumn38,
  852. this.dataColumn39,
  853. this.dataColumn40,
  854. this.dataColumn41,
  855. this.dataColumn42,
  856. this.dataColumn20});
  857. this.dataTable2.TableName = "Table1";
  858. //
  859. // dataColumn19
  860. //
  861. this.dataColumn19.Caption = "物料编码";
  862. this.dataColumn19.ColumnName = "itemCode";
  863. //
  864. // ultraTextEditor4
  865. //
  866. this.ultraTextEditor4.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left)
  867. | System.Windows.Forms.AnchorStyles.Right)));
  868. appearance13.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(255)))), ((int)(((byte)(255)))), ((int)(((byte)(192)))));
  869. appearance13.FontData.BoldAsString = "True";
  870. appearance13.ForeColor = System.Drawing.Color.Red;
  871. appearance13.TextVAlignAsString = "Middle";
  872. this.ultraTextEditor4.Appearance = appearance13;
  873. this.ultraTextEditor4.Location = new System.Drawing.Point(8, 319);
  874. this.ultraTextEditor4.Margin = new System.Windows.Forms.Padding(4);
  875. this.ultraTextEditor4.Name = "ultraTextEditor4";
  876. this.ultraTextEditor4.Size = new System.Drawing.Size(328, 29);
  877. this.ultraTextEditor4.TabIndex = 9;
  878. this.ultraTextEditor4.MouseEnter += new System.EventHandler(this.ultraTextEditor4_MouseEnter);
  879. this.ultraTextEditor4.MouseHover += new System.EventHandler(this.ultraTextEditor4_MouseHover);
  880. //
  881. // ultraTextEditor6
  882. //
  883. this.ultraTextEditor6.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left)
  884. | System.Windows.Forms.AnchorStyles.Right)));
  885. this.ultraTextEditor6.Location = new System.Drawing.Point(111, 289);
  886. this.ultraTextEditor6.Margin = new System.Windows.Forms.Padding(4);
  887. this.ultraTextEditor6.Name = "ultraTextEditor6";
  888. this.ultraTextEditor6.ReadOnly = true;
  889. this.ultraTextEditor6.Size = new System.Drawing.Size(141, 24);
  890. this.ultraTextEditor6.TabIndex = 8;
  891. this.ultraTextEditor6.Visible = false;
  892. //
  893. // ultraTextEditor5
  894. //
  895. this.ultraTextEditor5.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left)
  896. | System.Windows.Forms.AnchorStyles.Right)));
  897. this.ultraTextEditor5.Location = new System.Drawing.Point(192, 289);
  898. this.ultraTextEditor5.Margin = new System.Windows.Forms.Padding(4);
  899. this.ultraTextEditor5.Name = "ultraTextEditor5";
  900. this.ultraTextEditor5.ReadOnly = true;
  901. this.ultraTextEditor5.Size = new System.Drawing.Size(144, 24);
  902. this.ultraTextEditor5.TabIndex = 7;
  903. this.ultraTextEditor5.Visible = false;
  904. //
  905. // ultraLabel3
  906. //
  907. this.ultraLabel3.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left)));
  908. appearance17.TextVAlignAsString = "Bottom";
  909. this.ultraLabel3.Appearance = appearance17;
  910. this.ultraLabel3.Location = new System.Drawing.Point(8, 285);
  911. this.ultraLabel3.Margin = new System.Windows.Forms.Padding(4);
  912. this.ultraLabel3.Name = "ultraLabel3";
  913. this.ultraLabel3.Size = new System.Drawing.Size(133, 29);
  914. this.ultraLabel3.TabIndex = 6;
  915. this.ultraLabel3.Text = "所选属性:";
  916. //
  917. // ultraGroupBox7
  918. //
  919. this.ultraGroupBox7.Controls.Add(this.ultraButton2);
  920. this.ultraGroupBox7.Controls.Add(this.ultraTextEditor4);
  921. this.ultraGroupBox7.Controls.Add(this.ultraTextEditor6);
  922. this.ultraGroupBox7.Controls.Add(this.ultraTextEditor5);
  923. this.ultraGroupBox7.Controls.Add(this.ultraLabel3);
  924. this.ultraGroupBox7.Controls.Add(this.ultraGrid7);
  925. this.ultraGroupBox7.Dock = System.Windows.Forms.DockStyle.Right;
  926. this.ultraGroupBox7.Location = new System.Drawing.Point(1010, 0);
  927. this.ultraGroupBox7.Margin = new System.Windows.Forms.Padding(4);
  928. this.ultraGroupBox7.Name = "ultraGroupBox7";
  929. this.ultraGroupBox7.Size = new System.Drawing.Size(340, 355);
  930. this.ultraGroupBox7.TabIndex = 5;
  931. this.ultraGroupBox7.Text = "属性";
  932. //
  933. // ultraButton2
  934. //
  935. this.ultraButton2.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left)));
  936. this.ultraButton2.Location = new System.Drawing.Point(103, 286);
  937. this.ultraButton2.Margin = new System.Windows.Forms.Padding(4);
  938. this.ultraButton2.Name = "ultraButton2";
  939. this.ultraButton2.Size = new System.Drawing.Size(100, 30);
  940. this.ultraButton2.TabIndex = 10;
  941. this.ultraButton2.Text = "添加物料";
  942. this.ultraButton2.Click += new System.EventHandler(this.ultraButton2_Click);
  943. //
  944. // ultraGrid7
  945. //
  946. this.ultraGrid7.Anchor = ((System.Windows.Forms.AnchorStyles)((((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom)
  947. | System.Windows.Forms.AnchorStyles.Left)
  948. | System.Windows.Forms.AnchorStyles.Right)));
  949. this.ultraGrid7.DataMember = "Table3";
  950. this.ultraGrid7.DataSource = this.dataSet3;
  951. ultraGridColumn26.Header.VisiblePosition = 0;
  952. ultraGridColumn26.Hidden = true;
  953. ultraGridColumn26.SortIndicator = Infragistics.Win.UltraWinGrid.SortIndicator.Disabled;
  954. ultraGridColumn27.Header.VisiblePosition = 1;
  955. ultraGridColumn27.SortIndicator = Infragistics.Win.UltraWinGrid.SortIndicator.Disabled;
  956. ultraGridColumn27.Width = 126;
  957. ultraGridBand2.Columns.AddRange(new object[] {
  958. ultraGridColumn26,
  959. ultraGridColumn27});
  960. this.ultraGrid7.DisplayLayout.BandsSerializer.Add(ultraGridBand2);
  961. this.ultraGrid7.DisplayLayout.CaptionVisible = Infragistics.Win.DefaultableBoolean.False;
  962. this.ultraGrid7.Location = new System.Drawing.Point(8, 22);
  963. this.ultraGrid7.Margin = new System.Windows.Forms.Padding(4);
  964. this.ultraGrid7.Name = "ultraGrid7";
  965. this.ultraGrid7.Size = new System.Drawing.Size(328, 261);
  966. this.ultraGrid7.TabIndex = 4;
  967. this.ultraGrid7.Text = "ultraGrid7";
  968. this.ultraGrid7.CellChange += new Infragistics.Win.UltraWinGrid.CellEventHandler(this.ultraGrid7_CellChange);
  969. //
  970. // dataSet3
  971. //
  972. this.dataSet3.DataSetName = "NewDataSet";
  973. this.dataSet3.Tables.AddRange(new System.Data.DataTable[] {
  974. this.dataTable5,
  975. this.dataTable6,
  976. this.dataTable7,
  977. this.dataTable8,
  978. this.dataTable3,
  979. this.dataTable4});
  980. //
  981. // dataTable5
  982. //
  983. this.dataTable5.Columns.AddRange(new System.Data.DataColumn[] {
  984. this.dataColumn85,
  985. this.dataColumn91});
  986. this.dataTable5.TableName = "Table3";
  987. //
  988. // dataColumn85
  989. //
  990. this.dataColumn85.Caption = "属性分类编码";
  991. this.dataColumn85.ColumnName = "ITEMATTRCLASS";
  992. //
  993. // dataColumn91
  994. //
  995. this.dataColumn91.Caption = "属性分类名称";
  996. this.dataColumn91.ColumnName = "ITEMATTRCLASSNAME";
  997. //
  998. // dataTable6
  999. //
  1000. this.dataTable6.Columns.AddRange(new System.Data.DataColumn[] {
  1001. this.dataColumn108,
  1002. this.dataColumn109});
  1003. this.dataTable6.TableName = "Table4";
  1004. //
  1005. // dataColumn108
  1006. //
  1007. this.dataColumn108.Caption = "标准ID";
  1008. this.dataColumn108.ColumnName = "ITEMSTANDARDSID";
  1009. //
  1010. // dataColumn109
  1011. //
  1012. this.dataColumn109.Caption = "标准编号值";
  1013. this.dataColumn109.ColumnName = "STANDARDSCODE";
  1014. //
  1015. // dataTable7
  1016. //
  1017. this.dataTable7.Columns.AddRange(new System.Data.DataColumn[] {
  1018. this.dataColumn106,
  1019. this.dataColumn107,
  1020. this.dataColumn110});
  1021. this.dataTable7.TableName = "Table5";
  1022. //
  1023. // dataColumn106
  1024. //
  1025. this.dataColumn106.ColumnName = "ITEMUOMID";
  1026. //
  1027. // dataColumn107
  1028. //
  1029. this.dataColumn107.ColumnName = "UOMNAME";
  1030. //
  1031. // dataTable8
  1032. //
  1033. this.dataTable8.Columns.AddRange(new System.Data.DataColumn[] {
  1034. this.dataColumn86,
  1035. this.dataColumn88,
  1036. this.dataColumn90,
  1037. this.dataColumn87});
  1038. this.dataTable8.TableName = "Table6";
  1039. //
  1040. // dataColumn86
  1041. //
  1042. this.dataColumn86.Caption = "属性编码(ID)";
  1043. this.dataColumn86.ColumnName = "ITEMATTRID";
  1044. //
  1045. // dataColumn88
  1046. //
  1047. this.dataColumn88.Caption = "属性";
  1048. this.dataColumn88.ColumnName = "ITEMATTR";
  1049. //
  1050. // dataColumn90
  1051. //
  1052. this.dataColumn90.ColumnName = "ITEMATTRCLASS";
  1053. //
  1054. // dataColumn87
  1055. //
  1056. this.dataColumn87.Caption = "属性编码";
  1057. this.dataColumn87.ColumnName = "ITEMATTRCODE";
  1058. //
  1059. // dataTable3
  1060. //
  1061. this.dataTable3.Columns.AddRange(new System.Data.DataColumn[] {
  1062. this.dataColumn21,
  1063. this.dataColumn22,
  1064. this.dataColumn23,
  1065. this.dataColumn25,
  1066. this.dataColumn27,
  1067. this.dataColumn28,
  1068. this.dataColumn29,
  1069. this.dataColumn30,
  1070. this.dataColumn32,
  1071. this.dataColumn33,
  1072. this.dataColumn34,
  1073. this.dataColumn35,
  1074. this.dataColumn36,
  1075. this.dataColumn43});
  1076. this.dataTable3.TableName = "Table1";
  1077. //
  1078. // dataColumn21
  1079. //
  1080. this.dataColumn21.Caption = "物料编码";
  1081. this.dataColumn21.ColumnName = "ITEMCODE";
  1082. //
  1083. // dataColumn22
  1084. //
  1085. this.dataColumn22.Caption = "物料名称";
  1086. this.dataColumn22.ColumnName = "ITEMNAME";
  1087. //
  1088. // dataColumn23
  1089. //
  1090. this.dataColumn23.Caption = "物料规格";
  1091. this.dataColumn23.ColumnName = "ITEMSPEC";
  1092. //
  1093. // dataColumn25
  1094. //
  1095. this.dataColumn25.Caption = "库存单位";
  1096. this.dataColumn25.ColumnName = "WEIGHTUNIT";
  1097. //
  1098. // dataColumn27
  1099. //
  1100. this.dataColumn27.Caption = "分类编码";
  1101. this.dataColumn27.ColumnName = "ARCCODE";
  1102. //
  1103. // dataColumn28
  1104. //
  1105. this.dataColumn28.Caption = "分类名称";
  1106. this.dataColumn28.ColumnName = "ARCITEM";
  1107. //
  1108. // dataColumn29
  1109. //
  1110. this.dataColumn29.Caption = "申请人";
  1111. this.dataColumn29.ColumnName = "CREATENAME";
  1112. //
  1113. // dataColumn30
  1114. //
  1115. this.dataColumn30.Caption = "创建时间";
  1116. this.dataColumn30.ColumnName = "CREATETIME";
  1117. //
  1118. // dataColumn32
  1119. //
  1120. this.dataColumn32.Caption = "修改人";
  1121. this.dataColumn32.ColumnName = "UPDATENAME";
  1122. //
  1123. // dataColumn33
  1124. //
  1125. this.dataColumn33.Caption = "修改时间";
  1126. this.dataColumn33.ColumnName = "UPDATETIME";
  1127. //
  1128. // dataColumn34
  1129. //
  1130. this.dataColumn34.Caption = "BUYERROLEID";
  1131. this.dataColumn34.ColumnName = "BUYERROLEID";
  1132. //
  1133. // dataColumn35
  1134. //
  1135. this.dataColumn35.ColumnName = "PLANNERROLEID";
  1136. //
  1137. // dataColumn36
  1138. //
  1139. this.dataColumn36.Caption = "物料描述";
  1140. this.dataColumn36.ColumnName = "ITEMDESC";
  1141. //
  1142. // dataColumn43
  1143. //
  1144. this.dataColumn43.ColumnName = "BATCHFLAG";
  1145. //
  1146. // dataTable4
  1147. //
  1148. this.dataTable4.Columns.AddRange(new System.Data.DataColumn[] {
  1149. this.dataColumn44,
  1150. this.dataColumn45,
  1151. this.dataColumn46,
  1152. this.dataColumn47,
  1153. this.dataColumn48,
  1154. this.dataColumn49,
  1155. this.dataColumn50,
  1156. this.dataColumn51,
  1157. this.dataColumn52,
  1158. this.dataColumn53,
  1159. this.dataColumn54,
  1160. this.dataColumn55});
  1161. this.dataTable4.TableName = "Table2";
  1162. //
  1163. // dataColumn44
  1164. //
  1165. this.dataColumn44.Caption = "供应商代码";
  1166. this.dataColumn44.ColumnName = "SUPPCODE";
  1167. //
  1168. // dataColumn45
  1169. //
  1170. this.dataColumn45.Caption = "供应商名称";
  1171. this.dataColumn45.ColumnName = "SUPPNAME";
  1172. //
  1173. // dataColumn46
  1174. //
  1175. this.dataColumn46.Caption = "组织机构代码";
  1176. this.dataColumn46.ColumnName = "ORGCODE";
  1177. //
  1178. // dataColumn47
  1179. //
  1180. this.dataColumn47.Caption = "是否内部供应商";
  1181. this.dataColumn47.ColumnName = "SUPPISINTERNAL";
  1182. //
  1183. // dataColumn48
  1184. //
  1185. this.dataColumn48.Caption = "是否子公司";
  1186. this.dataColumn48.ColumnName = "SUPPISSUBCOMPANY";
  1187. //
  1188. // dataColumn49
  1189. //
  1190. this.dataColumn49.Caption = "是否制造商";
  1191. this.dataColumn49.ColumnName = "SUPPISMANUFACTURER";
  1192. //
  1193. // dataColumn50
  1194. //
  1195. this.dataColumn50.Caption = "当前状态";
  1196. this.dataColumn50.ColumnName = "STATUS";
  1197. //
  1198. // dataColumn51
  1199. //
  1200. this.dataColumn51.ColumnName = "suppGradeId";
  1201. //
  1202. // dataColumn52
  1203. //
  1204. this.dataColumn52.Caption = "采购员角色名称";
  1205. this.dataColumn52.ColumnName = "BUYERROLENAME";
  1206. //
  1207. // dataColumn53
  1208. //
  1209. this.dataColumn53.Caption = "计划员角色名称";
  1210. this.dataColumn53.ColumnName = "PLANNERROLENAME";
  1211. //
  1212. // dataColumn54
  1213. //
  1214. this.dataColumn54.ColumnName = "BUYERROLEID";
  1215. //
  1216. // dataColumn55
  1217. //
  1218. this.dataColumn55.Caption = "PLANNERROLEID";
  1219. this.dataColumn55.ColumnName = "PLANNERROLEID";
  1220. //
  1221. // dataColumn69
  1222. //
  1223. this.dataColumn69.Caption = "采购标准编号";
  1224. this.dataColumn69.ColumnName = "STANDARDSCODE";
  1225. //
  1226. // dataColumn70
  1227. //
  1228. this.dataColumn70.Caption = "是否常用";
  1229. this.dataColumn70.ColumnName = "ISDEFAULT";
  1230. //
  1231. // dataColumn71
  1232. //
  1233. this.dataColumn71.Caption = "排序";
  1234. this.dataColumn71.ColumnName = "ORDERNUM";
  1235. //
  1236. // dataColumn72
  1237. //
  1238. this.dataColumn72.Caption = "备注";
  1239. this.dataColumn72.ColumnName = "REMARK";
  1240. //
  1241. // dataColumn73
  1242. //
  1243. this.dataColumn73.ColumnName = "ITEMSTANDARDSID";
  1244. //
  1245. // dataColumn74
  1246. //
  1247. this.dataColumn74.Caption = "采购标准ID";
  1248. this.dataColumn74.ColumnName = "STANDARDSID";
  1249. //
  1250. // dataColumn75
  1251. //
  1252. this.dataColumn75.ColumnName = "ITEMUOMID";
  1253. //
  1254. // dataColumn76
  1255. //
  1256. this.dataColumn76.Caption = "采购单位编码";
  1257. this.dataColumn76.ColumnName = "UOMCODE";
  1258. //
  1259. // dataColumn77
  1260. //
  1261. this.dataColumn77.Caption = "采购单位名称";
  1262. this.dataColumn77.ColumnName = "UOMNAME";
  1263. //
  1264. // dataColumn78
  1265. //
  1266. this.dataColumn78.Caption = "转换系数";
  1267. this.dataColumn78.ColumnName = "ITEMUOMCONEFFICIENT";
  1268. //
  1269. // dataColumn79
  1270. //
  1271. this.dataColumn79.Caption = "库存单位";
  1272. this.dataColumn79.ColumnName = "WEIGHTUNIT";
  1273. //
  1274. // dataColumn80
  1275. //
  1276. this.dataColumn80.Caption = "库存单位编码";
  1277. this.dataColumn80.ColumnName = "WEIGHTUNITCODE";
  1278. //
  1279. // dataColumn81
  1280. //
  1281. this.dataColumn81.Caption = "是否常用";
  1282. this.dataColumn81.ColumnName = "ISDEFAULT";
  1283. //
  1284. // dataColumn82
  1285. //
  1286. this.dataColumn82.Caption = "备注";
  1287. this.dataColumn82.ColumnName = "REMARK";
  1288. //
  1289. // tableLayoutPanel2
  1290. //
  1291. this.tableLayoutPanel2.ColumnCount = 1;
  1292. this.tableLayoutPanel2.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Percent, 100F));
  1293. this.tableLayoutPanel2.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Absolute, 27F));
  1294. this.tableLayoutPanel2.Controls.Add(this.ultraGroupBox8, 0, 0);
  1295. this.tableLayoutPanel2.Dock = System.Windows.Forms.DockStyle.Fill;
  1296. this.tableLayoutPanel2.Location = new System.Drawing.Point(3, 0);
  1297. this.tableLayoutPanel2.Margin = new System.Windows.Forms.Padding(4);
  1298. this.tableLayoutPanel2.Name = "tableLayoutPanel2";
  1299. this.tableLayoutPanel2.RowCount = 1;
  1300. this.tableLayoutPanel2.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Percent, 100F));
  1301. this.tableLayoutPanel2.Size = new System.Drawing.Size(1344, 231);
  1302. this.tableLayoutPanel2.TabIndex = 0;
  1303. //
  1304. // ultraGroupBox8
  1305. //
  1306. this.ultraGroupBox8.Controls.Add(this.ultraGrid2);
  1307. this.ultraGroupBox8.Dock = System.Windows.Forms.DockStyle.Fill;
  1308. this.ultraGroupBox8.Location = new System.Drawing.Point(4, 4);
  1309. this.ultraGroupBox8.Margin = new System.Windows.Forms.Padding(4);
  1310. this.ultraGroupBox8.Name = "ultraGroupBox8";
  1311. this.ultraGroupBox8.Size = new System.Drawing.Size(1336, 223);
  1312. this.ultraGroupBox8.TabIndex = 0;
  1313. this.ultraGroupBox8.Text = "已选物料";
  1314. this.ultraGroupBox8.ViewStyle = Infragistics.Win.Misc.GroupBoxViewStyle.Office2007;
  1315. //
  1316. // ultraGrid2
  1317. //
  1318. this.ultraGrid2.DataMember = "Table1";
  1319. this.ultraGrid2.DataSource = this.dataSet4;
  1320. ultraGridColumn28.Header.VisiblePosition = 0;
  1321. ultraGridColumn29.Header.VisiblePosition = 1;
  1322. ultraGridColumn29.Hidden = true;
  1323. ultraGridColumn30.Header.VisiblePosition = 3;
  1324. ultraGridColumn31.Header.VisiblePosition = 4;
  1325. ultraGridColumn31.Hidden = true;
  1326. ultraGridColumn32.Header.VisiblePosition = 5;
  1327. ultraGridColumn32.Hidden = true;
  1328. appearance22.BackColor = System.Drawing.Color.White;
  1329. ultraGridColumn33.CellAppearance = appearance22;
  1330. ultraGridColumn33.Header.VisiblePosition = 8;
  1331. ultraGridColumn34.Header.VisiblePosition = 9;
  1332. ultraGridColumn34.Hidden = true;
  1333. ultraGridColumn35.Header.VisiblePosition = 13;
  1334. ultraGridColumn36.Header.VisiblePosition = 2;
  1335. ultraGridColumn36.Width = 74;
  1336. ultraGridColumn37.Header.VisiblePosition = 14;
  1337. ultraGridColumn37.Hidden = true;
  1338. ultraGridColumn38.Header.VisiblePosition = 15;
  1339. ultraGridColumn39.Header.VisiblePosition = 16;
  1340. ultraGridColumn39.Hidden = true;
  1341. ultraGridColumn40.Header.VisiblePosition = 18;
  1342. ultraGridColumn40.Hidden = true;
  1343. ultraGridColumn41.Header.VisiblePosition = 19;
  1344. ultraGridColumn41.Hidden = true;
  1345. ultraGridColumn42.Header.VisiblePosition = 20;
  1346. ultraGridColumn42.Hidden = true;
  1347. ultraGridColumn43.Header.VisiblePosition = 21;
  1348. ultraGridColumn43.Hidden = true;
  1349. ultraGridColumn44.Header.VisiblePosition = 22;
  1350. ultraGridColumn44.Hidden = true;
  1351. ultraGridColumn45.Header.VisiblePosition = 23;
  1352. ultraGridColumn45.Hidden = true;
  1353. ultraGridColumn46.Header.VisiblePosition = 6;
  1354. ultraGridColumn46.Width = 59;
  1355. ultraGridColumn47.Header.VisiblePosition = 17;
  1356. ultraGridColumn47.Hidden = true;
  1357. appearance24.BackColor = System.Drawing.Color.White;
  1358. ultraGridColumn48.CellAppearance = appearance24;
  1359. ultraGridColumn48.Header.VisiblePosition = 10;
  1360. appearance25.BackColor = System.Drawing.Color.Yellow;
  1361. ultraGridColumn49.CellAppearance = appearance25;
  1362. ultraGridColumn49.Header.VisiblePosition = 11;
  1363. ultraGridColumn49.MaskInput = "{LOC}nnnnnnn.nnn";
  1364. ultraGridColumn49.Style = Infragistics.Win.UltraWinGrid.ColumnStyle.Double;
  1365. ultraGridColumn49.Width = 93;
  1366. ultraGridColumn50.Header.VisiblePosition = 7;
  1367. ultraGridColumn51.Header.VisiblePosition = 24;
  1368. ultraGridColumn51.Hidden = true;
  1369. ultraGridColumn52.Header.VisiblePosition = 25;
  1370. ultraGridColumn52.Hidden = true;
  1371. ultraGridColumn53.ButtonDisplayStyle = Infragistics.Win.UltraWinGrid.ButtonDisplayStyle.Always;
  1372. ultraGridColumn53.Header.Caption = "删除";
  1373. ultraGridColumn53.Header.VisiblePosition = 12;
  1374. ultraGridColumn53.NullText = "删除";
  1375. ultraGridColumn53.Style = Infragistics.Win.UltraWinGrid.ColumnStyle.Button;
  1376. ultraGridColumn53.Width = 58;
  1377. ultraGridBand3.Columns.AddRange(new object[] {
  1378. ultraGridColumn28,
  1379. ultraGridColumn29,
  1380. ultraGridColumn30,
  1381. ultraGridColumn31,
  1382. ultraGridColumn32,
  1383. ultraGridColumn33,
  1384. ultraGridColumn34,
  1385. ultraGridColumn35,
  1386. ultraGridColumn36,
  1387. ultraGridColumn37,
  1388. ultraGridColumn38,
  1389. ultraGridColumn39,
  1390. ultraGridColumn40,
  1391. ultraGridColumn41,
  1392. ultraGridColumn42,
  1393. ultraGridColumn43,
  1394. ultraGridColumn44,
  1395. ultraGridColumn45,
  1396. ultraGridColumn46,
  1397. ultraGridColumn47,
  1398. ultraGridColumn48,
  1399. ultraGridColumn49,
  1400. ultraGridColumn50,
  1401. ultraGridColumn51,
  1402. ultraGridColumn52,
  1403. ultraGridColumn53});
  1404. this.ultraGrid2.DisplayLayout.BandsSerializer.Add(ultraGridBand3);
  1405. this.ultraGrid2.DisplayLayout.CaptionVisible = Infragistics.Win.DefaultableBoolean.False;
  1406. this.ultraGrid2.Dock = System.Windows.Forms.DockStyle.Fill;
  1407. this.ultraGrid2.Location = new System.Drawing.Point(3, 21);
  1408. this.ultraGrid2.Margin = new System.Windows.Forms.Padding(4);
  1409. this.ultraGrid2.Name = "ultraGrid2";
  1410. this.ultraGrid2.Size = new System.Drawing.Size(1330, 199);
  1411. this.ultraGrid2.TabIndex = 0;
  1412. this.ultraGrid2.Text = "ultraGrid2";
  1413. this.ultraGrid2.ClickCellButton += new Infragistics.Win.UltraWinGrid.CellEventHandler(this.ultraGrid2_ClickCellButton);
  1414. //
  1415. // dataSet4
  1416. //
  1417. this.dataSet4.DataSetName = "NewDataSet";
  1418. this.dataSet4.Tables.AddRange(new System.Data.DataTable[] {
  1419. this.dataTable9});
  1420. //
  1421. // dataTable9
  1422. //
  1423. this.dataTable9.Columns.AddRange(new System.Data.DataColumn[] {
  1424. this.dataColumn57,
  1425. this.dataColumn58,
  1426. this.dataColumn59,
  1427. this.dataColumn60,
  1428. this.dataColumn61,
  1429. this.dataColumn62,
  1430. this.dataColumn63,
  1431. this.dataColumn64,
  1432. this.dataColumn65,
  1433. this.dataColumn66,
  1434. this.dataColumn67,
  1435. this.dataColumn68,
  1436. this.dataColumn83,
  1437. this.dataColumn89,
  1438. this.dataColumn92,
  1439. this.dataColumn93,
  1440. this.dataColumn94,
  1441. this.dataColumn95,
  1442. this.dataColumn96,
  1443. this.dataColumn97,
  1444. this.dataColumn99,
  1445. this.dataColumn100,
  1446. this.dataColumn6,
  1447. this.dataColumn103,
  1448. this.dataColumn104});
  1449. this.dataTable9.TableName = "Table1";
  1450. //
  1451. // dataColumn57
  1452. //
  1453. this.dataColumn57.Caption = "物料编码";
  1454. this.dataColumn57.ColumnName = "itemCode";
  1455. //
  1456. // dataColumn58
  1457. //
  1458. this.dataColumn58.Caption = "物料描述";
  1459. this.dataColumn58.ColumnName = "itemDesc";
  1460. //
  1461. // dataColumn59
  1462. //
  1463. this.dataColumn59.Caption = "物料名称";
  1464. this.dataColumn59.ColumnName = "itemName";
  1465. //
  1466. // dataColumn60
  1467. //
  1468. this.dataColumn60.Caption = "物料型号规格";
  1469. this.dataColumn60.ColumnName = "itemSpec";
  1470. //
  1471. // dataColumn61
  1472. //
  1473. this.dataColumn61.Caption = "物料材质";
  1474. this.dataColumn61.ColumnName = "itemModel";
  1475. //
  1476. // dataColumn62
  1477. //
  1478. this.dataColumn62.Caption = "采购单位";
  1479. this.dataColumn62.ColumnName = "UOMNAME";
  1480. //
  1481. // dataColumn63
  1482. //
  1483. this.dataColumn63.Caption = "转换公式";
  1484. this.dataColumn63.ColumnName = "itemUomFormula";
  1485. //
  1486. // dataColumn64
  1487. //
  1488. this.dataColumn64.Caption = "转换系数";
  1489. this.dataColumn64.ColumnName = "itemUomConefficient";
  1490. //
  1491. // dataColumn65
  1492. //
  1493. this.dataColumn65.Caption = "计划价";
  1494. this.dataColumn65.ColumnName = "bugPrice";
  1495. //
  1496. // dataColumn66
  1497. //
  1498. this.dataColumn66.Caption = "物料英文名称";
  1499. this.dataColumn66.ColumnName = "ItemDescE";
  1500. //
  1501. // dataColumn67
  1502. //
  1503. this.dataColumn67.Caption = "库存单位";
  1504. this.dataColumn67.ColumnName = "WeightUnit";
  1505. //
  1506. // dataColumn68
  1507. //
  1508. this.dataColumn68.Caption = "计价类型";
  1509. this.dataColumn68.ColumnName = "PRICETYPE";
  1510. //
  1511. // dataColumn83
  1512. //
  1513. this.dataColumn83.Caption = "是否使用采购单位";
  1514. this.dataColumn83.ColumnName = "itemUseUom";
  1515. //
  1516. // dataColumn89
  1517. //
  1518. this.dataColumn89.Caption = "采购管理部门代码";
  1519. this.dataColumn89.ColumnName = "BuyerDeptCode";
  1520. //
  1521. // dataColumn92
  1522. //
  1523. this.dataColumn92.Caption = "采购管理部门描叙";
  1524. this.dataColumn92.ColumnName = "BuyerDeptDesc";
  1525. //
  1526. // dataColumn93
  1527. //
  1528. this.dataColumn93.Caption = "采购管理科室代码";
  1529. this.dataColumn93.ColumnName = "BuyerUnitCode";
  1530. //
  1531. // dataColumn94
  1532. //
  1533. this.dataColumn94.Caption = "采购管理科室描叙";
  1534. this.dataColumn94.ColumnName = "BuyerUnitDesc";
  1535. //
  1536. // dataColumn95
  1537. //
  1538. this.dataColumn95.Caption = "入库类型";
  1539. this.dataColumn95.ColumnName = "receiveType";
  1540. //
  1541. // dataColumn96
  1542. //
  1543. this.dataColumn96.Caption = "是否定额控制";
  1544. this.dataColumn96.ColumnName = "isBudgetCtrl";
  1545. //
  1546. // dataColumn97
  1547. //
  1548. this.dataColumn97.ColumnName = "ARCCODE";
  1549. //
  1550. // dataColumn99
  1551. //
  1552. this.dataColumn99.Caption = "标准";
  1553. this.dataColumn99.ColumnName = "STANDARDSCODE";
  1554. //
  1555. // dataColumn100
  1556. //
  1557. this.dataColumn100.Caption = "数量";
  1558. this.dataColumn100.ColumnName = "QTY";
  1559. //
  1560. // dataColumn6
  1561. //
  1562. this.dataColumn6.Caption = "属性";
  1563. this.dataColumn6.ColumnName = "ItemAttr";
  1564. //
  1565. // dataColumn103
  1566. //
  1567. this.dataColumn103.Caption = "属性ID";
  1568. this.dataColumn103.ColumnName = "ItemAttrId";
  1569. //
  1570. // dataColumn104
  1571. //
  1572. this.dataColumn104.ColumnName = "ITEMUNIQUE";
  1573. //
  1574. // ultraGroupBox4
  1575. //
  1576. this.ultraGroupBox4.Controls.Add(this.ultraGrid5);
  1577. this.ultraGroupBox4.Location = new System.Drawing.Point(1287, 10);
  1578. this.ultraGroupBox4.Margin = new System.Windows.Forms.Padding(4);
  1579. this.ultraGroupBox4.Name = "ultraGroupBox4";
  1580. this.ultraGroupBox4.Size = new System.Drawing.Size(61, 194);
  1581. this.ultraGroupBox4.TabIndex = 0;
  1582. this.ultraGroupBox4.Text = "采购单位";
  1583. this.ultraGroupBox4.ViewStyle = Infragistics.Win.Misc.GroupBoxViewStyle.Office2007;
  1584. this.ultraGroupBox4.Visible = false;
  1585. //
  1586. // ultraGrid5
  1587. //
  1588. this.ultraGrid5.DataMember = "Table5";
  1589. this.ultraGrid5.DataSource = this.dataSet3;
  1590. ultraGridColumn54.Header.VisiblePosition = 0;
  1591. ultraGridColumn55.Header.VisiblePosition = 1;
  1592. ultraGridColumn56.Header.VisiblePosition = 2;
  1593. ultraGridColumn57.DataType = typeof(bool);
  1594. ultraGridColumn57.DefaultCellValue = false;
  1595. ultraGridColumn57.Header.Caption = "选择";
  1596. ultraGridColumn57.Header.VisiblePosition = 3;
  1597. ultraGridColumn57.Hidden = true;
  1598. ultraGridColumn57.Style = Infragistics.Win.UltraWinGrid.ColumnStyle.CheckBox;
  1599. ultraGridBand4.Columns.AddRange(new object[] {
  1600. ultraGridColumn54,
  1601. ultraGridColumn55,
  1602. ultraGridColumn56,
  1603. ultraGridColumn57});
  1604. this.ultraGrid5.DisplayLayout.BandsSerializer.Add(ultraGridBand4);
  1605. this.ultraGrid5.DisplayLayout.CaptionVisible = Infragistics.Win.DefaultableBoolean.False;
  1606. this.ultraGrid5.Dock = System.Windows.Forms.DockStyle.Fill;
  1607. this.ultraGrid5.Location = new System.Drawing.Point(3, 39);
  1608. this.ultraGrid5.Margin = new System.Windows.Forms.Padding(4);
  1609. this.ultraGrid5.Name = "ultraGrid5";
  1610. this.ultraGrid5.Size = new System.Drawing.Size(55, 152);
  1611. this.ultraGrid5.TabIndex = 1;
  1612. this.ultraGrid5.Text = "ultraGrid5";
  1613. //
  1614. // ultraGroupBox5
  1615. //
  1616. this.ultraGroupBox5.Controls.Add(this.ultraGrid4);
  1617. this.ultraGroupBox5.Location = new System.Drawing.Point(1387, 9);
  1618. this.ultraGroupBox5.Margin = new System.Windows.Forms.Padding(4);
  1619. this.ultraGroupBox5.Name = "ultraGroupBox5";
  1620. this.ultraGroupBox5.Size = new System.Drawing.Size(87, 194);
  1621. this.ultraGroupBox5.TabIndex = 1;
  1622. this.ultraGroupBox5.Text = "标准编号";
  1623. this.ultraGroupBox5.ViewStyle = Infragistics.Win.Misc.GroupBoxViewStyle.Office2007;
  1624. this.ultraGroupBox5.Visible = false;
  1625. //
  1626. // ultraGrid4
  1627. //
  1628. this.ultraGrid4.DataMember = "Table4";
  1629. this.ultraGrid4.DataSource = this.dataSet3;
  1630. ultraGridColumn58.Header.VisiblePosition = 0;
  1631. ultraGridColumn59.Header.VisiblePosition = 1;
  1632. ultraGridColumn60.DataType = typeof(bool);
  1633. ultraGridColumn60.DefaultCellValue = false;
  1634. ultraGridColumn60.Header.Caption = "选择";
  1635. ultraGridColumn60.Header.CheckBoxAlignment = Infragistics.Win.UltraWinGrid.HeaderCheckBoxAlignment.Center;
  1636. ultraGridColumn60.Header.VisiblePosition = 2;
  1637. ultraGridColumn60.Hidden = true;
  1638. ultraGridColumn60.Style = Infragistics.Win.UltraWinGrid.ColumnStyle.CheckBox;
  1639. ultraGridBand5.Columns.AddRange(new object[] {
  1640. ultraGridColumn58,
  1641. ultraGridColumn59,
  1642. ultraGridColumn60});
  1643. this.ultraGrid4.DisplayLayout.BandsSerializer.Add(ultraGridBand5);
  1644. this.ultraGrid4.DisplayLayout.CaptionVisible = Infragistics.Win.DefaultableBoolean.False;
  1645. this.ultraGrid4.Dock = System.Windows.Forms.DockStyle.Fill;
  1646. this.ultraGrid4.Location = new System.Drawing.Point(3, 21);
  1647. this.ultraGrid4.Margin = new System.Windows.Forms.Padding(4);
  1648. this.ultraGrid4.Name = "ultraGrid4";
  1649. this.ultraGrid4.Size = new System.Drawing.Size(81, 170);
  1650. this.ultraGrid4.TabIndex = 1;
  1651. this.ultraGrid4.Text = "ultraGrid4";
  1652. //
  1653. // _Form1_Toolbars_Dock_Area_Top
  1654. //
  1655. this._Form1_Toolbars_Dock_Area_Top.AccessibleRole = System.Windows.Forms.AccessibleRole.Grouping;
  1656. this._Form1_Toolbars_Dock_Area_Top.BackColor = System.Drawing.SystemColors.Control;
  1657. this._Form1_Toolbars_Dock_Area_Top.DockedPosition = Infragistics.Win.UltraWinToolbars.DockedPosition.Top;
  1658. this._Form1_Toolbars_Dock_Area_Top.ForeColor = System.Drawing.SystemColors.ControlText;
  1659. this._Form1_Toolbars_Dock_Area_Top.Location = new System.Drawing.Point(0, 0);
  1660. this._Form1_Toolbars_Dock_Area_Top.Margin = new System.Windows.Forms.Padding(4);
  1661. this._Form1_Toolbars_Dock_Area_Top.Name = "_Form1_Toolbars_Dock_Area_Top";
  1662. this._Form1_Toolbars_Dock_Area_Top.Size = new System.Drawing.Size(1637, 28);
  1663. this._Form1_Toolbars_Dock_Area_Top.ToolbarsManager = this.barsManagerButon;
  1664. //
  1665. // barsManagerButon
  1666. //
  1667. this.barsManagerButon.DesignerFlags = 1;
  1668. this.barsManagerButon.DockWithinContainer = this;
  1669. this.barsManagerButon.DockWithinContainerBaseType = typeof(System.Windows.Forms.Form);
  1670. this.barsManagerButon.MiniToolbar.ToolRowCount = 3;
  1671. this.barsManagerButon.Office2007UICompatibility = false;
  1672. ribbonTab1.Caption = "ribbon1";
  1673. ribbonGroup1.Caption = "ribbonGroup1";
  1674. ribbonGroup2.Caption = "ribbonGroup2";
  1675. ribbonTab1.Groups.AddRange(new Infragistics.Win.UltraWinToolbars.RibbonGroup[] {
  1676. ribbonGroup1,
  1677. ribbonGroup2});
  1678. this.barsManagerButon.Ribbon.NonInheritedRibbonTabs.AddRange(new Infragistics.Win.UltraWinToolbars.RibbonTab[] {
  1679. ribbonTab1});
  1680. this.barsManagerButon.ShowQuickCustomizeButton = false;
  1681. ultraToolbar1.DockedColumn = 0;
  1682. ultraToolbar1.DockedRow = 0;
  1683. buttonTool5.InstanceProps.IsFirstInGroup = true;
  1684. ultraToolbar1.NonInheritedTools.AddRange(new Infragistics.Win.UltraWinToolbars.ToolBase[] {
  1685. buttonTool2,
  1686. buttonTool5});
  1687. ultraToolbar1.Text = "UltraToolbar1";
  1688. ultraToolbar1.Visible = false;
  1689. ultraToolbar2.DockedColumn = 0;
  1690. ultraToolbar2.DockedRow = 0;
  1691. ultraToolbar2.NonInheritedTools.AddRange(new Infragistics.Win.UltraWinToolbars.ToolBase[] {
  1692. buttonTool1,
  1693. buttonTool4,
  1694. buttonTool16});
  1695. ultraToolbar2.Text = "UltraToolbar2";
  1696. this.barsManagerButon.Toolbars.AddRange(new Infragistics.Win.UltraWinToolbars.UltraToolbar[] {
  1697. ultraToolbar1,
  1698. ultraToolbar2});
  1699. buttonTool6.SharedPropsInternal.Caption = "新增";
  1700. buttonTool6.SharedPropsInternal.DisplayStyle = Infragistics.Win.UltraWinToolbars.ToolDisplayStyle.ImageAndText;
  1701. buttonTool7.SharedPropsInternal.Caption = "删除";
  1702. buttonTool7.SharedPropsInternal.DisplayStyle = Infragistics.Win.UltraWinToolbars.ToolDisplayStyle.ImageAndText;
  1703. buttonTool8.SharedPropsInternal.Caption = "修改";
  1704. buttonTool8.SharedPropsInternal.DisplayStyle = Infragistics.Win.UltraWinToolbars.ToolDisplayStyle.ImageAndText;
  1705. buttonTool9.SharedPropsInternal.Caption = "查询";
  1706. buttonTool9.SharedPropsInternal.DisplayStyle = Infragistics.Win.UltraWinToolbars.ToolDisplayStyle.ImageAndText;
  1707. buttonTool10.SharedPropsInternal.Caption = "关闭";
  1708. buttonTool10.SharedPropsInternal.DisplayStyle = Infragistics.Win.UltraWinToolbars.ToolDisplayStyle.ImageAndText;
  1709. buttonTool12.SharedPropsInternal.Caption = "恢复";
  1710. buttonTool12.SharedPropsInternal.DisplayStyle = Infragistics.Win.UltraWinToolbars.ToolDisplayStyle.ImageAndText;
  1711. buttonTool3.SharedPropsInternal.Caption = "确认";
  1712. buttonTool3.SharedPropsInternal.DisplayStyle = Infragistics.Win.UltraWinToolbars.ToolDisplayStyle.ImageAndText;
  1713. appearance29.Image = ((object)(resources.GetObject("appearance29.Image")));
  1714. buttonTool11.SharedPropsInternal.AppearancesSmall.Appearance = appearance29;
  1715. buttonTool11.SharedPropsInternal.Caption = "查询";
  1716. buttonTool11.SharedPropsInternal.DisplayStyle = Infragistics.Win.UltraWinToolbars.ToolDisplayStyle.ImageAndText;
  1717. appearance30.Image = ((object)(resources.GetObject("appearance30.Image")));
  1718. buttonTool13.SharedPropsInternal.AppearancesSmall.Appearance = appearance30;
  1719. buttonTool13.SharedPropsInternal.Caption = "关闭";
  1720. buttonTool13.SharedPropsInternal.DisplayStyle = Infragistics.Win.UltraWinToolbars.ToolDisplayStyle.ImageAndText;
  1721. appearance11.Image = ((object)(resources.GetObject("appearance11.Image")));
  1722. buttonTool17.SharedPropsInternal.AppearancesSmall.Appearance = appearance11;
  1723. buttonTool17.SharedPropsInternal.Caption = "确认";
  1724. buttonTool17.SharedPropsInternal.DisplayStyle = Infragistics.Win.UltraWinToolbars.ToolDisplayStyle.ImageAndText;
  1725. this.barsManagerButon.Tools.AddRange(new Infragistics.Win.UltraWinToolbars.ToolBase[] {
  1726. buttonTool6,
  1727. buttonTool7,
  1728. buttonTool8,
  1729. buttonTool9,
  1730. buttonTool10,
  1731. buttonTool12,
  1732. buttonTool3,
  1733. buttonTool11,
  1734. buttonTool13,
  1735. buttonTool17});
  1736. this.barsManagerButon.ToolClick += new Infragistics.Win.UltraWinToolbars.ToolClickEventHandler(this.barsManagerButon_ToolClick);
  1737. //
  1738. // _Form1_Toolbars_Dock_Area_Bottom
  1739. //
  1740. this._Form1_Toolbars_Dock_Area_Bottom.AccessibleRole = System.Windows.Forms.AccessibleRole.Grouping;
  1741. this._Form1_Toolbars_Dock_Area_Bottom.BackColor = System.Drawing.SystemColors.Control;
  1742. this._Form1_Toolbars_Dock_Area_Bottom.DockedPosition = Infragistics.Win.UltraWinToolbars.DockedPosition.Bottom;
  1743. this._Form1_Toolbars_Dock_Area_Bottom.ForeColor = System.Drawing.SystemColors.ControlText;
  1744. this._Form1_Toolbars_Dock_Area_Bottom.Location = new System.Drawing.Point(0, 695);
  1745. this._Form1_Toolbars_Dock_Area_Bottom.Margin = new System.Windows.Forms.Padding(4);
  1746. this._Form1_Toolbars_Dock_Area_Bottom.Name = "_Form1_Toolbars_Dock_Area_Bottom";
  1747. this._Form1_Toolbars_Dock_Area_Bottom.Size = new System.Drawing.Size(1637, 0);
  1748. this._Form1_Toolbars_Dock_Area_Bottom.ToolbarsManager = this.barsManagerButon;
  1749. //
  1750. // _Form1_Toolbars_Dock_Area_Left
  1751. //
  1752. this._Form1_Toolbars_Dock_Area_Left.AccessibleRole = System.Windows.Forms.AccessibleRole.Grouping;
  1753. this._Form1_Toolbars_Dock_Area_Left.BackColor = System.Drawing.SystemColors.Control;
  1754. this._Form1_Toolbars_Dock_Area_Left.DockedPosition = Infragistics.Win.UltraWinToolbars.DockedPosition.Left;
  1755. this._Form1_Toolbars_Dock_Area_Left.ForeColor = System.Drawing.SystemColors.ControlText;
  1756. this._Form1_Toolbars_Dock_Area_Left.Location = new System.Drawing.Point(0, 28);
  1757. this._Form1_Toolbars_Dock_Area_Left.Margin = new System.Windows.Forms.Padding(4);
  1758. this._Form1_Toolbars_Dock_Area_Left.Name = "_Form1_Toolbars_Dock_Area_Left";
  1759. this._Form1_Toolbars_Dock_Area_Left.Size = new System.Drawing.Size(0, 667);
  1760. this._Form1_Toolbars_Dock_Area_Left.ToolbarsManager = this.barsManagerButon;
  1761. //
  1762. // _Form1_Toolbars_Dock_Area_Right
  1763. //
  1764. this._Form1_Toolbars_Dock_Area_Right.AccessibleRole = System.Windows.Forms.AccessibleRole.Grouping;
  1765. this._Form1_Toolbars_Dock_Area_Right.BackColor = System.Drawing.SystemColors.Control;
  1766. this._Form1_Toolbars_Dock_Area_Right.DockedPosition = Infragistics.Win.UltraWinToolbars.DockedPosition.Right;
  1767. this._Form1_Toolbars_Dock_Area_Right.ForeColor = System.Drawing.SystemColors.ControlText;
  1768. this._Form1_Toolbars_Dock_Area_Right.Location = new System.Drawing.Point(1637, 28);
  1769. this._Form1_Toolbars_Dock_Area_Right.Margin = new System.Windows.Forms.Padding(4);
  1770. this._Form1_Toolbars_Dock_Area_Right.Name = "_Form1_Toolbars_Dock_Area_Right";
  1771. this._Form1_Toolbars_Dock_Area_Right.Size = new System.Drawing.Size(0, 667);
  1772. this._Form1_Toolbars_Dock_Area_Right.ToolbarsManager = this.barsManagerButon;
  1773. //
  1774. // ulTreeMat
  1775. //
  1776. this.ulTreeMat.DisplayStyle = Infragistics.Win.UltraWinTree.UltraTreeDisplayStyle.WindowsVista;
  1777. this.ulTreeMat.Dock = System.Windows.Forms.DockStyle.Left;
  1778. this.ulTreeMat.Location = new System.Drawing.Point(0, 0);
  1779. this.ulTreeMat.Margin = new System.Windows.Forms.Padding(4);
  1780. this.ulTreeMat.Name = "ulTreeMat";
  1781. appearance26.BackColor = System.Drawing.Color.SkyBlue;
  1782. _override1.ActiveNodeAppearance = appearance26;
  1783. _override1.BorderStyleNode = Infragistics.Win.UIElementBorderStyle.Solid;
  1784. this.ulTreeMat.Override = _override1;
  1785. this.ulTreeMat.Size = new System.Drawing.Size(273, 605);
  1786. this.ulTreeMat.TabIndex = 1;
  1787. this.ulTreeMat.AfterActivate += new Infragistics.Win.UltraWinTree.AfterNodeChangedEventHandler(this.ulTreeMat_AfterActivate);
  1788. //
  1789. // ultraGroupBox1
  1790. //
  1791. this.ultraGroupBox1.Controls.Add(this.ultraGrid1);
  1792. this.ultraGroupBox1.Dock = System.Windows.Forms.DockStyle.Fill;
  1793. this.ultraGroupBox1.Location = new System.Drawing.Point(0, 0);
  1794. this.ultraGroupBox1.Margin = new System.Windows.Forms.Padding(4);
  1795. this.ultraGroupBox1.Name = "ultraGroupBox1";
  1796. this.ultraGroupBox1.Size = new System.Drawing.Size(1010, 355);
  1797. this.ultraGroupBox1.TabIndex = 3;
  1798. this.ultraGroupBox1.Text = "物料信息";
  1799. this.ultraGroupBox1.ViewStyle = Infragistics.Win.Misc.GroupBoxViewStyle.Office2007;
  1800. //
  1801. // ultraPanel3
  1802. //
  1803. //
  1804. // ultraPanel3.ClientArea
  1805. //
  1806. this.ultraPanel3.ClientArea.Controls.Add(this.ultraGroupBox1);
  1807. this.ultraPanel3.ClientArea.Controls.Add(this.ultraGroupBox7);
  1808. this.ultraPanel3.Dock = System.Windows.Forms.DockStyle.Fill;
  1809. this.ultraPanel3.Location = new System.Drawing.Point(4, 4);
  1810. this.ultraPanel3.Margin = new System.Windows.Forms.Padding(4);
  1811. this.ultraPanel3.Name = "ultraPanel3";
  1812. this.ultraPanel3.Size = new System.Drawing.Size(1350, 355);
  1813. this.ultraPanel3.TabIndex = 169;
  1814. //
  1815. // tableLayoutPanel1
  1816. //
  1817. this.tableLayoutPanel1.ColumnCount = 1;
  1818. this.tableLayoutPanel1.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Percent, 100F));
  1819. this.tableLayoutPanel1.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Absolute, 27F));
  1820. this.tableLayoutPanel1.Controls.Add(this.ultraPanel3, 0, 0);
  1821. this.tableLayoutPanel1.Controls.Add(this.ultraGroupBox3, 0, 1);
  1822. this.tableLayoutPanel1.Dock = System.Windows.Forms.DockStyle.Fill;
  1823. this.tableLayoutPanel1.Location = new System.Drawing.Point(273, 0);
  1824. this.tableLayoutPanel1.Margin = new System.Windows.Forms.Padding(4);
  1825. this.tableLayoutPanel1.Name = "tableLayoutPanel1";
  1826. this.tableLayoutPanel1.RowCount = 2;
  1827. this.tableLayoutPanel1.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Percent, 60F));
  1828. this.tableLayoutPanel1.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Percent, 40F));
  1829. this.tableLayoutPanel1.Size = new System.Drawing.Size(1358, 605);
  1830. this.tableLayoutPanel1.TabIndex = 3;
  1831. //
  1832. // ultraGroupBox3
  1833. //
  1834. this.ultraGroupBox3.Controls.Add(this.tableLayoutPanel2);
  1835. this.ultraGroupBox3.Dock = System.Windows.Forms.DockStyle.Fill;
  1836. this.ultraGroupBox3.Location = new System.Drawing.Point(4, 367);
  1837. this.ultraGroupBox3.Margin = new System.Windows.Forms.Padding(4);
  1838. this.ultraGroupBox3.Name = "ultraGroupBox3";
  1839. this.ultraGroupBox3.Size = new System.Drawing.Size(1350, 234);
  1840. this.ultraGroupBox3.TabIndex = 4;
  1841. this.ultraGroupBox3.ViewStyle = Infragistics.Win.Misc.GroupBoxViewStyle.Office2007;
  1842. //
  1843. // ultraGroupBox2
  1844. //
  1845. this.ultraGroupBox2.Controls.Add(this.ultraPanel2);
  1846. this.ultraGroupBox2.Dock = System.Windows.Forms.DockStyle.Fill;
  1847. this.ultraGroupBox2.Location = new System.Drawing.Point(0, 66);
  1848. this.ultraGroupBox2.Margin = new System.Windows.Forms.Padding(4);
  1849. this.ultraGroupBox2.Name = "ultraGroupBox2";
  1850. this.ultraGroupBox2.Size = new System.Drawing.Size(1637, 629);
  1851. this.ultraGroupBox2.TabIndex = 9;
  1852. this.ultraGroupBox2.Text = "物料管理";
  1853. this.ultraGroupBox2.ViewStyle = Infragistics.Win.Misc.GroupBoxViewStyle.Office2007;
  1854. //
  1855. // ultraPanel2
  1856. //
  1857. //
  1858. // ultraPanel2.ClientArea
  1859. //
  1860. this.ultraPanel2.ClientArea.Controls.Add(this.tableLayoutPanel1);
  1861. this.ultraPanel2.ClientArea.Controls.Add(this.ulTreeMat);
  1862. this.ultraPanel2.Dock = System.Windows.Forms.DockStyle.Fill;
  1863. this.ultraPanel2.Location = new System.Drawing.Point(3, 21);
  1864. this.ultraPanel2.Margin = new System.Windows.Forms.Padding(3, 2, 3, 2);
  1865. this.ultraPanel2.Name = "ultraPanel2";
  1866. this.ultraPanel2.Size = new System.Drawing.Size(1631, 605);
  1867. this.ultraPanel2.TabIndex = 0;
  1868. //
  1869. // ultraButton1
  1870. //
  1871. this.ultraButton1.Location = new System.Drawing.Point(243, 34);
  1872. this.ultraButton1.Margin = new System.Windows.Forms.Padding(4);
  1873. this.ultraButton1.Name = "ultraButton1";
  1874. this.ultraButton1.Size = new System.Drawing.Size(100, 32);
  1875. this.ultraButton1.TabIndex = 4;
  1876. this.ultraButton1.Text = "添加属性";
  1877. //
  1878. // ultraPanel4
  1879. //
  1880. //
  1881. // ultraPanel4.ClientArea
  1882. //
  1883. this.ultraPanel4.ClientArea.Controls.Add(this.ultraButton1);
  1884. this.ultraPanel4.ClientArea.Controls.Add(this.ultraTextEditor2);
  1885. this.ultraPanel4.ClientArea.Controls.Add(this.ultraTextEditor1);
  1886. this.ultraPanel4.ClientArea.Controls.Add(this.ultraLabel2);
  1887. this.ultraPanel4.Dock = System.Windows.Forms.DockStyle.Bottom;
  1888. this.ultraPanel4.Location = new System.Drawing.Point(3, 267);
  1889. this.ultraPanel4.Margin = new System.Windows.Forms.Padding(4);
  1890. this.ultraPanel4.Name = "ultraPanel4";
  1891. this.ultraPanel4.Size = new System.Drawing.Size(95, 70);
  1892. this.ultraPanel4.TabIndex = 3;
  1893. //
  1894. // ultraTextEditor1
  1895. //
  1896. appearance15.FontData.BoldAsString = "True";
  1897. appearance15.TextHAlignAsString = "Center";
  1898. appearance15.TextVAlignAsString = "Middle";
  1899. editorButton1.Appearance = appearance15;
  1900. editorButton1.Text = "+";
  1901. this.ultraTextEditor1.ButtonsRight.Add(editorButton1);
  1902. this.ultraTextEditor1.Location = new System.Drawing.Point(107, 8);
  1903. this.ultraTextEditor1.Margin = new System.Windows.Forms.Padding(4);
  1904. this.ultraTextEditor1.Name = "ultraTextEditor1";
  1905. this.ultraTextEditor1.ReadOnly = true;
  1906. this.ultraTextEditor1.Size = new System.Drawing.Size(236, 24);
  1907. this.ultraTextEditor1.TabIndex = 1;
  1908. //
  1909. // ultraLabel2
  1910. //
  1911. appearance14.TextHAlignAsString = "Center";
  1912. appearance14.TextVAlignAsString = "Middle";
  1913. this.ultraLabel2.Appearance = appearance14;
  1914. this.ultraLabel2.Location = new System.Drawing.Point(4, 6);
  1915. this.ultraLabel2.Margin = new System.Windows.Forms.Padding(4);
  1916. this.ultraLabel2.Name = "ultraLabel2";
  1917. this.ultraLabel2.Size = new System.Drawing.Size(101, 29);
  1918. this.ultraLabel2.TabIndex = 2;
  1919. this.ultraLabel2.Text = "增加属性";
  1920. //
  1921. // label66
  1922. //
  1923. this.label66.AutoSize = true;
  1924. this.label66.Location = new System.Drawing.Point(1129, 10);
  1925. this.label66.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
  1926. this.label66.Name = "label66";
  1927. this.label66.Size = new System.Drawing.Size(97, 15);
  1928. this.label66.TabIndex = 172;
  1929. this.label66.Text = "物料分类编码";
  1930. this.label66.Visible = false;
  1931. //
  1932. // txt_ARC_ITEM
  1933. //
  1934. this.txt_ARC_ITEM.Location = new System.Drawing.Point(725, 5);
  1935. this.txt_ARC_ITEM.Margin = new System.Windows.Forms.Padding(4);
  1936. this.txt_ARC_ITEM.Name = "txt_ARC_ITEM";
  1937. this.txt_ARC_ITEM.ReadOnly = true;
  1938. this.txt_ARC_ITEM.Size = new System.Drawing.Size(216, 24);
  1939. this.txt_ARC_ITEM.TabIndex = 170;
  1940. //
  1941. // checkBox1
  1942. //
  1943. this.checkBox1.AutoSize = true;
  1944. this.checkBox1.BackColor = System.Drawing.SystemColors.GradientInactiveCaption;
  1945. this.checkBox1.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  1946. this.checkBox1.Location = new System.Drawing.Point(625, 8);
  1947. this.checkBox1.Margin = new System.Windows.Forms.Padding(4);
  1948. this.checkBox1.Name = "checkBox1";
  1949. this.checkBox1.Size = new System.Drawing.Size(89, 19);
  1950. this.checkBox1.TabIndex = 169;
  1951. this.checkBox1.Text = "物料分类";
  1952. this.checkBox1.UseVisualStyleBackColor = false;
  1953. //
  1954. // txt_ARC_CODE
  1955. //
  1956. this.txt_ARC_CODE.Location = new System.Drawing.Point(1236, 5);
  1957. this.txt_ARC_CODE.Margin = new System.Windows.Forms.Padding(4);
  1958. this.txt_ARC_CODE.Name = "txt_ARC_CODE";
  1959. this.txt_ARC_CODE.ReadOnly = true;
  1960. this.txt_ARC_CODE.Size = new System.Drawing.Size(20, 24);
  1961. this.txt_ARC_CODE.TabIndex = 171;
  1962. this.txt_ARC_CODE.Visible = false;
  1963. //
  1964. // ultraPanel1
  1965. //
  1966. //
  1967. // ultraPanel1.ClientArea
  1968. //
  1969. this.ultraPanel1.ClientArea.Controls.Add(this.ultraGroupBox5);
  1970. this.ultraPanel1.ClientArea.Controls.Add(this.ultraGroupBox4);
  1971. this.ultraPanel1.ClientArea.Controls.Add(this.label66);
  1972. this.ultraPanel1.ClientArea.Controls.Add(this.txt_ARC_ITEM);
  1973. this.ultraPanel1.ClientArea.Controls.Add(this.txt_ARC_CODE);
  1974. this.ultraPanel1.ClientArea.Controls.Add(this.checkBox1);
  1975. this.ultraPanel1.ClientArea.Controls.Add(this.ultraGroupBox6);
  1976. this.ultraPanel1.ClientArea.Controls.Add(this.cmbNum);
  1977. this.ultraPanel1.ClientArea.Controls.Add(this.label65);
  1978. this.ultraPanel1.ClientArea.Controls.Add(this.label64);
  1979. this.ultraPanel1.ClientArea.Controls.Add(this.ultraLabel1);
  1980. this.ultraPanel1.ClientArea.Controls.Add(this.ultraLabel23);
  1981. this.ultraPanel1.ClientArea.Controls.Add(this.txt_wlmc);
  1982. this.ultraPanel1.ClientArea.Controls.Add(this.txt_wlbm);
  1983. this.ultraPanel1.Dock = System.Windows.Forms.DockStyle.Top;
  1984. this.ultraPanel1.Location = new System.Drawing.Point(0, 28);
  1985. this.ultraPanel1.Margin = new System.Windows.Forms.Padding(3, 2, 3, 2);
  1986. this.ultraPanel1.Name = "ultraPanel1";
  1987. this.ultraPanel1.Size = new System.Drawing.Size(1637, 38);
  1988. this.ultraPanel1.TabIndex = 4;
  1989. //
  1990. // ultraGroupBox6
  1991. //
  1992. this.ultraGroupBox6.Controls.Add(this.ultraGrid3);
  1993. this.ultraGroupBox6.Controls.Add(this.ultraPanel4);
  1994. this.ultraGroupBox6.Location = new System.Drawing.Point(1532, 6);
  1995. this.ultraGroupBox6.Margin = new System.Windows.Forms.Padding(4);
  1996. this.ultraGroupBox6.Name = "ultraGroupBox6";
  1997. this.ultraGroupBox6.Size = new System.Drawing.Size(101, 340);
  1998. this.ultraGroupBox6.TabIndex = 2;
  1999. this.ultraGroupBox6.Text = "物料属性";
  2000. this.ultraGroupBox6.ViewStyle = Infragistics.Win.Misc.GroupBoxViewStyle.Office2007;
  2001. this.ultraGroupBox6.Visible = false;
  2002. //
  2003. // ultraGrid3
  2004. //
  2005. this.ultraGrid3.DataMember = "Table6";
  2006. this.ultraGrid3.DataSource = this.dataSet3;
  2007. ultraGridColumn61.Header.VisiblePosition = 0;
  2008. ultraGridColumn61.Hidden = true;
  2009. ultraGridColumn62.Header.VisiblePosition = 3;
  2010. ultraGridColumn62.Width = 112;
  2011. ultraGridColumn63.Header.VisiblePosition = 4;
  2012. ultraGridColumn63.Hidden = true;
  2013. ultraGridColumn64.Header.VisiblePosition = 2;
  2014. ultraGridColumn64.Hidden = true;
  2015. ultraGridColumn64.Width = 51;
  2016. ultraGridColumn65.DataType = typeof(bool);
  2017. ultraGridColumn65.DefaultCellValue = false;
  2018. ultraGridColumn65.Header.Caption = "选择";
  2019. ultraGridColumn65.Header.VisiblePosition = 1;
  2020. ultraGridColumn65.Hidden = true;
  2021. ultraGridColumn65.Style = Infragistics.Win.UltraWinGrid.ColumnStyle.CheckBox;
  2022. ultraGridBand6.Columns.AddRange(new object[] {
  2023. ultraGridColumn61,
  2024. ultraGridColumn62,
  2025. ultraGridColumn63,
  2026. ultraGridColumn64,
  2027. ultraGridColumn65});
  2028. this.ultraGrid3.DisplayLayout.BandsSerializer.Add(ultraGridBand6);
  2029. this.ultraGrid3.DisplayLayout.CaptionVisible = Infragistics.Win.DefaultableBoolean.False;
  2030. this.ultraGrid3.Dock = System.Windows.Forms.DockStyle.Fill;
  2031. this.ultraGrid3.Location = new System.Drawing.Point(3, 21);
  2032. this.ultraGrid3.Margin = new System.Windows.Forms.Padding(4);
  2033. this.ultraGrid3.Name = "ultraGrid3";
  2034. this.ultraGrid3.Size = new System.Drawing.Size(95, 246);
  2035. this.ultraGrid3.TabIndex = 0;
  2036. this.ultraGrid3.Text = "ultraGrid3";
  2037. //
  2038. // ultraToolTipManager1
  2039. //
  2040. this.ultraToolTipManager1.ContainingControl = this;
  2041. //
  2042. // dataColumn110
  2043. //
  2044. this.dataColumn110.ColumnName = "itemUomConefficient";
  2045. //
  2046. // FrmPurPlanMatNew
  2047. //
  2048. this.AutoScaleDimensions = new System.Drawing.SizeF(8F, 15F);
  2049. this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
  2050. this.ClientSize = new System.Drawing.Size(1637, 695);
  2051. this.Controls.Add(this.ultraGroupBox2);
  2052. this.Controls.Add(this.ultraPanel1);
  2053. this.Controls.Add(this._Form1_Toolbars_Dock_Area_Left);
  2054. this.Controls.Add(this._Form1_Toolbars_Dock_Area_Right);
  2055. this.Controls.Add(this._Form1_Toolbars_Dock_Area_Top);
  2056. this.Controls.Add(this._Form1_Toolbars_Dock_Area_Bottom);
  2057. this.Margin = new System.Windows.Forms.Padding(7, 6, 7, 6);
  2058. this.Name = "FrmPurPlanMatNew";
  2059. this.Text = "批量选择物料";
  2060. this.WindowState = System.Windows.Forms.FormWindowState.Maximized;
  2061. this.Load += new System.EventHandler(this.FrmPurPlanMatNew_Load);
  2062. ((System.ComponentModel.ISupportInitialize)(this.ultraGrid1)).EndInit();
  2063. ((System.ComponentModel.ISupportInitialize)(this.dataSet1)).EndInit();
  2064. ((System.ComponentModel.ISupportInitialize)(this.dataTable1)).EndInit();
  2065. ((System.ComponentModel.ISupportInitialize)(this.cmbNum)).EndInit();
  2066. ((System.ComponentModel.ISupportInitialize)(this.ultraTextEditor2)).EndInit();
  2067. ((System.ComponentModel.ISupportInitialize)(this.txt_wlmc)).EndInit();
  2068. ((System.ComponentModel.ISupportInitialize)(this.txt_wlbm)).EndInit();
  2069. ((System.ComponentModel.ISupportInitialize)(this.dataSet2)).EndInit();
  2070. ((System.ComponentModel.ISupportInitialize)(this.dataTable2)).EndInit();
  2071. ((System.ComponentModel.ISupportInitialize)(this.ultraTextEditor6)).EndInit();
  2072. ((System.ComponentModel.ISupportInitialize)(this.ultraTextEditor5)).EndInit();
  2073. ((System.ComponentModel.ISupportInitialize)(this.ultraGroupBox7)).EndInit();
  2074. this.ultraGroupBox7.ResumeLayout(false);
  2075. this.ultraGroupBox7.PerformLayout();
  2076. ((System.ComponentModel.ISupportInitialize)(this.ultraGrid7)).EndInit();
  2077. ((System.ComponentModel.ISupportInitialize)(this.dataSet3)).EndInit();
  2078. ((System.ComponentModel.ISupportInitialize)(this.dataTable5)).EndInit();
  2079. ((System.ComponentModel.ISupportInitialize)(this.dataTable6)).EndInit();
  2080. ((System.ComponentModel.ISupportInitialize)(this.dataTable7)).EndInit();
  2081. ((System.ComponentModel.ISupportInitialize)(this.dataTable8)).EndInit();
  2082. ((System.ComponentModel.ISupportInitialize)(this.dataTable3)).EndInit();
  2083. ((System.ComponentModel.ISupportInitialize)(this.dataTable4)).EndInit();
  2084. this.tableLayoutPanel2.ResumeLayout(false);
  2085. ((System.ComponentModel.ISupportInitialize)(this.ultraGroupBox8)).EndInit();
  2086. this.ultraGroupBox8.ResumeLayout(false);
  2087. ((System.ComponentModel.ISupportInitialize)(this.ultraGrid2)).EndInit();
  2088. ((System.ComponentModel.ISupportInitialize)(this.dataSet4)).EndInit();
  2089. ((System.ComponentModel.ISupportInitialize)(this.dataTable9)).EndInit();
  2090. ((System.ComponentModel.ISupportInitialize)(this.ultraGroupBox4)).EndInit();
  2091. this.ultraGroupBox4.ResumeLayout(false);
  2092. ((System.ComponentModel.ISupportInitialize)(this.ultraGrid5)).EndInit();
  2093. ((System.ComponentModel.ISupportInitialize)(this.ultraGroupBox5)).EndInit();
  2094. this.ultraGroupBox5.ResumeLayout(false);
  2095. ((System.ComponentModel.ISupportInitialize)(this.ultraGrid4)).EndInit();
  2096. ((System.ComponentModel.ISupportInitialize)(this.barsManagerButon)).EndInit();
  2097. ((System.ComponentModel.ISupportInitialize)(this.ulTreeMat)).EndInit();
  2098. ((System.ComponentModel.ISupportInitialize)(this.ultraGroupBox1)).EndInit();
  2099. this.ultraGroupBox1.ResumeLayout(false);
  2100. this.ultraPanel3.ClientArea.ResumeLayout(false);
  2101. this.ultraPanel3.ResumeLayout(false);
  2102. this.tableLayoutPanel1.ResumeLayout(false);
  2103. ((System.ComponentModel.ISupportInitialize)(this.ultraGroupBox3)).EndInit();
  2104. this.ultraGroupBox3.ResumeLayout(false);
  2105. ((System.ComponentModel.ISupportInitialize)(this.ultraGroupBox2)).EndInit();
  2106. this.ultraGroupBox2.ResumeLayout(false);
  2107. this.ultraPanel2.ClientArea.ResumeLayout(false);
  2108. this.ultraPanel2.ResumeLayout(false);
  2109. this.ultraPanel4.ClientArea.ResumeLayout(false);
  2110. this.ultraPanel4.ClientArea.PerformLayout();
  2111. this.ultraPanel4.ResumeLayout(false);
  2112. ((System.ComponentModel.ISupportInitialize)(this.ultraTextEditor1)).EndInit();
  2113. ((System.ComponentModel.ISupportInitialize)(this.txt_ARC_ITEM)).EndInit();
  2114. ((System.ComponentModel.ISupportInitialize)(this.txt_ARC_CODE)).EndInit();
  2115. this.ultraPanel1.ClientArea.ResumeLayout(false);
  2116. this.ultraPanel1.ClientArea.PerformLayout();
  2117. this.ultraPanel1.ResumeLayout(false);
  2118. ((System.ComponentModel.ISupportInitialize)(this.ultraGroupBox6)).EndInit();
  2119. this.ultraGroupBox6.ResumeLayout(false);
  2120. ((System.ComponentModel.ISupportInitialize)(this.ultraGrid3)).EndInit();
  2121. this.ResumeLayout(false);
  2122. }
  2123. #endregion
  2124. private System.Data.DataColumn dataColumn20;
  2125. private Infragistics.Win.UltraWinGrid.UltraGrid ultraGrid1;
  2126. private System.Data.DataSet dataSet1;
  2127. private System.Data.DataTable dataTable1;
  2128. private System.Data.DataColumn dataColumn1;
  2129. private System.Data.DataColumn dataColumn2;
  2130. private System.Data.DataColumn dataColumn3;
  2131. private System.Data.DataColumn dataColumn4;
  2132. private System.Data.DataColumn dataColumn5;
  2133. private System.Data.DataColumn dataColumn7;
  2134. private System.Data.DataColumn dataColumn8;
  2135. private System.Data.DataColumn dataColumn9;
  2136. private System.Data.DataColumn dataColumn10;
  2137. private System.Data.DataColumn dataColumn11;
  2138. private System.Data.DataColumn dataColumn12;
  2139. private System.Data.DataColumn dataColumn13;
  2140. private System.Data.DataColumn dataColumn14;
  2141. private System.Data.DataColumn dataColumn15;
  2142. private System.Data.DataColumn dataColumn16;
  2143. private System.Data.DataColumn dataColumn17;
  2144. private System.Data.DataColumn dataColumn18;
  2145. private System.Data.DataColumn dataColumn84;
  2146. private System.Data.DataColumn dataColumn56;
  2147. private System.Data.DataColumn dataColumn42;
  2148. private System.Data.DataColumn dataColumn39;
  2149. private System.Data.DataColumn dataColumn41;
  2150. private System.Data.DataColumn dataColumn40;
  2151. private System.Data.DataColumn dataColumn38;
  2152. private Infragistics.Win.UltraWinEditors.UltraComboEditor cmbNum;
  2153. private System.Windows.Forms.Label label65;
  2154. private Infragistics.Win.Misc.UltraLabel ultraLabel1;
  2155. private System.Data.DataColumn dataColumn37;
  2156. private System.Windows.Forms.Label label64;
  2157. private Infragistics.Win.Misc.UltraLabel ultraLabel23;
  2158. private Infragistics.Win.UltraWinEditors.UltraTextEditor ultraTextEditor2;
  2159. private Infragistics.Win.UltraWinEditors.UltraTextEditor txt_wlmc;
  2160. private System.Data.DataColumn dataColumn26;
  2161. private Infragistics.Win.UltraWinEditors.UltraTextEditor txt_wlbm;
  2162. private System.Data.DataColumn dataColumn24;
  2163. private System.Data.DataColumn dataColumn31;
  2164. private System.Data.DataSet dataSet2;
  2165. private System.Data.DataTable dataTable2;
  2166. private System.Data.DataColumn dataColumn19;
  2167. private Infragistics.Win.Misc.UltraLabel ultraTextEditor4;
  2168. private Infragistics.Win.UltraWinEditors.UltraTextEditor ultraTextEditor6;
  2169. private Infragistics.Win.UltraWinEditors.UltraTextEditor ultraTextEditor5;
  2170. private Infragistics.Win.Misc.UltraLabel ultraLabel3;
  2171. private Infragistics.Win.Misc.UltraGroupBox ultraGroupBox7;
  2172. private Infragistics.Win.UltraWinGrid.UltraGrid ultraGrid7;
  2173. private System.Data.DataSet dataSet3;
  2174. private System.Data.DataTable dataTable3;
  2175. private System.Data.DataColumn dataColumn21;
  2176. private System.Data.DataColumn dataColumn22;
  2177. private System.Data.DataColumn dataColumn23;
  2178. private System.Data.DataColumn dataColumn25;
  2179. private System.Data.DataColumn dataColumn27;
  2180. private System.Data.DataColumn dataColumn28;
  2181. private System.Data.DataColumn dataColumn29;
  2182. private System.Data.DataColumn dataColumn30;
  2183. private System.Data.DataColumn dataColumn32;
  2184. private System.Data.DataColumn dataColumn33;
  2185. private System.Data.DataColumn dataColumn34;
  2186. private System.Data.DataColumn dataColumn35;
  2187. private System.Data.DataColumn dataColumn36;
  2188. private System.Data.DataColumn dataColumn43;
  2189. private System.Data.DataTable dataTable4;
  2190. private System.Data.DataColumn dataColumn44;
  2191. private System.Data.DataColumn dataColumn45;
  2192. private System.Data.DataColumn dataColumn46;
  2193. private System.Data.DataColumn dataColumn47;
  2194. private System.Data.DataColumn dataColumn48;
  2195. private System.Data.DataColumn dataColumn49;
  2196. private System.Data.DataColumn dataColumn50;
  2197. private System.Data.DataColumn dataColumn51;
  2198. private System.Data.DataColumn dataColumn52;
  2199. private System.Data.DataColumn dataColumn53;
  2200. private System.Data.DataColumn dataColumn54;
  2201. private System.Data.DataColumn dataColumn55;
  2202. private System.Data.DataTable dataTable5;
  2203. private System.Data.DataColumn dataColumn85;
  2204. private System.Data.DataColumn dataColumn91;
  2205. private System.Data.DataTable dataTable6;
  2206. private System.Data.DataColumn dataColumn69;
  2207. private System.Data.DataColumn dataColumn70;
  2208. private System.Data.DataColumn dataColumn71;
  2209. private System.Data.DataColumn dataColumn72;
  2210. private System.Data.DataColumn dataColumn73;
  2211. private System.Data.DataColumn dataColumn74;
  2212. private System.Data.DataTable dataTable7;
  2213. private System.Data.DataColumn dataColumn75;
  2214. private System.Data.DataColumn dataColumn76;
  2215. private System.Data.DataColumn dataColumn77;
  2216. private System.Data.DataColumn dataColumn78;
  2217. private System.Data.DataColumn dataColumn79;
  2218. private System.Data.DataColumn dataColumn80;
  2219. private System.Data.DataColumn dataColumn81;
  2220. private System.Data.DataColumn dataColumn82;
  2221. private System.Data.DataTable dataTable8;
  2222. private System.Data.DataColumn dataColumn86;
  2223. private System.Data.DataColumn dataColumn88;
  2224. private System.Data.DataColumn dataColumn90;
  2225. private System.Data.DataColumn dataColumn87;
  2226. private System.Windows.Forms.TableLayoutPanel tableLayoutPanel2;
  2227. private Infragistics.Win.Misc.UltraGroupBox ultraGroupBox4;
  2228. private Infragistics.Win.UltraWinGrid.UltraGrid ultraGrid5;
  2229. private Infragistics.Win.Misc.UltraGroupBox ultraGroupBox5;
  2230. private Infragistics.Win.UltraWinGrid.UltraGrid ultraGrid4;
  2231. private Infragistics.Win.UltraWinToolbars.UltraToolbarsManager barsManagerButon;
  2232. private Infragistics.Win.Misc.UltraGroupBox ultraGroupBox2;
  2233. private Infragistics.Win.Misc.UltraPanel ultraPanel2;
  2234. private System.Windows.Forms.TableLayoutPanel tableLayoutPanel1;
  2235. private Infragistics.Win.Misc.UltraPanel ultraPanel3;
  2236. private Infragistics.Win.Misc.UltraGroupBox ultraGroupBox1;
  2237. private Infragistics.Win.Misc.UltraGroupBox ultraGroupBox3;
  2238. private Infragistics.Win.UltraWinTree.UltraTree ulTreeMat;
  2239. private Infragistics.Win.Misc.UltraPanel ultraPanel1;
  2240. private System.Windows.Forms.Label label66;
  2241. private Infragistics.Win.UltraWinEditors.UltraTextEditor txt_ARC_ITEM;
  2242. private Infragistics.Win.UltraWinEditors.UltraTextEditor txt_ARC_CODE;
  2243. private System.Windows.Forms.CheckBox checkBox1;
  2244. private Infragistics.Win.Misc.UltraGroupBox ultraGroupBox6;
  2245. private Infragistics.Win.UltraWinGrid.UltraGrid ultraGrid3;
  2246. private Infragistics.Win.Misc.UltraPanel ultraPanel4;
  2247. private Infragistics.Win.Misc.UltraButton ultraButton1;
  2248. private Infragistics.Win.UltraWinEditors.UltraTextEditor ultraTextEditor1;
  2249. private Infragistics.Win.Misc.UltraLabel ultraLabel2;
  2250. private Infragistics.Win.UltraWinToolbars.UltraToolbarsDockArea _Form1_Toolbars_Dock_Area_Left;
  2251. private Infragistics.Win.UltraWinToolbars.UltraToolbarsDockArea _Form1_Toolbars_Dock_Area_Right;
  2252. private Infragistics.Win.UltraWinToolbars.UltraToolbarsDockArea _Form1_Toolbars_Dock_Area_Top;
  2253. private Infragistics.Win.UltraWinToolbars.UltraToolbarsDockArea _Form1_Toolbars_Dock_Area_Bottom;
  2254. private Infragistics.Win.UltraWinToolTip.UltraToolTipManager ultraToolTipManager1;
  2255. private Infragistics.Win.Misc.UltraGroupBox ultraGroupBox8;
  2256. private Infragistics.Win.UltraWinGrid.UltraGrid ultraGrid2;
  2257. private System.Data.DataSet dataSet4;
  2258. private System.Data.DataTable dataTable9;
  2259. private System.Data.DataColumn dataColumn57;
  2260. private System.Data.DataColumn dataColumn58;
  2261. private System.Data.DataColumn dataColumn59;
  2262. private System.Data.DataColumn dataColumn60;
  2263. private System.Data.DataColumn dataColumn61;
  2264. private System.Data.DataColumn dataColumn62;
  2265. private System.Data.DataColumn dataColumn63;
  2266. private System.Data.DataColumn dataColumn64;
  2267. private System.Data.DataColumn dataColumn65;
  2268. private System.Data.DataColumn dataColumn66;
  2269. private System.Data.DataColumn dataColumn67;
  2270. private System.Data.DataColumn dataColumn68;
  2271. private System.Data.DataColumn dataColumn83;
  2272. private System.Data.DataColumn dataColumn89;
  2273. private System.Data.DataColumn dataColumn92;
  2274. private System.Data.DataColumn dataColumn93;
  2275. private System.Data.DataColumn dataColumn94;
  2276. private System.Data.DataColumn dataColumn95;
  2277. private System.Data.DataColumn dataColumn96;
  2278. private System.Data.DataColumn dataColumn97;
  2279. private System.Data.DataColumn dataColumn99;
  2280. private System.Data.DataColumn dataColumn100;
  2281. private System.Data.DataColumn dataColumn98;
  2282. private System.Data.DataColumn dataColumn101;
  2283. private System.Data.DataColumn dataColumn102;
  2284. private Infragistics.Win.Misc.UltraButton ultraButton2;
  2285. private System.Data.DataColumn dataColumn6;
  2286. private System.Data.DataColumn dataColumn103;
  2287. private System.Data.DataColumn dataColumn104;
  2288. private System.Data.DataColumn dataColumn105;
  2289. private System.Data.DataColumn dataColumn106;
  2290. private System.Data.DataColumn dataColumn107;
  2291. private System.Data.DataColumn dataColumn108;
  2292. private System.Data.DataColumn dataColumn109;
  2293. private System.Data.DataColumn dataColumn110;
  2294. }
  2295. }