FrmProcure.cs 132 KB

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