FrmMeterialCoce.cs 133 KB

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