FrmChangeOrder.Designer.cs 98 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734
  1. namespace Pur.order
  2. {
  3. partial class FrmChangeOrder
  4. {
  5. /// <summary>
  6. /// Required designer variable.
  7. /// </summary>
  8. private System.ComponentModel.IContainer components = null;
  9. /// <summary>
  10. /// Clean up any resources being used.
  11. /// </summary>
  12. /// <param name="disposing">true if managed resources should be disposed; otherwise, false.</param>
  13. protected override void Dispose(bool disposing)
  14. {
  15. if (disposing && (components != null))
  16. {
  17. components.Dispose();
  18. }
  19. base.Dispose(disposing);
  20. }
  21. #region Windows Form Designer generated code
  22. /// <summary>
  23. /// Required method for Designer support - do not modify
  24. /// the contents of this method with the code editor.
  25. /// </summary>
  26. private void InitializeComponent()
  27. {
  28. this.components = new System.ComponentModel.Container();
  29. Infragistics.Win.Appearance appearance1 = new Infragistics.Win.Appearance();
  30. Infragistics.Win.UltraWinGrid.UltraGridBand ultraGridBand1 = new Infragistics.Win.UltraWinGrid.UltraGridBand("Table2", -1);
  31. Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn1 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("OrderId");
  32. Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn2 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("OrderLineSqe");
  33. Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn3 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("ItemCode");
  34. Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn4 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("ItemName");
  35. Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn5 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("Qty");
  36. Infragistics.Win.Appearance appearance40 = new Infragistics.Win.Appearance();
  37. Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn6 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("ItemUom");
  38. Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn7 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("WeightUnit");
  39. Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn8 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("ReceiveType");
  40. Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn9 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("PriceWithTax");
  41. Infragistics.Win.Appearance appearance41 = new Infragistics.Win.Appearance();
  42. Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn10 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("CreateName");
  43. Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn11 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("CreateTime");
  44. Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn12 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("itemAttr");
  45. Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn13 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("remark");
  46. Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn14 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("itemStandardsCode");
  47. Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn15 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("TaxRateName");
  48. Infragistics.Win.Appearance appearance42 = new Infragistics.Win.Appearance();
  49. Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn16 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("CREATEDNOTICEQTY");
  50. Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn17 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("EndDate");
  51. Infragistics.Win.Appearance appearance43 = new Infragistics.Win.Appearance();
  52. Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn18 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("CHK", 0);
  53. Infragistics.Win.UltraWinGrid.UltraGridGroup ultraGridGroup1 = new Infragistics.Win.UltraWinGrid.UltraGridGroup("NewGroup0", 819451438);
  54. Infragistics.Win.Appearance appearance2 = new Infragistics.Win.Appearance();
  55. Infragistics.Win.Appearance appearance3 = new Infragistics.Win.Appearance();
  56. Infragistics.Win.Appearance appearance4 = new Infragistics.Win.Appearance();
  57. Infragistics.Win.Appearance appearance5 = new Infragistics.Win.Appearance();
  58. Infragistics.Win.Appearance appearance6 = new Infragistics.Win.Appearance();
  59. Infragistics.Win.Appearance appearance7 = new Infragistics.Win.Appearance();
  60. Infragistics.Win.Appearance appearance8 = new Infragistics.Win.Appearance();
  61. Infragistics.Win.Appearance appearance9 = new Infragistics.Win.Appearance();
  62. Infragistics.Win.Appearance appearance10 = new Infragistics.Win.Appearance();
  63. Infragistics.Win.Appearance appearance14 = new Infragistics.Win.Appearance();
  64. Infragistics.Win.Appearance appearance15 = new Infragistics.Win.Appearance();
  65. Infragistics.Win.Appearance appearance26 = new Infragistics.Win.Appearance();
  66. Infragistics.Win.UltraWinGrid.UltraGridBand ultraGridBand2 = new Infragistics.Win.UltraWinGrid.UltraGridBand("Table1", -1);
  67. Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn19 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("ClauseName");
  68. Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn20 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("ClauseDesc");
  69. Infragistics.Win.Appearance appearance44 = new Infragistics.Win.Appearance();
  70. Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn21 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("ClauseIndx");
  71. Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn22 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("ClauseType");
  72. Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn23 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("CreateName");
  73. Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn24 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("CreateTime");
  74. Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn25 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("ID");
  75. Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn26 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("CLAUSEIDOLD");
  76. Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn27 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("ClauseIndxIn");
  77. Infragistics.Win.Appearance appearance27 = new Infragistics.Win.Appearance();
  78. Infragistics.Win.Appearance appearance29 = new Infragistics.Win.Appearance();
  79. Infragistics.Win.Appearance appearance28 = new Infragistics.Win.Appearance();
  80. Infragistics.Win.Appearance appearance32 = new Infragistics.Win.Appearance();
  81. Infragistics.Win.Appearance appearance35 = new Infragistics.Win.Appearance();
  82. Infragistics.Win.Appearance appearance37 = new Infragistics.Win.Appearance();
  83. Infragistics.Win.Appearance appearance33 = new Infragistics.Win.Appearance();
  84. Infragistics.Win.Appearance appearance31 = new Infragistics.Win.Appearance();
  85. Infragistics.Win.Appearance appearance30 = new Infragistics.Win.Appearance();
  86. Infragistics.Win.Appearance appearance36 = new Infragistics.Win.Appearance();
  87. Infragistics.Win.Appearance appearance34 = new Infragistics.Win.Appearance();
  88. Infragistics.Win.UltraWinTabControl.UltraTab ultraTab1 = new Infragistics.Win.UltraWinTabControl.UltraTab();
  89. Infragistics.Win.UltraWinTabControl.UltraTab ultraTab2 = new Infragistics.Win.UltraWinTabControl.UltraTab();
  90. Infragistics.Win.UltraWinTabControl.UltraTab ultraTab3 = new Infragistics.Win.UltraWinTabControl.UltraTab();
  91. Infragistics.Win.Appearance appearance16 = new Infragistics.Win.Appearance();
  92. Infragistics.Win.UltraWinGrid.UltraGridBand ultraGridBand3 = new Infragistics.Win.UltraWinGrid.UltraGridBand("Table1", -1);
  93. Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn28 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("changeId");
  94. Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn29 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("changeCode");
  95. Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn30 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("changeType");
  96. Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn31 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("orderLineSqe", -1, null, 0, Infragistics.Win.UltraWinGrid.SortIndicator.Ascending, false);
  97. Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn32 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("createName");
  98. Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn33 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("createTime");
  99. Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn34 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("effectiveTime");
  100. Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn35 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("oldValue");
  101. Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn36 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("newValue");
  102. Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn37 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("orderId");
  103. Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn38 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("changeCodeName");
  104. Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn39 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("changeTypeName");
  105. Infragistics.Win.Appearance appearance17 = new Infragistics.Win.Appearance();
  106. Infragistics.Win.Appearance appearance19 = new Infragistics.Win.Appearance();
  107. Infragistics.Win.Appearance appearance18 = new Infragistics.Win.Appearance();
  108. Infragistics.Win.Appearance appearance22 = new Infragistics.Win.Appearance();
  109. Infragistics.Win.Appearance appearance25 = new Infragistics.Win.Appearance();
  110. Infragistics.Win.Appearance appearance39 = new Infragistics.Win.Appearance();
  111. Infragistics.Win.Appearance appearance23 = new Infragistics.Win.Appearance();
  112. Infragistics.Win.Appearance appearance21 = new Infragistics.Win.Appearance();
  113. Infragistics.Win.Appearance appearance20 = new Infragistics.Win.Appearance();
  114. Infragistics.Win.Appearance appearance38 = new Infragistics.Win.Appearance();
  115. Infragistics.Win.Appearance appearance24 = new Infragistics.Win.Appearance();
  116. Infragistics.Win.UltraWinToolbars.UltraToolbar ultraToolbar1 = new Infragistics.Win.UltraWinToolbars.UltraToolbar("UltraToolbar1");
  117. Infragistics.Win.UltraWinToolbars.ButtonTool buttonTool1 = new Infragistics.Win.UltraWinToolbars.ButtonTool("doQuery");
  118. Infragistics.Win.UltraWinToolbars.ButtonTool buttonTool7 = new Infragistics.Win.UltraWinToolbars.ButtonTool("doDelete");
  119. Infragistics.Win.UltraWinToolbars.ButtonTool buttonTool9 = new Infragistics.Win.UltraWinToolbars.ButtonTool("doCreateDetail");
  120. Infragistics.Win.UltraWinToolbars.ButtonTool buttonTool2 = new Infragistics.Win.UltraWinToolbars.ButtonTool("doSure");
  121. Infragistics.Win.UltraWinToolbars.ButtonTool buttonTool3 = new Infragistics.Win.UltraWinToolbars.ButtonTool("doExit");
  122. Infragistics.Win.UltraWinToolbars.ButtonTool buttonTool4 = new Infragistics.Win.UltraWinToolbars.ButtonTool("doQuery");
  123. Infragistics.Win.Appearance appearance11 = new Infragistics.Win.Appearance();
  124. Infragistics.Win.UltraWinToolbars.ButtonTool buttonTool5 = new Infragistics.Win.UltraWinToolbars.ButtonTool("doSure");
  125. Infragistics.Win.Appearance appearance12 = new Infragistics.Win.Appearance();
  126. Infragistics.Win.UltraWinToolbars.ButtonTool buttonTool6 = new Infragistics.Win.UltraWinToolbars.ButtonTool("doExit");
  127. Infragistics.Win.Appearance appearance13 = new Infragistics.Win.Appearance();
  128. Infragistics.Win.UltraWinToolbars.ButtonTool buttonTool8 = new Infragistics.Win.UltraWinToolbars.ButtonTool("doDelete");
  129. Infragistics.Win.Appearance appearance58 = new Infragistics.Win.Appearance();
  130. Infragistics.Win.UltraWinToolbars.ButtonTool buttonTool10 = new Infragistics.Win.UltraWinToolbars.ButtonTool("doCreateDetail");
  131. Infragistics.Win.Appearance appearance50 = new Infragistics.Win.Appearance();
  132. System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(FrmChangeOrder));
  133. this.ultraTabPageControl1 = new Infragistics.Win.UltraWinTabControl.UltraTabPageControl();
  134. this.ultraGrid1 = new Infragistics.Win.UltraWinGrid.UltraGrid();
  135. this.dataSet1 = new System.Data.DataSet();
  136. this.dataTable1 = new System.Data.DataTable();
  137. this.dataColumn1 = new System.Data.DataColumn();
  138. this.dataColumn2 = new System.Data.DataColumn();
  139. this.dataColumn3 = new System.Data.DataColumn();
  140. this.dataColumn4 = new System.Data.DataColumn();
  141. this.dataColumn5 = new System.Data.DataColumn();
  142. this.dataColumn6 = new System.Data.DataColumn();
  143. this.dataColumn7 = new System.Data.DataColumn();
  144. this.dataColumn8 = new System.Data.DataColumn();
  145. this.dataColumn9 = new System.Data.DataColumn();
  146. this.dataColumn10 = new System.Data.DataColumn();
  147. this.dataColumn11 = new System.Data.DataColumn();
  148. this.dataColumn12 = new System.Data.DataColumn();
  149. this.dataColumn13 = new System.Data.DataColumn();
  150. this.dataColumn14 = new System.Data.DataColumn();
  151. this.dataColumn15 = new System.Data.DataColumn();
  152. this.dataColumn16 = new System.Data.DataColumn();
  153. this.dataColumn18 = new System.Data.DataColumn();
  154. this.dataColumn19 = new System.Data.DataColumn();
  155. this.dataColumn20 = new System.Data.DataColumn();
  156. this.dataColumn21 = new System.Data.DataColumn();
  157. this.dataColumn22 = new System.Data.DataColumn();
  158. this.dataColumn23 = new System.Data.DataColumn();
  159. this.dataColumn24 = new System.Data.DataColumn();
  160. this.dataColumn25 = new System.Data.DataColumn();
  161. this.dataColumn26 = new System.Data.DataColumn();
  162. this.dataColumn27 = new System.Data.DataColumn();
  163. this.dataColumn29 = new System.Data.DataColumn();
  164. this.dataColumn30 = new System.Data.DataColumn();
  165. this.dataColumn31 = new System.Data.DataColumn();
  166. this.dataColumn32 = new System.Data.DataColumn();
  167. this.dataColumn28 = new System.Data.DataColumn();
  168. this.dataColumn33 = new System.Data.DataColumn();
  169. this.dataColumn34 = new System.Data.DataColumn();
  170. this.dataColumn35 = new System.Data.DataColumn();
  171. this.dataColumn36 = new System.Data.DataColumn();
  172. this.dataColumn37 = new System.Data.DataColumn();
  173. this.dataColumn38 = new System.Data.DataColumn();
  174. this.dataColumn39 = new System.Data.DataColumn();
  175. this.dataColumn40 = new System.Data.DataColumn();
  176. this.dataColumn41 = new System.Data.DataColumn();
  177. this.dataColumn42 = new System.Data.DataColumn();
  178. this.dataColumn43 = new System.Data.DataColumn();
  179. this.dataColumn44 = new System.Data.DataColumn();
  180. this.dataColumn45 = new System.Data.DataColumn();
  181. this.dataColumn46 = new System.Data.DataColumn();
  182. this.dataColumn47 = new System.Data.DataColumn();
  183. this.dataColumn48 = new System.Data.DataColumn();
  184. this.dataColumn49 = new System.Data.DataColumn();
  185. this.dataColumn50 = new System.Data.DataColumn();
  186. this.dataColumn127 = new System.Data.DataColumn();
  187. this.dataColumn135 = new System.Data.DataColumn();
  188. this.dataColumn248 = new System.Data.DataColumn();
  189. this.dataTable2 = new System.Data.DataTable();
  190. this.dataColumn51 = new System.Data.DataColumn();
  191. this.dataColumn52 = new System.Data.DataColumn();
  192. this.dataColumn55 = new System.Data.DataColumn();
  193. this.dataColumn57 = new System.Data.DataColumn();
  194. this.dataColumn61 = new System.Data.DataColumn();
  195. this.dataColumn63 = new System.Data.DataColumn();
  196. this.dataColumn65 = new System.Data.DataColumn();
  197. this.dataColumn73 = new System.Data.DataColumn();
  198. this.dataColumn82 = new System.Data.DataColumn();
  199. this.dataColumn106 = new System.Data.DataColumn();
  200. this.dataColumn107 = new System.Data.DataColumn();
  201. this.dataColumn129 = new System.Data.DataColumn();
  202. this.dataColumn130 = new System.Data.DataColumn();
  203. this.dataColumn132 = new System.Data.DataColumn();
  204. this.dataColumn17 = new System.Data.DataColumn();
  205. this.dataColumn70 = new System.Data.DataColumn();
  206. this.dataColumn71 = new System.Data.DataColumn();
  207. this.ultraTabPageControl2 = new Infragistics.Win.UltraWinTabControl.UltraTabPageControl();
  208. this.ultraGrid2 = new Infragistics.Win.UltraWinGrid.UltraGrid();
  209. this.dataSet2 = new System.Data.DataSet();
  210. this.dataTable3 = new System.Data.DataTable();
  211. this.dataColumn115 = new System.Data.DataColumn();
  212. this.dataColumn116 = new System.Data.DataColumn();
  213. this.dataColumn117 = new System.Data.DataColumn();
  214. this.dataColumn118 = new System.Data.DataColumn();
  215. this.dataColumn120 = new System.Data.DataColumn();
  216. this.dataColumn121 = new System.Data.DataColumn();
  217. this.dataColumn126 = new System.Data.DataColumn();
  218. this.dataColumn96 = new System.Data.DataColumn();
  219. this.dataColumn114 = new System.Data.DataColumn();
  220. this.ultraTabSharedControlsPage1 = new Infragistics.Win.UltraWinTabControl.UltraTabSharedControlsPage();
  221. this.dataSet3 = new System.Data.DataSet();
  222. this.dataTable4 = new System.Data.DataTable();
  223. this.dataColumn53 = new System.Data.DataColumn();
  224. this.dataColumn56 = new System.Data.DataColumn();
  225. this.dataColumn58 = new System.Data.DataColumn();
  226. this.dataColumn59 = new System.Data.DataColumn();
  227. this.dataColumn62 = new System.Data.DataColumn();
  228. this.dataColumn64 = new System.Data.DataColumn();
  229. this.dataColumn66 = new System.Data.DataColumn();
  230. this.dataColumn60 = new System.Data.DataColumn();
  231. this.dataColumn67 = new System.Data.DataColumn();
  232. this.dataColumn54 = new System.Data.DataColumn();
  233. this.dataColumn68 = new System.Data.DataColumn();
  234. this.dataColumn69 = new System.Data.DataColumn();
  235. this.FrmOrderChange_Fill_Panel = new System.Windows.Forms.Panel();
  236. this.splitContainer1 = new System.Windows.Forms.SplitContainer();
  237. this.ultraTabControl1 = new Infragistics.Win.UltraWinTabControl.UltraTabControl();
  238. this.ultraTabSharedControlsPage2 = new Infragistics.Win.UltraWinTabControl.UltraTabSharedControlsPage();
  239. this.splitContainer2 = new System.Windows.Forms.SplitContainer();
  240. this.ultraGroupBox1 = new Infragistics.Win.Misc.UltraGroupBox();
  241. this.txt_record = new System.Windows.Forms.RichTextBox();
  242. this.ultraGroupBox2 = new Infragistics.Win.Misc.UltraGroupBox();
  243. this.ultraGrid3 = new Infragistics.Win.UltraWinGrid.UltraGrid();
  244. this.ultraPanel21 = new Core.Mes.Client.Comm.Control.UltraPanel2();
  245. this.ultraSUPP_NAME = new Infragistics.Win.UltraWinEditors.UltraComboEditor();
  246. this.ultraLabel55 = new Infragistics.Win.Misc.UltraLabel();
  247. this._FrmOrderChange_Toolbars_Dock_Area_Left = new Infragistics.Win.UltraWinToolbars.UltraToolbarsDockArea();
  248. this.ultraToolbarsManager1 = new Infragistics.Win.UltraWinToolbars.UltraToolbarsManager(this.components);
  249. this._FrmOrderChange_Toolbars_Dock_Area_Right = new Infragistics.Win.UltraWinToolbars.UltraToolbarsDockArea();
  250. this._FrmOrderChange_Toolbars_Dock_Area_Top = new Infragistics.Win.UltraWinToolbars.UltraToolbarsDockArea();
  251. this._FrmOrderChange_Toolbars_Dock_Area_Bottom = new Infragistics.Win.UltraWinToolbars.UltraToolbarsDockArea();
  252. this.ultraTabPageControl3 = new Infragistics.Win.UltraWinTabControl.UltraTabPageControl();
  253. this.ultraTabPageControl4 = new Infragistics.Win.UltraWinTabControl.UltraTabPageControl();
  254. this.ultraTabPageControl1.SuspendLayout();
  255. ((System.ComponentModel.ISupportInitialize)(this.ultraGrid1)).BeginInit();
  256. ((System.ComponentModel.ISupportInitialize)(this.dataSet1)).BeginInit();
  257. ((System.ComponentModel.ISupportInitialize)(this.dataTable1)).BeginInit();
  258. ((System.ComponentModel.ISupportInitialize)(this.dataTable2)).BeginInit();
  259. this.ultraTabPageControl2.SuspendLayout();
  260. ((System.ComponentModel.ISupportInitialize)(this.ultraGrid2)).BeginInit();
  261. ((System.ComponentModel.ISupportInitialize)(this.dataSet2)).BeginInit();
  262. ((System.ComponentModel.ISupportInitialize)(this.dataTable3)).BeginInit();
  263. ((System.ComponentModel.ISupportInitialize)(this.dataSet3)).BeginInit();
  264. ((System.ComponentModel.ISupportInitialize)(this.dataTable4)).BeginInit();
  265. this.FrmOrderChange_Fill_Panel.SuspendLayout();
  266. ((System.ComponentModel.ISupportInitialize)(this.splitContainer1)).BeginInit();
  267. this.splitContainer1.Panel1.SuspendLayout();
  268. this.splitContainer1.Panel2.SuspendLayout();
  269. this.splitContainer1.SuspendLayout();
  270. ((System.ComponentModel.ISupportInitialize)(this.ultraTabControl1)).BeginInit();
  271. this.ultraTabControl1.SuspendLayout();
  272. ((System.ComponentModel.ISupportInitialize)(this.splitContainer2)).BeginInit();
  273. this.splitContainer2.Panel1.SuspendLayout();
  274. this.splitContainer2.Panel2.SuspendLayout();
  275. this.splitContainer2.SuspendLayout();
  276. ((System.ComponentModel.ISupportInitialize)(this.ultraGroupBox1)).BeginInit();
  277. this.ultraGroupBox1.SuspendLayout();
  278. ((System.ComponentModel.ISupportInitialize)(this.ultraGroupBox2)).BeginInit();
  279. this.ultraGroupBox2.SuspendLayout();
  280. ((System.ComponentModel.ISupportInitialize)(this.ultraGrid3)).BeginInit();
  281. this.ultraPanel21.ClientArea.SuspendLayout();
  282. this.ultraPanel21.SuspendLayout();
  283. ((System.ComponentModel.ISupportInitialize)(this.ultraSUPP_NAME)).BeginInit();
  284. ((System.ComponentModel.ISupportInitialize)(this.ultraToolbarsManager1)).BeginInit();
  285. this.SuspendLayout();
  286. //
  287. // ultraTabPageControl1
  288. //
  289. this.ultraTabPageControl1.Controls.Add(this.ultraGrid1);
  290. this.ultraTabPageControl1.Location = new System.Drawing.Point(1, 26);
  291. this.ultraTabPageControl1.Margin = new System.Windows.Forms.Padding(4);
  292. this.ultraTabPageControl1.Name = "ultraTabPageControl1";
  293. this.ultraTabPageControl1.Size = new System.Drawing.Size(1233, 209);
  294. //
  295. // ultraGrid1
  296. //
  297. this.ultraGrid1.DataMember = "Table2";
  298. this.ultraGrid1.DataSource = this.dataSet1;
  299. appearance1.BackColor = System.Drawing.SystemColors.Window;
  300. appearance1.BorderColor = System.Drawing.SystemColors.InactiveCaption;
  301. this.ultraGrid1.DisplayLayout.Appearance = appearance1;
  302. ultraGridColumn1.Header.VisiblePosition = 0;
  303. ultraGridColumn1.Hidden = true;
  304. ultraGridColumn1.RowLayoutColumnInfo.OriginX = 2;
  305. ultraGridColumn1.RowLayoutColumnInfo.OriginY = 0;
  306. ultraGridColumn1.RowLayoutColumnInfo.SpanX = 2;
  307. ultraGridColumn1.RowLayoutColumnInfo.SpanY = 2;
  308. ultraGridColumn2.Header.VisiblePosition = 1;
  309. ultraGridColumn2.RowLayoutColumnInfo.OriginX = 1;
  310. ultraGridColumn2.RowLayoutColumnInfo.OriginY = 0;
  311. ultraGridColumn2.RowLayoutColumnInfo.PreferredLabelSize = new System.Drawing.Size(0, 52);
  312. ultraGridColumn2.RowLayoutColumnInfo.SpanX = 2;
  313. ultraGridColumn2.RowLayoutColumnInfo.SpanY = 4;
  314. ultraGridColumn3.Header.VisiblePosition = 2;
  315. ultraGridColumn3.RowLayoutColumnInfo.OriginX = 0;
  316. ultraGridColumn3.RowLayoutColumnInfo.OriginY = 0;
  317. ultraGridColumn3.RowLayoutColumnInfo.ParentGroupIndex = 0;
  318. ultraGridColumn3.RowLayoutColumnInfo.ParentGroupKey = "NewGroup0";
  319. ultraGridColumn3.RowLayoutColumnInfo.SpanX = 2;
  320. ultraGridColumn3.RowLayoutColumnInfo.SpanY = 2;
  321. ultraGridColumn4.Header.VisiblePosition = 3;
  322. ultraGridColumn4.RowLayoutColumnInfo.OriginX = 2;
  323. ultraGridColumn4.RowLayoutColumnInfo.OriginY = 0;
  324. ultraGridColumn4.RowLayoutColumnInfo.ParentGroupIndex = 0;
  325. ultraGridColumn4.RowLayoutColumnInfo.ParentGroupKey = "NewGroup0";
  326. ultraGridColumn4.RowLayoutColumnInfo.SpanX = 2;
  327. ultraGridColumn4.RowLayoutColumnInfo.SpanY = 2;
  328. appearance40.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(255)))), ((int)(((byte)(255)))), ((int)(((byte)(192)))));
  329. appearance40.TextHAlignAsString = "Right";
  330. ultraGridColumn5.CellAppearance = appearance40;
  331. ultraGridColumn5.Header.VisiblePosition = 6;
  332. ultraGridColumn5.MaskDisplayMode = Infragistics.Win.UltraWinMaskedEdit.MaskMode.IncludeLiterals;
  333. ultraGridColumn5.MaskInput = "{double:9.3}";
  334. ultraGridColumn5.RowLayoutColumnInfo.OriginX = 11;
  335. ultraGridColumn5.RowLayoutColumnInfo.OriginY = 0;
  336. ultraGridColumn5.RowLayoutColumnInfo.PreferredLabelSize = new System.Drawing.Size(0, 52);
  337. ultraGridColumn5.RowLayoutColumnInfo.SpanX = 2;
  338. ultraGridColumn5.RowLayoutColumnInfo.SpanY = 4;
  339. ultraGridColumn5.Style = Infragistics.Win.UltraWinGrid.ColumnStyle.Double;
  340. ultraGridColumn6.Header.VisiblePosition = 7;
  341. ultraGridColumn6.RowLayoutColumnInfo.OriginX = 15;
  342. ultraGridColumn6.RowLayoutColumnInfo.OriginY = 0;
  343. ultraGridColumn6.RowLayoutColumnInfo.PreferredLabelSize = new System.Drawing.Size(0, 52);
  344. ultraGridColumn6.RowLayoutColumnInfo.SpanX = 2;
  345. ultraGridColumn6.RowLayoutColumnInfo.SpanY = 4;
  346. ultraGridColumn7.Header.VisiblePosition = 8;
  347. ultraGridColumn7.Hidden = true;
  348. ultraGridColumn7.RowLayoutColumnInfo.OriginX = 14;
  349. ultraGridColumn7.RowLayoutColumnInfo.OriginY = 0;
  350. ultraGridColumn7.RowLayoutColumnInfo.SpanX = 2;
  351. ultraGridColumn7.RowLayoutColumnInfo.SpanY = 2;
  352. ultraGridColumn8.Header.VisiblePosition = 9;
  353. ultraGridColumn8.RowLayoutColumnInfo.OriginX = 25;
  354. ultraGridColumn8.RowLayoutColumnInfo.OriginY = 0;
  355. ultraGridColumn8.RowLayoutColumnInfo.PreferredLabelSize = new System.Drawing.Size(0, 52);
  356. ultraGridColumn8.RowLayoutColumnInfo.SpanX = 2;
  357. ultraGridColumn8.RowLayoutColumnInfo.SpanY = 4;
  358. appearance41.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(255)))), ((int)(((byte)(255)))), ((int)(((byte)(192)))));
  359. appearance41.TextHAlignAsString = "Right";
  360. ultraGridColumn9.CellAppearance = appearance41;
  361. ultraGridColumn9.Header.VisiblePosition = 10;
  362. ultraGridColumn9.MaskDisplayMode = Infragistics.Win.UltraWinMaskedEdit.MaskMode.IncludeLiterals;
  363. ultraGridColumn9.MaskInput = "{double:9.2}";
  364. ultraGridColumn9.RowLayoutColumnInfo.OriginX = 19;
  365. ultraGridColumn9.RowLayoutColumnInfo.OriginY = 0;
  366. ultraGridColumn9.RowLayoutColumnInfo.PreferredLabelSize = new System.Drawing.Size(0, 52);
  367. ultraGridColumn9.RowLayoutColumnInfo.SpanX = 2;
  368. ultraGridColumn9.RowLayoutColumnInfo.SpanY = 4;
  369. ultraGridColumn9.Style = Infragistics.Win.UltraWinGrid.ColumnStyle.Double;
  370. ultraGridColumn10.Header.VisiblePosition = 11;
  371. ultraGridColumn10.RowLayoutColumnInfo.OriginX = 27;
  372. ultraGridColumn10.RowLayoutColumnInfo.OriginY = 0;
  373. ultraGridColumn10.RowLayoutColumnInfo.PreferredLabelSize = new System.Drawing.Size(0, 52);
  374. ultraGridColumn10.RowLayoutColumnInfo.SpanX = 2;
  375. ultraGridColumn10.RowLayoutColumnInfo.SpanY = 4;
  376. ultraGridColumn11.Header.VisiblePosition = 12;
  377. ultraGridColumn11.RowLayoutColumnInfo.OriginX = 29;
  378. ultraGridColumn11.RowLayoutColumnInfo.OriginY = 0;
  379. ultraGridColumn11.RowLayoutColumnInfo.PreferredLabelSize = new System.Drawing.Size(0, 52);
  380. ultraGridColumn11.RowLayoutColumnInfo.SpanX = 2;
  381. ultraGridColumn11.RowLayoutColumnInfo.SpanY = 4;
  382. ultraGridColumn12.Header.VisiblePosition = 5;
  383. ultraGridColumn12.RowLayoutColumnInfo.OriginX = 6;
  384. ultraGridColumn12.RowLayoutColumnInfo.OriginY = 0;
  385. ultraGridColumn12.RowLayoutColumnInfo.ParentGroupIndex = 0;
  386. ultraGridColumn12.RowLayoutColumnInfo.ParentGroupKey = "NewGroup0";
  387. ultraGridColumn12.RowLayoutColumnInfo.SpanX = 2;
  388. ultraGridColumn12.RowLayoutColumnInfo.SpanY = 2;
  389. ultraGridColumn13.Header.VisiblePosition = 13;
  390. ultraGridColumn13.RowLayoutColumnInfo.OriginX = 23;
  391. ultraGridColumn13.RowLayoutColumnInfo.OriginY = 0;
  392. ultraGridColumn13.RowLayoutColumnInfo.PreferredLabelSize = new System.Drawing.Size(0, 52);
  393. ultraGridColumn13.RowLayoutColumnInfo.SpanX = 2;
  394. ultraGridColumn13.RowLayoutColumnInfo.SpanY = 4;
  395. ultraGridColumn14.Header.VisiblePosition = 4;
  396. ultraGridColumn14.RowLayoutColumnInfo.OriginX = 4;
  397. ultraGridColumn14.RowLayoutColumnInfo.OriginY = 0;
  398. ultraGridColumn14.RowLayoutColumnInfo.ParentGroupIndex = 0;
  399. ultraGridColumn14.RowLayoutColumnInfo.ParentGroupKey = "NewGroup0";
  400. ultraGridColumn14.RowLayoutColumnInfo.SpanX = 2;
  401. ultraGridColumn14.RowLayoutColumnInfo.SpanY = 2;
  402. appearance42.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(255)))), ((int)(((byte)(255)))), ((int)(((byte)(192)))));
  403. ultraGridColumn15.CellAppearance = appearance42;
  404. ultraGridColumn15.Header.VisiblePosition = 14;
  405. ultraGridColumn15.RowLayoutColumnInfo.OriginX = 21;
  406. ultraGridColumn15.RowLayoutColumnInfo.OriginY = 0;
  407. ultraGridColumn15.RowLayoutColumnInfo.PreferredLabelSize = new System.Drawing.Size(0, 52);
  408. ultraGridColumn15.RowLayoutColumnInfo.SpanX = 2;
  409. ultraGridColumn15.RowLayoutColumnInfo.SpanY = 4;
  410. ultraGridColumn16.Header.VisiblePosition = 15;
  411. ultraGridColumn16.RowLayoutColumnInfo.OriginX = 13;
  412. ultraGridColumn16.RowLayoutColumnInfo.OriginY = 0;
  413. ultraGridColumn16.RowLayoutColumnInfo.PreferredLabelSize = new System.Drawing.Size(0, 52);
  414. ultraGridColumn16.RowLayoutColumnInfo.SpanX = 2;
  415. ultraGridColumn16.RowLayoutColumnInfo.SpanY = 4;
  416. appearance43.TextHAlignAsString = "Right";
  417. ultraGridColumn17.CellAppearance = appearance43;
  418. ultraGridColumn17.Format = "yyyy/MM/dd";
  419. ultraGridColumn17.Header.VisiblePosition = 16;
  420. ultraGridColumn17.RowLayoutColumnInfo.OriginX = 17;
  421. ultraGridColumn17.RowLayoutColumnInfo.OriginY = 0;
  422. ultraGridColumn17.RowLayoutColumnInfo.PreferredLabelSize = new System.Drawing.Size(0, 52);
  423. ultraGridColumn17.RowLayoutColumnInfo.SpanX = 2;
  424. ultraGridColumn17.RowLayoutColumnInfo.SpanY = 4;
  425. ultraGridColumn17.Style = Infragistics.Win.UltraWinGrid.ColumnStyle.Date;
  426. ultraGridColumn18.DataType = typeof(bool);
  427. ultraGridColumn18.Header.Caption = "选择";
  428. ultraGridColumn18.Header.VisiblePosition = 17;
  429. ultraGridColumn18.RowLayoutColumnInfo.OriginX = 0;
  430. ultraGridColumn18.RowLayoutColumnInfo.OriginY = 0;
  431. ultraGridColumn18.RowLayoutColumnInfo.PreferredCellSize = new System.Drawing.Size(69, 0);
  432. ultraGridColumn18.RowLayoutColumnInfo.PreferredLabelSize = new System.Drawing.Size(0, 58);
  433. ultraGridColumn18.RowLayoutColumnInfo.SpanX = 1;
  434. ultraGridColumn18.RowLayoutColumnInfo.SpanY = 4;
  435. ultraGridColumn18.Style = Infragistics.Win.UltraWinGrid.ColumnStyle.CheckBox;
  436. ultraGridBand1.Columns.AddRange(new object[] {
  437. ultraGridColumn1,
  438. ultraGridColumn2,
  439. ultraGridColumn3,
  440. ultraGridColumn4,
  441. ultraGridColumn5,
  442. ultraGridColumn6,
  443. ultraGridColumn7,
  444. ultraGridColumn8,
  445. ultraGridColumn9,
  446. ultraGridColumn10,
  447. ultraGridColumn11,
  448. ultraGridColumn12,
  449. ultraGridColumn13,
  450. ultraGridColumn14,
  451. ultraGridColumn15,
  452. ultraGridColumn16,
  453. ultraGridColumn17,
  454. ultraGridColumn18});
  455. ultraGridGroup1.Header.Caption = "物料信息";
  456. ultraGridGroup1.Key = "NewGroup0";
  457. ultraGridGroup1.RowLayoutGroupInfo.OriginX = 3;
  458. ultraGridGroup1.RowLayoutGroupInfo.OriginY = 0;
  459. ultraGridGroup1.RowLayoutGroupInfo.SpanX = 8;
  460. ultraGridGroup1.RowLayoutGroupInfo.SpanY = 4;
  461. ultraGridBand1.Groups.AddRange(new Infragistics.Win.UltraWinGrid.UltraGridGroup[] {
  462. ultraGridGroup1});
  463. ultraGridBand1.RowLayoutStyle = Infragistics.Win.UltraWinGrid.RowLayoutStyle.GroupLayout;
  464. this.ultraGrid1.DisplayLayout.BandsSerializer.Add(ultraGridBand1);
  465. this.ultraGrid1.DisplayLayout.BorderStyle = Infragistics.Win.UIElementBorderStyle.Solid;
  466. this.ultraGrid1.DisplayLayout.CaptionVisible = Infragistics.Win.DefaultableBoolean.False;
  467. appearance2.BackColor = System.Drawing.SystemColors.ActiveBorder;
  468. appearance2.BackColor2 = System.Drawing.SystemColors.ControlDark;
  469. appearance2.BackGradientStyle = Infragistics.Win.GradientStyle.Vertical;
  470. appearance2.BorderColor = System.Drawing.SystemColors.Window;
  471. this.ultraGrid1.DisplayLayout.GroupByBox.Appearance = appearance2;
  472. appearance3.ForeColor = System.Drawing.SystemColors.GrayText;
  473. this.ultraGrid1.DisplayLayout.GroupByBox.BandLabelAppearance = appearance3;
  474. this.ultraGrid1.DisplayLayout.GroupByBox.BorderStyle = Infragistics.Win.UIElementBorderStyle.Solid;
  475. this.ultraGrid1.DisplayLayout.GroupByBox.Hidden = true;
  476. appearance4.BackColor = System.Drawing.SystemColors.ControlLightLight;
  477. appearance4.BackColor2 = System.Drawing.SystemColors.Control;
  478. appearance4.BackGradientStyle = Infragistics.Win.GradientStyle.Horizontal;
  479. appearance4.ForeColor = System.Drawing.SystemColors.GrayText;
  480. this.ultraGrid1.DisplayLayout.GroupByBox.PromptAppearance = appearance4;
  481. this.ultraGrid1.DisplayLayout.MaxColScrollRegions = 1;
  482. this.ultraGrid1.DisplayLayout.MaxRowScrollRegions = 1;
  483. appearance5.BackColor = System.Drawing.SystemColors.Window;
  484. appearance5.ForeColor = System.Drawing.SystemColors.ControlText;
  485. this.ultraGrid1.DisplayLayout.Override.ActiveCellAppearance = appearance5;
  486. appearance6.BackColor = System.Drawing.SystemColors.Highlight;
  487. appearance6.ForeColor = System.Drawing.SystemColors.HighlightText;
  488. this.ultraGrid1.DisplayLayout.Override.ActiveRowAppearance = appearance6;
  489. this.ultraGrid1.DisplayLayout.Override.BorderStyleCell = Infragistics.Win.UIElementBorderStyle.Dotted;
  490. this.ultraGrid1.DisplayLayout.Override.BorderStyleRow = Infragistics.Win.UIElementBorderStyle.Dotted;
  491. appearance7.BackColor = System.Drawing.SystemColors.Window;
  492. this.ultraGrid1.DisplayLayout.Override.CardAreaAppearance = appearance7;
  493. appearance8.BorderColor = System.Drawing.Color.Silver;
  494. appearance8.TextTrimming = Infragistics.Win.TextTrimming.EllipsisCharacter;
  495. this.ultraGrid1.DisplayLayout.Override.CellAppearance = appearance8;
  496. this.ultraGrid1.DisplayLayout.Override.CellClickAction = Infragistics.Win.UltraWinGrid.CellClickAction.EditAndSelectText;
  497. this.ultraGrid1.DisplayLayout.Override.CellPadding = 0;
  498. appearance9.BackColor = System.Drawing.SystemColors.Control;
  499. appearance9.BackColor2 = System.Drawing.SystemColors.ControlDark;
  500. appearance9.BackGradientAlignment = Infragistics.Win.GradientAlignment.Element;
  501. appearance9.BackGradientStyle = Infragistics.Win.GradientStyle.Horizontal;
  502. appearance9.BorderColor = System.Drawing.SystemColors.Window;
  503. this.ultraGrid1.DisplayLayout.Override.GroupByRowAppearance = appearance9;
  504. appearance10.TextHAlignAsString = "Left";
  505. this.ultraGrid1.DisplayLayout.Override.HeaderAppearance = appearance10;
  506. this.ultraGrid1.DisplayLayout.Override.HeaderClickAction = Infragistics.Win.UltraWinGrid.HeaderClickAction.SortMulti;
  507. this.ultraGrid1.DisplayLayout.Override.HeaderStyle = Infragistics.Win.HeaderStyle.WindowsXPCommand;
  508. appearance14.BackColor = System.Drawing.SystemColors.Window;
  509. appearance14.BorderColor = System.Drawing.Color.Silver;
  510. this.ultraGrid1.DisplayLayout.Override.RowAppearance = appearance14;
  511. this.ultraGrid1.DisplayLayout.Override.RowSelectors = Infragistics.Win.DefaultableBoolean.False;
  512. appearance15.BackColor = System.Drawing.SystemColors.ControlLight;
  513. this.ultraGrid1.DisplayLayout.Override.TemplateAddRowAppearance = appearance15;
  514. this.ultraGrid1.DisplayLayout.ScrollBounds = Infragistics.Win.UltraWinGrid.ScrollBounds.ScrollToFill;
  515. this.ultraGrid1.DisplayLayout.ScrollStyle = Infragistics.Win.UltraWinGrid.ScrollStyle.Immediate;
  516. this.ultraGrid1.DisplayLayout.ViewStyleBand = Infragistics.Win.UltraWinGrid.ViewStyleBand.OutlookGroupBy;
  517. this.ultraGrid1.Dock = System.Windows.Forms.DockStyle.Fill;
  518. this.ultraGrid1.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  519. this.ultraGrid1.Location = new System.Drawing.Point(0, 0);
  520. this.ultraGrid1.Margin = new System.Windows.Forms.Padding(4);
  521. this.ultraGrid1.Name = "ultraGrid1";
  522. this.ultraGrid1.Size = new System.Drawing.Size(1233, 209);
  523. this.ultraGrid1.TabIndex = 0;
  524. this.ultraGrid1.Text = "ultraGrid1";
  525. //
  526. // dataSet1
  527. //
  528. this.dataSet1.DataSetName = "NewDataSet";
  529. this.dataSet1.Tables.AddRange(new System.Data.DataTable[] {
  530. this.dataTable1,
  531. this.dataTable2});
  532. //
  533. // dataTable1
  534. //
  535. this.dataTable1.Columns.AddRange(new System.Data.DataColumn[] {
  536. this.dataColumn1,
  537. this.dataColumn2,
  538. this.dataColumn3,
  539. this.dataColumn4,
  540. this.dataColumn5,
  541. this.dataColumn6,
  542. this.dataColumn7,
  543. this.dataColumn8,
  544. this.dataColumn9,
  545. this.dataColumn10,
  546. this.dataColumn11,
  547. this.dataColumn12,
  548. this.dataColumn13,
  549. this.dataColumn14,
  550. this.dataColumn15,
  551. this.dataColumn16,
  552. this.dataColumn18,
  553. this.dataColumn19,
  554. this.dataColumn20,
  555. this.dataColumn21,
  556. this.dataColumn22,
  557. this.dataColumn23,
  558. this.dataColumn24,
  559. this.dataColumn25,
  560. this.dataColumn26,
  561. this.dataColumn27,
  562. this.dataColumn29,
  563. this.dataColumn30,
  564. this.dataColumn31,
  565. this.dataColumn32,
  566. this.dataColumn28,
  567. this.dataColumn33,
  568. this.dataColumn34,
  569. this.dataColumn35,
  570. this.dataColumn36,
  571. this.dataColumn37,
  572. this.dataColumn38,
  573. this.dataColumn39,
  574. this.dataColumn40,
  575. this.dataColumn41,
  576. this.dataColumn42,
  577. this.dataColumn43,
  578. this.dataColumn44,
  579. this.dataColumn45,
  580. this.dataColumn46,
  581. this.dataColumn47,
  582. this.dataColumn48,
  583. this.dataColumn49,
  584. this.dataColumn50,
  585. this.dataColumn127,
  586. this.dataColumn135,
  587. this.dataColumn248});
  588. this.dataTable1.TableName = "Table1";
  589. //
  590. // dataColumn1
  591. //
  592. this.dataColumn1.Caption = "合同号";
  593. this.dataColumn1.ColumnName = "OrderId";
  594. //
  595. // dataColumn2
  596. //
  597. this.dataColumn2.Caption = "合同版本编号";
  598. this.dataColumn2.ColumnName = "OrderVer";
  599. //
  600. // dataColumn3
  601. //
  602. this.dataColumn3.Caption = "合同类别";
  603. this.dataColumn3.ColumnName = "OrderType";
  604. //
  605. // dataColumn4
  606. //
  607. this.dataColumn4.Caption = "合同金额类别";
  608. this.dataColumn4.ColumnName = "OrderMoneyType";
  609. //
  610. // dataColumn5
  611. //
  612. this.dataColumn5.Caption = "模板编号";
  613. this.dataColumn5.ColumnName = "ModeId";
  614. //
  615. // dataColumn6
  616. //
  617. this.dataColumn6.Caption = "模板名称";
  618. this.dataColumn6.ColumnName = "ModeName";
  619. //
  620. // dataColumn7
  621. //
  622. this.dataColumn7.Caption = "合同抬头编号";
  623. this.dataColumn7.ColumnName = "OrderTitleCode";
  624. //
  625. // dataColumn8
  626. //
  627. this.dataColumn8.Caption = "代码";
  628. this.dataColumn8.ColumnName = "SuppCode";
  629. //
  630. // dataColumn9
  631. //
  632. this.dataColumn9.Caption = "名称";
  633. this.dataColumn9.ColumnName = "SuppName";
  634. //
  635. // dataColumn10
  636. //
  637. this.dataColumn10.Caption = "打印合同号";
  638. this.dataColumn10.ColumnName = "PorderId";
  639. //
  640. // dataColumn11
  641. //
  642. this.dataColumn11.Caption = "供应商合同编号";
  643. this.dataColumn11.ColumnName = "SuppOrdeId";
  644. //
  645. // dataColumn12
  646. //
  647. this.dataColumn12.Caption = "进口合同编号";
  648. this.dataColumn12.ColumnName = "ImportOrdeId";
  649. //
  650. // dataColumn13
  651. //
  652. this.dataColumn13.Caption = "合同货币代码";
  653. this.dataColumn13.ColumnName = "Currency";
  654. //
  655. // dataColumn14
  656. //
  657. this.dataColumn14.Caption = "当前兑换汇率";
  658. this.dataColumn14.ColumnName = "ExchangeRateCur";
  659. //
  660. // dataColumn15
  661. //
  662. this.dataColumn15.Caption = "最小金额";
  663. this.dataColumn15.ColumnName = "AmtMin";
  664. //
  665. // dataColumn16
  666. //
  667. this.dataColumn16.Caption = "最大金额";
  668. this.dataColumn16.ColumnName = "AmtMax";
  669. //
  670. // dataColumn18
  671. //
  672. this.dataColumn18.Caption = "合同税额";
  673. this.dataColumn18.ColumnName = "TaxAmt";
  674. //
  675. // dataColumn19
  676. //
  677. this.dataColumn19.Caption = "不含税金额";
  678. this.dataColumn19.ColumnName = "WithoutTaxAmt";
  679. //
  680. // dataColumn20
  681. //
  682. this.dataColumn20.Caption = "含税金额";
  683. this.dataColumn20.ColumnName = "WithAmtTax";
  684. //
  685. // dataColumn21
  686. //
  687. this.dataColumn21.Caption = "预付款1";
  688. this.dataColumn21.ColumnName = "PrePaymentAmt1";
  689. //
  690. // dataColumn22
  691. //
  692. this.dataColumn22.Caption = "预付款2";
  693. this.dataColumn22.ColumnName = "PrePaymentAmt2";
  694. //
  695. // dataColumn23
  696. //
  697. this.dataColumn23.Caption = "预付款3";
  698. this.dataColumn23.ColumnName = "PrePaymentAmt3";
  699. //
  700. // dataColumn24
  701. //
  702. this.dataColumn24.Caption = "预付款4";
  703. this.dataColumn24.ColumnName = "PrePaymentAmt4";
  704. //
  705. // dataColumn25
  706. //
  707. this.dataColumn25.Caption = "预付款5";
  708. this.dataColumn25.ColumnName = "PrePaymentAmt5";
  709. //
  710. // dataColumn26
  711. //
  712. this.dataColumn26.Caption = "尾款1";
  713. this.dataColumn26.ColumnName = "AftPaymentAmt1";
  714. //
  715. // dataColumn27
  716. //
  717. this.dataColumn27.Caption = "尾款2 ";
  718. this.dataColumn27.ColumnName = "AftPaymentAmt2";
  719. //
  720. // dataColumn29
  721. //
  722. this.dataColumn29.Caption = "尾款3";
  723. this.dataColumn29.ColumnName = "AftPaymentAmt3";
  724. //
  725. // dataColumn30
  726. //
  727. this.dataColumn30.Caption = "尾款4";
  728. this.dataColumn30.ColumnName = "AftPaymentAmt4";
  729. //
  730. // dataColumn31
  731. //
  732. this.dataColumn31.Caption = "尾款5";
  733. this.dataColumn31.ColumnName = "AftPaymentAmt5";
  734. //
  735. // dataColumn32
  736. //
  737. this.dataColumn32.Caption = "履约保证金";
  738. this.dataColumn32.ColumnName = "GuaAmt";
  739. //
  740. // dataColumn28
  741. //
  742. this.dataColumn28.Caption = "开始日期";
  743. this.dataColumn28.ColumnName = "StartDate";
  744. //
  745. // dataColumn33
  746. //
  747. this.dataColumn33.Caption = "结束日期";
  748. this.dataColumn33.ColumnName = "EndDate";
  749. //
  750. // dataColumn34
  751. //
  752. this.dataColumn34.Caption = "允许提早天数";
  753. this.dataColumn34.ColumnName = "DaysEarly";
  754. //
  755. // dataColumn35
  756. //
  757. this.dataColumn35.Caption = "允许延迟天数";
  758. this.dataColumn35.ColumnName = "DaysLate";
  759. //
  760. // dataColumn36
  761. //
  762. this.dataColumn36.Caption = "签订地点";
  763. this.dataColumn36.ColumnName = "SignAddress";
  764. //
  765. // dataColumn37
  766. //
  767. this.dataColumn37.Caption = "签订日期";
  768. this.dataColumn37.ColumnName = "SignDate";
  769. //
  770. // dataColumn38
  771. //
  772. this.dataColumn38.Caption = "打印次数";
  773. this.dataColumn38.ColumnName = "PrintNum";
  774. //
  775. // dataColumn39
  776. //
  777. this.dataColumn39.Caption = "采购员";
  778. this.dataColumn39.ColumnName = "BuyerName";
  779. //
  780. // dataColumn40
  781. //
  782. this.dataColumn40.Caption = "采购部门代码";
  783. this.dataColumn40.ColumnName = "BuyerDeptCode";
  784. //
  785. // dataColumn41
  786. //
  787. this.dataColumn41.Caption = "采购部门描叙";
  788. this.dataColumn41.ColumnName = "BuyerDeptDesc";
  789. //
  790. // dataColumn42
  791. //
  792. this.dataColumn42.Caption = "采购管理科室代码";
  793. this.dataColumn42.ColumnName = "BuyerUnitCode";
  794. //
  795. // dataColumn43
  796. //
  797. this.dataColumn43.Caption = "采购管理科室描叙";
  798. this.dataColumn43.ColumnName = "BuyerUnitDesc";
  799. //
  800. // dataColumn44
  801. //
  802. this.dataColumn44.Caption = "数据状态(有效、无效)";
  803. this.dataColumn44.ColumnName = "Validflag";
  804. //
  805. // dataColumn45
  806. //
  807. this.dataColumn45.Caption = "创建人";
  808. this.dataColumn45.ColumnName = "CreateName";
  809. //
  810. // dataColumn46
  811. //
  812. this.dataColumn46.Caption = "创建时间";
  813. this.dataColumn46.ColumnName = "CreateTime";
  814. //
  815. // dataColumn47
  816. //
  817. this.dataColumn47.Caption = "修改人";
  818. this.dataColumn47.ColumnName = "UpdateName";
  819. //
  820. // dataColumn48
  821. //
  822. this.dataColumn48.Caption = "修改时间";
  823. this.dataColumn48.ColumnName = "UpdateTime";
  824. //
  825. // dataColumn49
  826. //
  827. this.dataColumn49.Caption = "废除人";
  828. this.dataColumn49.ColumnName = "DeleteName";
  829. //
  830. // dataColumn50
  831. //
  832. this.dataColumn50.Caption = "废除时间";
  833. this.dataColumn50.ColumnName = "DeleteTime";
  834. //
  835. // dataColumn127
  836. //
  837. this.dataColumn127.Caption = "状态";
  838. this.dataColumn127.ColumnName = "Status";
  839. //
  840. // dataColumn135
  841. //
  842. this.dataColumn135.ColumnName = "BpmTaskId";
  843. //
  844. // dataColumn248
  845. //
  846. this.dataColumn248.Caption = "采购纪要号";
  847. this.dataColumn248.ColumnName = "taskRecordId";
  848. //
  849. // dataTable2
  850. //
  851. this.dataTable2.Columns.AddRange(new System.Data.DataColumn[] {
  852. this.dataColumn51,
  853. this.dataColumn52,
  854. this.dataColumn55,
  855. this.dataColumn57,
  856. this.dataColumn61,
  857. this.dataColumn63,
  858. this.dataColumn65,
  859. this.dataColumn73,
  860. this.dataColumn82,
  861. this.dataColumn106,
  862. this.dataColumn107,
  863. this.dataColumn129,
  864. this.dataColumn130,
  865. this.dataColumn132,
  866. this.dataColumn17,
  867. this.dataColumn70,
  868. this.dataColumn71});
  869. this.dataTable2.TableName = "Table2";
  870. //
  871. // dataColumn51
  872. //
  873. this.dataColumn51.Caption = "合同号";
  874. this.dataColumn51.ColumnName = "OrderId";
  875. //
  876. // dataColumn52
  877. //
  878. this.dataColumn52.Caption = "合同行号";
  879. this.dataColumn52.ColumnName = "OrderLineSqe";
  880. //
  881. // dataColumn55
  882. //
  883. this.dataColumn55.Caption = "物料编码";
  884. this.dataColumn55.ColumnName = "ItemCode";
  885. //
  886. // dataColumn57
  887. //
  888. this.dataColumn57.Caption = "物料名称";
  889. this.dataColumn57.ColumnName = "ItemName";
  890. //
  891. // dataColumn61
  892. //
  893. this.dataColumn61.Caption = "采购数量";
  894. this.dataColumn61.ColumnName = "Qty";
  895. //
  896. // dataColumn63
  897. //
  898. this.dataColumn63.Caption = "采购单位";
  899. this.dataColumn63.ColumnName = "ItemUom";
  900. //
  901. // dataColumn65
  902. //
  903. this.dataColumn65.Caption = "库存单位";
  904. this.dataColumn65.ColumnName = "WeightUnit";
  905. //
  906. // dataColumn73
  907. //
  908. this.dataColumn73.Caption = "入库类型";
  909. this.dataColumn73.ColumnName = "ReceiveType";
  910. //
  911. // dataColumn82
  912. //
  913. this.dataColumn82.Caption = "含税单价";
  914. this.dataColumn82.ColumnName = "PriceWithTax";
  915. //
  916. // dataColumn106
  917. //
  918. this.dataColumn106.Caption = "创建人";
  919. this.dataColumn106.ColumnName = "CreateName";
  920. //
  921. // dataColumn107
  922. //
  923. this.dataColumn107.Caption = "创建时间";
  924. this.dataColumn107.ColumnName = "CreateTime";
  925. //
  926. // dataColumn129
  927. //
  928. this.dataColumn129.Caption = "属性";
  929. this.dataColumn129.ColumnName = "itemAttr";
  930. //
  931. // dataColumn130
  932. //
  933. this.dataColumn130.Caption = "备注";
  934. this.dataColumn130.ColumnName = "remark";
  935. //
  936. // dataColumn132
  937. //
  938. this.dataColumn132.Caption = "标准";
  939. this.dataColumn132.ColumnName = "itemStandardsCode";
  940. //
  941. // dataColumn17
  942. //
  943. this.dataColumn17.Caption = "税率";
  944. this.dataColumn17.ColumnName = "TaxRateName";
  945. //
  946. // dataColumn70
  947. //
  948. this.dataColumn70.Caption = "已通知发货量";
  949. this.dataColumn70.ColumnName = "CREATEDNOTICEQTY";
  950. //
  951. // dataColumn71
  952. //
  953. this.dataColumn71.Caption = "要交到货时间";
  954. this.dataColumn71.ColumnName = "EndDate";
  955. //
  956. // ultraTabPageControl2
  957. //
  958. this.ultraTabPageControl2.Controls.Add(this.ultraGrid2);
  959. this.ultraTabPageControl2.Location = new System.Drawing.Point(-10000, -10000);
  960. this.ultraTabPageControl2.Margin = new System.Windows.Forms.Padding(4);
  961. this.ultraTabPageControl2.Name = "ultraTabPageControl2";
  962. this.ultraTabPageControl2.Size = new System.Drawing.Size(1233, 209);
  963. //
  964. // ultraGrid2
  965. //
  966. this.ultraGrid2.DataMember = "Table1";
  967. this.ultraGrid2.DataSource = this.dataSet2;
  968. appearance26.BackColor = System.Drawing.SystemColors.Window;
  969. appearance26.BorderColor = System.Drawing.SystemColors.InactiveCaption;
  970. this.ultraGrid2.DisplayLayout.Appearance = appearance26;
  971. ultraGridColumn19.Header.VisiblePosition = 2;
  972. appearance44.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(255)))), ((int)(((byte)(255)))), ((int)(((byte)(192)))));
  973. ultraGridColumn20.CellAppearance = appearance44;
  974. ultraGridColumn20.Header.VisiblePosition = 3;
  975. ultraGridColumn21.Header.VisiblePosition = 4;
  976. ultraGridColumn22.Header.VisiblePosition = 1;
  977. ultraGridColumn23.Header.VisiblePosition = 7;
  978. ultraGridColumn24.Header.VisiblePosition = 8;
  979. ultraGridColumn25.Header.VisiblePosition = 0;
  980. ultraGridColumn26.Header.VisiblePosition = 6;
  981. ultraGridColumn27.Header.VisiblePosition = 5;
  982. ultraGridBand2.Columns.AddRange(new object[] {
  983. ultraGridColumn19,
  984. ultraGridColumn20,
  985. ultraGridColumn21,
  986. ultraGridColumn22,
  987. ultraGridColumn23,
  988. ultraGridColumn24,
  989. ultraGridColumn25,
  990. ultraGridColumn26,
  991. ultraGridColumn27});
  992. this.ultraGrid2.DisplayLayout.BandsSerializer.Add(ultraGridBand2);
  993. this.ultraGrid2.DisplayLayout.BorderStyle = Infragistics.Win.UIElementBorderStyle.Solid;
  994. this.ultraGrid2.DisplayLayout.CaptionVisible = Infragistics.Win.DefaultableBoolean.False;
  995. appearance27.BackColor = System.Drawing.SystemColors.ActiveBorder;
  996. appearance27.BackColor2 = System.Drawing.SystemColors.ControlDark;
  997. appearance27.BackGradientStyle = Infragistics.Win.GradientStyle.Vertical;
  998. appearance27.BorderColor = System.Drawing.SystemColors.Window;
  999. this.ultraGrid2.DisplayLayout.GroupByBox.Appearance = appearance27;
  1000. appearance29.ForeColor = System.Drawing.SystemColors.GrayText;
  1001. this.ultraGrid2.DisplayLayout.GroupByBox.BandLabelAppearance = appearance29;
  1002. this.ultraGrid2.DisplayLayout.GroupByBox.BorderStyle = Infragistics.Win.UIElementBorderStyle.Solid;
  1003. this.ultraGrid2.DisplayLayout.GroupByBox.Hidden = true;
  1004. appearance28.BackColor = System.Drawing.SystemColors.ControlLightLight;
  1005. appearance28.BackColor2 = System.Drawing.SystemColors.Control;
  1006. appearance28.BackGradientStyle = Infragistics.Win.GradientStyle.Horizontal;
  1007. appearance28.ForeColor = System.Drawing.SystemColors.GrayText;
  1008. this.ultraGrid2.DisplayLayout.GroupByBox.PromptAppearance = appearance28;
  1009. this.ultraGrid2.DisplayLayout.MaxColScrollRegions = 1;
  1010. this.ultraGrid2.DisplayLayout.MaxRowScrollRegions = 1;
  1011. appearance32.BackColor = System.Drawing.SystemColors.Window;
  1012. appearance32.ForeColor = System.Drawing.SystemColors.ControlText;
  1013. this.ultraGrid2.DisplayLayout.Override.ActiveCellAppearance = appearance32;
  1014. appearance35.BackColor = System.Drawing.SystemColors.Highlight;
  1015. appearance35.ForeColor = System.Drawing.SystemColors.HighlightText;
  1016. this.ultraGrid2.DisplayLayout.Override.ActiveRowAppearance = appearance35;
  1017. this.ultraGrid2.DisplayLayout.Override.BorderStyleCell = Infragistics.Win.UIElementBorderStyle.Dotted;
  1018. this.ultraGrid2.DisplayLayout.Override.BorderStyleRow = Infragistics.Win.UIElementBorderStyle.Dotted;
  1019. appearance37.BackColor = System.Drawing.SystemColors.Window;
  1020. this.ultraGrid2.DisplayLayout.Override.CardAreaAppearance = appearance37;
  1021. appearance33.BorderColor = System.Drawing.Color.Silver;
  1022. appearance33.TextTrimming = Infragistics.Win.TextTrimming.EllipsisCharacter;
  1023. this.ultraGrid2.DisplayLayout.Override.CellAppearance = appearance33;
  1024. this.ultraGrid2.DisplayLayout.Override.CellClickAction = Infragistics.Win.UltraWinGrid.CellClickAction.EditAndSelectText;
  1025. this.ultraGrid2.DisplayLayout.Override.CellPadding = 0;
  1026. appearance31.BackColor = System.Drawing.SystemColors.Control;
  1027. appearance31.BackColor2 = System.Drawing.SystemColors.ControlDark;
  1028. appearance31.BackGradientAlignment = Infragistics.Win.GradientAlignment.Element;
  1029. appearance31.BackGradientStyle = Infragistics.Win.GradientStyle.Horizontal;
  1030. appearance31.BorderColor = System.Drawing.SystemColors.Window;
  1031. this.ultraGrid2.DisplayLayout.Override.GroupByRowAppearance = appearance31;
  1032. appearance30.TextHAlignAsString = "Left";
  1033. this.ultraGrid2.DisplayLayout.Override.HeaderAppearance = appearance30;
  1034. this.ultraGrid2.DisplayLayout.Override.HeaderClickAction = Infragistics.Win.UltraWinGrid.HeaderClickAction.SortMulti;
  1035. this.ultraGrid2.DisplayLayout.Override.HeaderStyle = Infragistics.Win.HeaderStyle.WindowsXPCommand;
  1036. appearance36.BackColor = System.Drawing.SystemColors.Window;
  1037. appearance36.BorderColor = System.Drawing.Color.Silver;
  1038. this.ultraGrid2.DisplayLayout.Override.RowAppearance = appearance36;
  1039. this.ultraGrid2.DisplayLayout.Override.RowSelectors = Infragistics.Win.DefaultableBoolean.False;
  1040. appearance34.BackColor = System.Drawing.SystemColors.ControlLight;
  1041. this.ultraGrid2.DisplayLayout.Override.TemplateAddRowAppearance = appearance34;
  1042. this.ultraGrid2.DisplayLayout.ScrollBounds = Infragistics.Win.UltraWinGrid.ScrollBounds.ScrollToFill;
  1043. this.ultraGrid2.DisplayLayout.ScrollStyle = Infragistics.Win.UltraWinGrid.ScrollStyle.Immediate;
  1044. this.ultraGrid2.DisplayLayout.ViewStyleBand = Infragistics.Win.UltraWinGrid.ViewStyleBand.OutlookGroupBy;
  1045. this.ultraGrid2.Dock = System.Windows.Forms.DockStyle.Fill;
  1046. this.ultraGrid2.Location = new System.Drawing.Point(0, 0);
  1047. this.ultraGrid2.Margin = new System.Windows.Forms.Padding(4);
  1048. this.ultraGrid2.Name = "ultraGrid2";
  1049. this.ultraGrid2.Size = new System.Drawing.Size(1233, 209);
  1050. this.ultraGrid2.TabIndex = 0;
  1051. this.ultraGrid2.Text = "ultraGrid2";
  1052. //
  1053. // dataSet2
  1054. //
  1055. this.dataSet2.DataSetName = "NewDataSet";
  1056. this.dataSet2.Tables.AddRange(new System.Data.DataTable[] {
  1057. this.dataTable3});
  1058. //
  1059. // dataTable3
  1060. //
  1061. this.dataTable3.Columns.AddRange(new System.Data.DataColumn[] {
  1062. this.dataColumn115,
  1063. this.dataColumn116,
  1064. this.dataColumn117,
  1065. this.dataColumn118,
  1066. this.dataColumn120,
  1067. this.dataColumn121,
  1068. this.dataColumn126,
  1069. this.dataColumn96,
  1070. this.dataColumn114});
  1071. this.dataTable3.TableName = "Table1";
  1072. //
  1073. // dataColumn115
  1074. //
  1075. this.dataColumn115.Caption = "条款名称";
  1076. this.dataColumn115.ColumnName = "ClauseName";
  1077. //
  1078. // dataColumn116
  1079. //
  1080. this.dataColumn116.Caption = "条款内容";
  1081. this.dataColumn116.ColumnName = "ClauseDesc";
  1082. //
  1083. // dataColumn117
  1084. //
  1085. this.dataColumn117.Caption = "打印顺序1";
  1086. this.dataColumn117.ColumnName = "ClauseIndx";
  1087. //
  1088. // dataColumn118
  1089. //
  1090. this.dataColumn118.Caption = "条款分类";
  1091. this.dataColumn118.ColumnName = "ClauseType";
  1092. //
  1093. // dataColumn120
  1094. //
  1095. this.dataColumn120.Caption = "创建人";
  1096. this.dataColumn120.ColumnName = "CreateName";
  1097. //
  1098. // dataColumn121
  1099. //
  1100. this.dataColumn121.Caption = "创建时间";
  1101. this.dataColumn121.ColumnName = "CreateTime";
  1102. //
  1103. // dataColumn126
  1104. //
  1105. this.dataColumn126.Caption = "合同条款行号";
  1106. this.dataColumn126.ColumnName = "ID";
  1107. //
  1108. // dataColumn96
  1109. //
  1110. this.dataColumn96.Caption = "条款代码";
  1111. this.dataColumn96.ColumnName = "CLAUSEIDOLD";
  1112. //
  1113. // dataColumn114
  1114. //
  1115. this.dataColumn114.Caption = "打印顺序2";
  1116. this.dataColumn114.ColumnName = "ClauseIndxIn";
  1117. //
  1118. // ultraTabSharedControlsPage1
  1119. //
  1120. this.ultraTabSharedControlsPage1.Location = new System.Drawing.Point(-10000, -10000);
  1121. this.ultraTabSharedControlsPage1.Margin = new System.Windows.Forms.Padding(4);
  1122. this.ultraTabSharedControlsPage1.Name = "ultraTabSharedControlsPage1";
  1123. this.ultraTabSharedControlsPage1.Size = new System.Drawing.Size(1233, 209);
  1124. //
  1125. // dataSet3
  1126. //
  1127. this.dataSet3.DataSetName = "NewDataSet";
  1128. this.dataSet3.Tables.AddRange(new System.Data.DataTable[] {
  1129. this.dataTable4});
  1130. //
  1131. // dataTable4
  1132. //
  1133. this.dataTable4.Columns.AddRange(new System.Data.DataColumn[] {
  1134. this.dataColumn53,
  1135. this.dataColumn56,
  1136. this.dataColumn58,
  1137. this.dataColumn59,
  1138. this.dataColumn62,
  1139. this.dataColumn64,
  1140. this.dataColumn66,
  1141. this.dataColumn60,
  1142. this.dataColumn67,
  1143. this.dataColumn54,
  1144. this.dataColumn68,
  1145. this.dataColumn69});
  1146. this.dataTable4.TableName = "Table1";
  1147. //
  1148. // dataColumn53
  1149. //
  1150. this.dataColumn53.Caption = "变更编号";
  1151. this.dataColumn53.ColumnName = "changeId";
  1152. //
  1153. // dataColumn56
  1154. //
  1155. this.dataColumn56.Caption = "变更字段";
  1156. this.dataColumn56.ColumnName = "changeCode";
  1157. //
  1158. // dataColumn58
  1159. //
  1160. this.dataColumn58.Caption = "变更类型";
  1161. this.dataColumn58.ColumnName = "changeType";
  1162. //
  1163. // dataColumn59
  1164. //
  1165. this.dataColumn59.Caption = "合同/条款行号";
  1166. this.dataColumn59.ColumnName = "orderLineSqe";
  1167. //
  1168. // dataColumn62
  1169. //
  1170. this.dataColumn62.Caption = "创建人";
  1171. this.dataColumn62.ColumnName = "createName";
  1172. //
  1173. // dataColumn64
  1174. //
  1175. this.dataColumn64.Caption = "创建时间";
  1176. this.dataColumn64.ColumnName = "createTime";
  1177. //
  1178. // dataColumn66
  1179. //
  1180. this.dataColumn66.Caption = "生效时间";
  1181. this.dataColumn66.ColumnName = "effectiveTime";
  1182. //
  1183. // dataColumn60
  1184. //
  1185. this.dataColumn60.Caption = "变更前值";
  1186. this.dataColumn60.ColumnName = "oldValue";
  1187. //
  1188. // dataColumn67
  1189. //
  1190. this.dataColumn67.Caption = "变更后值";
  1191. this.dataColumn67.ColumnName = "newValue";
  1192. //
  1193. // dataColumn54
  1194. //
  1195. this.dataColumn54.Caption = "合同编号";
  1196. this.dataColumn54.ColumnName = "orderId";
  1197. //
  1198. // dataColumn68
  1199. //
  1200. this.dataColumn68.Caption = "变更字段名";
  1201. this.dataColumn68.ColumnName = "changeCodeName";
  1202. //
  1203. // dataColumn69
  1204. //
  1205. this.dataColumn69.Caption = "变更类型名";
  1206. this.dataColumn69.ColumnName = "changeTypeName";
  1207. //
  1208. // FrmOrderChange_Fill_Panel
  1209. //
  1210. this.FrmOrderChange_Fill_Panel.Controls.Add(this.splitContainer1);
  1211. this.FrmOrderChange_Fill_Panel.Controls.Add(this.ultraPanel21);
  1212. this.FrmOrderChange_Fill_Panel.Cursor = System.Windows.Forms.Cursors.Default;
  1213. this.FrmOrderChange_Fill_Panel.Dock = System.Windows.Forms.DockStyle.Fill;
  1214. this.FrmOrderChange_Fill_Panel.Location = new System.Drawing.Point(0, 28);
  1215. this.FrmOrderChange_Fill_Panel.Margin = new System.Windows.Forms.Padding(4);
  1216. this.FrmOrderChange_Fill_Panel.Name = "FrmOrderChange_Fill_Panel";
  1217. this.FrmOrderChange_Fill_Panel.Size = new System.Drawing.Size(1239, 531);
  1218. this.FrmOrderChange_Fill_Panel.TabIndex = 0;
  1219. //
  1220. // splitContainer1
  1221. //
  1222. this.splitContainer1.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
  1223. this.splitContainer1.Dock = System.Windows.Forms.DockStyle.Fill;
  1224. this.splitContainer1.Location = new System.Drawing.Point(0, 45);
  1225. this.splitContainer1.Margin = new System.Windows.Forms.Padding(4);
  1226. this.splitContainer1.Name = "splitContainer1";
  1227. this.splitContainer1.Orientation = System.Windows.Forms.Orientation.Horizontal;
  1228. //
  1229. // splitContainer1.Panel1
  1230. //
  1231. this.splitContainer1.Panel1.Controls.Add(this.ultraTabControl1);
  1232. //
  1233. // splitContainer1.Panel2
  1234. //
  1235. this.splitContainer1.Panel2.Controls.Add(this.splitContainer2);
  1236. this.splitContainer1.Size = new System.Drawing.Size(1239, 486);
  1237. this.splitContainer1.SplitterDistance = 240;
  1238. this.splitContainer1.SplitterWidth = 5;
  1239. this.splitContainer1.TabIndex = 5;
  1240. //
  1241. // ultraTabControl1
  1242. //
  1243. this.ultraTabControl1.Controls.Add(this.ultraTabSharedControlsPage1);
  1244. this.ultraTabControl1.Controls.Add(this.ultraTabPageControl1);
  1245. this.ultraTabControl1.Controls.Add(this.ultraTabPageControl2);
  1246. this.ultraTabControl1.Dock = System.Windows.Forms.DockStyle.Fill;
  1247. this.ultraTabControl1.Location = new System.Drawing.Point(0, 0);
  1248. this.ultraTabControl1.Margin = new System.Windows.Forms.Padding(4);
  1249. this.ultraTabControl1.Name = "ultraTabControl1";
  1250. this.ultraTabControl1.SharedControlsPage = this.ultraTabSharedControlsPage2;
  1251. this.ultraTabControl1.Size = new System.Drawing.Size(1237, 238);
  1252. this.ultraTabControl1.TabIndex = 0;
  1253. ultraTab1.TabPage = this.ultraTabPageControl1;
  1254. ultraTab1.Text = "合同行编辑";
  1255. ultraTab2.TabPage = this.ultraTabPageControl2;
  1256. ultraTab2.Text = "合同条款编辑";
  1257. ultraTab3.TabPage = this.ultraTabSharedControlsPage1;
  1258. this.ultraTabControl1.Tabs.AddRange(new Infragistics.Win.UltraWinTabControl.UltraTab[] {
  1259. ultraTab1,
  1260. ultraTab2,
  1261. ultraTab3});
  1262. //
  1263. // ultraTabSharedControlsPage2
  1264. //
  1265. this.ultraTabSharedControlsPage2.Location = new System.Drawing.Point(-10000, -10000);
  1266. this.ultraTabSharedControlsPage2.Name = "ultraTabSharedControlsPage2";
  1267. this.ultraTabSharedControlsPage2.Size = new System.Drawing.Size(1233, 209);
  1268. //
  1269. // splitContainer2
  1270. //
  1271. this.splitContainer2.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
  1272. this.splitContainer2.Dock = System.Windows.Forms.DockStyle.Fill;
  1273. this.splitContainer2.Location = new System.Drawing.Point(0, 0);
  1274. this.splitContainer2.Margin = new System.Windows.Forms.Padding(4);
  1275. this.splitContainer2.Name = "splitContainer2";
  1276. //
  1277. // splitContainer2.Panel1
  1278. //
  1279. this.splitContainer2.Panel1.Controls.Add(this.ultraGroupBox1);
  1280. //
  1281. // splitContainer2.Panel2
  1282. //
  1283. this.splitContainer2.Panel2.Controls.Add(this.ultraGroupBox2);
  1284. this.splitContainer2.Size = new System.Drawing.Size(1239, 241);
  1285. this.splitContainer2.SplitterDistance = 583;
  1286. this.splitContainer2.SplitterWidth = 5;
  1287. this.splitContainer2.TabIndex = 1;
  1288. //
  1289. // ultraGroupBox1
  1290. //
  1291. this.ultraGroupBox1.Controls.Add(this.txt_record);
  1292. this.ultraGroupBox1.Dock = System.Windows.Forms.DockStyle.Fill;
  1293. this.ultraGroupBox1.Location = new System.Drawing.Point(0, 0);
  1294. this.ultraGroupBox1.Margin = new System.Windows.Forms.Padding(4);
  1295. this.ultraGroupBox1.Name = "ultraGroupBox1";
  1296. this.ultraGroupBox1.Size = new System.Drawing.Size(581, 239);
  1297. this.ultraGroupBox1.TabIndex = 0;
  1298. this.ultraGroupBox1.Text = "变更说明";
  1299. //
  1300. // txt_record
  1301. //
  1302. this.txt_record.BackColor = System.Drawing.Color.White;
  1303. this.txt_record.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
  1304. this.txt_record.Dock = System.Windows.Forms.DockStyle.Fill;
  1305. this.txt_record.Location = new System.Drawing.Point(3, 21);
  1306. this.txt_record.Margin = new System.Windows.Forms.Padding(4);
  1307. this.txt_record.Name = "txt_record";
  1308. this.txt_record.Size = new System.Drawing.Size(575, 215);
  1309. this.txt_record.TabIndex = 0;
  1310. this.txt_record.Text = "";
  1311. //
  1312. // ultraGroupBox2
  1313. //
  1314. this.ultraGroupBox2.Controls.Add(this.ultraGrid3);
  1315. this.ultraGroupBox2.Dock = System.Windows.Forms.DockStyle.Fill;
  1316. this.ultraGroupBox2.Location = new System.Drawing.Point(0, 0);
  1317. this.ultraGroupBox2.Margin = new System.Windows.Forms.Padding(4);
  1318. this.ultraGroupBox2.Name = "ultraGroupBox2";
  1319. this.ultraGroupBox2.Size = new System.Drawing.Size(649, 239);
  1320. this.ultraGroupBox2.TabIndex = 1;
  1321. this.ultraGroupBox2.Text = "变更明细";
  1322. //
  1323. // ultraGrid3
  1324. //
  1325. this.ultraGrid3.DataMember = "Table1";
  1326. this.ultraGrid3.DataSource = this.dataSet3;
  1327. appearance16.BackColor = System.Drawing.SystemColors.Window;
  1328. appearance16.BorderColor = System.Drawing.SystemColors.InactiveCaption;
  1329. this.ultraGrid3.DisplayLayout.Appearance = appearance16;
  1330. ultraGridColumn28.Header.VisiblePosition = 10;
  1331. ultraGridColumn28.Hidden = true;
  1332. ultraGridColumn29.Header.VisiblePosition = 11;
  1333. ultraGridColumn30.Header.VisiblePosition = 8;
  1334. ultraGridColumn31.Header.VisiblePosition = 0;
  1335. ultraGridColumn32.Header.VisiblePosition = 6;
  1336. ultraGridColumn33.Header.VisiblePosition = 7;
  1337. ultraGridColumn34.Header.VisiblePosition = 5;
  1338. ultraGridColumn34.Hidden = true;
  1339. ultraGridColumn35.Header.VisiblePosition = 3;
  1340. ultraGridColumn36.Header.VisiblePosition = 4;
  1341. ultraGridColumn37.Header.VisiblePosition = 9;
  1342. ultraGridColumn37.Hidden = true;
  1343. ultraGridColumn38.Header.VisiblePosition = 1;
  1344. ultraGridColumn39.Header.VisiblePosition = 2;
  1345. ultraGridBand3.Columns.AddRange(new object[] {
  1346. ultraGridColumn28,
  1347. ultraGridColumn29,
  1348. ultraGridColumn30,
  1349. ultraGridColumn31,
  1350. ultraGridColumn32,
  1351. ultraGridColumn33,
  1352. ultraGridColumn34,
  1353. ultraGridColumn35,
  1354. ultraGridColumn36,
  1355. ultraGridColumn37,
  1356. ultraGridColumn38,
  1357. ultraGridColumn39});
  1358. this.ultraGrid3.DisplayLayout.BandsSerializer.Add(ultraGridBand3);
  1359. this.ultraGrid3.DisplayLayout.BorderStyle = Infragistics.Win.UIElementBorderStyle.Solid;
  1360. this.ultraGrid3.DisplayLayout.CaptionVisible = Infragistics.Win.DefaultableBoolean.False;
  1361. appearance17.BackColor = System.Drawing.SystemColors.ActiveBorder;
  1362. appearance17.BackColor2 = System.Drawing.SystemColors.ControlDark;
  1363. appearance17.BackGradientStyle = Infragistics.Win.GradientStyle.Vertical;
  1364. appearance17.BorderColor = System.Drawing.SystemColors.Window;
  1365. this.ultraGrid3.DisplayLayout.GroupByBox.Appearance = appearance17;
  1366. appearance19.ForeColor = System.Drawing.SystemColors.GrayText;
  1367. this.ultraGrid3.DisplayLayout.GroupByBox.BandLabelAppearance = appearance19;
  1368. this.ultraGrid3.DisplayLayout.GroupByBox.BorderStyle = Infragistics.Win.UIElementBorderStyle.Solid;
  1369. this.ultraGrid3.DisplayLayout.GroupByBox.Hidden = true;
  1370. appearance18.BackColor = System.Drawing.SystemColors.ControlLightLight;
  1371. appearance18.BackColor2 = System.Drawing.SystemColors.Control;
  1372. appearance18.BackGradientStyle = Infragistics.Win.GradientStyle.Horizontal;
  1373. appearance18.ForeColor = System.Drawing.SystemColors.GrayText;
  1374. this.ultraGrid3.DisplayLayout.GroupByBox.PromptAppearance = appearance18;
  1375. this.ultraGrid3.DisplayLayout.MaxColScrollRegions = 1;
  1376. this.ultraGrid3.DisplayLayout.MaxRowScrollRegions = 1;
  1377. appearance22.BackColor = System.Drawing.SystemColors.Window;
  1378. appearance22.ForeColor = System.Drawing.SystemColors.ControlText;
  1379. this.ultraGrid3.DisplayLayout.Override.ActiveCellAppearance = appearance22;
  1380. appearance25.BackColor = System.Drawing.SystemColors.Highlight;
  1381. appearance25.ForeColor = System.Drawing.SystemColors.HighlightText;
  1382. this.ultraGrid3.DisplayLayout.Override.ActiveRowAppearance = appearance25;
  1383. this.ultraGrid3.DisplayLayout.Override.BorderStyleCell = Infragistics.Win.UIElementBorderStyle.Dotted;
  1384. this.ultraGrid3.DisplayLayout.Override.BorderStyleRow = Infragistics.Win.UIElementBorderStyle.Dotted;
  1385. appearance39.BackColor = System.Drawing.SystemColors.Window;
  1386. this.ultraGrid3.DisplayLayout.Override.CardAreaAppearance = appearance39;
  1387. appearance23.BorderColor = System.Drawing.Color.Silver;
  1388. appearance23.TextTrimming = Infragistics.Win.TextTrimming.EllipsisCharacter;
  1389. this.ultraGrid3.DisplayLayout.Override.CellAppearance = appearance23;
  1390. this.ultraGrid3.DisplayLayout.Override.CellClickAction = Infragistics.Win.UltraWinGrid.CellClickAction.EditAndSelectText;
  1391. this.ultraGrid3.DisplayLayout.Override.CellPadding = 0;
  1392. appearance21.BackColor = System.Drawing.SystemColors.Control;
  1393. appearance21.BackColor2 = System.Drawing.SystemColors.ControlDark;
  1394. appearance21.BackGradientAlignment = Infragistics.Win.GradientAlignment.Element;
  1395. appearance21.BackGradientStyle = Infragistics.Win.GradientStyle.Horizontal;
  1396. appearance21.BorderColor = System.Drawing.SystemColors.Window;
  1397. this.ultraGrid3.DisplayLayout.Override.GroupByRowAppearance = appearance21;
  1398. appearance20.TextHAlignAsString = "Left";
  1399. this.ultraGrid3.DisplayLayout.Override.HeaderAppearance = appearance20;
  1400. this.ultraGrid3.DisplayLayout.Override.HeaderClickAction = Infragistics.Win.UltraWinGrid.HeaderClickAction.SortMulti;
  1401. this.ultraGrid3.DisplayLayout.Override.HeaderStyle = Infragistics.Win.HeaderStyle.WindowsXPCommand;
  1402. appearance38.BackColor = System.Drawing.SystemColors.Window;
  1403. appearance38.BorderColor = System.Drawing.Color.Silver;
  1404. this.ultraGrid3.DisplayLayout.Override.RowAppearance = appearance38;
  1405. this.ultraGrid3.DisplayLayout.Override.RowSelectors = Infragistics.Win.DefaultableBoolean.False;
  1406. appearance24.BackColor = System.Drawing.SystemColors.ControlLight;
  1407. this.ultraGrid3.DisplayLayout.Override.TemplateAddRowAppearance = appearance24;
  1408. this.ultraGrid3.DisplayLayout.ScrollBounds = Infragistics.Win.UltraWinGrid.ScrollBounds.ScrollToFill;
  1409. this.ultraGrid3.DisplayLayout.ScrollStyle = Infragistics.Win.UltraWinGrid.ScrollStyle.Immediate;
  1410. this.ultraGrid3.DisplayLayout.ViewStyleBand = Infragistics.Win.UltraWinGrid.ViewStyleBand.OutlookGroupBy;
  1411. this.ultraGrid3.Dock = System.Windows.Forms.DockStyle.Fill;
  1412. this.ultraGrid3.Location = new System.Drawing.Point(3, 21);
  1413. this.ultraGrid3.Margin = new System.Windows.Forms.Padding(4);
  1414. this.ultraGrid3.Name = "ultraGrid3";
  1415. this.ultraGrid3.Size = new System.Drawing.Size(643, 215);
  1416. this.ultraGrid3.TabIndex = 0;
  1417. this.ultraGrid3.Text = "ultraGrid3";
  1418. //
  1419. // ultraPanel21
  1420. //
  1421. //
  1422. // ultraPanel21.ClientArea
  1423. //
  1424. this.ultraPanel21.ClientArea.Controls.Add(this.ultraSUPP_NAME);
  1425. this.ultraPanel21.ClientArea.Controls.Add(this.ultraLabel55);
  1426. this.ultraPanel21.Dock = System.Windows.Forms.DockStyle.Top;
  1427. this.ultraPanel21.Location = new System.Drawing.Point(0, 0);
  1428. this.ultraPanel21.Name = "ultraPanel21";
  1429. this.ultraPanel21.Size = new System.Drawing.Size(1239, 45);
  1430. this.ultraPanel21.TabIndex = 0;
  1431. //
  1432. // ultraSUPP_NAME
  1433. //
  1434. this.ultraSUPP_NAME.Location = new System.Drawing.Point(115, 11);
  1435. this.ultraSUPP_NAME.Margin = new System.Windows.Forms.Padding(3, 2, 3, 2);
  1436. this.ultraSUPP_NAME.Name = "ultraSUPP_NAME";
  1437. this.ultraSUPP_NAME.Size = new System.Drawing.Size(206, 24);
  1438. this.ultraSUPP_NAME.TabIndex = 4;
  1439. //
  1440. // ultraLabel55
  1441. //
  1442. this.ultraLabel55.AutoSize = true;
  1443. this.ultraLabel55.Location = new System.Drawing.Point(50, 15);
  1444. this.ultraLabel55.Margin = new System.Windows.Forms.Padding(3, 2, 3, 2);
  1445. this.ultraLabel55.Name = "ultraLabel55";
  1446. this.ultraLabel55.Size = new System.Drawing.Size(52, 19);
  1447. this.ultraLabel55.TabIndex = 3;
  1448. this.ultraLabel55.Text = "供应商";
  1449. //
  1450. // _FrmOrderChange_Toolbars_Dock_Area_Left
  1451. //
  1452. this._FrmOrderChange_Toolbars_Dock_Area_Left.AccessibleRole = System.Windows.Forms.AccessibleRole.Grouping;
  1453. this._FrmOrderChange_Toolbars_Dock_Area_Left.BackColor = System.Drawing.SystemColors.Control;
  1454. this._FrmOrderChange_Toolbars_Dock_Area_Left.DockedPosition = Infragistics.Win.UltraWinToolbars.DockedPosition.Left;
  1455. this._FrmOrderChange_Toolbars_Dock_Area_Left.ForeColor = System.Drawing.SystemColors.ControlText;
  1456. this._FrmOrderChange_Toolbars_Dock_Area_Left.Location = new System.Drawing.Point(0, 28);
  1457. this._FrmOrderChange_Toolbars_Dock_Area_Left.Margin = new System.Windows.Forms.Padding(4);
  1458. this._FrmOrderChange_Toolbars_Dock_Area_Left.Name = "_FrmOrderChange_Toolbars_Dock_Area_Left";
  1459. this._FrmOrderChange_Toolbars_Dock_Area_Left.Size = new System.Drawing.Size(0, 531);
  1460. this._FrmOrderChange_Toolbars_Dock_Area_Left.ToolbarsManager = this.ultraToolbarsManager1;
  1461. //
  1462. // ultraToolbarsManager1
  1463. //
  1464. this.ultraToolbarsManager1.DesignerFlags = 1;
  1465. this.ultraToolbarsManager1.DockWithinContainer = this;
  1466. this.ultraToolbarsManager1.DockWithinContainerBaseType = typeof(System.Windows.Forms.Form);
  1467. this.ultraToolbarsManager1.ShowQuickCustomizeButton = false;
  1468. ultraToolbar1.DockedColumn = 0;
  1469. ultraToolbar1.DockedRow = 0;
  1470. ultraToolbar1.NonInheritedTools.AddRange(new Infragistics.Win.UltraWinToolbars.ToolBase[] {
  1471. buttonTool1,
  1472. buttonTool7,
  1473. buttonTool9,
  1474. buttonTool2,
  1475. buttonTool3});
  1476. ultraToolbar1.Text = "UltraToolbar1";
  1477. this.ultraToolbarsManager1.Toolbars.AddRange(new Infragistics.Win.UltraWinToolbars.UltraToolbar[] {
  1478. ultraToolbar1});
  1479. appearance11.Image = ((object)(resources.GetObject("appearance11.Image")));
  1480. buttonTool4.SharedPropsInternal.AppearancesSmall.Appearance = appearance11;
  1481. buttonTool4.SharedPropsInternal.Caption = "刷新";
  1482. buttonTool4.SharedPropsInternal.DisplayStyle = Infragistics.Win.UltraWinToolbars.ToolDisplayStyle.ImageAndText;
  1483. appearance12.Image = ((object)(resources.GetObject("appearance12.Image")));
  1484. buttonTool5.SharedPropsInternal.AppearancesSmall.Appearance = appearance12;
  1485. buttonTool5.SharedPropsInternal.Caption = "确定";
  1486. buttonTool5.SharedPropsInternal.DisplayStyle = Infragistics.Win.UltraWinToolbars.ToolDisplayStyle.ImageAndText;
  1487. appearance13.Image = ((object)(resources.GetObject("appearance13.Image")));
  1488. buttonTool6.SharedPropsInternal.AppearancesSmall.Appearance = appearance13;
  1489. buttonTool6.SharedPropsInternal.Caption = "退出";
  1490. buttonTool6.SharedPropsInternal.DisplayStyle = Infragistics.Win.UltraWinToolbars.ToolDisplayStyle.ImageAndText;
  1491. appearance58.Image = ((object)(resources.GetObject("appearance58.Image")));
  1492. buttonTool8.SharedPropsInternal.AppearancesSmall.Appearance = appearance58;
  1493. buttonTool8.SharedPropsInternal.Caption = "删除行";
  1494. buttonTool8.SharedPropsInternal.DisplayStyle = Infragistics.Win.UltraWinToolbars.ToolDisplayStyle.ImageAndText;
  1495. appearance50.Image = ((object)(resources.GetObject("appearance50.Image")));
  1496. buttonTool10.SharedPropsInternal.AppearancesSmall.Appearance = appearance50;
  1497. buttonTool10.SharedPropsInternal.Caption = "生成变更明细";
  1498. buttonTool10.SharedPropsInternal.DisplayStyle = Infragistics.Win.UltraWinToolbars.ToolDisplayStyle.ImageAndText;
  1499. this.ultraToolbarsManager1.Tools.AddRange(new Infragistics.Win.UltraWinToolbars.ToolBase[] {
  1500. buttonTool4,
  1501. buttonTool5,
  1502. buttonTool6,
  1503. buttonTool8,
  1504. buttonTool10});
  1505. this.ultraToolbarsManager1.ToolClick += new Infragistics.Win.UltraWinToolbars.ToolClickEventHandler(this.ultraToolbarsManager1_ToolClick);
  1506. //
  1507. // _FrmOrderChange_Toolbars_Dock_Area_Right
  1508. //
  1509. this._FrmOrderChange_Toolbars_Dock_Area_Right.AccessibleRole = System.Windows.Forms.AccessibleRole.Grouping;
  1510. this._FrmOrderChange_Toolbars_Dock_Area_Right.BackColor = System.Drawing.SystemColors.Control;
  1511. this._FrmOrderChange_Toolbars_Dock_Area_Right.DockedPosition = Infragistics.Win.UltraWinToolbars.DockedPosition.Right;
  1512. this._FrmOrderChange_Toolbars_Dock_Area_Right.ForeColor = System.Drawing.SystemColors.ControlText;
  1513. this._FrmOrderChange_Toolbars_Dock_Area_Right.Location = new System.Drawing.Point(1239, 28);
  1514. this._FrmOrderChange_Toolbars_Dock_Area_Right.Margin = new System.Windows.Forms.Padding(4);
  1515. this._FrmOrderChange_Toolbars_Dock_Area_Right.Name = "_FrmOrderChange_Toolbars_Dock_Area_Right";
  1516. this._FrmOrderChange_Toolbars_Dock_Area_Right.Size = new System.Drawing.Size(0, 531);
  1517. this._FrmOrderChange_Toolbars_Dock_Area_Right.ToolbarsManager = this.ultraToolbarsManager1;
  1518. //
  1519. // _FrmOrderChange_Toolbars_Dock_Area_Top
  1520. //
  1521. this._FrmOrderChange_Toolbars_Dock_Area_Top.AccessibleRole = System.Windows.Forms.AccessibleRole.Grouping;
  1522. this._FrmOrderChange_Toolbars_Dock_Area_Top.BackColor = System.Drawing.SystemColors.Control;
  1523. this._FrmOrderChange_Toolbars_Dock_Area_Top.DockedPosition = Infragistics.Win.UltraWinToolbars.DockedPosition.Top;
  1524. this._FrmOrderChange_Toolbars_Dock_Area_Top.ForeColor = System.Drawing.SystemColors.ControlText;
  1525. this._FrmOrderChange_Toolbars_Dock_Area_Top.Location = new System.Drawing.Point(0, 0);
  1526. this._FrmOrderChange_Toolbars_Dock_Area_Top.Margin = new System.Windows.Forms.Padding(4);
  1527. this._FrmOrderChange_Toolbars_Dock_Area_Top.Name = "_FrmOrderChange_Toolbars_Dock_Area_Top";
  1528. this._FrmOrderChange_Toolbars_Dock_Area_Top.Size = new System.Drawing.Size(1239, 28);
  1529. this._FrmOrderChange_Toolbars_Dock_Area_Top.ToolbarsManager = this.ultraToolbarsManager1;
  1530. //
  1531. // _FrmOrderChange_Toolbars_Dock_Area_Bottom
  1532. //
  1533. this._FrmOrderChange_Toolbars_Dock_Area_Bottom.AccessibleRole = System.Windows.Forms.AccessibleRole.Grouping;
  1534. this._FrmOrderChange_Toolbars_Dock_Area_Bottom.BackColor = System.Drawing.SystemColors.Control;
  1535. this._FrmOrderChange_Toolbars_Dock_Area_Bottom.DockedPosition = Infragistics.Win.UltraWinToolbars.DockedPosition.Bottom;
  1536. this._FrmOrderChange_Toolbars_Dock_Area_Bottom.ForeColor = System.Drawing.SystemColors.ControlText;
  1537. this._FrmOrderChange_Toolbars_Dock_Area_Bottom.Location = new System.Drawing.Point(0, 559);
  1538. this._FrmOrderChange_Toolbars_Dock_Area_Bottom.Margin = new System.Windows.Forms.Padding(4);
  1539. this._FrmOrderChange_Toolbars_Dock_Area_Bottom.Name = "_FrmOrderChange_Toolbars_Dock_Area_Bottom";
  1540. this._FrmOrderChange_Toolbars_Dock_Area_Bottom.Size = new System.Drawing.Size(1239, 0);
  1541. this._FrmOrderChange_Toolbars_Dock_Area_Bottom.ToolbarsManager = this.ultraToolbarsManager1;
  1542. //
  1543. // ultraTabPageControl3
  1544. //
  1545. this.ultraTabPageControl3.Location = new System.Drawing.Point(1, 26);
  1546. this.ultraTabPageControl3.Name = "ultraTabPageControl3";
  1547. this.ultraTabPageControl3.Size = new System.Drawing.Size(1232, 182);
  1548. //
  1549. // ultraTabPageControl4
  1550. //
  1551. this.ultraTabPageControl4.Location = new System.Drawing.Point(-10000, -10000);
  1552. this.ultraTabPageControl4.Name = "ultraTabPageControl4";
  1553. this.ultraTabPageControl4.Size = new System.Drawing.Size(1232, 182);
  1554. //
  1555. // FrmChangeOrder
  1556. //
  1557. this.AutoScaleDimensions = new System.Drawing.SizeF(8F, 15F);
  1558. this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
  1559. this.ClientSize = new System.Drawing.Size(1239, 559);
  1560. this.Controls.Add(this.FrmOrderChange_Fill_Panel);
  1561. this.Controls.Add(this._FrmOrderChange_Toolbars_Dock_Area_Left);
  1562. this.Controls.Add(this._FrmOrderChange_Toolbars_Dock_Area_Right);
  1563. this.Controls.Add(this._FrmOrderChange_Toolbars_Dock_Area_Top);
  1564. this.Controls.Add(this._FrmOrderChange_Toolbars_Dock_Area_Bottom);
  1565. this.Icon = ((System.Drawing.Icon)(resources.GetObject("$this.Icon")));
  1566. this.Margin = new System.Windows.Forms.Padding(7, 6, 7, 6);
  1567. this.Name = "FrmChangeOrder";
  1568. this.StartPosition = System.Windows.Forms.FormStartPosition.CenterParent;
  1569. this.Text = "合同变更申请";
  1570. this.Load += new System.EventHandler(this.FrmChangeOrder_Load);
  1571. this.ultraTabPageControl1.ResumeLayout(false);
  1572. ((System.ComponentModel.ISupportInitialize)(this.ultraGrid1)).EndInit();
  1573. ((System.ComponentModel.ISupportInitialize)(this.dataSet1)).EndInit();
  1574. ((System.ComponentModel.ISupportInitialize)(this.dataTable1)).EndInit();
  1575. ((System.ComponentModel.ISupportInitialize)(this.dataTable2)).EndInit();
  1576. this.ultraTabPageControl2.ResumeLayout(false);
  1577. ((System.ComponentModel.ISupportInitialize)(this.ultraGrid2)).EndInit();
  1578. ((System.ComponentModel.ISupportInitialize)(this.dataSet2)).EndInit();
  1579. ((System.ComponentModel.ISupportInitialize)(this.dataTable3)).EndInit();
  1580. ((System.ComponentModel.ISupportInitialize)(this.dataSet3)).EndInit();
  1581. ((System.ComponentModel.ISupportInitialize)(this.dataTable4)).EndInit();
  1582. this.FrmOrderChange_Fill_Panel.ResumeLayout(false);
  1583. this.splitContainer1.Panel1.ResumeLayout(false);
  1584. this.splitContainer1.Panel2.ResumeLayout(false);
  1585. ((System.ComponentModel.ISupportInitialize)(this.splitContainer1)).EndInit();
  1586. this.splitContainer1.ResumeLayout(false);
  1587. ((System.ComponentModel.ISupportInitialize)(this.ultraTabControl1)).EndInit();
  1588. this.ultraTabControl1.ResumeLayout(false);
  1589. this.splitContainer2.Panel1.ResumeLayout(false);
  1590. this.splitContainer2.Panel2.ResumeLayout(false);
  1591. ((System.ComponentModel.ISupportInitialize)(this.splitContainer2)).EndInit();
  1592. this.splitContainer2.ResumeLayout(false);
  1593. ((System.ComponentModel.ISupportInitialize)(this.ultraGroupBox1)).EndInit();
  1594. this.ultraGroupBox1.ResumeLayout(false);
  1595. ((System.ComponentModel.ISupportInitialize)(this.ultraGroupBox2)).EndInit();
  1596. this.ultraGroupBox2.ResumeLayout(false);
  1597. ((System.ComponentModel.ISupportInitialize)(this.ultraGrid3)).EndInit();
  1598. this.ultraPanel21.ClientArea.ResumeLayout(false);
  1599. this.ultraPanel21.ClientArea.PerformLayout();
  1600. this.ultraPanel21.ResumeLayout(false);
  1601. ((System.ComponentModel.ISupportInitialize)(this.ultraSUPP_NAME)).EndInit();
  1602. ((System.ComponentModel.ISupportInitialize)(this.ultraToolbarsManager1)).EndInit();
  1603. this.ResumeLayout(false);
  1604. }
  1605. #endregion
  1606. private Infragistics.Win.UltraWinToolbars.UltraToolbarsManager ultraToolbarsManager1;
  1607. private System.Windows.Forms.Panel FrmOrderChange_Fill_Panel;
  1608. private Infragistics.Win.UltraWinToolbars.UltraToolbarsDockArea _FrmOrderChange_Toolbars_Dock_Area_Left;
  1609. private Infragistics.Win.UltraWinToolbars.UltraToolbarsDockArea _FrmOrderChange_Toolbars_Dock_Area_Right;
  1610. private Infragistics.Win.UltraWinToolbars.UltraToolbarsDockArea _FrmOrderChange_Toolbars_Dock_Area_Top;
  1611. private Infragistics.Win.UltraWinToolbars.UltraToolbarsDockArea _FrmOrderChange_Toolbars_Dock_Area_Bottom;
  1612. private System.Data.DataSet dataSet1;
  1613. private System.Data.DataTable dataTable1;
  1614. private System.Data.DataColumn dataColumn1;
  1615. private System.Data.DataColumn dataColumn2;
  1616. private System.Data.DataColumn dataColumn3;
  1617. private System.Data.DataColumn dataColumn4;
  1618. private System.Data.DataColumn dataColumn5;
  1619. private System.Data.DataColumn dataColumn6;
  1620. private System.Data.DataColumn dataColumn7;
  1621. private System.Data.DataColumn dataColumn8;
  1622. private System.Data.DataColumn dataColumn9;
  1623. private System.Data.DataColumn dataColumn10;
  1624. private System.Data.DataColumn dataColumn11;
  1625. private System.Data.DataColumn dataColumn12;
  1626. private System.Data.DataColumn dataColumn13;
  1627. private System.Data.DataColumn dataColumn14;
  1628. private System.Data.DataColumn dataColumn15;
  1629. private System.Data.DataColumn dataColumn16;
  1630. private System.Data.DataColumn dataColumn18;
  1631. private System.Data.DataColumn dataColumn19;
  1632. private System.Data.DataColumn dataColumn20;
  1633. private System.Data.DataColumn dataColumn21;
  1634. private System.Data.DataColumn dataColumn22;
  1635. private System.Data.DataColumn dataColumn23;
  1636. private System.Data.DataColumn dataColumn24;
  1637. private System.Data.DataColumn dataColumn25;
  1638. private System.Data.DataColumn dataColumn26;
  1639. private System.Data.DataColumn dataColumn27;
  1640. private System.Data.DataColumn dataColumn29;
  1641. private System.Data.DataColumn dataColumn30;
  1642. private System.Data.DataColumn dataColumn31;
  1643. private System.Data.DataColumn dataColumn32;
  1644. private System.Data.DataColumn dataColumn28;
  1645. private System.Data.DataColumn dataColumn33;
  1646. private System.Data.DataColumn dataColumn34;
  1647. private System.Data.DataColumn dataColumn35;
  1648. private System.Data.DataColumn dataColumn36;
  1649. private System.Data.DataColumn dataColumn37;
  1650. private System.Data.DataColumn dataColumn38;
  1651. private System.Data.DataColumn dataColumn39;
  1652. private System.Data.DataColumn dataColumn40;
  1653. private System.Data.DataColumn dataColumn41;
  1654. private System.Data.DataColumn dataColumn42;
  1655. private System.Data.DataColumn dataColumn43;
  1656. private System.Data.DataColumn dataColumn44;
  1657. private System.Data.DataColumn dataColumn45;
  1658. private System.Data.DataColumn dataColumn46;
  1659. private System.Data.DataColumn dataColumn47;
  1660. private System.Data.DataColumn dataColumn48;
  1661. private System.Data.DataColumn dataColumn49;
  1662. private System.Data.DataColumn dataColumn50;
  1663. private System.Data.DataColumn dataColumn127;
  1664. private System.Data.DataColumn dataColumn135;
  1665. private System.Data.DataColumn dataColumn248;
  1666. private System.Data.DataTable dataTable2;
  1667. private System.Data.DataColumn dataColumn51;
  1668. private System.Data.DataColumn dataColumn52;
  1669. private System.Data.DataColumn dataColumn55;
  1670. private System.Data.DataColumn dataColumn57;
  1671. private System.Data.DataColumn dataColumn61;
  1672. private System.Data.DataColumn dataColumn63;
  1673. private System.Data.DataColumn dataColumn65;
  1674. private System.Data.DataColumn dataColumn73;
  1675. private System.Data.DataColumn dataColumn82;
  1676. private System.Data.DataColumn dataColumn106;
  1677. private System.Data.DataColumn dataColumn107;
  1678. private System.Data.DataColumn dataColumn129;
  1679. private System.Data.DataColumn dataColumn130;
  1680. private System.Data.DataColumn dataColumn132;
  1681. private System.Data.DataColumn dataColumn17;
  1682. private System.Data.DataSet dataSet2;
  1683. private System.Data.DataTable dataTable3;
  1684. private System.Data.DataColumn dataColumn115;
  1685. private System.Data.DataColumn dataColumn116;
  1686. private System.Data.DataColumn dataColumn117;
  1687. private System.Data.DataColumn dataColumn118;
  1688. private System.Data.DataColumn dataColumn120;
  1689. private System.Data.DataColumn dataColumn121;
  1690. private System.Data.DataColumn dataColumn126;
  1691. private System.Data.DataColumn dataColumn96;
  1692. private System.Data.DataColumn dataColumn114;
  1693. private System.Data.DataSet dataSet3;
  1694. private System.Data.DataTable dataTable4;
  1695. private System.Data.DataColumn dataColumn53;
  1696. private System.Data.DataColumn dataColumn56;
  1697. private System.Data.DataColumn dataColumn58;
  1698. private System.Data.DataColumn dataColumn59;
  1699. private System.Data.DataColumn dataColumn62;
  1700. private System.Data.DataColumn dataColumn64;
  1701. private System.Data.DataColumn dataColumn66;
  1702. private System.Data.DataColumn dataColumn60;
  1703. private System.Data.DataColumn dataColumn67;
  1704. private System.Data.DataColumn dataColumn54;
  1705. private System.Data.DataColumn dataColumn68;
  1706. private System.Data.DataColumn dataColumn69;
  1707. private System.Data.DataColumn dataColumn70;
  1708. private System.Data.DataColumn dataColumn71;
  1709. private System.Windows.Forms.SplitContainer splitContainer1;
  1710. private Infragistics.Win.UltraWinTabControl.UltraTabSharedControlsPage ultraTabSharedControlsPage2;
  1711. private System.Windows.Forms.SplitContainer splitContainer2;
  1712. private Infragistics.Win.Misc.UltraGroupBox ultraGroupBox1;
  1713. private System.Windows.Forms.RichTextBox txt_record;
  1714. private Infragistics.Win.Misc.UltraGroupBox ultraGroupBox2;
  1715. private Infragistics.Win.UltraWinGrid.UltraGrid ultraGrid3;
  1716. private Core.Mes.Client.Comm.Control.UltraPanel2 ultraPanel21;
  1717. private Infragistics.Win.UltraWinTabControl.UltraTabPageControl ultraTabPageControl3;
  1718. private Infragistics.Win.UltraWinTabControl.UltraTabPageControl ultraTabPageControl4;
  1719. private Infragistics.Win.Misc.UltraLabel ultraLabel55;
  1720. private Infragistics.Win.UltraWinEditors.UltraComboEditor ultraSUPP_NAME;
  1721. private Infragistics.Win.UltraWinTabControl.UltraTabControl ultraTabControl1;
  1722. private Infragistics.Win.UltraWinTabControl.UltraTabSharedControlsPage ultraTabSharedControlsPage1;
  1723. private Infragistics.Win.UltraWinTabControl.UltraTabPageControl ultraTabPageControl1;
  1724. private Infragistics.Win.UltraWinGrid.UltraGrid ultraGrid1;
  1725. private Infragistics.Win.UltraWinTabControl.UltraTabPageControl ultraTabPageControl2;
  1726. private Infragistics.Win.UltraWinGrid.UltraGrid ultraGrid2;
  1727. }
  1728. }