ba7dc3917ccf2bff41e0e05eafe6caa5c8e1ce7d.svn-base 171 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907
  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. namespace Core.XgMes.Client.CoilMachiningManage
  10. {
  11. /// <summary>
  12. /// Frm_TurnoffManage 的摘要说明。
  13. /// </summary>
  14. public class Frm_TurnoffManage : Mes.ClientFrameWork.FrmBase
  15. {
  16. private System.Windows.Forms.Panel panel1;
  17. private Infragistics.Win.UltraWinToolbars.UltraToolbarsManager ultraToolbarsManager1;
  18. private Infragistics.Win.UltraWinToolbars.UltraToolbarsDockArea _panel1_Toolbars_Dock_Area_Left;
  19. private Infragistics.Win.UltraWinToolbars.UltraToolbarsDockArea _panel1_Toolbars_Dock_Area_Right;
  20. private Infragistics.Win.UltraWinToolbars.UltraToolbarsDockArea _panel1_Toolbars_Dock_Area_Top;
  21. private Infragistics.Win.UltraWinToolbars.UltraToolbarsDockArea _panel1_Toolbars_Dock_Area_Bottom;
  22. private Infragistics.Win.Misc.UltraGroupBox ultraGroupBox1;
  23. private Infragistics.Win.Misc.UltraExpandableGroupBox ultraExpandableGroupBox1;
  24. private Infragistics.Win.Misc.UltraExpandableGroupBoxPanel ultraExpandableGroupBoxPanel1;
  25. private System.Windows.Forms.Panel panel2;
  26. private Infragistics.Win.Misc.UltraGroupBox ultraGroupBox2;
  27. private Infragistics.Win.UltraWinEditors.UltraCheckEditor chk_SelectAll;
  28. private Infragistics.Win.UltraWinEditors.UltraCheckEditor chk_AllowFilter;
  29. private Infragistics.Win.UltraWinEditors.UltraTextEditor txt_GangP;
  30. private Infragistics.Win.UltraWinEditors.UltraTextEditor txt_RollHao;
  31. private Infragistics.Win.UltraWinEditors.UltraTextEditor txt_PlanID;
  32. private Infragistics.Win.UltraWinEditors.UltraCheckEditor chk_PactID;
  33. private Infragistics.Win.UltraWinEditors.UltraTextEditor txt_OrderNO;
  34. private Infragistics.Win.UltraWinEditors.UltraCheckEditor chk_OrderNO;
  35. private Infragistics.Win.Misc.UltraLabel Lab_To;
  36. private Infragistics.Win.UltraWinEditors.UltraCheckEditor chk_CollectTime;
  37. private Infragistics.Win.UltraWinGrid.UltraGrid gb_Press;
  38. private Infragistics.Win.UltraWinGrid.UltraGrid gb_Turan;
  39. private Infragistics.Win.Misc.UltraLabel ultraLabel11;
  40. private Infragistics.Win.UltraWinEditors.UltraTextEditor txt_PaiHao;
  41. private Infragistics.Win.Misc.UltraLabel ultraLabel9;
  42. private Infragistics.Win.UltraWinEditors.UltraNumericEditor txt_WEIGHT;
  43. private Infragistics.Win.Misc.UltraLabel ultraLabel10;
  44. private Infragistics.Win.UltraWinEditors.UltraNumericEditor txt_Width;
  45. private Infragistics.Win.UltraWinEditors.UltraNumericEditor txt_Length;
  46. private Infragistics.Win.Misc.UltraLabel lab_cd;
  47. private Infragistics.Win.Misc.UltraLabel ultraLabel17;
  48. private Infragistics.Win.UltraWinEditors.UltraNumericEditor txt_Ply;
  49. private Infragistics.Win.Misc.UltraLabel ultraLabel12;
  50. private Infragistics.Win.Misc.UltraLabel ultraLabel20;
  51. private Infragistics.Win.Misc.UltraLabel ultraLabel7;
  52. private Infragistics.Win.Misc.UltraLabel ultraLabel6;
  53. private Infragistics.Win.Misc.UltraLabel ultraLabel4;
  54. private Infragistics.Win.Misc.UltraLabel ultraLabel8;
  55. private Infragistics.Win.UltraWinGrid.UltraCombo cmb_BugReaSon;
  56. private Infragistics.Win.Misc.UltraLabel ultraLabel25;
  57. private Infragistics.Win.Misc.UltraLabel ultraLabel2;
  58. private Infragistics.Win.Misc.UltraLabel ultraLabel3;
  59. private Infragistics.Win.UltraWinEditors.UltraTextEditor txt_GangpeiH;
  60. private Infragistics.Win.Misc.UltraLabel ultraLabel1;
  61. private Infragistics.Win.UltraWinEditors.UltraTextEditor txt_Scid_End_Y;
  62. private Infragistics.Win.UltraWinEditors.UltraTextEditor txt_Scid_Begin_Y;
  63. private Infragistics.Win.UltraWinEditors.UltraTextEditor txt_Scid_Top_Y;
  64. private Infragistics.Win.Misc.UltraLabel ultraLabel5;
  65. private Infragistics.Win.UltraWinEditors.UltraTextEditor txt_TiShi;
  66. private Infragistics.Win.UltraWinEditors.UltraCheckEditor chk_RollHao;
  67. private Infragistics.Win.UltraWinEditors.UltraCheckEditor chk_BanHao;
  68. private Infragistics.Win.UltraWinEditors.UltraCheckEditor chk_PiHao;
  69. private Infragistics.Win.UltraWinGrid.UltraCombo cmb_Buress;
  70. private Infragistics.Win.UltraWinGrid.UltraCombo cmb_ClassStream;
  71. private Infragistics.Win.UltraWinGrid.UltraCombo cmb_ClassOreder;
  72. private Infragistics.Win.UltraWinEditors.UltraNumericEditor txt_Num;
  73. private Infragistics.Win.Misc.UltraButton Btn_Turn;
  74. private Infragistics.Win.UltraWinEditors.UltraCheckEditor chk_BNumber;
  75. private Infragistics.Win.UltraWinEditors.UltraTextEditor txt_BNumber;
  76. private Infragistics.Win.UltraWinEditors.UltraDateTimeEditor dte_Time;
  77. private Infragistics.Win.UltraWinEditors.UltraTextEditor txt_PiHao_Begin;
  78. private Infragistics.Win.UltraWinEditors.UltraTextEditor txt_Pihao_Top;
  79. private Infragistics.Win.UltraWinEditors.UltraTextEditor txt_PIhao_End;
  80. private Infragistics.Win.UltraWinEditors.UltraCheckEditor ultraCheckEditor1;
  81. private Infragistics.Win.UltraWinGrid.UltraCombo cmb_QuYu;
  82. private Infragistics.Win.UltraWinEditors.UltraDateTimeEditor dte_BeginTime;
  83. private Infragistics.Win.UltraWinEditors.UltraDateTimeEditor dte_EndTime;
  84. private Infragistics.Win.UltraWinGrid.ExcelExport.UltraGridExcelExporter excelExporter;
  85. private Infragistics.Win.Misc.UltraLabel ultraLabel13;
  86. private Infragistics.Win.UltraWinEditors.UltraTextEditor txt_ReMark;
  87. private Infragistics.Win.UltraWinGrid.UltraCombo cmb_ProcL;
  88. private Infragistics.Win.UltraWinEditors.UltraCheckEditor chk_ProcLine;
  89. private Infragistics.Win.UltraWinEditors.UltraTextEditor txt_Plact;
  90. private Infragistics.Win.UltraWinDataSource.UltraDataSource ultraDataSource1;
  91. private Infragistics.Win.UltraWinGrid.UltraCombo txt_ZHPD;
  92. private Infragistics.Win.UltraWinGrid.UltraCombo cmb_area;
  93. private Infragistics.Win.Misc.UltraLabel ultraLabel14;
  94. private Infragistics.Win.Misc.UltraLabel ultraLabel16;
  95. private Infragistics.Win.Misc.UltraLabel ultraLabel15;
  96. private Infragistics.Win.UltraWinGrid.UltraCombo cmb_Gylx;
  97. private Infragistics.Win.UltraWinGrid.UltraCombo cmb_plid;
  98. private Infragistics.Win.UltraWinEditors.UltraTextEditor txt_Seq;
  99. private System.ComponentModel.IContainer components;
  100. public Frm_TurnoffManage()
  101. {
  102. //
  103. // Windows 窗体设计器支持所必需的
  104. //
  105. InitializeComponent();
  106. //
  107. // TODO: 在 InitializeComponent 调用后添加任何构造函数代码
  108. //
  109. }
  110. /// <summary>
  111. /// 清理所有正在使用的资源。
  112. /// </summary>
  113. protected override void Dispose(bool disposing)
  114. {
  115. if (disposing)
  116. {
  117. if (components != null)
  118. {
  119. components.Dispose();
  120. }
  121. }
  122. base.Dispose(disposing);
  123. }
  124. #region Windows 窗体设计器生成的代码
  125. /// <summary>
  126. /// 设计器支持所需的方法 - 不要使用代码编辑器修改
  127. /// 此方法的内容。
  128. /// </summary>
  129. private void InitializeComponent()
  130. {
  131. this.components = new System.ComponentModel.Container();
  132. Infragistics.Win.UltraWinToolbars.UltraToolbar ultraToolbar2 = new Infragistics.Win.UltraWinToolbars.UltraToolbar("工具栏");
  133. Infragistics.Win.UltraWinToolbars.ButtonTool buttonTool13 = new Infragistics.Win.UltraWinToolbars.ButtonTool("QUERY");
  134. Infragistics.Win.UltraWinToolbars.ButtonTool buttonTool14 = new Infragistics.Win.UltraWinToolbars.ButtonTool("ADD");
  135. Infragistics.Win.UltraWinToolbars.ButtonTool buttonTool15 = new Infragistics.Win.UltraWinToolbars.ButtonTool("DEL");
  136. Infragistics.Win.UltraWinToolbars.ButtonTool buttonTool16 = new Infragistics.Win.UltraWinToolbars.ButtonTool("TO_EXCEL");
  137. Infragistics.Win.UltraWinToolbars.ButtonTool buttonTool17 = new Infragistics.Win.UltraWinToolbars.ButtonTool("REF");
  138. Infragistics.Win.UltraWinToolbars.ButtonTool buttonTool18 = new Infragistics.Win.UltraWinToolbars.ButtonTool("Close");
  139. Infragistics.Win.UltraWinToolbars.ButtonTool buttonTool19 = new Infragistics.Win.UltraWinToolbars.ButtonTool("Close");
  140. Infragistics.Win.UltraWinToolbars.ButtonTool buttonTool20 = new Infragistics.Win.UltraWinToolbars.ButtonTool("QUERY");
  141. Infragistics.Win.UltraWinToolbars.ButtonTool buttonTool21 = new Infragistics.Win.UltraWinToolbars.ButtonTool("ADD");
  142. Infragistics.Win.UltraWinToolbars.ButtonTool buttonTool22 = new Infragistics.Win.UltraWinToolbars.ButtonTool("DEL");
  143. Infragistics.Win.UltraWinToolbars.ButtonTool buttonTool23 = new Infragistics.Win.UltraWinToolbars.ButtonTool("TO_EXCEL");
  144. Infragistics.Win.UltraWinToolbars.ButtonTool buttonTool24 = new Infragistics.Win.UltraWinToolbars.ButtonTool("REF");
  145. Infragistics.Win.Appearance appearance59 = new Infragistics.Win.Appearance();
  146. Infragistics.Win.Appearance appearance60 = new Infragistics.Win.Appearance();
  147. Infragistics.Win.Appearance appearance61 = new Infragistics.Win.Appearance();
  148. Infragistics.Win.Appearance appearance62 = new Infragistics.Win.Appearance();
  149. Infragistics.Win.Appearance appearance63 = new Infragistics.Win.Appearance();
  150. Infragistics.Win.Appearance appearance64 = new Infragistics.Win.Appearance();
  151. Infragistics.Win.Appearance appearance65 = new Infragistics.Win.Appearance();
  152. Infragistics.Win.Appearance appearance66 = new Infragistics.Win.Appearance();
  153. Infragistics.Win.Appearance appearance67 = new Infragistics.Win.Appearance();
  154. Infragistics.Win.Appearance appearance68 = new Infragistics.Win.Appearance();
  155. Infragistics.Win.Appearance appearance69 = new Infragistics.Win.Appearance();
  156. Infragistics.Win.Appearance appearance70 = new Infragistics.Win.Appearance();
  157. Infragistics.Win.Appearance appearance71 = new Infragistics.Win.Appearance();
  158. Infragistics.Win.UltraWinGrid.UltraGridBand ultraGridBand3 = new Infragistics.Win.UltraWinGrid.UltraGridBand("Band 0", -1);
  159. Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn71 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("SHIP_INVNO");
  160. Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn72 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("OLD_SAMPL_NO");
  161. Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn73 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("SLAB_NO");
  162. Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn74 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("ORD_NO");
  163. Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn75 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("ORD_SEQ");
  164. Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn76 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("DEVLMT_DTIME");
  165. Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn77 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("ZSLAB_PLY");
  166. Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn78 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("ZSLAB_WIDTH");
  167. Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn79 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("ZSLAB_LENGTH");
  168. Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn80 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("ZSLAB_WEIGHT");
  169. Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn81 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("ZSLAB_NUM");
  170. Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn82 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("STL_GRD");
  171. Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn83 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("TOT_DEC_GRD");
  172. Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn84 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("REM");
  173. Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn85 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("TRANS_CAR_NO");
  174. Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn86 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("ZLZS_NO");
  175. Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn87 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("BUTTRESS");
  176. Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn88 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("CREATOR");
  177. Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn89 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("CREATETIME");
  178. Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn90 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("PCLASSORDER");
  179. Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn91 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("PCLASSTEAM");
  180. Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn92 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("WORKORDER_ID");
  181. Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn93 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("COIL_NO_ID");
  182. Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn94 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("PCTIME");
  183. Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn95 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("TURNOFFCOLLECT_LOG");
  184. Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn96 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("CRK_CD1");
  185. Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn97 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("GYLX");
  186. Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn98 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("STOCKTYPE");
  187. Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn99 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("XJJL");
  188. Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn100 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("STOVENO", 0);
  189. Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn101 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("BAHCT_NUMBER", 1);
  190. Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn102 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("SX_BIAOZHUN", 2);
  191. Infragistics.Win.Appearance appearance72 = new Infragistics.Win.Appearance();
  192. Infragistics.Win.UltraWinGrid.SummarySettings summarySettings6 = new Infragistics.Win.UltraWinGrid.SummarySettings("", Infragistics.Win.UltraWinGrid.SummaryType.Sum, null, "ZSLAB_NUM", 10, true, "Band 0", 0, Infragistics.Win.UltraWinGrid.SummaryPosition.UseSummaryPositionColumn, "ZSLAB_NUM", 10, true);
  193. Infragistics.Win.Appearance appearance73 = new Infragistics.Win.Appearance();
  194. Infragistics.Win.UltraWinGrid.SummarySettings summarySettings7 = new Infragistics.Win.UltraWinGrid.SummarySettings("", Infragistics.Win.UltraWinGrid.SummaryType.Sum, null, "ZSLAB_WEIGHT", 9, true, "Band 0", 0, Infragistics.Win.UltraWinGrid.SummaryPosition.UseSummaryPositionColumn, "ZSLAB_WEIGHT", 9, true);
  195. Infragistics.Win.Appearance appearance74 = new Infragistics.Win.Appearance();
  196. Infragistics.Win.Appearance appearance75 = new Infragistics.Win.Appearance();
  197. Infragistics.Win.Appearance appearance76 = new Infragistics.Win.Appearance();
  198. Infragistics.Win.Appearance appearance77 = new Infragistics.Win.Appearance();
  199. Infragistics.Win.Appearance appearance78 = new Infragistics.Win.Appearance();
  200. Infragistics.Win.Appearance appearance79 = new Infragistics.Win.Appearance();
  201. Infragistics.Win.Appearance appearance80 = new Infragistics.Win.Appearance();
  202. Infragistics.Win.Appearance appearance81 = new Infragistics.Win.Appearance();
  203. Infragistics.Win.Appearance appearance82 = new Infragistics.Win.Appearance();
  204. Infragistics.Win.Appearance appearance83 = new Infragistics.Win.Appearance();
  205. Infragistics.Win.Appearance appearance84 = new Infragistics.Win.Appearance();
  206. Infragistics.Win.Appearance appearance85 = new Infragistics.Win.Appearance();
  207. Infragistics.Win.Appearance appearance86 = new Infragistics.Win.Appearance();
  208. Infragistics.Win.Appearance appearance87 = new Infragistics.Win.Appearance();
  209. Infragistics.Win.Appearance appearance88 = new Infragistics.Win.Appearance();
  210. Infragistics.Win.Appearance appearance89 = new Infragistics.Win.Appearance();
  211. Infragistics.Win.Appearance appearance90 = new Infragistics.Win.Appearance();
  212. Infragistics.Win.Appearance appearance91 = new Infragistics.Win.Appearance();
  213. Infragistics.Win.Appearance appearance92 = new Infragistics.Win.Appearance();
  214. Infragistics.Win.Appearance appearance93 = new Infragistics.Win.Appearance();
  215. Infragistics.Win.Appearance appearance94 = new Infragistics.Win.Appearance();
  216. Infragistics.Win.Appearance appearance95 = new Infragistics.Win.Appearance();
  217. Infragistics.Win.Appearance appearance96 = new Infragistics.Win.Appearance();
  218. Infragistics.Win.Appearance appearance97 = new Infragistics.Win.Appearance();
  219. Infragistics.Win.Appearance appearance98 = new Infragistics.Win.Appearance();
  220. Infragistics.Win.UltraWinGrid.UltraGridBand ultraGridBand4 = new Infragistics.Win.UltraWinGrid.UltraGridBand("Band 0", -1);
  221. Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn103 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("SHIP_INVNO");
  222. Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn104 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("OLD_SAMPL_NO");
  223. Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn105 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("SLAB_NO");
  224. Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn106 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("ORD_NO");
  225. Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn107 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("ORD_SEQ");
  226. Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn108 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("DEVLMT_DTIME");
  227. Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn109 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("ZSLAB_PLY");
  228. Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn110 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("ZSLAB_WIDTH");
  229. Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn111 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("ZSLAB_LENGTH");
  230. Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn112 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("ZSLAB_WEIGHT");
  231. Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn113 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("ZSLAB_NUM");
  232. Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn114 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("STL_GRD");
  233. Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn115 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("TOT_DEC_GRD");
  234. Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn116 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("REM");
  235. Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn117 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("TRANS_CAR_NO");
  236. Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn118 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("ZLZS_NO");
  237. Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn119 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("BUTTRESS");
  238. Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn120 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("CREATOR");
  239. Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn121 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("CREATETIME");
  240. Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn122 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("INCLASSORDER");
  241. Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn123 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("INCLASSTEAM");
  242. Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn124 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("WORKORDER_ID");
  243. Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn125 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("COIL_NO_ID");
  244. Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn126 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("PCTIME");
  245. Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn127 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("TURNOFFCOLLECT_LOG");
  246. Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn128 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("FLAG");
  247. Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn129 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("STCOKTYPE");
  248. Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn130 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("ORD_USE_CD");
  249. Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn131 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("REMARK");
  250. Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn132 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("GYLX");
  251. Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn133 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("DETERMINANTRESULT");
  252. Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn134 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("GZQX");
  253. Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn135 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("GYQX");
  254. Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn136 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("XJJL_WEIGHT");
  255. Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn137 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("STOVENO", 0);
  256. Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn138 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("BAHCT_NUMBER", 1);
  257. Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn139 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("SX_BIAOZHUN", 2);
  258. Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn140 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("SERIAL_NUMBER", 3);
  259. Infragistics.Win.Appearance appearance99 = new Infragistics.Win.Appearance();
  260. Infragistics.Win.UltraWinGrid.SummarySettings summarySettings8 = new Infragistics.Win.UltraWinGrid.SummarySettings("", Infragistics.Win.UltraWinGrid.SummaryType.Sum, null, "ZSLAB_WEIGHT", 9, true, "Band 0", 0, Infragistics.Win.UltraWinGrid.SummaryPosition.UseSummaryPositionColumn, "ZSLAB_WEIGHT", 9, true);
  261. Infragistics.Win.Appearance appearance100 = new Infragistics.Win.Appearance();
  262. Infragistics.Win.UltraWinGrid.SummarySettings summarySettings9 = new Infragistics.Win.UltraWinGrid.SummarySettings("", Infragistics.Win.UltraWinGrid.SummaryType.Sum, null, "ZSLAB_NUM", 10, true, "Band 0", 0, Infragistics.Win.UltraWinGrid.SummaryPosition.UseSummaryPositionColumn, "ZSLAB_NUM", 10, true);
  263. Infragistics.Win.Appearance appearance101 = new Infragistics.Win.Appearance();
  264. Infragistics.Win.UltraWinGrid.SummarySettings summarySettings10 = new Infragistics.Win.UltraWinGrid.SummarySettings("", Infragistics.Win.UltraWinGrid.SummaryType.Sum, "", "XJJL_WEIGHT", 33, true, "Band 0", 0, Infragistics.Win.UltraWinGrid.SummaryPosition.UseSummaryPositionColumn, null, -1, false);
  265. Infragistics.Win.Appearance appearance102 = new Infragistics.Win.Appearance();
  266. Infragistics.Win.Appearance appearance103 = new Infragistics.Win.Appearance();
  267. Infragistics.Win.Appearance appearance104 = new Infragistics.Win.Appearance();
  268. Infragistics.Win.Appearance appearance105 = new Infragistics.Win.Appearance();
  269. Infragistics.Win.Appearance appearance106 = new Infragistics.Win.Appearance();
  270. Infragistics.Win.Appearance appearance107 = new Infragistics.Win.Appearance();
  271. Infragistics.Win.Appearance appearance108 = new Infragistics.Win.Appearance();
  272. Infragistics.Win.Appearance appearance109 = new Infragistics.Win.Appearance();
  273. Infragistics.Win.Appearance appearance110 = new Infragistics.Win.Appearance();
  274. Infragistics.Win.Appearance appearance111 = new Infragistics.Win.Appearance();
  275. Infragistics.Win.Appearance appearance112 = new Infragistics.Win.Appearance();
  276. Infragistics.Win.Appearance appearance113 = new Infragistics.Win.Appearance();
  277. Infragistics.Win.Appearance appearance114 = new Infragistics.Win.Appearance();
  278. Infragistics.Win.Appearance appearance115 = new Infragistics.Win.Appearance();
  279. Infragistics.Win.Appearance appearance116 = new Infragistics.Win.Appearance();
  280. this.panel1 = new System.Windows.Forms.Panel();
  281. this._panel1_Toolbars_Dock_Area_Left = new Infragistics.Win.UltraWinToolbars.UltraToolbarsDockArea();
  282. this.ultraToolbarsManager1 = new Infragistics.Win.UltraWinToolbars.UltraToolbarsManager(this.components);
  283. this._panel1_Toolbars_Dock_Area_Right = new Infragistics.Win.UltraWinToolbars.UltraToolbarsDockArea();
  284. this._panel1_Toolbars_Dock_Area_Top = new Infragistics.Win.UltraWinToolbars.UltraToolbarsDockArea();
  285. this._panel1_Toolbars_Dock_Area_Bottom = new Infragistics.Win.UltraWinToolbars.UltraToolbarsDockArea();
  286. this.ultraGroupBox1 = new Infragistics.Win.Misc.UltraGroupBox();
  287. this.cmb_ProcL = new Infragistics.Win.UltraWinGrid.UltraCombo();
  288. this.chk_ProcLine = new Infragistics.Win.UltraWinEditors.UltraCheckEditor();
  289. this.dte_EndTime = new Infragistics.Win.UltraWinEditors.UltraDateTimeEditor();
  290. this.dte_BeginTime = new Infragistics.Win.UltraWinEditors.UltraDateTimeEditor();
  291. this.cmb_QuYu = new Infragistics.Win.UltraWinGrid.UltraCombo();
  292. this.ultraCheckEditor1 = new Infragistics.Win.UltraWinEditors.UltraCheckEditor();
  293. this.txt_PIhao_End = new Infragistics.Win.UltraWinEditors.UltraTextEditor();
  294. this.txt_Pihao_Top = new Infragistics.Win.UltraWinEditors.UltraTextEditor();
  295. this.txt_BNumber = new Infragistics.Win.UltraWinEditors.UltraTextEditor();
  296. this.chk_BNumber = new Infragistics.Win.UltraWinEditors.UltraCheckEditor();
  297. this.txt_PiHao_Begin = new Infragistics.Win.UltraWinEditors.UltraTextEditor();
  298. this.chk_PiHao = new Infragistics.Win.UltraWinEditors.UltraCheckEditor();
  299. this.chk_SelectAll = new Infragistics.Win.UltraWinEditors.UltraCheckEditor();
  300. this.chk_AllowFilter = new Infragistics.Win.UltraWinEditors.UltraCheckEditor();
  301. this.txt_GangP = new Infragistics.Win.UltraWinEditors.UltraTextEditor();
  302. this.chk_BanHao = new Infragistics.Win.UltraWinEditors.UltraCheckEditor();
  303. this.txt_RollHao = new Infragistics.Win.UltraWinEditors.UltraTextEditor();
  304. this.chk_RollHao = new Infragistics.Win.UltraWinEditors.UltraCheckEditor();
  305. this.txt_PlanID = new Infragistics.Win.UltraWinEditors.UltraTextEditor();
  306. this.chk_PactID = new Infragistics.Win.UltraWinEditors.UltraCheckEditor();
  307. this.txt_OrderNO = new Infragistics.Win.UltraWinEditors.UltraTextEditor();
  308. this.chk_OrderNO = new Infragistics.Win.UltraWinEditors.UltraCheckEditor();
  309. this.Lab_To = new Infragistics.Win.Misc.UltraLabel();
  310. this.chk_CollectTime = new Infragistics.Win.UltraWinEditors.UltraCheckEditor();
  311. this.ultraExpandableGroupBox1 = new Infragistics.Win.Misc.UltraExpandableGroupBox();
  312. this.ultraExpandableGroupBoxPanel1 = new Infragistics.Win.Misc.UltraExpandableGroupBoxPanel();
  313. this.gb_Press = new Infragistics.Win.UltraWinGrid.UltraGrid();
  314. this.panel2 = new System.Windows.Forms.Panel();
  315. this.txt_Seq = new Infragistics.Win.UltraWinEditors.UltraTextEditor();
  316. this.cmb_plid = new Infragistics.Win.UltraWinGrid.UltraCombo();
  317. this.cmb_Gylx = new Infragistics.Win.UltraWinGrid.UltraCombo();
  318. this.ultraLabel16 = new Infragistics.Win.Misc.UltraLabel();
  319. this.ultraLabel15 = new Infragistics.Win.Misc.UltraLabel();
  320. this.cmb_area = new Infragistics.Win.UltraWinGrid.UltraCombo();
  321. this.ultraLabel14 = new Infragistics.Win.Misc.UltraLabel();
  322. this.txt_ZHPD = new Infragistics.Win.UltraWinGrid.UltraCombo();
  323. this.txt_Plact = new Infragistics.Win.UltraWinEditors.UltraTextEditor();
  324. this.txt_ReMark = new Infragistics.Win.UltraWinEditors.UltraTextEditor();
  325. this.ultraLabel13 = new Infragistics.Win.Misc.UltraLabel();
  326. this.dte_Time = new Infragistics.Win.UltraWinEditors.UltraDateTimeEditor();
  327. this.Btn_Turn = new Infragistics.Win.Misc.UltraButton();
  328. this.ultraLabel11 = new Infragistics.Win.Misc.UltraLabel();
  329. this.txt_PaiHao = new Infragistics.Win.UltraWinEditors.UltraTextEditor();
  330. this.txt_Num = new Infragistics.Win.UltraWinEditors.UltraNumericEditor();
  331. this.ultraLabel9 = new Infragistics.Win.Misc.UltraLabel();
  332. this.txt_WEIGHT = new Infragistics.Win.UltraWinEditors.UltraNumericEditor();
  333. this.ultraLabel10 = new Infragistics.Win.Misc.UltraLabel();
  334. this.txt_Width = new Infragistics.Win.UltraWinEditors.UltraNumericEditor();
  335. this.txt_Length = new Infragistics.Win.UltraWinEditors.UltraNumericEditor();
  336. this.lab_cd = new Infragistics.Win.Misc.UltraLabel();
  337. this.ultraLabel17 = new Infragistics.Win.Misc.UltraLabel();
  338. this.txt_Ply = new Infragistics.Win.UltraWinEditors.UltraNumericEditor();
  339. this.ultraLabel12 = new Infragistics.Win.Misc.UltraLabel();
  340. this.ultraLabel20 = new Infragistics.Win.Misc.UltraLabel();
  341. this.cmb_ClassStream = new Infragistics.Win.UltraWinGrid.UltraCombo();
  342. this.ultraLabel7 = new Infragistics.Win.Misc.UltraLabel();
  343. this.cmb_ClassOreder = new Infragistics.Win.UltraWinGrid.UltraCombo();
  344. this.ultraLabel6 = new Infragistics.Win.Misc.UltraLabel();
  345. this.cmb_Buress = new Infragistics.Win.UltraWinGrid.UltraCombo();
  346. this.ultraLabel4 = new Infragistics.Win.Misc.UltraLabel();
  347. this.ultraLabel8 = new Infragistics.Win.Misc.UltraLabel();
  348. this.cmb_BugReaSon = new Infragistics.Win.UltraWinGrid.UltraCombo();
  349. this.ultraLabel25 = new Infragistics.Win.Misc.UltraLabel();
  350. this.ultraLabel2 = new Infragistics.Win.Misc.UltraLabel();
  351. this.ultraLabel3 = new Infragistics.Win.Misc.UltraLabel();
  352. this.txt_GangpeiH = new Infragistics.Win.UltraWinEditors.UltraTextEditor();
  353. this.ultraLabel1 = new Infragistics.Win.Misc.UltraLabel();
  354. this.txt_Scid_End_Y = new Infragistics.Win.UltraWinEditors.UltraTextEditor();
  355. this.txt_Scid_Begin_Y = new Infragistics.Win.UltraWinEditors.UltraTextEditor();
  356. this.txt_Scid_Top_Y = new Infragistics.Win.UltraWinEditors.UltraTextEditor();
  357. this.ultraLabel5 = new Infragistics.Win.Misc.UltraLabel();
  358. this.txt_TiShi = new Infragistics.Win.UltraWinEditors.UltraTextEditor();
  359. this.ultraGroupBox2 = new Infragistics.Win.Misc.UltraGroupBox();
  360. this.gb_Turan = new Infragistics.Win.UltraWinGrid.UltraGrid();
  361. this.excelExporter = new Infragistics.Win.UltraWinGrid.ExcelExport.UltraGridExcelExporter();
  362. this.ultraDataSource1 = new Infragistics.Win.UltraWinDataSource.UltraDataSource();
  363. this.panel1.SuspendLayout();
  364. ((System.ComponentModel.ISupportInitialize)(this.ultraToolbarsManager1)).BeginInit();
  365. ((System.ComponentModel.ISupportInitialize)(this.ultraGroupBox1)).BeginInit();
  366. this.ultraGroupBox1.SuspendLayout();
  367. ((System.ComponentModel.ISupportInitialize)(this.cmb_ProcL)).BeginInit();
  368. ((System.ComponentModel.ISupportInitialize)(this.dte_EndTime)).BeginInit();
  369. ((System.ComponentModel.ISupportInitialize)(this.dte_BeginTime)).BeginInit();
  370. ((System.ComponentModel.ISupportInitialize)(this.cmb_QuYu)).BeginInit();
  371. ((System.ComponentModel.ISupportInitialize)(this.txt_PIhao_End)).BeginInit();
  372. ((System.ComponentModel.ISupportInitialize)(this.txt_Pihao_Top)).BeginInit();
  373. ((System.ComponentModel.ISupportInitialize)(this.txt_BNumber)).BeginInit();
  374. ((System.ComponentModel.ISupportInitialize)(this.txt_PiHao_Begin)).BeginInit();
  375. ((System.ComponentModel.ISupportInitialize)(this.txt_GangP)).BeginInit();
  376. ((System.ComponentModel.ISupportInitialize)(this.txt_RollHao)).BeginInit();
  377. ((System.ComponentModel.ISupportInitialize)(this.txt_PlanID)).BeginInit();
  378. ((System.ComponentModel.ISupportInitialize)(this.txt_OrderNO)).BeginInit();
  379. ((System.ComponentModel.ISupportInitialize)(this.ultraExpandableGroupBox1)).BeginInit();
  380. this.ultraExpandableGroupBox1.SuspendLayout();
  381. this.ultraExpandableGroupBoxPanel1.SuspendLayout();
  382. ((System.ComponentModel.ISupportInitialize)(this.gb_Press)).BeginInit();
  383. this.panel2.SuspendLayout();
  384. ((System.ComponentModel.ISupportInitialize)(this.txt_Seq)).BeginInit();
  385. ((System.ComponentModel.ISupportInitialize)(this.cmb_plid)).BeginInit();
  386. ((System.ComponentModel.ISupportInitialize)(this.cmb_Gylx)).BeginInit();
  387. ((System.ComponentModel.ISupportInitialize)(this.cmb_area)).BeginInit();
  388. ((System.ComponentModel.ISupportInitialize)(this.txt_ZHPD)).BeginInit();
  389. ((System.ComponentModel.ISupportInitialize)(this.txt_Plact)).BeginInit();
  390. ((System.ComponentModel.ISupportInitialize)(this.txt_ReMark)).BeginInit();
  391. ((System.ComponentModel.ISupportInitialize)(this.dte_Time)).BeginInit();
  392. ((System.ComponentModel.ISupportInitialize)(this.txt_PaiHao)).BeginInit();
  393. ((System.ComponentModel.ISupportInitialize)(this.txt_Num)).BeginInit();
  394. ((System.ComponentModel.ISupportInitialize)(this.txt_WEIGHT)).BeginInit();
  395. ((System.ComponentModel.ISupportInitialize)(this.txt_Width)).BeginInit();
  396. ((System.ComponentModel.ISupportInitialize)(this.txt_Length)).BeginInit();
  397. ((System.ComponentModel.ISupportInitialize)(this.txt_Ply)).BeginInit();
  398. ((System.ComponentModel.ISupportInitialize)(this.cmb_ClassStream)).BeginInit();
  399. ((System.ComponentModel.ISupportInitialize)(this.cmb_ClassOreder)).BeginInit();
  400. ((System.ComponentModel.ISupportInitialize)(this.cmb_Buress)).BeginInit();
  401. ((System.ComponentModel.ISupportInitialize)(this.cmb_BugReaSon)).BeginInit();
  402. ((System.ComponentModel.ISupportInitialize)(this.txt_GangpeiH)).BeginInit();
  403. ((System.ComponentModel.ISupportInitialize)(this.txt_Scid_End_Y)).BeginInit();
  404. ((System.ComponentModel.ISupportInitialize)(this.txt_Scid_Begin_Y)).BeginInit();
  405. ((System.ComponentModel.ISupportInitialize)(this.txt_Scid_Top_Y)).BeginInit();
  406. ((System.ComponentModel.ISupportInitialize)(this.txt_TiShi)).BeginInit();
  407. ((System.ComponentModel.ISupportInitialize)(this.ultraGroupBox2)).BeginInit();
  408. this.ultraGroupBox2.SuspendLayout();
  409. ((System.ComponentModel.ISupportInitialize)(this.gb_Turan)).BeginInit();
  410. ((System.ComponentModel.ISupportInitialize)(this.ultraDataSource1)).BeginInit();
  411. this.SuspendLayout();
  412. //
  413. // panel1
  414. //
  415. this.panel1.Controls.Add(this._panel1_Toolbars_Dock_Area_Left);
  416. this.panel1.Controls.Add(this._panel1_Toolbars_Dock_Area_Right);
  417. this.panel1.Controls.Add(this._panel1_Toolbars_Dock_Area_Top);
  418. this.panel1.Controls.Add(this._panel1_Toolbars_Dock_Area_Bottom);
  419. this.panel1.Dock = System.Windows.Forms.DockStyle.Top;
  420. this.panel1.Location = new System.Drawing.Point(0, 0);
  421. this.panel1.Name = "panel1";
  422. this.panel1.Size = new System.Drawing.Size(968, 28);
  423. this.panel1.TabIndex = 0;
  424. //
  425. // _panel1_Toolbars_Dock_Area_Left
  426. //
  427. this._panel1_Toolbars_Dock_Area_Left.AccessibleRole = System.Windows.Forms.AccessibleRole.Grouping;
  428. this._panel1_Toolbars_Dock_Area_Left.BackColor = System.Drawing.SystemColors.Control;
  429. this._panel1_Toolbars_Dock_Area_Left.DockedPosition = Infragistics.Win.UltraWinToolbars.DockedPosition.Left;
  430. this._panel1_Toolbars_Dock_Area_Left.ForeColor = System.Drawing.SystemColors.ControlText;
  431. this._panel1_Toolbars_Dock_Area_Left.Location = new System.Drawing.Point(0, 24);
  432. this._panel1_Toolbars_Dock_Area_Left.Name = "_panel1_Toolbars_Dock_Area_Left";
  433. this._panel1_Toolbars_Dock_Area_Left.Size = new System.Drawing.Size(0, 4);
  434. this._panel1_Toolbars_Dock_Area_Left.ToolbarsManager = this.ultraToolbarsManager1;
  435. //
  436. // ultraToolbarsManager1
  437. //
  438. this.ultraToolbarsManager1.DesignerFlags = 1;
  439. this.ultraToolbarsManager1.DockWithinContainer = this.panel1;
  440. this.ultraToolbarsManager1.ShowFullMenusDelay = 500;
  441. this.ultraToolbarsManager1.Style = Infragistics.Win.UltraWinToolbars.ToolbarStyle.Office2000;
  442. ultraToolbar2.DockedColumn = 0;
  443. ultraToolbar2.DockedRow = 0;
  444. ultraToolbar2.Text = "工具栏";
  445. buttonTool13.InstanceProps.IsFirstInGroup = true;
  446. buttonTool14.InstanceProps.IsFirstInGroup = true;
  447. buttonTool16.InstanceProps.IsFirstInGroup = true;
  448. buttonTool17.InstanceProps.IsFirstInGroup = true;
  449. buttonTool18.InstanceProps.IsFirstInGroup = true;
  450. ultraToolbar2.Tools.AddRange(new Infragistics.Win.UltraWinToolbars.ToolBase[] {
  451. buttonTool13,
  452. buttonTool14,
  453. buttonTool15,
  454. buttonTool16,
  455. buttonTool17,
  456. buttonTool18});
  457. this.ultraToolbarsManager1.Toolbars.AddRange(new Infragistics.Win.UltraWinToolbars.UltraToolbar[] {
  458. ultraToolbar2});
  459. this.ultraToolbarsManager1.ToolbarSettings.AllowCustomize = Infragistics.Win.DefaultableBoolean.False;
  460. buttonTool19.SharedProps.Caption = "关闭";
  461. buttonTool19.SharedProps.DisplayStyle = Infragistics.Win.UltraWinToolbars.ToolDisplayStyle.ImageAndText;
  462. buttonTool20.SharedProps.Caption = "查询";
  463. buttonTool20.SharedProps.DisplayStyle = Infragistics.Win.UltraWinToolbars.ToolDisplayStyle.ImageAndText;
  464. buttonTool21.SharedProps.Caption = "登记";
  465. buttonTool21.SharedProps.DisplayStyle = Infragistics.Win.UltraWinToolbars.ToolDisplayStyle.ImageAndText;
  466. buttonTool22.SharedProps.Caption = "撤销";
  467. buttonTool22.SharedProps.DisplayStyle = Infragistics.Win.UltraWinToolbars.ToolDisplayStyle.ImageAndText;
  468. buttonTool23.SharedProps.Caption = "导出";
  469. buttonTool23.SharedProps.DisplayStyle = Infragistics.Win.UltraWinToolbars.ToolDisplayStyle.ImageAndText;
  470. buttonTool24.SharedProps.Caption = "刷新成品收集槽";
  471. buttonTool24.SharedProps.DisplayStyle = Infragistics.Win.UltraWinToolbars.ToolDisplayStyle.ImageAndText;
  472. this.ultraToolbarsManager1.Tools.AddRange(new Infragistics.Win.UltraWinToolbars.ToolBase[] {
  473. buttonTool19,
  474. buttonTool20,
  475. buttonTool21,
  476. buttonTool22,
  477. buttonTool23,
  478. buttonTool24});
  479. this.ultraToolbarsManager1.ToolClick += new Infragistics.Win.UltraWinToolbars.ToolClickEventHandler(this.ultraToolbarsManager1_ToolClick);
  480. //
  481. // _panel1_Toolbars_Dock_Area_Right
  482. //
  483. this._panel1_Toolbars_Dock_Area_Right.AccessibleRole = System.Windows.Forms.AccessibleRole.Grouping;
  484. this._panel1_Toolbars_Dock_Area_Right.BackColor = System.Drawing.SystemColors.Control;
  485. this._panel1_Toolbars_Dock_Area_Right.DockedPosition = Infragistics.Win.UltraWinToolbars.DockedPosition.Right;
  486. this._panel1_Toolbars_Dock_Area_Right.ForeColor = System.Drawing.SystemColors.ControlText;
  487. this._panel1_Toolbars_Dock_Area_Right.Location = new System.Drawing.Point(968, 24);
  488. this._panel1_Toolbars_Dock_Area_Right.Name = "_panel1_Toolbars_Dock_Area_Right";
  489. this._panel1_Toolbars_Dock_Area_Right.Size = new System.Drawing.Size(0, 4);
  490. this._panel1_Toolbars_Dock_Area_Right.ToolbarsManager = this.ultraToolbarsManager1;
  491. //
  492. // _panel1_Toolbars_Dock_Area_Top
  493. //
  494. this._panel1_Toolbars_Dock_Area_Top.AccessibleRole = System.Windows.Forms.AccessibleRole.Grouping;
  495. this._panel1_Toolbars_Dock_Area_Top.BackColor = System.Drawing.SystemColors.Control;
  496. this._panel1_Toolbars_Dock_Area_Top.DockedPosition = Infragistics.Win.UltraWinToolbars.DockedPosition.Top;
  497. this._panel1_Toolbars_Dock_Area_Top.ForeColor = System.Drawing.SystemColors.ControlText;
  498. this._panel1_Toolbars_Dock_Area_Top.Location = new System.Drawing.Point(0, 0);
  499. this._panel1_Toolbars_Dock_Area_Top.Name = "_panel1_Toolbars_Dock_Area_Top";
  500. this._panel1_Toolbars_Dock_Area_Top.Size = new System.Drawing.Size(968, 24);
  501. this._panel1_Toolbars_Dock_Area_Top.ToolbarsManager = this.ultraToolbarsManager1;
  502. //
  503. // _panel1_Toolbars_Dock_Area_Bottom
  504. //
  505. this._panel1_Toolbars_Dock_Area_Bottom.AccessibleRole = System.Windows.Forms.AccessibleRole.Grouping;
  506. this._panel1_Toolbars_Dock_Area_Bottom.BackColor = System.Drawing.SystemColors.Control;
  507. this._panel1_Toolbars_Dock_Area_Bottom.DockedPosition = Infragistics.Win.UltraWinToolbars.DockedPosition.Bottom;
  508. this._panel1_Toolbars_Dock_Area_Bottom.ForeColor = System.Drawing.SystemColors.ControlText;
  509. this._panel1_Toolbars_Dock_Area_Bottom.Location = new System.Drawing.Point(0, 28);
  510. this._panel1_Toolbars_Dock_Area_Bottom.Name = "_panel1_Toolbars_Dock_Area_Bottom";
  511. this._panel1_Toolbars_Dock_Area_Bottom.Size = new System.Drawing.Size(968, 0);
  512. this._panel1_Toolbars_Dock_Area_Bottom.ToolbarsManager = this.ultraToolbarsManager1;
  513. //
  514. // ultraGroupBox1
  515. //
  516. this.ultraGroupBox1.Controls.Add(this.cmb_ProcL);
  517. this.ultraGroupBox1.Controls.Add(this.chk_ProcLine);
  518. this.ultraGroupBox1.Controls.Add(this.dte_EndTime);
  519. this.ultraGroupBox1.Controls.Add(this.dte_BeginTime);
  520. this.ultraGroupBox1.Controls.Add(this.cmb_QuYu);
  521. this.ultraGroupBox1.Controls.Add(this.ultraCheckEditor1);
  522. this.ultraGroupBox1.Controls.Add(this.txt_PIhao_End);
  523. this.ultraGroupBox1.Controls.Add(this.txt_Pihao_Top);
  524. this.ultraGroupBox1.Controls.Add(this.txt_BNumber);
  525. this.ultraGroupBox1.Controls.Add(this.chk_BNumber);
  526. this.ultraGroupBox1.Controls.Add(this.txt_PiHao_Begin);
  527. this.ultraGroupBox1.Controls.Add(this.chk_PiHao);
  528. this.ultraGroupBox1.Controls.Add(this.chk_SelectAll);
  529. this.ultraGroupBox1.Controls.Add(this.chk_AllowFilter);
  530. this.ultraGroupBox1.Controls.Add(this.txt_GangP);
  531. this.ultraGroupBox1.Controls.Add(this.chk_BanHao);
  532. this.ultraGroupBox1.Controls.Add(this.txt_RollHao);
  533. this.ultraGroupBox1.Controls.Add(this.chk_RollHao);
  534. this.ultraGroupBox1.Controls.Add(this.txt_PlanID);
  535. this.ultraGroupBox1.Controls.Add(this.chk_PactID);
  536. this.ultraGroupBox1.Controls.Add(this.txt_OrderNO);
  537. this.ultraGroupBox1.Controls.Add(this.chk_OrderNO);
  538. this.ultraGroupBox1.Controls.Add(this.Lab_To);
  539. this.ultraGroupBox1.Controls.Add(this.chk_CollectTime);
  540. this.ultraGroupBox1.Dock = System.Windows.Forms.DockStyle.Top;
  541. this.ultraGroupBox1.Location = new System.Drawing.Point(0, 28);
  542. this.ultraGroupBox1.Name = "ultraGroupBox1";
  543. this.ultraGroupBox1.Size = new System.Drawing.Size(968, 56);
  544. this.ultraGroupBox1.SupportThemes = false;
  545. this.ultraGroupBox1.TabIndex = 1;
  546. //
  547. // cmb_ProcL
  548. //
  549. this.cmb_ProcL.CharacterCasing = System.Windows.Forms.CharacterCasing.Normal;
  550. this.cmb_ProcL.DisplayMember = "";
  551. this.cmb_ProcL.DropDownStyle = Infragistics.Win.UltraWinGrid.UltraComboStyle.DropDownList;
  552. this.cmb_ProcL.Enabled = false;
  553. this.cmb_ProcL.FlatMode = true;
  554. this.cmb_ProcL.Location = new System.Drawing.Point(794, 30);
  555. this.cmb_ProcL.Name = "cmb_ProcL";
  556. this.cmb_ProcL.Size = new System.Drawing.Size(90, 19);
  557. this.cmb_ProcL.TabIndex = 281;
  558. this.cmb_ProcL.Tag = "";
  559. this.cmb_ProcL.ValueMember = "";
  560. //
  561. // chk_ProcLine
  562. //
  563. this.chk_ProcLine.Location = new System.Drawing.Point(732, 32);
  564. this.chk_ProcLine.Name = "chk_ProcLine";
  565. this.chk_ProcLine.Size = new System.Drawing.Size(64, 16);
  566. this.chk_ProcLine.TabIndex = 280;
  567. this.chk_ProcLine.TabStop = false;
  568. this.chk_ProcLine.Text = "产线";
  569. this.chk_ProcLine.CheckedChanged += new System.EventHandler(this.chk_ProcLine_CheckedChanged);
  570. //
  571. // dte_EndTime
  572. //
  573. this.dte_EndTime.Enabled = false;
  574. this.dte_EndTime.FlatMode = true;
  575. this.dte_EndTime.Location = new System.Drawing.Point(70, 30);
  576. this.dte_EndTime.Name = "dte_EndTime";
  577. this.dte_EndTime.Size = new System.Drawing.Size(116, 19);
  578. this.dte_EndTime.TabIndex = 279;
  579. //
  580. // dte_BeginTime
  581. //
  582. this.dte_BeginTime.Enabled = false;
  583. this.dte_BeginTime.FlatMode = true;
  584. this.dte_BeginTime.Location = new System.Drawing.Point(70, 8);
  585. this.dte_BeginTime.Name = "dte_BeginTime";
  586. this.dte_BeginTime.Size = new System.Drawing.Size(116, 19);
  587. this.dte_BeginTime.TabIndex = 278;
  588. //
  589. // cmb_QuYu
  590. //
  591. this.cmb_QuYu.CharacterCasing = System.Windows.Forms.CharacterCasing.Normal;
  592. appearance59.BackColor = System.Drawing.SystemColors.Window;
  593. appearance59.BorderColor = System.Drawing.SystemColors.InactiveCaption;
  594. this.cmb_QuYu.DisplayLayout.Appearance = appearance59;
  595. this.cmb_QuYu.DisplayLayout.BorderStyle = Infragistics.Win.UIElementBorderStyle.Solid;
  596. this.cmb_QuYu.DisplayLayout.CaptionVisible = Infragistics.Win.DefaultableBoolean.False;
  597. appearance60.BackColor = System.Drawing.SystemColors.ActiveBorder;
  598. appearance60.BackColor2 = System.Drawing.SystemColors.ControlDark;
  599. appearance60.BackGradientStyle = Infragistics.Win.GradientStyle.Vertical;
  600. appearance60.BorderColor = System.Drawing.SystemColors.Window;
  601. this.cmb_QuYu.DisplayLayout.GroupByBox.Appearance = appearance60;
  602. appearance61.ForeColor = System.Drawing.SystemColors.GrayText;
  603. this.cmb_QuYu.DisplayLayout.GroupByBox.BandLabelAppearance = appearance61;
  604. this.cmb_QuYu.DisplayLayout.GroupByBox.BorderStyle = Infragistics.Win.UIElementBorderStyle.Solid;
  605. appearance62.BackColor = System.Drawing.SystemColors.ControlLightLight;
  606. appearance62.BackColor2 = System.Drawing.SystemColors.Control;
  607. appearance62.BackGradientStyle = Infragistics.Win.GradientStyle.Horizontal;
  608. appearance62.ForeColor = System.Drawing.SystemColors.GrayText;
  609. this.cmb_QuYu.DisplayLayout.GroupByBox.PromptAppearance = appearance62;
  610. this.cmb_QuYu.DisplayLayout.MaxColScrollRegions = 1;
  611. this.cmb_QuYu.DisplayLayout.MaxRowScrollRegions = 1;
  612. appearance63.BackColor = System.Drawing.SystemColors.Window;
  613. appearance63.ForeColor = System.Drawing.SystemColors.ControlText;
  614. this.cmb_QuYu.DisplayLayout.Override.ActiveCellAppearance = appearance63;
  615. appearance64.BackColor = System.Drawing.SystemColors.Highlight;
  616. appearance64.ForeColor = System.Drawing.SystemColors.HighlightText;
  617. this.cmb_QuYu.DisplayLayout.Override.ActiveRowAppearance = appearance64;
  618. this.cmb_QuYu.DisplayLayout.Override.BorderStyleCell = Infragistics.Win.UIElementBorderStyle.Dotted;
  619. this.cmb_QuYu.DisplayLayout.Override.BorderStyleRow = Infragistics.Win.UIElementBorderStyle.Dotted;
  620. appearance65.BackColor = System.Drawing.SystemColors.Window;
  621. this.cmb_QuYu.DisplayLayout.Override.CardAreaAppearance = appearance65;
  622. appearance66.BorderColor = System.Drawing.Color.Silver;
  623. appearance66.TextTrimming = Infragistics.Win.TextTrimming.EllipsisCharacter;
  624. this.cmb_QuYu.DisplayLayout.Override.CellAppearance = appearance66;
  625. this.cmb_QuYu.DisplayLayout.Override.CellClickAction = Infragistics.Win.UltraWinGrid.CellClickAction.EditAndSelectText;
  626. this.cmb_QuYu.DisplayLayout.Override.CellPadding = 0;
  627. appearance67.BackColor = System.Drawing.SystemColors.Control;
  628. appearance67.BackColor2 = System.Drawing.SystemColors.ControlDark;
  629. appearance67.BackGradientAlignment = Infragistics.Win.GradientAlignment.Element;
  630. appearance67.BackGradientStyle = Infragistics.Win.GradientStyle.Horizontal;
  631. appearance67.BorderColor = System.Drawing.SystemColors.Window;
  632. this.cmb_QuYu.DisplayLayout.Override.GroupByRowAppearance = appearance67;
  633. appearance68.TextHAlign = Infragistics.Win.HAlign.Left;
  634. this.cmb_QuYu.DisplayLayout.Override.HeaderAppearance = appearance68;
  635. this.cmb_QuYu.DisplayLayout.Override.HeaderClickAction = Infragistics.Win.UltraWinGrid.HeaderClickAction.SortMulti;
  636. this.cmb_QuYu.DisplayLayout.Override.HeaderStyle = Infragistics.Win.HeaderStyle.WindowsXPCommand;
  637. appearance69.BackColor = System.Drawing.SystemColors.Window;
  638. appearance69.BorderColor = System.Drawing.Color.Silver;
  639. this.cmb_QuYu.DisplayLayout.Override.RowAppearance = appearance69;
  640. this.cmb_QuYu.DisplayLayout.Override.RowSelectors = Infragistics.Win.DefaultableBoolean.False;
  641. appearance70.BackColor = System.Drawing.SystemColors.ControlLight;
  642. this.cmb_QuYu.DisplayLayout.Override.TemplateAddRowAppearance = appearance70;
  643. this.cmb_QuYu.DisplayLayout.ScrollBounds = Infragistics.Win.UltraWinGrid.ScrollBounds.ScrollToFill;
  644. this.cmb_QuYu.DisplayLayout.ScrollStyle = Infragistics.Win.UltraWinGrid.ScrollStyle.Immediate;
  645. this.cmb_QuYu.DisplayLayout.ViewStyleBand = Infragistics.Win.UltraWinGrid.ViewStyleBand.OutlookGroupBy;
  646. this.cmb_QuYu.DisplayMember = "";
  647. this.cmb_QuYu.Enabled = false;
  648. this.cmb_QuYu.FlatMode = true;
  649. this.cmb_QuYu.Location = new System.Drawing.Point(640, 30);
  650. this.cmb_QuYu.Name = "cmb_QuYu";
  651. this.cmb_QuYu.Size = new System.Drawing.Size(86, 19);
  652. this.cmb_QuYu.TabIndex = 277;
  653. this.cmb_QuYu.TabStop = false;
  654. this.cmb_QuYu.ValueMember = "";
  655. //
  656. // ultraCheckEditor1
  657. //
  658. this.ultraCheckEditor1.Location = new System.Drawing.Point(580, 32);
  659. this.ultraCheckEditor1.Name = "ultraCheckEditor1";
  660. this.ultraCheckEditor1.Size = new System.Drawing.Size(52, 16);
  661. this.ultraCheckEditor1.TabIndex = 276;
  662. this.ultraCheckEditor1.TabStop = false;
  663. this.ultraCheckEditor1.Text = "区域";
  664. this.ultraCheckEditor1.CheckedChanged += new System.EventHandler(this.ultraCheckEditor1_CheckedChanged);
  665. //
  666. // txt_PIhao_End
  667. //
  668. this.txt_PIhao_End.AutoSize = true;
  669. this.txt_PIhao_End.Enabled = false;
  670. this.txt_PIhao_End.FlatMode = true;
  671. this.txt_PIhao_End.Location = new System.Drawing.Point(545, 30);
  672. this.txt_PIhao_End.Name = "txt_PIhao_End";
  673. this.txt_PIhao_End.Size = new System.Drawing.Size(29, 19);
  674. this.txt_PIhao_End.TabIndex = 275;
  675. this.txt_PIhao_End.TabStop = false;
  676. this.txt_PIhao_End.Tag = "";
  677. //
  678. // txt_Pihao_Top
  679. //
  680. this.txt_Pihao_Top.AutoSize = true;
  681. this.txt_Pihao_Top.Enabled = false;
  682. this.txt_Pihao_Top.FlatMode = true;
  683. this.txt_Pihao_Top.Location = new System.Drawing.Point(456, 30);
  684. this.txt_Pihao_Top.Name = "txt_Pihao_Top";
  685. this.txt_Pihao_Top.Size = new System.Drawing.Size(90, 19);
  686. this.txt_Pihao_Top.TabIndex = 274;
  687. this.txt_Pihao_Top.TabStop = false;
  688. this.txt_Pihao_Top.Tag = "";
  689. //
  690. // txt_BNumber
  691. //
  692. this.txt_BNumber.AutoSize = true;
  693. this.txt_BNumber.Enabled = false;
  694. this.txt_BNumber.FlatMode = true;
  695. this.txt_BNumber.Location = new System.Drawing.Point(794, 6);
  696. this.txt_BNumber.Name = "txt_BNumber";
  697. this.txt_BNumber.Size = new System.Drawing.Size(90, 19);
  698. this.txt_BNumber.TabIndex = 273;
  699. this.txt_BNumber.TabStop = false;
  700. this.txt_BNumber.Tag = "";
  701. //
  702. // chk_BNumber
  703. //
  704. this.chk_BNumber.Location = new System.Drawing.Point(732, 10);
  705. this.chk_BNumber.Name = "chk_BNumber";
  706. this.chk_BNumber.Size = new System.Drawing.Size(48, 16);
  707. this.chk_BNumber.TabIndex = 272;
  708. this.chk_BNumber.TabStop = false;
  709. this.chk_BNumber.Text = "批号";
  710. this.chk_BNumber.CheckedChanged += new System.EventHandler(this.chk_BNumber_CheckedChanged);
  711. //
  712. // txt_PiHao_Begin
  713. //
  714. this.txt_PiHao_Begin.AutoSize = true;
  715. this.txt_PiHao_Begin.Enabled = false;
  716. this.txt_PiHao_Begin.FlatMode = true;
  717. this.txt_PiHao_Begin.Location = new System.Drawing.Point(430, 30);
  718. this.txt_PiHao_Begin.Name = "txt_PiHao_Begin";
  719. this.txt_PiHao_Begin.Size = new System.Drawing.Size(26, 19);
  720. this.txt_PiHao_Begin.TabIndex = 269;
  721. this.txt_PiHao_Begin.TabStop = false;
  722. this.txt_PiHao_Begin.Tag = "";
  723. //
  724. // chk_PiHao
  725. //
  726. this.chk_PiHao.Location = new System.Drawing.Point(358, 32);
  727. this.chk_PiHao.Name = "chk_PiHao";
  728. this.chk_PiHao.Size = new System.Drawing.Size(72, 16);
  729. this.chk_PiHao.TabIndex = 268;
  730. this.chk_PiHao.TabStop = false;
  731. this.chk_PiHao.Text = "卷板包号";
  732. this.chk_PiHao.CheckedChanged += new System.EventHandler(this.chk_PiHao_CheckedChanged);
  733. //
  734. // chk_SelectAll
  735. //
  736. this.chk_SelectAll.FlatMode = true;
  737. this.chk_SelectAll.Location = new System.Drawing.Point(892, 30);
  738. this.chk_SelectAll.Name = "chk_SelectAll";
  739. this.chk_SelectAll.Size = new System.Drawing.Size(50, 16);
  740. this.chk_SelectAll.TabIndex = 267;
  741. this.chk_SelectAll.Text = "全选";
  742. this.chk_SelectAll.CheckedChanged += new System.EventHandler(this.chk_SelectAll_CheckedChanged);
  743. //
  744. // chk_AllowFilter
  745. //
  746. this.chk_AllowFilter.Location = new System.Drawing.Point(892, 4);
  747. this.chk_AllowFilter.Name = "chk_AllowFilter";
  748. this.chk_AllowFilter.Size = new System.Drawing.Size(48, 20);
  749. this.chk_AllowFilter.TabIndex = 266;
  750. this.chk_AllowFilter.TabStop = false;
  751. this.chk_AllowFilter.Text = "过滤";
  752. this.chk_AllowFilter.CheckedChanged += new System.EventHandler(this.chk_AllowFilter_CheckedChanged);
  753. //
  754. // txt_GangP
  755. //
  756. this.txt_GangP.AutoSize = true;
  757. this.txt_GangP.Enabled = false;
  758. this.txt_GangP.FlatMode = true;
  759. this.txt_GangP.Location = new System.Drawing.Point(640, 8);
  760. this.txt_GangP.Name = "txt_GangP";
  761. this.txt_GangP.Size = new System.Drawing.Size(86, 19);
  762. this.txt_GangP.TabIndex = 265;
  763. this.txt_GangP.TabStop = false;
  764. this.txt_GangP.Tag = "";
  765. //
  766. // chk_BanHao
  767. //
  768. this.chk_BanHao.Location = new System.Drawing.Point(580, 10);
  769. this.chk_BanHao.Name = "chk_BanHao";
  770. this.chk_BanHao.Size = new System.Drawing.Size(60, 16);
  771. this.chk_BanHao.TabIndex = 264;
  772. this.chk_BanHao.TabStop = false;
  773. this.chk_BanHao.Text = "板坯号";
  774. this.chk_BanHao.CheckedChanged += new System.EventHandler(this.chk_BanHao_CheckedChanged);
  775. //
  776. // txt_RollHao
  777. //
  778. this.txt_RollHao.AutoSize = true;
  779. this.txt_RollHao.Enabled = false;
  780. this.txt_RollHao.FlatMode = true;
  781. this.txt_RollHao.Location = new System.Drawing.Point(430, 8);
  782. this.txt_RollHao.Name = "txt_RollHao";
  783. this.txt_RollHao.Size = new System.Drawing.Size(144, 19);
  784. this.txt_RollHao.TabIndex = 263;
  785. this.txt_RollHao.TabStop = false;
  786. this.txt_RollHao.Tag = "";
  787. //
  788. // chk_RollHao
  789. //
  790. this.chk_RollHao.Location = new System.Drawing.Point(358, 12);
  791. this.chk_RollHao.Name = "chk_RollHao";
  792. this.chk_RollHao.Size = new System.Drawing.Size(60, 16);
  793. this.chk_RollHao.TabIndex = 262;
  794. this.chk_RollHao.TabStop = false;
  795. this.chk_RollHao.Text = "钢卷号";
  796. this.chk_RollHao.CheckedChanged += new System.EventHandler(this.chk_RollHao_CheckedChanged);
  797. //
  798. // txt_PlanID
  799. //
  800. this.txt_PlanID.AutoSize = true;
  801. this.txt_PlanID.Enabled = false;
  802. this.txt_PlanID.FlatMode = true;
  803. this.txt_PlanID.Location = new System.Drawing.Point(248, 30);
  804. this.txt_PlanID.Name = "txt_PlanID";
  805. this.txt_PlanID.Size = new System.Drawing.Size(104, 19);
  806. this.txt_PlanID.TabIndex = 261;
  807. this.txt_PlanID.TabStop = false;
  808. this.txt_PlanID.Tag = "";
  809. //
  810. // chk_PactID
  811. //
  812. this.chk_PactID.Location = new System.Drawing.Point(190, 34);
  813. this.chk_PactID.Name = "chk_PactID";
  814. this.chk_PactID.Size = new System.Drawing.Size(60, 16);
  815. this.chk_PactID.TabIndex = 260;
  816. this.chk_PactID.TabStop = false;
  817. this.chk_PactID.Text = "合同号";
  818. this.chk_PactID.CheckedChanged += new System.EventHandler(this.chk_PactID_CheckedChanged);
  819. //
  820. // txt_OrderNO
  821. //
  822. this.txt_OrderNO.AutoSize = true;
  823. this.txt_OrderNO.Enabled = false;
  824. this.txt_OrderNO.FlatMode = true;
  825. this.txt_OrderNO.Location = new System.Drawing.Point(248, 8);
  826. this.txt_OrderNO.Name = "txt_OrderNO";
  827. this.txt_OrderNO.Size = new System.Drawing.Size(104, 19);
  828. this.txt_OrderNO.TabIndex = 259;
  829. this.txt_OrderNO.TabStop = false;
  830. this.txt_OrderNO.Tag = "";
  831. //
  832. // chk_OrderNO
  833. //
  834. this.chk_OrderNO.Location = new System.Drawing.Point(190, 12);
  835. this.chk_OrderNO.Name = "chk_OrderNO";
  836. this.chk_OrderNO.Size = new System.Drawing.Size(60, 16);
  837. this.chk_OrderNO.TabIndex = 258;
  838. this.chk_OrderNO.TabStop = false;
  839. this.chk_OrderNO.Text = "订单号";
  840. this.chk_OrderNO.CheckedChanged += new System.EventHandler(this.chk_OrderNO_CheckedChanged);
  841. //
  842. // Lab_To
  843. //
  844. this.Lab_To.FlatMode = true;
  845. this.Lab_To.Location = new System.Drawing.Point(48, 32);
  846. this.Lab_To.Name = "Lab_To";
  847. this.Lab_To.Size = new System.Drawing.Size(17, 16);
  848. this.Lab_To.TabIndex = 257;
  849. this.Lab_To.Text = "到";
  850. //
  851. // chk_CollectTime
  852. //
  853. this.chk_CollectTime.ButtonStyle = Infragistics.Win.UIElementButtonStyle.Office2003ToolbarButton;
  854. this.chk_CollectTime.Location = new System.Drawing.Point(20, 10);
  855. this.chk_CollectTime.Name = "chk_CollectTime";
  856. this.chk_CollectTime.Size = new System.Drawing.Size(48, 16);
  857. this.chk_CollectTime.TabIndex = 256;
  858. this.chk_CollectTime.TabStop = false;
  859. this.chk_CollectTime.Text = "时间";
  860. this.chk_CollectTime.CheckedChanged += new System.EventHandler(this.chk_CollectTime_CheckedChanged);
  861. //
  862. // ultraExpandableGroupBox1
  863. //
  864. this.ultraExpandableGroupBox1.Controls.Add(this.ultraExpandableGroupBoxPanel1);
  865. this.ultraExpandableGroupBox1.Dock = System.Windows.Forms.DockStyle.Top;
  866. this.ultraExpandableGroupBox1.ExpandedSize = new System.Drawing.Size(0, 0);
  867. this.ultraExpandableGroupBox1.Location = new System.Drawing.Point(0, 84);
  868. this.ultraExpandableGroupBox1.Name = "ultraExpandableGroupBox1";
  869. this.ultraExpandableGroupBox1.Size = new System.Drawing.Size(968, 206);
  870. this.ultraExpandableGroupBox1.SupportThemes = false;
  871. this.ultraExpandableGroupBox1.TabIndex = 2;
  872. this.ultraExpandableGroupBox1.Text = "编辑区";
  873. //
  874. // ultraExpandableGroupBoxPanel1
  875. //
  876. this.ultraExpandableGroupBoxPanel1.Controls.Add(this.gb_Press);
  877. this.ultraExpandableGroupBoxPanel1.Controls.Add(this.panel2);
  878. this.ultraExpandableGroupBoxPanel1.Dock = System.Windows.Forms.DockStyle.Fill;
  879. this.ultraExpandableGroupBoxPanel1.Location = new System.Drawing.Point(3, 19);
  880. this.ultraExpandableGroupBoxPanel1.Name = "ultraExpandableGroupBoxPanel1";
  881. this.ultraExpandableGroupBoxPanel1.Size = new System.Drawing.Size(962, 184);
  882. this.ultraExpandableGroupBoxPanel1.TabIndex = 0;
  883. //
  884. // gb_Press
  885. //
  886. appearance71.BackColor = System.Drawing.Color.Ivory;
  887. this.gb_Press.DisplayLayout.Appearance = appearance71;
  888. ultraGridColumn71.Header.Caption = "出库单号";
  889. ultraGridColumn71.Header.VisiblePosition = 0;
  890. ultraGridColumn71.Hidden = true;
  891. ultraGridColumn71.RowLayoutColumnInfo.OriginX = 26;
  892. ultraGridColumn71.RowLayoutColumnInfo.OriginY = 0;
  893. ultraGridColumn71.RowLayoutColumnInfo.PreferredCellSize = new System.Drawing.Size(77, 0);
  894. ultraGridColumn71.RowLayoutColumnInfo.SpanX = 1;
  895. ultraGridColumn71.RowLayoutColumnInfo.SpanY = 1;
  896. ultraGridColumn72.Header.Caption = "钢卷号";
  897. ultraGridColumn72.Header.VisiblePosition = 1;
  898. ultraGridColumn72.RowLayoutColumnInfo.OriginX = 2;
  899. ultraGridColumn72.RowLayoutColumnInfo.OriginY = 0;
  900. ultraGridColumn72.RowLayoutColumnInfo.PreferredCellSize = new System.Drawing.Size(94, 0);
  901. ultraGridColumn72.RowLayoutColumnInfo.SpanX = 1;
  902. ultraGridColumn72.RowLayoutColumnInfo.SpanY = 1;
  903. ultraGridColumn73.Header.Caption = "板坯号";
  904. ultraGridColumn73.Header.VisiblePosition = 2;
  905. ultraGridColumn73.RowLayoutColumnInfo.OriginX = 3;
  906. ultraGridColumn73.RowLayoutColumnInfo.OriginY = 0;
  907. ultraGridColumn73.RowLayoutColumnInfo.PreferredCellSize = new System.Drawing.Size(96, 0);
  908. ultraGridColumn73.RowLayoutColumnInfo.SpanX = 1;
  909. ultraGridColumn73.RowLayoutColumnInfo.SpanY = 1;
  910. ultraGridColumn74.Header.Caption = "合同号";
  911. ultraGridColumn74.Header.VisiblePosition = 3;
  912. ultraGridColumn74.RowLayoutColumnInfo.OriginX = 6;
  913. ultraGridColumn74.RowLayoutColumnInfo.OriginY = 0;
  914. ultraGridColumn74.RowLayoutColumnInfo.PreferredCellSize = new System.Drawing.Size(99, 0);
  915. ultraGridColumn74.RowLayoutColumnInfo.SpanX = 1;
  916. ultraGridColumn74.RowLayoutColumnInfo.SpanY = 1;
  917. ultraGridColumn75.Header.Caption = "订单号";
  918. ultraGridColumn75.Header.VisiblePosition = 4;
  919. ultraGridColumn75.RowLayoutColumnInfo.OriginX = 8;
  920. ultraGridColumn75.RowLayoutColumnInfo.OriginY = 0;
  921. ultraGridColumn75.RowLayoutColumnInfo.PreferredCellSize = new System.Drawing.Size(101, 0);
  922. ultraGridColumn75.RowLayoutColumnInfo.SpanX = 1;
  923. ultraGridColumn75.RowLayoutColumnInfo.SpanY = 1;
  924. ultraGridColumn76.Header.Caption = "交货期";
  925. ultraGridColumn76.Header.VisiblePosition = 5;
  926. ultraGridColumn76.RowLayoutColumnInfo.OriginX = 23;
  927. ultraGridColumn76.RowLayoutColumnInfo.OriginY = 0;
  928. ultraGridColumn76.RowLayoutColumnInfo.SpanX = 1;
  929. ultraGridColumn76.RowLayoutColumnInfo.SpanY = 1;
  930. ultraGridColumn77.Header.Caption = "厚度";
  931. ultraGridColumn77.Header.VisiblePosition = 6;
  932. ultraGridColumn77.RowLayoutColumnInfo.OriginX = 11;
  933. ultraGridColumn77.RowLayoutColumnInfo.OriginY = 0;
  934. ultraGridColumn77.RowLayoutColumnInfo.PreferredCellSize = new System.Drawing.Size(60, 0);
  935. ultraGridColumn77.RowLayoutColumnInfo.SpanX = 1;
  936. ultraGridColumn77.RowLayoutColumnInfo.SpanY = 1;
  937. ultraGridColumn78.Header.Caption = "宽度";
  938. ultraGridColumn78.Header.VisiblePosition = 7;
  939. ultraGridColumn78.RowLayoutColumnInfo.OriginX = 12;
  940. ultraGridColumn78.RowLayoutColumnInfo.OriginY = 0;
  941. ultraGridColumn78.RowLayoutColumnInfo.PreferredCellSize = new System.Drawing.Size(60, 0);
  942. ultraGridColumn78.RowLayoutColumnInfo.SpanX = 1;
  943. ultraGridColumn78.RowLayoutColumnInfo.SpanY = 1;
  944. ultraGridColumn79.Header.Caption = "长度";
  945. ultraGridColumn79.Header.VisiblePosition = 8;
  946. ultraGridColumn79.RowLayoutColumnInfo.OriginX = 13;
  947. ultraGridColumn79.RowLayoutColumnInfo.OriginY = 0;
  948. ultraGridColumn79.RowLayoutColumnInfo.PreferredCellSize = new System.Drawing.Size(45, 0);
  949. ultraGridColumn79.RowLayoutColumnInfo.SpanX = 1;
  950. ultraGridColumn79.RowLayoutColumnInfo.SpanY = 1;
  951. ultraGridColumn80.Header.Caption = "重量";
  952. ultraGridColumn80.Header.VisiblePosition = 9;
  953. ultraGridColumn80.RowLayoutColumnInfo.OriginX = 15;
  954. ultraGridColumn80.RowLayoutColumnInfo.OriginY = 0;
  955. ultraGridColumn80.RowLayoutColumnInfo.SpanX = 1;
  956. ultraGridColumn80.RowLayoutColumnInfo.SpanY = 1;
  957. ultraGridColumn81.Header.Caption = "数量";
  958. ultraGridColumn81.Header.VisiblePosition = 10;
  959. ultraGridColumn81.RowLayoutColumnInfo.OriginX = 14;
  960. ultraGridColumn81.RowLayoutColumnInfo.OriginY = 0;
  961. ultraGridColumn81.RowLayoutColumnInfo.PreferredCellSize = new System.Drawing.Size(67, 0);
  962. ultraGridColumn81.RowLayoutColumnInfo.SpanX = 1;
  963. ultraGridColumn81.RowLayoutColumnInfo.SpanY = 1;
  964. ultraGridColumn82.Header.Caption = "牌号";
  965. ultraGridColumn82.Header.VisiblePosition = 11;
  966. ultraGridColumn82.RowLayoutColumnInfo.OriginX = 10;
  967. ultraGridColumn82.RowLayoutColumnInfo.OriginY = 0;
  968. ultraGridColumn82.RowLayoutColumnInfo.PreferredCellSize = new System.Drawing.Size(71, 0);
  969. ultraGridColumn82.RowLayoutColumnInfo.SpanX = 1;
  970. ultraGridColumn82.RowLayoutColumnInfo.SpanY = 1;
  971. ultraGridColumn83.Header.Caption = "综合判定";
  972. ultraGridColumn83.Header.VisiblePosition = 12;
  973. ultraGridColumn83.RowLayoutColumnInfo.OriginX = 17;
  974. ultraGridColumn83.RowLayoutColumnInfo.OriginY = 0;
  975. ultraGridColumn83.RowLayoutColumnInfo.PreferredCellSize = new System.Drawing.Size(64, 0);
  976. ultraGridColumn83.RowLayoutColumnInfo.SpanX = 1;
  977. ultraGridColumn83.RowLayoutColumnInfo.SpanY = 1;
  978. ultraGridColumn84.Header.Caption = "特记事项";
  979. ultraGridColumn84.Header.VisiblePosition = 13;
  980. ultraGridColumn84.RowLayoutColumnInfo.OriginX = 21;
  981. ultraGridColumn84.RowLayoutColumnInfo.OriginY = 0;
  982. ultraGridColumn84.RowLayoutColumnInfo.SpanX = 1;
  983. ultraGridColumn84.RowLayoutColumnInfo.SpanY = 1;
  984. ultraGridColumn85.Header.Caption = "车辆号";
  985. ultraGridColumn85.Header.VisiblePosition = 14;
  986. ultraGridColumn85.Hidden = true;
  987. ultraGridColumn85.RowLayoutColumnInfo.OriginX = 23;
  988. ultraGridColumn85.RowLayoutColumnInfo.OriginY = 0;
  989. ultraGridColumn85.RowLayoutColumnInfo.PreferredCellSize = new System.Drawing.Size(78, 0);
  990. ultraGridColumn85.RowLayoutColumnInfo.SpanX = 1;
  991. ultraGridColumn85.RowLayoutColumnInfo.SpanY = 1;
  992. ultraGridColumn86.Header.Caption = "质保书编号";
  993. ultraGridColumn86.Header.VisiblePosition = 15;
  994. ultraGridColumn86.RowLayoutColumnInfo.OriginX = 20;
  995. ultraGridColumn86.RowLayoutColumnInfo.OriginY = 0;
  996. ultraGridColumn86.RowLayoutColumnInfo.PreferredCellSize = new System.Drawing.Size(69, 0);
  997. ultraGridColumn86.RowLayoutColumnInfo.SpanX = 1;
  998. ultraGridColumn86.RowLayoutColumnInfo.SpanY = 1;
  999. ultraGridColumn87.Header.Caption = "垛位";
  1000. ultraGridColumn87.Header.VisiblePosition = 16;
  1001. ultraGridColumn87.RowLayoutColumnInfo.OriginX = 9;
  1002. ultraGridColumn87.RowLayoutColumnInfo.OriginY = 0;
  1003. ultraGridColumn87.RowLayoutColumnInfo.PreferredCellSize = new System.Drawing.Size(90, 0);
  1004. ultraGridColumn87.RowLayoutColumnInfo.SpanX = 1;
  1005. ultraGridColumn87.RowLayoutColumnInfo.SpanY = 1;
  1006. ultraGridColumn88.Header.Caption = "登记人";
  1007. ultraGridColumn88.Header.VisiblePosition = 17;
  1008. ultraGridColumn88.RowLayoutColumnInfo.OriginX = 27;
  1009. ultraGridColumn88.RowLayoutColumnInfo.OriginY = 0;
  1010. ultraGridColumn88.RowLayoutColumnInfo.SpanX = 1;
  1011. ultraGridColumn88.RowLayoutColumnInfo.SpanY = 1;
  1012. ultraGridColumn89.Header.Caption = "登记时间";
  1013. ultraGridColumn89.Header.VisiblePosition = 18;
  1014. ultraGridColumn89.RowLayoutColumnInfo.OriginX = 28;
  1015. ultraGridColumn89.RowLayoutColumnInfo.OriginY = 0;
  1016. ultraGridColumn89.RowLayoutColumnInfo.SpanX = 1;
  1017. ultraGridColumn89.RowLayoutColumnInfo.SpanY = 1;
  1018. ultraGridColumn90.Header.Caption = "生产班次";
  1019. ultraGridColumn90.Header.VisiblePosition = 19;
  1020. ultraGridColumn90.RowLayoutColumnInfo.OriginX = 24;
  1021. ultraGridColumn90.RowLayoutColumnInfo.OriginY = 0;
  1022. ultraGridColumn90.RowLayoutColumnInfo.PreferredCellSize = new System.Drawing.Size(8, 0);
  1023. ultraGridColumn90.RowLayoutColumnInfo.SpanX = 1;
  1024. ultraGridColumn90.RowLayoutColumnInfo.SpanY = 1;
  1025. ultraGridColumn91.Header.Caption = "生产班组";
  1026. ultraGridColumn91.Header.VisiblePosition = 20;
  1027. ultraGridColumn91.RowLayoutColumnInfo.OriginX = 25;
  1028. ultraGridColumn91.RowLayoutColumnInfo.OriginY = 0;
  1029. ultraGridColumn91.RowLayoutColumnInfo.PreferredCellSize = new System.Drawing.Size(64, 0);
  1030. ultraGridColumn91.RowLayoutColumnInfo.SpanX = 1;
  1031. ultraGridColumn91.RowLayoutColumnInfo.SpanY = 1;
  1032. ultraGridColumn92.Header.Caption = "工单号";
  1033. ultraGridColumn92.Header.VisiblePosition = 21;
  1034. ultraGridColumn92.RowLayoutColumnInfo.OriginX = 4;
  1035. ultraGridColumn92.RowLayoutColumnInfo.OriginY = 0;
  1036. ultraGridColumn92.RowLayoutColumnInfo.PreferredCellSize = new System.Drawing.Size(83, 0);
  1037. ultraGridColumn92.RowLayoutColumnInfo.SpanX = 1;
  1038. ultraGridColumn92.RowLayoutColumnInfo.SpanY = 1;
  1039. ultraGridColumn93.Header.Caption = "卷板包号";
  1040. ultraGridColumn93.Header.VisiblePosition = 23;
  1041. ultraGridColumn93.RowLayoutColumnInfo.OriginX = 0;
  1042. ultraGridColumn93.RowLayoutColumnInfo.OriginY = 0;
  1043. ultraGridColumn93.RowLayoutColumnInfo.PreferredCellSize = new System.Drawing.Size(107, 0);
  1044. ultraGridColumn93.RowLayoutColumnInfo.SpanX = 1;
  1045. ultraGridColumn93.RowLayoutColumnInfo.SpanY = 1;
  1046. ultraGridColumn94.Header.Caption = "生产时间";
  1047. ultraGridColumn94.Header.VisiblePosition = 22;
  1048. ultraGridColumn94.RowLayoutColumnInfo.OriginX = 26;
  1049. ultraGridColumn94.RowLayoutColumnInfo.OriginY = 0;
  1050. ultraGridColumn94.RowLayoutColumnInfo.PreferredCellSize = new System.Drawing.Size(94, 0);
  1051. ultraGridColumn94.RowLayoutColumnInfo.SpanX = 1;
  1052. ultraGridColumn94.RowLayoutColumnInfo.SpanY = 1;
  1053. ultraGridColumn95.Header.VisiblePosition = 24;
  1054. ultraGridColumn95.Hidden = true;
  1055. ultraGridColumn95.RowLayoutColumnInfo.OriginX = 29;
  1056. ultraGridColumn95.RowLayoutColumnInfo.OriginY = 0;
  1057. ultraGridColumn95.RowLayoutColumnInfo.SpanX = 1;
  1058. ultraGridColumn95.RowLayoutColumnInfo.SpanY = 1;
  1059. ultraGridColumn96.Header.Caption = "表面缺陷";
  1060. ultraGridColumn96.Header.VisiblePosition = 25;
  1061. ultraGridColumn96.RowLayoutColumnInfo.OriginX = 18;
  1062. ultraGridColumn96.RowLayoutColumnInfo.OriginY = 0;
  1063. ultraGridColumn96.RowLayoutColumnInfo.SpanX = 1;
  1064. ultraGridColumn96.RowLayoutColumnInfo.SpanY = 1;
  1065. ultraGridColumn97.Header.Caption = "工艺类型";
  1066. ultraGridColumn97.Header.VisiblePosition = 26;
  1067. ultraGridColumn97.RowLayoutColumnInfo.OriginX = 19;
  1068. ultraGridColumn97.RowLayoutColumnInfo.OriginY = 0;
  1069. ultraGridColumn97.RowLayoutColumnInfo.SpanX = 1;
  1070. ultraGridColumn97.RowLayoutColumnInfo.SpanY = 1;
  1071. ultraGridColumn98.Header.Caption = "产线";
  1072. ultraGridColumn98.Header.VisiblePosition = 28;
  1073. ultraGridColumn98.RowLayoutColumnInfo.OriginX = 22;
  1074. ultraGridColumn98.RowLayoutColumnInfo.OriginY = 0;
  1075. ultraGridColumn98.RowLayoutColumnInfo.SpanX = 1;
  1076. ultraGridColumn98.RowLayoutColumnInfo.SpanY = 1;
  1077. ultraGridColumn99.Header.Caption = "小件计量";
  1078. ultraGridColumn99.Header.VisiblePosition = 29;
  1079. ultraGridColumn99.RowLayoutColumnInfo.OriginX = 16;
  1080. ultraGridColumn99.RowLayoutColumnInfo.OriginY = 0;
  1081. ultraGridColumn99.RowLayoutColumnInfo.PreferredCellSize = new System.Drawing.Size(112, 0);
  1082. ultraGridColumn99.RowLayoutColumnInfo.SpanX = 1;
  1083. ultraGridColumn99.RowLayoutColumnInfo.SpanY = 1;
  1084. ultraGridColumn100.Header.Caption = "炉号";
  1085. ultraGridColumn100.Header.VisiblePosition = 27;
  1086. ultraGridColumn100.RowLayoutColumnInfo.OriginX = 5;
  1087. ultraGridColumn100.RowLayoutColumnInfo.OriginY = 0;
  1088. ultraGridColumn100.RowLayoutColumnInfo.PreferredCellSize = new System.Drawing.Size(85, 0);
  1089. ultraGridColumn100.RowLayoutColumnInfo.SpanX = 1;
  1090. ultraGridColumn100.RowLayoutColumnInfo.SpanY = 1;
  1091. ultraGridColumn101.Header.Caption = "批号";
  1092. ultraGridColumn101.Header.VisiblePosition = 30;
  1093. ultraGridColumn101.RowLayoutColumnInfo.OriginX = 1;
  1094. ultraGridColumn101.RowLayoutColumnInfo.OriginY = 0;
  1095. ultraGridColumn101.RowLayoutColumnInfo.PreferredCellSize = new System.Drawing.Size(93, 0);
  1096. ultraGridColumn101.RowLayoutColumnInfo.SpanX = 1;
  1097. ultraGridColumn101.RowLayoutColumnInfo.SpanY = 1;
  1098. ultraGridColumn102.Header.Caption = "执行标准";
  1099. ultraGridColumn102.Header.VisiblePosition = 31;
  1100. ultraGridColumn102.RowLayoutColumnInfo.OriginX = 7;
  1101. ultraGridColumn102.RowLayoutColumnInfo.OriginY = 0;
  1102. ultraGridColumn102.RowLayoutColumnInfo.PreferredCellSize = new System.Drawing.Size(94, 0);
  1103. ultraGridColumn102.RowLayoutColumnInfo.SpanX = 1;
  1104. ultraGridColumn102.RowLayoutColumnInfo.SpanY = 1;
  1105. ultraGridBand3.Columns.AddRange(new object[] {
  1106. ultraGridColumn71,
  1107. ultraGridColumn72,
  1108. ultraGridColumn73,
  1109. ultraGridColumn74,
  1110. ultraGridColumn75,
  1111. ultraGridColumn76,
  1112. ultraGridColumn77,
  1113. ultraGridColumn78,
  1114. ultraGridColumn79,
  1115. ultraGridColumn80,
  1116. ultraGridColumn81,
  1117. ultraGridColumn82,
  1118. ultraGridColumn83,
  1119. ultraGridColumn84,
  1120. ultraGridColumn85,
  1121. ultraGridColumn86,
  1122. ultraGridColumn87,
  1123. ultraGridColumn88,
  1124. ultraGridColumn89,
  1125. ultraGridColumn90,
  1126. ultraGridColumn91,
  1127. ultraGridColumn92,
  1128. ultraGridColumn93,
  1129. ultraGridColumn94,
  1130. ultraGridColumn95,
  1131. ultraGridColumn96,
  1132. ultraGridColumn97,
  1133. ultraGridColumn98,
  1134. ultraGridColumn99,
  1135. ultraGridColumn100,
  1136. ultraGridColumn101,
  1137. ultraGridColumn102});
  1138. appearance72.BackColor = System.Drawing.Color.LightSteelBlue;
  1139. ultraGridBand3.Header.Appearance = appearance72;
  1140. ultraGridBand3.Override.RowSelectors = Infragistics.Win.DefaultableBoolean.True;
  1141. summarySettings6.DisplayFormat = "{0}块";
  1142. summarySettings6.GroupBySummaryValueAppearance = appearance73;
  1143. summarySettings7.DisplayFormat = "{0}吨";
  1144. summarySettings7.GroupBySummaryValueAppearance = appearance74;
  1145. ultraGridBand3.Summaries.AddRange(new Infragistics.Win.UltraWinGrid.SummarySettings[] {
  1146. summarySettings6,
  1147. summarySettings7});
  1148. ultraGridBand3.UseRowLayout = true;
  1149. this.gb_Press.DisplayLayout.BandsSerializer.Add(ultraGridBand3);
  1150. this.gb_Press.DisplayLayout.CaptionVisible = Infragistics.Win.DefaultableBoolean.False;
  1151. appearance75.BackColor = System.Drawing.SystemColors.ActiveBorder;
  1152. appearance75.BackColor2 = System.Drawing.SystemColors.ControlDark;
  1153. appearance75.BackGradientStyle = Infragistics.Win.GradientStyle.Vertical;
  1154. appearance75.BorderColor = System.Drawing.SystemColors.Window;
  1155. this.gb_Press.DisplayLayout.GroupByBox.Appearance = appearance75;
  1156. appearance76.ForeColor = System.Drawing.SystemColors.GrayText;
  1157. this.gb_Press.DisplayLayout.GroupByBox.BandLabelAppearance = appearance76;
  1158. this.gb_Press.DisplayLayout.GroupByBox.Hidden = true;
  1159. this.gb_Press.DisplayLayout.GroupByBox.Prompt = "将要分组的列拖至该区域!";
  1160. appearance77.BackColor = System.Drawing.SystemColors.Window;
  1161. appearance77.ForeColor = System.Drawing.SystemColors.ControlText;
  1162. this.gb_Press.DisplayLayout.Override.ActiveCellAppearance = appearance77;
  1163. appearance78.BackColor = System.Drawing.SystemColors.Highlight;
  1164. appearance78.ForeColor = System.Drawing.SystemColors.HighlightText;
  1165. this.gb_Press.DisplayLayout.Override.ActiveRowAppearance = appearance78;
  1166. appearance79.BorderColor = System.Drawing.Color.Black;
  1167. appearance79.TextVAlign = Infragistics.Win.VAlign.Middle;
  1168. this.gb_Press.DisplayLayout.Override.CellAppearance = appearance79;
  1169. this.gb_Press.DisplayLayout.Override.CellClickAction = Infragistics.Win.UltraWinGrid.CellClickAction.EditAndSelectText;
  1170. this.gb_Press.DisplayLayout.Override.CellPadding = 0;
  1171. appearance80.BackColor = System.Drawing.SystemColors.Control;
  1172. appearance80.BackColor2 = System.Drawing.SystemColors.ControlDark;
  1173. appearance80.BackGradientAlignment = Infragistics.Win.GradientAlignment.Element;
  1174. appearance80.BackGradientStyle = Infragistics.Win.GradientStyle.Horizontal;
  1175. appearance80.BorderColor = System.Drawing.SystemColors.Window;
  1176. appearance80.TextHAlign = Infragistics.Win.HAlign.Left;
  1177. appearance80.TextVAlign = Infragistics.Win.VAlign.Middle;
  1178. this.gb_Press.DisplayLayout.Override.GroupByRowAppearance = appearance80;
  1179. this.gb_Press.DisplayLayout.Override.GroupBySummaryDisplayStyle = Infragistics.Win.UltraWinGrid.GroupBySummaryDisplayStyle.SummaryCells;
  1180. appearance81.BackColor = System.Drawing.Color.Silver;
  1181. this.gb_Press.DisplayLayout.Override.HeaderAppearance = appearance81;
  1182. this.gb_Press.DisplayLayout.Override.HeaderClickAction = Infragistics.Win.UltraWinGrid.HeaderClickAction.SortMulti;
  1183. this.gb_Press.DisplayLayout.Override.HeaderStyle = Infragistics.Win.HeaderStyle.Standard;
  1184. appearance82.BackColor = System.Drawing.SystemColors.Window;
  1185. appearance82.BorderColor = System.Drawing.Color.Black;
  1186. appearance82.TextVAlign = Infragistics.Win.VAlign.Middle;
  1187. this.gb_Press.DisplayLayout.Override.RowAppearance = appearance82;
  1188. appearance83.BackColor = System.Drawing.SystemColors.Window;
  1189. appearance83.BorderColor = System.Drawing.Color.Black;
  1190. appearance83.TextVAlign = Infragistics.Win.VAlign.Middle;
  1191. this.gb_Press.DisplayLayout.Override.RowPreviewAppearance = appearance83;
  1192. this.gb_Press.DisplayLayout.Override.RowSelectorHeaderStyle = Infragistics.Win.UltraWinGrid.RowSelectorHeaderStyle.SeparateElement;
  1193. this.gb_Press.DisplayLayout.Override.RowSelectorNumberStyle = Infragistics.Win.UltraWinGrid.RowSelectorNumberStyle.RowIndex;
  1194. this.gb_Press.DisplayLayout.Override.RowSelectors = Infragistics.Win.DefaultableBoolean.True;
  1195. appearance84.TextHAlign = Infragistics.Win.HAlign.Left;
  1196. appearance84.TextVAlign = Infragistics.Win.VAlign.Middle;
  1197. this.gb_Press.DisplayLayout.Override.SelectedRowAppearance = appearance84;
  1198. this.gb_Press.DisplayLayout.Override.SummaryDisplayArea = Infragistics.Win.UltraWinGrid.SummaryDisplayAreas.BottomFixed;
  1199. appearance85.BackColor = System.Drawing.SystemColors.Window;
  1200. this.gb_Press.DisplayLayout.Override.SummaryFooterAppearance = appearance85;
  1201. appearance86.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(255)))), ((int)(((byte)(255)))), ((int)(((byte)(192)))));
  1202. appearance86.ForeColor = System.Drawing.Color.Red;
  1203. this.gb_Press.DisplayLayout.Override.SummaryFooterCaptionAppearance = appearance86;
  1204. this.gb_Press.DisplayLayout.Override.SummaryFooterCaptionVisible = Infragistics.Win.DefaultableBoolean.False;
  1205. appearance87.BackColor = System.Drawing.Color.MistyRose;
  1206. appearance87.ForeColor = System.Drawing.Color.Blue;
  1207. appearance87.TextHAlign = Infragistics.Win.HAlign.Right;
  1208. appearance87.TextVAlign = Infragistics.Win.VAlign.Middle;
  1209. this.gb_Press.DisplayLayout.Override.SummaryValueAppearance = appearance87;
  1210. appearance88.BackColor = System.Drawing.SystemColors.ControlLight;
  1211. this.gb_Press.DisplayLayout.Override.TemplateAddRowAppearance = appearance88;
  1212. this.gb_Press.DisplayLayout.ScrollBounds = Infragistics.Win.UltraWinGrid.ScrollBounds.ScrollToFill;
  1213. this.gb_Press.DisplayLayout.ScrollStyle = Infragistics.Win.UltraWinGrid.ScrollStyle.Immediate;
  1214. this.gb_Press.DisplayLayout.ViewStyleBand = Infragistics.Win.UltraWinGrid.ViewStyleBand.OutlookGroupBy;
  1215. this.gb_Press.Dock = System.Windows.Forms.DockStyle.Fill;
  1216. this.gb_Press.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  1217. this.gb_Press.Location = new System.Drawing.Point(629, 0);
  1218. this.gb_Press.Name = "gb_Press";
  1219. this.gb_Press.Size = new System.Drawing.Size(333, 184);
  1220. this.gb_Press.TabIndex = 15;
  1221. this.gb_Press.Text = "ultraGrid1";
  1222. this.gb_Press.DoubleClickRow += new Infragistics.Win.UltraWinGrid.DoubleClickRowEventHandler(this.gb_Press_DoubleClickRow);
  1223. //
  1224. // panel2
  1225. //
  1226. this.panel2.Controls.Add(this.txt_Seq);
  1227. this.panel2.Controls.Add(this.cmb_plid);
  1228. this.panel2.Controls.Add(this.cmb_Gylx);
  1229. this.panel2.Controls.Add(this.ultraLabel16);
  1230. this.panel2.Controls.Add(this.ultraLabel15);
  1231. this.panel2.Controls.Add(this.cmb_area);
  1232. this.panel2.Controls.Add(this.ultraLabel14);
  1233. this.panel2.Controls.Add(this.txt_ZHPD);
  1234. this.panel2.Controls.Add(this.txt_Plact);
  1235. this.panel2.Controls.Add(this.txt_ReMark);
  1236. this.panel2.Controls.Add(this.ultraLabel13);
  1237. this.panel2.Controls.Add(this.dte_Time);
  1238. this.panel2.Controls.Add(this.Btn_Turn);
  1239. this.panel2.Controls.Add(this.ultraLabel11);
  1240. this.panel2.Controls.Add(this.txt_PaiHao);
  1241. this.panel2.Controls.Add(this.txt_Num);
  1242. this.panel2.Controls.Add(this.ultraLabel9);
  1243. this.panel2.Controls.Add(this.txt_WEIGHT);
  1244. this.panel2.Controls.Add(this.ultraLabel10);
  1245. this.panel2.Controls.Add(this.txt_Width);
  1246. this.panel2.Controls.Add(this.txt_Length);
  1247. this.panel2.Controls.Add(this.lab_cd);
  1248. this.panel2.Controls.Add(this.ultraLabel17);
  1249. this.panel2.Controls.Add(this.txt_Ply);
  1250. this.panel2.Controls.Add(this.ultraLabel12);
  1251. this.panel2.Controls.Add(this.ultraLabel20);
  1252. this.panel2.Controls.Add(this.cmb_ClassStream);
  1253. this.panel2.Controls.Add(this.ultraLabel7);
  1254. this.panel2.Controls.Add(this.cmb_ClassOreder);
  1255. this.panel2.Controls.Add(this.ultraLabel6);
  1256. this.panel2.Controls.Add(this.cmb_Buress);
  1257. this.panel2.Controls.Add(this.ultraLabel4);
  1258. this.panel2.Controls.Add(this.ultraLabel8);
  1259. this.panel2.Controls.Add(this.cmb_BugReaSon);
  1260. this.panel2.Controls.Add(this.ultraLabel25);
  1261. this.panel2.Controls.Add(this.ultraLabel2);
  1262. this.panel2.Controls.Add(this.ultraLabel3);
  1263. this.panel2.Controls.Add(this.txt_GangpeiH);
  1264. this.panel2.Controls.Add(this.ultraLabel1);
  1265. this.panel2.Controls.Add(this.txt_Scid_End_Y);
  1266. this.panel2.Controls.Add(this.txt_Scid_Begin_Y);
  1267. this.panel2.Controls.Add(this.txt_Scid_Top_Y);
  1268. this.panel2.Controls.Add(this.ultraLabel5);
  1269. this.panel2.Controls.Add(this.txt_TiShi);
  1270. this.panel2.Dock = System.Windows.Forms.DockStyle.Left;
  1271. this.panel2.Location = new System.Drawing.Point(0, 0);
  1272. this.panel2.Name = "panel2";
  1273. this.panel2.Size = new System.Drawing.Size(629, 184);
  1274. this.panel2.TabIndex = 0;
  1275. this.panel2.Enter += new System.EventHandler(this.txt_Scid_Top_Y_Enter);
  1276. //
  1277. // txt_Seq
  1278. //
  1279. this.txt_Seq.AutoSize = true;
  1280. this.txt_Seq.FlatMode = true;
  1281. this.txt_Seq.Location = new System.Drawing.Point(184, 107);
  1282. this.txt_Seq.Name = "txt_Seq";
  1283. this.txt_Seq.Size = new System.Drawing.Size(44, 19);
  1284. this.txt_Seq.TabIndex = 706;
  1285. //
  1286. // cmb_plid
  1287. //
  1288. this.cmb_plid.CharacterCasing = System.Windows.Forms.CharacterCasing.Normal;
  1289. this.cmb_plid.DisplayMember = "";
  1290. this.cmb_plid.Location = new System.Drawing.Point(288, 151);
  1291. this.cmb_plid.Name = "cmb_plid";
  1292. this.cmb_plid.Size = new System.Drawing.Size(116, 21);
  1293. this.cmb_plid.TabIndex = 705;
  1294. this.cmb_plid.ValueMember = "";
  1295. //
  1296. // cmb_Gylx
  1297. //
  1298. this.cmb_Gylx.CharacterCasing = System.Windows.Forms.CharacterCasing.Normal;
  1299. this.cmb_Gylx.DisplayMember = "";
  1300. this.cmb_Gylx.Location = new System.Drawing.Point(78, 152);
  1301. this.cmb_Gylx.Name = "cmb_Gylx";
  1302. this.cmb_Gylx.Size = new System.Drawing.Size(150, 21);
  1303. this.cmb_Gylx.TabIndex = 704;
  1304. this.cmb_Gylx.ValueMember = "";
  1305. //
  1306. // ultraLabel16
  1307. //
  1308. this.ultraLabel16.Location = new System.Drawing.Point(234, 155);
  1309. this.ultraLabel16.Name = "ultraLabel16";
  1310. this.ultraLabel16.Size = new System.Drawing.Size(54, 16);
  1311. this.ultraLabel16.TabIndex = 701;
  1312. this.ultraLabel16.Text = "产线";
  1313. //
  1314. // ultraLabel15
  1315. //
  1316. this.ultraLabel15.Location = new System.Drawing.Point(22, 157);
  1317. this.ultraLabel15.Name = "ultraLabel15";
  1318. this.ultraLabel15.Size = new System.Drawing.Size(56, 16);
  1319. this.ultraLabel15.TabIndex = 699;
  1320. this.ultraLabel15.Text = "工艺类型";
  1321. //
  1322. // cmb_area
  1323. //
  1324. this.cmb_area.CharacterCasing = System.Windows.Forms.CharacterCasing.Normal;
  1325. this.cmb_area.DisplayMember = "";
  1326. this.cmb_area.Location = new System.Drawing.Point(288, 54);
  1327. this.cmb_area.Name = "cmb_area";
  1328. this.cmb_area.Size = new System.Drawing.Size(116, 21);
  1329. this.cmb_area.TabIndex = 696;
  1330. this.cmb_area.ValueMember = "";
  1331. this.cmb_area.ValueChanged += new System.EventHandler(this.cmb_area_ValueChanged);
  1332. //
  1333. // ultraLabel14
  1334. //
  1335. this.ultraLabel14.Location = new System.Drawing.Point(234, 58);
  1336. this.ultraLabel14.Name = "ultraLabel14";
  1337. this.ultraLabel14.Size = new System.Drawing.Size(54, 16);
  1338. this.ultraLabel14.TabIndex = 697;
  1339. this.ultraLabel14.Text = "入库区域";
  1340. //
  1341. // txt_ZHPD
  1342. //
  1343. this.txt_ZHPD.CharacterCasing = System.Windows.Forms.CharacterCasing.Normal;
  1344. this.txt_ZHPD.DisplayMember = "";
  1345. this.txt_ZHPD.Location = new System.Drawing.Point(288, 29);
  1346. this.txt_ZHPD.Name = "txt_ZHPD";
  1347. this.txt_ZHPD.ReadOnly = true;
  1348. this.txt_ZHPD.Size = new System.Drawing.Size(116, 21);
  1349. this.txt_ZHPD.TabIndex = 695;
  1350. this.txt_ZHPD.ValueMember = "";
  1351. //
  1352. // txt_Plact
  1353. //
  1354. this.txt_Plact.AutoSize = true;
  1355. this.txt_Plact.FlatMode = true;
  1356. this.txt_Plact.Location = new System.Drawing.Point(78, 107);
  1357. this.txt_Plact.Name = "txt_Plact";
  1358. this.txt_Plact.Size = new System.Drawing.Size(106, 19);
  1359. this.txt_Plact.TabIndex = 6;
  1360. this.txt_Plact.Enter += new System.EventHandler(this.txt_Scid_Top_Y_Enter);
  1361. this.txt_Plact.KeyDown += new System.Windows.Forms.KeyEventHandler(this.txt_Scid_Top_Y_KeyDown);
  1362. //
  1363. // txt_ReMark
  1364. //
  1365. this.txt_ReMark.AutoSize = true;
  1366. this.txt_ReMark.FlatMode = true;
  1367. this.txt_ReMark.Location = new System.Drawing.Point(466, 128);
  1368. this.txt_ReMark.Name = "txt_ReMark";
  1369. this.txt_ReMark.Size = new System.Drawing.Size(112, 19);
  1370. this.txt_ReMark.TabIndex = 18;
  1371. this.txt_ReMark.Enter += new System.EventHandler(this.txt_Scid_Top_Y_Enter);
  1372. this.txt_ReMark.KeyDown += new System.Windows.Forms.KeyEventHandler(this.txt_Scid_Top_Y_KeyDown);
  1373. //
  1374. // ultraLabel13
  1375. //
  1376. this.ultraLabel13.Location = new System.Drawing.Point(436, 130);
  1377. this.ultraLabel13.Name = "ultraLabel13";
  1378. this.ultraLabel13.Size = new System.Drawing.Size(29, 16);
  1379. this.ultraLabel13.TabIndex = 694;
  1380. this.ultraLabel13.Text = "备注";
  1381. //
  1382. // dte_Time
  1383. //
  1384. this.dte_Time.Location = new System.Drawing.Point(465, 152);
  1385. this.dte_Time.Name = "dte_Time";
  1386. this.dte_Time.Size = new System.Drawing.Size(116, 21);
  1387. this.dte_Time.TabIndex = 12;
  1388. this.dte_Time.Enter += new System.EventHandler(this.txt_Scid_Top_Y_Enter);
  1389. this.dte_Time.KeyDown += new System.Windows.Forms.KeyEventHandler(this.txt_Scid_Top_Y_KeyDown);
  1390. //
  1391. // Btn_Turn
  1392. //
  1393. this.Btn_Turn.Location = new System.Drawing.Point(582, 101);
  1394. this.Btn_Turn.Name = "Btn_Turn";
  1395. this.Btn_Turn.Size = new System.Drawing.Size(34, 46);
  1396. this.Btn_Turn.TabIndex = 18;
  1397. this.Btn_Turn.Text = "登记";
  1398. this.Btn_Turn.Click += new System.EventHandler(this.Btn_Turn_Click);
  1399. this.Btn_Turn.KeyDown += new System.Windows.Forms.KeyEventHandler(this.txt_Scid_Top_Y_KeyDown);
  1400. //
  1401. // ultraLabel11
  1402. //
  1403. appearance89.TextHAlign = Infragistics.Win.HAlign.Center;
  1404. appearance89.TextVAlign = Infragistics.Win.VAlign.Middle;
  1405. this.ultraLabel11.Appearance = appearance89;
  1406. this.ultraLabel11.Location = new System.Drawing.Point(22, 85);
  1407. this.ultraLabel11.Name = "ultraLabel11";
  1408. this.ultraLabel11.Size = new System.Drawing.Size(56, 16);
  1409. this.ultraLabel11.TabIndex = 692;
  1410. this.ultraLabel11.Text = "牌号";
  1411. //
  1412. // txt_PaiHao
  1413. //
  1414. appearance90.BackColor = System.Drawing.Color.LightCyan;
  1415. this.txt_PaiHao.Appearance = appearance90;
  1416. this.txt_PaiHao.AutoSize = true;
  1417. this.txt_PaiHao.Location = new System.Drawing.Point(78, 81);
  1418. this.txt_PaiHao.Name = "txt_PaiHao";
  1419. this.txt_PaiHao.ReadOnly = true;
  1420. this.txt_PaiHao.Size = new System.Drawing.Size(150, 21);
  1421. this.txt_PaiHao.TabIndex = 5;
  1422. this.txt_PaiHao.Enter += new System.EventHandler(this.txt_Scid_Top_Y_Enter);
  1423. this.txt_PaiHao.KeyDown += new System.Windows.Forms.KeyEventHandler(this.txt_Scid_Top_Y_KeyDown);
  1424. //
  1425. // txt_Num
  1426. //
  1427. this.txt_Num.FlatMode = true;
  1428. this.txt_Num.Location = new System.Drawing.Point(466, 80);
  1429. this.txt_Num.MaskInput = "nnnnn";
  1430. this.txt_Num.Name = "txt_Num";
  1431. this.txt_Num.PromptChar = ' ';
  1432. this.txt_Num.Size = new System.Drawing.Size(112, 19);
  1433. this.txt_Num.TabIndex = 16;
  1434. this.txt_Num.KeyDown += new System.Windows.Forms.KeyEventHandler(this.txt_Scid_Top_Y_KeyDown);
  1435. this.txt_Num.FontChanged += new System.EventHandler(this.txt_Scid_Top_Y_Enter);
  1436. //
  1437. // ultraLabel9
  1438. //
  1439. this.ultraLabel9.Location = new System.Drawing.Point(436, 82);
  1440. this.ultraLabel9.Name = "ultraLabel9";
  1441. this.ultraLabel9.Size = new System.Drawing.Size(29, 16);
  1442. this.ultraLabel9.TabIndex = 691;
  1443. this.ultraLabel9.Text = "数量";
  1444. //
  1445. // txt_WEIGHT
  1446. //
  1447. this.txt_WEIGHT.FlatMode = true;
  1448. this.txt_WEIGHT.Location = new System.Drawing.Point(466, 104);
  1449. this.txt_WEIGHT.MaskInput = "nnnnn.nnn";
  1450. this.txt_WEIGHT.Name = "txt_WEIGHT";
  1451. this.txt_WEIGHT.NumericType = Infragistics.Win.UltraWinEditors.NumericType.Double;
  1452. this.txt_WEIGHT.PromptChar = ' ';
  1453. this.txt_WEIGHT.Size = new System.Drawing.Size(112, 19);
  1454. this.txt_WEIGHT.TabIndex = 17;
  1455. this.txt_WEIGHT.KeyDown += new System.Windows.Forms.KeyEventHandler(this.txt_Scid_Top_Y_KeyDown);
  1456. this.txt_WEIGHT.FontChanged += new System.EventHandler(this.txt_Scid_Top_Y_Enter);
  1457. //
  1458. // ultraLabel10
  1459. //
  1460. this.ultraLabel10.Location = new System.Drawing.Point(414, 106);
  1461. this.ultraLabel10.Name = "ultraLabel10";
  1462. this.ultraLabel10.Size = new System.Drawing.Size(62, 16);
  1463. this.ultraLabel10.TabIndex = 690;
  1464. this.ultraLabel10.Text = "理论重量";
  1465. //
  1466. // txt_Width
  1467. //
  1468. appearance91.BackColor = System.Drawing.Color.LightCyan;
  1469. this.txt_Width.Appearance = appearance91;
  1470. this.txt_Width.FlatMode = true;
  1471. this.txt_Width.Location = new System.Drawing.Point(466, 32);
  1472. this.txt_Width.MaskInput = "nnnn.nn";
  1473. this.txt_Width.Name = "txt_Width";
  1474. this.txt_Width.NumericType = Infragistics.Win.UltraWinEditors.NumericType.Double;
  1475. this.txt_Width.PromptChar = ' ';
  1476. this.txt_Width.Size = new System.Drawing.Size(112, 19);
  1477. this.txt_Width.TabIndex = 14;
  1478. this.txt_Width.KeyDown += new System.Windows.Forms.KeyEventHandler(this.txt_Scid_Top_Y_KeyDown);
  1479. this.txt_Width.FontChanged += new System.EventHandler(this.txt_Scid_Top_Y_Enter);
  1480. //
  1481. // txt_Length
  1482. //
  1483. this.txt_Length.FlatMode = true;
  1484. this.txt_Length.Location = new System.Drawing.Point(466, 56);
  1485. this.txt_Length.MaskInput = "nnnnn";
  1486. this.txt_Length.Name = "txt_Length";
  1487. this.txt_Length.PromptChar = ' ';
  1488. this.txt_Length.Size = new System.Drawing.Size(112, 19);
  1489. this.txt_Length.TabIndex = 15;
  1490. this.txt_Length.KeyDown += new System.Windows.Forms.KeyEventHandler(this.txt_Scid_Top_Y_KeyDown);
  1491. this.txt_Length.FontChanged += new System.EventHandler(this.txt_Scid_Top_Y_Enter);
  1492. //
  1493. // lab_cd
  1494. //
  1495. this.lab_cd.Location = new System.Drawing.Point(436, 58);
  1496. this.lab_cd.Name = "lab_cd";
  1497. this.lab_cd.Size = new System.Drawing.Size(29, 16);
  1498. this.lab_cd.TabIndex = 689;
  1499. this.lab_cd.Text = "长度";
  1500. //
  1501. // ultraLabel17
  1502. //
  1503. this.ultraLabel17.Location = new System.Drawing.Point(436, 34);
  1504. this.ultraLabel17.Name = "ultraLabel17";
  1505. this.ultraLabel17.Size = new System.Drawing.Size(29, 16);
  1506. this.ultraLabel17.TabIndex = 688;
  1507. this.ultraLabel17.Text = "宽度";
  1508. //
  1509. // txt_Ply
  1510. //
  1511. appearance92.BackColor = System.Drawing.Color.LightCyan;
  1512. this.txt_Ply.Appearance = appearance92;
  1513. this.txt_Ply.FlatMode = true;
  1514. this.txt_Ply.Location = new System.Drawing.Point(466, 8);
  1515. this.txt_Ply.MaskInput = "nnn.nnn";
  1516. this.txt_Ply.Name = "txt_Ply";
  1517. this.txt_Ply.NumericType = Infragistics.Win.UltraWinEditors.NumericType.Double;
  1518. this.txt_Ply.PromptChar = ' ';
  1519. this.txt_Ply.ReadOnly = true;
  1520. this.txt_Ply.Size = new System.Drawing.Size(112, 19);
  1521. this.txt_Ply.TabIndex = 13;
  1522. this.txt_Ply.KeyDown += new System.Windows.Forms.KeyEventHandler(this.txt_Scid_Top_Y_KeyDown);
  1523. this.txt_Ply.FontChanged += new System.EventHandler(this.txt_Scid_Top_Y_Enter);
  1524. //
  1525. // ultraLabel12
  1526. //
  1527. this.ultraLabel12.Location = new System.Drawing.Point(436, 10);
  1528. this.ultraLabel12.Name = "ultraLabel12";
  1529. this.ultraLabel12.Size = new System.Drawing.Size(29, 16);
  1530. this.ultraLabel12.TabIndex = 687;
  1531. this.ultraLabel12.Text = "厚度";
  1532. //
  1533. // ultraLabel20
  1534. //
  1535. this.ultraLabel20.Location = new System.Drawing.Point(411, 156);
  1536. this.ultraLabel20.Name = "ultraLabel20";
  1537. this.ultraLabel20.Size = new System.Drawing.Size(54, 16);
  1538. this.ultraLabel20.TabIndex = 686;
  1539. this.ultraLabel20.Text = "入库时间";
  1540. //
  1541. // cmb_ClassStream
  1542. //
  1543. this.cmb_ClassStream.CharacterCasing = System.Windows.Forms.CharacterCasing.Normal;
  1544. this.cmb_ClassStream.DisplayMember = "";
  1545. this.cmb_ClassStream.Location = new System.Drawing.Point(288, 128);
  1546. this.cmb_ClassStream.Name = "cmb_ClassStream";
  1547. this.cmb_ClassStream.Size = new System.Drawing.Size(116, 21);
  1548. this.cmb_ClassStream.TabIndex = 11;
  1549. this.cmb_ClassStream.ValueMember = "";
  1550. this.cmb_ClassStream.KeyDown += new System.Windows.Forms.KeyEventHandler(this.txt_Scid_Top_Y_KeyDown);
  1551. this.cmb_ClassStream.FontChanged += new System.EventHandler(this.txt_Scid_Top_Y_Enter);
  1552. //
  1553. // ultraLabel7
  1554. //
  1555. this.ultraLabel7.Location = new System.Drawing.Point(234, 132);
  1556. this.ultraLabel7.Name = "ultraLabel7";
  1557. this.ultraLabel7.Size = new System.Drawing.Size(54, 16);
  1558. this.ultraLabel7.TabIndex = 685;
  1559. this.ultraLabel7.Text = "入库班组";
  1560. //
  1561. // cmb_ClassOreder
  1562. //
  1563. this.cmb_ClassOreder.CharacterCasing = System.Windows.Forms.CharacterCasing.Normal;
  1564. this.cmb_ClassOreder.DisplayMember = "";
  1565. this.cmb_ClassOreder.Location = new System.Drawing.Point(288, 104);
  1566. this.cmb_ClassOreder.Name = "cmb_ClassOreder";
  1567. this.cmb_ClassOreder.Size = new System.Drawing.Size(116, 21);
  1568. this.cmb_ClassOreder.TabIndex = 10;
  1569. this.cmb_ClassOreder.ValueMember = "";
  1570. this.cmb_ClassOreder.KeyDown += new System.Windows.Forms.KeyEventHandler(this.txt_Scid_Top_Y_KeyDown);
  1571. this.cmb_ClassOreder.FontChanged += new System.EventHandler(this.txt_Scid_Top_Y_Enter);
  1572. //
  1573. // ultraLabel6
  1574. //
  1575. this.ultraLabel6.Location = new System.Drawing.Point(234, 108);
  1576. this.ultraLabel6.Name = "ultraLabel6";
  1577. this.ultraLabel6.Size = new System.Drawing.Size(54, 16);
  1578. this.ultraLabel6.TabIndex = 684;
  1579. this.ultraLabel6.Text = "入库班次";
  1580. //
  1581. // cmb_Buress
  1582. //
  1583. this.cmb_Buress.CharacterCasing = System.Windows.Forms.CharacterCasing.Normal;
  1584. this.cmb_Buress.DisplayMember = "";
  1585. this.cmb_Buress.Location = new System.Drawing.Point(288, 80);
  1586. this.cmb_Buress.Name = "cmb_Buress";
  1587. this.cmb_Buress.Size = new System.Drawing.Size(116, 21);
  1588. this.cmb_Buress.TabIndex = 9;
  1589. this.cmb_Buress.ValueMember = "";
  1590. this.cmb_Buress.KeyDown += new System.Windows.Forms.KeyEventHandler(this.txt_Scid_Top_Y_KeyDown);
  1591. this.cmb_Buress.Enter += new System.EventHandler(this.txt_Scid_Top_Y_Enter);
  1592. //
  1593. // ultraLabel4
  1594. //
  1595. this.ultraLabel4.Location = new System.Drawing.Point(234, 84);
  1596. this.ultraLabel4.Name = "ultraLabel4";
  1597. this.ultraLabel4.Size = new System.Drawing.Size(54, 16);
  1598. this.ultraLabel4.TabIndex = 683;
  1599. this.ultraLabel4.Text = "入库垛位";
  1600. //
  1601. // ultraLabel8
  1602. //
  1603. this.ultraLabel8.Location = new System.Drawing.Point(232, 35);
  1604. this.ultraLabel8.Name = "ultraLabel8";
  1605. this.ultraLabel8.Size = new System.Drawing.Size(56, 16);
  1606. this.ultraLabel8.TabIndex = 682;
  1607. this.ultraLabel8.Text = "综合判定";
  1608. //
  1609. // cmb_BugReaSon
  1610. //
  1611. this.cmb_BugReaSon.CharacterCasing = System.Windows.Forms.CharacterCasing.Normal;
  1612. this.cmb_BugReaSon.DisplayMember = "";
  1613. this.cmb_BugReaSon.Location = new System.Drawing.Point(78, 129);
  1614. this.cmb_BugReaSon.Name = "cmb_BugReaSon";
  1615. this.cmb_BugReaSon.Size = new System.Drawing.Size(150, 21);
  1616. this.cmb_BugReaSon.TabIndex = 7;
  1617. this.cmb_BugReaSon.ValueMember = "";
  1618. this.cmb_BugReaSon.KeyDown += new System.Windows.Forms.KeyEventHandler(this.txt_Scid_Top_Y_KeyDown);
  1619. this.cmb_BugReaSon.Enter += new System.EventHandler(this.txt_Scid_Top_Y_Enter);
  1620. //
  1621. // ultraLabel25
  1622. //
  1623. this.ultraLabel25.Location = new System.Drawing.Point(22, 133);
  1624. this.ultraLabel25.Name = "ultraLabel25";
  1625. this.ultraLabel25.Size = new System.Drawing.Size(56, 16);
  1626. this.ultraLabel25.TabIndex = 681;
  1627. this.ultraLabel25.Text = "表面缺陷";
  1628. //
  1629. // ultraLabel2
  1630. //
  1631. appearance93.TextHAlign = Infragistics.Win.HAlign.Center;
  1632. appearance93.TextVAlign = Infragistics.Win.VAlign.Middle;
  1633. this.ultraLabel2.Appearance = appearance93;
  1634. this.ultraLabel2.Location = new System.Drawing.Point(22, 109);
  1635. this.ultraLabel2.Name = "ultraLabel2";
  1636. this.ultraLabel2.Size = new System.Drawing.Size(56, 16);
  1637. this.ultraLabel2.TabIndex = 680;
  1638. this.ultraLabel2.Text = "订单号";
  1639. //
  1640. // ultraLabel3
  1641. //
  1642. appearance94.TextHAlign = Infragistics.Win.HAlign.Center;
  1643. appearance94.TextVAlign = Infragistics.Win.VAlign.Middle;
  1644. this.ultraLabel3.Appearance = appearance94;
  1645. this.ultraLabel3.Location = new System.Drawing.Point(22, 59);
  1646. this.ultraLabel3.Name = "ultraLabel3";
  1647. this.ultraLabel3.Size = new System.Drawing.Size(56, 16);
  1648. this.ultraLabel3.TabIndex = 679;
  1649. this.ultraLabel3.Text = "钢卷号";
  1650. //
  1651. // txt_GangpeiH
  1652. //
  1653. appearance95.BackColor = System.Drawing.Color.LightCyan;
  1654. this.txt_GangpeiH.Appearance = appearance95;
  1655. this.txt_GangpeiH.AutoSize = true;
  1656. this.txt_GangpeiH.Location = new System.Drawing.Point(78, 57);
  1657. this.txt_GangpeiH.Name = "txt_GangpeiH";
  1658. this.txt_GangpeiH.ReadOnly = true;
  1659. this.txt_GangpeiH.Size = new System.Drawing.Size(150, 21);
  1660. this.txt_GangpeiH.TabIndex = 4;
  1661. this.txt_GangpeiH.Enter += new System.EventHandler(this.txt_Scid_Top_Y_Enter);
  1662. this.txt_GangpeiH.KeyDown += new System.Windows.Forms.KeyEventHandler(this.txt_Scid_Top_Y_KeyDown);
  1663. //
  1664. // ultraLabel1
  1665. //
  1666. appearance96.TextHAlign = Infragistics.Win.HAlign.Center;
  1667. appearance96.TextVAlign = Infragistics.Win.VAlign.Middle;
  1668. this.ultraLabel1.Appearance = appearance96;
  1669. this.ultraLabel1.Location = new System.Drawing.Point(22, 37);
  1670. this.ultraLabel1.Name = "ultraLabel1";
  1671. this.ultraLabel1.Size = new System.Drawing.Size(56, 16);
  1672. this.ultraLabel1.TabIndex = 678;
  1673. this.ultraLabel1.Text = "卷板包号";
  1674. //
  1675. // txt_Scid_End_Y
  1676. //
  1677. this.txt_Scid_End_Y.AutoSize = true;
  1678. this.txt_Scid_End_Y.Location = new System.Drawing.Point(184, 33);
  1679. this.txt_Scid_End_Y.Name = "txt_Scid_End_Y";
  1680. this.txt_Scid_End_Y.Size = new System.Drawing.Size(44, 21);
  1681. this.txt_Scid_End_Y.TabIndex = 3;
  1682. this.txt_Scid_End_Y.Enter += new System.EventHandler(this.txt_Scid_Top_Y_Enter);
  1683. this.txt_Scid_End_Y.KeyDown += new System.Windows.Forms.KeyEventHandler(this.txt_Scid_Top_Y_KeyDown);
  1684. //
  1685. // txt_Scid_Begin_Y
  1686. //
  1687. this.txt_Scid_Begin_Y.AutoSize = true;
  1688. this.txt_Scid_Begin_Y.Location = new System.Drawing.Point(108, 33);
  1689. this.txt_Scid_Begin_Y.MaxLength = 10;
  1690. this.txt_Scid_Begin_Y.Name = "txt_Scid_Begin_Y";
  1691. this.txt_Scid_Begin_Y.Size = new System.Drawing.Size(76, 21);
  1692. this.txt_Scid_Begin_Y.TabIndex = 2;
  1693. this.txt_Scid_Begin_Y.Enter += new System.EventHandler(this.txt_Scid_Top_Y_Enter);
  1694. this.txt_Scid_Begin_Y.KeyDown += new System.Windows.Forms.KeyEventHandler(this.txt_Scid_Top_Y_KeyDown);
  1695. //
  1696. // txt_Scid_Top_Y
  1697. //
  1698. this.txt_Scid_Top_Y.AutoSize = true;
  1699. this.txt_Scid_Top_Y.Location = new System.Drawing.Point(78, 33);
  1700. this.txt_Scid_Top_Y.MaxLength = 2;
  1701. this.txt_Scid_Top_Y.Name = "txt_Scid_Top_Y";
  1702. this.txt_Scid_Top_Y.Size = new System.Drawing.Size(30, 21);
  1703. this.txt_Scid_Top_Y.TabIndex = 1;
  1704. this.txt_Scid_Top_Y.Enter += new System.EventHandler(this.txt_Scid_Top_Y_Enter);
  1705. this.txt_Scid_Top_Y.KeyDown += new System.Windows.Forms.KeyEventHandler(this.txt_Scid_Top_Y_KeyDown);
  1706. //
  1707. // ultraLabel5
  1708. //
  1709. appearance97.FontData.BoldAsString = "True";
  1710. appearance97.ForeColor = System.Drawing.Color.Red;
  1711. appearance97.TextVAlign = Infragistics.Win.VAlign.Middle;
  1712. this.ultraLabel5.Appearance = appearance97;
  1713. this.ultraLabel5.Font = new System.Drawing.Font("宋体", 9.5F);
  1714. this.ultraLabel5.Location = new System.Drawing.Point(16, 9);
  1715. this.ultraLabel5.Name = "ultraLabel5";
  1716. this.ultraLabel5.Size = new System.Drawing.Size(62, 18);
  1717. this.ultraLabel5.TabIndex = 676;
  1718. this.ultraLabel5.Text = "提示信息";
  1719. //
  1720. // txt_TiShi
  1721. //
  1722. this.txt_TiShi.AutoSize = true;
  1723. this.txt_TiShi.FlatMode = true;
  1724. this.txt_TiShi.Location = new System.Drawing.Point(78, 7);
  1725. this.txt_TiShi.Name = "txt_TiShi";
  1726. this.txt_TiShi.Size = new System.Drawing.Size(330, 19);
  1727. this.txt_TiShi.TabIndex = 677;
  1728. this.txt_TiShi.TabStop = false;
  1729. //
  1730. // ultraGroupBox2
  1731. //
  1732. this.ultraGroupBox2.Controls.Add(this.gb_Turan);
  1733. this.ultraGroupBox2.Dock = System.Windows.Forms.DockStyle.Fill;
  1734. this.ultraGroupBox2.Location = new System.Drawing.Point(0, 290);
  1735. this.ultraGroupBox2.Name = "ultraGroupBox2";
  1736. this.ultraGroupBox2.Size = new System.Drawing.Size(968, 240);
  1737. this.ultraGroupBox2.SupportThemes = false;
  1738. this.ultraGroupBox2.TabIndex = 3;
  1739. this.ultraGroupBox2.Text = "成品收集信息";
  1740. //
  1741. // gb_Turan
  1742. //
  1743. appearance98.BackColor = System.Drawing.Color.Ivory;
  1744. this.gb_Turan.DisplayLayout.Appearance = appearance98;
  1745. ultraGridColumn103.Header.Caption = "出库单号";
  1746. ultraGridColumn103.Header.VisiblePosition = 0;
  1747. ultraGridColumn103.Hidden = true;
  1748. ultraGridColumn103.RowLayoutColumnInfo.OriginX = 26;
  1749. ultraGridColumn103.RowLayoutColumnInfo.OriginY = 0;
  1750. ultraGridColumn103.RowLayoutColumnInfo.PreferredCellSize = new System.Drawing.Size(77, 0);
  1751. ultraGridColumn103.RowLayoutColumnInfo.SpanX = 1;
  1752. ultraGridColumn103.RowLayoutColumnInfo.SpanY = 1;
  1753. ultraGridColumn104.Header.Caption = "钢卷号";
  1754. ultraGridColumn104.Header.VisiblePosition = 1;
  1755. ultraGridColumn104.RowLayoutColumnInfo.OriginX = 3;
  1756. ultraGridColumn104.RowLayoutColumnInfo.OriginY = 0;
  1757. ultraGridColumn104.RowLayoutColumnInfo.PreferredCellSize = new System.Drawing.Size(92, 0);
  1758. ultraGridColumn104.RowLayoutColumnInfo.SpanX = 1;
  1759. ultraGridColumn104.RowLayoutColumnInfo.SpanY = 1;
  1760. ultraGridColumn105.Header.Caption = "板坯号";
  1761. ultraGridColumn105.Header.VisiblePosition = 2;
  1762. ultraGridColumn105.RowLayoutColumnInfo.OriginX = 4;
  1763. ultraGridColumn105.RowLayoutColumnInfo.OriginY = 0;
  1764. ultraGridColumn105.RowLayoutColumnInfo.PreferredCellSize = new System.Drawing.Size(96, 0);
  1765. ultraGridColumn105.RowLayoutColumnInfo.SpanX = 1;
  1766. ultraGridColumn105.RowLayoutColumnInfo.SpanY = 1;
  1767. ultraGridColumn106.Header.Caption = "合同号";
  1768. ultraGridColumn106.Header.VisiblePosition = 3;
  1769. ultraGridColumn106.RowLayoutColumnInfo.OriginX = 9;
  1770. ultraGridColumn106.RowLayoutColumnInfo.OriginY = 0;
  1771. ultraGridColumn106.RowLayoutColumnInfo.PreferredCellSize = new System.Drawing.Size(99, 0);
  1772. ultraGridColumn106.RowLayoutColumnInfo.SpanX = 1;
  1773. ultraGridColumn106.RowLayoutColumnInfo.SpanY = 1;
  1774. ultraGridColumn107.Header.Caption = "订单号";
  1775. ultraGridColumn107.Header.VisiblePosition = 4;
  1776. ultraGridColumn107.RowLayoutColumnInfo.OriginX = 11;
  1777. ultraGridColumn107.RowLayoutColumnInfo.OriginY = 0;
  1778. ultraGridColumn107.RowLayoutColumnInfo.PreferredCellSize = new System.Drawing.Size(101, 0);
  1779. ultraGridColumn107.RowLayoutColumnInfo.SpanX = 1;
  1780. ultraGridColumn107.RowLayoutColumnInfo.SpanY = 1;
  1781. ultraGridColumn108.Header.Caption = "交货期";
  1782. ultraGridColumn108.Header.VisiblePosition = 5;
  1783. ultraGridColumn108.RowLayoutColumnInfo.OriginX = 24;
  1784. ultraGridColumn108.RowLayoutColumnInfo.OriginY = 0;
  1785. ultraGridColumn108.RowLayoutColumnInfo.SpanX = 1;
  1786. ultraGridColumn108.RowLayoutColumnInfo.SpanY = 1;
  1787. ultraGridColumn109.Header.Caption = "厚度";
  1788. ultraGridColumn109.Header.VisiblePosition = 6;
  1789. ultraGridColumn109.RowLayoutColumnInfo.OriginX = 14;
  1790. ultraGridColumn109.RowLayoutColumnInfo.OriginY = 0;
  1791. ultraGridColumn109.RowLayoutColumnInfo.PreferredCellSize = new System.Drawing.Size(60, 0);
  1792. ultraGridColumn109.RowLayoutColumnInfo.SpanX = 1;
  1793. ultraGridColumn109.RowLayoutColumnInfo.SpanY = 1;
  1794. ultraGridColumn110.Header.Caption = "宽度";
  1795. ultraGridColumn110.Header.VisiblePosition = 7;
  1796. ultraGridColumn110.RowLayoutColumnInfo.OriginX = 15;
  1797. ultraGridColumn110.RowLayoutColumnInfo.OriginY = 0;
  1798. ultraGridColumn110.RowLayoutColumnInfo.PreferredCellSize = new System.Drawing.Size(60, 0);
  1799. ultraGridColumn110.RowLayoutColumnInfo.SpanX = 1;
  1800. ultraGridColumn110.RowLayoutColumnInfo.SpanY = 1;
  1801. ultraGridColumn111.Header.Caption = "长度";
  1802. ultraGridColumn111.Header.VisiblePosition = 8;
  1803. ultraGridColumn111.RowLayoutColumnInfo.OriginX = 16;
  1804. ultraGridColumn111.RowLayoutColumnInfo.OriginY = 0;
  1805. ultraGridColumn111.RowLayoutColumnInfo.PreferredCellSize = new System.Drawing.Size(45, 0);
  1806. ultraGridColumn111.RowLayoutColumnInfo.SpanX = 1;
  1807. ultraGridColumn111.RowLayoutColumnInfo.SpanY = 1;
  1808. ultraGridColumn112.Header.Caption = "理论重量";
  1809. ultraGridColumn112.Header.VisiblePosition = 9;
  1810. ultraGridColumn112.RowLayoutColumnInfo.OriginX = 18;
  1811. ultraGridColumn112.RowLayoutColumnInfo.OriginY = 0;
  1812. ultraGridColumn112.RowLayoutColumnInfo.PreferredCellSize = new System.Drawing.Size(70, 0);
  1813. ultraGridColumn112.RowLayoutColumnInfo.SpanX = 1;
  1814. ultraGridColumn112.RowLayoutColumnInfo.SpanY = 1;
  1815. ultraGridColumn113.Header.Caption = "数量";
  1816. ultraGridColumn113.Header.VisiblePosition = 10;
  1817. ultraGridColumn113.RowLayoutColumnInfo.OriginX = 17;
  1818. ultraGridColumn113.RowLayoutColumnInfo.OriginY = 0;
  1819. ultraGridColumn113.RowLayoutColumnInfo.PreferredCellSize = new System.Drawing.Size(67, 0);
  1820. ultraGridColumn113.RowLayoutColumnInfo.SpanX = 1;
  1821. ultraGridColumn113.RowLayoutColumnInfo.SpanY = 1;
  1822. ultraGridColumn114.Header.Caption = "牌号";
  1823. ultraGridColumn114.Header.VisiblePosition = 11;
  1824. ultraGridColumn114.RowLayoutColumnInfo.OriginX = 13;
  1825. ultraGridColumn114.RowLayoutColumnInfo.OriginY = 0;
  1826. ultraGridColumn114.RowLayoutColumnInfo.PreferredCellSize = new System.Drawing.Size(71, 0);
  1827. ultraGridColumn114.RowLayoutColumnInfo.SpanX = 1;
  1828. ultraGridColumn114.RowLayoutColumnInfo.SpanY = 1;
  1829. ultraGridColumn115.Header.Caption = "综合判定";
  1830. ultraGridColumn115.Header.VisiblePosition = 12;
  1831. ultraGridColumn115.Hidden = true;
  1832. ultraGridColumn115.RowLayoutColumnInfo.OriginX = 20;
  1833. ultraGridColumn115.RowLayoutColumnInfo.OriginY = 0;
  1834. ultraGridColumn115.RowLayoutColumnInfo.PreferredCellSize = new System.Drawing.Size(64, 0);
  1835. ultraGridColumn115.RowLayoutColumnInfo.SpanX = 1;
  1836. ultraGridColumn115.RowLayoutColumnInfo.SpanY = 1;
  1837. ultraGridColumn116.Header.Caption = "特记事项";
  1838. ultraGridColumn116.Header.VisiblePosition = 13;
  1839. ultraGridColumn116.RowLayoutColumnInfo.OriginX = 23;
  1840. ultraGridColumn116.RowLayoutColumnInfo.OriginY = 0;
  1841. ultraGridColumn116.RowLayoutColumnInfo.SpanX = 1;
  1842. ultraGridColumn116.RowLayoutColumnInfo.SpanY = 1;
  1843. ultraGridColumn117.Header.Caption = "车辆号";
  1844. ultraGridColumn117.Header.VisiblePosition = 14;
  1845. ultraGridColumn117.Hidden = true;
  1846. ultraGridColumn117.RowLayoutColumnInfo.OriginX = 23;
  1847. ultraGridColumn117.RowLayoutColumnInfo.OriginY = 0;
  1848. ultraGridColumn117.RowLayoutColumnInfo.PreferredCellSize = new System.Drawing.Size(78, 0);
  1849. ultraGridColumn117.RowLayoutColumnInfo.SpanX = 1;
  1850. ultraGridColumn117.RowLayoutColumnInfo.SpanY = 1;
  1851. ultraGridColumn118.Header.Caption = "质保书编号";
  1852. ultraGridColumn118.Header.VisiblePosition = 15;
  1853. ultraGridColumn118.RowLayoutColumnInfo.OriginX = 22;
  1854. ultraGridColumn118.RowLayoutColumnInfo.OriginY = 0;
  1855. ultraGridColumn118.RowLayoutColumnInfo.PreferredCellSize = new System.Drawing.Size(69, 0);
  1856. ultraGridColumn118.RowLayoutColumnInfo.SpanX = 1;
  1857. ultraGridColumn118.RowLayoutColumnInfo.SpanY = 1;
  1858. ultraGridColumn119.Header.Caption = "垛位";
  1859. ultraGridColumn119.Header.VisiblePosition = 16;
  1860. ultraGridColumn119.RowLayoutColumnInfo.OriginX = 12;
  1861. ultraGridColumn119.RowLayoutColumnInfo.OriginY = 0;
  1862. ultraGridColumn119.RowLayoutColumnInfo.PreferredCellSize = new System.Drawing.Size(90, 0);
  1863. ultraGridColumn119.RowLayoutColumnInfo.SpanX = 1;
  1864. ultraGridColumn119.RowLayoutColumnInfo.SpanY = 1;
  1865. ultraGridColumn120.Header.Caption = "登记人";
  1866. ultraGridColumn120.Header.VisiblePosition = 17;
  1867. ultraGridColumn120.RowLayoutColumnInfo.OriginX = 21;
  1868. ultraGridColumn120.RowLayoutColumnInfo.OriginY = 0;
  1869. ultraGridColumn120.RowLayoutColumnInfo.SpanX = 1;
  1870. ultraGridColumn120.RowLayoutColumnInfo.SpanY = 1;
  1871. ultraGridColumn121.Header.Caption = "登记时间";
  1872. ultraGridColumn121.Header.VisiblePosition = 18;
  1873. ultraGridColumn121.RowLayoutColumnInfo.OriginX = 33;
  1874. ultraGridColumn121.RowLayoutColumnInfo.OriginY = 0;
  1875. ultraGridColumn121.RowLayoutColumnInfo.SpanX = 1;
  1876. ultraGridColumn121.RowLayoutColumnInfo.SpanY = 1;
  1877. ultraGridColumn122.Header.Caption = "入库班次";
  1878. ultraGridColumn122.Header.VisiblePosition = 19;
  1879. ultraGridColumn122.RowLayoutColumnInfo.OriginX = 26;
  1880. ultraGridColumn122.RowLayoutColumnInfo.OriginY = 0;
  1881. ultraGridColumn122.RowLayoutColumnInfo.PreferredCellSize = new System.Drawing.Size(66, 0);
  1882. ultraGridColumn122.RowLayoutColumnInfo.SpanX = 1;
  1883. ultraGridColumn122.RowLayoutColumnInfo.SpanY = 1;
  1884. ultraGridColumn123.Header.Caption = "入库班组";
  1885. ultraGridColumn123.Header.VisiblePosition = 20;
  1886. ultraGridColumn123.RowLayoutColumnInfo.OriginX = 27;
  1887. ultraGridColumn123.RowLayoutColumnInfo.OriginY = 0;
  1888. ultraGridColumn123.RowLayoutColumnInfo.PreferredCellSize = new System.Drawing.Size(60, 0);
  1889. ultraGridColumn123.RowLayoutColumnInfo.SpanX = 2;
  1890. ultraGridColumn123.RowLayoutColumnInfo.SpanY = 2;
  1891. ultraGridColumn124.Header.Caption = "工单号";
  1892. ultraGridColumn124.Header.VisiblePosition = 21;
  1893. ultraGridColumn124.RowLayoutColumnInfo.OriginX = 8;
  1894. ultraGridColumn124.RowLayoutColumnInfo.OriginY = 0;
  1895. ultraGridColumn124.RowLayoutColumnInfo.PreferredCellSize = new System.Drawing.Size(83, 0);
  1896. ultraGridColumn124.RowLayoutColumnInfo.SpanX = 1;
  1897. ultraGridColumn124.RowLayoutColumnInfo.SpanY = 1;
  1898. ultraGridColumn125.Header.Caption = "卷板包号";
  1899. ultraGridColumn125.Header.VisiblePosition = 24;
  1900. ultraGridColumn125.RowLayoutColumnInfo.OriginX = 2;
  1901. ultraGridColumn125.RowLayoutColumnInfo.OriginY = 0;
  1902. ultraGridColumn125.RowLayoutColumnInfo.PreferredCellSize = new System.Drawing.Size(129, 0);
  1903. ultraGridColumn125.RowLayoutColumnInfo.SpanX = 1;
  1904. ultraGridColumn125.RowLayoutColumnInfo.SpanY = 1;
  1905. ultraGridColumn126.Header.Caption = "生产时间";
  1906. ultraGridColumn126.Header.VisiblePosition = 22;
  1907. ultraGridColumn126.RowLayoutColumnInfo.OriginX = 25;
  1908. ultraGridColumn126.RowLayoutColumnInfo.OriginY = 0;
  1909. ultraGridColumn126.RowLayoutColumnInfo.PreferredCellSize = new System.Drawing.Size(94, 0);
  1910. ultraGridColumn126.RowLayoutColumnInfo.SpanX = 1;
  1911. ultraGridColumn126.RowLayoutColumnInfo.SpanY = 1;
  1912. ultraGridColumn127.Header.VisiblePosition = 25;
  1913. ultraGridColumn127.Hidden = true;
  1914. ultraGridColumn127.RowLayoutColumnInfo.OriginX = 29;
  1915. ultraGridColumn127.RowLayoutColumnInfo.OriginY = 0;
  1916. ultraGridColumn127.RowLayoutColumnInfo.SpanX = 1;
  1917. ultraGridColumn127.RowLayoutColumnInfo.SpanY = 1;
  1918. ultraGridColumn128.Header.Caption = "";
  1919. ultraGridColumn128.Header.VisiblePosition = 26;
  1920. ultraGridColumn128.RowLayoutColumnInfo.OriginX = 0;
  1921. ultraGridColumn128.RowLayoutColumnInfo.OriginY = 0;
  1922. ultraGridColumn128.RowLayoutColumnInfo.PreferredCellSize = new System.Drawing.Size(34, 0);
  1923. ultraGridColumn128.RowLayoutColumnInfo.SpanX = 1;
  1924. ultraGridColumn128.RowLayoutColumnInfo.SpanY = 1;
  1925. ultraGridColumn128.Style = Infragistics.Win.UltraWinGrid.ColumnStyle.CheckBox;
  1926. ultraGridColumn129.Header.Caption = "产线";
  1927. ultraGridColumn129.Header.VisiblePosition = 27;
  1928. ultraGridColumn129.RowLayoutColumnInfo.OriginX = 6;
  1929. ultraGridColumn129.RowLayoutColumnInfo.OriginY = 0;
  1930. ultraGridColumn129.RowLayoutColumnInfo.PreferredCellSize = new System.Drawing.Size(71, 0);
  1931. ultraGridColumn129.RowLayoutColumnInfo.SpanX = 1;
  1932. ultraGridColumn129.RowLayoutColumnInfo.SpanY = 1;
  1933. ultraGridColumn130.Header.Caption = "订单类型";
  1934. ultraGridColumn130.Header.VisiblePosition = 23;
  1935. ultraGridColumn130.RowLayoutColumnInfo.OriginX = 20;
  1936. ultraGridColumn130.RowLayoutColumnInfo.OriginY = 0;
  1937. ultraGridColumn130.RowLayoutColumnInfo.PreferredCellSize = new System.Drawing.Size(65, 0);
  1938. ultraGridColumn130.RowLayoutColumnInfo.SpanX = 1;
  1939. ultraGridColumn130.RowLayoutColumnInfo.SpanY = 1;
  1940. ultraGridColumn131.Header.Caption = "备注";
  1941. ultraGridColumn131.Header.VisiblePosition = 28;
  1942. ultraGridColumn131.RowLayoutColumnInfo.OriginX = 32;
  1943. ultraGridColumn131.RowLayoutColumnInfo.OriginY = 0;
  1944. ultraGridColumn131.RowLayoutColumnInfo.SpanX = 1;
  1945. ultraGridColumn131.RowLayoutColumnInfo.SpanY = 1;
  1946. ultraGridColumn132.Header.Caption = "工艺类型";
  1947. ultraGridColumn132.Header.VisiblePosition = 29;
  1948. ultraGridColumn132.RowLayoutColumnInfo.OriginX = 5;
  1949. ultraGridColumn132.RowLayoutColumnInfo.OriginY = 0;
  1950. ultraGridColumn132.RowLayoutColumnInfo.PreferredCellSize = new System.Drawing.Size(65, 0);
  1951. ultraGridColumn132.RowLayoutColumnInfo.SpanX = 1;
  1952. ultraGridColumn132.RowLayoutColumnInfo.SpanY = 1;
  1953. ultraGridColumn133.Header.Caption = "综合判定结果";
  1954. ultraGridColumn133.Header.VisiblePosition = 30;
  1955. ultraGridColumn133.RowLayoutColumnInfo.OriginX = 29;
  1956. ultraGridColumn133.RowLayoutColumnInfo.OriginY = 0;
  1957. ultraGridColumn133.RowLayoutColumnInfo.SpanX = 1;
  1958. ultraGridColumn133.RowLayoutColumnInfo.SpanY = 1;
  1959. ultraGridColumn134.Header.Caption = "钢质缺陷";
  1960. ultraGridColumn134.Header.VisiblePosition = 32;
  1961. ultraGridColumn134.RowLayoutColumnInfo.OriginX = 30;
  1962. ultraGridColumn134.RowLayoutColumnInfo.OriginY = 0;
  1963. ultraGridColumn134.RowLayoutColumnInfo.SpanX = 1;
  1964. ultraGridColumn134.RowLayoutColumnInfo.SpanY = 1;
  1965. ultraGridColumn135.Header.Caption = "工艺缺陷";
  1966. ultraGridColumn135.Header.VisiblePosition = 35;
  1967. ultraGridColumn135.RowLayoutColumnInfo.OriginX = 31;
  1968. ultraGridColumn135.RowLayoutColumnInfo.OriginY = 0;
  1969. ultraGridColumn135.RowLayoutColumnInfo.SpanX = 1;
  1970. ultraGridColumn135.RowLayoutColumnInfo.SpanY = 1;
  1971. ultraGridColumn136.Header.Caption = "过磅重量";
  1972. ultraGridColumn136.Header.VisiblePosition = 33;
  1973. ultraGridColumn136.RowLayoutColumnInfo.OriginX = 19;
  1974. ultraGridColumn136.RowLayoutColumnInfo.OriginY = 0;
  1975. ultraGridColumn136.RowLayoutColumnInfo.SpanX = 1;
  1976. ultraGridColumn136.RowLayoutColumnInfo.SpanY = 1;
  1977. ultraGridColumn137.Header.Caption = "炉号";
  1978. ultraGridColumn137.Header.VisiblePosition = 31;
  1979. ultraGridColumn137.RowLayoutColumnInfo.OriginX = 7;
  1980. ultraGridColumn137.RowLayoutColumnInfo.OriginY = 0;
  1981. ultraGridColumn137.RowLayoutColumnInfo.PreferredCellSize = new System.Drawing.Size(95, 0);
  1982. ultraGridColumn137.RowLayoutColumnInfo.SpanX = 1;
  1983. ultraGridColumn137.RowLayoutColumnInfo.SpanY = 1;
  1984. ultraGridColumn138.Header.Caption = "批号";
  1985. ultraGridColumn138.Header.VisiblePosition = 34;
  1986. ultraGridColumn138.RowLayoutColumnInfo.OriginX = 1;
  1987. ultraGridColumn138.RowLayoutColumnInfo.OriginY = 0;
  1988. ultraGridColumn138.RowLayoutColumnInfo.PreferredCellSize = new System.Drawing.Size(92, 0);
  1989. ultraGridColumn138.RowLayoutColumnInfo.SpanX = 1;
  1990. ultraGridColumn138.RowLayoutColumnInfo.SpanY = 2;
  1991. ultraGridColumn139.Header.Caption = "执行标准";
  1992. ultraGridColumn139.Header.VisiblePosition = 36;
  1993. ultraGridColumn139.RowLayoutColumnInfo.OriginX = 10;
  1994. ultraGridColumn139.RowLayoutColumnInfo.OriginY = 0;
  1995. ultraGridColumn139.RowLayoutColumnInfo.PreferredCellSize = new System.Drawing.Size(96, 0);
  1996. ultraGridColumn139.RowLayoutColumnInfo.SpanX = 1;
  1997. ultraGridColumn139.RowLayoutColumnInfo.SpanY = 1;
  1998. ultraGridColumn140.Header.Caption = "卷板总包号";
  1999. ultraGridColumn140.Header.VisiblePosition = 37;
  2000. ultraGridColumn140.Hidden = true;
  2001. ultraGridColumn140.MergedCellStyle = Infragistics.Win.UltraWinGrid.MergedCellStyle.Always;
  2002. ultraGridColumn140.RowLayoutColumnInfo.OriginX = 1;
  2003. ultraGridColumn140.RowLayoutColumnInfo.OriginY = 0;
  2004. ultraGridColumn140.RowLayoutColumnInfo.PreferredCellSize = new System.Drawing.Size(128, 0);
  2005. ultraGridColumn140.RowLayoutColumnInfo.SpanX = 1;
  2006. ultraGridColumn140.RowLayoutColumnInfo.SpanY = 1;
  2007. ultraGridBand4.Columns.AddRange(new object[] {
  2008. ultraGridColumn103,
  2009. ultraGridColumn104,
  2010. ultraGridColumn105,
  2011. ultraGridColumn106,
  2012. ultraGridColumn107,
  2013. ultraGridColumn108,
  2014. ultraGridColumn109,
  2015. ultraGridColumn110,
  2016. ultraGridColumn111,
  2017. ultraGridColumn112,
  2018. ultraGridColumn113,
  2019. ultraGridColumn114,
  2020. ultraGridColumn115,
  2021. ultraGridColumn116,
  2022. ultraGridColumn117,
  2023. ultraGridColumn118,
  2024. ultraGridColumn119,
  2025. ultraGridColumn120,
  2026. ultraGridColumn121,
  2027. ultraGridColumn122,
  2028. ultraGridColumn123,
  2029. ultraGridColumn124,
  2030. ultraGridColumn125,
  2031. ultraGridColumn126,
  2032. ultraGridColumn127,
  2033. ultraGridColumn128,
  2034. ultraGridColumn129,
  2035. ultraGridColumn130,
  2036. ultraGridColumn131,
  2037. ultraGridColumn132,
  2038. ultraGridColumn133,
  2039. ultraGridColumn134,
  2040. ultraGridColumn135,
  2041. ultraGridColumn136,
  2042. ultraGridColumn137,
  2043. ultraGridColumn138,
  2044. ultraGridColumn139,
  2045. ultraGridColumn140});
  2046. appearance99.BackColor = System.Drawing.Color.LightSteelBlue;
  2047. ultraGridBand4.Header.Appearance = appearance99;
  2048. ultraGridBand4.Override.RowSelectors = Infragistics.Win.DefaultableBoolean.True;
  2049. summarySettings8.DisplayFormat = "{0}吨";
  2050. summarySettings8.GroupBySummaryValueAppearance = appearance100;
  2051. summarySettings9.DisplayFormat = "{0}块";
  2052. summarySettings9.GroupBySummaryValueAppearance = appearance101;
  2053. summarySettings10.DisplayFormat = "{0}吨";
  2054. summarySettings10.GroupBySummaryValueAppearance = appearance102;
  2055. ultraGridBand4.Summaries.AddRange(new Infragistics.Win.UltraWinGrid.SummarySettings[] {
  2056. summarySettings8,
  2057. summarySettings9,
  2058. summarySettings10});
  2059. ultraGridBand4.UseRowLayout = true;
  2060. this.gb_Turan.DisplayLayout.BandsSerializer.Add(ultraGridBand4);
  2061. this.gb_Turan.DisplayLayout.CaptionVisible = Infragistics.Win.DefaultableBoolean.False;
  2062. appearance103.BackColor = System.Drawing.SystemColors.ActiveBorder;
  2063. appearance103.BackColor2 = System.Drawing.SystemColors.ControlDark;
  2064. appearance103.BackGradientStyle = Infragistics.Win.GradientStyle.Vertical;
  2065. appearance103.BorderColor = System.Drawing.SystemColors.Window;
  2066. this.gb_Turan.DisplayLayout.GroupByBox.Appearance = appearance103;
  2067. appearance104.ForeColor = System.Drawing.SystemColors.GrayText;
  2068. this.gb_Turan.DisplayLayout.GroupByBox.BandLabelAppearance = appearance104;
  2069. this.gb_Turan.DisplayLayout.GroupByBox.Hidden = true;
  2070. this.gb_Turan.DisplayLayout.GroupByBox.Prompt = "将要分组的列拖至该区域!";
  2071. appearance105.BackColor = System.Drawing.SystemColors.Window;
  2072. appearance105.ForeColor = System.Drawing.SystemColors.ControlText;
  2073. this.gb_Turan.DisplayLayout.Override.ActiveCellAppearance = appearance105;
  2074. appearance106.BackColor = System.Drawing.SystemColors.Highlight;
  2075. appearance106.ForeColor = System.Drawing.SystemColors.HighlightText;
  2076. this.gb_Turan.DisplayLayout.Override.ActiveRowAppearance = appearance106;
  2077. appearance107.BorderColor = System.Drawing.Color.Black;
  2078. appearance107.TextVAlign = Infragistics.Win.VAlign.Middle;
  2079. this.gb_Turan.DisplayLayout.Override.CellAppearance = appearance107;
  2080. this.gb_Turan.DisplayLayout.Override.CellClickAction = Infragistics.Win.UltraWinGrid.CellClickAction.EditAndSelectText;
  2081. this.gb_Turan.DisplayLayout.Override.CellPadding = 0;
  2082. appearance108.BackColor = System.Drawing.SystemColors.Control;
  2083. appearance108.BackColor2 = System.Drawing.SystemColors.ControlDark;
  2084. appearance108.BackGradientAlignment = Infragistics.Win.GradientAlignment.Element;
  2085. appearance108.BackGradientStyle = Infragistics.Win.GradientStyle.Horizontal;
  2086. appearance108.BorderColor = System.Drawing.SystemColors.Window;
  2087. appearance108.TextHAlign = Infragistics.Win.HAlign.Left;
  2088. appearance108.TextVAlign = Infragistics.Win.VAlign.Middle;
  2089. this.gb_Turan.DisplayLayout.Override.GroupByRowAppearance = appearance108;
  2090. this.gb_Turan.DisplayLayout.Override.GroupBySummaryDisplayStyle = Infragistics.Win.UltraWinGrid.GroupBySummaryDisplayStyle.SummaryCells;
  2091. appearance109.BackColor = System.Drawing.Color.Silver;
  2092. this.gb_Turan.DisplayLayout.Override.HeaderAppearance = appearance109;
  2093. this.gb_Turan.DisplayLayout.Override.HeaderClickAction = Infragistics.Win.UltraWinGrid.HeaderClickAction.SortMulti;
  2094. this.gb_Turan.DisplayLayout.Override.HeaderStyle = Infragistics.Win.HeaderStyle.Standard;
  2095. appearance110.BackColor = System.Drawing.SystemColors.Window;
  2096. appearance110.BorderColor = System.Drawing.Color.Black;
  2097. appearance110.TextVAlign = Infragistics.Win.VAlign.Middle;
  2098. this.gb_Turan.DisplayLayout.Override.RowAppearance = appearance110;
  2099. appearance111.BackColor = System.Drawing.SystemColors.Window;
  2100. appearance111.BorderColor = System.Drawing.Color.Black;
  2101. appearance111.TextVAlign = Infragistics.Win.VAlign.Middle;
  2102. this.gb_Turan.DisplayLayout.Override.RowPreviewAppearance = appearance111;
  2103. this.gb_Turan.DisplayLayout.Override.RowSelectorHeaderStyle = Infragistics.Win.UltraWinGrid.RowSelectorHeaderStyle.SeparateElement;
  2104. this.gb_Turan.DisplayLayout.Override.RowSelectorNumberStyle = Infragistics.Win.UltraWinGrid.RowSelectorNumberStyle.RowIndex;
  2105. this.gb_Turan.DisplayLayout.Override.RowSelectors = Infragistics.Win.DefaultableBoolean.True;
  2106. appearance112.TextHAlign = Infragistics.Win.HAlign.Left;
  2107. appearance112.TextVAlign = Infragistics.Win.VAlign.Middle;
  2108. this.gb_Turan.DisplayLayout.Override.SelectedRowAppearance = appearance112;
  2109. this.gb_Turan.DisplayLayout.Override.SummaryDisplayArea = Infragistics.Win.UltraWinGrid.SummaryDisplayAreas.BottomFixed;
  2110. appearance113.BackColor = System.Drawing.SystemColors.Window;
  2111. this.gb_Turan.DisplayLayout.Override.SummaryFooterAppearance = appearance113;
  2112. appearance114.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(255)))), ((int)(((byte)(255)))), ((int)(((byte)(192)))));
  2113. appearance114.ForeColor = System.Drawing.Color.Red;
  2114. this.gb_Turan.DisplayLayout.Override.SummaryFooterCaptionAppearance = appearance114;
  2115. this.gb_Turan.DisplayLayout.Override.SummaryFooterCaptionVisible = Infragistics.Win.DefaultableBoolean.False;
  2116. appearance115.BackColor = System.Drawing.Color.MistyRose;
  2117. appearance115.ForeColor = System.Drawing.Color.Blue;
  2118. appearance115.TextHAlign = Infragistics.Win.HAlign.Right;
  2119. appearance115.TextVAlign = Infragistics.Win.VAlign.Middle;
  2120. this.gb_Turan.DisplayLayout.Override.SummaryValueAppearance = appearance115;
  2121. appearance116.BackColor = System.Drawing.SystemColors.ControlLight;
  2122. this.gb_Turan.DisplayLayout.Override.TemplateAddRowAppearance = appearance116;
  2123. this.gb_Turan.DisplayLayout.ScrollBounds = Infragistics.Win.UltraWinGrid.ScrollBounds.ScrollToFill;
  2124. this.gb_Turan.DisplayLayout.ScrollStyle = Infragistics.Win.UltraWinGrid.ScrollStyle.Immediate;
  2125. this.gb_Turan.DisplayLayout.ViewStyleBand = Infragistics.Win.UltraWinGrid.ViewStyleBand.OutlookGroupBy;
  2126. this.gb_Turan.Dock = System.Windows.Forms.DockStyle.Fill;
  2127. this.gb_Turan.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  2128. this.gb_Turan.Location = new System.Drawing.Point(3, 18);
  2129. this.gb_Turan.Name = "gb_Turan";
  2130. this.gb_Turan.Size = new System.Drawing.Size(962, 219);
  2131. this.gb_Turan.TabIndex = 14;
  2132. this.gb_Turan.Text = "ultraGrid2";
  2133. this.gb_Turan.CellChange += new Infragistics.Win.UltraWinGrid.CellEventHandler(this.gb_Turan_CellChange);
  2134. //
  2135. // Frm_TurnoffManage
  2136. //
  2137. this.AutoScaleBaseSize = new System.Drawing.Size(6, 14);
  2138. this.ClientSize = new System.Drawing.Size(968, 530);
  2139. this.Controls.Add(this.ultraGroupBox2);
  2140. this.Controls.Add(this.ultraExpandableGroupBox1);
  2141. this.Controls.Add(this.ultraGroupBox1);
  2142. this.Controls.Add(this.panel1);
  2143. this.Name = "Frm_TurnoffManage";
  2144. this.Text = "卷板成品收集入库管理";
  2145. this.Load += new System.EventHandler(this.Frm_TurnoffManage_Load);
  2146. this.panel1.ResumeLayout(false);
  2147. ((System.ComponentModel.ISupportInitialize)(this.ultraToolbarsManager1)).EndInit();
  2148. ((System.ComponentModel.ISupportInitialize)(this.ultraGroupBox1)).EndInit();
  2149. this.ultraGroupBox1.ResumeLayout(false);
  2150. ((System.ComponentModel.ISupportInitialize)(this.cmb_ProcL)).EndInit();
  2151. ((System.ComponentModel.ISupportInitialize)(this.dte_EndTime)).EndInit();
  2152. ((System.ComponentModel.ISupportInitialize)(this.dte_BeginTime)).EndInit();
  2153. ((System.ComponentModel.ISupportInitialize)(this.cmb_QuYu)).EndInit();
  2154. ((System.ComponentModel.ISupportInitialize)(this.txt_PIhao_End)).EndInit();
  2155. ((System.ComponentModel.ISupportInitialize)(this.txt_Pihao_Top)).EndInit();
  2156. ((System.ComponentModel.ISupportInitialize)(this.txt_BNumber)).EndInit();
  2157. ((System.ComponentModel.ISupportInitialize)(this.txt_PiHao_Begin)).EndInit();
  2158. ((System.ComponentModel.ISupportInitialize)(this.txt_GangP)).EndInit();
  2159. ((System.ComponentModel.ISupportInitialize)(this.txt_RollHao)).EndInit();
  2160. ((System.ComponentModel.ISupportInitialize)(this.txt_PlanID)).EndInit();
  2161. ((System.ComponentModel.ISupportInitialize)(this.txt_OrderNO)).EndInit();
  2162. ((System.ComponentModel.ISupportInitialize)(this.ultraExpandableGroupBox1)).EndInit();
  2163. this.ultraExpandableGroupBox1.ResumeLayout(false);
  2164. this.ultraExpandableGroupBoxPanel1.ResumeLayout(false);
  2165. ((System.ComponentModel.ISupportInitialize)(this.gb_Press)).EndInit();
  2166. this.panel2.ResumeLayout(false);
  2167. ((System.ComponentModel.ISupportInitialize)(this.txt_Seq)).EndInit();
  2168. ((System.ComponentModel.ISupportInitialize)(this.cmb_plid)).EndInit();
  2169. ((System.ComponentModel.ISupportInitialize)(this.cmb_Gylx)).EndInit();
  2170. ((System.ComponentModel.ISupportInitialize)(this.cmb_area)).EndInit();
  2171. ((System.ComponentModel.ISupportInitialize)(this.txt_ZHPD)).EndInit();
  2172. ((System.ComponentModel.ISupportInitialize)(this.txt_Plact)).EndInit();
  2173. ((System.ComponentModel.ISupportInitialize)(this.txt_ReMark)).EndInit();
  2174. ((System.ComponentModel.ISupportInitialize)(this.dte_Time)).EndInit();
  2175. ((System.ComponentModel.ISupportInitialize)(this.txt_PaiHao)).EndInit();
  2176. ((System.ComponentModel.ISupportInitialize)(this.txt_Num)).EndInit();
  2177. ((System.ComponentModel.ISupportInitialize)(this.txt_WEIGHT)).EndInit();
  2178. ((System.ComponentModel.ISupportInitialize)(this.txt_Width)).EndInit();
  2179. ((System.ComponentModel.ISupportInitialize)(this.txt_Length)).EndInit();
  2180. ((System.ComponentModel.ISupportInitialize)(this.txt_Ply)).EndInit();
  2181. ((System.ComponentModel.ISupportInitialize)(this.cmb_ClassStream)).EndInit();
  2182. ((System.ComponentModel.ISupportInitialize)(this.cmb_ClassOreder)).EndInit();
  2183. ((System.ComponentModel.ISupportInitialize)(this.cmb_Buress)).EndInit();
  2184. ((System.ComponentModel.ISupportInitialize)(this.cmb_BugReaSon)).EndInit();
  2185. ((System.ComponentModel.ISupportInitialize)(this.txt_GangpeiH)).EndInit();
  2186. ((System.ComponentModel.ISupportInitialize)(this.txt_Scid_End_Y)).EndInit();
  2187. ((System.ComponentModel.ISupportInitialize)(this.txt_Scid_Begin_Y)).EndInit();
  2188. ((System.ComponentModel.ISupportInitialize)(this.txt_Scid_Top_Y)).EndInit();
  2189. ((System.ComponentModel.ISupportInitialize)(this.txt_TiShi)).EndInit();
  2190. ((System.ComponentModel.ISupportInitialize)(this.ultraGroupBox2)).EndInit();
  2191. this.ultraGroupBox2.ResumeLayout(false);
  2192. ((System.ComponentModel.ISupportInitialize)(this.gb_Turan)).EndInit();
  2193. ((System.ComponentModel.ISupportInitialize)(this.ultraDataSource1)).EndInit();
  2194. this.ResumeLayout(false);
  2195. }
  2196. #endregion
  2197. #region 查询
  2198. private string GetWhere()
  2199. {
  2200. string strSql = "";
  2201. if (this.chk_CollectTime.Checked)
  2202. {
  2203. strSql += " AND TO_CHAR(A.CREATETIME,'YYYY-MM-DD') >='" + Convert.ToDateTime(this.dte_BeginTime.Value).ToString("yyyy-MM-dd") + "' "
  2204. + " AND TO_CHAR(A.CREATETIME,'YYYY-MM-DD') <='" + Convert.ToDateTime(this.dte_EndTime.Value).ToString("yyyy-MM-dd") + "' ";
  2205. }
  2206. if (this.chk_OrderNO.Checked)
  2207. {
  2208. strSql += "AND A.ORD_SEQ like '%" + this.txt_OrderNO.Text + "%'"; ;
  2209. }
  2210. if (this.chk_PactID.Checked)
  2211. {
  2212. strSql += "AND A.ORD_NO like '%" + this.txt_PlanID.Text + "%'";
  2213. }
  2214. if (this.chk_RollHao.Checked)
  2215. {
  2216. strSql += "AND A.OLD_SAMPL_NO LIKE '%" + this.txt_RollHao.Text + "%'";
  2217. }
  2218. if (this.chk_BanHao.Checked)
  2219. {
  2220. strSql += "AND A.SLAB_NO='" + this.txt_GangP.Text + "'";
  2221. }
  2222. if (this.chk_PiHao.Checked)
  2223. {
  2224. strSql += "AND A.COIL_NO_ID='" + this.txt_PiHao_Begin.Text + "-" + this.txt_Pihao_Top.Text + "-" + this.txt_PIhao_End.Text + "'";
  2225. }
  2226. if (this.chk_BNumber.Checked)
  2227. {
  2228. strSql += "AND A.BAHCT_NUMBER||A.SERIAL_NUMBER LIKE '" + this.txt_BNumber.Text + "'";
  2229. }
  2230. return strSql;
  2231. }
  2232. private void DetailQuery(string _Conntion)
  2233. {
  2234. try
  2235. {
  2236. string strOut = "";
  2237. DataSet ds = (DataSet)Core.Mes.ClientFrameWork.ClientCommon._RemotingHelp.ExecuteMethod("CoilMachiningManage", "Core.XgMes.Server.CoilMachiningManage.TurnoffManage", "Procdute_Query", new object[] { _Conntion }, out strOut);
  2238. this.gb_Press.DataSource = ds;
  2239. this.gb_Press.UpdateData();
  2240. Comm.SetGridSumArea(this.gb_Press);
  2241. }
  2242. catch (Exception ex)
  2243. {
  2244. System.Diagnostics.Debug.WriteLine(ex.ToString());
  2245. }
  2246. }
  2247. private void GetZYDetail(string _Conntion)
  2248. {
  2249. string strOut = "";
  2250. try
  2251. {
  2252. DataSet ds = (DataSet)Core.Mes.ClientFrameWork.ClientCommon._RemotingHelp.ExecuteMethod("CoilMachiningManage", "Core.XgMes.Server.CoilMachiningManage.TurnoffManage", "Procdute_Query", new object[] { _Conntion }, out strOut);
  2253. if (ds != null && ds.Tables[0].Rows.Count > 0)
  2254. {
  2255. System.Data.DataRow dr = ds.Tables[0].Rows[0];
  2256. this.txt_GangpeiH.Text = Comm.ObjToStr(dr["OLD_SAMPL_NO"]);
  2257. this.txt_PaiHao.Text = Comm.ObjToStr(dr["STL_GRD"]);
  2258. this.txt_Plact.Text = Comm.ObjToStr(dr["ORD_NO"]);
  2259. this.txt_Ply.Value = Comm.ObjToDouble(dr["ZSLAB_PLY"]);
  2260. this.txt_Width.Value = Comm.ObjToDouble(dr["ZSLAB_WIDTH"]);
  2261. this.txt_Length.Value = Comm.ObjToStr(dr["ZSLAB_LENGTH"]);
  2262. this.txt_Num.Value = Comm.ObjToStr(dr["ZSLAB_NUM"]);
  2263. this.txt_WEIGHT.Value = Comm.ObjToStr(dr["ZSLAB_WEIGHT"]);
  2264. this.cmb_BugReaSon.Value = Comm.ObjToStr(dr["CRK_CD1"]);
  2265. this.cmb_Gylx.Value = Comm.ObjToStr(dr["GYLX"]);
  2266. this.cmb_plid.Value = Comm.ObjToStr(dr["STOCKTYPE"]);
  2267. this.txt_ZHPD.Value = Comm.ObjToStr(dr["TOT_DEC_GRD"]);
  2268. this.txt_Seq.Text = Comm.ObjToStr(dr["ORD_SEQ"]);
  2269. this.cmb_Gylx.Value = Comm.ObjToStr(dr["GYLX"]);
  2270. }
  2271. else
  2272. {
  2273. txt_TiShi.Appearance.ForeColor = System.Drawing.Color.Red;
  2274. txt_TiShi.Text = "该钢卷无生产实绩信息,请与生产作业组联系";
  2275. txt_Scid_Top_Y.Focus();
  2276. }
  2277. }
  2278. catch (Exception ex)
  2279. {
  2280. System.Diagnostics.Debug.WriteLine(ex.ToString());
  2281. }
  2282. }
  2283. private void txt_Scid_Top_Y_Enter(object sender, System.EventArgs e)
  2284. {
  2285. try
  2286. {
  2287. if (sender.GetType().ToString() == "Infragistics.Win.UltraWinEditors.UltraTextEditor")
  2288. {
  2289. ((Infragistics.Win.UltraWinEditors.UltraTextEditor)sender).SelectAll();
  2290. }
  2291. if (sender.GetType().ToString() == "Infragistics.Win.UltraWinEditors.UltraNumericEditor")
  2292. {
  2293. ((Infragistics.Win.UltraWinEditors.UltraNumericEditor)sender).SelectAll();
  2294. }
  2295. }
  2296. catch (Exception ex)
  2297. {
  2298. System.Diagnostics.Debug.WriteLine(ex.ToString());
  2299. }
  2300. }
  2301. private void txt_Scid_Top_Y_KeyDown(object sender, System.Windows.Forms.KeyEventArgs e)
  2302. {
  2303. try
  2304. {
  2305. if (e.KeyData == Keys.Return)
  2306. {
  2307. if (((System.Windows.Forms.Control)sender).Name == this.txt_Scid_End_Y.Name)
  2308. {
  2309. string sqlStr = " AND A.COIL_NO_ID = '" + this.txt_Scid_Top_Y.Text.Trim() + "-" + this.txt_Scid_Begin_Y.Text.Trim() + "-" + this.txt_Scid_End_Y.Text + "'";
  2310. this.GetZYDetail(sqlStr);
  2311. }
  2312. if (((System.Windows.Forms.Control)sender).Name == this.Btn_Turn.Name)
  2313. {
  2314. this.TurnAdd();
  2315. }
  2316. System.Windows.Forms.SendKeys.Send("{TAB}");
  2317. }
  2318. }
  2319. catch (Exception ex)
  2320. {
  2321. System.Diagnostics.Debug.WriteLine(ex.ToString());
  2322. }
  2323. }
  2324. private string Turn_GetWhere()
  2325. {
  2326. string strSql = "";
  2327. if (this.chk_CollectTime.Checked)
  2328. {
  2329. strSql += " AND TO_CHAR(A.CREATETIME,'YYYY-MM-DD') >='" + Convert.ToDateTime(this.dte_BeginTime.Value).ToString("yyyy-MM-dd") + "' "
  2330. + " AND TO_CHAR(A.CREATETIME,'YYYY-MM-DD') <='" + Convert.ToDateTime(this.dte_EndTime.Value).ToString("yyyy-MM-dd") + "' ";
  2331. }
  2332. if (this.chk_OrderNO.Checked)
  2333. {
  2334. strSql += "AND A.ORD_SEQ='" + this.txt_OrderNO.Text + "'"; ;
  2335. }
  2336. if (this.chk_PactID.Checked)
  2337. {
  2338. strSql += "AND A.ORD_NO LIKE '%" + this.txt_PlanID.Text + "%'";
  2339. }
  2340. if (this.chk_RollHao.Checked)
  2341. {
  2342. strSql += "AND A.OLD_SAMPL_NO='" + this.txt_RollHao.Text + "'";
  2343. }
  2344. if (this.chk_BanHao.Checked)
  2345. {
  2346. strSql += "AND A.SLAB_NO='" + this.txt_GangP.Text + "'";
  2347. }
  2348. if (this.chk_PiHao.Checked)
  2349. {
  2350. strSql += "AND COIL_NO_ID='" + this.txt_PiHao_Begin.Text + "-" + this.txt_Pihao_Top.Text + "-" + this.txt_PIhao_End.Text + "'";
  2351. }
  2352. if (this.chk_BNumber.Checked)
  2353. {
  2354. strSql += "AND A.BAHCT_NUMBER||A.SERIAL_NUMBER LIKE '" + this.txt_BNumber.Text + "'";
  2355. }
  2356. if (this.ultraCheckEditor1.Checked)
  2357. {
  2358. strSql += " AND B.AREA='" + this.cmb_QuYu.Value + "'";
  2359. }
  2360. if (this.chk_ProcLine.Checked)
  2361. {
  2362. strSql += " AND A.STOCKTYPE='" + this.cmb_ProcL.Value.ToString() + "'";
  2363. }
  2364. return strSql;
  2365. }
  2366. private void TurnQuery(string _Conntion)
  2367. {
  2368. try
  2369. {
  2370. string strOut = "";
  2371. DataSet ds = (DataSet)Core.Mes.ClientFrameWork.ClientCommon._RemotingHelp.ExecuteMethod("CoilMachiningManage", "Core.XgMes.Server.CoilMachiningManage.TurnoffManage", "Turn_Query", new object[] { _Conntion }, out strOut);
  2372. this.gb_Turan.DataSource = ds;
  2373. this.gb_Turan.UpdateData();
  2374. Comm.SetGridSumArea(this.gb_Turan);
  2375. }
  2376. catch (Exception ex)
  2377. {
  2378. System.Diagnostics.Debug.WriteLine(ex.ToString());
  2379. }
  2380. }
  2381. #endregion
  2382. #region 成品入库
  2383. private bool Check_Turn()
  2384. {
  2385. if (this.txt_Scid_End_Y.Text.Trim().Length == 0 && this.txt_Scid_Begin_Y.Text.Trim().Length == 0 && this.txt_Scid_Top_Y.Text.Trim().Length == 0)
  2386. {
  2387. txt_TiShi.Appearance.ForeColor = System.Drawing.Color.Red;
  2388. txt_TiShi.Text = "板批号不能为空!";
  2389. return false;
  2390. }
  2391. if (this.cmb_Buress.Text.Trim().Length == 0)
  2392. {
  2393. txt_TiShi.Appearance.ForeColor = System.Drawing.Color.Red;
  2394. txt_TiShi.Text = "堆位不能为空!";
  2395. return false;
  2396. }
  2397. if (this.cmb_ClassOreder.Text.Trim().Length == 0)
  2398. {
  2399. txt_TiShi.Appearance.ForeColor = System.Drawing.Color.Red;
  2400. txt_TiShi.Text = "班次不能为空!";
  2401. return false;
  2402. }
  2403. if (this.cmb_ClassStream.Text.Trim().Length == 0)
  2404. {
  2405. txt_TiShi.Appearance.ForeColor = System.Drawing.Color.Red;
  2406. txt_TiShi.Text = "班组不能为空!";
  2407. return false;
  2408. }
  2409. if (this.txt_Ply.Value.ToString().Trim().Length == 0)
  2410. {
  2411. txt_TiShi.Appearance.ForeColor = System.Drawing.Color.Red;
  2412. txt_TiShi.Text = "厚度不能为空!";
  2413. return false;
  2414. }
  2415. return true;
  2416. }
  2417. private void TurnAdd()
  2418. {
  2419. if (!Check_Turn())
  2420. {
  2421. return;
  2422. }
  2423. try
  2424. {
  2425. string strOut = "";
  2426. ArrayList array = new ArrayList();
  2427. array.Add(this.txt_Scid_Top_Y.Text + "-" + this.txt_Scid_Begin_Y.Text + "-" + this.txt_Scid_End_Y.Text);
  2428. if (array.Count == 0)
  2429. {
  2430. MessageBox.Show("请您查看卷板批号是否填写正确!", "提示", System.Windows.Forms.MessageBoxButtons.OK, System.Windows.Forms.MessageBoxIcon.Information);
  2431. return;
  2432. }
  2433. ArrayList Other = new ArrayList();
  2434. Other.Add(this.cmb_BugReaSon.Text);
  2435. Other.Add(this.txt_ZHPD.Value);
  2436. Other.Add(this.cmb_Buress.Value.ToString());
  2437. Other.Add(this.cmb_ClassOreder.Value.ToString());
  2438. Other.Add(this.cmb_ClassOreder.Value.ToString());
  2439. Other.Add(this.txt_Length.Value.ToString());
  2440. Other.Add(this.txt_Num.Value.ToString());
  2441. Other.Add(this.txt_WEIGHT.Value.ToString());
  2442. Other.Add(Core.Mes.ClientFrameWork.ClientCommon._UserInfo.UserName);
  2443. Other.Add(this.txt_ReMark.Text);
  2444. object obj = Core.Mes.ClientFrameWork.ClientCommon._RemotingHelp.ExecuteMethod("CoilMachiningManage", "Core.XgMes.Server.CoilMachiningManage.TurnoffManage", "Turn_ADD", new object[] { array, Other }, out strOut);
  2445. if (obj != null && obj.ToString() == "1")
  2446. {
  2447. this.txt_TiShi.Appearance.ForeColor = System.Drawing.Color.Blue;
  2448. txt_TiShi.Text = "成功入库!";
  2449. this.txt_WEIGHT.Value = 0;
  2450. this.txt_Num.Value = 0;
  2451. this.txt_Length.Value = 0;
  2452. this.txt_Ply.Value = 0;
  2453. this.txt_Width.Value = 0;
  2454. this.txt_GangpeiH.Clear();
  2455. DataSet ds = (DataSet)this.gb_Press.DataSource;
  2456. System.Data.DataRow[] row = ds.Tables["KCJ3_ZY_TASKDETAIL"].Select("COIL_NO_ID='" + this.txt_Scid_Top_Y.Text + "-" + this.txt_Scid_Begin_Y.Text + "-" + this.txt_Scid_End_Y.Text + "'");
  2457. for (int i = 0; i < row.Length; i++)
  2458. {
  2459. ds.Tables["KCJ3_ZY_TASKDETAIL"].Rows.Remove(row[i]);
  2460. ds.Tables["KCJ3_ZY_TASKDETAIL"].AcceptChanges();
  2461. }
  2462. string strSql = " AND A.COIL_NO_ID='" + this.txt_Scid_Top_Y.Text + "-" + this.txt_Scid_Begin_Y.Text + "-" + this.txt_Scid_End_Y.Text + "'";
  2463. this.TurnQuery(strSql);
  2464. }
  2465. else
  2466. {
  2467. txt_TiShi.Appearance.ForeColor = System.Drawing.Color.Red;
  2468. txt_TiShi.Text = Comm.ObjToStr(obj) + strOut;
  2469. }
  2470. }
  2471. catch (Exception ex)
  2472. {
  2473. System.Diagnostics.Debug.WriteLine(ex.ToString());
  2474. }
  2475. }
  2476. #endregion
  2477. private void ultraToolbarsManager1_ToolClick(object sender, Infragistics.Win.UltraWinToolbars.ToolClickEventArgs e)
  2478. {
  2479. switch (e.Tool.Key)
  2480. {
  2481. case "QUERY":
  2482. TurnQuery(this.Turn_GetWhere());
  2483. break;
  2484. case "ADD":
  2485. this.TurnAdd();
  2486. break;
  2487. case "DEL":
  2488. this.Turn_Del();
  2489. break;
  2490. case "REF":
  2491. this.DetailQuery(this.GetWhere());
  2492. break;
  2493. case "TO_EXCEL":
  2494. ExportButtressInfo();
  2495. break;
  2496. case "Close":
  2497. break;
  2498. }
  2499. }
  2500. #region 初始化
  2501. private void Frm_TurnoffManage_Load(object sender, System.EventArgs e)
  2502. {
  2503. string strOut = "";
  2504. string sql = "", strSql="";
  2505. DataSet ds;
  2506. Comm.SetGridSumArea(this.gb_Press);
  2507. Comm.SetGridSumArea(this.gb_Turan);
  2508. //班次
  2509. sql = "SELECT ID_,NAME_ FROM SCM_BASE_INFO WHERE SORT_CODE = '3002'";
  2510. ds = (DataSet)ClientCommon._RemotingHelp.ExecuteMethod("CoilMachiningManage", "Core.XgMes.Server.CoilMachiningManage.Common", "GetDataSet", new object[] { sql }, out strOut);
  2511. ds.Tables[0].TableName = "SCM_BASE_INFO";
  2512. Comm.Init_ComboControl(this.cmb_ClassOreder, "SCM_BASE_INFO", "NAME_", "ID_", ref ds);
  2513. //班组
  2514. sql = "SELECT ID_,NAME_ FROM SCM_BASE_INFO WHERE SORT_CODE = '3003'";
  2515. ds = (DataSet)ClientCommon._RemotingHelp.ExecuteMethod("CoilMachiningManage", "Core.XgMes.Server.CoilMachiningManage.Common", "GetDataSet", new object[] { sql }, out strOut);
  2516. ds.Tables[0].TableName = "SCM_BASE_INFO";
  2517. Comm.Init_ComboControl(this.cmb_ClassStream, "SCM_BASE_INFO", "NAME_", "ID_", ref ds);
  2518. //堆位
  2519. sql = "SELECT BUTTRESSCODE FROM KCJ_BUTTRESS WHERE BUTTRESSTYPE='1' AND ISVALID='1' ORDER BY BUTTRESSCODE ASC";
  2520. ds = (DataSet)ClientCommon._RemotingHelp.ExecuteMethod("CoilMachiningManage", "Core.XgMes.Server.CoilMachiningManage.Common", "GetDataSet", new object[] { sql }, out strOut);
  2521. ds.Tables[0].TableName = "KCJ_BUTTRESS";
  2522. Comm.Init_ComboControl(this.cmb_Buress, "KCJ_BUTTRESS", "BUTTRESSCODE", "BUTTRESSCODE", ref ds);
  2523. //原料区域cmb_NewArea
  2524. sql = "select areacode from kcj_area where areatype='1' and isvalid='1'";
  2525. ds = (DataSet)ClientCommon._RemotingHelp.ExecuteMethod("CoilMachiningManage", "Core.XgMes.Server.CoilMachiningManage.Common", "GetDataSet", new object[] { sql }, out strOut);
  2526. ds.Tables[0].TableName = "KCJ_AREA";
  2527. Comm.Init_ComboControl(this.cmb_QuYu, "KCJ_AREA", "AREACODE", "AREACODE", ref ds);
  2528. //add by lyp 成品区域
  2529. Comm.Init_ComboControl(this.cmb_area, "KCJ_AREA", "AREACODE", "AREACODE", ref ds);
  2530. //开平线
  2531. sql = "SELECT ID_,NAME_ FROM KCJ_BASEDATA WHERE SORT_CODE in ('8055','8066')";
  2532. ds = (DataSet)ClientCommon._RemotingHelp.ExecuteMethod("CoilMachiningManage", "Core.XgMes.Server.CoilMachiningManage.Common", "GetDataSet", new object[] { sql }, out strOut);
  2533. ds.Tables[0].TableName = "KCJ_BASEDATA";
  2534. Comm.Init_ComboControl(this.cmb_ProcL, "KCJ_BASEDATA", "NAME_", "ID_", ref ds);
  2535. Comm.Init_ComboControl(this.cmb_plid, "KCJ_BASEDATA", "NAME_", "ID_", ref ds);
  2536. //工艺缺陷
  2537. strSql = "SELECT T.ID_,T.NAME_ FROM SCM_BASE_INFO T WHERE ID_ LIKE '4124ZB1G%' AND T.SORT_CODE = '4124'";
  2538. ds = (DataSet)ClientCommon._RemotingHelp.ExecuteMethod("JTurnoffManager", "Core.XgMes.Server.JGKC.TurnoffManager.Common", "GetDataSet", new object[] { strSql }, out strOut);
  2539. ds.Tables[0].TableName = "SCM_BASE_INFO";
  2540. Comm.Init_ComboControl(this.cmb_BugReaSon, "SCM_BASE_INFO", "NAME_", "ID_", ref ds);
  2541. //判定类别
  2542. strSql = "SELECT T.ID_,T.NAME_ FROM SCM_BASE_INFO T WHERE T.SORT_CODE = '4127'";
  2543. ds = (DataSet)ClientCommon._RemotingHelp.ExecuteMethod("JTurnoffManager", "Core.XgMes.Server.JGKC.TurnoffManager.Common", "GetDataSet", new object[] { strSql }, out strOut);
  2544. ds.Tables[0].TableName = "SCM_BASE_INFO";
  2545. Comm.Init_ComboControl(this.txt_ZHPD, "SCM_BASE_INFO", "NAME_", "ID_", ref ds);
  2546. //工艺类型
  2547. sql = "SELECT ID_,NAME_ FROM KCJ_BASEDATA WHERE SORT_CODE ='8077'";
  2548. ds = (DataSet)ClientCommon._RemotingHelp.ExecuteMethod("CoilMachiningManage", "Core.XgMes.Server.CoilMachiningManage.Common", "GetDataSet", new object[] { sql }, out strOut);
  2549. ds.Tables[0].TableName = "KCJ_BASEDATA";
  2550. Comm.Init_ComboControl(this.cmb_Gylx, "KCJ_BASEDATA", "NAME_", "ID_", ref ds);
  2551. }
  2552. #endregion
  2553. #region 入库
  2554. private void Btn_Turn_Click(object sender, System.EventArgs e)
  2555. {
  2556. if (!Check_Turn())
  2557. {
  2558. return;
  2559. }
  2560. try
  2561. {
  2562. string strOut = "";
  2563. ArrayList array = new ArrayList();
  2564. array.Add(this.txt_Scid_Top_Y.Text + "-" + this.txt_Scid_Begin_Y.Text + "-" + this.txt_Scid_End_Y.Text);
  2565. if (array.Count == 0)
  2566. {
  2567. MessageBox.Show("请您查看卷板批号是否填写正确!", "提示", System.Windows.Forms.MessageBoxButtons.OK, System.Windows.Forms.MessageBoxIcon.Information);
  2568. return;
  2569. }
  2570. ArrayList Other = new ArrayList();
  2571. Other.Add(this.cmb_BugReaSon.Text);
  2572. Other.Add(this.txt_ZHPD.Value);
  2573. Other.Add(this.cmb_Buress.Text);
  2574. Other.Add(this.cmb_ClassOreder.Value.ToString());
  2575. Other.Add(this.cmb_ClassOreder.Value.ToString());
  2576. Other.Add(this.txt_Length.Value.ToString());
  2577. Other.Add(this.txt_Num.Value.ToString());
  2578. Other.Add(this.txt_WEIGHT.Value.ToString());
  2579. Other.Add(Core.Mes.ClientFrameWork.ClientCommon._UserInfo.UserName);
  2580. Other.Add(this.txt_ReMark.Text);
  2581. Other.Add(this.txt_Plact.Text.Trim());
  2582. Other.Add(this.txt_Width.Text.Trim());
  2583. Other.Add(this.txt_Seq.Text.Trim());
  2584. object obj = Core.Mes.ClientFrameWork.ClientCommon._RemotingHelp.ExecuteMethod("CoilMachiningManage", "Core.XgMes.Server.CoilMachiningManage.TurnoffManage", "Turn_ADD", new object[] { array, Other }, out strOut);
  2585. if (obj != null && obj.ToString() == "1")
  2586. {
  2587. this.txt_TiShi.Appearance.ForeColor = System.Drawing.Color.Blue;
  2588. txt_TiShi.Text = "成功入库!";
  2589. this.txt_WEIGHT.Value = 0;
  2590. this.txt_Num.Value = 0;
  2591. this.txt_Length.Value = 0;
  2592. this.txt_Ply.Value = 0;
  2593. this.txt_Width.Value = 0;
  2594. this.txt_GangpeiH.Clear();
  2595. DataSet ds = (DataSet)this.gb_Press.DataSource;
  2596. System.Data.DataRow[] row = ds.Tables["KCJ3_ZY_TASKDETAIL"].Select("COIL_NO_ID='" + this.txt_Scid_Top_Y.Text + "-" + this.txt_Scid_Begin_Y.Text + "-" + this.txt_Scid_End_Y.Text + "'");
  2597. for (int i = 0; i < row.Length; i++)
  2598. {
  2599. ds.Tables["KCJ3_ZY_TASKDETAIL"].Rows.Remove(row[i]);
  2600. ds.Tables["KCJ3_ZY_TASKDETAIL"].AcceptChanges();
  2601. }
  2602. string strSql = " AND A.COIL_NO_ID='" + this.txt_Scid_Top_Y.Text + "-" + this.txt_Scid_Begin_Y.Text + "-" + this.txt_Scid_End_Y.Text + "'";
  2603. this.TurnQuery(strSql);
  2604. }
  2605. else
  2606. {
  2607. txt_TiShi.Appearance.ForeColor = System.Drawing.Color.Red;
  2608. txt_TiShi.Text = Comm.ObjToStr(obj) + strOut;
  2609. }
  2610. }
  2611. catch (Exception ex)
  2612. {
  2613. System.Diagnostics.Debug.WriteLine(ex.ToString());
  2614. }
  2615. }
  2616. #endregion
  2617. #region 撤消成品入库
  2618. private void Turn_Del()
  2619. {
  2620. try
  2621. {
  2622. string strOut = "";
  2623. ArrayList array = new ArrayList();
  2624. array = Comm.GetFieldValue(this.gb_Turan, "FLAG", "COIL_NO_ID");
  2625. if (array.Count == 0)
  2626. {
  2627. MessageBox.Show("请您选择你要撤消的成品信息!", "提示", System.Windows.Forms.MessageBoxButtons.OK, System.Windows.Forms.MessageBoxIcon.Information);
  2628. return;
  2629. }
  2630. object obj = Core.Mes.ClientFrameWork.ClientCommon._RemotingHelp.ExecuteMethod("CoilMachiningManage", "Core.XgMes.Server.CoilMachiningManage.TurnoffManage", "Turn_Del", new object[] { array }, out strOut);
  2631. if (obj != null && obj.ToString() == "1")
  2632. {
  2633. DataSet ds = (DataSet)this.gb_Turan.DataSource;
  2634. System.Data.DataRow[] row = ds.Tables["KCJ3_TURNOFFLIST"].Select("FLAG='TRUE'");
  2635. for (int i = 0; i < row.Length; i++)
  2636. {
  2637. ds.Tables["KCJ3_TURNOFFLIST"].Rows.Remove(row[i]);
  2638. ds.Tables["KCJ3_TURNOFFLIST"].AcceptChanges();
  2639. }
  2640. this.DetailQuery("");
  2641. }
  2642. else
  2643. {
  2644. txt_TiShi.Appearance.ForeColor = System.Drawing.Color.Red;
  2645. txt_TiShi.Text = Comm.ObjToStr(obj) + strOut;
  2646. }
  2647. }
  2648. catch (Exception ex)
  2649. {
  2650. System.Diagnostics.Debug.WriteLine(ex.ToString());
  2651. }
  2652. }
  2653. #endregion
  2654. #region EVENT
  2655. private void gb_Turan_CellChange(object sender, Infragistics.Win.UltraWinGrid.CellEventArgs e)
  2656. {
  2657. try
  2658. {
  2659. if (e.Cell.Column.Key == "FLAG")
  2660. {
  2661. e.Cell.Row.Update();
  2662. if (e.Cell.Value.ToString().ToUpper() == "TRUE")
  2663. {
  2664. e.Cell.Row.Appearance.ForeColor = System.Drawing.Color.Blue;
  2665. }
  2666. else
  2667. {
  2668. e.Cell.Row.Appearance.ForeColor = System.Drawing.Color.Black;
  2669. }
  2670. }
  2671. }
  2672. catch (System.Exception ex)
  2673. {
  2674. System.Diagnostics.Debug.WriteLine(ex.ToString());
  2675. }
  2676. }
  2677. private void chk_SelectAll_CheckedChanged(object sender, System.EventArgs e)
  2678. {
  2679. try
  2680. {
  2681. Infragistics.Win.UltraWinGrid.UltraGridBase tmpGrid = this.gb_Press;
  2682. foreach (Infragistics.Win.UltraWinGrid.UltraGridRow row in this.gb_Press.Rows)
  2683. {
  2684. if (!row.IsFilteredOut)
  2685. {
  2686. row.Cells["FLAG"].Value = this.chk_SelectAll.Checked.ToString().ToUpper();
  2687. row.Update();
  2688. }
  2689. }
  2690. Infragistics.Win.UltraWinGrid.UltraGridBase tmpGrid1 = this.gb_Turan;
  2691. foreach (Infragistics.Win.UltraWinGrid.UltraGridRow row in this.gb_Turan.Rows)
  2692. {
  2693. if (!row.IsFilteredOut)
  2694. {
  2695. row.Cells["FLAG"].Value = this.chk_SelectAll.Checked.ToString().ToUpper();
  2696. row.Update();
  2697. }
  2698. }
  2699. }
  2700. catch (System.Exception ex)
  2701. {
  2702. System.Diagnostics.Debug.WriteLine(ex.ToString());
  2703. }
  2704. }
  2705. private void chk_AllowFilter_CheckedChanged(object sender, System.EventArgs e)
  2706. {
  2707. try
  2708. {
  2709. if (this.chk_AllowFilter.Checked)
  2710. {
  2711. this.gb_Press.DisplayLayout.Override.AllowRowFiltering = Infragistics.Win.DefaultableBoolean.True;
  2712. this.gb_Press.DisplayLayout.Override.FilterUIType = Infragistics.Win.UltraWinGrid.FilterUIType.FilterRow;
  2713. this.gb_Turan.DisplayLayout.Override.AllowRowFiltering = Infragistics.Win.DefaultableBoolean.True;
  2714. this.gb_Turan.DisplayLayout.Override.FilterUIType = Infragistics.Win.UltraWinGrid.FilterUIType.FilterRow;
  2715. }
  2716. else
  2717. {
  2718. this.gb_Press.DisplayLayout.Override.AllowRowFiltering = Infragistics.Win.DefaultableBoolean.False;
  2719. this.gb_Press.DisplayLayout.Override.FilterUIType = Infragistics.Win.UltraWinGrid.FilterUIType.Default;
  2720. if (this.gb_Press.DisplayLayout.Bands[0].ColumnFilters.Count > 0)
  2721. {
  2722. for (int i = 0; i < this.gb_Press.DisplayLayout.Bands[0].ColumnFilters.Count; i++)
  2723. {
  2724. this.gb_Press.DisplayLayout.Bands[0].ColumnFilters[i].FilterConditions.Clear();
  2725. }
  2726. }
  2727. this.gb_Turan.DisplayLayout.Override.AllowRowFiltering = Infragistics.Win.DefaultableBoolean.False;
  2728. this.gb_Turan.DisplayLayout.Override.FilterUIType = Infragistics.Win.UltraWinGrid.FilterUIType.Default;
  2729. if (this.gb_Turan.DisplayLayout.Bands[0].ColumnFilters.Count > 0)
  2730. {
  2731. for (int i = 0; i < this.gb_Turan.DisplayLayout.Bands[0].ColumnFilters.Count; i++)
  2732. {
  2733. this.gb_Turan.DisplayLayout.Bands[0].ColumnFilters[i].FilterConditions.Clear();
  2734. }
  2735. }
  2736. }
  2737. }
  2738. catch (System.Exception ex)
  2739. {
  2740. System.Diagnostics.Debug.WriteLine(ex.ToString());
  2741. }
  2742. }
  2743. private void chk_CollectTime_CheckedChanged(object sender, System.EventArgs e)
  2744. {
  2745. this.dte_BeginTime.Enabled = this.chk_CollectTime.Checked;
  2746. this.dte_EndTime.Enabled = this.chk_CollectTime.Checked;
  2747. }
  2748. private void chk_OrderNO_CheckedChanged(object sender, System.EventArgs e)
  2749. {
  2750. this.txt_OrderNO.Enabled = this.chk_OrderNO.Checked;
  2751. }
  2752. private void chk_PactID_CheckedChanged(object sender, System.EventArgs e)
  2753. {
  2754. this.txt_PlanID.Enabled = this.chk_PactID.Checked;
  2755. }
  2756. private void chk_RollHao_CheckedChanged(object sender, System.EventArgs e)
  2757. {
  2758. this.txt_RollHao.Enabled = this.chk_RollHao.Checked;
  2759. }
  2760. private void chk_PiHao_CheckedChanged(object sender, System.EventArgs e)
  2761. {
  2762. this.txt_PiHao_Begin.Enabled = this.chk_PiHao.Checked;
  2763. this.txt_PIhao_End.Enabled = this.chk_PiHao.Checked;
  2764. this.txt_Pihao_Top.Enabled = this.chk_PiHao.Checked;
  2765. }
  2766. private void chk_BanHao_CheckedChanged(object sender, System.EventArgs e)
  2767. {
  2768. this.txt_GangP.Enabled = this.chk_BanHao.Checked;
  2769. }
  2770. #endregion
  2771. private void chk_BNumber_CheckedChanged(object sender, System.EventArgs e)
  2772. {
  2773. this.txt_BNumber.Enabled = this.chk_BNumber.Checked;
  2774. }
  2775. private void gb_Press_DoubleClickRow(object sender, Infragistics.Win.UltraWinGrid.DoubleClickRowEventArgs e)
  2776. {
  2777. this.txt_Scid_Top_Y.Text = e.Row.Cells["COIL_NO_ID"].Value.ToString().Substring(0, 2);
  2778. this.txt_Scid_Begin_Y.Text = e.Row.Cells["COIL_NO_ID"].Value.ToString().Substring(3, 10);
  2779. this.txt_Scid_End_Y.Text = e.Row.Cells["COIL_NO_ID"].Value.ToString().Substring(14);
  2780. txt_ReMark.Text = e.Row.Cells["REM"].Value.ToString();
  2781. }
  2782. private void ultraCheckEditor1_CheckedChanged(object sender, System.EventArgs e)
  2783. {
  2784. this.cmb_QuYu.Enabled = this.ultraCheckEditor1.Checked;
  2785. }
  2786. #region "导出报表"
  2787. private void ExportButtressInfo()
  2788. {
  2789. if (this.gb_Turan.Rows.Count > 0)
  2790. {
  2791. Comm.ExPortExcel(this.gb_Turan, this.excelExporter);
  2792. }
  2793. else
  2794. {
  2795. MessageBox.Show("无信息数据,不能导出!", "提示", MessageBoxButtons.OK, MessageBoxIcon.Information);
  2796. }
  2797. }
  2798. #endregion
  2799. private void chk_ProcLine_CheckedChanged(object sender, System.EventArgs e)
  2800. {
  2801. this.cmb_ProcL.Enabled = this.chk_ProcLine.Checked;
  2802. }
  2803. private void cmb_area_ValueChanged(object sender, EventArgs e)
  2804. {
  2805. try
  2806. {
  2807. string areaCode = "";
  2808. string buttressCode = "";
  2809. string strOut = "";
  2810. areaCode = this.cmb_area.Value.ToString();
  2811. if (areaCode != "")
  2812. {
  2813. DataSet ds = (DataSet)Core.Mes.ClientFrameWork.ClientCommon._RemotingHelp.ExecuteMethod("CoilMachiningManage", "Core.XgMes.Server.CoilMachiningManage.TurnoReport",
  2814. "QueryFJButtress", new object[] { buttressCode, areaCode, "1" }, out strOut);
  2815. if (strOut == "")
  2816. {
  2817. this.cmb_Buress.DataSource = ds;
  2818. }
  2819. else
  2820. {
  2821. MessageBox.Show(strOut, "提示", MessageBoxButtons.OK, MessageBoxIcon.Warning);
  2822. }
  2823. }
  2824. }
  2825. catch (Exception et)
  2826. {
  2827. throw et;
  2828. }
  2829. }
  2830. }
  2831. }