a7ede1e9da6ef5a2aa430c7478b646155e3663cb.svn-base 215 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126312731283129313031313132313331343135313631373138313931403141314231433144314531463147314831493150315131523153315431553156315731583159316031613162316331643165316631673168316931703171317231733174317531763177317831793180318131823183318431853186318731883189319031913192319331943195319631973198319932003201320232033204320532063207320832093210321132123213321432153216321732183219322032213222322332243225322632273228322932303231323232333234323532363237323832393240324132423243324432453246324732483249325032513252325332543255325632573258325932603261326232633264326532663267326832693270327132723273327432753276327732783279328032813282328332843285328632873288328932903291329232933294329532963297329832993300330133023303330433053306330733083309331033113312331333143315331633173318331933203321332233233324332533263327332833293330333133323333333433353336333733383339334033413342334333443345334633473348334933503351335233533354335533563357335833593360336133623363336433653366336733683369337033713372337333743375337633773378337933803381338233833384338533863387338833893390339133923393339433953396339733983399340034013402340334043405340634073408340934103411341234133414341534163417341834193420342134223423342434253426342734283429343034313432343334343435343634373438343934403441344234433444344534463447344834493450345134523453345434553456345734583459346034613462346334643465346634673468346934703471347234733474347534763477347834793480348134823483348434853486348734883489349034913492349334943495349634973498349935003501350235033504350535063507350835093510351135123513351435153516351735183519352035213522352335243525352635273528352935303531353235333534353535363537353835393540354135423543354435453546354735483549355035513552355335543555355635573558355935603561356235633564356535663567356835693570357135723573357435753576357735783579358035813582
  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_PlanDrawUp 的摘要说明。
  13. /// </summary>
  14. public class Frm_PlanDrawUp : 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.UltraWinTabControl.UltraTabSharedControlsPage ultraTabSharedControlsPage1;
  24. private Infragistics.Win.UltraWinTabControl.UltraTabPageControl ultraTabPageControl1;
  25. private Infragistics.Win.UltraWinTabControl.UltraTabPageControl ultraTabPageControl2;
  26. private System.Windows.Forms.Panel panel2;
  27. private Infragistics.Win.Misc.UltraExpandableGroupBox ultraExpandableGroupBox1;
  28. private Infragistics.Win.Misc.UltraExpandableGroupBoxPanel ultraExpandableGroupBoxPanel1;
  29. private Infragistics.Win.Misc.UltraExpandableGroupBox ultraExpandableGroupBox2;
  30. private Infragistics.Win.Misc.UltraExpandableGroupBoxPanel ultraExpandableGroupBoxPanel2;
  31. private Infragistics.Win.UltraWinGrid.UltraCombo cmb_Buress;
  32. private Infragistics.Win.UltraWinEditors.UltraCheckEditor Chk_Buttress;
  33. private Infragistics.Win.UltraWinGrid.UltraCombo cmb_Sleen;
  34. private Infragistics.Win.UltraWinEditors.UltraTextEditor txt_GangP;
  35. private Infragistics.Win.UltraWinEditors.UltraTextEditor txt_RollHao;
  36. private Infragistics.Win.UltraWinEditors.UltraTextEditor txt_PlanID;
  37. private Infragistics.Win.UltraWinEditors.UltraCheckEditor chk_PactID;
  38. private Infragistics.Win.UltraWinEditors.UltraTextEditor txt_OrderNO;
  39. private Infragistics.Win.UltraWinEditors.UltraCheckEditor chk_OrderNO;
  40. private Infragistics.Win.Misc.UltraLabel Lab_To;
  41. private Infragistics.Win.UltraWinEditors.UltraCheckEditor chk_SelectAll;
  42. private Infragistics.Win.UltraWinEditors.UltraCheckEditor chk_AllowFilter;
  43. private Infragistics.Win.UltraWinEditors.UltraTextEditor txt_QuShi;
  44. private Infragistics.Win.Misc.UltraLabel ultraLabel3;
  45. private Infragistics.Win.UltraWinEditors.UltraTextEditor txt_Scid_End_Y;
  46. private Infragistics.Win.UltraWinGrid.UltraCombo cmb_ClassTeam;
  47. private Infragistics.Win.Misc.UltraLabel ultraLabel10;
  48. private Infragistics.Win.UltraWinGrid.UltraCombo cmb_ClassOrder;
  49. private Infragistics.Win.Misc.UltraLabel ultraLabel8;
  50. private Infragistics.Win.Misc.UltraLabel ultraLabel7;
  51. private Infragistics.Win.UltraWinEditors.UltraComboEditor cmb_EditType_Y;
  52. private Infragistics.Win.UltraWinEditors.UltraTextEditor txt_Scid_Begin_Y;
  53. private Infragistics.Win.UltraWinEditors.UltraTextEditor txt_Scid_Top_Y;
  54. private Infragistics.Win.Misc.UltraLabel ultraLabel1;
  55. private Infragistics.Win.Misc.UltraLabel ultraLabel2;
  56. private Infragistics.Win.UltraWinGrid.UltraGrid gb_Stuff;
  57. private Infragistics.Win.UltraWinGrid.UltraGrid gb_Plan;
  58. private Infragistics.Win.UltraWinEditors.UltraCheckEditor chk_PaiHao;
  59. private Infragistics.Win.UltraWinEditors.UltraCheckEditor chk_BanHao;
  60. private Infragistics.Win.UltraWinEditors.UltraCheckEditor chk_RollHao;
  61. private Infragistics.Win.UltraWinTabControl.UltraTabControl tab_Coroll;
  62. private Infragistics.Win.UltraWinGrid.UltraGrid gb_PlanState;
  63. private Infragistics.Win.Misc.UltraLabel ultraLabel4;
  64. private Infragistics.Win.UltraWinEditors.UltraNumericEditor txt_Length;
  65. private Infragistics.Win.UltraWinEditors.UltraCheckEditor chk_BNumber;
  66. private Infragistics.Win.UltraWinEditors.UltraTextEditor txt_BNumber;
  67. private Infragistics.Win.UltraWinEditors.UltraDateTimeEditor dte_Time;
  68. private Infragistics.Win.UltraWinGrid.ExcelExport.UltraGridExcelExporter excelExporter;
  69. private Infragistics.Win.UltraWinEditors.UltraDateTimeEditor dte_BeginTime;
  70. private Infragistics.Win.UltraWinEditors.UltraDateTimeEditor dte_EndTime;
  71. private Infragistics.Win.Misc.UltraLabel ultraLabel5;
  72. private Infragistics.Win.UltraWinEditors.UltraCheckEditor chk_ProcLine;
  73. private Infragistics.Win.Misc.UltraLabel ultraLabel9;
  74. private Infragistics.Win.UltraWinEditors.UltraNumericEditor txt_Width;
  75. private Infragistics.Win.UltraWinEditors.UltraComboEditor cmb_IS;
  76. private Infragistics.Win.UltraWinEditors.UltraComboEditor ultSJ;
  77. private Infragistics.Win.UltraWinEditors.UltraCheckEditor chk_CollectTime;
  78. private Infragistics.Win.UltraWinGrid.UltraCombo ultraCombo1;
  79. private Infragistics.Win.Misc.UltraLabel ultraLabel6;
  80. private Infragistics.Win.UltraWinTabControl.UltraTabControl ultraTabControl1;
  81. private Infragistics.Win.UltraWinTabControl.UltraTabSharedControlsPage ultraTabSharedControlsPage2;
  82. private Infragistics.Win.UltraWinTabControl.UltraTabSharedControlsPage ultraTabSharedControlsPage3;
  83. private Infragistics.Win.UltraWinTabControl.UltraTabPageControl ultraTabPageControl3;
  84. private Infragistics.Win.UltraWinGrid.UltraGrid ultraGrid1;
  85. private Panel panel3;
  86. private Infragistics.Win.UltraWinEditors.UltraTextEditor ultraTextEditor1;
  87. private Infragistics.Win.Misc.UltraLabel ultraLabel11;
  88. private Infragistics.Win.UltraWinTabControl.UltraTabPageControl ultraTabPageControl4;
  89. private Infragistics.Win.UltraWinGrid.UltraGrid ultraGrid2;
  90. private Infragistics.Win.Misc.UltraExpandableGroupBox ultraExpandableGroupBox3;
  91. private Infragistics.Win.Misc.UltraExpandableGroupBoxPanel ultraExpandableGroupBoxPanel3;
  92. private Infragistics.Win.UltraWinGrid.UltraGrid ultraGrid3;
  93. private Infragistics.Win.Misc.UltraExpandableGroupBox ultraExpandableGroupBox4;
  94. private Infragistics.Win.Misc.UltraExpandableGroupBoxPanel ultraExpandableGroupBoxPanel4;
  95. private Infragistics.Win.UltraWinGrid.UltraCombo cmb_Gylx;
  96. private Infragistics.Win.Misc.UltraLabel ultraLabel15;
  97. private System.ComponentModel.IContainer components;
  98. public Frm_PlanDrawUp()
  99. {
  100. //
  101. // Windows 窗体设计器支持所必需的
  102. //
  103. InitializeComponent();
  104. //
  105. // TODO: 在 InitializeComponent 调用后添加任何构造函数代码
  106. //
  107. }
  108. /// <summary>
  109. /// 清理所有正在使用的资源。
  110. /// </summary>
  111. protected override void Dispose( bool disposing )
  112. {
  113. if( disposing )
  114. {
  115. if(components != null)
  116. {
  117. components.Dispose();
  118. }
  119. }
  120. base.Dispose( disposing );
  121. }
  122. #region Windows 窗体设计器生成的代码
  123. /// <summary>
  124. /// 设计器支持所需的方法 - 不要使用代码编辑器修改
  125. /// 此方法的内容。
  126. /// </summary>
  127. private void InitializeComponent()
  128. {
  129. this.components = new System.ComponentModel.Container();
  130. Infragistics.Win.Appearance appearance1 = new Infragistics.Win.Appearance();
  131. Infragistics.Win.UltraWinGrid.UltraGridBand ultraGridBand1 = new Infragistics.Win.UltraWinGrid.UltraGridBand("Band 0", -1);
  132. Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn1 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("SHIP_INVNO");
  133. Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn2 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("OLD_SAMPL_NO");
  134. Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn3 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("SLAB_NO");
  135. Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn4 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("ORD_NO");
  136. Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn5 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("ORD_SEQ");
  137. Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn6 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("DEVLMT_DTIME");
  138. Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn7 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("COIL_INDIA");
  139. Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn8 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("COIL_OUTDIA");
  140. Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn9 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("COIL_LEN");
  141. Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn10 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("COIL_THK");
  142. Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn11 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("COIL_WTH");
  143. Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn12 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("CAL_WGT");
  144. Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn13 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("ACT_WGT");
  145. Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn14 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("STL_GRD");
  146. Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn15 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("TOT_DEC_GRD");
  147. Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn16 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("REM");
  148. Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn17 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("TRANS_CAR_NO");
  149. Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn18 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("ZLZS_NO");
  150. Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn19 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("BUTTRESS");
  151. Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn20 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("CREATOR");
  152. Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn21 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("CREATETIME");
  153. Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn22 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("INCLASSORDER");
  154. Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn23 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("INCLASSTEAM");
  155. Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn24 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("FLAG");
  156. Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn25 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("ORD_USE_CD");
  157. Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn26 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("INSTR_COIL_THK");
  158. Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn27 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("INSTR_COIL_WTH");
  159. Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn28 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("STOVENO", 0);
  160. Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn29 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("BAHCT_NUMBER", 1);
  161. Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn30 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("SX_BIAOZHUN", 2);
  162. Infragistics.Win.Appearance appearance2 = new Infragistics.Win.Appearance();
  163. Infragistics.Win.UltraWinGrid.SummarySettings summarySettings1 = new Infragistics.Win.UltraWinGrid.SummarySettings("", Infragistics.Win.UltraWinGrid.SummaryType.Sum, null, "ACT_WGT", 12, true, "Band 0", 0, Infragistics.Win.UltraWinGrid.SummaryPosition.UseSummaryPositionColumn, "ACT_WGT", 12, true);
  164. Infragistics.Win.Appearance appearance3 = new Infragistics.Win.Appearance();
  165. Infragistics.Win.UltraWinGrid.SummarySettings summarySettings2 = new Infragistics.Win.UltraWinGrid.SummarySettings("", Infragistics.Win.UltraWinGrid.SummaryType.Sum, null, "CAL_WGT", 11, true, "Band 0", 0, Infragistics.Win.UltraWinGrid.SummaryPosition.UseSummaryPositionColumn, "CAL_WGT", 11, true);
  166. Infragistics.Win.Appearance appearance4 = new Infragistics.Win.Appearance();
  167. Infragistics.Win.Appearance appearance5 = new Infragistics.Win.Appearance();
  168. Infragistics.Win.Appearance appearance6 = new Infragistics.Win.Appearance();
  169. Infragistics.Win.Appearance appearance7 = new Infragistics.Win.Appearance();
  170. Infragistics.Win.Appearance appearance8 = new Infragistics.Win.Appearance();
  171. Infragistics.Win.Appearance appearance9 = new Infragistics.Win.Appearance();
  172. Infragistics.Win.Appearance appearance10 = new Infragistics.Win.Appearance();
  173. Infragistics.Win.Appearance appearance11 = new Infragistics.Win.Appearance();
  174. Infragistics.Win.Appearance appearance12 = new Infragistics.Win.Appearance();
  175. Infragistics.Win.Appearance appearance13 = new Infragistics.Win.Appearance();
  176. Infragistics.Win.Appearance appearance14 = new Infragistics.Win.Appearance();
  177. Infragistics.Win.Appearance appearance15 = new Infragistics.Win.Appearance();
  178. Infragistics.Win.Appearance appearance16 = new Infragistics.Win.Appearance();
  179. Infragistics.Win.Appearance appearance17 = new Infragistics.Win.Appearance();
  180. Infragistics.Win.Appearance appearance18 = new Infragistics.Win.Appearance();
  181. Infragistics.Win.Appearance appearance19 = new Infragistics.Win.Appearance();
  182. Infragistics.Win.UltraWinGrid.UltraGridBand ultraGridBand2 = new Infragistics.Win.UltraWinGrid.UltraGridBand("Band 0", -1);
  183. Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn31 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("SHIP_INVNO");
  184. Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn32 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("OLD_SAMPL_NO");
  185. Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn33 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("SLAB_NO");
  186. Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn34 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("ORD_NO");
  187. Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn35 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("ORD_SEQ");
  188. Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn36 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("DEVLMT_DTIME");
  189. Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn37 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("COIL_INDIA");
  190. Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn38 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("COIL_OUTDIA");
  191. Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn39 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("COIL_LEN");
  192. Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn40 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("COIL_THK");
  193. Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn41 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("COIL_WTH");
  194. Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn42 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("CAL_WGT");
  195. Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn43 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("ACT_WGT");
  196. Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn44 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("STL_GRD");
  197. Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn45 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("TOT_DEC_GRD");
  198. Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn46 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("REM");
  199. Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn47 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("TRANS_CAR_NO");
  200. Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn48 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("ZLZS_NO");
  201. Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn49 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("BUTTRESS");
  202. Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn50 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("CREATOR");
  203. Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn51 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("CREATETIME");
  204. Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn52 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("CLASSORDER");
  205. Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn53 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("CLASSTEAM");
  206. Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn54 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("WORKORDER_ID");
  207. Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn55 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("FLAG");
  208. Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn56 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("BAHCT_NUMBER");
  209. Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn57 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("STOCKTYPE");
  210. Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn58 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("ORD_USE_CD");
  211. Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn59 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("INSTR_COIL_THK");
  212. Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn60 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("INSTR_COIL_WTH");
  213. Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn61 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("GYLX");
  214. Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn62 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("STOVENO", 0);
  215. Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn63 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("SX_BIAOZHUN", 1);
  216. Infragistics.Win.Appearance appearance20 = new Infragistics.Win.Appearance();
  217. Infragistics.Win.Appearance appearance21 = new Infragistics.Win.Appearance();
  218. Infragistics.Win.Appearance appearance22 = new Infragistics.Win.Appearance();
  219. Infragistics.Win.Appearance appearance23 = new Infragistics.Win.Appearance();
  220. Infragistics.Win.Appearance appearance24 = new Infragistics.Win.Appearance();
  221. Infragistics.Win.Appearance appearance25 = new Infragistics.Win.Appearance();
  222. Infragistics.Win.Appearance appearance26 = new Infragistics.Win.Appearance();
  223. Infragistics.Win.Appearance appearance27 = new Infragistics.Win.Appearance();
  224. Infragistics.Win.Appearance appearance28 = new Infragistics.Win.Appearance();
  225. Infragistics.Win.Appearance appearance29 = new Infragistics.Win.Appearance();
  226. Infragistics.Win.Appearance appearance30 = new Infragistics.Win.Appearance();
  227. Infragistics.Win.Appearance appearance31 = new Infragistics.Win.Appearance();
  228. Infragistics.Win.Appearance appearance32 = new Infragistics.Win.Appearance();
  229. Infragistics.Win.Appearance appearance33 = new Infragistics.Win.Appearance();
  230. Infragistics.Win.Appearance appearance34 = new Infragistics.Win.Appearance();
  231. Infragistics.Win.Appearance appearance35 = new Infragistics.Win.Appearance();
  232. Infragistics.Win.UltraWinGrid.UltraGridBand ultraGridBand3 = new Infragistics.Win.UltraWinGrid.UltraGridBand("Band 0", -1);
  233. Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn64 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("SHIP_INVNO");
  234. Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn65 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("OLD_SAMPL_NO");
  235. Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn66 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("SLAB_NO");
  236. Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn67 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("ORD_NO", -1, null, 0, Infragistics.Win.UltraWinGrid.SortIndicator.Ascending, false);
  237. Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn68 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("ORD_SEQ");
  238. Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn69 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("DEVLMT_DTIME");
  239. Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn70 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("COIL_INDIA");
  240. Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn71 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("COIL_OUTDIA");
  241. Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn72 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("COIL_LEN");
  242. Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn73 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("COIL_THK");
  243. Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn74 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("COIL_WTH");
  244. Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn75 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("CAL_WGT");
  245. Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn76 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("ACT_WGT");
  246. Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn77 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("STL_GRD");
  247. Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn78 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("TOT_DEC_GRD");
  248. Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn79 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("REM");
  249. Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn80 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("TRANS_CAR_NO");
  250. Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn81 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("ZLZS_NO");
  251. Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn82 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("BUTTRESS");
  252. Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn83 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("CREATOR");
  253. Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn84 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("CREATETIME");
  254. Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn85 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("CLASSORDER");
  255. Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn86 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("CLASSTEAM");
  256. Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn87 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("WORKORDER_ID");
  257. Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn88 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("AFFIRMAN");
  258. Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn89 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("AFFIRTIME");
  259. Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn90 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("AFFIRLOG");
  260. Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn91 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("STOCKTYPE");
  261. Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn92 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("ORD_USE_CD");
  262. Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn93 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("INSTR_COIL_THK");
  263. Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn94 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("INSTR_COIL_WTH");
  264. Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn95 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("STSJBC");
  265. Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn96 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("STSJBZ");
  266. Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn97 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("STTIME");
  267. Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn98 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("STQRTIME");
  268. Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn99 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("GYLX");
  269. Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn100 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("STOVENO", 0);
  270. Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn101 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("BAHCT_NUMBER", 1);
  271. Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn102 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("SX_BIAOZHUN", 2);
  272. Infragistics.Win.Appearance appearance36 = new Infragistics.Win.Appearance();
  273. Infragistics.Win.UltraWinGrid.SummarySettings summarySettings3 = new Infragistics.Win.UltraWinGrid.SummarySettings("", Infragistics.Win.UltraWinGrid.SummaryType.Sum, null, "CAL_WGT", 11, true, "Band 0", 0, Infragistics.Win.UltraWinGrid.SummaryPosition.UseSummaryPositionColumn, "CAL_WGT", 11, true);
  274. Infragistics.Win.Appearance appearance37 = new Infragistics.Win.Appearance();
  275. Infragistics.Win.UltraWinGrid.SummarySettings summarySettings4 = new Infragistics.Win.UltraWinGrid.SummarySettings("", Infragistics.Win.UltraWinGrid.SummaryType.Sum, null, "ACT_WGT", 12, true, "Band 0", 0, Infragistics.Win.UltraWinGrid.SummaryPosition.UseSummaryPositionColumn, "ACT_WGT", 12, true);
  276. Infragistics.Win.Appearance appearance38 = new Infragistics.Win.Appearance();
  277. Infragistics.Win.Appearance appearance39 = new Infragistics.Win.Appearance();
  278. Infragistics.Win.Appearance appearance40 = new Infragistics.Win.Appearance();
  279. Infragistics.Win.Appearance appearance41 = new Infragistics.Win.Appearance();
  280. Infragistics.Win.Appearance appearance42 = new Infragistics.Win.Appearance();
  281. Infragistics.Win.Appearance appearance43 = new Infragistics.Win.Appearance();
  282. Infragistics.Win.Appearance appearance44 = new Infragistics.Win.Appearance();
  283. Infragistics.Win.Appearance appearance45 = new Infragistics.Win.Appearance();
  284. Infragistics.Win.Appearance appearance46 = new Infragistics.Win.Appearance();
  285. Infragistics.Win.Appearance appearance47 = new Infragistics.Win.Appearance();
  286. Infragistics.Win.Appearance appearance48 = new Infragistics.Win.Appearance();
  287. Infragistics.Win.Appearance appearance49 = new Infragistics.Win.Appearance();
  288. Infragistics.Win.Appearance appearance50 = new Infragistics.Win.Appearance();
  289. Infragistics.Win.Appearance appearance51 = new Infragistics.Win.Appearance();
  290. Infragistics.Win.Appearance appearance52 = new Infragistics.Win.Appearance();
  291. Infragistics.Win.Appearance appearance53 = new Infragistics.Win.Appearance();
  292. Infragistics.Win.Appearance appearance54 = new Infragistics.Win.Appearance();
  293. Infragistics.Win.Appearance appearance55 = new Infragistics.Win.Appearance();
  294. Infragistics.Win.Appearance appearance56 = new Infragistics.Win.Appearance();
  295. Infragistics.Win.UltraWinEditors.EditorButton editorButton1 = new Infragistics.Win.UltraWinEditors.EditorButton("XH");
  296. Infragistics.Win.Appearance appearance57 = new Infragistics.Win.Appearance();
  297. Infragistics.Win.Appearance appearance58 = new Infragistics.Win.Appearance();
  298. Infragistics.Win.Appearance appearance59 = new Infragistics.Win.Appearance();
  299. Infragistics.Win.Appearance appearance60 = new Infragistics.Win.Appearance();
  300. Infragistics.Win.Appearance appearance61 = new Infragistics.Win.Appearance();
  301. Infragistics.Win.Appearance appearance62 = new Infragistics.Win.Appearance();
  302. Infragistics.Win.ValueListItem valueListItem1 = new Infragistics.Win.ValueListItem();
  303. Infragistics.Win.ValueListItem valueListItem2 = new Infragistics.Win.ValueListItem();
  304. Infragistics.Win.Appearance appearance63 = new Infragistics.Win.Appearance();
  305. Infragistics.Win.Appearance appearance64 = new Infragistics.Win.Appearance();
  306. Infragistics.Win.Appearance appearance65 = new Infragistics.Win.Appearance();
  307. Infragistics.Win.UltraWinToolbars.UltraToolbar ultraToolbar1 = new Infragistics.Win.UltraWinToolbars.UltraToolbar("工具栏");
  308. Infragistics.Win.UltraWinToolbars.ButtonTool buttonTool1 = new Infragistics.Win.UltraWinToolbars.ButtonTool("QUERY_KC");
  309. Infragistics.Win.UltraWinToolbars.ButtonTool buttonTool2 = new Infragistics.Win.UltraWinToolbars.ButtonTool("QUERY_GY");
  310. Infragistics.Win.UltraWinToolbars.ButtonTool buttonTool3 = new Infragistics.Win.UltraWinToolbars.ButtonTool("QUERY_PLAN");
  311. Infragistics.Win.UltraWinToolbars.ButtonTool buttonTool4 = new Infragistics.Win.UltraWinToolbars.ButtonTool("AFFIRM");
  312. Infragistics.Win.UltraWinToolbars.ButtonTool buttonTool5 = new Infragistics.Win.UltraWinToolbars.ButtonTool("CANCEL");
  313. Infragistics.Win.UltraWinToolbars.ButtonTool buttonTool6 = new Infragistics.Win.UltraWinToolbars.ButtonTool("DOWN_PLAN");
  314. Infragistics.Win.UltraWinToolbars.ButtonTool buttonTool7 = new Infragistics.Win.UltraWinToolbars.ButtonTool("DEL_PLAN");
  315. Infragistics.Win.UltraWinToolbars.ButtonTool buttonTool8 = new Infragistics.Win.UltraWinToolbars.ButtonTool("DUCE");
  316. Infragistics.Win.UltraWinToolbars.ButtonTool buttonTool9 = new Infragistics.Win.UltraWinToolbars.ButtonTool("PRINT");
  317. Infragistics.Win.UltraWinToolbars.ButtonTool buttonTool10 = new Infragistics.Win.UltraWinToolbars.ButtonTool("CLOSE");
  318. Infragistics.Win.UltraWinToolbars.ButtonTool buttonTool11 = new Infragistics.Win.UltraWinToolbars.ButtonTool("CLOSE");
  319. Infragistics.Win.UltraWinToolbars.ButtonTool buttonTool12 = new Infragistics.Win.UltraWinToolbars.ButtonTool("QUERY_KC");
  320. Infragistics.Win.UltraWinToolbars.ButtonTool buttonTool13 = new Infragistics.Win.UltraWinToolbars.ButtonTool("QUERY_GY");
  321. Infragistics.Win.UltraWinToolbars.ButtonTool buttonTool14 = new Infragistics.Win.UltraWinToolbars.ButtonTool("QUERY_PLAN");
  322. Infragistics.Win.UltraWinToolbars.ButtonTool buttonTool15 = new Infragistics.Win.UltraWinToolbars.ButtonTool("AFFIRM");
  323. Infragistics.Win.UltraWinToolbars.ButtonTool buttonTool16 = new Infragistics.Win.UltraWinToolbars.ButtonTool("CANCEL");
  324. Infragistics.Win.UltraWinToolbars.ButtonTool buttonTool17 = new Infragistics.Win.UltraWinToolbars.ButtonTool("DOWN_PLAN");
  325. Infragistics.Win.UltraWinToolbars.ButtonTool buttonTool18 = new Infragistics.Win.UltraWinToolbars.ButtonTool("DEL_PLAN");
  326. Infragistics.Win.UltraWinToolbars.ButtonTool buttonTool19 = new Infragistics.Win.UltraWinToolbars.ButtonTool("DUCE");
  327. Infragistics.Win.UltraWinToolbars.ButtonTool buttonTool20 = new Infragistics.Win.UltraWinToolbars.ButtonTool("PRINT");
  328. Infragistics.Win.ValueListItem valueListItem3 = new Infragistics.Win.ValueListItem();
  329. Infragistics.Win.ValueListItem valueListItem4 = new Infragistics.Win.ValueListItem();
  330. Infragistics.Win.Appearance appearance66 = new Infragistics.Win.Appearance();
  331. Infragistics.Win.ValueListItem valueListItem5 = new Infragistics.Win.ValueListItem();
  332. Infragistics.Win.ValueListItem valueListItem6 = new Infragistics.Win.ValueListItem();
  333. Infragistics.Win.Appearance appearance67 = new Infragistics.Win.Appearance();
  334. Infragistics.Win.Appearance appearance68 = new Infragistics.Win.Appearance();
  335. Infragistics.Win.Appearance appearance69 = new Infragistics.Win.Appearance();
  336. Infragistics.Win.Appearance appearance70 = new Infragistics.Win.Appearance();
  337. Infragistics.Win.Appearance appearance71 = new Infragistics.Win.Appearance();
  338. Infragistics.Win.Appearance appearance72 = new Infragistics.Win.Appearance();
  339. Infragistics.Win.Appearance appearance73 = new Infragistics.Win.Appearance();
  340. Infragistics.Win.Appearance appearance74 = new Infragistics.Win.Appearance();
  341. Infragistics.Win.Appearance appearance75 = new Infragistics.Win.Appearance();
  342. Infragistics.Win.Appearance appearance76 = new Infragistics.Win.Appearance();
  343. Infragistics.Win.Appearance appearance77 = new Infragistics.Win.Appearance();
  344. Infragistics.Win.Appearance appearance78 = new Infragistics.Win.Appearance();
  345. Infragistics.Win.Appearance appearance79 = new Infragistics.Win.Appearance();
  346. Infragistics.Win.UltraWinTabControl.UltraTab ultraTab1 = new Infragistics.Win.UltraWinTabControl.UltraTab(true);
  347. Infragistics.Win.UltraWinTabControl.UltraTab ultraTab2 = new Infragistics.Win.UltraWinTabControl.UltraTab();
  348. Infragistics.Win.Appearance appearance80 = new Infragistics.Win.Appearance();
  349. Infragistics.Win.Appearance appearance81 = new Infragistics.Win.Appearance();
  350. Infragistics.Win.Appearance appearance82 = new Infragistics.Win.Appearance();
  351. Infragistics.Win.Appearance appearance83 = new Infragistics.Win.Appearance();
  352. Infragistics.Win.Appearance appearance84 = new Infragistics.Win.Appearance();
  353. Infragistics.Win.Appearance appearance85 = new Infragistics.Win.Appearance();
  354. Infragistics.Win.Appearance appearance86 = new Infragistics.Win.Appearance();
  355. Infragistics.Win.Appearance appearance87 = new Infragistics.Win.Appearance();
  356. Infragistics.Win.Appearance appearance88 = new Infragistics.Win.Appearance();
  357. Infragistics.Win.Appearance appearance89 = new Infragistics.Win.Appearance();
  358. Infragistics.Win.Appearance appearance90 = new Infragistics.Win.Appearance();
  359. Infragistics.Win.Appearance appearance91 = new Infragistics.Win.Appearance();
  360. Infragistics.Win.Appearance appearance92 = new Infragistics.Win.Appearance();
  361. Infragistics.Win.Appearance appearance93 = new Infragistics.Win.Appearance();
  362. Infragistics.Win.Appearance appearance94 = new Infragistics.Win.Appearance();
  363. Infragistics.Win.Appearance appearance95 = new Infragistics.Win.Appearance();
  364. Infragistics.Win.Appearance appearance96 = new Infragistics.Win.Appearance();
  365. Infragistics.Win.Appearance appearance97 = new Infragistics.Win.Appearance();
  366. Infragistics.Win.Appearance appearance98 = new Infragistics.Win.Appearance();
  367. Infragistics.Win.Appearance appearance99 = new Infragistics.Win.Appearance();
  368. Infragistics.Win.Appearance appearance100 = new Infragistics.Win.Appearance();
  369. Infragistics.Win.Appearance appearance101 = new Infragistics.Win.Appearance();
  370. Infragistics.Win.Appearance appearance102 = new Infragistics.Win.Appearance();
  371. Infragistics.Win.Appearance appearance103 = new Infragistics.Win.Appearance();
  372. Infragistics.Win.Appearance appearance104 = new Infragistics.Win.Appearance();
  373. Infragistics.Win.Appearance appearance105 = new Infragistics.Win.Appearance();
  374. Infragistics.Win.Appearance appearance106 = new Infragistics.Win.Appearance();
  375. Infragistics.Win.Appearance appearance107 = new Infragistics.Win.Appearance();
  376. Infragistics.Win.Appearance appearance108 = new Infragistics.Win.Appearance();
  377. Infragistics.Win.Appearance appearance109 = new Infragistics.Win.Appearance();
  378. Infragistics.Win.Appearance appearance110 = new Infragistics.Win.Appearance();
  379. Infragistics.Win.Appearance appearance111 = new Infragistics.Win.Appearance();
  380. Infragistics.Win.Appearance appearance112 = new Infragistics.Win.Appearance();
  381. Infragistics.Win.Appearance appearance113 = new Infragistics.Win.Appearance();
  382. Infragistics.Win.Appearance appearance114 = new Infragistics.Win.Appearance();
  383. Infragistics.Win.Appearance appearance115 = new Infragistics.Win.Appearance();
  384. Infragistics.Win.Appearance appearance116 = new Infragistics.Win.Appearance();
  385. Infragistics.Win.Appearance appearance117 = new Infragistics.Win.Appearance();
  386. Infragistics.Win.Appearance appearance118 = new Infragistics.Win.Appearance();
  387. Infragistics.Win.Appearance appearance119 = new Infragistics.Win.Appearance();
  388. Infragistics.Win.Appearance appearance120 = new Infragistics.Win.Appearance();
  389. Infragistics.Win.Appearance appearance121 = new Infragistics.Win.Appearance();
  390. Infragistics.Win.Appearance appearance122 = new Infragistics.Win.Appearance();
  391. Infragistics.Win.Appearance appearance123 = new Infragistics.Win.Appearance();
  392. Infragistics.Win.Appearance appearance124 = new Infragistics.Win.Appearance();
  393. Infragistics.Win.Appearance appearance125 = new Infragistics.Win.Appearance();
  394. Infragistics.Win.Appearance appearance126 = new Infragistics.Win.Appearance();
  395. this.ultraTabPageControl1 = new Infragistics.Win.UltraWinTabControl.UltraTabPageControl();
  396. this.gb_Stuff = new Infragistics.Win.UltraWinGrid.UltraGrid();
  397. this.panel2 = new System.Windows.Forms.Panel();
  398. this.cmb_Gylx = new Infragistics.Win.UltraWinGrid.UltraCombo();
  399. this.ultraLabel15 = new Infragistics.Win.Misc.UltraLabel();
  400. this.txt_QuShi = new Infragistics.Win.UltraWinEditors.UltraTextEditor();
  401. this.ultraLabel3 = new Infragistics.Win.Misc.UltraLabel();
  402. this.ultraTabPageControl2 = new Infragistics.Win.UltraWinTabControl.UltraTabPageControl();
  403. this.gb_Plan = new Infragistics.Win.UltraWinGrid.UltraGrid();
  404. this.ultraExpandableGroupBox2 = new Infragistics.Win.Misc.UltraExpandableGroupBox();
  405. this.ultraExpandableGroupBoxPanel2 = new Infragistics.Win.Misc.UltraExpandableGroupBoxPanel();
  406. this.gb_PlanState = new Infragistics.Win.UltraWinGrid.UltraGrid();
  407. this.ultraExpandableGroupBox1 = new Infragistics.Win.Misc.UltraExpandableGroupBox();
  408. this.ultraExpandableGroupBoxPanel1 = new Infragistics.Win.Misc.UltraExpandableGroupBoxPanel();
  409. this.ultraLabel9 = new Infragistics.Win.Misc.UltraLabel();
  410. this.txt_Width = new Infragistics.Win.UltraWinEditors.UltraNumericEditor();
  411. this.dte_Time = new Infragistics.Win.UltraWinEditors.UltraDateTimeEditor();
  412. this.txt_Length = new Infragistics.Win.UltraWinEditors.UltraNumericEditor();
  413. this.ultraLabel4 = new Infragistics.Win.Misc.UltraLabel();
  414. this.ultraLabel2 = new Infragistics.Win.Misc.UltraLabel();
  415. this.txt_Scid_End_Y = new Infragistics.Win.UltraWinEditors.UltraTextEditor();
  416. this.cmb_ClassTeam = new Infragistics.Win.UltraWinGrid.UltraCombo();
  417. this.ultraLabel10 = new Infragistics.Win.Misc.UltraLabel();
  418. this.cmb_ClassOrder = new Infragistics.Win.UltraWinGrid.UltraCombo();
  419. this.ultraLabel8 = new Infragistics.Win.Misc.UltraLabel();
  420. this.ultraLabel7 = new Infragistics.Win.Misc.UltraLabel();
  421. this.cmb_EditType_Y = new Infragistics.Win.UltraWinEditors.UltraComboEditor();
  422. this.txt_Scid_Begin_Y = new Infragistics.Win.UltraWinEditors.UltraTextEditor();
  423. this.txt_Scid_Top_Y = new Infragistics.Win.UltraWinEditors.UltraTextEditor();
  424. this.ultraLabel1 = new Infragistics.Win.Misc.UltraLabel();
  425. this.panel1 = new System.Windows.Forms.Panel();
  426. this._panel1_Toolbars_Dock_Area_Left = new Infragistics.Win.UltraWinToolbars.UltraToolbarsDockArea();
  427. this.ultraToolbarsManager1 = new Infragistics.Win.UltraWinToolbars.UltraToolbarsManager(this.components);
  428. this._panel1_Toolbars_Dock_Area_Right = new Infragistics.Win.UltraWinToolbars.UltraToolbarsDockArea();
  429. this._panel1_Toolbars_Dock_Area_Top = new Infragistics.Win.UltraWinToolbars.UltraToolbarsDockArea();
  430. this._panel1_Toolbars_Dock_Area_Bottom = new Infragistics.Win.UltraWinToolbars.UltraToolbarsDockArea();
  431. this.ultraGroupBox1 = new Infragistics.Win.Misc.UltraGroupBox();
  432. this.chk_CollectTime = new Infragistics.Win.UltraWinEditors.UltraCheckEditor();
  433. this.ultSJ = new Infragistics.Win.UltraWinEditors.UltraComboEditor();
  434. this.cmb_IS = new Infragistics.Win.UltraWinEditors.UltraComboEditor();
  435. this.chk_ProcLine = new Infragistics.Win.UltraWinEditors.UltraCheckEditor();
  436. this.ultraLabel5 = new Infragistics.Win.Misc.UltraLabel();
  437. this.dte_EndTime = new Infragistics.Win.UltraWinEditors.UltraDateTimeEditor();
  438. this.dte_BeginTime = new Infragistics.Win.UltraWinEditors.UltraDateTimeEditor();
  439. this.txt_BNumber = new Infragistics.Win.UltraWinEditors.UltraTextEditor();
  440. this.chk_BNumber = new Infragistics.Win.UltraWinEditors.UltraCheckEditor();
  441. this.chk_SelectAll = new Infragistics.Win.UltraWinEditors.UltraCheckEditor();
  442. this.chk_AllowFilter = new Infragistics.Win.UltraWinEditors.UltraCheckEditor();
  443. this.cmb_Buress = new Infragistics.Win.UltraWinGrid.UltraCombo();
  444. this.Chk_Buttress = new Infragistics.Win.UltraWinEditors.UltraCheckEditor();
  445. this.cmb_Sleen = new Infragistics.Win.UltraWinGrid.UltraCombo();
  446. this.chk_PaiHao = new Infragistics.Win.UltraWinEditors.UltraCheckEditor();
  447. this.txt_GangP = new Infragistics.Win.UltraWinEditors.UltraTextEditor();
  448. this.chk_BanHao = new Infragistics.Win.UltraWinEditors.UltraCheckEditor();
  449. this.txt_RollHao = new Infragistics.Win.UltraWinEditors.UltraTextEditor();
  450. this.chk_RollHao = new Infragistics.Win.UltraWinEditors.UltraCheckEditor();
  451. this.txt_PlanID = new Infragistics.Win.UltraWinEditors.UltraTextEditor();
  452. this.chk_PactID = new Infragistics.Win.UltraWinEditors.UltraCheckEditor();
  453. this.txt_OrderNO = new Infragistics.Win.UltraWinEditors.UltraTextEditor();
  454. this.chk_OrderNO = new Infragistics.Win.UltraWinEditors.UltraCheckEditor();
  455. this.Lab_To = new Infragistics.Win.Misc.UltraLabel();
  456. this.tab_Coroll = new Infragistics.Win.UltraWinTabControl.UltraTabControl();
  457. this.ultraTabSharedControlsPage1 = new Infragistics.Win.UltraWinTabControl.UltraTabSharedControlsPage();
  458. this.excelExporter = new Infragistics.Win.UltraWinGrid.ExcelExport.UltraGridExcelExporter();
  459. this.ultraCombo1 = new Infragistics.Win.UltraWinGrid.UltraCombo();
  460. this.ultraLabel6 = new Infragistics.Win.Misc.UltraLabel();
  461. this.ultraTabControl1 = new Infragistics.Win.UltraWinTabControl.UltraTabControl();
  462. this.ultraTabSharedControlsPage2 = new Infragistics.Win.UltraWinTabControl.UltraTabSharedControlsPage();
  463. this.ultraTabSharedControlsPage3 = new Infragistics.Win.UltraWinTabControl.UltraTabSharedControlsPage();
  464. this.ultraTabPageControl3 = new Infragistics.Win.UltraWinTabControl.UltraTabPageControl();
  465. this.ultraGrid1 = new Infragistics.Win.UltraWinGrid.UltraGrid();
  466. this.panel3 = new System.Windows.Forms.Panel();
  467. this.ultraTextEditor1 = new Infragistics.Win.UltraWinEditors.UltraTextEditor();
  468. this.ultraLabel11 = new Infragistics.Win.Misc.UltraLabel();
  469. this.ultraTabPageControl4 = new Infragistics.Win.UltraWinTabControl.UltraTabPageControl();
  470. this.ultraGrid2 = new Infragistics.Win.UltraWinGrid.UltraGrid();
  471. this.ultraExpandableGroupBox3 = new Infragistics.Win.Misc.UltraExpandableGroupBox();
  472. this.ultraExpandableGroupBoxPanel3 = new Infragistics.Win.Misc.UltraExpandableGroupBoxPanel();
  473. this.ultraGrid3 = new Infragistics.Win.UltraWinGrid.UltraGrid();
  474. this.ultraExpandableGroupBox4 = new Infragistics.Win.Misc.UltraExpandableGroupBox();
  475. this.ultraExpandableGroupBoxPanel4 = new Infragistics.Win.Misc.UltraExpandableGroupBoxPanel();
  476. this.ultraTabPageControl1.SuspendLayout();
  477. ((System.ComponentModel.ISupportInitialize)(this.gb_Stuff)).BeginInit();
  478. this.panel2.SuspendLayout();
  479. ((System.ComponentModel.ISupportInitialize)(this.cmb_Gylx)).BeginInit();
  480. ((System.ComponentModel.ISupportInitialize)(this.txt_QuShi)).BeginInit();
  481. this.ultraTabPageControl2.SuspendLayout();
  482. ((System.ComponentModel.ISupportInitialize)(this.gb_Plan)).BeginInit();
  483. ((System.ComponentModel.ISupportInitialize)(this.ultraExpandableGroupBox2)).BeginInit();
  484. this.ultraExpandableGroupBox2.SuspendLayout();
  485. this.ultraExpandableGroupBoxPanel2.SuspendLayout();
  486. ((System.ComponentModel.ISupportInitialize)(this.gb_PlanState)).BeginInit();
  487. ((System.ComponentModel.ISupportInitialize)(this.ultraExpandableGroupBox1)).BeginInit();
  488. this.ultraExpandableGroupBox1.SuspendLayout();
  489. this.ultraExpandableGroupBoxPanel1.SuspendLayout();
  490. ((System.ComponentModel.ISupportInitialize)(this.txt_Width)).BeginInit();
  491. ((System.ComponentModel.ISupportInitialize)(this.dte_Time)).BeginInit();
  492. ((System.ComponentModel.ISupportInitialize)(this.txt_Length)).BeginInit();
  493. ((System.ComponentModel.ISupportInitialize)(this.txt_Scid_End_Y)).BeginInit();
  494. ((System.ComponentModel.ISupportInitialize)(this.cmb_ClassTeam)).BeginInit();
  495. ((System.ComponentModel.ISupportInitialize)(this.cmb_ClassOrder)).BeginInit();
  496. ((System.ComponentModel.ISupportInitialize)(this.cmb_EditType_Y)).BeginInit();
  497. ((System.ComponentModel.ISupportInitialize)(this.txt_Scid_Begin_Y)).BeginInit();
  498. ((System.ComponentModel.ISupportInitialize)(this.txt_Scid_Top_Y)).BeginInit();
  499. this.panel1.SuspendLayout();
  500. ((System.ComponentModel.ISupportInitialize)(this.ultraToolbarsManager1)).BeginInit();
  501. ((System.ComponentModel.ISupportInitialize)(this.ultraGroupBox1)).BeginInit();
  502. this.ultraGroupBox1.SuspendLayout();
  503. ((System.ComponentModel.ISupportInitialize)(this.ultSJ)).BeginInit();
  504. ((System.ComponentModel.ISupportInitialize)(this.cmb_IS)).BeginInit();
  505. ((System.ComponentModel.ISupportInitialize)(this.dte_EndTime)).BeginInit();
  506. ((System.ComponentModel.ISupportInitialize)(this.dte_BeginTime)).BeginInit();
  507. ((System.ComponentModel.ISupportInitialize)(this.txt_BNumber)).BeginInit();
  508. ((System.ComponentModel.ISupportInitialize)(this.cmb_Buress)).BeginInit();
  509. ((System.ComponentModel.ISupportInitialize)(this.cmb_Sleen)).BeginInit();
  510. ((System.ComponentModel.ISupportInitialize)(this.txt_GangP)).BeginInit();
  511. ((System.ComponentModel.ISupportInitialize)(this.txt_RollHao)).BeginInit();
  512. ((System.ComponentModel.ISupportInitialize)(this.txt_PlanID)).BeginInit();
  513. ((System.ComponentModel.ISupportInitialize)(this.txt_OrderNO)).BeginInit();
  514. ((System.ComponentModel.ISupportInitialize)(this.tab_Coroll)).BeginInit();
  515. this.tab_Coroll.SuspendLayout();
  516. ((System.ComponentModel.ISupportInitialize)(this.ultraCombo1)).BeginInit();
  517. ((System.ComponentModel.ISupportInitialize)(this.ultraTabControl1)).BeginInit();
  518. this.ultraTabControl1.SuspendLayout();
  519. this.ultraTabPageControl3.SuspendLayout();
  520. ((System.ComponentModel.ISupportInitialize)(this.ultraGrid1)).BeginInit();
  521. this.panel3.SuspendLayout();
  522. ((System.ComponentModel.ISupportInitialize)(this.ultraTextEditor1)).BeginInit();
  523. this.ultraTabPageControl4.SuspendLayout();
  524. ((System.ComponentModel.ISupportInitialize)(this.ultraGrid2)).BeginInit();
  525. ((System.ComponentModel.ISupportInitialize)(this.ultraExpandableGroupBox3)).BeginInit();
  526. this.ultraExpandableGroupBox3.SuspendLayout();
  527. this.ultraExpandableGroupBoxPanel3.SuspendLayout();
  528. ((System.ComponentModel.ISupportInitialize)(this.ultraGrid3)).BeginInit();
  529. ((System.ComponentModel.ISupportInitialize)(this.ultraExpandableGroupBox4)).BeginInit();
  530. this.ultraExpandableGroupBox4.SuspendLayout();
  531. this.SuspendLayout();
  532. //
  533. // ultraTabPageControl1
  534. //
  535. this.ultraTabPageControl1.Controls.Add(this.gb_Stuff);
  536. this.ultraTabPageControl1.Controls.Add(this.panel2);
  537. this.ultraTabPageControl1.Location = new System.Drawing.Point(-10000, -10000);
  538. this.ultraTabPageControl1.Name = "ultraTabPageControl1";
  539. this.ultraTabPageControl1.Size = new System.Drawing.Size(1269, 391);
  540. //
  541. // gb_Stuff
  542. //
  543. appearance1.BackColor = System.Drawing.Color.Ivory;
  544. this.gb_Stuff.DisplayLayout.Appearance = appearance1;
  545. ultraGridColumn1.Header.Caption = "出库单号";
  546. ultraGridColumn1.Header.VisiblePosition = 0;
  547. ultraGridColumn1.RowLayoutColumnInfo.OriginX = 29;
  548. ultraGridColumn1.RowLayoutColumnInfo.OriginY = 0;
  549. ultraGridColumn1.RowLayoutColumnInfo.PreferredCellSize = new System.Drawing.Size(77, 0);
  550. ultraGridColumn1.RowLayoutColumnInfo.SpanX = 1;
  551. ultraGridColumn1.RowLayoutColumnInfo.SpanY = 1;
  552. ultraGridColumn2.Header.Caption = "钢卷号";
  553. ultraGridColumn2.Header.VisiblePosition = 1;
  554. ultraGridColumn2.RowLayoutColumnInfo.OriginX = 2;
  555. ultraGridColumn2.RowLayoutColumnInfo.OriginY = 0;
  556. ultraGridColumn2.RowLayoutColumnInfo.PreferredCellSize = new System.Drawing.Size(92, 0);
  557. ultraGridColumn2.RowLayoutColumnInfo.SpanX = 1;
  558. ultraGridColumn2.RowLayoutColumnInfo.SpanY = 1;
  559. ultraGridColumn3.Header.Caption = "板坯号";
  560. ultraGridColumn3.Header.VisiblePosition = 2;
  561. ultraGridColumn3.RowLayoutColumnInfo.OriginX = 3;
  562. ultraGridColumn3.RowLayoutColumnInfo.OriginY = 0;
  563. ultraGridColumn3.RowLayoutColumnInfo.PreferredCellSize = new System.Drawing.Size(96, 0);
  564. ultraGridColumn3.RowLayoutColumnInfo.SpanX = 1;
  565. ultraGridColumn3.RowLayoutColumnInfo.SpanY = 1;
  566. ultraGridColumn4.Header.Caption = "合同号";
  567. ultraGridColumn4.Header.VisiblePosition = 3;
  568. ultraGridColumn4.RowLayoutColumnInfo.OriginX = 5;
  569. ultraGridColumn4.RowLayoutColumnInfo.OriginY = 0;
  570. ultraGridColumn4.RowLayoutColumnInfo.PreferredCellSize = new System.Drawing.Size(99, 0);
  571. ultraGridColumn4.RowLayoutColumnInfo.SpanX = 1;
  572. ultraGridColumn4.RowLayoutColumnInfo.SpanY = 1;
  573. ultraGridColumn5.Header.Caption = "订单号";
  574. ultraGridColumn5.Header.VisiblePosition = 4;
  575. ultraGridColumn5.RowLayoutColumnInfo.OriginX = 6;
  576. ultraGridColumn5.RowLayoutColumnInfo.OriginY = 0;
  577. ultraGridColumn5.RowLayoutColumnInfo.PreferredCellSize = new System.Drawing.Size(101, 0);
  578. ultraGridColumn5.RowLayoutColumnInfo.SpanX = 1;
  579. ultraGridColumn5.RowLayoutColumnInfo.SpanY = 1;
  580. ultraGridColumn6.Header.Caption = "交货期";
  581. ultraGridColumn6.Header.VisiblePosition = 5;
  582. ultraGridColumn6.RowLayoutColumnInfo.OriginX = 28;
  583. ultraGridColumn6.RowLayoutColumnInfo.OriginY = 0;
  584. ultraGridColumn6.RowLayoutColumnInfo.SpanX = 1;
  585. ultraGridColumn6.RowLayoutColumnInfo.SpanY = 1;
  586. ultraGridColumn7.Header.Caption = "内径";
  587. ultraGridColumn7.Header.VisiblePosition = 6;
  588. ultraGridColumn7.RowLayoutColumnInfo.OriginX = 10;
  589. ultraGridColumn7.RowLayoutColumnInfo.OriginY = 0;
  590. ultraGridColumn7.RowLayoutColumnInfo.PreferredCellSize = new System.Drawing.Size(55, 0);
  591. ultraGridColumn7.RowLayoutColumnInfo.SpanX = 1;
  592. ultraGridColumn7.RowLayoutColumnInfo.SpanY = 1;
  593. ultraGridColumn8.Header.Caption = "外径";
  594. ultraGridColumn8.Header.VisiblePosition = 7;
  595. ultraGridColumn8.RowLayoutColumnInfo.OriginX = 11;
  596. ultraGridColumn8.RowLayoutColumnInfo.OriginY = 0;
  597. ultraGridColumn8.RowLayoutColumnInfo.PreferredCellSize = new System.Drawing.Size(53, 0);
  598. ultraGridColumn8.RowLayoutColumnInfo.SpanX = 1;
  599. ultraGridColumn8.RowLayoutColumnInfo.SpanY = 1;
  600. ultraGridColumn9.Header.Caption = "长度";
  601. ultraGridColumn9.Header.VisiblePosition = 8;
  602. ultraGridColumn9.RowLayoutColumnInfo.OriginX = 16;
  603. ultraGridColumn9.RowLayoutColumnInfo.OriginY = 0;
  604. ultraGridColumn9.RowLayoutColumnInfo.PreferredCellSize = new System.Drawing.Size(52, 0);
  605. ultraGridColumn9.RowLayoutColumnInfo.SpanX = 1;
  606. ultraGridColumn9.RowLayoutColumnInfo.SpanY = 1;
  607. ultraGridColumn10.Header.Caption = "厚度 ";
  608. ultraGridColumn10.Header.VisiblePosition = 9;
  609. ultraGridColumn10.RowLayoutColumnInfo.OriginX = 14;
  610. ultraGridColumn10.RowLayoutColumnInfo.OriginY = 0;
  611. ultraGridColumn10.RowLayoutColumnInfo.PreferredCellSize = new System.Drawing.Size(48, 0);
  612. ultraGridColumn10.RowLayoutColumnInfo.SpanX = 1;
  613. ultraGridColumn10.RowLayoutColumnInfo.SpanY = 1;
  614. ultraGridColumn11.Header.Caption = "宽度";
  615. ultraGridColumn11.Header.VisiblePosition = 10;
  616. ultraGridColumn11.RowLayoutColumnInfo.OriginX = 15;
  617. ultraGridColumn11.RowLayoutColumnInfo.OriginY = 0;
  618. ultraGridColumn11.RowLayoutColumnInfo.PreferredCellSize = new System.Drawing.Size(46, 0);
  619. ultraGridColumn11.RowLayoutColumnInfo.SpanX = 1;
  620. ultraGridColumn11.RowLayoutColumnInfo.SpanY = 1;
  621. ultraGridColumn12.Header.Caption = "计算重量";
  622. ultraGridColumn12.Header.VisiblePosition = 11;
  623. ultraGridColumn12.RowLayoutColumnInfo.OriginX = 17;
  624. ultraGridColumn12.RowLayoutColumnInfo.OriginY = 0;
  625. ultraGridColumn12.RowLayoutColumnInfo.PreferredCellSize = new System.Drawing.Size(67, 0);
  626. ultraGridColumn12.RowLayoutColumnInfo.SpanX = 1;
  627. ultraGridColumn12.RowLayoutColumnInfo.SpanY = 1;
  628. ultraGridColumn13.Header.Caption = "实重量";
  629. ultraGridColumn13.Header.VisiblePosition = 12;
  630. ultraGridColumn13.RowLayoutColumnInfo.OriginX = 18;
  631. ultraGridColumn13.RowLayoutColumnInfo.OriginY = 0;
  632. ultraGridColumn13.RowLayoutColumnInfo.PreferredCellSize = new System.Drawing.Size(69, 0);
  633. ultraGridColumn13.RowLayoutColumnInfo.SpanX = 1;
  634. ultraGridColumn13.RowLayoutColumnInfo.SpanY = 1;
  635. ultraGridColumn14.Header.Caption = "牌号";
  636. ultraGridColumn14.Header.VisiblePosition = 13;
  637. ultraGridColumn14.RowLayoutColumnInfo.OriginX = 9;
  638. ultraGridColumn14.RowLayoutColumnInfo.OriginY = 0;
  639. ultraGridColumn14.RowLayoutColumnInfo.PreferredCellSize = new System.Drawing.Size(71, 0);
  640. ultraGridColumn14.RowLayoutColumnInfo.SpanX = 1;
  641. ultraGridColumn14.RowLayoutColumnInfo.SpanY = 1;
  642. ultraGridColumn15.Header.Caption = "综合判定";
  643. ultraGridColumn15.Header.VisiblePosition = 14;
  644. ultraGridColumn15.RowLayoutColumnInfo.OriginX = 20;
  645. ultraGridColumn15.RowLayoutColumnInfo.OriginY = 0;
  646. ultraGridColumn15.RowLayoutColumnInfo.PreferredCellSize = new System.Drawing.Size(64, 0);
  647. ultraGridColumn15.RowLayoutColumnInfo.SpanX = 1;
  648. ultraGridColumn15.RowLayoutColumnInfo.SpanY = 1;
  649. ultraGridColumn16.Header.Caption = "特记事项";
  650. ultraGridColumn16.Header.VisiblePosition = 15;
  651. ultraGridColumn16.RowLayoutColumnInfo.OriginX = 27;
  652. ultraGridColumn16.RowLayoutColumnInfo.OriginY = 0;
  653. ultraGridColumn16.RowLayoutColumnInfo.SpanX = 1;
  654. ultraGridColumn16.RowLayoutColumnInfo.SpanY = 1;
  655. ultraGridColumn17.Header.Caption = "车辆号";
  656. ultraGridColumn17.Header.VisiblePosition = 16;
  657. ultraGridColumn17.RowLayoutColumnInfo.OriginX = 30;
  658. ultraGridColumn17.RowLayoutColumnInfo.OriginY = 0;
  659. ultraGridColumn17.RowLayoutColumnInfo.PreferredCellSize = new System.Drawing.Size(78, 0);
  660. ultraGridColumn17.RowLayoutColumnInfo.SpanX = 1;
  661. ultraGridColumn17.RowLayoutColumnInfo.SpanY = 1;
  662. ultraGridColumn18.Header.Caption = "质保书编号";
  663. ultraGridColumn18.Header.VisiblePosition = 17;
  664. ultraGridColumn18.RowLayoutColumnInfo.OriginX = 26;
  665. ultraGridColumn18.RowLayoutColumnInfo.OriginY = 0;
  666. ultraGridColumn18.RowLayoutColumnInfo.PreferredCellSize = new System.Drawing.Size(69, 0);
  667. ultraGridColumn18.RowLayoutColumnInfo.SpanX = 1;
  668. ultraGridColumn18.RowLayoutColumnInfo.SpanY = 1;
  669. ultraGridColumn19.Header.Caption = "垛位";
  670. ultraGridColumn19.Header.VisiblePosition = 18;
  671. ultraGridColumn19.RowLayoutColumnInfo.OriginX = 8;
  672. ultraGridColumn19.RowLayoutColumnInfo.OriginY = 0;
  673. ultraGridColumn19.RowLayoutColumnInfo.PreferredCellSize = new System.Drawing.Size(90, 0);
  674. ultraGridColumn19.RowLayoutColumnInfo.SpanX = 1;
  675. ultraGridColumn19.RowLayoutColumnInfo.SpanY = 1;
  676. ultraGridColumn20.Header.Caption = "登记人";
  677. ultraGridColumn20.Header.VisiblePosition = 19;
  678. ultraGridColumn20.RowLayoutColumnInfo.OriginX = 33;
  679. ultraGridColumn20.RowLayoutColumnInfo.OriginY = 0;
  680. ultraGridColumn20.RowLayoutColumnInfo.SpanX = 1;
  681. ultraGridColumn20.RowLayoutColumnInfo.SpanY = 1;
  682. ultraGridColumn21.Header.Caption = "登记时间";
  683. ultraGridColumn21.Header.VisiblePosition = 20;
  684. ultraGridColumn21.RowLayoutColumnInfo.OriginX = 34;
  685. ultraGridColumn21.RowLayoutColumnInfo.OriginY = 0;
  686. ultraGridColumn21.RowLayoutColumnInfo.SpanX = 1;
  687. ultraGridColumn21.RowLayoutColumnInfo.SpanY = 1;
  688. ultraGridColumn22.Header.Caption = "入库班次";
  689. ultraGridColumn22.Header.VisiblePosition = 21;
  690. ultraGridColumn22.RowLayoutColumnInfo.OriginX = 31;
  691. ultraGridColumn22.RowLayoutColumnInfo.OriginY = 0;
  692. ultraGridColumn22.RowLayoutColumnInfo.PreferredCellSize = new System.Drawing.Size(60, 0);
  693. ultraGridColumn22.RowLayoutColumnInfo.SpanX = 1;
  694. ultraGridColumn22.RowLayoutColumnInfo.SpanY = 1;
  695. ultraGridColumn23.Header.Caption = "入库班组";
  696. ultraGridColumn23.Header.VisiblePosition = 22;
  697. ultraGridColumn23.RowLayoutColumnInfo.OriginX = 32;
  698. ultraGridColumn23.RowLayoutColumnInfo.OriginY = 0;
  699. ultraGridColumn23.RowLayoutColumnInfo.PreferredCellSize = new System.Drawing.Size(71, 0);
  700. ultraGridColumn23.RowLayoutColumnInfo.SpanX = 1;
  701. ultraGridColumn23.RowLayoutColumnInfo.SpanY = 1;
  702. ultraGridColumn24.Header.Caption = "";
  703. ultraGridColumn24.Header.VisiblePosition = 23;
  704. ultraGridColumn24.RowLayoutColumnInfo.OriginX = 0;
  705. ultraGridColumn24.RowLayoutColumnInfo.OriginY = 0;
  706. ultraGridColumn24.RowLayoutColumnInfo.PreferredCellSize = new System.Drawing.Size(32, 0);
  707. ultraGridColumn24.RowLayoutColumnInfo.SpanX = 1;
  708. ultraGridColumn24.RowLayoutColumnInfo.SpanY = 1;
  709. ultraGridColumn24.Style = Infragistics.Win.UltraWinGrid.ColumnStyle.CheckBox;
  710. ultraGridColumn25.Header.Caption = "订单类型";
  711. ultraGridColumn25.Header.VisiblePosition = 24;
  712. ultraGridColumn25.RowLayoutColumnInfo.OriginX = 19;
  713. ultraGridColumn25.RowLayoutColumnInfo.OriginY = 0;
  714. ultraGridColumn25.RowLayoutColumnInfo.PreferredCellSize = new System.Drawing.Size(67, 0);
  715. ultraGridColumn25.RowLayoutColumnInfo.SpanX = 1;
  716. ultraGridColumn25.RowLayoutColumnInfo.SpanY = 1;
  717. ultraGridColumn26.Header.Caption = "订单厚度";
  718. ultraGridColumn26.Header.VisiblePosition = 25;
  719. ultraGridColumn26.RowLayoutColumnInfo.OriginX = 12;
  720. ultraGridColumn26.RowLayoutColumnInfo.OriginY = 0;
  721. ultraGridColumn26.RowLayoutColumnInfo.PreferredCellSize = new System.Drawing.Size(57, 0);
  722. ultraGridColumn26.RowLayoutColumnInfo.SpanX = 1;
  723. ultraGridColumn26.RowLayoutColumnInfo.SpanY = 1;
  724. ultraGridColumn27.Header.Caption = "订单宽度";
  725. ultraGridColumn27.Header.VisiblePosition = 27;
  726. ultraGridColumn27.RowLayoutColumnInfo.OriginX = 13;
  727. ultraGridColumn27.RowLayoutColumnInfo.OriginY = 0;
  728. ultraGridColumn27.RowLayoutColumnInfo.PreferredCellSize = new System.Drawing.Size(56, 0);
  729. ultraGridColumn27.RowLayoutColumnInfo.SpanX = 1;
  730. ultraGridColumn27.RowLayoutColumnInfo.SpanY = 1;
  731. ultraGridColumn28.Header.Caption = "炉号";
  732. ultraGridColumn28.Header.VisiblePosition = 26;
  733. ultraGridColumn28.RowLayoutColumnInfo.OriginX = 4;
  734. ultraGridColumn28.RowLayoutColumnInfo.OriginY = 0;
  735. ultraGridColumn28.RowLayoutColumnInfo.SpanX = 1;
  736. ultraGridColumn28.RowLayoutColumnInfo.SpanY = 1;
  737. ultraGridColumn29.Header.Caption = "批号";
  738. ultraGridColumn29.Header.VisiblePosition = 28;
  739. ultraGridColumn29.RowLayoutColumnInfo.OriginX = 1;
  740. ultraGridColumn29.RowLayoutColumnInfo.OriginY = 0;
  741. ultraGridColumn29.RowLayoutColumnInfo.SpanX = 1;
  742. ultraGridColumn29.RowLayoutColumnInfo.SpanY = 1;
  743. ultraGridColumn30.Header.Caption = "执行标准";
  744. ultraGridColumn30.Header.VisiblePosition = 29;
  745. ultraGridColumn30.RowLayoutColumnInfo.OriginX = 7;
  746. ultraGridColumn30.RowLayoutColumnInfo.OriginY = 0;
  747. ultraGridColumn30.RowLayoutColumnInfo.PreferredCellSize = new System.Drawing.Size(88, 0);
  748. ultraGridColumn30.RowLayoutColumnInfo.SpanX = 1;
  749. ultraGridColumn30.RowLayoutColumnInfo.SpanY = 1;
  750. ultraGridBand1.Columns.AddRange(new object[] {
  751. ultraGridColumn1,
  752. ultraGridColumn2,
  753. ultraGridColumn3,
  754. ultraGridColumn4,
  755. ultraGridColumn5,
  756. ultraGridColumn6,
  757. ultraGridColumn7,
  758. ultraGridColumn8,
  759. ultraGridColumn9,
  760. ultraGridColumn10,
  761. ultraGridColumn11,
  762. ultraGridColumn12,
  763. ultraGridColumn13,
  764. ultraGridColumn14,
  765. ultraGridColumn15,
  766. ultraGridColumn16,
  767. ultraGridColumn17,
  768. ultraGridColumn18,
  769. ultraGridColumn19,
  770. ultraGridColumn20,
  771. ultraGridColumn21,
  772. ultraGridColumn22,
  773. ultraGridColumn23,
  774. ultraGridColumn24,
  775. ultraGridColumn25,
  776. ultraGridColumn26,
  777. ultraGridColumn27,
  778. ultraGridColumn28,
  779. ultraGridColumn29,
  780. ultraGridColumn30});
  781. appearance2.BackColor = System.Drawing.Color.LightSteelBlue;
  782. ultraGridBand1.Header.Appearance = appearance2;
  783. ultraGridBand1.Override.RowSelectors = Infragistics.Win.DefaultableBoolean.True;
  784. summarySettings1.DisplayFormat = "{0}KG";
  785. summarySettings1.GroupBySummaryValueAppearance = appearance3;
  786. summarySettings2.DisplayFormat = "{0}KG";
  787. summarySettings2.GroupBySummaryValueAppearance = appearance4;
  788. ultraGridBand1.Summaries.AddRange(new Infragistics.Win.UltraWinGrid.SummarySettings[] {
  789. summarySettings1,
  790. summarySettings2});
  791. ultraGridBand1.UseRowLayout = true;
  792. this.gb_Stuff.DisplayLayout.BandsSerializer.Add(ultraGridBand1);
  793. this.gb_Stuff.DisplayLayout.CaptionVisible = Infragistics.Win.DefaultableBoolean.False;
  794. appearance5.BackColor = System.Drawing.SystemColors.ActiveBorder;
  795. appearance5.BackColor2 = System.Drawing.SystemColors.ControlDark;
  796. appearance5.BackGradientStyle = Infragistics.Win.GradientStyle.Vertical;
  797. appearance5.BorderColor = System.Drawing.SystemColors.Window;
  798. this.gb_Stuff.DisplayLayout.GroupByBox.Appearance = appearance5;
  799. appearance6.ForeColor = System.Drawing.SystemColors.GrayText;
  800. this.gb_Stuff.DisplayLayout.GroupByBox.BandLabelAppearance = appearance6;
  801. this.gb_Stuff.DisplayLayout.GroupByBox.Hidden = true;
  802. this.gb_Stuff.DisplayLayout.GroupByBox.Prompt = "将要分组的列拖至该区域!";
  803. appearance7.BackColor = System.Drawing.SystemColors.Window;
  804. appearance7.ForeColor = System.Drawing.SystemColors.ControlText;
  805. this.gb_Stuff.DisplayLayout.Override.ActiveCellAppearance = appearance7;
  806. appearance8.BackColor = System.Drawing.SystemColors.Highlight;
  807. appearance8.ForeColor = System.Drawing.SystemColors.HighlightText;
  808. this.gb_Stuff.DisplayLayout.Override.ActiveRowAppearance = appearance8;
  809. appearance9.BorderColor = System.Drawing.Color.Black;
  810. appearance9.TextVAlign = Infragistics.Win.VAlign.Middle;
  811. this.gb_Stuff.DisplayLayout.Override.CellAppearance = appearance9;
  812. this.gb_Stuff.DisplayLayout.Override.CellClickAction = Infragistics.Win.UltraWinGrid.CellClickAction.EditAndSelectText;
  813. this.gb_Stuff.DisplayLayout.Override.CellPadding = 0;
  814. appearance10.BackColor = System.Drawing.SystemColors.Control;
  815. appearance10.BackColor2 = System.Drawing.SystemColors.ControlDark;
  816. appearance10.BackGradientAlignment = Infragistics.Win.GradientAlignment.Element;
  817. appearance10.BackGradientStyle = Infragistics.Win.GradientStyle.Horizontal;
  818. appearance10.BorderColor = System.Drawing.SystemColors.Window;
  819. appearance10.TextHAlign = Infragistics.Win.HAlign.Left;
  820. appearance10.TextVAlign = Infragistics.Win.VAlign.Middle;
  821. this.gb_Stuff.DisplayLayout.Override.GroupByRowAppearance = appearance10;
  822. this.gb_Stuff.DisplayLayout.Override.GroupBySummaryDisplayStyle = Infragistics.Win.UltraWinGrid.GroupBySummaryDisplayStyle.SummaryCells;
  823. appearance11.BackColor = System.Drawing.Color.Silver;
  824. this.gb_Stuff.DisplayLayout.Override.HeaderAppearance = appearance11;
  825. this.gb_Stuff.DisplayLayout.Override.HeaderClickAction = Infragistics.Win.UltraWinGrid.HeaderClickAction.SortMulti;
  826. this.gb_Stuff.DisplayLayout.Override.HeaderStyle = Infragistics.Win.HeaderStyle.Standard;
  827. appearance12.BackColor = System.Drawing.SystemColors.Window;
  828. appearance12.BorderColor = System.Drawing.Color.Black;
  829. appearance12.TextVAlign = Infragistics.Win.VAlign.Middle;
  830. this.gb_Stuff.DisplayLayout.Override.RowAppearance = appearance12;
  831. appearance13.BackColor = System.Drawing.SystemColors.Window;
  832. appearance13.BorderColor = System.Drawing.Color.Black;
  833. appearance13.TextVAlign = Infragistics.Win.VAlign.Middle;
  834. this.gb_Stuff.DisplayLayout.Override.RowPreviewAppearance = appearance13;
  835. this.gb_Stuff.DisplayLayout.Override.RowSelectorHeaderStyle = Infragistics.Win.UltraWinGrid.RowSelectorHeaderStyle.SeparateElement;
  836. this.gb_Stuff.DisplayLayout.Override.RowSelectorNumberStyle = Infragistics.Win.UltraWinGrid.RowSelectorNumberStyle.RowIndex;
  837. this.gb_Stuff.DisplayLayout.Override.RowSelectors = Infragistics.Win.DefaultableBoolean.True;
  838. appearance14.TextHAlign = Infragistics.Win.HAlign.Left;
  839. appearance14.TextVAlign = Infragistics.Win.VAlign.Middle;
  840. this.gb_Stuff.DisplayLayout.Override.SelectedRowAppearance = appearance14;
  841. this.gb_Stuff.DisplayLayout.Override.SummaryDisplayArea = Infragistics.Win.UltraWinGrid.SummaryDisplayAreas.BottomFixed;
  842. appearance15.BackColor = System.Drawing.SystemColors.Window;
  843. this.gb_Stuff.DisplayLayout.Override.SummaryFooterAppearance = appearance15;
  844. appearance16.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(255)))), ((int)(((byte)(255)))), ((int)(((byte)(192)))));
  845. appearance16.ForeColor = System.Drawing.Color.Red;
  846. this.gb_Stuff.DisplayLayout.Override.SummaryFooterCaptionAppearance = appearance16;
  847. this.gb_Stuff.DisplayLayout.Override.SummaryFooterCaptionVisible = Infragistics.Win.DefaultableBoolean.False;
  848. appearance17.BackColor = System.Drawing.Color.MistyRose;
  849. appearance17.ForeColor = System.Drawing.Color.Blue;
  850. appearance17.TextHAlign = Infragistics.Win.HAlign.Right;
  851. appearance17.TextVAlign = Infragistics.Win.VAlign.Middle;
  852. this.gb_Stuff.DisplayLayout.Override.SummaryValueAppearance = appearance17;
  853. appearance18.BackColor = System.Drawing.SystemColors.ControlLight;
  854. this.gb_Stuff.DisplayLayout.Override.TemplateAddRowAppearance = appearance18;
  855. this.gb_Stuff.DisplayLayout.ScrollBounds = Infragistics.Win.UltraWinGrid.ScrollBounds.ScrollToFill;
  856. this.gb_Stuff.DisplayLayout.ScrollStyle = Infragistics.Win.UltraWinGrid.ScrollStyle.Immediate;
  857. this.gb_Stuff.DisplayLayout.ViewStyleBand = Infragistics.Win.UltraWinGrid.ViewStyleBand.OutlookGroupBy;
  858. this.gb_Stuff.Dock = System.Windows.Forms.DockStyle.Fill;
  859. this.gb_Stuff.Location = new System.Drawing.Point(0, 0);
  860. this.gb_Stuff.Name = "gb_Stuff";
  861. this.gb_Stuff.Size = new System.Drawing.Size(1269, 343);
  862. this.gb_Stuff.TabIndex = 9;
  863. this.gb_Stuff.Text = "ultraGrid2";
  864. this.gb_Stuff.CellChange += new Infragistics.Win.UltraWinGrid.CellEventHandler(this.gb_Stuff_CellChange);
  865. //
  866. // panel2
  867. //
  868. this.panel2.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
  869. this.panel2.Controls.Add(this.cmb_Gylx);
  870. this.panel2.Controls.Add(this.ultraLabel15);
  871. this.panel2.Controls.Add(this.txt_QuShi);
  872. this.panel2.Controls.Add(this.ultraLabel3);
  873. this.panel2.Dock = System.Windows.Forms.DockStyle.Bottom;
  874. this.panel2.Location = new System.Drawing.Point(0, 343);
  875. this.panel2.Name = "panel2";
  876. this.panel2.Size = new System.Drawing.Size(1269, 48);
  877. this.panel2.TabIndex = 0;
  878. //
  879. // cmb_Gylx
  880. //
  881. this.cmb_Gylx.CharacterCasing = System.Windows.Forms.CharacterCasing.Normal;
  882. this.cmb_Gylx.DisplayMember = "";
  883. this.cmb_Gylx.Location = new System.Drawing.Point(430, 13);
  884. this.cmb_Gylx.Name = "cmb_Gylx";
  885. this.cmb_Gylx.Size = new System.Drawing.Size(150, 21);
  886. this.cmb_Gylx.TabIndex = 706;
  887. this.cmb_Gylx.ValueMember = "";
  888. //
  889. // ultraLabel15
  890. //
  891. this.ultraLabel15.Location = new System.Drawing.Point(374, 18);
  892. this.ultraLabel15.Name = "ultraLabel15";
  893. this.ultraLabel15.Size = new System.Drawing.Size(56, 16);
  894. this.ultraLabel15.TabIndex = 705;
  895. this.ultraLabel15.Text = "工艺类型";
  896. //
  897. // txt_QuShi
  898. //
  899. this.txt_QuShi.AutoSize = true;
  900. this.txt_QuShi.FlatMode = true;
  901. this.txt_QuShi.Location = new System.Drawing.Point(62, 16);
  902. this.txt_QuShi.Name = "txt_QuShi";
  903. this.txt_QuShi.Size = new System.Drawing.Size(306, 19);
  904. this.txt_QuShi.TabIndex = 601;
  905. //
  906. // ultraLabel3
  907. //
  908. this.ultraLabel3.Location = new System.Drawing.Point(8, 18);
  909. this.ultraLabel3.Name = "ultraLabel3";
  910. this.ultraLabel3.Size = new System.Drawing.Size(54, 16);
  911. this.ultraLabel3.TabIndex = 602;
  912. this.ultraLabel3.Text = "工艺事项";
  913. //
  914. // ultraTabPageControl2
  915. //
  916. this.ultraTabPageControl2.Controls.Add(this.gb_Plan);
  917. this.ultraTabPageControl2.Controls.Add(this.ultraExpandableGroupBox2);
  918. this.ultraTabPageControl2.Controls.Add(this.ultraExpandableGroupBox1);
  919. this.ultraTabPageControl2.Location = new System.Drawing.Point(2, 21);
  920. this.ultraTabPageControl2.Name = "ultraTabPageControl2";
  921. this.ultraTabPageControl2.Size = new System.Drawing.Size(1269, 391);
  922. //
  923. // gb_Plan
  924. //
  925. appearance19.BackColor = System.Drawing.Color.Ivory;
  926. this.gb_Plan.DisplayLayout.Appearance = appearance19;
  927. ultraGridColumn31.Header.Caption = "出库单号";
  928. ultraGridColumn31.Header.VisiblePosition = 0;
  929. ultraGridColumn31.RowLayoutColumnInfo.OriginX = 25;
  930. ultraGridColumn31.RowLayoutColumnInfo.OriginY = 0;
  931. ultraGridColumn31.RowLayoutColumnInfo.PreferredCellSize = new System.Drawing.Size(77, 0);
  932. ultraGridColumn31.RowLayoutColumnInfo.SpanX = 1;
  933. ultraGridColumn31.RowLayoutColumnInfo.SpanY = 1;
  934. ultraGridColumn32.Header.Caption = "钢卷号";
  935. ultraGridColumn32.Header.VisiblePosition = 1;
  936. ultraGridColumn32.RowLayoutColumnInfo.OriginX = 1;
  937. ultraGridColumn32.RowLayoutColumnInfo.OriginY = 0;
  938. ultraGridColumn32.RowLayoutColumnInfo.PreferredCellSize = new System.Drawing.Size(99, 0);
  939. ultraGridColumn32.RowLayoutColumnInfo.SpanX = 1;
  940. ultraGridColumn32.RowLayoutColumnInfo.SpanY = 1;
  941. ultraGridColumn33.Header.Caption = "板坯号";
  942. ultraGridColumn33.Header.VisiblePosition = 2;
  943. ultraGridColumn33.RowLayoutColumnInfo.OriginX = 3;
  944. ultraGridColumn33.RowLayoutColumnInfo.OriginY = 0;
  945. ultraGridColumn33.RowLayoutColumnInfo.PreferredCellSize = new System.Drawing.Size(110, 0);
  946. ultraGridColumn33.RowLayoutColumnInfo.SpanX = 1;
  947. ultraGridColumn33.RowLayoutColumnInfo.SpanY = 1;
  948. ultraGridColumn34.Header.Caption = "合同号";
  949. ultraGridColumn34.Header.VisiblePosition = 3;
  950. ultraGridColumn34.RowLayoutColumnInfo.OriginX = 6;
  951. ultraGridColumn34.RowLayoutColumnInfo.OriginY = 0;
  952. ultraGridColumn34.RowLayoutColumnInfo.PreferredCellSize = new System.Drawing.Size(99, 0);
  953. ultraGridColumn34.RowLayoutColumnInfo.SpanX = 1;
  954. ultraGridColumn34.RowLayoutColumnInfo.SpanY = 1;
  955. ultraGridColumn35.Header.Caption = "订单号";
  956. ultraGridColumn35.Header.VisiblePosition = 4;
  957. ultraGridColumn35.RowLayoutColumnInfo.OriginX = 7;
  958. ultraGridColumn35.RowLayoutColumnInfo.OriginY = 0;
  959. ultraGridColumn35.RowLayoutColumnInfo.PreferredCellSize = new System.Drawing.Size(101, 0);
  960. ultraGridColumn35.RowLayoutColumnInfo.SpanX = 1;
  961. ultraGridColumn35.RowLayoutColumnInfo.SpanY = 1;
  962. ultraGridColumn36.Header.Caption = "交货期";
  963. ultraGridColumn36.Header.VisiblePosition = 5;
  964. ultraGridColumn36.RowLayoutColumnInfo.OriginX = 24;
  965. ultraGridColumn36.RowLayoutColumnInfo.OriginY = 0;
  966. ultraGridColumn36.RowLayoutColumnInfo.SpanX = 1;
  967. ultraGridColumn36.RowLayoutColumnInfo.SpanY = 1;
  968. ultraGridColumn37.Header.Caption = "内径";
  969. ultraGridColumn37.Header.VisiblePosition = 6;
  970. ultraGridColumn37.RowLayoutColumnInfo.OriginX = 11;
  971. ultraGridColumn37.RowLayoutColumnInfo.OriginY = 0;
  972. ultraGridColumn37.RowLayoutColumnInfo.PreferredCellSize = new System.Drawing.Size(55, 0);
  973. ultraGridColumn37.RowLayoutColumnInfo.SpanX = 1;
  974. ultraGridColumn37.RowLayoutColumnInfo.SpanY = 1;
  975. ultraGridColumn38.Header.Caption = "外径";
  976. ultraGridColumn38.Header.VisiblePosition = 7;
  977. ultraGridColumn38.RowLayoutColumnInfo.OriginX = 12;
  978. ultraGridColumn38.RowLayoutColumnInfo.OriginY = 0;
  979. ultraGridColumn38.RowLayoutColumnInfo.PreferredCellSize = new System.Drawing.Size(53, 0);
  980. ultraGridColumn38.RowLayoutColumnInfo.SpanX = 1;
  981. ultraGridColumn38.RowLayoutColumnInfo.SpanY = 1;
  982. ultraGridColumn39.Header.Caption = "长度";
  983. ultraGridColumn39.Header.VisiblePosition = 8;
  984. ultraGridColumn39.RowLayoutColumnInfo.OriginX = 17;
  985. ultraGridColumn39.RowLayoutColumnInfo.OriginY = 0;
  986. ultraGridColumn39.RowLayoutColumnInfo.PreferredCellSize = new System.Drawing.Size(52, 0);
  987. ultraGridColumn39.RowLayoutColumnInfo.SpanX = 1;
  988. ultraGridColumn39.RowLayoutColumnInfo.SpanY = 1;
  989. ultraGridColumn40.Header.Caption = "厚度 ";
  990. ultraGridColumn40.Header.VisiblePosition = 9;
  991. ultraGridColumn40.RowLayoutColumnInfo.OriginX = 15;
  992. ultraGridColumn40.RowLayoutColumnInfo.OriginY = 0;
  993. ultraGridColumn40.RowLayoutColumnInfo.PreferredCellSize = new System.Drawing.Size(48, 0);
  994. ultraGridColumn40.RowLayoutColumnInfo.SpanX = 1;
  995. ultraGridColumn40.RowLayoutColumnInfo.SpanY = 1;
  996. ultraGridColumn41.Header.Caption = "宽度";
  997. ultraGridColumn41.Header.VisiblePosition = 10;
  998. ultraGridColumn41.RowLayoutColumnInfo.OriginX = 16;
  999. ultraGridColumn41.RowLayoutColumnInfo.OriginY = 0;
  1000. ultraGridColumn41.RowLayoutColumnInfo.PreferredCellSize = new System.Drawing.Size(46, 0);
  1001. ultraGridColumn41.RowLayoutColumnInfo.SpanX = 1;
  1002. ultraGridColumn41.RowLayoutColumnInfo.SpanY = 1;
  1003. ultraGridColumn42.Header.Caption = "计算重量";
  1004. ultraGridColumn42.Header.VisiblePosition = 11;
  1005. ultraGridColumn42.RowLayoutColumnInfo.OriginX = 18;
  1006. ultraGridColumn42.RowLayoutColumnInfo.OriginY = 0;
  1007. ultraGridColumn42.RowLayoutColumnInfo.PreferredCellSize = new System.Drawing.Size(67, 0);
  1008. ultraGridColumn42.RowLayoutColumnInfo.SpanX = 1;
  1009. ultraGridColumn42.RowLayoutColumnInfo.SpanY = 1;
  1010. ultraGridColumn43.Header.Caption = "实重量";
  1011. ultraGridColumn43.Header.VisiblePosition = 12;
  1012. ultraGridColumn43.RowLayoutColumnInfo.OriginX = 19;
  1013. ultraGridColumn43.RowLayoutColumnInfo.OriginY = 0;
  1014. ultraGridColumn43.RowLayoutColumnInfo.PreferredCellSize = new System.Drawing.Size(69, 0);
  1015. ultraGridColumn43.RowLayoutColumnInfo.SpanX = 1;
  1016. ultraGridColumn43.RowLayoutColumnInfo.SpanY = 1;
  1017. ultraGridColumn44.Header.Caption = "牌号";
  1018. ultraGridColumn44.Header.VisiblePosition = 13;
  1019. ultraGridColumn44.RowLayoutColumnInfo.OriginX = 10;
  1020. ultraGridColumn44.RowLayoutColumnInfo.OriginY = 0;
  1021. ultraGridColumn44.RowLayoutColumnInfo.PreferredCellSize = new System.Drawing.Size(71, 0);
  1022. ultraGridColumn44.RowLayoutColumnInfo.SpanX = 1;
  1023. ultraGridColumn44.RowLayoutColumnInfo.SpanY = 1;
  1024. ultraGridColumn45.Header.Caption = "综合判定";
  1025. ultraGridColumn45.Header.VisiblePosition = 14;
  1026. ultraGridColumn45.RowLayoutColumnInfo.OriginX = 21;
  1027. ultraGridColumn45.RowLayoutColumnInfo.OriginY = 0;
  1028. ultraGridColumn45.RowLayoutColumnInfo.PreferredCellSize = new System.Drawing.Size(64, 0);
  1029. ultraGridColumn45.RowLayoutColumnInfo.SpanX = 1;
  1030. ultraGridColumn45.RowLayoutColumnInfo.SpanY = 1;
  1031. ultraGridColumn46.Header.Caption = "特记事项";
  1032. ultraGridColumn46.Header.VisiblePosition = 15;
  1033. ultraGridColumn46.RowLayoutColumnInfo.OriginX = 23;
  1034. ultraGridColumn46.RowLayoutColumnInfo.OriginY = 0;
  1035. ultraGridColumn46.RowLayoutColumnInfo.SpanX = 1;
  1036. ultraGridColumn46.RowLayoutColumnInfo.SpanY = 1;
  1037. ultraGridColumn47.Header.Caption = "车辆号";
  1038. ultraGridColumn47.Header.VisiblePosition = 16;
  1039. ultraGridColumn47.RowLayoutColumnInfo.OriginX = 26;
  1040. ultraGridColumn47.RowLayoutColumnInfo.OriginY = 0;
  1041. ultraGridColumn47.RowLayoutColumnInfo.PreferredCellSize = new System.Drawing.Size(78, 0);
  1042. ultraGridColumn47.RowLayoutColumnInfo.SpanX = 1;
  1043. ultraGridColumn47.RowLayoutColumnInfo.SpanY = 1;
  1044. ultraGridColumn48.Header.Caption = "质保书编号";
  1045. ultraGridColumn48.Header.VisiblePosition = 17;
  1046. ultraGridColumn48.RowLayoutColumnInfo.OriginX = 22;
  1047. ultraGridColumn48.RowLayoutColumnInfo.OriginY = 0;
  1048. ultraGridColumn48.RowLayoutColumnInfo.PreferredCellSize = new System.Drawing.Size(69, 0);
  1049. ultraGridColumn48.RowLayoutColumnInfo.SpanX = 1;
  1050. ultraGridColumn48.RowLayoutColumnInfo.SpanY = 1;
  1051. ultraGridColumn49.Header.Caption = "垛位";
  1052. ultraGridColumn49.Header.VisiblePosition = 18;
  1053. ultraGridColumn49.RowLayoutColumnInfo.OriginX = 9;
  1054. ultraGridColumn49.RowLayoutColumnInfo.OriginY = 0;
  1055. ultraGridColumn49.RowLayoutColumnInfo.PreferredCellSize = new System.Drawing.Size(90, 0);
  1056. ultraGridColumn49.RowLayoutColumnInfo.SpanX = 1;
  1057. ultraGridColumn49.RowLayoutColumnInfo.SpanY = 1;
  1058. ultraGridColumn50.Header.Caption = "登记人";
  1059. ultraGridColumn50.Header.VisiblePosition = 19;
  1060. ultraGridColumn50.RowLayoutColumnInfo.OriginX = 29;
  1061. ultraGridColumn50.RowLayoutColumnInfo.OriginY = 0;
  1062. ultraGridColumn50.RowLayoutColumnInfo.SpanX = 1;
  1063. ultraGridColumn50.RowLayoutColumnInfo.SpanY = 1;
  1064. ultraGridColumn51.Header.Caption = "登记时间";
  1065. ultraGridColumn51.Header.VisiblePosition = 20;
  1066. ultraGridColumn51.RowLayoutColumnInfo.OriginX = 30;
  1067. ultraGridColumn51.RowLayoutColumnInfo.OriginY = 0;
  1068. ultraGridColumn51.RowLayoutColumnInfo.SpanX = 1;
  1069. ultraGridColumn51.RowLayoutColumnInfo.SpanY = 1;
  1070. ultraGridColumn52.Header.Caption = "计划班次";
  1071. ultraGridColumn52.Header.VisiblePosition = 21;
  1072. ultraGridColumn52.RowLayoutColumnInfo.OriginX = 27;
  1073. ultraGridColumn52.RowLayoutColumnInfo.OriginY = 0;
  1074. ultraGridColumn52.RowLayoutColumnInfo.PreferredCellSize = new System.Drawing.Size(70, 0);
  1075. ultraGridColumn52.RowLayoutColumnInfo.SpanX = 1;
  1076. ultraGridColumn52.RowLayoutColumnInfo.SpanY = 1;
  1077. ultraGridColumn53.Header.Caption = "计划班组";
  1078. ultraGridColumn53.Header.VisiblePosition = 22;
  1079. ultraGridColumn53.RowLayoutColumnInfo.OriginX = 28;
  1080. ultraGridColumn53.RowLayoutColumnInfo.OriginY = 0;
  1081. ultraGridColumn53.RowLayoutColumnInfo.PreferredCellSize = new System.Drawing.Size(70, 0);
  1082. ultraGridColumn53.RowLayoutColumnInfo.SpanX = 1;
  1083. ultraGridColumn53.RowLayoutColumnInfo.SpanY = 1;
  1084. ultraGridColumn54.Header.Caption = "工单号";
  1085. ultraGridColumn54.Header.VisiblePosition = 23;
  1086. ultraGridColumn54.Hidden = true;
  1087. ultraGridColumn54.RowLayoutColumnInfo.OriginX = 2;
  1088. ultraGridColumn54.RowLayoutColumnInfo.OriginY = 0;
  1089. ultraGridColumn54.RowLayoutColumnInfo.PreferredCellSize = new System.Drawing.Size(89, 0);
  1090. ultraGridColumn54.RowLayoutColumnInfo.SpanX = 1;
  1091. ultraGridColumn54.RowLayoutColumnInfo.SpanY = 1;
  1092. ultraGridColumn55.Header.Caption = "";
  1093. ultraGridColumn55.Header.VisiblePosition = 24;
  1094. ultraGridColumn55.RowLayoutColumnInfo.OriginX = 0;
  1095. ultraGridColumn55.RowLayoutColumnInfo.OriginY = 0;
  1096. ultraGridColumn55.RowLayoutColumnInfo.PreferredCellSize = new System.Drawing.Size(38, 0);
  1097. ultraGridColumn55.RowLayoutColumnInfo.SpanX = 1;
  1098. ultraGridColumn55.RowLayoutColumnInfo.SpanY = 1;
  1099. ultraGridColumn55.Style = Infragistics.Win.UltraWinGrid.ColumnStyle.CheckBox;
  1100. ultraGridColumn56.Header.Caption = "批号";
  1101. ultraGridColumn56.Header.VisiblePosition = 26;
  1102. ultraGridColumn56.RowLayoutColumnInfo.OriginX = 2;
  1103. ultraGridColumn56.RowLayoutColumnInfo.OriginY = 0;
  1104. ultraGridColumn56.RowLayoutColumnInfo.PreferredCellSize = new System.Drawing.Size(103, 0);
  1105. ultraGridColumn56.RowLayoutColumnInfo.SpanX = 1;
  1106. ultraGridColumn56.RowLayoutColumnInfo.SpanY = 1;
  1107. ultraGridColumn57.Header.Caption = "开平线";
  1108. ultraGridColumn57.Header.VisiblePosition = 27;
  1109. ultraGridColumn57.Hidden = true;
  1110. ultraGridColumn57.RowLayoutColumnInfo.OriginX = 1;
  1111. ultraGridColumn57.RowLayoutColumnInfo.OriginY = 0;
  1112. ultraGridColumn57.RowLayoutColumnInfo.PreferredCellSize = new System.Drawing.Size(73, 0);
  1113. ultraGridColumn57.RowLayoutColumnInfo.SpanX = 2;
  1114. ultraGridColumn57.RowLayoutColumnInfo.SpanY = 2;
  1115. ultraGridColumn58.Header.Caption = "订单类型";
  1116. ultraGridColumn58.Header.VisiblePosition = 28;
  1117. ultraGridColumn58.RowLayoutColumnInfo.OriginX = 20;
  1118. ultraGridColumn58.RowLayoutColumnInfo.OriginY = 0;
  1119. ultraGridColumn58.RowLayoutColumnInfo.PreferredCellSize = new System.Drawing.Size(63, 0);
  1120. ultraGridColumn58.RowLayoutColumnInfo.SpanX = 1;
  1121. ultraGridColumn58.RowLayoutColumnInfo.SpanY = 1;
  1122. ultraGridColumn59.Header.Caption = "订单厚度";
  1123. ultraGridColumn59.Header.VisiblePosition = 29;
  1124. ultraGridColumn59.RowLayoutColumnInfo.OriginX = 13;
  1125. ultraGridColumn59.RowLayoutColumnInfo.OriginY = 0;
  1126. ultraGridColumn59.RowLayoutColumnInfo.PreferredCellSize = new System.Drawing.Size(56, 0);
  1127. ultraGridColumn59.RowLayoutColumnInfo.SpanX = 1;
  1128. ultraGridColumn59.RowLayoutColumnInfo.SpanY = 1;
  1129. ultraGridColumn60.Header.Caption = "订单宽度";
  1130. ultraGridColumn60.Header.VisiblePosition = 32;
  1131. ultraGridColumn60.RowLayoutColumnInfo.OriginX = 14;
  1132. ultraGridColumn60.RowLayoutColumnInfo.OriginY = 0;
  1133. ultraGridColumn60.RowLayoutColumnInfo.PreferredCellSize = new System.Drawing.Size(61, 0);
  1134. ultraGridColumn60.RowLayoutColumnInfo.SpanX = 1;
  1135. ultraGridColumn60.RowLayoutColumnInfo.SpanY = 1;
  1136. ultraGridColumn61.Header.Caption = "工艺类型";
  1137. ultraGridColumn61.Header.VisiblePosition = 30;
  1138. ultraGridColumn61.RowLayoutColumnInfo.OriginX = 5;
  1139. ultraGridColumn61.RowLayoutColumnInfo.OriginY = 0;
  1140. ultraGridColumn61.RowLayoutColumnInfo.SpanX = 1;
  1141. ultraGridColumn61.RowLayoutColumnInfo.SpanY = 1;
  1142. ultraGridColumn62.Header.Caption = "炉号";
  1143. ultraGridColumn62.Header.VisiblePosition = 25;
  1144. ultraGridColumn62.RowLayoutColumnInfo.OriginX = 4;
  1145. ultraGridColumn62.RowLayoutColumnInfo.OriginY = 0;
  1146. ultraGridColumn62.RowLayoutColumnInfo.PreferredCellSize = new System.Drawing.Size(96, 0);
  1147. ultraGridColumn62.RowLayoutColumnInfo.SpanX = 1;
  1148. ultraGridColumn62.RowLayoutColumnInfo.SpanY = 1;
  1149. ultraGridColumn63.Header.Caption = "执行标准";
  1150. ultraGridColumn63.Header.VisiblePosition = 31;
  1151. ultraGridColumn63.RowLayoutColumnInfo.OriginX = 8;
  1152. ultraGridColumn63.RowLayoutColumnInfo.OriginY = 0;
  1153. ultraGridColumn63.RowLayoutColumnInfo.PreferredCellSize = new System.Drawing.Size(92, 0);
  1154. ultraGridColumn63.RowLayoutColumnInfo.SpanX = 1;
  1155. ultraGridColumn63.RowLayoutColumnInfo.SpanY = 1;
  1156. ultraGridBand2.Columns.AddRange(new object[] {
  1157. ultraGridColumn31,
  1158. ultraGridColumn32,
  1159. ultraGridColumn33,
  1160. ultraGridColumn34,
  1161. ultraGridColumn35,
  1162. ultraGridColumn36,
  1163. ultraGridColumn37,
  1164. ultraGridColumn38,
  1165. ultraGridColumn39,
  1166. ultraGridColumn40,
  1167. ultraGridColumn41,
  1168. ultraGridColumn42,
  1169. ultraGridColumn43,
  1170. ultraGridColumn44,
  1171. ultraGridColumn45,
  1172. ultraGridColumn46,
  1173. ultraGridColumn47,
  1174. ultraGridColumn48,
  1175. ultraGridColumn49,
  1176. ultraGridColumn50,
  1177. ultraGridColumn51,
  1178. ultraGridColumn52,
  1179. ultraGridColumn53,
  1180. ultraGridColumn54,
  1181. ultraGridColumn55,
  1182. ultraGridColumn56,
  1183. ultraGridColumn57,
  1184. ultraGridColumn58,
  1185. ultraGridColumn59,
  1186. ultraGridColumn60,
  1187. ultraGridColumn61,
  1188. ultraGridColumn62,
  1189. ultraGridColumn63});
  1190. appearance20.BackColor = System.Drawing.Color.LightSteelBlue;
  1191. ultraGridBand2.Header.Appearance = appearance20;
  1192. ultraGridBand2.Override.RowSelectors = Infragistics.Win.DefaultableBoolean.True;
  1193. ultraGridBand2.UseRowLayout = true;
  1194. this.gb_Plan.DisplayLayout.BandsSerializer.Add(ultraGridBand2);
  1195. this.gb_Plan.DisplayLayout.CaptionVisible = Infragistics.Win.DefaultableBoolean.False;
  1196. appearance21.BackColor = System.Drawing.SystemColors.ActiveBorder;
  1197. appearance21.BackColor2 = System.Drawing.SystemColors.ControlDark;
  1198. appearance21.BackGradientStyle = Infragistics.Win.GradientStyle.Vertical;
  1199. appearance21.BorderColor = System.Drawing.SystemColors.Window;
  1200. this.gb_Plan.DisplayLayout.GroupByBox.Appearance = appearance21;
  1201. appearance22.ForeColor = System.Drawing.SystemColors.GrayText;
  1202. this.gb_Plan.DisplayLayout.GroupByBox.BandLabelAppearance = appearance22;
  1203. this.gb_Plan.DisplayLayout.GroupByBox.Hidden = true;
  1204. this.gb_Plan.DisplayLayout.GroupByBox.Prompt = "将要分组的列拖至该区域!";
  1205. appearance23.BackColor = System.Drawing.SystemColors.Window;
  1206. appearance23.ForeColor = System.Drawing.SystemColors.ControlText;
  1207. this.gb_Plan.DisplayLayout.Override.ActiveCellAppearance = appearance23;
  1208. appearance24.BackColor = System.Drawing.SystemColors.Highlight;
  1209. appearance24.ForeColor = System.Drawing.SystemColors.HighlightText;
  1210. this.gb_Plan.DisplayLayout.Override.ActiveRowAppearance = appearance24;
  1211. appearance25.BorderColor = System.Drawing.Color.Black;
  1212. appearance25.TextVAlign = Infragistics.Win.VAlign.Middle;
  1213. this.gb_Plan.DisplayLayout.Override.CellAppearance = appearance25;
  1214. this.gb_Plan.DisplayLayout.Override.CellClickAction = Infragistics.Win.UltraWinGrid.CellClickAction.EditAndSelectText;
  1215. this.gb_Plan.DisplayLayout.Override.CellPadding = 0;
  1216. appearance26.BackColor = System.Drawing.SystemColors.Control;
  1217. appearance26.BackColor2 = System.Drawing.SystemColors.ControlDark;
  1218. appearance26.BackGradientAlignment = Infragistics.Win.GradientAlignment.Element;
  1219. appearance26.BackGradientStyle = Infragistics.Win.GradientStyle.Horizontal;
  1220. appearance26.BorderColor = System.Drawing.SystemColors.Window;
  1221. appearance26.TextHAlign = Infragistics.Win.HAlign.Left;
  1222. appearance26.TextVAlign = Infragistics.Win.VAlign.Middle;
  1223. this.gb_Plan.DisplayLayout.Override.GroupByRowAppearance = appearance26;
  1224. this.gb_Plan.DisplayLayout.Override.GroupBySummaryDisplayStyle = Infragistics.Win.UltraWinGrid.GroupBySummaryDisplayStyle.SummaryCells;
  1225. appearance27.BackColor = System.Drawing.Color.Silver;
  1226. this.gb_Plan.DisplayLayout.Override.HeaderAppearance = appearance27;
  1227. this.gb_Plan.DisplayLayout.Override.HeaderClickAction = Infragistics.Win.UltraWinGrid.HeaderClickAction.SortMulti;
  1228. this.gb_Plan.DisplayLayout.Override.HeaderStyle = Infragistics.Win.HeaderStyle.Standard;
  1229. appearance28.BackColor = System.Drawing.SystemColors.Window;
  1230. appearance28.BorderColor = System.Drawing.Color.Black;
  1231. appearance28.TextVAlign = Infragistics.Win.VAlign.Middle;
  1232. this.gb_Plan.DisplayLayout.Override.RowAppearance = appearance28;
  1233. appearance29.BackColor = System.Drawing.SystemColors.Window;
  1234. appearance29.BorderColor = System.Drawing.Color.Black;
  1235. appearance29.TextVAlign = Infragistics.Win.VAlign.Middle;
  1236. this.gb_Plan.DisplayLayout.Override.RowPreviewAppearance = appearance29;
  1237. this.gb_Plan.DisplayLayout.Override.RowSelectorHeaderStyle = Infragistics.Win.UltraWinGrid.RowSelectorHeaderStyle.SeparateElement;
  1238. this.gb_Plan.DisplayLayout.Override.RowSelectorNumberStyle = Infragistics.Win.UltraWinGrid.RowSelectorNumberStyle.RowIndex;
  1239. this.gb_Plan.DisplayLayout.Override.RowSelectors = Infragistics.Win.DefaultableBoolean.True;
  1240. appearance30.TextHAlign = Infragistics.Win.HAlign.Left;
  1241. appearance30.TextVAlign = Infragistics.Win.VAlign.Middle;
  1242. this.gb_Plan.DisplayLayout.Override.SelectedRowAppearance = appearance30;
  1243. this.gb_Plan.DisplayLayout.Override.SummaryDisplayArea = Infragistics.Win.UltraWinGrid.SummaryDisplayAreas.BottomFixed;
  1244. appearance31.BackColor = System.Drawing.SystemColors.Window;
  1245. this.gb_Plan.DisplayLayout.Override.SummaryFooterAppearance = appearance31;
  1246. appearance32.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(255)))), ((int)(((byte)(255)))), ((int)(((byte)(192)))));
  1247. appearance32.ForeColor = System.Drawing.Color.Red;
  1248. this.gb_Plan.DisplayLayout.Override.SummaryFooterCaptionAppearance = appearance32;
  1249. this.gb_Plan.DisplayLayout.Override.SummaryFooterCaptionVisible = Infragistics.Win.DefaultableBoolean.False;
  1250. appearance33.BackColor = System.Drawing.Color.MistyRose;
  1251. appearance33.ForeColor = System.Drawing.Color.Blue;
  1252. appearance33.TextHAlign = Infragistics.Win.HAlign.Right;
  1253. appearance33.TextVAlign = Infragistics.Win.VAlign.Middle;
  1254. this.gb_Plan.DisplayLayout.Override.SummaryValueAppearance = appearance33;
  1255. appearance34.BackColor = System.Drawing.SystemColors.ControlLight;
  1256. this.gb_Plan.DisplayLayout.Override.TemplateAddRowAppearance = appearance34;
  1257. this.gb_Plan.DisplayLayout.ScrollBounds = Infragistics.Win.UltraWinGrid.ScrollBounds.ScrollToFill;
  1258. this.gb_Plan.DisplayLayout.ScrollStyle = Infragistics.Win.UltraWinGrid.ScrollStyle.Immediate;
  1259. this.gb_Plan.DisplayLayout.ViewStyleBand = Infragistics.Win.UltraWinGrid.ViewStyleBand.OutlookGroupBy;
  1260. this.gb_Plan.Dock = System.Windows.Forms.DockStyle.Fill;
  1261. this.gb_Plan.Location = new System.Drawing.Point(0, 0);
  1262. this.gb_Plan.Name = "gb_Plan";
  1263. this.gb_Plan.Size = new System.Drawing.Size(1269, 124);
  1264. this.gb_Plan.TabIndex = 10;
  1265. this.gb_Plan.Text = "ultraGrid1";
  1266. this.gb_Plan.CellChange += new Infragistics.Win.UltraWinGrid.CellEventHandler(this.gb_Plan_CellChange);
  1267. //
  1268. // ultraExpandableGroupBox2
  1269. //
  1270. this.ultraExpandableGroupBox2.Controls.Add(this.ultraExpandableGroupBoxPanel2);
  1271. this.ultraExpandableGroupBox2.Dock = System.Windows.Forms.DockStyle.Bottom;
  1272. this.ultraExpandableGroupBox2.ExpandedSize = new System.Drawing.Size(860, 243);
  1273. this.ultraExpandableGroupBox2.Location = new System.Drawing.Point(0, 124);
  1274. this.ultraExpandableGroupBox2.Name = "ultraExpandableGroupBox2";
  1275. this.ultraExpandableGroupBox2.Size = new System.Drawing.Size(1269, 187);
  1276. this.ultraExpandableGroupBox2.SupportThemes = false;
  1277. this.ultraExpandableGroupBox2.TabIndex = 2;
  1278. this.ultraExpandableGroupBox2.Text = "计划下发情况";
  1279. //
  1280. // ultraExpandableGroupBoxPanel2
  1281. //
  1282. this.ultraExpandableGroupBoxPanel2.Controls.Add(this.gb_PlanState);
  1283. this.ultraExpandableGroupBoxPanel2.Dock = System.Windows.Forms.DockStyle.Fill;
  1284. this.ultraExpandableGroupBoxPanel2.Location = new System.Drawing.Point(3, 19);
  1285. this.ultraExpandableGroupBoxPanel2.Name = "ultraExpandableGroupBoxPanel2";
  1286. this.ultraExpandableGroupBoxPanel2.Size = new System.Drawing.Size(1263, 165);
  1287. this.ultraExpandableGroupBoxPanel2.TabIndex = 0;
  1288. //
  1289. // gb_PlanState
  1290. //
  1291. appearance35.BackColor = System.Drawing.Color.Ivory;
  1292. this.gb_PlanState.DisplayLayout.Appearance = appearance35;
  1293. ultraGridColumn64.Header.Caption = "出库单号";
  1294. ultraGridColumn64.Header.VisiblePosition = 0;
  1295. ultraGridColumn64.RowLayoutColumnInfo.OriginX = 24;
  1296. ultraGridColumn64.RowLayoutColumnInfo.OriginY = 0;
  1297. ultraGridColumn64.RowLayoutColumnInfo.PreferredCellSize = new System.Drawing.Size(77, 0);
  1298. ultraGridColumn64.RowLayoutColumnInfo.SpanX = 1;
  1299. ultraGridColumn64.RowLayoutColumnInfo.SpanY = 1;
  1300. ultraGridColumn65.Header.Caption = "钢卷号";
  1301. ultraGridColumn65.Header.VisiblePosition = 1;
  1302. ultraGridColumn65.RowLayoutColumnInfo.OriginX = 2;
  1303. ultraGridColumn65.RowLayoutColumnInfo.OriginY = 0;
  1304. ultraGridColumn65.RowLayoutColumnInfo.PreferredCellSize = new System.Drawing.Size(92, 0);
  1305. ultraGridColumn65.RowLayoutColumnInfo.SpanX = 1;
  1306. ultraGridColumn65.RowLayoutColumnInfo.SpanY = 1;
  1307. ultraGridColumn66.Header.Caption = "板坯号";
  1308. ultraGridColumn66.Header.VisiblePosition = 2;
  1309. ultraGridColumn66.RowLayoutColumnInfo.OriginX = 3;
  1310. ultraGridColumn66.RowLayoutColumnInfo.OriginY = 0;
  1311. ultraGridColumn66.RowLayoutColumnInfo.PreferredCellSize = new System.Drawing.Size(96, 0);
  1312. ultraGridColumn66.RowLayoutColumnInfo.SpanX = 1;
  1313. ultraGridColumn66.RowLayoutColumnInfo.SpanY = 1;
  1314. ultraGridColumn67.Header.Caption = "合同号";
  1315. ultraGridColumn67.Header.VisiblePosition = 3;
  1316. ultraGridColumn67.RowLayoutColumnInfo.OriginX = 6;
  1317. ultraGridColumn67.RowLayoutColumnInfo.OriginY = 0;
  1318. ultraGridColumn67.RowLayoutColumnInfo.PreferredCellSize = new System.Drawing.Size(99, 0);
  1319. ultraGridColumn67.RowLayoutColumnInfo.SpanX = 1;
  1320. ultraGridColumn67.RowLayoutColumnInfo.SpanY = 1;
  1321. ultraGridColumn68.Header.Caption = "订单号";
  1322. ultraGridColumn68.Header.VisiblePosition = 4;
  1323. ultraGridColumn68.RowLayoutColumnInfo.OriginX = 7;
  1324. ultraGridColumn68.RowLayoutColumnInfo.OriginY = 0;
  1325. ultraGridColumn68.RowLayoutColumnInfo.PreferredCellSize = new System.Drawing.Size(101, 0);
  1326. ultraGridColumn68.RowLayoutColumnInfo.SpanX = 1;
  1327. ultraGridColumn68.RowLayoutColumnInfo.SpanY = 1;
  1328. ultraGridColumn69.Header.Caption = "交货期";
  1329. ultraGridColumn69.Header.VisiblePosition = 5;
  1330. ultraGridColumn69.RowLayoutColumnInfo.OriginX = 25;
  1331. ultraGridColumn69.RowLayoutColumnInfo.OriginY = 0;
  1332. ultraGridColumn69.RowLayoutColumnInfo.SpanX = 1;
  1333. ultraGridColumn69.RowLayoutColumnInfo.SpanY = 1;
  1334. ultraGridColumn70.Header.Caption = "内径";
  1335. ultraGridColumn70.Header.VisiblePosition = 6;
  1336. ultraGridColumn70.RowLayoutColumnInfo.OriginX = 11;
  1337. ultraGridColumn70.RowLayoutColumnInfo.OriginY = 0;
  1338. ultraGridColumn70.RowLayoutColumnInfo.PreferredCellSize = new System.Drawing.Size(55, 0);
  1339. ultraGridColumn70.RowLayoutColumnInfo.SpanX = 1;
  1340. ultraGridColumn70.RowLayoutColumnInfo.SpanY = 1;
  1341. ultraGridColumn71.Header.Caption = "外径";
  1342. ultraGridColumn71.Header.VisiblePosition = 7;
  1343. ultraGridColumn71.RowLayoutColumnInfo.OriginX = 12;
  1344. ultraGridColumn71.RowLayoutColumnInfo.OriginY = 0;
  1345. ultraGridColumn71.RowLayoutColumnInfo.PreferredCellSize = new System.Drawing.Size(53, 0);
  1346. ultraGridColumn71.RowLayoutColumnInfo.SpanX = 1;
  1347. ultraGridColumn71.RowLayoutColumnInfo.SpanY = 1;
  1348. ultraGridColumn72.Header.Caption = "长度";
  1349. ultraGridColumn72.Header.VisiblePosition = 8;
  1350. ultraGridColumn72.RowLayoutColumnInfo.OriginX = 17;
  1351. ultraGridColumn72.RowLayoutColumnInfo.OriginY = 0;
  1352. ultraGridColumn72.RowLayoutColumnInfo.PreferredCellSize = new System.Drawing.Size(52, 0);
  1353. ultraGridColumn72.RowLayoutColumnInfo.SpanX = 1;
  1354. ultraGridColumn72.RowLayoutColumnInfo.SpanY = 1;
  1355. ultraGridColumn73.Header.Caption = "厚度 ";
  1356. ultraGridColumn73.Header.VisiblePosition = 9;
  1357. ultraGridColumn73.RowLayoutColumnInfo.OriginX = 15;
  1358. ultraGridColumn73.RowLayoutColumnInfo.OriginY = 0;
  1359. ultraGridColumn73.RowLayoutColumnInfo.PreferredCellSize = new System.Drawing.Size(48, 0);
  1360. ultraGridColumn73.RowLayoutColumnInfo.SpanX = 1;
  1361. ultraGridColumn73.RowLayoutColumnInfo.SpanY = 1;
  1362. ultraGridColumn74.Header.Caption = "宽度";
  1363. ultraGridColumn74.Header.VisiblePosition = 10;
  1364. ultraGridColumn74.RowLayoutColumnInfo.OriginX = 16;
  1365. ultraGridColumn74.RowLayoutColumnInfo.OriginY = 0;
  1366. ultraGridColumn74.RowLayoutColumnInfo.PreferredCellSize = new System.Drawing.Size(46, 0);
  1367. ultraGridColumn74.RowLayoutColumnInfo.SpanX = 1;
  1368. ultraGridColumn74.RowLayoutColumnInfo.SpanY = 1;
  1369. ultraGridColumn75.Header.Caption = "计算重量";
  1370. ultraGridColumn75.Header.VisiblePosition = 11;
  1371. ultraGridColumn75.RowLayoutColumnInfo.OriginX = 18;
  1372. ultraGridColumn75.RowLayoutColumnInfo.OriginY = 0;
  1373. ultraGridColumn75.RowLayoutColumnInfo.PreferredCellSize = new System.Drawing.Size(67, 0);
  1374. ultraGridColumn75.RowLayoutColumnInfo.SpanX = 1;
  1375. ultraGridColumn75.RowLayoutColumnInfo.SpanY = 1;
  1376. ultraGridColumn76.Header.Caption = "实重量";
  1377. ultraGridColumn76.Header.VisiblePosition = 12;
  1378. ultraGridColumn76.RowLayoutColumnInfo.OriginX = 19;
  1379. ultraGridColumn76.RowLayoutColumnInfo.OriginY = 0;
  1380. ultraGridColumn76.RowLayoutColumnInfo.PreferredCellSize = new System.Drawing.Size(69, 0);
  1381. ultraGridColumn76.RowLayoutColumnInfo.SpanX = 1;
  1382. ultraGridColumn76.RowLayoutColumnInfo.SpanY = 1;
  1383. ultraGridColumn77.Header.Caption = "牌号";
  1384. ultraGridColumn77.Header.VisiblePosition = 13;
  1385. ultraGridColumn77.RowLayoutColumnInfo.OriginX = 10;
  1386. ultraGridColumn77.RowLayoutColumnInfo.OriginY = 0;
  1387. ultraGridColumn77.RowLayoutColumnInfo.PreferredCellSize = new System.Drawing.Size(71, 0);
  1388. ultraGridColumn77.RowLayoutColumnInfo.SpanX = 1;
  1389. ultraGridColumn77.RowLayoutColumnInfo.SpanY = 1;
  1390. ultraGridColumn78.Header.Caption = "综合判定";
  1391. ultraGridColumn78.Header.VisiblePosition = 14;
  1392. ultraGridColumn78.RowLayoutColumnInfo.OriginX = 21;
  1393. ultraGridColumn78.RowLayoutColumnInfo.OriginY = 0;
  1394. ultraGridColumn78.RowLayoutColumnInfo.PreferredCellSize = new System.Drawing.Size(64, 0);
  1395. ultraGridColumn78.RowLayoutColumnInfo.SpanX = 1;
  1396. ultraGridColumn78.RowLayoutColumnInfo.SpanY = 1;
  1397. ultraGridColumn79.Header.Caption = "特记事项";
  1398. ultraGridColumn79.Header.VisiblePosition = 15;
  1399. ultraGridColumn79.RowLayoutColumnInfo.OriginX = 23;
  1400. ultraGridColumn79.RowLayoutColumnInfo.OriginY = 0;
  1401. ultraGridColumn79.RowLayoutColumnInfo.SpanX = 1;
  1402. ultraGridColumn79.RowLayoutColumnInfo.SpanY = 1;
  1403. ultraGridColumn80.Header.Caption = "车辆号";
  1404. ultraGridColumn80.Header.VisiblePosition = 16;
  1405. ultraGridColumn80.RowLayoutColumnInfo.OriginX = 26;
  1406. ultraGridColumn80.RowLayoutColumnInfo.OriginY = 0;
  1407. ultraGridColumn80.RowLayoutColumnInfo.PreferredCellSize = new System.Drawing.Size(78, 0);
  1408. ultraGridColumn80.RowLayoutColumnInfo.SpanX = 1;
  1409. ultraGridColumn80.RowLayoutColumnInfo.SpanY = 1;
  1410. ultraGridColumn81.Header.Caption = "质保书编号";
  1411. ultraGridColumn81.Header.VisiblePosition = 17;
  1412. ultraGridColumn81.RowLayoutColumnInfo.OriginX = 22;
  1413. ultraGridColumn81.RowLayoutColumnInfo.OriginY = 0;
  1414. ultraGridColumn81.RowLayoutColumnInfo.PreferredCellSize = new System.Drawing.Size(69, 0);
  1415. ultraGridColumn81.RowLayoutColumnInfo.SpanX = 1;
  1416. ultraGridColumn81.RowLayoutColumnInfo.SpanY = 1;
  1417. ultraGridColumn82.Header.Caption = "垛位";
  1418. ultraGridColumn82.Header.VisiblePosition = 18;
  1419. ultraGridColumn82.RowLayoutColumnInfo.OriginX = 8;
  1420. ultraGridColumn82.RowLayoutColumnInfo.OriginY = 0;
  1421. ultraGridColumn82.RowLayoutColumnInfo.PreferredCellSize = new System.Drawing.Size(90, 0);
  1422. ultraGridColumn82.RowLayoutColumnInfo.SpanX = 1;
  1423. ultraGridColumn82.RowLayoutColumnInfo.SpanY = 1;
  1424. ultraGridColumn83.Header.Caption = "登记人";
  1425. ultraGridColumn83.Header.VisiblePosition = 19;
  1426. ultraGridColumn83.RowLayoutColumnInfo.OriginX = 35;
  1427. ultraGridColumn83.RowLayoutColumnInfo.OriginY = 0;
  1428. ultraGridColumn83.RowLayoutColumnInfo.SpanX = 1;
  1429. ultraGridColumn83.RowLayoutColumnInfo.SpanY = 1;
  1430. ultraGridColumn84.Header.Caption = "登记时间";
  1431. ultraGridColumn84.Header.VisiblePosition = 20;
  1432. ultraGridColumn84.RowLayoutColumnInfo.OriginX = 27;
  1433. ultraGridColumn84.RowLayoutColumnInfo.OriginY = 0;
  1434. ultraGridColumn84.RowLayoutColumnInfo.SpanX = 1;
  1435. ultraGridColumn84.RowLayoutColumnInfo.SpanY = 1;
  1436. ultraGridColumn85.Header.Caption = "计划班次";
  1437. ultraGridColumn85.Header.VisiblePosition = 21;
  1438. ultraGridColumn85.RowLayoutColumnInfo.OriginX = 28;
  1439. ultraGridColumn85.RowLayoutColumnInfo.OriginY = 0;
  1440. ultraGridColumn85.RowLayoutColumnInfo.PreferredCellSize = new System.Drawing.Size(64, 0);
  1441. ultraGridColumn85.RowLayoutColumnInfo.SpanX = 1;
  1442. ultraGridColumn85.RowLayoutColumnInfo.SpanY = 1;
  1443. ultraGridColumn86.Header.Caption = "计划班组";
  1444. ultraGridColumn86.Header.VisiblePosition = 22;
  1445. ultraGridColumn86.RowLayoutColumnInfo.OriginX = 29;
  1446. ultraGridColumn86.RowLayoutColumnInfo.OriginY = 0;
  1447. ultraGridColumn86.RowLayoutColumnInfo.PreferredCellSize = new System.Drawing.Size(70, 0);
  1448. ultraGridColumn86.RowLayoutColumnInfo.SpanX = 1;
  1449. ultraGridColumn86.RowLayoutColumnInfo.SpanY = 1;
  1450. ultraGridColumn87.Header.Caption = "工单号";
  1451. ultraGridColumn87.Header.VisiblePosition = 23;
  1452. ultraGridColumn87.RowLayoutColumnInfo.OriginX = 0;
  1453. ultraGridColumn87.RowLayoutColumnInfo.OriginY = 0;
  1454. ultraGridColumn87.RowLayoutColumnInfo.PreferredCellSize = new System.Drawing.Size(83, 0);
  1455. ultraGridColumn87.RowLayoutColumnInfo.SpanX = 1;
  1456. ultraGridColumn87.RowLayoutColumnInfo.SpanY = 1;
  1457. ultraGridColumn88.Header.Caption = "下发人";
  1458. ultraGridColumn88.Header.VisiblePosition = 25;
  1459. ultraGridColumn88.RowLayoutColumnInfo.OriginX = 33;
  1460. ultraGridColumn88.RowLayoutColumnInfo.OriginY = 0;
  1461. ultraGridColumn88.RowLayoutColumnInfo.SpanX = 1;
  1462. ultraGridColumn88.RowLayoutColumnInfo.SpanY = 1;
  1463. ultraGridColumn89.Header.Caption = "下发时间";
  1464. ultraGridColumn89.Header.VisiblePosition = 27;
  1465. ultraGridColumn89.RowLayoutColumnInfo.OriginX = 36;
  1466. ultraGridColumn89.RowLayoutColumnInfo.OriginY = 0;
  1467. ultraGridColumn89.RowLayoutColumnInfo.SpanX = 1;
  1468. ultraGridColumn89.RowLayoutColumnInfo.SpanY = 1;
  1469. ultraGridColumn90.Header.VisiblePosition = 29;
  1470. ultraGridColumn90.Hidden = true;
  1471. ultraGridColumn91.Header.Caption = "开平线";
  1472. ultraGridColumn91.Header.VisiblePosition = 30;
  1473. ultraGridColumn91.Hidden = true;
  1474. ultraGridColumn91.RowLayoutColumnInfo.OriginX = 3;
  1475. ultraGridColumn91.RowLayoutColumnInfo.OriginY = 0;
  1476. ultraGridColumn91.RowLayoutColumnInfo.PreferredCellSize = new System.Drawing.Size(71, 0);
  1477. ultraGridColumn91.RowLayoutColumnInfo.SpanX = 1;
  1478. ultraGridColumn91.RowLayoutColumnInfo.SpanY = 1;
  1479. ultraGridColumn92.Header.Caption = "订单类型";
  1480. ultraGridColumn92.Header.VisiblePosition = 24;
  1481. ultraGridColumn92.RowLayoutColumnInfo.OriginX = 20;
  1482. ultraGridColumn92.RowLayoutColumnInfo.OriginY = 0;
  1483. ultraGridColumn92.RowLayoutColumnInfo.PreferredCellSize = new System.Drawing.Size(62, 0);
  1484. ultraGridColumn92.RowLayoutColumnInfo.SpanX = 1;
  1485. ultraGridColumn92.RowLayoutColumnInfo.SpanY = 1;
  1486. ultraGridColumn93.Header.Caption = "订单厚度";
  1487. ultraGridColumn93.Header.VisiblePosition = 26;
  1488. ultraGridColumn93.RowLayoutColumnInfo.OriginX = 13;
  1489. ultraGridColumn93.RowLayoutColumnInfo.OriginY = 0;
  1490. ultraGridColumn93.RowLayoutColumnInfo.PreferredCellSize = new System.Drawing.Size(58, 0);
  1491. ultraGridColumn93.RowLayoutColumnInfo.SpanX = 1;
  1492. ultraGridColumn93.RowLayoutColumnInfo.SpanY = 1;
  1493. ultraGridColumn94.Header.Caption = "订单宽度";
  1494. ultraGridColumn94.Header.VisiblePosition = 28;
  1495. ultraGridColumn94.RowLayoutColumnInfo.OriginX = 14;
  1496. ultraGridColumn94.RowLayoutColumnInfo.OriginY = 0;
  1497. ultraGridColumn94.RowLayoutColumnInfo.PreferredCellSize = new System.Drawing.Size(60, 0);
  1498. ultraGridColumn94.RowLayoutColumnInfo.SpanX = 1;
  1499. ultraGridColumn94.RowLayoutColumnInfo.SpanY = 1;
  1500. ultraGridColumn95.Header.Caption = "生产班次";
  1501. ultraGridColumn95.Header.VisiblePosition = 31;
  1502. ultraGridColumn95.RowLayoutColumnInfo.OriginX = 30;
  1503. ultraGridColumn95.RowLayoutColumnInfo.OriginY = 0;
  1504. ultraGridColumn95.RowLayoutColumnInfo.SpanX = 1;
  1505. ultraGridColumn95.RowLayoutColumnInfo.SpanY = 1;
  1506. ultraGridColumn96.Header.Caption = "生产班组";
  1507. ultraGridColumn96.Header.VisiblePosition = 33;
  1508. ultraGridColumn96.RowLayoutColumnInfo.OriginX = 31;
  1509. ultraGridColumn96.RowLayoutColumnInfo.OriginY = 0;
  1510. ultraGridColumn96.RowLayoutColumnInfo.SpanX = 1;
  1511. ultraGridColumn96.RowLayoutColumnInfo.SpanY = 1;
  1512. ultraGridColumn97.Header.Caption = "生产时间";
  1513. ultraGridColumn97.Header.VisiblePosition = 34;
  1514. ultraGridColumn97.RowLayoutColumnInfo.OriginX = 32;
  1515. ultraGridColumn97.RowLayoutColumnInfo.OriginY = 0;
  1516. ultraGridColumn97.RowLayoutColumnInfo.SpanX = 1;
  1517. ultraGridColumn97.RowLayoutColumnInfo.SpanY = 1;
  1518. ultraGridColumn98.Header.Caption = "生产确认时间";
  1519. ultraGridColumn98.Header.VisiblePosition = 35;
  1520. ultraGridColumn98.RowLayoutColumnInfo.OriginX = 34;
  1521. ultraGridColumn98.RowLayoutColumnInfo.OriginY = 0;
  1522. ultraGridColumn98.RowLayoutColumnInfo.SpanX = 1;
  1523. ultraGridColumn98.RowLayoutColumnInfo.SpanY = 1;
  1524. ultraGridColumn99.Header.Caption = "工艺类型";
  1525. ultraGridColumn99.Header.VisiblePosition = 36;
  1526. ultraGridColumn99.RowLayoutColumnInfo.OriginX = 5;
  1527. ultraGridColumn99.RowLayoutColumnInfo.OriginY = 0;
  1528. ultraGridColumn99.RowLayoutColumnInfo.SpanX = 1;
  1529. ultraGridColumn99.RowLayoutColumnInfo.SpanY = 1;
  1530. ultraGridColumn100.Header.Caption = "炉号";
  1531. ultraGridColumn100.Header.VisiblePosition = 32;
  1532. ultraGridColumn100.RowLayoutColumnInfo.OriginX = 4;
  1533. ultraGridColumn100.RowLayoutColumnInfo.OriginY = 0;
  1534. ultraGridColumn100.RowLayoutColumnInfo.PreferredCellSize = new System.Drawing.Size(99, 0);
  1535. ultraGridColumn100.RowLayoutColumnInfo.SpanX = 1;
  1536. ultraGridColumn100.RowLayoutColumnInfo.SpanY = 1;
  1537. ultraGridColumn101.Header.Caption = "批号";
  1538. ultraGridColumn101.Header.VisiblePosition = 37;
  1539. ultraGridColumn101.RowLayoutColumnInfo.OriginX = 1;
  1540. ultraGridColumn101.RowLayoutColumnInfo.OriginY = 0;
  1541. ultraGridColumn101.RowLayoutColumnInfo.PreferredCellSize = new System.Drawing.Size(96, 0);
  1542. ultraGridColumn101.RowLayoutColumnInfo.SpanX = 1;
  1543. ultraGridColumn101.RowLayoutColumnInfo.SpanY = 1;
  1544. ultraGridColumn102.Header.Caption = "执行标准";
  1545. ultraGridColumn102.Header.VisiblePosition = 38;
  1546. ultraGridColumn102.RowLayoutColumnInfo.OriginX = 9;
  1547. ultraGridColumn102.RowLayoutColumnInfo.OriginY = 0;
  1548. ultraGridColumn102.RowLayoutColumnInfo.PreferredCellSize = new System.Drawing.Size(88, 0);
  1549. ultraGridColumn102.RowLayoutColumnInfo.SpanX = 1;
  1550. ultraGridColumn102.RowLayoutColumnInfo.SpanY = 1;
  1551. ultraGridBand3.Columns.AddRange(new object[] {
  1552. ultraGridColumn64,
  1553. ultraGridColumn65,
  1554. ultraGridColumn66,
  1555. ultraGridColumn67,
  1556. ultraGridColumn68,
  1557. ultraGridColumn69,
  1558. ultraGridColumn70,
  1559. ultraGridColumn71,
  1560. ultraGridColumn72,
  1561. ultraGridColumn73,
  1562. ultraGridColumn74,
  1563. ultraGridColumn75,
  1564. ultraGridColumn76,
  1565. ultraGridColumn77,
  1566. ultraGridColumn78,
  1567. ultraGridColumn79,
  1568. ultraGridColumn80,
  1569. ultraGridColumn81,
  1570. ultraGridColumn82,
  1571. ultraGridColumn83,
  1572. ultraGridColumn84,
  1573. ultraGridColumn85,
  1574. ultraGridColumn86,
  1575. ultraGridColumn87,
  1576. ultraGridColumn88,
  1577. ultraGridColumn89,
  1578. ultraGridColumn90,
  1579. ultraGridColumn91,
  1580. ultraGridColumn92,
  1581. ultraGridColumn93,
  1582. ultraGridColumn94,
  1583. ultraGridColumn95,
  1584. ultraGridColumn96,
  1585. ultraGridColumn97,
  1586. ultraGridColumn98,
  1587. ultraGridColumn99,
  1588. ultraGridColumn100,
  1589. ultraGridColumn101,
  1590. ultraGridColumn102});
  1591. appearance36.BackColor = System.Drawing.Color.LightSteelBlue;
  1592. ultraGridBand3.Header.Appearance = appearance36;
  1593. ultraGridBand3.Override.RowSelectors = Infragistics.Win.DefaultableBoolean.True;
  1594. summarySettings3.DisplayFormat = "{0}KG";
  1595. summarySettings3.GroupBySummaryValueAppearance = appearance37;
  1596. summarySettings4.DisplayFormat = "{0}KG";
  1597. summarySettings4.GroupBySummaryValueAppearance = appearance38;
  1598. ultraGridBand3.Summaries.AddRange(new Infragistics.Win.UltraWinGrid.SummarySettings[] {
  1599. summarySettings3,
  1600. summarySettings4});
  1601. ultraGridBand3.UseRowLayout = true;
  1602. this.gb_PlanState.DisplayLayout.BandsSerializer.Add(ultraGridBand3);
  1603. this.gb_PlanState.DisplayLayout.CaptionVisible = Infragistics.Win.DefaultableBoolean.False;
  1604. appearance39.BackColor = System.Drawing.SystemColors.ActiveBorder;
  1605. appearance39.BackColor2 = System.Drawing.SystemColors.ControlDark;
  1606. appearance39.BackGradientStyle = Infragistics.Win.GradientStyle.Vertical;
  1607. appearance39.BorderColor = System.Drawing.SystemColors.Window;
  1608. this.gb_PlanState.DisplayLayout.GroupByBox.Appearance = appearance39;
  1609. appearance40.ForeColor = System.Drawing.SystemColors.GrayText;
  1610. this.gb_PlanState.DisplayLayout.GroupByBox.BandLabelAppearance = appearance40;
  1611. this.gb_PlanState.DisplayLayout.GroupByBox.Hidden = true;
  1612. this.gb_PlanState.DisplayLayout.GroupByBox.Prompt = "将要分组的列拖至该区域!";
  1613. appearance41.BackColor = System.Drawing.SystemColors.Window;
  1614. appearance41.ForeColor = System.Drawing.SystemColors.ControlText;
  1615. this.gb_PlanState.DisplayLayout.Override.ActiveCellAppearance = appearance41;
  1616. appearance42.BackColor = System.Drawing.SystemColors.Highlight;
  1617. appearance42.ForeColor = System.Drawing.SystemColors.HighlightText;
  1618. this.gb_PlanState.DisplayLayout.Override.ActiveRowAppearance = appearance42;
  1619. appearance43.BorderColor = System.Drawing.Color.Black;
  1620. appearance43.TextVAlign = Infragistics.Win.VAlign.Middle;
  1621. this.gb_PlanState.DisplayLayout.Override.CellAppearance = appearance43;
  1622. this.gb_PlanState.DisplayLayout.Override.CellClickAction = Infragistics.Win.UltraWinGrid.CellClickAction.EditAndSelectText;
  1623. this.gb_PlanState.DisplayLayout.Override.CellPadding = 0;
  1624. appearance44.BackColor = System.Drawing.SystemColors.Control;
  1625. appearance44.BackColor2 = System.Drawing.SystemColors.ControlDark;
  1626. appearance44.BackGradientAlignment = Infragistics.Win.GradientAlignment.Element;
  1627. appearance44.BackGradientStyle = Infragistics.Win.GradientStyle.Horizontal;
  1628. appearance44.BorderColor = System.Drawing.SystemColors.Window;
  1629. appearance44.TextHAlign = Infragistics.Win.HAlign.Left;
  1630. appearance44.TextVAlign = Infragistics.Win.VAlign.Middle;
  1631. this.gb_PlanState.DisplayLayout.Override.GroupByRowAppearance = appearance44;
  1632. this.gb_PlanState.DisplayLayout.Override.GroupBySummaryDisplayStyle = Infragistics.Win.UltraWinGrid.GroupBySummaryDisplayStyle.SummaryCells;
  1633. appearance45.BackColor = System.Drawing.Color.Silver;
  1634. this.gb_PlanState.DisplayLayout.Override.HeaderAppearance = appearance45;
  1635. this.gb_PlanState.DisplayLayout.Override.HeaderClickAction = Infragistics.Win.UltraWinGrid.HeaderClickAction.SortMulti;
  1636. this.gb_PlanState.DisplayLayout.Override.HeaderStyle = Infragistics.Win.HeaderStyle.Standard;
  1637. appearance46.BackColor = System.Drawing.SystemColors.Window;
  1638. appearance46.BorderColor = System.Drawing.Color.Black;
  1639. appearance46.TextVAlign = Infragistics.Win.VAlign.Middle;
  1640. this.gb_PlanState.DisplayLayout.Override.RowAppearance = appearance46;
  1641. appearance47.BackColor = System.Drawing.SystemColors.Window;
  1642. appearance47.BorderColor = System.Drawing.Color.Black;
  1643. appearance47.TextVAlign = Infragistics.Win.VAlign.Middle;
  1644. this.gb_PlanState.DisplayLayout.Override.RowPreviewAppearance = appearance47;
  1645. this.gb_PlanState.DisplayLayout.Override.RowSelectorHeaderStyle = Infragistics.Win.UltraWinGrid.RowSelectorHeaderStyle.SeparateElement;
  1646. this.gb_PlanState.DisplayLayout.Override.RowSelectorNumberStyle = Infragistics.Win.UltraWinGrid.RowSelectorNumberStyle.RowIndex;
  1647. this.gb_PlanState.DisplayLayout.Override.RowSelectors = Infragistics.Win.DefaultableBoolean.True;
  1648. appearance48.TextHAlign = Infragistics.Win.HAlign.Left;
  1649. appearance48.TextVAlign = Infragistics.Win.VAlign.Middle;
  1650. this.gb_PlanState.DisplayLayout.Override.SelectedRowAppearance = appearance48;
  1651. this.gb_PlanState.DisplayLayout.Override.SummaryDisplayArea = Infragistics.Win.UltraWinGrid.SummaryDisplayAreas.BottomFixed;
  1652. appearance49.BackColor = System.Drawing.SystemColors.Window;
  1653. this.gb_PlanState.DisplayLayout.Override.SummaryFooterAppearance = appearance49;
  1654. appearance50.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(255)))), ((int)(((byte)(255)))), ((int)(((byte)(192)))));
  1655. appearance50.ForeColor = System.Drawing.Color.Red;
  1656. this.gb_PlanState.DisplayLayout.Override.SummaryFooterCaptionAppearance = appearance50;
  1657. this.gb_PlanState.DisplayLayout.Override.SummaryFooterCaptionVisible = Infragistics.Win.DefaultableBoolean.False;
  1658. appearance51.BackColor = System.Drawing.Color.MistyRose;
  1659. appearance51.ForeColor = System.Drawing.Color.Blue;
  1660. appearance51.TextHAlign = Infragistics.Win.HAlign.Right;
  1661. appearance51.TextVAlign = Infragistics.Win.VAlign.Middle;
  1662. this.gb_PlanState.DisplayLayout.Override.SummaryValueAppearance = appearance51;
  1663. appearance52.BackColor = System.Drawing.SystemColors.ControlLight;
  1664. this.gb_PlanState.DisplayLayout.Override.TemplateAddRowAppearance = appearance52;
  1665. this.gb_PlanState.DisplayLayout.ScrollBounds = Infragistics.Win.UltraWinGrid.ScrollBounds.ScrollToFill;
  1666. this.gb_PlanState.DisplayLayout.ScrollStyle = Infragistics.Win.UltraWinGrid.ScrollStyle.Immediate;
  1667. this.gb_PlanState.DisplayLayout.ViewStyleBand = Infragistics.Win.UltraWinGrid.ViewStyleBand.OutlookGroupBy;
  1668. this.gb_PlanState.Dock = System.Windows.Forms.DockStyle.Fill;
  1669. this.gb_PlanState.Location = new System.Drawing.Point(0, 0);
  1670. this.gb_PlanState.Name = "gb_PlanState";
  1671. this.gb_PlanState.Size = new System.Drawing.Size(1263, 165);
  1672. this.gb_PlanState.TabIndex = 10;
  1673. this.gb_PlanState.Text = "ultraGrid3";
  1674. //
  1675. // ultraExpandableGroupBox1
  1676. //
  1677. this.ultraExpandableGroupBox1.Controls.Add(this.ultraExpandableGroupBoxPanel1);
  1678. this.ultraExpandableGroupBox1.Dock = System.Windows.Forms.DockStyle.Bottom;
  1679. this.ultraExpandableGroupBox1.ExpandedSize = new System.Drawing.Size(860, 92);
  1680. this.ultraExpandableGroupBox1.Location = new System.Drawing.Point(0, 311);
  1681. this.ultraExpandableGroupBox1.Name = "ultraExpandableGroupBox1";
  1682. this.ultraExpandableGroupBox1.Size = new System.Drawing.Size(1269, 80);
  1683. this.ultraExpandableGroupBox1.SupportThemes = false;
  1684. this.ultraExpandableGroupBox1.TabIndex = 1;
  1685. this.ultraExpandableGroupBox1.Text = "工单号编辑";
  1686. //
  1687. // ultraExpandableGroupBoxPanel1
  1688. //
  1689. this.ultraExpandableGroupBoxPanel1.Controls.Add(this.ultraLabel9);
  1690. this.ultraExpandableGroupBoxPanel1.Controls.Add(this.txt_Width);
  1691. this.ultraExpandableGroupBoxPanel1.Controls.Add(this.dte_Time);
  1692. this.ultraExpandableGroupBoxPanel1.Controls.Add(this.txt_Length);
  1693. this.ultraExpandableGroupBoxPanel1.Controls.Add(this.ultraLabel4);
  1694. this.ultraExpandableGroupBoxPanel1.Controls.Add(this.ultraLabel2);
  1695. this.ultraExpandableGroupBoxPanel1.Controls.Add(this.txt_Scid_End_Y);
  1696. this.ultraExpandableGroupBoxPanel1.Controls.Add(this.cmb_ClassTeam);
  1697. this.ultraExpandableGroupBoxPanel1.Controls.Add(this.ultraLabel10);
  1698. this.ultraExpandableGroupBoxPanel1.Controls.Add(this.cmb_ClassOrder);
  1699. this.ultraExpandableGroupBoxPanel1.Controls.Add(this.ultraLabel8);
  1700. this.ultraExpandableGroupBoxPanel1.Controls.Add(this.ultraLabel7);
  1701. this.ultraExpandableGroupBoxPanel1.Controls.Add(this.cmb_EditType_Y);
  1702. this.ultraExpandableGroupBoxPanel1.Controls.Add(this.txt_Scid_Begin_Y);
  1703. this.ultraExpandableGroupBoxPanel1.Controls.Add(this.txt_Scid_Top_Y);
  1704. this.ultraExpandableGroupBoxPanel1.Controls.Add(this.ultraLabel1);
  1705. this.ultraExpandableGroupBoxPanel1.Dock = System.Windows.Forms.DockStyle.Fill;
  1706. this.ultraExpandableGroupBoxPanel1.Location = new System.Drawing.Point(3, 19);
  1707. this.ultraExpandableGroupBoxPanel1.Name = "ultraExpandableGroupBoxPanel1";
  1708. this.ultraExpandableGroupBoxPanel1.Size = new System.Drawing.Size(1263, 58);
  1709. this.ultraExpandableGroupBoxPanel1.TabIndex = 0;
  1710. //
  1711. // ultraLabel9
  1712. //
  1713. appearance53.TextHAlign = Infragistics.Win.HAlign.Center;
  1714. appearance53.TextVAlign = Infragistics.Win.VAlign.Middle;
  1715. this.ultraLabel9.Appearance = appearance53;
  1716. this.ultraLabel9.Location = new System.Drawing.Point(637, 10);
  1717. this.ultraLabel9.Name = "ultraLabel9";
  1718. this.ultraLabel9.Size = new System.Drawing.Size(29, 16);
  1719. this.ultraLabel9.TabIndex = 624;
  1720. this.ultraLabel9.Text = "宽度";
  1721. //
  1722. // txt_Width
  1723. //
  1724. this.txt_Width.FlatMode = true;
  1725. this.txt_Width.Location = new System.Drawing.Point(668, 8);
  1726. this.txt_Width.MaskInput = "nnnnnnnn.nn";
  1727. this.txt_Width.Name = "txt_Width";
  1728. this.txt_Width.NumericType = Infragistics.Win.UltraWinEditors.NumericType.Double;
  1729. this.txt_Width.PromptChar = ' ';
  1730. this.txt_Width.Size = new System.Drawing.Size(116, 19);
  1731. this.txt_Width.TabIndex = 623;
  1732. //
  1733. // dte_Time
  1734. //
  1735. this.dte_Time.Location = new System.Drawing.Point(514, 6);
  1736. this.dte_Time.Name = "dte_Time";
  1737. this.dte_Time.Size = new System.Drawing.Size(116, 21);
  1738. this.dte_Time.TabIndex = 622;
  1739. //
  1740. // txt_Length
  1741. //
  1742. this.txt_Length.FlatMode = true;
  1743. this.txt_Length.Location = new System.Drawing.Point(514, 32);
  1744. this.txt_Length.MaskInput = "nnnnnnnn";
  1745. this.txt_Length.Name = "txt_Length";
  1746. this.txt_Length.PromptChar = ' ';
  1747. this.txt_Length.Size = new System.Drawing.Size(116, 19);
  1748. this.txt_Length.TabIndex = 621;
  1749. //
  1750. // ultraLabel4
  1751. //
  1752. appearance54.TextHAlign = Infragistics.Win.HAlign.Center;
  1753. appearance54.TextVAlign = Infragistics.Win.VAlign.Middle;
  1754. this.ultraLabel4.Appearance = appearance54;
  1755. this.ultraLabel4.Location = new System.Drawing.Point(459, 34);
  1756. this.ultraLabel4.Name = "ultraLabel4";
  1757. this.ultraLabel4.Size = new System.Drawing.Size(54, 16);
  1758. this.ultraLabel4.TabIndex = 620;
  1759. this.ultraLabel4.Text = "长度(MM)";
  1760. //
  1761. // ultraLabel2
  1762. //
  1763. appearance55.TextHAlign = Infragistics.Win.HAlign.Center;
  1764. appearance55.TextVAlign = Infragistics.Win.VAlign.Middle;
  1765. this.ultraLabel2.Appearance = appearance55;
  1766. this.ultraLabel2.Location = new System.Drawing.Point(434, 10);
  1767. this.ultraLabel2.Name = "ultraLabel2";
  1768. this.ultraLabel2.Size = new System.Drawing.Size(79, 16);
  1769. this.ultraLabel2.TabIndex = 618;
  1770. this.ultraLabel2.Text = "计划生产时间";
  1771. //
  1772. // txt_Scid_End_Y
  1773. //
  1774. appearance56.BackColor = System.Drawing.Color.LightCyan;
  1775. this.txt_Scid_End_Y.Appearance = appearance56;
  1776. this.txt_Scid_End_Y.AutoSize = true;
  1777. editorButton1.Key = "XH";
  1778. this.txt_Scid_End_Y.ButtonsRight.Add(editorButton1);
  1779. this.txt_Scid_End_Y.Location = new System.Drawing.Point(186, 8);
  1780. this.txt_Scid_End_Y.Name = "txt_Scid_End_Y";
  1781. this.txt_Scid_End_Y.Size = new System.Drawing.Size(76, 21);
  1782. this.txt_Scid_End_Y.TabIndex = 617;
  1783. this.txt_Scid_End_Y.Click += new System.EventHandler(this.txt_Scid_End_Y_Click);
  1784. //
  1785. // cmb_ClassTeam
  1786. //
  1787. appearance57.BackColor = System.Drawing.Color.LightCyan;
  1788. this.cmb_ClassTeam.Appearance = appearance57;
  1789. this.cmb_ClassTeam.CharacterCasing = System.Windows.Forms.CharacterCasing.Normal;
  1790. this.cmb_ClassTeam.DisplayMember = "";
  1791. this.cmb_ClassTeam.DropDownStyle = Infragistics.Win.UltraWinGrid.UltraComboStyle.DropDownList;
  1792. this.cmb_ClassTeam.FlatMode = true;
  1793. this.cmb_ClassTeam.Location = new System.Drawing.Point(324, 32);
  1794. this.cmb_ClassTeam.Name = "cmb_ClassTeam";
  1795. this.cmb_ClassTeam.Size = new System.Drawing.Size(104, 19);
  1796. this.cmb_ClassTeam.TabIndex = 614;
  1797. this.cmb_ClassTeam.Tag = "";
  1798. this.cmb_ClassTeam.ValueMember = "";
  1799. //
  1800. // ultraLabel10
  1801. //
  1802. appearance58.TextHAlign = Infragistics.Win.HAlign.Center;
  1803. appearance58.TextVAlign = Infragistics.Win.VAlign.Middle;
  1804. this.ultraLabel10.Appearance = appearance58;
  1805. this.ultraLabel10.Location = new System.Drawing.Point(268, 34);
  1806. this.ultraLabel10.Name = "ultraLabel10";
  1807. this.ultraLabel10.Size = new System.Drawing.Size(54, 16);
  1808. this.ultraLabel10.TabIndex = 616;
  1809. this.ultraLabel10.Text = "计划班组";
  1810. //
  1811. // cmb_ClassOrder
  1812. //
  1813. appearance59.BackColor = System.Drawing.Color.LightCyan;
  1814. this.cmb_ClassOrder.Appearance = appearance59;
  1815. this.cmb_ClassOrder.CharacterCasing = System.Windows.Forms.CharacterCasing.Normal;
  1816. this.cmb_ClassOrder.DisplayMember = "";
  1817. this.cmb_ClassOrder.DropDownStyle = Infragistics.Win.UltraWinGrid.UltraComboStyle.DropDownList;
  1818. this.cmb_ClassOrder.FlatMode = true;
  1819. this.cmb_ClassOrder.Location = new System.Drawing.Point(324, 10);
  1820. this.cmb_ClassOrder.Name = "cmb_ClassOrder";
  1821. this.cmb_ClassOrder.Size = new System.Drawing.Size(104, 19);
  1822. this.cmb_ClassOrder.TabIndex = 613;
  1823. this.cmb_ClassOrder.Tag = "";
  1824. this.cmb_ClassOrder.ValueMember = "";
  1825. //
  1826. // ultraLabel8
  1827. //
  1828. appearance60.TextHAlign = Infragistics.Win.HAlign.Center;
  1829. appearance60.TextVAlign = Infragistics.Win.VAlign.Middle;
  1830. this.ultraLabel8.Appearance = appearance60;
  1831. this.ultraLabel8.Location = new System.Drawing.Point(268, 10);
  1832. this.ultraLabel8.Name = "ultraLabel8";
  1833. this.ultraLabel8.Size = new System.Drawing.Size(54, 16);
  1834. this.ultraLabel8.TabIndex = 615;
  1835. this.ultraLabel8.Text = "计划班次";
  1836. //
  1837. // ultraLabel7
  1838. //
  1839. appearance61.TextHAlign = Infragistics.Win.HAlign.Center;
  1840. appearance61.TextVAlign = Infragistics.Win.VAlign.Middle;
  1841. this.ultraLabel7.Appearance = appearance61;
  1842. this.ultraLabel7.Location = new System.Drawing.Point(8, 34);
  1843. this.ultraLabel7.Name = "ultraLabel7";
  1844. this.ultraLabel7.Size = new System.Drawing.Size(56, 16);
  1845. this.ultraLabel7.TabIndex = 612;
  1846. this.ultraLabel7.Text = "制单类型";
  1847. //
  1848. // cmb_EditType_Y
  1849. //
  1850. appearance62.BackColor = System.Drawing.Color.LightCyan;
  1851. this.cmb_EditType_Y.Appearance = appearance62;
  1852. this.cmb_EditType_Y.AutoSize = true;
  1853. this.cmb_EditType_Y.DropDownStyle = Infragistics.Win.DropDownStyle.DropDownList;
  1854. valueListItem1.DataValue = "1";
  1855. valueListItem1.DisplayText = "顺序工单号";
  1856. valueListItem2.DataValue = "2";
  1857. valueListItem2.DisplayText = "指定工单号";
  1858. this.cmb_EditType_Y.Items.Add(valueListItem1);
  1859. this.cmb_EditType_Y.Items.Add(valueListItem2);
  1860. this.cmb_EditType_Y.Location = new System.Drawing.Point(66, 32);
  1861. this.cmb_EditType_Y.Name = "cmb_EditType_Y";
  1862. this.cmb_EditType_Y.Size = new System.Drawing.Size(196, 21);
  1863. this.cmb_EditType_Y.TabIndex = 611;
  1864. this.cmb_EditType_Y.ValueChanged += new System.EventHandler(this.cmb_EditType_Y_ValueChanged);
  1865. //
  1866. // txt_Scid_Begin_Y
  1867. //
  1868. appearance63.BackColor = System.Drawing.Color.LightCyan;
  1869. this.txt_Scid_Begin_Y.Appearance = appearance63;
  1870. this.txt_Scid_Begin_Y.AutoSize = true;
  1871. this.txt_Scid_Begin_Y.Location = new System.Drawing.Point(96, 8);
  1872. this.txt_Scid_Begin_Y.Name = "txt_Scid_Begin_Y";
  1873. this.txt_Scid_Begin_Y.Size = new System.Drawing.Size(90, 21);
  1874. this.txt_Scid_Begin_Y.TabIndex = 607;
  1875. //
  1876. // txt_Scid_Top_Y
  1877. //
  1878. appearance64.BackColor = System.Drawing.Color.LightCyan;
  1879. this.txt_Scid_Top_Y.Appearance = appearance64;
  1880. this.txt_Scid_Top_Y.AutoSize = true;
  1881. this.txt_Scid_Top_Y.Location = new System.Drawing.Point(66, 8);
  1882. this.txt_Scid_Top_Y.Name = "txt_Scid_Top_Y";
  1883. this.txt_Scid_Top_Y.Size = new System.Drawing.Size(30, 21);
  1884. this.txt_Scid_Top_Y.TabIndex = 606;
  1885. //
  1886. // ultraLabel1
  1887. //
  1888. appearance65.TextHAlign = Infragistics.Win.HAlign.Center;
  1889. appearance65.TextVAlign = Infragistics.Win.VAlign.Middle;
  1890. this.ultraLabel1.Appearance = appearance65;
  1891. this.ultraLabel1.Location = new System.Drawing.Point(8, 10);
  1892. this.ultraLabel1.Name = "ultraLabel1";
  1893. this.ultraLabel1.Size = new System.Drawing.Size(56, 16);
  1894. this.ultraLabel1.TabIndex = 605;
  1895. this.ultraLabel1.Text = "工单号";
  1896. //
  1897. // panel1
  1898. //
  1899. this.panel1.Controls.Add(this._panel1_Toolbars_Dock_Area_Left);
  1900. this.panel1.Controls.Add(this._panel1_Toolbars_Dock_Area_Right);
  1901. this.panel1.Controls.Add(this._panel1_Toolbars_Dock_Area_Top);
  1902. this.panel1.Controls.Add(this._panel1_Toolbars_Dock_Area_Bottom);
  1903. this.panel1.Dock = System.Windows.Forms.DockStyle.Top;
  1904. this.panel1.Location = new System.Drawing.Point(0, 0);
  1905. this.panel1.Name = "panel1";
  1906. this.panel1.Size = new System.Drawing.Size(1273, 26);
  1907. this.panel1.TabIndex = 0;
  1908. //
  1909. // _panel1_Toolbars_Dock_Area_Left
  1910. //
  1911. this._panel1_Toolbars_Dock_Area_Left.AccessibleRole = System.Windows.Forms.AccessibleRole.Grouping;
  1912. this._panel1_Toolbars_Dock_Area_Left.BackColor = System.Drawing.SystemColors.Control;
  1913. this._panel1_Toolbars_Dock_Area_Left.DockedPosition = Infragistics.Win.UltraWinToolbars.DockedPosition.Left;
  1914. this._panel1_Toolbars_Dock_Area_Left.ForeColor = System.Drawing.SystemColors.ControlText;
  1915. this._panel1_Toolbars_Dock_Area_Left.Location = new System.Drawing.Point(0, 24);
  1916. this._panel1_Toolbars_Dock_Area_Left.Name = "_panel1_Toolbars_Dock_Area_Left";
  1917. this._panel1_Toolbars_Dock_Area_Left.Size = new System.Drawing.Size(0, 2);
  1918. this._panel1_Toolbars_Dock_Area_Left.ToolbarsManager = this.ultraToolbarsManager1;
  1919. //
  1920. // ultraToolbarsManager1
  1921. //
  1922. this.ultraToolbarsManager1.DesignerFlags = 1;
  1923. this.ultraToolbarsManager1.DockWithinContainer = this.panel1;
  1924. this.ultraToolbarsManager1.ShowFullMenusDelay = 500;
  1925. this.ultraToolbarsManager1.Style = Infragistics.Win.UltraWinToolbars.ToolbarStyle.Office2000;
  1926. ultraToolbar1.DockedColumn = 0;
  1927. ultraToolbar1.DockedRow = 0;
  1928. ultraToolbar1.Text = "工具栏";
  1929. buttonTool1.InstanceProps.IsFirstInGroup = true;
  1930. buttonTool4.InstanceProps.IsFirstInGroup = true;
  1931. buttonTool6.InstanceProps.IsFirstInGroup = true;
  1932. buttonTool8.InstanceProps.IsFirstInGroup = true;
  1933. ultraToolbar1.Tools.AddRange(new Infragistics.Win.UltraWinToolbars.ToolBase[] {
  1934. buttonTool1,
  1935. buttonTool2,
  1936. buttonTool3,
  1937. buttonTool4,
  1938. buttonTool5,
  1939. buttonTool6,
  1940. buttonTool7,
  1941. buttonTool8,
  1942. buttonTool9,
  1943. buttonTool10});
  1944. this.ultraToolbarsManager1.Toolbars.AddRange(new Infragistics.Win.UltraWinToolbars.UltraToolbar[] {
  1945. ultraToolbar1});
  1946. this.ultraToolbarsManager1.ToolbarSettings.AllowCustomize = Infragistics.Win.DefaultableBoolean.False;
  1947. buttonTool11.SharedProps.Caption = "关闭";
  1948. buttonTool11.SharedProps.DisplayStyle = Infragistics.Win.UltraWinToolbars.ToolDisplayStyle.ImageAndText;
  1949. buttonTool12.SharedProps.Caption = "库存查询";
  1950. buttonTool12.SharedProps.DisplayStyle = Infragistics.Win.UltraWinToolbars.ToolDisplayStyle.ImageAndText;
  1951. buttonTool13.SharedProps.Caption = "刷新工艺";
  1952. buttonTool13.SharedProps.DisplayStyle = Infragistics.Win.UltraWinToolbars.ToolDisplayStyle.ImageAndText;
  1953. buttonTool14.SharedProps.Caption = "计划查询";
  1954. buttonTool14.SharedProps.DisplayStyle = Infragistics.Win.UltraWinToolbars.ToolDisplayStyle.ImageAndText;
  1955. buttonTool15.SharedProps.Caption = "确认";
  1956. buttonTool15.SharedProps.DisplayStyle = Infragistics.Win.UltraWinToolbars.ToolDisplayStyle.ImageAndText;
  1957. buttonTool16.SharedProps.Caption = "取消";
  1958. buttonTool16.SharedProps.DisplayStyle = Infragistics.Win.UltraWinToolbars.ToolDisplayStyle.ImageAndText;
  1959. buttonTool17.SharedProps.Caption = "计划下发";
  1960. buttonTool17.SharedProps.DisplayStyle = Infragistics.Win.UltraWinToolbars.ToolDisplayStyle.ImageAndText;
  1961. buttonTool18.SharedProps.Caption = "计划取消";
  1962. buttonTool18.SharedProps.DisplayStyle = Infragistics.Win.UltraWinToolbars.ToolDisplayStyle.ImageAndText;
  1963. buttonTool19.SharedProps.Caption = "导出";
  1964. buttonTool19.SharedProps.DisplayStyle = Infragistics.Win.UltraWinToolbars.ToolDisplayStyle.ImageAndText;
  1965. buttonTool20.SharedProps.Caption = "打印";
  1966. buttonTool20.SharedProps.DisplayStyle = Infragistics.Win.UltraWinToolbars.ToolDisplayStyle.ImageAndText;
  1967. this.ultraToolbarsManager1.Tools.AddRange(new Infragistics.Win.UltraWinToolbars.ToolBase[] {
  1968. buttonTool11,
  1969. buttonTool12,
  1970. buttonTool13,
  1971. buttonTool14,
  1972. buttonTool15,
  1973. buttonTool16,
  1974. buttonTool17,
  1975. buttonTool18,
  1976. buttonTool19,
  1977. buttonTool20});
  1978. this.ultraToolbarsManager1.ToolClick += new Infragistics.Win.UltraWinToolbars.ToolClickEventHandler(this.ultraToolbarsManager1_ToolClick);
  1979. //
  1980. // _panel1_Toolbars_Dock_Area_Right
  1981. //
  1982. this._panel1_Toolbars_Dock_Area_Right.AccessibleRole = System.Windows.Forms.AccessibleRole.Grouping;
  1983. this._panel1_Toolbars_Dock_Area_Right.BackColor = System.Drawing.SystemColors.Control;
  1984. this._panel1_Toolbars_Dock_Area_Right.DockedPosition = Infragistics.Win.UltraWinToolbars.DockedPosition.Right;
  1985. this._panel1_Toolbars_Dock_Area_Right.ForeColor = System.Drawing.SystemColors.ControlText;
  1986. this._panel1_Toolbars_Dock_Area_Right.Location = new System.Drawing.Point(1273, 24);
  1987. this._panel1_Toolbars_Dock_Area_Right.Name = "_panel1_Toolbars_Dock_Area_Right";
  1988. this._panel1_Toolbars_Dock_Area_Right.Size = new System.Drawing.Size(0, 2);
  1989. this._panel1_Toolbars_Dock_Area_Right.ToolbarsManager = this.ultraToolbarsManager1;
  1990. //
  1991. // _panel1_Toolbars_Dock_Area_Top
  1992. //
  1993. this._panel1_Toolbars_Dock_Area_Top.AccessibleRole = System.Windows.Forms.AccessibleRole.Grouping;
  1994. this._panel1_Toolbars_Dock_Area_Top.BackColor = System.Drawing.SystemColors.Control;
  1995. this._panel1_Toolbars_Dock_Area_Top.DockedPosition = Infragistics.Win.UltraWinToolbars.DockedPosition.Top;
  1996. this._panel1_Toolbars_Dock_Area_Top.ForeColor = System.Drawing.SystemColors.ControlText;
  1997. this._panel1_Toolbars_Dock_Area_Top.Location = new System.Drawing.Point(0, 0);
  1998. this._panel1_Toolbars_Dock_Area_Top.Name = "_panel1_Toolbars_Dock_Area_Top";
  1999. this._panel1_Toolbars_Dock_Area_Top.Size = new System.Drawing.Size(1273, 24);
  2000. this._panel1_Toolbars_Dock_Area_Top.ToolbarsManager = this.ultraToolbarsManager1;
  2001. //
  2002. // _panel1_Toolbars_Dock_Area_Bottom
  2003. //
  2004. this._panel1_Toolbars_Dock_Area_Bottom.AccessibleRole = System.Windows.Forms.AccessibleRole.Grouping;
  2005. this._panel1_Toolbars_Dock_Area_Bottom.BackColor = System.Drawing.SystemColors.Control;
  2006. this._panel1_Toolbars_Dock_Area_Bottom.DockedPosition = Infragistics.Win.UltraWinToolbars.DockedPosition.Bottom;
  2007. this._panel1_Toolbars_Dock_Area_Bottom.ForeColor = System.Drawing.SystemColors.ControlText;
  2008. this._panel1_Toolbars_Dock_Area_Bottom.Location = new System.Drawing.Point(0, 26);
  2009. this._panel1_Toolbars_Dock_Area_Bottom.Name = "_panel1_Toolbars_Dock_Area_Bottom";
  2010. this._panel1_Toolbars_Dock_Area_Bottom.Size = new System.Drawing.Size(1273, 0);
  2011. this._panel1_Toolbars_Dock_Area_Bottom.ToolbarsManager = this.ultraToolbarsManager1;
  2012. //
  2013. // ultraGroupBox1
  2014. //
  2015. this.ultraGroupBox1.Controls.Add(this.chk_CollectTime);
  2016. this.ultraGroupBox1.Controls.Add(this.ultSJ);
  2017. this.ultraGroupBox1.Controls.Add(this.cmb_IS);
  2018. this.ultraGroupBox1.Controls.Add(this.chk_ProcLine);
  2019. this.ultraGroupBox1.Controls.Add(this.ultraLabel5);
  2020. this.ultraGroupBox1.Controls.Add(this.dte_EndTime);
  2021. this.ultraGroupBox1.Controls.Add(this.dte_BeginTime);
  2022. this.ultraGroupBox1.Controls.Add(this.txt_BNumber);
  2023. this.ultraGroupBox1.Controls.Add(this.chk_BNumber);
  2024. this.ultraGroupBox1.Controls.Add(this.chk_SelectAll);
  2025. this.ultraGroupBox1.Controls.Add(this.chk_AllowFilter);
  2026. this.ultraGroupBox1.Controls.Add(this.cmb_Buress);
  2027. this.ultraGroupBox1.Controls.Add(this.Chk_Buttress);
  2028. this.ultraGroupBox1.Controls.Add(this.cmb_Sleen);
  2029. this.ultraGroupBox1.Controls.Add(this.chk_PaiHao);
  2030. this.ultraGroupBox1.Controls.Add(this.txt_GangP);
  2031. this.ultraGroupBox1.Controls.Add(this.chk_BanHao);
  2032. this.ultraGroupBox1.Controls.Add(this.txt_RollHao);
  2033. this.ultraGroupBox1.Controls.Add(this.chk_RollHao);
  2034. this.ultraGroupBox1.Controls.Add(this.txt_PlanID);
  2035. this.ultraGroupBox1.Controls.Add(this.chk_PactID);
  2036. this.ultraGroupBox1.Controls.Add(this.txt_OrderNO);
  2037. this.ultraGroupBox1.Controls.Add(this.chk_OrderNO);
  2038. this.ultraGroupBox1.Controls.Add(this.Lab_To);
  2039. this.ultraGroupBox1.Dock = System.Windows.Forms.DockStyle.Top;
  2040. this.ultraGroupBox1.Location = new System.Drawing.Point(0, 26);
  2041. this.ultraGroupBox1.Name = "ultraGroupBox1";
  2042. this.ultraGroupBox1.Size = new System.Drawing.Size(1273, 58);
  2043. this.ultraGroupBox1.SupportThemes = false;
  2044. this.ultraGroupBox1.TabIndex = 1;
  2045. //
  2046. // chk_CollectTime
  2047. //
  2048. this.chk_CollectTime.Location = new System.Drawing.Point(6, 6);
  2049. this.chk_CollectTime.Name = "chk_CollectTime";
  2050. this.chk_CollectTime.Size = new System.Drawing.Size(49, 20);
  2051. this.chk_CollectTime.TabIndex = 240;
  2052. this.chk_CollectTime.Text = "时间";
  2053. this.chk_CollectTime.CheckedChanged += new System.EventHandler(this.chk_CollectTime_CheckedChanged);
  2054. //
  2055. // ultSJ
  2056. //
  2057. this.ultSJ.AutoSize = true;
  2058. valueListItem3.DataValue = "0";
  2059. valueListItem3.DisplayText = "按作业计划时间";
  2060. valueListItem4.DataValue = "1";
  2061. valueListItem4.DisplayText = "按生产时间";
  2062. this.ultSJ.Items.Add(valueListItem3);
  2063. this.ultSJ.Items.Add(valueListItem4);
  2064. this.ultSJ.Location = new System.Drawing.Point(61, 6);
  2065. this.ultSJ.Name = "ultSJ";
  2066. this.ultSJ.Size = new System.Drawing.Size(91, 21);
  2067. this.ultSJ.TabIndex = 239;
  2068. //
  2069. // cmb_IS
  2070. //
  2071. appearance66.BackColor = System.Drawing.Color.LightCyan;
  2072. this.cmb_IS.Appearance = appearance66;
  2073. this.cmb_IS.AutoSize = true;
  2074. this.cmb_IS.DropDownStyle = Infragistics.Win.DropDownStyle.DropDownList;
  2075. this.cmb_IS.Enabled = false;
  2076. this.cmb_IS.FlatMode = true;
  2077. valueListItem5.DataValue = "0";
  2078. valueListItem5.DisplayText = "否";
  2079. valueListItem6.DataValue = "1";
  2080. valueListItem6.DisplayText = "是";
  2081. this.cmb_IS.Items.Add(valueListItem5);
  2082. this.cmb_IS.Items.Add(valueListItem6);
  2083. this.cmb_IS.Location = new System.Drawing.Point(856, 32);
  2084. this.cmb_IS.Name = "cmb_IS";
  2085. this.cmb_IS.Size = new System.Drawing.Size(80, 19);
  2086. this.cmb_IS.TabIndex = 238;
  2087. //
  2088. // chk_ProcLine
  2089. //
  2090. this.chk_ProcLine.Location = new System.Drawing.Point(784, 36);
  2091. this.chk_ProcLine.Name = "chk_ProcLine";
  2092. this.chk_ProcLine.Size = new System.Drawing.Size(83, 16);
  2093. this.chk_ProcLine.TabIndex = 237;
  2094. this.chk_ProcLine.TabStop = false;
  2095. this.chk_ProcLine.Text = "是否生产";
  2096. this.chk_ProcLine.CheckedChanged += new System.EventHandler(this.chk_ProcLine_CheckedChanged);
  2097. //
  2098. // ultraLabel5
  2099. //
  2100. appearance67.ForeColor = System.Drawing.Color.Red;
  2101. this.ultraLabel5.Appearance = appearance67;
  2102. this.ultraLabel5.BackColor = System.Drawing.SystemColors.Control;
  2103. this.ultraLabel5.Font = new System.Drawing.Font("宋体", 10.5F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  2104. this.ultraLabel5.Location = new System.Drawing.Point(944, 10);
  2105. this.ultraLabel5.Name = "ultraLabel5";
  2106. this.ultraLabel5.Size = new System.Drawing.Size(78, 16);
  2107. this.ultraLabel5.TabIndex = 236;
  2108. this.ultraLabel5.Text = "已生产确认";
  2109. //
  2110. // dte_EndTime
  2111. //
  2112. this.dte_EndTime.Enabled = false;
  2113. this.dte_EndTime.FlatMode = true;
  2114. this.dte_EndTime.Location = new System.Drawing.Point(156, 30);
  2115. this.dte_EndTime.Name = "dte_EndTime";
  2116. this.dte_EndTime.Size = new System.Drawing.Size(116, 19);
  2117. this.dte_EndTime.TabIndex = 235;
  2118. //
  2119. // dte_BeginTime
  2120. //
  2121. this.dte_BeginTime.Enabled = false;
  2122. this.dte_BeginTime.FlatMode = true;
  2123. this.dte_BeginTime.Location = new System.Drawing.Point(156, 7);
  2124. this.dte_BeginTime.Name = "dte_BeginTime";
  2125. this.dte_BeginTime.Size = new System.Drawing.Size(116, 19);
  2126. this.dte_BeginTime.TabIndex = 234;
  2127. //
  2128. // txt_BNumber
  2129. //
  2130. this.txt_BNumber.AutoSize = true;
  2131. this.txt_BNumber.Enabled = false;
  2132. this.txt_BNumber.FlatMode = true;
  2133. this.txt_BNumber.Location = new System.Drawing.Point(846, 7);
  2134. this.txt_BNumber.Name = "txt_BNumber";
  2135. this.txt_BNumber.Size = new System.Drawing.Size(90, 19);
  2136. this.txt_BNumber.TabIndex = 233;
  2137. this.txt_BNumber.TabStop = false;
  2138. this.txt_BNumber.Tag = "";
  2139. //
  2140. // chk_BNumber
  2141. //
  2142. this.chk_BNumber.Location = new System.Drawing.Point(784, 10);
  2143. this.chk_BNumber.Name = "chk_BNumber";
  2144. this.chk_BNumber.Size = new System.Drawing.Size(46, 16);
  2145. this.chk_BNumber.TabIndex = 232;
  2146. this.chk_BNumber.TabStop = false;
  2147. this.chk_BNumber.Text = "批号";
  2148. this.chk_BNumber.CheckedChanged += new System.EventHandler(this.chk_BNumber_CheckedChanged);
  2149. //
  2150. // chk_SelectAll
  2151. //
  2152. this.chk_SelectAll.FlatMode = true;
  2153. this.chk_SelectAll.Location = new System.Drawing.Point(940, 36);
  2154. this.chk_SelectAll.Name = "chk_SelectAll";
  2155. this.chk_SelectAll.Size = new System.Drawing.Size(50, 16);
  2156. this.chk_SelectAll.TabIndex = 231;
  2157. this.chk_SelectAll.Text = "全选";
  2158. this.chk_SelectAll.CheckedChanged += new System.EventHandler(this.chk_SelectAll_CheckedChanged);
  2159. //
  2160. // chk_AllowFilter
  2161. //
  2162. this.chk_AllowFilter.Location = new System.Drawing.Point(992, 34);
  2163. this.chk_AllowFilter.Name = "chk_AllowFilter";
  2164. this.chk_AllowFilter.Size = new System.Drawing.Size(48, 20);
  2165. this.chk_AllowFilter.TabIndex = 230;
  2166. this.chk_AllowFilter.TabStop = false;
  2167. this.chk_AllowFilter.Text = "过滤";
  2168. this.chk_AllowFilter.CheckedChanged += new System.EventHandler(this.chk_AllowFilter_CheckedChanged);
  2169. //
  2170. // cmb_Buress
  2171. //
  2172. this.cmb_Buress.CharacterCasing = System.Windows.Forms.CharacterCasing.Normal;
  2173. this.cmb_Buress.DisplayMember = "";
  2174. this.cmb_Buress.DropDownStyle = Infragistics.Win.UltraWinGrid.UltraComboStyle.DropDownList;
  2175. this.cmb_Buress.Enabled = false;
  2176. this.cmb_Buress.FlatMode = true;
  2177. this.cmb_Buress.Location = new System.Drawing.Point(690, 33);
  2178. this.cmb_Buress.Name = "cmb_Buress";
  2179. this.cmb_Buress.Size = new System.Drawing.Size(88, 19);
  2180. this.cmb_Buress.TabIndex = 229;
  2181. this.cmb_Buress.Tag = "";
  2182. this.cmb_Buress.ValueMember = "";
  2183. //
  2184. // Chk_Buttress
  2185. //
  2186. this.Chk_Buttress.Location = new System.Drawing.Point(642, 35);
  2187. this.Chk_Buttress.Name = "Chk_Buttress";
  2188. this.Chk_Buttress.Size = new System.Drawing.Size(46, 16);
  2189. this.Chk_Buttress.TabIndex = 228;
  2190. this.Chk_Buttress.TabStop = false;
  2191. this.Chk_Buttress.Text = "堆位";
  2192. this.Chk_Buttress.CheckedChanged += new System.EventHandler(this.Chk_Buttress_CheckedChanged);
  2193. //
  2194. // cmb_Sleen
  2195. //
  2196. this.cmb_Sleen.CharacterCasing = System.Windows.Forms.CharacterCasing.Normal;
  2197. appearance68.BackColor = System.Drawing.SystemColors.Window;
  2198. appearance68.BorderColor = System.Drawing.SystemColors.InactiveCaption;
  2199. this.cmb_Sleen.DisplayLayout.Appearance = appearance68;
  2200. this.cmb_Sleen.DisplayLayout.BorderStyle = Infragistics.Win.UIElementBorderStyle.Solid;
  2201. this.cmb_Sleen.DisplayLayout.CaptionVisible = Infragistics.Win.DefaultableBoolean.False;
  2202. appearance69.BackColor = System.Drawing.SystemColors.ActiveBorder;
  2203. appearance69.BackColor2 = System.Drawing.SystemColors.ControlDark;
  2204. appearance69.BackGradientStyle = Infragistics.Win.GradientStyle.Vertical;
  2205. appearance69.BorderColor = System.Drawing.SystemColors.Window;
  2206. this.cmb_Sleen.DisplayLayout.GroupByBox.Appearance = appearance69;
  2207. appearance70.ForeColor = System.Drawing.SystemColors.GrayText;
  2208. this.cmb_Sleen.DisplayLayout.GroupByBox.BandLabelAppearance = appearance70;
  2209. this.cmb_Sleen.DisplayLayout.GroupByBox.BorderStyle = Infragistics.Win.UIElementBorderStyle.Solid;
  2210. appearance71.BackColor = System.Drawing.SystemColors.ControlLightLight;
  2211. appearance71.BackColor2 = System.Drawing.SystemColors.Control;
  2212. appearance71.BackGradientStyle = Infragistics.Win.GradientStyle.Horizontal;
  2213. appearance71.ForeColor = System.Drawing.SystemColors.GrayText;
  2214. this.cmb_Sleen.DisplayLayout.GroupByBox.PromptAppearance = appearance71;
  2215. this.cmb_Sleen.DisplayLayout.MaxColScrollRegions = 1;
  2216. this.cmb_Sleen.DisplayLayout.MaxRowScrollRegions = 1;
  2217. appearance72.BackColor = System.Drawing.SystemColors.Window;
  2218. appearance72.ForeColor = System.Drawing.SystemColors.ControlText;
  2219. this.cmb_Sleen.DisplayLayout.Override.ActiveCellAppearance = appearance72;
  2220. appearance73.BackColor = System.Drawing.SystemColors.Highlight;
  2221. appearance73.ForeColor = System.Drawing.SystemColors.HighlightText;
  2222. this.cmb_Sleen.DisplayLayout.Override.ActiveRowAppearance = appearance73;
  2223. this.cmb_Sleen.DisplayLayout.Override.BorderStyleCell = Infragistics.Win.UIElementBorderStyle.Dotted;
  2224. this.cmb_Sleen.DisplayLayout.Override.BorderStyleRow = Infragistics.Win.UIElementBorderStyle.Dotted;
  2225. appearance74.BackColor = System.Drawing.SystemColors.Window;
  2226. this.cmb_Sleen.DisplayLayout.Override.CardAreaAppearance = appearance74;
  2227. appearance75.BorderColor = System.Drawing.Color.Silver;
  2228. appearance75.TextTrimming = Infragistics.Win.TextTrimming.EllipsisCharacter;
  2229. this.cmb_Sleen.DisplayLayout.Override.CellAppearance = appearance75;
  2230. this.cmb_Sleen.DisplayLayout.Override.CellClickAction = Infragistics.Win.UltraWinGrid.CellClickAction.EditAndSelectText;
  2231. this.cmb_Sleen.DisplayLayout.Override.CellPadding = 0;
  2232. appearance76.BackColor = System.Drawing.SystemColors.Control;
  2233. appearance76.BackColor2 = System.Drawing.SystemColors.ControlDark;
  2234. appearance76.BackGradientAlignment = Infragistics.Win.GradientAlignment.Element;
  2235. appearance76.BackGradientStyle = Infragistics.Win.GradientStyle.Horizontal;
  2236. appearance76.BorderColor = System.Drawing.SystemColors.Window;
  2237. this.cmb_Sleen.DisplayLayout.Override.GroupByRowAppearance = appearance76;
  2238. appearance77.TextHAlign = Infragistics.Win.HAlign.Left;
  2239. this.cmb_Sleen.DisplayLayout.Override.HeaderAppearance = appearance77;
  2240. this.cmb_Sleen.DisplayLayout.Override.HeaderClickAction = Infragistics.Win.UltraWinGrid.HeaderClickAction.SortMulti;
  2241. this.cmb_Sleen.DisplayLayout.Override.HeaderStyle = Infragistics.Win.HeaderStyle.WindowsXPCommand;
  2242. appearance78.BackColor = System.Drawing.SystemColors.Window;
  2243. appearance78.BorderColor = System.Drawing.Color.Silver;
  2244. this.cmb_Sleen.DisplayLayout.Override.RowAppearance = appearance78;
  2245. this.cmb_Sleen.DisplayLayout.Override.RowSelectors = Infragistics.Win.DefaultableBoolean.False;
  2246. appearance79.BackColor = System.Drawing.SystemColors.ControlLight;
  2247. this.cmb_Sleen.DisplayLayout.Override.TemplateAddRowAppearance = appearance79;
  2248. this.cmb_Sleen.DisplayLayout.ScrollBounds = Infragistics.Win.UltraWinGrid.ScrollBounds.ScrollToFill;
  2249. this.cmb_Sleen.DisplayLayout.ScrollStyle = Infragistics.Win.UltraWinGrid.ScrollStyle.Immediate;
  2250. this.cmb_Sleen.DisplayLayout.ViewStyleBand = Infragistics.Win.UltraWinGrid.ViewStyleBand.OutlookGroupBy;
  2251. this.cmb_Sleen.DisplayMember = "";
  2252. this.cmb_Sleen.Enabled = false;
  2253. this.cmb_Sleen.FlatMode = true;
  2254. this.cmb_Sleen.Location = new System.Drawing.Point(690, 7);
  2255. this.cmb_Sleen.Name = "cmb_Sleen";
  2256. this.cmb_Sleen.Size = new System.Drawing.Size(88, 19);
  2257. this.cmb_Sleen.TabIndex = 227;
  2258. this.cmb_Sleen.ValueMember = "";
  2259. //
  2260. // chk_PaiHao
  2261. //
  2262. this.chk_PaiHao.Location = new System.Drawing.Point(642, 10);
  2263. this.chk_PaiHao.Name = "chk_PaiHao";
  2264. this.chk_PaiHao.Size = new System.Drawing.Size(48, 16);
  2265. this.chk_PaiHao.TabIndex = 226;
  2266. this.chk_PaiHao.TabStop = false;
  2267. this.chk_PaiHao.Text = "牌号";
  2268. this.chk_PaiHao.CheckedChanged += new System.EventHandler(this.chk_PaiHao_CheckedChanged);
  2269. //
  2270. // txt_GangP
  2271. //
  2272. this.txt_GangP.AutoSize = true;
  2273. this.txt_GangP.Enabled = false;
  2274. this.txt_GangP.FlatMode = true;
  2275. this.txt_GangP.Location = new System.Drawing.Point(532, 30);
  2276. this.txt_GangP.Name = "txt_GangP";
  2277. this.txt_GangP.Size = new System.Drawing.Size(104, 19);
  2278. this.txt_GangP.TabIndex = 225;
  2279. this.txt_GangP.TabStop = false;
  2280. this.txt_GangP.Tag = "";
  2281. //
  2282. // chk_BanHao
  2283. //
  2284. this.chk_BanHao.Location = new System.Drawing.Point(476, 34);
  2285. this.chk_BanHao.Name = "chk_BanHao";
  2286. this.chk_BanHao.Size = new System.Drawing.Size(60, 16);
  2287. this.chk_BanHao.TabIndex = 224;
  2288. this.chk_BanHao.TabStop = false;
  2289. this.chk_BanHao.Text = "板坯号";
  2290. this.chk_BanHao.CheckedChanged += new System.EventHandler(this.chk_BanHao_CheckedChanged);
  2291. //
  2292. // txt_RollHao
  2293. //
  2294. this.txt_RollHao.AutoSize = true;
  2295. this.txt_RollHao.Enabled = false;
  2296. this.txt_RollHao.FlatMode = true;
  2297. this.txt_RollHao.Location = new System.Drawing.Point(532, 7);
  2298. this.txt_RollHao.Name = "txt_RollHao";
  2299. this.txt_RollHao.Size = new System.Drawing.Size(104, 19);
  2300. this.txt_RollHao.TabIndex = 223;
  2301. this.txt_RollHao.TabStop = false;
  2302. this.txt_RollHao.Tag = "";
  2303. //
  2304. // chk_RollHao
  2305. //
  2306. this.chk_RollHao.Location = new System.Drawing.Point(476, 10);
  2307. this.chk_RollHao.Name = "chk_RollHao";
  2308. this.chk_RollHao.Size = new System.Drawing.Size(60, 16);
  2309. this.chk_RollHao.TabIndex = 222;
  2310. this.chk_RollHao.TabStop = false;
  2311. this.chk_RollHao.Text = "钢卷号";
  2312. this.chk_RollHao.CheckedChanged += new System.EventHandler(this.chk_RollHao_CheckedChanged);
  2313. //
  2314. // txt_PlanID
  2315. //
  2316. this.txt_PlanID.AutoSize = true;
  2317. this.txt_PlanID.Enabled = false;
  2318. this.txt_PlanID.FlatMode = true;
  2319. this.txt_PlanID.Location = new System.Drawing.Point(366, 30);
  2320. this.txt_PlanID.Name = "txt_PlanID";
  2321. this.txt_PlanID.Size = new System.Drawing.Size(104, 19);
  2322. this.txt_PlanID.TabIndex = 221;
  2323. this.txt_PlanID.TabStop = false;
  2324. this.txt_PlanID.Tag = "";
  2325. //
  2326. // chk_PactID
  2327. //
  2328. this.chk_PactID.Location = new System.Drawing.Point(308, 34);
  2329. this.chk_PactID.Name = "chk_PactID";
  2330. this.chk_PactID.Size = new System.Drawing.Size(60, 16);
  2331. this.chk_PactID.TabIndex = 220;
  2332. this.chk_PactID.TabStop = false;
  2333. this.chk_PactID.Text = "合同号";
  2334. this.chk_PactID.CheckedChanged += new System.EventHandler(this.chk_PactID_CheckedChanged);
  2335. //
  2336. // txt_OrderNO
  2337. //
  2338. this.txt_OrderNO.AutoSize = true;
  2339. this.txt_OrderNO.Enabled = false;
  2340. this.txt_OrderNO.FlatMode = true;
  2341. this.txt_OrderNO.Location = new System.Drawing.Point(366, 7);
  2342. this.txt_OrderNO.Name = "txt_OrderNO";
  2343. this.txt_OrderNO.Size = new System.Drawing.Size(104, 19);
  2344. this.txt_OrderNO.TabIndex = 219;
  2345. this.txt_OrderNO.TabStop = false;
  2346. this.txt_OrderNO.Tag = "";
  2347. //
  2348. // chk_OrderNO
  2349. //
  2350. this.chk_OrderNO.Location = new System.Drawing.Point(308, 10);
  2351. this.chk_OrderNO.Name = "chk_OrderNO";
  2352. this.chk_OrderNO.Size = new System.Drawing.Size(60, 16);
  2353. this.chk_OrderNO.TabIndex = 218;
  2354. this.chk_OrderNO.TabStop = false;
  2355. this.chk_OrderNO.Text = "订单号";
  2356. this.chk_OrderNO.CheckedChanged += new System.EventHandler(this.chk_OrderNO_CheckedChanged);
  2357. //
  2358. // Lab_To
  2359. //
  2360. this.Lab_To.FlatMode = true;
  2361. this.Lab_To.Location = new System.Drawing.Point(129, 32);
  2362. this.Lab_To.Name = "Lab_To";
  2363. this.Lab_To.Size = new System.Drawing.Size(17, 16);
  2364. this.Lab_To.TabIndex = 217;
  2365. this.Lab_To.Text = "到";
  2366. //
  2367. // tab_Coroll
  2368. //
  2369. this.tab_Coroll.Controls.Add(this.ultraTabSharedControlsPage1);
  2370. this.tab_Coroll.Controls.Add(this.ultraTabPageControl1);
  2371. this.tab_Coroll.Controls.Add(this.ultraTabPageControl2);
  2372. this.tab_Coroll.Dock = System.Windows.Forms.DockStyle.Fill;
  2373. this.tab_Coroll.Location = new System.Drawing.Point(0, 84);
  2374. this.tab_Coroll.Name = "tab_Coroll";
  2375. this.tab_Coroll.SharedControlsPage = this.ultraTabSharedControlsPage1;
  2376. this.tab_Coroll.Size = new System.Drawing.Size(1273, 414);
  2377. this.tab_Coroll.TabIndex = 2;
  2378. ultraTab1.Key = "PROCESS";
  2379. ultraTab1.TabPage = this.ultraTabPageControl1;
  2380. ultraTab1.Text = "工艺制订";
  2381. ultraTab2.Key = "PLAN";
  2382. ultraTab2.TabPage = this.ultraTabPageControl2;
  2383. ultraTab2.Text = "计划下发";
  2384. this.tab_Coroll.Tabs.AddRange(new Infragistics.Win.UltraWinTabControl.UltraTab[] {
  2385. ultraTab1,
  2386. ultraTab2});
  2387. this.tab_Coroll.ViewStyle = Infragistics.Win.UltraWinTabControl.ViewStyle.VisualStudio2005;
  2388. //
  2389. // ultraTabSharedControlsPage1
  2390. //
  2391. this.ultraTabSharedControlsPage1.Location = new System.Drawing.Point(-10000, -10000);
  2392. this.ultraTabSharedControlsPage1.Name = "ultraTabSharedControlsPage1";
  2393. this.ultraTabSharedControlsPage1.Size = new System.Drawing.Size(1269, 391);
  2394. //
  2395. // ultraCombo1
  2396. //
  2397. appearance80.BackColor = System.Drawing.Color.LightCyan;
  2398. this.ultraCombo1.Appearance = appearance80;
  2399. this.ultraCombo1.CharacterCasing = System.Windows.Forms.CharacterCasing.Normal;
  2400. this.ultraCombo1.DisplayMember = "";
  2401. this.ultraCombo1.DropDownStyle = Infragistics.Win.UltraWinGrid.UltraComboStyle.DropDownList;
  2402. this.ultraCombo1.FlatMode = true;
  2403. this.ultraCombo1.Location = new System.Drawing.Point(324, 10);
  2404. this.ultraCombo1.Name = "ultraCombo1";
  2405. this.ultraCombo1.Size = new System.Drawing.Size(104, 19);
  2406. this.ultraCombo1.TabIndex = 613;
  2407. this.ultraCombo1.Tag = "";
  2408. this.ultraCombo1.ValueMember = "";
  2409. //
  2410. // ultraLabel6
  2411. //
  2412. appearance81.TextHAlign = Infragistics.Win.HAlign.Center;
  2413. appearance81.TextVAlign = Infragistics.Win.VAlign.Middle;
  2414. this.ultraLabel6.Appearance = appearance81;
  2415. this.ultraLabel6.Location = new System.Drawing.Point(268, 10);
  2416. this.ultraLabel6.Name = "ultraLabel6";
  2417. this.ultraLabel6.Size = new System.Drawing.Size(54, 16);
  2418. this.ultraLabel6.TabIndex = 615;
  2419. this.ultraLabel6.Text = "计划班次";
  2420. //
  2421. // ultraTabControl1
  2422. //
  2423. this.ultraTabControl1.Controls.Add(this.ultraTabSharedControlsPage2);
  2424. this.ultraTabControl1.Controls.Add(this.ultraTabSharedControlsPage3);
  2425. this.ultraTabControl1.Controls.Add(this.ultraTabPageControl3);
  2426. this.ultraTabControl1.Location = new System.Drawing.Point(0, 0);
  2427. this.ultraTabControl1.Name = "ultraTabControl1";
  2428. this.ultraTabControl1.SharedControlsPage = this.ultraTabSharedControlsPage2;
  2429. this.ultraTabControl1.Size = new System.Drawing.Size(200, 100);
  2430. this.ultraTabControl1.TabIndex = 0;
  2431. //
  2432. // ultraTabSharedControlsPage2
  2433. //
  2434. this.ultraTabSharedControlsPage2.Location = new System.Drawing.Point(1, 20);
  2435. this.ultraTabSharedControlsPage2.Name = "ultraTabSharedControlsPage2";
  2436. this.ultraTabSharedControlsPage2.Size = new System.Drawing.Size(196, 77);
  2437. //
  2438. // ultraTabSharedControlsPage3
  2439. //
  2440. this.ultraTabSharedControlsPage3.Location = new System.Drawing.Point(-10000, -10000);
  2441. this.ultraTabSharedControlsPage3.Name = "ultraTabSharedControlsPage3";
  2442. this.ultraTabSharedControlsPage3.Size = new System.Drawing.Size(1269, 391);
  2443. //
  2444. // ultraTabPageControl3
  2445. //
  2446. this.ultraTabPageControl3.Controls.Add(this.ultraGrid1);
  2447. this.ultraTabPageControl3.Controls.Add(this.panel3);
  2448. this.ultraTabPageControl3.Location = new System.Drawing.Point(2, 21);
  2449. this.ultraTabPageControl3.Name = "ultraTabPageControl3";
  2450. this.ultraTabPageControl3.Size = new System.Drawing.Size(1263, 23);
  2451. //
  2452. // ultraGrid1
  2453. //
  2454. appearance82.BackColor = System.Drawing.Color.Ivory;
  2455. this.ultraGrid1.DisplayLayout.Appearance = appearance82;
  2456. this.ultraGrid1.DisplayLayout.CaptionVisible = Infragistics.Win.DefaultableBoolean.False;
  2457. appearance83.BackColor = System.Drawing.SystemColors.ActiveBorder;
  2458. appearance83.BackColor2 = System.Drawing.SystemColors.ControlDark;
  2459. appearance83.BackGradientStyle = Infragistics.Win.GradientStyle.Vertical;
  2460. appearance83.BorderColor = System.Drawing.SystemColors.Window;
  2461. this.ultraGrid1.DisplayLayout.GroupByBox.Appearance = appearance83;
  2462. appearance84.ForeColor = System.Drawing.SystemColors.GrayText;
  2463. this.ultraGrid1.DisplayLayout.GroupByBox.BandLabelAppearance = appearance84;
  2464. this.ultraGrid1.DisplayLayout.GroupByBox.Hidden = true;
  2465. this.ultraGrid1.DisplayLayout.GroupByBox.Prompt = "将要分组的列拖至该区域!";
  2466. appearance85.BackColor = System.Drawing.SystemColors.Window;
  2467. appearance85.ForeColor = System.Drawing.SystemColors.ControlText;
  2468. this.ultraGrid1.DisplayLayout.Override.ActiveCellAppearance = appearance85;
  2469. appearance86.BackColor = System.Drawing.SystemColors.Highlight;
  2470. appearance86.ForeColor = System.Drawing.SystemColors.HighlightText;
  2471. this.ultraGrid1.DisplayLayout.Override.ActiveRowAppearance = appearance86;
  2472. appearance87.BorderColor = System.Drawing.Color.Black;
  2473. appearance87.TextVAlign = Infragistics.Win.VAlign.Middle;
  2474. this.ultraGrid1.DisplayLayout.Override.CellAppearance = appearance87;
  2475. this.ultraGrid1.DisplayLayout.Override.CellClickAction = Infragistics.Win.UltraWinGrid.CellClickAction.EditAndSelectText;
  2476. this.ultraGrid1.DisplayLayout.Override.CellPadding = 0;
  2477. appearance88.BackColor = System.Drawing.SystemColors.Control;
  2478. appearance88.BackColor2 = System.Drawing.SystemColors.ControlDark;
  2479. appearance88.BackGradientAlignment = Infragistics.Win.GradientAlignment.Element;
  2480. appearance88.BackGradientStyle = Infragistics.Win.GradientStyle.Horizontal;
  2481. appearance88.BorderColor = System.Drawing.SystemColors.Window;
  2482. appearance88.TextHAlign = Infragistics.Win.HAlign.Left;
  2483. appearance88.TextVAlign = Infragistics.Win.VAlign.Middle;
  2484. this.ultraGrid1.DisplayLayout.Override.GroupByRowAppearance = appearance88;
  2485. this.ultraGrid1.DisplayLayout.Override.GroupBySummaryDisplayStyle = Infragistics.Win.UltraWinGrid.GroupBySummaryDisplayStyle.SummaryCells;
  2486. appearance89.BackColor = System.Drawing.Color.Silver;
  2487. this.ultraGrid1.DisplayLayout.Override.HeaderAppearance = appearance89;
  2488. this.ultraGrid1.DisplayLayout.Override.HeaderClickAction = Infragistics.Win.UltraWinGrid.HeaderClickAction.SortMulti;
  2489. this.ultraGrid1.DisplayLayout.Override.HeaderStyle = Infragistics.Win.HeaderStyle.Standard;
  2490. appearance90.BackColor = System.Drawing.SystemColors.Window;
  2491. appearance90.BorderColor = System.Drawing.Color.Black;
  2492. appearance90.TextVAlign = Infragistics.Win.VAlign.Middle;
  2493. this.ultraGrid1.DisplayLayout.Override.RowAppearance = appearance90;
  2494. appearance91.BackColor = System.Drawing.SystemColors.Window;
  2495. appearance91.BorderColor = System.Drawing.Color.Black;
  2496. appearance91.TextVAlign = Infragistics.Win.VAlign.Middle;
  2497. this.ultraGrid1.DisplayLayout.Override.RowPreviewAppearance = appearance91;
  2498. this.ultraGrid1.DisplayLayout.Override.RowSelectorHeaderStyle = Infragistics.Win.UltraWinGrid.RowSelectorHeaderStyle.SeparateElement;
  2499. this.ultraGrid1.DisplayLayout.Override.RowSelectorNumberStyle = Infragistics.Win.UltraWinGrid.RowSelectorNumberStyle.RowIndex;
  2500. this.ultraGrid1.DisplayLayout.Override.RowSelectors = Infragistics.Win.DefaultableBoolean.True;
  2501. appearance92.TextHAlign = Infragistics.Win.HAlign.Left;
  2502. appearance92.TextVAlign = Infragistics.Win.VAlign.Middle;
  2503. this.ultraGrid1.DisplayLayout.Override.SelectedRowAppearance = appearance92;
  2504. this.ultraGrid1.DisplayLayout.Override.SummaryDisplayArea = Infragistics.Win.UltraWinGrid.SummaryDisplayAreas.BottomFixed;
  2505. appearance93.BackColor = System.Drawing.SystemColors.Window;
  2506. this.ultraGrid1.DisplayLayout.Override.SummaryFooterAppearance = appearance93;
  2507. appearance94.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(255)))), ((int)(((byte)(255)))), ((int)(((byte)(192)))));
  2508. appearance94.ForeColor = System.Drawing.Color.Red;
  2509. this.ultraGrid1.DisplayLayout.Override.SummaryFooterCaptionAppearance = appearance94;
  2510. this.ultraGrid1.DisplayLayout.Override.SummaryFooterCaptionVisible = Infragistics.Win.DefaultableBoolean.False;
  2511. appearance95.BackColor = System.Drawing.Color.MistyRose;
  2512. appearance95.ForeColor = System.Drawing.Color.Blue;
  2513. appearance95.TextHAlign = Infragistics.Win.HAlign.Right;
  2514. appearance95.TextVAlign = Infragistics.Win.VAlign.Middle;
  2515. this.ultraGrid1.DisplayLayout.Override.SummaryValueAppearance = appearance95;
  2516. appearance96.BackColor = System.Drawing.SystemColors.ControlLight;
  2517. this.ultraGrid1.DisplayLayout.Override.TemplateAddRowAppearance = appearance96;
  2518. this.ultraGrid1.DisplayLayout.ScrollBounds = Infragistics.Win.UltraWinGrid.ScrollBounds.ScrollToFill;
  2519. this.ultraGrid1.DisplayLayout.ScrollStyle = Infragistics.Win.UltraWinGrid.ScrollStyle.Immediate;
  2520. this.ultraGrid1.DisplayLayout.ViewStyleBand = Infragistics.Win.UltraWinGrid.ViewStyleBand.OutlookGroupBy;
  2521. this.ultraGrid1.Dock = System.Windows.Forms.DockStyle.Fill;
  2522. this.ultraGrid1.Location = new System.Drawing.Point(0, 0);
  2523. this.ultraGrid1.Name = "ultraGrid1";
  2524. this.ultraGrid1.Size = new System.Drawing.Size(1263, 0);
  2525. this.ultraGrid1.TabIndex = 9;
  2526. this.ultraGrid1.Text = "ultraGrid2";
  2527. //
  2528. // panel3
  2529. //
  2530. this.panel3.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
  2531. this.panel3.Controls.Add(this.ultraTextEditor1);
  2532. this.panel3.Controls.Add(this.ultraLabel11);
  2533. this.panel3.Dock = System.Windows.Forms.DockStyle.Bottom;
  2534. this.panel3.Location = new System.Drawing.Point(0, -25);
  2535. this.panel3.Name = "panel3";
  2536. this.panel3.Size = new System.Drawing.Size(1263, 48);
  2537. this.panel3.TabIndex = 0;
  2538. //
  2539. // ultraTextEditor1
  2540. //
  2541. this.ultraTextEditor1.AutoSize = true;
  2542. this.ultraTextEditor1.FlatMode = true;
  2543. this.ultraTextEditor1.Location = new System.Drawing.Point(62, 16);
  2544. this.ultraTextEditor1.Name = "ultraTextEditor1";
  2545. this.ultraTextEditor1.Size = new System.Drawing.Size(306, 19);
  2546. this.ultraTextEditor1.TabIndex = 601;
  2547. //
  2548. // ultraLabel11
  2549. //
  2550. this.ultraLabel11.Location = new System.Drawing.Point(8, 18);
  2551. this.ultraLabel11.Name = "ultraLabel11";
  2552. this.ultraLabel11.Size = new System.Drawing.Size(54, 16);
  2553. this.ultraLabel11.TabIndex = 602;
  2554. this.ultraLabel11.Text = "工艺事项";
  2555. //
  2556. // ultraTabPageControl4
  2557. //
  2558. this.ultraTabPageControl4.Controls.Add(this.ultraGrid2);
  2559. this.ultraTabPageControl4.Controls.Add(this.ultraExpandableGroupBox3);
  2560. this.ultraTabPageControl4.Location = new System.Drawing.Point(0, 0);
  2561. this.ultraTabPageControl4.Name = "ultraTabPageControl4";
  2562. this.ultraTabPageControl4.Size = new System.Drawing.Size(196, 77);
  2563. //
  2564. // ultraGrid2
  2565. //
  2566. appearance97.BackColor = System.Drawing.Color.Ivory;
  2567. this.ultraGrid2.DisplayLayout.Appearance = appearance97;
  2568. this.ultraGrid2.DisplayLayout.CaptionVisible = Infragistics.Win.DefaultableBoolean.False;
  2569. appearance98.BackColor = System.Drawing.SystemColors.ActiveBorder;
  2570. appearance98.BackColor2 = System.Drawing.SystemColors.ControlDark;
  2571. appearance98.BackGradientStyle = Infragistics.Win.GradientStyle.Vertical;
  2572. appearance98.BorderColor = System.Drawing.SystemColors.Window;
  2573. this.ultraGrid2.DisplayLayout.GroupByBox.Appearance = appearance98;
  2574. appearance99.ForeColor = System.Drawing.SystemColors.GrayText;
  2575. this.ultraGrid2.DisplayLayout.GroupByBox.BandLabelAppearance = appearance99;
  2576. this.ultraGrid2.DisplayLayout.GroupByBox.Hidden = true;
  2577. this.ultraGrid2.DisplayLayout.GroupByBox.Prompt = "将要分组的列拖至该区域!";
  2578. appearance100.BackColor = System.Drawing.SystemColors.Window;
  2579. appearance100.ForeColor = System.Drawing.SystemColors.ControlText;
  2580. this.ultraGrid2.DisplayLayout.Override.ActiveCellAppearance = appearance100;
  2581. appearance101.BackColor = System.Drawing.SystemColors.Highlight;
  2582. appearance101.ForeColor = System.Drawing.SystemColors.HighlightText;
  2583. this.ultraGrid2.DisplayLayout.Override.ActiveRowAppearance = appearance101;
  2584. appearance102.BorderColor = System.Drawing.Color.Black;
  2585. appearance102.TextVAlign = Infragistics.Win.VAlign.Middle;
  2586. this.ultraGrid2.DisplayLayout.Override.CellAppearance = appearance102;
  2587. this.ultraGrid2.DisplayLayout.Override.CellClickAction = Infragistics.Win.UltraWinGrid.CellClickAction.EditAndSelectText;
  2588. this.ultraGrid2.DisplayLayout.Override.CellPadding = 0;
  2589. appearance103.BackColor = System.Drawing.SystemColors.Control;
  2590. appearance103.BackColor2 = System.Drawing.SystemColors.ControlDark;
  2591. appearance103.BackGradientAlignment = Infragistics.Win.GradientAlignment.Element;
  2592. appearance103.BackGradientStyle = Infragistics.Win.GradientStyle.Horizontal;
  2593. appearance103.BorderColor = System.Drawing.SystemColors.Window;
  2594. appearance103.TextHAlign = Infragistics.Win.HAlign.Left;
  2595. appearance103.TextVAlign = Infragistics.Win.VAlign.Middle;
  2596. this.ultraGrid2.DisplayLayout.Override.GroupByRowAppearance = appearance103;
  2597. this.ultraGrid2.DisplayLayout.Override.GroupBySummaryDisplayStyle = Infragistics.Win.UltraWinGrid.GroupBySummaryDisplayStyle.SummaryCells;
  2598. appearance104.BackColor = System.Drawing.Color.Silver;
  2599. this.ultraGrid2.DisplayLayout.Override.HeaderAppearance = appearance104;
  2600. this.ultraGrid2.DisplayLayout.Override.HeaderClickAction = Infragistics.Win.UltraWinGrid.HeaderClickAction.SortMulti;
  2601. this.ultraGrid2.DisplayLayout.Override.HeaderStyle = Infragistics.Win.HeaderStyle.Standard;
  2602. appearance105.BackColor = System.Drawing.SystemColors.Window;
  2603. appearance105.BorderColor = System.Drawing.Color.Black;
  2604. appearance105.TextVAlign = Infragistics.Win.VAlign.Middle;
  2605. this.ultraGrid2.DisplayLayout.Override.RowAppearance = appearance105;
  2606. appearance106.BackColor = System.Drawing.SystemColors.Window;
  2607. appearance106.BorderColor = System.Drawing.Color.Black;
  2608. appearance106.TextVAlign = Infragistics.Win.VAlign.Middle;
  2609. this.ultraGrid2.DisplayLayout.Override.RowPreviewAppearance = appearance106;
  2610. this.ultraGrid2.DisplayLayout.Override.RowSelectorHeaderStyle = Infragistics.Win.UltraWinGrid.RowSelectorHeaderStyle.SeparateElement;
  2611. this.ultraGrid2.DisplayLayout.Override.RowSelectorNumberStyle = Infragistics.Win.UltraWinGrid.RowSelectorNumberStyle.RowIndex;
  2612. this.ultraGrid2.DisplayLayout.Override.RowSelectors = Infragistics.Win.DefaultableBoolean.True;
  2613. appearance107.TextHAlign = Infragistics.Win.HAlign.Left;
  2614. appearance107.TextVAlign = Infragistics.Win.VAlign.Middle;
  2615. this.ultraGrid2.DisplayLayout.Override.SelectedRowAppearance = appearance107;
  2616. this.ultraGrid2.DisplayLayout.Override.SummaryDisplayArea = Infragistics.Win.UltraWinGrid.SummaryDisplayAreas.BottomFixed;
  2617. appearance108.BackColor = System.Drawing.SystemColors.Window;
  2618. this.ultraGrid2.DisplayLayout.Override.SummaryFooterAppearance = appearance108;
  2619. appearance109.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(255)))), ((int)(((byte)(255)))), ((int)(((byte)(192)))));
  2620. appearance109.ForeColor = System.Drawing.Color.Red;
  2621. this.ultraGrid2.DisplayLayout.Override.SummaryFooterCaptionAppearance = appearance109;
  2622. this.ultraGrid2.DisplayLayout.Override.SummaryFooterCaptionVisible = Infragistics.Win.DefaultableBoolean.False;
  2623. appearance110.BackColor = System.Drawing.Color.MistyRose;
  2624. appearance110.ForeColor = System.Drawing.Color.Blue;
  2625. appearance110.TextHAlign = Infragistics.Win.HAlign.Right;
  2626. appearance110.TextVAlign = Infragistics.Win.VAlign.Middle;
  2627. this.ultraGrid2.DisplayLayout.Override.SummaryValueAppearance = appearance110;
  2628. appearance111.BackColor = System.Drawing.SystemColors.ControlLight;
  2629. this.ultraGrid2.DisplayLayout.Override.TemplateAddRowAppearance = appearance111;
  2630. this.ultraGrid2.DisplayLayout.ScrollBounds = Infragistics.Win.UltraWinGrid.ScrollBounds.ScrollToFill;
  2631. this.ultraGrid2.DisplayLayout.ScrollStyle = Infragistics.Win.UltraWinGrid.ScrollStyle.Immediate;
  2632. this.ultraGrid2.DisplayLayout.ViewStyleBand = Infragistics.Win.UltraWinGrid.ViewStyleBand.OutlookGroupBy;
  2633. this.ultraGrid2.Dock = System.Windows.Forms.DockStyle.Fill;
  2634. this.ultraGrid2.Location = new System.Drawing.Point(0, 0);
  2635. this.ultraGrid2.Name = "ultraGrid2";
  2636. this.ultraGrid2.Size = new System.Drawing.Size(196, 0);
  2637. this.ultraGrid2.TabIndex = 10;
  2638. this.ultraGrid2.Text = "ultraGrid1";
  2639. //
  2640. // ultraExpandableGroupBox3
  2641. //
  2642. this.ultraExpandableGroupBox3.Controls.Add(this.ultraExpandableGroupBoxPanel3);
  2643. this.ultraExpandableGroupBox3.Dock = System.Windows.Forms.DockStyle.Bottom;
  2644. this.ultraExpandableGroupBox3.ExpandedSize = new System.Drawing.Size(860, 243);
  2645. this.ultraExpandableGroupBox3.Location = new System.Drawing.Point(0, -110);
  2646. this.ultraExpandableGroupBox3.Name = "ultraExpandableGroupBox3";
  2647. this.ultraExpandableGroupBox3.Size = new System.Drawing.Size(196, 187);
  2648. this.ultraExpandableGroupBox3.SupportThemes = false;
  2649. this.ultraExpandableGroupBox3.TabIndex = 2;
  2650. this.ultraExpandableGroupBox3.Text = "计划下发情况";
  2651. //
  2652. // ultraExpandableGroupBoxPanel3
  2653. //
  2654. this.ultraExpandableGroupBoxPanel3.Controls.Add(this.ultraGrid3);
  2655. this.ultraExpandableGroupBoxPanel3.Dock = System.Windows.Forms.DockStyle.Fill;
  2656. this.ultraExpandableGroupBoxPanel3.Location = new System.Drawing.Point(3, 19);
  2657. this.ultraExpandableGroupBoxPanel3.Name = "ultraExpandableGroupBoxPanel3";
  2658. this.ultraExpandableGroupBoxPanel3.Size = new System.Drawing.Size(190, 165);
  2659. this.ultraExpandableGroupBoxPanel3.TabIndex = 0;
  2660. //
  2661. // ultraGrid3
  2662. //
  2663. appearance112.BackColor = System.Drawing.Color.Ivory;
  2664. this.ultraGrid3.DisplayLayout.Appearance = appearance112;
  2665. this.ultraGrid3.DisplayLayout.CaptionVisible = Infragistics.Win.DefaultableBoolean.False;
  2666. appearance113.BackColor = System.Drawing.SystemColors.ActiveBorder;
  2667. appearance113.BackColor2 = System.Drawing.SystemColors.ControlDark;
  2668. appearance113.BackGradientStyle = Infragistics.Win.GradientStyle.Vertical;
  2669. appearance113.BorderColor = System.Drawing.SystemColors.Window;
  2670. this.ultraGrid3.DisplayLayout.GroupByBox.Appearance = appearance113;
  2671. appearance114.ForeColor = System.Drawing.SystemColors.GrayText;
  2672. this.ultraGrid3.DisplayLayout.GroupByBox.BandLabelAppearance = appearance114;
  2673. this.ultraGrid3.DisplayLayout.GroupByBox.Hidden = true;
  2674. this.ultraGrid3.DisplayLayout.GroupByBox.Prompt = "将要分组的列拖至该区域!";
  2675. appearance115.BackColor = System.Drawing.SystemColors.Window;
  2676. appearance115.ForeColor = System.Drawing.SystemColors.ControlText;
  2677. this.ultraGrid3.DisplayLayout.Override.ActiveCellAppearance = appearance115;
  2678. appearance116.BackColor = System.Drawing.SystemColors.Highlight;
  2679. appearance116.ForeColor = System.Drawing.SystemColors.HighlightText;
  2680. this.ultraGrid3.DisplayLayout.Override.ActiveRowAppearance = appearance116;
  2681. appearance117.BorderColor = System.Drawing.Color.Black;
  2682. appearance117.TextVAlign = Infragistics.Win.VAlign.Middle;
  2683. this.ultraGrid3.DisplayLayout.Override.CellAppearance = appearance117;
  2684. this.ultraGrid3.DisplayLayout.Override.CellClickAction = Infragistics.Win.UltraWinGrid.CellClickAction.EditAndSelectText;
  2685. this.ultraGrid3.DisplayLayout.Override.CellPadding = 0;
  2686. appearance118.BackColor = System.Drawing.SystemColors.Control;
  2687. appearance118.BackColor2 = System.Drawing.SystemColors.ControlDark;
  2688. appearance118.BackGradientAlignment = Infragistics.Win.GradientAlignment.Element;
  2689. appearance118.BackGradientStyle = Infragistics.Win.GradientStyle.Horizontal;
  2690. appearance118.BorderColor = System.Drawing.SystemColors.Window;
  2691. appearance118.TextHAlign = Infragistics.Win.HAlign.Left;
  2692. appearance118.TextVAlign = Infragistics.Win.VAlign.Middle;
  2693. this.ultraGrid3.DisplayLayout.Override.GroupByRowAppearance = appearance118;
  2694. this.ultraGrid3.DisplayLayout.Override.GroupBySummaryDisplayStyle = Infragistics.Win.UltraWinGrid.GroupBySummaryDisplayStyle.SummaryCells;
  2695. appearance119.BackColor = System.Drawing.Color.Silver;
  2696. this.ultraGrid3.DisplayLayout.Override.HeaderAppearance = appearance119;
  2697. this.ultraGrid3.DisplayLayout.Override.HeaderClickAction = Infragistics.Win.UltraWinGrid.HeaderClickAction.SortMulti;
  2698. this.ultraGrid3.DisplayLayout.Override.HeaderStyle = Infragistics.Win.HeaderStyle.Standard;
  2699. appearance120.BackColor = System.Drawing.SystemColors.Window;
  2700. appearance120.BorderColor = System.Drawing.Color.Black;
  2701. appearance120.TextVAlign = Infragistics.Win.VAlign.Middle;
  2702. this.ultraGrid3.DisplayLayout.Override.RowAppearance = appearance120;
  2703. appearance121.BackColor = System.Drawing.SystemColors.Window;
  2704. appearance121.BorderColor = System.Drawing.Color.Black;
  2705. appearance121.TextVAlign = Infragistics.Win.VAlign.Middle;
  2706. this.ultraGrid3.DisplayLayout.Override.RowPreviewAppearance = appearance121;
  2707. this.ultraGrid3.DisplayLayout.Override.RowSelectorHeaderStyle = Infragistics.Win.UltraWinGrid.RowSelectorHeaderStyle.SeparateElement;
  2708. this.ultraGrid3.DisplayLayout.Override.RowSelectorNumberStyle = Infragistics.Win.UltraWinGrid.RowSelectorNumberStyle.RowIndex;
  2709. this.ultraGrid3.DisplayLayout.Override.RowSelectors = Infragistics.Win.DefaultableBoolean.True;
  2710. appearance122.TextHAlign = Infragistics.Win.HAlign.Left;
  2711. appearance122.TextVAlign = Infragistics.Win.VAlign.Middle;
  2712. this.ultraGrid3.DisplayLayout.Override.SelectedRowAppearance = appearance122;
  2713. this.ultraGrid3.DisplayLayout.Override.SummaryDisplayArea = Infragistics.Win.UltraWinGrid.SummaryDisplayAreas.BottomFixed;
  2714. appearance123.BackColor = System.Drawing.SystemColors.Window;
  2715. this.ultraGrid3.DisplayLayout.Override.SummaryFooterAppearance = appearance123;
  2716. appearance124.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(255)))), ((int)(((byte)(255)))), ((int)(((byte)(192)))));
  2717. appearance124.ForeColor = System.Drawing.Color.Red;
  2718. this.ultraGrid3.DisplayLayout.Override.SummaryFooterCaptionAppearance = appearance124;
  2719. this.ultraGrid3.DisplayLayout.Override.SummaryFooterCaptionVisible = Infragistics.Win.DefaultableBoolean.False;
  2720. appearance125.BackColor = System.Drawing.Color.MistyRose;
  2721. appearance125.ForeColor = System.Drawing.Color.Blue;
  2722. appearance125.TextHAlign = Infragistics.Win.HAlign.Right;
  2723. appearance125.TextVAlign = Infragistics.Win.VAlign.Middle;
  2724. this.ultraGrid3.DisplayLayout.Override.SummaryValueAppearance = appearance125;
  2725. appearance126.BackColor = System.Drawing.SystemColors.ControlLight;
  2726. this.ultraGrid3.DisplayLayout.Override.TemplateAddRowAppearance = appearance126;
  2727. this.ultraGrid3.DisplayLayout.ScrollBounds = Infragistics.Win.UltraWinGrid.ScrollBounds.ScrollToFill;
  2728. this.ultraGrid3.DisplayLayout.ScrollStyle = Infragistics.Win.UltraWinGrid.ScrollStyle.Immediate;
  2729. this.ultraGrid3.DisplayLayout.ViewStyleBand = Infragistics.Win.UltraWinGrid.ViewStyleBand.OutlookGroupBy;
  2730. this.ultraGrid3.Dock = System.Windows.Forms.DockStyle.Fill;
  2731. this.ultraGrid3.Location = new System.Drawing.Point(0, 0);
  2732. this.ultraGrid3.Name = "ultraGrid3";
  2733. this.ultraGrid3.Size = new System.Drawing.Size(190, 165);
  2734. this.ultraGrid3.TabIndex = 10;
  2735. this.ultraGrid3.Text = "ultraGrid3";
  2736. //
  2737. // ultraExpandableGroupBox4
  2738. //
  2739. this.ultraExpandableGroupBox4.Controls.Add(this.ultraExpandableGroupBoxPanel4);
  2740. this.ultraExpandableGroupBox4.ExpandedSize = new System.Drawing.Size(0, 0);
  2741. this.ultraExpandableGroupBox4.Location = new System.Drawing.Point(0, 0);
  2742. this.ultraExpandableGroupBox4.Name = "ultraExpandableGroupBox4";
  2743. this.ultraExpandableGroupBox4.Size = new System.Drawing.Size(200, 185);
  2744. this.ultraExpandableGroupBox4.SupportThemes = false;
  2745. this.ultraExpandableGroupBox4.TabIndex = 0;
  2746. //
  2747. // ultraExpandableGroupBoxPanel4
  2748. //
  2749. this.ultraExpandableGroupBoxPanel4.Location = new System.Drawing.Point(0, 0);
  2750. this.ultraExpandableGroupBoxPanel4.Name = "ultraExpandableGroupBoxPanel4";
  2751. this.ultraExpandableGroupBoxPanel4.Size = new System.Drawing.Size(200, 100);
  2752. this.ultraExpandableGroupBoxPanel4.TabIndex = 0;
  2753. //
  2754. // Frm_PlanDrawUp
  2755. //
  2756. this.AutoScaleBaseSize = new System.Drawing.Size(6, 14);
  2757. this.ClientSize = new System.Drawing.Size(1273, 498);
  2758. this.Controls.Add(this.tab_Coroll);
  2759. this.Controls.Add(this.ultraGroupBox1);
  2760. this.Controls.Add(this.panel1);
  2761. this.Name = "Frm_PlanDrawUp";
  2762. this.Text = "钢卷开平计划制订";
  2763. this.Load += new System.EventHandler(this.Frm_PlanDrawUp_Load);
  2764. this.ultraTabPageControl1.ResumeLayout(false);
  2765. ((System.ComponentModel.ISupportInitialize)(this.gb_Stuff)).EndInit();
  2766. this.panel2.ResumeLayout(false);
  2767. ((System.ComponentModel.ISupportInitialize)(this.cmb_Gylx)).EndInit();
  2768. ((System.ComponentModel.ISupportInitialize)(this.txt_QuShi)).EndInit();
  2769. this.ultraTabPageControl2.ResumeLayout(false);
  2770. ((System.ComponentModel.ISupportInitialize)(this.gb_Plan)).EndInit();
  2771. ((System.ComponentModel.ISupportInitialize)(this.ultraExpandableGroupBox2)).EndInit();
  2772. this.ultraExpandableGroupBox2.ResumeLayout(false);
  2773. this.ultraExpandableGroupBoxPanel2.ResumeLayout(false);
  2774. ((System.ComponentModel.ISupportInitialize)(this.gb_PlanState)).EndInit();
  2775. ((System.ComponentModel.ISupportInitialize)(this.ultraExpandableGroupBox1)).EndInit();
  2776. this.ultraExpandableGroupBox1.ResumeLayout(false);
  2777. this.ultraExpandableGroupBoxPanel1.ResumeLayout(false);
  2778. ((System.ComponentModel.ISupportInitialize)(this.txt_Width)).EndInit();
  2779. ((System.ComponentModel.ISupportInitialize)(this.dte_Time)).EndInit();
  2780. ((System.ComponentModel.ISupportInitialize)(this.txt_Length)).EndInit();
  2781. ((System.ComponentModel.ISupportInitialize)(this.txt_Scid_End_Y)).EndInit();
  2782. ((System.ComponentModel.ISupportInitialize)(this.cmb_ClassTeam)).EndInit();
  2783. ((System.ComponentModel.ISupportInitialize)(this.cmb_ClassOrder)).EndInit();
  2784. ((System.ComponentModel.ISupportInitialize)(this.cmb_EditType_Y)).EndInit();
  2785. ((System.ComponentModel.ISupportInitialize)(this.txt_Scid_Begin_Y)).EndInit();
  2786. ((System.ComponentModel.ISupportInitialize)(this.txt_Scid_Top_Y)).EndInit();
  2787. this.panel1.ResumeLayout(false);
  2788. ((System.ComponentModel.ISupportInitialize)(this.ultraToolbarsManager1)).EndInit();
  2789. ((System.ComponentModel.ISupportInitialize)(this.ultraGroupBox1)).EndInit();
  2790. this.ultraGroupBox1.ResumeLayout(false);
  2791. ((System.ComponentModel.ISupportInitialize)(this.ultSJ)).EndInit();
  2792. ((System.ComponentModel.ISupportInitialize)(this.cmb_IS)).EndInit();
  2793. ((System.ComponentModel.ISupportInitialize)(this.dte_EndTime)).EndInit();
  2794. ((System.ComponentModel.ISupportInitialize)(this.dte_BeginTime)).EndInit();
  2795. ((System.ComponentModel.ISupportInitialize)(this.txt_BNumber)).EndInit();
  2796. ((System.ComponentModel.ISupportInitialize)(this.cmb_Buress)).EndInit();
  2797. ((System.ComponentModel.ISupportInitialize)(this.cmb_Sleen)).EndInit();
  2798. ((System.ComponentModel.ISupportInitialize)(this.txt_GangP)).EndInit();
  2799. ((System.ComponentModel.ISupportInitialize)(this.txt_RollHao)).EndInit();
  2800. ((System.ComponentModel.ISupportInitialize)(this.txt_PlanID)).EndInit();
  2801. ((System.ComponentModel.ISupportInitialize)(this.txt_OrderNO)).EndInit();
  2802. ((System.ComponentModel.ISupportInitialize)(this.tab_Coroll)).EndInit();
  2803. this.tab_Coroll.ResumeLayout(false);
  2804. ((System.ComponentModel.ISupportInitialize)(this.ultraCombo1)).EndInit();
  2805. ((System.ComponentModel.ISupportInitialize)(this.ultraTabControl1)).EndInit();
  2806. this.ultraTabControl1.ResumeLayout(false);
  2807. this.ultraTabPageControl3.ResumeLayout(false);
  2808. ((System.ComponentModel.ISupportInitialize)(this.ultraGrid1)).EndInit();
  2809. this.panel3.ResumeLayout(false);
  2810. ((System.ComponentModel.ISupportInitialize)(this.ultraTextEditor1)).EndInit();
  2811. this.ultraTabPageControl4.ResumeLayout(false);
  2812. ((System.ComponentModel.ISupportInitialize)(this.ultraGrid2)).EndInit();
  2813. ((System.ComponentModel.ISupportInitialize)(this.ultraExpandableGroupBox3)).EndInit();
  2814. this.ultraExpandableGroupBox3.ResumeLayout(false);
  2815. this.ultraExpandableGroupBoxPanel3.ResumeLayout(false);
  2816. ((System.ComponentModel.ISupportInitialize)(this.ultraGrid3)).EndInit();
  2817. ((System.ComponentModel.ISupportInitialize)(this.ultraExpandableGroupBox4)).EndInit();
  2818. this.ultraExpandableGroupBox4.ResumeLayout(false);
  2819. this.ResumeLayout(false);
  2820. }
  2821. #endregion
  2822. #region 查询
  2823. private string GetWhere()
  2824. {
  2825. string strSql="";
  2826. //if(this.chk_CollectTime.Checked)
  2827. //{
  2828. // strSql += " AND TO_CHAR(A.INTIME,'YYYY-MM-DD') >='"+Convert.ToDateTime(this.dte_BeginTime.Value).ToString("yyyy-MM-dd")+"' "
  2829. // + " AND TO_CHAR(A.INTIME,'YYYY-MM-DD') <='"+Convert.ToDateTime(this.dte_EndTime.Value).ToString("yyyy-MM-dd")+"' ";
  2830. //}
  2831. if (this.chk_CollectTime.Checked)
  2832. {
  2833. if (this.ultSJ.SelectedIndex == 0)
  2834. {
  2835. strSql += " AND TO_CHAR(A.PLAN_DATE,'YYYY-MM-DD') >='" + Convert.ToDateTime(this.dte_BeginTime.Value).ToString("yyyy-MM-dd") + "' "
  2836. + " AND TO_CHAR(A.PLAN_DATE,'YYYY-MM-DD') <='" + Convert.ToDateTime(this.dte_EndTime.Value).ToString("yyyy-MM-dd") + "' ";
  2837. }
  2838. else
  2839. {
  2840. strSql += " AND TO_CHAR(A.STTIME,'YYYY-MM-DD') >='" + Convert.ToDateTime(this.dte_BeginTime.Value).ToString("yyyy-MM-dd") + "' "
  2841. + " AND TO_CHAR(A.STTIME,'YYYY-MM-DD') <='" + Convert.ToDateTime(this.dte_EndTime.Value).ToString("yyyy-MM-dd") + "' ";
  2842. }
  2843. }
  2844. if(this.chk_OrderNO.Checked)
  2845. {
  2846. strSql=" AND A.ORD_SEQ='"+this.txt_OrderNO.Text+"'";;
  2847. }
  2848. if(this.chk_PactID.Checked)
  2849. {
  2850. strSql = " AND A.ORD_NO LIKE '%" + this.txt_PlanID.Text + "%'";
  2851. }
  2852. if(this.chk_RollHao.Checked)
  2853. {
  2854. strSql=" AND A.OLD_SAMPL_NO='"+this.txt_RollHao.Text+"'";
  2855. }
  2856. if(this.chk_BanHao.Checked)
  2857. {
  2858. strSql=" AND A.SLAB_NO='"+this.txt_GangP.Text+"'";
  2859. }
  2860. if(this.chk_PaiHao.Checked)
  2861. {
  2862. strSql=" AND A.STL_GRD='"+this.cmb_Sleen.Value+"'";
  2863. }
  2864. if(this.Chk_Buttress.Checked)
  2865. {
  2866. strSql=" AND B.BUTTRESS='"+this.cmb_Buress.Value.ToString()+"'";
  2867. }
  2868. if(this.chk_BNumber.Checked)
  2869. {
  2870. strSql+="AND A.BAHCT_NUMBER||A.SERIAL_NUMBER LIKE '"+this.txt_BNumber.Text+"'";
  2871. }
  2872. //if(this.chk_ProcLine.Checked)
  2873. //{
  2874. // strSql+=" AND A.STOCKTYPE='"+this.cmb_ProcL.Value.ToString()+"'";
  2875. //}
  2876. return strSql;
  2877. }
  2878. private void StuffQuery(string _Conntion)
  2879. {
  2880. try
  2881. {
  2882. string strOut="";
  2883. DataSet ds=(DataSet)Core.Mes.ClientFrameWork.ClientCommon._RemotingHelp.ExecuteMethod("CoilMachiningManage","Core.XgMes.Server.CoilMachiningManage.PlanDrawUp","StuffQuer",new object[]{_Conntion},out strOut);
  2884. this.gb_Stuff.DataSource=ds;
  2885. this.gb_Stuff.UpdateData();
  2886. Comm.SetGridSumArea(this.gb_Stuff);
  2887. }
  2888. catch(Exception ex)
  2889. {
  2890. System.Diagnostics.Debug.WriteLine(ex.ToString());
  2891. }
  2892. }
  2893. private string Plan_GetWhere()
  2894. {
  2895. string strSql="";
  2896. //if(this.chk_CollectTime.Checked)
  2897. //{
  2898. // strSql += " AND TO_CHAR(A.PLAN_DATE,'YYYY-MM-DD') >='"+Convert.ToDateTime(this.dte_BeginTime.Value).ToString("yyyy-MM-dd")+"' "
  2899. // + " AND TO_CHAR(A.PLAN_DATE,'YYYY-MM-DD') <='"+Convert.ToDateTime(this.dte_EndTime.Value).ToString("yyyy-MM-dd")+"' ";
  2900. //}
  2901. if (chk_CollectTime.Checked == true)
  2902. {
  2903. if (this.ultSJ.SelectedIndex == 0)
  2904. {
  2905. strSql += " AND TO_CHAR(A.PLAN_DATE,'YYYY-MM-DD') >='" + Convert.ToDateTime(this.dte_BeginTime.Value).ToString("yyyy-MM-dd") + "' "
  2906. + " AND TO_CHAR(A.PLAN_DATE,'YYYY-MM-DD') <='" + Convert.ToDateTime(this.dte_EndTime.Value).ToString("yyyy-MM-dd") + "' ";
  2907. }
  2908. else
  2909. {
  2910. strSql += " AND TO_CHAR(A.STTIME,'YYYY-MM-DD') >='" + Convert.ToDateTime(this.dte_BeginTime.Value).ToString("yyyy-MM-dd") + "' "
  2911. + " AND TO_CHAR(A.STTIME,'YYYY-MM-DD') <='" + Convert.ToDateTime(this.dte_EndTime.Value).ToString("yyyy-MM-dd") + "' ";
  2912. }
  2913. }
  2914. if(this.chk_OrderNO.Checked)
  2915. {
  2916. strSql+=" AND A.ORD_SEQ='"+this.txt_OrderNO.Text+"'";;
  2917. }
  2918. if(this.chk_PactID.Checked)
  2919. {
  2920. strSql += " AND A.ORD_NO LIKE '%" + this.txt_PlanID.Text + "%'";
  2921. }
  2922. if(this.chk_RollHao.Checked)
  2923. {
  2924. strSql+=" AND A.OLD_SAMPL_NO='"+this.txt_RollHao.Text+"'";
  2925. }
  2926. if(this.chk_BanHao.Checked)
  2927. {
  2928. strSql+=" AND A.SLAB_NO='"+this.txt_GangP.Text+"'";
  2929. }
  2930. if(this.chk_PaiHao.Checked)
  2931. {
  2932. strSql+=" AND A.STL_GRD='"+this.cmb_Sleen.Value+"'";
  2933. }
  2934. if(this.Chk_Buttress.Checked)
  2935. {
  2936. strSql+=" AND B.BUTTRESS='"+this.cmb_Buress.Value.ToString()+"'";
  2937. }
  2938. if(this.chk_BNumber.Checked)
  2939. {
  2940. strSql+="AND A.BAHCT_NUMBER||A.SERIAL_NUMBER LIKE '"+this.txt_BNumber.Text+"'";
  2941. }
  2942. //if(this.chk_ProcLine.Checked)
  2943. //{
  2944. // strSql+=" AND A.STOCKTYPE='"+this.cmb_ProcL.Value.ToString()+"'";
  2945. //}
  2946. if (chk_ProcLine.Checked)
  2947. {
  2948. strSql += " AND A.AFFIRLOG='"+this.cmb_IS.Value.ToString()+"'";
  2949. }
  2950. return strSql;
  2951. }
  2952. private void PlanQuery(string _Conntion)
  2953. {
  2954. try
  2955. {
  2956. string strOut="";
  2957. DataSet ds=(DataSet)Core.Mes.ClientFrameWork.ClientCommon._RemotingHelp.ExecuteMethod("CoilMachiningManage","Core.XgMes.Server.CoilMachiningManage.PlanDrawUp","Plan_Qery",new object[]{_Conntion},out strOut);
  2958. this.gb_Plan.DataSource=ds;
  2959. this.gb_Plan.UpdateData();
  2960. Comm.SetGridSumArea(this.gb_Plan);
  2961. }
  2962. catch(Exception ex)
  2963. {
  2964. System.Diagnostics.Debug.WriteLine(ex.ToString());
  2965. }
  2966. }
  2967. private void PlanXFQuery(string _Conntion)
  2968. {
  2969. try
  2970. {
  2971. string strOut="";
  2972. DataSet ds=(DataSet)Core.Mes.ClientFrameWork.ClientCommon._RemotingHelp.ExecuteMethod("CoilMachiningManage","Core.XgMes.Server.CoilMachiningManage.PlanDrawUp","Plan_XF_Qery",new object[]{_Conntion},out strOut);
  2973. this.gb_PlanState.DataSource=ds;
  2974. this.gb_PlanState.UpdateData();
  2975. Comm.SetGridSumArea(this.gb_PlanState);
  2976. foreach(Infragistics.Win.UltraWinGrid.UltraGridRow row in this.gb_PlanState.Rows)
  2977. {
  2978. if(row.Cells["AFFIRLOG"].Value.ToString()=="1")
  2979. {
  2980. row.Appearance.ForeColor = System.Drawing.Color.Red;
  2981. }
  2982. else
  2983. {
  2984. row.Appearance.ForeColor = System.Drawing.Color.Black;
  2985. }
  2986. }
  2987. }
  2988. catch(Exception ex)
  2989. {
  2990. System.Diagnostics.Debug.WriteLine(ex.ToString());
  2991. }
  2992. }
  2993. #endregion
  2994. #region 确定
  2995. private void Plan_Add()
  2996. {
  2997. try
  2998. {
  2999. string strOut="";
  3000. ArrayList array=new ArrayList();
  3001. array=Comm.GetFieldValue(this.gb_Stuff,"FLAG","OLD_SAMPL_NO");
  3002. if(array.Count==0)
  3003. {
  3004. MessageBox.Show("请您选择你要下发的信息!","提示",System.Windows.Forms.MessageBoxButtons.OK,System.Windows.Forms.MessageBoxIcon.Information);
  3005. return ;
  3006. }
  3007. ArrayList Other=new ArrayList();
  3008. Other.Add(this.txt_QuShi.Text);
  3009. Other.Add(Core.Mes.ClientFrameWork.ClientCommon._UserInfo.UserName);
  3010. Other.Add(this.cmb_Gylx.Value.ToString());
  3011. object obj=Core.Mes.ClientFrameWork.ClientCommon._RemotingHelp.ExecuteMethod("CoilMachiningManage","Core.XgMes.Server.CoilMachiningManage.PlanDrawUp","Plan_Set",new object[]{array,Other},out strOut);
  3012. if(obj!=null && obj.ToString()=="1")
  3013. {
  3014. DataSet ds=(DataSet)this.gb_Stuff.DataSource;
  3015. System.Data.DataRow[] row=ds.Tables["KCJ3_STUFFLIST"].Select("FLAG='TRUE'");
  3016. for(int i=0;i<row.Length;i++)
  3017. {
  3018. ds.Tables["KCJ3_STUFFLIST"].Rows.Remove(row[i]);
  3019. ds.Tables["KCJ3_STUFFLIST"].AcceptChanges();
  3020. this.PlanQuery("");
  3021. }
  3022. }
  3023. else
  3024. {
  3025. MessageBox.Show(strOut,"警告",System.Windows.Forms.MessageBoxButtons.OK,System.Windows.Forms.MessageBoxIcon.Warning);
  3026. }
  3027. }
  3028. catch(Exception ex)
  3029. {
  3030. System.Diagnostics.Debug.WriteLine(ex.ToString());
  3031. }
  3032. }
  3033. #endregion
  3034. #region 撤消
  3035. private void Plan_Del()
  3036. {
  3037. try
  3038. {
  3039. string strOut="";
  3040. ArrayList array=new ArrayList();
  3041. array=Comm.GetFieldValue(this.gb_Plan,"FLAG","OLD_SAMPL_NO");
  3042. if(array.Count==0)
  3043. {
  3044. MessageBox.Show("请您选择你要撤消的信息!","提示",System.Windows.Forms.MessageBoxButtons.OK,System.Windows.Forms.MessageBoxIcon.Information);
  3045. return ;
  3046. }
  3047. object obj=Core.Mes.ClientFrameWork.ClientCommon._RemotingHelp.ExecuteMethod("CoilMachiningManage","Core.XgMes.Server.CoilMachiningManage.PlanDrawUp","Plan_Del",new object[]{array},out strOut);
  3048. if(obj!=null && obj.ToString()=="1")
  3049. {
  3050. this.PlanQuery("");
  3051. this.StuffQuery("");
  3052. }
  3053. else
  3054. {
  3055. MessageBox.Show(strOut,"警告",System.Windows.Forms.MessageBoxButtons.OK,System.Windows.Forms.MessageBoxIcon.Warning);
  3056. }
  3057. }
  3058. catch(Exception ex)
  3059. {
  3060. System.Diagnostics.Debug.WriteLine(ex.ToString());
  3061. }
  3062. }
  3063. #endregion
  3064. #region 作业下发
  3065. private bool Check()
  3066. {
  3067. if(this.txt_Scid_End_Y.Text.Trim().Length==0)
  3068. {
  3069. MessageBox.Show("工单号不能为空!","提示",System.Windows.Forms.MessageBoxButtons.OK,System.Windows.Forms.MessageBoxIcon.Information);
  3070. return false;
  3071. }
  3072. if(this.cmb_ClassOrder.Text.Trim().Length==0)
  3073. {
  3074. MessageBox.Show("班次不能为空!","提示",System.Windows.Forms.MessageBoxButtons.OK,System.Windows.Forms.MessageBoxIcon.Information);
  3075. return false;
  3076. }
  3077. if(this.cmb_ClassTeam.Text.Trim().Length==0)
  3078. {
  3079. MessageBox.Show("班组不能为空!","提示",System.Windows.Forms.MessageBoxButtons.OK,System.Windows.Forms.MessageBoxIcon.Information);
  3080. return false;
  3081. }
  3082. if(this.txt_Length.Value.ToString().Trim().Length==0)
  3083. {
  3084. MessageBox.Show("长度不能为空!","提示",System.Windows.Forms.MessageBoxButtons.OK,System.Windows.Forms.MessageBoxIcon.Information);
  3085. return false;
  3086. }
  3087. return true;
  3088. }
  3089. private void Plan_XF()
  3090. {
  3091. if(!Check())
  3092. {
  3093. return;
  3094. }
  3095. try
  3096. {
  3097. string strOut="";
  3098. ArrayList array=new ArrayList();
  3099. array=Comm.GetFieldValue(this.gb_Plan,"FLAG","OLD_SAMPL_NO");
  3100. if(array.Count==0)
  3101. {
  3102. MessageBox.Show("请您选择你要撤消的信息!","提示",System.Windows.Forms.MessageBoxButtons.OK,System.Windows.Forms.MessageBoxIcon.Information);
  3103. return ;
  3104. }
  3105. ArrayList Other=new ArrayList();
  3106. Other.Add(this.txt_Scid_Top_Y.Text+this.txt_Scid_Begin_Y.Text+this.txt_Scid_End_Y.Text);
  3107. Other.Add(this.cmb_ClassOrder.Value.ToString());
  3108. Other.Add(this.cmb_ClassTeam.Value.ToString());
  3109. Other.Add(this.dte_Time.Value.ToString());
  3110. Other.Add(Core.Mes.ClientFrameWork.ClientCommon._UserInfo.UserName);
  3111. Other.Add(this.txt_Length.Value.ToString());
  3112. Other.Add(this.txt_Width.Value.ToString());
  3113. object obj=Core.Mes.ClientFrameWork.ClientCommon._RemotingHelp.ExecuteMethod("CoilMachiningManage","Core.XgMes.Server.CoilMachiningManage.PlanDrawUp","Plan_Set_XF",new object[]{array,Other},out strOut);
  3114. if(obj!=null&&obj.ToString()=="1")
  3115. {
  3116. DataSet ds=(DataSet)this.gb_Plan.DataSource;
  3117. System.Data.DataRow [] row=ds.Tables["KCJ3_ZY_PLAN"].Select("FLAG='TRUE'");
  3118. for(int i=0;i<row.Length;i++)
  3119. {
  3120. ds.Tables["KCJ3_ZY_PLAN"].Rows.Remove(row[i]);
  3121. ds.Tables["KCJ3_ZY_PLAN"].AcceptChanges();
  3122. }
  3123. string strSql=" AND A.WORKORDER_ID='"+this.txt_Scid_Top_Y.Text+this.txt_Scid_Begin_Y.Text+this.txt_Scid_End_Y.Text+"'";
  3124. this.PlanXFQuery(strSql);
  3125. }
  3126. else
  3127. {
  3128. MessageBox.Show(strOut,"警告",System.Windows.Forms.MessageBoxButtons.OK,System.Windows.Forms.MessageBoxIcon.Warning);
  3129. }
  3130. }
  3131. catch(Exception ex)
  3132. {
  3133. System.Diagnostics.Debug.WriteLine(ex.ToString());
  3134. }
  3135. }
  3136. #endregion
  3137. #region 撤消下发
  3138. private void Plan_Del_XF()
  3139. {
  3140. try
  3141. {
  3142. string strOut="";
  3143. ArrayList array=new ArrayList();
  3144. string ID="";
  3145. foreach(Infragistics.Win.UltraWinGrid.UltraGridRow row in this.gb_PlanState.Selected.Rows)
  3146. {
  3147. ID=Comm.ObjToStr(row.Cells["OLD_SAMPL_NO"].Value);
  3148. }
  3149. array.Add(ID);
  3150. if(array.Count==0)
  3151. {
  3152. MessageBox.Show("请您选择你要撤消的信息!","提示",System.Windows.Forms.MessageBoxButtons.OK,System.Windows.Forms.MessageBoxIcon.Information);
  3153. return ;
  3154. }
  3155. ArrayList Other=new ArrayList();
  3156. Other.Add(Core.Mes.ClientFrameWork.ClientCommon._UserInfo.UserName);
  3157. object obj=Core.Mes.ClientFrameWork.ClientCommon._RemotingHelp.ExecuteMethod("CoilMachiningManage","Core.XgMes.Server.CoilMachiningManage.PlanDrawUp","Plan_Del_XF",new object[]{array,Other},out strOut);
  3158. if(obj!=null&&obj.ToString()=="1")
  3159. {
  3160. this.PlanQuery("");
  3161. this.PlanXFQuery("");
  3162. }
  3163. else
  3164. {
  3165. MessageBox.Show(strOut,"警告",System.Windows.Forms.MessageBoxButtons.OK,System.Windows.Forms.MessageBoxIcon.Warning);
  3166. }
  3167. }
  3168. catch(Exception ex)
  3169. {
  3170. System.Diagnostics.Debug.WriteLine(ex.ToString());
  3171. }
  3172. }
  3173. #endregion
  3174. #region EVENT
  3175. private void ultraToolbarsManager1_ToolClick(object sender, Infragistics.Win.UltraWinToolbars.ToolClickEventArgs e)
  3176. {
  3177. switch(e.Tool.Key)
  3178. {
  3179. case "QUERY_KC":
  3180. this.tab_Coroll.Tabs["PROCESS"].Selected=true;
  3181. this.StuffQuery(this.GetWhere());
  3182. break;
  3183. case "QUERY_GY":
  3184. this.tab_Coroll.Tabs["PLAN"].Selected=true;
  3185. this.PlanQuery(this.Plan_GetWhere());
  3186. break;
  3187. case "AFFIRM":
  3188. this.Plan_Add();
  3189. break;
  3190. case "QUERY_PLAN":
  3191. PlanXFQuery(this.Plan_GetWhere());
  3192. break;
  3193. case "CANCEL":
  3194. this.Plan_Del();
  3195. break;
  3196. case "DOWN_PLAN":
  3197. this.Plan_XF();
  3198. break;
  3199. case "DEL_PLAN":
  3200. Plan_Del_XF();
  3201. break;
  3202. case "DUCE":
  3203. ExportButtressInfo();
  3204. break;
  3205. case "PRINT":
  3206. this.Print(this.Plan_GetWhere());
  3207. break;
  3208. case "CLOSE":
  3209. this.Close();
  3210. break;
  3211. }
  3212. }
  3213. private void chk_CollectTime_CheckedChanged(object sender, System.EventArgs e)
  3214. {
  3215. this.dte_BeginTime.Enabled = chk_CollectTime.Checked;
  3216. this.dte_EndTime.Enabled = chk_CollectTime.Checked;
  3217. }
  3218. private void chk_OrderNO_CheckedChanged(object sender, System.EventArgs e)
  3219. {
  3220. this.txt_OrderNO.Enabled=this.chk_OrderNO.Checked;
  3221. }
  3222. private void chk_PactID_CheckedChanged(object sender, System.EventArgs e)
  3223. {
  3224. this.txt_PlanID.Enabled=chk_PactID.Checked;
  3225. }
  3226. private void chk_RollHao_CheckedChanged(object sender, System.EventArgs e)
  3227. {
  3228. this.txt_RollHao.Enabled=this.chk_RollHao.Checked;
  3229. }
  3230. private void chk_BanHao_CheckedChanged(object sender, System.EventArgs e)
  3231. {
  3232. this.txt_GangP.Enabled=this.chk_BanHao.Checked;
  3233. }
  3234. private void chk_PaiHao_CheckedChanged(object sender, System.EventArgs e)
  3235. {
  3236. this.cmb_Sleen.Enabled=this.chk_PaiHao.Checked;
  3237. }
  3238. private void Chk_Buttress_CheckedChanged(object sender, System.EventArgs e)
  3239. {
  3240. this.cmb_Buress.Enabled=this.Chk_Buttress.Checked;
  3241. }
  3242. private void gb_Plan_CellChange(object sender, Infragistics.Win.UltraWinGrid.CellEventArgs e)
  3243. {
  3244. try
  3245. {
  3246. int k=0;
  3247. string temp="";
  3248. if(e.Cell.Column.Key == "FLAG")
  3249. {
  3250. e.Cell.Row.Update();
  3251. if(e.Cell.Value.ToString().ToUpper() == "TRUE")
  3252. {
  3253. e.Cell.Row.Appearance.ForeColor = System.Drawing.Color.Blue;
  3254. foreach(Infragistics.Win.UltraWinGrid.UltraGridRow row in this.gb_Plan.Rows)
  3255. {
  3256. if(!row.IsFilteredOut && row.Cells["FLAG"].Text.ToUpper() == "TRUE")
  3257. {
  3258. this.txt_Width.Value = row.Cells["COIL_WTH"].Text;
  3259. if(k == 0)
  3260. {
  3261. temp = row.Cells["OLD_SAMPL_NO"].Text;
  3262. }
  3263. else
  3264. {
  3265. if(!row.Cells["OLD_SAMPL_NO"].Text.Equals(temp))
  3266. {
  3267. MessageBox.Show("一个钢卷号只能对应一个工单号,请选择一行","提示",System.Windows.Forms.MessageBoxButtons.OK,System.Windows.Forms.MessageBoxIcon.Information);
  3268. e.Cell.Row.Cells["FLAG"].Value = false;
  3269. row.Update();
  3270. return;
  3271. }
  3272. }
  3273. k++;
  3274. }
  3275. }
  3276. }
  3277. else
  3278. {
  3279. e.Cell.Row.Appearance.ForeColor = System.Drawing.Color.Black;
  3280. }
  3281. }
  3282. }
  3283. catch(System.Exception ex)
  3284. {
  3285. System.Diagnostics.Debug.WriteLine(ex.ToString());
  3286. }
  3287. }
  3288. private void gb_Stuff_CellChange(object sender, Infragistics.Win.UltraWinGrid.CellEventArgs e)
  3289. {
  3290. try
  3291. {
  3292. if(e.Cell.Column.Key == "FLAG")
  3293. {
  3294. e.Cell.Row.Update();
  3295. if(e.Cell.Value.ToString().ToUpper() == "TRUE")
  3296. {
  3297. e.Cell.Row.Appearance.ForeColor = System.Drawing.Color.Blue;
  3298. }
  3299. else
  3300. {
  3301. e.Cell.Row.Appearance.ForeColor = System.Drawing.Color.Black;
  3302. }
  3303. }
  3304. }
  3305. catch(System.Exception ex)
  3306. {
  3307. System.Diagnostics.Debug.WriteLine(ex.ToString());
  3308. }
  3309. }
  3310. private void chk_SelectAll_CheckedChanged(object sender, System.EventArgs e)
  3311. {
  3312. try
  3313. {
  3314. Infragistics.Win.UltraWinGrid.UltraGridBase tmpGrid = this.gb_Stuff;
  3315. foreach(Infragistics.Win.UltraWinGrid.UltraGridRow row in this.gb_Stuff.Rows)
  3316. {
  3317. if(!row.IsFilteredOut)
  3318. {
  3319. row.Cells["FLAG"].Value = this.chk_SelectAll.Checked.ToString().ToUpper();
  3320. row.Update();
  3321. }
  3322. }
  3323. Infragistics.Win.UltraWinGrid.UltraGridBase tmpGrid1 = this.gb_Plan;
  3324. foreach(Infragistics.Win.UltraWinGrid.UltraGridRow row in this.gb_Plan.Rows)
  3325. {
  3326. if(!row.IsFilteredOut)
  3327. {
  3328. row.Cells["FLAG"].Value = this.chk_SelectAll.Checked.ToString().ToUpper();
  3329. row.Update();
  3330. }
  3331. }
  3332. }
  3333. catch(System.Exception ex)
  3334. {
  3335. System.Diagnostics.Debug.WriteLine(ex.ToString());
  3336. }
  3337. }
  3338. private void chk_AllowFilter_CheckedChanged(object sender, System.EventArgs e)
  3339. {
  3340. try
  3341. {
  3342. if(this.chk_AllowFilter.Checked)
  3343. {
  3344. this.gb_Plan.DisplayLayout.Override.AllowRowFiltering = Infragistics.Win.DefaultableBoolean.True;
  3345. this.gb_Plan.DisplayLayout.Override.FilterUIType = Infragistics.Win.UltraWinGrid.FilterUIType.FilterRow;
  3346. this.gb_Stuff.DisplayLayout.Override.AllowRowFiltering = Infragistics.Win.DefaultableBoolean.True;
  3347. this.gb_Stuff.DisplayLayout.Override.FilterUIType = Infragistics.Win.UltraWinGrid.FilterUIType.FilterRow;
  3348. this.gb_PlanState.DisplayLayout.Override.AllowRowFiltering = Infragistics.Win.DefaultableBoolean.True;
  3349. this.gb_PlanState.DisplayLayout.Override.FilterUIType = Infragistics.Win.UltraWinGrid.FilterUIType.FilterRow;
  3350. }
  3351. else
  3352. {
  3353. this.gb_Plan.DisplayLayout.Override.AllowRowFiltering = Infragistics.Win.DefaultableBoolean.False;
  3354. this.gb_Plan.DisplayLayout.Override.FilterUIType = Infragistics.Win.UltraWinGrid.FilterUIType.Default;
  3355. if(this.gb_Plan.DisplayLayout.Bands[0].ColumnFilters.Count>0)
  3356. {
  3357. for(int i=0;i<this.gb_Plan.DisplayLayout.Bands[0].ColumnFilters.Count;i++)
  3358. {
  3359. this.gb_Plan.DisplayLayout.Bands[0].ColumnFilters[i].FilterConditions.Clear();
  3360. }
  3361. }
  3362. this.gb_PlanState.DisplayLayout.Override.AllowRowFiltering = Infragistics.Win.DefaultableBoolean.False;
  3363. this.gb_PlanState.DisplayLayout.Override.FilterUIType = Infragistics.Win.UltraWinGrid.FilterUIType.Default;
  3364. if(this.gb_PlanState.DisplayLayout.Bands[0].ColumnFilters.Count>0)
  3365. {
  3366. for(int i=0;i<this.gb_PlanState.DisplayLayout.Bands[0].ColumnFilters.Count;i++)
  3367. {
  3368. this.gb_PlanState.DisplayLayout.Bands[0].ColumnFilters[i].FilterConditions.Clear();
  3369. }
  3370. }
  3371. this.gb_Stuff.DisplayLayout.Override.AllowRowFiltering = Infragistics.Win.DefaultableBoolean.False;
  3372. this.gb_Stuff.DisplayLayout.Override.FilterUIType = Infragistics.Win.UltraWinGrid.FilterUIType.Default;
  3373. if(this.gb_Stuff.DisplayLayout.Bands[0].ColumnFilters.Count>0)
  3374. {
  3375. for(int i=0;i<this.gb_Stuff.DisplayLayout.Bands[0].ColumnFilters.Count;i++)
  3376. {
  3377. this.gb_Stuff.DisplayLayout.Bands[0].ColumnFilters[i].FilterConditions.Clear();
  3378. }
  3379. }
  3380. }
  3381. }
  3382. catch(System.Exception ex)
  3383. {
  3384. System.Diagnostics.Debug.WriteLine(ex.ToString());
  3385. }
  3386. }
  3387. private void txt_Scid_End_Y_Click(object sender, System.EventArgs e)
  3388. {
  3389. this.txt_Scid_Begin_Y.Text=System.DateTime.Now.Date.ToString("yyMMdd");
  3390. if(this.cmb_EditType_Y.Value.ToString()=="1")
  3391. if(this.Scid_Where().Length==4)
  3392. {
  3393. this.txt_Scid_End_Y.Text=this.Scid_Where();
  3394. }
  3395. else
  3396. {
  3397. this.txt_Scid_End_Y.Text=Comm.ObjToStr(Comm.ObjToInt(this.Scid_Where().Substring(8))+1).PadLeft(4,'0');
  3398. }
  3399. }
  3400. private string Scid_Where()
  3401. {
  3402. string strOut="";
  3403. string ID="0001";
  3404. try
  3405. {
  3406. string sql="SELECT MAX(WORKORDER_ID) FROM KCJ3_ZY_PLAN WHERE DOWN_FLAG='1' ORDER BY WORKORDER_ID";
  3407. DataSet ds = (DataSet)ClientCommon._RemotingHelp.ExecuteMethod("CoilMachiningManage","Core.XgMes.Server.CoilMachiningManage.Common","GetDataSet",new object []{sql},out strOut);
  3408. if(ds.Tables.Count ==1 && ds.Tables[0].Rows.Count > 0 )
  3409. if(Comm.ObjToStr(ds.Tables[0].Rows[0][0])!="")
  3410. {
  3411. ID=Comm.ObjToStr(ds.Tables[0].Rows[0][0]);
  3412. }
  3413. else
  3414. {
  3415. ID="0001";
  3416. }
  3417. return ID;
  3418. }
  3419. catch(Exception ex)
  3420. {
  3421. System.Diagnostics.Debug.WriteLine(ex.ToString());
  3422. return ID;
  3423. }
  3424. }
  3425. private void cmb_EditType_Y_ValueChanged(object sender, System.EventArgs e)
  3426. {
  3427. if(this.cmb_EditType_Y.SelectedIndex==0)
  3428. {
  3429. this.txt_Scid_Begin_Y.ReadOnly=true;
  3430. this.txt_Scid_End_Y.ReadOnly=true;
  3431. this.txt_Scid_Top_Y.ReadOnly=true;
  3432. }
  3433. else
  3434. {
  3435. this.txt_Scid_Begin_Y.ReadOnly=false;
  3436. this.txt_Scid_End_Y.ReadOnly=false;
  3437. this.txt_Scid_Top_Y.ReadOnly=false;
  3438. }
  3439. }
  3440. #endregion
  3441. #region 初始化
  3442. private void Frm_PlanDrawUp_Load(object sender, System.EventArgs e)
  3443. {
  3444. Comm.SetGridSumArea(this.gb_Plan);
  3445. Comm.SetGridSumArea(this.gb_PlanState);
  3446. Comm.SetGridSumArea(this.gb_Stuff);
  3447. this.txt_Scid_Begin_Y.Text=System.DateTime.Now.Date.ToString("yyMMdd");
  3448. this.txt_Scid_Top_Y.Text="J9";
  3449. this.cmb_EditType_Y.SelectedIndex=0;
  3450. try
  3451. {
  3452. string strOut="";
  3453. string sql="";
  3454. DataSet ds;
  3455. //班次
  3456. sql ="SELECT ID_,NAME_ FROM SCM_BASE_INFO WHERE SORT_CODE = '3002'" ;
  3457. ds = (DataSet)ClientCommon._RemotingHelp.ExecuteMethod("CoilMachiningManage","Core.XgMes.Server.CoilMachiningManage.Common","GetDataSet",new object []{sql},out strOut);
  3458. ds.Tables[0].TableName="SCM_BASE_INFO";
  3459. Comm.Init_ComboControl(this.cmb_ClassOrder,"SCM_BASE_INFO","NAME_","ID_",ref ds);
  3460. //班组
  3461. sql ="SELECT ID_,NAME_ FROM SCM_BASE_INFO WHERE SORT_CODE = '3003'" ;
  3462. ds = (DataSet)ClientCommon._RemotingHelp.ExecuteMethod("CoilMachiningManage","Core.XgMes.Server.CoilMachiningManage.Common","GetDataSet",new object []{sql},out strOut);
  3463. ds.Tables[0].TableName="SCM_BASE_INFO";
  3464. Comm.Init_ComboControl(this.cmb_ClassTeam,"SCM_BASE_INFO","NAME_","ID_",ref ds);
  3465. //堆位
  3466. sql ="SELECT BUTTRESSCODE FROM KCJ_BUTTRESS WHERE BUTTRESSTYPE='0' AND ISVALID='1' ORDER BY BUTTRESSCODE ASC" ;
  3467. ds = (DataSet)ClientCommon._RemotingHelp.ExecuteMethod("CoilMachiningManage","Core.XgMes.Server.CoilMachiningManage.Common","GetDataSet",new object []{sql},out strOut);
  3468. ds.Tables[0].TableName="KCJ_BUTTRESS";
  3469. Comm.Init_ComboControl(this.cmb_Buress,"KCJ_BUTTRESS","BUTTRESSCODE","BUTTRESSCODE",ref ds);
  3470. //工艺类型
  3471. sql = "SELECT ID_,NAME_ FROM KCJ_BASEDATA WHERE SORT_CODE ='8077'";
  3472. ds = (DataSet)ClientCommon._RemotingHelp.ExecuteMethod("CoilMachiningManage", "Core.XgMes.Server.CoilMachiningManage.Common", "GetDataSet", new object[] { sql }, out strOut);
  3473. ds.Tables[0].TableName = "KCJ_BASEDATA";
  3474. Comm.Init_ComboControl(this.cmb_Gylx, "KCJ_BASEDATA", "NAME_", "ID_", ref ds);
  3475. //sql ="SELECT ID_,NAME_ FROM KCJ_BASEDATA WHERE SORT_CODE = '8055'" ;
  3476. //ds = (DataSet)ClientCommon._RemotingHelp.ExecuteMethod("CoilMachiningManage","Core.XgMes.Server.CoilMachiningManage.Common","GetDataSet",new object []{sql},out strOut);
  3477. //ds.Tables[0].TableName="KCJ_BASEDATA";
  3478. ////Comm.Init_ComboControl(this.cmb_ProcLine,"KCJ_BASEDATA","NAME_","ID_",ref ds);
  3479. //Comm.Init_ComboControl(this.cmb_ProcL,"KCJ_BASEDATA","NAME_","ID_",ref ds);
  3480. }
  3481. catch(Exception ex)
  3482. {
  3483. System.Diagnostics.Debug.WriteLine(ex.ToString());
  3484. }
  3485. }
  3486. #endregion
  3487. #region "导出报表"
  3488. private void ExportButtressInfo()
  3489. {
  3490. if(this.gb_PlanState.Rows.Count > 0)
  3491. {
  3492. Comm.ExPortExcel(this.gb_PlanState,this.excelExporter);
  3493. }
  3494. else
  3495. {
  3496. MessageBox.Show("无信息数据,不能导出!","提示",MessageBoxButtons.OK,MessageBoxIcon.Information);
  3497. }
  3498. }
  3499. #endregion
  3500. private void chk_BNumber_CheckedChanged(object sender, System.EventArgs e)
  3501. {
  3502. this.txt_BNumber.Enabled=this.chk_BNumber.Checked;
  3503. }
  3504. private void Print(string _Conntion)
  3505. {
  3506. try
  3507. {
  3508. string strOut="";
  3509. DataSet ds=(DataSet)Core.Mes.ClientFrameWork.ClientCommon._RemotingHelp.ExecuteMethod("CoilMachiningManage","Core.XgMes.Server.CoilMachiningManage.PlanDrawUp","PLAN_Print",new object[]{_Conntion},out strOut);
  3510. Core.XgMes.Client.Print.FrmPrintBase rtp = new Core.XgMes.Client.Print.FrmPrintBase();
  3511. rtp._rtpDataSet = ds;
  3512. rtp._rtpFileName=@"PlanQrawUp.rpt";
  3513. rtp.ShowDialog();
  3514. }
  3515. catch(Exception ex)
  3516. {
  3517. System.Diagnostics.Debug.WriteLine(ex.ToString());
  3518. }
  3519. }
  3520. private void chk_ProcLine_CheckedChanged(object sender, System.EventArgs e)
  3521. {
  3522. this.cmb_IS.Enabled=this.chk_ProcLine.Checked;
  3523. }
  3524. }
  3525. }