Frm_TurnoffCollect.cs 201 KB

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