| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126312731283129313031313132313331343135313631373138313931403141314231433144 |
- using System;
- using System.Drawing;
- using System.Collections;
- using System.ComponentModel;
- using System.Windows.Forms;
- using Core.Mes.ClientFrameWork;
- using Core.Mes.IBaseInterface;
- using System.Data;
- using System.Runtime.InteropServices;
- namespace Core.XgMes.Client.JGKC.SteelPlateManager
- {
- /// <summary>
- /// FrmTurnoffMoveButtress 的摘要说明。
- /// </summary>
- public class FrmTurnoffMoveButtress : Mes.ClientFrameWork.FrmBase
- {
- private Infragistics.Win.UltraWinToolbars.UltraToolbarsManager ultraToolbarsManager1;
- private System.Windows.Forms.Panel panel1;
- private Infragistics.Win.UltraWinToolbars.UltraToolbarsDockArea _panel1_Toolbars_Dock_Area_Left;
- private Infragistics.Win.UltraWinToolbars.UltraToolbarsDockArea _panel1_Toolbars_Dock_Area_Right;
- private Infragistics.Win.UltraWinToolbars.UltraToolbarsDockArea _panel1_Toolbars_Dock_Area_Top;
- private Infragistics.Win.UltraWinToolbars.UltraToolbarsDockArea _panel1_Toolbars_Dock_Area_Bottom;
- private System.Data.DataSet ds_TurnoffButtress;
- private System.Data.DataTable dataTable2;
- private System.Data.DataColumn dataColumn24;
- private System.Data.DataColumn dataColumn25;
- private System.Data.DataColumn dataColumn26;
- private System.Data.DataColumn dataColumn23;
- private System.Data.DataColumn dataColumn27;
- private System.Data.DataColumn dataColumn28;
- private System.Data.DataColumn dataColumn29;
- private System.Data.DataColumn dataColumn30;
- private System.Data.DataColumn dataColumn31;
- private System.Data.DataColumn dataColumn32;
- private System.Data.DataColumn dataColumn33;
- private System.Data.DataColumn dataColumn34;
- private System.Data.DataColumn dataColumn35;
- private System.Data.DataColumn dataColumn36;
- private System.Data.DataColumn dataColumn37;
- private System.Data.DataColumn dataColumn42;
- private System.Data.DataColumn dataColumn16;
- private System.Data.DataColumn dataColumn19;
- private System.Data.DataColumn dataColumn1;
- private System.Data.DataColumn dataColumn2;
- private System.Data.DataColumn dataColumn4;
- private System.Data.DataColumn dataColumn3;
- private System.Data.DataColumn dataColumn5;
- private System.Data.DataColumn dataColumn6;
- private System.Data.DataColumn dataColumn7;
- private System.Data.DataColumn dataColumn8;
- private System.Data.DataColumn dataColumn9;
- private Infragistics.Win.UltraWinGrid.ExcelExport.UltraGridExcelExporter excelExporter;
- private Infragistics.Win.Misc.UltraGroupBox ultraGroupBox1;
- private Infragistics.Win.Misc.UltraButton btn_ClearFilter;
- private Infragistics.Win.UltraWinEditors.UltraCheckEditor chk_AllowFilter;
- private Infragistics.Win.UltraWinEditors.UltraComboEditor cmb_ProductLine;
- private Infragistics.Win.UltraWinEditors.UltraCheckEditor chk_LineAndSteel;
- private Infragistics.Win.Misc.UltraLabel ultraLabel10;
- private Infragistics.Win.UltraWinEditors.UltraTextEditor txt_RollNOEnd;
- private Infragistics.Win.UltraWinEditors.UltraTextEditor txt_RollNOBegin;
- private Infragistics.Win.UltraWinEditors.UltraTextEditor txt_RollTop;
- private Infragistics.Win.UltraWinEditors.UltraCheckEditor chk_RollNum;
- private Infragistics.Win.UltraWinEditors.UltraNumericEditor txt_CD;
- private Infragistics.Win.UltraWinEditors.UltraNumericEditor txt_KD;
- private Infragistics.Win.UltraWinEditors.UltraNumericEditor txt_HD;
- private Infragistics.Win.UltraWinEditors.UltraCheckEditor chk_Spet;
- private Infragistics.Win.UltraWinEditors.UltraTextEditor txt_Condole;
- private Infragistics.Win.UltraWinEditors.UltraCheckEditor chk_Condole;
- private Infragistics.Win.UltraWinGrid.UltraCombo cmb_SteelType;
- private Infragistics.Win.UltraWinGrid.UltraCombo cmb_Area;
- private Infragistics.Win.UltraWinEditors.UltraCheckEditor chk_Area;
- private Infragistics.Win.UltraWinGrid.UltraCombo cmb_Buttress;
- private Infragistics.Win.UltraWinEditors.UltraCheckEditor Chk_Buttress;
- private Infragistics.Win.UltraWinEditors.UltraTextEditor txt_PlanNO;
- private Infragistics.Win.UltraWinEditors.UltraCheckEditor Chk_PlanNO;
- private Infragistics.Win.UltraWinEditors.UltraTextEditor txt_PactNO;
- private Infragistics.Win.UltraWinEditors.UltraCheckEditor Chk_PactNO;
- private Infragistics.Win.Misc.UltraExpandableGroupBox ultraExpandableGroupBox1;
- private Infragistics.Win.Misc.UltraExpandableGroupBoxPanel ultraExpandableGroupBoxPanel1;
- private System.Windows.Forms.Panel panel2;
- private Infragistics.Win.UltraWinEditors.UltraTextEditor txt_XDH;
- private Infragistics.Win.UltraWinEditors.UltraTextEditor txt_YDH;
- private Infragistics.Win.UltraWinEditors.UltraCheckEditor Chk_Replace;
- private Infragistics.Win.UltraWinEditors.UltraCheckEditor Chk_Add;
- private Infragistics.Win.UltraWinGrid.UltraCombo txt_HandleMan;
- private Infragistics.Win.Misc.UltraLabel ultraLabel9;
- private Infragistics.Win.UltraWinEditors.UltraDateTimeEditor Dte_AjustTime;
- private Infragistics.Win.Misc.UltraLabel ultraLabel8;
- private Infragistics.Win.UltraWinGrid.UltraCombo cmb_BZ;
- private Infragistics.Win.Misc.UltraLabel ultraLabel6;
- private Infragistics.Win.UltraWinGrid.UltraCombo cmb_BC;
- private Infragistics.Win.Misc.UltraLabel ultraLabel7;
- private Infragistics.Win.UltraWinGrid.UltraCombo cmb_NewArea;
- private Infragistics.Win.Misc.UltraLabel ultraLabel5;
- private Infragistics.Win.UltraWinEditors.UltraTextEditor txt_XDHDate;
- private Infragistics.Win.UltraWinEditors.UltraTextEditor txt_YDHDate;
- private Infragistics.Win.UltraWinEditors.UltraCheckEditor chk_XH;
- private Infragistics.Win.UltraWinEditors.UltraTextEditor txt_YY;
- private System.Windows.Forms.Label lab_Weight;
- private Infragistics.Win.UltraWinEditors.UltraTextEditor txt_XH;
- private Infragistics.Win.Misc.UltraLabel ultraLabel4;
- private Infragistics.Win.Misc.UltraLabel ultraLabel3;
- private Infragistics.Win.UltraWinGrid.UltraCombo cmb_NewButtress;
- private Infragistics.Win.Misc.UltraLabel ultraLabel2;
- private Infragistics.Win.UltraWinGrid.UltraCombo cmb_OldButtress;
- private Infragistics.Win.Misc.UltraLabel ultraLabel1;
- private Infragistics.Win.UltraWinGrid.UltraGrid dg_TurnoffButtress;
- private System.Data.DataColumn dataColumn10;
- private System.Data.DataColumn dataColumn11;
- private Infragistics.Win.UltraWinEditors.UltraCheckEditor chk_Size;
- private Infragistics.Win.Misc.UltraLabel ultraLabel11;
- private Infragistics.Win.Misc.UltraLabel ultraLabel13;
- private Infragistics.Win.UltraWinEditors.UltraNumericEditor txt_KS;
- private Infragistics.Win.UltraWinEditors.UltraNumericEditor txt_CS;
- private Infragistics.Win.UltraWinEditors.UltraComboEditor cmb_KCondition;
- private Infragistics.Win.UltraWinEditors.UltraComboEditor cmb_CCondition;
- private System.Data.DataColumn dataColumn12;
- private System.Data.DataColumn dataColumn13;
- private System.Data.DataColumn dataColumn14;
- private Infragistics.Win.Misc.UltraLabel ultraLabel15;
- private System.Data.DataColumn dataColumn15;
- private System.Data.DataColumn dataColumn17;
- private DataColumn dataColumn18;
- private DataColumn dataColumn20;
- private DataColumn dataColumn21;
- private DataColumn dataColumn22;
- private DataColumn dataColumn38;
- private Infragistics.Win.UltraWinEditors.UltraCheckEditor chk_SendType;
- private DataColumn dataColumn39;
- private DataColumn dataColumn40;
- private DataColumn dataColumn41;
- private DataColumn dataColumn43;
- private DataColumn dataColumn44;
- private DataColumn dataColumn45;
- private Infragistics.Win.UltraWinEditors.UltraComboEditor ult_Remark;
- private System.ComponentModel.IContainer components;
- public FrmTurnoffMoveButtress()
- {
- //
- // Windows 窗体设计器支持所必需的
- //
- InitializeComponent();
- //
- // TODO: 在 InitializeComponent 调用后添加任何构造函数代码
- //
- }
- /// <summary>
- /// 清理所有正在使用的资源。
- /// </summary>
- protected override void Dispose( bool disposing )
- {
- if( disposing )
- {
- if(components != null)
- {
- components.Dispose();
- }
- }
- base.Dispose( disposing );
- }
- #region Windows 窗体设计器生成的代码
- /// <summary>
- /// 设计器支持所需的方法 - 不要使用代码编辑器修改
- /// 此方法的内容。
- /// </summary>
- private void InitializeComponent()
- {
- this.components = new System.ComponentModel.Container();
- Infragistics.Win.UltraWinToolbars.UltraToolbar ultraToolbar1 = new Infragistics.Win.UltraWinToolbars.UltraToolbar("工具栏");
- Infragistics.Win.UltraWinToolbars.ButtonTool buttonTool1 = new Infragistics.Win.UltraWinToolbars.ButtonTool("MoveButtress");
- Infragistics.Win.UltraWinToolbars.ButtonTool buttonTool2 = new Infragistics.Win.UltraWinToolbars.ButtonTool("QueryButtress");
- Infragistics.Win.UltraWinToolbars.ButtonTool buttonTool3 = new Infragistics.Win.UltraWinToolbars.ButtonTool("ExportButtressInfo");
- Infragistics.Win.UltraWinToolbars.ButtonTool buttonTool4 = new Infragistics.Win.UltraWinToolbars.ButtonTool("Print");
- Infragistics.Win.UltraWinToolbars.ButtonTool buttonTool5 = new Infragistics.Win.UltraWinToolbars.ButtonTool("Close");
- Infragistics.Win.UltraWinToolbars.ButtonTool buttonTool6 = new Infragistics.Win.UltraWinToolbars.ButtonTool("PRINT_LOG");
- Infragistics.Win.UltraWinToolbars.ButtonTool buttonTool7 = new Infragistics.Win.UltraWinToolbars.ButtonTool("MoveButtress");
- Infragistics.Win.UltraWinToolbars.ButtonTool buttonTool8 = new Infragistics.Win.UltraWinToolbars.ButtonTool("QueryButtress");
- Infragistics.Win.UltraWinToolbars.ButtonTool buttonTool9 = new Infragistics.Win.UltraWinToolbars.ButtonTool("Close");
- Infragistics.Win.UltraWinToolbars.ButtonTool buttonTool10 = new Infragistics.Win.UltraWinToolbars.ButtonTool("ExportButtressInfo");
- Infragistics.Win.UltraWinToolbars.ButtonTool buttonTool11 = new Infragistics.Win.UltraWinToolbars.ButtonTool("Print");
- Infragistics.Win.UltraWinToolbars.ButtonTool buttonTool12 = new Infragistics.Win.UltraWinToolbars.ButtonTool("PRINT_LOG");
- Infragistics.Win.Appearance appearance1 = new Infragistics.Win.Appearance();
- Infragistics.Win.ValueListItem valueListItem1 = new Infragistics.Win.ValueListItem();
- Infragistics.Win.ValueListItem valueListItem2 = new Infragistics.Win.ValueListItem();
- Infragistics.Win.ValueListItem valueListItem3 = new Infragistics.Win.ValueListItem();
- Infragistics.Win.ValueListItem valueListItem4 = new Infragistics.Win.ValueListItem();
- Infragistics.Win.ValueListItem valueListItem5 = new Infragistics.Win.ValueListItem();
- Infragistics.Win.ValueListItem valueListItem6 = new Infragistics.Win.ValueListItem();
- Infragistics.Win.ValueListItem valueListItem7 = new Infragistics.Win.ValueListItem();
- Infragistics.Win.ValueListItem valueListItem8 = new Infragistics.Win.ValueListItem();
- Infragistics.Win.ValueListItem valueListItem9 = new Infragistics.Win.ValueListItem();
- Infragistics.Win.ValueListItem valueListItem10 = new Infragistics.Win.ValueListItem();
- Infragistics.Win.Appearance appearance2 = new Infragistics.Win.Appearance();
- Infragistics.Win.Appearance appearance3 = new Infragistics.Win.Appearance();
- Infragistics.Win.Appearance appearance4 = new Infragistics.Win.Appearance();
- Infragistics.Win.Appearance appearance5 = new Infragistics.Win.Appearance();
- Infragistics.Win.Appearance appearance6 = new Infragistics.Win.Appearance();
- Infragistics.Win.ValueListItem valueListItem11 = new Infragistics.Win.ValueListItem();
- Infragistics.Win.ValueListItem valueListItem12 = new Infragistics.Win.ValueListItem();
- Infragistics.Win.Appearance appearance7 = new Infragistics.Win.Appearance();
- Infragistics.Win.Appearance appearance8 = new Infragistics.Win.Appearance();
- Infragistics.Win.Appearance appearance9 = new Infragistics.Win.Appearance();
- Infragistics.Win.Appearance appearance10 = new Infragistics.Win.Appearance();
- Infragistics.Win.Appearance appearance11 = new Infragistics.Win.Appearance();
- Infragistics.Win.Appearance appearance12 = new Infragistics.Win.Appearance();
- Infragistics.Win.Appearance appearance13 = new Infragistics.Win.Appearance();
- Infragistics.Win.Appearance appearance14 = new Infragistics.Win.Appearance();
- Infragistics.Win.Appearance appearance15 = new Infragistics.Win.Appearance();
- Infragistics.Win.Appearance appearance16 = new Infragistics.Win.Appearance();
- Infragistics.Win.Appearance appearance17 = new Infragistics.Win.Appearance();
- Infragistics.Win.Appearance appearance18 = new Infragistics.Win.Appearance();
- Infragistics.Win.Appearance appearance19 = new Infragistics.Win.Appearance();
- Infragistics.Win.ValueListItem valueListItem13 = new Infragistics.Win.ValueListItem();
- Infragistics.Win.Appearance appearance20 = new Infragistics.Win.Appearance();
- Infragistics.Win.Appearance appearance21 = new Infragistics.Win.Appearance();
- Infragistics.Win.Appearance appearance22 = new Infragistics.Win.Appearance();
- Infragistics.Win.Appearance appearance23 = new Infragistics.Win.Appearance();
- Infragistics.Win.Appearance appearance24 = new Infragistics.Win.Appearance();
- Infragistics.Win.Appearance appearance25 = new Infragistics.Win.Appearance();
- Infragistics.Win.Appearance appearance26 = new Infragistics.Win.Appearance();
- Infragistics.Win.Appearance appearance27 = new Infragistics.Win.Appearance();
- Infragistics.Win.Appearance appearance28 = new Infragistics.Win.Appearance();
- Infragistics.Win.Appearance appearance29 = new Infragistics.Win.Appearance();
- Infragistics.Win.Appearance appearance30 = new Infragistics.Win.Appearance();
- Infragistics.Win.Appearance appearance31 = new Infragistics.Win.Appearance();
- Infragistics.Win.Appearance appearance32 = new Infragistics.Win.Appearance();
- Infragistics.Win.Appearance appearance33 = new Infragistics.Win.Appearance();
- Infragistics.Win.UltraWinGrid.UltraGridBand ultraGridBand1 = new Infragistics.Win.UltraWinGrid.UltraGridBand("KCJ_TURNOFFBUTTRESSLIST", -1);
- Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn1 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("PRODUCTLINE");
- Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn2 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("ROLLNUMBER");
- Infragistics.Win.Appearance appearance34 = new Infragistics.Win.Appearance();
- Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn3 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("MOTHERBOARDNUMBER");
- Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn4 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("BILLETID");
- Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn5 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("DETERMINANTCARDNUMBER");
- Infragistics.Win.Appearance appearance35 = new Infragistics.Win.Appearance();
- Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn6 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("SPET");
- Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn7 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("THEORYWEIGHT");
- Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn8 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("DETERMINANTRESULT");
- Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn9 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("PLANNO");
- Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn10 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("PACTNO");
- Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn11 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("STOVENO");
- Infragistics.Win.Appearance appearance36 = new Infragistics.Win.Appearance();
- Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn12 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("ORDERNO");
- Infragistics.Win.Appearance appearance37 = new Infragistics.Win.Appearance();
- Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn13 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("PLY");
- Infragistics.Win.Appearance appearance38 = new Infragistics.Win.Appearance();
- Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn14 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("WIDTH");
- Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn15 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("LENGTH");
- Infragistics.Win.Appearance appearance39 = new Infragistics.Win.Appearance();
- Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn16 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("FACEQUALITY");
- Infragistics.Win.Appearance appearance40 = new Infragistics.Win.Appearance();
- Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn17 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("BUGREASON");
- Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn18 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("CLIPTYPEPROCESS");
- Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn19 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("SOURCEID");
- Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn20 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("INTIME");
- Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn21 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("BUTTRESS");
- Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn22 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("CONDOLENUMBER");
- Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn23 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("CONDOLELAYER");
- Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn24 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("BUTTRESSLAYER");
- Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn25 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("LOGICALLAYER");
- Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn26 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("AREA");
- Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn27 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("REMARK");
- Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn28 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("HANDREMARK");
- Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn29 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("CREATTIME");
- Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn30 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("OSPET");
- Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn31 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("INSTEEL");
- Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn32 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("SENDBEGINDATE");
- Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn33 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("YPLANNO");
- Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn34 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("YORDERNO");
- Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn35 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("ORDERBUYER");
- Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn36 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("PRODUCT_NAME");
- Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn37 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("MEMO");
- Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn38 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("DETECTMARBOOKIN");
- Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn39 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("ZHPDBH");
- Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn40 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("BUYERNAME");
- Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn41 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("STATIONNAME");
- Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn42 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("OSTEEL");
- Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn43 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("OPLY");
- Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn44 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("OWIDTH");
- Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn45 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("OLENGTH");
- Infragistics.Win.UltraWinGrid.SummarySettings summarySettings1 = new Infragistics.Win.UltraWinGrid.SummarySettings("", Infragistics.Win.UltraWinGrid.SummaryType.Count, null, "BILLETID", 3, true, "KCJ_TURNOFFBUTTRESSLIST", 0, Infragistics.Win.UltraWinGrid.SummaryPosition.UseSummaryPositionColumn, null, -1, false);
- Infragistics.Win.Appearance appearance41 = new Infragistics.Win.Appearance();
- Infragistics.Win.Appearance appearance42 = new Infragistics.Win.Appearance();
- Infragistics.Win.UltraWinGrid.SummarySettings summarySettings2 = new Infragistics.Win.UltraWinGrid.SummarySettings("", Infragistics.Win.UltraWinGrid.SummaryType.Sum, null, "THEORYWEIGHT", 6, true, "KCJ_TURNOFFBUTTRESSLIST", 0, Infragistics.Win.UltraWinGrid.SummaryPosition.UseSummaryPositionColumn, null, -1, false);
- Infragistics.Win.Appearance appearance43 = new Infragistics.Win.Appearance();
- Infragistics.Win.Appearance appearance44 = new Infragistics.Win.Appearance();
- Infragistics.Win.Appearance appearance45 = new Infragistics.Win.Appearance();
- Infragistics.Win.Appearance appearance46 = new Infragistics.Win.Appearance();
- Infragistics.Win.Appearance appearance47 = new Infragistics.Win.Appearance();
- Infragistics.Win.Appearance appearance48 = new Infragistics.Win.Appearance();
- Infragistics.Win.Appearance appearance49 = new Infragistics.Win.Appearance();
- Infragistics.Win.Appearance appearance50 = new Infragistics.Win.Appearance();
- Infragistics.Win.Appearance appearance51 = new Infragistics.Win.Appearance();
- Infragistics.Win.Appearance appearance52 = new Infragistics.Win.Appearance();
- Infragistics.Win.Appearance appearance53 = new Infragistics.Win.Appearance();
- Infragistics.Win.Appearance appearance54 = new Infragistics.Win.Appearance();
- this.ultraToolbarsManager1 = new Infragistics.Win.UltraWinToolbars.UltraToolbarsManager(this.components);
- this.panel1 = new System.Windows.Forms.Panel();
- this._panel1_Toolbars_Dock_Area_Left = new Infragistics.Win.UltraWinToolbars.UltraToolbarsDockArea();
- this._panel1_Toolbars_Dock_Area_Right = new Infragistics.Win.UltraWinToolbars.UltraToolbarsDockArea();
- this._panel1_Toolbars_Dock_Area_Top = new Infragistics.Win.UltraWinToolbars.UltraToolbarsDockArea();
- this._panel1_Toolbars_Dock_Area_Bottom = new Infragistics.Win.UltraWinToolbars.UltraToolbarsDockArea();
- this.ds_TurnoffButtress = new System.Data.DataSet();
- this.dataTable2 = new System.Data.DataTable();
- this.dataColumn24 = new System.Data.DataColumn();
- this.dataColumn25 = new System.Data.DataColumn();
- this.dataColumn26 = new System.Data.DataColumn();
- this.dataColumn23 = new System.Data.DataColumn();
- this.dataColumn36 = new System.Data.DataColumn();
- this.dataColumn9 = new System.Data.DataColumn();
- this.dataColumn33 = new System.Data.DataColumn();
- this.dataColumn37 = new System.Data.DataColumn();
- this.dataColumn28 = new System.Data.DataColumn();
- this.dataColumn8 = new System.Data.DataColumn();
- this.dataColumn27 = new System.Data.DataColumn();
- this.dataColumn29 = new System.Data.DataColumn();
- this.dataColumn30 = new System.Data.DataColumn();
- this.dataColumn31 = new System.Data.DataColumn();
- this.dataColumn32 = new System.Data.DataColumn();
- this.dataColumn34 = new System.Data.DataColumn();
- this.dataColumn35 = new System.Data.DataColumn();
- this.dataColumn42 = new System.Data.DataColumn();
- this.dataColumn16 = new System.Data.DataColumn();
- this.dataColumn19 = new System.Data.DataColumn();
- this.dataColumn1 = new System.Data.DataColumn();
- this.dataColumn2 = new System.Data.DataColumn();
- this.dataColumn4 = new System.Data.DataColumn();
- this.dataColumn3 = new System.Data.DataColumn();
- this.dataColumn5 = new System.Data.DataColumn();
- this.dataColumn6 = new System.Data.DataColumn();
- this.dataColumn7 = new System.Data.DataColumn();
- this.dataColumn10 = new System.Data.DataColumn();
- this.dataColumn11 = new System.Data.DataColumn();
- this.dataColumn12 = new System.Data.DataColumn();
- this.dataColumn13 = new System.Data.DataColumn();
- this.dataColumn14 = new System.Data.DataColumn();
- this.dataColumn15 = new System.Data.DataColumn();
- this.dataColumn17 = new System.Data.DataColumn();
- this.dataColumn18 = new System.Data.DataColumn();
- this.dataColumn20 = new System.Data.DataColumn();
- this.dataColumn21 = new System.Data.DataColumn();
- this.dataColumn22 = new System.Data.DataColumn();
- this.dataColumn38 = new System.Data.DataColumn();
- this.dataColumn39 = new System.Data.DataColumn();
- this.dataColumn40 = new System.Data.DataColumn();
- this.dataColumn41 = new System.Data.DataColumn();
- this.dataColumn43 = new System.Data.DataColumn();
- this.dataColumn44 = new System.Data.DataColumn();
- this.dataColumn45 = new System.Data.DataColumn();
- this.excelExporter = new Infragistics.Win.UltraWinGrid.ExcelExport.UltraGridExcelExporter();
- this.ultraGroupBox1 = new Infragistics.Win.Misc.UltraGroupBox();
- this.chk_SendType = new Infragistics.Win.UltraWinEditors.UltraCheckEditor();
- this.ultraLabel15 = new Infragistics.Win.Misc.UltraLabel();
- this.cmb_CCondition = new Infragistics.Win.UltraWinEditors.UltraComboEditor();
- this.cmb_KCondition = new Infragistics.Win.UltraWinEditors.UltraComboEditor();
- this.txt_CS = new Infragistics.Win.UltraWinEditors.UltraNumericEditor();
- this.ultraLabel13 = new Infragistics.Win.Misc.UltraLabel();
- this.ultraLabel11 = new Infragistics.Win.Misc.UltraLabel();
- this.txt_KS = new Infragistics.Win.UltraWinEditors.UltraNumericEditor();
- this.chk_Size = new Infragistics.Win.UltraWinEditors.UltraCheckEditor();
- this.btn_ClearFilter = new Infragistics.Win.Misc.UltraButton();
- this.chk_AllowFilter = new Infragistics.Win.UltraWinEditors.UltraCheckEditor();
- this.cmb_ProductLine = new Infragistics.Win.UltraWinEditors.UltraComboEditor();
- this.chk_LineAndSteel = new Infragistics.Win.UltraWinEditors.UltraCheckEditor();
- this.ultraLabel10 = new Infragistics.Win.Misc.UltraLabel();
- this.txt_RollNOEnd = new Infragistics.Win.UltraWinEditors.UltraTextEditor();
- this.txt_RollNOBegin = new Infragistics.Win.UltraWinEditors.UltraTextEditor();
- this.txt_RollTop = new Infragistics.Win.UltraWinEditors.UltraTextEditor();
- this.chk_RollNum = new Infragistics.Win.UltraWinEditors.UltraCheckEditor();
- this.txt_CD = new Infragistics.Win.UltraWinEditors.UltraNumericEditor();
- this.txt_KD = new Infragistics.Win.UltraWinEditors.UltraNumericEditor();
- this.txt_HD = new Infragistics.Win.UltraWinEditors.UltraNumericEditor();
- this.chk_Spet = new Infragistics.Win.UltraWinEditors.UltraCheckEditor();
- this.txt_Condole = new Infragistics.Win.UltraWinEditors.UltraTextEditor();
- this.chk_Condole = new Infragistics.Win.UltraWinEditors.UltraCheckEditor();
- this.cmb_SteelType = new Infragistics.Win.UltraWinGrid.UltraCombo();
- this.cmb_Area = new Infragistics.Win.UltraWinGrid.UltraCombo();
- this.chk_Area = new Infragistics.Win.UltraWinEditors.UltraCheckEditor();
- this.cmb_Buttress = new Infragistics.Win.UltraWinGrid.UltraCombo();
- this.Chk_Buttress = new Infragistics.Win.UltraWinEditors.UltraCheckEditor();
- this.txt_PlanNO = new Infragistics.Win.UltraWinEditors.UltraTextEditor();
- this.Chk_PlanNO = new Infragistics.Win.UltraWinEditors.UltraCheckEditor();
- this.txt_PactNO = new Infragistics.Win.UltraWinEditors.UltraTextEditor();
- this.Chk_PactNO = new Infragistics.Win.UltraWinEditors.UltraCheckEditor();
- this.ultraExpandableGroupBox1 = new Infragistics.Win.Misc.UltraExpandableGroupBox();
- this.ultraExpandableGroupBoxPanel1 = new Infragistics.Win.Misc.UltraExpandableGroupBoxPanel();
- this.ult_Remark = new Infragistics.Win.UltraWinEditors.UltraComboEditor();
- this.txt_XDH = new Infragistics.Win.UltraWinEditors.UltraTextEditor();
- this.txt_YDH = new Infragistics.Win.UltraWinEditors.UltraTextEditor();
- this.Chk_Replace = new Infragistics.Win.UltraWinEditors.UltraCheckEditor();
- this.Chk_Add = new Infragistics.Win.UltraWinEditors.UltraCheckEditor();
- this.txt_HandleMan = new Infragistics.Win.UltraWinGrid.UltraCombo();
- this.ultraLabel9 = new Infragistics.Win.Misc.UltraLabel();
- this.Dte_AjustTime = new Infragistics.Win.UltraWinEditors.UltraDateTimeEditor();
- this.ultraLabel8 = new Infragistics.Win.Misc.UltraLabel();
- this.cmb_BZ = new Infragistics.Win.UltraWinGrid.UltraCombo();
- this.ultraLabel6 = new Infragistics.Win.Misc.UltraLabel();
- this.cmb_BC = new Infragistics.Win.UltraWinGrid.UltraCombo();
- this.ultraLabel7 = new Infragistics.Win.Misc.UltraLabel();
- this.cmb_NewArea = new Infragistics.Win.UltraWinGrid.UltraCombo();
- this.ultraLabel5 = new Infragistics.Win.Misc.UltraLabel();
- this.txt_XDHDate = new Infragistics.Win.UltraWinEditors.UltraTextEditor();
- this.txt_YDHDate = new Infragistics.Win.UltraWinEditors.UltraTextEditor();
- this.chk_XH = new Infragistics.Win.UltraWinEditors.UltraCheckEditor();
- this.txt_YY = new Infragistics.Win.UltraWinEditors.UltraTextEditor();
- this.lab_Weight = new System.Windows.Forms.Label();
- this.txt_XH = new Infragistics.Win.UltraWinEditors.UltraTextEditor();
- this.ultraLabel4 = new Infragistics.Win.Misc.UltraLabel();
- this.ultraLabel3 = new Infragistics.Win.Misc.UltraLabel();
- this.cmb_NewButtress = new Infragistics.Win.UltraWinGrid.UltraCombo();
- this.ultraLabel2 = new Infragistics.Win.Misc.UltraLabel();
- this.cmb_OldButtress = new Infragistics.Win.UltraWinGrid.UltraCombo();
- this.ultraLabel1 = new Infragistics.Win.Misc.UltraLabel();
- this.panel2 = new System.Windows.Forms.Panel();
- this.dg_TurnoffButtress = new Infragistics.Win.UltraWinGrid.UltraGrid();
- ((System.ComponentModel.ISupportInitialize)(this.ultraToolbarsManager1)).BeginInit();
- this.panel1.SuspendLayout();
- ((System.ComponentModel.ISupportInitialize)(this.ds_TurnoffButtress)).BeginInit();
- ((System.ComponentModel.ISupportInitialize)(this.dataTable2)).BeginInit();
- ((System.ComponentModel.ISupportInitialize)(this.ultraGroupBox1)).BeginInit();
- this.ultraGroupBox1.SuspendLayout();
- ((System.ComponentModel.ISupportInitialize)(this.cmb_CCondition)).BeginInit();
- ((System.ComponentModel.ISupportInitialize)(this.cmb_KCondition)).BeginInit();
- ((System.ComponentModel.ISupportInitialize)(this.txt_CS)).BeginInit();
- ((System.ComponentModel.ISupportInitialize)(this.txt_KS)).BeginInit();
- ((System.ComponentModel.ISupportInitialize)(this.cmb_ProductLine)).BeginInit();
- ((System.ComponentModel.ISupportInitialize)(this.txt_RollNOEnd)).BeginInit();
- ((System.ComponentModel.ISupportInitialize)(this.txt_RollNOBegin)).BeginInit();
- ((System.ComponentModel.ISupportInitialize)(this.txt_RollTop)).BeginInit();
- ((System.ComponentModel.ISupportInitialize)(this.txt_CD)).BeginInit();
- ((System.ComponentModel.ISupportInitialize)(this.txt_KD)).BeginInit();
- ((System.ComponentModel.ISupportInitialize)(this.txt_HD)).BeginInit();
- ((System.ComponentModel.ISupportInitialize)(this.txt_Condole)).BeginInit();
- ((System.ComponentModel.ISupportInitialize)(this.cmb_SteelType)).BeginInit();
- ((System.ComponentModel.ISupportInitialize)(this.cmb_Area)).BeginInit();
- ((System.ComponentModel.ISupportInitialize)(this.cmb_Buttress)).BeginInit();
- ((System.ComponentModel.ISupportInitialize)(this.txt_PlanNO)).BeginInit();
- ((System.ComponentModel.ISupportInitialize)(this.txt_PactNO)).BeginInit();
- ((System.ComponentModel.ISupportInitialize)(this.ultraExpandableGroupBox1)).BeginInit();
- this.ultraExpandableGroupBox1.SuspendLayout();
- this.ultraExpandableGroupBoxPanel1.SuspendLayout();
- ((System.ComponentModel.ISupportInitialize)(this.ult_Remark)).BeginInit();
- ((System.ComponentModel.ISupportInitialize)(this.txt_XDH)).BeginInit();
- ((System.ComponentModel.ISupportInitialize)(this.txt_YDH)).BeginInit();
- ((System.ComponentModel.ISupportInitialize)(this.txt_HandleMan)).BeginInit();
- ((System.ComponentModel.ISupportInitialize)(this.Dte_AjustTime)).BeginInit();
- ((System.ComponentModel.ISupportInitialize)(this.cmb_BZ)).BeginInit();
- ((System.ComponentModel.ISupportInitialize)(this.cmb_BC)).BeginInit();
- ((System.ComponentModel.ISupportInitialize)(this.cmb_NewArea)).BeginInit();
- ((System.ComponentModel.ISupportInitialize)(this.txt_XDHDate)).BeginInit();
- ((System.ComponentModel.ISupportInitialize)(this.txt_YDHDate)).BeginInit();
- ((System.ComponentModel.ISupportInitialize)(this.txt_YY)).BeginInit();
- ((System.ComponentModel.ISupportInitialize)(this.txt_XH)).BeginInit();
- ((System.ComponentModel.ISupportInitialize)(this.cmb_NewButtress)).BeginInit();
- ((System.ComponentModel.ISupportInitialize)(this.cmb_OldButtress)).BeginInit();
- this.panel2.SuspendLayout();
- ((System.ComponentModel.ISupportInitialize)(this.dg_TurnoffButtress)).BeginInit();
- this.SuspendLayout();
- //
- // ultraToolbarsManager1
- //
- this.ultraToolbarsManager1.DesignerFlags = 1;
- this.ultraToolbarsManager1.DockWithinContainer = this.panel1;
- this.ultraToolbarsManager1.ShowFullMenusDelay = 500;
- this.ultraToolbarsManager1.Style = Infragistics.Win.UltraWinToolbars.ToolbarStyle.Office2000;
- ultraToolbar1.DockedColumn = 0;
- ultraToolbar1.DockedRow = 0;
- ultraToolbar1.Text = "工具栏";
- buttonTool1.InstanceProps.IsFirstInGroup = true;
- buttonTool2.InstanceProps.IsFirstInGroup = true;
- buttonTool3.InstanceProps.IsFirstInGroup = true;
- buttonTool4.InstanceProps.IsFirstInGroup = true;
- buttonTool5.InstanceProps.IsFirstInGroup = true;
- buttonTool6.InstanceProps.IsFirstInGroup = true;
- ultraToolbar1.Tools.AddRange(new Infragistics.Win.UltraWinToolbars.ToolBase[] {
- buttonTool1,
- buttonTool2,
- buttonTool3,
- buttonTool4,
- buttonTool5,
- buttonTool6});
- this.ultraToolbarsManager1.Toolbars.AddRange(new Infragistics.Win.UltraWinToolbars.UltraToolbar[] {
- ultraToolbar1});
- this.ultraToolbarsManager1.ToolbarSettings.AllowCustomize = Infragistics.Win.DefaultableBoolean.False;
- buttonTool7.SharedProps.Caption = "调整";
- buttonTool7.SharedProps.DisplayStyle = Infragistics.Win.UltraWinToolbars.ToolDisplayStyle.ImageAndText;
- buttonTool8.SharedProps.Caption = "查询";
- buttonTool8.SharedProps.DisplayStyle = Infragistics.Win.UltraWinToolbars.ToolDisplayStyle.ImageAndText;
- buttonTool9.SharedProps.Caption = "关闭";
- buttonTool9.SharedProps.DisplayStyle = Infragistics.Win.UltraWinToolbars.ToolDisplayStyle.ImageAndText;
- buttonTool10.SharedProps.Caption = "导出";
- buttonTool10.SharedProps.DisplayStyle = Infragistics.Win.UltraWinToolbars.ToolDisplayStyle.ImageAndText;
- buttonTool11.SharedProps.Caption = "打印";
- buttonTool11.SharedProps.DisplayStyle = Infragistics.Win.UltraWinToolbars.ToolDisplayStyle.ImageAndText;
- buttonTool12.SharedProps.Caption = "打印标签";
- buttonTool12.SharedProps.DisplayStyle = Infragistics.Win.UltraWinToolbars.ToolDisplayStyle.ImageAndText;
- this.ultraToolbarsManager1.Tools.AddRange(new Infragistics.Win.UltraWinToolbars.ToolBase[] {
- buttonTool7,
- buttonTool8,
- buttonTool9,
- buttonTool10,
- buttonTool11,
- buttonTool12});
- this.ultraToolbarsManager1.ToolClick += new Infragistics.Win.UltraWinToolbars.ToolClickEventHandler(this.ultraToolbarsManager1_ToolClick);
- //
- // panel1
- //
- this.panel1.Controls.Add(this._panel1_Toolbars_Dock_Area_Left);
- this.panel1.Controls.Add(this._panel1_Toolbars_Dock_Area_Right);
- this.panel1.Controls.Add(this._panel1_Toolbars_Dock_Area_Top);
- this.panel1.Controls.Add(this._panel1_Toolbars_Dock_Area_Bottom);
- this.panel1.Dock = System.Windows.Forms.DockStyle.Top;
- this.panel1.Location = new System.Drawing.Point(0, 0);
- this.panel1.Name = "panel1";
- this.panel1.Size = new System.Drawing.Size(1104, 32);
- this.panel1.TabIndex = 9;
- //
- // _panel1_Toolbars_Dock_Area_Left
- //
- this._panel1_Toolbars_Dock_Area_Left.AccessibleRole = System.Windows.Forms.AccessibleRole.Grouping;
- this._panel1_Toolbars_Dock_Area_Left.BackColor = System.Drawing.SystemColors.Control;
- this._panel1_Toolbars_Dock_Area_Left.DockedPosition = Infragistics.Win.UltraWinToolbars.DockedPosition.Left;
- this._panel1_Toolbars_Dock_Area_Left.ForeColor = System.Drawing.SystemColors.ControlText;
- this._panel1_Toolbars_Dock_Area_Left.Location = new System.Drawing.Point(0, 24);
- this._panel1_Toolbars_Dock_Area_Left.Name = "_panel1_Toolbars_Dock_Area_Left";
- this._panel1_Toolbars_Dock_Area_Left.Size = new System.Drawing.Size(0, 8);
- this._panel1_Toolbars_Dock_Area_Left.ToolbarsManager = this.ultraToolbarsManager1;
- //
- // _panel1_Toolbars_Dock_Area_Right
- //
- this._panel1_Toolbars_Dock_Area_Right.AccessibleRole = System.Windows.Forms.AccessibleRole.Grouping;
- this._panel1_Toolbars_Dock_Area_Right.BackColor = System.Drawing.SystemColors.Control;
- this._panel1_Toolbars_Dock_Area_Right.DockedPosition = Infragistics.Win.UltraWinToolbars.DockedPosition.Right;
- this._panel1_Toolbars_Dock_Area_Right.ForeColor = System.Drawing.SystemColors.ControlText;
- this._panel1_Toolbars_Dock_Area_Right.Location = new System.Drawing.Point(1104, 24);
- this._panel1_Toolbars_Dock_Area_Right.Name = "_panel1_Toolbars_Dock_Area_Right";
- this._panel1_Toolbars_Dock_Area_Right.Size = new System.Drawing.Size(0, 8);
- this._panel1_Toolbars_Dock_Area_Right.ToolbarsManager = this.ultraToolbarsManager1;
- //
- // _panel1_Toolbars_Dock_Area_Top
- //
- this._panel1_Toolbars_Dock_Area_Top.AccessibleRole = System.Windows.Forms.AccessibleRole.Grouping;
- this._panel1_Toolbars_Dock_Area_Top.BackColor = System.Drawing.SystemColors.Control;
- this._panel1_Toolbars_Dock_Area_Top.DockedPosition = Infragistics.Win.UltraWinToolbars.DockedPosition.Top;
- this._panel1_Toolbars_Dock_Area_Top.ForeColor = System.Drawing.SystemColors.ControlText;
- this._panel1_Toolbars_Dock_Area_Top.Location = new System.Drawing.Point(0, 0);
- this._panel1_Toolbars_Dock_Area_Top.Name = "_panel1_Toolbars_Dock_Area_Top";
- this._panel1_Toolbars_Dock_Area_Top.Size = new System.Drawing.Size(1104, 24);
- this._panel1_Toolbars_Dock_Area_Top.ToolbarsManager = this.ultraToolbarsManager1;
- //
- // _panel1_Toolbars_Dock_Area_Bottom
- //
- this._panel1_Toolbars_Dock_Area_Bottom.AccessibleRole = System.Windows.Forms.AccessibleRole.Grouping;
- this._panel1_Toolbars_Dock_Area_Bottom.BackColor = System.Drawing.SystemColors.Control;
- this._panel1_Toolbars_Dock_Area_Bottom.DockedPosition = Infragistics.Win.UltraWinToolbars.DockedPosition.Bottom;
- this._panel1_Toolbars_Dock_Area_Bottom.ForeColor = System.Drawing.SystemColors.ControlText;
- this._panel1_Toolbars_Dock_Area_Bottom.Location = new System.Drawing.Point(0, 32);
- this._panel1_Toolbars_Dock_Area_Bottom.Name = "_panel1_Toolbars_Dock_Area_Bottom";
- this._panel1_Toolbars_Dock_Area_Bottom.Size = new System.Drawing.Size(1104, 0);
- this._panel1_Toolbars_Dock_Area_Bottom.ToolbarsManager = this.ultraToolbarsManager1;
- //
- // ds_TurnoffButtress
- //
- this.ds_TurnoffButtress.DataSetName = "NewDataSet";
- this.ds_TurnoffButtress.Locale = new System.Globalization.CultureInfo("zh-CN");
- this.ds_TurnoffButtress.Tables.AddRange(new System.Data.DataTable[] {
- this.dataTable2});
- //
- // dataTable2
- //
- this.dataTable2.Columns.AddRange(new System.Data.DataColumn[] {
- this.dataColumn24,
- this.dataColumn25,
- this.dataColumn26,
- this.dataColumn23,
- this.dataColumn36,
- this.dataColumn9,
- this.dataColumn33,
- this.dataColumn37,
- this.dataColumn28,
- this.dataColumn8,
- this.dataColumn27,
- this.dataColumn29,
- this.dataColumn30,
- this.dataColumn31,
- this.dataColumn32,
- this.dataColumn34,
- this.dataColumn35,
- this.dataColumn42,
- this.dataColumn16,
- this.dataColumn19,
- this.dataColumn1,
- this.dataColumn2,
- this.dataColumn4,
- this.dataColumn3,
- this.dataColumn5,
- this.dataColumn6,
- this.dataColumn7,
- this.dataColumn10,
- this.dataColumn11,
- this.dataColumn12,
- this.dataColumn13,
- this.dataColumn14,
- this.dataColumn15,
- this.dataColumn17,
- this.dataColumn18,
- this.dataColumn20,
- this.dataColumn21,
- this.dataColumn22,
- this.dataColumn38,
- this.dataColumn39,
- this.dataColumn40,
- this.dataColumn41,
- this.dataColumn43,
- this.dataColumn44,
- this.dataColumn45});
- this.dataTable2.TableName = "KCJ_TURNOFFBUTTRESSLIST";
- //
- // dataColumn24
- //
- this.dataColumn24.ColumnName = "PRODUCTLINE";
- //
- // dataColumn25
- //
- this.dataColumn25.ColumnName = "ROLLNUMBER";
- //
- // dataColumn26
- //
- this.dataColumn26.ColumnName = "MOTHERBOARDNUMBER";
- //
- // dataColumn23
- //
- this.dataColumn23.ColumnName = "BILLETID";
- //
- // dataColumn36
- //
- this.dataColumn36.ColumnName = "DETERMINANTCARDNUMBER";
- //
- // dataColumn9
- //
- this.dataColumn9.ColumnName = "SPET";
- //
- // dataColumn33
- //
- this.dataColumn33.ColumnName = "THEORYWEIGHT";
- this.dataColumn33.DataType = typeof(decimal);
- //
- // dataColumn37
- //
- this.dataColumn37.ColumnName = "DETERMINANTRESULT";
- //
- // dataColumn28
- //
- this.dataColumn28.ColumnName = "PLANNO";
- //
- // dataColumn8
- //
- this.dataColumn8.ColumnName = "PACTNO";
- //
- // dataColumn27
- //
- this.dataColumn27.ColumnName = "STOVENO";
- //
- // dataColumn29
- //
- this.dataColumn29.ColumnName = "ORDERNO";
- //
- // dataColumn30
- //
- this.dataColumn30.ColumnName = "PLY";
- this.dataColumn30.DataType = typeof(decimal);
- //
- // dataColumn31
- //
- this.dataColumn31.ColumnName = "WIDTH";
- this.dataColumn31.DataType = typeof(decimal);
- //
- // dataColumn32
- //
- this.dataColumn32.ColumnName = "LENGTH";
- this.dataColumn32.DataType = typeof(decimal);
- //
- // dataColumn34
- //
- this.dataColumn34.ColumnName = "FACEQUALITY";
- //
- // dataColumn35
- //
- this.dataColumn35.ColumnName = "BUGREASON";
- //
- // dataColumn42
- //
- this.dataColumn42.ColumnName = "CLIPTYPEPROCESS";
- //
- // dataColumn16
- //
- this.dataColumn16.ColumnName = "SOURCEID";
- //
- // dataColumn19
- //
- this.dataColumn19.ColumnName = "INTIME";
- //
- // dataColumn1
- //
- this.dataColumn1.ColumnName = "BUTTRESS";
- //
- // dataColumn2
- //
- this.dataColumn2.ColumnName = "CONDOLENUMBER";
- //
- // dataColumn4
- //
- this.dataColumn4.ColumnName = "CONDOLELAYER";
- this.dataColumn4.DataType = typeof(decimal);
- //
- // dataColumn3
- //
- this.dataColumn3.ColumnName = "BUTTRESSLAYER";
- this.dataColumn3.DataType = typeof(decimal);
- //
- // dataColumn5
- //
- this.dataColumn5.ColumnName = "LOGICALLAYER";
- //
- // dataColumn6
- //
- this.dataColumn6.ColumnName = "AREA";
- //
- // dataColumn7
- //
- this.dataColumn7.ColumnName = "REMARK";
- //
- // dataColumn10
- //
- this.dataColumn10.ColumnName = "HANDREMARK";
- //
- // dataColumn11
- //
- this.dataColumn11.ColumnName = "CREATTIME";
- //
- // dataColumn12
- //
- this.dataColumn12.ColumnName = "OSPET";
- //
- // dataColumn13
- //
- this.dataColumn13.ColumnName = "INSTEEL";
- //
- // dataColumn14
- //
- this.dataColumn14.ColumnName = "SENDBEGINDATE";
- //
- // dataColumn15
- //
- this.dataColumn15.ColumnName = "YPLANNO";
- //
- // dataColumn17
- //
- this.dataColumn17.ColumnName = "YORDERNO";
- //
- // dataColumn18
- //
- this.dataColumn18.ColumnName = "ORDERBUYER";
- //
- // dataColumn20
- //
- this.dataColumn20.ColumnName = "PRODUCT_NAME";
- //
- // dataColumn21
- //
- this.dataColumn21.ColumnName = "MEMO";
- //
- // dataColumn22
- //
- this.dataColumn22.ColumnName = "DETECTMARBOOKIN";
- //
- // dataColumn38
- //
- this.dataColumn38.ColumnName = "ZHPDBH";
- //
- // dataColumn39
- //
- this.dataColumn39.ColumnName = "BUYERNAME";
- //
- // dataColumn40
- //
- this.dataColumn40.ColumnName = "STATIONNAME";
- //
- // dataColumn41
- //
- this.dataColumn41.ColumnName = "OSTEEL";
- //
- // dataColumn43
- //
- this.dataColumn43.ColumnName = "OPLY";
- this.dataColumn43.DataType = typeof(decimal);
- //
- // dataColumn44
- //
- this.dataColumn44.ColumnName = "OWIDTH";
- this.dataColumn44.DataType = typeof(decimal);
- //
- // dataColumn45
- //
- this.dataColumn45.ColumnName = "OLENGTH";
- this.dataColumn45.DataType = typeof(decimal);
- //
- // ultraGroupBox1
- //
- this.ultraGroupBox1.Controls.Add(this.chk_SendType);
- this.ultraGroupBox1.Controls.Add(this.ultraLabel15);
- this.ultraGroupBox1.Controls.Add(this.cmb_CCondition);
- this.ultraGroupBox1.Controls.Add(this.cmb_KCondition);
- this.ultraGroupBox1.Controls.Add(this.txt_CS);
- this.ultraGroupBox1.Controls.Add(this.ultraLabel13);
- this.ultraGroupBox1.Controls.Add(this.ultraLabel11);
- this.ultraGroupBox1.Controls.Add(this.txt_KS);
- this.ultraGroupBox1.Controls.Add(this.chk_Size);
- this.ultraGroupBox1.Controls.Add(this.btn_ClearFilter);
- this.ultraGroupBox1.Controls.Add(this.chk_AllowFilter);
- this.ultraGroupBox1.Controls.Add(this.cmb_ProductLine);
- this.ultraGroupBox1.Controls.Add(this.chk_LineAndSteel);
- this.ultraGroupBox1.Controls.Add(this.ultraLabel10);
- this.ultraGroupBox1.Controls.Add(this.txt_RollNOEnd);
- this.ultraGroupBox1.Controls.Add(this.txt_RollNOBegin);
- this.ultraGroupBox1.Controls.Add(this.txt_RollTop);
- this.ultraGroupBox1.Controls.Add(this.chk_RollNum);
- this.ultraGroupBox1.Controls.Add(this.txt_CD);
- this.ultraGroupBox1.Controls.Add(this.txt_KD);
- this.ultraGroupBox1.Controls.Add(this.txt_HD);
- this.ultraGroupBox1.Controls.Add(this.chk_Spet);
- this.ultraGroupBox1.Controls.Add(this.txt_Condole);
- this.ultraGroupBox1.Controls.Add(this.chk_Condole);
- this.ultraGroupBox1.Controls.Add(this.cmb_SteelType);
- this.ultraGroupBox1.Controls.Add(this.cmb_Area);
- this.ultraGroupBox1.Controls.Add(this.chk_Area);
- this.ultraGroupBox1.Controls.Add(this.cmb_Buttress);
- this.ultraGroupBox1.Controls.Add(this.Chk_Buttress);
- this.ultraGroupBox1.Controls.Add(this.txt_PlanNO);
- this.ultraGroupBox1.Controls.Add(this.Chk_PlanNO);
- this.ultraGroupBox1.Controls.Add(this.txt_PactNO);
- this.ultraGroupBox1.Controls.Add(this.Chk_PactNO);
- this.ultraGroupBox1.Dock = System.Windows.Forms.DockStyle.Top;
- this.ultraGroupBox1.Location = new System.Drawing.Point(0, 32);
- this.ultraGroupBox1.Name = "ultraGroupBox1";
- this.ultraGroupBox1.Size = new System.Drawing.Size(1104, 80);
- this.ultraGroupBox1.SupportThemes = false;
- this.ultraGroupBox1.TabIndex = 12;
- //
- // chk_SendType
- //
- this.chk_SendType.Location = new System.Drawing.Point(954, 53);
- this.chk_SendType.Name = "chk_SendType";
- this.chk_SendType.Size = new System.Drawing.Size(72, 20);
- this.chk_SendType.TabIndex = 192;
- this.chk_SendType.TabStop = false;
- this.chk_SendType.Text = "已发运";
- //
- // ultraLabel15
- //
- appearance1.BackColor = System.Drawing.Color.Blue;
- this.ultraLabel15.Appearance = appearance1;
- this.ultraLabel15.Location = new System.Drawing.Point(832, 56);
- this.ultraLabel15.Name = "ultraLabel15";
- this.ultraLabel15.Size = new System.Drawing.Size(103, 16);
- this.ultraLabel15.TabIndex = 191;
- this.ultraLabel15.Text = "注意距交货期11天";
- //
- // cmb_CCondition
- //
- this.cmb_CCondition.AutoSize = true;
- this.cmb_CCondition.ButtonStyle = Infragistics.Win.UIElementButtonStyle.VisualStudio2005Button;
- this.cmb_CCondition.Enabled = false;
- this.cmb_CCondition.FlatMode = true;
- valueListItem1.DataValue = ">";
- valueListItem1.DisplayText = ">";
- valueListItem2.DataValue = "<";
- valueListItem2.DisplayText = "<";
- valueListItem3.DataValue = ">=";
- valueListItem3.DisplayText = ">=";
- valueListItem4.DataValue = "<=";
- valueListItem4.DisplayText = "<=";
- valueListItem5.DataValue = "=";
- valueListItem5.DisplayText = "=";
- this.cmb_CCondition.Items.Add(valueListItem1);
- this.cmb_CCondition.Items.Add(valueListItem2);
- this.cmb_CCondition.Items.Add(valueListItem3);
- this.cmb_CCondition.Items.Add(valueListItem4);
- this.cmb_CCondition.Items.Add(valueListItem5);
- this.cmb_CCondition.Location = new System.Drawing.Point(592, 55);
- this.cmb_CCondition.Name = "cmb_CCondition";
- this.cmb_CCondition.Size = new System.Drawing.Size(48, 19);
- this.cmb_CCondition.TabIndex = 188;
- //
- // cmb_KCondition
- //
- this.cmb_KCondition.AutoSize = true;
- this.cmb_KCondition.ButtonStyle = Infragistics.Win.UIElementButtonStyle.VisualStudio2005Button;
- this.cmb_KCondition.Enabled = false;
- this.cmb_KCondition.FlatMode = true;
- valueListItem6.DataValue = ">";
- valueListItem6.DisplayText = ">";
- valueListItem7.DataValue = "<";
- valueListItem7.DisplayText = "<";
- valueListItem8.DataValue = ">=";
- valueListItem8.DisplayText = ">=";
- valueListItem9.DataValue = "<=";
- valueListItem9.DisplayText = "<=";
- valueListItem10.DataValue = "=";
- valueListItem10.DisplayText = "=";
- this.cmb_KCondition.Items.Add(valueListItem6);
- this.cmb_KCondition.Items.Add(valueListItem7);
- this.cmb_KCondition.Items.Add(valueListItem8);
- this.cmb_KCondition.Items.Add(valueListItem9);
- this.cmb_KCondition.Items.Add(valueListItem10);
- this.cmb_KCondition.Location = new System.Drawing.Point(592, 32);
- this.cmb_KCondition.Name = "cmb_KCondition";
- this.cmb_KCondition.Size = new System.Drawing.Size(48, 19);
- this.cmb_KCondition.TabIndex = 187;
- //
- // txt_CS
- //
- appearance2.BackColor = System.Drawing.Color.LightCyan;
- this.txt_CS.Appearance = appearance2;
- this.txt_CS.Enabled = false;
- this.txt_CS.FlatMode = true;
- this.txt_CS.Location = new System.Drawing.Point(648, 55);
- this.txt_CS.MaskInput = "nnnnn";
- this.txt_CS.MaxValue = 99999;
- this.txt_CS.MinValue = -1;
- this.txt_CS.Name = "txt_CS";
- this.txt_CS.PromptChar = ' ';
- this.txt_CS.Size = new System.Drawing.Size(96, 19);
- this.txt_CS.TabIndex = 186;
- //
- // ultraLabel13
- //
- appearance3.BackColor = System.Drawing.Color.Magenta;
- this.ultraLabel13.Appearance = appearance3;
- this.ultraLabel13.Location = new System.Drawing.Point(568, 56);
- this.ultraLabel13.Name = "ultraLabel13";
- this.ultraLabel13.Size = new System.Drawing.Size(17, 16);
- this.ultraLabel13.TabIndex = 182;
- this.ultraLabel13.Text = "长";
- //
- // ultraLabel11
- //
- appearance4.BackColor = System.Drawing.Color.Magenta;
- this.ultraLabel11.Appearance = appearance4;
- this.ultraLabel11.Location = new System.Drawing.Point(568, 33);
- this.ultraLabel11.Name = "ultraLabel11";
- this.ultraLabel11.Size = new System.Drawing.Size(17, 16);
- this.ultraLabel11.TabIndex = 179;
- this.ultraLabel11.Text = "宽";
- //
- // txt_KS
- //
- appearance5.BackColor = System.Drawing.Color.LightCyan;
- this.txt_KS.Appearance = appearance5;
- this.txt_KS.Enabled = false;
- this.txt_KS.FlatMode = true;
- this.txt_KS.Location = new System.Drawing.Point(648, 32);
- this.txt_KS.MaskInput = "nnnn";
- this.txt_KS.MaxValue = 9999;
- this.txt_KS.MinValue = -1;
- this.txt_KS.Name = "txt_KS";
- this.txt_KS.PromptChar = ' ';
- this.txt_KS.Size = new System.Drawing.Size(96, 19);
- this.txt_KS.TabIndex = 178;
- //
- // chk_Size
- //
- this.chk_Size.FlatMode = true;
- this.chk_Size.Location = new System.Drawing.Point(488, 33);
- this.chk_Size.Name = "chk_Size";
- this.chk_Size.Size = new System.Drawing.Size(72, 16);
- this.chk_Size.TabIndex = 177;
- this.chk_Size.Text = "规格范围";
- this.chk_Size.CheckedChanged += new System.EventHandler(this.chk_Size_CheckedChanged);
- //
- // btn_ClearFilter
- //
- this.btn_ClearFilter.Location = new System.Drawing.Point(752, 47);
- this.btn_ClearFilter.Name = "btn_ClearFilter";
- this.btn_ClearFilter.Size = new System.Drawing.Size(64, 26);
- this.btn_ClearFilter.TabIndex = 176;
- this.btn_ClearFilter.Text = "清除过滤";
- this.btn_ClearFilter.Click += new System.EventHandler(this.btn_ClearFilter_Click);
- //
- // chk_AllowFilter
- //
- this.chk_AllowFilter.Location = new System.Drawing.Point(752, 8);
- this.chk_AllowFilter.Name = "chk_AllowFilter";
- this.chk_AllowFilter.Size = new System.Drawing.Size(72, 20);
- this.chk_AllowFilter.TabIndex = 175;
- this.chk_AllowFilter.TabStop = false;
- this.chk_AllowFilter.Text = "允许过滤";
- this.chk_AllowFilter.CheckedChanged += new System.EventHandler(this.chk_AllowFilter_CheckedChanged);
- //
- // cmb_ProductLine
- //
- appearance6.BackColor = System.Drawing.Color.LightCyan;
- this.cmb_ProductLine.Appearance = appearance6;
- this.cmb_ProductLine.AutoSize = true;
- this.cmb_ProductLine.Enabled = false;
- valueListItem11.DataValue = "4001HB1";
- valueListItem11.DisplayText = "厚板线";
- valueListItem12.DataValue = "4001ZB1";
- valueListItem12.DisplayText = "中板线";
- this.cmb_ProductLine.Items.Add(valueListItem11);
- this.cmb_ProductLine.Items.Add(valueListItem12);
- this.cmb_ProductLine.Location = new System.Drawing.Point(264, 32);
- this.cmb_ProductLine.Name = "cmb_ProductLine";
- this.cmb_ProductLine.Size = new System.Drawing.Size(112, 21);
- this.cmb_ProductLine.TabIndex = 174;
- this.cmb_ProductLine.TabStop = false;
- this.cmb_ProductLine.ValueChanged += new System.EventHandler(this.cmb_ProductLine_ValueChanged);
- //
- // chk_LineAndSteel
- //
- this.chk_LineAndSteel.FlatMode = true;
- this.chk_LineAndSteel.Location = new System.Drawing.Point(184, 35);
- this.chk_LineAndSteel.Name = "chk_LineAndSteel";
- this.chk_LineAndSteel.Size = new System.Drawing.Size(80, 16);
- this.chk_LineAndSteel.TabIndex = 173;
- this.chk_LineAndSteel.Text = "产线/牌号";
- this.chk_LineAndSteel.CheckedChanged += new System.EventHandler(this.chk_LineAndSteel_CheckedChanged);
- //
- // ultraLabel10
- //
- this.ultraLabel10.Location = new System.Drawing.Point(656, 12);
- this.ultraLabel10.Name = "ultraLabel10";
- this.ultraLabel10.Size = new System.Drawing.Size(17, 16);
- this.ultraLabel10.TabIndex = 172;
- this.ultraLabel10.Text = "至";
- //
- // txt_RollNOEnd
- //
- appearance7.BackColor = System.Drawing.Color.LightCyan;
- this.txt_RollNOEnd.Appearance = appearance7;
- this.txt_RollNOEnd.AutoSize = true;
- this.txt_RollNOEnd.Enabled = false;
- this.txt_RollNOEnd.FlatMode = true;
- this.txt_RollNOEnd.Location = new System.Drawing.Point(674, 8);
- this.txt_RollNOEnd.MaxLength = 5;
- this.txt_RollNOEnd.Name = "txt_RollNOEnd";
- this.txt_RollNOEnd.Size = new System.Drawing.Size(72, 19);
- this.txt_RollNOEnd.TabIndex = 171;
- //
- // txt_RollNOBegin
- //
- appearance8.BackColor = System.Drawing.Color.LightCyan;
- this.txt_RollNOBegin.Appearance = appearance8;
- this.txt_RollNOBegin.AutoSize = true;
- this.txt_RollNOBegin.Enabled = false;
- this.txt_RollNOBegin.FlatMode = true;
- this.txt_RollNOBegin.Location = new System.Drawing.Point(584, 8);
- this.txt_RollNOBegin.MaxLength = 5;
- this.txt_RollNOBegin.Name = "txt_RollNOBegin";
- this.txt_RollNOBegin.Size = new System.Drawing.Size(72, 19);
- this.txt_RollNOBegin.TabIndex = 170;
- //
- // txt_RollTop
- //
- appearance9.BackColor = System.Drawing.Color.LightCyan;
- this.txt_RollTop.Appearance = appearance9;
- this.txt_RollTop.AutoSize = true;
- this.txt_RollTop.Enabled = false;
- this.txt_RollTop.FlatMode = true;
- this.txt_RollTop.Location = new System.Drawing.Point(552, 8);
- this.txt_RollTop.Name = "txt_RollTop";
- this.txt_RollTop.Size = new System.Drawing.Size(32, 19);
- this.txt_RollTop.TabIndex = 169;
- //
- // chk_RollNum
- //
- this.chk_RollNum.FlatMode = true;
- this.chk_RollNum.Location = new System.Drawing.Point(488, 11);
- this.chk_RollNum.Name = "chk_RollNum";
- this.chk_RollNum.Size = new System.Drawing.Size(60, 16);
- this.chk_RollNum.TabIndex = 168;
- this.chk_RollNum.Text = "轧批号";
- this.chk_RollNum.CheckedChanged += new System.EventHandler(this.chk_RollNum_CheckedChanged);
- //
- // txt_CD
- //
- appearance10.BackColor = System.Drawing.Color.LightCyan;
- this.txt_CD.Appearance = appearance10;
- this.txt_CD.Enabled = false;
- this.txt_CD.FlatMode = true;
- this.txt_CD.Location = new System.Drawing.Point(384, 56);
- this.txt_CD.MaskInput = "nnnnn";
- this.txt_CD.MaxValue = 99999;
- this.txt_CD.MinValue = -1;
- this.txt_CD.Name = "txt_CD";
- this.txt_CD.PromptChar = ' ';
- this.txt_CD.Size = new System.Drawing.Size(96, 19);
- this.txt_CD.TabIndex = 167;
- //
- // txt_KD
- //
- appearance11.BackColor = System.Drawing.Color.LightCyan;
- this.txt_KD.Appearance = appearance11;
- this.txt_KD.Enabled = false;
- this.txt_KD.FlatMode = true;
- this.txt_KD.Location = new System.Drawing.Point(312, 56);
- this.txt_KD.MaskInput = "nnnn";
- this.txt_KD.MaxValue = 9999;
- this.txt_KD.MinValue = -1;
- this.txt_KD.Name = "txt_KD";
- this.txt_KD.PromptChar = ' ';
- this.txt_KD.Size = new System.Drawing.Size(72, 19);
- this.txt_KD.TabIndex = 166;
- //
- // txt_HD
- //
- appearance12.BackColor = System.Drawing.Color.LightCyan;
- this.txt_HD.Appearance = appearance12;
- this.txt_HD.Enabled = false;
- this.txt_HD.FlatMode = true;
- this.txt_HD.Location = new System.Drawing.Point(248, 56);
- this.txt_HD.MaskInput = "nnn.nnn";
- this.txt_HD.MaxValue = 999.999;
- this.txt_HD.MinValue = -1;
- this.txt_HD.Name = "txt_HD";
- this.txt_HD.NumericType = Infragistics.Win.UltraWinEditors.NumericType.Double;
- this.txt_HD.PromptChar = ' ';
- this.txt_HD.Size = new System.Drawing.Size(64, 19);
- this.txt_HD.TabIndex = 165;
- //
- // chk_Spet
- //
- this.chk_Spet.FlatMode = true;
- this.chk_Spet.Location = new System.Drawing.Point(184, 58);
- this.chk_Spet.Name = "chk_Spet";
- this.chk_Spet.Size = new System.Drawing.Size(60, 16);
- this.chk_Spet.TabIndex = 164;
- this.chk_Spet.Text = "厚宽长";
- this.chk_Spet.CheckedChanged += new System.EventHandler(this.chk_Spet_CheckedChanged);
- //
- // txt_Condole
- //
- appearance13.BackColor = System.Drawing.Color.LightCyan;
- this.txt_Condole.Appearance = appearance13;
- this.txt_Condole.AutoSize = true;
- this.txt_Condole.Enabled = false;
- this.txt_Condole.FlatMode = true;
- this.txt_Condole.Location = new System.Drawing.Point(80, 56);
- this.txt_Condole.Name = "txt_Condole";
- this.txt_Condole.Size = new System.Drawing.Size(96, 19);
- this.txt_Condole.TabIndex = 163;
- this.txt_Condole.Tag = "";
- //
- // chk_Condole
- //
- this.chk_Condole.FlatMode = true;
- this.chk_Condole.Location = new System.Drawing.Point(16, 55);
- this.chk_Condole.Name = "chk_Condole";
- this.chk_Condole.Size = new System.Drawing.Size(50, 16);
- this.chk_Condole.TabIndex = 162;
- this.chk_Condole.Text = "吊号";
- this.chk_Condole.CheckedChanged += new System.EventHandler(this.chk_Condole_CheckedChanged);
- //
- // cmb_SteelType
- //
- appearance14.BackColor = System.Drawing.Color.LightCyan;
- this.cmb_SteelType.Appearance = appearance14;
- this.cmb_SteelType.CharacterCasing = System.Windows.Forms.CharacterCasing.Normal;
- this.cmb_SteelType.DisplayMember = "";
- this.cmb_SteelType.Enabled = false;
- this.cmb_SteelType.FlatMode = true;
- this.cmb_SteelType.Location = new System.Drawing.Point(384, 32);
- this.cmb_SteelType.Name = "cmb_SteelType";
- this.cmb_SteelType.Size = new System.Drawing.Size(96, 19);
- this.cmb_SteelType.TabIndex = 161;
- this.cmb_SteelType.Tag = "";
- this.cmb_SteelType.ValueMember = "";
- //
- // cmb_Area
- //
- appearance15.BackColor = System.Drawing.Color.LightCyan;
- this.cmb_Area.Appearance = appearance15;
- this.cmb_Area.CharacterCasing = System.Windows.Forms.CharacterCasing.Normal;
- this.cmb_Area.DisplayMember = "";
- this.cmb_Area.DropDownStyle = Infragistics.Win.UltraWinGrid.UltraComboStyle.DropDownList;
- this.cmb_Area.Enabled = false;
- this.cmb_Area.FlatMode = true;
- this.cmb_Area.Location = new System.Drawing.Point(232, 10);
- this.cmb_Area.Name = "cmb_Area";
- this.cmb_Area.Size = new System.Drawing.Size(96, 19);
- this.cmb_Area.TabIndex = 160;
- this.cmb_Area.Tag = "";
- this.cmb_Area.ValueMember = "";
- //
- // chk_Area
- //
- this.chk_Area.FlatMode = true;
- this.chk_Area.Location = new System.Drawing.Point(184, 11);
- this.chk_Area.Name = "chk_Area";
- this.chk_Area.Size = new System.Drawing.Size(50, 16);
- this.chk_Area.TabIndex = 159;
- this.chk_Area.Text = "区域";
- this.chk_Area.CheckedChanged += new System.EventHandler(this.chk_Area_CheckedChanged);
- //
- // cmb_Buttress
- //
- appearance16.BackColor = System.Drawing.Color.LightCyan;
- this.cmb_Buttress.Appearance = appearance16;
- this.cmb_Buttress.CharacterCasing = System.Windows.Forms.CharacterCasing.Normal;
- this.cmb_Buttress.DisplayMember = "";
- this.cmb_Buttress.DropDownStyle = Infragistics.Win.UltraWinGrid.UltraComboStyle.DropDownList;
- this.cmb_Buttress.Enabled = false;
- this.cmb_Buttress.FlatMode = true;
- this.cmb_Buttress.Location = new System.Drawing.Point(384, 10);
- this.cmb_Buttress.Name = "cmb_Buttress";
- this.cmb_Buttress.Size = new System.Drawing.Size(96, 19);
- this.cmb_Buttress.TabIndex = 158;
- this.cmb_Buttress.Tag = "";
- this.cmb_Buttress.ValueMember = "";
- //
- // Chk_Buttress
- //
- this.Chk_Buttress.FlatMode = true;
- this.Chk_Buttress.Location = new System.Drawing.Point(336, 11);
- this.Chk_Buttress.Name = "Chk_Buttress";
- this.Chk_Buttress.Size = new System.Drawing.Size(50, 16);
- this.Chk_Buttress.TabIndex = 157;
- this.Chk_Buttress.Text = "垛位";
- this.Chk_Buttress.CheckedChanged += new System.EventHandler(this.Chk_Buttress_CheckedChanged);
- //
- // txt_PlanNO
- //
- appearance17.BackColor = System.Drawing.Color.LightCyan;
- this.txt_PlanNO.Appearance = appearance17;
- this.txt_PlanNO.AutoSize = true;
- this.txt_PlanNO.Enabled = false;
- this.txt_PlanNO.FlatMode = true;
- this.txt_PlanNO.Location = new System.Drawing.Point(80, 32);
- this.txt_PlanNO.Name = "txt_PlanNO";
- this.txt_PlanNO.Size = new System.Drawing.Size(96, 19);
- this.txt_PlanNO.TabIndex = 156;
- this.txt_PlanNO.Tag = "";
- //
- // Chk_PlanNO
- //
- this.Chk_PlanNO.FlatMode = true;
- this.Chk_PlanNO.Location = new System.Drawing.Point(16, 33);
- this.Chk_PlanNO.Name = "Chk_PlanNO";
- this.Chk_PlanNO.Size = new System.Drawing.Size(60, 16);
- this.Chk_PlanNO.TabIndex = 155;
- this.Chk_PlanNO.Text = "计划号";
- this.Chk_PlanNO.CheckedChanged += new System.EventHandler(this.Chk_PlanNO_CheckedChanged);
- //
- // txt_PactNO
- //
- appearance18.BackColor = System.Drawing.Color.LightCyan;
- this.txt_PactNO.Appearance = appearance18;
- this.txt_PactNO.AutoSize = true;
- this.txt_PactNO.Enabled = false;
- this.txt_PactNO.FlatMode = true;
- this.txt_PactNO.Location = new System.Drawing.Point(80, 8);
- this.txt_PactNO.Name = "txt_PactNO";
- this.txt_PactNO.Size = new System.Drawing.Size(96, 19);
- this.txt_PactNO.TabIndex = 154;
- this.txt_PactNO.Tag = "";
- //
- // Chk_PactNO
- //
- this.Chk_PactNO.FlatMode = true;
- this.Chk_PactNO.Location = new System.Drawing.Point(16, 11);
- this.Chk_PactNO.Name = "Chk_PactNO";
- this.Chk_PactNO.Size = new System.Drawing.Size(60, 16);
- this.Chk_PactNO.TabIndex = 153;
- this.Chk_PactNO.Text = "合同号";
- this.Chk_PactNO.CheckedChanged += new System.EventHandler(this.Chk_PactNO_CheckedChanged);
- //
- // ultraExpandableGroupBox1
- //
- this.ultraExpandableGroupBox1.Controls.Add(this.ultraExpandableGroupBoxPanel1);
- this.ultraExpandableGroupBox1.Dock = System.Windows.Forms.DockStyle.Bottom;
- this.ultraExpandableGroupBox1.ExpandedSize = new System.Drawing.Size(888, 185);
- this.ultraExpandableGroupBox1.Location = new System.Drawing.Point(0, 374);
- this.ultraExpandableGroupBox1.Name = "ultraExpandableGroupBox1";
- this.ultraExpandableGroupBox1.Size = new System.Drawing.Size(1104, 128);
- this.ultraExpandableGroupBox1.SupportThemes = false;
- this.ultraExpandableGroupBox1.TabIndex = 13;
- this.ultraExpandableGroupBox1.Text = "垛位/吊号管理";
- this.ultraExpandableGroupBox1.ViewStyle = Infragistics.Win.Misc.GroupBoxViewStyle.VisualStudio2005;
- //
- // ultraExpandableGroupBoxPanel1
- //
- this.ultraExpandableGroupBoxPanel1.Controls.Add(this.ult_Remark);
- this.ultraExpandableGroupBoxPanel1.Controls.Add(this.txt_XDH);
- this.ultraExpandableGroupBoxPanel1.Controls.Add(this.txt_YDH);
- this.ultraExpandableGroupBoxPanel1.Controls.Add(this.Chk_Replace);
- this.ultraExpandableGroupBoxPanel1.Controls.Add(this.Chk_Add);
- this.ultraExpandableGroupBoxPanel1.Controls.Add(this.txt_HandleMan);
- this.ultraExpandableGroupBoxPanel1.Controls.Add(this.ultraLabel9);
- this.ultraExpandableGroupBoxPanel1.Controls.Add(this.Dte_AjustTime);
- this.ultraExpandableGroupBoxPanel1.Controls.Add(this.ultraLabel8);
- this.ultraExpandableGroupBoxPanel1.Controls.Add(this.cmb_BZ);
- this.ultraExpandableGroupBoxPanel1.Controls.Add(this.ultraLabel6);
- this.ultraExpandableGroupBoxPanel1.Controls.Add(this.cmb_BC);
- this.ultraExpandableGroupBoxPanel1.Controls.Add(this.ultraLabel7);
- this.ultraExpandableGroupBoxPanel1.Controls.Add(this.cmb_NewArea);
- this.ultraExpandableGroupBoxPanel1.Controls.Add(this.ultraLabel5);
- this.ultraExpandableGroupBoxPanel1.Controls.Add(this.txt_XDHDate);
- this.ultraExpandableGroupBoxPanel1.Controls.Add(this.txt_YDHDate);
- this.ultraExpandableGroupBoxPanel1.Controls.Add(this.chk_XH);
- this.ultraExpandableGroupBoxPanel1.Controls.Add(this.txt_YY);
- this.ultraExpandableGroupBoxPanel1.Controls.Add(this.lab_Weight);
- this.ultraExpandableGroupBoxPanel1.Controls.Add(this.txt_XH);
- this.ultraExpandableGroupBoxPanel1.Controls.Add(this.ultraLabel4);
- this.ultraExpandableGroupBoxPanel1.Controls.Add(this.ultraLabel3);
- this.ultraExpandableGroupBoxPanel1.Controls.Add(this.cmb_NewButtress);
- this.ultraExpandableGroupBoxPanel1.Controls.Add(this.ultraLabel2);
- this.ultraExpandableGroupBoxPanel1.Controls.Add(this.cmb_OldButtress);
- this.ultraExpandableGroupBoxPanel1.Controls.Add(this.ultraLabel1);
- this.ultraExpandableGroupBoxPanel1.Dock = System.Windows.Forms.DockStyle.Fill;
- this.ultraExpandableGroupBoxPanel1.Location = new System.Drawing.Point(2, 20);
- this.ultraExpandableGroupBoxPanel1.Name = "ultraExpandableGroupBoxPanel1";
- this.ultraExpandableGroupBoxPanel1.Size = new System.Drawing.Size(1100, 106);
- this.ultraExpandableGroupBoxPanel1.TabIndex = 0;
- //
- // ult_Remark
- //
- appearance19.BackColor = System.Drawing.Color.LightCyan;
- this.ult_Remark.Appearance = appearance19;
- this.ult_Remark.AutoSize = true;
- valueListItem13.DataValue = "0";
- valueListItem13.DisplayText = "省重点";
- this.ult_Remark.Items.Add(valueListItem13);
- this.ult_Remark.Location = new System.Drawing.Point(216, 82);
- this.ult_Remark.Name = "ult_Remark";
- this.ult_Remark.Size = new System.Drawing.Size(250, 21);
- this.ult_Remark.TabIndex = 393;
- this.ult_Remark.Visible = false;
- //
- // txt_XDH
- //
- appearance20.BackColor = System.Drawing.Color.LightCyan;
- this.txt_XDH.Appearance = appearance20;
- this.txt_XDH.AutoSize = true;
- this.txt_XDH.FlatMode = true;
- this.txt_XDH.Location = new System.Drawing.Point(461, 33);
- this.txt_XDH.Name = "txt_XDH";
- this.txt_XDH.Size = new System.Drawing.Size(75, 19);
- this.txt_XDH.TabIndex = 374;
- this.txt_XDH.Tag = "";
- this.txt_XDH.Enter += new System.EventHandler(this.txt_XDH_Enter);
- this.txt_XDH.KeyDown += new System.Windows.Forms.KeyEventHandler(this.txt_XDH_KeyDown);
- //
- // txt_YDH
- //
- appearance21.BackColor = System.Drawing.Color.LightCyan;
- this.txt_YDH.Appearance = appearance21;
- this.txt_YDH.AutoSize = true;
- this.txt_YDH.FlatMode = true;
- this.txt_YDH.Location = new System.Drawing.Point(264, 9);
- this.txt_YDH.Name = "txt_YDH";
- this.txt_YDH.Size = new System.Drawing.Size(64, 19);
- this.txt_YDH.TabIndex = 369;
- this.txt_YDH.Tag = "";
- this.txt_YDH.Enter += new System.EventHandler(this.txt_XDH_Enter);
- this.txt_YDH.KeyDown += new System.Windows.Forms.KeyEventHandler(this.txt_XDH_KeyDown);
- //
- // Chk_Replace
- //
- this.Chk_Replace.BackColor = System.Drawing.Color.Transparent;
- this.Chk_Replace.FlatMode = true;
- this.Chk_Replace.Location = new System.Drawing.Point(528, 82);
- this.Chk_Replace.Name = "Chk_Replace";
- this.Chk_Replace.Size = new System.Drawing.Size(48, 16);
- this.Chk_Replace.TabIndex = 381;
- this.Chk_Replace.Text = "替换";
- //
- // Chk_Add
- //
- this.Chk_Add.BackColor = System.Drawing.Color.Transparent;
- this.Chk_Add.Checked = true;
- this.Chk_Add.CheckState = System.Windows.Forms.CheckState.Checked;
- this.Chk_Add.FlatMode = true;
- this.Chk_Add.Location = new System.Drawing.Point(480, 82);
- this.Chk_Add.Name = "Chk_Add";
- this.Chk_Add.Size = new System.Drawing.Size(48, 16);
- this.Chk_Add.TabIndex = 380;
- this.Chk_Add.Text = "追加";
- //
- // txt_HandleMan
- //
- appearance22.BackColor = System.Drawing.Color.LightCyan;
- this.txt_HandleMan.Appearance = appearance22;
- this.txt_HandleMan.CharacterCasing = System.Windows.Forms.CharacterCasing.Normal;
- this.txt_HandleMan.DisplayMember = "";
- this.txt_HandleMan.FlatMode = true;
- this.txt_HandleMan.Location = new System.Drawing.Point(62, 81);
- this.txt_HandleMan.Name = "txt_HandleMan";
- this.txt_HandleMan.Size = new System.Drawing.Size(106, 19);
- this.txt_HandleMan.TabIndex = 378;
- this.txt_HandleMan.Tag = "";
- this.txt_HandleMan.ValueMember = "";
- this.txt_HandleMan.ValueChanged += new System.EventHandler(this.txt_HandleMan_ValueChanged);
- //
- // ultraLabel9
- //
- this.ultraLabel9.BackColor = System.Drawing.Color.Transparent;
- this.ultraLabel9.Location = new System.Drawing.Point(16, 85);
- this.ultraLabel9.Name = "ultraLabel9";
- this.ultraLabel9.Size = new System.Drawing.Size(42, 16);
- this.ultraLabel9.TabIndex = 392;
- this.ultraLabel9.Text = "转堆人";
- //
- // Dte_AjustTime
- //
- appearance23.BackColor = System.Drawing.Color.LightCyan;
- this.Dte_AjustTime.Appearance = appearance23;
- this.Dte_AjustTime.DateTime = new System.DateTime(2013, 11, 2, 0, 0, 0, 0);
- this.Dte_AjustTime.FlatMode = true;
- this.Dte_AjustTime.Location = new System.Drawing.Point(384, 57);
- this.Dte_AjustTime.MaskInput = "{date} {time}";
- this.Dte_AjustTime.Name = "Dte_AjustTime";
- this.Dte_AjustTime.ReadOnly = true;
- this.Dte_AjustTime.Size = new System.Drawing.Size(152, 19);
- this.Dte_AjustTime.TabIndex = 377;
- this.Dte_AjustTime.Value = new System.DateTime(2013, 11, 2, 0, 0, 0, 0);
- //
- // ultraLabel8
- //
- this.ultraLabel8.BackColor = System.Drawing.Color.Transparent;
- this.ultraLabel8.Location = new System.Drawing.Point(352, 61);
- this.ultraLabel8.Name = "ultraLabel8";
- this.ultraLabel8.Size = new System.Drawing.Size(29, 16);
- this.ultraLabel8.TabIndex = 391;
- this.ultraLabel8.Text = "时间";
- //
- // cmb_BZ
- //
- appearance24.BackColor = System.Drawing.Color.LightCyan;
- this.cmb_BZ.Appearance = appearance24;
- this.cmb_BZ.CharacterCasing = System.Windows.Forms.CharacterCasing.Normal;
- this.cmb_BZ.DisplayMember = "";
- this.cmb_BZ.FlatMode = true;
- this.cmb_BZ.Location = new System.Drawing.Point(216, 57);
- this.cmb_BZ.Name = "cmb_BZ";
- this.cmb_BZ.Size = new System.Drawing.Size(112, 19);
- this.cmb_BZ.TabIndex = 376;
- this.cmb_BZ.Tag = "";
- this.cmb_BZ.ValueMember = "";
- //
- // ultraLabel6
- //
- this.ultraLabel6.BackColor = System.Drawing.Color.Transparent;
- this.ultraLabel6.Location = new System.Drawing.Point(184, 61);
- this.ultraLabel6.Name = "ultraLabel6";
- this.ultraLabel6.Size = new System.Drawing.Size(29, 16);
- this.ultraLabel6.TabIndex = 390;
- this.ultraLabel6.Text = "班组";
- //
- // cmb_BC
- //
- appearance25.BackColor = System.Drawing.Color.LightCyan;
- this.cmb_BC.Appearance = appearance25;
- this.cmb_BC.CharacterCasing = System.Windows.Forms.CharacterCasing.Normal;
- this.cmb_BC.DisplayMember = "";
- this.cmb_BC.FlatMode = true;
- this.cmb_BC.Location = new System.Drawing.Point(62, 57);
- this.cmb_BC.Name = "cmb_BC";
- this.cmb_BC.Size = new System.Drawing.Size(106, 19);
- this.cmb_BC.TabIndex = 375;
- this.cmb_BC.Tag = "";
- this.cmb_BC.ValueMember = "";
- //
- // ultraLabel7
- //
- this.ultraLabel7.BackColor = System.Drawing.Color.Transparent;
- this.ultraLabel7.Location = new System.Drawing.Point(29, 61);
- this.ultraLabel7.Name = "ultraLabel7";
- this.ultraLabel7.Size = new System.Drawing.Size(29, 16);
- this.ultraLabel7.TabIndex = 389;
- this.ultraLabel7.Text = "班次";
- //
- // cmb_NewArea
- //
- appearance26.BackColor = System.Drawing.Color.LightCyan;
- this.cmb_NewArea.Appearance = appearance26;
- this.cmb_NewArea.CharacterCasing = System.Windows.Forms.CharacterCasing.Normal;
- this.cmb_NewArea.DisplayMember = "";
- this.cmb_NewArea.FlatMode = true;
- this.cmb_NewArea.Location = new System.Drawing.Point(62, 33);
- this.cmb_NewArea.Name = "cmb_NewArea";
- this.cmb_NewArea.Size = new System.Drawing.Size(106, 19);
- this.cmb_NewArea.TabIndex = 371;
- this.cmb_NewArea.Tag = "";
- this.cmb_NewArea.ValueMember = "";
- this.cmb_NewArea.KeyDown += new System.Windows.Forms.KeyEventHandler(this.txt_XDH_KeyDown);
- this.cmb_NewArea.Enter += new System.EventHandler(this.txt_XDH_Enter);
- this.cmb_NewArea.ValueChanged += new System.EventHandler(this.cmb_NewArea_ValueChanged);
- //
- // ultraLabel5
- //
- this.ultraLabel5.BackColor = System.Drawing.Color.Transparent;
- this.ultraLabel5.Location = new System.Drawing.Point(16, 38);
- this.ultraLabel5.Name = "ultraLabel5";
- this.ultraLabel5.Size = new System.Drawing.Size(42, 16);
- this.ultraLabel5.TabIndex = 388;
- this.ultraLabel5.Text = "新区域";
- //
- // txt_XDHDate
- //
- appearance27.BackColor = System.Drawing.Color.LightCyan;
- this.txt_XDHDate.Appearance = appearance27;
- this.txt_XDHDate.AutoSize = true;
- this.txt_XDHDate.FlatMode = true;
- this.txt_XDHDate.Location = new System.Drawing.Point(384, 33);
- this.txt_XDHDate.Name = "txt_XDHDate";
- this.txt_XDHDate.Size = new System.Drawing.Size(77, 19);
- this.txt_XDHDate.TabIndex = 373;
- this.txt_XDHDate.Tag = "";
- this.txt_XDHDate.Enter += new System.EventHandler(this.txt_XDH_Enter);
- this.txt_XDHDate.KeyDown += new System.Windows.Forms.KeyEventHandler(this.txt_XDH_KeyDown);
- //
- // txt_YDHDate
- //
- appearance28.BackColor = System.Drawing.Color.LightCyan;
- this.txt_YDHDate.Appearance = appearance28;
- this.txt_YDHDate.AutoSize = true;
- this.txt_YDHDate.FlatMode = true;
- this.txt_YDHDate.Location = new System.Drawing.Point(216, 9);
- this.txt_YDHDate.Name = "txt_YDHDate";
- this.txt_YDHDate.Size = new System.Drawing.Size(48, 19);
- this.txt_YDHDate.TabIndex = 368;
- this.txt_YDHDate.Tag = "";
- this.txt_YDHDate.Enter += new System.EventHandler(this.txt_XDH_Enter);
- this.txt_YDHDate.KeyDown += new System.Windows.Forms.KeyEventHandler(this.txt_XDH_KeyDown);
- //
- // chk_XH
- //
- this.chk_XH.BackColor = System.Drawing.Color.Transparent;
- this.chk_XH.FlatMode = true;
- this.chk_XH.Location = new System.Drawing.Point(336, 12);
- this.chk_XH.Name = "chk_XH";
- this.chk_XH.Size = new System.Drawing.Size(48, 16);
- this.chk_XH.TabIndex = 383;
- this.chk_XH.Text = "序号";
- this.chk_XH.CheckedChanged += new System.EventHandler(this.chk_XH_CheckedChanged);
- //
- // txt_YY
- //
- appearance29.BackColor = System.Drawing.Color.LightCyan;
- this.txt_YY.Appearance = appearance29;
- this.txt_YY.AutoSize = true;
- this.txt_YY.FlatMode = true;
- this.txt_YY.Location = new System.Drawing.Point(216, 81);
- this.txt_YY.Name = "txt_YY";
- this.txt_YY.Size = new System.Drawing.Size(250, 19);
- this.txt_YY.TabIndex = 379;
- this.txt_YY.Tag = "KCH_TURNOFFMOVEBUTTRESSLIST|REMARK";
- //
- // lab_Weight
- //
- this.lab_Weight.AutoSize = true;
- this.lab_Weight.BackColor = System.Drawing.Color.Transparent;
- this.lab_Weight.Location = new System.Drawing.Point(184, 85);
- this.lab_Weight.Name = "lab_Weight";
- this.lab_Weight.Size = new System.Drawing.Size(29, 12);
- this.lab_Weight.TabIndex = 387;
- this.lab_Weight.Text = "备注";
- //
- // txt_XH
- //
- appearance30.BackColor = System.Drawing.Color.LavenderBlush;
- this.txt_XH.Appearance = appearance30;
- this.txt_XH.AutoSize = true;
- this.txt_XH.Enabled = false;
- this.txt_XH.FlatMode = true;
- this.txt_XH.Location = new System.Drawing.Point(384, 9);
- this.txt_XH.Name = "txt_XH";
- this.txt_XH.Size = new System.Drawing.Size(152, 19);
- this.txt_XH.TabIndex = 370;
- this.txt_XH.Tag = "";
- this.txt_XH.Enter += new System.EventHandler(this.txt_XDH_Enter);
- this.txt_XH.KeyDown += new System.Windows.Forms.KeyEventHandler(this.txt_XDH_KeyDown);
- //
- // ultraLabel4
- //
- this.ultraLabel4.BackColor = System.Drawing.Color.Transparent;
- this.ultraLabel4.Location = new System.Drawing.Point(344, 37);
- this.ultraLabel4.Name = "ultraLabel4";
- this.ultraLabel4.Size = new System.Drawing.Size(42, 16);
- this.ultraLabel4.TabIndex = 386;
- this.ultraLabel4.Text = "新吊号";
- //
- // ultraLabel3
- //
- this.ultraLabel3.BackColor = System.Drawing.Color.Transparent;
- this.ultraLabel3.Location = new System.Drawing.Point(176, 12);
- this.ultraLabel3.Name = "ultraLabel3";
- this.ultraLabel3.Size = new System.Drawing.Size(42, 16);
- this.ultraLabel3.TabIndex = 385;
- this.ultraLabel3.Text = "原吊号";
- //
- // cmb_NewButtress
- //
- appearance31.BackColor = System.Drawing.Color.LightCyan;
- this.cmb_NewButtress.Appearance = appearance31;
- this.cmb_NewButtress.CharacterCasing = System.Windows.Forms.CharacterCasing.Normal;
- this.cmb_NewButtress.DisplayMember = "";
- this.cmb_NewButtress.FlatMode = true;
- this.cmb_NewButtress.Location = new System.Drawing.Point(216, 33);
- this.cmb_NewButtress.Name = "cmb_NewButtress";
- this.cmb_NewButtress.Size = new System.Drawing.Size(112, 19);
- this.cmb_NewButtress.TabIndex = 372;
- this.cmb_NewButtress.Tag = "";
- this.cmb_NewButtress.ValueMember = "";
- this.cmb_NewButtress.KeyDown += new System.Windows.Forms.KeyEventHandler(this.txt_XDH_KeyDown);
- this.cmb_NewButtress.Enter += new System.EventHandler(this.txt_XDH_Enter);
- //
- // ultraLabel2
- //
- this.ultraLabel2.BackColor = System.Drawing.Color.Transparent;
- this.ultraLabel2.Location = new System.Drawing.Point(176, 37);
- this.ultraLabel2.Name = "ultraLabel2";
- this.ultraLabel2.Size = new System.Drawing.Size(42, 16);
- this.ultraLabel2.TabIndex = 384;
- this.ultraLabel2.Text = "新垛位";
- //
- // cmb_OldButtress
- //
- appearance32.BackColor = System.Drawing.Color.LightCyan;
- this.cmb_OldButtress.Appearance = appearance32;
- this.cmb_OldButtress.CharacterCasing = System.Windows.Forms.CharacterCasing.Normal;
- this.cmb_OldButtress.DisplayMember = "";
- this.cmb_OldButtress.FlatMode = true;
- this.cmb_OldButtress.Location = new System.Drawing.Point(62, 9);
- this.cmb_OldButtress.Name = "cmb_OldButtress";
- this.cmb_OldButtress.ReadOnly = true;
- this.cmb_OldButtress.Size = new System.Drawing.Size(106, 19);
- this.cmb_OldButtress.TabIndex = 367;
- this.cmb_OldButtress.Tag = "";
- this.cmb_OldButtress.ValueMember = "";
- this.cmb_OldButtress.KeyDown += new System.Windows.Forms.KeyEventHandler(this.txt_XDH_KeyDown);
- this.cmb_OldButtress.Enter += new System.EventHandler(this.txt_XDH_Enter);
- //
- // ultraLabel1
- //
- this.ultraLabel1.BackColor = System.Drawing.Color.Transparent;
- this.ultraLabel1.Location = new System.Drawing.Point(16, 12);
- this.ultraLabel1.Name = "ultraLabel1";
- this.ultraLabel1.Size = new System.Drawing.Size(42, 16);
- this.ultraLabel1.TabIndex = 382;
- this.ultraLabel1.Text = "原垛位";
- //
- // panel2
- //
- this.panel2.Controls.Add(this.dg_TurnoffButtress);
- this.panel2.Dock = System.Windows.Forms.DockStyle.Fill;
- this.panel2.Location = new System.Drawing.Point(0, 112);
- this.panel2.Name = "panel2";
- this.panel2.Size = new System.Drawing.Size(1104, 262);
- this.panel2.TabIndex = 14;
- //
- // dg_TurnoffButtress
- //
- this.dg_TurnoffButtress.DataSource = this.ds_TurnoffButtress;
- appearance33.BackColor = System.Drawing.Color.Ivory;
- this.dg_TurnoffButtress.DisplayLayout.Appearance = appearance33;
- ultraGridColumn1.CellActivation = Infragistics.Win.UltraWinGrid.Activation.NoEdit;
- ultraGridColumn1.Header.Caption = "产线";
- ultraGridColumn1.Header.VisiblePosition = 1;
- ultraGridColumn1.RowLayoutColumnInfo.OriginX = 16;
- ultraGridColumn1.RowLayoutColumnInfo.OriginY = 0;
- ultraGridColumn1.RowLayoutColumnInfo.PreferredCellSize = new System.Drawing.Size(60, 22);
- ultraGridColumn1.RowLayoutColumnInfo.PreferredLabelSize = new System.Drawing.Size(0, 27);
- ultraGridColumn1.RowLayoutColumnInfo.SpanX = 1;
- ultraGridColumn1.RowLayoutColumnInfo.SpanY = 1;
- ultraGridColumn1.SortIndicator = Infragistics.Win.UltraWinGrid.SortIndicator.Disabled;
- ultraGridColumn2.CellActivation = Infragistics.Win.UltraWinGrid.Activation.NoEdit;
- appearance34.BackColor = System.Drawing.Color.LightGoldenrodYellow;
- ultraGridColumn2.CellAppearance = appearance34;
- ultraGridColumn2.Header.Caption = "轧编号";
- ultraGridColumn2.Header.VisiblePosition = 2;
- ultraGridColumn2.RowLayoutColumnInfo.OriginX = 1;
- ultraGridColumn2.RowLayoutColumnInfo.OriginY = 0;
- ultraGridColumn2.RowLayoutColumnInfo.PreferredCellSize = new System.Drawing.Size(68, 22);
- ultraGridColumn2.RowLayoutColumnInfo.PreferredLabelSize = new System.Drawing.Size(0, 27);
- ultraGridColumn2.RowLayoutColumnInfo.SpanX = 1;
- ultraGridColumn2.RowLayoutColumnInfo.SpanY = 1;
- ultraGridColumn2.SortIndicator = Infragistics.Win.UltraWinGrid.SortIndicator.Disabled;
- ultraGridColumn3.CellActivation = Infragistics.Win.UltraWinGrid.Activation.NoEdit;
- ultraGridColumn3.Header.Caption = "母板序号";
- ultraGridColumn3.Header.VisiblePosition = 3;
- ultraGridColumn3.Hidden = true;
- ultraGridColumn3.RowLayoutColumnInfo.OriginX = 15;
- ultraGridColumn3.RowLayoutColumnInfo.OriginY = 0;
- ultraGridColumn3.RowLayoutColumnInfo.PreferredCellSize = new System.Drawing.Size(98, 24);
- ultraGridColumn3.RowLayoutColumnInfo.PreferredLabelSize = new System.Drawing.Size(0, 20);
- ultraGridColumn3.RowLayoutColumnInfo.SpanX = 1;
- ultraGridColumn3.RowLayoutColumnInfo.SpanY = 2;
- ultraGridColumn3.SortIndicator = Infragistics.Win.UltraWinGrid.SortIndicator.Disabled;
- ultraGridColumn4.CellActivation = Infragistics.Win.UltraWinGrid.Activation.NoEdit;
- ultraGridColumn4.Header.Caption = "块序号";
- ultraGridColumn4.Header.VisiblePosition = 0;
- ultraGridColumn4.RowLayoutColumnInfo.OriginX = 2;
- ultraGridColumn4.RowLayoutColumnInfo.OriginY = 0;
- ultraGridColumn4.RowLayoutColumnInfo.PreferredCellSize = new System.Drawing.Size(90, 22);
- ultraGridColumn4.RowLayoutColumnInfo.PreferredLabelSize = new System.Drawing.Size(0, 27);
- ultraGridColumn4.RowLayoutColumnInfo.SpanX = 1;
- ultraGridColumn4.RowLayoutColumnInfo.SpanY = 1;
- ultraGridColumn4.SortIndicator = Infragistics.Win.UltraWinGrid.SortIndicator.Disabled;
- ultraGridColumn5.CellActivation = Infragistics.Win.UltraWinGrid.Activation.NoEdit;
- appearance35.BackColor = System.Drawing.Color.LightGoldenrodYellow;
- ultraGridColumn5.CellAppearance = appearance35;
- ultraGridColumn5.Header.Caption = "牌号";
- ultraGridColumn5.Header.VisiblePosition = 13;
- ultraGridColumn5.RowLayoutColumnInfo.OriginX = 3;
- ultraGridColumn5.RowLayoutColumnInfo.OriginY = 0;
- ultraGridColumn5.RowLayoutColumnInfo.PreferredCellSize = new System.Drawing.Size(59, 22);
- ultraGridColumn5.RowLayoutColumnInfo.PreferredLabelSize = new System.Drawing.Size(0, 27);
- ultraGridColumn5.RowLayoutColumnInfo.SpanX = 1;
- ultraGridColumn5.RowLayoutColumnInfo.SpanY = 1;
- ultraGridColumn5.SortIndicator = Infragistics.Win.UltraWinGrid.SortIndicator.Disabled;
- ultraGridColumn6.Header.Caption = "规格";
- ultraGridColumn6.Header.VisiblePosition = 26;
- ultraGridColumn6.RowLayoutColumnInfo.OriginX = 10;
- ultraGridColumn6.RowLayoutColumnInfo.OriginY = 0;
- ultraGridColumn6.RowLayoutColumnInfo.PreferredCellSize = new System.Drawing.Size(111, 22);
- ultraGridColumn6.RowLayoutColumnInfo.PreferredLabelSize = new System.Drawing.Size(0, 27);
- ultraGridColumn6.RowLayoutColumnInfo.SpanX = 1;
- ultraGridColumn6.RowLayoutColumnInfo.SpanY = 1;
- ultraGridColumn6.SortIndicator = Infragistics.Win.UltraWinGrid.SortIndicator.Disabled;
- ultraGridColumn7.CellActivation = Infragistics.Win.UltraWinGrid.Activation.NoEdit;
- ultraGridColumn7.Header.Caption = "重量";
- ultraGridColumn7.Header.VisiblePosition = 10;
- ultraGridColumn7.RowLayoutColumnInfo.OriginX = 12;
- ultraGridColumn7.RowLayoutColumnInfo.OriginY = 0;
- ultraGridColumn7.RowLayoutColumnInfo.PreferredCellSize = new System.Drawing.Size(72, 22);
- ultraGridColumn7.RowLayoutColumnInfo.PreferredLabelSize = new System.Drawing.Size(0, 27);
- ultraGridColumn7.RowLayoutColumnInfo.SpanX = 1;
- ultraGridColumn7.RowLayoutColumnInfo.SpanY = 1;
- ultraGridColumn7.SortIndicator = Infragistics.Win.UltraWinGrid.SortIndicator.Disabled;
- ultraGridColumn8.CellActivation = Infragistics.Win.UltraWinGrid.Activation.NoEdit;
- ultraGridColumn8.Header.Caption = "判定性能";
- ultraGridColumn8.Header.VisiblePosition = 14;
- ultraGridColumn8.RowLayoutColumnInfo.OriginX = 32;
- ultraGridColumn8.RowLayoutColumnInfo.OriginY = 0;
- ultraGridColumn8.RowLayoutColumnInfo.PreferredCellSize = new System.Drawing.Size(64, 22);
- ultraGridColumn8.RowLayoutColumnInfo.PreferredLabelSize = new System.Drawing.Size(0, 27);
- ultraGridColumn8.RowLayoutColumnInfo.SpanX = 1;
- ultraGridColumn8.RowLayoutColumnInfo.SpanY = 1;
- ultraGridColumn8.SortIndicator = Infragistics.Win.UltraWinGrid.SortIndicator.Disabled;
- ultraGridColumn9.CellActivation = Infragistics.Win.UltraWinGrid.Activation.NoEdit;
- ultraGridColumn9.Header.Caption = "计划号";
- ultraGridColumn9.Header.VisiblePosition = 5;
- ultraGridColumn9.RowLayoutColumnInfo.OriginX = 17;
- ultraGridColumn9.RowLayoutColumnInfo.OriginY = 0;
- ultraGridColumn9.RowLayoutColumnInfo.PreferredCellSize = new System.Drawing.Size(98, 22);
- ultraGridColumn9.RowLayoutColumnInfo.PreferredLabelSize = new System.Drawing.Size(0, 27);
- ultraGridColumn9.RowLayoutColumnInfo.SpanX = 1;
- ultraGridColumn9.RowLayoutColumnInfo.SpanY = 1;
- ultraGridColumn9.SortIndicator = Infragistics.Win.UltraWinGrid.SortIndicator.Disabled;
- ultraGridColumn10.CellActivation = Infragistics.Win.UltraWinGrid.Activation.NoEdit;
- ultraGridColumn10.Header.Caption = "合同号";
- ultraGridColumn10.Header.VisiblePosition = 25;
- ultraGridColumn10.RowLayoutColumnInfo.OriginX = 19;
- ultraGridColumn10.RowLayoutColumnInfo.OriginY = 0;
- ultraGridColumn10.RowLayoutColumnInfo.PreferredCellSize = new System.Drawing.Size(84, 22);
- ultraGridColumn10.RowLayoutColumnInfo.PreferredLabelSize = new System.Drawing.Size(0, 27);
- ultraGridColumn10.RowLayoutColumnInfo.SpanX = 1;
- ultraGridColumn10.RowLayoutColumnInfo.SpanY = 1;
- ultraGridColumn10.SortIndicator = Infragistics.Win.UltraWinGrid.SortIndicator.Disabled;
- ultraGridColumn11.CellActivation = Infragistics.Win.UltraWinGrid.Activation.NoEdit;
- appearance36.BackColor = System.Drawing.Color.LightGoldenrodYellow;
- ultraGridColumn11.CellAppearance = appearance36;
- ultraGridColumn11.Header.Caption = "炉号";
- ultraGridColumn11.Header.VisiblePosition = 4;
- ultraGridColumn11.Hidden = true;
- ultraGridColumn11.RowLayoutColumnInfo.OriginX = 6;
- ultraGridColumn11.RowLayoutColumnInfo.OriginY = 0;
- ultraGridColumn11.RowLayoutColumnInfo.PreferredCellSize = new System.Drawing.Size(79, 24);
- ultraGridColumn11.RowLayoutColumnInfo.PreferredLabelSize = new System.Drawing.Size(0, 20);
- ultraGridColumn11.RowLayoutColumnInfo.SpanX = 1;
- ultraGridColumn11.RowLayoutColumnInfo.SpanY = 2;
- ultraGridColumn11.SortIndicator = Infragistics.Win.UltraWinGrid.SortIndicator.Disabled;
- ultraGridColumn12.CellActivation = Infragistics.Win.UltraWinGrid.Activation.NoEdit;
- appearance37.BackColor = System.Drawing.Color.LightGoldenrodYellow;
- ultraGridColumn12.CellAppearance = appearance37;
- ultraGridColumn12.Header.Caption = "订单号";
- ultraGridColumn12.Header.VisiblePosition = 6;
- ultraGridColumn12.RowLayoutColumnInfo.OriginX = 20;
- ultraGridColumn12.RowLayoutColumnInfo.OriginY = 0;
- ultraGridColumn12.RowLayoutColumnInfo.PreferredCellSize = new System.Drawing.Size(90, 22);
- ultraGridColumn12.RowLayoutColumnInfo.PreferredLabelSize = new System.Drawing.Size(0, 27);
- ultraGridColumn12.RowLayoutColumnInfo.SpanX = 1;
- ultraGridColumn12.RowLayoutColumnInfo.SpanY = 1;
- ultraGridColumn12.SortIndicator = Infragistics.Win.UltraWinGrid.SortIndicator.Disabled;
- ultraGridColumn13.CellActivation = Infragistics.Win.UltraWinGrid.Activation.NoEdit;
- appearance38.BackColor = System.Drawing.Color.LightGoldenrodYellow;
- ultraGridColumn13.CellAppearance = appearance38;
- ultraGridColumn13.Header.Caption = "厚度";
- ultraGridColumn13.Header.VisiblePosition = 7;
- ultraGridColumn13.RowLayoutColumnInfo.OriginX = 13;
- ultraGridColumn13.RowLayoutColumnInfo.OriginY = 0;
- ultraGridColumn13.RowLayoutColumnInfo.PreferredCellSize = new System.Drawing.Size(52, 24);
- ultraGridColumn13.RowLayoutColumnInfo.PreferredLabelSize = new System.Drawing.Size(0, 20);
- ultraGridColumn13.RowLayoutColumnInfo.SpanX = 1;
- ultraGridColumn13.RowLayoutColumnInfo.SpanY = 1;
- ultraGridColumn13.SortIndicator = Infragistics.Win.UltraWinGrid.SortIndicator.Disabled;
- ultraGridColumn14.CellActivation = Infragistics.Win.UltraWinGrid.Activation.NoEdit;
- ultraGridColumn14.Header.Caption = "宽度";
- ultraGridColumn14.Header.VisiblePosition = 8;
- ultraGridColumn14.RowLayoutColumnInfo.OriginX = 14;
- ultraGridColumn14.RowLayoutColumnInfo.OriginY = 0;
- ultraGridColumn14.RowLayoutColumnInfo.PreferredCellSize = new System.Drawing.Size(53, 16);
- ultraGridColumn14.RowLayoutColumnInfo.PreferredLabelSize = new System.Drawing.Size(0, 20);
- ultraGridColumn14.RowLayoutColumnInfo.SpanX = 1;
- ultraGridColumn14.RowLayoutColumnInfo.SpanY = 1;
- ultraGridColumn14.SortIndicator = Infragistics.Win.UltraWinGrid.SortIndicator.Disabled;
- ultraGridColumn15.CellActivation = Infragistics.Win.UltraWinGrid.Activation.NoEdit;
- appearance39.BackColor = System.Drawing.Color.LightGoldenrodYellow;
- ultraGridColumn15.CellAppearance = appearance39;
- ultraGridColumn15.Header.Caption = "长度";
- ultraGridColumn15.Header.VisiblePosition = 9;
- ultraGridColumn15.RowLayoutColumnInfo.OriginX = 15;
- ultraGridColumn15.RowLayoutColumnInfo.OriginY = 0;
- ultraGridColumn15.RowLayoutColumnInfo.PreferredCellSize = new System.Drawing.Size(53, 24);
- ultraGridColumn15.RowLayoutColumnInfo.PreferredLabelSize = new System.Drawing.Size(0, 20);
- ultraGridColumn15.RowLayoutColumnInfo.SpanX = 1;
- ultraGridColumn15.RowLayoutColumnInfo.SpanY = 1;
- ultraGridColumn15.SortIndicator = Infragistics.Win.UltraWinGrid.SortIndicator.Disabled;
- ultraGridColumn16.CellActivation = Infragistics.Win.UltraWinGrid.Activation.NoEdit;
- appearance40.BackColor = System.Drawing.Color.LightGoldenrodYellow;
- ultraGridColumn16.CellAppearance = appearance40;
- ultraGridColumn16.Header.Caption = "表面质量";
- ultraGridColumn16.Header.VisiblePosition = 11;
- ultraGridColumn16.RowLayoutColumnInfo.OriginX = 33;
- ultraGridColumn16.RowLayoutColumnInfo.OriginY = 0;
- ultraGridColumn16.RowLayoutColumnInfo.PreferredCellSize = new System.Drawing.Size(70, 22);
- ultraGridColumn16.RowLayoutColumnInfo.PreferredLabelSize = new System.Drawing.Size(0, 27);
- ultraGridColumn16.RowLayoutColumnInfo.SpanX = 1;
- ultraGridColumn16.RowLayoutColumnInfo.SpanY = 1;
- ultraGridColumn16.SortIndicator = Infragistics.Win.UltraWinGrid.SortIndicator.Disabled;
- ultraGridColumn17.CellActivation = Infragistics.Win.UltraWinGrid.Activation.NoEdit;
- ultraGridColumn17.Header.Caption = "表面缺陷";
- ultraGridColumn17.Header.VisiblePosition = 12;
- ultraGridColumn17.Hidden = true;
- ultraGridColumn17.RowLayoutColumnInfo.OriginX = 34;
- ultraGridColumn17.RowLayoutColumnInfo.OriginY = 0;
- ultraGridColumn17.RowLayoutColumnInfo.PreferredCellSize = new System.Drawing.Size(69, 22);
- ultraGridColumn17.RowLayoutColumnInfo.PreferredLabelSize = new System.Drawing.Size(0, 27);
- ultraGridColumn17.RowLayoutColumnInfo.SpanX = 1;
- ultraGridColumn17.RowLayoutColumnInfo.SpanY = 1;
- ultraGridColumn17.SortIndicator = Infragistics.Win.UltraWinGrid.SortIndicator.Disabled;
- ultraGridColumn18.CellActivation = Infragistics.Win.UltraWinGrid.Activation.NoEdit;
- ultraGridColumn18.Header.Caption = "切边类型";
- ultraGridColumn18.Header.VisiblePosition = 15;
- ultraGridColumn18.Hidden = true;
- ultraGridColumn18.RowLayoutColumnInfo.OriginX = 31;
- ultraGridColumn18.RowLayoutColumnInfo.OriginY = 0;
- ultraGridColumn18.RowLayoutColumnInfo.PreferredCellSize = new System.Drawing.Size(76, 22);
- ultraGridColumn18.RowLayoutColumnInfo.PreferredLabelSize = new System.Drawing.Size(0, 27);
- ultraGridColumn18.RowLayoutColumnInfo.SpanX = 1;
- ultraGridColumn18.RowLayoutColumnInfo.SpanY = 1;
- ultraGridColumn18.SortIndicator = Infragistics.Win.UltraWinGrid.SortIndicator.Disabled;
- ultraGridColumn19.CellActivation = Infragistics.Win.UltraWinGrid.Activation.NoEdit;
- ultraGridColumn19.Header.Caption = "原料明细号";
- ultraGridColumn19.Header.VisiblePosition = 16;
- ultraGridColumn19.RowLayoutColumnInfo.OriginX = 35;
- ultraGridColumn19.RowLayoutColumnInfo.OriginY = 0;
- ultraGridColumn19.RowLayoutColumnInfo.PreferredCellSize = new System.Drawing.Size(74, 22);
- ultraGridColumn19.RowLayoutColumnInfo.PreferredLabelSize = new System.Drawing.Size(0, 27);
- ultraGridColumn19.RowLayoutColumnInfo.SpanX = 1;
- ultraGridColumn19.RowLayoutColumnInfo.SpanY = 1;
- ultraGridColumn19.SortIndicator = Infragistics.Win.UltraWinGrid.SortIndicator.Disabled;
- ultraGridColumn20.CellActivation = Infragistics.Win.UltraWinGrid.Activation.NoEdit;
- ultraGridColumn20.Header.Caption = "入库时间";
- ultraGridColumn20.Header.VisiblePosition = 17;
- ultraGridColumn20.RowLayoutColumnInfo.OriginX = 36;
- ultraGridColumn20.RowLayoutColumnInfo.OriginY = 0;
- ultraGridColumn20.RowLayoutColumnInfo.PreferredCellSize = new System.Drawing.Size(77, 22);
- ultraGridColumn20.RowLayoutColumnInfo.PreferredLabelSize = new System.Drawing.Size(0, 27);
- ultraGridColumn20.RowLayoutColumnInfo.SpanX = 1;
- ultraGridColumn20.RowLayoutColumnInfo.SpanY = 1;
- ultraGridColumn20.SortIndicator = Infragistics.Win.UltraWinGrid.SortIndicator.Disabled;
- ultraGridColumn21.CellActivation = Infragistics.Win.UltraWinGrid.Activation.NoEdit;
- ultraGridColumn21.Header.Caption = "垛位";
- ultraGridColumn21.Header.VisiblePosition = 18;
- ultraGridColumn21.RowLayoutColumnInfo.OriginX = 5;
- ultraGridColumn21.RowLayoutColumnInfo.OriginY = 0;
- ultraGridColumn21.RowLayoutColumnInfo.PreferredCellSize = new System.Drawing.Size(65, 22);
- ultraGridColumn21.RowLayoutColumnInfo.PreferredLabelSize = new System.Drawing.Size(0, 27);
- ultraGridColumn21.RowLayoutColumnInfo.SpanX = 1;
- ultraGridColumn21.RowLayoutColumnInfo.SpanY = 1;
- ultraGridColumn21.SortIndicator = Infragistics.Win.UltraWinGrid.SortIndicator.Disabled;
- ultraGridColumn22.CellActivation = Infragistics.Win.UltraWinGrid.Activation.NoEdit;
- ultraGridColumn22.Header.Caption = "吊号";
- ultraGridColumn22.Header.VisiblePosition = 19;
- ultraGridColumn22.RowLayoutColumnInfo.OriginX = 6;
- ultraGridColumn22.RowLayoutColumnInfo.OriginY = 0;
- ultraGridColumn22.RowLayoutColumnInfo.PreferredCellSize = new System.Drawing.Size(70, 22);
- ultraGridColumn22.RowLayoutColumnInfo.PreferredLabelSize = new System.Drawing.Size(0, 27);
- ultraGridColumn22.RowLayoutColumnInfo.SpanX = 1;
- ultraGridColumn22.RowLayoutColumnInfo.SpanY = 1;
- ultraGridColumn22.SortIndicator = Infragistics.Win.UltraWinGrid.SortIndicator.Disabled;
- ultraGridColumn23.CellActivation = Infragistics.Win.UltraWinGrid.Activation.NoEdit;
- ultraGridColumn23.Header.Caption = "吊序";
- ultraGridColumn23.Header.VisiblePosition = 20;
- ultraGridColumn23.RowLayoutColumnInfo.OriginX = 7;
- ultraGridColumn23.RowLayoutColumnInfo.OriginY = 0;
- ultraGridColumn23.RowLayoutColumnInfo.PreferredCellSize = new System.Drawing.Size(44, 22);
- ultraGridColumn23.RowLayoutColumnInfo.PreferredLabelSize = new System.Drawing.Size(0, 27);
- ultraGridColumn23.RowLayoutColumnInfo.SpanX = 1;
- ultraGridColumn23.RowLayoutColumnInfo.SpanY = 1;
- ultraGridColumn23.SortIndicator = Infragistics.Win.UltraWinGrid.SortIndicator.Disabled;
- ultraGridColumn24.CellActivation = Infragistics.Win.UltraWinGrid.Activation.NoEdit;
- ultraGridColumn24.Header.Caption = "层";
- ultraGridColumn24.Header.VisiblePosition = 21;
- ultraGridColumn24.RowLayoutColumnInfo.OriginX = 8;
- ultraGridColumn24.RowLayoutColumnInfo.OriginY = 0;
- ultraGridColumn24.RowLayoutColumnInfo.PreferredCellSize = new System.Drawing.Size(50, 0);
- ultraGridColumn24.RowLayoutColumnInfo.PreferredLabelSize = new System.Drawing.Size(0, 20);
- ultraGridColumn24.RowLayoutColumnInfo.SpanX = 1;
- ultraGridColumn24.RowLayoutColumnInfo.SpanY = 1;
- ultraGridColumn24.SortIndicator = Infragistics.Win.UltraWinGrid.SortIndicator.Disabled;
- ultraGridColumn25.CellActivation = Infragistics.Win.UltraWinGrid.Activation.NoEdit;
- ultraGridColumn25.Header.Caption = "板块层";
- ultraGridColumn25.Header.VisiblePosition = 22;
- ultraGridColumn25.Hidden = true;
- ultraGridColumn25.RowLayoutColumnInfo.OriginX = 6;
- ultraGridColumn25.RowLayoutColumnInfo.OriginY = 0;
- ultraGridColumn25.RowLayoutColumnInfo.PreferredCellSize = new System.Drawing.Size(63, 22);
- ultraGridColumn25.RowLayoutColumnInfo.PreferredLabelSize = new System.Drawing.Size(0, 27);
- ultraGridColumn25.RowLayoutColumnInfo.SpanX = 1;
- ultraGridColumn25.RowLayoutColumnInfo.SpanY = 1;
- ultraGridColumn25.SortIndicator = Infragistics.Win.UltraWinGrid.SortIndicator.Disabled;
- ultraGridColumn26.CellActivation = Infragistics.Win.UltraWinGrid.Activation.NoEdit;
- ultraGridColumn26.Header.Caption = "区域";
- ultraGridColumn26.Header.VisiblePosition = 23;
- ultraGridColumn26.RowLayoutColumnInfo.OriginX = 9;
- ultraGridColumn26.RowLayoutColumnInfo.OriginY = 0;
- ultraGridColumn26.RowLayoutColumnInfo.PreferredCellSize = new System.Drawing.Size(50, 22);
- ultraGridColumn26.RowLayoutColumnInfo.PreferredLabelSize = new System.Drawing.Size(0, 27);
- ultraGridColumn26.RowLayoutColumnInfo.SpanX = 1;
- ultraGridColumn26.RowLayoutColumnInfo.SpanY = 1;
- ultraGridColumn26.SortIndicator = Infragistics.Win.UltraWinGrid.SortIndicator.Disabled;
- ultraGridColumn27.CellActivation = Infragistics.Win.UltraWinGrid.Activation.NoEdit;
- ultraGridColumn27.Header.Caption = "系统备注";
- ultraGridColumn27.Header.VisiblePosition = 24;
- ultraGridColumn27.RowLayoutColumnInfo.OriginX = 37;
- ultraGridColumn27.RowLayoutColumnInfo.OriginY = 0;
- ultraGridColumn27.RowLayoutColumnInfo.PreferredCellSize = new System.Drawing.Size(0, 22);
- ultraGridColumn27.RowLayoutColumnInfo.PreferredLabelSize = new System.Drawing.Size(0, 27);
- ultraGridColumn27.RowLayoutColumnInfo.SpanX = 1;
- ultraGridColumn27.RowLayoutColumnInfo.SpanY = 1;
- ultraGridColumn27.SortIndicator = Infragistics.Win.UltraWinGrid.SortIndicator.Disabled;
- ultraGridColumn28.Header.Caption = "备注";
- ultraGridColumn28.Header.VisiblePosition = 27;
- ultraGridColumn28.RowLayoutColumnInfo.OriginX = 42;
- ultraGridColumn28.RowLayoutColumnInfo.OriginY = 0;
- ultraGridColumn28.RowLayoutColumnInfo.SpanX = 1;
- ultraGridColumn28.RowLayoutColumnInfo.SpanY = 1;
- ultraGridColumn28.SortIndicator = Infragistics.Win.UltraWinGrid.SortIndicator.Disabled;
- ultraGridColumn29.Header.Caption = "登记时间";
- ultraGridColumn29.Header.VisiblePosition = 28;
- ultraGridColumn29.RowLayoutColumnInfo.OriginX = 0;
- ultraGridColumn29.RowLayoutColumnInfo.OriginY = 0;
- ultraGridColumn29.RowLayoutColumnInfo.PreferredCellSize = new System.Drawing.Size(127, 0);
- ultraGridColumn29.RowLayoutColumnInfo.SpanX = 1;
- ultraGridColumn29.RowLayoutColumnInfo.SpanY = 1;
- ultraGridColumn29.SortIndicator = Infragistics.Win.UltraWinGrid.SortIndicator.Disabled;
- ultraGridColumn30.Header.Caption = "原规格";
- ultraGridColumn30.Header.VisiblePosition = 29;
- ultraGridColumn30.RowLayoutColumnInfo.OriginX = 11;
- ultraGridColumn30.RowLayoutColumnInfo.OriginY = 0;
- ultraGridColumn30.RowLayoutColumnInfo.SpanX = 1;
- ultraGridColumn30.RowLayoutColumnInfo.SpanY = 1;
- ultraGridColumn31.Header.Caption = "原料入库牌号";
- ultraGridColumn31.Header.VisiblePosition = 30;
- ultraGridColumn31.RowLayoutColumnInfo.OriginX = 4;
- ultraGridColumn31.RowLayoutColumnInfo.OriginY = 0;
- ultraGridColumn31.RowLayoutColumnInfo.PreferredCellSize = new System.Drawing.Size(87, 0);
- ultraGridColumn31.RowLayoutColumnInfo.SpanX = 1;
- ultraGridColumn31.RowLayoutColumnInfo.SpanY = 1;
- ultraGridColumn32.CellActivation = Infragistics.Win.UltraWinGrid.Activation.ActivateOnly;
- ultraGridColumn32.Format = "";
- ultraGridColumn32.Header.Caption = "交货期";
- ultraGridColumn32.Header.VisiblePosition = 31;
- ultraGridColumn32.RowLayoutColumnInfo.OriginX = 18;
- ultraGridColumn32.RowLayoutColumnInfo.OriginY = 0;
- ultraGridColumn32.RowLayoutColumnInfo.PreferredCellSize = new System.Drawing.Size(93, 0);
- ultraGridColumn32.RowLayoutColumnInfo.SpanX = 1;
- ultraGridColumn32.RowLayoutColumnInfo.SpanY = 1;
- ultraGridColumn33.Header.Caption = "原计划号";
- ultraGridColumn33.Header.VisiblePosition = 32;
- ultraGridColumn33.Hidden = true;
- ultraGridColumn33.RowLayoutColumnInfo.OriginX = 24;
- ultraGridColumn33.RowLayoutColumnInfo.OriginY = 0;
- ultraGridColumn33.RowLayoutColumnInfo.PreferredCellSize = new System.Drawing.Size(85, 0);
- ultraGridColumn33.RowLayoutColumnInfo.SpanX = 1;
- ultraGridColumn33.RowLayoutColumnInfo.SpanY = 1;
- ultraGridColumn33.SortIndicator = Infragistics.Win.UltraWinGrid.SortIndicator.Disabled;
- ultraGridColumn34.Header.Caption = "原订单号";
- ultraGridColumn34.Header.VisiblePosition = 33;
- ultraGridColumn34.Hidden = true;
- ultraGridColumn34.RowLayoutColumnInfo.OriginX = 25;
- ultraGridColumn34.RowLayoutColumnInfo.OriginY = 0;
- ultraGridColumn34.RowLayoutColumnInfo.PreferredCellSize = new System.Drawing.Size(82, 0);
- ultraGridColumn34.RowLayoutColumnInfo.SpanX = 1;
- ultraGridColumn34.RowLayoutColumnInfo.SpanY = 1;
- ultraGridColumn34.SortIndicator = Infragistics.Win.UltraWinGrid.SortIndicator.Disabled;
- ultraGridColumn35.Header.Caption = "客户订单号";
- ultraGridColumn35.Header.VisiblePosition = 34;
- ultraGridColumn35.RowLayoutColumnInfo.OriginX = 23;
- ultraGridColumn35.RowLayoutColumnInfo.OriginY = 0;
- ultraGridColumn35.RowLayoutColumnInfo.SpanX = 1;
- ultraGridColumn35.RowLayoutColumnInfo.SpanY = 1;
- ultraGridColumn36.Header.Caption = "产品类型";
- ultraGridColumn36.Header.VisiblePosition = 35;
- ultraGridColumn36.Hidden = true;
- ultraGridColumn36.RowLayoutColumnInfo.OriginX = 39;
- ultraGridColumn36.RowLayoutColumnInfo.OriginY = 0;
- ultraGridColumn36.RowLayoutColumnInfo.SpanX = 1;
- ultraGridColumn36.RowLayoutColumnInfo.SpanY = 1;
- ultraGridColumn37.Header.Caption = "判定备注";
- ultraGridColumn37.Header.VisiblePosition = 36;
- ultraGridColumn37.Hidden = true;
- ultraGridColumn37.RowLayoutColumnInfo.OriginX = 41;
- ultraGridColumn37.RowLayoutColumnInfo.OriginY = 0;
- ultraGridColumn37.RowLayoutColumnInfo.SpanX = 1;
- ultraGridColumn37.RowLayoutColumnInfo.SpanY = 1;
- ultraGridColumn38.Header.Caption = "探伤结果";
- ultraGridColumn38.Header.VisiblePosition = 37;
- ultraGridColumn38.RowLayoutColumnInfo.OriginX = 38;
- ultraGridColumn38.RowLayoutColumnInfo.OriginY = 0;
- ultraGridColumn38.RowLayoutColumnInfo.SpanX = 1;
- ultraGridColumn38.RowLayoutColumnInfo.SpanY = 1;
- ultraGridColumn39.Header.Caption = "判定时间";
- ultraGridColumn39.Header.VisiblePosition = 38;
- ultraGridColumn39.Hidden = true;
- ultraGridColumn39.RowLayoutColumnInfo.OriginX = 40;
- ultraGridColumn39.RowLayoutColumnInfo.OriginY = 0;
- ultraGridColumn39.RowLayoutColumnInfo.SpanX = 1;
- ultraGridColumn39.RowLayoutColumnInfo.SpanY = 1;
- ultraGridColumn40.Header.Caption = "客户名称";
- ultraGridColumn40.Header.VisiblePosition = 39;
- ultraGridColumn40.RowLayoutColumnInfo.OriginX = 21;
- ultraGridColumn40.RowLayoutColumnInfo.OriginY = 0;
- ultraGridColumn40.RowLayoutColumnInfo.SpanX = 1;
- ultraGridColumn40.RowLayoutColumnInfo.SpanY = 1;
- ultraGridColumn41.Header.Caption = "到站";
- ultraGridColumn41.Header.VisiblePosition = 40;
- ultraGridColumn41.RowLayoutColumnInfo.OriginX = 22;
- ultraGridColumn41.RowLayoutColumnInfo.OriginY = 0;
- ultraGridColumn41.RowLayoutColumnInfo.SpanX = 1;
- ultraGridColumn41.RowLayoutColumnInfo.SpanY = 1;
- ultraGridColumn42.Header.Caption = "原牌号";
- ultraGridColumn42.Header.VisiblePosition = 41;
- ultraGridColumn42.Hidden = true;
- ultraGridColumn42.RowLayoutColumnInfo.OriginX = 26;
- ultraGridColumn42.RowLayoutColumnInfo.OriginY = 0;
- ultraGridColumn42.RowLayoutColumnInfo.SpanX = 1;
- ultraGridColumn42.RowLayoutColumnInfo.SpanY = 1;
- ultraGridColumn43.Header.Caption = "原厚度";
- ultraGridColumn43.Header.VisiblePosition = 42;
- ultraGridColumn43.Hidden = true;
- ultraGridColumn43.RowLayoutColumnInfo.OriginX = 27;
- ultraGridColumn43.RowLayoutColumnInfo.OriginY = 0;
- ultraGridColumn43.RowLayoutColumnInfo.PreferredCellSize = new System.Drawing.Size(59, 22);
- ultraGridColumn43.RowLayoutColumnInfo.PreferredLabelSize = new System.Drawing.Size(0, 27);
- ultraGridColumn43.RowLayoutColumnInfo.SpanX = 1;
- ultraGridColumn43.RowLayoutColumnInfo.SpanY = 1;
- ultraGridColumn44.Header.Caption = "原宽度";
- ultraGridColumn44.Header.VisiblePosition = 43;
- ultraGridColumn44.Hidden = true;
- ultraGridColumn44.RowLayoutColumnInfo.OriginX = 28;
- ultraGridColumn44.RowLayoutColumnInfo.OriginY = 0;
- ultraGridColumn44.RowLayoutColumnInfo.PreferredCellSize = new System.Drawing.Size(59, 22);
- ultraGridColumn44.RowLayoutColumnInfo.PreferredLabelSize = new System.Drawing.Size(0, 27);
- ultraGridColumn44.RowLayoutColumnInfo.SpanX = 1;
- ultraGridColumn44.RowLayoutColumnInfo.SpanY = 1;
- ultraGridColumn45.Header.Caption = "原长度";
- ultraGridColumn45.Header.VisiblePosition = 44;
- ultraGridColumn45.Hidden = true;
- ultraGridColumn45.RowLayoutColumnInfo.OriginX = 30;
- ultraGridColumn45.RowLayoutColumnInfo.OriginY = 0;
- ultraGridColumn45.RowLayoutColumnInfo.SpanX = 1;
- ultraGridColumn45.RowLayoutColumnInfo.SpanY = 1;
- ultraGridBand1.Columns.AddRange(new object[] {
- ultraGridColumn1,
- ultraGridColumn2,
- ultraGridColumn3,
- ultraGridColumn4,
- ultraGridColumn5,
- ultraGridColumn6,
- ultraGridColumn7,
- ultraGridColumn8,
- ultraGridColumn9,
- ultraGridColumn10,
- ultraGridColumn11,
- ultraGridColumn12,
- ultraGridColumn13,
- ultraGridColumn14,
- ultraGridColumn15,
- ultraGridColumn16,
- ultraGridColumn17,
- ultraGridColumn18,
- ultraGridColumn19,
- ultraGridColumn20,
- ultraGridColumn21,
- ultraGridColumn22,
- ultraGridColumn23,
- ultraGridColumn24,
- ultraGridColumn25,
- ultraGridColumn26,
- ultraGridColumn27,
- ultraGridColumn28,
- ultraGridColumn29,
- ultraGridColumn30,
- ultraGridColumn31,
- ultraGridColumn32,
- ultraGridColumn33,
- ultraGridColumn34,
- ultraGridColumn35,
- ultraGridColumn36,
- ultraGridColumn37,
- ultraGridColumn38,
- ultraGridColumn39,
- ultraGridColumn40,
- ultraGridColumn41,
- ultraGridColumn42,
- ultraGridColumn43,
- ultraGridColumn44,
- ultraGridColumn45});
- appearance41.TextHAlign = Infragistics.Win.HAlign.Right;
- appearance41.TextVAlign = Infragistics.Win.VAlign.Middle;
- summarySettings1.Appearance = appearance41;
- summarySettings1.DisplayFormat = "{0} 块";
- summarySettings1.GroupBySummaryValueAppearance = appearance42;
- summarySettings1.SummaryDisplayArea = ((Infragistics.Win.UltraWinGrid.SummaryDisplayAreas)((Infragistics.Win.UltraWinGrid.SummaryDisplayAreas.BottomFixed | Infragistics.Win.UltraWinGrid.SummaryDisplayAreas.InGroupByRows)));
- appearance43.TextHAlign = Infragistics.Win.HAlign.Right;
- appearance43.TextVAlign = Infragistics.Win.VAlign.Middle;
- summarySettings2.Appearance = appearance43;
- summarySettings2.DisplayFormat = "{0:.###} T";
- summarySettings2.GroupBySummaryValueAppearance = appearance44;
- summarySettings2.SummaryDisplayArea = ((Infragistics.Win.UltraWinGrid.SummaryDisplayAreas)((Infragistics.Win.UltraWinGrid.SummaryDisplayAreas.BottomFixed | Infragistics.Win.UltraWinGrid.SummaryDisplayAreas.InGroupByRows)));
- ultraGridBand1.Summaries.AddRange(new Infragistics.Win.UltraWinGrid.SummarySettings[] {
- summarySettings1,
- summarySettings2});
- ultraGridBand1.UseRowLayout = true;
- this.dg_TurnoffButtress.DisplayLayout.BandsSerializer.Add(ultraGridBand1);
- this.dg_TurnoffButtress.DisplayLayout.CaptionVisible = Infragistics.Win.DefaultableBoolean.False;
- this.dg_TurnoffButtress.DisplayLayout.GroupByBox.Hidden = true;
- this.dg_TurnoffButtress.DisplayLayout.GroupByBox.Prompt = " 将要分组的列拖至该区域!";
- appearance45.BorderColor = System.Drawing.Color.Black;
- appearance45.TextVAlign = Infragistics.Win.VAlign.Middle;
- this.dg_TurnoffButtress.DisplayLayout.Override.CellAppearance = appearance45;
- this.dg_TurnoffButtress.DisplayLayout.Override.CellClickAction = Infragistics.Win.UltraWinGrid.CellClickAction.RowSelect;
- this.dg_TurnoffButtress.DisplayLayout.Override.CellPadding = 0;
- appearance46.BackColor = System.Drawing.SystemColors.Control;
- appearance46.BackColor2 = System.Drawing.SystemColors.ControlDark;
- appearance46.BackGradientAlignment = Infragistics.Win.GradientAlignment.Element;
- appearance46.BackGradientStyle = Infragistics.Win.GradientStyle.Horizontal;
- appearance46.BorderColor = System.Drawing.SystemColors.Window;
- appearance46.TextHAlign = Infragistics.Win.HAlign.Left;
- appearance46.TextVAlign = Infragistics.Win.VAlign.Middle;
- this.dg_TurnoffButtress.DisplayLayout.Override.GroupByRowAppearance = appearance46;
- this.dg_TurnoffButtress.DisplayLayout.Override.GroupByRowDescriptionMask = "[caption]:[value] ([count]条记录)";
- this.dg_TurnoffButtress.DisplayLayout.Override.GroupBySummaryDisplayStyle = Infragistics.Win.UltraWinGrid.GroupBySummaryDisplayStyle.SummaryCells;
- appearance47.BackColor = System.Drawing.Color.LightSteelBlue;
- this.dg_TurnoffButtress.DisplayLayout.Override.HeaderAppearance = appearance47;
- this.dg_TurnoffButtress.DisplayLayout.Override.HeaderStyle = Infragistics.Win.HeaderStyle.Standard;
- appearance48.BackColor = System.Drawing.SystemColors.Window;
- appearance48.BorderColor = System.Drawing.Color.Black;
- appearance48.TextVAlign = Infragistics.Win.VAlign.Middle;
- this.dg_TurnoffButtress.DisplayLayout.Override.RowAppearance = appearance48;
- appearance49.BackColor = System.Drawing.SystemColors.Window;
- appearance49.BorderColor = System.Drawing.Color.Black;
- appearance49.TextVAlign = Infragistics.Win.VAlign.Middle;
- this.dg_TurnoffButtress.DisplayLayout.Override.RowPreviewAppearance = appearance49;
- this.dg_TurnoffButtress.DisplayLayout.Override.RowSelectorHeaderStyle = Infragistics.Win.UltraWinGrid.RowSelectorHeaderStyle.SeparateElement;
- this.dg_TurnoffButtress.DisplayLayout.Override.RowSelectorNumberStyle = Infragistics.Win.UltraWinGrid.RowSelectorNumberStyle.RowIndex;
- this.dg_TurnoffButtress.DisplayLayout.Override.RowSelectors = Infragistics.Win.DefaultableBoolean.True;
- appearance50.TextHAlign = Infragistics.Win.HAlign.Left;
- appearance50.TextVAlign = Infragistics.Win.VAlign.Middle;
- this.dg_TurnoffButtress.DisplayLayout.Override.SelectedRowAppearance = appearance50;
- this.dg_TurnoffButtress.DisplayLayout.Override.SummaryDisplayArea = Infragistics.Win.UltraWinGrid.SummaryDisplayAreas.BottomFixed;
- appearance51.BackColor = System.Drawing.SystemColors.Window;
- this.dg_TurnoffButtress.DisplayLayout.Override.SummaryFooterAppearance = appearance51;
- appearance52.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(255)))), ((int)(((byte)(255)))), ((int)(((byte)(192)))));
- appearance52.ForeColor = System.Drawing.Color.Red;
- this.dg_TurnoffButtress.DisplayLayout.Override.SummaryFooterCaptionAppearance = appearance52;
- this.dg_TurnoffButtress.DisplayLayout.Override.SummaryFooterCaptionVisible = Infragistics.Win.DefaultableBoolean.False;
- appearance53.BackColor = System.Drawing.Color.MistyRose;
- appearance53.ForeColor = System.Drawing.Color.Blue;
- appearance53.TextHAlign = Infragistics.Win.HAlign.Right;
- appearance53.TextVAlign = Infragistics.Win.VAlign.Middle;
- this.dg_TurnoffButtress.DisplayLayout.Override.SummaryValueAppearance = appearance53;
- appearance54.BackColor = System.Drawing.SystemColors.ControlLight;
- this.dg_TurnoffButtress.DisplayLayout.Override.TemplateAddRowAppearance = appearance54;
- this.dg_TurnoffButtress.DisplayLayout.ScrollBounds = Infragistics.Win.UltraWinGrid.ScrollBounds.ScrollToFill;
- this.dg_TurnoffButtress.DisplayLayout.ScrollStyle = Infragistics.Win.UltraWinGrid.ScrollStyle.Immediate;
- this.dg_TurnoffButtress.DisplayLayout.ViewStyleBand = Infragistics.Win.UltraWinGrid.ViewStyleBand.OutlookGroupBy;
- this.dg_TurnoffButtress.Dock = System.Windows.Forms.DockStyle.Fill;
- this.dg_TurnoffButtress.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
- this.dg_TurnoffButtress.Location = new System.Drawing.Point(0, 0);
- this.dg_TurnoffButtress.Name = "dg_TurnoffButtress";
- this.dg_TurnoffButtress.Size = new System.Drawing.Size(1104, 262);
- this.dg_TurnoffButtress.TabIndex = 0;
- this.dg_TurnoffButtress.Text = "成品垛位信息";
- this.dg_TurnoffButtress.AfterRowActivate += new System.EventHandler(this.dg_TurnoffButtress_AfterRowActivate);
- this.dg_TurnoffButtress.InitializeRow += new Infragistics.Win.UltraWinGrid.InitializeRowEventHandler(this.dg_TurnoffButtress_InitializeRow);
- //
- // FrmTurnoffMoveButtress
- //
- this.AutoScaleBaseSize = new System.Drawing.Size(6, 14);
- this.ClientSize = new System.Drawing.Size(1104, 502);
- this.Controls.Add(this.panel2);
- this.Controls.Add(this.ultraExpandableGroupBox1);
- this.Controls.Add(this.ultraGroupBox1);
- this.Controls.Add(this.panel1);
- this.Name = "FrmTurnoffMoveButtress";
- this.Text = "成品移垛管理";
- this.Load += new System.EventHandler(this.FrmTurnoffMoveButtress_Load);
- ((System.ComponentModel.ISupportInitialize)(this.ultraToolbarsManager1)).EndInit();
- this.panel1.ResumeLayout(false);
- ((System.ComponentModel.ISupportInitialize)(this.ds_TurnoffButtress)).EndInit();
- ((System.ComponentModel.ISupportInitialize)(this.dataTable2)).EndInit();
- ((System.ComponentModel.ISupportInitialize)(this.ultraGroupBox1)).EndInit();
- this.ultraGroupBox1.ResumeLayout(false);
- ((System.ComponentModel.ISupportInitialize)(this.cmb_CCondition)).EndInit();
- ((System.ComponentModel.ISupportInitialize)(this.cmb_KCondition)).EndInit();
- ((System.ComponentModel.ISupportInitialize)(this.txt_CS)).EndInit();
- ((System.ComponentModel.ISupportInitialize)(this.txt_KS)).EndInit();
- ((System.ComponentModel.ISupportInitialize)(this.cmb_ProductLine)).EndInit();
- ((System.ComponentModel.ISupportInitialize)(this.txt_RollNOEnd)).EndInit();
- ((System.ComponentModel.ISupportInitialize)(this.txt_RollNOBegin)).EndInit();
- ((System.ComponentModel.ISupportInitialize)(this.txt_RollTop)).EndInit();
- ((System.ComponentModel.ISupportInitialize)(this.txt_CD)).EndInit();
- ((System.ComponentModel.ISupportInitialize)(this.txt_KD)).EndInit();
- ((System.ComponentModel.ISupportInitialize)(this.txt_HD)).EndInit();
- ((System.ComponentModel.ISupportInitialize)(this.txt_Condole)).EndInit();
- ((System.ComponentModel.ISupportInitialize)(this.cmb_SteelType)).EndInit();
- ((System.ComponentModel.ISupportInitialize)(this.cmb_Area)).EndInit();
- ((System.ComponentModel.ISupportInitialize)(this.cmb_Buttress)).EndInit();
- ((System.ComponentModel.ISupportInitialize)(this.txt_PlanNO)).EndInit();
- ((System.ComponentModel.ISupportInitialize)(this.txt_PactNO)).EndInit();
- ((System.ComponentModel.ISupportInitialize)(this.ultraExpandableGroupBox1)).EndInit();
- this.ultraExpandableGroupBox1.ResumeLayout(false);
- this.ultraExpandableGroupBoxPanel1.ResumeLayout(false);
- this.ultraExpandableGroupBoxPanel1.PerformLayout();
- ((System.ComponentModel.ISupportInitialize)(this.ult_Remark)).EndInit();
- ((System.ComponentModel.ISupportInitialize)(this.txt_XDH)).EndInit();
- ((System.ComponentModel.ISupportInitialize)(this.txt_YDH)).EndInit();
- ((System.ComponentModel.ISupportInitialize)(this.txt_HandleMan)).EndInit();
- ((System.ComponentModel.ISupportInitialize)(this.Dte_AjustTime)).EndInit();
- ((System.ComponentModel.ISupportInitialize)(this.cmb_BZ)).EndInit();
- ((System.ComponentModel.ISupportInitialize)(this.cmb_BC)).EndInit();
- ((System.ComponentModel.ISupportInitialize)(this.cmb_NewArea)).EndInit();
- ((System.ComponentModel.ISupportInitialize)(this.txt_XDHDate)).EndInit();
- ((System.ComponentModel.ISupportInitialize)(this.txt_YDHDate)).EndInit();
- ((System.ComponentModel.ISupportInitialize)(this.txt_YY)).EndInit();
- ((System.ComponentModel.ISupportInitialize)(this.txt_XH)).EndInit();
- ((System.ComponentModel.ISupportInitialize)(this.cmb_NewButtress)).EndInit();
- ((System.ComponentModel.ISupportInitialize)(this.cmb_OldButtress)).EndInit();
- this.panel2.ResumeLayout(false);
- ((System.ComponentModel.ISupportInitialize)(this.dg_TurnoffButtress)).EndInit();
- this.ResumeLayout(false);
- }
- #endregion
- private void Chk_PactNO_CheckedChanged(object sender, System.EventArgs e)
- {
- this.txt_PactNO.Enabled=this.Chk_PactNO.Checked;
- }
- private void Chk_PlanNO_CheckedChanged(object sender, System.EventArgs e)
- {
- this.txt_PlanNO.Enabled=this.Chk_PlanNO.Checked;
- }
- private void chk_Area_CheckedChanged(object sender, System.EventArgs e)
- {
- this.cmb_Area.Enabled=this.chk_Area.Checked;
- }
- private void Chk_Buttress_CheckedChanged(object sender, System.EventArgs e)
- {
- this.cmb_Buttress.Enabled=this.Chk_Buttress.Checked;
- }
- private void chk_LineAndSteel_CheckedChanged(object sender, System.EventArgs e)
- {
- this.cmb_ProductLine.Enabled=this.chk_LineAndSteel.Checked;
- this.cmb_SteelType.Enabled=this.chk_LineAndSteel.Checked;
- }
- private void chk_Condole_CheckedChanged(object sender, System.EventArgs e)
- {
- this.txt_Condole.Enabled=this.chk_Condole.Checked;
- }
- private void chk_RollNum_CheckedChanged(object sender, System.EventArgs e)
- {
- this.txt_RollTop.Enabled=this.chk_RollNum.Checked;
- this.txt_RollNOBegin.Enabled=this.chk_RollNum.Checked;
- this.txt_RollNOEnd.Enabled=this.chk_RollNum.Checked;
- }
- private void chk_Spet_CheckedChanged(object sender, System.EventArgs e)
- {
- txt_HD.Enabled=chk_Spet.Checked;
- txt_KD.Enabled=this.chk_Spet.Checked;
- txt_CD.Enabled=this.chk_Spet.Checked;
- }
- private void chk_Size_CheckedChanged(object sender, System.EventArgs e)
- {
- this.txt_KS.Enabled=this.chk_Size.Checked;
- this.txt_CS.Enabled=this.chk_Size.Checked;
- this.cmb_KCondition.Enabled=this.chk_Size.Checked;
- this.cmb_CCondition.Enabled=this.chk_Size.Checked;
-
- }
- private void chk_AllowFilter_CheckedChanged(object sender, System.EventArgs e)
- {
- if (this.chk_AllowFilter.Checked)
- {
- this.dg_TurnoffButtress.DisplayLayout.Override.AllowRowFiltering = Infragistics.Win.DefaultableBoolean.True;
- }
- else
- {
- this.dg_TurnoffButtress.DisplayLayout.Override.AllowRowFiltering = Infragistics.Win.DefaultableBoolean.False;
-
- }
-
- }
- private void btn_ClearFilter_Click(object sender, System.EventArgs e)
- {
- this.dg_TurnoffButtress.DisplayLayout.Bands[0].ColumnFilters.ClearAllFilters();
- Comm.SetGridSumArea(this.dg_TurnoffButtress);
- }
- private void chk_XH_CheckedChanged(object sender, System.EventArgs e)
- {
- this.txt_XH.Enabled=this.chk_XH.Checked;
- if(!this.chk_XH.Checked)
- {
- this.txt_XH.Clear();
- }
- }
- private void cmb_ProductLine_ValueChanged(object sender, System.EventArgs e)
- {
- string strOut = "";
- string plid = "";
-
- plid = Comm.ObjToStr(cmb_ProductLine.Value);
- cmb_SteelType.Text = string.Empty;
- try
- {
- if(plid.Length > 0)
- {
- //----初始化cmb_ShopSign---------------
- string sql = "SELECT STEELNAME,PLID FROM SCM_R_PLINE_STEELS WHERE PLID='" + plid+ "' ORDER BY STEELNAME ASC";
- DataSet ds = (DataSet)ClientCommon._RemotingHelp.ExecuteMethod("BJZWStuff", "Core.XgMes.Server.JGKC.SteelPlateManager.Common", "GetDataSet", new object[] { sql }, out strOut);
- ds.Tables[0].TableName="SCM_R_PLINE_STEELS";
- Comm.Init_ComboControl(this.cmb_SteelType,"SCM_R_PLINE_STEELS","STEELNAME","STEELNAME",ref ds);
- }
- }
- catch(Exception ex)
- {
- System.Diagnostics.Debug.WriteLine(ex.ToString());
- }
- }
- private void txt_HandleMan_ValueChanged(object sender, System.EventArgs e)
- {
- string handleMan="";
- string strOut="";
- try
- {
- handleMan=Comm.ObjToStr(txt_HandleMan.Value);
- if(handleMan.Length >0 )
- {
- string sql="select MEMO1 from KCJ_BASEDATA where ID_='"+handleMan+"'";
- DataSet ds = (DataSet)ClientCommon._RemotingHelp.ExecuteMethod("BJZWStuff", "Core.XgMes.Server.JGKC.SteelPlateManager.Common", "GetDataSet", new object[] { sql }, out strOut);
- ds.Tables[0].TableName="KCJ_BASEDATA";
- if(ds.Tables["KCJ_BASEDATA"].Rows.Count > 0)
- {
- System.Data.DataRow dr= ds.Tables["KCJ_BASEDATA"].Rows[0];
- cmb_BZ.Value=Comm.ObjToStr(dr["MEMO1"]);
- }
- }
- }
- catch(Exception ex)
- {
- System.Diagnostics.Debug.WriteLine(ex.ToString());
- }
- }
- private void cmb_NewArea_ValueChanged(object sender, System.EventArgs e)
- {
-
- string areaCode = "";
- string strOut = "";
- try
- {
- cmb_NewButtress.Text = string.Empty ;
- areaCode = Comm.ObjToStr(cmb_NewArea.Value);
- if(areaCode.Length > 0)
- {
- string sql = "select buttresscode from kcj_buttress_zw where buttresstype='1' and isvalid='1'" + "and areacode='" + areaCode + "'";
- DataSet ds_ = (DataSet)ClientCommon._RemotingHelp.ExecuteMethod("BJZWStuff", "Core.XgMes.Server.JGKC.SteelPlateManager.Common", "GetDataSet", new object[] { sql }, out strOut);
- ds_.Tables[0].TableName="KCJ_BUTTRESS";
- Comm.Init_ComboControl(this.cmb_NewButtress,"KCJ_BUTTRESS","BUTTRESSCODE","BUTTRESSCODE",ref ds_);
- }
- }
- catch(Exception ex)
- {
- System.Diagnostics.Debug.WriteLine(ex.ToString());
- }
- }
- private void dg_TurnoffButtress_AfterRowActivate(object sender, System.EventArgs e)
- {
- try
- {
- if(this.dg_TurnoffButtress.Rows.Count > 0)
- {
- cmb_OldButtress.Value = Comm.ObjToStr(this.dg_TurnoffButtress.ActiveRow.Cells["BUTTRESS"].Value);
- if(Comm.ObjToStr(this.dg_TurnoffButtress.ActiveRow.Cells["CONDOLENUMBER"].Value).Length > 0)
- {
- if(Comm.ObjToStr(this.dg_TurnoffButtress.ActiveRow.Cells["CONDOLENUMBER"].Value).IndexOf("-")>0)
- {
- this.txt_YDHDate.Text = Comm.ObjToStr(this.dg_TurnoffButtress.ActiveRow.Cells["CONDOLENUMBER"].Value).Split('-')[0];
- this.txt_YDH.Text = Comm.ObjToStr(this.dg_TurnoffButtress.ActiveRow.Cells["CONDOLENUMBER"].Value).Split('-')[1];
- }
- else
- {
- this.txt_YDH.Text = Comm.ObjToStr(this.dg_TurnoffButtress.ActiveRow.Cells["CONDOLENUMBER"].Value);
- this.txt_YDHDate.Clear();
- }
- }
- else
- {
- this.txt_YDHDate.Text = string.Empty;
- this.txt_YDH.Text=string.Empty;
- }
- if(this.txt_XH.Enabled)
- {
- this.txt_XH.Text = Comm.ObjToStr(this.dg_TurnoffButtress.ActiveRow.Cells["BILLETID"].Value);
- }
- }
- }
- catch(Exception ex)
- {
- System.Diagnostics.Debug.WriteLine(ex.ToString());
- }
- }
- private void dg_TurnoffButtress_InitializeRow(object sender, Infragistics.Win.UltraWinGrid.InitializeRowEventArgs e)
- {
- try
- {
-
-
- if(Comm.ObjToStr(e.Row.Cells["SENDBEGINDATE"].Value) != "")
- {
- if (DateTime.Today.AddDays(11).ToString("yyyy-MM-dd").CompareTo(Comm.ObjToStr(e.Row.Cells["SENDBEGINDATE"].Value)) >= 0)
- {
- e.Row.Cells["SENDBEGINDATE"].Appearance.BackColor = Color.Blue;
-
- }
- }
-
- }
- catch( Exception ex)
- {
- System.Diagnostics.Debug.WriteLine(ex.ToString());
- }
- }
- public string sstyle = "";
- private void FrmTurnoffMoveButtress_Load(object sender, System.EventArgs e)
- {
- if ( this.Key.Split('@').Length > 1)
- {
- sstyle = this.Key.Split('@')[1];
- if ( this.Key.Split('@')[2].Equals("QueryReport"))
- {
- this.ultraExpandableGroupBox1.Hide();
- this.ultraToolbarsManager1.Tools["MoveButtress"].SharedProps.Visible=false;
- if (sstyle == "1")
- {
- this.Text = "成品堆位信息查询(板材)";
- }
- else
- {
- this.Text = "成品堆位信息查询(线棒材)";
-
-
- }
-
- }
- }
- if (sstyle == "2" )
- {
- this.dg_TurnoffButtress.DisplayLayout.Bands[0].Columns["CONDOLENUMBER"].Hidden = true;
- this.dg_TurnoffButtress.DisplayLayout.Bands[0].Columns["CONDOLELAYER"].Hidden = true;
- this.dg_TurnoffButtress.DisplayLayout.Bands[0].Columns["BUTTRESSLAYER"].Hidden = true;
- this.dg_TurnoffButtress.DisplayLayout.Bands[0].Columns["PRODUCT_NAME"].Hidden = true;
- this.dg_TurnoffButtress.DisplayLayout.Bands[0].Columns["ZHPDBH"].Hidden = true;
- this.dg_TurnoffButtress.DisplayLayout.Bands[0].Columns["MEMO"].Hidden = true;
- ult_Remark.Visible = true;
-
- }
- Comm.SetGridSumArea(this.dg_TurnoffButtress);
- this.IniCombox();
- Dte_AjustTime.DateTime=System.DateTime.Now;
- }
- private void ultraToolbarsManager1_ToolClick(object sender, Infragistics.Win.UltraWinToolbars.ToolClickEventArgs e)
- {
- switch(e.Tool.Key)
- {
- case "MoveButtress":
- this.Adjust();
- break;
- case "QueryButtress":
- this.QueryButtress(this.GetWhere());
- break;
- case "ExportButtressInfo":
- this.ExportButtressInfo();
- break;
- case "Print":
- this.PrintGrid();
- break;
- case "Close":
- Comm.CloseForm(this);
- break;
- case "PRINT_LOG":
- this.Print_Log();
- break;
- }
- }
- private void PrintGrid()
- {
- FrmPrintButtress frmPrint = new FrmPrintButtress();
- frmPrint.UltraGrid = this.dg_TurnoffButtress;
- frmPrint.UCGridPrint.SubHeadLeftText = "堆位:"+ Comm.ObjToStr(cmb_Buttress.Text);
- frmPrint.UCGridPrint.SubHeadRightText ="打印日期:"+System.DateTime.Now.Date.ToString("yyyy-MM-dd");
- frmPrint.UCGridPrint.HeadText ="板材加工成品堆垛实物反映表";
- // frmPrint.UCGridPrint.SubFootLeftText = Core.Mes.ClientFrameWork.ClientCommon._UserInfo.UserName;
- frmPrint.UCGridPrint.ColumnList["计划号"].IsSelected = true;
- frmPrint.UCGridPrint.ColumnList["合同号"].IsSelected = true;
- frmPrint.UCGridPrint.ColumnList["块序号"].IsSelected = true;
- frmPrint.UCGridPrint.ColumnList["牌号"].IsSelected = true;
- frmPrint.UCGridPrint.ColumnList["块序号"].IsSelected = true;
- frmPrint.UCGridPrint.ColumnList["规格"].IsSelected = true;
- frmPrint.UCGridPrint.ColumnList["重量"].IsSelected = true;
- frmPrint.UCGridPrint.ColumnList["判定性能"].IsSelected = true;
- frmPrint.UCGridPrint.ColumnList["备注"].IsSelected = true;
- frmPrint.ShowDialog();
- }
- #region "IniCombox"
- private void IniCombox()
- {
- string strOut="";
- try
- {
- string strSql = "";
- if (sstyle == "1")
- {
- strSql = "select buttresscode from kcj_buttress_zw where buttresstype='1' and isvalid='1' and AREACODE='对外加工(板材)' order by buttresscode desc";
- }
- else
- {
- strSql = "select buttresscode from kcj_buttress_zw where buttresstype='1' and isvalid='1' AND AREACODE='对外加工(棒线材)' order by buttresscode desc";
- }
- DataSet ds_ = (DataSet)ClientCommon._RemotingHelp.ExecuteMethod("BJZWStuff", "Core.XgMes.Server.JGKC.SteelPlateManager.Common", "GetDataSet", new object[] { strSql }, out strOut);
- ds_.Tables[0].TableName = "KCJ_BUTTRESS";
- Comm.Init_ComboControl(this.cmb_OldButtress, "KCJ_BUTTRESS", "BUTTRESSCODE", "BUTTRESSCODE", ref ds_);
- Comm.Init_ComboControl(this.cmb_NewButtress, "KCJ_BUTTRESS", "BUTTRESSCODE", "BUTTRESSCODE", ref ds_);
- Comm.Init_ComboControl(this.cmb_Buttress, "KCJ_BUTTRESS", "BUTTRESSCODE", "BUTTRESSCODE", ref ds_);
-
-
- //原料区域cmb_NewArea
- string strSql1 = "";
- if (sstyle == "1")
- {
- strSql1 = "select areacode from kcj_area_zw where areatype='1' and isvalid='1' and AREACODE='对外加工(板材)' ";
- }
- else
- {
- strSql1 = "select areacode from kcj_area_zw where areatype='1' and isvalid='1' AND AREACODE='对外加工(棒线材)' ";
- }
- DataSet ds1 = (DataSet)ClientCommon._RemotingHelp.ExecuteMethod("BJZWStuff", "Core.XgMes.Server.JGKC.SteelPlateManager.Common", "GetDataSet", new object[] { strSql1 }, out strOut);
- ds1.Tables[0].TableName = "KCJ_AREA";
- Comm.Init_ComboControl(this.cmb_NewArea, "KCJ_AREA", "AREACODE", "AREACODE", ref ds1);
- Comm.Init_ComboControl(this.cmb_Area, "KCJ_AREA", "AREACODE", "AREACODE", ref ds1);
-
- //班次cmb_BC
- string strSql2 = "select ID_,NAME_ from SCM_BASE_INFO where sort_code='3002'";
- DataSet ds2 = (DataSet)ClientCommon._RemotingHelp.ExecuteMethod("BJZWStuff", "Core.XgMes.Server.JGKC.SteelPlateManager.Common", "GetDataSet", new object[] { strSql2 }, out strOut);
- ds2.Tables[0].TableName="SCM_BASE_INFO";
- Comm.Init_ComboControl(this.cmb_BC,"SCM_BASE_INFO","NAME_","ID_",ref ds2);
-
- //班组cmb_BZ
- string strSql3 = "select ID_,NAME_ from SCM_BASE_INFO where sort_code='3003'";
- DataSet ds3 = (DataSet)ClientCommon._RemotingHelp.ExecuteMethod("BJZWStuff", "Core.XgMes.Server.JGKC.SteelPlateManager.Common", "GetDataSet", new object[] { strSql3 }, out strOut);
- ds3.Tables[0].TableName="SCM_BASE_INFO";
- Comm.Init_ComboControl(this.cmb_BZ,"SCM_BASE_INFO","NAME_","ID_",ref ds3);
-
- string strSql4 = "select ID_,NAME_ from KCJ_BASEDATA where sort_code='514001'";
- DataSet ds4 = (DataSet)ClientCommon._RemotingHelp.ExecuteMethod("BJZWStuff", "Core.XgMes.Server.JGKC.SteelPlateManager.Common", "GetDataSet", new object[] { strSql4 }, out strOut);
- ds4.Tables[0].TableName = "KCJ_BASEDATA";
- Comm.Init_ComboControl(this.txt_HandleMan, "KCJ_BASEDATA", "NAME_", "ID_", ref ds4);
-
- }
- catch(Exception ex)
- {
- System.Diagnostics.Debug.WriteLine(ex.ToString());
- }
- }
- #endregion
- #region "得到查询条件"
- private string GetWhere()
- {
- string where = "";
- if(this.txt_PactNO.Enabled && this.txt_PactNO.Text.Trim().Length > 0)
- {
- where += " AND C.PACTNO LIKE '" + this.txt_PactNO.Text.Trim() + "%'";
- }
- if(this.txt_PlanNO.Enabled && this.txt_PlanNO.Text.Trim().Length > 0)
- {
- where += " AND C.PACTINDEX LIKE '" + this.txt_PlanNO.Text.Trim() + "%'";
- }
- if(this.cmb_Area.Enabled && Comm.ObjToStr(this.cmb_Area.Value).Length > 0)
- {
- where += " AND B.AREA = '" + Comm.ObjToStr(this.cmb_Area.Value) + "'";
- }
- if(this.cmb_Buttress.Enabled && Comm.ObjToStr(this.cmb_Buttress.Value).Length > 0)
- {
- where += " AND B.BUTTRESS ='" + Comm.ObjToStr(this.cmb_Buttress.Value) + "'";
- }
- if(this.cmb_ProductLine.Enabled && Comm.ObjToStr(this.cmb_ProductLine.Value).Length > 0)
- {
- where += " AND A.PRODUCTLINE = '" + Comm.ObjToStr(this.cmb_ProductLine.Value) + "'";
- }
- if(this.cmb_SteelType.Enabled && Comm.ObjToStr(this.cmb_SteelType.Value).Length > 0)
- {
- where += " AND A.DETERMINANTCARDNUMBER = '" + Comm.ObjToStr(this.cmb_SteelType.Value) + "'";
- }
- if(this.txt_Condole.Enabled && this.txt_Condole.Text.Trim().Length > 0)
- {
- where += " AND B.CONDOLENUMBER LIKE '" + this.txt_Condole.Text.Trim() + "%'";
- }
- if(this.chk_RollNum.Checked)
- {
- //where += " AND SUBSTR(A.ROLLNUMBER,1,INSTR(A.ROLLNUMBER,'-')-1)='"+Comm.ObjToStr(this.txt_RollTop.Text.Trim())+"' ";
- if(this.txt_RollNOBegin.Text.Trim().Length==5 && this.txt_RollNOEnd.Text.Trim().Length<5)
- {
- where += " AND A.ROLLNUMBER LIKE '" + this.txt_RollTop.Text.Trim() + "-" + this.txt_RollNOBegin.Text.Trim() + "%'";
- }
- if(this.txt_RollNOBegin.Text.Trim().Length<5 && this.txt_RollNOEnd.Text.Trim().Length==5)
- {
- where += " AND A.ROLLNUMBER LIKE '" + this.txt_RollTop.Text.Trim() + "-" + this.txt_RollNOEnd.Text.Trim() + "%'";
- }
- if(this.txt_RollNOBegin.Text.Trim().Length==5 && this.txt_RollNOEnd.Text.Trim().Length==5)
- {
- where += " AND A.ROLLNUMBER BETWEEN '" + this.txt_RollTop.Text.Trim() + "-" + this.txt_RollNOBegin.Text.Trim() + "' "
- + " AND '" + this.txt_RollTop.Text.Trim() + "-" + this.txt_RollNOEnd.Text.Trim() + "%'";
- }
- }
- if(this.txt_KD.Enabled && Comm.ObjToDecimal(this.txt_KD.Value)>0)
- {
- where += " AND A.WIDTH="+ Comm.ObjToDecimal(this.txt_KD.Value);
- }
- if(this.txt_HD.Enabled && Comm.ObjToDecimal(this.txt_HD.Value)>0)
- {
- where += " AND A.PLY="+Comm.ObjToDecimal(this.txt_HD.Value);
- }
- if(this.txt_CD.Enabled && Comm.ObjToDecimal(this.txt_CD.Value)>0)
- {
- where += " AND A.LENGTH="+Comm.ObjToDecimal(this.txt_CD.Value);
- }
- //宽
- if(this.txt_KS.Enabled && Comm.ObjToStr(cmb_KCondition.Value).Length>0 && Comm.ObjToDecimal(this.txt_KS.Value)>0)
- {
- where += " AND A.WIDTH"+Comm.ObjToStr(cmb_KCondition.Value)+Comm.ObjToDecimal(this.txt_KS.Value);
- }
- //长
- if(this.txt_CS.Enabled && Comm.ObjToStr(cmb_CCondition.Value).Length>0 && Comm.ObjToDecimal(this.txt_CS.Value)>0)
- {
- where += " AND A.LENGTH"+Comm.ObjToStr(cmb_CCondition.Value)+Comm.ObjToDecimal(this.txt_CS.Value);
- }
- //where += " ORDER BY CONDOLENUMBER, BUTTRESSLAYER,CONDOLELAYER ASC ";
- return where;
-
- }
-
- #endregion
- #region "查询垛位信息"
- private void QueryButtress( string _where)
- {
- string strOut = "";
- DataSet ds = new DataSet();
- try
- {
-
- if (chk_SendType.Checked == true)
- {
- this.ds_TurnoffButtress.Tables["KCJ_TURNOFFBUTTRESSLIST"].Clear();
- ds = (DataSet)Core.Mes.ClientFrameWork.ClientCommon._RemotingHelp.ExecuteMethod("BJZWStuff", "Core.XgMes.Server.JGKC.SteelPlateManager.TurnoffMoveButtress",
- "GetTurnoffButtress_SendType", new object[] { _where, ClientCommon._UserInfo.UserRoleID.ToString(), sstyle }, out strOut);
- }
- else
- {
- this.ds_TurnoffButtress.Tables["KCJ_TURNOFFBUTTRESSLIST"].Clear();
- ds = (DataSet)Core.Mes.ClientFrameWork.ClientCommon._RemotingHelp.ExecuteMethod("BJZWStuff", "Core.XgMes.Server.JGKC.SteelPlateManager.TurnoffMoveButtress",
- "GetTurnoffButtress", new object[] { _where, ClientCommon._UserInfo.UserRoleID.ToString(), sstyle }, out strOut);
- }
-
-
- if(strOut == "")
- {
- this.ds_TurnoffButtress.Merge(ds);
- this.ds_TurnoffButtress.Tables["KCJ_TURNOFFBUTTRESSLIST"].AcceptChanges();
- Comm.SetGridSumArea(this.dg_TurnoffButtress);
- dg_TurnoffButtress.DisplayLayout.Bands[0].SortedColumns.Clear();
- //dg_TurnoffButtress.DisplayLayout.Bands[0].SortedColumns.Add("CREATTIME", false);
- }
- else
- {
- MessageBox.Show(strOut,"提示",MessageBoxButtons.OK,MessageBoxIcon.Warning);
- }
- }
- catch(Exception ex)
- {
- System.Diagnostics.Debug.WriteLine(ex.ToString());
- }
-
- }
- #endregion
- #region "导出报表"
- private void ExportButtressInfo()
- {
- if(this.dg_TurnoffButtress.Rows.Count > 0)
- {
- Comm.ExPortExcel(this.dg_TurnoffButtress,this.excelExporter);
- }
- else
- {
- MessageBox.Show("无垛位信息数据,不能导出!","提示",MessageBoxButtons.OK,MessageBoxIcon.Information);
- }
- }
- #endregion
- #region "更新GRIDE"
- private void UpdateGrid(string OButtress,string OCondole,string BilletID,string NButtress,string NCondole)
- {
- string where = "";
- string DelWhere = "";
- string err = "";
- try
- {
- if(BilletID.Length>0)
- {
- where = " AND A.BILLETID='" + BilletID +"' ";
- DelWhere = "BILLETID='" + BilletID +"'";
- }
- else
- {
- where = " AND B.BUTTRESS='"+NButtress+"' AND B.CONDOLENUMBER='"+NCondole+"'";
- DelWhere = "BUTTRESS='"+OButtress+"' AND CONDOLENUMBER='"+OCondole+"'";
- }
- System.Data.DataRow[] rows = this.ds_TurnoffButtress.Tables["KCJ_TURNOFFBUTTRESSLIST"].Select(DelWhere);
- if(rows.Length>0)
- {
- for(int i=rows.Length-1;i>=0;i--)
- {
- this.ds_TurnoffButtress.Tables["KCJ_TURNOFFBUTTRESSLIST"].Rows.Remove(rows[i]);
- }
- }
- DataSet ds = (DataSet)Core.Mes.ClientFrameWork.ClientCommon._RemotingHelp.ExecuteMethod("JTurnoffManager", "Core.XgMes.Server.JGKC.TurnoffManager.TurnoffMoveButtress",
- "GetTurnoffButtress", new object[] { where, ClientCommon._UserInfo.UserRoleID.ToString() ,sstyle}, out err);
- if (ds != null)
- {
- this.ds_TurnoffButtress.Merge(ds);
- this.ds_TurnoffButtress.AcceptChanges();
- }
- Comm.SetGridSumArea(this.dg_TurnoffButtress);
-
- }
- catch(System.Exception ex)
- {
- System.Diagnostics.Debug.WriteLine(ex.ToString());
- }
- }
- #endregion
- #region "调整垛位/吊号/备注"
- private void Adjust()
- {
- string ydh = "";
- string xdh = "";
- string strerr = "";
- string remarktype = "0";
- string strRemark = "";
- try
- {
- if(!CheckAdjust())
- return;
-
- this.txt_YDH.Text = this.txt_YDH.Text.PadLeft(3,'0');
- if(this.txt_XDH.Text.Length>0)
- this.txt_XDH.Text = this.txt_XDH.Text.PadLeft(3,'0');
- if(this.txt_YDH.Text.Length>0)
- this.txt_YDH.Text = this.txt_YDH.Text.PadLeft(3,'0');
- if(this.txt_YDHDate.Text.Length==0)
- {
- ydh = this.txt_YDH.Text;
- }
- else
- {
- ydh = this.txt_YDHDate.Text + "-" + this.txt_YDH.Text;
- }
- // if(this.txt_XDHDate.Text.Length==0 && this.txt_XDH.Text.Length==0)
- // {
- // xdh = this.txt_XDH.Text;
- // }
- // if(this.txt_XDHDate.Text.Length==0 && this.txt_XDH.Text.Length>0)
- // {
- // xdh = this.txt_XDH.Text;
- // }
- if(this.txt_XDHDate.Text.Trim().Length>0 && this.txt_XDH.Text.Trim().Length>0)
- {
- xdh = this.txt_XDHDate.Text.Trim() + "-" + this.txt_XDH.Text.Trim();
- }
- else
- {
- xdh = this.txt_XDH.Text.Trim();
- }
- if (sstyle == "3")
- {
- strRemark = ult_Remark.Text.Trim().ToString();
- }
- else
- { strRemark = txt_YY.Text.Trim().ToString(); }
- System.Collections.ArrayList OButtress = new ArrayList();
- System.Collections.ArrayList NButtress = new ArrayList();
- System.Collections.ArrayList HandleInfo = new ArrayList();
- OButtress.Add(Comm.ObjToStr(this.cmb_OldButtress.Value));
- OButtress.Add(Comm.ObjToStr(ydh));
- OButtress.Add(Comm.ObjToStr(this.txt_XH.Text));
-
- NButtress.Add(Comm.ObjToStr(this.cmb_NewButtress.Text.Length>0?this.cmb_NewButtress.Value:this.cmb_OldButtress.Value));
- NButtress.Add(Comm.ObjToStr(xdh.Length>0?xdh:ydh));
- HandleInfo.Add(Comm.ObjToStr(this.txt_HandleMan.Text));
- HandleInfo.Add(Comm.ObjToStr(this.cmb_BC.Value));
- HandleInfo.Add(Comm.ObjToStr(this.cmb_BZ.Value));
-
- if(this.Chk_Replace.Checked)
- remarktype = "1";
- if(this.Dte_AjustTime.Value != null)
- {
- HandleInfo.Add(Convert.ToDateTime(this.Dte_AjustTime.Value).ToString("yyyy-MM-dd hh:mm:ss"));
- }
- else
- {
- HandleInfo.Add("");
- }
- HandleInfo.Add(Core.Mes.ClientFrameWork.ClientCommon._UserInfo.UserName);
- HandleInfo.Add(sstyle);
- HandleInfo.Add(ClientCommon._UserInfo.UserRoleID.ToString());
- object obj = Core.Mes.ClientFrameWork.ClientCommon._RemotingHelp.ExecuteMethod("BJZWStuff", "Core.XgMes.Server.JGKC.SteelPlateManager.TurnoffMoveButtress",
- "TurnoffButtressAdjust", new object[] { OButtress, NButtress, HandleInfo, strRemark.Trim().ToString(), remarktype }, out strerr);
- if(obj!=null && obj.ToString()=="1")
- {
- MessageBox.Show("调整提交成功","提示",MessageBoxButtons.OK,MessageBoxIcon.Information);
- 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);
- }
- else
- {
- MessageBox.Show(strerr,"提示",MessageBoxButtons.OK,MessageBoxIcon.Warning);
- }
- }
- catch(Exception ex)
- {
- System.Diagnostics.Debug.WriteLine(ex.ToString());
- }
- }
- #endregion
- #region "检查垛位/吊号是否需要调整"
- private bool CheckAdjust()
- {
- string strOut="";
- if(this.txt_YDH.Text.Trim().Length == 0)
- {
- MessageBox.Show("请您确认您要调整的原吊号");
- return false;
- }
- if(Comm.ObjToStr(this.cmb_BC.Value).Length==0)
- {
- MessageBox.Show("请您确认您要转堆的班次");
- return false;
- }
- if(Comm.ObjToStr(this.cmb_BZ.Value).Length==0)
- {
- MessageBox.Show("请您确认您要转堆的班组");
- return false;
- }
- if(Comm.ObjToStr(this.txt_HandleMan.Text).Length==0)
- {
- MessageBox.Show("请您确认您要转堆人");
- return false;
- }
- // if(this.txt_XDHDate.Text.Trim().Length==0 && this.txt_XDH.Text.Length>0)
- // {
- // MessageBox.Show("请您确认新吊号的日期");
- // return false;
- // }
- if(Comm.ObjToStr(this.cmb_OldButtress.Value)=="临时垛位" && Comm.ObjToStr(this.cmb_NewButtress.Value)=="临时垛位")
- {
- MessageBox.Show("请您确认新垛位,新垛位不能为--临时垛位");
- return false;
- }
- string NButtress = Comm.ObjToStr(this.cmb_NewButtress.Value).Length >0? Comm.ObjToStr(this.cmb_NewButtress.Value):Comm.ObjToStr(this.cmb_OldButtress.Value);
- string NCondole = "";
- string OCondole = "";
- if(this.txt_YDHDate.Text.Length==0)
- {
- OCondole = this.txt_YDH.Text;
- }
- else
- {
- OCondole = this.txt_YDHDate.Text + "-" + this.txt_YDH.Text;
- }
- if(this.txt_XDHDate.Text.Length==0)
- {
- NCondole = this.txt_XDH.Text;
- }
- else
- {
- NCondole = this.txt_XDHDate.Text + "-" + this.txt_XDH.Text;
- }
- NCondole = NCondole.Length>0?NCondole:OCondole;
- string sql = "SELECT COUNT(1) FROM KCJ_TURNOFFBUTTRESSLIST_ZW WHERE BUTTRESS='" + NButtress + "' AND CONDOLENUMBER='" + NCondole + "'";
- DataSet ds = (DataSet)ClientCommon._RemotingHelp.ExecuteMethod("BJZWStuff", "Core.XgMes.Server.JGKC.SteelPlateManager.Common", "GetDataSet", new object[] { sql }, out strOut);
- if(Comm.ObjToDecimal(ds.Tables[0].Rows[0][0]) > 0)
- {
- System.Windows.Forms.DialogResult t = MessageBox.Show("吊号" + NCondole + "已在" + NButtress + "堆位","提示",System.Windows.Forms.MessageBoxButtons.YesNo,MessageBoxIcon.Information);
- if(t == System.Windows.Forms.DialogResult.No)
- {
- return false;
- }
- }
- return true;
- }
- #endregion
- #region "Key Event"
- private void txt_XDH_KeyDown(object sender, System.Windows.Forms.KeyEventArgs e)
- {
- string dh ="";
-
- try
- {
- if(e.KeyData == System.Windows.Forms.Keys.Return)
- {
- if(((System.Windows.Forms.Control)sender).Name == "txt_YDH")
- {
- if(this.txt_YDH.Text.Length>0)
- this.txt_YDH.Text = this.txt_YDH.Text.PadLeft(3,'0');
- if(this.txt_YDH.Text.Length==0)
- {
- MessageBox.Show("请您输入吊号","提示",MessageBoxButtons.OK,MessageBoxIcon.Information);
- return;
- }
- else
- {
- if(this.txt_YDHDate.Text.Length==0)
- {
- dh = this.txt_YDH.Text;
- }
- else
- {
- dh = this.txt_YDHDate.Text + "-" + this.txt_YDH.Text;
- }
- string where = " AND B.CONDOLENUMBER='"+dh+"' ";
- QueryButtress(where);
- if(this.dg_TurnoffButtress.Rows.Count>0)
- {
- this.cmb_OldButtress.Value = Comm.ObjToStr(this.dg_TurnoffButtress.Rows[0].Cells["BUTTRESS"].Value);
- }
- else
- {
- MessageBox.Show("库存不存在吊号为"+this.txt_YDH.Text+"的板块","提示",MessageBoxButtons.OK,MessageBoxIcon.Information);
- return;
- }
- }
- }
- if(((System.Windows.Forms.Control)sender).Name == "txt_XDH")
- {
- this.Adjust();
- this.txt_YDH.Focus();
- this.txt_YDH.SelectAll();
- return;
- }
- System.Windows.Forms.SendKeys.Send("{TAB}");
- }
- }
- catch(Exception ex)
- {
- System.Diagnostics.Debug.WriteLine(ex.ToString());
- }
- }
- private void txt_XDH_Enter(object sender, System.EventArgs e)
- {
- if(sender.GetType().ToString()=="Infragistics.Win.UltraWinEditors.UltraTextEditor")
- {
- ((Infragistics.Win.UltraWinEditors.UltraTextEditor)sender).SelectAll();
- }
- if(sender.GetType().ToString()=="Infragistics.Win.UltraWinEditors.UltraNumericEditor")
- {
- ((Infragistics.Win.UltraWinEditors.UltraNumericEditor)sender).SelectAll();
- }
- }
- #endregion
- #region 打印标签、唛头号
- [DllImport("YHBC.dll", EntryPoint="printString")]
- public static extern void PrintString(string str);
- private void Print_Log()
- {
- try
- {
- string strPrint = "";
- if(dg_TurnoffButtress.Selected.Rows.Count >0)
- {
- foreach(Infragistics.Win.UltraWinGrid.UltraGridRow row in this.dg_TurnoffButtress.Selected.Rows)
- {
- strPrint = "";
- strPrint = row.Cells["PACTNO"].Text +" "+ row.Cells["BILLETID"].Text+" "+ row.Cells["DETERMINANTCARDNUMBER"].Text+ " "+row.Cells["SPET"].Text;
- PrintString(strPrint);
- }
- }
- else
- {
- MessageBox.Show("请选择需打印标签的板块信息!","提示",MessageBoxButtons.OK,MessageBoxIcon.Information);
- }
- }
- catch(Exception ex)
- {
- System.Diagnostics.Debug.WriteLine(ex.ToString());
- }
- }
- #endregion
-
- }
- }
|