FrmMoveButtress.cs 158 KB

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