FrmMateriaLB.cs 136 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472
  1. using System;
  2. using System.Drawing;
  3. using System.Collections;
  4. using System.ComponentModel;
  5. using System.Windows.Forms;
  6. using Core.Mes.ClientFrameWork;
  7. using Core.Mes.IBaseInterface;
  8. using System.Data;
  9. using System.Runtime.InteropServices;
  10. using Core.XgMes.Client.JGKC.TurnoffSendManager;
  11. using Infragistics.Win.UltraWinEditors;
  12. namespace Core.XgMes.Client.JGKC.MaterialManager
  13. {
  14. /// <summary>
  15. /// FrmDepot的摘要说明。
  16. /// </summary>
  17. public class FrmMateriaLB : Mes.ClientFrameWork.FrmBase
  18. {
  19. private System.Windows.Forms.Panel panel1;
  20. private Infragistics.Win.UltraWinToolbars.UltraToolbarsManager ultraToolbarsManager1;
  21. private Infragistics.Win.UltraWinToolbars.UltraToolbarsDockArea _panel1_Toolbars_Dock_Area_Left;
  22. private Infragistics.Win.UltraWinToolbars.UltraToolbarsDockArea _panel1_Toolbars_Dock_Area_Right;
  23. private Infragistics.Win.UltraWinToolbars.UltraToolbarsDockArea _panel1_Toolbars_Dock_Area_Top;
  24. private Infragistics.Win.UltraWinToolbars.UltraToolbarsDockArea _panel1_Toolbars_Dock_Area_Bottom;
  25. private Infragistics.Win.Misc.UltraGroupBox ultraGroupBox1;
  26. private Infragistics.Win.Misc.UltraExpandableGroupBox ultraExpandableGroupBox1;
  27. private Infragistics.Win.Misc.UltraExpandableGroupBoxPanel ultraExpandableGroupBoxPanel1;
  28. private System.Windows.Forms.Panel panel2;
  29. private Infragistics.Win.UltraWinGrid.UltraGrid gd_CK;
  30. private Infragistics.Win.UltraWinGrid.ExcelExport.UltraGridExcelExporter excelExporter;
  31. private Infragistics.Win.UltraWinEditors.UltraTextEditor txt_gfmc;
  32. private Infragistics.Win.UltraWinEditors.UltraCheckEditor Chk_CKmc;
  33. private Infragistics.Win.UltraWinEditors.UltraTextEditor txt_gfdm;
  34. private Infragistics.Win.UltraWinEditors.UltraCheckEditor Chk_CKDM;
  35. private Infragistics.Win.UltraWinEditors.UltraTextEditor txt_DM;
  36. private Infragistics.Win.Misc.UltraLabel ultraLabel4;
  37. private Infragistics.Win.Misc.UltraLabel ultraLabel1;
  38. private Infragistics.Win.UltraWinEditors.UltraTextEditor txt_MC;
  39. private Infragistics.Win.Misc.UltraLabel ultraLabel3;
  40. private Infragistics.Win.UltraWinEditors.UltraTextEditor ultraTextEditor1;
  41. private Infragistics.Win.Misc.UltraLabel ultraLabel5;
  42. private Infragistics.Win.UltraWinEditors.UltraTextEditor ultraTextEditor2;
  43. private Infragistics.Win.Misc.UltraLabel ultraLabel6;
  44. private Infragistics.Win.UltraWinEditors.UltraTextEditor ultraTextEditor3;
  45. private Infragistics.Win.UltraWinEditors.UltraComboEditor ultraComboEditor1;
  46. private Infragistics.Win.Misc.UltraLabel ultraLabel9;
  47. private Infragistics.Win.Misc.UltraLabel ultraLabel10;
  48. private Infragistics.Win.UltraWinEditors.UltraTextEditor ultraTextEditor4;
  49. private Infragistics.Win.Misc.UltraLabel ultraLabel11;
  50. private Infragistics.Win.UltraWinEditors.UltraTextEditor ultraTextEditor5;
  51. private Infragistics.Win.Misc.UltraLabel ultraLabel12;
  52. private Infragistics.Win.UltraWinEditors.UltraTextEditor ultraTextEditor6;
  53. private Infragistics.Win.Misc.UltraLabel ultraLabel13;
  54. private Infragistics.Win.UltraWinEditors.UltraTextEditor ultraTextEditor7;
  55. private Infragistics.Win.Misc.UltraLabel ultraLabel18;
  56. private Infragistics.Win.UltraWinEditors.UltraTextEditor ultraTextEditor9;
  57. private Infragistics.Win.Misc.UltraLabel ultraLabel19;
  58. private Infragistics.Win.UltraWinEditors.UltraTextEditor ultraTextEditor10;
  59. private Infragistics.Win.Misc.UltraLabel ultraLabel20;
  60. private Infragistics.Win.UltraWinEditors.UltraTextEditor ultraTextEditor11;
  61. private Infragistics.Win.Misc.UltraLabel ultraLabel21;
  62. private Infragistics.Win.UltraWinEditors.UltraTextEditor ultraTextEditor12;
  63. private Infragistics.Win.UltraWinEditors.UltraComboEditor ultraComboEditor2;
  64. private Infragistics.Win.Misc.UltraLabel ultraLabel22;
  65. private Infragistics.Win.Misc.UltraLabel ultraLabel23;
  66. private Infragistics.Win.UltraWinEditors.UltraTextEditor ultraTextEditor13;
  67. private Infragistics.Win.Misc.UltraLabel ultraLabel24;
  68. private Infragistics.Win.UltraWinEditors.UltraTextEditor ultraTextEditor14;
  69. private Infragistics.Win.Misc.UltraLabel ultraLabel25;
  70. private Infragistics.Win.UltraWinEditors.UltraTextEditor ultraTextEditor15;
  71. private Infragistics.Win.Misc.UltraLabel ultraLabel26;
  72. private Infragistics.Win.UltraWinEditors.UltraTextEditor ultraTextEditor16;
  73. private Infragistics.Win.UltraWinEditors.UltraCheckEditor chk_AllowFilter;
  74. private Infragistics.Win.Misc.UltraLabel ultraLabel16;
  75. private Infragistics.Win.UltraWinEditors.UltraTextEditor ultraTextEditor8;
  76. private Infragistics.Win.Misc.UltraLabel ultraLabel17;
  77. private Infragistics.Win.UltraWinEditors.UltraTextEditor ultraTextEditor18;
  78. private Infragistics.Win.Misc.UltraLabel ultraLabel27;
  79. private Infragistics.Win.UltraWinEditors.UltraTextEditor ultraTextEditor19;
  80. private Infragistics.Win.UltraWinEditors.UltraTextEditor ultraTextEditor20;
  81. private Infragistics.Win.UltraWinEditors.UltraComboEditor ultraComboEditor3;
  82. private Infragistics.Win.Misc.UltraLabel ultraLabel37;
  83. private Infragistics.Win.UltraWinEditors.UltraComboEditor ultraComboEditor4;
  84. private Infragistics.Win.Misc.UltraLabel ultraLabel38;
  85. private Infragistics.Win.UltraWinEditors.UltraComboEditor ultraComboEditor5;
  86. private Infragistics.Win.Misc.UltraLabel ultraLabel39;
  87. private Infragistics.Win.UltraWinEditors.UltraComboEditor ultraComboEditor6;
  88. private Infragistics.Win.Misc.UltraLabel ultraLabel40;
  89. private Infragistics.Win.UltraWinEditors.UltraComboEditor ultraComboEditor7;
  90. private Infragistics.Win.Misc.UltraLabel ultraLabel41;
  91. private Infragistics.Win.UltraWinEditors.UltraComboEditor ultraComboEditor8;
  92. private Infragistics.Win.Misc.UltraLabel ultraLabel42;
  93. private Infragistics.Win.UltraWinEditors.UltraComboEditor ultraComboEditor9;
  94. private Infragistics.Win.Misc.UltraLabel ultraLabel43;
  95. private Infragistics.Win.UltraWinEditors.UltraComboEditor ultraComboEditor10;
  96. private Infragistics.Win.Misc.UltraLabel ultraLabel44;
  97. private Infragistics.Win.Misc.UltraLabel ultraLabel45;
  98. private Infragistics.Win.UltraWinEditors.UltraTextEditor ultraTextEditor21;
  99. private Infragistics.Win.Misc.UltraLabel ultraLabel46;
  100. private Infragistics.Win.UltraWinEditors.UltraTextEditor ultraTextEditor22;
  101. private Infragistics.Win.Misc.UltraLabel ultraLabel47;
  102. private Infragistics.Win.UltraWinEditors.UltraTextEditor ultraTextEditor23;
  103. private Infragistics.Win.Misc.UltraLabel ultraLabel48;
  104. private Infragistics.Win.UltraWinEditors.UltraTextEditor ultraTextEditor24;
  105. private Infragistics.Win.Misc.UltraLabel ultraLabel49;
  106. private Infragistics.Win.UltraWinEditors.UltraTextEditor ultraTextEditor25;
  107. private Infragistics.Win.Misc.UltraLabel ultraLabel51;
  108. private Infragistics.Win.UltraWinEditors.UltraTextEditor ultraTextEditor26;
  109. private Infragistics.Win.Misc.UltraLabel ultraLabel52;
  110. private Infragistics.Win.UltraWinEditors.UltraTextEditor ultraTextEditor27;
  111. private Infragistics.Win.Misc.UltraLabel ultraLabel53;
  112. private Infragistics.Win.UltraWinEditors.UltraTextEditor ultraTextEditor28;
  113. private Infragistics.Win.Misc.UltraLabel ultraLabel54;
  114. private Infragistics.Win.UltraWinEditors.UltraTextEditor ultraTextEditor29;
  115. private Infragistics.Win.UltraWinEditors.UltraTextEditor ultraTextEditor30;
  116. private Infragistics.Win.UltraWinEditors.UltraComboEditor ultraComboEditor11;
  117. private Infragistics.Win.Misc.UltraLabel ultraLabel55;
  118. private Infragistics.Win.UltraWinEditors.UltraComboEditor ultraComboEditor12;
  119. private Infragistics.Win.Misc.UltraLabel ultraLabel56;
  120. private Infragistics.Win.UltraWinEditors.UltraComboEditor ultraComboEditor13;
  121. private Infragistics.Win.Misc.UltraLabel ultraLabel57;
  122. private Infragistics.Win.UltraWinEditors.UltraComboEditor ultraComboEditor14;
  123. private Infragistics.Win.Misc.UltraLabel ultraLabel58;
  124. private Infragistics.Win.UltraWinEditors.UltraComboEditor ultraComboEditor15;
  125. private Infragistics.Win.Misc.UltraLabel ultraLabel59;
  126. private Infragistics.Win.UltraWinEditors.UltraComboEditor ultraComboEditor16;
  127. private Infragistics.Win.Misc.UltraLabel ultraLabel60;
  128. private Infragistics.Win.UltraWinEditors.UltraComboEditor ultraComboEditor17;
  129. private Infragistics.Win.Misc.UltraLabel ultraLabel61;
  130. private Infragistics.Win.UltraWinEditors.UltraComboEditor ultraComboEditor18;
  131. private Infragistics.Win.Misc.UltraLabel ultraLabel62;
  132. private Infragistics.Win.Misc.UltraLabel ultraLabel63;
  133. private Infragistics.Win.UltraWinEditors.UltraTextEditor ultraTextEditor31;
  134. private Infragistics.Win.Misc.UltraLabel ultraLabel64;
  135. private Infragistics.Win.UltraWinEditors.UltraTextEditor ultraTextEditor32;
  136. private Infragistics.Win.Misc.UltraLabel ultraLabel65;
  137. private Infragistics.Win.UltraWinEditors.UltraTextEditor ultraTextEditor33;
  138. private Infragistics.Win.Misc.UltraLabel ultraLabel66;
  139. private Infragistics.Win.UltraWinEditors.UltraTextEditor ultraTextEditor34;
  140. private Infragistics.Win.Misc.UltraLabel ultraLabel67;
  141. private Infragistics.Win.UltraWinEditors.UltraTextEditor ultraTextEditor35;
  142. private Infragistics.Win.Misc.UltraLabel ultraLabel75;
  143. private Infragistics.Win.UltraWinEditors.UltraTextEditor txt_Remark;
  144. private System.ComponentModel.IContainer components;
  145. public FrmMateriaLB()
  146. {
  147. //
  148. // Windows 窗体设计器支持所必需的
  149. //
  150. InitializeComponent();
  151. //
  152. // TODO: 在 InitializeComponent 调用后添加任何构造函数代码
  153. //
  154. }
  155. /// <summary>
  156. /// 清理所有正在使用的资源。
  157. /// </summary>
  158. protected override void Dispose( bool disposing )
  159. {
  160. if( disposing )
  161. {
  162. if(components != null)
  163. {
  164. components.Dispose();
  165. }
  166. }
  167. base.Dispose( disposing );
  168. }
  169. #region Windows 窗体设计器生成的代码
  170. /// <summary>
  171. /// 设计器支持所需的方法 - 不要使用代码编辑器修改
  172. /// 此方法的内容。
  173. /// </summary>
  174. private void InitializeComponent()
  175. {
  176. this.components = new System.ComponentModel.Container();
  177. Infragistics.Win.UltraWinToolbars.UltraToolbar ultraToolbar1 = new Infragistics.Win.UltraWinToolbars.UltraToolbar("工具栏");
  178. Infragistics.Win.UltraWinToolbars.ButtonTool buttonTool1 = new Infragistics.Win.UltraWinToolbars.ButtonTool("Add");
  179. Infragistics.Win.UltraWinToolbars.ButtonTool buttonTool2 = new Infragistics.Win.UltraWinToolbars.ButtonTool("UPDATE");
  180. Infragistics.Win.UltraWinToolbars.ButtonTool buttonTool3 = new Infragistics.Win.UltraWinToolbars.ButtonTool("Del");
  181. Infragistics.Win.UltraWinToolbars.ButtonTool buttonTool4 = new Infragistics.Win.UltraWinToolbars.ButtonTool("Query");
  182. Infragistics.Win.UltraWinToolbars.ButtonTool buttonTool5 = new Infragistics.Win.UltraWinToolbars.ButtonTool("Export");
  183. Infragistics.Win.UltraWinToolbars.ButtonTool buttonTool6 = new Infragistics.Win.UltraWinToolbars.ButtonTool("Close");
  184. Infragistics.Win.UltraWinToolbars.ButtonTool buttonTool7 = new Infragistics.Win.UltraWinToolbars.ButtonTool("Add");
  185. Infragistics.Win.UltraWinToolbars.ButtonTool buttonTool8 = new Infragistics.Win.UltraWinToolbars.ButtonTool("Query");
  186. Infragistics.Win.UltraWinToolbars.ButtonTool buttonTool9 = new Infragistics.Win.UltraWinToolbars.ButtonTool("Close");
  187. Infragistics.Win.UltraWinToolbars.ButtonTool buttonTool10 = new Infragistics.Win.UltraWinToolbars.ButtonTool("Export");
  188. Infragistics.Win.UltraWinToolbars.ButtonTool buttonTool11 = new Infragistics.Win.UltraWinToolbars.ButtonTool("UPDATE");
  189. Infragistics.Win.UltraWinToolbars.ButtonTool buttonTool12 = new Infragistics.Win.UltraWinToolbars.ButtonTool("Del");
  190. Infragistics.Win.Appearance appearance1 = new Infragistics.Win.Appearance();
  191. Infragistics.Win.Appearance appearance2 = new Infragistics.Win.Appearance();
  192. Infragistics.Win.Appearance appearance3 = new Infragistics.Win.Appearance();
  193. Infragistics.Win.Appearance appearance4 = new Infragistics.Win.Appearance();
  194. Infragistics.Win.Appearance appearance5 = new Infragistics.Win.Appearance();
  195. Infragistics.Win.Appearance appearance6 = new Infragistics.Win.Appearance();
  196. Infragistics.Win.Appearance appearance7 = new Infragistics.Win.Appearance();
  197. Infragistics.Win.UltraWinGrid.UltraGridBand ultraGridBand1 = new Infragistics.Win.UltraWinGrid.UltraGridBand("Band 0", -1);
  198. Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn1 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("MATERIAL__LB_CODE");
  199. Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn2 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("MATERIAL__LB_NAME");
  200. Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn3 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("REMARK");
  201. Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn4 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("RECODER");
  202. Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn5 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("TIME_");
  203. Infragistics.Win.Appearance appearance8 = new Infragistics.Win.Appearance();
  204. Infragistics.Win.Appearance appearance9 = new Infragistics.Win.Appearance();
  205. Infragistics.Win.Appearance appearance10 = new Infragistics.Win.Appearance();
  206. Infragistics.Win.Appearance appearance11 = new Infragistics.Win.Appearance();
  207. Infragistics.Win.Appearance appearance12 = new Infragistics.Win.Appearance();
  208. Infragistics.Win.Appearance appearance13 = new Infragistics.Win.Appearance();
  209. Infragistics.Win.Appearance appearance14 = new Infragistics.Win.Appearance();
  210. Infragistics.Win.Appearance appearance15 = new Infragistics.Win.Appearance();
  211. Infragistics.Win.Appearance appearance16 = new Infragistics.Win.Appearance();
  212. Infragistics.Win.Appearance appearance17 = new Infragistics.Win.Appearance();
  213. Infragistics.Win.Appearance appearance18 = new Infragistics.Win.Appearance();
  214. Infragistics.Win.Appearance appearance19 = new Infragistics.Win.Appearance();
  215. Infragistics.Win.Appearance appearance20 = new Infragistics.Win.Appearance();
  216. Infragistics.Win.Appearance appearance21 = new Infragistics.Win.Appearance();
  217. Infragistics.Win.ValueListItem valueListItem1 = new Infragistics.Win.ValueListItem();
  218. Infragistics.Win.ValueListItem valueListItem2 = new Infragistics.Win.ValueListItem();
  219. Infragistics.Win.ValueListItem valueListItem3 = new Infragistics.Win.ValueListItem();
  220. Infragistics.Win.ValueListItem valueListItem4 = new Infragistics.Win.ValueListItem();
  221. Infragistics.Win.Appearance appearance22 = new Infragistics.Win.Appearance();
  222. Infragistics.Win.Appearance appearance23 = new Infragistics.Win.Appearance();
  223. Infragistics.Win.Appearance appearance24 = new Infragistics.Win.Appearance();
  224. Infragistics.Win.Appearance appearance25 = new Infragistics.Win.Appearance();
  225. Infragistics.Win.Appearance appearance26 = new Infragistics.Win.Appearance();
  226. Infragistics.Win.Appearance appearance27 = new Infragistics.Win.Appearance();
  227. Infragistics.Win.Appearance appearance28 = new Infragistics.Win.Appearance();
  228. Infragistics.Win.Appearance appearance29 = new Infragistics.Win.Appearance();
  229. Infragistics.Win.Appearance appearance30 = new Infragistics.Win.Appearance();
  230. Infragistics.Win.ValueListItem valueListItem5 = new Infragistics.Win.ValueListItem();
  231. Infragistics.Win.ValueListItem valueListItem6 = new Infragistics.Win.ValueListItem();
  232. Infragistics.Win.ValueListItem valueListItem7 = new Infragistics.Win.ValueListItem();
  233. Infragistics.Win.ValueListItem valueListItem8 = new Infragistics.Win.ValueListItem();
  234. Infragistics.Win.Appearance appearance31 = new Infragistics.Win.Appearance();
  235. Infragistics.Win.Appearance appearance32 = new Infragistics.Win.Appearance();
  236. Infragistics.Win.Appearance appearance33 = new Infragistics.Win.Appearance();
  237. Infragistics.Win.Appearance appearance34 = new Infragistics.Win.Appearance();
  238. Infragistics.Win.Appearance appearance35 = new Infragistics.Win.Appearance();
  239. Infragistics.Win.Appearance appearance36 = new Infragistics.Win.Appearance();
  240. Infragistics.Win.Appearance appearance37 = new Infragistics.Win.Appearance();
  241. Infragistics.Win.Appearance appearance38 = new Infragistics.Win.Appearance();
  242. Infragistics.Win.Appearance appearance39 = new Infragistics.Win.Appearance();
  243. Infragistics.Win.ValueListItem valueListItem9 = new Infragistics.Win.ValueListItem();
  244. Infragistics.Win.ValueListItem valueListItem10 = new Infragistics.Win.ValueListItem();
  245. Infragistics.Win.Appearance appearance40 = new Infragistics.Win.Appearance();
  246. Infragistics.Win.ValueListItem valueListItem11 = new Infragistics.Win.ValueListItem();
  247. Infragistics.Win.ValueListItem valueListItem12 = new Infragistics.Win.ValueListItem();
  248. Infragistics.Win.Appearance appearance41 = new Infragistics.Win.Appearance();
  249. Infragistics.Win.ValueListItem valueListItem13 = new Infragistics.Win.ValueListItem();
  250. Infragistics.Win.ValueListItem valueListItem14 = new Infragistics.Win.ValueListItem();
  251. Infragistics.Win.Appearance appearance42 = new Infragistics.Win.Appearance();
  252. Infragistics.Win.ValueListItem valueListItem15 = new Infragistics.Win.ValueListItem();
  253. Infragistics.Win.ValueListItem valueListItem16 = new Infragistics.Win.ValueListItem();
  254. Infragistics.Win.Appearance appearance43 = new Infragistics.Win.Appearance();
  255. Infragistics.Win.ValueListItem valueListItem17 = new Infragistics.Win.ValueListItem();
  256. Infragistics.Win.ValueListItem valueListItem18 = new Infragistics.Win.ValueListItem();
  257. Infragistics.Win.Appearance appearance44 = new Infragistics.Win.Appearance();
  258. Infragistics.Win.ValueListItem valueListItem19 = new Infragistics.Win.ValueListItem();
  259. Infragistics.Win.ValueListItem valueListItem20 = new Infragistics.Win.ValueListItem();
  260. Infragistics.Win.Appearance appearance45 = new Infragistics.Win.Appearance();
  261. Infragistics.Win.ValueListItem valueListItem21 = new Infragistics.Win.ValueListItem();
  262. Infragistics.Win.ValueListItem valueListItem22 = new Infragistics.Win.ValueListItem();
  263. Infragistics.Win.Appearance appearance46 = new Infragistics.Win.Appearance();
  264. Infragistics.Win.ValueListItem valueListItem23 = new Infragistics.Win.ValueListItem();
  265. Infragistics.Win.ValueListItem valueListItem24 = new Infragistics.Win.ValueListItem();
  266. Infragistics.Win.Appearance appearance47 = new Infragistics.Win.Appearance();
  267. Infragistics.Win.Appearance appearance48 = new Infragistics.Win.Appearance();
  268. Infragistics.Win.Appearance appearance49 = new Infragistics.Win.Appearance();
  269. Infragistics.Win.Appearance appearance50 = new Infragistics.Win.Appearance();
  270. Infragistics.Win.Appearance appearance51 = new Infragistics.Win.Appearance();
  271. Infragistics.Win.Appearance appearance52 = new Infragistics.Win.Appearance();
  272. Infragistics.Win.Appearance appearance53 = new Infragistics.Win.Appearance();
  273. Infragistics.Win.Appearance appearance54 = new Infragistics.Win.Appearance();
  274. Infragistics.Win.Appearance appearance55 = new Infragistics.Win.Appearance();
  275. Infragistics.Win.Appearance appearance56 = new Infragistics.Win.Appearance();
  276. Infragistics.Win.Appearance appearance57 = new Infragistics.Win.Appearance();
  277. Infragistics.Win.ValueListItem valueListItem25 = new Infragistics.Win.ValueListItem();
  278. Infragistics.Win.ValueListItem valueListItem26 = new Infragistics.Win.ValueListItem();
  279. Infragistics.Win.Appearance appearance58 = new Infragistics.Win.Appearance();
  280. Infragistics.Win.ValueListItem valueListItem27 = new Infragistics.Win.ValueListItem();
  281. Infragistics.Win.ValueListItem valueListItem28 = new Infragistics.Win.ValueListItem();
  282. Infragistics.Win.Appearance appearance59 = new Infragistics.Win.Appearance();
  283. Infragistics.Win.ValueListItem valueListItem29 = new Infragistics.Win.ValueListItem();
  284. Infragistics.Win.ValueListItem valueListItem30 = new Infragistics.Win.ValueListItem();
  285. Infragistics.Win.Appearance appearance60 = new Infragistics.Win.Appearance();
  286. Infragistics.Win.ValueListItem valueListItem31 = new Infragistics.Win.ValueListItem();
  287. Infragistics.Win.ValueListItem valueListItem32 = new Infragistics.Win.ValueListItem();
  288. Infragistics.Win.Appearance appearance61 = new Infragistics.Win.Appearance();
  289. Infragistics.Win.ValueListItem valueListItem33 = new Infragistics.Win.ValueListItem();
  290. Infragistics.Win.ValueListItem valueListItem34 = new Infragistics.Win.ValueListItem();
  291. Infragistics.Win.Appearance appearance62 = new Infragistics.Win.Appearance();
  292. Infragistics.Win.ValueListItem valueListItem35 = new Infragistics.Win.ValueListItem();
  293. Infragistics.Win.ValueListItem valueListItem36 = new Infragistics.Win.ValueListItem();
  294. Infragistics.Win.Appearance appearance63 = new Infragistics.Win.Appearance();
  295. Infragistics.Win.ValueListItem valueListItem37 = new Infragistics.Win.ValueListItem();
  296. Infragistics.Win.ValueListItem valueListItem38 = new Infragistics.Win.ValueListItem();
  297. Infragistics.Win.Appearance appearance64 = new Infragistics.Win.Appearance();
  298. Infragistics.Win.ValueListItem valueListItem39 = new Infragistics.Win.ValueListItem();
  299. Infragistics.Win.ValueListItem valueListItem40 = new Infragistics.Win.ValueListItem();
  300. Infragistics.Win.Appearance appearance65 = new Infragistics.Win.Appearance();
  301. Infragistics.Win.Appearance appearance66 = new Infragistics.Win.Appearance();
  302. Infragistics.Win.Appearance appearance67 = new Infragistics.Win.Appearance();
  303. Infragistics.Win.Appearance appearance68 = new Infragistics.Win.Appearance();
  304. Infragistics.Win.Appearance appearance69 = new Infragistics.Win.Appearance();
  305. this.panel1 = new System.Windows.Forms.Panel();
  306. this._panel1_Toolbars_Dock_Area_Left = new Infragistics.Win.UltraWinToolbars.UltraToolbarsDockArea();
  307. this.ultraToolbarsManager1 = new Infragistics.Win.UltraWinToolbars.UltraToolbarsManager(this.components);
  308. this._panel1_Toolbars_Dock_Area_Right = new Infragistics.Win.UltraWinToolbars.UltraToolbarsDockArea();
  309. this._panel1_Toolbars_Dock_Area_Top = new Infragistics.Win.UltraWinToolbars.UltraToolbarsDockArea();
  310. this._panel1_Toolbars_Dock_Area_Bottom = new Infragistics.Win.UltraWinToolbars.UltraToolbarsDockArea();
  311. this.ultraGroupBox1 = new Infragistics.Win.Misc.UltraGroupBox();
  312. this.chk_AllowFilter = new Infragistics.Win.UltraWinEditors.UltraCheckEditor();
  313. this.txt_gfmc = new Infragistics.Win.UltraWinEditors.UltraTextEditor();
  314. this.Chk_CKmc = new Infragistics.Win.UltraWinEditors.UltraCheckEditor();
  315. this.txt_gfdm = new Infragistics.Win.UltraWinEditors.UltraTextEditor();
  316. this.Chk_CKDM = new Infragistics.Win.UltraWinEditors.UltraCheckEditor();
  317. this.ultraExpandableGroupBox1 = new Infragistics.Win.Misc.UltraExpandableGroupBox();
  318. this.ultraExpandableGroupBoxPanel1 = new Infragistics.Win.Misc.UltraExpandableGroupBoxPanel();
  319. this.txt_Remark = new Infragistics.Win.UltraWinEditors.UltraTextEditor();
  320. this.ultraLabel75 = new Infragistics.Win.Misc.UltraLabel();
  321. this.ultraLabel1 = new Infragistics.Win.Misc.UltraLabel();
  322. this.txt_MC = new Infragistics.Win.UltraWinEditors.UltraTextEditor();
  323. this.ultraLabel4 = new Infragistics.Win.Misc.UltraLabel();
  324. this.txt_DM = new Infragistics.Win.UltraWinEditors.UltraTextEditor();
  325. this.panel2 = new System.Windows.Forms.Panel();
  326. this.gd_CK = new Infragistics.Win.UltraWinGrid.UltraGrid();
  327. this.excelExporter = new Infragistics.Win.UltraWinGrid.ExcelExport.UltraGridExcelExporter();
  328. this.ultraLabel3 = new Infragistics.Win.Misc.UltraLabel();
  329. this.ultraTextEditor1 = new Infragistics.Win.UltraWinEditors.UltraTextEditor();
  330. this.ultraLabel5 = new Infragistics.Win.Misc.UltraLabel();
  331. this.ultraTextEditor2 = new Infragistics.Win.UltraWinEditors.UltraTextEditor();
  332. this.ultraLabel6 = new Infragistics.Win.Misc.UltraLabel();
  333. this.ultraTextEditor3 = new Infragistics.Win.UltraWinEditors.UltraTextEditor();
  334. this.ultraComboEditor1 = new Infragistics.Win.UltraWinEditors.UltraComboEditor();
  335. this.ultraLabel9 = new Infragistics.Win.Misc.UltraLabel();
  336. this.ultraLabel10 = new Infragistics.Win.Misc.UltraLabel();
  337. this.ultraTextEditor4 = new Infragistics.Win.UltraWinEditors.UltraTextEditor();
  338. this.ultraLabel11 = new Infragistics.Win.Misc.UltraLabel();
  339. this.ultraTextEditor5 = new Infragistics.Win.UltraWinEditors.UltraTextEditor();
  340. this.ultraLabel12 = new Infragistics.Win.Misc.UltraLabel();
  341. this.ultraTextEditor6 = new Infragistics.Win.UltraWinEditors.UltraTextEditor();
  342. this.ultraLabel13 = new Infragistics.Win.Misc.UltraLabel();
  343. this.ultraTextEditor7 = new Infragistics.Win.UltraWinEditors.UltraTextEditor();
  344. this.ultraLabel18 = new Infragistics.Win.Misc.UltraLabel();
  345. this.ultraTextEditor9 = new Infragistics.Win.UltraWinEditors.UltraTextEditor();
  346. this.ultraLabel19 = new Infragistics.Win.Misc.UltraLabel();
  347. this.ultraTextEditor10 = new Infragistics.Win.UltraWinEditors.UltraTextEditor();
  348. this.ultraLabel20 = new Infragistics.Win.Misc.UltraLabel();
  349. this.ultraTextEditor11 = new Infragistics.Win.UltraWinEditors.UltraTextEditor();
  350. this.ultraLabel21 = new Infragistics.Win.Misc.UltraLabel();
  351. this.ultraTextEditor12 = new Infragistics.Win.UltraWinEditors.UltraTextEditor();
  352. this.ultraComboEditor2 = new Infragistics.Win.UltraWinEditors.UltraComboEditor();
  353. this.ultraLabel22 = new Infragistics.Win.Misc.UltraLabel();
  354. this.ultraLabel23 = new Infragistics.Win.Misc.UltraLabel();
  355. this.ultraTextEditor13 = new Infragistics.Win.UltraWinEditors.UltraTextEditor();
  356. this.ultraLabel24 = new Infragistics.Win.Misc.UltraLabel();
  357. this.ultraTextEditor14 = new Infragistics.Win.UltraWinEditors.UltraTextEditor();
  358. this.ultraLabel25 = new Infragistics.Win.Misc.UltraLabel();
  359. this.ultraTextEditor15 = new Infragistics.Win.UltraWinEditors.UltraTextEditor();
  360. this.ultraLabel26 = new Infragistics.Win.Misc.UltraLabel();
  361. this.ultraTextEditor16 = new Infragistics.Win.UltraWinEditors.UltraTextEditor();
  362. this.ultraLabel16 = new Infragistics.Win.Misc.UltraLabel();
  363. this.ultraTextEditor8 = new Infragistics.Win.UltraWinEditors.UltraTextEditor();
  364. this.ultraLabel17 = new Infragistics.Win.Misc.UltraLabel();
  365. this.ultraTextEditor18 = new Infragistics.Win.UltraWinEditors.UltraTextEditor();
  366. this.ultraLabel27 = new Infragistics.Win.Misc.UltraLabel();
  367. this.ultraTextEditor19 = new Infragistics.Win.UltraWinEditors.UltraTextEditor();
  368. this.ultraTextEditor20 = new Infragistics.Win.UltraWinEditors.UltraTextEditor();
  369. this.ultraComboEditor3 = new Infragistics.Win.UltraWinEditors.UltraComboEditor();
  370. this.ultraLabel37 = new Infragistics.Win.Misc.UltraLabel();
  371. this.ultraComboEditor4 = new Infragistics.Win.UltraWinEditors.UltraComboEditor();
  372. this.ultraLabel38 = new Infragistics.Win.Misc.UltraLabel();
  373. this.ultraComboEditor5 = new Infragistics.Win.UltraWinEditors.UltraComboEditor();
  374. this.ultraLabel39 = new Infragistics.Win.Misc.UltraLabel();
  375. this.ultraComboEditor6 = new Infragistics.Win.UltraWinEditors.UltraComboEditor();
  376. this.ultraLabel40 = new Infragistics.Win.Misc.UltraLabel();
  377. this.ultraComboEditor7 = new Infragistics.Win.UltraWinEditors.UltraComboEditor();
  378. this.ultraLabel41 = new Infragistics.Win.Misc.UltraLabel();
  379. this.ultraComboEditor8 = new Infragistics.Win.UltraWinEditors.UltraComboEditor();
  380. this.ultraLabel42 = new Infragistics.Win.Misc.UltraLabel();
  381. this.ultraComboEditor9 = new Infragistics.Win.UltraWinEditors.UltraComboEditor();
  382. this.ultraLabel43 = new Infragistics.Win.Misc.UltraLabel();
  383. this.ultraComboEditor10 = new Infragistics.Win.UltraWinEditors.UltraComboEditor();
  384. this.ultraLabel44 = new Infragistics.Win.Misc.UltraLabel();
  385. this.ultraLabel45 = new Infragistics.Win.Misc.UltraLabel();
  386. this.ultraTextEditor21 = new Infragistics.Win.UltraWinEditors.UltraTextEditor();
  387. this.ultraLabel46 = new Infragistics.Win.Misc.UltraLabel();
  388. this.ultraTextEditor22 = new Infragistics.Win.UltraWinEditors.UltraTextEditor();
  389. this.ultraLabel47 = new Infragistics.Win.Misc.UltraLabel();
  390. this.ultraTextEditor23 = new Infragistics.Win.UltraWinEditors.UltraTextEditor();
  391. this.ultraLabel48 = new Infragistics.Win.Misc.UltraLabel();
  392. this.ultraTextEditor24 = new Infragistics.Win.UltraWinEditors.UltraTextEditor();
  393. this.ultraLabel49 = new Infragistics.Win.Misc.UltraLabel();
  394. this.ultraTextEditor25 = new Infragistics.Win.UltraWinEditors.UltraTextEditor();
  395. this.ultraLabel51 = new Infragistics.Win.Misc.UltraLabel();
  396. this.ultraTextEditor26 = new Infragistics.Win.UltraWinEditors.UltraTextEditor();
  397. this.ultraLabel52 = new Infragistics.Win.Misc.UltraLabel();
  398. this.ultraTextEditor27 = new Infragistics.Win.UltraWinEditors.UltraTextEditor();
  399. this.ultraLabel53 = new Infragistics.Win.Misc.UltraLabel();
  400. this.ultraTextEditor28 = new Infragistics.Win.UltraWinEditors.UltraTextEditor();
  401. this.ultraLabel54 = new Infragistics.Win.Misc.UltraLabel();
  402. this.ultraTextEditor29 = new Infragistics.Win.UltraWinEditors.UltraTextEditor();
  403. this.ultraTextEditor30 = new Infragistics.Win.UltraWinEditors.UltraTextEditor();
  404. this.ultraComboEditor11 = new Infragistics.Win.UltraWinEditors.UltraComboEditor();
  405. this.ultraLabel55 = new Infragistics.Win.Misc.UltraLabel();
  406. this.ultraComboEditor12 = new Infragistics.Win.UltraWinEditors.UltraComboEditor();
  407. this.ultraLabel56 = new Infragistics.Win.Misc.UltraLabel();
  408. this.ultraComboEditor13 = new Infragistics.Win.UltraWinEditors.UltraComboEditor();
  409. this.ultraLabel57 = new Infragistics.Win.Misc.UltraLabel();
  410. this.ultraComboEditor14 = new Infragistics.Win.UltraWinEditors.UltraComboEditor();
  411. this.ultraLabel58 = new Infragistics.Win.Misc.UltraLabel();
  412. this.ultraComboEditor15 = new Infragistics.Win.UltraWinEditors.UltraComboEditor();
  413. this.ultraLabel59 = new Infragistics.Win.Misc.UltraLabel();
  414. this.ultraComboEditor16 = new Infragistics.Win.UltraWinEditors.UltraComboEditor();
  415. this.ultraLabel60 = new Infragistics.Win.Misc.UltraLabel();
  416. this.ultraComboEditor17 = new Infragistics.Win.UltraWinEditors.UltraComboEditor();
  417. this.ultraLabel61 = new Infragistics.Win.Misc.UltraLabel();
  418. this.ultraComboEditor18 = new Infragistics.Win.UltraWinEditors.UltraComboEditor();
  419. this.ultraLabel62 = new Infragistics.Win.Misc.UltraLabel();
  420. this.ultraLabel63 = new Infragistics.Win.Misc.UltraLabel();
  421. this.ultraTextEditor31 = new Infragistics.Win.UltraWinEditors.UltraTextEditor();
  422. this.ultraLabel64 = new Infragistics.Win.Misc.UltraLabel();
  423. this.ultraTextEditor32 = new Infragistics.Win.UltraWinEditors.UltraTextEditor();
  424. this.ultraLabel65 = new Infragistics.Win.Misc.UltraLabel();
  425. this.ultraTextEditor33 = new Infragistics.Win.UltraWinEditors.UltraTextEditor();
  426. this.ultraLabel66 = new Infragistics.Win.Misc.UltraLabel();
  427. this.ultraTextEditor34 = new Infragistics.Win.UltraWinEditors.UltraTextEditor();
  428. this.ultraLabel67 = new Infragistics.Win.Misc.UltraLabel();
  429. this.ultraTextEditor35 = new Infragistics.Win.UltraWinEditors.UltraTextEditor();
  430. this.panel1.SuspendLayout();
  431. ((System.ComponentModel.ISupportInitialize)(this.ultraToolbarsManager1)).BeginInit();
  432. ((System.ComponentModel.ISupportInitialize)(this.ultraGroupBox1)).BeginInit();
  433. this.ultraGroupBox1.SuspendLayout();
  434. ((System.ComponentModel.ISupportInitialize)(this.txt_gfmc)).BeginInit();
  435. ((System.ComponentModel.ISupportInitialize)(this.txt_gfdm)).BeginInit();
  436. ((System.ComponentModel.ISupportInitialize)(this.ultraExpandableGroupBox1)).BeginInit();
  437. this.ultraExpandableGroupBox1.SuspendLayout();
  438. this.ultraExpandableGroupBoxPanel1.SuspendLayout();
  439. ((System.ComponentModel.ISupportInitialize)(this.txt_Remark)).BeginInit();
  440. ((System.ComponentModel.ISupportInitialize)(this.txt_MC)).BeginInit();
  441. ((System.ComponentModel.ISupportInitialize)(this.txt_DM)).BeginInit();
  442. this.panel2.SuspendLayout();
  443. ((System.ComponentModel.ISupportInitialize)(this.gd_CK)).BeginInit();
  444. ((System.ComponentModel.ISupportInitialize)(this.ultraTextEditor1)).BeginInit();
  445. ((System.ComponentModel.ISupportInitialize)(this.ultraTextEditor2)).BeginInit();
  446. ((System.ComponentModel.ISupportInitialize)(this.ultraTextEditor3)).BeginInit();
  447. ((System.ComponentModel.ISupportInitialize)(this.ultraComboEditor1)).BeginInit();
  448. ((System.ComponentModel.ISupportInitialize)(this.ultraTextEditor4)).BeginInit();
  449. ((System.ComponentModel.ISupportInitialize)(this.ultraTextEditor5)).BeginInit();
  450. ((System.ComponentModel.ISupportInitialize)(this.ultraTextEditor6)).BeginInit();
  451. ((System.ComponentModel.ISupportInitialize)(this.ultraTextEditor7)).BeginInit();
  452. ((System.ComponentModel.ISupportInitialize)(this.ultraTextEditor9)).BeginInit();
  453. ((System.ComponentModel.ISupportInitialize)(this.ultraTextEditor10)).BeginInit();
  454. ((System.ComponentModel.ISupportInitialize)(this.ultraTextEditor11)).BeginInit();
  455. ((System.ComponentModel.ISupportInitialize)(this.ultraTextEditor12)).BeginInit();
  456. ((System.ComponentModel.ISupportInitialize)(this.ultraComboEditor2)).BeginInit();
  457. ((System.ComponentModel.ISupportInitialize)(this.ultraTextEditor13)).BeginInit();
  458. ((System.ComponentModel.ISupportInitialize)(this.ultraTextEditor14)).BeginInit();
  459. ((System.ComponentModel.ISupportInitialize)(this.ultraTextEditor15)).BeginInit();
  460. ((System.ComponentModel.ISupportInitialize)(this.ultraTextEditor16)).BeginInit();
  461. ((System.ComponentModel.ISupportInitialize)(this.ultraTextEditor8)).BeginInit();
  462. ((System.ComponentModel.ISupportInitialize)(this.ultraTextEditor18)).BeginInit();
  463. ((System.ComponentModel.ISupportInitialize)(this.ultraTextEditor19)).BeginInit();
  464. ((System.ComponentModel.ISupportInitialize)(this.ultraTextEditor20)).BeginInit();
  465. ((System.ComponentModel.ISupportInitialize)(this.ultraComboEditor3)).BeginInit();
  466. ((System.ComponentModel.ISupportInitialize)(this.ultraComboEditor4)).BeginInit();
  467. ((System.ComponentModel.ISupportInitialize)(this.ultraComboEditor5)).BeginInit();
  468. ((System.ComponentModel.ISupportInitialize)(this.ultraComboEditor6)).BeginInit();
  469. ((System.ComponentModel.ISupportInitialize)(this.ultraComboEditor7)).BeginInit();
  470. ((System.ComponentModel.ISupportInitialize)(this.ultraComboEditor8)).BeginInit();
  471. ((System.ComponentModel.ISupportInitialize)(this.ultraComboEditor9)).BeginInit();
  472. ((System.ComponentModel.ISupportInitialize)(this.ultraComboEditor10)).BeginInit();
  473. ((System.ComponentModel.ISupportInitialize)(this.ultraTextEditor21)).BeginInit();
  474. ((System.ComponentModel.ISupportInitialize)(this.ultraTextEditor22)).BeginInit();
  475. ((System.ComponentModel.ISupportInitialize)(this.ultraTextEditor23)).BeginInit();
  476. ((System.ComponentModel.ISupportInitialize)(this.ultraTextEditor24)).BeginInit();
  477. ((System.ComponentModel.ISupportInitialize)(this.ultraTextEditor25)).BeginInit();
  478. ((System.ComponentModel.ISupportInitialize)(this.ultraTextEditor26)).BeginInit();
  479. ((System.ComponentModel.ISupportInitialize)(this.ultraTextEditor27)).BeginInit();
  480. ((System.ComponentModel.ISupportInitialize)(this.ultraTextEditor28)).BeginInit();
  481. ((System.ComponentModel.ISupportInitialize)(this.ultraTextEditor29)).BeginInit();
  482. ((System.ComponentModel.ISupportInitialize)(this.ultraTextEditor30)).BeginInit();
  483. ((System.ComponentModel.ISupportInitialize)(this.ultraComboEditor11)).BeginInit();
  484. ((System.ComponentModel.ISupportInitialize)(this.ultraComboEditor12)).BeginInit();
  485. ((System.ComponentModel.ISupportInitialize)(this.ultraComboEditor13)).BeginInit();
  486. ((System.ComponentModel.ISupportInitialize)(this.ultraComboEditor14)).BeginInit();
  487. ((System.ComponentModel.ISupportInitialize)(this.ultraComboEditor15)).BeginInit();
  488. ((System.ComponentModel.ISupportInitialize)(this.ultraComboEditor16)).BeginInit();
  489. ((System.ComponentModel.ISupportInitialize)(this.ultraComboEditor17)).BeginInit();
  490. ((System.ComponentModel.ISupportInitialize)(this.ultraComboEditor18)).BeginInit();
  491. ((System.ComponentModel.ISupportInitialize)(this.ultraTextEditor31)).BeginInit();
  492. ((System.ComponentModel.ISupportInitialize)(this.ultraTextEditor32)).BeginInit();
  493. ((System.ComponentModel.ISupportInitialize)(this.ultraTextEditor33)).BeginInit();
  494. ((System.ComponentModel.ISupportInitialize)(this.ultraTextEditor34)).BeginInit();
  495. ((System.ComponentModel.ISupportInitialize)(this.ultraTextEditor35)).BeginInit();
  496. this.SuspendLayout();
  497. //
  498. // panel1
  499. //
  500. this.panel1.Controls.Add(this._panel1_Toolbars_Dock_Area_Left);
  501. this.panel1.Controls.Add(this._panel1_Toolbars_Dock_Area_Right);
  502. this.panel1.Controls.Add(this._panel1_Toolbars_Dock_Area_Top);
  503. this.panel1.Controls.Add(this._panel1_Toolbars_Dock_Area_Bottom);
  504. this.panel1.Dock = System.Windows.Forms.DockStyle.Top;
  505. this.panel1.Location = new System.Drawing.Point(0, 0);
  506. this.panel1.Name = "panel1";
  507. this.panel1.Size = new System.Drawing.Size(1028, 32);
  508. this.panel1.TabIndex = 0;
  509. //
  510. // _panel1_Toolbars_Dock_Area_Left
  511. //
  512. this._panel1_Toolbars_Dock_Area_Left.AccessibleRole = System.Windows.Forms.AccessibleRole.Grouping;
  513. this._panel1_Toolbars_Dock_Area_Left.BackColor = System.Drawing.SystemColors.Control;
  514. this._panel1_Toolbars_Dock_Area_Left.DockedPosition = Infragistics.Win.UltraWinToolbars.DockedPosition.Left;
  515. this._panel1_Toolbars_Dock_Area_Left.ForeColor = System.Drawing.SystemColors.ControlText;
  516. this._panel1_Toolbars_Dock_Area_Left.Location = new System.Drawing.Point(0, 24);
  517. this._panel1_Toolbars_Dock_Area_Left.Name = "_panel1_Toolbars_Dock_Area_Left";
  518. this._panel1_Toolbars_Dock_Area_Left.Size = new System.Drawing.Size(0, 8);
  519. this._panel1_Toolbars_Dock_Area_Left.ToolbarsManager = this.ultraToolbarsManager1;
  520. //
  521. // ultraToolbarsManager1
  522. //
  523. this.ultraToolbarsManager1.DesignerFlags = 1;
  524. this.ultraToolbarsManager1.DockWithinContainer = this.panel1;
  525. this.ultraToolbarsManager1.ShowFullMenusDelay = 500;
  526. this.ultraToolbarsManager1.Style = Infragistics.Win.UltraWinToolbars.ToolbarStyle.Office2000;
  527. ultraToolbar1.DockedColumn = 0;
  528. ultraToolbar1.DockedRow = 0;
  529. ultraToolbar1.Text = "工具栏";
  530. buttonTool1.InstanceProps.IsFirstInGroup = true;
  531. buttonTool4.InstanceProps.IsFirstInGroup = true;
  532. buttonTool5.InstanceProps.IsFirstInGroup = true;
  533. buttonTool6.InstanceProps.IsFirstInGroup = true;
  534. ultraToolbar1.Tools.AddRange(new Infragistics.Win.UltraWinToolbars.ToolBase[] {
  535. buttonTool1,
  536. buttonTool2,
  537. buttonTool3,
  538. buttonTool4,
  539. buttonTool5,
  540. buttonTool6});
  541. this.ultraToolbarsManager1.Toolbars.AddRange(new Infragistics.Win.UltraWinToolbars.UltraToolbar[] {
  542. ultraToolbar1});
  543. this.ultraToolbarsManager1.ToolbarSettings.AllowCustomize = Infragistics.Win.DefaultableBoolean.False;
  544. buttonTool7.SharedProps.Caption = "新增";
  545. buttonTool7.SharedProps.DisplayStyle = Infragistics.Win.UltraWinToolbars.ToolDisplayStyle.ImageAndText;
  546. buttonTool8.SharedProps.Caption = "查询";
  547. buttonTool8.SharedProps.DisplayStyle = Infragistics.Win.UltraWinToolbars.ToolDisplayStyle.ImageAndText;
  548. buttonTool9.SharedProps.Caption = "关闭";
  549. buttonTool9.SharedProps.DisplayStyle = Infragistics.Win.UltraWinToolbars.ToolDisplayStyle.ImageAndText;
  550. buttonTool10.SharedProps.Caption = "导出";
  551. buttonTool10.SharedProps.DisplayStyle = Infragistics.Win.UltraWinToolbars.ToolDisplayStyle.ImageAndText;
  552. buttonTool11.SharedProps.Caption = "修改";
  553. buttonTool11.SharedProps.DisplayStyle = Infragistics.Win.UltraWinToolbars.ToolDisplayStyle.ImageAndText;
  554. buttonTool12.SharedProps.Caption = "删除";
  555. buttonTool12.SharedProps.DisplayStyle = Infragistics.Win.UltraWinToolbars.ToolDisplayStyle.ImageAndText;
  556. this.ultraToolbarsManager1.Tools.AddRange(new Infragistics.Win.UltraWinToolbars.ToolBase[] {
  557. buttonTool7,
  558. buttonTool8,
  559. buttonTool9,
  560. buttonTool10,
  561. buttonTool11,
  562. buttonTool12});
  563. this.ultraToolbarsManager1.ToolClick += new Infragistics.Win.UltraWinToolbars.ToolClickEventHandler(this.ultraToolbarsManager1_ToolClick);
  564. //
  565. // _panel1_Toolbars_Dock_Area_Right
  566. //
  567. this._panel1_Toolbars_Dock_Area_Right.AccessibleRole = System.Windows.Forms.AccessibleRole.Grouping;
  568. this._panel1_Toolbars_Dock_Area_Right.BackColor = System.Drawing.SystemColors.Control;
  569. this._panel1_Toolbars_Dock_Area_Right.DockedPosition = Infragistics.Win.UltraWinToolbars.DockedPosition.Right;
  570. this._panel1_Toolbars_Dock_Area_Right.ForeColor = System.Drawing.SystemColors.ControlText;
  571. this._panel1_Toolbars_Dock_Area_Right.Location = new System.Drawing.Point(1028, 24);
  572. this._panel1_Toolbars_Dock_Area_Right.Name = "_panel1_Toolbars_Dock_Area_Right";
  573. this._panel1_Toolbars_Dock_Area_Right.Size = new System.Drawing.Size(0, 8);
  574. this._panel1_Toolbars_Dock_Area_Right.ToolbarsManager = this.ultraToolbarsManager1;
  575. //
  576. // _panel1_Toolbars_Dock_Area_Top
  577. //
  578. this._panel1_Toolbars_Dock_Area_Top.AccessibleRole = System.Windows.Forms.AccessibleRole.Grouping;
  579. this._panel1_Toolbars_Dock_Area_Top.BackColor = System.Drawing.SystemColors.Control;
  580. this._panel1_Toolbars_Dock_Area_Top.DockedPosition = Infragistics.Win.UltraWinToolbars.DockedPosition.Top;
  581. this._panel1_Toolbars_Dock_Area_Top.ForeColor = System.Drawing.SystemColors.ControlText;
  582. this._panel1_Toolbars_Dock_Area_Top.Location = new System.Drawing.Point(0, 0);
  583. this._panel1_Toolbars_Dock_Area_Top.Name = "_panel1_Toolbars_Dock_Area_Top";
  584. this._panel1_Toolbars_Dock_Area_Top.Size = new System.Drawing.Size(1028, 24);
  585. this._panel1_Toolbars_Dock_Area_Top.ToolbarsManager = this.ultraToolbarsManager1;
  586. //
  587. // _panel1_Toolbars_Dock_Area_Bottom
  588. //
  589. this._panel1_Toolbars_Dock_Area_Bottom.AccessibleRole = System.Windows.Forms.AccessibleRole.Grouping;
  590. this._panel1_Toolbars_Dock_Area_Bottom.BackColor = System.Drawing.SystemColors.Control;
  591. this._panel1_Toolbars_Dock_Area_Bottom.DockedPosition = Infragistics.Win.UltraWinToolbars.DockedPosition.Bottom;
  592. this._panel1_Toolbars_Dock_Area_Bottom.ForeColor = System.Drawing.SystemColors.ControlText;
  593. this._panel1_Toolbars_Dock_Area_Bottom.Location = new System.Drawing.Point(0, 32);
  594. this._panel1_Toolbars_Dock_Area_Bottom.Name = "_panel1_Toolbars_Dock_Area_Bottom";
  595. this._panel1_Toolbars_Dock_Area_Bottom.Size = new System.Drawing.Size(1028, 0);
  596. this._panel1_Toolbars_Dock_Area_Bottom.ToolbarsManager = this.ultraToolbarsManager1;
  597. //
  598. // ultraGroupBox1
  599. //
  600. appearance1.BackColor = System.Drawing.Color.LightCyan;
  601. this.ultraGroupBox1.Appearance = appearance1;
  602. this.ultraGroupBox1.Controls.Add(this.chk_AllowFilter);
  603. this.ultraGroupBox1.Controls.Add(this.txt_gfmc);
  604. this.ultraGroupBox1.Controls.Add(this.Chk_CKmc);
  605. this.ultraGroupBox1.Controls.Add(this.txt_gfdm);
  606. this.ultraGroupBox1.Controls.Add(this.Chk_CKDM);
  607. this.ultraGroupBox1.Dock = System.Windows.Forms.DockStyle.Top;
  608. this.ultraGroupBox1.Location = new System.Drawing.Point(0, 32);
  609. this.ultraGroupBox1.Name = "ultraGroupBox1";
  610. this.ultraGroupBox1.Size = new System.Drawing.Size(1028, 35);
  611. this.ultraGroupBox1.SupportThemes = false;
  612. this.ultraGroupBox1.TabIndex = 1;
  613. //
  614. // chk_AllowFilter
  615. //
  616. this.chk_AllowFilter.Location = new System.Drawing.Point(919, 8);
  617. this.chk_AllowFilter.Name = "chk_AllowFilter";
  618. this.chk_AllowFilter.Size = new System.Drawing.Size(72, 20);
  619. this.chk_AllowFilter.TabIndex = 131;
  620. this.chk_AllowFilter.TabStop = false;
  621. this.chk_AllowFilter.Text = "允许过滤";
  622. this.chk_AllowFilter.CheckedChanged += new System.EventHandler(this.chk_AllowFilter_CheckedChanged);
  623. //
  624. // txt_gfmc
  625. //
  626. appearance2.BackColor = System.Drawing.Color.LightCyan;
  627. this.txt_gfmc.Appearance = appearance2;
  628. this.txt_gfmc.AutoSize = true;
  629. this.txt_gfmc.Enabled = false;
  630. this.txt_gfmc.FlatMode = true;
  631. this.txt_gfmc.Location = new System.Drawing.Point(339, 6);
  632. this.txt_gfmc.Name = "txt_gfmc";
  633. this.txt_gfmc.Size = new System.Drawing.Size(146, 19);
  634. this.txt_gfmc.TabIndex = 111;
  635. this.txt_gfmc.Tag = "";
  636. //
  637. // Chk_CKmc
  638. //
  639. this.Chk_CKmc.FlatMode = true;
  640. this.Chk_CKmc.Location = new System.Drawing.Point(231, 6);
  641. this.Chk_CKmc.Name = "Chk_CKmc";
  642. this.Chk_CKmc.Size = new System.Drawing.Size(102, 18);
  643. this.Chk_CKmc.TabIndex = 110;
  644. this.Chk_CKmc.Text = "物资类别名称";
  645. this.Chk_CKmc.CheckedChanged += new System.EventHandler(this.Chk_CKmc_CheckedChanged);
  646. //
  647. // txt_gfdm
  648. //
  649. appearance3.BackColor = System.Drawing.Color.LightCyan;
  650. this.txt_gfdm.Appearance = appearance3;
  651. this.txt_gfdm.AutoSize = true;
  652. this.txt_gfdm.Enabled = false;
  653. this.txt_gfdm.FlatMode = true;
  654. this.txt_gfdm.Location = new System.Drawing.Point(116, 5);
  655. this.txt_gfdm.Name = "txt_gfdm";
  656. this.txt_gfdm.Size = new System.Drawing.Size(96, 19);
  657. this.txt_gfdm.TabIndex = 109;
  658. this.txt_gfdm.Tag = "";
  659. //
  660. // Chk_CKDM
  661. //
  662. this.Chk_CKDM.FlatMode = true;
  663. this.Chk_CKDM.Location = new System.Drawing.Point(6, 6);
  664. this.Chk_CKDM.Name = "Chk_CKDM";
  665. this.Chk_CKDM.Size = new System.Drawing.Size(104, 16);
  666. this.Chk_CKDM.TabIndex = 108;
  667. this.Chk_CKDM.Text = "物资类别代码";
  668. this.Chk_CKDM.CheckedChanged += new System.EventHandler(this.Chk_CKDM_CheckedChanged);
  669. //
  670. // ultraExpandableGroupBox1
  671. //
  672. this.ultraExpandableGroupBox1.Controls.Add(this.ultraExpandableGroupBoxPanel1);
  673. this.ultraExpandableGroupBox1.Dock = System.Windows.Forms.DockStyle.Bottom;
  674. this.ultraExpandableGroupBox1.ExpandedSize = new System.Drawing.Size(200, 185);
  675. this.ultraExpandableGroupBox1.Location = new System.Drawing.Point(0, 440);
  676. this.ultraExpandableGroupBox1.Name = "ultraExpandableGroupBox1";
  677. this.ultraExpandableGroupBox1.Size = new System.Drawing.Size(1028, 78);
  678. this.ultraExpandableGroupBox1.SupportThemes = false;
  679. this.ultraExpandableGroupBox1.TabIndex = 4;
  680. this.ultraExpandableGroupBox1.Text = "仓库详情";
  681. this.ultraExpandableGroupBox1.ViewStyle = Infragistics.Win.Misc.GroupBoxViewStyle.VisualStudio2005;
  682. //
  683. // ultraExpandableGroupBoxPanel1
  684. //
  685. this.ultraExpandableGroupBoxPanel1.Controls.Add(this.txt_Remark);
  686. this.ultraExpandableGroupBoxPanel1.Controls.Add(this.ultraLabel75);
  687. this.ultraExpandableGroupBoxPanel1.Controls.Add(this.ultraLabel1);
  688. this.ultraExpandableGroupBoxPanel1.Controls.Add(this.txt_MC);
  689. this.ultraExpandableGroupBoxPanel1.Controls.Add(this.ultraLabel4);
  690. this.ultraExpandableGroupBoxPanel1.Controls.Add(this.txt_DM);
  691. this.ultraExpandableGroupBoxPanel1.Dock = System.Windows.Forms.DockStyle.Fill;
  692. this.ultraExpandableGroupBoxPanel1.Location = new System.Drawing.Point(2, 20);
  693. this.ultraExpandableGroupBoxPanel1.Name = "ultraExpandableGroupBoxPanel1";
  694. this.ultraExpandableGroupBoxPanel1.Size = new System.Drawing.Size(1024, 56);
  695. this.ultraExpandableGroupBoxPanel1.TabIndex = 0;
  696. //
  697. // txt_Remark
  698. //
  699. appearance4.BackColor = System.Drawing.Color.LightCyan;
  700. this.txt_Remark.Appearance = appearance4;
  701. this.txt_Remark.AutoSize = true;
  702. this.txt_Remark.FlatMode = true;
  703. this.txt_Remark.Location = new System.Drawing.Point(381, -1);
  704. this.txt_Remark.Multiline = true;
  705. this.txt_Remark.Name = "txt_Remark";
  706. this.txt_Remark.Size = new System.Drawing.Size(357, 49);
  707. this.txt_Remark.TabIndex = 440;
  708. this.txt_Remark.Tag = "";
  709. //
  710. // ultraLabel75
  711. //
  712. this.ultraLabel75.BackColor = System.Drawing.Color.Transparent;
  713. this.ultraLabel75.Location = new System.Drawing.Point(337, 2);
  714. this.ultraLabel75.Name = "ultraLabel75";
  715. this.ultraLabel75.Size = new System.Drawing.Size(89, 20);
  716. this.ultraLabel75.TabIndex = 436;
  717. this.ultraLabel75.Text = "备注";
  718. //
  719. // ultraLabel1
  720. //
  721. this.ultraLabel1.BackColor = System.Drawing.Color.Transparent;
  722. this.ultraLabel1.Location = new System.Drawing.Point(3, 31);
  723. this.ultraLabel1.Name = "ultraLabel1";
  724. this.ultraLabel1.Size = new System.Drawing.Size(86, 15);
  725. this.ultraLabel1.TabIndex = 363;
  726. this.ultraLabel1.Text = "物资类别名称";
  727. //
  728. // txt_MC
  729. //
  730. appearance5.BackColor = System.Drawing.Color.LightCyan;
  731. this.txt_MC.Appearance = appearance5;
  732. this.txt_MC.AutoSize = true;
  733. this.txt_MC.FlatMode = true;
  734. this.txt_MC.Location = new System.Drawing.Point(95, 27);
  735. this.txt_MC.Multiline = true;
  736. this.txt_MC.Name = "txt_MC";
  737. this.txt_MC.Size = new System.Drawing.Size(181, 19);
  738. this.txt_MC.TabIndex = 362;
  739. this.txt_MC.Tag = "";
  740. this.txt_MC.Enter += new System.EventHandler(this.txt_DM_Enter);
  741. this.txt_MC.KeyDown += new System.Windows.Forms.KeyEventHandler(this.txt_DM_KeyDown);
  742. //
  743. // ultraLabel4
  744. //
  745. this.ultraLabel4.BackColor = System.Drawing.Color.Transparent;
  746. this.ultraLabel4.Location = new System.Drawing.Point(3, 8);
  747. this.ultraLabel4.Name = "ultraLabel4";
  748. this.ultraLabel4.Size = new System.Drawing.Size(86, 17);
  749. this.ultraLabel4.TabIndex = 361;
  750. this.ultraLabel4.Text = "物资类别代码";
  751. //
  752. // txt_DM
  753. //
  754. appearance6.BackColor = System.Drawing.Color.LightCyan;
  755. this.txt_DM.Appearance = appearance6;
  756. this.txt_DM.AutoSize = true;
  757. this.txt_DM.FlatMode = true;
  758. this.txt_DM.Location = new System.Drawing.Point(95, 2);
  759. this.txt_DM.Name = "txt_DM";
  760. this.txt_DM.Size = new System.Drawing.Size(181, 19);
  761. this.txt_DM.TabIndex = 358;
  762. this.txt_DM.Tag = "";
  763. this.txt_DM.Enter += new System.EventHandler(this.txt_DM_Enter);
  764. this.txt_DM.KeyDown += new System.Windows.Forms.KeyEventHandler(this.txt_DM_KeyDown);
  765. //
  766. // panel2
  767. //
  768. this.panel2.Controls.Add(this.gd_CK);
  769. this.panel2.Dock = System.Windows.Forms.DockStyle.Fill;
  770. this.panel2.Location = new System.Drawing.Point(0, 67);
  771. this.panel2.Name = "panel2";
  772. this.panel2.Size = new System.Drawing.Size(1028, 373);
  773. this.panel2.TabIndex = 5;
  774. //
  775. // gd_CK
  776. //
  777. appearance7.BackColor = System.Drawing.Color.Ivory;
  778. this.gd_CK.DisplayLayout.Appearance = appearance7;
  779. ultraGridColumn1.Header.Caption = "物资类别代码";
  780. ultraGridColumn1.Header.VisiblePosition = 0;
  781. ultraGridColumn1.RowLayoutColumnInfo.OriginX = 0;
  782. ultraGridColumn1.RowLayoutColumnInfo.OriginY = 0;
  783. ultraGridColumn1.RowLayoutColumnInfo.SpanX = 1;
  784. ultraGridColumn1.RowLayoutColumnInfo.SpanY = 1;
  785. ultraGridColumn2.Header.Caption = "物资类别名称";
  786. ultraGridColumn2.Header.VisiblePosition = 1;
  787. ultraGridColumn2.RowLayoutColumnInfo.OriginX = 1;
  788. ultraGridColumn2.RowLayoutColumnInfo.OriginY = 0;
  789. ultraGridColumn2.RowLayoutColumnInfo.SpanX = 1;
  790. ultraGridColumn2.RowLayoutColumnInfo.SpanY = 1;
  791. ultraGridColumn3.Header.Caption = "备注";
  792. ultraGridColumn3.Header.VisiblePosition = 3;
  793. ultraGridColumn3.RowLayoutColumnInfo.OriginX = 4;
  794. ultraGridColumn3.RowLayoutColumnInfo.OriginY = 0;
  795. ultraGridColumn3.RowLayoutColumnInfo.PreferredCellSize = new System.Drawing.Size(230, 0);
  796. ultraGridColumn3.RowLayoutColumnInfo.SpanX = 1;
  797. ultraGridColumn3.RowLayoutColumnInfo.SpanY = 1;
  798. ultraGridColumn4.Header.Caption = "操作人员";
  799. ultraGridColumn4.Header.VisiblePosition = 4;
  800. ultraGridColumn4.RowLayoutColumnInfo.OriginX = 3;
  801. ultraGridColumn4.RowLayoutColumnInfo.OriginY = 0;
  802. ultraGridColumn4.RowLayoutColumnInfo.SpanX = 1;
  803. ultraGridColumn4.RowLayoutColumnInfo.SpanY = 1;
  804. ultraGridColumn5.Header.Caption = "操作时间";
  805. ultraGridColumn5.Header.VisiblePosition = 2;
  806. ultraGridColumn5.RowLayoutColumnInfo.OriginX = 2;
  807. ultraGridColumn5.RowLayoutColumnInfo.OriginY = 0;
  808. ultraGridColumn5.RowLayoutColumnInfo.SpanX = 1;
  809. ultraGridColumn5.RowLayoutColumnInfo.SpanY = 1;
  810. ultraGridBand1.Columns.AddRange(new object[] {
  811. ultraGridColumn1,
  812. ultraGridColumn2,
  813. ultraGridColumn3,
  814. ultraGridColumn4,
  815. ultraGridColumn5});
  816. ultraGridBand1.UseRowLayout = true;
  817. this.gd_CK.DisplayLayout.BandsSerializer.Add(ultraGridBand1);
  818. this.gd_CK.DisplayLayout.CaptionVisible = Infragistics.Win.DefaultableBoolean.False;
  819. this.gd_CK.DisplayLayout.GroupByBox.Hidden = true;
  820. this.gd_CK.DisplayLayout.GroupByBox.Prompt = " 将要分组的列拖至该区域!";
  821. appearance8.BorderColor = System.Drawing.Color.Black;
  822. appearance8.TextVAlign = Infragistics.Win.VAlign.Middle;
  823. this.gd_CK.DisplayLayout.Override.CellAppearance = appearance8;
  824. this.gd_CK.DisplayLayout.Override.CellClickAction = Infragistics.Win.UltraWinGrid.CellClickAction.RowSelect;
  825. this.gd_CK.DisplayLayout.Override.CellPadding = 0;
  826. appearance9.BackColor = System.Drawing.SystemColors.Control;
  827. appearance9.BackColor2 = System.Drawing.SystemColors.ControlDark;
  828. appearance9.BackGradientAlignment = Infragistics.Win.GradientAlignment.Element;
  829. appearance9.BackGradientStyle = Infragistics.Win.GradientStyle.Horizontal;
  830. appearance9.BorderColor = System.Drawing.SystemColors.Window;
  831. appearance9.TextHAlign = Infragistics.Win.HAlign.Left;
  832. appearance9.TextVAlign = Infragistics.Win.VAlign.Middle;
  833. this.gd_CK.DisplayLayout.Override.GroupByRowAppearance = appearance9;
  834. this.gd_CK.DisplayLayout.Override.GroupByRowDescriptionMask = "[caption]:[value] ([count]条记录)";
  835. this.gd_CK.DisplayLayout.Override.GroupBySummaryDisplayStyle = Infragistics.Win.UltraWinGrid.GroupBySummaryDisplayStyle.SummaryCells;
  836. appearance10.BackColor = System.Drawing.Color.LightSteelBlue;
  837. this.gd_CK.DisplayLayout.Override.HeaderAppearance = appearance10;
  838. this.gd_CK.DisplayLayout.Override.HeaderClickAction = Infragistics.Win.UltraWinGrid.HeaderClickAction.SortSingle;
  839. this.gd_CK.DisplayLayout.Override.HeaderStyle = Infragistics.Win.HeaderStyle.Standard;
  840. appearance11.BackColor = System.Drawing.SystemColors.Window;
  841. appearance11.BorderColor = System.Drawing.Color.Black;
  842. appearance11.TextVAlign = Infragistics.Win.VAlign.Middle;
  843. this.gd_CK.DisplayLayout.Override.RowAppearance = appearance11;
  844. appearance12.BackColor = System.Drawing.SystemColors.Window;
  845. appearance12.BorderColor = System.Drawing.Color.Black;
  846. appearance12.TextVAlign = Infragistics.Win.VAlign.Middle;
  847. this.gd_CK.DisplayLayout.Override.RowPreviewAppearance = appearance12;
  848. this.gd_CK.DisplayLayout.Override.RowSelectorHeaderStyle = Infragistics.Win.UltraWinGrid.RowSelectorHeaderStyle.SeparateElement;
  849. this.gd_CK.DisplayLayout.Override.RowSelectorNumberStyle = Infragistics.Win.UltraWinGrid.RowSelectorNumberStyle.RowIndex;
  850. this.gd_CK.DisplayLayout.Override.RowSelectors = Infragistics.Win.DefaultableBoolean.True;
  851. appearance13.TextHAlign = Infragistics.Win.HAlign.Left;
  852. appearance13.TextVAlign = Infragistics.Win.VAlign.Middle;
  853. this.gd_CK.DisplayLayout.Override.SelectedRowAppearance = appearance13;
  854. this.gd_CK.DisplayLayout.Override.SummaryDisplayArea = Infragistics.Win.UltraWinGrid.SummaryDisplayAreas.BottomFixed;
  855. appearance14.BackColor = System.Drawing.SystemColors.Window;
  856. this.gd_CK.DisplayLayout.Override.SummaryFooterAppearance = appearance14;
  857. appearance15.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(255)))), ((int)(((byte)(255)))), ((int)(((byte)(192)))));
  858. appearance15.ForeColor = System.Drawing.Color.Red;
  859. this.gd_CK.DisplayLayout.Override.SummaryFooterCaptionAppearance = appearance15;
  860. this.gd_CK.DisplayLayout.Override.SummaryFooterCaptionVisible = Infragistics.Win.DefaultableBoolean.False;
  861. appearance16.BackColor = System.Drawing.Color.MistyRose;
  862. appearance16.ForeColor = System.Drawing.Color.Blue;
  863. appearance16.TextHAlign = Infragistics.Win.HAlign.Right;
  864. appearance16.TextVAlign = Infragistics.Win.VAlign.Middle;
  865. this.gd_CK.DisplayLayout.Override.SummaryValueAppearance = appearance16;
  866. appearance17.BackColor = System.Drawing.SystemColors.ControlLight;
  867. this.gd_CK.DisplayLayout.Override.TemplateAddRowAppearance = appearance17;
  868. this.gd_CK.DisplayLayout.ScrollBounds = Infragistics.Win.UltraWinGrid.ScrollBounds.ScrollToFill;
  869. this.gd_CK.DisplayLayout.ScrollStyle = Infragistics.Win.UltraWinGrid.ScrollStyle.Immediate;
  870. this.gd_CK.DisplayLayout.ViewStyleBand = Infragistics.Win.UltraWinGrid.ViewStyleBand.OutlookGroupBy;
  871. this.gd_CK.Dock = System.Windows.Forms.DockStyle.Fill;
  872. this.gd_CK.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  873. this.gd_CK.Location = new System.Drawing.Point(0, 0);
  874. this.gd_CK.Name = "gd_CK";
  875. this.gd_CK.Size = new System.Drawing.Size(1028, 373);
  876. this.gd_CK.TabIndex = 1;
  877. this.gd_CK.Text = "原料垛位信息";
  878. this.gd_CK.AfterRowActivate += new System.EventHandler(this.gd_CK_AfterRowActivate);
  879. //
  880. // ultraLabel3
  881. //
  882. this.ultraLabel3.BackColor = System.Drawing.Color.Transparent;
  883. this.ultraLabel3.Location = new System.Drawing.Point(3, 55);
  884. this.ultraLabel3.Name = "ultraLabel3";
  885. this.ultraLabel3.Size = new System.Drawing.Size(56, 16);
  886. this.ultraLabel3.TabIndex = 365;
  887. this.ultraLabel3.Text = "规格型号";
  888. //
  889. // ultraTextEditor1
  890. //
  891. appearance18.BackColor = System.Drawing.Color.LightCyan;
  892. this.ultraTextEditor1.Appearance = appearance18;
  893. this.ultraTextEditor1.AutoSize = true;
  894. this.ultraTextEditor1.Enabled = false;
  895. this.ultraTextEditor1.FlatMode = true;
  896. this.ultraTextEditor1.Location = new System.Drawing.Point(60, 52);
  897. this.ultraTextEditor1.Multiline = true;
  898. this.ultraTextEditor1.Name = "ultraTextEditor1";
  899. this.ultraTextEditor1.Size = new System.Drawing.Size(191, 19);
  900. this.ultraTextEditor1.TabIndex = 364;
  901. this.ultraTextEditor1.Tag = "";
  902. //
  903. // ultraLabel5
  904. //
  905. this.ultraLabel5.BackColor = System.Drawing.Color.Transparent;
  906. this.ultraLabel5.Location = new System.Drawing.Point(3, 31);
  907. this.ultraLabel5.Name = "ultraLabel5";
  908. this.ultraLabel5.Size = new System.Drawing.Size(56, 16);
  909. this.ultraLabel5.TabIndex = 363;
  910. this.ultraLabel5.Text = "物资名称";
  911. //
  912. // ultraTextEditor2
  913. //
  914. appearance19.BackColor = System.Drawing.Color.LightCyan;
  915. this.ultraTextEditor2.Appearance = appearance19;
  916. this.ultraTextEditor2.AutoSize = true;
  917. this.ultraTextEditor2.Enabled = false;
  918. this.ultraTextEditor2.FlatMode = true;
  919. this.ultraTextEditor2.Location = new System.Drawing.Point(60, 28);
  920. this.ultraTextEditor2.Multiline = true;
  921. this.ultraTextEditor2.Name = "ultraTextEditor2";
  922. this.ultraTextEditor2.Size = new System.Drawing.Size(191, 19);
  923. this.ultraTextEditor2.TabIndex = 362;
  924. this.ultraTextEditor2.Tag = "";
  925. //
  926. // ultraLabel6
  927. //
  928. this.ultraLabel6.BackColor = System.Drawing.Color.Transparent;
  929. this.ultraLabel6.Location = new System.Drawing.Point(3, 8);
  930. this.ultraLabel6.Name = "ultraLabel6";
  931. this.ultraLabel6.Size = new System.Drawing.Size(56, 16);
  932. this.ultraLabel6.TabIndex = 361;
  933. this.ultraLabel6.Text = "物资代码";
  934. //
  935. // ultraTextEditor3
  936. //
  937. appearance20.BackColor = System.Drawing.Color.LightCyan;
  938. this.ultraTextEditor3.Appearance = appearance20;
  939. this.ultraTextEditor3.AutoSize = true;
  940. this.ultraTextEditor3.Enabled = false;
  941. this.ultraTextEditor3.FlatMode = true;
  942. this.ultraTextEditor3.Location = new System.Drawing.Point(60, 5);
  943. this.ultraTextEditor3.Name = "ultraTextEditor3";
  944. this.ultraTextEditor3.Size = new System.Drawing.Size(84, 19);
  945. this.ultraTextEditor3.TabIndex = 358;
  946. this.ultraTextEditor3.Tag = "";
  947. //
  948. // ultraComboEditor1
  949. //
  950. appearance21.BackColor = System.Drawing.Color.LightCyan;
  951. this.ultraComboEditor1.Appearance = appearance21;
  952. this.ultraComboEditor1.AutoSize = true;
  953. valueListItem1.DataValue = "0";
  954. valueListItem2.DataValue = "A";
  955. valueListItem2.DisplayText = "A";
  956. valueListItem3.DataValue = "B";
  957. valueListItem3.DisplayText = "B";
  958. valueListItem4.DataValue = "C";
  959. valueListItem4.DisplayText = "C";
  960. this.ultraComboEditor1.Items.Add(valueListItem1);
  961. this.ultraComboEditor1.Items.Add(valueListItem2);
  962. this.ultraComboEditor1.Items.Add(valueListItem3);
  963. this.ultraComboEditor1.Items.Add(valueListItem4);
  964. this.ultraComboEditor1.Location = new System.Drawing.Point(340, 5);
  965. this.ultraComboEditor1.Name = "ultraComboEditor1";
  966. this.ultraComboEditor1.Size = new System.Drawing.Size(86, 21);
  967. this.ultraComboEditor1.TabIndex = 369;
  968. //
  969. // ultraLabel9
  970. //
  971. this.ultraLabel9.BackColor = System.Drawing.Color.Transparent;
  972. this.ultraLabel9.Location = new System.Drawing.Point(289, 8);
  973. this.ultraLabel9.Name = "ultraLabel9";
  974. this.ultraLabel9.Size = new System.Drawing.Size(56, 16);
  975. this.ultraLabel9.TabIndex = 368;
  976. this.ultraLabel9.Text = "物资类别";
  977. //
  978. // ultraLabel10
  979. //
  980. this.ultraLabel10.BackColor = System.Drawing.Color.Transparent;
  981. this.ultraLabel10.Location = new System.Drawing.Point(3, 77);
  982. this.ultraLabel10.Name = "ultraLabel10";
  983. this.ultraLabel10.Size = new System.Drawing.Size(56, 16);
  984. this.ultraLabel10.TabIndex = 367;
  985. this.ultraLabel10.Text = "材质";
  986. //
  987. // ultraTextEditor4
  988. //
  989. appearance22.BackColor = System.Drawing.Color.LightCyan;
  990. this.ultraTextEditor4.Appearance = appearance22;
  991. this.ultraTextEditor4.AutoSize = true;
  992. this.ultraTextEditor4.Enabled = false;
  993. this.ultraTextEditor4.FlatMode = true;
  994. this.ultraTextEditor4.Location = new System.Drawing.Point(60, 74);
  995. this.ultraTextEditor4.Multiline = true;
  996. this.ultraTextEditor4.Name = "ultraTextEditor4";
  997. this.ultraTextEditor4.Size = new System.Drawing.Size(191, 19);
  998. this.ultraTextEditor4.TabIndex = 366;
  999. this.ultraTextEditor4.Tag = "";
  1000. //
  1001. // ultraLabel11
  1002. //
  1003. this.ultraLabel11.BackColor = System.Drawing.Color.Transparent;
  1004. this.ultraLabel11.Location = new System.Drawing.Point(3, 55);
  1005. this.ultraLabel11.Name = "ultraLabel11";
  1006. this.ultraLabel11.Size = new System.Drawing.Size(56, 16);
  1007. this.ultraLabel11.TabIndex = 365;
  1008. this.ultraLabel11.Text = "规格型号";
  1009. //
  1010. // ultraTextEditor5
  1011. //
  1012. appearance23.BackColor = System.Drawing.Color.LightCyan;
  1013. this.ultraTextEditor5.Appearance = appearance23;
  1014. this.ultraTextEditor5.AutoSize = true;
  1015. this.ultraTextEditor5.Enabled = false;
  1016. this.ultraTextEditor5.FlatMode = true;
  1017. this.ultraTextEditor5.Location = new System.Drawing.Point(60, 52);
  1018. this.ultraTextEditor5.Multiline = true;
  1019. this.ultraTextEditor5.Name = "ultraTextEditor5";
  1020. this.ultraTextEditor5.Size = new System.Drawing.Size(191, 19);
  1021. this.ultraTextEditor5.TabIndex = 364;
  1022. this.ultraTextEditor5.Tag = "";
  1023. //
  1024. // ultraLabel12
  1025. //
  1026. this.ultraLabel12.BackColor = System.Drawing.Color.Transparent;
  1027. this.ultraLabel12.Location = new System.Drawing.Point(3, 31);
  1028. this.ultraLabel12.Name = "ultraLabel12";
  1029. this.ultraLabel12.Size = new System.Drawing.Size(56, 16);
  1030. this.ultraLabel12.TabIndex = 363;
  1031. this.ultraLabel12.Text = "物资名称";
  1032. //
  1033. // ultraTextEditor6
  1034. //
  1035. appearance24.BackColor = System.Drawing.Color.LightCyan;
  1036. this.ultraTextEditor6.Appearance = appearance24;
  1037. this.ultraTextEditor6.AutoSize = true;
  1038. this.ultraTextEditor6.Enabled = false;
  1039. this.ultraTextEditor6.FlatMode = true;
  1040. this.ultraTextEditor6.Location = new System.Drawing.Point(60, 28);
  1041. this.ultraTextEditor6.Multiline = true;
  1042. this.ultraTextEditor6.Name = "ultraTextEditor6";
  1043. this.ultraTextEditor6.Size = new System.Drawing.Size(191, 19);
  1044. this.ultraTextEditor6.TabIndex = 362;
  1045. this.ultraTextEditor6.Tag = "";
  1046. //
  1047. // ultraLabel13
  1048. //
  1049. this.ultraLabel13.BackColor = System.Drawing.Color.Transparent;
  1050. this.ultraLabel13.Location = new System.Drawing.Point(3, 8);
  1051. this.ultraLabel13.Name = "ultraLabel13";
  1052. this.ultraLabel13.Size = new System.Drawing.Size(56, 16);
  1053. this.ultraLabel13.TabIndex = 361;
  1054. this.ultraLabel13.Text = "物资代码";
  1055. //
  1056. // ultraTextEditor7
  1057. //
  1058. appearance25.BackColor = System.Drawing.Color.LightCyan;
  1059. this.ultraTextEditor7.Appearance = appearance25;
  1060. this.ultraTextEditor7.AutoSize = true;
  1061. this.ultraTextEditor7.Enabled = false;
  1062. this.ultraTextEditor7.FlatMode = true;
  1063. this.ultraTextEditor7.Location = new System.Drawing.Point(60, 5);
  1064. this.ultraTextEditor7.Name = "ultraTextEditor7";
  1065. this.ultraTextEditor7.Size = new System.Drawing.Size(84, 19);
  1066. this.ultraTextEditor7.TabIndex = 358;
  1067. this.ultraTextEditor7.Tag = "";
  1068. //
  1069. // ultraLabel18
  1070. //
  1071. this.ultraLabel18.BackColor = System.Drawing.Color.Transparent;
  1072. this.ultraLabel18.Location = new System.Drawing.Point(3, 99);
  1073. this.ultraLabel18.Name = "ultraLabel18";
  1074. this.ultraLabel18.Size = new System.Drawing.Size(56, 16);
  1075. this.ultraLabel18.TabIndex = 377;
  1076. this.ultraLabel18.Text = "最高限价";
  1077. //
  1078. // ultraTextEditor9
  1079. //
  1080. appearance26.BackColor = System.Drawing.Color.LightCyan;
  1081. this.ultraTextEditor9.Appearance = appearance26;
  1082. this.ultraTextEditor9.AutoSize = true;
  1083. this.ultraTextEditor9.Enabled = false;
  1084. this.ultraTextEditor9.FlatMode = true;
  1085. this.ultraTextEditor9.Location = new System.Drawing.Point(60, 96);
  1086. this.ultraTextEditor9.Name = "ultraTextEditor9";
  1087. this.ultraTextEditor9.Size = new System.Drawing.Size(84, 19);
  1088. this.ultraTextEditor9.TabIndex = 376;
  1089. this.ultraTextEditor9.Tag = "";
  1090. //
  1091. // ultraLabel19
  1092. //
  1093. this.ultraLabel19.BackColor = System.Drawing.Color.Transparent;
  1094. this.ultraLabel19.Location = new System.Drawing.Point(289, 77);
  1095. this.ultraLabel19.Name = "ultraLabel19";
  1096. this.ultraLabel19.Size = new System.Drawing.Size(56, 16);
  1097. this.ultraLabel19.TabIndex = 375;
  1098. this.ultraLabel19.Text = "最高限价";
  1099. //
  1100. // ultraTextEditor10
  1101. //
  1102. appearance27.BackColor = System.Drawing.Color.LightCyan;
  1103. this.ultraTextEditor10.Appearance = appearance27;
  1104. this.ultraTextEditor10.AutoSize = true;
  1105. this.ultraTextEditor10.Enabled = false;
  1106. this.ultraTextEditor10.FlatMode = true;
  1107. this.ultraTextEditor10.Location = new System.Drawing.Point(346, 74);
  1108. this.ultraTextEditor10.Name = "ultraTextEditor10";
  1109. this.ultraTextEditor10.Size = new System.Drawing.Size(84, 19);
  1110. this.ultraTextEditor10.TabIndex = 374;
  1111. this.ultraTextEditor10.Tag = "";
  1112. //
  1113. // ultraLabel20
  1114. //
  1115. this.ultraLabel20.BackColor = System.Drawing.Color.Transparent;
  1116. this.ultraLabel20.Location = new System.Drawing.Point(289, 55);
  1117. this.ultraLabel20.Name = "ultraLabel20";
  1118. this.ultraLabel20.Size = new System.Drawing.Size(56, 16);
  1119. this.ultraLabel20.TabIndex = 373;
  1120. this.ultraLabel20.Text = "预估价";
  1121. //
  1122. // ultraTextEditor11
  1123. //
  1124. appearance28.BackColor = System.Drawing.Color.LightCyan;
  1125. this.ultraTextEditor11.Appearance = appearance28;
  1126. this.ultraTextEditor11.AutoSize = true;
  1127. this.ultraTextEditor11.Enabled = false;
  1128. this.ultraTextEditor11.FlatMode = true;
  1129. this.ultraTextEditor11.Location = new System.Drawing.Point(346, 52);
  1130. this.ultraTextEditor11.Name = "ultraTextEditor11";
  1131. this.ultraTextEditor11.Size = new System.Drawing.Size(84, 19);
  1132. this.ultraTextEditor11.TabIndex = 372;
  1133. this.ultraTextEditor11.Tag = "";
  1134. //
  1135. // ultraLabel21
  1136. //
  1137. this.ultraLabel21.BackColor = System.Drawing.Color.Transparent;
  1138. this.ultraLabel21.Location = new System.Drawing.Point(289, 33);
  1139. this.ultraLabel21.Name = "ultraLabel21";
  1140. this.ultraLabel21.Size = new System.Drawing.Size(56, 16);
  1141. this.ultraLabel21.TabIndex = 371;
  1142. this.ultraLabel21.Text = "计划价";
  1143. //
  1144. // ultraTextEditor12
  1145. //
  1146. appearance29.BackColor = System.Drawing.Color.LightCyan;
  1147. this.ultraTextEditor12.Appearance = appearance29;
  1148. this.ultraTextEditor12.AutoSize = true;
  1149. this.ultraTextEditor12.Enabled = false;
  1150. this.ultraTextEditor12.FlatMode = true;
  1151. this.ultraTextEditor12.Location = new System.Drawing.Point(346, 30);
  1152. this.ultraTextEditor12.Name = "ultraTextEditor12";
  1153. this.ultraTextEditor12.Size = new System.Drawing.Size(84, 19);
  1154. this.ultraTextEditor12.TabIndex = 370;
  1155. this.ultraTextEditor12.Tag = "";
  1156. //
  1157. // ultraComboEditor2
  1158. //
  1159. appearance30.BackColor = System.Drawing.Color.LightCyan;
  1160. this.ultraComboEditor2.Appearance = appearance30;
  1161. this.ultraComboEditor2.AutoSize = true;
  1162. valueListItem5.DataValue = "0";
  1163. valueListItem6.DataValue = "A";
  1164. valueListItem6.DisplayText = "A";
  1165. valueListItem7.DataValue = "B";
  1166. valueListItem7.DisplayText = "B";
  1167. valueListItem8.DataValue = "C";
  1168. valueListItem8.DisplayText = "C";
  1169. this.ultraComboEditor2.Items.Add(valueListItem5);
  1170. this.ultraComboEditor2.Items.Add(valueListItem6);
  1171. this.ultraComboEditor2.Items.Add(valueListItem7);
  1172. this.ultraComboEditor2.Items.Add(valueListItem8);
  1173. this.ultraComboEditor2.Location = new System.Drawing.Point(346, 5);
  1174. this.ultraComboEditor2.Name = "ultraComboEditor2";
  1175. this.ultraComboEditor2.Size = new System.Drawing.Size(86, 21);
  1176. this.ultraComboEditor2.TabIndex = 369;
  1177. //
  1178. // ultraLabel22
  1179. //
  1180. this.ultraLabel22.BackColor = System.Drawing.Color.Transparent;
  1181. this.ultraLabel22.Location = new System.Drawing.Point(289, 8);
  1182. this.ultraLabel22.Name = "ultraLabel22";
  1183. this.ultraLabel22.Size = new System.Drawing.Size(56, 16);
  1184. this.ultraLabel22.TabIndex = 368;
  1185. this.ultraLabel22.Text = "物资类别";
  1186. //
  1187. // ultraLabel23
  1188. //
  1189. this.ultraLabel23.BackColor = System.Drawing.Color.Transparent;
  1190. this.ultraLabel23.Location = new System.Drawing.Point(3, 77);
  1191. this.ultraLabel23.Name = "ultraLabel23";
  1192. this.ultraLabel23.Size = new System.Drawing.Size(56, 16);
  1193. this.ultraLabel23.TabIndex = 367;
  1194. this.ultraLabel23.Text = "材质";
  1195. //
  1196. // ultraTextEditor13
  1197. //
  1198. appearance31.BackColor = System.Drawing.Color.LightCyan;
  1199. this.ultraTextEditor13.Appearance = appearance31;
  1200. this.ultraTextEditor13.AutoSize = true;
  1201. this.ultraTextEditor13.Enabled = false;
  1202. this.ultraTextEditor13.FlatMode = true;
  1203. this.ultraTextEditor13.Location = new System.Drawing.Point(60, 74);
  1204. this.ultraTextEditor13.Multiline = true;
  1205. this.ultraTextEditor13.Name = "ultraTextEditor13";
  1206. this.ultraTextEditor13.Size = new System.Drawing.Size(191, 19);
  1207. this.ultraTextEditor13.TabIndex = 366;
  1208. this.ultraTextEditor13.Tag = "";
  1209. //
  1210. // ultraLabel24
  1211. //
  1212. this.ultraLabel24.BackColor = System.Drawing.Color.Transparent;
  1213. this.ultraLabel24.Location = new System.Drawing.Point(3, 55);
  1214. this.ultraLabel24.Name = "ultraLabel24";
  1215. this.ultraLabel24.Size = new System.Drawing.Size(56, 16);
  1216. this.ultraLabel24.TabIndex = 365;
  1217. this.ultraLabel24.Text = "规格型号";
  1218. //
  1219. // ultraTextEditor14
  1220. //
  1221. appearance32.BackColor = System.Drawing.Color.LightCyan;
  1222. this.ultraTextEditor14.Appearance = appearance32;
  1223. this.ultraTextEditor14.AutoSize = true;
  1224. this.ultraTextEditor14.Enabled = false;
  1225. this.ultraTextEditor14.FlatMode = true;
  1226. this.ultraTextEditor14.Location = new System.Drawing.Point(60, 52);
  1227. this.ultraTextEditor14.Multiline = true;
  1228. this.ultraTextEditor14.Name = "ultraTextEditor14";
  1229. this.ultraTextEditor14.Size = new System.Drawing.Size(191, 19);
  1230. this.ultraTextEditor14.TabIndex = 364;
  1231. this.ultraTextEditor14.Tag = "";
  1232. //
  1233. // ultraLabel25
  1234. //
  1235. this.ultraLabel25.BackColor = System.Drawing.Color.Transparent;
  1236. this.ultraLabel25.Location = new System.Drawing.Point(3, 31);
  1237. this.ultraLabel25.Name = "ultraLabel25";
  1238. this.ultraLabel25.Size = new System.Drawing.Size(56, 16);
  1239. this.ultraLabel25.TabIndex = 363;
  1240. this.ultraLabel25.Text = "物资名称";
  1241. //
  1242. // ultraTextEditor15
  1243. //
  1244. appearance33.BackColor = System.Drawing.Color.LightCyan;
  1245. this.ultraTextEditor15.Appearance = appearance33;
  1246. this.ultraTextEditor15.AutoSize = true;
  1247. this.ultraTextEditor15.Enabled = false;
  1248. this.ultraTextEditor15.FlatMode = true;
  1249. this.ultraTextEditor15.Location = new System.Drawing.Point(60, 28);
  1250. this.ultraTextEditor15.Multiline = true;
  1251. this.ultraTextEditor15.Name = "ultraTextEditor15";
  1252. this.ultraTextEditor15.Size = new System.Drawing.Size(191, 19);
  1253. this.ultraTextEditor15.TabIndex = 362;
  1254. this.ultraTextEditor15.Tag = "";
  1255. //
  1256. // ultraLabel26
  1257. //
  1258. this.ultraLabel26.BackColor = System.Drawing.Color.Transparent;
  1259. this.ultraLabel26.Location = new System.Drawing.Point(3, 8);
  1260. this.ultraLabel26.Name = "ultraLabel26";
  1261. this.ultraLabel26.Size = new System.Drawing.Size(56, 16);
  1262. this.ultraLabel26.TabIndex = 361;
  1263. this.ultraLabel26.Text = "物资代码";
  1264. //
  1265. // ultraTextEditor16
  1266. //
  1267. appearance34.BackColor = System.Drawing.Color.LightCyan;
  1268. this.ultraTextEditor16.Appearance = appearance34;
  1269. this.ultraTextEditor16.AutoSize = true;
  1270. this.ultraTextEditor16.Enabled = false;
  1271. this.ultraTextEditor16.FlatMode = true;
  1272. this.ultraTextEditor16.Location = new System.Drawing.Point(60, 5);
  1273. this.ultraTextEditor16.Name = "ultraTextEditor16";
  1274. this.ultraTextEditor16.Size = new System.Drawing.Size(84, 19);
  1275. this.ultraTextEditor16.TabIndex = 358;
  1276. this.ultraTextEditor16.Tag = "";
  1277. //
  1278. // ultraLabel16
  1279. //
  1280. this.ultraLabel16.BackColor = System.Drawing.Color.Transparent;
  1281. this.ultraLabel16.Location = new System.Drawing.Point(261, 33);
  1282. this.ultraLabel16.Name = "ultraLabel16";
  1283. this.ultraLabel16.Size = new System.Drawing.Size(118, 18);
  1284. this.ultraLabel16.TabIndex = 405;
  1285. this.ultraLabel16.Text = "委托代理人身份证号";
  1286. //
  1287. // ultraTextEditor8
  1288. //
  1289. appearance35.BackColor = System.Drawing.Color.LightCyan;
  1290. this.ultraTextEditor8.Appearance = appearance35;
  1291. this.ultraTextEditor8.AutoSize = true;
  1292. this.ultraTextEditor8.FlatMode = true;
  1293. this.ultraTextEditor8.Location = new System.Drawing.Point(385, 30);
  1294. this.ultraTextEditor8.Multiline = true;
  1295. this.ultraTextEditor8.Name = "ultraTextEditor8";
  1296. this.ultraTextEditor8.Size = new System.Drawing.Size(91, 19);
  1297. this.ultraTextEditor8.TabIndex = 404;
  1298. this.ultraTextEditor8.Tag = "";
  1299. //
  1300. // ultraLabel17
  1301. //
  1302. this.ultraLabel17.BackColor = System.Drawing.Color.Transparent;
  1303. this.ultraLabel17.Location = new System.Drawing.Point(4, 99);
  1304. this.ultraLabel17.Name = "ultraLabel17";
  1305. this.ultraLabel17.Size = new System.Drawing.Size(109, 19);
  1306. this.ultraLabel17.TabIndex = 403;
  1307. this.ultraLabel17.Text = "法人代表身份证号";
  1308. //
  1309. // ultraTextEditor18
  1310. //
  1311. appearance36.BackColor = System.Drawing.Color.LightCyan;
  1312. this.ultraTextEditor18.Appearance = appearance36;
  1313. this.ultraTextEditor18.AutoSize = true;
  1314. this.ultraTextEditor18.FlatMode = true;
  1315. this.ultraTextEditor18.Location = new System.Drawing.Point(112, 96);
  1316. this.ultraTextEditor18.Multiline = true;
  1317. this.ultraTextEditor18.Name = "ultraTextEditor18";
  1318. this.ultraTextEditor18.Size = new System.Drawing.Size(139, 19);
  1319. this.ultraTextEditor18.TabIndex = 402;
  1320. this.ultraTextEditor18.Tag = "";
  1321. //
  1322. // ultraLabel27
  1323. //
  1324. this.ultraLabel27.BackColor = System.Drawing.Color.Transparent;
  1325. this.ultraLabel27.Location = new System.Drawing.Point(261, 7);
  1326. this.ultraLabel27.Name = "ultraLabel27";
  1327. this.ultraLabel27.Size = new System.Drawing.Size(66, 16);
  1328. this.ultraLabel27.TabIndex = 401;
  1329. this.ultraLabel27.Text = "委托代理人";
  1330. //
  1331. // ultraTextEditor19
  1332. //
  1333. appearance37.BackColor = System.Drawing.Color.LightCyan;
  1334. this.ultraTextEditor19.Appearance = appearance37;
  1335. this.ultraTextEditor19.AutoSize = true;
  1336. this.ultraTextEditor19.FlatMode = true;
  1337. this.ultraTextEditor19.Location = new System.Drawing.Point(333, 4);
  1338. this.ultraTextEditor19.Multiline = true;
  1339. this.ultraTextEditor19.Name = "ultraTextEditor19";
  1340. this.ultraTextEditor19.Size = new System.Drawing.Size(143, 19);
  1341. this.ultraTextEditor19.TabIndex = 400;
  1342. this.ultraTextEditor19.Tag = "";
  1343. //
  1344. // ultraTextEditor20
  1345. //
  1346. appearance38.BackColor = System.Drawing.Color.LightCyan;
  1347. this.ultraTextEditor20.Appearance = appearance38;
  1348. this.ultraTextEditor20.AutoSize = true;
  1349. this.ultraTextEditor20.FlatMode = true;
  1350. this.ultraTextEditor20.Location = new System.Drawing.Point(927, 28);
  1351. this.ultraTextEditor20.Multiline = true;
  1352. this.ultraTextEditor20.Name = "ultraTextEditor20";
  1353. this.ultraTextEditor20.Size = new System.Drawing.Size(173, 85);
  1354. this.ultraTextEditor20.TabIndex = 399;
  1355. this.ultraTextEditor20.Tag = "";
  1356. //
  1357. // ultraComboEditor3
  1358. //
  1359. appearance39.BackColor = System.Drawing.Color.LightCyan;
  1360. this.ultraComboEditor3.Appearance = appearance39;
  1361. this.ultraComboEditor3.AutoSize = true;
  1362. valueListItem9.DataValue = "0";
  1363. valueListItem9.DisplayText = "非以旧换新";
  1364. valueListItem10.DataValue = "1";
  1365. valueListItem10.DisplayText = "以旧换新";
  1366. this.ultraComboEditor3.Items.Add(valueListItem9);
  1367. this.ultraComboEditor3.Items.Add(valueListItem10);
  1368. this.ultraComboEditor3.Location = new System.Drawing.Point(962, 2);
  1369. this.ultraComboEditor3.Name = "ultraComboEditor3";
  1370. this.ultraComboEditor3.Size = new System.Drawing.Size(120, 21);
  1371. this.ultraComboEditor3.TabIndex = 398;
  1372. //
  1373. // ultraLabel37
  1374. //
  1375. this.ultraLabel37.BackColor = System.Drawing.Color.Transparent;
  1376. this.ultraLabel37.Location = new System.Drawing.Point(886, 5);
  1377. this.ultraLabel37.Name = "ultraLabel37";
  1378. this.ultraLabel37.Size = new System.Drawing.Size(89, 20);
  1379. this.ultraLabel37.TabIndex = 397;
  1380. this.ultraLabel37.Text = "是否以旧换新";
  1381. //
  1382. // ultraComboEditor4
  1383. //
  1384. appearance40.BackColor = System.Drawing.Color.LightCyan;
  1385. this.ultraComboEditor4.Appearance = appearance40;
  1386. this.ultraComboEditor4.AutoSize = true;
  1387. valueListItem11.DataValue = "0";
  1388. valueListItem11.DisplayText = "非招标物资";
  1389. valueListItem12.DataValue = "1";
  1390. valueListItem12.DisplayText = "招标物资";
  1391. this.ultraComboEditor4.Items.Add(valueListItem11);
  1392. this.ultraComboEditor4.Items.Add(valueListItem12);
  1393. this.ultraComboEditor4.Location = new System.Drawing.Point(760, 73);
  1394. this.ultraComboEditor4.Name = "ultraComboEditor4";
  1395. this.ultraComboEditor4.Size = new System.Drawing.Size(120, 21);
  1396. this.ultraComboEditor4.TabIndex = 396;
  1397. //
  1398. // ultraLabel38
  1399. //
  1400. this.ultraLabel38.BackColor = System.Drawing.Color.Transparent;
  1401. this.ultraLabel38.Location = new System.Drawing.Point(684, 76);
  1402. this.ultraLabel38.Name = "ultraLabel38";
  1403. this.ultraLabel38.Size = new System.Drawing.Size(89, 20);
  1404. this.ultraLabel38.TabIndex = 395;
  1405. this.ultraLabel38.Text = "是否招标物资";
  1406. //
  1407. // ultraComboEditor5
  1408. //
  1409. appearance41.BackColor = System.Drawing.Color.LightCyan;
  1410. this.ultraComboEditor5.Appearance = appearance41;
  1411. this.ultraComboEditor5.AutoSize = true;
  1412. valueListItem13.DataValue = "0";
  1413. valueListItem13.DisplayText = "非修复物资";
  1414. valueListItem14.DataValue = "1";
  1415. valueListItem14.DisplayText = "修复物资";
  1416. this.ultraComboEditor5.Items.Add(valueListItem13);
  1417. this.ultraComboEditor5.Items.Add(valueListItem14);
  1418. this.ultraComboEditor5.Location = new System.Drawing.Point(760, 49);
  1419. this.ultraComboEditor5.Name = "ultraComboEditor5";
  1420. this.ultraComboEditor5.Size = new System.Drawing.Size(120, 21);
  1421. this.ultraComboEditor5.TabIndex = 394;
  1422. //
  1423. // ultraLabel39
  1424. //
  1425. this.ultraLabel39.BackColor = System.Drawing.Color.Transparent;
  1426. this.ultraLabel39.Location = new System.Drawing.Point(684, 52);
  1427. this.ultraLabel39.Name = "ultraLabel39";
  1428. this.ultraLabel39.Size = new System.Drawing.Size(89, 20);
  1429. this.ultraLabel39.TabIndex = 393;
  1430. this.ultraLabel39.Text = "是否修复物资";
  1431. //
  1432. // ultraComboEditor6
  1433. //
  1434. appearance42.BackColor = System.Drawing.Color.LightCyan;
  1435. this.ultraComboEditor6.Appearance = appearance42;
  1436. this.ultraComboEditor6.AutoSize = true;
  1437. valueListItem15.DataValue = "0";
  1438. valueListItem15.DisplayText = "不包安装";
  1439. valueListItem16.DataValue = "1";
  1440. valueListItem16.DisplayText = "包安装";
  1441. this.ultraComboEditor6.Items.Add(valueListItem15);
  1442. this.ultraComboEditor6.Items.Add(valueListItem16);
  1443. this.ultraComboEditor6.Location = new System.Drawing.Point(760, 26);
  1444. this.ultraComboEditor6.Name = "ultraComboEditor6";
  1445. this.ultraComboEditor6.Size = new System.Drawing.Size(120, 21);
  1446. this.ultraComboEditor6.TabIndex = 392;
  1447. //
  1448. // ultraLabel40
  1449. //
  1450. this.ultraLabel40.BackColor = System.Drawing.Color.Transparent;
  1451. this.ultraLabel40.Location = new System.Drawing.Point(684, 29);
  1452. this.ultraLabel40.Name = "ultraLabel40";
  1453. this.ultraLabel40.Size = new System.Drawing.Size(89, 20);
  1454. this.ultraLabel40.TabIndex = 391;
  1455. this.ultraLabel40.Text = "是否包安装";
  1456. //
  1457. // ultraComboEditor7
  1458. //
  1459. appearance43.BackColor = System.Drawing.Color.LightCyan;
  1460. this.ultraComboEditor7.Appearance = appearance43;
  1461. this.ultraComboEditor7.AutoSize = true;
  1462. valueListItem17.DataValue = "0";
  1463. valueListItem17.DisplayText = "非备库物资";
  1464. valueListItem18.DataValue = "1";
  1465. valueListItem18.DisplayText = "备库物资";
  1466. this.ultraComboEditor7.Items.Add(valueListItem17);
  1467. this.ultraComboEditor7.Items.Add(valueListItem18);
  1468. this.ultraComboEditor7.Location = new System.Drawing.Point(760, 3);
  1469. this.ultraComboEditor7.Name = "ultraComboEditor7";
  1470. this.ultraComboEditor7.Size = new System.Drawing.Size(120, 21);
  1471. this.ultraComboEditor7.TabIndex = 390;
  1472. //
  1473. // ultraLabel41
  1474. //
  1475. this.ultraLabel41.BackColor = System.Drawing.Color.Transparent;
  1476. this.ultraLabel41.Location = new System.Drawing.Point(684, 6);
  1477. this.ultraLabel41.Name = "ultraLabel41";
  1478. this.ultraLabel41.Size = new System.Drawing.Size(89, 20);
  1479. this.ultraLabel41.TabIndex = 389;
  1480. this.ultraLabel41.Text = "是否备库物资";
  1481. //
  1482. // ultraComboEditor8
  1483. //
  1484. appearance44.BackColor = System.Drawing.Color.LightCyan;
  1485. this.ultraComboEditor8.Appearance = appearance44;
  1486. this.ultraComboEditor8.AutoSize = true;
  1487. valueListItem19.DataValue = "0";
  1488. valueListItem19.DisplayText = "正在使用的物资";
  1489. valueListItem20.DataValue = "1";
  1490. valueListItem20.DisplayText = "已废除的物资";
  1491. this.ultraComboEditor8.Items.Add(valueListItem19);
  1492. this.ultraComboEditor8.Items.Add(valueListItem20);
  1493. this.ultraComboEditor8.Location = new System.Drawing.Point(584, 76);
  1494. this.ultraComboEditor8.Name = "ultraComboEditor8";
  1495. this.ultraComboEditor8.Size = new System.Drawing.Size(94, 21);
  1496. this.ultraComboEditor8.TabIndex = 388;
  1497. //
  1498. // ultraLabel42
  1499. //
  1500. this.ultraLabel42.BackColor = System.Drawing.Color.Transparent;
  1501. this.ultraLabel42.Location = new System.Drawing.Point(482, 79);
  1502. this.ultraLabel42.Name = "ultraLabel42";
  1503. this.ultraLabel42.Size = new System.Drawing.Size(117, 18);
  1504. this.ultraLabel42.TabIndex = 387;
  1505. this.ultraLabel42.Text = "是否废除的物资";
  1506. //
  1507. // ultraComboEditor9
  1508. //
  1509. appearance45.BackColor = System.Drawing.Color.LightCyan;
  1510. this.ultraComboEditor9.Appearance = appearance45;
  1511. this.ultraComboEditor9.AutoSize = true;
  1512. valueListItem21.DataValue = "0";
  1513. valueListItem21.DisplayText = "不允许负数发";
  1514. valueListItem22.DataValue = "1";
  1515. valueListItem22.DisplayText = "允许负数发料";
  1516. this.ultraComboEditor9.Items.Add(valueListItem21);
  1517. this.ultraComboEditor9.Items.Add(valueListItem22);
  1518. this.ultraComboEditor9.Location = new System.Drawing.Point(584, 52);
  1519. this.ultraComboEditor9.Name = "ultraComboEditor9";
  1520. this.ultraComboEditor9.Size = new System.Drawing.Size(94, 21);
  1521. this.ultraComboEditor9.TabIndex = 386;
  1522. //
  1523. // ultraLabel43
  1524. //
  1525. this.ultraLabel43.BackColor = System.Drawing.Color.Transparent;
  1526. this.ultraLabel43.Location = new System.Drawing.Point(482, 55);
  1527. this.ultraLabel43.Name = "ultraLabel43";
  1528. this.ultraLabel43.Size = new System.Drawing.Size(117, 18);
  1529. this.ultraLabel43.TabIndex = 385;
  1530. this.ultraLabel43.Text = "是否允许负数发料";
  1531. //
  1532. // ultraComboEditor10
  1533. //
  1534. appearance46.BackColor = System.Drawing.Color.LightCyan;
  1535. this.ultraComboEditor10.Appearance = appearance46;
  1536. this.ultraComboEditor10.AutoSize = true;
  1537. valueListItem23.DataValue = "0";
  1538. valueListItem23.DisplayText = "非零库存物资";
  1539. valueListItem24.DataValue = "1";
  1540. valueListItem24.DisplayText = "零库存物资";
  1541. this.ultraComboEditor10.Items.Add(valueListItem23);
  1542. this.ultraComboEditor10.Items.Add(valueListItem24);
  1543. this.ultraComboEditor10.Location = new System.Drawing.Point(550, 28);
  1544. this.ultraComboEditor10.Name = "ultraComboEditor10";
  1545. this.ultraComboEditor10.Size = new System.Drawing.Size(128, 21);
  1546. this.ultraComboEditor10.TabIndex = 384;
  1547. //
  1548. // ultraLabel44
  1549. //
  1550. this.ultraLabel44.BackColor = System.Drawing.Color.Transparent;
  1551. this.ultraLabel44.Location = new System.Drawing.Point(482, 31);
  1552. this.ultraLabel44.Name = "ultraLabel44";
  1553. this.ultraLabel44.Size = new System.Drawing.Size(66, 20);
  1554. this.ultraLabel44.TabIndex = 383;
  1555. this.ultraLabel44.Text = "是否零库存";
  1556. //
  1557. // ultraLabel45
  1558. //
  1559. this.ultraLabel45.BackColor = System.Drawing.Color.Transparent;
  1560. this.ultraLabel45.Location = new System.Drawing.Point(482, 8);
  1561. this.ultraLabel45.Name = "ultraLabel45";
  1562. this.ultraLabel45.Size = new System.Drawing.Size(56, 16);
  1563. this.ultraLabel45.TabIndex = 381;
  1564. this.ultraLabel45.Text = "制造周期";
  1565. //
  1566. // ultraTextEditor21
  1567. //
  1568. appearance47.BackColor = System.Drawing.Color.LightCyan;
  1569. this.ultraTextEditor21.Appearance = appearance47;
  1570. this.ultraTextEditor21.AutoSize = true;
  1571. this.ultraTextEditor21.FlatMode = true;
  1572. this.ultraTextEditor21.Location = new System.Drawing.Point(550, 5);
  1573. this.ultraTextEditor21.Name = "ultraTextEditor21";
  1574. this.ultraTextEditor21.Size = new System.Drawing.Size(128, 19);
  1575. this.ultraTextEditor21.TabIndex = 380;
  1576. this.ultraTextEditor21.Tag = "";
  1577. //
  1578. // ultraLabel46
  1579. //
  1580. this.ultraLabel46.BackColor = System.Drawing.Color.Transparent;
  1581. this.ultraLabel46.Location = new System.Drawing.Point(3, 77);
  1582. this.ultraLabel46.Name = "ultraLabel46";
  1583. this.ultraLabel46.Size = new System.Drawing.Size(56, 16);
  1584. this.ultraLabel46.TabIndex = 367;
  1585. this.ultraLabel46.Text = "法人代表";
  1586. //
  1587. // ultraTextEditor22
  1588. //
  1589. appearance48.BackColor = System.Drawing.Color.LightCyan;
  1590. this.ultraTextEditor22.Appearance = appearance48;
  1591. this.ultraTextEditor22.AutoSize = true;
  1592. this.ultraTextEditor22.FlatMode = true;
  1593. this.ultraTextEditor22.Location = new System.Drawing.Point(60, 74);
  1594. this.ultraTextEditor22.Multiline = true;
  1595. this.ultraTextEditor22.Name = "ultraTextEditor22";
  1596. this.ultraTextEditor22.Size = new System.Drawing.Size(191, 19);
  1597. this.ultraTextEditor22.TabIndex = 366;
  1598. this.ultraTextEditor22.Tag = "";
  1599. //
  1600. // ultraLabel47
  1601. //
  1602. this.ultraLabel47.BackColor = System.Drawing.Color.Transparent;
  1603. this.ultraLabel47.Location = new System.Drawing.Point(3, 55);
  1604. this.ultraLabel47.Name = "ultraLabel47";
  1605. this.ultraLabel47.Size = new System.Drawing.Size(56, 16);
  1606. this.ultraLabel47.TabIndex = 365;
  1607. this.ultraLabel47.Text = "产品标准";
  1608. //
  1609. // ultraTextEditor23
  1610. //
  1611. appearance49.BackColor = System.Drawing.Color.LightCyan;
  1612. this.ultraTextEditor23.Appearance = appearance49;
  1613. this.ultraTextEditor23.AutoSize = true;
  1614. this.ultraTextEditor23.FlatMode = true;
  1615. this.ultraTextEditor23.Location = new System.Drawing.Point(60, 52);
  1616. this.ultraTextEditor23.Multiline = true;
  1617. this.ultraTextEditor23.Name = "ultraTextEditor23";
  1618. this.ultraTextEditor23.Size = new System.Drawing.Size(191, 19);
  1619. this.ultraTextEditor23.TabIndex = 364;
  1620. this.ultraTextEditor23.Tag = "";
  1621. //
  1622. // ultraLabel48
  1623. //
  1624. this.ultraLabel48.BackColor = System.Drawing.Color.Transparent;
  1625. this.ultraLabel48.Location = new System.Drawing.Point(3, 31);
  1626. this.ultraLabel48.Name = "ultraLabel48";
  1627. this.ultraLabel48.Size = new System.Drawing.Size(56, 16);
  1628. this.ultraLabel48.TabIndex = 363;
  1629. this.ultraLabel48.Text = "供方名称";
  1630. //
  1631. // ultraTextEditor24
  1632. //
  1633. appearance50.BackColor = System.Drawing.Color.LightCyan;
  1634. this.ultraTextEditor24.Appearance = appearance50;
  1635. this.ultraTextEditor24.AutoSize = true;
  1636. this.ultraTextEditor24.FlatMode = true;
  1637. this.ultraTextEditor24.Location = new System.Drawing.Point(60, 28);
  1638. this.ultraTextEditor24.Multiline = true;
  1639. this.ultraTextEditor24.Name = "ultraTextEditor24";
  1640. this.ultraTextEditor24.Size = new System.Drawing.Size(191, 19);
  1641. this.ultraTextEditor24.TabIndex = 362;
  1642. this.ultraTextEditor24.Tag = "";
  1643. //
  1644. // ultraLabel49
  1645. //
  1646. this.ultraLabel49.BackColor = System.Drawing.Color.Transparent;
  1647. this.ultraLabel49.Location = new System.Drawing.Point(3, 8);
  1648. this.ultraLabel49.Name = "ultraLabel49";
  1649. this.ultraLabel49.Size = new System.Drawing.Size(56, 16);
  1650. this.ultraLabel49.TabIndex = 361;
  1651. this.ultraLabel49.Text = "供方代码";
  1652. //
  1653. // ultraTextEditor25
  1654. //
  1655. appearance51.BackColor = System.Drawing.Color.LightCyan;
  1656. this.ultraTextEditor25.Appearance = appearance51;
  1657. this.ultraTextEditor25.AutoSize = true;
  1658. this.ultraTextEditor25.Enabled = false;
  1659. this.ultraTextEditor25.FlatMode = true;
  1660. this.ultraTextEditor25.Location = new System.Drawing.Point(60, 5);
  1661. this.ultraTextEditor25.Name = "ultraTextEditor25";
  1662. this.ultraTextEditor25.Size = new System.Drawing.Size(84, 19);
  1663. this.ultraTextEditor25.TabIndex = 358;
  1664. this.ultraTextEditor25.Tag = "";
  1665. //
  1666. // ultraLabel51
  1667. //
  1668. this.ultraLabel51.BackColor = System.Drawing.Color.Transparent;
  1669. this.ultraLabel51.Location = new System.Drawing.Point(261, 57);
  1670. this.ultraLabel51.Name = "ultraLabel51";
  1671. this.ultraLabel51.Size = new System.Drawing.Size(66, 16);
  1672. this.ultraLabel51.TabIndex = 407;
  1673. this.ultraLabel51.Text = "注册资金";
  1674. //
  1675. // ultraTextEditor26
  1676. //
  1677. appearance52.BackColor = System.Drawing.Color.LightCyan;
  1678. this.ultraTextEditor26.Appearance = appearance52;
  1679. this.ultraTextEditor26.AutoSize = true;
  1680. this.ultraTextEditor26.FlatMode = true;
  1681. this.ultraTextEditor26.Location = new System.Drawing.Point(333, 54);
  1682. this.ultraTextEditor26.Multiline = true;
  1683. this.ultraTextEditor26.Name = "ultraTextEditor26";
  1684. this.ultraTextEditor26.Size = new System.Drawing.Size(143, 19);
  1685. this.ultraTextEditor26.TabIndex = 406;
  1686. this.ultraTextEditor26.Tag = "";
  1687. //
  1688. // ultraLabel52
  1689. //
  1690. this.ultraLabel52.BackColor = System.Drawing.Color.Transparent;
  1691. this.ultraLabel52.Location = new System.Drawing.Point(261, 33);
  1692. this.ultraLabel52.Name = "ultraLabel52";
  1693. this.ultraLabel52.Size = new System.Drawing.Size(118, 18);
  1694. this.ultraLabel52.TabIndex = 405;
  1695. this.ultraLabel52.Text = "委托代理人身份证号";
  1696. //
  1697. // ultraTextEditor27
  1698. //
  1699. appearance53.BackColor = System.Drawing.Color.LightCyan;
  1700. this.ultraTextEditor27.Appearance = appearance53;
  1701. this.ultraTextEditor27.AutoSize = true;
  1702. this.ultraTextEditor27.FlatMode = true;
  1703. this.ultraTextEditor27.Location = new System.Drawing.Point(385, 30);
  1704. this.ultraTextEditor27.Multiline = true;
  1705. this.ultraTextEditor27.Name = "ultraTextEditor27";
  1706. this.ultraTextEditor27.Size = new System.Drawing.Size(91, 19);
  1707. this.ultraTextEditor27.TabIndex = 404;
  1708. this.ultraTextEditor27.Tag = "";
  1709. //
  1710. // ultraLabel53
  1711. //
  1712. this.ultraLabel53.BackColor = System.Drawing.Color.Transparent;
  1713. this.ultraLabel53.Location = new System.Drawing.Point(4, 99);
  1714. this.ultraLabel53.Name = "ultraLabel53";
  1715. this.ultraLabel53.Size = new System.Drawing.Size(109, 19);
  1716. this.ultraLabel53.TabIndex = 403;
  1717. this.ultraLabel53.Text = "法人代表身份证号";
  1718. //
  1719. // ultraTextEditor28
  1720. //
  1721. appearance54.BackColor = System.Drawing.Color.LightCyan;
  1722. this.ultraTextEditor28.Appearance = appearance54;
  1723. this.ultraTextEditor28.AutoSize = true;
  1724. this.ultraTextEditor28.FlatMode = true;
  1725. this.ultraTextEditor28.Location = new System.Drawing.Point(112, 96);
  1726. this.ultraTextEditor28.Multiline = true;
  1727. this.ultraTextEditor28.Name = "ultraTextEditor28";
  1728. this.ultraTextEditor28.Size = new System.Drawing.Size(139, 19);
  1729. this.ultraTextEditor28.TabIndex = 402;
  1730. this.ultraTextEditor28.Tag = "";
  1731. //
  1732. // ultraLabel54
  1733. //
  1734. this.ultraLabel54.BackColor = System.Drawing.Color.Transparent;
  1735. this.ultraLabel54.Location = new System.Drawing.Point(261, 7);
  1736. this.ultraLabel54.Name = "ultraLabel54";
  1737. this.ultraLabel54.Size = new System.Drawing.Size(66, 16);
  1738. this.ultraLabel54.TabIndex = 401;
  1739. this.ultraLabel54.Text = "委托代理人";
  1740. //
  1741. // ultraTextEditor29
  1742. //
  1743. appearance55.BackColor = System.Drawing.Color.LightCyan;
  1744. this.ultraTextEditor29.Appearance = appearance55;
  1745. this.ultraTextEditor29.AutoSize = true;
  1746. this.ultraTextEditor29.FlatMode = true;
  1747. this.ultraTextEditor29.Location = new System.Drawing.Point(333, 4);
  1748. this.ultraTextEditor29.Multiline = true;
  1749. this.ultraTextEditor29.Name = "ultraTextEditor29";
  1750. this.ultraTextEditor29.Size = new System.Drawing.Size(143, 19);
  1751. this.ultraTextEditor29.TabIndex = 400;
  1752. this.ultraTextEditor29.Tag = "";
  1753. //
  1754. // ultraTextEditor30
  1755. //
  1756. appearance56.BackColor = System.Drawing.Color.LightCyan;
  1757. this.ultraTextEditor30.Appearance = appearance56;
  1758. this.ultraTextEditor30.AutoSize = true;
  1759. this.ultraTextEditor30.FlatMode = true;
  1760. this.ultraTextEditor30.Location = new System.Drawing.Point(927, 28);
  1761. this.ultraTextEditor30.Multiline = true;
  1762. this.ultraTextEditor30.Name = "ultraTextEditor30";
  1763. this.ultraTextEditor30.Size = new System.Drawing.Size(173, 85);
  1764. this.ultraTextEditor30.TabIndex = 399;
  1765. this.ultraTextEditor30.Tag = "";
  1766. //
  1767. // ultraComboEditor11
  1768. //
  1769. appearance57.BackColor = System.Drawing.Color.LightCyan;
  1770. this.ultraComboEditor11.Appearance = appearance57;
  1771. this.ultraComboEditor11.AutoSize = true;
  1772. valueListItem25.DataValue = "0";
  1773. valueListItem25.DisplayText = "非以旧换新";
  1774. valueListItem26.DataValue = "1";
  1775. valueListItem26.DisplayText = "以旧换新";
  1776. this.ultraComboEditor11.Items.Add(valueListItem25);
  1777. this.ultraComboEditor11.Items.Add(valueListItem26);
  1778. this.ultraComboEditor11.Location = new System.Drawing.Point(962, 2);
  1779. this.ultraComboEditor11.Name = "ultraComboEditor11";
  1780. this.ultraComboEditor11.Size = new System.Drawing.Size(120, 21);
  1781. this.ultraComboEditor11.TabIndex = 398;
  1782. //
  1783. // ultraLabel55
  1784. //
  1785. this.ultraLabel55.BackColor = System.Drawing.Color.Transparent;
  1786. this.ultraLabel55.Location = new System.Drawing.Point(886, 5);
  1787. this.ultraLabel55.Name = "ultraLabel55";
  1788. this.ultraLabel55.Size = new System.Drawing.Size(89, 20);
  1789. this.ultraLabel55.TabIndex = 397;
  1790. this.ultraLabel55.Text = "是否以旧换新";
  1791. //
  1792. // ultraComboEditor12
  1793. //
  1794. appearance58.BackColor = System.Drawing.Color.LightCyan;
  1795. this.ultraComboEditor12.Appearance = appearance58;
  1796. this.ultraComboEditor12.AutoSize = true;
  1797. valueListItem27.DataValue = "0";
  1798. valueListItem27.DisplayText = "非招标物资";
  1799. valueListItem28.DataValue = "1";
  1800. valueListItem28.DisplayText = "招标物资";
  1801. this.ultraComboEditor12.Items.Add(valueListItem27);
  1802. this.ultraComboEditor12.Items.Add(valueListItem28);
  1803. this.ultraComboEditor12.Location = new System.Drawing.Point(760, 73);
  1804. this.ultraComboEditor12.Name = "ultraComboEditor12";
  1805. this.ultraComboEditor12.Size = new System.Drawing.Size(120, 21);
  1806. this.ultraComboEditor12.TabIndex = 396;
  1807. //
  1808. // ultraLabel56
  1809. //
  1810. this.ultraLabel56.BackColor = System.Drawing.Color.Transparent;
  1811. this.ultraLabel56.Location = new System.Drawing.Point(684, 76);
  1812. this.ultraLabel56.Name = "ultraLabel56";
  1813. this.ultraLabel56.Size = new System.Drawing.Size(89, 20);
  1814. this.ultraLabel56.TabIndex = 395;
  1815. this.ultraLabel56.Text = "是否招标物资";
  1816. //
  1817. // ultraComboEditor13
  1818. //
  1819. appearance59.BackColor = System.Drawing.Color.LightCyan;
  1820. this.ultraComboEditor13.Appearance = appearance59;
  1821. this.ultraComboEditor13.AutoSize = true;
  1822. valueListItem29.DataValue = "0";
  1823. valueListItem29.DisplayText = "非修复物资";
  1824. valueListItem30.DataValue = "1";
  1825. valueListItem30.DisplayText = "修复物资";
  1826. this.ultraComboEditor13.Items.Add(valueListItem29);
  1827. this.ultraComboEditor13.Items.Add(valueListItem30);
  1828. this.ultraComboEditor13.Location = new System.Drawing.Point(760, 49);
  1829. this.ultraComboEditor13.Name = "ultraComboEditor13";
  1830. this.ultraComboEditor13.Size = new System.Drawing.Size(120, 21);
  1831. this.ultraComboEditor13.TabIndex = 394;
  1832. //
  1833. // ultraLabel57
  1834. //
  1835. this.ultraLabel57.BackColor = System.Drawing.Color.Transparent;
  1836. this.ultraLabel57.Location = new System.Drawing.Point(684, 52);
  1837. this.ultraLabel57.Name = "ultraLabel57";
  1838. this.ultraLabel57.Size = new System.Drawing.Size(89, 20);
  1839. this.ultraLabel57.TabIndex = 393;
  1840. this.ultraLabel57.Text = "是否修复物资";
  1841. //
  1842. // ultraComboEditor14
  1843. //
  1844. appearance60.BackColor = System.Drawing.Color.LightCyan;
  1845. this.ultraComboEditor14.Appearance = appearance60;
  1846. this.ultraComboEditor14.AutoSize = true;
  1847. valueListItem31.DataValue = "0";
  1848. valueListItem31.DisplayText = "不包安装";
  1849. valueListItem32.DataValue = "1";
  1850. valueListItem32.DisplayText = "包安装";
  1851. this.ultraComboEditor14.Items.Add(valueListItem31);
  1852. this.ultraComboEditor14.Items.Add(valueListItem32);
  1853. this.ultraComboEditor14.Location = new System.Drawing.Point(760, 26);
  1854. this.ultraComboEditor14.Name = "ultraComboEditor14";
  1855. this.ultraComboEditor14.Size = new System.Drawing.Size(120, 21);
  1856. this.ultraComboEditor14.TabIndex = 392;
  1857. //
  1858. // ultraLabel58
  1859. //
  1860. this.ultraLabel58.BackColor = System.Drawing.Color.Transparent;
  1861. this.ultraLabel58.Location = new System.Drawing.Point(684, 29);
  1862. this.ultraLabel58.Name = "ultraLabel58";
  1863. this.ultraLabel58.Size = new System.Drawing.Size(89, 20);
  1864. this.ultraLabel58.TabIndex = 391;
  1865. this.ultraLabel58.Text = "是否包安装";
  1866. //
  1867. // ultraComboEditor15
  1868. //
  1869. appearance61.BackColor = System.Drawing.Color.LightCyan;
  1870. this.ultraComboEditor15.Appearance = appearance61;
  1871. this.ultraComboEditor15.AutoSize = true;
  1872. valueListItem33.DataValue = "0";
  1873. valueListItem33.DisplayText = "非备库物资";
  1874. valueListItem34.DataValue = "1";
  1875. valueListItem34.DisplayText = "备库物资";
  1876. this.ultraComboEditor15.Items.Add(valueListItem33);
  1877. this.ultraComboEditor15.Items.Add(valueListItem34);
  1878. this.ultraComboEditor15.Location = new System.Drawing.Point(760, 3);
  1879. this.ultraComboEditor15.Name = "ultraComboEditor15";
  1880. this.ultraComboEditor15.Size = new System.Drawing.Size(120, 21);
  1881. this.ultraComboEditor15.TabIndex = 390;
  1882. //
  1883. // ultraLabel59
  1884. //
  1885. this.ultraLabel59.BackColor = System.Drawing.Color.Transparent;
  1886. this.ultraLabel59.Location = new System.Drawing.Point(684, 6);
  1887. this.ultraLabel59.Name = "ultraLabel59";
  1888. this.ultraLabel59.Size = new System.Drawing.Size(89, 20);
  1889. this.ultraLabel59.TabIndex = 389;
  1890. this.ultraLabel59.Text = "是否备库物资";
  1891. //
  1892. // ultraComboEditor16
  1893. //
  1894. appearance62.BackColor = System.Drawing.Color.LightCyan;
  1895. this.ultraComboEditor16.Appearance = appearance62;
  1896. this.ultraComboEditor16.AutoSize = true;
  1897. valueListItem35.DataValue = "0";
  1898. valueListItem35.DisplayText = "正在使用的物资";
  1899. valueListItem36.DataValue = "1";
  1900. valueListItem36.DisplayText = "已废除的物资";
  1901. this.ultraComboEditor16.Items.Add(valueListItem35);
  1902. this.ultraComboEditor16.Items.Add(valueListItem36);
  1903. this.ultraComboEditor16.Location = new System.Drawing.Point(584, 76);
  1904. this.ultraComboEditor16.Name = "ultraComboEditor16";
  1905. this.ultraComboEditor16.Size = new System.Drawing.Size(94, 21);
  1906. this.ultraComboEditor16.TabIndex = 388;
  1907. //
  1908. // ultraLabel60
  1909. //
  1910. this.ultraLabel60.BackColor = System.Drawing.Color.Transparent;
  1911. this.ultraLabel60.Location = new System.Drawing.Point(482, 79);
  1912. this.ultraLabel60.Name = "ultraLabel60";
  1913. this.ultraLabel60.Size = new System.Drawing.Size(117, 18);
  1914. this.ultraLabel60.TabIndex = 387;
  1915. this.ultraLabel60.Text = "是否废除的物资";
  1916. //
  1917. // ultraComboEditor17
  1918. //
  1919. appearance63.BackColor = System.Drawing.Color.LightCyan;
  1920. this.ultraComboEditor17.Appearance = appearance63;
  1921. this.ultraComboEditor17.AutoSize = true;
  1922. valueListItem37.DataValue = "0";
  1923. valueListItem37.DisplayText = "不允许负数发";
  1924. valueListItem38.DataValue = "1";
  1925. valueListItem38.DisplayText = "允许负数发料";
  1926. this.ultraComboEditor17.Items.Add(valueListItem37);
  1927. this.ultraComboEditor17.Items.Add(valueListItem38);
  1928. this.ultraComboEditor17.Location = new System.Drawing.Point(584, 52);
  1929. this.ultraComboEditor17.Name = "ultraComboEditor17";
  1930. this.ultraComboEditor17.Size = new System.Drawing.Size(94, 21);
  1931. this.ultraComboEditor17.TabIndex = 386;
  1932. //
  1933. // ultraLabel61
  1934. //
  1935. this.ultraLabel61.BackColor = System.Drawing.Color.Transparent;
  1936. this.ultraLabel61.Location = new System.Drawing.Point(482, 55);
  1937. this.ultraLabel61.Name = "ultraLabel61";
  1938. this.ultraLabel61.Size = new System.Drawing.Size(117, 18);
  1939. this.ultraLabel61.TabIndex = 385;
  1940. this.ultraLabel61.Text = "是否允许负数发料";
  1941. //
  1942. // ultraComboEditor18
  1943. //
  1944. appearance64.BackColor = System.Drawing.Color.LightCyan;
  1945. this.ultraComboEditor18.Appearance = appearance64;
  1946. this.ultraComboEditor18.AutoSize = true;
  1947. valueListItem39.DataValue = "0";
  1948. valueListItem39.DisplayText = "非零库存物资";
  1949. valueListItem40.DataValue = "1";
  1950. valueListItem40.DisplayText = "零库存物资";
  1951. this.ultraComboEditor18.Items.Add(valueListItem39);
  1952. this.ultraComboEditor18.Items.Add(valueListItem40);
  1953. this.ultraComboEditor18.Location = new System.Drawing.Point(550, 28);
  1954. this.ultraComboEditor18.Name = "ultraComboEditor18";
  1955. this.ultraComboEditor18.Size = new System.Drawing.Size(128, 21);
  1956. this.ultraComboEditor18.TabIndex = 384;
  1957. //
  1958. // ultraLabel62
  1959. //
  1960. this.ultraLabel62.BackColor = System.Drawing.Color.Transparent;
  1961. this.ultraLabel62.Location = new System.Drawing.Point(482, 31);
  1962. this.ultraLabel62.Name = "ultraLabel62";
  1963. this.ultraLabel62.Size = new System.Drawing.Size(66, 20);
  1964. this.ultraLabel62.TabIndex = 383;
  1965. this.ultraLabel62.Text = "是否零库存";
  1966. //
  1967. // ultraLabel63
  1968. //
  1969. this.ultraLabel63.BackColor = System.Drawing.Color.Transparent;
  1970. this.ultraLabel63.Location = new System.Drawing.Point(482, 8);
  1971. this.ultraLabel63.Name = "ultraLabel63";
  1972. this.ultraLabel63.Size = new System.Drawing.Size(56, 16);
  1973. this.ultraLabel63.TabIndex = 381;
  1974. this.ultraLabel63.Text = "制造周期";
  1975. //
  1976. // ultraTextEditor31
  1977. //
  1978. appearance65.BackColor = System.Drawing.Color.LightCyan;
  1979. this.ultraTextEditor31.Appearance = appearance65;
  1980. this.ultraTextEditor31.AutoSize = true;
  1981. this.ultraTextEditor31.FlatMode = true;
  1982. this.ultraTextEditor31.Location = new System.Drawing.Point(550, 5);
  1983. this.ultraTextEditor31.Name = "ultraTextEditor31";
  1984. this.ultraTextEditor31.Size = new System.Drawing.Size(128, 19);
  1985. this.ultraTextEditor31.TabIndex = 380;
  1986. this.ultraTextEditor31.Tag = "";
  1987. //
  1988. // ultraLabel64
  1989. //
  1990. this.ultraLabel64.BackColor = System.Drawing.Color.Transparent;
  1991. this.ultraLabel64.Location = new System.Drawing.Point(3, 77);
  1992. this.ultraLabel64.Name = "ultraLabel64";
  1993. this.ultraLabel64.Size = new System.Drawing.Size(56, 16);
  1994. this.ultraLabel64.TabIndex = 367;
  1995. this.ultraLabel64.Text = "法人代表";
  1996. //
  1997. // ultraTextEditor32
  1998. //
  1999. appearance66.BackColor = System.Drawing.Color.LightCyan;
  2000. this.ultraTextEditor32.Appearance = appearance66;
  2001. this.ultraTextEditor32.AutoSize = true;
  2002. this.ultraTextEditor32.FlatMode = true;
  2003. this.ultraTextEditor32.Location = new System.Drawing.Point(60, 74);
  2004. this.ultraTextEditor32.Multiline = true;
  2005. this.ultraTextEditor32.Name = "ultraTextEditor32";
  2006. this.ultraTextEditor32.Size = new System.Drawing.Size(191, 19);
  2007. this.ultraTextEditor32.TabIndex = 366;
  2008. this.ultraTextEditor32.Tag = "";
  2009. //
  2010. // ultraLabel65
  2011. //
  2012. this.ultraLabel65.BackColor = System.Drawing.Color.Transparent;
  2013. this.ultraLabel65.Location = new System.Drawing.Point(3, 55);
  2014. this.ultraLabel65.Name = "ultraLabel65";
  2015. this.ultraLabel65.Size = new System.Drawing.Size(56, 16);
  2016. this.ultraLabel65.TabIndex = 365;
  2017. this.ultraLabel65.Text = "产品标准";
  2018. //
  2019. // ultraTextEditor33
  2020. //
  2021. appearance67.BackColor = System.Drawing.Color.LightCyan;
  2022. this.ultraTextEditor33.Appearance = appearance67;
  2023. this.ultraTextEditor33.AutoSize = true;
  2024. this.ultraTextEditor33.FlatMode = true;
  2025. this.ultraTextEditor33.Location = new System.Drawing.Point(60, 52);
  2026. this.ultraTextEditor33.Multiline = true;
  2027. this.ultraTextEditor33.Name = "ultraTextEditor33";
  2028. this.ultraTextEditor33.Size = new System.Drawing.Size(191, 19);
  2029. this.ultraTextEditor33.TabIndex = 364;
  2030. this.ultraTextEditor33.Tag = "";
  2031. //
  2032. // ultraLabel66
  2033. //
  2034. this.ultraLabel66.BackColor = System.Drawing.Color.Transparent;
  2035. this.ultraLabel66.Location = new System.Drawing.Point(3, 31);
  2036. this.ultraLabel66.Name = "ultraLabel66";
  2037. this.ultraLabel66.Size = new System.Drawing.Size(56, 16);
  2038. this.ultraLabel66.TabIndex = 363;
  2039. this.ultraLabel66.Text = "供方名称";
  2040. //
  2041. // ultraTextEditor34
  2042. //
  2043. appearance68.BackColor = System.Drawing.Color.LightCyan;
  2044. this.ultraTextEditor34.Appearance = appearance68;
  2045. this.ultraTextEditor34.AutoSize = true;
  2046. this.ultraTextEditor34.FlatMode = true;
  2047. this.ultraTextEditor34.Location = new System.Drawing.Point(60, 28);
  2048. this.ultraTextEditor34.Multiline = true;
  2049. this.ultraTextEditor34.Name = "ultraTextEditor34";
  2050. this.ultraTextEditor34.Size = new System.Drawing.Size(191, 19);
  2051. this.ultraTextEditor34.TabIndex = 362;
  2052. this.ultraTextEditor34.Tag = "";
  2053. //
  2054. // ultraLabel67
  2055. //
  2056. this.ultraLabel67.BackColor = System.Drawing.Color.Transparent;
  2057. this.ultraLabel67.Location = new System.Drawing.Point(3, 8);
  2058. this.ultraLabel67.Name = "ultraLabel67";
  2059. this.ultraLabel67.Size = new System.Drawing.Size(56, 16);
  2060. this.ultraLabel67.TabIndex = 361;
  2061. this.ultraLabel67.Text = "供方代码";
  2062. //
  2063. // ultraTextEditor35
  2064. //
  2065. appearance69.BackColor = System.Drawing.Color.LightCyan;
  2066. this.ultraTextEditor35.Appearance = appearance69;
  2067. this.ultraTextEditor35.AutoSize = true;
  2068. this.ultraTextEditor35.Enabled = false;
  2069. this.ultraTextEditor35.FlatMode = true;
  2070. this.ultraTextEditor35.Location = new System.Drawing.Point(60, 5);
  2071. this.ultraTextEditor35.Name = "ultraTextEditor35";
  2072. this.ultraTextEditor35.Size = new System.Drawing.Size(84, 19);
  2073. this.ultraTextEditor35.TabIndex = 358;
  2074. this.ultraTextEditor35.Tag = "";
  2075. //
  2076. // FrmMateriaLB
  2077. //
  2078. this.AutoScaleBaseSize = new System.Drawing.Size(6, 14);
  2079. this.ClientSize = new System.Drawing.Size(1028, 518);
  2080. this.Controls.Add(this.panel2);
  2081. this.Controls.Add(this.ultraExpandableGroupBox1);
  2082. this.Controls.Add(this.ultraGroupBox1);
  2083. this.Controls.Add(this.panel1);
  2084. this.Name = "FrmMateriaLB";
  2085. this.Text = "仓库代码管理";
  2086. this.Load += new System.EventHandler(this.FrmDepot_Load);
  2087. this.panel1.ResumeLayout(false);
  2088. ((System.ComponentModel.ISupportInitialize)(this.ultraToolbarsManager1)).EndInit();
  2089. ((System.ComponentModel.ISupportInitialize)(this.ultraGroupBox1)).EndInit();
  2090. this.ultraGroupBox1.ResumeLayout(false);
  2091. ((System.ComponentModel.ISupportInitialize)(this.txt_gfmc)).EndInit();
  2092. ((System.ComponentModel.ISupportInitialize)(this.txt_gfdm)).EndInit();
  2093. ((System.ComponentModel.ISupportInitialize)(this.ultraExpandableGroupBox1)).EndInit();
  2094. this.ultraExpandableGroupBox1.ResumeLayout(false);
  2095. this.ultraExpandableGroupBoxPanel1.ResumeLayout(false);
  2096. ((System.ComponentModel.ISupportInitialize)(this.txt_Remark)).EndInit();
  2097. ((System.ComponentModel.ISupportInitialize)(this.txt_MC)).EndInit();
  2098. ((System.ComponentModel.ISupportInitialize)(this.txt_DM)).EndInit();
  2099. this.panel2.ResumeLayout(false);
  2100. ((System.ComponentModel.ISupportInitialize)(this.gd_CK)).EndInit();
  2101. ((System.ComponentModel.ISupportInitialize)(this.ultraTextEditor1)).EndInit();
  2102. ((System.ComponentModel.ISupportInitialize)(this.ultraTextEditor2)).EndInit();
  2103. ((System.ComponentModel.ISupportInitialize)(this.ultraTextEditor3)).EndInit();
  2104. ((System.ComponentModel.ISupportInitialize)(this.ultraComboEditor1)).EndInit();
  2105. ((System.ComponentModel.ISupportInitialize)(this.ultraTextEditor4)).EndInit();
  2106. ((System.ComponentModel.ISupportInitialize)(this.ultraTextEditor5)).EndInit();
  2107. ((System.ComponentModel.ISupportInitialize)(this.ultraTextEditor6)).EndInit();
  2108. ((System.ComponentModel.ISupportInitialize)(this.ultraTextEditor7)).EndInit();
  2109. ((System.ComponentModel.ISupportInitialize)(this.ultraTextEditor9)).EndInit();
  2110. ((System.ComponentModel.ISupportInitialize)(this.ultraTextEditor10)).EndInit();
  2111. ((System.ComponentModel.ISupportInitialize)(this.ultraTextEditor11)).EndInit();
  2112. ((System.ComponentModel.ISupportInitialize)(this.ultraTextEditor12)).EndInit();
  2113. ((System.ComponentModel.ISupportInitialize)(this.ultraComboEditor2)).EndInit();
  2114. ((System.ComponentModel.ISupportInitialize)(this.ultraTextEditor13)).EndInit();
  2115. ((System.ComponentModel.ISupportInitialize)(this.ultraTextEditor14)).EndInit();
  2116. ((System.ComponentModel.ISupportInitialize)(this.ultraTextEditor15)).EndInit();
  2117. ((System.ComponentModel.ISupportInitialize)(this.ultraTextEditor16)).EndInit();
  2118. ((System.ComponentModel.ISupportInitialize)(this.ultraTextEditor8)).EndInit();
  2119. ((System.ComponentModel.ISupportInitialize)(this.ultraTextEditor18)).EndInit();
  2120. ((System.ComponentModel.ISupportInitialize)(this.ultraTextEditor19)).EndInit();
  2121. ((System.ComponentModel.ISupportInitialize)(this.ultraTextEditor20)).EndInit();
  2122. ((System.ComponentModel.ISupportInitialize)(this.ultraComboEditor3)).EndInit();
  2123. ((System.ComponentModel.ISupportInitialize)(this.ultraComboEditor4)).EndInit();
  2124. ((System.ComponentModel.ISupportInitialize)(this.ultraComboEditor5)).EndInit();
  2125. ((System.ComponentModel.ISupportInitialize)(this.ultraComboEditor6)).EndInit();
  2126. ((System.ComponentModel.ISupportInitialize)(this.ultraComboEditor7)).EndInit();
  2127. ((System.ComponentModel.ISupportInitialize)(this.ultraComboEditor8)).EndInit();
  2128. ((System.ComponentModel.ISupportInitialize)(this.ultraComboEditor9)).EndInit();
  2129. ((System.ComponentModel.ISupportInitialize)(this.ultraComboEditor10)).EndInit();
  2130. ((System.ComponentModel.ISupportInitialize)(this.ultraTextEditor21)).EndInit();
  2131. ((System.ComponentModel.ISupportInitialize)(this.ultraTextEditor22)).EndInit();
  2132. ((System.ComponentModel.ISupportInitialize)(this.ultraTextEditor23)).EndInit();
  2133. ((System.ComponentModel.ISupportInitialize)(this.ultraTextEditor24)).EndInit();
  2134. ((System.ComponentModel.ISupportInitialize)(this.ultraTextEditor25)).EndInit();
  2135. ((System.ComponentModel.ISupportInitialize)(this.ultraTextEditor26)).EndInit();
  2136. ((System.ComponentModel.ISupportInitialize)(this.ultraTextEditor27)).EndInit();
  2137. ((System.ComponentModel.ISupportInitialize)(this.ultraTextEditor28)).EndInit();
  2138. ((System.ComponentModel.ISupportInitialize)(this.ultraTextEditor29)).EndInit();
  2139. ((System.ComponentModel.ISupportInitialize)(this.ultraTextEditor30)).EndInit();
  2140. ((System.ComponentModel.ISupportInitialize)(this.ultraComboEditor11)).EndInit();
  2141. ((System.ComponentModel.ISupportInitialize)(this.ultraComboEditor12)).EndInit();
  2142. ((System.ComponentModel.ISupportInitialize)(this.ultraComboEditor13)).EndInit();
  2143. ((System.ComponentModel.ISupportInitialize)(this.ultraComboEditor14)).EndInit();
  2144. ((System.ComponentModel.ISupportInitialize)(this.ultraComboEditor15)).EndInit();
  2145. ((System.ComponentModel.ISupportInitialize)(this.ultraComboEditor16)).EndInit();
  2146. ((System.ComponentModel.ISupportInitialize)(this.ultraComboEditor17)).EndInit();
  2147. ((System.ComponentModel.ISupportInitialize)(this.ultraComboEditor18)).EndInit();
  2148. ((System.ComponentModel.ISupportInitialize)(this.ultraTextEditor31)).EndInit();
  2149. ((System.ComponentModel.ISupportInitialize)(this.ultraTextEditor32)).EndInit();
  2150. ((System.ComponentModel.ISupportInitialize)(this.ultraTextEditor33)).EndInit();
  2151. ((System.ComponentModel.ISupportInitialize)(this.ultraTextEditor34)).EndInit();
  2152. ((System.ComponentModel.ISupportInitialize)(this.ultraTextEditor35)).EndInit();
  2153. this.ResumeLayout(false);
  2154. }
  2155. #endregion
  2156. private void chk_AllowFilter_CheckedChanged(object sender, System.EventArgs e)
  2157. {
  2158. if (this.chk_AllowFilter.Checked)
  2159. {
  2160. this.gd_CK.DisplayLayout.Override.AllowRowFiltering = Infragistics.Win.DefaultableBoolean.True;
  2161. }
  2162. else
  2163. {
  2164. this.gd_CK.DisplayLayout.Override.AllowRowFiltering = Infragistics.Win.DefaultableBoolean.False;
  2165. }
  2166. }
  2167. public static bool FillComboEditor(ref UltraComboEditor ulComboEditor, DataSet dset)
  2168. {
  2169. if (dset == null) return false;
  2170. if (dset.Tables.Count < 1) return false;
  2171. if (dset.Tables[0].Columns.Count < 2) return false;
  2172. ulComboEditor.Items.Clear();
  2173. for (int i = 0; i < dset.Tables[0].Rows.Count; i++)
  2174. ulComboEditor.Items.Add(dset.Tables[0].Rows[i][0].ToString(), dset.Tables[0].Rows[i][1].ToString());
  2175. return true;
  2176. }
  2177. private void DoQuery()
  2178. {
  2179. string where = "";
  2180. string sql = "";
  2181. string err = "";
  2182. if (this.txt_gfdm.Enabled && this.txt_gfdm.Text.Trim().Length > 0)
  2183. {
  2184. where += " AND MATERIAL__LB_CODE LIKE '%" + this.txt_gfdm.Text.Trim().ToString() + "%'";
  2185. }
  2186. if (this.txt_gfmc.Enabled && this.txt_gfmc.Text.Trim().Length > 0)
  2187. {
  2188. where += " AND MATERIAL__LB_NAME LIKE '%" + this.txt_gfmc.Text.Trim().ToString() + "%'";
  2189. }
  2190. sql = "SELECT MATERIAL__LB_CODE,MATERIAL__LB_NAME,REMARK,RECODER,TO_CHAR(TIME_,'YYYY-MM-DD HH24:MI:SS')TIME_ "
  2191. + "FROM MATERIA_LBL_CODE_MANAGE WHERE 1=1 " + where;
  2192. ;
  2193. DataSet ds = (DataSet)ClientCommon._RemotingHelp.ExecuteMethod("BJZWStuff", "Core.XgMes.Server.JGKC.SteelPlateManager.Common", "GetDataSet", new object[] { sql }, out err);
  2194. if (err == "")
  2195. {
  2196. gd_CK.DataSource = ds;
  2197. }
  2198. }
  2199. private void Export()
  2200. {
  2201. if (this.gd_CK.Rows.Count > 0)
  2202. {
  2203. Comm.ExPortExcel(this.gd_CK, this.excelExporter);
  2204. }
  2205. else
  2206. {
  2207. MessageBox.Show("无物资类别代码信息数据,不能导出!", "提示", MessageBoxButtons.OK, MessageBoxIcon.Information);
  2208. }
  2209. }
  2210. private void Add(string strMode)
  2211. {
  2212. try
  2213. {
  2214. string strerr = "";
  2215. System.Collections.ArrayList MetarilLBInfo = new ArrayList();
  2216. if (strMode == "UPDATE")
  2217. {
  2218. if (txt_DM.Text.Trim().ToString() == "")
  2219. {
  2220. MessageBox.Show("物资类别代码不能为空");
  2221. return;
  2222. }
  2223. }
  2224. if (strMode == "Del" || strMode == "UPDATE")
  2225. {
  2226. MetarilLBInfo.Add(this.gd_CK.ActiveRow.Cells["MATERIAL__LB_CODE"].Value);//1物资类别代码
  2227. }
  2228. else {
  2229. MetarilLBInfo.Add(Comm.ObjToStr(this.txt_DM.Text.Trim().ToString()));//1物资类别代码
  2230. }
  2231. MetarilLBInfo.Add(Comm.ObjToStr(this.txt_MC.Text.Trim().ToString()));//2 物资类别名称
  2232. MetarilLBInfo.Add(ClientCommon._UserInfo.UserName.ToString());//3 操作人
  2233. MetarilLBInfo.Add(Comm.ObjToStr(this.txt_Remark.Text.Trim().ToString()));//4 备注
  2234. MetarilLBInfo.Add(strMode);//5 操作模式
  2235. object obj = Core.Mes.ClientFrameWork.ClientCommon._RemotingHelp.ExecuteMethod("BJZWWLStuff", "Core.XgMes.Server.JGKC.MaterialManager.Metarial",
  2236. "MAterIaLBAdd", new object[] { MetarilLBInfo }, out strerr);
  2237. if (obj != null && obj.ToString() == "1")
  2238. {
  2239. MessageBox.Show("新增成功", "提示", MessageBoxButtons.OK, MessageBoxIcon.Information);
  2240. DoQuery();
  2241. }
  2242. else
  2243. {
  2244. MessageBox.Show(strerr, "提示", MessageBoxButtons.OK, MessageBoxIcon.Warning);
  2245. }
  2246. }
  2247. catch (Exception ex)
  2248. {
  2249. }
  2250. }
  2251. private void FrmDepot_Load(object sender, System.EventArgs e)
  2252. {
  2253. }
  2254. private void ultraToolbarsManager1_ToolClick(object sender, Infragistics.Win.UltraWinToolbars.ToolClickEventArgs e)
  2255. {
  2256. switch (e.Tool.Key)
  2257. {
  2258. case "Add":
  2259. Add("ADD");
  2260. break;
  2261. case "UPDATE":
  2262. Add("UPDATE");
  2263. break;
  2264. case "Del":
  2265. Add("Del");
  2266. break;
  2267. case "Query":
  2268. DoQuery();
  2269. break;
  2270. case "Export":
  2271. Export();
  2272. break;
  2273. case "Close":
  2274. this.Close();
  2275. break;
  2276. }
  2277. }
  2278. private void txt_DM_Enter(object sender, EventArgs e)
  2279. {
  2280. if (sender.GetType().ToString() == "Infragistics.Win.UltraWinEditors.UltraTextEditor")
  2281. {
  2282. ((Infragistics.Win.UltraWinEditors.UltraTextEditor)sender).SelectAll();
  2283. }
  2284. if (sender.GetType().ToString() == "Infragistics.Win.UltraWinEditors.UltraNumericEditor")
  2285. {
  2286. ((Infragistics.Win.UltraWinEditors.UltraNumericEditor)sender).SelectAll();
  2287. }
  2288. }
  2289. private void txt_DM_KeyDown(object sender, KeyEventArgs e)
  2290. {
  2291. try
  2292. {
  2293. if (e.KeyData == System.Windows.Forms.Keys.Return)
  2294. {
  2295. /*if (((System.Windows.Forms.Control)sender).Name == "txt_MC")
  2296. {
  2297. cmb_StorageLB.Focus();
  2298. cmb_StorageLB.SelectAll();
  2299. }
  2300. if (((System.Windows.Forms.Control)sender).Name == "cmb_StorageLB")
  2301. {
  2302. cmb_QY.Focus();
  2303. cmb_QY.SelectAll();
  2304. }
  2305. if (((System.Windows.Forms.Control)sender).Name == "cmb_QY")
  2306. {
  2307. txt_Remark.Focus();
  2308. txt_Remark.SelectAll();
  2309. }*/
  2310. if (((System.Windows.Forms.Control)sender).Name == "txt_Remark")
  2311. {
  2312. System.Windows.Forms.DialogResult result = DialogResult.No;
  2313. result = MessageBox.Show("是否新增?", "提示信息", MessageBoxButtons.YesNo, MessageBoxIcon.Question);
  2314. if (result == DialogResult.Yes)
  2315. {
  2316. this.Add("ADD");
  2317. }
  2318. else
  2319. {
  2320. this.Add("UPDATE");
  2321. }
  2322. this.txt_MC.Focus();
  2323. this.txt_MC.SelectAll();
  2324. return;
  2325. }
  2326. //System.Windows.Forms.SendKeys.Send("{TAB}");
  2327. }
  2328. }
  2329. catch (Exception ex)
  2330. {
  2331. System.Diagnostics.Debug.WriteLine(ex.ToString());
  2332. }
  2333. }
  2334. private void Chk_CKDM_CheckedChanged(object sender, EventArgs e)
  2335. {
  2336. txt_gfdm.Enabled = Chk_CKDM.Checked;
  2337. }
  2338. private void Chk_CKmc_CheckedChanged(object sender, EventArgs e)
  2339. {
  2340. txt_gfmc.Enabled = Chk_CKmc.Checked;
  2341. }
  2342. private void Chk_CKLB_CheckedChanged(object sender, EventArgs e)
  2343. {
  2344. //cmb_StorageLB.Enabled = Chk_CKLB.Checked;
  2345. }
  2346. private void gd_CK_AfterRowActivate(object sender, EventArgs e)
  2347. {
  2348. try
  2349. {
  2350. if (this.gd_CK.Rows.Count > 0)
  2351. {
  2352. this.txt_DM.Text = Comm.ObjToStr(this.gd_CK.ActiveRow.Cells["MATERIAL__LB_CODE"].Value);//仓库代码
  2353. txt_MC.Text = Comm.ObjToStr(this.gd_CK.ActiveRow.Cells["MATERIAL__LB_NAME"].Value);//仓库名称
  2354. //cmb_StorageLB.Value = Comm.ObjToStr(this.gd_CK.ActiveRow.Cells["DEPOT_LB"].Value);//仓库类别
  2355. txt_Remark.Text = Comm.ObjToStr(this.gd_CK.ActiveRow.Cells["REMARK"].Value);//备注
  2356. /*if (Comm.ObjToStr(this.gd_CK.ActiveRow.Cells["ISVALID"].Value) == "是")//是否启用
  2357. {
  2358. cmb_QY.Value = "1";
  2359. }
  2360. else
  2361. {
  2362. cmb_QY.Value = "0";
  2363. }*/
  2364. }
  2365. }
  2366. catch (Exception ex)
  2367. {
  2368. System.Diagnostics.Debug.WriteLine(ex.ToString());
  2369. }
  2370. }
  2371. }
  2372. }