Frm_TurnoSendCan.cs 182 KB

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