| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907 |
- 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;
- namespace Core.XgMes.Client.CoilMachiningManage
- {
- /// <summary>
- /// Frm_TurnoffManage 的摘要说明。
- /// </summary>
- public class Frm_TurnoffManage : Mes.ClientFrameWork.FrmBase
- {
- private System.Windows.Forms.Panel panel1;
- private Infragistics.Win.UltraWinToolbars.UltraToolbarsManager ultraToolbarsManager1;
- 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 Infragistics.Win.Misc.UltraGroupBox ultraGroupBox1;
- private Infragistics.Win.Misc.UltraExpandableGroupBox ultraExpandableGroupBox1;
- private Infragistics.Win.Misc.UltraExpandableGroupBoxPanel ultraExpandableGroupBoxPanel1;
- private System.Windows.Forms.Panel panel2;
- private Infragistics.Win.Misc.UltraGroupBox ultraGroupBox2;
- private Infragistics.Win.UltraWinEditors.UltraCheckEditor chk_SelectAll;
- private Infragistics.Win.UltraWinEditors.UltraCheckEditor chk_AllowFilter;
- private Infragistics.Win.UltraWinEditors.UltraTextEditor txt_GangP;
- private Infragistics.Win.UltraWinEditors.UltraTextEditor txt_RollHao;
- private Infragistics.Win.UltraWinEditors.UltraTextEditor txt_PlanID;
- private Infragistics.Win.UltraWinEditors.UltraCheckEditor chk_PactID;
- private Infragistics.Win.UltraWinEditors.UltraTextEditor txt_OrderNO;
- private Infragistics.Win.UltraWinEditors.UltraCheckEditor chk_OrderNO;
- private Infragistics.Win.Misc.UltraLabel Lab_To;
- private Infragistics.Win.UltraWinEditors.UltraCheckEditor chk_CollectTime;
- private Infragistics.Win.UltraWinGrid.UltraGrid gb_Press;
- private Infragistics.Win.UltraWinGrid.UltraGrid gb_Turan;
- private Infragistics.Win.Misc.UltraLabel ultraLabel11;
- private Infragistics.Win.UltraWinEditors.UltraTextEditor txt_PaiHao;
- private Infragistics.Win.Misc.UltraLabel ultraLabel9;
- private Infragistics.Win.UltraWinEditors.UltraNumericEditor txt_WEIGHT;
- private Infragistics.Win.Misc.UltraLabel ultraLabel10;
- private Infragistics.Win.UltraWinEditors.UltraNumericEditor txt_Width;
- private Infragistics.Win.UltraWinEditors.UltraNumericEditor txt_Length;
- private Infragistics.Win.Misc.UltraLabel lab_cd;
- private Infragistics.Win.Misc.UltraLabel ultraLabel17;
- private Infragistics.Win.UltraWinEditors.UltraNumericEditor txt_Ply;
- private Infragistics.Win.Misc.UltraLabel ultraLabel12;
- private Infragistics.Win.Misc.UltraLabel ultraLabel20;
- private Infragistics.Win.Misc.UltraLabel ultraLabel7;
- private Infragistics.Win.Misc.UltraLabel ultraLabel6;
- private Infragistics.Win.Misc.UltraLabel ultraLabel4;
- private Infragistics.Win.Misc.UltraLabel ultraLabel8;
- private Infragistics.Win.UltraWinGrid.UltraCombo cmb_BugReaSon;
- private Infragistics.Win.Misc.UltraLabel ultraLabel25;
- private Infragistics.Win.Misc.UltraLabel ultraLabel2;
- private Infragistics.Win.Misc.UltraLabel ultraLabel3;
- private Infragistics.Win.UltraWinEditors.UltraTextEditor txt_GangpeiH;
- private Infragistics.Win.Misc.UltraLabel ultraLabel1;
- private Infragistics.Win.UltraWinEditors.UltraTextEditor txt_Scid_End_Y;
- private Infragistics.Win.UltraWinEditors.UltraTextEditor txt_Scid_Begin_Y;
- private Infragistics.Win.UltraWinEditors.UltraTextEditor txt_Scid_Top_Y;
- private Infragistics.Win.Misc.UltraLabel ultraLabel5;
- private Infragistics.Win.UltraWinEditors.UltraTextEditor txt_TiShi;
- private Infragistics.Win.UltraWinEditors.UltraCheckEditor chk_RollHao;
- private Infragistics.Win.UltraWinEditors.UltraCheckEditor chk_BanHao;
- private Infragistics.Win.UltraWinEditors.UltraCheckEditor chk_PiHao;
- private Infragistics.Win.UltraWinGrid.UltraCombo cmb_Buress;
- private Infragistics.Win.UltraWinGrid.UltraCombo cmb_ClassStream;
- private Infragistics.Win.UltraWinGrid.UltraCombo cmb_ClassOreder;
- private Infragistics.Win.UltraWinEditors.UltraNumericEditor txt_Num;
- private Infragistics.Win.Misc.UltraButton Btn_Turn;
- private Infragistics.Win.UltraWinEditors.UltraCheckEditor chk_BNumber;
- private Infragistics.Win.UltraWinEditors.UltraTextEditor txt_BNumber;
- private Infragistics.Win.UltraWinEditors.UltraDateTimeEditor dte_Time;
- private Infragistics.Win.UltraWinEditors.UltraTextEditor txt_PiHao_Begin;
- private Infragistics.Win.UltraWinEditors.UltraTextEditor txt_Pihao_Top;
- private Infragistics.Win.UltraWinEditors.UltraTextEditor txt_PIhao_End;
- private Infragistics.Win.UltraWinEditors.UltraCheckEditor ultraCheckEditor1;
- private Infragistics.Win.UltraWinGrid.UltraCombo cmb_QuYu;
- private Infragistics.Win.UltraWinEditors.UltraDateTimeEditor dte_BeginTime;
- private Infragistics.Win.UltraWinEditors.UltraDateTimeEditor dte_EndTime;
- private Infragistics.Win.UltraWinGrid.ExcelExport.UltraGridExcelExporter excelExporter;
- private Infragistics.Win.Misc.UltraLabel ultraLabel13;
- private Infragistics.Win.UltraWinEditors.UltraTextEditor txt_ReMark;
- private Infragistics.Win.UltraWinGrid.UltraCombo cmb_ProcL;
- private Infragistics.Win.UltraWinEditors.UltraCheckEditor chk_ProcLine;
- private Infragistics.Win.UltraWinEditors.UltraTextEditor txt_Plact;
- private Infragistics.Win.UltraWinDataSource.UltraDataSource ultraDataSource1;
- private Infragistics.Win.UltraWinGrid.UltraCombo txt_ZHPD;
- private Infragistics.Win.UltraWinGrid.UltraCombo cmb_area;
- private Infragistics.Win.Misc.UltraLabel ultraLabel14;
- private Infragistics.Win.Misc.UltraLabel ultraLabel16;
- private Infragistics.Win.Misc.UltraLabel ultraLabel15;
- private Infragistics.Win.UltraWinGrid.UltraCombo cmb_Gylx;
- private Infragistics.Win.UltraWinGrid.UltraCombo cmb_plid;
- private Infragistics.Win.UltraWinEditors.UltraTextEditor txt_Seq;
- private System.ComponentModel.IContainer components;
- public Frm_TurnoffManage()
- {
- //
- // 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 ultraToolbar2 = new Infragistics.Win.UltraWinToolbars.UltraToolbar("工具栏");
- Infragistics.Win.UltraWinToolbars.ButtonTool buttonTool13 = new Infragistics.Win.UltraWinToolbars.ButtonTool("QUERY");
- Infragistics.Win.UltraWinToolbars.ButtonTool buttonTool14 = new Infragistics.Win.UltraWinToolbars.ButtonTool("ADD");
- Infragistics.Win.UltraWinToolbars.ButtonTool buttonTool15 = new Infragistics.Win.UltraWinToolbars.ButtonTool("DEL");
- Infragistics.Win.UltraWinToolbars.ButtonTool buttonTool16 = new Infragistics.Win.UltraWinToolbars.ButtonTool("TO_EXCEL");
- Infragistics.Win.UltraWinToolbars.ButtonTool buttonTool17 = new Infragistics.Win.UltraWinToolbars.ButtonTool("REF");
- Infragistics.Win.UltraWinToolbars.ButtonTool buttonTool18 = new Infragistics.Win.UltraWinToolbars.ButtonTool("Close");
- Infragistics.Win.UltraWinToolbars.ButtonTool buttonTool19 = new Infragistics.Win.UltraWinToolbars.ButtonTool("Close");
- Infragistics.Win.UltraWinToolbars.ButtonTool buttonTool20 = new Infragistics.Win.UltraWinToolbars.ButtonTool("QUERY");
- Infragistics.Win.UltraWinToolbars.ButtonTool buttonTool21 = new Infragistics.Win.UltraWinToolbars.ButtonTool("ADD");
- Infragistics.Win.UltraWinToolbars.ButtonTool buttonTool22 = new Infragistics.Win.UltraWinToolbars.ButtonTool("DEL");
- Infragistics.Win.UltraWinToolbars.ButtonTool buttonTool23 = new Infragistics.Win.UltraWinToolbars.ButtonTool("TO_EXCEL");
- Infragistics.Win.UltraWinToolbars.ButtonTool buttonTool24 = new Infragistics.Win.UltraWinToolbars.ButtonTool("REF");
- Infragistics.Win.Appearance appearance59 = new Infragistics.Win.Appearance();
- Infragistics.Win.Appearance appearance60 = new Infragistics.Win.Appearance();
- Infragistics.Win.Appearance appearance61 = new Infragistics.Win.Appearance();
- Infragistics.Win.Appearance appearance62 = new Infragistics.Win.Appearance();
- Infragistics.Win.Appearance appearance63 = new Infragistics.Win.Appearance();
- Infragistics.Win.Appearance appearance64 = new Infragistics.Win.Appearance();
- Infragistics.Win.Appearance appearance65 = new Infragistics.Win.Appearance();
- Infragistics.Win.Appearance appearance66 = new Infragistics.Win.Appearance();
- Infragistics.Win.Appearance appearance67 = new Infragistics.Win.Appearance();
- Infragistics.Win.Appearance appearance68 = new Infragistics.Win.Appearance();
- Infragistics.Win.Appearance appearance69 = new Infragistics.Win.Appearance();
- Infragistics.Win.Appearance appearance70 = new Infragistics.Win.Appearance();
- Infragistics.Win.Appearance appearance71 = new Infragistics.Win.Appearance();
- Infragistics.Win.UltraWinGrid.UltraGridBand ultraGridBand3 = new Infragistics.Win.UltraWinGrid.UltraGridBand("Band 0", -1);
- Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn71 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("SHIP_INVNO");
- Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn72 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("OLD_SAMPL_NO");
- Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn73 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("SLAB_NO");
- Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn74 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("ORD_NO");
- Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn75 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("ORD_SEQ");
- Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn76 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("DEVLMT_DTIME");
- Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn77 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("ZSLAB_PLY");
- Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn78 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("ZSLAB_WIDTH");
- Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn79 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("ZSLAB_LENGTH");
- Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn80 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("ZSLAB_WEIGHT");
- Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn81 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("ZSLAB_NUM");
- Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn82 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("STL_GRD");
- Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn83 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("TOT_DEC_GRD");
- Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn84 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("REM");
- Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn85 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("TRANS_CAR_NO");
- Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn86 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("ZLZS_NO");
- Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn87 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("BUTTRESS");
- Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn88 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("CREATOR");
- Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn89 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("CREATETIME");
- Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn90 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("PCLASSORDER");
- Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn91 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("PCLASSTEAM");
- Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn92 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("WORKORDER_ID");
- Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn93 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("COIL_NO_ID");
- Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn94 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("PCTIME");
- Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn95 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("TURNOFFCOLLECT_LOG");
- Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn96 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("CRK_CD1");
- Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn97 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("GYLX");
- Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn98 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("STOCKTYPE");
- Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn99 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("XJJL");
- Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn100 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("STOVENO", 0);
- Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn101 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("BAHCT_NUMBER", 1);
- Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn102 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("SX_BIAOZHUN", 2);
- Infragistics.Win.Appearance appearance72 = new Infragistics.Win.Appearance();
- Infragistics.Win.UltraWinGrid.SummarySettings summarySettings6 = new Infragistics.Win.UltraWinGrid.SummarySettings("", Infragistics.Win.UltraWinGrid.SummaryType.Sum, null, "ZSLAB_NUM", 10, true, "Band 0", 0, Infragistics.Win.UltraWinGrid.SummaryPosition.UseSummaryPositionColumn, "ZSLAB_NUM", 10, true);
- Infragistics.Win.Appearance appearance73 = new Infragistics.Win.Appearance();
- Infragistics.Win.UltraWinGrid.SummarySettings summarySettings7 = new Infragistics.Win.UltraWinGrid.SummarySettings("", Infragistics.Win.UltraWinGrid.SummaryType.Sum, null, "ZSLAB_WEIGHT", 9, true, "Band 0", 0, Infragistics.Win.UltraWinGrid.SummaryPosition.UseSummaryPositionColumn, "ZSLAB_WEIGHT", 9, true);
- Infragistics.Win.Appearance appearance74 = new Infragistics.Win.Appearance();
- Infragistics.Win.Appearance appearance75 = new Infragistics.Win.Appearance();
- Infragistics.Win.Appearance appearance76 = new Infragistics.Win.Appearance();
- Infragistics.Win.Appearance appearance77 = new Infragistics.Win.Appearance();
- Infragistics.Win.Appearance appearance78 = new Infragistics.Win.Appearance();
- Infragistics.Win.Appearance appearance79 = new Infragistics.Win.Appearance();
- Infragistics.Win.Appearance appearance80 = new Infragistics.Win.Appearance();
- Infragistics.Win.Appearance appearance81 = new Infragistics.Win.Appearance();
- Infragistics.Win.Appearance appearance82 = new Infragistics.Win.Appearance();
- Infragistics.Win.Appearance appearance83 = new Infragistics.Win.Appearance();
- Infragistics.Win.Appearance appearance84 = new Infragistics.Win.Appearance();
- Infragistics.Win.Appearance appearance85 = new Infragistics.Win.Appearance();
- Infragistics.Win.Appearance appearance86 = new Infragistics.Win.Appearance();
- Infragistics.Win.Appearance appearance87 = new Infragistics.Win.Appearance();
- Infragistics.Win.Appearance appearance88 = new Infragistics.Win.Appearance();
- Infragistics.Win.Appearance appearance89 = new Infragistics.Win.Appearance();
- Infragistics.Win.Appearance appearance90 = new Infragistics.Win.Appearance();
- Infragistics.Win.Appearance appearance91 = new Infragistics.Win.Appearance();
- Infragistics.Win.Appearance appearance92 = new Infragistics.Win.Appearance();
- Infragistics.Win.Appearance appearance93 = new Infragistics.Win.Appearance();
- Infragistics.Win.Appearance appearance94 = new Infragistics.Win.Appearance();
- Infragistics.Win.Appearance appearance95 = new Infragistics.Win.Appearance();
- Infragistics.Win.Appearance appearance96 = new Infragistics.Win.Appearance();
- Infragistics.Win.Appearance appearance97 = new Infragistics.Win.Appearance();
- Infragistics.Win.Appearance appearance98 = new Infragistics.Win.Appearance();
- Infragistics.Win.UltraWinGrid.UltraGridBand ultraGridBand4 = new Infragistics.Win.UltraWinGrid.UltraGridBand("Band 0", -1);
- Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn103 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("SHIP_INVNO");
- Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn104 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("OLD_SAMPL_NO");
- Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn105 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("SLAB_NO");
- Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn106 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("ORD_NO");
- Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn107 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("ORD_SEQ");
- Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn108 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("DEVLMT_DTIME");
- Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn109 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("ZSLAB_PLY");
- Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn110 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("ZSLAB_WIDTH");
- Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn111 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("ZSLAB_LENGTH");
- Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn112 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("ZSLAB_WEIGHT");
- Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn113 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("ZSLAB_NUM");
- Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn114 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("STL_GRD");
- Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn115 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("TOT_DEC_GRD");
- Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn116 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("REM");
- Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn117 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("TRANS_CAR_NO");
- Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn118 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("ZLZS_NO");
- Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn119 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("BUTTRESS");
- Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn120 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("CREATOR");
- Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn121 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("CREATETIME");
- Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn122 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("INCLASSORDER");
- Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn123 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("INCLASSTEAM");
- Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn124 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("WORKORDER_ID");
- Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn125 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("COIL_NO_ID");
- Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn126 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("PCTIME");
- Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn127 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("TURNOFFCOLLECT_LOG");
- Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn128 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("FLAG");
- Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn129 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("STCOKTYPE");
- Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn130 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("ORD_USE_CD");
- Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn131 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("REMARK");
- Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn132 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("GYLX");
- Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn133 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("DETERMINANTRESULT");
- Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn134 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("GZQX");
- Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn135 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("GYQX");
- Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn136 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("XJJL_WEIGHT");
- Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn137 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("STOVENO", 0);
- Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn138 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("BAHCT_NUMBER", 1);
- Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn139 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("SX_BIAOZHUN", 2);
- Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn140 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("SERIAL_NUMBER", 3);
- Infragistics.Win.Appearance appearance99 = new Infragistics.Win.Appearance();
- Infragistics.Win.UltraWinGrid.SummarySettings summarySettings8 = new Infragistics.Win.UltraWinGrid.SummarySettings("", Infragistics.Win.UltraWinGrid.SummaryType.Sum, null, "ZSLAB_WEIGHT", 9, true, "Band 0", 0, Infragistics.Win.UltraWinGrid.SummaryPosition.UseSummaryPositionColumn, "ZSLAB_WEIGHT", 9, true);
- Infragistics.Win.Appearance appearance100 = new Infragistics.Win.Appearance();
- Infragistics.Win.UltraWinGrid.SummarySettings summarySettings9 = new Infragistics.Win.UltraWinGrid.SummarySettings("", Infragistics.Win.UltraWinGrid.SummaryType.Sum, null, "ZSLAB_NUM", 10, true, "Band 0", 0, Infragistics.Win.UltraWinGrid.SummaryPosition.UseSummaryPositionColumn, "ZSLAB_NUM", 10, true);
- Infragistics.Win.Appearance appearance101 = new Infragistics.Win.Appearance();
- Infragistics.Win.UltraWinGrid.SummarySettings summarySettings10 = new Infragistics.Win.UltraWinGrid.SummarySettings("", Infragistics.Win.UltraWinGrid.SummaryType.Sum, "", "XJJL_WEIGHT", 33, true, "Band 0", 0, Infragistics.Win.UltraWinGrid.SummaryPosition.UseSummaryPositionColumn, null, -1, false);
- Infragistics.Win.Appearance appearance102 = new Infragistics.Win.Appearance();
- Infragistics.Win.Appearance appearance103 = new Infragistics.Win.Appearance();
- Infragistics.Win.Appearance appearance104 = new Infragistics.Win.Appearance();
- Infragistics.Win.Appearance appearance105 = new Infragistics.Win.Appearance();
- Infragistics.Win.Appearance appearance106 = new Infragistics.Win.Appearance();
- Infragistics.Win.Appearance appearance107 = new Infragistics.Win.Appearance();
- Infragistics.Win.Appearance appearance108 = new Infragistics.Win.Appearance();
- Infragistics.Win.Appearance appearance109 = new Infragistics.Win.Appearance();
- Infragistics.Win.Appearance appearance110 = new Infragistics.Win.Appearance();
- Infragistics.Win.Appearance appearance111 = new Infragistics.Win.Appearance();
- Infragistics.Win.Appearance appearance112 = new Infragistics.Win.Appearance();
- Infragistics.Win.Appearance appearance113 = new Infragistics.Win.Appearance();
- Infragistics.Win.Appearance appearance114 = new Infragistics.Win.Appearance();
- Infragistics.Win.Appearance appearance115 = new Infragistics.Win.Appearance();
- Infragistics.Win.Appearance appearance116 = new Infragistics.Win.Appearance();
- this.panel1 = new System.Windows.Forms.Panel();
- this._panel1_Toolbars_Dock_Area_Left = new Infragistics.Win.UltraWinToolbars.UltraToolbarsDockArea();
- this.ultraToolbarsManager1 = new Infragistics.Win.UltraWinToolbars.UltraToolbarsManager(this.components);
- 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.ultraGroupBox1 = new Infragistics.Win.Misc.UltraGroupBox();
- this.cmb_ProcL = new Infragistics.Win.UltraWinGrid.UltraCombo();
- this.chk_ProcLine = new Infragistics.Win.UltraWinEditors.UltraCheckEditor();
- this.dte_EndTime = new Infragistics.Win.UltraWinEditors.UltraDateTimeEditor();
- this.dte_BeginTime = new Infragistics.Win.UltraWinEditors.UltraDateTimeEditor();
- this.cmb_QuYu = new Infragistics.Win.UltraWinGrid.UltraCombo();
- this.ultraCheckEditor1 = new Infragistics.Win.UltraWinEditors.UltraCheckEditor();
- this.txt_PIhao_End = new Infragistics.Win.UltraWinEditors.UltraTextEditor();
- this.txt_Pihao_Top = new Infragistics.Win.UltraWinEditors.UltraTextEditor();
- this.txt_BNumber = new Infragistics.Win.UltraWinEditors.UltraTextEditor();
- this.chk_BNumber = new Infragistics.Win.UltraWinEditors.UltraCheckEditor();
- this.txt_PiHao_Begin = new Infragistics.Win.UltraWinEditors.UltraTextEditor();
- this.chk_PiHao = new Infragistics.Win.UltraWinEditors.UltraCheckEditor();
- this.chk_SelectAll = new Infragistics.Win.UltraWinEditors.UltraCheckEditor();
- this.chk_AllowFilter = new Infragistics.Win.UltraWinEditors.UltraCheckEditor();
- this.txt_GangP = new Infragistics.Win.UltraWinEditors.UltraTextEditor();
- this.chk_BanHao = new Infragistics.Win.UltraWinEditors.UltraCheckEditor();
- this.txt_RollHao = new Infragistics.Win.UltraWinEditors.UltraTextEditor();
- this.chk_RollHao = new Infragistics.Win.UltraWinEditors.UltraCheckEditor();
- this.txt_PlanID = new Infragistics.Win.UltraWinEditors.UltraTextEditor();
- this.chk_PactID = new Infragistics.Win.UltraWinEditors.UltraCheckEditor();
- this.txt_OrderNO = new Infragistics.Win.UltraWinEditors.UltraTextEditor();
- this.chk_OrderNO = new Infragistics.Win.UltraWinEditors.UltraCheckEditor();
- this.Lab_To = new Infragistics.Win.Misc.UltraLabel();
- this.chk_CollectTime = new Infragistics.Win.UltraWinEditors.UltraCheckEditor();
- this.ultraExpandableGroupBox1 = new Infragistics.Win.Misc.UltraExpandableGroupBox();
- this.ultraExpandableGroupBoxPanel1 = new Infragistics.Win.Misc.UltraExpandableGroupBoxPanel();
- this.gb_Press = new Infragistics.Win.UltraWinGrid.UltraGrid();
- this.panel2 = new System.Windows.Forms.Panel();
- this.txt_Seq = new Infragistics.Win.UltraWinEditors.UltraTextEditor();
- this.cmb_plid = new Infragistics.Win.UltraWinGrid.UltraCombo();
- this.cmb_Gylx = new Infragistics.Win.UltraWinGrid.UltraCombo();
- this.ultraLabel16 = new Infragistics.Win.Misc.UltraLabel();
- this.ultraLabel15 = new Infragistics.Win.Misc.UltraLabel();
- this.cmb_area = new Infragistics.Win.UltraWinGrid.UltraCombo();
- this.ultraLabel14 = new Infragistics.Win.Misc.UltraLabel();
- this.txt_ZHPD = new Infragistics.Win.UltraWinGrid.UltraCombo();
- this.txt_Plact = new Infragistics.Win.UltraWinEditors.UltraTextEditor();
- this.txt_ReMark = new Infragistics.Win.UltraWinEditors.UltraTextEditor();
- this.ultraLabel13 = new Infragistics.Win.Misc.UltraLabel();
- this.dte_Time = new Infragistics.Win.UltraWinEditors.UltraDateTimeEditor();
- this.Btn_Turn = new Infragistics.Win.Misc.UltraButton();
- this.ultraLabel11 = new Infragistics.Win.Misc.UltraLabel();
- this.txt_PaiHao = new Infragistics.Win.UltraWinEditors.UltraTextEditor();
- this.txt_Num = new Infragistics.Win.UltraWinEditors.UltraNumericEditor();
- this.ultraLabel9 = new Infragistics.Win.Misc.UltraLabel();
- this.txt_WEIGHT = new Infragistics.Win.UltraWinEditors.UltraNumericEditor();
- this.ultraLabel10 = new Infragistics.Win.Misc.UltraLabel();
- this.txt_Width = new Infragistics.Win.UltraWinEditors.UltraNumericEditor();
- this.txt_Length = new Infragistics.Win.UltraWinEditors.UltraNumericEditor();
- this.lab_cd = new Infragistics.Win.Misc.UltraLabel();
- this.ultraLabel17 = new Infragistics.Win.Misc.UltraLabel();
- this.txt_Ply = new Infragistics.Win.UltraWinEditors.UltraNumericEditor();
- this.ultraLabel12 = new Infragistics.Win.Misc.UltraLabel();
- this.ultraLabel20 = new Infragistics.Win.Misc.UltraLabel();
- this.cmb_ClassStream = new Infragistics.Win.UltraWinGrid.UltraCombo();
- this.ultraLabel7 = new Infragistics.Win.Misc.UltraLabel();
- this.cmb_ClassOreder = new Infragistics.Win.UltraWinGrid.UltraCombo();
- this.ultraLabel6 = new Infragistics.Win.Misc.UltraLabel();
- this.cmb_Buress = new Infragistics.Win.UltraWinGrid.UltraCombo();
- this.ultraLabel4 = new Infragistics.Win.Misc.UltraLabel();
- this.ultraLabel8 = new Infragistics.Win.Misc.UltraLabel();
- this.cmb_BugReaSon = new Infragistics.Win.UltraWinGrid.UltraCombo();
- this.ultraLabel25 = new Infragistics.Win.Misc.UltraLabel();
- this.ultraLabel2 = new Infragistics.Win.Misc.UltraLabel();
- this.ultraLabel3 = new Infragistics.Win.Misc.UltraLabel();
- this.txt_GangpeiH = new Infragistics.Win.UltraWinEditors.UltraTextEditor();
- this.ultraLabel1 = new Infragistics.Win.Misc.UltraLabel();
- this.txt_Scid_End_Y = new Infragistics.Win.UltraWinEditors.UltraTextEditor();
- this.txt_Scid_Begin_Y = new Infragistics.Win.UltraWinEditors.UltraTextEditor();
- this.txt_Scid_Top_Y = new Infragistics.Win.UltraWinEditors.UltraTextEditor();
- this.ultraLabel5 = new Infragistics.Win.Misc.UltraLabel();
- this.txt_TiShi = new Infragistics.Win.UltraWinEditors.UltraTextEditor();
- this.ultraGroupBox2 = new Infragistics.Win.Misc.UltraGroupBox();
- this.gb_Turan = new Infragistics.Win.UltraWinGrid.UltraGrid();
- this.excelExporter = new Infragistics.Win.UltraWinGrid.ExcelExport.UltraGridExcelExporter();
- this.ultraDataSource1 = new Infragistics.Win.UltraWinDataSource.UltraDataSource();
- this.panel1.SuspendLayout();
- ((System.ComponentModel.ISupportInitialize)(this.ultraToolbarsManager1)).BeginInit();
- ((System.ComponentModel.ISupportInitialize)(this.ultraGroupBox1)).BeginInit();
- this.ultraGroupBox1.SuspendLayout();
- ((System.ComponentModel.ISupportInitialize)(this.cmb_ProcL)).BeginInit();
- ((System.ComponentModel.ISupportInitialize)(this.dte_EndTime)).BeginInit();
- ((System.ComponentModel.ISupportInitialize)(this.dte_BeginTime)).BeginInit();
- ((System.ComponentModel.ISupportInitialize)(this.cmb_QuYu)).BeginInit();
- ((System.ComponentModel.ISupportInitialize)(this.txt_PIhao_End)).BeginInit();
- ((System.ComponentModel.ISupportInitialize)(this.txt_Pihao_Top)).BeginInit();
- ((System.ComponentModel.ISupportInitialize)(this.txt_BNumber)).BeginInit();
- ((System.ComponentModel.ISupportInitialize)(this.txt_PiHao_Begin)).BeginInit();
- ((System.ComponentModel.ISupportInitialize)(this.txt_GangP)).BeginInit();
- ((System.ComponentModel.ISupportInitialize)(this.txt_RollHao)).BeginInit();
- ((System.ComponentModel.ISupportInitialize)(this.txt_PlanID)).BeginInit();
- ((System.ComponentModel.ISupportInitialize)(this.txt_OrderNO)).BeginInit();
- ((System.ComponentModel.ISupportInitialize)(this.ultraExpandableGroupBox1)).BeginInit();
- this.ultraExpandableGroupBox1.SuspendLayout();
- this.ultraExpandableGroupBoxPanel1.SuspendLayout();
- ((System.ComponentModel.ISupportInitialize)(this.gb_Press)).BeginInit();
- this.panel2.SuspendLayout();
- ((System.ComponentModel.ISupportInitialize)(this.txt_Seq)).BeginInit();
- ((System.ComponentModel.ISupportInitialize)(this.cmb_plid)).BeginInit();
- ((System.ComponentModel.ISupportInitialize)(this.cmb_Gylx)).BeginInit();
- ((System.ComponentModel.ISupportInitialize)(this.cmb_area)).BeginInit();
- ((System.ComponentModel.ISupportInitialize)(this.txt_ZHPD)).BeginInit();
- ((System.ComponentModel.ISupportInitialize)(this.txt_Plact)).BeginInit();
- ((System.ComponentModel.ISupportInitialize)(this.txt_ReMark)).BeginInit();
- ((System.ComponentModel.ISupportInitialize)(this.dte_Time)).BeginInit();
- ((System.ComponentModel.ISupportInitialize)(this.txt_PaiHao)).BeginInit();
- ((System.ComponentModel.ISupportInitialize)(this.txt_Num)).BeginInit();
- ((System.ComponentModel.ISupportInitialize)(this.txt_WEIGHT)).BeginInit();
- ((System.ComponentModel.ISupportInitialize)(this.txt_Width)).BeginInit();
- ((System.ComponentModel.ISupportInitialize)(this.txt_Length)).BeginInit();
- ((System.ComponentModel.ISupportInitialize)(this.txt_Ply)).BeginInit();
- ((System.ComponentModel.ISupportInitialize)(this.cmb_ClassStream)).BeginInit();
- ((System.ComponentModel.ISupportInitialize)(this.cmb_ClassOreder)).BeginInit();
- ((System.ComponentModel.ISupportInitialize)(this.cmb_Buress)).BeginInit();
- ((System.ComponentModel.ISupportInitialize)(this.cmb_BugReaSon)).BeginInit();
- ((System.ComponentModel.ISupportInitialize)(this.txt_GangpeiH)).BeginInit();
- ((System.ComponentModel.ISupportInitialize)(this.txt_Scid_End_Y)).BeginInit();
- ((System.ComponentModel.ISupportInitialize)(this.txt_Scid_Begin_Y)).BeginInit();
- ((System.ComponentModel.ISupportInitialize)(this.txt_Scid_Top_Y)).BeginInit();
- ((System.ComponentModel.ISupportInitialize)(this.txt_TiShi)).BeginInit();
- ((System.ComponentModel.ISupportInitialize)(this.ultraGroupBox2)).BeginInit();
- this.ultraGroupBox2.SuspendLayout();
- ((System.ComponentModel.ISupportInitialize)(this.gb_Turan)).BeginInit();
- ((System.ComponentModel.ISupportInitialize)(this.ultraDataSource1)).BeginInit();
- this.SuspendLayout();
- //
- // 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(968, 28);
- this.panel1.TabIndex = 0;
- //
- // _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, 4);
- this._panel1_Toolbars_Dock_Area_Left.ToolbarsManager = this.ultraToolbarsManager1;
- //
- // ultraToolbarsManager1
- //
- this.ultraToolbarsManager1.DesignerFlags = 1;
- this.ultraToolbarsManager1.DockWithinContainer = this.panel1;
- this.ultraToolbarsManager1.ShowFullMenusDelay = 500;
- this.ultraToolbarsManager1.Style = Infragistics.Win.UltraWinToolbars.ToolbarStyle.Office2000;
- ultraToolbar2.DockedColumn = 0;
- ultraToolbar2.DockedRow = 0;
- ultraToolbar2.Text = "工具栏";
- buttonTool13.InstanceProps.IsFirstInGroup = true;
- buttonTool14.InstanceProps.IsFirstInGroup = true;
- buttonTool16.InstanceProps.IsFirstInGroup = true;
- buttonTool17.InstanceProps.IsFirstInGroup = true;
- buttonTool18.InstanceProps.IsFirstInGroup = true;
- ultraToolbar2.Tools.AddRange(new Infragistics.Win.UltraWinToolbars.ToolBase[] {
- buttonTool13,
- buttonTool14,
- buttonTool15,
- buttonTool16,
- buttonTool17,
- buttonTool18});
- this.ultraToolbarsManager1.Toolbars.AddRange(new Infragistics.Win.UltraWinToolbars.UltraToolbar[] {
- ultraToolbar2});
- this.ultraToolbarsManager1.ToolbarSettings.AllowCustomize = Infragistics.Win.DefaultableBoolean.False;
- buttonTool19.SharedProps.Caption = "关闭";
- buttonTool19.SharedProps.DisplayStyle = Infragistics.Win.UltraWinToolbars.ToolDisplayStyle.ImageAndText;
- buttonTool20.SharedProps.Caption = "查询";
- buttonTool20.SharedProps.DisplayStyle = Infragistics.Win.UltraWinToolbars.ToolDisplayStyle.ImageAndText;
- buttonTool21.SharedProps.Caption = "登记";
- buttonTool21.SharedProps.DisplayStyle = Infragistics.Win.UltraWinToolbars.ToolDisplayStyle.ImageAndText;
- buttonTool22.SharedProps.Caption = "撤销";
- buttonTool22.SharedProps.DisplayStyle = Infragistics.Win.UltraWinToolbars.ToolDisplayStyle.ImageAndText;
- buttonTool23.SharedProps.Caption = "导出";
- buttonTool23.SharedProps.DisplayStyle = Infragistics.Win.UltraWinToolbars.ToolDisplayStyle.ImageAndText;
- buttonTool24.SharedProps.Caption = "刷新成品收集槽";
- buttonTool24.SharedProps.DisplayStyle = Infragistics.Win.UltraWinToolbars.ToolDisplayStyle.ImageAndText;
- this.ultraToolbarsManager1.Tools.AddRange(new Infragistics.Win.UltraWinToolbars.ToolBase[] {
- buttonTool19,
- buttonTool20,
- buttonTool21,
- buttonTool22,
- buttonTool23,
- buttonTool24});
- this.ultraToolbarsManager1.ToolClick += new Infragistics.Win.UltraWinToolbars.ToolClickEventHandler(this.ultraToolbarsManager1_ToolClick);
- //
- // _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(968, 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, 4);
- 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(968, 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, 28);
- this._panel1_Toolbars_Dock_Area_Bottom.Name = "_panel1_Toolbars_Dock_Area_Bottom";
- this._panel1_Toolbars_Dock_Area_Bottom.Size = new System.Drawing.Size(968, 0);
- this._panel1_Toolbars_Dock_Area_Bottom.ToolbarsManager = this.ultraToolbarsManager1;
- //
- // ultraGroupBox1
- //
- this.ultraGroupBox1.Controls.Add(this.cmb_ProcL);
- this.ultraGroupBox1.Controls.Add(this.chk_ProcLine);
- this.ultraGroupBox1.Controls.Add(this.dte_EndTime);
- this.ultraGroupBox1.Controls.Add(this.dte_BeginTime);
- this.ultraGroupBox1.Controls.Add(this.cmb_QuYu);
- this.ultraGroupBox1.Controls.Add(this.ultraCheckEditor1);
- this.ultraGroupBox1.Controls.Add(this.txt_PIhao_End);
- this.ultraGroupBox1.Controls.Add(this.txt_Pihao_Top);
- this.ultraGroupBox1.Controls.Add(this.txt_BNumber);
- this.ultraGroupBox1.Controls.Add(this.chk_BNumber);
- this.ultraGroupBox1.Controls.Add(this.txt_PiHao_Begin);
- this.ultraGroupBox1.Controls.Add(this.chk_PiHao);
- this.ultraGroupBox1.Controls.Add(this.chk_SelectAll);
- this.ultraGroupBox1.Controls.Add(this.chk_AllowFilter);
- this.ultraGroupBox1.Controls.Add(this.txt_GangP);
- this.ultraGroupBox1.Controls.Add(this.chk_BanHao);
- this.ultraGroupBox1.Controls.Add(this.txt_RollHao);
- this.ultraGroupBox1.Controls.Add(this.chk_RollHao);
- this.ultraGroupBox1.Controls.Add(this.txt_PlanID);
- this.ultraGroupBox1.Controls.Add(this.chk_PactID);
- this.ultraGroupBox1.Controls.Add(this.txt_OrderNO);
- this.ultraGroupBox1.Controls.Add(this.chk_OrderNO);
- this.ultraGroupBox1.Controls.Add(this.Lab_To);
- this.ultraGroupBox1.Controls.Add(this.chk_CollectTime);
- this.ultraGroupBox1.Dock = System.Windows.Forms.DockStyle.Top;
- this.ultraGroupBox1.Location = new System.Drawing.Point(0, 28);
- this.ultraGroupBox1.Name = "ultraGroupBox1";
- this.ultraGroupBox1.Size = new System.Drawing.Size(968, 56);
- this.ultraGroupBox1.SupportThemes = false;
- this.ultraGroupBox1.TabIndex = 1;
- //
- // cmb_ProcL
- //
- this.cmb_ProcL.CharacterCasing = System.Windows.Forms.CharacterCasing.Normal;
- this.cmb_ProcL.DisplayMember = "";
- this.cmb_ProcL.DropDownStyle = Infragistics.Win.UltraWinGrid.UltraComboStyle.DropDownList;
- this.cmb_ProcL.Enabled = false;
- this.cmb_ProcL.FlatMode = true;
- this.cmb_ProcL.Location = new System.Drawing.Point(794, 30);
- this.cmb_ProcL.Name = "cmb_ProcL";
- this.cmb_ProcL.Size = new System.Drawing.Size(90, 19);
- this.cmb_ProcL.TabIndex = 281;
- this.cmb_ProcL.Tag = "";
- this.cmb_ProcL.ValueMember = "";
- //
- // chk_ProcLine
- //
- this.chk_ProcLine.Location = new System.Drawing.Point(732, 32);
- this.chk_ProcLine.Name = "chk_ProcLine";
- this.chk_ProcLine.Size = new System.Drawing.Size(64, 16);
- this.chk_ProcLine.TabIndex = 280;
- this.chk_ProcLine.TabStop = false;
- this.chk_ProcLine.Text = "产线";
- this.chk_ProcLine.CheckedChanged += new System.EventHandler(this.chk_ProcLine_CheckedChanged);
- //
- // dte_EndTime
- //
- this.dte_EndTime.Enabled = false;
- this.dte_EndTime.FlatMode = true;
- this.dte_EndTime.Location = new System.Drawing.Point(70, 30);
- this.dte_EndTime.Name = "dte_EndTime";
- this.dte_EndTime.Size = new System.Drawing.Size(116, 19);
- this.dte_EndTime.TabIndex = 279;
- //
- // dte_BeginTime
- //
- this.dte_BeginTime.Enabled = false;
- this.dte_BeginTime.FlatMode = true;
- this.dte_BeginTime.Location = new System.Drawing.Point(70, 8);
- this.dte_BeginTime.Name = "dte_BeginTime";
- this.dte_BeginTime.Size = new System.Drawing.Size(116, 19);
- this.dte_BeginTime.TabIndex = 278;
- //
- // cmb_QuYu
- //
- this.cmb_QuYu.CharacterCasing = System.Windows.Forms.CharacterCasing.Normal;
- appearance59.BackColor = System.Drawing.SystemColors.Window;
- appearance59.BorderColor = System.Drawing.SystemColors.InactiveCaption;
- this.cmb_QuYu.DisplayLayout.Appearance = appearance59;
- this.cmb_QuYu.DisplayLayout.BorderStyle = Infragistics.Win.UIElementBorderStyle.Solid;
- this.cmb_QuYu.DisplayLayout.CaptionVisible = Infragistics.Win.DefaultableBoolean.False;
- appearance60.BackColor = System.Drawing.SystemColors.ActiveBorder;
- appearance60.BackColor2 = System.Drawing.SystemColors.ControlDark;
- appearance60.BackGradientStyle = Infragistics.Win.GradientStyle.Vertical;
- appearance60.BorderColor = System.Drawing.SystemColors.Window;
- this.cmb_QuYu.DisplayLayout.GroupByBox.Appearance = appearance60;
- appearance61.ForeColor = System.Drawing.SystemColors.GrayText;
- this.cmb_QuYu.DisplayLayout.GroupByBox.BandLabelAppearance = appearance61;
- this.cmb_QuYu.DisplayLayout.GroupByBox.BorderStyle = Infragistics.Win.UIElementBorderStyle.Solid;
- appearance62.BackColor = System.Drawing.SystemColors.ControlLightLight;
- appearance62.BackColor2 = System.Drawing.SystemColors.Control;
- appearance62.BackGradientStyle = Infragistics.Win.GradientStyle.Horizontal;
- appearance62.ForeColor = System.Drawing.SystemColors.GrayText;
- this.cmb_QuYu.DisplayLayout.GroupByBox.PromptAppearance = appearance62;
- this.cmb_QuYu.DisplayLayout.MaxColScrollRegions = 1;
- this.cmb_QuYu.DisplayLayout.MaxRowScrollRegions = 1;
- appearance63.BackColor = System.Drawing.SystemColors.Window;
- appearance63.ForeColor = System.Drawing.SystemColors.ControlText;
- this.cmb_QuYu.DisplayLayout.Override.ActiveCellAppearance = appearance63;
- appearance64.BackColor = System.Drawing.SystemColors.Highlight;
- appearance64.ForeColor = System.Drawing.SystemColors.HighlightText;
- this.cmb_QuYu.DisplayLayout.Override.ActiveRowAppearance = appearance64;
- this.cmb_QuYu.DisplayLayout.Override.BorderStyleCell = Infragistics.Win.UIElementBorderStyle.Dotted;
- this.cmb_QuYu.DisplayLayout.Override.BorderStyleRow = Infragistics.Win.UIElementBorderStyle.Dotted;
- appearance65.BackColor = System.Drawing.SystemColors.Window;
- this.cmb_QuYu.DisplayLayout.Override.CardAreaAppearance = appearance65;
- appearance66.BorderColor = System.Drawing.Color.Silver;
- appearance66.TextTrimming = Infragistics.Win.TextTrimming.EllipsisCharacter;
- this.cmb_QuYu.DisplayLayout.Override.CellAppearance = appearance66;
- this.cmb_QuYu.DisplayLayout.Override.CellClickAction = Infragistics.Win.UltraWinGrid.CellClickAction.EditAndSelectText;
- this.cmb_QuYu.DisplayLayout.Override.CellPadding = 0;
- appearance67.BackColor = System.Drawing.SystemColors.Control;
- appearance67.BackColor2 = System.Drawing.SystemColors.ControlDark;
- appearance67.BackGradientAlignment = Infragistics.Win.GradientAlignment.Element;
- appearance67.BackGradientStyle = Infragistics.Win.GradientStyle.Horizontal;
- appearance67.BorderColor = System.Drawing.SystemColors.Window;
- this.cmb_QuYu.DisplayLayout.Override.GroupByRowAppearance = appearance67;
- appearance68.TextHAlign = Infragistics.Win.HAlign.Left;
- this.cmb_QuYu.DisplayLayout.Override.HeaderAppearance = appearance68;
- this.cmb_QuYu.DisplayLayout.Override.HeaderClickAction = Infragistics.Win.UltraWinGrid.HeaderClickAction.SortMulti;
- this.cmb_QuYu.DisplayLayout.Override.HeaderStyle = Infragistics.Win.HeaderStyle.WindowsXPCommand;
- appearance69.BackColor = System.Drawing.SystemColors.Window;
- appearance69.BorderColor = System.Drawing.Color.Silver;
- this.cmb_QuYu.DisplayLayout.Override.RowAppearance = appearance69;
- this.cmb_QuYu.DisplayLayout.Override.RowSelectors = Infragistics.Win.DefaultableBoolean.False;
- appearance70.BackColor = System.Drawing.SystemColors.ControlLight;
- this.cmb_QuYu.DisplayLayout.Override.TemplateAddRowAppearance = appearance70;
- this.cmb_QuYu.DisplayLayout.ScrollBounds = Infragistics.Win.UltraWinGrid.ScrollBounds.ScrollToFill;
- this.cmb_QuYu.DisplayLayout.ScrollStyle = Infragistics.Win.UltraWinGrid.ScrollStyle.Immediate;
- this.cmb_QuYu.DisplayLayout.ViewStyleBand = Infragistics.Win.UltraWinGrid.ViewStyleBand.OutlookGroupBy;
- this.cmb_QuYu.DisplayMember = "";
- this.cmb_QuYu.Enabled = false;
- this.cmb_QuYu.FlatMode = true;
- this.cmb_QuYu.Location = new System.Drawing.Point(640, 30);
- this.cmb_QuYu.Name = "cmb_QuYu";
- this.cmb_QuYu.Size = new System.Drawing.Size(86, 19);
- this.cmb_QuYu.TabIndex = 277;
- this.cmb_QuYu.TabStop = false;
- this.cmb_QuYu.ValueMember = "";
- //
- // ultraCheckEditor1
- //
- this.ultraCheckEditor1.Location = new System.Drawing.Point(580, 32);
- this.ultraCheckEditor1.Name = "ultraCheckEditor1";
- this.ultraCheckEditor1.Size = new System.Drawing.Size(52, 16);
- this.ultraCheckEditor1.TabIndex = 276;
- this.ultraCheckEditor1.TabStop = false;
- this.ultraCheckEditor1.Text = "区域";
- this.ultraCheckEditor1.CheckedChanged += new System.EventHandler(this.ultraCheckEditor1_CheckedChanged);
- //
- // txt_PIhao_End
- //
- this.txt_PIhao_End.AutoSize = true;
- this.txt_PIhao_End.Enabled = false;
- this.txt_PIhao_End.FlatMode = true;
- this.txt_PIhao_End.Location = new System.Drawing.Point(545, 30);
- this.txt_PIhao_End.Name = "txt_PIhao_End";
- this.txt_PIhao_End.Size = new System.Drawing.Size(29, 19);
- this.txt_PIhao_End.TabIndex = 275;
- this.txt_PIhao_End.TabStop = false;
- this.txt_PIhao_End.Tag = "";
- //
- // txt_Pihao_Top
- //
- this.txt_Pihao_Top.AutoSize = true;
- this.txt_Pihao_Top.Enabled = false;
- this.txt_Pihao_Top.FlatMode = true;
- this.txt_Pihao_Top.Location = new System.Drawing.Point(456, 30);
- this.txt_Pihao_Top.Name = "txt_Pihao_Top";
- this.txt_Pihao_Top.Size = new System.Drawing.Size(90, 19);
- this.txt_Pihao_Top.TabIndex = 274;
- this.txt_Pihao_Top.TabStop = false;
- this.txt_Pihao_Top.Tag = "";
- //
- // txt_BNumber
- //
- this.txt_BNumber.AutoSize = true;
- this.txt_BNumber.Enabled = false;
- this.txt_BNumber.FlatMode = true;
- this.txt_BNumber.Location = new System.Drawing.Point(794, 6);
- this.txt_BNumber.Name = "txt_BNumber";
- this.txt_BNumber.Size = new System.Drawing.Size(90, 19);
- this.txt_BNumber.TabIndex = 273;
- this.txt_BNumber.TabStop = false;
- this.txt_BNumber.Tag = "";
- //
- // chk_BNumber
- //
- this.chk_BNumber.Location = new System.Drawing.Point(732, 10);
- this.chk_BNumber.Name = "chk_BNumber";
- this.chk_BNumber.Size = new System.Drawing.Size(48, 16);
- this.chk_BNumber.TabIndex = 272;
- this.chk_BNumber.TabStop = false;
- this.chk_BNumber.Text = "批号";
- this.chk_BNumber.CheckedChanged += new System.EventHandler(this.chk_BNumber_CheckedChanged);
- //
- // txt_PiHao_Begin
- //
- this.txt_PiHao_Begin.AutoSize = true;
- this.txt_PiHao_Begin.Enabled = false;
- this.txt_PiHao_Begin.FlatMode = true;
- this.txt_PiHao_Begin.Location = new System.Drawing.Point(430, 30);
- this.txt_PiHao_Begin.Name = "txt_PiHao_Begin";
- this.txt_PiHao_Begin.Size = new System.Drawing.Size(26, 19);
- this.txt_PiHao_Begin.TabIndex = 269;
- this.txt_PiHao_Begin.TabStop = false;
- this.txt_PiHao_Begin.Tag = "";
- //
- // chk_PiHao
- //
- this.chk_PiHao.Location = new System.Drawing.Point(358, 32);
- this.chk_PiHao.Name = "chk_PiHao";
- this.chk_PiHao.Size = new System.Drawing.Size(72, 16);
- this.chk_PiHao.TabIndex = 268;
- this.chk_PiHao.TabStop = false;
- this.chk_PiHao.Text = "卷板包号";
- this.chk_PiHao.CheckedChanged += new System.EventHandler(this.chk_PiHao_CheckedChanged);
- //
- // chk_SelectAll
- //
- this.chk_SelectAll.FlatMode = true;
- this.chk_SelectAll.Location = new System.Drawing.Point(892, 30);
- this.chk_SelectAll.Name = "chk_SelectAll";
- this.chk_SelectAll.Size = new System.Drawing.Size(50, 16);
- this.chk_SelectAll.TabIndex = 267;
- this.chk_SelectAll.Text = "全选";
- this.chk_SelectAll.CheckedChanged += new System.EventHandler(this.chk_SelectAll_CheckedChanged);
- //
- // chk_AllowFilter
- //
- this.chk_AllowFilter.Location = new System.Drawing.Point(892, 4);
- this.chk_AllowFilter.Name = "chk_AllowFilter";
- this.chk_AllowFilter.Size = new System.Drawing.Size(48, 20);
- this.chk_AllowFilter.TabIndex = 266;
- this.chk_AllowFilter.TabStop = false;
- this.chk_AllowFilter.Text = "过滤";
- this.chk_AllowFilter.CheckedChanged += new System.EventHandler(this.chk_AllowFilter_CheckedChanged);
- //
- // txt_GangP
- //
- this.txt_GangP.AutoSize = true;
- this.txt_GangP.Enabled = false;
- this.txt_GangP.FlatMode = true;
- this.txt_GangP.Location = new System.Drawing.Point(640, 8);
- this.txt_GangP.Name = "txt_GangP";
- this.txt_GangP.Size = new System.Drawing.Size(86, 19);
- this.txt_GangP.TabIndex = 265;
- this.txt_GangP.TabStop = false;
- this.txt_GangP.Tag = "";
- //
- // chk_BanHao
- //
- this.chk_BanHao.Location = new System.Drawing.Point(580, 10);
- this.chk_BanHao.Name = "chk_BanHao";
- this.chk_BanHao.Size = new System.Drawing.Size(60, 16);
- this.chk_BanHao.TabIndex = 264;
- this.chk_BanHao.TabStop = false;
- this.chk_BanHao.Text = "板坯号";
- this.chk_BanHao.CheckedChanged += new System.EventHandler(this.chk_BanHao_CheckedChanged);
- //
- // txt_RollHao
- //
- this.txt_RollHao.AutoSize = true;
- this.txt_RollHao.Enabled = false;
- this.txt_RollHao.FlatMode = true;
- this.txt_RollHao.Location = new System.Drawing.Point(430, 8);
- this.txt_RollHao.Name = "txt_RollHao";
- this.txt_RollHao.Size = new System.Drawing.Size(144, 19);
- this.txt_RollHao.TabIndex = 263;
- this.txt_RollHao.TabStop = false;
- this.txt_RollHao.Tag = "";
- //
- // chk_RollHao
- //
- this.chk_RollHao.Location = new System.Drawing.Point(358, 12);
- this.chk_RollHao.Name = "chk_RollHao";
- this.chk_RollHao.Size = new System.Drawing.Size(60, 16);
- this.chk_RollHao.TabIndex = 262;
- this.chk_RollHao.TabStop = false;
- this.chk_RollHao.Text = "钢卷号";
- this.chk_RollHao.CheckedChanged += new System.EventHandler(this.chk_RollHao_CheckedChanged);
- //
- // txt_PlanID
- //
- this.txt_PlanID.AutoSize = true;
- this.txt_PlanID.Enabled = false;
- this.txt_PlanID.FlatMode = true;
- this.txt_PlanID.Location = new System.Drawing.Point(248, 30);
- this.txt_PlanID.Name = "txt_PlanID";
- this.txt_PlanID.Size = new System.Drawing.Size(104, 19);
- this.txt_PlanID.TabIndex = 261;
- this.txt_PlanID.TabStop = false;
- this.txt_PlanID.Tag = "";
- //
- // chk_PactID
- //
- this.chk_PactID.Location = new System.Drawing.Point(190, 34);
- this.chk_PactID.Name = "chk_PactID";
- this.chk_PactID.Size = new System.Drawing.Size(60, 16);
- this.chk_PactID.TabIndex = 260;
- this.chk_PactID.TabStop = false;
- this.chk_PactID.Text = "合同号";
- this.chk_PactID.CheckedChanged += new System.EventHandler(this.chk_PactID_CheckedChanged);
- //
- // txt_OrderNO
- //
- this.txt_OrderNO.AutoSize = true;
- this.txt_OrderNO.Enabled = false;
- this.txt_OrderNO.FlatMode = true;
- this.txt_OrderNO.Location = new System.Drawing.Point(248, 8);
- this.txt_OrderNO.Name = "txt_OrderNO";
- this.txt_OrderNO.Size = new System.Drawing.Size(104, 19);
- this.txt_OrderNO.TabIndex = 259;
- this.txt_OrderNO.TabStop = false;
- this.txt_OrderNO.Tag = "";
- //
- // chk_OrderNO
- //
- this.chk_OrderNO.Location = new System.Drawing.Point(190, 12);
- this.chk_OrderNO.Name = "chk_OrderNO";
- this.chk_OrderNO.Size = new System.Drawing.Size(60, 16);
- this.chk_OrderNO.TabIndex = 258;
- this.chk_OrderNO.TabStop = false;
- this.chk_OrderNO.Text = "订单号";
- this.chk_OrderNO.CheckedChanged += new System.EventHandler(this.chk_OrderNO_CheckedChanged);
- //
- // Lab_To
- //
- this.Lab_To.FlatMode = true;
- this.Lab_To.Location = new System.Drawing.Point(48, 32);
- this.Lab_To.Name = "Lab_To";
- this.Lab_To.Size = new System.Drawing.Size(17, 16);
- this.Lab_To.TabIndex = 257;
- this.Lab_To.Text = "到";
- //
- // chk_CollectTime
- //
- this.chk_CollectTime.ButtonStyle = Infragistics.Win.UIElementButtonStyle.Office2003ToolbarButton;
- this.chk_CollectTime.Location = new System.Drawing.Point(20, 10);
- this.chk_CollectTime.Name = "chk_CollectTime";
- this.chk_CollectTime.Size = new System.Drawing.Size(48, 16);
- this.chk_CollectTime.TabIndex = 256;
- this.chk_CollectTime.TabStop = false;
- this.chk_CollectTime.Text = "时间";
- this.chk_CollectTime.CheckedChanged += new System.EventHandler(this.chk_CollectTime_CheckedChanged);
- //
- // ultraExpandableGroupBox1
- //
- this.ultraExpandableGroupBox1.Controls.Add(this.ultraExpandableGroupBoxPanel1);
- this.ultraExpandableGroupBox1.Dock = System.Windows.Forms.DockStyle.Top;
- this.ultraExpandableGroupBox1.ExpandedSize = new System.Drawing.Size(0, 0);
- this.ultraExpandableGroupBox1.Location = new System.Drawing.Point(0, 84);
- this.ultraExpandableGroupBox1.Name = "ultraExpandableGroupBox1";
- this.ultraExpandableGroupBox1.Size = new System.Drawing.Size(968, 206);
- this.ultraExpandableGroupBox1.SupportThemes = false;
- this.ultraExpandableGroupBox1.TabIndex = 2;
- this.ultraExpandableGroupBox1.Text = "编辑区";
- //
- // ultraExpandableGroupBoxPanel1
- //
- this.ultraExpandableGroupBoxPanel1.Controls.Add(this.gb_Press);
- this.ultraExpandableGroupBoxPanel1.Controls.Add(this.panel2);
- this.ultraExpandableGroupBoxPanel1.Dock = System.Windows.Forms.DockStyle.Fill;
- this.ultraExpandableGroupBoxPanel1.Location = new System.Drawing.Point(3, 19);
- this.ultraExpandableGroupBoxPanel1.Name = "ultraExpandableGroupBoxPanel1";
- this.ultraExpandableGroupBoxPanel1.Size = new System.Drawing.Size(962, 184);
- this.ultraExpandableGroupBoxPanel1.TabIndex = 0;
- //
- // gb_Press
- //
- appearance71.BackColor = System.Drawing.Color.Ivory;
- this.gb_Press.DisplayLayout.Appearance = appearance71;
- ultraGridColumn71.Header.Caption = "出库单号";
- ultraGridColumn71.Header.VisiblePosition = 0;
- ultraGridColumn71.Hidden = true;
- ultraGridColumn71.RowLayoutColumnInfo.OriginX = 26;
- ultraGridColumn71.RowLayoutColumnInfo.OriginY = 0;
- ultraGridColumn71.RowLayoutColumnInfo.PreferredCellSize = new System.Drawing.Size(77, 0);
- ultraGridColumn71.RowLayoutColumnInfo.SpanX = 1;
- ultraGridColumn71.RowLayoutColumnInfo.SpanY = 1;
- ultraGridColumn72.Header.Caption = "钢卷号";
- ultraGridColumn72.Header.VisiblePosition = 1;
- ultraGridColumn72.RowLayoutColumnInfo.OriginX = 2;
- ultraGridColumn72.RowLayoutColumnInfo.OriginY = 0;
- ultraGridColumn72.RowLayoutColumnInfo.PreferredCellSize = new System.Drawing.Size(94, 0);
- ultraGridColumn72.RowLayoutColumnInfo.SpanX = 1;
- ultraGridColumn72.RowLayoutColumnInfo.SpanY = 1;
- ultraGridColumn73.Header.Caption = "板坯号";
- ultraGridColumn73.Header.VisiblePosition = 2;
- ultraGridColumn73.RowLayoutColumnInfo.OriginX = 3;
- ultraGridColumn73.RowLayoutColumnInfo.OriginY = 0;
- ultraGridColumn73.RowLayoutColumnInfo.PreferredCellSize = new System.Drawing.Size(96, 0);
- ultraGridColumn73.RowLayoutColumnInfo.SpanX = 1;
- ultraGridColumn73.RowLayoutColumnInfo.SpanY = 1;
- ultraGridColumn74.Header.Caption = "合同号";
- ultraGridColumn74.Header.VisiblePosition = 3;
- ultraGridColumn74.RowLayoutColumnInfo.OriginX = 6;
- ultraGridColumn74.RowLayoutColumnInfo.OriginY = 0;
- ultraGridColumn74.RowLayoutColumnInfo.PreferredCellSize = new System.Drawing.Size(99, 0);
- ultraGridColumn74.RowLayoutColumnInfo.SpanX = 1;
- ultraGridColumn74.RowLayoutColumnInfo.SpanY = 1;
- ultraGridColumn75.Header.Caption = "订单号";
- ultraGridColumn75.Header.VisiblePosition = 4;
- ultraGridColumn75.RowLayoutColumnInfo.OriginX = 8;
- ultraGridColumn75.RowLayoutColumnInfo.OriginY = 0;
- ultraGridColumn75.RowLayoutColumnInfo.PreferredCellSize = new System.Drawing.Size(101, 0);
- ultraGridColumn75.RowLayoutColumnInfo.SpanX = 1;
- ultraGridColumn75.RowLayoutColumnInfo.SpanY = 1;
- ultraGridColumn76.Header.Caption = "交货期";
- ultraGridColumn76.Header.VisiblePosition = 5;
- ultraGridColumn76.RowLayoutColumnInfo.OriginX = 23;
- ultraGridColumn76.RowLayoutColumnInfo.OriginY = 0;
- ultraGridColumn76.RowLayoutColumnInfo.SpanX = 1;
- ultraGridColumn76.RowLayoutColumnInfo.SpanY = 1;
- ultraGridColumn77.Header.Caption = "厚度";
- ultraGridColumn77.Header.VisiblePosition = 6;
- ultraGridColumn77.RowLayoutColumnInfo.OriginX = 11;
- ultraGridColumn77.RowLayoutColumnInfo.OriginY = 0;
- ultraGridColumn77.RowLayoutColumnInfo.PreferredCellSize = new System.Drawing.Size(60, 0);
- ultraGridColumn77.RowLayoutColumnInfo.SpanX = 1;
- ultraGridColumn77.RowLayoutColumnInfo.SpanY = 1;
- ultraGridColumn78.Header.Caption = "宽度";
- ultraGridColumn78.Header.VisiblePosition = 7;
- ultraGridColumn78.RowLayoutColumnInfo.OriginX = 12;
- ultraGridColumn78.RowLayoutColumnInfo.OriginY = 0;
- ultraGridColumn78.RowLayoutColumnInfo.PreferredCellSize = new System.Drawing.Size(60, 0);
- ultraGridColumn78.RowLayoutColumnInfo.SpanX = 1;
- ultraGridColumn78.RowLayoutColumnInfo.SpanY = 1;
- ultraGridColumn79.Header.Caption = "长度";
- ultraGridColumn79.Header.VisiblePosition = 8;
- ultraGridColumn79.RowLayoutColumnInfo.OriginX = 13;
- ultraGridColumn79.RowLayoutColumnInfo.OriginY = 0;
- ultraGridColumn79.RowLayoutColumnInfo.PreferredCellSize = new System.Drawing.Size(45, 0);
- ultraGridColumn79.RowLayoutColumnInfo.SpanX = 1;
- ultraGridColumn79.RowLayoutColumnInfo.SpanY = 1;
- ultraGridColumn80.Header.Caption = "重量";
- ultraGridColumn80.Header.VisiblePosition = 9;
- ultraGridColumn80.RowLayoutColumnInfo.OriginX = 15;
- ultraGridColumn80.RowLayoutColumnInfo.OriginY = 0;
- ultraGridColumn80.RowLayoutColumnInfo.SpanX = 1;
- ultraGridColumn80.RowLayoutColumnInfo.SpanY = 1;
- ultraGridColumn81.Header.Caption = "数量";
- ultraGridColumn81.Header.VisiblePosition = 10;
- ultraGridColumn81.RowLayoutColumnInfo.OriginX = 14;
- ultraGridColumn81.RowLayoutColumnInfo.OriginY = 0;
- ultraGridColumn81.RowLayoutColumnInfo.PreferredCellSize = new System.Drawing.Size(67, 0);
- ultraGridColumn81.RowLayoutColumnInfo.SpanX = 1;
- ultraGridColumn81.RowLayoutColumnInfo.SpanY = 1;
- ultraGridColumn82.Header.Caption = "牌号";
- ultraGridColumn82.Header.VisiblePosition = 11;
- ultraGridColumn82.RowLayoutColumnInfo.OriginX = 10;
- ultraGridColumn82.RowLayoutColumnInfo.OriginY = 0;
- ultraGridColumn82.RowLayoutColumnInfo.PreferredCellSize = new System.Drawing.Size(71, 0);
- ultraGridColumn82.RowLayoutColumnInfo.SpanX = 1;
- ultraGridColumn82.RowLayoutColumnInfo.SpanY = 1;
- ultraGridColumn83.Header.Caption = "综合判定";
- ultraGridColumn83.Header.VisiblePosition = 12;
- ultraGridColumn83.RowLayoutColumnInfo.OriginX = 17;
- ultraGridColumn83.RowLayoutColumnInfo.OriginY = 0;
- ultraGridColumn83.RowLayoutColumnInfo.PreferredCellSize = new System.Drawing.Size(64, 0);
- ultraGridColumn83.RowLayoutColumnInfo.SpanX = 1;
- ultraGridColumn83.RowLayoutColumnInfo.SpanY = 1;
- ultraGridColumn84.Header.Caption = "特记事项";
- ultraGridColumn84.Header.VisiblePosition = 13;
- ultraGridColumn84.RowLayoutColumnInfo.OriginX = 21;
- ultraGridColumn84.RowLayoutColumnInfo.OriginY = 0;
- ultraGridColumn84.RowLayoutColumnInfo.SpanX = 1;
- ultraGridColumn84.RowLayoutColumnInfo.SpanY = 1;
- ultraGridColumn85.Header.Caption = "车辆号";
- ultraGridColumn85.Header.VisiblePosition = 14;
- ultraGridColumn85.Hidden = true;
- ultraGridColumn85.RowLayoutColumnInfo.OriginX = 23;
- ultraGridColumn85.RowLayoutColumnInfo.OriginY = 0;
- ultraGridColumn85.RowLayoutColumnInfo.PreferredCellSize = new System.Drawing.Size(78, 0);
- ultraGridColumn85.RowLayoutColumnInfo.SpanX = 1;
- ultraGridColumn85.RowLayoutColumnInfo.SpanY = 1;
- ultraGridColumn86.Header.Caption = "质保书编号";
- ultraGridColumn86.Header.VisiblePosition = 15;
- ultraGridColumn86.RowLayoutColumnInfo.OriginX = 20;
- ultraGridColumn86.RowLayoutColumnInfo.OriginY = 0;
- ultraGridColumn86.RowLayoutColumnInfo.PreferredCellSize = new System.Drawing.Size(69, 0);
- ultraGridColumn86.RowLayoutColumnInfo.SpanX = 1;
- ultraGridColumn86.RowLayoutColumnInfo.SpanY = 1;
- ultraGridColumn87.Header.Caption = "垛位";
- ultraGridColumn87.Header.VisiblePosition = 16;
- ultraGridColumn87.RowLayoutColumnInfo.OriginX = 9;
- ultraGridColumn87.RowLayoutColumnInfo.OriginY = 0;
- ultraGridColumn87.RowLayoutColumnInfo.PreferredCellSize = new System.Drawing.Size(90, 0);
- ultraGridColumn87.RowLayoutColumnInfo.SpanX = 1;
- ultraGridColumn87.RowLayoutColumnInfo.SpanY = 1;
- ultraGridColumn88.Header.Caption = "登记人";
- ultraGridColumn88.Header.VisiblePosition = 17;
- ultraGridColumn88.RowLayoutColumnInfo.OriginX = 27;
- ultraGridColumn88.RowLayoutColumnInfo.OriginY = 0;
- ultraGridColumn88.RowLayoutColumnInfo.SpanX = 1;
- ultraGridColumn88.RowLayoutColumnInfo.SpanY = 1;
- ultraGridColumn89.Header.Caption = "登记时间";
- ultraGridColumn89.Header.VisiblePosition = 18;
- ultraGridColumn89.RowLayoutColumnInfo.OriginX = 28;
- ultraGridColumn89.RowLayoutColumnInfo.OriginY = 0;
- ultraGridColumn89.RowLayoutColumnInfo.SpanX = 1;
- ultraGridColumn89.RowLayoutColumnInfo.SpanY = 1;
- ultraGridColumn90.Header.Caption = "生产班次";
- ultraGridColumn90.Header.VisiblePosition = 19;
- ultraGridColumn90.RowLayoutColumnInfo.OriginX = 24;
- ultraGridColumn90.RowLayoutColumnInfo.OriginY = 0;
- ultraGridColumn90.RowLayoutColumnInfo.PreferredCellSize = new System.Drawing.Size(8, 0);
- ultraGridColumn90.RowLayoutColumnInfo.SpanX = 1;
- ultraGridColumn90.RowLayoutColumnInfo.SpanY = 1;
- ultraGridColumn91.Header.Caption = "生产班组";
- ultraGridColumn91.Header.VisiblePosition = 20;
- ultraGridColumn91.RowLayoutColumnInfo.OriginX = 25;
- ultraGridColumn91.RowLayoutColumnInfo.OriginY = 0;
- ultraGridColumn91.RowLayoutColumnInfo.PreferredCellSize = new System.Drawing.Size(64, 0);
- ultraGridColumn91.RowLayoutColumnInfo.SpanX = 1;
- ultraGridColumn91.RowLayoutColumnInfo.SpanY = 1;
- ultraGridColumn92.Header.Caption = "工单号";
- ultraGridColumn92.Header.VisiblePosition = 21;
- ultraGridColumn92.RowLayoutColumnInfo.OriginX = 4;
- ultraGridColumn92.RowLayoutColumnInfo.OriginY = 0;
- ultraGridColumn92.RowLayoutColumnInfo.PreferredCellSize = new System.Drawing.Size(83, 0);
- ultraGridColumn92.RowLayoutColumnInfo.SpanX = 1;
- ultraGridColumn92.RowLayoutColumnInfo.SpanY = 1;
- ultraGridColumn93.Header.Caption = "卷板包号";
- ultraGridColumn93.Header.VisiblePosition = 23;
- ultraGridColumn93.RowLayoutColumnInfo.OriginX = 0;
- ultraGridColumn93.RowLayoutColumnInfo.OriginY = 0;
- ultraGridColumn93.RowLayoutColumnInfo.PreferredCellSize = new System.Drawing.Size(107, 0);
- ultraGridColumn93.RowLayoutColumnInfo.SpanX = 1;
- ultraGridColumn93.RowLayoutColumnInfo.SpanY = 1;
- ultraGridColumn94.Header.Caption = "生产时间";
- ultraGridColumn94.Header.VisiblePosition = 22;
- ultraGridColumn94.RowLayoutColumnInfo.OriginX = 26;
- ultraGridColumn94.RowLayoutColumnInfo.OriginY = 0;
- ultraGridColumn94.RowLayoutColumnInfo.PreferredCellSize = new System.Drawing.Size(94, 0);
- ultraGridColumn94.RowLayoutColumnInfo.SpanX = 1;
- ultraGridColumn94.RowLayoutColumnInfo.SpanY = 1;
- ultraGridColumn95.Header.VisiblePosition = 24;
- ultraGridColumn95.Hidden = true;
- ultraGridColumn95.RowLayoutColumnInfo.OriginX = 29;
- ultraGridColumn95.RowLayoutColumnInfo.OriginY = 0;
- ultraGridColumn95.RowLayoutColumnInfo.SpanX = 1;
- ultraGridColumn95.RowLayoutColumnInfo.SpanY = 1;
- ultraGridColumn96.Header.Caption = "表面缺陷";
- ultraGridColumn96.Header.VisiblePosition = 25;
- ultraGridColumn96.RowLayoutColumnInfo.OriginX = 18;
- ultraGridColumn96.RowLayoutColumnInfo.OriginY = 0;
- ultraGridColumn96.RowLayoutColumnInfo.SpanX = 1;
- ultraGridColumn96.RowLayoutColumnInfo.SpanY = 1;
- ultraGridColumn97.Header.Caption = "工艺类型";
- ultraGridColumn97.Header.VisiblePosition = 26;
- ultraGridColumn97.RowLayoutColumnInfo.OriginX = 19;
- ultraGridColumn97.RowLayoutColumnInfo.OriginY = 0;
- ultraGridColumn97.RowLayoutColumnInfo.SpanX = 1;
- ultraGridColumn97.RowLayoutColumnInfo.SpanY = 1;
- ultraGridColumn98.Header.Caption = "产线";
- ultraGridColumn98.Header.VisiblePosition = 28;
- ultraGridColumn98.RowLayoutColumnInfo.OriginX = 22;
- ultraGridColumn98.RowLayoutColumnInfo.OriginY = 0;
- ultraGridColumn98.RowLayoutColumnInfo.SpanX = 1;
- ultraGridColumn98.RowLayoutColumnInfo.SpanY = 1;
- ultraGridColumn99.Header.Caption = "小件计量";
- ultraGridColumn99.Header.VisiblePosition = 29;
- ultraGridColumn99.RowLayoutColumnInfo.OriginX = 16;
- ultraGridColumn99.RowLayoutColumnInfo.OriginY = 0;
- ultraGridColumn99.RowLayoutColumnInfo.PreferredCellSize = new System.Drawing.Size(112, 0);
- ultraGridColumn99.RowLayoutColumnInfo.SpanX = 1;
- ultraGridColumn99.RowLayoutColumnInfo.SpanY = 1;
- ultraGridColumn100.Header.Caption = "炉号";
- ultraGridColumn100.Header.VisiblePosition = 27;
- ultraGridColumn100.RowLayoutColumnInfo.OriginX = 5;
- ultraGridColumn100.RowLayoutColumnInfo.OriginY = 0;
- ultraGridColumn100.RowLayoutColumnInfo.PreferredCellSize = new System.Drawing.Size(85, 0);
- ultraGridColumn100.RowLayoutColumnInfo.SpanX = 1;
- ultraGridColumn100.RowLayoutColumnInfo.SpanY = 1;
- ultraGridColumn101.Header.Caption = "批号";
- ultraGridColumn101.Header.VisiblePosition = 30;
- ultraGridColumn101.RowLayoutColumnInfo.OriginX = 1;
- ultraGridColumn101.RowLayoutColumnInfo.OriginY = 0;
- ultraGridColumn101.RowLayoutColumnInfo.PreferredCellSize = new System.Drawing.Size(93, 0);
- ultraGridColumn101.RowLayoutColumnInfo.SpanX = 1;
- ultraGridColumn101.RowLayoutColumnInfo.SpanY = 1;
- ultraGridColumn102.Header.Caption = "执行标准";
- ultraGridColumn102.Header.VisiblePosition = 31;
- ultraGridColumn102.RowLayoutColumnInfo.OriginX = 7;
- ultraGridColumn102.RowLayoutColumnInfo.OriginY = 0;
- ultraGridColumn102.RowLayoutColumnInfo.PreferredCellSize = new System.Drawing.Size(94, 0);
- ultraGridColumn102.RowLayoutColumnInfo.SpanX = 1;
- ultraGridColumn102.RowLayoutColumnInfo.SpanY = 1;
- ultraGridBand3.Columns.AddRange(new object[] {
- ultraGridColumn71,
- ultraGridColumn72,
- ultraGridColumn73,
- ultraGridColumn74,
- ultraGridColumn75,
- ultraGridColumn76,
- ultraGridColumn77,
- ultraGridColumn78,
- ultraGridColumn79,
- ultraGridColumn80,
- ultraGridColumn81,
- ultraGridColumn82,
- ultraGridColumn83,
- ultraGridColumn84,
- ultraGridColumn85,
- ultraGridColumn86,
- ultraGridColumn87,
- ultraGridColumn88,
- ultraGridColumn89,
- ultraGridColumn90,
- ultraGridColumn91,
- ultraGridColumn92,
- ultraGridColumn93,
- ultraGridColumn94,
- ultraGridColumn95,
- ultraGridColumn96,
- ultraGridColumn97,
- ultraGridColumn98,
- ultraGridColumn99,
- ultraGridColumn100,
- ultraGridColumn101,
- ultraGridColumn102});
- appearance72.BackColor = System.Drawing.Color.LightSteelBlue;
- ultraGridBand3.Header.Appearance = appearance72;
- ultraGridBand3.Override.RowSelectors = Infragistics.Win.DefaultableBoolean.True;
- summarySettings6.DisplayFormat = "{0}块";
- summarySettings6.GroupBySummaryValueAppearance = appearance73;
- summarySettings7.DisplayFormat = "{0}吨";
- summarySettings7.GroupBySummaryValueAppearance = appearance74;
- ultraGridBand3.Summaries.AddRange(new Infragistics.Win.UltraWinGrid.SummarySettings[] {
- summarySettings6,
- summarySettings7});
- ultraGridBand3.UseRowLayout = true;
- this.gb_Press.DisplayLayout.BandsSerializer.Add(ultraGridBand3);
- this.gb_Press.DisplayLayout.CaptionVisible = Infragistics.Win.DefaultableBoolean.False;
- appearance75.BackColor = System.Drawing.SystemColors.ActiveBorder;
- appearance75.BackColor2 = System.Drawing.SystemColors.ControlDark;
- appearance75.BackGradientStyle = Infragistics.Win.GradientStyle.Vertical;
- appearance75.BorderColor = System.Drawing.SystemColors.Window;
- this.gb_Press.DisplayLayout.GroupByBox.Appearance = appearance75;
- appearance76.ForeColor = System.Drawing.SystemColors.GrayText;
- this.gb_Press.DisplayLayout.GroupByBox.BandLabelAppearance = appearance76;
- this.gb_Press.DisplayLayout.GroupByBox.Hidden = true;
- this.gb_Press.DisplayLayout.GroupByBox.Prompt = "将要分组的列拖至该区域!";
- appearance77.BackColor = System.Drawing.SystemColors.Window;
- appearance77.ForeColor = System.Drawing.SystemColors.ControlText;
- this.gb_Press.DisplayLayout.Override.ActiveCellAppearance = appearance77;
- appearance78.BackColor = System.Drawing.SystemColors.Highlight;
- appearance78.ForeColor = System.Drawing.SystemColors.HighlightText;
- this.gb_Press.DisplayLayout.Override.ActiveRowAppearance = appearance78;
- appearance79.BorderColor = System.Drawing.Color.Black;
- appearance79.TextVAlign = Infragistics.Win.VAlign.Middle;
- this.gb_Press.DisplayLayout.Override.CellAppearance = appearance79;
- this.gb_Press.DisplayLayout.Override.CellClickAction = Infragistics.Win.UltraWinGrid.CellClickAction.EditAndSelectText;
- this.gb_Press.DisplayLayout.Override.CellPadding = 0;
- appearance80.BackColor = System.Drawing.SystemColors.Control;
- appearance80.BackColor2 = System.Drawing.SystemColors.ControlDark;
- appearance80.BackGradientAlignment = Infragistics.Win.GradientAlignment.Element;
- appearance80.BackGradientStyle = Infragistics.Win.GradientStyle.Horizontal;
- appearance80.BorderColor = System.Drawing.SystemColors.Window;
- appearance80.TextHAlign = Infragistics.Win.HAlign.Left;
- appearance80.TextVAlign = Infragistics.Win.VAlign.Middle;
- this.gb_Press.DisplayLayout.Override.GroupByRowAppearance = appearance80;
- this.gb_Press.DisplayLayout.Override.GroupBySummaryDisplayStyle = Infragistics.Win.UltraWinGrid.GroupBySummaryDisplayStyle.SummaryCells;
- appearance81.BackColor = System.Drawing.Color.Silver;
- this.gb_Press.DisplayLayout.Override.HeaderAppearance = appearance81;
- this.gb_Press.DisplayLayout.Override.HeaderClickAction = Infragistics.Win.UltraWinGrid.HeaderClickAction.SortMulti;
- this.gb_Press.DisplayLayout.Override.HeaderStyle = Infragistics.Win.HeaderStyle.Standard;
- appearance82.BackColor = System.Drawing.SystemColors.Window;
- appearance82.BorderColor = System.Drawing.Color.Black;
- appearance82.TextVAlign = Infragistics.Win.VAlign.Middle;
- this.gb_Press.DisplayLayout.Override.RowAppearance = appearance82;
- appearance83.BackColor = System.Drawing.SystemColors.Window;
- appearance83.BorderColor = System.Drawing.Color.Black;
- appearance83.TextVAlign = Infragistics.Win.VAlign.Middle;
- this.gb_Press.DisplayLayout.Override.RowPreviewAppearance = appearance83;
- this.gb_Press.DisplayLayout.Override.RowSelectorHeaderStyle = Infragistics.Win.UltraWinGrid.RowSelectorHeaderStyle.SeparateElement;
- this.gb_Press.DisplayLayout.Override.RowSelectorNumberStyle = Infragistics.Win.UltraWinGrid.RowSelectorNumberStyle.RowIndex;
- this.gb_Press.DisplayLayout.Override.RowSelectors = Infragistics.Win.DefaultableBoolean.True;
- appearance84.TextHAlign = Infragistics.Win.HAlign.Left;
- appearance84.TextVAlign = Infragistics.Win.VAlign.Middle;
- this.gb_Press.DisplayLayout.Override.SelectedRowAppearance = appearance84;
- this.gb_Press.DisplayLayout.Override.SummaryDisplayArea = Infragistics.Win.UltraWinGrid.SummaryDisplayAreas.BottomFixed;
- appearance85.BackColor = System.Drawing.SystemColors.Window;
- this.gb_Press.DisplayLayout.Override.SummaryFooterAppearance = appearance85;
- appearance86.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(255)))), ((int)(((byte)(255)))), ((int)(((byte)(192)))));
- appearance86.ForeColor = System.Drawing.Color.Red;
- this.gb_Press.DisplayLayout.Override.SummaryFooterCaptionAppearance = appearance86;
- this.gb_Press.DisplayLayout.Override.SummaryFooterCaptionVisible = Infragistics.Win.DefaultableBoolean.False;
- appearance87.BackColor = System.Drawing.Color.MistyRose;
- appearance87.ForeColor = System.Drawing.Color.Blue;
- appearance87.TextHAlign = Infragistics.Win.HAlign.Right;
- appearance87.TextVAlign = Infragistics.Win.VAlign.Middle;
- this.gb_Press.DisplayLayout.Override.SummaryValueAppearance = appearance87;
- appearance88.BackColor = System.Drawing.SystemColors.ControlLight;
- this.gb_Press.DisplayLayout.Override.TemplateAddRowAppearance = appearance88;
- this.gb_Press.DisplayLayout.ScrollBounds = Infragistics.Win.UltraWinGrid.ScrollBounds.ScrollToFill;
- this.gb_Press.DisplayLayout.ScrollStyle = Infragistics.Win.UltraWinGrid.ScrollStyle.Immediate;
- this.gb_Press.DisplayLayout.ViewStyleBand = Infragistics.Win.UltraWinGrid.ViewStyleBand.OutlookGroupBy;
- this.gb_Press.Dock = System.Windows.Forms.DockStyle.Fill;
- this.gb_Press.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
- this.gb_Press.Location = new System.Drawing.Point(629, 0);
- this.gb_Press.Name = "gb_Press";
- this.gb_Press.Size = new System.Drawing.Size(333, 184);
- this.gb_Press.TabIndex = 15;
- this.gb_Press.Text = "ultraGrid1";
- this.gb_Press.DoubleClickRow += new Infragistics.Win.UltraWinGrid.DoubleClickRowEventHandler(this.gb_Press_DoubleClickRow);
- //
- // panel2
- //
- this.panel2.Controls.Add(this.txt_Seq);
- this.panel2.Controls.Add(this.cmb_plid);
- this.panel2.Controls.Add(this.cmb_Gylx);
- this.panel2.Controls.Add(this.ultraLabel16);
- this.panel2.Controls.Add(this.ultraLabel15);
- this.panel2.Controls.Add(this.cmb_area);
- this.panel2.Controls.Add(this.ultraLabel14);
- this.panel2.Controls.Add(this.txt_ZHPD);
- this.panel2.Controls.Add(this.txt_Plact);
- this.panel2.Controls.Add(this.txt_ReMark);
- this.panel2.Controls.Add(this.ultraLabel13);
- this.panel2.Controls.Add(this.dte_Time);
- this.panel2.Controls.Add(this.Btn_Turn);
- this.panel2.Controls.Add(this.ultraLabel11);
- this.panel2.Controls.Add(this.txt_PaiHao);
- this.panel2.Controls.Add(this.txt_Num);
- this.panel2.Controls.Add(this.ultraLabel9);
- this.panel2.Controls.Add(this.txt_WEIGHT);
- this.panel2.Controls.Add(this.ultraLabel10);
- this.panel2.Controls.Add(this.txt_Width);
- this.panel2.Controls.Add(this.txt_Length);
- this.panel2.Controls.Add(this.lab_cd);
- this.panel2.Controls.Add(this.ultraLabel17);
- this.panel2.Controls.Add(this.txt_Ply);
- this.panel2.Controls.Add(this.ultraLabel12);
- this.panel2.Controls.Add(this.ultraLabel20);
- this.panel2.Controls.Add(this.cmb_ClassStream);
- this.panel2.Controls.Add(this.ultraLabel7);
- this.panel2.Controls.Add(this.cmb_ClassOreder);
- this.panel2.Controls.Add(this.ultraLabel6);
- this.panel2.Controls.Add(this.cmb_Buress);
- this.panel2.Controls.Add(this.ultraLabel4);
- this.panel2.Controls.Add(this.ultraLabel8);
- this.panel2.Controls.Add(this.cmb_BugReaSon);
- this.panel2.Controls.Add(this.ultraLabel25);
- this.panel2.Controls.Add(this.ultraLabel2);
- this.panel2.Controls.Add(this.ultraLabel3);
- this.panel2.Controls.Add(this.txt_GangpeiH);
- this.panel2.Controls.Add(this.ultraLabel1);
- this.panel2.Controls.Add(this.txt_Scid_End_Y);
- this.panel2.Controls.Add(this.txt_Scid_Begin_Y);
- this.panel2.Controls.Add(this.txt_Scid_Top_Y);
- this.panel2.Controls.Add(this.ultraLabel5);
- this.panel2.Controls.Add(this.txt_TiShi);
- this.panel2.Dock = System.Windows.Forms.DockStyle.Left;
- this.panel2.Location = new System.Drawing.Point(0, 0);
- this.panel2.Name = "panel2";
- this.panel2.Size = new System.Drawing.Size(629, 184);
- this.panel2.TabIndex = 0;
- this.panel2.Enter += new System.EventHandler(this.txt_Scid_Top_Y_Enter);
- //
- // txt_Seq
- //
- this.txt_Seq.AutoSize = true;
- this.txt_Seq.FlatMode = true;
- this.txt_Seq.Location = new System.Drawing.Point(184, 107);
- this.txt_Seq.Name = "txt_Seq";
- this.txt_Seq.Size = new System.Drawing.Size(44, 19);
- this.txt_Seq.TabIndex = 706;
- //
- // cmb_plid
- //
- this.cmb_plid.CharacterCasing = System.Windows.Forms.CharacterCasing.Normal;
- this.cmb_plid.DisplayMember = "";
- this.cmb_plid.Location = new System.Drawing.Point(288, 151);
- this.cmb_plid.Name = "cmb_plid";
- this.cmb_plid.Size = new System.Drawing.Size(116, 21);
- this.cmb_plid.TabIndex = 705;
- this.cmb_plid.ValueMember = "";
- //
- // cmb_Gylx
- //
- this.cmb_Gylx.CharacterCasing = System.Windows.Forms.CharacterCasing.Normal;
- this.cmb_Gylx.DisplayMember = "";
- this.cmb_Gylx.Location = new System.Drawing.Point(78, 152);
- this.cmb_Gylx.Name = "cmb_Gylx";
- this.cmb_Gylx.Size = new System.Drawing.Size(150, 21);
- this.cmb_Gylx.TabIndex = 704;
- this.cmb_Gylx.ValueMember = "";
- //
- // ultraLabel16
- //
- this.ultraLabel16.Location = new System.Drawing.Point(234, 155);
- this.ultraLabel16.Name = "ultraLabel16";
- this.ultraLabel16.Size = new System.Drawing.Size(54, 16);
- this.ultraLabel16.TabIndex = 701;
- this.ultraLabel16.Text = "产线";
- //
- // ultraLabel15
- //
- this.ultraLabel15.Location = new System.Drawing.Point(22, 157);
- this.ultraLabel15.Name = "ultraLabel15";
- this.ultraLabel15.Size = new System.Drawing.Size(56, 16);
- this.ultraLabel15.TabIndex = 699;
- this.ultraLabel15.Text = "工艺类型";
- //
- // cmb_area
- //
- this.cmb_area.CharacterCasing = System.Windows.Forms.CharacterCasing.Normal;
- this.cmb_area.DisplayMember = "";
- this.cmb_area.Location = new System.Drawing.Point(288, 54);
- this.cmb_area.Name = "cmb_area";
- this.cmb_area.Size = new System.Drawing.Size(116, 21);
- this.cmb_area.TabIndex = 696;
- this.cmb_area.ValueMember = "";
- this.cmb_area.ValueChanged += new System.EventHandler(this.cmb_area_ValueChanged);
- //
- // ultraLabel14
- //
- this.ultraLabel14.Location = new System.Drawing.Point(234, 58);
- this.ultraLabel14.Name = "ultraLabel14";
- this.ultraLabel14.Size = new System.Drawing.Size(54, 16);
- this.ultraLabel14.TabIndex = 697;
- this.ultraLabel14.Text = "入库区域";
- //
- // txt_ZHPD
- //
- this.txt_ZHPD.CharacterCasing = System.Windows.Forms.CharacterCasing.Normal;
- this.txt_ZHPD.DisplayMember = "";
- this.txt_ZHPD.Location = new System.Drawing.Point(288, 29);
- this.txt_ZHPD.Name = "txt_ZHPD";
- this.txt_ZHPD.ReadOnly = true;
- this.txt_ZHPD.Size = new System.Drawing.Size(116, 21);
- this.txt_ZHPD.TabIndex = 695;
- this.txt_ZHPD.ValueMember = "";
- //
- // txt_Plact
- //
- this.txt_Plact.AutoSize = true;
- this.txt_Plact.FlatMode = true;
- this.txt_Plact.Location = new System.Drawing.Point(78, 107);
- this.txt_Plact.Name = "txt_Plact";
- this.txt_Plact.Size = new System.Drawing.Size(106, 19);
- this.txt_Plact.TabIndex = 6;
- this.txt_Plact.Enter += new System.EventHandler(this.txt_Scid_Top_Y_Enter);
- this.txt_Plact.KeyDown += new System.Windows.Forms.KeyEventHandler(this.txt_Scid_Top_Y_KeyDown);
- //
- // txt_ReMark
- //
- this.txt_ReMark.AutoSize = true;
- this.txt_ReMark.FlatMode = true;
- this.txt_ReMark.Location = new System.Drawing.Point(466, 128);
- this.txt_ReMark.Name = "txt_ReMark";
- this.txt_ReMark.Size = new System.Drawing.Size(112, 19);
- this.txt_ReMark.TabIndex = 18;
- this.txt_ReMark.Enter += new System.EventHandler(this.txt_Scid_Top_Y_Enter);
- this.txt_ReMark.KeyDown += new System.Windows.Forms.KeyEventHandler(this.txt_Scid_Top_Y_KeyDown);
- //
- // ultraLabel13
- //
- this.ultraLabel13.Location = new System.Drawing.Point(436, 130);
- this.ultraLabel13.Name = "ultraLabel13";
- this.ultraLabel13.Size = new System.Drawing.Size(29, 16);
- this.ultraLabel13.TabIndex = 694;
- this.ultraLabel13.Text = "备注";
- //
- // dte_Time
- //
- this.dte_Time.Location = new System.Drawing.Point(465, 152);
- this.dte_Time.Name = "dte_Time";
- this.dte_Time.Size = new System.Drawing.Size(116, 21);
- this.dte_Time.TabIndex = 12;
- this.dte_Time.Enter += new System.EventHandler(this.txt_Scid_Top_Y_Enter);
- this.dte_Time.KeyDown += new System.Windows.Forms.KeyEventHandler(this.txt_Scid_Top_Y_KeyDown);
- //
- // Btn_Turn
- //
- this.Btn_Turn.Location = new System.Drawing.Point(582, 101);
- this.Btn_Turn.Name = "Btn_Turn";
- this.Btn_Turn.Size = new System.Drawing.Size(34, 46);
- this.Btn_Turn.TabIndex = 18;
- this.Btn_Turn.Text = "登记";
- this.Btn_Turn.Click += new System.EventHandler(this.Btn_Turn_Click);
- this.Btn_Turn.KeyDown += new System.Windows.Forms.KeyEventHandler(this.txt_Scid_Top_Y_KeyDown);
- //
- // ultraLabel11
- //
- appearance89.TextHAlign = Infragistics.Win.HAlign.Center;
- appearance89.TextVAlign = Infragistics.Win.VAlign.Middle;
- this.ultraLabel11.Appearance = appearance89;
- this.ultraLabel11.Location = new System.Drawing.Point(22, 85);
- this.ultraLabel11.Name = "ultraLabel11";
- this.ultraLabel11.Size = new System.Drawing.Size(56, 16);
- this.ultraLabel11.TabIndex = 692;
- this.ultraLabel11.Text = "牌号";
- //
- // txt_PaiHao
- //
- appearance90.BackColor = System.Drawing.Color.LightCyan;
- this.txt_PaiHao.Appearance = appearance90;
- this.txt_PaiHao.AutoSize = true;
- this.txt_PaiHao.Location = new System.Drawing.Point(78, 81);
- this.txt_PaiHao.Name = "txt_PaiHao";
- this.txt_PaiHao.ReadOnly = true;
- this.txt_PaiHao.Size = new System.Drawing.Size(150, 21);
- this.txt_PaiHao.TabIndex = 5;
- this.txt_PaiHao.Enter += new System.EventHandler(this.txt_Scid_Top_Y_Enter);
- this.txt_PaiHao.KeyDown += new System.Windows.Forms.KeyEventHandler(this.txt_Scid_Top_Y_KeyDown);
- //
- // txt_Num
- //
- this.txt_Num.FlatMode = true;
- this.txt_Num.Location = new System.Drawing.Point(466, 80);
- this.txt_Num.MaskInput = "nnnnn";
- this.txt_Num.Name = "txt_Num";
- this.txt_Num.PromptChar = ' ';
- this.txt_Num.Size = new System.Drawing.Size(112, 19);
- this.txt_Num.TabIndex = 16;
- this.txt_Num.KeyDown += new System.Windows.Forms.KeyEventHandler(this.txt_Scid_Top_Y_KeyDown);
- this.txt_Num.FontChanged += new System.EventHandler(this.txt_Scid_Top_Y_Enter);
- //
- // ultraLabel9
- //
- this.ultraLabel9.Location = new System.Drawing.Point(436, 82);
- this.ultraLabel9.Name = "ultraLabel9";
- this.ultraLabel9.Size = new System.Drawing.Size(29, 16);
- this.ultraLabel9.TabIndex = 691;
- this.ultraLabel9.Text = "数量";
- //
- // txt_WEIGHT
- //
- this.txt_WEIGHT.FlatMode = true;
- this.txt_WEIGHT.Location = new System.Drawing.Point(466, 104);
- this.txt_WEIGHT.MaskInput = "nnnnn.nnn";
- this.txt_WEIGHT.Name = "txt_WEIGHT";
- this.txt_WEIGHT.NumericType = Infragistics.Win.UltraWinEditors.NumericType.Double;
- this.txt_WEIGHT.PromptChar = ' ';
- this.txt_WEIGHT.Size = new System.Drawing.Size(112, 19);
- this.txt_WEIGHT.TabIndex = 17;
- this.txt_WEIGHT.KeyDown += new System.Windows.Forms.KeyEventHandler(this.txt_Scid_Top_Y_KeyDown);
- this.txt_WEIGHT.FontChanged += new System.EventHandler(this.txt_Scid_Top_Y_Enter);
- //
- // ultraLabel10
- //
- this.ultraLabel10.Location = new System.Drawing.Point(414, 106);
- this.ultraLabel10.Name = "ultraLabel10";
- this.ultraLabel10.Size = new System.Drawing.Size(62, 16);
- this.ultraLabel10.TabIndex = 690;
- this.ultraLabel10.Text = "理论重量";
- //
- // txt_Width
- //
- appearance91.BackColor = System.Drawing.Color.LightCyan;
- this.txt_Width.Appearance = appearance91;
- this.txt_Width.FlatMode = true;
- this.txt_Width.Location = new System.Drawing.Point(466, 32);
- this.txt_Width.MaskInput = "nnnn.nn";
- this.txt_Width.Name = "txt_Width";
- this.txt_Width.NumericType = Infragistics.Win.UltraWinEditors.NumericType.Double;
- this.txt_Width.PromptChar = ' ';
- this.txt_Width.Size = new System.Drawing.Size(112, 19);
- this.txt_Width.TabIndex = 14;
- this.txt_Width.KeyDown += new System.Windows.Forms.KeyEventHandler(this.txt_Scid_Top_Y_KeyDown);
- this.txt_Width.FontChanged += new System.EventHandler(this.txt_Scid_Top_Y_Enter);
- //
- // txt_Length
- //
- this.txt_Length.FlatMode = true;
- this.txt_Length.Location = new System.Drawing.Point(466, 56);
- this.txt_Length.MaskInput = "nnnnn";
- this.txt_Length.Name = "txt_Length";
- this.txt_Length.PromptChar = ' ';
- this.txt_Length.Size = new System.Drawing.Size(112, 19);
- this.txt_Length.TabIndex = 15;
- this.txt_Length.KeyDown += new System.Windows.Forms.KeyEventHandler(this.txt_Scid_Top_Y_KeyDown);
- this.txt_Length.FontChanged += new System.EventHandler(this.txt_Scid_Top_Y_Enter);
- //
- // lab_cd
- //
- this.lab_cd.Location = new System.Drawing.Point(436, 58);
- this.lab_cd.Name = "lab_cd";
- this.lab_cd.Size = new System.Drawing.Size(29, 16);
- this.lab_cd.TabIndex = 689;
- this.lab_cd.Text = "长度";
- //
- // ultraLabel17
- //
- this.ultraLabel17.Location = new System.Drawing.Point(436, 34);
- this.ultraLabel17.Name = "ultraLabel17";
- this.ultraLabel17.Size = new System.Drawing.Size(29, 16);
- this.ultraLabel17.TabIndex = 688;
- this.ultraLabel17.Text = "宽度";
- //
- // txt_Ply
- //
- appearance92.BackColor = System.Drawing.Color.LightCyan;
- this.txt_Ply.Appearance = appearance92;
- this.txt_Ply.FlatMode = true;
- this.txt_Ply.Location = new System.Drawing.Point(466, 8);
- this.txt_Ply.MaskInput = "nnn.nnn";
- this.txt_Ply.Name = "txt_Ply";
- this.txt_Ply.NumericType = Infragistics.Win.UltraWinEditors.NumericType.Double;
- this.txt_Ply.PromptChar = ' ';
- this.txt_Ply.ReadOnly = true;
- this.txt_Ply.Size = new System.Drawing.Size(112, 19);
- this.txt_Ply.TabIndex = 13;
- this.txt_Ply.KeyDown += new System.Windows.Forms.KeyEventHandler(this.txt_Scid_Top_Y_KeyDown);
- this.txt_Ply.FontChanged += new System.EventHandler(this.txt_Scid_Top_Y_Enter);
- //
- // ultraLabel12
- //
- this.ultraLabel12.Location = new System.Drawing.Point(436, 10);
- this.ultraLabel12.Name = "ultraLabel12";
- this.ultraLabel12.Size = new System.Drawing.Size(29, 16);
- this.ultraLabel12.TabIndex = 687;
- this.ultraLabel12.Text = "厚度";
- //
- // ultraLabel20
- //
- this.ultraLabel20.Location = new System.Drawing.Point(411, 156);
- this.ultraLabel20.Name = "ultraLabel20";
- this.ultraLabel20.Size = new System.Drawing.Size(54, 16);
- this.ultraLabel20.TabIndex = 686;
- this.ultraLabel20.Text = "入库时间";
- //
- // cmb_ClassStream
- //
- this.cmb_ClassStream.CharacterCasing = System.Windows.Forms.CharacterCasing.Normal;
- this.cmb_ClassStream.DisplayMember = "";
- this.cmb_ClassStream.Location = new System.Drawing.Point(288, 128);
- this.cmb_ClassStream.Name = "cmb_ClassStream";
- this.cmb_ClassStream.Size = new System.Drawing.Size(116, 21);
- this.cmb_ClassStream.TabIndex = 11;
- this.cmb_ClassStream.ValueMember = "";
- this.cmb_ClassStream.KeyDown += new System.Windows.Forms.KeyEventHandler(this.txt_Scid_Top_Y_KeyDown);
- this.cmb_ClassStream.FontChanged += new System.EventHandler(this.txt_Scid_Top_Y_Enter);
- //
- // ultraLabel7
- //
- this.ultraLabel7.Location = new System.Drawing.Point(234, 132);
- this.ultraLabel7.Name = "ultraLabel7";
- this.ultraLabel7.Size = new System.Drawing.Size(54, 16);
- this.ultraLabel7.TabIndex = 685;
- this.ultraLabel7.Text = "入库班组";
- //
- // cmb_ClassOreder
- //
- this.cmb_ClassOreder.CharacterCasing = System.Windows.Forms.CharacterCasing.Normal;
- this.cmb_ClassOreder.DisplayMember = "";
- this.cmb_ClassOreder.Location = new System.Drawing.Point(288, 104);
- this.cmb_ClassOreder.Name = "cmb_ClassOreder";
- this.cmb_ClassOreder.Size = new System.Drawing.Size(116, 21);
- this.cmb_ClassOreder.TabIndex = 10;
- this.cmb_ClassOreder.ValueMember = "";
- this.cmb_ClassOreder.KeyDown += new System.Windows.Forms.KeyEventHandler(this.txt_Scid_Top_Y_KeyDown);
- this.cmb_ClassOreder.FontChanged += new System.EventHandler(this.txt_Scid_Top_Y_Enter);
- //
- // ultraLabel6
- //
- this.ultraLabel6.Location = new System.Drawing.Point(234, 108);
- this.ultraLabel6.Name = "ultraLabel6";
- this.ultraLabel6.Size = new System.Drawing.Size(54, 16);
- this.ultraLabel6.TabIndex = 684;
- this.ultraLabel6.Text = "入库班次";
- //
- // cmb_Buress
- //
- this.cmb_Buress.CharacterCasing = System.Windows.Forms.CharacterCasing.Normal;
- this.cmb_Buress.DisplayMember = "";
- this.cmb_Buress.Location = new System.Drawing.Point(288, 80);
- this.cmb_Buress.Name = "cmb_Buress";
- this.cmb_Buress.Size = new System.Drawing.Size(116, 21);
- this.cmb_Buress.TabIndex = 9;
- this.cmb_Buress.ValueMember = "";
- this.cmb_Buress.KeyDown += new System.Windows.Forms.KeyEventHandler(this.txt_Scid_Top_Y_KeyDown);
- this.cmb_Buress.Enter += new System.EventHandler(this.txt_Scid_Top_Y_Enter);
- //
- // ultraLabel4
- //
- this.ultraLabel4.Location = new System.Drawing.Point(234, 84);
- this.ultraLabel4.Name = "ultraLabel4";
- this.ultraLabel4.Size = new System.Drawing.Size(54, 16);
- this.ultraLabel4.TabIndex = 683;
- this.ultraLabel4.Text = "入库垛位";
- //
- // ultraLabel8
- //
- this.ultraLabel8.Location = new System.Drawing.Point(232, 35);
- this.ultraLabel8.Name = "ultraLabel8";
- this.ultraLabel8.Size = new System.Drawing.Size(56, 16);
- this.ultraLabel8.TabIndex = 682;
- this.ultraLabel8.Text = "综合判定";
- //
- // cmb_BugReaSon
- //
- this.cmb_BugReaSon.CharacterCasing = System.Windows.Forms.CharacterCasing.Normal;
- this.cmb_BugReaSon.DisplayMember = "";
- this.cmb_BugReaSon.Location = new System.Drawing.Point(78, 129);
- this.cmb_BugReaSon.Name = "cmb_BugReaSon";
- this.cmb_BugReaSon.Size = new System.Drawing.Size(150, 21);
- this.cmb_BugReaSon.TabIndex = 7;
- this.cmb_BugReaSon.ValueMember = "";
- this.cmb_BugReaSon.KeyDown += new System.Windows.Forms.KeyEventHandler(this.txt_Scid_Top_Y_KeyDown);
- this.cmb_BugReaSon.Enter += new System.EventHandler(this.txt_Scid_Top_Y_Enter);
- //
- // ultraLabel25
- //
- this.ultraLabel25.Location = new System.Drawing.Point(22, 133);
- this.ultraLabel25.Name = "ultraLabel25";
- this.ultraLabel25.Size = new System.Drawing.Size(56, 16);
- this.ultraLabel25.TabIndex = 681;
- this.ultraLabel25.Text = "表面缺陷";
- //
- // ultraLabel2
- //
- appearance93.TextHAlign = Infragistics.Win.HAlign.Center;
- appearance93.TextVAlign = Infragistics.Win.VAlign.Middle;
- this.ultraLabel2.Appearance = appearance93;
- this.ultraLabel2.Location = new System.Drawing.Point(22, 109);
- this.ultraLabel2.Name = "ultraLabel2";
- this.ultraLabel2.Size = new System.Drawing.Size(56, 16);
- this.ultraLabel2.TabIndex = 680;
- this.ultraLabel2.Text = "订单号";
- //
- // ultraLabel3
- //
- appearance94.TextHAlign = Infragistics.Win.HAlign.Center;
- appearance94.TextVAlign = Infragistics.Win.VAlign.Middle;
- this.ultraLabel3.Appearance = appearance94;
- this.ultraLabel3.Location = new System.Drawing.Point(22, 59);
- this.ultraLabel3.Name = "ultraLabel3";
- this.ultraLabel3.Size = new System.Drawing.Size(56, 16);
- this.ultraLabel3.TabIndex = 679;
- this.ultraLabel3.Text = "钢卷号";
- //
- // txt_GangpeiH
- //
- appearance95.BackColor = System.Drawing.Color.LightCyan;
- this.txt_GangpeiH.Appearance = appearance95;
- this.txt_GangpeiH.AutoSize = true;
- this.txt_GangpeiH.Location = new System.Drawing.Point(78, 57);
- this.txt_GangpeiH.Name = "txt_GangpeiH";
- this.txt_GangpeiH.ReadOnly = true;
- this.txt_GangpeiH.Size = new System.Drawing.Size(150, 21);
- this.txt_GangpeiH.TabIndex = 4;
- this.txt_GangpeiH.Enter += new System.EventHandler(this.txt_Scid_Top_Y_Enter);
- this.txt_GangpeiH.KeyDown += new System.Windows.Forms.KeyEventHandler(this.txt_Scid_Top_Y_KeyDown);
- //
- // ultraLabel1
- //
- appearance96.TextHAlign = Infragistics.Win.HAlign.Center;
- appearance96.TextVAlign = Infragistics.Win.VAlign.Middle;
- this.ultraLabel1.Appearance = appearance96;
- this.ultraLabel1.Location = new System.Drawing.Point(22, 37);
- this.ultraLabel1.Name = "ultraLabel1";
- this.ultraLabel1.Size = new System.Drawing.Size(56, 16);
- this.ultraLabel1.TabIndex = 678;
- this.ultraLabel1.Text = "卷板包号";
- //
- // txt_Scid_End_Y
- //
- this.txt_Scid_End_Y.AutoSize = true;
- this.txt_Scid_End_Y.Location = new System.Drawing.Point(184, 33);
- this.txt_Scid_End_Y.Name = "txt_Scid_End_Y";
- this.txt_Scid_End_Y.Size = new System.Drawing.Size(44, 21);
- this.txt_Scid_End_Y.TabIndex = 3;
- this.txt_Scid_End_Y.Enter += new System.EventHandler(this.txt_Scid_Top_Y_Enter);
- this.txt_Scid_End_Y.KeyDown += new System.Windows.Forms.KeyEventHandler(this.txt_Scid_Top_Y_KeyDown);
- //
- // txt_Scid_Begin_Y
- //
- this.txt_Scid_Begin_Y.AutoSize = true;
- this.txt_Scid_Begin_Y.Location = new System.Drawing.Point(108, 33);
- this.txt_Scid_Begin_Y.MaxLength = 10;
- this.txt_Scid_Begin_Y.Name = "txt_Scid_Begin_Y";
- this.txt_Scid_Begin_Y.Size = new System.Drawing.Size(76, 21);
- this.txt_Scid_Begin_Y.TabIndex = 2;
- this.txt_Scid_Begin_Y.Enter += new System.EventHandler(this.txt_Scid_Top_Y_Enter);
- this.txt_Scid_Begin_Y.KeyDown += new System.Windows.Forms.KeyEventHandler(this.txt_Scid_Top_Y_KeyDown);
- //
- // txt_Scid_Top_Y
- //
- this.txt_Scid_Top_Y.AutoSize = true;
- this.txt_Scid_Top_Y.Location = new System.Drawing.Point(78, 33);
- this.txt_Scid_Top_Y.MaxLength = 2;
- this.txt_Scid_Top_Y.Name = "txt_Scid_Top_Y";
- this.txt_Scid_Top_Y.Size = new System.Drawing.Size(30, 21);
- this.txt_Scid_Top_Y.TabIndex = 1;
- this.txt_Scid_Top_Y.Enter += new System.EventHandler(this.txt_Scid_Top_Y_Enter);
- this.txt_Scid_Top_Y.KeyDown += new System.Windows.Forms.KeyEventHandler(this.txt_Scid_Top_Y_KeyDown);
- //
- // ultraLabel5
- //
- appearance97.FontData.BoldAsString = "True";
- appearance97.ForeColor = System.Drawing.Color.Red;
- appearance97.TextVAlign = Infragistics.Win.VAlign.Middle;
- this.ultraLabel5.Appearance = appearance97;
- this.ultraLabel5.Font = new System.Drawing.Font("宋体", 9.5F);
- this.ultraLabel5.Location = new System.Drawing.Point(16, 9);
- this.ultraLabel5.Name = "ultraLabel5";
- this.ultraLabel5.Size = new System.Drawing.Size(62, 18);
- this.ultraLabel5.TabIndex = 676;
- this.ultraLabel5.Text = "提示信息";
- //
- // txt_TiShi
- //
- this.txt_TiShi.AutoSize = true;
- this.txt_TiShi.FlatMode = true;
- this.txt_TiShi.Location = new System.Drawing.Point(78, 7);
- this.txt_TiShi.Name = "txt_TiShi";
- this.txt_TiShi.Size = new System.Drawing.Size(330, 19);
- this.txt_TiShi.TabIndex = 677;
- this.txt_TiShi.TabStop = false;
- //
- // ultraGroupBox2
- //
- this.ultraGroupBox2.Controls.Add(this.gb_Turan);
- this.ultraGroupBox2.Dock = System.Windows.Forms.DockStyle.Fill;
- this.ultraGroupBox2.Location = new System.Drawing.Point(0, 290);
- this.ultraGroupBox2.Name = "ultraGroupBox2";
- this.ultraGroupBox2.Size = new System.Drawing.Size(968, 240);
- this.ultraGroupBox2.SupportThemes = false;
- this.ultraGroupBox2.TabIndex = 3;
- this.ultraGroupBox2.Text = "成品收集信息";
- //
- // gb_Turan
- //
- appearance98.BackColor = System.Drawing.Color.Ivory;
- this.gb_Turan.DisplayLayout.Appearance = appearance98;
- ultraGridColumn103.Header.Caption = "出库单号";
- ultraGridColumn103.Header.VisiblePosition = 0;
- ultraGridColumn103.Hidden = true;
- ultraGridColumn103.RowLayoutColumnInfo.OriginX = 26;
- ultraGridColumn103.RowLayoutColumnInfo.OriginY = 0;
- ultraGridColumn103.RowLayoutColumnInfo.PreferredCellSize = new System.Drawing.Size(77, 0);
- ultraGridColumn103.RowLayoutColumnInfo.SpanX = 1;
- ultraGridColumn103.RowLayoutColumnInfo.SpanY = 1;
- ultraGridColumn104.Header.Caption = "钢卷号";
- ultraGridColumn104.Header.VisiblePosition = 1;
- ultraGridColumn104.RowLayoutColumnInfo.OriginX = 3;
- ultraGridColumn104.RowLayoutColumnInfo.OriginY = 0;
- ultraGridColumn104.RowLayoutColumnInfo.PreferredCellSize = new System.Drawing.Size(92, 0);
- ultraGridColumn104.RowLayoutColumnInfo.SpanX = 1;
- ultraGridColumn104.RowLayoutColumnInfo.SpanY = 1;
- ultraGridColumn105.Header.Caption = "板坯号";
- ultraGridColumn105.Header.VisiblePosition = 2;
- ultraGridColumn105.RowLayoutColumnInfo.OriginX = 4;
- ultraGridColumn105.RowLayoutColumnInfo.OriginY = 0;
- ultraGridColumn105.RowLayoutColumnInfo.PreferredCellSize = new System.Drawing.Size(96, 0);
- ultraGridColumn105.RowLayoutColumnInfo.SpanX = 1;
- ultraGridColumn105.RowLayoutColumnInfo.SpanY = 1;
- ultraGridColumn106.Header.Caption = "合同号";
- ultraGridColumn106.Header.VisiblePosition = 3;
- ultraGridColumn106.RowLayoutColumnInfo.OriginX = 9;
- ultraGridColumn106.RowLayoutColumnInfo.OriginY = 0;
- ultraGridColumn106.RowLayoutColumnInfo.PreferredCellSize = new System.Drawing.Size(99, 0);
- ultraGridColumn106.RowLayoutColumnInfo.SpanX = 1;
- ultraGridColumn106.RowLayoutColumnInfo.SpanY = 1;
- ultraGridColumn107.Header.Caption = "订单号";
- ultraGridColumn107.Header.VisiblePosition = 4;
- ultraGridColumn107.RowLayoutColumnInfo.OriginX = 11;
- ultraGridColumn107.RowLayoutColumnInfo.OriginY = 0;
- ultraGridColumn107.RowLayoutColumnInfo.PreferredCellSize = new System.Drawing.Size(101, 0);
- ultraGridColumn107.RowLayoutColumnInfo.SpanX = 1;
- ultraGridColumn107.RowLayoutColumnInfo.SpanY = 1;
- ultraGridColumn108.Header.Caption = "交货期";
- ultraGridColumn108.Header.VisiblePosition = 5;
- ultraGridColumn108.RowLayoutColumnInfo.OriginX = 24;
- ultraGridColumn108.RowLayoutColumnInfo.OriginY = 0;
- ultraGridColumn108.RowLayoutColumnInfo.SpanX = 1;
- ultraGridColumn108.RowLayoutColumnInfo.SpanY = 1;
- ultraGridColumn109.Header.Caption = "厚度";
- ultraGridColumn109.Header.VisiblePosition = 6;
- ultraGridColumn109.RowLayoutColumnInfo.OriginX = 14;
- ultraGridColumn109.RowLayoutColumnInfo.OriginY = 0;
- ultraGridColumn109.RowLayoutColumnInfo.PreferredCellSize = new System.Drawing.Size(60, 0);
- ultraGridColumn109.RowLayoutColumnInfo.SpanX = 1;
- ultraGridColumn109.RowLayoutColumnInfo.SpanY = 1;
- ultraGridColumn110.Header.Caption = "宽度";
- ultraGridColumn110.Header.VisiblePosition = 7;
- ultraGridColumn110.RowLayoutColumnInfo.OriginX = 15;
- ultraGridColumn110.RowLayoutColumnInfo.OriginY = 0;
- ultraGridColumn110.RowLayoutColumnInfo.PreferredCellSize = new System.Drawing.Size(60, 0);
- ultraGridColumn110.RowLayoutColumnInfo.SpanX = 1;
- ultraGridColumn110.RowLayoutColumnInfo.SpanY = 1;
- ultraGridColumn111.Header.Caption = "长度";
- ultraGridColumn111.Header.VisiblePosition = 8;
- ultraGridColumn111.RowLayoutColumnInfo.OriginX = 16;
- ultraGridColumn111.RowLayoutColumnInfo.OriginY = 0;
- ultraGridColumn111.RowLayoutColumnInfo.PreferredCellSize = new System.Drawing.Size(45, 0);
- ultraGridColumn111.RowLayoutColumnInfo.SpanX = 1;
- ultraGridColumn111.RowLayoutColumnInfo.SpanY = 1;
- ultraGridColumn112.Header.Caption = "理论重量";
- ultraGridColumn112.Header.VisiblePosition = 9;
- ultraGridColumn112.RowLayoutColumnInfo.OriginX = 18;
- ultraGridColumn112.RowLayoutColumnInfo.OriginY = 0;
- ultraGridColumn112.RowLayoutColumnInfo.PreferredCellSize = new System.Drawing.Size(70, 0);
- ultraGridColumn112.RowLayoutColumnInfo.SpanX = 1;
- ultraGridColumn112.RowLayoutColumnInfo.SpanY = 1;
- ultraGridColumn113.Header.Caption = "数量";
- ultraGridColumn113.Header.VisiblePosition = 10;
- ultraGridColumn113.RowLayoutColumnInfo.OriginX = 17;
- ultraGridColumn113.RowLayoutColumnInfo.OriginY = 0;
- ultraGridColumn113.RowLayoutColumnInfo.PreferredCellSize = new System.Drawing.Size(67, 0);
- ultraGridColumn113.RowLayoutColumnInfo.SpanX = 1;
- ultraGridColumn113.RowLayoutColumnInfo.SpanY = 1;
- ultraGridColumn114.Header.Caption = "牌号";
- ultraGridColumn114.Header.VisiblePosition = 11;
- ultraGridColumn114.RowLayoutColumnInfo.OriginX = 13;
- ultraGridColumn114.RowLayoutColumnInfo.OriginY = 0;
- ultraGridColumn114.RowLayoutColumnInfo.PreferredCellSize = new System.Drawing.Size(71, 0);
- ultraGridColumn114.RowLayoutColumnInfo.SpanX = 1;
- ultraGridColumn114.RowLayoutColumnInfo.SpanY = 1;
- ultraGridColumn115.Header.Caption = "综合判定";
- ultraGridColumn115.Header.VisiblePosition = 12;
- ultraGridColumn115.Hidden = true;
- ultraGridColumn115.RowLayoutColumnInfo.OriginX = 20;
- ultraGridColumn115.RowLayoutColumnInfo.OriginY = 0;
- ultraGridColumn115.RowLayoutColumnInfo.PreferredCellSize = new System.Drawing.Size(64, 0);
- ultraGridColumn115.RowLayoutColumnInfo.SpanX = 1;
- ultraGridColumn115.RowLayoutColumnInfo.SpanY = 1;
- ultraGridColumn116.Header.Caption = "特记事项";
- ultraGridColumn116.Header.VisiblePosition = 13;
- ultraGridColumn116.RowLayoutColumnInfo.OriginX = 23;
- ultraGridColumn116.RowLayoutColumnInfo.OriginY = 0;
- ultraGridColumn116.RowLayoutColumnInfo.SpanX = 1;
- ultraGridColumn116.RowLayoutColumnInfo.SpanY = 1;
- ultraGridColumn117.Header.Caption = "车辆号";
- ultraGridColumn117.Header.VisiblePosition = 14;
- ultraGridColumn117.Hidden = true;
- ultraGridColumn117.RowLayoutColumnInfo.OriginX = 23;
- ultraGridColumn117.RowLayoutColumnInfo.OriginY = 0;
- ultraGridColumn117.RowLayoutColumnInfo.PreferredCellSize = new System.Drawing.Size(78, 0);
- ultraGridColumn117.RowLayoutColumnInfo.SpanX = 1;
- ultraGridColumn117.RowLayoutColumnInfo.SpanY = 1;
- ultraGridColumn118.Header.Caption = "质保书编号";
- ultraGridColumn118.Header.VisiblePosition = 15;
- ultraGridColumn118.RowLayoutColumnInfo.OriginX = 22;
- ultraGridColumn118.RowLayoutColumnInfo.OriginY = 0;
- ultraGridColumn118.RowLayoutColumnInfo.PreferredCellSize = new System.Drawing.Size(69, 0);
- ultraGridColumn118.RowLayoutColumnInfo.SpanX = 1;
- ultraGridColumn118.RowLayoutColumnInfo.SpanY = 1;
- ultraGridColumn119.Header.Caption = "垛位";
- ultraGridColumn119.Header.VisiblePosition = 16;
- ultraGridColumn119.RowLayoutColumnInfo.OriginX = 12;
- ultraGridColumn119.RowLayoutColumnInfo.OriginY = 0;
- ultraGridColumn119.RowLayoutColumnInfo.PreferredCellSize = new System.Drawing.Size(90, 0);
- ultraGridColumn119.RowLayoutColumnInfo.SpanX = 1;
- ultraGridColumn119.RowLayoutColumnInfo.SpanY = 1;
- ultraGridColumn120.Header.Caption = "登记人";
- ultraGridColumn120.Header.VisiblePosition = 17;
- ultraGridColumn120.RowLayoutColumnInfo.OriginX = 21;
- ultraGridColumn120.RowLayoutColumnInfo.OriginY = 0;
- ultraGridColumn120.RowLayoutColumnInfo.SpanX = 1;
- ultraGridColumn120.RowLayoutColumnInfo.SpanY = 1;
- ultraGridColumn121.Header.Caption = "登记时间";
- ultraGridColumn121.Header.VisiblePosition = 18;
- ultraGridColumn121.RowLayoutColumnInfo.OriginX = 33;
- ultraGridColumn121.RowLayoutColumnInfo.OriginY = 0;
- ultraGridColumn121.RowLayoutColumnInfo.SpanX = 1;
- ultraGridColumn121.RowLayoutColumnInfo.SpanY = 1;
- ultraGridColumn122.Header.Caption = "入库班次";
- ultraGridColumn122.Header.VisiblePosition = 19;
- ultraGridColumn122.RowLayoutColumnInfo.OriginX = 26;
- ultraGridColumn122.RowLayoutColumnInfo.OriginY = 0;
- ultraGridColumn122.RowLayoutColumnInfo.PreferredCellSize = new System.Drawing.Size(66, 0);
- ultraGridColumn122.RowLayoutColumnInfo.SpanX = 1;
- ultraGridColumn122.RowLayoutColumnInfo.SpanY = 1;
- ultraGridColumn123.Header.Caption = "入库班组";
- ultraGridColumn123.Header.VisiblePosition = 20;
- ultraGridColumn123.RowLayoutColumnInfo.OriginX = 27;
- ultraGridColumn123.RowLayoutColumnInfo.OriginY = 0;
- ultraGridColumn123.RowLayoutColumnInfo.PreferredCellSize = new System.Drawing.Size(60, 0);
- ultraGridColumn123.RowLayoutColumnInfo.SpanX = 2;
- ultraGridColumn123.RowLayoutColumnInfo.SpanY = 2;
- ultraGridColumn124.Header.Caption = "工单号";
- ultraGridColumn124.Header.VisiblePosition = 21;
- ultraGridColumn124.RowLayoutColumnInfo.OriginX = 8;
- ultraGridColumn124.RowLayoutColumnInfo.OriginY = 0;
- ultraGridColumn124.RowLayoutColumnInfo.PreferredCellSize = new System.Drawing.Size(83, 0);
- ultraGridColumn124.RowLayoutColumnInfo.SpanX = 1;
- ultraGridColumn124.RowLayoutColumnInfo.SpanY = 1;
- ultraGridColumn125.Header.Caption = "卷板包号";
- ultraGridColumn125.Header.VisiblePosition = 24;
- ultraGridColumn125.RowLayoutColumnInfo.OriginX = 2;
- ultraGridColumn125.RowLayoutColumnInfo.OriginY = 0;
- ultraGridColumn125.RowLayoutColumnInfo.PreferredCellSize = new System.Drawing.Size(129, 0);
- ultraGridColumn125.RowLayoutColumnInfo.SpanX = 1;
- ultraGridColumn125.RowLayoutColumnInfo.SpanY = 1;
- ultraGridColumn126.Header.Caption = "生产时间";
- ultraGridColumn126.Header.VisiblePosition = 22;
- ultraGridColumn126.RowLayoutColumnInfo.OriginX = 25;
- ultraGridColumn126.RowLayoutColumnInfo.OriginY = 0;
- ultraGridColumn126.RowLayoutColumnInfo.PreferredCellSize = new System.Drawing.Size(94, 0);
- ultraGridColumn126.RowLayoutColumnInfo.SpanX = 1;
- ultraGridColumn126.RowLayoutColumnInfo.SpanY = 1;
- ultraGridColumn127.Header.VisiblePosition = 25;
- ultraGridColumn127.Hidden = true;
- ultraGridColumn127.RowLayoutColumnInfo.OriginX = 29;
- ultraGridColumn127.RowLayoutColumnInfo.OriginY = 0;
- ultraGridColumn127.RowLayoutColumnInfo.SpanX = 1;
- ultraGridColumn127.RowLayoutColumnInfo.SpanY = 1;
- ultraGridColumn128.Header.Caption = "";
- ultraGridColumn128.Header.VisiblePosition = 26;
- ultraGridColumn128.RowLayoutColumnInfo.OriginX = 0;
- ultraGridColumn128.RowLayoutColumnInfo.OriginY = 0;
- ultraGridColumn128.RowLayoutColumnInfo.PreferredCellSize = new System.Drawing.Size(34, 0);
- ultraGridColumn128.RowLayoutColumnInfo.SpanX = 1;
- ultraGridColumn128.RowLayoutColumnInfo.SpanY = 1;
- ultraGridColumn128.Style = Infragistics.Win.UltraWinGrid.ColumnStyle.CheckBox;
- ultraGridColumn129.Header.Caption = "产线";
- ultraGridColumn129.Header.VisiblePosition = 27;
- ultraGridColumn129.RowLayoutColumnInfo.OriginX = 6;
- ultraGridColumn129.RowLayoutColumnInfo.OriginY = 0;
- ultraGridColumn129.RowLayoutColumnInfo.PreferredCellSize = new System.Drawing.Size(71, 0);
- ultraGridColumn129.RowLayoutColumnInfo.SpanX = 1;
- ultraGridColumn129.RowLayoutColumnInfo.SpanY = 1;
- ultraGridColumn130.Header.Caption = "订单类型";
- ultraGridColumn130.Header.VisiblePosition = 23;
- ultraGridColumn130.RowLayoutColumnInfo.OriginX = 20;
- ultraGridColumn130.RowLayoutColumnInfo.OriginY = 0;
- ultraGridColumn130.RowLayoutColumnInfo.PreferredCellSize = new System.Drawing.Size(65, 0);
- ultraGridColumn130.RowLayoutColumnInfo.SpanX = 1;
- ultraGridColumn130.RowLayoutColumnInfo.SpanY = 1;
- ultraGridColumn131.Header.Caption = "备注";
- ultraGridColumn131.Header.VisiblePosition = 28;
- ultraGridColumn131.RowLayoutColumnInfo.OriginX = 32;
- ultraGridColumn131.RowLayoutColumnInfo.OriginY = 0;
- ultraGridColumn131.RowLayoutColumnInfo.SpanX = 1;
- ultraGridColumn131.RowLayoutColumnInfo.SpanY = 1;
- ultraGridColumn132.Header.Caption = "工艺类型";
- ultraGridColumn132.Header.VisiblePosition = 29;
- ultraGridColumn132.RowLayoutColumnInfo.OriginX = 5;
- ultraGridColumn132.RowLayoutColumnInfo.OriginY = 0;
- ultraGridColumn132.RowLayoutColumnInfo.PreferredCellSize = new System.Drawing.Size(65, 0);
- ultraGridColumn132.RowLayoutColumnInfo.SpanX = 1;
- ultraGridColumn132.RowLayoutColumnInfo.SpanY = 1;
- ultraGridColumn133.Header.Caption = "综合判定结果";
- ultraGridColumn133.Header.VisiblePosition = 30;
- ultraGridColumn133.RowLayoutColumnInfo.OriginX = 29;
- ultraGridColumn133.RowLayoutColumnInfo.OriginY = 0;
- ultraGridColumn133.RowLayoutColumnInfo.SpanX = 1;
- ultraGridColumn133.RowLayoutColumnInfo.SpanY = 1;
- ultraGridColumn134.Header.Caption = "钢质缺陷";
- ultraGridColumn134.Header.VisiblePosition = 32;
- ultraGridColumn134.RowLayoutColumnInfo.OriginX = 30;
- ultraGridColumn134.RowLayoutColumnInfo.OriginY = 0;
- ultraGridColumn134.RowLayoutColumnInfo.SpanX = 1;
- ultraGridColumn134.RowLayoutColumnInfo.SpanY = 1;
- ultraGridColumn135.Header.Caption = "工艺缺陷";
- ultraGridColumn135.Header.VisiblePosition = 35;
- ultraGridColumn135.RowLayoutColumnInfo.OriginX = 31;
- ultraGridColumn135.RowLayoutColumnInfo.OriginY = 0;
- ultraGridColumn135.RowLayoutColumnInfo.SpanX = 1;
- ultraGridColumn135.RowLayoutColumnInfo.SpanY = 1;
- ultraGridColumn136.Header.Caption = "过磅重量";
- ultraGridColumn136.Header.VisiblePosition = 33;
- ultraGridColumn136.RowLayoutColumnInfo.OriginX = 19;
- ultraGridColumn136.RowLayoutColumnInfo.OriginY = 0;
- ultraGridColumn136.RowLayoutColumnInfo.SpanX = 1;
- ultraGridColumn136.RowLayoutColumnInfo.SpanY = 1;
- ultraGridColumn137.Header.Caption = "炉号";
- ultraGridColumn137.Header.VisiblePosition = 31;
- ultraGridColumn137.RowLayoutColumnInfo.OriginX = 7;
- ultraGridColumn137.RowLayoutColumnInfo.OriginY = 0;
- ultraGridColumn137.RowLayoutColumnInfo.PreferredCellSize = new System.Drawing.Size(95, 0);
- ultraGridColumn137.RowLayoutColumnInfo.SpanX = 1;
- ultraGridColumn137.RowLayoutColumnInfo.SpanY = 1;
- ultraGridColumn138.Header.Caption = "批号";
- ultraGridColumn138.Header.VisiblePosition = 34;
- ultraGridColumn138.RowLayoutColumnInfo.OriginX = 1;
- ultraGridColumn138.RowLayoutColumnInfo.OriginY = 0;
- ultraGridColumn138.RowLayoutColumnInfo.PreferredCellSize = new System.Drawing.Size(92, 0);
- ultraGridColumn138.RowLayoutColumnInfo.SpanX = 1;
- ultraGridColumn138.RowLayoutColumnInfo.SpanY = 2;
- ultraGridColumn139.Header.Caption = "执行标准";
- ultraGridColumn139.Header.VisiblePosition = 36;
- ultraGridColumn139.RowLayoutColumnInfo.OriginX = 10;
- ultraGridColumn139.RowLayoutColumnInfo.OriginY = 0;
- ultraGridColumn139.RowLayoutColumnInfo.PreferredCellSize = new System.Drawing.Size(96, 0);
- ultraGridColumn139.RowLayoutColumnInfo.SpanX = 1;
- ultraGridColumn139.RowLayoutColumnInfo.SpanY = 1;
- ultraGridColumn140.Header.Caption = "卷板总包号";
- ultraGridColumn140.Header.VisiblePosition = 37;
- ultraGridColumn140.Hidden = true;
- ultraGridColumn140.MergedCellStyle = Infragistics.Win.UltraWinGrid.MergedCellStyle.Always;
- ultraGridColumn140.RowLayoutColumnInfo.OriginX = 1;
- ultraGridColumn140.RowLayoutColumnInfo.OriginY = 0;
- ultraGridColumn140.RowLayoutColumnInfo.PreferredCellSize = new System.Drawing.Size(128, 0);
- ultraGridColumn140.RowLayoutColumnInfo.SpanX = 1;
- ultraGridColumn140.RowLayoutColumnInfo.SpanY = 1;
- ultraGridBand4.Columns.AddRange(new object[] {
- ultraGridColumn103,
- ultraGridColumn104,
- ultraGridColumn105,
- ultraGridColumn106,
- ultraGridColumn107,
- ultraGridColumn108,
- ultraGridColumn109,
- ultraGridColumn110,
- ultraGridColumn111,
- ultraGridColumn112,
- ultraGridColumn113,
- ultraGridColumn114,
- ultraGridColumn115,
- ultraGridColumn116,
- ultraGridColumn117,
- ultraGridColumn118,
- ultraGridColumn119,
- ultraGridColumn120,
- ultraGridColumn121,
- ultraGridColumn122,
- ultraGridColumn123,
- ultraGridColumn124,
- ultraGridColumn125,
- ultraGridColumn126,
- ultraGridColumn127,
- ultraGridColumn128,
- ultraGridColumn129,
- ultraGridColumn130,
- ultraGridColumn131,
- ultraGridColumn132,
- ultraGridColumn133,
- ultraGridColumn134,
- ultraGridColumn135,
- ultraGridColumn136,
- ultraGridColumn137,
- ultraGridColumn138,
- ultraGridColumn139,
- ultraGridColumn140});
- appearance99.BackColor = System.Drawing.Color.LightSteelBlue;
- ultraGridBand4.Header.Appearance = appearance99;
- ultraGridBand4.Override.RowSelectors = Infragistics.Win.DefaultableBoolean.True;
- summarySettings8.DisplayFormat = "{0}吨";
- summarySettings8.GroupBySummaryValueAppearance = appearance100;
- summarySettings9.DisplayFormat = "{0}块";
- summarySettings9.GroupBySummaryValueAppearance = appearance101;
- summarySettings10.DisplayFormat = "{0}吨";
- summarySettings10.GroupBySummaryValueAppearance = appearance102;
- ultraGridBand4.Summaries.AddRange(new Infragistics.Win.UltraWinGrid.SummarySettings[] {
- summarySettings8,
- summarySettings9,
- summarySettings10});
- ultraGridBand4.UseRowLayout = true;
- this.gb_Turan.DisplayLayout.BandsSerializer.Add(ultraGridBand4);
- this.gb_Turan.DisplayLayout.CaptionVisible = Infragistics.Win.DefaultableBoolean.False;
- appearance103.BackColor = System.Drawing.SystemColors.ActiveBorder;
- appearance103.BackColor2 = System.Drawing.SystemColors.ControlDark;
- appearance103.BackGradientStyle = Infragistics.Win.GradientStyle.Vertical;
- appearance103.BorderColor = System.Drawing.SystemColors.Window;
- this.gb_Turan.DisplayLayout.GroupByBox.Appearance = appearance103;
- appearance104.ForeColor = System.Drawing.SystemColors.GrayText;
- this.gb_Turan.DisplayLayout.GroupByBox.BandLabelAppearance = appearance104;
- this.gb_Turan.DisplayLayout.GroupByBox.Hidden = true;
- this.gb_Turan.DisplayLayout.GroupByBox.Prompt = "将要分组的列拖至该区域!";
- appearance105.BackColor = System.Drawing.SystemColors.Window;
- appearance105.ForeColor = System.Drawing.SystemColors.ControlText;
- this.gb_Turan.DisplayLayout.Override.ActiveCellAppearance = appearance105;
- appearance106.BackColor = System.Drawing.SystemColors.Highlight;
- appearance106.ForeColor = System.Drawing.SystemColors.HighlightText;
- this.gb_Turan.DisplayLayout.Override.ActiveRowAppearance = appearance106;
- appearance107.BorderColor = System.Drawing.Color.Black;
- appearance107.TextVAlign = Infragistics.Win.VAlign.Middle;
- this.gb_Turan.DisplayLayout.Override.CellAppearance = appearance107;
- this.gb_Turan.DisplayLayout.Override.CellClickAction = Infragistics.Win.UltraWinGrid.CellClickAction.EditAndSelectText;
- this.gb_Turan.DisplayLayout.Override.CellPadding = 0;
- appearance108.BackColor = System.Drawing.SystemColors.Control;
- appearance108.BackColor2 = System.Drawing.SystemColors.ControlDark;
- appearance108.BackGradientAlignment = Infragistics.Win.GradientAlignment.Element;
- appearance108.BackGradientStyle = Infragistics.Win.GradientStyle.Horizontal;
- appearance108.BorderColor = System.Drawing.SystemColors.Window;
- appearance108.TextHAlign = Infragistics.Win.HAlign.Left;
- appearance108.TextVAlign = Infragistics.Win.VAlign.Middle;
- this.gb_Turan.DisplayLayout.Override.GroupByRowAppearance = appearance108;
- this.gb_Turan.DisplayLayout.Override.GroupBySummaryDisplayStyle = Infragistics.Win.UltraWinGrid.GroupBySummaryDisplayStyle.SummaryCells;
- appearance109.BackColor = System.Drawing.Color.Silver;
- this.gb_Turan.DisplayLayout.Override.HeaderAppearance = appearance109;
- this.gb_Turan.DisplayLayout.Override.HeaderClickAction = Infragistics.Win.UltraWinGrid.HeaderClickAction.SortMulti;
- this.gb_Turan.DisplayLayout.Override.HeaderStyle = Infragistics.Win.HeaderStyle.Standard;
- appearance110.BackColor = System.Drawing.SystemColors.Window;
- appearance110.BorderColor = System.Drawing.Color.Black;
- appearance110.TextVAlign = Infragistics.Win.VAlign.Middle;
- this.gb_Turan.DisplayLayout.Override.RowAppearance = appearance110;
- appearance111.BackColor = System.Drawing.SystemColors.Window;
- appearance111.BorderColor = System.Drawing.Color.Black;
- appearance111.TextVAlign = Infragistics.Win.VAlign.Middle;
- this.gb_Turan.DisplayLayout.Override.RowPreviewAppearance = appearance111;
- this.gb_Turan.DisplayLayout.Override.RowSelectorHeaderStyle = Infragistics.Win.UltraWinGrid.RowSelectorHeaderStyle.SeparateElement;
- this.gb_Turan.DisplayLayout.Override.RowSelectorNumberStyle = Infragistics.Win.UltraWinGrid.RowSelectorNumberStyle.RowIndex;
- this.gb_Turan.DisplayLayout.Override.RowSelectors = Infragistics.Win.DefaultableBoolean.True;
- appearance112.TextHAlign = Infragistics.Win.HAlign.Left;
- appearance112.TextVAlign = Infragistics.Win.VAlign.Middle;
- this.gb_Turan.DisplayLayout.Override.SelectedRowAppearance = appearance112;
- this.gb_Turan.DisplayLayout.Override.SummaryDisplayArea = Infragistics.Win.UltraWinGrid.SummaryDisplayAreas.BottomFixed;
- appearance113.BackColor = System.Drawing.SystemColors.Window;
- this.gb_Turan.DisplayLayout.Override.SummaryFooterAppearance = appearance113;
- appearance114.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(255)))), ((int)(((byte)(255)))), ((int)(((byte)(192)))));
- appearance114.ForeColor = System.Drawing.Color.Red;
- this.gb_Turan.DisplayLayout.Override.SummaryFooterCaptionAppearance = appearance114;
- this.gb_Turan.DisplayLayout.Override.SummaryFooterCaptionVisible = Infragistics.Win.DefaultableBoolean.False;
- appearance115.BackColor = System.Drawing.Color.MistyRose;
- appearance115.ForeColor = System.Drawing.Color.Blue;
- appearance115.TextHAlign = Infragistics.Win.HAlign.Right;
- appearance115.TextVAlign = Infragistics.Win.VAlign.Middle;
- this.gb_Turan.DisplayLayout.Override.SummaryValueAppearance = appearance115;
- appearance116.BackColor = System.Drawing.SystemColors.ControlLight;
- this.gb_Turan.DisplayLayout.Override.TemplateAddRowAppearance = appearance116;
- this.gb_Turan.DisplayLayout.ScrollBounds = Infragistics.Win.UltraWinGrid.ScrollBounds.ScrollToFill;
- this.gb_Turan.DisplayLayout.ScrollStyle = Infragistics.Win.UltraWinGrid.ScrollStyle.Immediate;
- this.gb_Turan.DisplayLayout.ViewStyleBand = Infragistics.Win.UltraWinGrid.ViewStyleBand.OutlookGroupBy;
- this.gb_Turan.Dock = System.Windows.Forms.DockStyle.Fill;
- this.gb_Turan.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
- this.gb_Turan.Location = new System.Drawing.Point(3, 18);
- this.gb_Turan.Name = "gb_Turan";
- this.gb_Turan.Size = new System.Drawing.Size(962, 219);
- this.gb_Turan.TabIndex = 14;
- this.gb_Turan.Text = "ultraGrid2";
- this.gb_Turan.CellChange += new Infragistics.Win.UltraWinGrid.CellEventHandler(this.gb_Turan_CellChange);
- //
- // Frm_TurnoffManage
- //
- this.AutoScaleBaseSize = new System.Drawing.Size(6, 14);
- this.ClientSize = new System.Drawing.Size(968, 530);
- this.Controls.Add(this.ultraGroupBox2);
- this.Controls.Add(this.ultraExpandableGroupBox1);
- this.Controls.Add(this.ultraGroupBox1);
- this.Controls.Add(this.panel1);
- this.Name = "Frm_TurnoffManage";
- this.Text = "卷板成品收集入库管理";
- this.Load += new System.EventHandler(this.Frm_TurnoffManage_Load);
- this.panel1.ResumeLayout(false);
- ((System.ComponentModel.ISupportInitialize)(this.ultraToolbarsManager1)).EndInit();
- ((System.ComponentModel.ISupportInitialize)(this.ultraGroupBox1)).EndInit();
- this.ultraGroupBox1.ResumeLayout(false);
- ((System.ComponentModel.ISupportInitialize)(this.cmb_ProcL)).EndInit();
- ((System.ComponentModel.ISupportInitialize)(this.dte_EndTime)).EndInit();
- ((System.ComponentModel.ISupportInitialize)(this.dte_BeginTime)).EndInit();
- ((System.ComponentModel.ISupportInitialize)(this.cmb_QuYu)).EndInit();
- ((System.ComponentModel.ISupportInitialize)(this.txt_PIhao_End)).EndInit();
- ((System.ComponentModel.ISupportInitialize)(this.txt_Pihao_Top)).EndInit();
- ((System.ComponentModel.ISupportInitialize)(this.txt_BNumber)).EndInit();
- ((System.ComponentModel.ISupportInitialize)(this.txt_PiHao_Begin)).EndInit();
- ((System.ComponentModel.ISupportInitialize)(this.txt_GangP)).EndInit();
- ((System.ComponentModel.ISupportInitialize)(this.txt_RollHao)).EndInit();
- ((System.ComponentModel.ISupportInitialize)(this.txt_PlanID)).EndInit();
- ((System.ComponentModel.ISupportInitialize)(this.txt_OrderNO)).EndInit();
- ((System.ComponentModel.ISupportInitialize)(this.ultraExpandableGroupBox1)).EndInit();
- this.ultraExpandableGroupBox1.ResumeLayout(false);
- this.ultraExpandableGroupBoxPanel1.ResumeLayout(false);
- ((System.ComponentModel.ISupportInitialize)(this.gb_Press)).EndInit();
- this.panel2.ResumeLayout(false);
- ((System.ComponentModel.ISupportInitialize)(this.txt_Seq)).EndInit();
- ((System.ComponentModel.ISupportInitialize)(this.cmb_plid)).EndInit();
- ((System.ComponentModel.ISupportInitialize)(this.cmb_Gylx)).EndInit();
- ((System.ComponentModel.ISupportInitialize)(this.cmb_area)).EndInit();
- ((System.ComponentModel.ISupportInitialize)(this.txt_ZHPD)).EndInit();
- ((System.ComponentModel.ISupportInitialize)(this.txt_Plact)).EndInit();
- ((System.ComponentModel.ISupportInitialize)(this.txt_ReMark)).EndInit();
- ((System.ComponentModel.ISupportInitialize)(this.dte_Time)).EndInit();
- ((System.ComponentModel.ISupportInitialize)(this.txt_PaiHao)).EndInit();
- ((System.ComponentModel.ISupportInitialize)(this.txt_Num)).EndInit();
- ((System.ComponentModel.ISupportInitialize)(this.txt_WEIGHT)).EndInit();
- ((System.ComponentModel.ISupportInitialize)(this.txt_Width)).EndInit();
- ((System.ComponentModel.ISupportInitialize)(this.txt_Length)).EndInit();
- ((System.ComponentModel.ISupportInitialize)(this.txt_Ply)).EndInit();
- ((System.ComponentModel.ISupportInitialize)(this.cmb_ClassStream)).EndInit();
- ((System.ComponentModel.ISupportInitialize)(this.cmb_ClassOreder)).EndInit();
- ((System.ComponentModel.ISupportInitialize)(this.cmb_Buress)).EndInit();
- ((System.ComponentModel.ISupportInitialize)(this.cmb_BugReaSon)).EndInit();
- ((System.ComponentModel.ISupportInitialize)(this.txt_GangpeiH)).EndInit();
- ((System.ComponentModel.ISupportInitialize)(this.txt_Scid_End_Y)).EndInit();
- ((System.ComponentModel.ISupportInitialize)(this.txt_Scid_Begin_Y)).EndInit();
- ((System.ComponentModel.ISupportInitialize)(this.txt_Scid_Top_Y)).EndInit();
- ((System.ComponentModel.ISupportInitialize)(this.txt_TiShi)).EndInit();
- ((System.ComponentModel.ISupportInitialize)(this.ultraGroupBox2)).EndInit();
- this.ultraGroupBox2.ResumeLayout(false);
- ((System.ComponentModel.ISupportInitialize)(this.gb_Turan)).EndInit();
- ((System.ComponentModel.ISupportInitialize)(this.ultraDataSource1)).EndInit();
- this.ResumeLayout(false);
- }
- #endregion
- #region 查询
- private string GetWhere()
- {
- string strSql = "";
- if (this.chk_CollectTime.Checked)
- {
- strSql += " AND TO_CHAR(A.CREATETIME,'YYYY-MM-DD') >='" + Convert.ToDateTime(this.dte_BeginTime.Value).ToString("yyyy-MM-dd") + "' "
- + " AND TO_CHAR(A.CREATETIME,'YYYY-MM-DD') <='" + Convert.ToDateTime(this.dte_EndTime.Value).ToString("yyyy-MM-dd") + "' ";
- }
- if (this.chk_OrderNO.Checked)
- {
- strSql += "AND A.ORD_SEQ like '%" + this.txt_OrderNO.Text + "%'"; ;
- }
- if (this.chk_PactID.Checked)
- {
- strSql += "AND A.ORD_NO like '%" + this.txt_PlanID.Text + "%'";
- }
- if (this.chk_RollHao.Checked)
- {
- strSql += "AND A.OLD_SAMPL_NO LIKE '%" + this.txt_RollHao.Text + "%'";
- }
- if (this.chk_BanHao.Checked)
- {
- strSql += "AND A.SLAB_NO='" + this.txt_GangP.Text + "'";
- }
- if (this.chk_PiHao.Checked)
- {
- strSql += "AND A.COIL_NO_ID='" + this.txt_PiHao_Begin.Text + "-" + this.txt_Pihao_Top.Text + "-" + this.txt_PIhao_End.Text + "'";
- }
- if (this.chk_BNumber.Checked)
- {
- strSql += "AND A.BAHCT_NUMBER||A.SERIAL_NUMBER LIKE '" + this.txt_BNumber.Text + "'";
- }
- return strSql;
- }
- private void DetailQuery(string _Conntion)
- {
- try
- {
- string strOut = "";
- DataSet ds = (DataSet)Core.Mes.ClientFrameWork.ClientCommon._RemotingHelp.ExecuteMethod("CoilMachiningManage", "Core.XgMes.Server.CoilMachiningManage.TurnoffManage", "Procdute_Query", new object[] { _Conntion }, out strOut);
- this.gb_Press.DataSource = ds;
- this.gb_Press.UpdateData();
- Comm.SetGridSumArea(this.gb_Press);
- }
- catch (Exception ex)
- {
- System.Diagnostics.Debug.WriteLine(ex.ToString());
- }
- }
- private void GetZYDetail(string _Conntion)
- {
- string strOut = "";
- try
- {
- DataSet ds = (DataSet)Core.Mes.ClientFrameWork.ClientCommon._RemotingHelp.ExecuteMethod("CoilMachiningManage", "Core.XgMes.Server.CoilMachiningManage.TurnoffManage", "Procdute_Query", new object[] { _Conntion }, out strOut);
- if (ds != null && ds.Tables[0].Rows.Count > 0)
- {
- System.Data.DataRow dr = ds.Tables[0].Rows[0];
- this.txt_GangpeiH.Text = Comm.ObjToStr(dr["OLD_SAMPL_NO"]);
- this.txt_PaiHao.Text = Comm.ObjToStr(dr["STL_GRD"]);
- this.txt_Plact.Text = Comm.ObjToStr(dr["ORD_NO"]);
- this.txt_Ply.Value = Comm.ObjToDouble(dr["ZSLAB_PLY"]);
- this.txt_Width.Value = Comm.ObjToDouble(dr["ZSLAB_WIDTH"]);
- this.txt_Length.Value = Comm.ObjToStr(dr["ZSLAB_LENGTH"]);
- this.txt_Num.Value = Comm.ObjToStr(dr["ZSLAB_NUM"]);
- this.txt_WEIGHT.Value = Comm.ObjToStr(dr["ZSLAB_WEIGHT"]);
- this.cmb_BugReaSon.Value = Comm.ObjToStr(dr["CRK_CD1"]);
- this.cmb_Gylx.Value = Comm.ObjToStr(dr["GYLX"]);
- this.cmb_plid.Value = Comm.ObjToStr(dr["STOCKTYPE"]);
- this.txt_ZHPD.Value = Comm.ObjToStr(dr["TOT_DEC_GRD"]);
- this.txt_Seq.Text = Comm.ObjToStr(dr["ORD_SEQ"]);
- this.cmb_Gylx.Value = Comm.ObjToStr(dr["GYLX"]);
- }
- else
- {
- txt_TiShi.Appearance.ForeColor = System.Drawing.Color.Red;
- txt_TiShi.Text = "该钢卷无生产实绩信息,请与生产作业组联系";
- txt_Scid_Top_Y.Focus();
- }
- }
- catch (Exception ex)
- {
- System.Diagnostics.Debug.WriteLine(ex.ToString());
- }
- }
- private void txt_Scid_Top_Y_Enter(object sender, System.EventArgs e)
- {
- try
- {
- 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();
- }
- }
- catch (Exception ex)
- {
- System.Diagnostics.Debug.WriteLine(ex.ToString());
- }
- }
- private void txt_Scid_Top_Y_KeyDown(object sender, System.Windows.Forms.KeyEventArgs e)
- {
- try
- {
- if (e.KeyData == Keys.Return)
- {
- if (((System.Windows.Forms.Control)sender).Name == this.txt_Scid_End_Y.Name)
- {
- string sqlStr = " AND A.COIL_NO_ID = '" + this.txt_Scid_Top_Y.Text.Trim() + "-" + this.txt_Scid_Begin_Y.Text.Trim() + "-" + this.txt_Scid_End_Y.Text + "'";
- this.GetZYDetail(sqlStr);
- }
- if (((System.Windows.Forms.Control)sender).Name == this.Btn_Turn.Name)
- {
- this.TurnAdd();
- }
- System.Windows.Forms.SendKeys.Send("{TAB}");
- }
- }
- catch (Exception ex)
- {
- System.Diagnostics.Debug.WriteLine(ex.ToString());
- }
- }
- private string Turn_GetWhere()
- {
- string strSql = "";
- if (this.chk_CollectTime.Checked)
- {
- strSql += " AND TO_CHAR(A.CREATETIME,'YYYY-MM-DD') >='" + Convert.ToDateTime(this.dte_BeginTime.Value).ToString("yyyy-MM-dd") + "' "
- + " AND TO_CHAR(A.CREATETIME,'YYYY-MM-DD') <='" + Convert.ToDateTime(this.dte_EndTime.Value).ToString("yyyy-MM-dd") + "' ";
- }
- if (this.chk_OrderNO.Checked)
- {
- strSql += "AND A.ORD_SEQ='" + this.txt_OrderNO.Text + "'"; ;
- }
- if (this.chk_PactID.Checked)
- {
- strSql += "AND A.ORD_NO LIKE '%" + this.txt_PlanID.Text + "%'";
- }
- if (this.chk_RollHao.Checked)
- {
- strSql += "AND A.OLD_SAMPL_NO='" + this.txt_RollHao.Text + "'";
- }
- if (this.chk_BanHao.Checked)
- {
- strSql += "AND A.SLAB_NO='" + this.txt_GangP.Text + "'";
- }
- if (this.chk_PiHao.Checked)
- {
- strSql += "AND COIL_NO_ID='" + this.txt_PiHao_Begin.Text + "-" + this.txt_Pihao_Top.Text + "-" + this.txt_PIhao_End.Text + "'";
- }
- if (this.chk_BNumber.Checked)
- {
- strSql += "AND A.BAHCT_NUMBER||A.SERIAL_NUMBER LIKE '" + this.txt_BNumber.Text + "'";
- }
- if (this.ultraCheckEditor1.Checked)
- {
- strSql += " AND B.AREA='" + this.cmb_QuYu.Value + "'";
- }
- if (this.chk_ProcLine.Checked)
- {
- strSql += " AND A.STOCKTYPE='" + this.cmb_ProcL.Value.ToString() + "'";
- }
- return strSql;
- }
- private void TurnQuery(string _Conntion)
- {
- try
- {
- string strOut = "";
- DataSet ds = (DataSet)Core.Mes.ClientFrameWork.ClientCommon._RemotingHelp.ExecuteMethod("CoilMachiningManage", "Core.XgMes.Server.CoilMachiningManage.TurnoffManage", "Turn_Query", new object[] { _Conntion }, out strOut);
- this.gb_Turan.DataSource = ds;
- this.gb_Turan.UpdateData();
- Comm.SetGridSumArea(this.gb_Turan);
- }
- catch (Exception ex)
- {
- System.Diagnostics.Debug.WriteLine(ex.ToString());
- }
- }
- #endregion
- #region 成品入库
- private bool Check_Turn()
- {
- if (this.txt_Scid_End_Y.Text.Trim().Length == 0 && this.txt_Scid_Begin_Y.Text.Trim().Length == 0 && this.txt_Scid_Top_Y.Text.Trim().Length == 0)
- {
- txt_TiShi.Appearance.ForeColor = System.Drawing.Color.Red;
- txt_TiShi.Text = "板批号不能为空!";
- return false;
- }
- if (this.cmb_Buress.Text.Trim().Length == 0)
- {
- txt_TiShi.Appearance.ForeColor = System.Drawing.Color.Red;
- txt_TiShi.Text = "堆位不能为空!";
- return false;
- }
- if (this.cmb_ClassOreder.Text.Trim().Length == 0)
- {
- txt_TiShi.Appearance.ForeColor = System.Drawing.Color.Red;
- txt_TiShi.Text = "班次不能为空!";
- return false;
- }
- if (this.cmb_ClassStream.Text.Trim().Length == 0)
- {
- txt_TiShi.Appearance.ForeColor = System.Drawing.Color.Red;
- txt_TiShi.Text = "班组不能为空!";
- return false;
- }
- if (this.txt_Ply.Value.ToString().Trim().Length == 0)
- {
- txt_TiShi.Appearance.ForeColor = System.Drawing.Color.Red;
- txt_TiShi.Text = "厚度不能为空!";
- return false;
- }
- return true;
- }
- private void TurnAdd()
- {
- if (!Check_Turn())
- {
- return;
- }
- try
- {
- string strOut = "";
- ArrayList array = new ArrayList();
- array.Add(this.txt_Scid_Top_Y.Text + "-" + this.txt_Scid_Begin_Y.Text + "-" + this.txt_Scid_End_Y.Text);
- if (array.Count == 0)
- {
- MessageBox.Show("请您查看卷板批号是否填写正确!", "提示", System.Windows.Forms.MessageBoxButtons.OK, System.Windows.Forms.MessageBoxIcon.Information);
- return;
- }
- ArrayList Other = new ArrayList();
- Other.Add(this.cmb_BugReaSon.Text);
- Other.Add(this.txt_ZHPD.Value);
- Other.Add(this.cmb_Buress.Value.ToString());
- Other.Add(this.cmb_ClassOreder.Value.ToString());
- Other.Add(this.cmb_ClassOreder.Value.ToString());
- Other.Add(this.txt_Length.Value.ToString());
- Other.Add(this.txt_Num.Value.ToString());
- Other.Add(this.txt_WEIGHT.Value.ToString());
- Other.Add(Core.Mes.ClientFrameWork.ClientCommon._UserInfo.UserName);
- Other.Add(this.txt_ReMark.Text);
- object obj = Core.Mes.ClientFrameWork.ClientCommon._RemotingHelp.ExecuteMethod("CoilMachiningManage", "Core.XgMes.Server.CoilMachiningManage.TurnoffManage", "Turn_ADD", new object[] { array, Other }, out strOut);
- if (obj != null && obj.ToString() == "1")
- {
- this.txt_TiShi.Appearance.ForeColor = System.Drawing.Color.Blue;
- txt_TiShi.Text = "成功入库!";
- this.txt_WEIGHT.Value = 0;
- this.txt_Num.Value = 0;
- this.txt_Length.Value = 0;
- this.txt_Ply.Value = 0;
- this.txt_Width.Value = 0;
- this.txt_GangpeiH.Clear();
- DataSet ds = (DataSet)this.gb_Press.DataSource;
- System.Data.DataRow[] row = ds.Tables["KCJ3_ZY_TASKDETAIL"].Select("COIL_NO_ID='" + this.txt_Scid_Top_Y.Text + "-" + this.txt_Scid_Begin_Y.Text + "-" + this.txt_Scid_End_Y.Text + "'");
- for (int i = 0; i < row.Length; i++)
- {
- ds.Tables["KCJ3_ZY_TASKDETAIL"].Rows.Remove(row[i]);
- ds.Tables["KCJ3_ZY_TASKDETAIL"].AcceptChanges();
- }
- string strSql = " AND A.COIL_NO_ID='" + this.txt_Scid_Top_Y.Text + "-" + this.txt_Scid_Begin_Y.Text + "-" + this.txt_Scid_End_Y.Text + "'";
- this.TurnQuery(strSql);
- }
- else
- {
- txt_TiShi.Appearance.ForeColor = System.Drawing.Color.Red;
- txt_TiShi.Text = Comm.ObjToStr(obj) + strOut;
- }
- }
- catch (Exception ex)
- {
- System.Diagnostics.Debug.WriteLine(ex.ToString());
- }
- }
- #endregion
- private void ultraToolbarsManager1_ToolClick(object sender, Infragistics.Win.UltraWinToolbars.ToolClickEventArgs e)
- {
- switch (e.Tool.Key)
- {
- case "QUERY":
- TurnQuery(this.Turn_GetWhere());
- break;
- case "ADD":
- this.TurnAdd();
- break;
- case "DEL":
- this.Turn_Del();
- break;
- case "REF":
- this.DetailQuery(this.GetWhere());
- break;
- case "TO_EXCEL":
- ExportButtressInfo();
- break;
- case "Close":
- break;
- }
- }
- #region 初始化
- private void Frm_TurnoffManage_Load(object sender, System.EventArgs e)
- {
- string strOut = "";
- string sql = "", strSql="";
- DataSet ds;
- Comm.SetGridSumArea(this.gb_Press);
- Comm.SetGridSumArea(this.gb_Turan);
- //班次
- sql = "SELECT ID_,NAME_ FROM SCM_BASE_INFO WHERE SORT_CODE = '3002'";
- ds = (DataSet)ClientCommon._RemotingHelp.ExecuteMethod("CoilMachiningManage", "Core.XgMes.Server.CoilMachiningManage.Common", "GetDataSet", new object[] { sql }, out strOut);
- ds.Tables[0].TableName = "SCM_BASE_INFO";
- Comm.Init_ComboControl(this.cmb_ClassOreder, "SCM_BASE_INFO", "NAME_", "ID_", ref ds);
- //班组
- sql = "SELECT ID_,NAME_ FROM SCM_BASE_INFO WHERE SORT_CODE = '3003'";
- ds = (DataSet)ClientCommon._RemotingHelp.ExecuteMethod("CoilMachiningManage", "Core.XgMes.Server.CoilMachiningManage.Common", "GetDataSet", new object[] { sql }, out strOut);
- ds.Tables[0].TableName = "SCM_BASE_INFO";
- Comm.Init_ComboControl(this.cmb_ClassStream, "SCM_BASE_INFO", "NAME_", "ID_", ref ds);
- //堆位
- sql = "SELECT BUTTRESSCODE FROM KCJ_BUTTRESS WHERE BUTTRESSTYPE='1' AND ISVALID='1' ORDER BY BUTTRESSCODE ASC";
- ds = (DataSet)ClientCommon._RemotingHelp.ExecuteMethod("CoilMachiningManage", "Core.XgMes.Server.CoilMachiningManage.Common", "GetDataSet", new object[] { sql }, out strOut);
- ds.Tables[0].TableName = "KCJ_BUTTRESS";
- Comm.Init_ComboControl(this.cmb_Buress, "KCJ_BUTTRESS", "BUTTRESSCODE", "BUTTRESSCODE", ref ds);
- //原料区域cmb_NewArea
- sql = "select areacode from kcj_area where areatype='1' and isvalid='1'";
- ds = (DataSet)ClientCommon._RemotingHelp.ExecuteMethod("CoilMachiningManage", "Core.XgMes.Server.CoilMachiningManage.Common", "GetDataSet", new object[] { sql }, out strOut);
- ds.Tables[0].TableName = "KCJ_AREA";
- Comm.Init_ComboControl(this.cmb_QuYu, "KCJ_AREA", "AREACODE", "AREACODE", ref ds);
- //add by lyp 成品区域
- Comm.Init_ComboControl(this.cmb_area, "KCJ_AREA", "AREACODE", "AREACODE", ref ds);
- //开平线
- sql = "SELECT ID_,NAME_ FROM KCJ_BASEDATA WHERE SORT_CODE in ('8055','8066')";
- ds = (DataSet)ClientCommon._RemotingHelp.ExecuteMethod("CoilMachiningManage", "Core.XgMes.Server.CoilMachiningManage.Common", "GetDataSet", new object[] { sql }, out strOut);
- ds.Tables[0].TableName = "KCJ_BASEDATA";
- Comm.Init_ComboControl(this.cmb_ProcL, "KCJ_BASEDATA", "NAME_", "ID_", ref ds);
- Comm.Init_ComboControl(this.cmb_plid, "KCJ_BASEDATA", "NAME_", "ID_", ref ds);
- //工艺缺陷
- strSql = "SELECT T.ID_,T.NAME_ FROM SCM_BASE_INFO T WHERE ID_ LIKE '4124ZB1G%' AND T.SORT_CODE = '4124'";
- ds = (DataSet)ClientCommon._RemotingHelp.ExecuteMethod("JTurnoffManager", "Core.XgMes.Server.JGKC.TurnoffManager.Common", "GetDataSet", new object[] { strSql }, out strOut);
- ds.Tables[0].TableName = "SCM_BASE_INFO";
- Comm.Init_ComboControl(this.cmb_BugReaSon, "SCM_BASE_INFO", "NAME_", "ID_", ref ds);
- //判定类别
- strSql = "SELECT T.ID_,T.NAME_ FROM SCM_BASE_INFO T WHERE T.SORT_CODE = '4127'";
- ds = (DataSet)ClientCommon._RemotingHelp.ExecuteMethod("JTurnoffManager", "Core.XgMes.Server.JGKC.TurnoffManager.Common", "GetDataSet", new object[] { strSql }, out strOut);
- ds.Tables[0].TableName = "SCM_BASE_INFO";
- Comm.Init_ComboControl(this.txt_ZHPD, "SCM_BASE_INFO", "NAME_", "ID_", ref ds);
- //工艺类型
- sql = "SELECT ID_,NAME_ FROM KCJ_BASEDATA WHERE SORT_CODE ='8077'";
- ds = (DataSet)ClientCommon._RemotingHelp.ExecuteMethod("CoilMachiningManage", "Core.XgMes.Server.CoilMachiningManage.Common", "GetDataSet", new object[] { sql }, out strOut);
- ds.Tables[0].TableName = "KCJ_BASEDATA";
- Comm.Init_ComboControl(this.cmb_Gylx, "KCJ_BASEDATA", "NAME_", "ID_", ref ds);
-
-
-
- }
- #endregion
- #region 入库
- private void Btn_Turn_Click(object sender, System.EventArgs e)
- {
- if (!Check_Turn())
- {
- return;
- }
- try
- {
- string strOut = "";
- ArrayList array = new ArrayList();
- array.Add(this.txt_Scid_Top_Y.Text + "-" + this.txt_Scid_Begin_Y.Text + "-" + this.txt_Scid_End_Y.Text);
- if (array.Count == 0)
- {
- MessageBox.Show("请您查看卷板批号是否填写正确!", "提示", System.Windows.Forms.MessageBoxButtons.OK, System.Windows.Forms.MessageBoxIcon.Information);
- return;
- }
- ArrayList Other = new ArrayList();
- Other.Add(this.cmb_BugReaSon.Text);
- Other.Add(this.txt_ZHPD.Value);
- Other.Add(this.cmb_Buress.Text);
- Other.Add(this.cmb_ClassOreder.Value.ToString());
- Other.Add(this.cmb_ClassOreder.Value.ToString());
- Other.Add(this.txt_Length.Value.ToString());
- Other.Add(this.txt_Num.Value.ToString());
- Other.Add(this.txt_WEIGHT.Value.ToString());
- Other.Add(Core.Mes.ClientFrameWork.ClientCommon._UserInfo.UserName);
- Other.Add(this.txt_ReMark.Text);
- Other.Add(this.txt_Plact.Text.Trim());
- Other.Add(this.txt_Width.Text.Trim());
- Other.Add(this.txt_Seq.Text.Trim());
-
- object obj = Core.Mes.ClientFrameWork.ClientCommon._RemotingHelp.ExecuteMethod("CoilMachiningManage", "Core.XgMes.Server.CoilMachiningManage.TurnoffManage", "Turn_ADD", new object[] { array, Other }, out strOut);
- if (obj != null && obj.ToString() == "1")
- {
- this.txt_TiShi.Appearance.ForeColor = System.Drawing.Color.Blue;
- txt_TiShi.Text = "成功入库!";
- this.txt_WEIGHT.Value = 0;
- this.txt_Num.Value = 0;
- this.txt_Length.Value = 0;
- this.txt_Ply.Value = 0;
- this.txt_Width.Value = 0;
- this.txt_GangpeiH.Clear();
- DataSet ds = (DataSet)this.gb_Press.DataSource;
- System.Data.DataRow[] row = ds.Tables["KCJ3_ZY_TASKDETAIL"].Select("COIL_NO_ID='" + this.txt_Scid_Top_Y.Text + "-" + this.txt_Scid_Begin_Y.Text + "-" + this.txt_Scid_End_Y.Text + "'");
- for (int i = 0; i < row.Length; i++)
- {
- ds.Tables["KCJ3_ZY_TASKDETAIL"].Rows.Remove(row[i]);
- ds.Tables["KCJ3_ZY_TASKDETAIL"].AcceptChanges();
- }
- string strSql = " AND A.COIL_NO_ID='" + this.txt_Scid_Top_Y.Text + "-" + this.txt_Scid_Begin_Y.Text + "-" + this.txt_Scid_End_Y.Text + "'";
- this.TurnQuery(strSql);
- }
- else
- {
- txt_TiShi.Appearance.ForeColor = System.Drawing.Color.Red;
- txt_TiShi.Text = Comm.ObjToStr(obj) + strOut;
- }
- }
- catch (Exception ex)
- {
- System.Diagnostics.Debug.WriteLine(ex.ToString());
- }
- }
- #endregion
- #region 撤消成品入库
- private void Turn_Del()
- {
- try
- {
- string strOut = "";
- ArrayList array = new ArrayList();
- array = Comm.GetFieldValue(this.gb_Turan, "FLAG", "COIL_NO_ID");
- if (array.Count == 0)
- {
- MessageBox.Show("请您选择你要撤消的成品信息!", "提示", System.Windows.Forms.MessageBoxButtons.OK, System.Windows.Forms.MessageBoxIcon.Information);
- return;
- }
- object obj = Core.Mes.ClientFrameWork.ClientCommon._RemotingHelp.ExecuteMethod("CoilMachiningManage", "Core.XgMes.Server.CoilMachiningManage.TurnoffManage", "Turn_Del", new object[] { array }, out strOut);
- if (obj != null && obj.ToString() == "1")
- {
- DataSet ds = (DataSet)this.gb_Turan.DataSource;
- System.Data.DataRow[] row = ds.Tables["KCJ3_TURNOFFLIST"].Select("FLAG='TRUE'");
- for (int i = 0; i < row.Length; i++)
- {
- ds.Tables["KCJ3_TURNOFFLIST"].Rows.Remove(row[i]);
- ds.Tables["KCJ3_TURNOFFLIST"].AcceptChanges();
- }
- this.DetailQuery("");
- }
- else
- {
- txt_TiShi.Appearance.ForeColor = System.Drawing.Color.Red;
- txt_TiShi.Text = Comm.ObjToStr(obj) + strOut;
- }
- }
- catch (Exception ex)
- {
- System.Diagnostics.Debug.WriteLine(ex.ToString());
- }
- }
- #endregion
- #region EVENT
- private void gb_Turan_CellChange(object sender, Infragistics.Win.UltraWinGrid.CellEventArgs e)
- {
- try
- {
- if (e.Cell.Column.Key == "FLAG")
- {
- e.Cell.Row.Update();
- if (e.Cell.Value.ToString().ToUpper() == "TRUE")
- {
- e.Cell.Row.Appearance.ForeColor = System.Drawing.Color.Blue;
- }
- else
- {
- e.Cell.Row.Appearance.ForeColor = System.Drawing.Color.Black;
- }
- }
- }
- catch (System.Exception ex)
- {
- System.Diagnostics.Debug.WriteLine(ex.ToString());
- }
- }
- private void chk_SelectAll_CheckedChanged(object sender, System.EventArgs e)
- {
- try
- {
- Infragistics.Win.UltraWinGrid.UltraGridBase tmpGrid = this.gb_Press;
- foreach (Infragistics.Win.UltraWinGrid.UltraGridRow row in this.gb_Press.Rows)
- {
- if (!row.IsFilteredOut)
- {
- row.Cells["FLAG"].Value = this.chk_SelectAll.Checked.ToString().ToUpper();
- row.Update();
- }
- }
- Infragistics.Win.UltraWinGrid.UltraGridBase tmpGrid1 = this.gb_Turan;
- foreach (Infragistics.Win.UltraWinGrid.UltraGridRow row in this.gb_Turan.Rows)
- {
- if (!row.IsFilteredOut)
- {
- row.Cells["FLAG"].Value = this.chk_SelectAll.Checked.ToString().ToUpper();
- row.Update();
- }
- }
- }
- catch (System.Exception ex)
- {
- System.Diagnostics.Debug.WriteLine(ex.ToString());
- }
- }
- private void chk_AllowFilter_CheckedChanged(object sender, System.EventArgs e)
- {
- try
- {
- if (this.chk_AllowFilter.Checked)
- {
- this.gb_Press.DisplayLayout.Override.AllowRowFiltering = Infragistics.Win.DefaultableBoolean.True;
- this.gb_Press.DisplayLayout.Override.FilterUIType = Infragistics.Win.UltraWinGrid.FilterUIType.FilterRow;
- this.gb_Turan.DisplayLayout.Override.AllowRowFiltering = Infragistics.Win.DefaultableBoolean.True;
- this.gb_Turan.DisplayLayout.Override.FilterUIType = Infragistics.Win.UltraWinGrid.FilterUIType.FilterRow;
- }
- else
- {
- this.gb_Press.DisplayLayout.Override.AllowRowFiltering = Infragistics.Win.DefaultableBoolean.False;
- this.gb_Press.DisplayLayout.Override.FilterUIType = Infragistics.Win.UltraWinGrid.FilterUIType.Default;
- if (this.gb_Press.DisplayLayout.Bands[0].ColumnFilters.Count > 0)
- {
- for (int i = 0; i < this.gb_Press.DisplayLayout.Bands[0].ColumnFilters.Count; i++)
- {
- this.gb_Press.DisplayLayout.Bands[0].ColumnFilters[i].FilterConditions.Clear();
- }
- }
- this.gb_Turan.DisplayLayout.Override.AllowRowFiltering = Infragistics.Win.DefaultableBoolean.False;
- this.gb_Turan.DisplayLayout.Override.FilterUIType = Infragistics.Win.UltraWinGrid.FilterUIType.Default;
- if (this.gb_Turan.DisplayLayout.Bands[0].ColumnFilters.Count > 0)
- {
- for (int i = 0; i < this.gb_Turan.DisplayLayout.Bands[0].ColumnFilters.Count; i++)
- {
- this.gb_Turan.DisplayLayout.Bands[0].ColumnFilters[i].FilterConditions.Clear();
- }
- }
- }
- }
- catch (System.Exception ex)
- {
- System.Diagnostics.Debug.WriteLine(ex.ToString());
- }
- }
- private void chk_CollectTime_CheckedChanged(object sender, System.EventArgs e)
- {
- this.dte_BeginTime.Enabled = this.chk_CollectTime.Checked;
- this.dte_EndTime.Enabled = this.chk_CollectTime.Checked;
- }
- private void chk_OrderNO_CheckedChanged(object sender, System.EventArgs e)
- {
- this.txt_OrderNO.Enabled = this.chk_OrderNO.Checked;
- }
- private void chk_PactID_CheckedChanged(object sender, System.EventArgs e)
- {
- this.txt_PlanID.Enabled = this.chk_PactID.Checked;
- }
- private void chk_RollHao_CheckedChanged(object sender, System.EventArgs e)
- {
- this.txt_RollHao.Enabled = this.chk_RollHao.Checked;
- }
- private void chk_PiHao_CheckedChanged(object sender, System.EventArgs e)
- {
- this.txt_PiHao_Begin.Enabled = this.chk_PiHao.Checked;
- this.txt_PIhao_End.Enabled = this.chk_PiHao.Checked;
- this.txt_Pihao_Top.Enabled = this.chk_PiHao.Checked;
- }
- private void chk_BanHao_CheckedChanged(object sender, System.EventArgs e)
- {
- this.txt_GangP.Enabled = this.chk_BanHao.Checked;
- }
- #endregion
- private void chk_BNumber_CheckedChanged(object sender, System.EventArgs e)
- {
- this.txt_BNumber.Enabled = this.chk_BNumber.Checked;
- }
- private void gb_Press_DoubleClickRow(object sender, Infragistics.Win.UltraWinGrid.DoubleClickRowEventArgs e)
- {
- this.txt_Scid_Top_Y.Text = e.Row.Cells["COIL_NO_ID"].Value.ToString().Substring(0, 2);
- this.txt_Scid_Begin_Y.Text = e.Row.Cells["COIL_NO_ID"].Value.ToString().Substring(3, 10);
- this.txt_Scid_End_Y.Text = e.Row.Cells["COIL_NO_ID"].Value.ToString().Substring(14);
- txt_ReMark.Text = e.Row.Cells["REM"].Value.ToString();
- }
- private void ultraCheckEditor1_CheckedChanged(object sender, System.EventArgs e)
- {
- this.cmb_QuYu.Enabled = this.ultraCheckEditor1.Checked;
- }
- #region "导出报表"
- private void ExportButtressInfo()
- {
- if (this.gb_Turan.Rows.Count > 0)
- {
- Comm.ExPortExcel(this.gb_Turan, this.excelExporter);
- }
- else
- {
- MessageBox.Show("无信息数据,不能导出!", "提示", MessageBoxButtons.OK, MessageBoxIcon.Information);
- }
- }
- #endregion
- private void chk_ProcLine_CheckedChanged(object sender, System.EventArgs e)
- {
- this.cmb_ProcL.Enabled = this.chk_ProcLine.Checked;
- }
- private void cmb_area_ValueChanged(object sender, EventArgs e)
- {
- try
- {
- string areaCode = "";
- string buttressCode = "";
- string strOut = "";
-
-
- areaCode = this.cmb_area.Value.ToString();
- if (areaCode != "")
- {
- DataSet ds = (DataSet)Core.Mes.ClientFrameWork.ClientCommon._RemotingHelp.ExecuteMethod("CoilMachiningManage", "Core.XgMes.Server.CoilMachiningManage.TurnoReport",
- "QueryFJButtress", new object[] { buttressCode, areaCode, "1" }, out strOut);
- if (strOut == "")
- {
- this.cmb_Buress.DataSource = ds;
- }
- else
- {
- MessageBox.Show(strOut, "提示", MessageBoxButtons.OK, MessageBoxIcon.Warning);
- }
- }
- }
- catch (Exception et)
- {
- throw et;
- }
- }
-
- }
- }
|