FrmPurPlanMat.Designer.cs 105 KB

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