dff4c3fc71aa6a4867a48e9b814f35ee4521d98e.svn-base 156 KB

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