FrmTurnoffMoveButtress.cs 170 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126312731283129313031313132313331343135313631373138313931403141314231433144314531463147314831493150315131523153315431553156315731583159316031613162316331643165316631673168316931703171317231733174317531763177317831793180318131823183318431853186318731883189319031913192319331943195319631973198319932003201320232033204320532063207320832093210321132123213321432153216321732183219322032213222322332243225322632273228322932303231323232333234323532363237323832393240324132423243324432453246324732483249325032513252325332543255325632573258325932603261
  1. using System;
  2. using System.Drawing;
  3. using System.Collections;
  4. using System.ComponentModel;
  5. using System.Windows.Forms;
  6. using Core.Mes.ClientFrameWork;
  7. using Core.Mes.IBaseInterface;
  8. using System.Data;
  9. using System.Runtime.InteropServices;
  10. namespace Core.XgMes.Client.JGKC.TurnoffManager
  11. {
  12. /// <summary>
  13. /// FrmTurnoffMoveButtress 的摘要说明。
  14. /// </summary>
  15. public class FrmTurnoffMoveButtress : Mes.ClientFrameWork.FrmBase
  16. {
  17. private Infragistics.Win.UltraWinToolbars.UltraToolbarsManager ultraToolbarsManager1;
  18. private System.Windows.Forms.Panel panel1;
  19. private Infragistics.Win.UltraWinToolbars.UltraToolbarsDockArea _panel1_Toolbars_Dock_Area_Left;
  20. private Infragistics.Win.UltraWinToolbars.UltraToolbarsDockArea _panel1_Toolbars_Dock_Area_Right;
  21. private Infragistics.Win.UltraWinToolbars.UltraToolbarsDockArea _panel1_Toolbars_Dock_Area_Top;
  22. private Infragistics.Win.UltraWinToolbars.UltraToolbarsDockArea _panel1_Toolbars_Dock_Area_Bottom;
  23. private System.Data.DataSet ds_TurnoffButtress;
  24. private System.Data.DataTable dataTable2;
  25. private System.Data.DataColumn dataColumn24;
  26. private System.Data.DataColumn dataColumn25;
  27. private System.Data.DataColumn dataColumn26;
  28. private System.Data.DataColumn dataColumn23;
  29. private System.Data.DataColumn dataColumn27;
  30. private System.Data.DataColumn dataColumn28;
  31. private System.Data.DataColumn dataColumn29;
  32. private System.Data.DataColumn dataColumn30;
  33. private System.Data.DataColumn dataColumn31;
  34. private System.Data.DataColumn dataColumn32;
  35. private System.Data.DataColumn dataColumn33;
  36. private System.Data.DataColumn dataColumn34;
  37. private System.Data.DataColumn dataColumn35;
  38. private System.Data.DataColumn dataColumn36;
  39. private System.Data.DataColumn dataColumn37;
  40. private System.Data.DataColumn dataColumn42;
  41. private System.Data.DataColumn dataColumn16;
  42. private System.Data.DataColumn dataColumn19;
  43. private System.Data.DataColumn dataColumn1;
  44. private System.Data.DataColumn dataColumn2;
  45. private System.Data.DataColumn dataColumn4;
  46. private System.Data.DataColumn dataColumn3;
  47. private System.Data.DataColumn dataColumn5;
  48. private System.Data.DataColumn dataColumn6;
  49. private System.Data.DataColumn dataColumn7;
  50. private System.Data.DataColumn dataColumn8;
  51. private System.Data.DataColumn dataColumn9;
  52. private Infragistics.Win.UltraWinGrid.ExcelExport.UltraGridExcelExporter excelExporter;
  53. private Infragistics.Win.Misc.UltraGroupBox ultraGroupBox1;
  54. private Infragistics.Win.Misc.UltraButton btn_ClearFilter;
  55. private Infragistics.Win.UltraWinEditors.UltraCheckEditor chk_AllowFilter;
  56. private Infragistics.Win.UltraWinEditors.UltraComboEditor cmb_ProductLine;
  57. private Infragistics.Win.UltraWinEditors.UltraCheckEditor chk_LineAndSteel;
  58. private Infragistics.Win.Misc.UltraLabel ultraLabel10;
  59. private Infragistics.Win.UltraWinEditors.UltraTextEditor txt_RollNOEnd;
  60. private Infragistics.Win.UltraWinEditors.UltraTextEditor txt_RollNOBegin;
  61. private Infragistics.Win.UltraWinEditors.UltraTextEditor txt_RollTop;
  62. private Infragistics.Win.UltraWinEditors.UltraCheckEditor chk_RollNum;
  63. private Infragistics.Win.UltraWinEditors.UltraNumericEditor txt_CD;
  64. private Infragistics.Win.UltraWinEditors.UltraNumericEditor txt_KD;
  65. private Infragistics.Win.UltraWinEditors.UltraNumericEditor txt_HD;
  66. private Infragistics.Win.UltraWinEditors.UltraCheckEditor chk_Spet;
  67. private Infragistics.Win.UltraWinEditors.UltraTextEditor txt_Condole;
  68. private Infragistics.Win.UltraWinEditors.UltraCheckEditor chk_Condole;
  69. private Infragistics.Win.UltraWinGrid.UltraCombo cmb_SteelType;
  70. private Infragistics.Win.UltraWinGrid.UltraCombo cmb_Area;
  71. private Infragistics.Win.UltraWinEditors.UltraCheckEditor chk_Area;
  72. private Infragistics.Win.UltraWinGrid.UltraCombo cmb_Buttress;
  73. private Infragistics.Win.UltraWinEditors.UltraCheckEditor Chk_Buttress;
  74. private Infragistics.Win.UltraWinEditors.UltraTextEditor txt_PlanNO;
  75. private Infragistics.Win.UltraWinEditors.UltraCheckEditor Chk_PlanNO;
  76. private Infragistics.Win.UltraWinEditors.UltraTextEditor txt_PactNO;
  77. private Infragistics.Win.UltraWinEditors.UltraCheckEditor Chk_PactNO;
  78. private Infragistics.Win.Misc.UltraExpandableGroupBox ultraExpandableGroupBox1;
  79. private Infragistics.Win.Misc.UltraExpandableGroupBoxPanel ultraExpandableGroupBoxPanel1;
  80. private System.Windows.Forms.Panel panel2;
  81. private Infragistics.Win.UltraWinEditors.UltraTextEditor txt_XDH;
  82. private Infragistics.Win.UltraWinEditors.UltraTextEditor txt_YDH;
  83. private Infragistics.Win.UltraWinEditors.UltraCheckEditor Chk_Replace;
  84. private Infragistics.Win.UltraWinEditors.UltraCheckEditor Chk_Add;
  85. private Infragistics.Win.UltraWinGrid.UltraCombo txt_HandleMan;
  86. private Infragistics.Win.Misc.UltraLabel ultraLabel9;
  87. private Infragistics.Win.UltraWinEditors.UltraDateTimeEditor Dte_AjustTime;
  88. private Infragistics.Win.Misc.UltraLabel ultraLabel8;
  89. private Infragistics.Win.UltraWinGrid.UltraCombo cmb_BZ;
  90. private Infragistics.Win.Misc.UltraLabel ultraLabel6;
  91. private Infragistics.Win.UltraWinGrid.UltraCombo cmb_BC;
  92. private Infragistics.Win.Misc.UltraLabel ultraLabel7;
  93. private Infragistics.Win.UltraWinGrid.UltraCombo cmb_NewArea;
  94. private Infragistics.Win.Misc.UltraLabel ultraLabel5;
  95. private Infragistics.Win.UltraWinEditors.UltraTextEditor txt_XDHDate;
  96. private Infragistics.Win.UltraWinEditors.UltraTextEditor txt_YDHDate;
  97. private Infragistics.Win.UltraWinEditors.UltraCheckEditor chk_XH;
  98. private Infragistics.Win.UltraWinEditors.UltraTextEditor txt_YY;
  99. private System.Windows.Forms.Label lab_Weight;
  100. private Infragistics.Win.UltraWinEditors.UltraTextEditor txt_XH;
  101. private Infragistics.Win.Misc.UltraLabel ultraLabel4;
  102. private Infragistics.Win.Misc.UltraLabel ultraLabel3;
  103. private Infragistics.Win.UltraWinGrid.UltraCombo cmb_NewButtress;
  104. private Infragistics.Win.Misc.UltraLabel ultraLabel2;
  105. private Infragistics.Win.UltraWinGrid.UltraCombo cmb_OldButtress;
  106. private Infragistics.Win.Misc.UltraLabel ultraLabel1;
  107. private Infragistics.Win.UltraWinGrid.UltraGrid dg_TurnoffButtress;
  108. private System.Data.DataColumn dataColumn10;
  109. private System.Data.DataColumn dataColumn11;
  110. private Infragistics.Win.UltraWinEditors.UltraCheckEditor chk_Size;
  111. private Infragistics.Win.Misc.UltraLabel ultraLabel11;
  112. private Infragistics.Win.Misc.UltraLabel ultraLabel13;
  113. private Infragistics.Win.UltraWinEditors.UltraNumericEditor txt_KS;
  114. private Infragistics.Win.UltraWinEditors.UltraNumericEditor txt_CS;
  115. private Infragistics.Win.UltraWinEditors.UltraComboEditor cmb_KCondition;
  116. private Infragistics.Win.UltraWinEditors.UltraComboEditor cmb_CCondition;
  117. private System.Data.DataColumn dataColumn12;
  118. private Infragistics.Win.Misc.UltraLabel ultraLabel12;
  119. private System.Data.DataColumn dataColumn13;
  120. private Infragistics.Win.Misc.UltraLabel ultraLabel14;
  121. private System.Data.DataColumn dataColumn14;
  122. private Infragistics.Win.Misc.UltraLabel ultraLabel15;
  123. private System.Data.DataColumn dataColumn15;
  124. private System.Data.DataColumn dataColumn17;
  125. private DataColumn dataColumn18;
  126. private DataColumn dataColumn20;
  127. private DataColumn dataColumn21;
  128. private DataColumn dataColumn22;
  129. private DataColumn dataColumn38;
  130. private Infragistics.Win.UltraWinEditors.UltraCheckEditor chk_SendType;
  131. private DataColumn dataColumn39;
  132. private DataColumn dataColumn40;
  133. private DataColumn dataColumn41;
  134. private DataColumn dataColumn43;
  135. private DataColumn dataColumn44;
  136. private DataColumn dataColumn45;
  137. private Infragistics.Win.UltraWinEditors.UltraComboEditor ult_Remark;
  138. private System.ComponentModel.IContainer components;
  139. public FrmTurnoffMoveButtress()
  140. {
  141. //
  142. // Windows 窗体设计器支持所必需的
  143. //
  144. InitializeComponent();
  145. //
  146. // TODO: 在 InitializeComponent 调用后添加任何构造函数代码
  147. //
  148. }
  149. /// <summary>
  150. /// 清理所有正在使用的资源。
  151. /// </summary>
  152. protected override void Dispose( bool disposing )
  153. {
  154. if( disposing )
  155. {
  156. if(components != null)
  157. {
  158. components.Dispose();
  159. }
  160. }
  161. base.Dispose( disposing );
  162. }
  163. #region Windows 窗体设计器生成的代码
  164. /// <summary>
  165. /// 设计器支持所需的方法 - 不要使用代码编辑器修改
  166. /// 此方法的内容。
  167. /// </summary>
  168. private void InitializeComponent()
  169. {
  170. this.components = new System.ComponentModel.Container();
  171. Infragistics.Win.UltraWinToolbars.UltraToolbar ultraToolbar1 = new Infragistics.Win.UltraWinToolbars.UltraToolbar("工具栏");
  172. Infragistics.Win.UltraWinToolbars.ButtonTool buttonTool1 = new Infragistics.Win.UltraWinToolbars.ButtonTool("MoveButtress");
  173. Infragistics.Win.UltraWinToolbars.ButtonTool buttonTool2 = new Infragistics.Win.UltraWinToolbars.ButtonTool("QueryButtress");
  174. Infragistics.Win.UltraWinToolbars.ButtonTool buttonTool3 = new Infragistics.Win.UltraWinToolbars.ButtonTool("ExportButtressInfo");
  175. Infragistics.Win.UltraWinToolbars.ButtonTool buttonTool4 = new Infragistics.Win.UltraWinToolbars.ButtonTool("Print");
  176. Infragistics.Win.UltraWinToolbars.ButtonTool buttonTool5 = new Infragistics.Win.UltraWinToolbars.ButtonTool("Close");
  177. Infragistics.Win.UltraWinToolbars.ButtonTool buttonTool6 = new Infragistics.Win.UltraWinToolbars.ButtonTool("PRINT_LOG");
  178. Infragistics.Win.UltraWinToolbars.ButtonTool buttonTool7 = new Infragistics.Win.UltraWinToolbars.ButtonTool("MoveButtress");
  179. Infragistics.Win.UltraWinToolbars.ButtonTool buttonTool8 = new Infragistics.Win.UltraWinToolbars.ButtonTool("QueryButtress");
  180. Infragistics.Win.UltraWinToolbars.ButtonTool buttonTool9 = new Infragistics.Win.UltraWinToolbars.ButtonTool("Close");
  181. Infragistics.Win.UltraWinToolbars.ButtonTool buttonTool10 = new Infragistics.Win.UltraWinToolbars.ButtonTool("ExportButtressInfo");
  182. Infragistics.Win.UltraWinToolbars.ButtonTool buttonTool11 = new Infragistics.Win.UltraWinToolbars.ButtonTool("Print");
  183. Infragistics.Win.UltraWinToolbars.ButtonTool buttonTool12 = new Infragistics.Win.UltraWinToolbars.ButtonTool("PRINT_LOG");
  184. Infragistics.Win.Appearance appearance1 = new Infragistics.Win.Appearance();
  185. Infragistics.Win.Appearance appearance2 = new Infragistics.Win.Appearance();
  186. Infragistics.Win.Appearance appearance3 = new Infragistics.Win.Appearance();
  187. Infragistics.Win.ValueListItem valueListItem1 = new Infragistics.Win.ValueListItem();
  188. Infragistics.Win.ValueListItem valueListItem2 = new Infragistics.Win.ValueListItem();
  189. Infragistics.Win.ValueListItem valueListItem3 = new Infragistics.Win.ValueListItem();
  190. Infragistics.Win.ValueListItem valueListItem4 = new Infragistics.Win.ValueListItem();
  191. Infragistics.Win.ValueListItem valueListItem5 = new Infragistics.Win.ValueListItem();
  192. Infragistics.Win.ValueListItem valueListItem6 = new Infragistics.Win.ValueListItem();
  193. Infragistics.Win.ValueListItem valueListItem7 = new Infragistics.Win.ValueListItem();
  194. Infragistics.Win.ValueListItem valueListItem8 = new Infragistics.Win.ValueListItem();
  195. Infragistics.Win.ValueListItem valueListItem9 = new Infragistics.Win.ValueListItem();
  196. Infragistics.Win.ValueListItem valueListItem10 = new Infragistics.Win.ValueListItem();
  197. Infragistics.Win.Appearance appearance4 = new Infragistics.Win.Appearance();
  198. Infragistics.Win.Appearance appearance5 = new Infragistics.Win.Appearance();
  199. Infragistics.Win.Appearance appearance6 = new Infragistics.Win.Appearance();
  200. Infragistics.Win.Appearance appearance7 = new Infragistics.Win.Appearance();
  201. Infragistics.Win.Appearance appearance8 = new Infragistics.Win.Appearance();
  202. Infragistics.Win.ValueListItem valueListItem11 = new Infragistics.Win.ValueListItem();
  203. Infragistics.Win.ValueListItem valueListItem12 = new Infragistics.Win.ValueListItem();
  204. Infragistics.Win.Appearance appearance9 = new Infragistics.Win.Appearance();
  205. Infragistics.Win.Appearance appearance10 = new Infragistics.Win.Appearance();
  206. Infragistics.Win.Appearance appearance11 = new Infragistics.Win.Appearance();
  207. Infragistics.Win.Appearance appearance12 = new Infragistics.Win.Appearance();
  208. Infragistics.Win.Appearance appearance13 = new Infragistics.Win.Appearance();
  209. Infragistics.Win.Appearance appearance14 = new Infragistics.Win.Appearance();
  210. Infragistics.Win.Appearance appearance15 = new Infragistics.Win.Appearance();
  211. Infragistics.Win.Appearance appearance16 = new Infragistics.Win.Appearance();
  212. Infragistics.Win.Appearance appearance17 = new Infragistics.Win.Appearance();
  213. Infragistics.Win.Appearance appearance18 = new Infragistics.Win.Appearance();
  214. Infragistics.Win.Appearance appearance19 = new Infragistics.Win.Appearance();
  215. Infragistics.Win.Appearance appearance20 = new Infragistics.Win.Appearance();
  216. Infragistics.Win.Appearance appearance21 = new Infragistics.Win.Appearance();
  217. Infragistics.Win.ValueListItem valueListItem13 = new Infragistics.Win.ValueListItem();
  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 ultraGridBand1 = new Infragistics.Win.UltraWinGrid.UltraGridBand("KCJ_TURNOFFBUTTRESSLIST", -1);
  233. Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn1 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("PRODUCTLINE");
  234. Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn2 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("ROLLNUMBER");
  235. Infragistics.Win.Appearance appearance36 = new Infragistics.Win.Appearance();
  236. Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn3 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("MOTHERBOARDNUMBER");
  237. Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn4 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("BILLETID");
  238. Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn5 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("DETERMINANTCARDNUMBER");
  239. Infragistics.Win.Appearance appearance37 = new Infragistics.Win.Appearance();
  240. Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn6 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("SPET");
  241. Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn7 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("THEORYWEIGHT");
  242. Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn8 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("DETERMINANTRESULT");
  243. Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn9 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("PLANNO");
  244. Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn10 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("PACTNO");
  245. Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn11 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("STOVENO");
  246. Infragistics.Win.Appearance appearance38 = new Infragistics.Win.Appearance();
  247. Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn12 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("ORDERNO");
  248. Infragistics.Win.Appearance appearance39 = new Infragistics.Win.Appearance();
  249. Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn13 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("PLY");
  250. Infragistics.Win.Appearance appearance40 = new Infragistics.Win.Appearance();
  251. Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn14 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("WIDTH");
  252. Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn15 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("LENGTH");
  253. Infragistics.Win.Appearance appearance41 = new Infragistics.Win.Appearance();
  254. Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn16 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("FACEQUALITY");
  255. Infragistics.Win.Appearance appearance42 = new Infragistics.Win.Appearance();
  256. Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn17 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("BUGREASON");
  257. Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn18 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("CLIPTYPEPROCESS");
  258. Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn19 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("SOURCEID");
  259. Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn20 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("INTIME");
  260. Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn21 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("BUTTRESS");
  261. Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn22 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("CONDOLENUMBER");
  262. Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn23 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("CONDOLELAYER");
  263. Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn24 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("BUTTRESSLAYER");
  264. Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn25 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("LOGICALLAYER");
  265. Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn26 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("AREA");
  266. Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn27 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("REMARK");
  267. Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn28 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("HANDREMARK");
  268. Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn29 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("CREATTIME");
  269. Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn30 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("OSPET");
  270. Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn31 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("INSTEEL");
  271. Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn32 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("SENDBEGINDATE");
  272. Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn33 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("YPLANNO");
  273. Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn34 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("YORDERNO");
  274. Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn35 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("ORDERBUYER");
  275. Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn36 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("PRODUCT_NAME");
  276. Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn37 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("MEMO");
  277. Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn38 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("DETECTMARBOOKIN");
  278. Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn39 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("ZHPDBH");
  279. Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn40 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("BUYERNAME");
  280. Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn41 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("STATIONNAME");
  281. Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn42 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("OSTEEL");
  282. Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn43 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("OPLY");
  283. Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn44 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("OWIDTH");
  284. Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn45 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("OLENGTH");
  285. Infragistics.Win.UltraWinGrid.SummarySettings summarySettings1 = new Infragistics.Win.UltraWinGrid.SummarySettings("", Infragistics.Win.UltraWinGrid.SummaryType.Count, null, "BILLETID", 3, true, "KCJ_TURNOFFBUTTRESSLIST", 0, Infragistics.Win.UltraWinGrid.SummaryPosition.UseSummaryPositionColumn, null, -1, false);
  286. Infragistics.Win.Appearance appearance43 = new Infragistics.Win.Appearance();
  287. Infragistics.Win.Appearance appearance44 = new Infragistics.Win.Appearance();
  288. Infragistics.Win.UltraWinGrid.SummarySettings summarySettings2 = new Infragistics.Win.UltraWinGrid.SummarySettings("", Infragistics.Win.UltraWinGrid.SummaryType.Sum, null, "THEORYWEIGHT", 6, true, "KCJ_TURNOFFBUTTRESSLIST", 0, Infragistics.Win.UltraWinGrid.SummaryPosition.UseSummaryPositionColumn, null, -1, false);
  289. Infragistics.Win.Appearance appearance45 = new Infragistics.Win.Appearance();
  290. Infragistics.Win.Appearance appearance46 = new Infragistics.Win.Appearance();
  291. Infragistics.Win.Appearance appearance47 = new Infragistics.Win.Appearance();
  292. Infragistics.Win.Appearance appearance48 = new Infragistics.Win.Appearance();
  293. Infragistics.Win.Appearance appearance49 = new Infragistics.Win.Appearance();
  294. Infragistics.Win.Appearance appearance50 = new Infragistics.Win.Appearance();
  295. Infragistics.Win.Appearance appearance51 = new Infragistics.Win.Appearance();
  296. Infragistics.Win.Appearance appearance52 = new Infragistics.Win.Appearance();
  297. Infragistics.Win.Appearance appearance53 = new Infragistics.Win.Appearance();
  298. Infragistics.Win.Appearance appearance54 = new Infragistics.Win.Appearance();
  299. Infragistics.Win.Appearance appearance55 = new Infragistics.Win.Appearance();
  300. Infragistics.Win.Appearance appearance56 = new Infragistics.Win.Appearance();
  301. this.ultraToolbarsManager1 = new Infragistics.Win.UltraWinToolbars.UltraToolbarsManager(this.components);
  302. this.panel1 = new System.Windows.Forms.Panel();
  303. this._panel1_Toolbars_Dock_Area_Left = new Infragistics.Win.UltraWinToolbars.UltraToolbarsDockArea();
  304. this._panel1_Toolbars_Dock_Area_Right = new Infragistics.Win.UltraWinToolbars.UltraToolbarsDockArea();
  305. this._panel1_Toolbars_Dock_Area_Top = new Infragistics.Win.UltraWinToolbars.UltraToolbarsDockArea();
  306. this._panel1_Toolbars_Dock_Area_Bottom = new Infragistics.Win.UltraWinToolbars.UltraToolbarsDockArea();
  307. this.ds_TurnoffButtress = new System.Data.DataSet();
  308. this.dataTable2 = new System.Data.DataTable();
  309. this.dataColumn24 = new System.Data.DataColumn();
  310. this.dataColumn25 = new System.Data.DataColumn();
  311. this.dataColumn26 = new System.Data.DataColumn();
  312. this.dataColumn23 = new System.Data.DataColumn();
  313. this.dataColumn36 = new System.Data.DataColumn();
  314. this.dataColumn9 = new System.Data.DataColumn();
  315. this.dataColumn33 = new System.Data.DataColumn();
  316. this.dataColumn37 = new System.Data.DataColumn();
  317. this.dataColumn28 = new System.Data.DataColumn();
  318. this.dataColumn8 = new System.Data.DataColumn();
  319. this.dataColumn27 = new System.Data.DataColumn();
  320. this.dataColumn29 = new System.Data.DataColumn();
  321. this.dataColumn30 = new System.Data.DataColumn();
  322. this.dataColumn31 = new System.Data.DataColumn();
  323. this.dataColumn32 = new System.Data.DataColumn();
  324. this.dataColumn34 = new System.Data.DataColumn();
  325. this.dataColumn35 = new System.Data.DataColumn();
  326. this.dataColumn42 = new System.Data.DataColumn();
  327. this.dataColumn16 = new System.Data.DataColumn();
  328. this.dataColumn19 = new System.Data.DataColumn();
  329. this.dataColumn1 = new System.Data.DataColumn();
  330. this.dataColumn2 = new System.Data.DataColumn();
  331. this.dataColumn4 = new System.Data.DataColumn();
  332. this.dataColumn3 = new System.Data.DataColumn();
  333. this.dataColumn5 = new System.Data.DataColumn();
  334. this.dataColumn6 = new System.Data.DataColumn();
  335. this.dataColumn7 = new System.Data.DataColumn();
  336. this.dataColumn10 = new System.Data.DataColumn();
  337. this.dataColumn11 = new System.Data.DataColumn();
  338. this.dataColumn12 = new System.Data.DataColumn();
  339. this.dataColumn13 = new System.Data.DataColumn();
  340. this.dataColumn14 = new System.Data.DataColumn();
  341. this.dataColumn15 = new System.Data.DataColumn();
  342. this.dataColumn17 = new System.Data.DataColumn();
  343. this.dataColumn18 = new System.Data.DataColumn();
  344. this.dataColumn20 = new System.Data.DataColumn();
  345. this.dataColumn21 = new System.Data.DataColumn();
  346. this.dataColumn22 = new System.Data.DataColumn();
  347. this.dataColumn38 = new System.Data.DataColumn();
  348. this.dataColumn39 = new System.Data.DataColumn();
  349. this.dataColumn40 = new System.Data.DataColumn();
  350. this.dataColumn41 = new System.Data.DataColumn();
  351. this.dataColumn43 = new System.Data.DataColumn();
  352. this.dataColumn44 = new System.Data.DataColumn();
  353. this.dataColumn45 = new System.Data.DataColumn();
  354. this.excelExporter = new Infragistics.Win.UltraWinGrid.ExcelExport.UltraGridExcelExporter();
  355. this.ultraGroupBox1 = new Infragistics.Win.Misc.UltraGroupBox();
  356. this.chk_SendType = new Infragistics.Win.UltraWinEditors.UltraCheckEditor();
  357. this.ultraLabel15 = new Infragistics.Win.Misc.UltraLabel();
  358. this.ultraLabel14 = new Infragistics.Win.Misc.UltraLabel();
  359. this.ultraLabel12 = new Infragistics.Win.Misc.UltraLabel();
  360. this.cmb_CCondition = new Infragistics.Win.UltraWinEditors.UltraComboEditor();
  361. this.cmb_KCondition = new Infragistics.Win.UltraWinEditors.UltraComboEditor();
  362. this.txt_CS = new Infragistics.Win.UltraWinEditors.UltraNumericEditor();
  363. this.ultraLabel13 = new Infragistics.Win.Misc.UltraLabel();
  364. this.ultraLabel11 = new Infragistics.Win.Misc.UltraLabel();
  365. this.txt_KS = new Infragistics.Win.UltraWinEditors.UltraNumericEditor();
  366. this.chk_Size = new Infragistics.Win.UltraWinEditors.UltraCheckEditor();
  367. this.btn_ClearFilter = new Infragistics.Win.Misc.UltraButton();
  368. this.chk_AllowFilter = new Infragistics.Win.UltraWinEditors.UltraCheckEditor();
  369. this.cmb_ProductLine = new Infragistics.Win.UltraWinEditors.UltraComboEditor();
  370. this.chk_LineAndSteel = new Infragistics.Win.UltraWinEditors.UltraCheckEditor();
  371. this.ultraLabel10 = new Infragistics.Win.Misc.UltraLabel();
  372. this.txt_RollNOEnd = new Infragistics.Win.UltraWinEditors.UltraTextEditor();
  373. this.txt_RollNOBegin = new Infragistics.Win.UltraWinEditors.UltraTextEditor();
  374. this.txt_RollTop = new Infragistics.Win.UltraWinEditors.UltraTextEditor();
  375. this.chk_RollNum = new Infragistics.Win.UltraWinEditors.UltraCheckEditor();
  376. this.txt_CD = new Infragistics.Win.UltraWinEditors.UltraNumericEditor();
  377. this.txt_KD = new Infragistics.Win.UltraWinEditors.UltraNumericEditor();
  378. this.txt_HD = new Infragistics.Win.UltraWinEditors.UltraNumericEditor();
  379. this.chk_Spet = new Infragistics.Win.UltraWinEditors.UltraCheckEditor();
  380. this.txt_Condole = new Infragistics.Win.UltraWinEditors.UltraTextEditor();
  381. this.chk_Condole = new Infragistics.Win.UltraWinEditors.UltraCheckEditor();
  382. this.cmb_SteelType = new Infragistics.Win.UltraWinGrid.UltraCombo();
  383. this.cmb_Area = new Infragistics.Win.UltraWinGrid.UltraCombo();
  384. this.chk_Area = new Infragistics.Win.UltraWinEditors.UltraCheckEditor();
  385. this.cmb_Buttress = new Infragistics.Win.UltraWinGrid.UltraCombo();
  386. this.Chk_Buttress = new Infragistics.Win.UltraWinEditors.UltraCheckEditor();
  387. this.txt_PlanNO = new Infragistics.Win.UltraWinEditors.UltraTextEditor();
  388. this.Chk_PlanNO = new Infragistics.Win.UltraWinEditors.UltraCheckEditor();
  389. this.txt_PactNO = new Infragistics.Win.UltraWinEditors.UltraTextEditor();
  390. this.Chk_PactNO = new Infragistics.Win.UltraWinEditors.UltraCheckEditor();
  391. this.ultraExpandableGroupBox1 = new Infragistics.Win.Misc.UltraExpandableGroupBox();
  392. this.ultraExpandableGroupBoxPanel1 = new Infragistics.Win.Misc.UltraExpandableGroupBoxPanel();
  393. this.ult_Remark = new Infragistics.Win.UltraWinEditors.UltraComboEditor();
  394. this.txt_XDH = new Infragistics.Win.UltraWinEditors.UltraTextEditor();
  395. this.txt_YDH = new Infragistics.Win.UltraWinEditors.UltraTextEditor();
  396. this.Chk_Replace = new Infragistics.Win.UltraWinEditors.UltraCheckEditor();
  397. this.Chk_Add = new Infragistics.Win.UltraWinEditors.UltraCheckEditor();
  398. this.txt_HandleMan = new Infragistics.Win.UltraWinGrid.UltraCombo();
  399. this.ultraLabel9 = new Infragistics.Win.Misc.UltraLabel();
  400. this.Dte_AjustTime = new Infragistics.Win.UltraWinEditors.UltraDateTimeEditor();
  401. this.ultraLabel8 = new Infragistics.Win.Misc.UltraLabel();
  402. this.cmb_BZ = new Infragistics.Win.UltraWinGrid.UltraCombo();
  403. this.ultraLabel6 = new Infragistics.Win.Misc.UltraLabel();
  404. this.cmb_BC = new Infragistics.Win.UltraWinGrid.UltraCombo();
  405. this.ultraLabel7 = new Infragistics.Win.Misc.UltraLabel();
  406. this.cmb_NewArea = new Infragistics.Win.UltraWinGrid.UltraCombo();
  407. this.ultraLabel5 = new Infragistics.Win.Misc.UltraLabel();
  408. this.txt_XDHDate = new Infragistics.Win.UltraWinEditors.UltraTextEditor();
  409. this.txt_YDHDate = new Infragistics.Win.UltraWinEditors.UltraTextEditor();
  410. this.chk_XH = new Infragistics.Win.UltraWinEditors.UltraCheckEditor();
  411. this.txt_YY = new Infragistics.Win.UltraWinEditors.UltraTextEditor();
  412. this.lab_Weight = new System.Windows.Forms.Label();
  413. this.txt_XH = new Infragistics.Win.UltraWinEditors.UltraTextEditor();
  414. this.ultraLabel4 = new Infragistics.Win.Misc.UltraLabel();
  415. this.ultraLabel3 = new Infragistics.Win.Misc.UltraLabel();
  416. this.cmb_NewButtress = new Infragistics.Win.UltraWinGrid.UltraCombo();
  417. this.ultraLabel2 = new Infragistics.Win.Misc.UltraLabel();
  418. this.cmb_OldButtress = new Infragistics.Win.UltraWinGrid.UltraCombo();
  419. this.ultraLabel1 = new Infragistics.Win.Misc.UltraLabel();
  420. this.panel2 = new System.Windows.Forms.Panel();
  421. this.dg_TurnoffButtress = new Infragistics.Win.UltraWinGrid.UltraGrid();
  422. ((System.ComponentModel.ISupportInitialize)(this.ultraToolbarsManager1)).BeginInit();
  423. this.panel1.SuspendLayout();
  424. ((System.ComponentModel.ISupportInitialize)(this.ds_TurnoffButtress)).BeginInit();
  425. ((System.ComponentModel.ISupportInitialize)(this.dataTable2)).BeginInit();
  426. ((System.ComponentModel.ISupportInitialize)(this.ultraGroupBox1)).BeginInit();
  427. this.ultraGroupBox1.SuspendLayout();
  428. ((System.ComponentModel.ISupportInitialize)(this.cmb_CCondition)).BeginInit();
  429. ((System.ComponentModel.ISupportInitialize)(this.cmb_KCondition)).BeginInit();
  430. ((System.ComponentModel.ISupportInitialize)(this.txt_CS)).BeginInit();
  431. ((System.ComponentModel.ISupportInitialize)(this.txt_KS)).BeginInit();
  432. ((System.ComponentModel.ISupportInitialize)(this.cmb_ProductLine)).BeginInit();
  433. ((System.ComponentModel.ISupportInitialize)(this.txt_RollNOEnd)).BeginInit();
  434. ((System.ComponentModel.ISupportInitialize)(this.txt_RollNOBegin)).BeginInit();
  435. ((System.ComponentModel.ISupportInitialize)(this.txt_RollTop)).BeginInit();
  436. ((System.ComponentModel.ISupportInitialize)(this.txt_CD)).BeginInit();
  437. ((System.ComponentModel.ISupportInitialize)(this.txt_KD)).BeginInit();
  438. ((System.ComponentModel.ISupportInitialize)(this.txt_HD)).BeginInit();
  439. ((System.ComponentModel.ISupportInitialize)(this.txt_Condole)).BeginInit();
  440. ((System.ComponentModel.ISupportInitialize)(this.cmb_SteelType)).BeginInit();
  441. ((System.ComponentModel.ISupportInitialize)(this.cmb_Area)).BeginInit();
  442. ((System.ComponentModel.ISupportInitialize)(this.cmb_Buttress)).BeginInit();
  443. ((System.ComponentModel.ISupportInitialize)(this.txt_PlanNO)).BeginInit();
  444. ((System.ComponentModel.ISupportInitialize)(this.txt_PactNO)).BeginInit();
  445. ((System.ComponentModel.ISupportInitialize)(this.ultraExpandableGroupBox1)).BeginInit();
  446. this.ultraExpandableGroupBox1.SuspendLayout();
  447. this.ultraExpandableGroupBoxPanel1.SuspendLayout();
  448. ((System.ComponentModel.ISupportInitialize)(this.ult_Remark)).BeginInit();
  449. ((System.ComponentModel.ISupportInitialize)(this.txt_XDH)).BeginInit();
  450. ((System.ComponentModel.ISupportInitialize)(this.txt_YDH)).BeginInit();
  451. ((System.ComponentModel.ISupportInitialize)(this.txt_HandleMan)).BeginInit();
  452. ((System.ComponentModel.ISupportInitialize)(this.Dte_AjustTime)).BeginInit();
  453. ((System.ComponentModel.ISupportInitialize)(this.cmb_BZ)).BeginInit();
  454. ((System.ComponentModel.ISupportInitialize)(this.cmb_BC)).BeginInit();
  455. ((System.ComponentModel.ISupportInitialize)(this.cmb_NewArea)).BeginInit();
  456. ((System.ComponentModel.ISupportInitialize)(this.txt_XDHDate)).BeginInit();
  457. ((System.ComponentModel.ISupportInitialize)(this.txt_YDHDate)).BeginInit();
  458. ((System.ComponentModel.ISupportInitialize)(this.txt_YY)).BeginInit();
  459. ((System.ComponentModel.ISupportInitialize)(this.txt_XH)).BeginInit();
  460. ((System.ComponentModel.ISupportInitialize)(this.cmb_NewButtress)).BeginInit();
  461. ((System.ComponentModel.ISupportInitialize)(this.cmb_OldButtress)).BeginInit();
  462. this.panel2.SuspendLayout();
  463. ((System.ComponentModel.ISupportInitialize)(this.dg_TurnoffButtress)).BeginInit();
  464. this.SuspendLayout();
  465. //
  466. // ultraToolbarsManager1
  467. //
  468. this.ultraToolbarsManager1.DesignerFlags = 1;
  469. this.ultraToolbarsManager1.DockWithinContainer = this.panel1;
  470. this.ultraToolbarsManager1.ShowFullMenusDelay = 500;
  471. this.ultraToolbarsManager1.Style = Infragistics.Win.UltraWinToolbars.ToolbarStyle.Office2000;
  472. ultraToolbar1.DockedColumn = 0;
  473. ultraToolbar1.DockedRow = 0;
  474. ultraToolbar1.Text = "工具栏";
  475. buttonTool1.InstanceProps.IsFirstInGroup = true;
  476. buttonTool2.InstanceProps.IsFirstInGroup = true;
  477. buttonTool3.InstanceProps.IsFirstInGroup = true;
  478. buttonTool4.InstanceProps.IsFirstInGroup = true;
  479. buttonTool5.InstanceProps.IsFirstInGroup = true;
  480. buttonTool6.InstanceProps.IsFirstInGroup = true;
  481. ultraToolbar1.Tools.AddRange(new Infragistics.Win.UltraWinToolbars.ToolBase[] {
  482. buttonTool1,
  483. buttonTool2,
  484. buttonTool3,
  485. buttonTool4,
  486. buttonTool5,
  487. buttonTool6});
  488. this.ultraToolbarsManager1.Toolbars.AddRange(new Infragistics.Win.UltraWinToolbars.UltraToolbar[] {
  489. ultraToolbar1});
  490. this.ultraToolbarsManager1.ToolbarSettings.AllowCustomize = Infragistics.Win.DefaultableBoolean.False;
  491. buttonTool7.SharedProps.Caption = "调整";
  492. buttonTool7.SharedProps.DisplayStyle = Infragistics.Win.UltraWinToolbars.ToolDisplayStyle.ImageAndText;
  493. buttonTool8.SharedProps.Caption = "查询";
  494. buttonTool8.SharedProps.DisplayStyle = Infragistics.Win.UltraWinToolbars.ToolDisplayStyle.ImageAndText;
  495. buttonTool9.SharedProps.Caption = "关闭";
  496. buttonTool9.SharedProps.DisplayStyle = Infragistics.Win.UltraWinToolbars.ToolDisplayStyle.ImageAndText;
  497. buttonTool10.SharedProps.Caption = "导出";
  498. buttonTool10.SharedProps.DisplayStyle = Infragistics.Win.UltraWinToolbars.ToolDisplayStyle.ImageAndText;
  499. buttonTool11.SharedProps.Caption = "打印";
  500. buttonTool11.SharedProps.DisplayStyle = Infragistics.Win.UltraWinToolbars.ToolDisplayStyle.ImageAndText;
  501. buttonTool12.SharedProps.Caption = "打印标签";
  502. buttonTool12.SharedProps.DisplayStyle = Infragistics.Win.UltraWinToolbars.ToolDisplayStyle.ImageAndText;
  503. this.ultraToolbarsManager1.Tools.AddRange(new Infragistics.Win.UltraWinToolbars.ToolBase[] {
  504. buttonTool7,
  505. buttonTool8,
  506. buttonTool9,
  507. buttonTool10,
  508. buttonTool11,
  509. buttonTool12});
  510. this.ultraToolbarsManager1.ToolClick += new Infragistics.Win.UltraWinToolbars.ToolClickEventHandler(this.ultraToolbarsManager1_ToolClick);
  511. //
  512. // panel1
  513. //
  514. this.panel1.Controls.Add(this._panel1_Toolbars_Dock_Area_Left);
  515. this.panel1.Controls.Add(this._panel1_Toolbars_Dock_Area_Right);
  516. this.panel1.Controls.Add(this._panel1_Toolbars_Dock_Area_Top);
  517. this.panel1.Controls.Add(this._panel1_Toolbars_Dock_Area_Bottom);
  518. this.panel1.Dock = System.Windows.Forms.DockStyle.Top;
  519. this.panel1.Location = new System.Drawing.Point(0, 0);
  520. this.panel1.Name = "panel1";
  521. this.panel1.Size = new System.Drawing.Size(1104, 32);
  522. this.panel1.TabIndex = 9;
  523. //
  524. // _panel1_Toolbars_Dock_Area_Left
  525. //
  526. this._panel1_Toolbars_Dock_Area_Left.AccessibleRole = System.Windows.Forms.AccessibleRole.Grouping;
  527. this._panel1_Toolbars_Dock_Area_Left.BackColor = System.Drawing.SystemColors.Control;
  528. this._panel1_Toolbars_Dock_Area_Left.DockedPosition = Infragistics.Win.UltraWinToolbars.DockedPosition.Left;
  529. this._panel1_Toolbars_Dock_Area_Left.ForeColor = System.Drawing.SystemColors.ControlText;
  530. this._panel1_Toolbars_Dock_Area_Left.Location = new System.Drawing.Point(0, 49);
  531. this._panel1_Toolbars_Dock_Area_Left.Name = "_panel1_Toolbars_Dock_Area_Left";
  532. this._panel1_Toolbars_Dock_Area_Left.Size = new System.Drawing.Size(0, 0);
  533. this._panel1_Toolbars_Dock_Area_Left.ToolbarsManager = this.ultraToolbarsManager1;
  534. //
  535. // _panel1_Toolbars_Dock_Area_Right
  536. //
  537. this._panel1_Toolbars_Dock_Area_Right.AccessibleRole = System.Windows.Forms.AccessibleRole.Grouping;
  538. this._panel1_Toolbars_Dock_Area_Right.BackColor = System.Drawing.SystemColors.Control;
  539. this._panel1_Toolbars_Dock_Area_Right.DockedPosition = Infragistics.Win.UltraWinToolbars.DockedPosition.Right;
  540. this._panel1_Toolbars_Dock_Area_Right.ForeColor = System.Drawing.SystemColors.ControlText;
  541. this._panel1_Toolbars_Dock_Area_Right.Location = new System.Drawing.Point(1104, 49);
  542. this._panel1_Toolbars_Dock_Area_Right.Name = "_panel1_Toolbars_Dock_Area_Right";
  543. this._panel1_Toolbars_Dock_Area_Right.Size = new System.Drawing.Size(0, 0);
  544. this._panel1_Toolbars_Dock_Area_Right.ToolbarsManager = this.ultraToolbarsManager1;
  545. //
  546. // _panel1_Toolbars_Dock_Area_Top
  547. //
  548. this._panel1_Toolbars_Dock_Area_Top.AccessibleRole = System.Windows.Forms.AccessibleRole.Grouping;
  549. this._panel1_Toolbars_Dock_Area_Top.BackColor = System.Drawing.SystemColors.Control;
  550. this._panel1_Toolbars_Dock_Area_Top.DockedPosition = Infragistics.Win.UltraWinToolbars.DockedPosition.Top;
  551. this._panel1_Toolbars_Dock_Area_Top.ForeColor = System.Drawing.SystemColors.ControlText;
  552. this._panel1_Toolbars_Dock_Area_Top.Location = new System.Drawing.Point(0, 0);
  553. this._panel1_Toolbars_Dock_Area_Top.Name = "_panel1_Toolbars_Dock_Area_Top";
  554. this._panel1_Toolbars_Dock_Area_Top.Size = new System.Drawing.Size(1104, 49);
  555. this._panel1_Toolbars_Dock_Area_Top.ToolbarsManager = this.ultraToolbarsManager1;
  556. //
  557. // _panel1_Toolbars_Dock_Area_Bottom
  558. //
  559. this._panel1_Toolbars_Dock_Area_Bottom.AccessibleRole = System.Windows.Forms.AccessibleRole.Grouping;
  560. this._panel1_Toolbars_Dock_Area_Bottom.BackColor = System.Drawing.SystemColors.Control;
  561. this._panel1_Toolbars_Dock_Area_Bottom.DockedPosition = Infragistics.Win.UltraWinToolbars.DockedPosition.Bottom;
  562. this._panel1_Toolbars_Dock_Area_Bottom.ForeColor = System.Drawing.SystemColors.ControlText;
  563. this._panel1_Toolbars_Dock_Area_Bottom.Location = new System.Drawing.Point(0, 32);
  564. this._panel1_Toolbars_Dock_Area_Bottom.Name = "_panel1_Toolbars_Dock_Area_Bottom";
  565. this._panel1_Toolbars_Dock_Area_Bottom.Size = new System.Drawing.Size(1104, 0);
  566. this._panel1_Toolbars_Dock_Area_Bottom.ToolbarsManager = this.ultraToolbarsManager1;
  567. //
  568. // ds_TurnoffButtress
  569. //
  570. this.ds_TurnoffButtress.DataSetName = "NewDataSet";
  571. this.ds_TurnoffButtress.Locale = new System.Globalization.CultureInfo("zh-CN");
  572. this.ds_TurnoffButtress.Tables.AddRange(new System.Data.DataTable[] {
  573. this.dataTable2});
  574. //
  575. // dataTable2
  576. //
  577. this.dataTable2.Columns.AddRange(new System.Data.DataColumn[] {
  578. this.dataColumn24,
  579. this.dataColumn25,
  580. this.dataColumn26,
  581. this.dataColumn23,
  582. this.dataColumn36,
  583. this.dataColumn9,
  584. this.dataColumn33,
  585. this.dataColumn37,
  586. this.dataColumn28,
  587. this.dataColumn8,
  588. this.dataColumn27,
  589. this.dataColumn29,
  590. this.dataColumn30,
  591. this.dataColumn31,
  592. this.dataColumn32,
  593. this.dataColumn34,
  594. this.dataColumn35,
  595. this.dataColumn42,
  596. this.dataColumn16,
  597. this.dataColumn19,
  598. this.dataColumn1,
  599. this.dataColumn2,
  600. this.dataColumn4,
  601. this.dataColumn3,
  602. this.dataColumn5,
  603. this.dataColumn6,
  604. this.dataColumn7,
  605. this.dataColumn10,
  606. this.dataColumn11,
  607. this.dataColumn12,
  608. this.dataColumn13,
  609. this.dataColumn14,
  610. this.dataColumn15,
  611. this.dataColumn17,
  612. this.dataColumn18,
  613. this.dataColumn20,
  614. this.dataColumn21,
  615. this.dataColumn22,
  616. this.dataColumn38,
  617. this.dataColumn39,
  618. this.dataColumn40,
  619. this.dataColumn41,
  620. this.dataColumn43,
  621. this.dataColumn44,
  622. this.dataColumn45});
  623. this.dataTable2.TableName = "KCJ_TURNOFFBUTTRESSLIST";
  624. //
  625. // dataColumn24
  626. //
  627. this.dataColumn24.ColumnName = "PRODUCTLINE";
  628. //
  629. // dataColumn25
  630. //
  631. this.dataColumn25.ColumnName = "ROLLNUMBER";
  632. //
  633. // dataColumn26
  634. //
  635. this.dataColumn26.ColumnName = "MOTHERBOARDNUMBER";
  636. //
  637. // dataColumn23
  638. //
  639. this.dataColumn23.ColumnName = "BILLETID";
  640. //
  641. // dataColumn36
  642. //
  643. this.dataColumn36.ColumnName = "DETERMINANTCARDNUMBER";
  644. //
  645. // dataColumn9
  646. //
  647. this.dataColumn9.ColumnName = "SPET";
  648. //
  649. // dataColumn33
  650. //
  651. this.dataColumn33.ColumnName = "THEORYWEIGHT";
  652. this.dataColumn33.DataType = typeof(decimal);
  653. //
  654. // dataColumn37
  655. //
  656. this.dataColumn37.ColumnName = "DETERMINANTRESULT";
  657. //
  658. // dataColumn28
  659. //
  660. this.dataColumn28.ColumnName = "PLANNO";
  661. //
  662. // dataColumn8
  663. //
  664. this.dataColumn8.ColumnName = "PACTNO";
  665. //
  666. // dataColumn27
  667. //
  668. this.dataColumn27.ColumnName = "STOVENO";
  669. //
  670. // dataColumn29
  671. //
  672. this.dataColumn29.ColumnName = "ORDERNO";
  673. //
  674. // dataColumn30
  675. //
  676. this.dataColumn30.ColumnName = "PLY";
  677. this.dataColumn30.DataType = typeof(decimal);
  678. //
  679. // dataColumn31
  680. //
  681. this.dataColumn31.ColumnName = "WIDTH";
  682. this.dataColumn31.DataType = typeof(decimal);
  683. //
  684. // dataColumn32
  685. //
  686. this.dataColumn32.ColumnName = "LENGTH";
  687. this.dataColumn32.DataType = typeof(decimal);
  688. //
  689. // dataColumn34
  690. //
  691. this.dataColumn34.ColumnName = "FACEQUALITY";
  692. //
  693. // dataColumn35
  694. //
  695. this.dataColumn35.ColumnName = "BUGREASON";
  696. //
  697. // dataColumn42
  698. //
  699. this.dataColumn42.ColumnName = "CLIPTYPEPROCESS";
  700. //
  701. // dataColumn16
  702. //
  703. this.dataColumn16.ColumnName = "SOURCEID";
  704. //
  705. // dataColumn19
  706. //
  707. this.dataColumn19.ColumnName = "INTIME";
  708. //
  709. // dataColumn1
  710. //
  711. this.dataColumn1.ColumnName = "BUTTRESS";
  712. //
  713. // dataColumn2
  714. //
  715. this.dataColumn2.ColumnName = "CONDOLENUMBER";
  716. //
  717. // dataColumn4
  718. //
  719. this.dataColumn4.ColumnName = "CONDOLELAYER";
  720. this.dataColumn4.DataType = typeof(decimal);
  721. //
  722. // dataColumn3
  723. //
  724. this.dataColumn3.ColumnName = "BUTTRESSLAYER";
  725. this.dataColumn3.DataType = typeof(decimal);
  726. //
  727. // dataColumn5
  728. //
  729. this.dataColumn5.ColumnName = "LOGICALLAYER";
  730. //
  731. // dataColumn6
  732. //
  733. this.dataColumn6.ColumnName = "AREA";
  734. //
  735. // dataColumn7
  736. //
  737. this.dataColumn7.ColumnName = "REMARK";
  738. //
  739. // dataColumn10
  740. //
  741. this.dataColumn10.ColumnName = "HANDREMARK";
  742. //
  743. // dataColumn11
  744. //
  745. this.dataColumn11.ColumnName = "CREATTIME";
  746. //
  747. // dataColumn12
  748. //
  749. this.dataColumn12.ColumnName = "OSPET";
  750. //
  751. // dataColumn13
  752. //
  753. this.dataColumn13.ColumnName = "INSTEEL";
  754. //
  755. // dataColumn14
  756. //
  757. this.dataColumn14.ColumnName = "SENDBEGINDATE";
  758. //
  759. // dataColumn15
  760. //
  761. this.dataColumn15.ColumnName = "YPLANNO";
  762. //
  763. // dataColumn17
  764. //
  765. this.dataColumn17.ColumnName = "YORDERNO";
  766. //
  767. // dataColumn18
  768. //
  769. this.dataColumn18.ColumnName = "ORDERBUYER";
  770. //
  771. // dataColumn20
  772. //
  773. this.dataColumn20.ColumnName = "PRODUCT_NAME";
  774. //
  775. // dataColumn21
  776. //
  777. this.dataColumn21.ColumnName = "MEMO";
  778. //
  779. // dataColumn22
  780. //
  781. this.dataColumn22.ColumnName = "DETECTMARBOOKIN";
  782. //
  783. // dataColumn38
  784. //
  785. this.dataColumn38.ColumnName = "ZHPDBH";
  786. //
  787. // dataColumn39
  788. //
  789. this.dataColumn39.ColumnName = "BUYERNAME";
  790. //
  791. // dataColumn40
  792. //
  793. this.dataColumn40.ColumnName = "STATIONNAME";
  794. //
  795. // dataColumn41
  796. //
  797. this.dataColumn41.ColumnName = "OSTEEL";
  798. //
  799. // dataColumn43
  800. //
  801. this.dataColumn43.ColumnName = "OPLY";
  802. this.dataColumn43.DataType = typeof(decimal);
  803. //
  804. // dataColumn44
  805. //
  806. this.dataColumn44.ColumnName = "OWIDTH";
  807. this.dataColumn44.DataType = typeof(decimal);
  808. //
  809. // dataColumn45
  810. //
  811. this.dataColumn45.ColumnName = "OLENGTH";
  812. this.dataColumn45.DataType = typeof(decimal);
  813. //
  814. // ultraGroupBox1
  815. //
  816. this.ultraGroupBox1.Controls.Add(this.chk_SendType);
  817. this.ultraGroupBox1.Controls.Add(this.ultraLabel15);
  818. this.ultraGroupBox1.Controls.Add(this.ultraLabel14);
  819. this.ultraGroupBox1.Controls.Add(this.ultraLabel12);
  820. this.ultraGroupBox1.Controls.Add(this.cmb_CCondition);
  821. this.ultraGroupBox1.Controls.Add(this.cmb_KCondition);
  822. this.ultraGroupBox1.Controls.Add(this.txt_CS);
  823. this.ultraGroupBox1.Controls.Add(this.ultraLabel13);
  824. this.ultraGroupBox1.Controls.Add(this.ultraLabel11);
  825. this.ultraGroupBox1.Controls.Add(this.txt_KS);
  826. this.ultraGroupBox1.Controls.Add(this.chk_Size);
  827. this.ultraGroupBox1.Controls.Add(this.btn_ClearFilter);
  828. this.ultraGroupBox1.Controls.Add(this.chk_AllowFilter);
  829. this.ultraGroupBox1.Controls.Add(this.cmb_ProductLine);
  830. this.ultraGroupBox1.Controls.Add(this.chk_LineAndSteel);
  831. this.ultraGroupBox1.Controls.Add(this.ultraLabel10);
  832. this.ultraGroupBox1.Controls.Add(this.txt_RollNOEnd);
  833. this.ultraGroupBox1.Controls.Add(this.txt_RollNOBegin);
  834. this.ultraGroupBox1.Controls.Add(this.txt_RollTop);
  835. this.ultraGroupBox1.Controls.Add(this.chk_RollNum);
  836. this.ultraGroupBox1.Controls.Add(this.txt_CD);
  837. this.ultraGroupBox1.Controls.Add(this.txt_KD);
  838. this.ultraGroupBox1.Controls.Add(this.txt_HD);
  839. this.ultraGroupBox1.Controls.Add(this.chk_Spet);
  840. this.ultraGroupBox1.Controls.Add(this.txt_Condole);
  841. this.ultraGroupBox1.Controls.Add(this.chk_Condole);
  842. this.ultraGroupBox1.Controls.Add(this.cmb_SteelType);
  843. this.ultraGroupBox1.Controls.Add(this.cmb_Area);
  844. this.ultraGroupBox1.Controls.Add(this.chk_Area);
  845. this.ultraGroupBox1.Controls.Add(this.cmb_Buttress);
  846. this.ultraGroupBox1.Controls.Add(this.Chk_Buttress);
  847. this.ultraGroupBox1.Controls.Add(this.txt_PlanNO);
  848. this.ultraGroupBox1.Controls.Add(this.Chk_PlanNO);
  849. this.ultraGroupBox1.Controls.Add(this.txt_PactNO);
  850. this.ultraGroupBox1.Controls.Add(this.Chk_PactNO);
  851. this.ultraGroupBox1.Dock = System.Windows.Forms.DockStyle.Top;
  852. this.ultraGroupBox1.Location = new System.Drawing.Point(0, 32);
  853. this.ultraGroupBox1.Name = "ultraGroupBox1";
  854. this.ultraGroupBox1.Size = new System.Drawing.Size(1104, 80);
  855. this.ultraGroupBox1.SupportThemes = false;
  856. this.ultraGroupBox1.TabIndex = 12;
  857. //
  858. // chk_SendType
  859. //
  860. this.chk_SendType.Location = new System.Drawing.Point(954, 53);
  861. this.chk_SendType.Name = "chk_SendType";
  862. this.chk_SendType.Size = new System.Drawing.Size(72, 20);
  863. this.chk_SendType.TabIndex = 192;
  864. this.chk_SendType.TabStop = false;
  865. this.chk_SendType.Text = "已发运";
  866. //
  867. // ultraLabel15
  868. //
  869. appearance1.BackColor = System.Drawing.Color.Blue;
  870. this.ultraLabel15.Appearance = appearance1;
  871. this.ultraLabel15.Location = new System.Drawing.Point(832, 56);
  872. this.ultraLabel15.Name = "ultraLabel15";
  873. this.ultraLabel15.Size = new System.Drawing.Size(103, 16);
  874. this.ultraLabel15.TabIndex = 191;
  875. this.ultraLabel15.Text = "注意距交货期11天";
  876. //
  877. // ultraLabel14
  878. //
  879. appearance2.BackColor = System.Drawing.Color.DeepSkyBlue;
  880. this.ultraLabel14.Appearance = appearance2;
  881. this.ultraLabel14.Location = new System.Drawing.Point(832, 8);
  882. this.ultraLabel14.Name = "ultraLabel14";
  883. this.ultraLabel14.Size = new System.Drawing.Size(91, 16);
  884. this.ultraLabel14.TabIndex = 190;
  885. this.ultraLabel14.Text = "注意牌号已改变";
  886. //
  887. // ultraLabel12
  888. //
  889. appearance3.BackColor = System.Drawing.Color.OrangeRed;
  890. this.ultraLabel12.Appearance = appearance3;
  891. this.ultraLabel12.Location = new System.Drawing.Point(832, 32);
  892. this.ultraLabel12.Name = "ultraLabel12";
  893. this.ultraLabel12.Size = new System.Drawing.Size(140, 16);
  894. this.ultraLabel12.TabIndex = 189;
  895. this.ultraLabel12.Text = "注意(红色)规格已改变";
  896. //
  897. // cmb_CCondition
  898. //
  899. this.cmb_CCondition.AutoSize = true;
  900. this.cmb_CCondition.ButtonStyle = Infragistics.Win.UIElementButtonStyle.VisualStudio2005Button;
  901. this.cmb_CCondition.Enabled = false;
  902. this.cmb_CCondition.FlatMode = true;
  903. valueListItem1.DataValue = ">";
  904. valueListItem1.DisplayText = ">";
  905. valueListItem2.DataValue = "<";
  906. valueListItem2.DisplayText = "<";
  907. valueListItem3.DataValue = ">=";
  908. valueListItem3.DisplayText = ">=";
  909. valueListItem4.DataValue = "<=";
  910. valueListItem4.DisplayText = "<=";
  911. valueListItem5.DataValue = "=";
  912. valueListItem5.DisplayText = "=";
  913. this.cmb_CCondition.Items.Add(valueListItem1);
  914. this.cmb_CCondition.Items.Add(valueListItem2);
  915. this.cmb_CCondition.Items.Add(valueListItem3);
  916. this.cmb_CCondition.Items.Add(valueListItem4);
  917. this.cmb_CCondition.Items.Add(valueListItem5);
  918. this.cmb_CCondition.Location = new System.Drawing.Point(592, 55);
  919. this.cmb_CCondition.Name = "cmb_CCondition";
  920. this.cmb_CCondition.Size = new System.Drawing.Size(48, 19);
  921. this.cmb_CCondition.TabIndex = 188;
  922. //
  923. // cmb_KCondition
  924. //
  925. this.cmb_KCondition.AutoSize = true;
  926. this.cmb_KCondition.ButtonStyle = Infragistics.Win.UIElementButtonStyle.VisualStudio2005Button;
  927. this.cmb_KCondition.Enabled = false;
  928. this.cmb_KCondition.FlatMode = true;
  929. valueListItem6.DataValue = ">";
  930. valueListItem6.DisplayText = ">";
  931. valueListItem7.DataValue = "<";
  932. valueListItem7.DisplayText = "<";
  933. valueListItem8.DataValue = ">=";
  934. valueListItem8.DisplayText = ">=";
  935. valueListItem9.DataValue = "<=";
  936. valueListItem9.DisplayText = "<=";
  937. valueListItem10.DataValue = "=";
  938. valueListItem10.DisplayText = "=";
  939. this.cmb_KCondition.Items.Add(valueListItem6);
  940. this.cmb_KCondition.Items.Add(valueListItem7);
  941. this.cmb_KCondition.Items.Add(valueListItem8);
  942. this.cmb_KCondition.Items.Add(valueListItem9);
  943. this.cmb_KCondition.Items.Add(valueListItem10);
  944. this.cmb_KCondition.Location = new System.Drawing.Point(592, 32);
  945. this.cmb_KCondition.Name = "cmb_KCondition";
  946. this.cmb_KCondition.Size = new System.Drawing.Size(48, 19);
  947. this.cmb_KCondition.TabIndex = 187;
  948. //
  949. // txt_CS
  950. //
  951. appearance4.BackColor = System.Drawing.Color.LightCyan;
  952. this.txt_CS.Appearance = appearance4;
  953. this.txt_CS.Enabled = false;
  954. this.txt_CS.FlatMode = true;
  955. this.txt_CS.Location = new System.Drawing.Point(648, 55);
  956. this.txt_CS.MaskInput = "nnnnn";
  957. this.txt_CS.MaxValue = 99999;
  958. this.txt_CS.MinValue = -1;
  959. this.txt_CS.Name = "txt_CS";
  960. this.txt_CS.PromptChar = ' ';
  961. this.txt_CS.Size = new System.Drawing.Size(96, 19);
  962. this.txt_CS.TabIndex = 186;
  963. //
  964. // ultraLabel13
  965. //
  966. appearance5.BackColor = System.Drawing.Color.Magenta;
  967. this.ultraLabel13.Appearance = appearance5;
  968. this.ultraLabel13.Location = new System.Drawing.Point(568, 56);
  969. this.ultraLabel13.Name = "ultraLabel13";
  970. this.ultraLabel13.Size = new System.Drawing.Size(17, 16);
  971. this.ultraLabel13.TabIndex = 182;
  972. this.ultraLabel13.Text = "长";
  973. //
  974. // ultraLabel11
  975. //
  976. appearance6.BackColor = System.Drawing.Color.Magenta;
  977. this.ultraLabel11.Appearance = appearance6;
  978. this.ultraLabel11.Location = new System.Drawing.Point(568, 33);
  979. this.ultraLabel11.Name = "ultraLabel11";
  980. this.ultraLabel11.Size = new System.Drawing.Size(17, 16);
  981. this.ultraLabel11.TabIndex = 179;
  982. this.ultraLabel11.Text = "宽";
  983. //
  984. // txt_KS
  985. //
  986. appearance7.BackColor = System.Drawing.Color.LightCyan;
  987. this.txt_KS.Appearance = appearance7;
  988. this.txt_KS.Enabled = false;
  989. this.txt_KS.FlatMode = true;
  990. this.txt_KS.Location = new System.Drawing.Point(648, 32);
  991. this.txt_KS.MaskInput = "nnnn";
  992. this.txt_KS.MaxValue = 9999;
  993. this.txt_KS.MinValue = -1;
  994. this.txt_KS.Name = "txt_KS";
  995. this.txt_KS.PromptChar = ' ';
  996. this.txt_KS.Size = new System.Drawing.Size(96, 19);
  997. this.txt_KS.TabIndex = 178;
  998. //
  999. // chk_Size
  1000. //
  1001. this.chk_Size.FlatMode = true;
  1002. this.chk_Size.Location = new System.Drawing.Point(488, 33);
  1003. this.chk_Size.Name = "chk_Size";
  1004. this.chk_Size.Size = new System.Drawing.Size(72, 16);
  1005. this.chk_Size.TabIndex = 177;
  1006. this.chk_Size.Text = "规格范围";
  1007. this.chk_Size.CheckedChanged += new System.EventHandler(this.chk_Size_CheckedChanged);
  1008. //
  1009. // btn_ClearFilter
  1010. //
  1011. this.btn_ClearFilter.Location = new System.Drawing.Point(752, 47);
  1012. this.btn_ClearFilter.Name = "btn_ClearFilter";
  1013. this.btn_ClearFilter.Size = new System.Drawing.Size(64, 26);
  1014. this.btn_ClearFilter.TabIndex = 176;
  1015. this.btn_ClearFilter.Text = "清除过滤";
  1016. this.btn_ClearFilter.Click += new System.EventHandler(this.btn_ClearFilter_Click);
  1017. //
  1018. // chk_AllowFilter
  1019. //
  1020. this.chk_AllowFilter.Location = new System.Drawing.Point(752, 8);
  1021. this.chk_AllowFilter.Name = "chk_AllowFilter";
  1022. this.chk_AllowFilter.Size = new System.Drawing.Size(72, 20);
  1023. this.chk_AllowFilter.TabIndex = 175;
  1024. this.chk_AllowFilter.TabStop = false;
  1025. this.chk_AllowFilter.Text = "允许过滤";
  1026. this.chk_AllowFilter.CheckedChanged += new System.EventHandler(this.chk_AllowFilter_CheckedChanged);
  1027. //
  1028. // cmb_ProductLine
  1029. //
  1030. appearance8.BackColor = System.Drawing.Color.LightCyan;
  1031. this.cmb_ProductLine.Appearance = appearance8;
  1032. this.cmb_ProductLine.AutoSize = true;
  1033. this.cmb_ProductLine.Enabled = false;
  1034. valueListItem11.DataValue = "4001HB1";
  1035. valueListItem11.DisplayText = "厚板线";
  1036. valueListItem12.DataValue = "4001ZB1";
  1037. valueListItem12.DisplayText = "中板线";
  1038. this.cmb_ProductLine.Items.Add(valueListItem11);
  1039. this.cmb_ProductLine.Items.Add(valueListItem12);
  1040. this.cmb_ProductLine.Location = new System.Drawing.Point(264, 32);
  1041. this.cmb_ProductLine.Name = "cmb_ProductLine";
  1042. this.cmb_ProductLine.Size = new System.Drawing.Size(112, 21);
  1043. this.cmb_ProductLine.TabIndex = 174;
  1044. this.cmb_ProductLine.TabStop = false;
  1045. this.cmb_ProductLine.ValueChanged += new System.EventHandler(this.cmb_ProductLine_ValueChanged);
  1046. //
  1047. // chk_LineAndSteel
  1048. //
  1049. this.chk_LineAndSteel.FlatMode = true;
  1050. this.chk_LineAndSteel.Location = new System.Drawing.Point(184, 35);
  1051. this.chk_LineAndSteel.Name = "chk_LineAndSteel";
  1052. this.chk_LineAndSteel.Size = new System.Drawing.Size(80, 16);
  1053. this.chk_LineAndSteel.TabIndex = 173;
  1054. this.chk_LineAndSteel.Text = "产线/牌号";
  1055. this.chk_LineAndSteel.CheckedChanged += new System.EventHandler(this.chk_LineAndSteel_CheckedChanged);
  1056. //
  1057. // ultraLabel10
  1058. //
  1059. this.ultraLabel10.Location = new System.Drawing.Point(656, 12);
  1060. this.ultraLabel10.Name = "ultraLabel10";
  1061. this.ultraLabel10.Size = new System.Drawing.Size(17, 16);
  1062. this.ultraLabel10.TabIndex = 172;
  1063. this.ultraLabel10.Text = "至";
  1064. //
  1065. // txt_RollNOEnd
  1066. //
  1067. appearance9.BackColor = System.Drawing.Color.LightCyan;
  1068. this.txt_RollNOEnd.Appearance = appearance9;
  1069. this.txt_RollNOEnd.AutoSize = true;
  1070. this.txt_RollNOEnd.Enabled = false;
  1071. this.txt_RollNOEnd.FlatMode = true;
  1072. this.txt_RollNOEnd.Location = new System.Drawing.Point(674, 8);
  1073. this.txt_RollNOEnd.MaxLength = 5;
  1074. this.txt_RollNOEnd.Name = "txt_RollNOEnd";
  1075. this.txt_RollNOEnd.Size = new System.Drawing.Size(72, 19);
  1076. this.txt_RollNOEnd.TabIndex = 171;
  1077. //
  1078. // txt_RollNOBegin
  1079. //
  1080. appearance10.BackColor = System.Drawing.Color.LightCyan;
  1081. this.txt_RollNOBegin.Appearance = appearance10;
  1082. this.txt_RollNOBegin.AutoSize = true;
  1083. this.txt_RollNOBegin.Enabled = false;
  1084. this.txt_RollNOBegin.FlatMode = true;
  1085. this.txt_RollNOBegin.Location = new System.Drawing.Point(584, 8);
  1086. this.txt_RollNOBegin.MaxLength = 5;
  1087. this.txt_RollNOBegin.Name = "txt_RollNOBegin";
  1088. this.txt_RollNOBegin.Size = new System.Drawing.Size(72, 19);
  1089. this.txt_RollNOBegin.TabIndex = 170;
  1090. //
  1091. // txt_RollTop
  1092. //
  1093. appearance11.BackColor = System.Drawing.Color.LightCyan;
  1094. this.txt_RollTop.Appearance = appearance11;
  1095. this.txt_RollTop.AutoSize = true;
  1096. this.txt_RollTop.Enabled = false;
  1097. this.txt_RollTop.FlatMode = true;
  1098. this.txt_RollTop.Location = new System.Drawing.Point(552, 8);
  1099. this.txt_RollTop.Name = "txt_RollTop";
  1100. this.txt_RollTop.Size = new System.Drawing.Size(32, 19);
  1101. this.txt_RollTop.TabIndex = 169;
  1102. //
  1103. // chk_RollNum
  1104. //
  1105. this.chk_RollNum.FlatMode = true;
  1106. this.chk_RollNum.Location = new System.Drawing.Point(488, 11);
  1107. this.chk_RollNum.Name = "chk_RollNum";
  1108. this.chk_RollNum.Size = new System.Drawing.Size(60, 16);
  1109. this.chk_RollNum.TabIndex = 168;
  1110. this.chk_RollNum.Text = "轧批号";
  1111. this.chk_RollNum.CheckedChanged += new System.EventHandler(this.chk_RollNum_CheckedChanged);
  1112. //
  1113. // txt_CD
  1114. //
  1115. appearance12.BackColor = System.Drawing.Color.LightCyan;
  1116. this.txt_CD.Appearance = appearance12;
  1117. this.txt_CD.Enabled = false;
  1118. this.txt_CD.FlatMode = true;
  1119. this.txt_CD.Location = new System.Drawing.Point(384, 56);
  1120. this.txt_CD.MaskInput = "nnnnn";
  1121. this.txt_CD.MaxValue = 99999;
  1122. this.txt_CD.MinValue = -1;
  1123. this.txt_CD.Name = "txt_CD";
  1124. this.txt_CD.PromptChar = ' ';
  1125. this.txt_CD.Size = new System.Drawing.Size(96, 19);
  1126. this.txt_CD.TabIndex = 167;
  1127. //
  1128. // txt_KD
  1129. //
  1130. appearance13.BackColor = System.Drawing.Color.LightCyan;
  1131. this.txt_KD.Appearance = appearance13;
  1132. this.txt_KD.Enabled = false;
  1133. this.txt_KD.FlatMode = true;
  1134. this.txt_KD.Location = new System.Drawing.Point(312, 56);
  1135. this.txt_KD.MaskInput = "nnnn";
  1136. this.txt_KD.MaxValue = 9999;
  1137. this.txt_KD.MinValue = -1;
  1138. this.txt_KD.Name = "txt_KD";
  1139. this.txt_KD.PromptChar = ' ';
  1140. this.txt_KD.Size = new System.Drawing.Size(72, 19);
  1141. this.txt_KD.TabIndex = 166;
  1142. //
  1143. // txt_HD
  1144. //
  1145. appearance14.BackColor = System.Drawing.Color.LightCyan;
  1146. this.txt_HD.Appearance = appearance14;
  1147. this.txt_HD.Enabled = false;
  1148. this.txt_HD.FlatMode = true;
  1149. this.txt_HD.Location = new System.Drawing.Point(248, 56);
  1150. this.txt_HD.MaskInput = "nnn.nnn";
  1151. this.txt_HD.MaxValue = 999.999;
  1152. this.txt_HD.MinValue = -1;
  1153. this.txt_HD.Name = "txt_HD";
  1154. this.txt_HD.NumericType = Infragistics.Win.UltraWinEditors.NumericType.Double;
  1155. this.txt_HD.PromptChar = ' ';
  1156. this.txt_HD.Size = new System.Drawing.Size(64, 19);
  1157. this.txt_HD.TabIndex = 165;
  1158. //
  1159. // chk_Spet
  1160. //
  1161. this.chk_Spet.FlatMode = true;
  1162. this.chk_Spet.Location = new System.Drawing.Point(184, 58);
  1163. this.chk_Spet.Name = "chk_Spet";
  1164. this.chk_Spet.Size = new System.Drawing.Size(60, 16);
  1165. this.chk_Spet.TabIndex = 164;
  1166. this.chk_Spet.Text = "厚宽长";
  1167. this.chk_Spet.CheckedChanged += new System.EventHandler(this.chk_Spet_CheckedChanged);
  1168. //
  1169. // txt_Condole
  1170. //
  1171. appearance15.BackColor = System.Drawing.Color.LightCyan;
  1172. this.txt_Condole.Appearance = appearance15;
  1173. this.txt_Condole.AutoSize = true;
  1174. this.txt_Condole.Enabled = false;
  1175. this.txt_Condole.FlatMode = true;
  1176. this.txt_Condole.Location = new System.Drawing.Point(80, 56);
  1177. this.txt_Condole.Name = "txt_Condole";
  1178. this.txt_Condole.Size = new System.Drawing.Size(96, 19);
  1179. this.txt_Condole.TabIndex = 163;
  1180. this.txt_Condole.Tag = "";
  1181. //
  1182. // chk_Condole
  1183. //
  1184. this.chk_Condole.FlatMode = true;
  1185. this.chk_Condole.Location = new System.Drawing.Point(16, 55);
  1186. this.chk_Condole.Name = "chk_Condole";
  1187. this.chk_Condole.Size = new System.Drawing.Size(50, 16);
  1188. this.chk_Condole.TabIndex = 162;
  1189. this.chk_Condole.Text = "吊号";
  1190. this.chk_Condole.CheckedChanged += new System.EventHandler(this.chk_Condole_CheckedChanged);
  1191. //
  1192. // cmb_SteelType
  1193. //
  1194. appearance16.BackColor = System.Drawing.Color.LightCyan;
  1195. this.cmb_SteelType.Appearance = appearance16;
  1196. this.cmb_SteelType.CharacterCasing = System.Windows.Forms.CharacterCasing.Normal;
  1197. this.cmb_SteelType.DisplayMember = "";
  1198. this.cmb_SteelType.Enabled = false;
  1199. this.cmb_SteelType.FlatMode = true;
  1200. this.cmb_SteelType.Location = new System.Drawing.Point(384, 32);
  1201. this.cmb_SteelType.Name = "cmb_SteelType";
  1202. this.cmb_SteelType.Size = new System.Drawing.Size(96, 19);
  1203. this.cmb_SteelType.TabIndex = 161;
  1204. this.cmb_SteelType.Tag = "";
  1205. this.cmb_SteelType.ValueMember = "";
  1206. //
  1207. // cmb_Area
  1208. //
  1209. appearance17.BackColor = System.Drawing.Color.LightCyan;
  1210. this.cmb_Area.Appearance = appearance17;
  1211. this.cmb_Area.CharacterCasing = System.Windows.Forms.CharacterCasing.Normal;
  1212. this.cmb_Area.DisplayMember = "";
  1213. this.cmb_Area.DropDownStyle = Infragistics.Win.UltraWinGrid.UltraComboStyle.DropDownList;
  1214. this.cmb_Area.Enabled = false;
  1215. this.cmb_Area.FlatMode = true;
  1216. this.cmb_Area.Location = new System.Drawing.Point(232, 10);
  1217. this.cmb_Area.Name = "cmb_Area";
  1218. this.cmb_Area.Size = new System.Drawing.Size(96, 19);
  1219. this.cmb_Area.TabIndex = 160;
  1220. this.cmb_Area.Tag = "";
  1221. this.cmb_Area.ValueMember = "";
  1222. //
  1223. // chk_Area
  1224. //
  1225. this.chk_Area.FlatMode = true;
  1226. this.chk_Area.Location = new System.Drawing.Point(184, 11);
  1227. this.chk_Area.Name = "chk_Area";
  1228. this.chk_Area.Size = new System.Drawing.Size(50, 16);
  1229. this.chk_Area.TabIndex = 159;
  1230. this.chk_Area.Text = "区域";
  1231. this.chk_Area.CheckedChanged += new System.EventHandler(this.chk_Area_CheckedChanged);
  1232. //
  1233. // cmb_Buttress
  1234. //
  1235. appearance18.BackColor = System.Drawing.Color.LightCyan;
  1236. this.cmb_Buttress.Appearance = appearance18;
  1237. this.cmb_Buttress.CharacterCasing = System.Windows.Forms.CharacterCasing.Normal;
  1238. this.cmb_Buttress.DisplayMember = "";
  1239. this.cmb_Buttress.DropDownStyle = Infragistics.Win.UltraWinGrid.UltraComboStyle.DropDownList;
  1240. this.cmb_Buttress.Enabled = false;
  1241. this.cmb_Buttress.FlatMode = true;
  1242. this.cmb_Buttress.Location = new System.Drawing.Point(384, 10);
  1243. this.cmb_Buttress.Name = "cmb_Buttress";
  1244. this.cmb_Buttress.Size = new System.Drawing.Size(96, 19);
  1245. this.cmb_Buttress.TabIndex = 158;
  1246. this.cmb_Buttress.Tag = "";
  1247. this.cmb_Buttress.ValueMember = "";
  1248. //
  1249. // Chk_Buttress
  1250. //
  1251. this.Chk_Buttress.FlatMode = true;
  1252. this.Chk_Buttress.Location = new System.Drawing.Point(336, 11);
  1253. this.Chk_Buttress.Name = "Chk_Buttress";
  1254. this.Chk_Buttress.Size = new System.Drawing.Size(50, 16);
  1255. this.Chk_Buttress.TabIndex = 157;
  1256. this.Chk_Buttress.Text = "垛位";
  1257. this.Chk_Buttress.CheckedChanged += new System.EventHandler(this.Chk_Buttress_CheckedChanged);
  1258. //
  1259. // txt_PlanNO
  1260. //
  1261. appearance19.BackColor = System.Drawing.Color.LightCyan;
  1262. this.txt_PlanNO.Appearance = appearance19;
  1263. this.txt_PlanNO.AutoSize = true;
  1264. this.txt_PlanNO.Enabled = false;
  1265. this.txt_PlanNO.FlatMode = true;
  1266. this.txt_PlanNO.Location = new System.Drawing.Point(80, 32);
  1267. this.txt_PlanNO.Name = "txt_PlanNO";
  1268. this.txt_PlanNO.Size = new System.Drawing.Size(96, 19);
  1269. this.txt_PlanNO.TabIndex = 156;
  1270. this.txt_PlanNO.Tag = "";
  1271. //
  1272. // Chk_PlanNO
  1273. //
  1274. this.Chk_PlanNO.FlatMode = true;
  1275. this.Chk_PlanNO.Location = new System.Drawing.Point(16, 33);
  1276. this.Chk_PlanNO.Name = "Chk_PlanNO";
  1277. this.Chk_PlanNO.Size = new System.Drawing.Size(60, 16);
  1278. this.Chk_PlanNO.TabIndex = 155;
  1279. this.Chk_PlanNO.Text = "计划号";
  1280. this.Chk_PlanNO.CheckedChanged += new System.EventHandler(this.Chk_PlanNO_CheckedChanged);
  1281. //
  1282. // txt_PactNO
  1283. //
  1284. appearance20.BackColor = System.Drawing.Color.LightCyan;
  1285. this.txt_PactNO.Appearance = appearance20;
  1286. this.txt_PactNO.AutoSize = true;
  1287. this.txt_PactNO.Enabled = false;
  1288. this.txt_PactNO.FlatMode = true;
  1289. this.txt_PactNO.Location = new System.Drawing.Point(80, 8);
  1290. this.txt_PactNO.Name = "txt_PactNO";
  1291. this.txt_PactNO.Size = new System.Drawing.Size(96, 19);
  1292. this.txt_PactNO.TabIndex = 154;
  1293. this.txt_PactNO.Tag = "";
  1294. //
  1295. // Chk_PactNO
  1296. //
  1297. this.Chk_PactNO.FlatMode = true;
  1298. this.Chk_PactNO.Location = new System.Drawing.Point(16, 11);
  1299. this.Chk_PactNO.Name = "Chk_PactNO";
  1300. this.Chk_PactNO.Size = new System.Drawing.Size(60, 16);
  1301. this.Chk_PactNO.TabIndex = 153;
  1302. this.Chk_PactNO.Text = "合同号";
  1303. this.Chk_PactNO.CheckedChanged += new System.EventHandler(this.Chk_PactNO_CheckedChanged);
  1304. //
  1305. // ultraExpandableGroupBox1
  1306. //
  1307. this.ultraExpandableGroupBox1.Controls.Add(this.ultraExpandableGroupBoxPanel1);
  1308. this.ultraExpandableGroupBox1.Dock = System.Windows.Forms.DockStyle.Bottom;
  1309. this.ultraExpandableGroupBox1.ExpandedSize = new System.Drawing.Size(888, 185);
  1310. this.ultraExpandableGroupBox1.Location = new System.Drawing.Point(0, 374);
  1311. this.ultraExpandableGroupBox1.Name = "ultraExpandableGroupBox1";
  1312. this.ultraExpandableGroupBox1.Size = new System.Drawing.Size(1104, 128);
  1313. this.ultraExpandableGroupBox1.SupportThemes = false;
  1314. this.ultraExpandableGroupBox1.TabIndex = 13;
  1315. this.ultraExpandableGroupBox1.Text = "垛位/吊号管理";
  1316. this.ultraExpandableGroupBox1.ViewStyle = Infragistics.Win.Misc.GroupBoxViewStyle.VisualStudio2005;
  1317. //
  1318. // ultraExpandableGroupBoxPanel1
  1319. //
  1320. this.ultraExpandableGroupBoxPanel1.Controls.Add(this.ult_Remark);
  1321. this.ultraExpandableGroupBoxPanel1.Controls.Add(this.txt_XDH);
  1322. this.ultraExpandableGroupBoxPanel1.Controls.Add(this.txt_YDH);
  1323. this.ultraExpandableGroupBoxPanel1.Controls.Add(this.Chk_Replace);
  1324. this.ultraExpandableGroupBoxPanel1.Controls.Add(this.Chk_Add);
  1325. this.ultraExpandableGroupBoxPanel1.Controls.Add(this.txt_HandleMan);
  1326. this.ultraExpandableGroupBoxPanel1.Controls.Add(this.ultraLabel9);
  1327. this.ultraExpandableGroupBoxPanel1.Controls.Add(this.Dte_AjustTime);
  1328. this.ultraExpandableGroupBoxPanel1.Controls.Add(this.ultraLabel8);
  1329. this.ultraExpandableGroupBoxPanel1.Controls.Add(this.cmb_BZ);
  1330. this.ultraExpandableGroupBoxPanel1.Controls.Add(this.ultraLabel6);
  1331. this.ultraExpandableGroupBoxPanel1.Controls.Add(this.cmb_BC);
  1332. this.ultraExpandableGroupBoxPanel1.Controls.Add(this.ultraLabel7);
  1333. this.ultraExpandableGroupBoxPanel1.Controls.Add(this.cmb_NewArea);
  1334. this.ultraExpandableGroupBoxPanel1.Controls.Add(this.ultraLabel5);
  1335. this.ultraExpandableGroupBoxPanel1.Controls.Add(this.txt_XDHDate);
  1336. this.ultraExpandableGroupBoxPanel1.Controls.Add(this.txt_YDHDate);
  1337. this.ultraExpandableGroupBoxPanel1.Controls.Add(this.chk_XH);
  1338. this.ultraExpandableGroupBoxPanel1.Controls.Add(this.txt_YY);
  1339. this.ultraExpandableGroupBoxPanel1.Controls.Add(this.lab_Weight);
  1340. this.ultraExpandableGroupBoxPanel1.Controls.Add(this.txt_XH);
  1341. this.ultraExpandableGroupBoxPanel1.Controls.Add(this.ultraLabel4);
  1342. this.ultraExpandableGroupBoxPanel1.Controls.Add(this.ultraLabel3);
  1343. this.ultraExpandableGroupBoxPanel1.Controls.Add(this.cmb_NewButtress);
  1344. this.ultraExpandableGroupBoxPanel1.Controls.Add(this.ultraLabel2);
  1345. this.ultraExpandableGroupBoxPanel1.Controls.Add(this.cmb_OldButtress);
  1346. this.ultraExpandableGroupBoxPanel1.Controls.Add(this.ultraLabel1);
  1347. this.ultraExpandableGroupBoxPanel1.Dock = System.Windows.Forms.DockStyle.Fill;
  1348. this.ultraExpandableGroupBoxPanel1.Location = new System.Drawing.Point(2, 20);
  1349. this.ultraExpandableGroupBoxPanel1.Name = "ultraExpandableGroupBoxPanel1";
  1350. this.ultraExpandableGroupBoxPanel1.Size = new System.Drawing.Size(1100, 106);
  1351. this.ultraExpandableGroupBoxPanel1.TabIndex = 0;
  1352. //
  1353. // ult_Remark
  1354. //
  1355. appearance21.BackColor = System.Drawing.Color.LightCyan;
  1356. this.ult_Remark.Appearance = appearance21;
  1357. this.ult_Remark.AutoSize = true;
  1358. valueListItem13.DataValue = "0";
  1359. valueListItem13.DisplayText = "省重点";
  1360. this.ult_Remark.Items.Add(valueListItem13);
  1361. this.ult_Remark.Location = new System.Drawing.Point(216, 82);
  1362. this.ult_Remark.Name = "ult_Remark";
  1363. this.ult_Remark.Size = new System.Drawing.Size(250, 21);
  1364. this.ult_Remark.TabIndex = 393;
  1365. this.ult_Remark.Visible = false;
  1366. //
  1367. // txt_XDH
  1368. //
  1369. appearance22.BackColor = System.Drawing.Color.LightCyan;
  1370. this.txt_XDH.Appearance = appearance22;
  1371. this.txt_XDH.AutoSize = true;
  1372. this.txt_XDH.FlatMode = true;
  1373. this.txt_XDH.Location = new System.Drawing.Point(461, 33);
  1374. this.txt_XDH.Name = "txt_XDH";
  1375. this.txt_XDH.Size = new System.Drawing.Size(75, 19);
  1376. this.txt_XDH.TabIndex = 374;
  1377. this.txt_XDH.Tag = "";
  1378. this.txt_XDH.Enter += new System.EventHandler(this.txt_XDH_Enter);
  1379. this.txt_XDH.KeyDown += new System.Windows.Forms.KeyEventHandler(this.txt_XDH_KeyDown);
  1380. //
  1381. // txt_YDH
  1382. //
  1383. appearance23.BackColor = System.Drawing.Color.LightCyan;
  1384. this.txt_YDH.Appearance = appearance23;
  1385. this.txt_YDH.AutoSize = true;
  1386. this.txt_YDH.FlatMode = true;
  1387. this.txt_YDH.Location = new System.Drawing.Point(264, 9);
  1388. this.txt_YDH.Name = "txt_YDH";
  1389. this.txt_YDH.Size = new System.Drawing.Size(64, 19);
  1390. this.txt_YDH.TabIndex = 369;
  1391. this.txt_YDH.Tag = "";
  1392. this.txt_YDH.Enter += new System.EventHandler(this.txt_XDH_Enter);
  1393. this.txt_YDH.KeyDown += new System.Windows.Forms.KeyEventHandler(this.txt_XDH_KeyDown);
  1394. //
  1395. // Chk_Replace
  1396. //
  1397. this.Chk_Replace.BackColor = System.Drawing.Color.Transparent;
  1398. this.Chk_Replace.FlatMode = true;
  1399. this.Chk_Replace.Location = new System.Drawing.Point(528, 82);
  1400. this.Chk_Replace.Name = "Chk_Replace";
  1401. this.Chk_Replace.Size = new System.Drawing.Size(48, 16);
  1402. this.Chk_Replace.TabIndex = 381;
  1403. this.Chk_Replace.Text = "替换";
  1404. //
  1405. // Chk_Add
  1406. //
  1407. this.Chk_Add.BackColor = System.Drawing.Color.Transparent;
  1408. this.Chk_Add.Checked = true;
  1409. this.Chk_Add.CheckState = System.Windows.Forms.CheckState.Checked;
  1410. this.Chk_Add.FlatMode = true;
  1411. this.Chk_Add.Location = new System.Drawing.Point(480, 82);
  1412. this.Chk_Add.Name = "Chk_Add";
  1413. this.Chk_Add.Size = new System.Drawing.Size(48, 16);
  1414. this.Chk_Add.TabIndex = 380;
  1415. this.Chk_Add.Text = "追加";
  1416. //
  1417. // txt_HandleMan
  1418. //
  1419. appearance24.BackColor = System.Drawing.Color.LightCyan;
  1420. this.txt_HandleMan.Appearance = appearance24;
  1421. this.txt_HandleMan.CharacterCasing = System.Windows.Forms.CharacterCasing.Normal;
  1422. this.txt_HandleMan.DisplayMember = "";
  1423. this.txt_HandleMan.FlatMode = true;
  1424. this.txt_HandleMan.Location = new System.Drawing.Point(62, 81);
  1425. this.txt_HandleMan.Name = "txt_HandleMan";
  1426. this.txt_HandleMan.Size = new System.Drawing.Size(106, 19);
  1427. this.txt_HandleMan.TabIndex = 378;
  1428. this.txt_HandleMan.Tag = "";
  1429. this.txt_HandleMan.ValueMember = "";
  1430. this.txt_HandleMan.ValueChanged += new System.EventHandler(this.txt_HandleMan_ValueChanged);
  1431. //
  1432. // ultraLabel9
  1433. //
  1434. this.ultraLabel9.BackColor = System.Drawing.Color.Transparent;
  1435. this.ultraLabel9.Location = new System.Drawing.Point(16, 85);
  1436. this.ultraLabel9.Name = "ultraLabel9";
  1437. this.ultraLabel9.Size = new System.Drawing.Size(42, 16);
  1438. this.ultraLabel9.TabIndex = 392;
  1439. this.ultraLabel9.Text = "转堆人";
  1440. //
  1441. // Dte_AjustTime
  1442. //
  1443. appearance25.BackColor = System.Drawing.Color.LightCyan;
  1444. this.Dte_AjustTime.Appearance = appearance25;
  1445. this.Dte_AjustTime.DateTime = new System.DateTime(2013, 11, 2, 0, 0, 0, 0);
  1446. this.Dte_AjustTime.FlatMode = true;
  1447. this.Dte_AjustTime.Location = new System.Drawing.Point(384, 57);
  1448. this.Dte_AjustTime.MaskInput = "{date} {time}";
  1449. this.Dte_AjustTime.Name = "Dte_AjustTime";
  1450. this.Dte_AjustTime.ReadOnly = true;
  1451. this.Dte_AjustTime.Size = new System.Drawing.Size(152, 19);
  1452. this.Dte_AjustTime.TabIndex = 377;
  1453. this.Dte_AjustTime.Value = new System.DateTime(2013, 11, 2, 0, 0, 0, 0);
  1454. //
  1455. // ultraLabel8
  1456. //
  1457. this.ultraLabel8.BackColor = System.Drawing.Color.Transparent;
  1458. this.ultraLabel8.Location = new System.Drawing.Point(352, 61);
  1459. this.ultraLabel8.Name = "ultraLabel8";
  1460. this.ultraLabel8.Size = new System.Drawing.Size(29, 16);
  1461. this.ultraLabel8.TabIndex = 391;
  1462. this.ultraLabel8.Text = "时间";
  1463. //
  1464. // cmb_BZ
  1465. //
  1466. appearance26.BackColor = System.Drawing.Color.LightCyan;
  1467. this.cmb_BZ.Appearance = appearance26;
  1468. this.cmb_BZ.CharacterCasing = System.Windows.Forms.CharacterCasing.Normal;
  1469. this.cmb_BZ.DisplayMember = "";
  1470. this.cmb_BZ.FlatMode = true;
  1471. this.cmb_BZ.Location = new System.Drawing.Point(216, 57);
  1472. this.cmb_BZ.Name = "cmb_BZ";
  1473. this.cmb_BZ.Size = new System.Drawing.Size(112, 19);
  1474. this.cmb_BZ.TabIndex = 376;
  1475. this.cmb_BZ.Tag = "";
  1476. this.cmb_BZ.ValueMember = "";
  1477. //
  1478. // ultraLabel6
  1479. //
  1480. this.ultraLabel6.BackColor = System.Drawing.Color.Transparent;
  1481. this.ultraLabel6.Location = new System.Drawing.Point(184, 61);
  1482. this.ultraLabel6.Name = "ultraLabel6";
  1483. this.ultraLabel6.Size = new System.Drawing.Size(29, 16);
  1484. this.ultraLabel6.TabIndex = 390;
  1485. this.ultraLabel6.Text = "班组";
  1486. //
  1487. // cmb_BC
  1488. //
  1489. appearance27.BackColor = System.Drawing.Color.LightCyan;
  1490. this.cmb_BC.Appearance = appearance27;
  1491. this.cmb_BC.CharacterCasing = System.Windows.Forms.CharacterCasing.Normal;
  1492. this.cmb_BC.DisplayMember = "";
  1493. this.cmb_BC.FlatMode = true;
  1494. this.cmb_BC.Location = new System.Drawing.Point(62, 57);
  1495. this.cmb_BC.Name = "cmb_BC";
  1496. this.cmb_BC.Size = new System.Drawing.Size(106, 19);
  1497. this.cmb_BC.TabIndex = 375;
  1498. this.cmb_BC.Tag = "";
  1499. this.cmb_BC.ValueMember = "";
  1500. //
  1501. // ultraLabel7
  1502. //
  1503. this.ultraLabel7.BackColor = System.Drawing.Color.Transparent;
  1504. this.ultraLabel7.Location = new System.Drawing.Point(29, 61);
  1505. this.ultraLabel7.Name = "ultraLabel7";
  1506. this.ultraLabel7.Size = new System.Drawing.Size(29, 16);
  1507. this.ultraLabel7.TabIndex = 389;
  1508. this.ultraLabel7.Text = "班次";
  1509. //
  1510. // cmb_NewArea
  1511. //
  1512. appearance28.BackColor = System.Drawing.Color.LightCyan;
  1513. this.cmb_NewArea.Appearance = appearance28;
  1514. this.cmb_NewArea.CharacterCasing = System.Windows.Forms.CharacterCasing.Normal;
  1515. this.cmb_NewArea.DisplayMember = "";
  1516. this.cmb_NewArea.FlatMode = true;
  1517. this.cmb_NewArea.Location = new System.Drawing.Point(62, 33);
  1518. this.cmb_NewArea.Name = "cmb_NewArea";
  1519. this.cmb_NewArea.Size = new System.Drawing.Size(106, 19);
  1520. this.cmb_NewArea.TabIndex = 371;
  1521. this.cmb_NewArea.Tag = "";
  1522. this.cmb_NewArea.ValueMember = "";
  1523. this.cmb_NewArea.KeyDown += new System.Windows.Forms.KeyEventHandler(this.txt_XDH_KeyDown);
  1524. this.cmb_NewArea.Enter += new System.EventHandler(this.txt_XDH_Enter);
  1525. this.cmb_NewArea.ValueChanged += new System.EventHandler(this.cmb_NewArea_ValueChanged);
  1526. //
  1527. // ultraLabel5
  1528. //
  1529. this.ultraLabel5.BackColor = System.Drawing.Color.Transparent;
  1530. this.ultraLabel5.Location = new System.Drawing.Point(16, 38);
  1531. this.ultraLabel5.Name = "ultraLabel5";
  1532. this.ultraLabel5.Size = new System.Drawing.Size(42, 16);
  1533. this.ultraLabel5.TabIndex = 388;
  1534. this.ultraLabel5.Text = "新区域";
  1535. //
  1536. // txt_XDHDate
  1537. //
  1538. appearance29.BackColor = System.Drawing.Color.LightCyan;
  1539. this.txt_XDHDate.Appearance = appearance29;
  1540. this.txt_XDHDate.AutoSize = true;
  1541. this.txt_XDHDate.FlatMode = true;
  1542. this.txt_XDHDate.Location = new System.Drawing.Point(384, 33);
  1543. this.txt_XDHDate.Name = "txt_XDHDate";
  1544. this.txt_XDHDate.Size = new System.Drawing.Size(77, 19);
  1545. this.txt_XDHDate.TabIndex = 373;
  1546. this.txt_XDHDate.Tag = "";
  1547. this.txt_XDHDate.Enter += new System.EventHandler(this.txt_XDH_Enter);
  1548. this.txt_XDHDate.KeyDown += new System.Windows.Forms.KeyEventHandler(this.txt_XDH_KeyDown);
  1549. //
  1550. // txt_YDHDate
  1551. //
  1552. appearance30.BackColor = System.Drawing.Color.LightCyan;
  1553. this.txt_YDHDate.Appearance = appearance30;
  1554. this.txt_YDHDate.AutoSize = true;
  1555. this.txt_YDHDate.FlatMode = true;
  1556. this.txt_YDHDate.Location = new System.Drawing.Point(216, 9);
  1557. this.txt_YDHDate.Name = "txt_YDHDate";
  1558. this.txt_YDHDate.Size = new System.Drawing.Size(48, 19);
  1559. this.txt_YDHDate.TabIndex = 368;
  1560. this.txt_YDHDate.Tag = "";
  1561. this.txt_YDHDate.Enter += new System.EventHandler(this.txt_XDH_Enter);
  1562. this.txt_YDHDate.KeyDown += new System.Windows.Forms.KeyEventHandler(this.txt_XDH_KeyDown);
  1563. //
  1564. // chk_XH
  1565. //
  1566. this.chk_XH.BackColor = System.Drawing.Color.Transparent;
  1567. this.chk_XH.FlatMode = true;
  1568. this.chk_XH.Location = new System.Drawing.Point(336, 12);
  1569. this.chk_XH.Name = "chk_XH";
  1570. this.chk_XH.Size = new System.Drawing.Size(48, 16);
  1571. this.chk_XH.TabIndex = 383;
  1572. this.chk_XH.Text = "序号";
  1573. this.chk_XH.CheckedChanged += new System.EventHandler(this.chk_XH_CheckedChanged);
  1574. //
  1575. // txt_YY
  1576. //
  1577. appearance31.BackColor = System.Drawing.Color.LightCyan;
  1578. this.txt_YY.Appearance = appearance31;
  1579. this.txt_YY.AutoSize = true;
  1580. this.txt_YY.FlatMode = true;
  1581. this.txt_YY.Location = new System.Drawing.Point(216, 81);
  1582. this.txt_YY.Name = "txt_YY";
  1583. this.txt_YY.Size = new System.Drawing.Size(250, 19);
  1584. this.txt_YY.TabIndex = 379;
  1585. this.txt_YY.Tag = "KCH_TURNOFFMOVEBUTTRESSLIST|REMARK";
  1586. //
  1587. // lab_Weight
  1588. //
  1589. this.lab_Weight.AutoSize = true;
  1590. this.lab_Weight.BackColor = System.Drawing.Color.Transparent;
  1591. this.lab_Weight.Location = new System.Drawing.Point(184, 85);
  1592. this.lab_Weight.Name = "lab_Weight";
  1593. this.lab_Weight.Size = new System.Drawing.Size(29, 12);
  1594. this.lab_Weight.TabIndex = 387;
  1595. this.lab_Weight.Text = "备注";
  1596. //
  1597. // txt_XH
  1598. //
  1599. appearance32.BackColor = System.Drawing.Color.LavenderBlush;
  1600. this.txt_XH.Appearance = appearance32;
  1601. this.txt_XH.AutoSize = true;
  1602. this.txt_XH.Enabled = false;
  1603. this.txt_XH.FlatMode = true;
  1604. this.txt_XH.Location = new System.Drawing.Point(384, 9);
  1605. this.txt_XH.Name = "txt_XH";
  1606. this.txt_XH.Size = new System.Drawing.Size(152, 19);
  1607. this.txt_XH.TabIndex = 370;
  1608. this.txt_XH.Tag = "";
  1609. this.txt_XH.Enter += new System.EventHandler(this.txt_XDH_Enter);
  1610. this.txt_XH.KeyDown += new System.Windows.Forms.KeyEventHandler(this.txt_XDH_KeyDown);
  1611. //
  1612. // ultraLabel4
  1613. //
  1614. this.ultraLabel4.BackColor = System.Drawing.Color.Transparent;
  1615. this.ultraLabel4.Location = new System.Drawing.Point(344, 37);
  1616. this.ultraLabel4.Name = "ultraLabel4";
  1617. this.ultraLabel4.Size = new System.Drawing.Size(42, 16);
  1618. this.ultraLabel4.TabIndex = 386;
  1619. this.ultraLabel4.Text = "新吊号";
  1620. //
  1621. // ultraLabel3
  1622. //
  1623. this.ultraLabel3.BackColor = System.Drawing.Color.Transparent;
  1624. this.ultraLabel3.Location = new System.Drawing.Point(176, 12);
  1625. this.ultraLabel3.Name = "ultraLabel3";
  1626. this.ultraLabel3.Size = new System.Drawing.Size(42, 16);
  1627. this.ultraLabel3.TabIndex = 385;
  1628. this.ultraLabel3.Text = "原吊号";
  1629. //
  1630. // cmb_NewButtress
  1631. //
  1632. appearance33.BackColor = System.Drawing.Color.LightCyan;
  1633. this.cmb_NewButtress.Appearance = appearance33;
  1634. this.cmb_NewButtress.CharacterCasing = System.Windows.Forms.CharacterCasing.Normal;
  1635. this.cmb_NewButtress.DisplayMember = "";
  1636. this.cmb_NewButtress.FlatMode = true;
  1637. this.cmb_NewButtress.Location = new System.Drawing.Point(216, 33);
  1638. this.cmb_NewButtress.Name = "cmb_NewButtress";
  1639. this.cmb_NewButtress.Size = new System.Drawing.Size(112, 19);
  1640. this.cmb_NewButtress.TabIndex = 372;
  1641. this.cmb_NewButtress.Tag = "";
  1642. this.cmb_NewButtress.ValueMember = "";
  1643. this.cmb_NewButtress.KeyDown += new System.Windows.Forms.KeyEventHandler(this.txt_XDH_KeyDown);
  1644. this.cmb_NewButtress.Enter += new System.EventHandler(this.txt_XDH_Enter);
  1645. //
  1646. // ultraLabel2
  1647. //
  1648. this.ultraLabel2.BackColor = System.Drawing.Color.Transparent;
  1649. this.ultraLabel2.Location = new System.Drawing.Point(176, 37);
  1650. this.ultraLabel2.Name = "ultraLabel2";
  1651. this.ultraLabel2.Size = new System.Drawing.Size(42, 16);
  1652. this.ultraLabel2.TabIndex = 384;
  1653. this.ultraLabel2.Text = "新垛位";
  1654. //
  1655. // cmb_OldButtress
  1656. //
  1657. appearance34.BackColor = System.Drawing.Color.LightCyan;
  1658. this.cmb_OldButtress.Appearance = appearance34;
  1659. this.cmb_OldButtress.CharacterCasing = System.Windows.Forms.CharacterCasing.Normal;
  1660. this.cmb_OldButtress.DisplayMember = "";
  1661. this.cmb_OldButtress.FlatMode = true;
  1662. this.cmb_OldButtress.Location = new System.Drawing.Point(62, 9);
  1663. this.cmb_OldButtress.Name = "cmb_OldButtress";
  1664. this.cmb_OldButtress.ReadOnly = true;
  1665. this.cmb_OldButtress.Size = new System.Drawing.Size(106, 19);
  1666. this.cmb_OldButtress.TabIndex = 367;
  1667. this.cmb_OldButtress.Tag = "";
  1668. this.cmb_OldButtress.ValueMember = "";
  1669. this.cmb_OldButtress.KeyDown += new System.Windows.Forms.KeyEventHandler(this.txt_XDH_KeyDown);
  1670. this.cmb_OldButtress.Enter += new System.EventHandler(this.txt_XDH_Enter);
  1671. //
  1672. // ultraLabel1
  1673. //
  1674. this.ultraLabel1.BackColor = System.Drawing.Color.Transparent;
  1675. this.ultraLabel1.Location = new System.Drawing.Point(16, 12);
  1676. this.ultraLabel1.Name = "ultraLabel1";
  1677. this.ultraLabel1.Size = new System.Drawing.Size(42, 16);
  1678. this.ultraLabel1.TabIndex = 382;
  1679. this.ultraLabel1.Text = "原垛位";
  1680. //
  1681. // panel2
  1682. //
  1683. this.panel2.Controls.Add(this.dg_TurnoffButtress);
  1684. this.panel2.Dock = System.Windows.Forms.DockStyle.Fill;
  1685. this.panel2.Location = new System.Drawing.Point(0, 112);
  1686. this.panel2.Name = "panel2";
  1687. this.panel2.Size = new System.Drawing.Size(1104, 262);
  1688. this.panel2.TabIndex = 14;
  1689. //
  1690. // dg_TurnoffButtress
  1691. //
  1692. this.dg_TurnoffButtress.DataSource = this.ds_TurnoffButtress;
  1693. appearance35.BackColor = System.Drawing.Color.Ivory;
  1694. this.dg_TurnoffButtress.DisplayLayout.Appearance = appearance35;
  1695. ultraGridColumn1.CellActivation = Infragistics.Win.UltraWinGrid.Activation.NoEdit;
  1696. ultraGridColumn1.Header.Caption = "产线";
  1697. ultraGridColumn1.Header.VisiblePosition = 1;
  1698. ultraGridColumn1.RowLayoutColumnInfo.OriginX = 16;
  1699. ultraGridColumn1.RowLayoutColumnInfo.OriginY = 0;
  1700. ultraGridColumn1.RowLayoutColumnInfo.PreferredCellSize = new System.Drawing.Size(60, 22);
  1701. ultraGridColumn1.RowLayoutColumnInfo.PreferredLabelSize = new System.Drawing.Size(0, 27);
  1702. ultraGridColumn1.RowLayoutColumnInfo.SpanX = 1;
  1703. ultraGridColumn1.RowLayoutColumnInfo.SpanY = 1;
  1704. ultraGridColumn1.SortIndicator = Infragistics.Win.UltraWinGrid.SortIndicator.Disabled;
  1705. ultraGridColumn2.CellActivation = Infragistics.Win.UltraWinGrid.Activation.NoEdit;
  1706. appearance36.BackColor = System.Drawing.Color.LightGoldenrodYellow;
  1707. ultraGridColumn2.CellAppearance = appearance36;
  1708. ultraGridColumn2.Header.Caption = "轧编号";
  1709. ultraGridColumn2.Header.VisiblePosition = 2;
  1710. ultraGridColumn2.RowLayoutColumnInfo.OriginX = 1;
  1711. ultraGridColumn2.RowLayoutColumnInfo.OriginY = 0;
  1712. ultraGridColumn2.RowLayoutColumnInfo.PreferredCellSize = new System.Drawing.Size(68, 22);
  1713. ultraGridColumn2.RowLayoutColumnInfo.PreferredLabelSize = new System.Drawing.Size(0, 27);
  1714. ultraGridColumn2.RowLayoutColumnInfo.SpanX = 1;
  1715. ultraGridColumn2.RowLayoutColumnInfo.SpanY = 1;
  1716. ultraGridColumn2.SortIndicator = Infragistics.Win.UltraWinGrid.SortIndicator.Disabled;
  1717. ultraGridColumn3.CellActivation = Infragistics.Win.UltraWinGrid.Activation.NoEdit;
  1718. ultraGridColumn3.Header.Caption = "母板序号";
  1719. ultraGridColumn3.Header.VisiblePosition = 3;
  1720. ultraGridColumn3.Hidden = true;
  1721. ultraGridColumn3.RowLayoutColumnInfo.OriginX = 15;
  1722. ultraGridColumn3.RowLayoutColumnInfo.OriginY = 0;
  1723. ultraGridColumn3.RowLayoutColumnInfo.PreferredCellSize = new System.Drawing.Size(98, 24);
  1724. ultraGridColumn3.RowLayoutColumnInfo.PreferredLabelSize = new System.Drawing.Size(0, 20);
  1725. ultraGridColumn3.RowLayoutColumnInfo.SpanX = 1;
  1726. ultraGridColumn3.RowLayoutColumnInfo.SpanY = 2;
  1727. ultraGridColumn3.SortIndicator = Infragistics.Win.UltraWinGrid.SortIndicator.Disabled;
  1728. ultraGridColumn4.CellActivation = Infragistics.Win.UltraWinGrid.Activation.NoEdit;
  1729. ultraGridColumn4.Header.Caption = "块序号";
  1730. ultraGridColumn4.Header.VisiblePosition = 0;
  1731. ultraGridColumn4.RowLayoutColumnInfo.OriginX = 2;
  1732. ultraGridColumn4.RowLayoutColumnInfo.OriginY = 0;
  1733. ultraGridColumn4.RowLayoutColumnInfo.PreferredCellSize = new System.Drawing.Size(90, 22);
  1734. ultraGridColumn4.RowLayoutColumnInfo.PreferredLabelSize = new System.Drawing.Size(0, 27);
  1735. ultraGridColumn4.RowLayoutColumnInfo.SpanX = 1;
  1736. ultraGridColumn4.RowLayoutColumnInfo.SpanY = 1;
  1737. ultraGridColumn4.SortIndicator = Infragistics.Win.UltraWinGrid.SortIndicator.Disabled;
  1738. ultraGridColumn5.CellActivation = Infragistics.Win.UltraWinGrid.Activation.NoEdit;
  1739. appearance37.BackColor = System.Drawing.Color.LightGoldenrodYellow;
  1740. ultraGridColumn5.CellAppearance = appearance37;
  1741. ultraGridColumn5.Header.Caption = "牌号";
  1742. ultraGridColumn5.Header.VisiblePosition = 13;
  1743. ultraGridColumn5.RowLayoutColumnInfo.OriginX = 3;
  1744. ultraGridColumn5.RowLayoutColumnInfo.OriginY = 0;
  1745. ultraGridColumn5.RowLayoutColumnInfo.PreferredCellSize = new System.Drawing.Size(59, 22);
  1746. ultraGridColumn5.RowLayoutColumnInfo.PreferredLabelSize = new System.Drawing.Size(0, 27);
  1747. ultraGridColumn5.RowLayoutColumnInfo.SpanX = 1;
  1748. ultraGridColumn5.RowLayoutColumnInfo.SpanY = 1;
  1749. ultraGridColumn5.SortIndicator = Infragistics.Win.UltraWinGrid.SortIndicator.Disabled;
  1750. ultraGridColumn6.Header.Caption = "规格";
  1751. ultraGridColumn6.Header.VisiblePosition = 26;
  1752. ultraGridColumn6.RowLayoutColumnInfo.OriginX = 10;
  1753. ultraGridColumn6.RowLayoutColumnInfo.OriginY = 0;
  1754. ultraGridColumn6.RowLayoutColumnInfo.PreferredCellSize = new System.Drawing.Size(111, 22);
  1755. ultraGridColumn6.RowLayoutColumnInfo.PreferredLabelSize = new System.Drawing.Size(0, 27);
  1756. ultraGridColumn6.RowLayoutColumnInfo.SpanX = 1;
  1757. ultraGridColumn6.RowLayoutColumnInfo.SpanY = 1;
  1758. ultraGridColumn6.SortIndicator = Infragistics.Win.UltraWinGrid.SortIndicator.Disabled;
  1759. ultraGridColumn7.CellActivation = Infragistics.Win.UltraWinGrid.Activation.NoEdit;
  1760. ultraGridColumn7.Header.Caption = "重量";
  1761. ultraGridColumn7.Header.VisiblePosition = 10;
  1762. ultraGridColumn7.RowLayoutColumnInfo.OriginX = 12;
  1763. ultraGridColumn7.RowLayoutColumnInfo.OriginY = 0;
  1764. ultraGridColumn7.RowLayoutColumnInfo.PreferredCellSize = new System.Drawing.Size(72, 22);
  1765. ultraGridColumn7.RowLayoutColumnInfo.PreferredLabelSize = new System.Drawing.Size(0, 27);
  1766. ultraGridColumn7.RowLayoutColumnInfo.SpanX = 1;
  1767. ultraGridColumn7.RowLayoutColumnInfo.SpanY = 1;
  1768. ultraGridColumn7.SortIndicator = Infragistics.Win.UltraWinGrid.SortIndicator.Disabled;
  1769. ultraGridColumn8.CellActivation = Infragistics.Win.UltraWinGrid.Activation.NoEdit;
  1770. ultraGridColumn8.Header.Caption = "判定性能";
  1771. ultraGridColumn8.Header.VisiblePosition = 14;
  1772. ultraGridColumn8.RowLayoutColumnInfo.OriginX = 32;
  1773. ultraGridColumn8.RowLayoutColumnInfo.OriginY = 0;
  1774. ultraGridColumn8.RowLayoutColumnInfo.PreferredCellSize = new System.Drawing.Size(64, 22);
  1775. ultraGridColumn8.RowLayoutColumnInfo.PreferredLabelSize = new System.Drawing.Size(0, 27);
  1776. ultraGridColumn8.RowLayoutColumnInfo.SpanX = 1;
  1777. ultraGridColumn8.RowLayoutColumnInfo.SpanY = 1;
  1778. ultraGridColumn8.SortIndicator = Infragistics.Win.UltraWinGrid.SortIndicator.Disabled;
  1779. ultraGridColumn9.CellActivation = Infragistics.Win.UltraWinGrid.Activation.NoEdit;
  1780. ultraGridColumn9.Header.Caption = "计划号";
  1781. ultraGridColumn9.Header.VisiblePosition = 5;
  1782. ultraGridColumn9.RowLayoutColumnInfo.OriginX = 17;
  1783. ultraGridColumn9.RowLayoutColumnInfo.OriginY = 0;
  1784. ultraGridColumn9.RowLayoutColumnInfo.PreferredCellSize = new System.Drawing.Size(98, 22);
  1785. ultraGridColumn9.RowLayoutColumnInfo.PreferredLabelSize = new System.Drawing.Size(0, 27);
  1786. ultraGridColumn9.RowLayoutColumnInfo.SpanX = 1;
  1787. ultraGridColumn9.RowLayoutColumnInfo.SpanY = 1;
  1788. ultraGridColumn9.SortIndicator = Infragistics.Win.UltraWinGrid.SortIndicator.Disabled;
  1789. ultraGridColumn10.CellActivation = Infragistics.Win.UltraWinGrid.Activation.NoEdit;
  1790. ultraGridColumn10.Header.Caption = "合同号";
  1791. ultraGridColumn10.Header.VisiblePosition = 25;
  1792. ultraGridColumn10.RowLayoutColumnInfo.OriginX = 19;
  1793. ultraGridColumn10.RowLayoutColumnInfo.OriginY = 0;
  1794. ultraGridColumn10.RowLayoutColumnInfo.PreferredCellSize = new System.Drawing.Size(84, 22);
  1795. ultraGridColumn10.RowLayoutColumnInfo.PreferredLabelSize = new System.Drawing.Size(0, 27);
  1796. ultraGridColumn10.RowLayoutColumnInfo.SpanX = 1;
  1797. ultraGridColumn10.RowLayoutColumnInfo.SpanY = 1;
  1798. ultraGridColumn10.SortIndicator = Infragistics.Win.UltraWinGrid.SortIndicator.Disabled;
  1799. ultraGridColumn11.CellActivation = Infragistics.Win.UltraWinGrid.Activation.NoEdit;
  1800. appearance38.BackColor = System.Drawing.Color.LightGoldenrodYellow;
  1801. ultraGridColumn11.CellAppearance = appearance38;
  1802. ultraGridColumn11.Header.Caption = "炉号";
  1803. ultraGridColumn11.Header.VisiblePosition = 4;
  1804. ultraGridColumn11.Hidden = true;
  1805. ultraGridColumn11.RowLayoutColumnInfo.OriginX = 6;
  1806. ultraGridColumn11.RowLayoutColumnInfo.OriginY = 0;
  1807. ultraGridColumn11.RowLayoutColumnInfo.PreferredCellSize = new System.Drawing.Size(79, 24);
  1808. ultraGridColumn11.RowLayoutColumnInfo.PreferredLabelSize = new System.Drawing.Size(0, 20);
  1809. ultraGridColumn11.RowLayoutColumnInfo.SpanX = 1;
  1810. ultraGridColumn11.RowLayoutColumnInfo.SpanY = 2;
  1811. ultraGridColumn11.SortIndicator = Infragistics.Win.UltraWinGrid.SortIndicator.Disabled;
  1812. ultraGridColumn12.CellActivation = Infragistics.Win.UltraWinGrid.Activation.NoEdit;
  1813. appearance39.BackColor = System.Drawing.Color.LightGoldenrodYellow;
  1814. ultraGridColumn12.CellAppearance = appearance39;
  1815. ultraGridColumn12.Header.Caption = "订单号";
  1816. ultraGridColumn12.Header.VisiblePosition = 6;
  1817. ultraGridColumn12.RowLayoutColumnInfo.OriginX = 20;
  1818. ultraGridColumn12.RowLayoutColumnInfo.OriginY = 0;
  1819. ultraGridColumn12.RowLayoutColumnInfo.PreferredCellSize = new System.Drawing.Size(90, 22);
  1820. ultraGridColumn12.RowLayoutColumnInfo.PreferredLabelSize = new System.Drawing.Size(0, 27);
  1821. ultraGridColumn12.RowLayoutColumnInfo.SpanX = 1;
  1822. ultraGridColumn12.RowLayoutColumnInfo.SpanY = 1;
  1823. ultraGridColumn12.SortIndicator = Infragistics.Win.UltraWinGrid.SortIndicator.Disabled;
  1824. ultraGridColumn13.CellActivation = Infragistics.Win.UltraWinGrid.Activation.NoEdit;
  1825. appearance40.BackColor = System.Drawing.Color.LightGoldenrodYellow;
  1826. ultraGridColumn13.CellAppearance = appearance40;
  1827. ultraGridColumn13.Header.Caption = "厚度";
  1828. ultraGridColumn13.Header.VisiblePosition = 7;
  1829. ultraGridColumn13.RowLayoutColumnInfo.OriginX = 13;
  1830. ultraGridColumn13.RowLayoutColumnInfo.OriginY = 0;
  1831. ultraGridColumn13.RowLayoutColumnInfo.PreferredCellSize = new System.Drawing.Size(52, 24);
  1832. ultraGridColumn13.RowLayoutColumnInfo.PreferredLabelSize = new System.Drawing.Size(0, 20);
  1833. ultraGridColumn13.RowLayoutColumnInfo.SpanX = 1;
  1834. ultraGridColumn13.RowLayoutColumnInfo.SpanY = 1;
  1835. ultraGridColumn13.SortIndicator = Infragistics.Win.UltraWinGrid.SortIndicator.Disabled;
  1836. ultraGridColumn14.CellActivation = Infragistics.Win.UltraWinGrid.Activation.NoEdit;
  1837. ultraGridColumn14.Header.Caption = "宽度";
  1838. ultraGridColumn14.Header.VisiblePosition = 8;
  1839. ultraGridColumn14.RowLayoutColumnInfo.OriginX = 14;
  1840. ultraGridColumn14.RowLayoutColumnInfo.OriginY = 0;
  1841. ultraGridColumn14.RowLayoutColumnInfo.PreferredCellSize = new System.Drawing.Size(53, 16);
  1842. ultraGridColumn14.RowLayoutColumnInfo.PreferredLabelSize = new System.Drawing.Size(0, 20);
  1843. ultraGridColumn14.RowLayoutColumnInfo.SpanX = 1;
  1844. ultraGridColumn14.RowLayoutColumnInfo.SpanY = 1;
  1845. ultraGridColumn14.SortIndicator = Infragistics.Win.UltraWinGrid.SortIndicator.Disabled;
  1846. ultraGridColumn15.CellActivation = Infragistics.Win.UltraWinGrid.Activation.NoEdit;
  1847. appearance41.BackColor = System.Drawing.Color.LightGoldenrodYellow;
  1848. ultraGridColumn15.CellAppearance = appearance41;
  1849. ultraGridColumn15.Header.Caption = "长度";
  1850. ultraGridColumn15.Header.VisiblePosition = 9;
  1851. ultraGridColumn15.RowLayoutColumnInfo.OriginX = 15;
  1852. ultraGridColumn15.RowLayoutColumnInfo.OriginY = 0;
  1853. ultraGridColumn15.RowLayoutColumnInfo.PreferredCellSize = new System.Drawing.Size(53, 24);
  1854. ultraGridColumn15.RowLayoutColumnInfo.PreferredLabelSize = new System.Drawing.Size(0, 20);
  1855. ultraGridColumn15.RowLayoutColumnInfo.SpanX = 1;
  1856. ultraGridColumn15.RowLayoutColumnInfo.SpanY = 1;
  1857. ultraGridColumn15.SortIndicator = Infragistics.Win.UltraWinGrid.SortIndicator.Disabled;
  1858. ultraGridColumn16.CellActivation = Infragistics.Win.UltraWinGrid.Activation.NoEdit;
  1859. appearance42.BackColor = System.Drawing.Color.LightGoldenrodYellow;
  1860. ultraGridColumn16.CellAppearance = appearance42;
  1861. ultraGridColumn16.Header.Caption = "表面质量";
  1862. ultraGridColumn16.Header.VisiblePosition = 11;
  1863. ultraGridColumn16.RowLayoutColumnInfo.OriginX = 33;
  1864. ultraGridColumn16.RowLayoutColumnInfo.OriginY = 0;
  1865. ultraGridColumn16.RowLayoutColumnInfo.PreferredCellSize = new System.Drawing.Size(70, 22);
  1866. ultraGridColumn16.RowLayoutColumnInfo.PreferredLabelSize = new System.Drawing.Size(0, 27);
  1867. ultraGridColumn16.RowLayoutColumnInfo.SpanX = 1;
  1868. ultraGridColumn16.RowLayoutColumnInfo.SpanY = 1;
  1869. ultraGridColumn16.SortIndicator = Infragistics.Win.UltraWinGrid.SortIndicator.Disabled;
  1870. ultraGridColumn17.CellActivation = Infragistics.Win.UltraWinGrid.Activation.NoEdit;
  1871. ultraGridColumn17.Header.Caption = "表面缺陷";
  1872. ultraGridColumn17.Header.VisiblePosition = 12;
  1873. ultraGridColumn17.RowLayoutColumnInfo.OriginX = 34;
  1874. ultraGridColumn17.RowLayoutColumnInfo.OriginY = 0;
  1875. ultraGridColumn17.RowLayoutColumnInfo.PreferredCellSize = new System.Drawing.Size(69, 22);
  1876. ultraGridColumn17.RowLayoutColumnInfo.PreferredLabelSize = new System.Drawing.Size(0, 27);
  1877. ultraGridColumn17.RowLayoutColumnInfo.SpanX = 1;
  1878. ultraGridColumn17.RowLayoutColumnInfo.SpanY = 1;
  1879. ultraGridColumn17.SortIndicator = Infragistics.Win.UltraWinGrid.SortIndicator.Disabled;
  1880. ultraGridColumn18.CellActivation = Infragistics.Win.UltraWinGrid.Activation.NoEdit;
  1881. ultraGridColumn18.Header.Caption = "切边类型";
  1882. ultraGridColumn18.Header.VisiblePosition = 15;
  1883. ultraGridColumn18.RowLayoutColumnInfo.OriginX = 31;
  1884. ultraGridColumn18.RowLayoutColumnInfo.OriginY = 0;
  1885. ultraGridColumn18.RowLayoutColumnInfo.PreferredCellSize = new System.Drawing.Size(76, 22);
  1886. ultraGridColumn18.RowLayoutColumnInfo.PreferredLabelSize = new System.Drawing.Size(0, 27);
  1887. ultraGridColumn18.RowLayoutColumnInfo.SpanX = 1;
  1888. ultraGridColumn18.RowLayoutColumnInfo.SpanY = 1;
  1889. ultraGridColumn18.SortIndicator = Infragistics.Win.UltraWinGrid.SortIndicator.Disabled;
  1890. ultraGridColumn19.CellActivation = Infragistics.Win.UltraWinGrid.Activation.NoEdit;
  1891. ultraGridColumn19.Header.Caption = "原料明细号";
  1892. ultraGridColumn19.Header.VisiblePosition = 16;
  1893. ultraGridColumn19.RowLayoutColumnInfo.OriginX = 35;
  1894. ultraGridColumn19.RowLayoutColumnInfo.OriginY = 0;
  1895. ultraGridColumn19.RowLayoutColumnInfo.PreferredCellSize = new System.Drawing.Size(74, 22);
  1896. ultraGridColumn19.RowLayoutColumnInfo.PreferredLabelSize = new System.Drawing.Size(0, 27);
  1897. ultraGridColumn19.RowLayoutColumnInfo.SpanX = 1;
  1898. ultraGridColumn19.RowLayoutColumnInfo.SpanY = 1;
  1899. ultraGridColumn19.SortIndicator = Infragistics.Win.UltraWinGrid.SortIndicator.Disabled;
  1900. ultraGridColumn20.CellActivation = Infragistics.Win.UltraWinGrid.Activation.NoEdit;
  1901. ultraGridColumn20.Header.Caption = "入库时间";
  1902. ultraGridColumn20.Header.VisiblePosition = 17;
  1903. ultraGridColumn20.RowLayoutColumnInfo.OriginX = 36;
  1904. ultraGridColumn20.RowLayoutColumnInfo.OriginY = 0;
  1905. ultraGridColumn20.RowLayoutColumnInfo.PreferredCellSize = new System.Drawing.Size(77, 22);
  1906. ultraGridColumn20.RowLayoutColumnInfo.PreferredLabelSize = new System.Drawing.Size(0, 27);
  1907. ultraGridColumn20.RowLayoutColumnInfo.SpanX = 1;
  1908. ultraGridColumn20.RowLayoutColumnInfo.SpanY = 1;
  1909. ultraGridColumn20.SortIndicator = Infragistics.Win.UltraWinGrid.SortIndicator.Disabled;
  1910. ultraGridColumn21.CellActivation = Infragistics.Win.UltraWinGrid.Activation.NoEdit;
  1911. ultraGridColumn21.Header.Caption = "垛位";
  1912. ultraGridColumn21.Header.VisiblePosition = 18;
  1913. ultraGridColumn21.RowLayoutColumnInfo.OriginX = 5;
  1914. ultraGridColumn21.RowLayoutColumnInfo.OriginY = 0;
  1915. ultraGridColumn21.RowLayoutColumnInfo.PreferredCellSize = new System.Drawing.Size(65, 22);
  1916. ultraGridColumn21.RowLayoutColumnInfo.PreferredLabelSize = new System.Drawing.Size(0, 27);
  1917. ultraGridColumn21.RowLayoutColumnInfo.SpanX = 1;
  1918. ultraGridColumn21.RowLayoutColumnInfo.SpanY = 1;
  1919. ultraGridColumn21.SortIndicator = Infragistics.Win.UltraWinGrid.SortIndicator.Disabled;
  1920. ultraGridColumn22.CellActivation = Infragistics.Win.UltraWinGrid.Activation.NoEdit;
  1921. ultraGridColumn22.Header.Caption = "吊号";
  1922. ultraGridColumn22.Header.VisiblePosition = 19;
  1923. ultraGridColumn22.RowLayoutColumnInfo.OriginX = 6;
  1924. ultraGridColumn22.RowLayoutColumnInfo.OriginY = 0;
  1925. ultraGridColumn22.RowLayoutColumnInfo.PreferredCellSize = new System.Drawing.Size(70, 22);
  1926. ultraGridColumn22.RowLayoutColumnInfo.PreferredLabelSize = new System.Drawing.Size(0, 27);
  1927. ultraGridColumn22.RowLayoutColumnInfo.SpanX = 1;
  1928. ultraGridColumn22.RowLayoutColumnInfo.SpanY = 1;
  1929. ultraGridColumn22.SortIndicator = Infragistics.Win.UltraWinGrid.SortIndicator.Disabled;
  1930. ultraGridColumn23.CellActivation = Infragistics.Win.UltraWinGrid.Activation.NoEdit;
  1931. ultraGridColumn23.Header.Caption = "吊序";
  1932. ultraGridColumn23.Header.VisiblePosition = 20;
  1933. ultraGridColumn23.RowLayoutColumnInfo.OriginX = 7;
  1934. ultraGridColumn23.RowLayoutColumnInfo.OriginY = 0;
  1935. ultraGridColumn23.RowLayoutColumnInfo.PreferredCellSize = new System.Drawing.Size(44, 22);
  1936. ultraGridColumn23.RowLayoutColumnInfo.PreferredLabelSize = new System.Drawing.Size(0, 27);
  1937. ultraGridColumn23.RowLayoutColumnInfo.SpanX = 1;
  1938. ultraGridColumn23.RowLayoutColumnInfo.SpanY = 1;
  1939. ultraGridColumn23.SortIndicator = Infragistics.Win.UltraWinGrid.SortIndicator.Disabled;
  1940. ultraGridColumn24.CellActivation = Infragistics.Win.UltraWinGrid.Activation.NoEdit;
  1941. ultraGridColumn24.Header.Caption = "层";
  1942. ultraGridColumn24.Header.VisiblePosition = 21;
  1943. ultraGridColumn24.RowLayoutColumnInfo.OriginX = 8;
  1944. ultraGridColumn24.RowLayoutColumnInfo.OriginY = 0;
  1945. ultraGridColumn24.RowLayoutColumnInfo.PreferredCellSize = new System.Drawing.Size(50, 0);
  1946. ultraGridColumn24.RowLayoutColumnInfo.PreferredLabelSize = new System.Drawing.Size(0, 20);
  1947. ultraGridColumn24.RowLayoutColumnInfo.SpanX = 1;
  1948. ultraGridColumn24.RowLayoutColumnInfo.SpanY = 1;
  1949. ultraGridColumn24.SortIndicator = Infragistics.Win.UltraWinGrid.SortIndicator.Disabled;
  1950. ultraGridColumn25.CellActivation = Infragistics.Win.UltraWinGrid.Activation.NoEdit;
  1951. ultraGridColumn25.Header.Caption = "板块层";
  1952. ultraGridColumn25.Header.VisiblePosition = 22;
  1953. ultraGridColumn25.Hidden = true;
  1954. ultraGridColumn25.RowLayoutColumnInfo.OriginX = 6;
  1955. ultraGridColumn25.RowLayoutColumnInfo.OriginY = 0;
  1956. ultraGridColumn25.RowLayoutColumnInfo.PreferredCellSize = new System.Drawing.Size(63, 22);
  1957. ultraGridColumn25.RowLayoutColumnInfo.PreferredLabelSize = new System.Drawing.Size(0, 27);
  1958. ultraGridColumn25.RowLayoutColumnInfo.SpanX = 1;
  1959. ultraGridColumn25.RowLayoutColumnInfo.SpanY = 1;
  1960. ultraGridColumn25.SortIndicator = Infragistics.Win.UltraWinGrid.SortIndicator.Disabled;
  1961. ultraGridColumn26.CellActivation = Infragistics.Win.UltraWinGrid.Activation.NoEdit;
  1962. ultraGridColumn26.Header.Caption = "区域";
  1963. ultraGridColumn26.Header.VisiblePosition = 23;
  1964. ultraGridColumn26.RowLayoutColumnInfo.OriginX = 9;
  1965. ultraGridColumn26.RowLayoutColumnInfo.OriginY = 0;
  1966. ultraGridColumn26.RowLayoutColumnInfo.PreferredCellSize = new System.Drawing.Size(50, 22);
  1967. ultraGridColumn26.RowLayoutColumnInfo.PreferredLabelSize = new System.Drawing.Size(0, 27);
  1968. ultraGridColumn26.RowLayoutColumnInfo.SpanX = 1;
  1969. ultraGridColumn26.RowLayoutColumnInfo.SpanY = 1;
  1970. ultraGridColumn26.SortIndicator = Infragistics.Win.UltraWinGrid.SortIndicator.Disabled;
  1971. ultraGridColumn27.CellActivation = Infragistics.Win.UltraWinGrid.Activation.NoEdit;
  1972. ultraGridColumn27.Header.Caption = "系统备注";
  1973. ultraGridColumn27.Header.VisiblePosition = 24;
  1974. ultraGridColumn27.RowLayoutColumnInfo.OriginX = 37;
  1975. ultraGridColumn27.RowLayoutColumnInfo.OriginY = 0;
  1976. ultraGridColumn27.RowLayoutColumnInfo.PreferredCellSize = new System.Drawing.Size(0, 22);
  1977. ultraGridColumn27.RowLayoutColumnInfo.PreferredLabelSize = new System.Drawing.Size(0, 27);
  1978. ultraGridColumn27.RowLayoutColumnInfo.SpanX = 1;
  1979. ultraGridColumn27.RowLayoutColumnInfo.SpanY = 1;
  1980. ultraGridColumn27.SortIndicator = Infragistics.Win.UltraWinGrid.SortIndicator.Disabled;
  1981. ultraGridColumn28.Header.Caption = "备注";
  1982. ultraGridColumn28.Header.VisiblePosition = 27;
  1983. ultraGridColumn28.RowLayoutColumnInfo.OriginX = 42;
  1984. ultraGridColumn28.RowLayoutColumnInfo.OriginY = 0;
  1985. ultraGridColumn28.RowLayoutColumnInfo.SpanX = 1;
  1986. ultraGridColumn28.RowLayoutColumnInfo.SpanY = 1;
  1987. ultraGridColumn28.SortIndicator = Infragistics.Win.UltraWinGrid.SortIndicator.Disabled;
  1988. ultraGridColumn29.Header.Caption = "登记时间";
  1989. ultraGridColumn29.Header.VisiblePosition = 28;
  1990. ultraGridColumn29.RowLayoutColumnInfo.OriginX = 0;
  1991. ultraGridColumn29.RowLayoutColumnInfo.OriginY = 0;
  1992. ultraGridColumn29.RowLayoutColumnInfo.PreferredCellSize = new System.Drawing.Size(127, 0);
  1993. ultraGridColumn29.RowLayoutColumnInfo.SpanX = 1;
  1994. ultraGridColumn29.RowLayoutColumnInfo.SpanY = 1;
  1995. ultraGridColumn29.SortIndicator = Infragistics.Win.UltraWinGrid.SortIndicator.Disabled;
  1996. ultraGridColumn30.Header.Caption = "原规格";
  1997. ultraGridColumn30.Header.VisiblePosition = 29;
  1998. ultraGridColumn30.RowLayoutColumnInfo.OriginX = 11;
  1999. ultraGridColumn30.RowLayoutColumnInfo.OriginY = 0;
  2000. ultraGridColumn30.RowLayoutColumnInfo.SpanX = 1;
  2001. ultraGridColumn30.RowLayoutColumnInfo.SpanY = 1;
  2002. ultraGridColumn31.Header.Caption = "原料入库牌号";
  2003. ultraGridColumn31.Header.VisiblePosition = 30;
  2004. ultraGridColumn31.RowLayoutColumnInfo.OriginX = 4;
  2005. ultraGridColumn31.RowLayoutColumnInfo.OriginY = 0;
  2006. ultraGridColumn31.RowLayoutColumnInfo.PreferredCellSize = new System.Drawing.Size(87, 0);
  2007. ultraGridColumn31.RowLayoutColumnInfo.SpanX = 1;
  2008. ultraGridColumn31.RowLayoutColumnInfo.SpanY = 1;
  2009. ultraGridColumn32.CellActivation = Infragistics.Win.UltraWinGrid.Activation.ActivateOnly;
  2010. ultraGridColumn32.Format = "";
  2011. ultraGridColumn32.Header.Caption = "交货期";
  2012. ultraGridColumn32.Header.VisiblePosition = 31;
  2013. ultraGridColumn32.RowLayoutColumnInfo.OriginX = 18;
  2014. ultraGridColumn32.RowLayoutColumnInfo.OriginY = 0;
  2015. ultraGridColumn32.RowLayoutColumnInfo.PreferredCellSize = new System.Drawing.Size(93, 0);
  2016. ultraGridColumn32.RowLayoutColumnInfo.SpanX = 1;
  2017. ultraGridColumn32.RowLayoutColumnInfo.SpanY = 1;
  2018. ultraGridColumn33.Header.Caption = "原计划号";
  2019. ultraGridColumn33.Header.VisiblePosition = 32;
  2020. ultraGridColumn33.RowLayoutColumnInfo.OriginX = 24;
  2021. ultraGridColumn33.RowLayoutColumnInfo.OriginY = 0;
  2022. ultraGridColumn33.RowLayoutColumnInfo.PreferredCellSize = new System.Drawing.Size(85, 0);
  2023. ultraGridColumn33.RowLayoutColumnInfo.SpanX = 1;
  2024. ultraGridColumn33.RowLayoutColumnInfo.SpanY = 1;
  2025. ultraGridColumn33.SortIndicator = Infragistics.Win.UltraWinGrid.SortIndicator.Disabled;
  2026. ultraGridColumn34.Header.Caption = "原订单号";
  2027. ultraGridColumn34.Header.VisiblePosition = 33;
  2028. ultraGridColumn34.RowLayoutColumnInfo.OriginX = 25;
  2029. ultraGridColumn34.RowLayoutColumnInfo.OriginY = 0;
  2030. ultraGridColumn34.RowLayoutColumnInfo.PreferredCellSize = new System.Drawing.Size(82, 0);
  2031. ultraGridColumn34.RowLayoutColumnInfo.SpanX = 1;
  2032. ultraGridColumn34.RowLayoutColumnInfo.SpanY = 1;
  2033. ultraGridColumn34.SortIndicator = Infragistics.Win.UltraWinGrid.SortIndicator.Disabled;
  2034. ultraGridColumn35.Header.Caption = "客户订单号";
  2035. ultraGridColumn35.Header.VisiblePosition = 34;
  2036. ultraGridColumn35.RowLayoutColumnInfo.OriginX = 23;
  2037. ultraGridColumn35.RowLayoutColumnInfo.OriginY = 0;
  2038. ultraGridColumn35.RowLayoutColumnInfo.SpanX = 1;
  2039. ultraGridColumn35.RowLayoutColumnInfo.SpanY = 1;
  2040. ultraGridColumn36.Header.Caption = "产品类型";
  2041. ultraGridColumn36.Header.VisiblePosition = 35;
  2042. ultraGridColumn36.RowLayoutColumnInfo.OriginX = 39;
  2043. ultraGridColumn36.RowLayoutColumnInfo.OriginY = 0;
  2044. ultraGridColumn36.RowLayoutColumnInfo.SpanX = 1;
  2045. ultraGridColumn36.RowLayoutColumnInfo.SpanY = 1;
  2046. ultraGridColumn37.Header.Caption = "判定备注";
  2047. ultraGridColumn37.Header.VisiblePosition = 36;
  2048. ultraGridColumn37.RowLayoutColumnInfo.OriginX = 41;
  2049. ultraGridColumn37.RowLayoutColumnInfo.OriginY = 0;
  2050. ultraGridColumn37.RowLayoutColumnInfo.SpanX = 1;
  2051. ultraGridColumn37.RowLayoutColumnInfo.SpanY = 1;
  2052. ultraGridColumn38.Header.Caption = "探伤结果";
  2053. ultraGridColumn38.Header.VisiblePosition = 37;
  2054. ultraGridColumn38.RowLayoutColumnInfo.OriginX = 38;
  2055. ultraGridColumn38.RowLayoutColumnInfo.OriginY = 0;
  2056. ultraGridColumn38.RowLayoutColumnInfo.SpanX = 1;
  2057. ultraGridColumn38.RowLayoutColumnInfo.SpanY = 1;
  2058. ultraGridColumn39.Header.Caption = "判定时间";
  2059. ultraGridColumn39.Header.VisiblePosition = 38;
  2060. ultraGridColumn39.RowLayoutColumnInfo.OriginX = 40;
  2061. ultraGridColumn39.RowLayoutColumnInfo.OriginY = 0;
  2062. ultraGridColumn39.RowLayoutColumnInfo.SpanX = 1;
  2063. ultraGridColumn39.RowLayoutColumnInfo.SpanY = 1;
  2064. ultraGridColumn40.Header.Caption = "客户名称";
  2065. ultraGridColumn40.Header.VisiblePosition = 39;
  2066. ultraGridColumn40.RowLayoutColumnInfo.OriginX = 21;
  2067. ultraGridColumn40.RowLayoutColumnInfo.OriginY = 0;
  2068. ultraGridColumn40.RowLayoutColumnInfo.SpanX = 1;
  2069. ultraGridColumn40.RowLayoutColumnInfo.SpanY = 1;
  2070. ultraGridColumn41.Header.Caption = "到站";
  2071. ultraGridColumn41.Header.VisiblePosition = 40;
  2072. ultraGridColumn41.RowLayoutColumnInfo.OriginX = 22;
  2073. ultraGridColumn41.RowLayoutColumnInfo.OriginY = 0;
  2074. ultraGridColumn41.RowLayoutColumnInfo.SpanX = 1;
  2075. ultraGridColumn41.RowLayoutColumnInfo.SpanY = 1;
  2076. ultraGridColumn42.Header.Caption = "原牌号";
  2077. ultraGridColumn42.Header.VisiblePosition = 41;
  2078. ultraGridColumn42.RowLayoutColumnInfo.OriginX = 26;
  2079. ultraGridColumn42.RowLayoutColumnInfo.OriginY = 0;
  2080. ultraGridColumn42.RowLayoutColumnInfo.SpanX = 1;
  2081. ultraGridColumn42.RowLayoutColumnInfo.SpanY = 1;
  2082. ultraGridColumn43.Header.Caption = "原厚度";
  2083. ultraGridColumn43.Header.VisiblePosition = 42;
  2084. ultraGridColumn43.RowLayoutColumnInfo.OriginX = 27;
  2085. ultraGridColumn43.RowLayoutColumnInfo.OriginY = 0;
  2086. ultraGridColumn43.RowLayoutColumnInfo.PreferredCellSize = new System.Drawing.Size(59, 22);
  2087. ultraGridColumn43.RowLayoutColumnInfo.PreferredLabelSize = new System.Drawing.Size(0, 27);
  2088. ultraGridColumn43.RowLayoutColumnInfo.SpanX = 1;
  2089. ultraGridColumn43.RowLayoutColumnInfo.SpanY = 1;
  2090. ultraGridColumn44.Header.Caption = "原宽度";
  2091. ultraGridColumn44.Header.VisiblePosition = 43;
  2092. ultraGridColumn44.RowLayoutColumnInfo.OriginX = 28;
  2093. ultraGridColumn44.RowLayoutColumnInfo.OriginY = 0;
  2094. ultraGridColumn44.RowLayoutColumnInfo.PreferredCellSize = new System.Drawing.Size(59, 22);
  2095. ultraGridColumn44.RowLayoutColumnInfo.PreferredLabelSize = new System.Drawing.Size(0, 27);
  2096. ultraGridColumn44.RowLayoutColumnInfo.SpanX = 1;
  2097. ultraGridColumn44.RowLayoutColumnInfo.SpanY = 1;
  2098. ultraGridColumn45.Header.Caption = "原长度";
  2099. ultraGridColumn45.Header.VisiblePosition = 44;
  2100. ultraGridColumn45.RowLayoutColumnInfo.OriginX = 30;
  2101. ultraGridColumn45.RowLayoutColumnInfo.OriginY = 0;
  2102. ultraGridColumn45.RowLayoutColumnInfo.SpanX = 1;
  2103. ultraGridColumn45.RowLayoutColumnInfo.SpanY = 1;
  2104. ultraGridBand1.Columns.AddRange(new object[] {
  2105. ultraGridColumn1,
  2106. ultraGridColumn2,
  2107. ultraGridColumn3,
  2108. ultraGridColumn4,
  2109. ultraGridColumn5,
  2110. ultraGridColumn6,
  2111. ultraGridColumn7,
  2112. ultraGridColumn8,
  2113. ultraGridColumn9,
  2114. ultraGridColumn10,
  2115. ultraGridColumn11,
  2116. ultraGridColumn12,
  2117. ultraGridColumn13,
  2118. ultraGridColumn14,
  2119. ultraGridColumn15,
  2120. ultraGridColumn16,
  2121. ultraGridColumn17,
  2122. ultraGridColumn18,
  2123. ultraGridColumn19,
  2124. ultraGridColumn20,
  2125. ultraGridColumn21,
  2126. ultraGridColumn22,
  2127. ultraGridColumn23,
  2128. ultraGridColumn24,
  2129. ultraGridColumn25,
  2130. ultraGridColumn26,
  2131. ultraGridColumn27,
  2132. ultraGridColumn28,
  2133. ultraGridColumn29,
  2134. ultraGridColumn30,
  2135. ultraGridColumn31,
  2136. ultraGridColumn32,
  2137. ultraGridColumn33,
  2138. ultraGridColumn34,
  2139. ultraGridColumn35,
  2140. ultraGridColumn36,
  2141. ultraGridColumn37,
  2142. ultraGridColumn38,
  2143. ultraGridColumn39,
  2144. ultraGridColumn40,
  2145. ultraGridColumn41,
  2146. ultraGridColumn42,
  2147. ultraGridColumn43,
  2148. ultraGridColumn44,
  2149. ultraGridColumn45});
  2150. appearance43.TextHAlign = Infragistics.Win.HAlign.Right;
  2151. appearance43.TextVAlign = Infragistics.Win.VAlign.Middle;
  2152. summarySettings1.Appearance = appearance43;
  2153. summarySettings1.DisplayFormat = "{0} 块";
  2154. summarySettings1.GroupBySummaryValueAppearance = appearance44;
  2155. summarySettings1.SummaryDisplayArea = ((Infragistics.Win.UltraWinGrid.SummaryDisplayAreas)((Infragistics.Win.UltraWinGrid.SummaryDisplayAreas.BottomFixed | Infragistics.Win.UltraWinGrid.SummaryDisplayAreas.InGroupByRows)));
  2156. appearance45.TextHAlign = Infragistics.Win.HAlign.Right;
  2157. appearance45.TextVAlign = Infragistics.Win.VAlign.Middle;
  2158. summarySettings2.Appearance = appearance45;
  2159. summarySettings2.DisplayFormat = "{0:.###} T";
  2160. summarySettings2.GroupBySummaryValueAppearance = appearance46;
  2161. summarySettings2.SummaryDisplayArea = ((Infragistics.Win.UltraWinGrid.SummaryDisplayAreas)((Infragistics.Win.UltraWinGrid.SummaryDisplayAreas.BottomFixed | Infragistics.Win.UltraWinGrid.SummaryDisplayAreas.InGroupByRows)));
  2162. ultraGridBand1.Summaries.AddRange(new Infragistics.Win.UltraWinGrid.SummarySettings[] {
  2163. summarySettings1,
  2164. summarySettings2});
  2165. ultraGridBand1.UseRowLayout = true;
  2166. this.dg_TurnoffButtress.DisplayLayout.BandsSerializer.Add(ultraGridBand1);
  2167. this.dg_TurnoffButtress.DisplayLayout.CaptionVisible = Infragistics.Win.DefaultableBoolean.False;
  2168. this.dg_TurnoffButtress.DisplayLayout.GroupByBox.Hidden = true;
  2169. this.dg_TurnoffButtress.DisplayLayout.GroupByBox.Prompt = " 将要分组的列拖至该区域!";
  2170. appearance47.BorderColor = System.Drawing.Color.Black;
  2171. appearance47.TextVAlign = Infragistics.Win.VAlign.Middle;
  2172. this.dg_TurnoffButtress.DisplayLayout.Override.CellAppearance = appearance47;
  2173. this.dg_TurnoffButtress.DisplayLayout.Override.CellClickAction = Infragistics.Win.UltraWinGrid.CellClickAction.RowSelect;
  2174. this.dg_TurnoffButtress.DisplayLayout.Override.CellPadding = 0;
  2175. appearance48.BackColor = System.Drawing.SystemColors.Control;
  2176. appearance48.BackColor2 = System.Drawing.SystemColors.ControlDark;
  2177. appearance48.BackGradientAlignment = Infragistics.Win.GradientAlignment.Element;
  2178. appearance48.BackGradientStyle = Infragistics.Win.GradientStyle.Horizontal;
  2179. appearance48.BorderColor = System.Drawing.SystemColors.Window;
  2180. appearance48.TextHAlign = Infragistics.Win.HAlign.Left;
  2181. appearance48.TextVAlign = Infragistics.Win.VAlign.Middle;
  2182. this.dg_TurnoffButtress.DisplayLayout.Override.GroupByRowAppearance = appearance48;
  2183. this.dg_TurnoffButtress.DisplayLayout.Override.GroupByRowDescriptionMask = "[caption]:[value] ([count]条记录)";
  2184. this.dg_TurnoffButtress.DisplayLayout.Override.GroupBySummaryDisplayStyle = Infragistics.Win.UltraWinGrid.GroupBySummaryDisplayStyle.SummaryCells;
  2185. appearance49.BackColor = System.Drawing.Color.LightSteelBlue;
  2186. this.dg_TurnoffButtress.DisplayLayout.Override.HeaderAppearance = appearance49;
  2187. this.dg_TurnoffButtress.DisplayLayout.Override.HeaderStyle = Infragistics.Win.HeaderStyle.Standard;
  2188. appearance50.BackColor = System.Drawing.SystemColors.Window;
  2189. appearance50.BorderColor = System.Drawing.Color.Black;
  2190. appearance50.TextVAlign = Infragistics.Win.VAlign.Middle;
  2191. this.dg_TurnoffButtress.DisplayLayout.Override.RowAppearance = appearance50;
  2192. appearance51.BackColor = System.Drawing.SystemColors.Window;
  2193. appearance51.BorderColor = System.Drawing.Color.Black;
  2194. appearance51.TextVAlign = Infragistics.Win.VAlign.Middle;
  2195. this.dg_TurnoffButtress.DisplayLayout.Override.RowPreviewAppearance = appearance51;
  2196. this.dg_TurnoffButtress.DisplayLayout.Override.RowSelectorHeaderStyle = Infragistics.Win.UltraWinGrid.RowSelectorHeaderStyle.SeparateElement;
  2197. this.dg_TurnoffButtress.DisplayLayout.Override.RowSelectorNumberStyle = Infragistics.Win.UltraWinGrid.RowSelectorNumberStyle.RowIndex;
  2198. this.dg_TurnoffButtress.DisplayLayout.Override.RowSelectors = Infragistics.Win.DefaultableBoolean.True;
  2199. appearance52.TextHAlign = Infragistics.Win.HAlign.Left;
  2200. appearance52.TextVAlign = Infragistics.Win.VAlign.Middle;
  2201. this.dg_TurnoffButtress.DisplayLayout.Override.SelectedRowAppearance = appearance52;
  2202. this.dg_TurnoffButtress.DisplayLayout.Override.SummaryDisplayArea = Infragistics.Win.UltraWinGrid.SummaryDisplayAreas.BottomFixed;
  2203. appearance53.BackColor = System.Drawing.SystemColors.Window;
  2204. this.dg_TurnoffButtress.DisplayLayout.Override.SummaryFooterAppearance = appearance53;
  2205. appearance54.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(255)))), ((int)(((byte)(255)))), ((int)(((byte)(192)))));
  2206. appearance54.ForeColor = System.Drawing.Color.Red;
  2207. this.dg_TurnoffButtress.DisplayLayout.Override.SummaryFooterCaptionAppearance = appearance54;
  2208. this.dg_TurnoffButtress.DisplayLayout.Override.SummaryFooterCaptionVisible = Infragistics.Win.DefaultableBoolean.False;
  2209. appearance55.BackColor = System.Drawing.Color.MistyRose;
  2210. appearance55.ForeColor = System.Drawing.Color.Blue;
  2211. appearance55.TextHAlign = Infragistics.Win.HAlign.Right;
  2212. appearance55.TextVAlign = Infragistics.Win.VAlign.Middle;
  2213. this.dg_TurnoffButtress.DisplayLayout.Override.SummaryValueAppearance = appearance55;
  2214. appearance56.BackColor = System.Drawing.SystemColors.ControlLight;
  2215. this.dg_TurnoffButtress.DisplayLayout.Override.TemplateAddRowAppearance = appearance56;
  2216. this.dg_TurnoffButtress.DisplayLayout.ScrollBounds = Infragistics.Win.UltraWinGrid.ScrollBounds.ScrollToFill;
  2217. this.dg_TurnoffButtress.DisplayLayout.ScrollStyle = Infragistics.Win.UltraWinGrid.ScrollStyle.Immediate;
  2218. this.dg_TurnoffButtress.DisplayLayout.ViewStyleBand = Infragistics.Win.UltraWinGrid.ViewStyleBand.OutlookGroupBy;
  2219. this.dg_TurnoffButtress.Dock = System.Windows.Forms.DockStyle.Fill;
  2220. this.dg_TurnoffButtress.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  2221. this.dg_TurnoffButtress.Location = new System.Drawing.Point(0, 0);
  2222. this.dg_TurnoffButtress.Name = "dg_TurnoffButtress";
  2223. this.dg_TurnoffButtress.Size = new System.Drawing.Size(1104, 262);
  2224. this.dg_TurnoffButtress.TabIndex = 0;
  2225. this.dg_TurnoffButtress.Text = "成品垛位信息";
  2226. this.dg_TurnoffButtress.AfterRowActivate += new System.EventHandler(this.dg_TurnoffButtress_AfterRowActivate);
  2227. this.dg_TurnoffButtress.InitializeRow += new Infragistics.Win.UltraWinGrid.InitializeRowEventHandler(this.dg_TurnoffButtress_InitializeRow);
  2228. //
  2229. // FrmTurnoffMoveButtress
  2230. //
  2231. this.AutoScaleBaseSize = new System.Drawing.Size(6, 14);
  2232. this.ClientSize = new System.Drawing.Size(1104, 502);
  2233. this.Controls.Add(this.panel2);
  2234. this.Controls.Add(this.ultraExpandableGroupBox1);
  2235. this.Controls.Add(this.ultraGroupBox1);
  2236. this.Controls.Add(this.panel1);
  2237. this.Name = "FrmTurnoffMoveButtress";
  2238. this.Text = "成品移垛管理";
  2239. this.Load += new System.EventHandler(this.FrmTurnoffMoveButtress_Load);
  2240. ((System.ComponentModel.ISupportInitialize)(this.ultraToolbarsManager1)).EndInit();
  2241. this.panel1.ResumeLayout(false);
  2242. ((System.ComponentModel.ISupportInitialize)(this.ds_TurnoffButtress)).EndInit();
  2243. ((System.ComponentModel.ISupportInitialize)(this.dataTable2)).EndInit();
  2244. ((System.ComponentModel.ISupportInitialize)(this.ultraGroupBox1)).EndInit();
  2245. this.ultraGroupBox1.ResumeLayout(false);
  2246. ((System.ComponentModel.ISupportInitialize)(this.cmb_CCondition)).EndInit();
  2247. ((System.ComponentModel.ISupportInitialize)(this.cmb_KCondition)).EndInit();
  2248. ((System.ComponentModel.ISupportInitialize)(this.txt_CS)).EndInit();
  2249. ((System.ComponentModel.ISupportInitialize)(this.txt_KS)).EndInit();
  2250. ((System.ComponentModel.ISupportInitialize)(this.cmb_ProductLine)).EndInit();
  2251. ((System.ComponentModel.ISupportInitialize)(this.txt_RollNOEnd)).EndInit();
  2252. ((System.ComponentModel.ISupportInitialize)(this.txt_RollNOBegin)).EndInit();
  2253. ((System.ComponentModel.ISupportInitialize)(this.txt_RollTop)).EndInit();
  2254. ((System.ComponentModel.ISupportInitialize)(this.txt_CD)).EndInit();
  2255. ((System.ComponentModel.ISupportInitialize)(this.txt_KD)).EndInit();
  2256. ((System.ComponentModel.ISupportInitialize)(this.txt_HD)).EndInit();
  2257. ((System.ComponentModel.ISupportInitialize)(this.txt_Condole)).EndInit();
  2258. ((System.ComponentModel.ISupportInitialize)(this.cmb_SteelType)).EndInit();
  2259. ((System.ComponentModel.ISupportInitialize)(this.cmb_Area)).EndInit();
  2260. ((System.ComponentModel.ISupportInitialize)(this.cmb_Buttress)).EndInit();
  2261. ((System.ComponentModel.ISupportInitialize)(this.txt_PlanNO)).EndInit();
  2262. ((System.ComponentModel.ISupportInitialize)(this.txt_PactNO)).EndInit();
  2263. ((System.ComponentModel.ISupportInitialize)(this.ultraExpandableGroupBox1)).EndInit();
  2264. this.ultraExpandableGroupBox1.ResumeLayout(false);
  2265. this.ultraExpandableGroupBoxPanel1.ResumeLayout(false);
  2266. this.ultraExpandableGroupBoxPanel1.PerformLayout();
  2267. ((System.ComponentModel.ISupportInitialize)(this.ult_Remark)).EndInit();
  2268. ((System.ComponentModel.ISupportInitialize)(this.txt_XDH)).EndInit();
  2269. ((System.ComponentModel.ISupportInitialize)(this.txt_YDH)).EndInit();
  2270. ((System.ComponentModel.ISupportInitialize)(this.txt_HandleMan)).EndInit();
  2271. ((System.ComponentModel.ISupportInitialize)(this.Dte_AjustTime)).EndInit();
  2272. ((System.ComponentModel.ISupportInitialize)(this.cmb_BZ)).EndInit();
  2273. ((System.ComponentModel.ISupportInitialize)(this.cmb_BC)).EndInit();
  2274. ((System.ComponentModel.ISupportInitialize)(this.cmb_NewArea)).EndInit();
  2275. ((System.ComponentModel.ISupportInitialize)(this.txt_XDHDate)).EndInit();
  2276. ((System.ComponentModel.ISupportInitialize)(this.txt_YDHDate)).EndInit();
  2277. ((System.ComponentModel.ISupportInitialize)(this.txt_YY)).EndInit();
  2278. ((System.ComponentModel.ISupportInitialize)(this.txt_XH)).EndInit();
  2279. ((System.ComponentModel.ISupportInitialize)(this.cmb_NewButtress)).EndInit();
  2280. ((System.ComponentModel.ISupportInitialize)(this.cmb_OldButtress)).EndInit();
  2281. this.panel2.ResumeLayout(false);
  2282. ((System.ComponentModel.ISupportInitialize)(this.dg_TurnoffButtress)).EndInit();
  2283. this.ResumeLayout(false);
  2284. }
  2285. #endregion
  2286. private void Chk_PactNO_CheckedChanged(object sender, System.EventArgs e)
  2287. {
  2288. this.txt_PactNO.Enabled=this.Chk_PactNO.Checked;
  2289. }
  2290. private void Chk_PlanNO_CheckedChanged(object sender, System.EventArgs e)
  2291. {
  2292. this.txt_PlanNO.Enabled=this.Chk_PlanNO.Checked;
  2293. }
  2294. private void chk_Area_CheckedChanged(object sender, System.EventArgs e)
  2295. {
  2296. this.cmb_Area.Enabled=this.chk_Area.Checked;
  2297. }
  2298. private void Chk_Buttress_CheckedChanged(object sender, System.EventArgs e)
  2299. {
  2300. this.cmb_Buttress.Enabled=this.Chk_Buttress.Checked;
  2301. }
  2302. private void chk_LineAndSteel_CheckedChanged(object sender, System.EventArgs e)
  2303. {
  2304. this.cmb_ProductLine.Enabled=this.chk_LineAndSteel.Checked;
  2305. this.cmb_SteelType.Enabled=this.chk_LineAndSteel.Checked;
  2306. }
  2307. private void chk_Condole_CheckedChanged(object sender, System.EventArgs e)
  2308. {
  2309. this.txt_Condole.Enabled=this.chk_Condole.Checked;
  2310. }
  2311. private void chk_RollNum_CheckedChanged(object sender, System.EventArgs e)
  2312. {
  2313. this.txt_RollTop.Enabled=this.chk_RollNum.Checked;
  2314. this.txt_RollNOBegin.Enabled=this.chk_RollNum.Checked;
  2315. this.txt_RollNOEnd.Enabled=this.chk_RollNum.Checked;
  2316. }
  2317. private void chk_Spet_CheckedChanged(object sender, System.EventArgs e)
  2318. {
  2319. txt_HD.Enabled=chk_Spet.Checked;
  2320. txt_KD.Enabled=this.chk_Spet.Checked;
  2321. txt_CD.Enabled=this.chk_Spet.Checked;
  2322. }
  2323. private void chk_Size_CheckedChanged(object sender, System.EventArgs e)
  2324. {
  2325. this.txt_KS.Enabled=this.chk_Size.Checked;
  2326. this.txt_CS.Enabled=this.chk_Size.Checked;
  2327. this.cmb_KCondition.Enabled=this.chk_Size.Checked;
  2328. this.cmb_CCondition.Enabled=this.chk_Size.Checked;
  2329. }
  2330. private void chk_AllowFilter_CheckedChanged(object sender, System.EventArgs e)
  2331. {
  2332. if (this.chk_AllowFilter.Checked)
  2333. {
  2334. this.dg_TurnoffButtress.DisplayLayout.Override.AllowRowFiltering = Infragistics.Win.DefaultableBoolean.True;
  2335. }
  2336. else
  2337. {
  2338. this.dg_TurnoffButtress.DisplayLayout.Override.AllowRowFiltering = Infragistics.Win.DefaultableBoolean.False;
  2339. }
  2340. }
  2341. private void btn_ClearFilter_Click(object sender, System.EventArgs e)
  2342. {
  2343. this.dg_TurnoffButtress.DisplayLayout.Bands[0].ColumnFilters.ClearAllFilters();
  2344. Comm.SetGridSumArea(this.dg_TurnoffButtress);
  2345. }
  2346. private void chk_XH_CheckedChanged(object sender, System.EventArgs e)
  2347. {
  2348. this.txt_XH.Enabled=this.chk_XH.Checked;
  2349. if(!this.chk_XH.Checked)
  2350. {
  2351. this.txt_XH.Clear();
  2352. }
  2353. }
  2354. private void cmb_ProductLine_ValueChanged(object sender, System.EventArgs e)
  2355. {
  2356. string strOut = "";
  2357. string plid = "";
  2358. plid = Comm.ObjToStr(cmb_ProductLine.Value);
  2359. cmb_SteelType.Text = string.Empty;
  2360. try
  2361. {
  2362. if(plid.Length > 0)
  2363. {
  2364. //----初始化cmb_ShopSign---------------
  2365. string sql = "SELECT STEELNAME,PLID FROM SCM_R_PLINE_STEELS WHERE PLID='" + plid+ "' ORDER BY STEELNAME ASC";
  2366. DataSet ds = (DataSet)ClientCommon._RemotingHelp.ExecuteMethod("JTurnoffManager","Core.XgMes.Server.JGKC.TurnoffManager.Common","GetDataSet",new object []{sql},out strOut);
  2367. ds.Tables[0].TableName="SCM_R_PLINE_STEELS";
  2368. Comm.Init_ComboControl(this.cmb_SteelType,"SCM_R_PLINE_STEELS","STEELNAME","STEELNAME",ref ds);
  2369. }
  2370. }
  2371. catch(Exception ex)
  2372. {
  2373. System.Diagnostics.Debug.WriteLine(ex.ToString());
  2374. }
  2375. }
  2376. private void txt_HandleMan_ValueChanged(object sender, System.EventArgs e)
  2377. {
  2378. string handleMan="";
  2379. string strOut="";
  2380. try
  2381. {
  2382. handleMan=Comm.ObjToStr(txt_HandleMan.Value);
  2383. if(handleMan.Length >0 )
  2384. {
  2385. string sql="select MEMO1 from KCJ_BASEDATA where ID_='"+handleMan+"'";
  2386. DataSet ds = (DataSet)ClientCommon._RemotingHelp.ExecuteMethod("JTurnoffManager","Core.XgMes.Server.JGKC.TurnoffManager.Common","GetDataSet",new object []{sql},out strOut);
  2387. ds.Tables[0].TableName="KCJ_BASEDATA";
  2388. if(ds.Tables["KCJ_BASEDATA"].Rows.Count > 0)
  2389. {
  2390. System.Data.DataRow dr= ds.Tables["KCJ_BASEDATA"].Rows[0];
  2391. cmb_BZ.Value=Comm.ObjToStr(dr["MEMO1"]);
  2392. }
  2393. }
  2394. }
  2395. catch(Exception ex)
  2396. {
  2397. System.Diagnostics.Debug.WriteLine(ex.ToString());
  2398. }
  2399. }
  2400. private void cmb_NewArea_ValueChanged(object sender, System.EventArgs e)
  2401. {
  2402. string areaCode = "";
  2403. string strOut = "";
  2404. try
  2405. {
  2406. cmb_NewButtress.Text = string.Empty ;
  2407. areaCode = Comm.ObjToStr(cmb_NewArea.Value);
  2408. if(areaCode.Length > 0)
  2409. {
  2410. string sql = "select buttresscode from kcj_buttress where buttresstype='1' and isvalid='1'" + "and areacode='" + areaCode + "'";
  2411. DataSet ds_ = (DataSet)ClientCommon._RemotingHelp.ExecuteMethod("JTurnoffManager","Core.XgMes.Server.JGKC.TurnoffManager.Common","GetDataSet",new object []{sql},out strOut);
  2412. ds_.Tables[0].TableName="KCJ_BUTTRESS";
  2413. Comm.Init_ComboControl(this.cmb_NewButtress,"KCJ_BUTTRESS","BUTTRESSCODE","BUTTRESSCODE",ref ds_);
  2414. }
  2415. }
  2416. catch(Exception ex)
  2417. {
  2418. System.Diagnostics.Debug.WriteLine(ex.ToString());
  2419. }
  2420. }
  2421. private void dg_TurnoffButtress_AfterRowActivate(object sender, System.EventArgs e)
  2422. {
  2423. try
  2424. {
  2425. if(this.dg_TurnoffButtress.Rows.Count > 0)
  2426. {
  2427. cmb_OldButtress.Value = Comm.ObjToStr(this.dg_TurnoffButtress.ActiveRow.Cells["BUTTRESS"].Value);
  2428. if(Comm.ObjToStr(this.dg_TurnoffButtress.ActiveRow.Cells["CONDOLENUMBER"].Value).Length > 0)
  2429. {
  2430. if(Comm.ObjToStr(this.dg_TurnoffButtress.ActiveRow.Cells["CONDOLENUMBER"].Value).IndexOf("-")>0)
  2431. {
  2432. this.txt_YDHDate.Text = Comm.ObjToStr(this.dg_TurnoffButtress.ActiveRow.Cells["CONDOLENUMBER"].Value).Split('-')[0];
  2433. this.txt_YDH.Text = Comm.ObjToStr(this.dg_TurnoffButtress.ActiveRow.Cells["CONDOLENUMBER"].Value).Split('-')[1];
  2434. }
  2435. else
  2436. {
  2437. this.txt_YDH.Text = Comm.ObjToStr(this.dg_TurnoffButtress.ActiveRow.Cells["CONDOLENUMBER"].Value);
  2438. this.txt_YDHDate.Clear();
  2439. }
  2440. }
  2441. else
  2442. {
  2443. this.txt_YDHDate.Text = string.Empty;
  2444. this.txt_YDH.Text=string.Empty;
  2445. }
  2446. if(this.txt_XH.Enabled)
  2447. {
  2448. this.txt_XH.Text = Comm.ObjToStr(this.dg_TurnoffButtress.ActiveRow.Cells["BILLETID"].Value);
  2449. }
  2450. }
  2451. }
  2452. catch(Exception ex)
  2453. {
  2454. System.Diagnostics.Debug.WriteLine(ex.ToString());
  2455. }
  2456. }
  2457. private void dg_TurnoffButtress_InitializeRow(object sender, Infragistics.Win.UltraWinGrid.InitializeRowEventArgs e)
  2458. {
  2459. try
  2460. {
  2461. if(Convert.ToString(e.Row.Cells["OSPET"].Value) != Convert.ToString(e.Row.Cells["SPET"].Value))
  2462. {
  2463. e.Row.Cells["OSPET"].Appearance.BackColor = ultraLabel12.Appearance.BackColor;
  2464. e.Row.Cells["SPET"].Appearance.BackColor = ultraLabel12.Appearance.BackColor;
  2465. }
  2466. if(Convert.ToString(e.Row.Cells["DETERMINANTCARDNUMBER"].Value) != Convert.ToString(e.Row.Cells["INSTEEL"].Value))
  2467. {
  2468. e.Row.Cells["DETERMINANTCARDNUMBER"].Appearance.BackColor = ultraLabel14.Appearance.BackColor;
  2469. e.Row.Cells["INSTEEL"].Appearance.BackColor = ultraLabel14.Appearance.BackColor;
  2470. }
  2471. if(Comm.ObjToStr(e.Row.Cells["SENDBEGINDATE"].Value) != "")
  2472. {
  2473. if (DateTime.Today.AddDays(11).ToString("yyyy-MM-dd").CompareTo(Comm.ObjToStr(e.Row.Cells["SENDBEGINDATE"].Value)) >= 0)
  2474. {
  2475. e.Row.Cells["SENDBEGINDATE"].Appearance.BackColor = Color.Blue;
  2476. }
  2477. }
  2478. }
  2479. catch( Exception ex)
  2480. {
  2481. System.Diagnostics.Debug.WriteLine(ex.ToString());
  2482. }
  2483. }
  2484. public string sstyle = "";
  2485. private void FrmTurnoffMoveButtress_Load(object sender, System.EventArgs e)
  2486. {
  2487. if ( this.Key.Split('@').Length > 1)
  2488. {
  2489. sstyle = this.Key.Split('@')[2];
  2490. if ( this.Key.Split('@')[1].Equals("QueryReport"))
  2491. {
  2492. this.ultraExpandableGroupBox1.Hide();
  2493. this.ultraToolbarsManager1.Tools["MoveButtress"].SharedProps.Visible=false;
  2494. if (sstyle == "2")
  2495. {
  2496. this.Text = "成品堆位信息查询(板材)";
  2497. }
  2498. else if (sstyle == "3")
  2499. {
  2500. this.Text = "成品堆位信息查询(线棒材)";
  2501. }
  2502. else
  2503. {
  2504. this.Text = "成品堆位信息查询";
  2505. }
  2506. }
  2507. }
  2508. if (sstyle == "3" )
  2509. {
  2510. this.dg_TurnoffButtress.DisplayLayout.Bands[0].Columns["CONDOLENUMBER"].Hidden = true;
  2511. this.dg_TurnoffButtress.DisplayLayout.Bands[0].Columns["CONDOLELAYER"].Hidden = true;
  2512. this.dg_TurnoffButtress.DisplayLayout.Bands[0].Columns["BUTTRESSLAYER"].Hidden = true;
  2513. this.dg_TurnoffButtress.DisplayLayout.Bands[0].Columns["PRODUCT_NAME"].Hidden = true;
  2514. this.dg_TurnoffButtress.DisplayLayout.Bands[0].Columns["ZHPDBH"].Hidden = true;
  2515. this.dg_TurnoffButtress.DisplayLayout.Bands[0].Columns["MEMO"].Hidden = true;
  2516. ult_Remark.Visible = true;
  2517. }
  2518. Comm.SetGridSumArea(this.dg_TurnoffButtress);
  2519. this.IniCombox();
  2520. Dte_AjustTime.DateTime=System.DateTime.Now;
  2521. }
  2522. private void ultraToolbarsManager1_ToolClick(object sender, Infragistics.Win.UltraWinToolbars.ToolClickEventArgs e)
  2523. {
  2524. switch(e.Tool.Key)
  2525. {
  2526. case "MoveButtress":
  2527. this.Adjust();
  2528. break;
  2529. case "QueryButtress":
  2530. this.QueryButtress(this.GetWhere());
  2531. break;
  2532. case "ExportButtressInfo":
  2533. this.ExportButtressInfo();
  2534. break;
  2535. case "Print":
  2536. this.PrintGrid();
  2537. break;
  2538. case "Close":
  2539. Comm.CloseForm(this);
  2540. break;
  2541. case "PRINT_LOG":
  2542. this.Print_Log();
  2543. break;
  2544. }
  2545. }
  2546. private void PrintGrid()
  2547. {
  2548. FrmPrintButtress frmPrint = new FrmPrintButtress();
  2549. frmPrint.UltraGrid = this.dg_TurnoffButtress;
  2550. frmPrint.UCGridPrint.SubHeadLeftText = "堆位:"+ Comm.ObjToStr(cmb_Buttress.Text);
  2551. frmPrint.UCGridPrint.SubHeadRightText ="打印日期:"+System.DateTime.Now.Date.ToString("yyyy-MM-dd");
  2552. frmPrint.UCGridPrint.HeadText ="板材加工成品堆垛实物反映表";
  2553. // frmPrint.UCGridPrint.SubFootLeftText = Core.Mes.ClientFrameWork.ClientCommon._UserInfo.UserName;
  2554. frmPrint.UCGridPrint.ColumnList["计划号"].IsSelected = true;
  2555. frmPrint.UCGridPrint.ColumnList["合同号"].IsSelected = true;
  2556. frmPrint.UCGridPrint.ColumnList["块序号"].IsSelected = true;
  2557. frmPrint.UCGridPrint.ColumnList["牌号"].IsSelected = true;
  2558. frmPrint.UCGridPrint.ColumnList["块序号"].IsSelected = true;
  2559. frmPrint.UCGridPrint.ColumnList["规格"].IsSelected = true;
  2560. frmPrint.UCGridPrint.ColumnList["重量"].IsSelected = true;
  2561. frmPrint.UCGridPrint.ColumnList["判定性能"].IsSelected = true;
  2562. frmPrint.UCGridPrint.ColumnList["备注"].IsSelected = true;
  2563. frmPrint.ShowDialog();
  2564. }
  2565. #region "IniCombox"
  2566. private void IniCombox()
  2567. {
  2568. string strOut="";
  2569. try
  2570. {
  2571. //原料垛位cmb_OldButtress/cmb_NewButtress
  2572. if (ClientCommon._UserInfo.UserRoleID == "bjbck")
  2573. {
  2574. string strSql = "select buttresscode from kcj_buttress where buttresstype='1' and isvalid='1' AND AREACODE in ('北京办库区','北京办区域','北京办(长沙库)') order by buttresscode desc ";
  2575. DataSet ds_ = (DataSet)ClientCommon._RemotingHelp.ExecuteMethod("JTurnoffManager", "Core.XgMes.Server.JGKC.TurnoffManager.Common", "GetDataSet", new object[] { strSql }, out strOut);
  2576. ds_.Tables[0].TableName = "KCJ_BUTTRESS";
  2577. Comm.Init_ComboControl(this.cmb_OldButtress, "KCJ_BUTTRESS", "BUTTRESSCODE", "BUTTRESSCODE", ref ds_);
  2578. Comm.Init_ComboControl(this.cmb_NewButtress, "KCJ_BUTTRESS", "BUTTRESSCODE", "BUTTRESSCODE", ref ds_);
  2579. Comm.Init_ComboControl(this.cmb_Buttress, "KCJ_BUTTRESS", "BUTTRESSCODE", "BUTTRESSCODE", ref ds_);
  2580. }
  2581. //原料垛位cmb_OldButtress/cmb_NewButtress
  2582. else if (ClientCommon._UserInfo.UserRoleID == "pszxck" || ClientCommon._UserInfo.UserRoleID == "pszxjh")
  2583. {
  2584. string strSql ="";
  2585. DataSet ds_ = new DataSet();
  2586. if (sstyle == "2")
  2587. {
  2588. strSql = "select buttresscode from kcj_buttress where buttresstype='1' and isvalid='1' AND AREACODE ='配送中心(新钢库)' order by buttresscode desc ";
  2589. ds_ = (DataSet)ClientCommon._RemotingHelp.ExecuteMethod("JTurnoffManager", "Core.XgMes.Server.JGKC.TurnoffManager.Common", "GetDataSet", new object[] { strSql }, out strOut);
  2590. ds_.Tables[0].TableName = "KCJ_BUTTRESS";
  2591. }
  2592. else
  2593. {
  2594. strSql = "select buttresscode from kcj_buttress where buttresstype='1' and isvalid='1' AND AREACODE ='配送中心(线棒库)' order by buttresscode desc ";
  2595. ds_ = (DataSet)ClientCommon._RemotingHelp.ExecuteMethod("JTurnoffManager", "Core.XgMes.Server.JGKC.TurnoffManager.Common", "GetDataSet", new object[] { strSql }, out strOut);
  2596. ds_.Tables[0].TableName = "KCJ_BUTTRESS";
  2597. }
  2598. Comm.Init_ComboControl(this.cmb_OldButtress, "KCJ_BUTTRESS", "BUTTRESSCODE", "BUTTRESSCODE", ref ds_);
  2599. Comm.Init_ComboControl(this.cmb_NewButtress, "KCJ_BUTTRESS", "BUTTRESSCODE", "BUTTRESSCODE", ref ds_);
  2600. Comm.Init_ComboControl(this.cmb_Buttress, "KCJ_BUTTRESS", "BUTTRESSCODE", "BUTTRESSCODE", ref ds_);
  2601. }
  2602. else
  2603. {
  2604. string strSql = "select buttresscode from kcj_buttress where buttresstype='1' and isvalid='1' and AREACODE not in ('北京办库区','北京办区域','北京办(长沙库)','配送中心(新钢库)','配送中心(线棒库)') order by buttresscode desc";
  2605. DataSet ds_ = (DataSet)ClientCommon._RemotingHelp.ExecuteMethod("JTurnoffManager", "Core.XgMes.Server.JGKC.TurnoffManager.Common", "GetDataSet", new object[] { strSql }, out strOut);
  2606. ds_.Tables[0].TableName = "KCJ_BUTTRESS";
  2607. Comm.Init_ComboControl(this.cmb_OldButtress, "KCJ_BUTTRESS", "BUTTRESSCODE", "BUTTRESSCODE", ref ds_);
  2608. Comm.Init_ComboControl(this.cmb_NewButtress, "KCJ_BUTTRESS", "BUTTRESSCODE", "BUTTRESSCODE", ref ds_);
  2609. Comm.Init_ComboControl(this.cmb_Buttress, "KCJ_BUTTRESS", "BUTTRESSCODE", "BUTTRESSCODE", ref ds_);
  2610. }
  2611. //原料区域cmb_NewArea
  2612. if (ClientCommon._UserInfo.UserRoleID == "bjbck")
  2613. {
  2614. string strSql1 = "select areacode from kcj_area where areatype='1' and isvalid='1'and AREACODE in ('北京办库区','北京办区域','北京办(长沙库)') ";
  2615. DataSet ds1 = (DataSet)ClientCommon._RemotingHelp.ExecuteMethod("JTurnoffManager", "Core.XgMes.Server.JGKC.TurnoffManager.Common", "GetDataSet", new object[] { strSql1 }, out strOut);
  2616. ds1.Tables[0].TableName = "KCJ_AREA";
  2617. Comm.Init_ComboControl(this.cmb_NewArea, "KCJ_AREA", "AREACODE", "AREACODE", ref ds1);
  2618. Comm.Init_ComboControl(this.cmb_Area, "KCJ_AREA", "AREACODE", "AREACODE", ref ds1);
  2619. }
  2620. else if (ClientCommon._UserInfo.UserRoleID == "pszxck")
  2621. {
  2622. string strSql1="";
  2623. DataSet ds1 = new DataSet();
  2624. if (sstyle == "2")
  2625. {
  2626. strSql1 = "select areacode from kcj_area where areatype='1' and isvalid='1'and AREACODE ='配送中心(新钢库)' ";
  2627. }
  2628. else
  2629. { strSql1 = "select areacode from kcj_area where areatype='1' and isvalid='1'and AREACODE ='配送中心(线棒库)' "; }
  2630. ds1 = (DataSet)ClientCommon._RemotingHelp.ExecuteMethod("JTurnoffManager", "Core.XgMes.Server.JGKC.TurnoffManager.Common", "GetDataSet", new object[] { strSql1 }, out strOut);
  2631. ds1.Tables[0].TableName = "KCJ_AREA";
  2632. Comm.Init_ComboControl(this.cmb_NewArea, "KCJ_AREA", "AREACODE", "AREACODE", ref ds1);
  2633. Comm.Init_ComboControl(this.cmb_Area, "KCJ_AREA", "AREACODE", "AREACODE", ref ds1);
  2634. }
  2635. else
  2636. {
  2637. string strSql1 = "select areacode from kcj_area where areatype='1' and isvalid='1' and AREACODE not in ('北京办库区','北京办区域','北京办(长沙库)','配送中心(新钢库)','配送中心(线棒库)')";
  2638. DataSet ds1 = (DataSet)ClientCommon._RemotingHelp.ExecuteMethod("JTurnoffManager", "Core.XgMes.Server.JGKC.TurnoffManager.Common", "GetDataSet", new object[] { strSql1 }, out strOut);
  2639. ds1.Tables[0].TableName = "KCJ_AREA";
  2640. Comm.Init_ComboControl(this.cmb_NewArea, "KCJ_AREA", "AREACODE", "AREACODE", ref ds1);
  2641. Comm.Init_ComboControl(this.cmb_Area, "KCJ_AREA", "AREACODE", "AREACODE", ref ds1);
  2642. }
  2643. //班次cmb_BC
  2644. string strSql2 = "select ID_,NAME_ from SCM_BASE_INFO where sort_code='3002'";
  2645. DataSet ds2 = (DataSet)ClientCommon._RemotingHelp.ExecuteMethod("JTurnoffManager","Core.XgMes.Server.JGKC.TurnoffManager.Common","GetDataSet",new object []{strSql2},out strOut);
  2646. ds2.Tables[0].TableName="SCM_BASE_INFO";
  2647. Comm.Init_ComboControl(this.cmb_BC,"SCM_BASE_INFO","NAME_","ID_",ref ds2);
  2648. //班组cmb_BZ
  2649. string strSql3 = "select ID_,NAME_ from SCM_BASE_INFO where sort_code='3003'";
  2650. DataSet ds3 = (DataSet)ClientCommon._RemotingHelp.ExecuteMethod("JTurnoffManager","Core.XgMes.Server.JGKC.TurnoffManager.Common","GetDataSet",new object []{strSql3},out strOut);
  2651. ds3.Tables[0].TableName="SCM_BASE_INFO";
  2652. Comm.Init_ComboControl(this.cmb_BZ,"SCM_BASE_INFO","NAME_","ID_",ref ds3);
  2653. //转堆人txt_HandleMan
  2654. if (ClientCommon._UserInfo.UserRoleID == "bjbck" )
  2655. {
  2656. string strSql4 = "select ID_,NAME_ from KCJ_BASEDATA where sort_code='514009' ";
  2657. DataSet ds4 = (DataSet)ClientCommon._RemotingHelp.ExecuteMethod("JTurnoffManager", "Core.XgMes.Server.JGKC.TurnoffManager.Common", "GetDataSet", new object[] { strSql4 }, out strOut);
  2658. ds4.Tables[0].TableName = "KCJ_BASEDATA";
  2659. Comm.Init_ComboControl(this.txt_HandleMan, "KCJ_BASEDATA", "NAME_", "ID_", ref ds4);
  2660. }
  2661. else if (ClientCommon._UserInfo.UserRoleID == "pszxck")
  2662. {
  2663. string strSql4 = "select ID_,NAME_ from KCJ_BASEDATA where sort_code='514010' ";
  2664. DataSet ds4 = (DataSet)ClientCommon._RemotingHelp.ExecuteMethod("JTurnoffManager", "Core.XgMes.Server.JGKC.TurnoffManager.Common", "GetDataSet", new object[] { strSql4 }, out strOut);
  2665. ds4.Tables[0].TableName = "KCJ_BASEDATA";
  2666. Comm.Init_ComboControl(this.txt_HandleMan, "KCJ_BASEDATA", "NAME_", "ID_", ref ds4);
  2667. }
  2668. else
  2669. {
  2670. string strSql4 = "select ID_,NAME_ from KCJ_BASEDATA where sort_code='514001'";
  2671. DataSet ds4 = (DataSet)ClientCommon._RemotingHelp.ExecuteMethod("JTurnoffManager", "Core.XgMes.Server.JGKC.TurnoffManager.Common", "GetDataSet", new object[] { strSql4 }, out strOut);
  2672. ds4.Tables[0].TableName = "KCJ_BASEDATA";
  2673. Comm.Init_ComboControl(this.txt_HandleMan, "KCJ_BASEDATA", "NAME_", "ID_", ref ds4);
  2674. }
  2675. }
  2676. catch(Exception ex)
  2677. {
  2678. System.Diagnostics.Debug.WriteLine(ex.ToString());
  2679. }
  2680. }
  2681. #endregion
  2682. #region "得到查询条件"
  2683. private string GetWhere()
  2684. {
  2685. string where = "";
  2686. if(this.txt_PactNO.Enabled && this.txt_PactNO.Text.Trim().Length > 0)
  2687. {
  2688. where += " AND C.PACTNO LIKE '" + this.txt_PactNO.Text.Trim() + "%'";
  2689. }
  2690. if(this.txt_PlanNO.Enabled && this.txt_PlanNO.Text.Trim().Length > 0)
  2691. {
  2692. where += " AND C.PACTINDEX LIKE '" + this.txt_PlanNO.Text.Trim() + "%'";
  2693. }
  2694. if(this.cmb_Area.Enabled && Comm.ObjToStr(this.cmb_Area.Value).Length > 0)
  2695. {
  2696. where += " AND B.AREA = '" + Comm.ObjToStr(this.cmb_Area.Value) + "'";
  2697. }
  2698. if(this.cmb_Buttress.Enabled && Comm.ObjToStr(this.cmb_Buttress.Value).Length > 0)
  2699. {
  2700. where += " AND B.BUTTRESS ='" + Comm.ObjToStr(this.cmb_Buttress.Value) + "'";
  2701. }
  2702. if(this.cmb_ProductLine.Enabled && Comm.ObjToStr(this.cmb_ProductLine.Value).Length > 0)
  2703. {
  2704. where += " AND A.PRODUCTLINE = '" + Comm.ObjToStr(this.cmb_ProductLine.Value) + "'";
  2705. }
  2706. if(this.cmb_SteelType.Enabled && Comm.ObjToStr(this.cmb_SteelType.Value).Length > 0)
  2707. {
  2708. where += " AND A.DETERMINANTCARDNUMBER = '" + Comm.ObjToStr(this.cmb_SteelType.Value) + "'";
  2709. }
  2710. if(this.txt_Condole.Enabled && this.txt_Condole.Text.Trim().Length > 0)
  2711. {
  2712. where += " AND B.CONDOLENUMBER LIKE '" + this.txt_Condole.Text.Trim() + "%'";
  2713. }
  2714. if(this.chk_RollNum.Checked)
  2715. {
  2716. //where += " AND SUBSTR(A.ROLLNUMBER,1,INSTR(A.ROLLNUMBER,'-')-1)='"+Comm.ObjToStr(this.txt_RollTop.Text.Trim())+"' ";
  2717. if(this.txt_RollNOBegin.Text.Trim().Length==5 && this.txt_RollNOEnd.Text.Trim().Length<5)
  2718. {
  2719. where += " AND A.ROLLNUMBER LIKE '" + this.txt_RollTop.Text.Trim() + "-" + this.txt_RollNOBegin.Text.Trim() + "%'";
  2720. }
  2721. if(this.txt_RollNOBegin.Text.Trim().Length<5 && this.txt_RollNOEnd.Text.Trim().Length==5)
  2722. {
  2723. where += " AND A.ROLLNUMBER LIKE '" + this.txt_RollTop.Text.Trim() + "-" + this.txt_RollNOEnd.Text.Trim() + "%'";
  2724. }
  2725. if(this.txt_RollNOBegin.Text.Trim().Length==5 && this.txt_RollNOEnd.Text.Trim().Length==5)
  2726. {
  2727. where += " AND A.ROLLNUMBER BETWEEN '" + this.txt_RollTop.Text.Trim() + "-" + this.txt_RollNOBegin.Text.Trim() + "' "
  2728. + " AND '" + this.txt_RollTop.Text.Trim() + "-" + this.txt_RollNOEnd.Text.Trim() + "%'";
  2729. }
  2730. }
  2731. if(this.txt_KD.Enabled && Comm.ObjToDecimal(this.txt_KD.Value)>0)
  2732. {
  2733. where += " AND A.WIDTH="+ Comm.ObjToDecimal(this.txt_KD.Value);
  2734. }
  2735. if(this.txt_HD.Enabled && Comm.ObjToDecimal(this.txt_HD.Value)>0)
  2736. {
  2737. where += " AND A.PLY="+Comm.ObjToDecimal(this.txt_HD.Value);
  2738. }
  2739. if(this.txt_CD.Enabled && Comm.ObjToDecimal(this.txt_CD.Value)>0)
  2740. {
  2741. where += " AND A.LENGTH="+Comm.ObjToDecimal(this.txt_CD.Value);
  2742. }
  2743. //宽
  2744. if(this.txt_KS.Enabled && Comm.ObjToStr(cmb_KCondition.Value).Length>0 && Comm.ObjToDecimal(this.txt_KS.Value)>0)
  2745. {
  2746. where += " AND A.WIDTH"+Comm.ObjToStr(cmb_KCondition.Value)+Comm.ObjToDecimal(this.txt_KS.Value);
  2747. }
  2748. //长
  2749. if(this.txt_CS.Enabled && Comm.ObjToStr(cmb_CCondition.Value).Length>0 && Comm.ObjToDecimal(this.txt_CS.Value)>0)
  2750. {
  2751. where += " AND A.LENGTH"+Comm.ObjToStr(cmb_CCondition.Value)+Comm.ObjToDecimal(this.txt_CS.Value);
  2752. }
  2753. //where += " ORDER BY CONDOLENUMBER, BUTTRESSLAYER,CONDOLELAYER ASC ";
  2754. return where;
  2755. }
  2756. #endregion
  2757. #region "查询垛位信息"
  2758. private void QueryButtress( string _where)
  2759. {
  2760. string strOut = "";
  2761. DataSet ds = new DataSet();
  2762. try
  2763. {
  2764. if (ClientCommon._UserInfo.UserRoleID == "pszxck" || ClientCommon._UserInfo.UserRoleID == "pszxjh")
  2765. {
  2766. if (sstyle == "2" || sstyle == "3")
  2767. {
  2768. if (chk_SendType.Checked == true)
  2769. {
  2770. this.ds_TurnoffButtress.Tables["KCJ_TURNOFFBUTTRESSLIST"].Clear();
  2771. ds = (DataSet)Core.Mes.ClientFrameWork.ClientCommon._RemotingHelp.ExecuteMethod("JTurnoffManager", "Core.XgMes.Server.JGKC.TurnoffManager.TurnoffMoveButtress",
  2772. "GetTurnoffButtress_SendType_PS", new object[] { _where, sstyle }, out strOut);
  2773. }
  2774. else
  2775. {
  2776. this.ds_TurnoffButtress.Tables["KCJ_TURNOFFBUTTRESSLIST"].Clear();
  2777. ds = (DataSet)Core.Mes.ClientFrameWork.ClientCommon._RemotingHelp.ExecuteMethod("JTurnoffManager", "Core.XgMes.Server.JGKC.TurnoffManager.TurnoffMoveButtress",
  2778. "GetTurnoffButtress_PS", new object[] { _where, sstyle }, out strOut);
  2779. }
  2780. }
  2781. }
  2782. else
  2783. {
  2784. if (chk_SendType.Checked == true)
  2785. {
  2786. this.ds_TurnoffButtress.Tables["KCJ_TURNOFFBUTTRESSLIST"].Clear();
  2787. ds = (DataSet)Core.Mes.ClientFrameWork.ClientCommon._RemotingHelp.ExecuteMethod("JTurnoffManager", "Core.XgMes.Server.JGKC.TurnoffManager.TurnoffMoveButtress",
  2788. "GetTurnoffButtress_SendType", new object[] { _where, ClientCommon._UserInfo.UserRoleID.ToString(), sstyle }, out strOut);
  2789. }
  2790. else
  2791. {
  2792. this.ds_TurnoffButtress.Tables["KCJ_TURNOFFBUTTRESSLIST"].Clear();
  2793. ds = (DataSet)Core.Mes.ClientFrameWork.ClientCommon._RemotingHelp.ExecuteMethod("JTurnoffManager", "Core.XgMes.Server.JGKC.TurnoffManager.TurnoffMoveButtress",
  2794. "GetTurnoffButtress", new object[] { _where, ClientCommon._UserInfo.UserRoleID.ToString(), sstyle }, out strOut);
  2795. }
  2796. }
  2797. if(strOut == "")
  2798. {
  2799. this.ds_TurnoffButtress.Merge(ds);
  2800. this.ds_TurnoffButtress.Tables["KCJ_TURNOFFBUTTRESSLIST"].AcceptChanges();
  2801. Comm.SetGridSumArea(this.dg_TurnoffButtress);
  2802. dg_TurnoffButtress.DisplayLayout.Bands[0].SortedColumns.Clear();
  2803. dg_TurnoffButtress.DisplayLayout.Bands[0].SortedColumns.Add("CREATTIME", false);
  2804. }
  2805. else
  2806. {
  2807. MessageBox.Show(strOut,"提示",MessageBoxButtons.OK,MessageBoxIcon.Warning);
  2808. }
  2809. }
  2810. catch(Exception ex)
  2811. {
  2812. System.Diagnostics.Debug.WriteLine(ex.ToString());
  2813. }
  2814. }
  2815. #endregion
  2816. #region "导出报表"
  2817. private void ExportButtressInfo()
  2818. {
  2819. if(this.dg_TurnoffButtress.Rows.Count > 0)
  2820. {
  2821. Comm.ExPortExcel(this.dg_TurnoffButtress,this.excelExporter);
  2822. }
  2823. else
  2824. {
  2825. MessageBox.Show("无垛位信息数据,不能导出!","提示",MessageBoxButtons.OK,MessageBoxIcon.Information);
  2826. }
  2827. }
  2828. #endregion
  2829. #region "更新GRIDE"
  2830. private void UpdateGrid(string OButtress,string OCondole,string BilletID,string NButtress,string NCondole)
  2831. {
  2832. string where = "";
  2833. string DelWhere = "";
  2834. string err = "";
  2835. try
  2836. {
  2837. if(BilletID.Length>0)
  2838. {
  2839. where = " AND A.BILLETID='" + BilletID +"' ";
  2840. DelWhere = "BILLETID='" + BilletID +"'";
  2841. }
  2842. else
  2843. {
  2844. where = " AND B.BUTTRESS='"+NButtress+"' AND B.CONDOLENUMBER='"+NCondole+"'";
  2845. DelWhere = "BUTTRESS='"+OButtress+"' AND CONDOLENUMBER='"+OCondole+"'";
  2846. }
  2847. System.Data.DataRow[] rows = this.ds_TurnoffButtress.Tables["KCJ_TURNOFFBUTTRESSLIST"].Select(DelWhere);
  2848. if(rows.Length>0)
  2849. {
  2850. for(int i=rows.Length-1;i>=0;i--)
  2851. {
  2852. this.ds_TurnoffButtress.Tables["KCJ_TURNOFFBUTTRESSLIST"].Rows.Remove(rows[i]);
  2853. }
  2854. }
  2855. DataSet ds = (DataSet)Core.Mes.ClientFrameWork.ClientCommon._RemotingHelp.ExecuteMethod("JTurnoffManager", "Core.XgMes.Server.JGKC.TurnoffManager.TurnoffMoveButtress",
  2856. "GetTurnoffButtress", new object[] { where, ClientCommon._UserInfo.UserRoleID.ToString() ,sstyle}, out err);
  2857. if (ds != null)
  2858. {
  2859. this.ds_TurnoffButtress.Merge(ds);
  2860. this.ds_TurnoffButtress.AcceptChanges();
  2861. }
  2862. Comm.SetGridSumArea(this.dg_TurnoffButtress);
  2863. }
  2864. catch(System.Exception ex)
  2865. {
  2866. System.Diagnostics.Debug.WriteLine(ex.ToString());
  2867. }
  2868. }
  2869. #endregion
  2870. #region "调整垛位/吊号/备注"
  2871. private void Adjust()
  2872. {
  2873. string ydh = "";
  2874. string xdh = "";
  2875. string strerr = "";
  2876. string remarktype = "0";
  2877. string strRemark = "";
  2878. try
  2879. {
  2880. if(!CheckAdjust())
  2881. return;
  2882. this.txt_YDH.Text = this.txt_YDH.Text.PadLeft(3,'0');
  2883. if(this.txt_XDH.Text.Length>0)
  2884. this.txt_XDH.Text = this.txt_XDH.Text.PadLeft(3,'0');
  2885. if(this.txt_YDH.Text.Length>0)
  2886. this.txt_YDH.Text = this.txt_YDH.Text.PadLeft(3,'0');
  2887. if(this.txt_YDHDate.Text.Length==0)
  2888. {
  2889. ydh = this.txt_YDH.Text;
  2890. }
  2891. else
  2892. {
  2893. ydh = this.txt_YDHDate.Text + "-" + this.txt_YDH.Text;
  2894. }
  2895. // if(this.txt_XDHDate.Text.Length==0 && this.txt_XDH.Text.Length==0)
  2896. // {
  2897. // xdh = this.txt_XDH.Text;
  2898. // }
  2899. // if(this.txt_XDHDate.Text.Length==0 && this.txt_XDH.Text.Length>0)
  2900. // {
  2901. // xdh = this.txt_XDH.Text;
  2902. // }
  2903. if(this.txt_XDHDate.Text.Trim().Length>0 && this.txt_XDH.Text.Trim().Length>0)
  2904. {
  2905. xdh = this.txt_XDHDate.Text.Trim() + "-" + this.txt_XDH.Text.Trim();
  2906. }
  2907. else
  2908. {
  2909. xdh = this.txt_XDH.Text.Trim();
  2910. }
  2911. if (sstyle == "3")
  2912. {
  2913. strRemark = ult_Remark.Text.Trim().ToString();
  2914. }
  2915. else
  2916. { strRemark = txt_YY.Text.Trim().ToString(); }
  2917. System.Collections.ArrayList OButtress = new ArrayList();
  2918. System.Collections.ArrayList NButtress = new ArrayList();
  2919. System.Collections.ArrayList HandleInfo = new ArrayList();
  2920. OButtress.Add(Comm.ObjToStr(this.cmb_OldButtress.Value));
  2921. OButtress.Add(Comm.ObjToStr(ydh));
  2922. OButtress.Add(Comm.ObjToStr(this.txt_XH.Text));
  2923. NButtress.Add(Comm.ObjToStr(this.cmb_NewButtress.Text.Length>0?this.cmb_NewButtress.Value:this.cmb_OldButtress.Value));
  2924. NButtress.Add(Comm.ObjToStr(xdh.Length>0?xdh:ydh));
  2925. HandleInfo.Add(Comm.ObjToStr(this.txt_HandleMan.Text));
  2926. HandleInfo.Add(Comm.ObjToStr(this.cmb_BC.Value));
  2927. HandleInfo.Add(Comm.ObjToStr(this.cmb_BZ.Value));
  2928. if(this.Chk_Replace.Checked)
  2929. remarktype = "1";
  2930. if(this.Dte_AjustTime.Value != null)
  2931. {
  2932. HandleInfo.Add(Convert.ToDateTime(this.Dte_AjustTime.Value).ToString("yyyy-MM-dd hh:mm:ss"));
  2933. }
  2934. else
  2935. {
  2936. HandleInfo.Add("");
  2937. }
  2938. HandleInfo.Add(Core.Mes.ClientFrameWork.ClientCommon._UserInfo.UserName);
  2939. HandleInfo.Add(sstyle);
  2940. HandleInfo.Add(ClientCommon._UserInfo.UserRoleID.ToString());
  2941. object obj = Core.Mes.ClientFrameWork.ClientCommon._RemotingHelp.ExecuteMethod("JTurnoffManager","Core.XgMes.Server.JGKC.TurnoffManager.TurnoffMoveButtress",
  2942. "TurnoffButtressAdjust", new object[] { OButtress, NButtress, HandleInfo, strRemark.Trim().ToString(), remarktype }, out strerr);
  2943. if(obj!=null && obj.ToString()=="1")
  2944. {
  2945. MessageBox.Show("调整提交成功","提示",MessageBoxButtons.OK,MessageBoxIcon.Information);
  2946. UpdateGrid(Comm.ObjToStr(this.cmb_OldButtress.Text),ydh,Comm.ObjToStr(this.txt_XH.Text),Comm.ObjToStr(this.cmb_NewButtress.Text),xdh.Length>0?xdh:ydh);
  2947. }
  2948. else
  2949. {
  2950. MessageBox.Show(strerr,"提示",MessageBoxButtons.OK,MessageBoxIcon.Warning);
  2951. }
  2952. }
  2953. catch(Exception ex)
  2954. {
  2955. System.Diagnostics.Debug.WriteLine(ex.ToString());
  2956. }
  2957. }
  2958. #endregion
  2959. #region "检查垛位/吊号是否需要调整"
  2960. private bool CheckAdjust()
  2961. {
  2962. string strOut="";
  2963. if(this.txt_YDH.Text.Trim().Length == 0)
  2964. {
  2965. MessageBox.Show("请您确认您要调整的原吊号");
  2966. return false;
  2967. }
  2968. if(Comm.ObjToStr(this.cmb_BC.Value).Length==0)
  2969. {
  2970. MessageBox.Show("请您确认您要转堆的班次");
  2971. return false;
  2972. }
  2973. if(Comm.ObjToStr(this.cmb_BZ.Value).Length==0)
  2974. {
  2975. MessageBox.Show("请您确认您要转堆的班组");
  2976. return false;
  2977. }
  2978. if(Comm.ObjToStr(this.txt_HandleMan.Text).Length==0)
  2979. {
  2980. MessageBox.Show("请您确认您要转堆人");
  2981. return false;
  2982. }
  2983. // if(this.txt_XDHDate.Text.Trim().Length==0 && this.txt_XDH.Text.Length>0)
  2984. // {
  2985. // MessageBox.Show("请您确认新吊号的日期");
  2986. // return false;
  2987. // }
  2988. if(Comm.ObjToStr(this.cmb_OldButtress.Value)=="临时垛位" && Comm.ObjToStr(this.cmb_NewButtress.Value)=="临时垛位")
  2989. {
  2990. MessageBox.Show("请您确认新垛位,新垛位不能为--临时垛位");
  2991. return false;
  2992. }
  2993. string NButtress = Comm.ObjToStr(this.cmb_NewButtress.Value).Length >0? Comm.ObjToStr(this.cmb_NewButtress.Value):Comm.ObjToStr(this.cmb_OldButtress.Value);
  2994. string NCondole = "";
  2995. string OCondole = "";
  2996. if(this.txt_YDHDate.Text.Length==0)
  2997. {
  2998. OCondole = this.txt_YDH.Text;
  2999. }
  3000. else
  3001. {
  3002. OCondole = this.txt_YDHDate.Text + "-" + this.txt_YDH.Text;
  3003. }
  3004. if(this.txt_XDHDate.Text.Length==0)
  3005. {
  3006. NCondole = this.txt_XDH.Text;
  3007. }
  3008. else
  3009. {
  3010. NCondole = this.txt_XDHDate.Text + "-" + this.txt_XDH.Text;
  3011. }
  3012. NCondole = NCondole.Length>0?NCondole:OCondole;
  3013. string sql = "SELECT COUNT(1) FROM KCJ_TURNOFFBUTTRESSLIST WHERE BUTTRESS='" + NButtress + "' AND CONDOLENUMBER='" + NCondole + "'";
  3014. DataSet ds = (DataSet)ClientCommon._RemotingHelp.ExecuteMethod("JTurnoffManager","Core.XgMes.Server.JGKC.TurnoffManager.Common","GetDataSet",new object []{sql},out strOut);
  3015. if(Comm.ObjToDecimal(ds.Tables[0].Rows[0][0]) > 0)
  3016. {
  3017. System.Windows.Forms.DialogResult t = MessageBox.Show("吊号" + NCondole + "已在" + NButtress + "堆位","提示",System.Windows.Forms.MessageBoxButtons.YesNo,MessageBoxIcon.Information);
  3018. if(t == System.Windows.Forms.DialogResult.No)
  3019. {
  3020. return false;
  3021. }
  3022. }
  3023. return true;
  3024. }
  3025. #endregion
  3026. #region "Key Event"
  3027. private void txt_XDH_KeyDown(object sender, System.Windows.Forms.KeyEventArgs e)
  3028. {
  3029. string dh ="";
  3030. try
  3031. {
  3032. if(e.KeyData == System.Windows.Forms.Keys.Return)
  3033. {
  3034. if(((System.Windows.Forms.Control)sender).Name == "txt_YDH")
  3035. {
  3036. if(this.txt_YDH.Text.Length>0)
  3037. this.txt_YDH.Text = this.txt_YDH.Text.PadLeft(3,'0');
  3038. if(this.txt_YDH.Text.Length==0)
  3039. {
  3040. MessageBox.Show("请您输入吊号","提示",MessageBoxButtons.OK,MessageBoxIcon.Information);
  3041. return;
  3042. }
  3043. else
  3044. {
  3045. if(this.txt_YDHDate.Text.Length==0)
  3046. {
  3047. dh = this.txt_YDH.Text;
  3048. }
  3049. else
  3050. {
  3051. dh = this.txt_YDHDate.Text + "-" + this.txt_YDH.Text;
  3052. }
  3053. string where = " AND B.CONDOLENUMBER='"+dh+"' ";
  3054. QueryButtress(where);
  3055. if(this.dg_TurnoffButtress.Rows.Count>0)
  3056. {
  3057. this.cmb_OldButtress.Value = Comm.ObjToStr(this.dg_TurnoffButtress.Rows[0].Cells["BUTTRESS"].Value);
  3058. }
  3059. else
  3060. {
  3061. MessageBox.Show("库存不存在吊号为"+this.txt_YDH.Text+"的板块","提示",MessageBoxButtons.OK,MessageBoxIcon.Information);
  3062. return;
  3063. }
  3064. }
  3065. }
  3066. if(((System.Windows.Forms.Control)sender).Name == "txt_XDH")
  3067. {
  3068. this.Adjust();
  3069. this.txt_YDH.Focus();
  3070. this.txt_YDH.SelectAll();
  3071. return;
  3072. }
  3073. System.Windows.Forms.SendKeys.Send("{TAB}");
  3074. }
  3075. }
  3076. catch(Exception ex)
  3077. {
  3078. System.Diagnostics.Debug.WriteLine(ex.ToString());
  3079. }
  3080. }
  3081. private void txt_XDH_Enter(object sender, System.EventArgs e)
  3082. {
  3083. if(sender.GetType().ToString()=="Infragistics.Win.UltraWinEditors.UltraTextEditor")
  3084. {
  3085. ((Infragistics.Win.UltraWinEditors.UltraTextEditor)sender).SelectAll();
  3086. }
  3087. if(sender.GetType().ToString()=="Infragistics.Win.UltraWinEditors.UltraNumericEditor")
  3088. {
  3089. ((Infragistics.Win.UltraWinEditors.UltraNumericEditor)sender).SelectAll();
  3090. }
  3091. }
  3092. #endregion
  3093. #region 打印标签、唛头号
  3094. [DllImport("YHBC.dll", EntryPoint="printString")]
  3095. public static extern void PrintString(string str);
  3096. private void Print_Log()
  3097. {
  3098. try
  3099. {
  3100. string strPrint = "";
  3101. if(dg_TurnoffButtress.Selected.Rows.Count >0)
  3102. {
  3103. foreach(Infragistics.Win.UltraWinGrid.UltraGridRow row in this.dg_TurnoffButtress.Selected.Rows)
  3104. {
  3105. strPrint = "";
  3106. strPrint = row.Cells["PACTNO"].Text +" "+ row.Cells["BILLETID"].Text+" "+ row.Cells["DETERMINANTCARDNUMBER"].Text+ " "+row.Cells["SPET"].Text;
  3107. PrintString(strPrint);
  3108. }
  3109. }
  3110. else
  3111. {
  3112. MessageBox.Show("请选择需打印标签的板块信息!","提示",MessageBoxButtons.OK,MessageBoxIcon.Information);
  3113. }
  3114. }
  3115. catch(Exception ex)
  3116. {
  3117. System.Diagnostics.Debug.WriteLine(ex.ToString());
  3118. }
  3119. }
  3120. #endregion
  3121. }
  3122. }