frmBeltScaleActualinfo_addendum.Designer.cs 138 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406
  1. namespace BeltScaleSystem
  2. {
  3. partial class frmBeltScaleActualinfo_addendum
  4. {
  5. /// <summary>
  6. /// Required designer variable.
  7. /// </summary>
  8. private System.ComponentModel.IContainer components = null;
  9. /// <summary>
  10. /// Clean up any resources being used.
  11. /// </summary>
  12. /// <param name="disposing">true if managed resources should be disposed; otherwise, false.</param>
  13. protected override void Dispose(bool disposing)
  14. {
  15. if (disposing && (components != null))
  16. {
  17. components.Dispose();
  18. }
  19. base.Dispose(disposing);
  20. }
  21. #region Windows Form Designer generated code
  22. /// <summary>
  23. /// Required method for Designer support - do not modify
  24. /// the contents of this method with the code editor.
  25. /// </summary>
  26. private void InitializeComponent()
  27. {
  28. this.components = new System.ComponentModel.Container();
  29. Infragistics.Win.UltraWinGrid.UltraGridBand ultraGridBand1 = new Infragistics.Win.UltraWinGrid.UltraGridBand("计量实绩", -1);
  30. Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn1 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("actualNo");
  31. Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn2 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("predictionNo");
  32. Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn3 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("noticeNo");
  33. Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn4 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("batchNo");
  34. Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn5 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("memo");
  35. Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn6 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("valueFlag");
  36. Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn7 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("createManNo");
  37. Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn8 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("createManName");
  38. Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn9 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("createTime");
  39. Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn10 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("updateManNo");
  40. Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn11 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("updateManName");
  41. Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn12 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("deleteManNo");
  42. Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn13 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("deleteManName");
  43. Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn14 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("productNo");
  44. Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn15 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("productName");
  45. Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn16 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("gradeNo");
  46. Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn17 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("gradeName");
  47. Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn18 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("standardNo");
  48. Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn19 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("standardName");
  49. Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn20 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("packageNo");
  50. Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn21 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("blockNum");
  51. Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn22 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("productDate");
  52. Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn23 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("sealNo");
  53. Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn24 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("bucketNo");
  54. Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn25 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("actualWeight");
  55. Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn26 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("referWeight");
  56. Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn27 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("tareWeight");
  57. Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn28 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("grossWeight");
  58. Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn29 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("combinPackageNo");
  59. Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn30 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("weightType");
  60. Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn31 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("checkFlag");
  61. Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn32 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("baseSpotNo");
  62. Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn33 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("baseSpotName");
  63. Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn34 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("netWeight");
  64. Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn35 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("updateTime");
  65. Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn36 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("heatNoMes");
  66. Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn37 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("heatNoSeq");
  67. Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn38 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("heatNo");
  68. Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn39 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("meterGroup");
  69. Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn40 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("meterClass");
  70. Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn41 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("theoreticalWeight");
  71. Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn42 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("specNo");
  72. Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn43 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("specName");
  73. Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn44 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("scaleName");
  74. Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn45 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("endTime");
  75. Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn46 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("endWeight");
  76. Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn47 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("startTime");
  77. Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn48 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("startWeight");
  78. Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn49 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("weightDiff");
  79. Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn50 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("receivingUintNo");
  80. Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn51 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("receivingUintName");
  81. Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn52 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("forwardingUnitNo");
  82. Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn53 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("forwardingUnitName");
  83. Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn54 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("unloadWharf");
  84. Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn55 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("shipNo");
  85. Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn56 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("forwardingWeight");
  86. Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn57 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("unloadSite");
  87. Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn58 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("overstock");
  88. Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn59 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("checkManName");
  89. Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn60 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("checkTime");
  90. Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn61 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("newMatName");
  91. Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn62 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("newSupplier");
  92. Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn63 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("newMatClass");
  93. Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn64 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("newMatClassCode");
  94. Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn65 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("newGg");
  95. Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn66 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("newHlh");
  96. Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn67 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("orderNo");
  97. Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn68 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("UNCK", 0);
  98. Infragistics.Win.UltraWinGrid.SummarySettings summarySettings1 = new Infragistics.Win.UltraWinGrid.SummarySettings("", Infragistics.Win.UltraWinGrid.SummaryType.Count, null, "actualNo", 0, true, "计量实绩", 0, Infragistics.Win.UltraWinGrid.SummaryPosition.Left, "actualNo", 0, true);
  99. Infragistics.Win.Appearance appearance1 = new Infragistics.Win.Appearance();
  100. Infragistics.Win.UltraWinGrid.SummarySettings summarySettings2 = new Infragistics.Win.UltraWinGrid.SummarySettings("", Infragistics.Win.UltraWinGrid.SummaryType.Sum, null, "startWeight", 47, true, "计量实绩", 0, Infragistics.Win.UltraWinGrid.SummaryPosition.UseSummaryPositionColumn, "startWeight", 47, true);
  101. Infragistics.Win.Appearance appearance2 = new Infragistics.Win.Appearance();
  102. Infragistics.Win.UltraWinGrid.SummarySettings summarySettings3 = new Infragistics.Win.UltraWinGrid.SummarySettings("", Infragistics.Win.UltraWinGrid.SummaryType.Sum, null, "endWeight", 45, true, "计量实绩", 0, Infragistics.Win.UltraWinGrid.SummaryPosition.UseSummaryPositionColumn, "endWeight", 45, true);
  103. Infragistics.Win.Appearance appearance3 = new Infragistics.Win.Appearance();
  104. Infragistics.Win.UltraWinGrid.SummarySettings summarySettings4 = new Infragistics.Win.UltraWinGrid.SummarySettings("", Infragistics.Win.UltraWinGrid.SummaryType.Sum, null, "netWeight", 33, true, "计量实绩", 0, Infragistics.Win.UltraWinGrid.SummaryPosition.UseSummaryPositionColumn, "netWeight", 33, true);
  105. Infragistics.Win.Appearance appearance4 = new Infragistics.Win.Appearance();
  106. Infragistics.Win.UltraWinGrid.SummarySettings summarySettings5 = new Infragistics.Win.UltraWinGrid.SummarySettings("", Infragistics.Win.UltraWinGrid.SummaryType.Sum, null, "forwardingWeight", 55, true, "计量实绩", 0, Infragistics.Win.UltraWinGrid.SummaryPosition.UseSummaryPositionColumn, "forwardingWeight", 55, true);
  107. Infragistics.Win.Appearance appearance5 = new Infragistics.Win.Appearance();
  108. Infragistics.Win.Appearance appearance14 = new Infragistics.Win.Appearance();
  109. Infragistics.Win.Appearance appearance15 = new Infragistics.Win.Appearance();
  110. Infragistics.Win.Appearance appearance16 = new Infragistics.Win.Appearance();
  111. Infragistics.Win.UltraWinToolbars.UltraToolbar ultraToolbar1 = new Infragistics.Win.UltraWinToolbars.UltraToolbar("UltraToolbar1");
  112. Infragistics.Win.UltraWinToolbars.ButtonTool buttonTool1 = new Infragistics.Win.UltraWinToolbars.ButtonTool("查询");
  113. Infragistics.Win.UltraWinToolbars.ButtonTool buttonTool11 = new Infragistics.Win.UltraWinToolbars.ButtonTool("新增");
  114. Infragistics.Win.UltraWinToolbars.ButtonTool buttonTool13 = new Infragistics.Win.UltraWinToolbars.ButtonTool("修改");
  115. Infragistics.Win.UltraWinToolbars.ButtonTool buttonTool2 = new Infragistics.Win.UltraWinToolbars.ButtonTool("导出");
  116. Infragistics.Win.UltraWinToolbars.ButtonTool buttonTool3 = new Infragistics.Win.UltraWinToolbars.ButtonTool("删除");
  117. Infragistics.Win.UltraWinToolbars.ButtonTool buttonTool4 = new Infragistics.Win.UltraWinToolbars.ButtonTool("还原");
  118. Infragistics.Win.UltraWinToolbars.ButtonTool buttonTool5 = new Infragistics.Win.UltraWinToolbars.ButtonTool("查询");
  119. Infragistics.Win.Appearance appearance27 = new Infragistics.Win.Appearance();
  120. System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(frmBeltScaleActualinfo_addendum));
  121. Infragistics.Win.UltraWinToolbars.ButtonTool buttonTool6 = new Infragistics.Win.UltraWinToolbars.ButtonTool("导出");
  122. Infragistics.Win.Appearance appearance28 = new Infragistics.Win.Appearance();
  123. Infragistics.Win.UltraWinToolbars.ButtonTool buttonTool7 = new Infragistics.Win.UltraWinToolbars.ButtonTool("删除");
  124. Infragistics.Win.Appearance appearance30 = new Infragistics.Win.Appearance();
  125. Infragistics.Win.UltraWinToolbars.ButtonTool buttonTool8 = new Infragistics.Win.UltraWinToolbars.ButtonTool("还原");
  126. Infragistics.Win.Appearance appearance54 = new Infragistics.Win.Appearance();
  127. Infragistics.Win.UltraWinToolbars.ButtonTool buttonTool10 = new Infragistics.Win.UltraWinToolbars.ButtonTool("退出");
  128. Infragistics.Win.Appearance appearance55 = new Infragistics.Win.Appearance();
  129. Infragistics.Win.UltraWinToolbars.ButtonTool buttonTool12 = new Infragistics.Win.UltraWinToolbars.ButtonTool("新增");
  130. Infragistics.Win.Appearance appearance23 = new Infragistics.Win.Appearance();
  131. Infragistics.Win.UltraWinToolbars.ButtonTool buttonTool14 = new Infragistics.Win.UltraWinToolbars.ButtonTool("修改");
  132. Infragistics.Win.Appearance appearance24 = new Infragistics.Win.Appearance();
  133. Infragistics.Win.UltraWinToolbars.ButtonTool buttonTool16 = new Infragistics.Win.UltraWinToolbars.ButtonTool("审核");
  134. Infragistics.Win.Appearance appearance12 = new Infragistics.Win.Appearance();
  135. Infragistics.Win.UltraWinToolbars.ButtonTool buttonTool17 = new Infragistics.Win.UltraWinToolbars.ButtonTool("取消审核");
  136. Infragistics.Win.Appearance appearance13 = new Infragistics.Win.Appearance();
  137. this.ultraGroupBox1 = new Infragistics.Win.Misc.UltraGroupBox();
  138. this.panel2 = new System.Windows.Forms.Panel();
  139. this.splitContainer1 = new System.Windows.Forms.SplitContainer();
  140. this.ultraGroupBox4 = new Infragistics.Win.Misc.UltraGroupBox();
  141. this.panel2Query = new System.Windows.Forms.Panel();
  142. this.beltActualGrid = new Infragistics.Win.UltraWinGrid.UltraGrid();
  143. this.dataSetActual = new System.Data.DataSet();
  144. this.dataTable2 = new System.Data.DataTable();
  145. this.dataColumn47 = new System.Data.DataColumn();
  146. this.dataColumn48 = new System.Data.DataColumn();
  147. this.dataColumn49 = new System.Data.DataColumn();
  148. this.dataColumn50 = new System.Data.DataColumn();
  149. this.dataColumn51 = new System.Data.DataColumn();
  150. this.dataColumn52 = new System.Data.DataColumn();
  151. this.dataColumn53 = new System.Data.DataColumn();
  152. this.dataColumn54 = new System.Data.DataColumn();
  153. this.dataColumn55 = new System.Data.DataColumn();
  154. this.dataColumn56 = new System.Data.DataColumn();
  155. this.dataColumn57 = new System.Data.DataColumn();
  156. this.dataColumn58 = new System.Data.DataColumn();
  157. this.dataColumn59 = new System.Data.DataColumn();
  158. this.dataColumn60 = new System.Data.DataColumn();
  159. this.dataColumn61 = new System.Data.DataColumn();
  160. this.dataColumn62 = new System.Data.DataColumn();
  161. this.dataColumn63 = new System.Data.DataColumn();
  162. this.dataColumn64 = new System.Data.DataColumn();
  163. this.dataColumn65 = new System.Data.DataColumn();
  164. this.dataColumn66 = new System.Data.DataColumn();
  165. this.dataColumn67 = new System.Data.DataColumn();
  166. this.dataColumn68 = new System.Data.DataColumn();
  167. this.dataColumn69 = new System.Data.DataColumn();
  168. this.dataColumn70 = new System.Data.DataColumn();
  169. this.dataColumn71 = new System.Data.DataColumn();
  170. this.dataColumn72 = new System.Data.DataColumn();
  171. this.dataColumn73 = new System.Data.DataColumn();
  172. this.dataColumn74 = new System.Data.DataColumn();
  173. this.dataColumn75 = new System.Data.DataColumn();
  174. this.dataColumn76 = new System.Data.DataColumn();
  175. this.dataColumn77 = new System.Data.DataColumn();
  176. this.dataColumn78 = new System.Data.DataColumn();
  177. this.dataColumn79 = new System.Data.DataColumn();
  178. this.dataColumn80 = new System.Data.DataColumn();
  179. this.dataColumn81 = new System.Data.DataColumn();
  180. this.dataColumn82 = new System.Data.DataColumn();
  181. this.dataColumn83 = new System.Data.DataColumn();
  182. this.dataColumn84 = new System.Data.DataColumn();
  183. this.dataColumn85 = new System.Data.DataColumn();
  184. this.dataColumn86 = new System.Data.DataColumn();
  185. this.dataColumn87 = new System.Data.DataColumn();
  186. this.dataColumn88 = new System.Data.DataColumn();
  187. this.dataColumn89 = new System.Data.DataColumn();
  188. this.dataColumn120 = new System.Data.DataColumn();
  189. this.dataColumn121 = new System.Data.DataColumn();
  190. this.dataColumn122 = new System.Data.DataColumn();
  191. this.dataColumn123 = new System.Data.DataColumn();
  192. this.dataColumn124 = new System.Data.DataColumn();
  193. this.dataColumn125 = new System.Data.DataColumn();
  194. this.dataColumn126 = new System.Data.DataColumn();
  195. this.dataColumn127 = new System.Data.DataColumn();
  196. this.dataColumn128 = new System.Data.DataColumn();
  197. this.dataColumn129 = new System.Data.DataColumn();
  198. this.dataColumn1 = new System.Data.DataColumn();
  199. this.dataColumn2 = new System.Data.DataColumn();
  200. this.dataColumn3 = new System.Data.DataColumn();
  201. this.dataColumn4 = new System.Data.DataColumn();
  202. this.dataColumn5 = new System.Data.DataColumn();
  203. this.dataColumn6 = new System.Data.DataColumn();
  204. this.dataColumn7 = new System.Data.DataColumn();
  205. this.dataColumn8 = new System.Data.DataColumn();
  206. this.dataColumn9 = new System.Data.DataColumn();
  207. this.dataColumn10 = new System.Data.DataColumn();
  208. this.dataColumn11 = new System.Data.DataColumn();
  209. this.dataColumn12 = new System.Data.DataColumn();
  210. this.dataColumn13 = new System.Data.DataColumn();
  211. this.dataColumn14 = new System.Data.DataColumn();
  212. this.ultraGroupBoxEdit = new Infragistics.Win.Misc.UltraGroupBox();
  213. this.tableLayoutPanel5 = new System.Windows.Forms.TableLayoutPanel();
  214. this.newOrder_text = new System.Windows.Forms.TextBox();
  215. this.newHlh_text = new System.Windows.Forms.TextBox();
  216. this.newGg_text = new System.Windows.Forms.TextBox();
  217. this.newMatClass_text = new System.Windows.Forms.TextBox();
  218. this.label29 = new System.Windows.Forms.Label();
  219. this.label26 = new System.Windows.Forms.Label();
  220. this.label25 = new System.Windows.Forms.Label();
  221. this.label24 = new System.Windows.Forms.Label();
  222. this.predictionNo_Txt = new System.Windows.Forms.TextBox();
  223. this.label23 = new System.Windows.Forms.Label();
  224. this.actualNoTxt = new System.Windows.Forms.TextBox();
  225. this.requiteWeightTxt = new System.Windows.Forms.TextBox();
  226. this.startTime = new System.Windows.Forms.DateTimePicker();
  227. this.netWeightTxt = new System.Windows.Forms.TextBox();
  228. this.endWeight_Txt = new System.Windows.Forms.TextBox();
  229. this.cbPntName = new System.Windows.Forms.ComboBox();
  230. this.cbshouh_1 = new System.Windows.Forms.ComboBox();
  231. this.cbfahuo_1 = new System.Windows.Forms.ComboBox();
  232. this.meterStaffTxt = new System.Windows.Forms.TextBox();
  233. this.ScaleName = new System.Windows.Forms.ComboBox();
  234. this.shipnoTxt = new System.Windows.Forms.TextBox();
  235. this.label11 = new System.Windows.Forms.Label();
  236. this.label28 = new System.Windows.Forms.Label();
  237. this.label10 = new System.Windows.Forms.Label();
  238. this.label7 = new System.Windows.Forms.Label();
  239. this.label8 = new System.Windows.Forms.Label();
  240. this.label9 = new System.Windows.Forms.Label();
  241. this.label12 = new System.Windows.Forms.Label();
  242. this.label13 = new System.Windows.Forms.Label();
  243. this.label14 = new System.Windows.Forms.Label();
  244. this.label15 = new System.Windows.Forms.Label();
  245. this.moteTxt = new System.Windows.Forms.TextBox();
  246. this.endTime = new System.Windows.Forms.DateTimePicker();
  247. this.cmMatname_1 = new System.Windows.Forms.ComboBox();
  248. this.label19 = new System.Windows.Forms.Label();
  249. this.label20 = new System.Windows.Forms.Label();
  250. this.label21 = new System.Windows.Forms.Label();
  251. this.label22 = new System.Windows.Forms.Label();
  252. this.startWeightTxt = new System.Windows.Forms.TextBox();
  253. this.label27 = new System.Windows.Forms.Label();
  254. this.ultraGroupBoxCondition = new Infragistics.Win.Misc.UltraGroupBox();
  255. this.checkBox1 = new System.Windows.Forms.CheckBox();
  256. this.Rbtn_B = new System.Windows.Forms.RadioButton();
  257. this.Rbtn_A = new System.Windows.Forms.RadioButton();
  258. this.Rbtn_AB = new System.Windows.Forms.RadioButton();
  259. this.cbDateFlag = new Infragistics.Win.UltraWinEditors.UltraComboEditor();
  260. this.cmbState = new Infragistics.Win.UltraWinEditors.UltraComboEditor();
  261. this.label16 = new System.Windows.Forms.Label();
  262. this.moteTxt_1 = new System.Windows.Forms.TextBox();
  263. this.label18 = new System.Windows.Forms.Label();
  264. this.ckShipNo = new System.Windows.Forms.CheckBox();
  265. this.ShipnoTxt_1 = new System.Windows.Forms.TextBox();
  266. this.cbshouh = new System.Windows.Forms.ComboBox();
  267. this.label17 = new System.Windows.Forms.Label();
  268. this.checkDate = new System.Windows.Forms.CheckBox();
  269. this.cbfahuo = new System.Windows.Forms.ComboBox();
  270. this.cmMatName = new System.Windows.Forms.ComboBox();
  271. this.label6 = new System.Windows.Forms.Label();
  272. this.label5 = new System.Windows.Forms.Label();
  273. this.label2 = new System.Windows.Forms.Label();
  274. this.label3 = new System.Windows.Forms.Label();
  275. this.dtStartTime = new System.Windows.Forms.DateTimePicker();
  276. this.label4 = new System.Windows.Forms.Label();
  277. this.dtEndTime = new System.Windows.Forms.DateTimePicker();
  278. this.label1 = new System.Windows.Forms.Label();
  279. this.panel1 = new System.Windows.Forms.Panel();
  280. this.panel1_Fill_Panel = new System.Windows.Forms.Panel();
  281. this._panel1_Toolbars_Dock_Area_Left = new Infragistics.Win.UltraWinToolbars.UltraToolbarsDockArea();
  282. this.ultraToolbarsManager1 = new Infragistics.Win.UltraWinToolbars.UltraToolbarsManager(this.components);
  283. this._panel1_Toolbars_Dock_Area_Right = new Infragistics.Win.UltraWinToolbars.UltraToolbarsDockArea();
  284. this._panel1_Toolbars_Dock_Area_Top = new Infragistics.Win.UltraWinToolbars.UltraToolbarsDockArea();
  285. this._panel1_Toolbars_Dock_Area_Bottom = new Infragistics.Win.UltraWinToolbars.UltraToolbarsDockArea();
  286. this.ultraGridExcelExporter1 = new Infragistics.Win.UltraWinGrid.ExcelExport.UltraGridExcelExporter(this.components);
  287. ((System.ComponentModel.ISupportInitialize)(this.ultraGroupBox1)).BeginInit();
  288. this.ultraGroupBox1.SuspendLayout();
  289. this.panel2.SuspendLayout();
  290. ((System.ComponentModel.ISupportInitialize)(this.splitContainer1)).BeginInit();
  291. this.splitContainer1.Panel1.SuspendLayout();
  292. this.splitContainer1.Panel2.SuspendLayout();
  293. this.splitContainer1.SuspendLayout();
  294. ((System.ComponentModel.ISupportInitialize)(this.ultraGroupBox4)).BeginInit();
  295. this.ultraGroupBox4.SuspendLayout();
  296. this.panel2Query.SuspendLayout();
  297. ((System.ComponentModel.ISupportInitialize)(this.beltActualGrid)).BeginInit();
  298. ((System.ComponentModel.ISupportInitialize)(this.dataSetActual)).BeginInit();
  299. ((System.ComponentModel.ISupportInitialize)(this.dataTable2)).BeginInit();
  300. ((System.ComponentModel.ISupportInitialize)(this.ultraGroupBoxEdit)).BeginInit();
  301. this.ultraGroupBoxEdit.SuspendLayout();
  302. this.tableLayoutPanel5.SuspendLayout();
  303. ((System.ComponentModel.ISupportInitialize)(this.ultraGroupBoxCondition)).BeginInit();
  304. this.ultraGroupBoxCondition.SuspendLayout();
  305. ((System.ComponentModel.ISupportInitialize)(this.cbDateFlag)).BeginInit();
  306. ((System.ComponentModel.ISupportInitialize)(this.cmbState)).BeginInit();
  307. this.panel1.SuspendLayout();
  308. ((System.ComponentModel.ISupportInitialize)(this.ultraToolbarsManager1)).BeginInit();
  309. this.SuspendLayout();
  310. //
  311. // ultraGroupBox1
  312. //
  313. this.ultraGroupBox1.Controls.Add(this.panel2);
  314. this.ultraGroupBox1.Controls.Add(this.panel1);
  315. this.ultraGroupBox1.Dock = System.Windows.Forms.DockStyle.Fill;
  316. this.ultraGroupBox1.Location = new System.Drawing.Point(0, 0);
  317. this.ultraGroupBox1.Name = "ultraGroupBox1";
  318. this.ultraGroupBox1.Size = new System.Drawing.Size(1704, 706);
  319. this.ultraGroupBox1.TabIndex = 1;
  320. this.ultraGroupBox1.ViewStyle = Infragistics.Win.Misc.GroupBoxViewStyle.Office2007;
  321. //
  322. // panel2
  323. //
  324. this.panel2.Controls.Add(this.splitContainer1);
  325. this.panel2.Controls.Add(this.ultraGroupBoxCondition);
  326. this.panel2.Dock = System.Windows.Forms.DockStyle.Fill;
  327. this.panel2.Location = new System.Drawing.Point(3, 30);
  328. this.panel2.Name = "panel2";
  329. this.panel2.Size = new System.Drawing.Size(1698, 673);
  330. this.panel2.TabIndex = 1;
  331. //
  332. // splitContainer1
  333. //
  334. this.splitContainer1.Dock = System.Windows.Forms.DockStyle.Fill;
  335. this.splitContainer1.Location = new System.Drawing.Point(0, 91);
  336. this.splitContainer1.Name = "splitContainer1";
  337. this.splitContainer1.Orientation = System.Windows.Forms.Orientation.Horizontal;
  338. //
  339. // splitContainer1.Panel1
  340. //
  341. this.splitContainer1.Panel1.Controls.Add(this.ultraGroupBox4);
  342. //
  343. // splitContainer1.Panel2
  344. //
  345. this.splitContainer1.Panel2.Controls.Add(this.ultraGroupBoxEdit);
  346. this.splitContainer1.Size = new System.Drawing.Size(1698, 582);
  347. this.splitContainer1.SplitterDistance = 431;
  348. this.splitContainer1.TabIndex = 2;
  349. //
  350. // ultraGroupBox4
  351. //
  352. this.ultraGroupBox4.Controls.Add(this.panel2Query);
  353. this.ultraGroupBox4.Dock = System.Windows.Forms.DockStyle.Fill;
  354. this.ultraGroupBox4.Location = new System.Drawing.Point(0, 0);
  355. this.ultraGroupBox4.Name = "ultraGroupBox4";
  356. this.ultraGroupBox4.Size = new System.Drawing.Size(1698, 431);
  357. this.ultraGroupBox4.TabIndex = 2;
  358. this.ultraGroupBox4.Text = "数据展示区域";
  359. this.ultraGroupBox4.ViewStyle = Infragistics.Win.Misc.GroupBoxViewStyle.Office2007;
  360. //
  361. // panel2Query
  362. //
  363. this.panel2Query.Controls.Add(this.beltActualGrid);
  364. this.panel2Query.Dock = System.Windows.Forms.DockStyle.Fill;
  365. this.panel2Query.Location = new System.Drawing.Point(3, 18);
  366. this.panel2Query.Name = "panel2Query";
  367. this.panel2Query.Size = new System.Drawing.Size(1692, 410);
  368. this.panel2Query.TabIndex = 3;
  369. //
  370. // beltActualGrid
  371. //
  372. this.beltActualGrid.DataSource = this.dataSetActual;
  373. ultraGridColumn1.Header.Caption = "序号";
  374. ultraGridColumn1.Header.VisiblePosition = 0;
  375. ultraGridColumn1.RowLayoutColumnInfo.OriginX = 50;
  376. ultraGridColumn1.RowLayoutColumnInfo.OriginY = 0;
  377. ultraGridColumn1.RowLayoutColumnInfo.PreferredCellSize = new System.Drawing.Size(110, 0);
  378. ultraGridColumn1.RowLayoutColumnInfo.PreferredLabelSize = new System.Drawing.Size(0, 27);
  379. ultraGridColumn1.RowLayoutColumnInfo.SpanX = 2;
  380. ultraGridColumn1.RowLayoutColumnInfo.SpanY = 1;
  381. ultraGridColumn2.Header.Caption = "预报编码";
  382. ultraGridColumn2.Header.VisiblePosition = 1;
  383. ultraGridColumn2.RowLayoutColumnInfo.OriginX = 4;
  384. ultraGridColumn2.RowLayoutColumnInfo.OriginY = 0;
  385. ultraGridColumn2.RowLayoutColumnInfo.PreferredCellSize = new System.Drawing.Size(107, 0);
  386. ultraGridColumn2.RowLayoutColumnInfo.PreferredLabelSize = new System.Drawing.Size(0, 27);
  387. ultraGridColumn2.RowLayoutColumnInfo.SpanX = 1;
  388. ultraGridColumn2.RowLayoutColumnInfo.SpanY = 1;
  389. ultraGridColumn3.Header.VisiblePosition = 2;
  390. ultraGridColumn3.Hidden = true;
  391. ultraGridColumn4.Header.VisiblePosition = 3;
  392. ultraGridColumn4.Hidden = true;
  393. ultraGridColumn5.Header.VisiblePosition = 4;
  394. ultraGridColumn5.Hidden = true;
  395. ultraGridColumn5.RowLayoutColumnInfo.OriginX = 40;
  396. ultraGridColumn5.RowLayoutColumnInfo.OriginY = 0;
  397. ultraGridColumn5.RowLayoutColumnInfo.SpanX = 2;
  398. ultraGridColumn5.RowLayoutColumnInfo.SpanY = 2;
  399. ultraGridColumn6.Header.VisiblePosition = 5;
  400. ultraGridColumn6.Hidden = true;
  401. ultraGridColumn6.RowLayoutColumnInfo.OriginX = 34;
  402. ultraGridColumn6.RowLayoutColumnInfo.OriginY = 0;
  403. ultraGridColumn6.RowLayoutColumnInfo.PreferredCellSize = new System.Drawing.Size(86, 0);
  404. ultraGridColumn6.RowLayoutColumnInfo.SpanX = 1;
  405. ultraGridColumn6.RowLayoutColumnInfo.SpanY = 2;
  406. ultraGridColumn7.Header.VisiblePosition = 6;
  407. ultraGridColumn7.Hidden = true;
  408. ultraGridColumn8.Header.Caption = "计量员";
  409. ultraGridColumn8.Header.VisiblePosition = 7;
  410. ultraGridColumn8.RowLayoutColumnInfo.OriginX = 41;
  411. ultraGridColumn8.RowLayoutColumnInfo.OriginY = 0;
  412. ultraGridColumn8.RowLayoutColumnInfo.PreferredCellSize = new System.Drawing.Size(91, 0);
  413. ultraGridColumn8.RowLayoutColumnInfo.PreferredLabelSize = new System.Drawing.Size(0, 27);
  414. ultraGridColumn8.RowLayoutColumnInfo.SpanX = 2;
  415. ultraGridColumn8.RowLayoutColumnInfo.SpanY = 1;
  416. ultraGridColumn9.Header.Caption = "计量时间";
  417. ultraGridColumn9.Header.VisiblePosition = 8;
  418. ultraGridColumn9.RowLayoutColumnInfo.OriginX = 43;
  419. ultraGridColumn9.RowLayoutColumnInfo.OriginY = 0;
  420. ultraGridColumn9.RowLayoutColumnInfo.PreferredCellSize = new System.Drawing.Size(98, 0);
  421. ultraGridColumn9.RowLayoutColumnInfo.PreferredLabelSize = new System.Drawing.Size(0, 27);
  422. ultraGridColumn9.RowLayoutColumnInfo.SpanX = 1;
  423. ultraGridColumn9.RowLayoutColumnInfo.SpanY = 1;
  424. ultraGridColumn10.Header.VisiblePosition = 9;
  425. ultraGridColumn10.Hidden = true;
  426. ultraGridColumn10.RowLayoutColumnInfo.OriginX = 14;
  427. ultraGridColumn10.RowLayoutColumnInfo.OriginY = 0;
  428. ultraGridColumn10.RowLayoutColumnInfo.SpanX = 2;
  429. ultraGridColumn10.RowLayoutColumnInfo.SpanY = 2;
  430. ultraGridColumn11.Header.VisiblePosition = 10;
  431. ultraGridColumn11.RowLayoutColumnInfo.OriginX = 37;
  432. ultraGridColumn11.RowLayoutColumnInfo.OriginY = 0;
  433. ultraGridColumn11.RowLayoutColumnInfo.PreferredCellSize = new System.Drawing.Size(84, 0);
  434. ultraGridColumn11.RowLayoutColumnInfo.PreferredLabelSize = new System.Drawing.Size(0, 27);
  435. ultraGridColumn11.RowLayoutColumnInfo.SpanX = 2;
  436. ultraGridColumn11.RowLayoutColumnInfo.SpanY = 1;
  437. ultraGridColumn12.Header.VisiblePosition = 11;
  438. ultraGridColumn12.Hidden = true;
  439. ultraGridColumn13.Header.VisiblePosition = 12;
  440. ultraGridColumn13.Hidden = true;
  441. ultraGridColumn14.Header.VisiblePosition = 13;
  442. ultraGridColumn14.Hidden = true;
  443. ultraGridColumn15.Header.Caption = "物料名称";
  444. ultraGridColumn15.Header.VisiblePosition = 14;
  445. ultraGridColumn15.Hidden = true;
  446. ultraGridColumn15.RowLayoutColumnInfo.OriginX = 7;
  447. ultraGridColumn15.RowLayoutColumnInfo.OriginY = 0;
  448. ultraGridColumn15.RowLayoutColumnInfo.PreferredCellSize = new System.Drawing.Size(88, 0);
  449. ultraGridColumn15.RowLayoutColumnInfo.PreferredLabelSize = new System.Drawing.Size(0, 27);
  450. ultraGridColumn15.RowLayoutColumnInfo.SpanX = 2;
  451. ultraGridColumn15.RowLayoutColumnInfo.SpanY = 1;
  452. ultraGridColumn16.Header.VisiblePosition = 15;
  453. ultraGridColumn16.Hidden = true;
  454. ultraGridColumn17.Header.VisiblePosition = 16;
  455. ultraGridColumn17.Hidden = true;
  456. ultraGridColumn18.Header.VisiblePosition = 17;
  457. ultraGridColumn18.Hidden = true;
  458. ultraGridColumn19.Header.VisiblePosition = 18;
  459. ultraGridColumn19.Hidden = true;
  460. ultraGridColumn20.Header.VisiblePosition = 19;
  461. ultraGridColumn20.Hidden = true;
  462. ultraGridColumn21.Header.VisiblePosition = 20;
  463. ultraGridColumn21.Hidden = true;
  464. ultraGridColumn22.Header.VisiblePosition = 21;
  465. ultraGridColumn22.Hidden = true;
  466. ultraGridColumn23.Header.VisiblePosition = 22;
  467. ultraGridColumn23.Hidden = true;
  468. ultraGridColumn24.Header.VisiblePosition = 23;
  469. ultraGridColumn24.Hidden = true;
  470. ultraGridColumn25.Header.VisiblePosition = 24;
  471. ultraGridColumn25.Hidden = true;
  472. ultraGridColumn26.Header.VisiblePosition = 25;
  473. ultraGridColumn26.Hidden = true;
  474. ultraGridColumn27.Header.VisiblePosition = 26;
  475. ultraGridColumn27.Hidden = true;
  476. ultraGridColumn28.Header.VisiblePosition = 27;
  477. ultraGridColumn28.Hidden = true;
  478. ultraGridColumn29.Header.VisiblePosition = 28;
  479. ultraGridColumn29.Hidden = true;
  480. ultraGridColumn30.Header.VisiblePosition = 29;
  481. ultraGridColumn30.Hidden = true;
  482. ultraGridColumn31.Header.Caption = "审核标识";
  483. ultraGridColumn31.Header.VisiblePosition = 30;
  484. ultraGridColumn31.RowLayoutColumnInfo.OriginX = 28;
  485. ultraGridColumn31.RowLayoutColumnInfo.OriginY = 0;
  486. ultraGridColumn31.RowLayoutColumnInfo.PreferredCellSize = new System.Drawing.Size(95, 0);
  487. ultraGridColumn31.RowLayoutColumnInfo.PreferredLabelSize = new System.Drawing.Size(0, 27);
  488. ultraGridColumn31.RowLayoutColumnInfo.SpanX = 1;
  489. ultraGridColumn31.RowLayoutColumnInfo.SpanY = 1;
  490. ultraGridColumn32.Header.Caption = "计量点编码";
  491. ultraGridColumn32.Header.VisiblePosition = 31;
  492. ultraGridColumn32.RowLayoutColumnInfo.OriginX = 6;
  493. ultraGridColumn32.RowLayoutColumnInfo.OriginY = 0;
  494. ultraGridColumn32.RowLayoutColumnInfo.PreferredCellSize = new System.Drawing.Size(124, 0);
  495. ultraGridColumn32.RowLayoutColumnInfo.PreferredLabelSize = new System.Drawing.Size(0, 27);
  496. ultraGridColumn32.RowLayoutColumnInfo.SpanX = 2;
  497. ultraGridColumn32.RowLayoutColumnInfo.SpanY = 1;
  498. ultraGridColumn33.Header.Caption = "计量点名称";
  499. ultraGridColumn33.Header.VisiblePosition = 32;
  500. ultraGridColumn33.RowLayoutColumnInfo.OriginX = 5;
  501. ultraGridColumn33.RowLayoutColumnInfo.OriginY = 0;
  502. ultraGridColumn33.RowLayoutColumnInfo.PreferredCellSize = new System.Drawing.Size(109, 0);
  503. ultraGridColumn33.RowLayoutColumnInfo.PreferredLabelSize = new System.Drawing.Size(0, 27);
  504. ultraGridColumn33.RowLayoutColumnInfo.SpanX = 1;
  505. ultraGridColumn33.RowLayoutColumnInfo.SpanY = 1;
  506. ultraGridColumn34.Header.VisiblePosition = 33;
  507. ultraGridColumn34.RowLayoutColumnInfo.OriginX = 25;
  508. ultraGridColumn34.RowLayoutColumnInfo.OriginY = 0;
  509. ultraGridColumn34.RowLayoutColumnInfo.PreferredCellSize = new System.Drawing.Size(89, 0);
  510. ultraGridColumn34.RowLayoutColumnInfo.PreferredLabelSize = new System.Drawing.Size(0, 27);
  511. ultraGridColumn34.RowLayoutColumnInfo.SpanX = 2;
  512. ultraGridColumn34.RowLayoutColumnInfo.SpanY = 1;
  513. ultraGridColumn35.Header.VisiblePosition = 34;
  514. ultraGridColumn35.RowLayoutColumnInfo.OriginX = 39;
  515. ultraGridColumn35.RowLayoutColumnInfo.OriginY = 0;
  516. ultraGridColumn35.RowLayoutColumnInfo.PreferredCellSize = new System.Drawing.Size(116, 0);
  517. ultraGridColumn35.RowLayoutColumnInfo.PreferredLabelSize = new System.Drawing.Size(0, 27);
  518. ultraGridColumn35.RowLayoutColumnInfo.SpanX = 2;
  519. ultraGridColumn35.RowLayoutColumnInfo.SpanY = 1;
  520. ultraGridColumn36.Header.VisiblePosition = 35;
  521. ultraGridColumn36.Hidden = true;
  522. ultraGridColumn37.Header.VisiblePosition = 36;
  523. ultraGridColumn37.Hidden = true;
  524. ultraGridColumn38.Header.VisiblePosition = 37;
  525. ultraGridColumn38.Hidden = true;
  526. ultraGridColumn39.Header.Caption = "计量班组";
  527. ultraGridColumn39.Header.VisiblePosition = 38;
  528. ultraGridColumn39.RowLayoutColumnInfo.OriginX = 46;
  529. ultraGridColumn39.RowLayoutColumnInfo.OriginY = 0;
  530. ultraGridColumn39.RowLayoutColumnInfo.PreferredCellSize = new System.Drawing.Size(96, 0);
  531. ultraGridColumn39.RowLayoutColumnInfo.PreferredLabelSize = new System.Drawing.Size(0, 27);
  532. ultraGridColumn39.RowLayoutColumnInfo.SpanX = 2;
  533. ultraGridColumn39.RowLayoutColumnInfo.SpanY = 1;
  534. ultraGridColumn40.Header.Caption = "计量班次";
  535. ultraGridColumn40.Header.VisiblePosition = 39;
  536. ultraGridColumn40.RowLayoutColumnInfo.OriginX = 44;
  537. ultraGridColumn40.RowLayoutColumnInfo.OriginY = 0;
  538. ultraGridColumn40.RowLayoutColumnInfo.PreferredCellSize = new System.Drawing.Size(98, 0);
  539. ultraGridColumn40.RowLayoutColumnInfo.PreferredLabelSize = new System.Drawing.Size(0, 27);
  540. ultraGridColumn40.RowLayoutColumnInfo.SpanX = 2;
  541. ultraGridColumn40.RowLayoutColumnInfo.SpanY = 1;
  542. ultraGridColumn41.Header.VisiblePosition = 40;
  543. ultraGridColumn41.Hidden = true;
  544. ultraGridColumn42.Header.VisiblePosition = 41;
  545. ultraGridColumn42.Hidden = true;
  546. ultraGridColumn43.Header.VisiblePosition = 42;
  547. ultraGridColumn43.Hidden = true;
  548. ultraGridColumn43.RowLayoutColumnInfo.OriginX = 42;
  549. ultraGridColumn43.RowLayoutColumnInfo.OriginY = 0;
  550. ultraGridColumn43.RowLayoutColumnInfo.SpanX = 2;
  551. ultraGridColumn43.RowLayoutColumnInfo.SpanY = 2;
  552. ultraGridColumn44.Header.VisiblePosition = 43;
  553. ultraGridColumn44.RowLayoutColumnInfo.OriginX = 19;
  554. ultraGridColumn44.RowLayoutColumnInfo.OriginY = 0;
  555. ultraGridColumn44.RowLayoutColumnInfo.PreferredCellSize = new System.Drawing.Size(97, 0);
  556. ultraGridColumn44.RowLayoutColumnInfo.PreferredLabelSize = new System.Drawing.Size(0, 27);
  557. ultraGridColumn44.RowLayoutColumnInfo.SpanX = 2;
  558. ultraGridColumn44.RowLayoutColumnInfo.SpanY = 1;
  559. ultraGridColumn45.Header.VisiblePosition = 44;
  560. ultraGridColumn45.RowLayoutColumnInfo.OriginX = 35;
  561. ultraGridColumn45.RowLayoutColumnInfo.OriginY = 0;
  562. ultraGridColumn45.RowLayoutColumnInfo.PreferredCellSize = new System.Drawing.Size(96, 0);
  563. ultraGridColumn45.RowLayoutColumnInfo.PreferredLabelSize = new System.Drawing.Size(0, 27);
  564. ultraGridColumn45.RowLayoutColumnInfo.SpanX = 2;
  565. ultraGridColumn45.RowLayoutColumnInfo.SpanY = 1;
  566. ultraGridColumn46.Header.Caption = "止码";
  567. ultraGridColumn46.Header.VisiblePosition = 45;
  568. ultraGridColumn46.RowLayoutColumnInfo.OriginX = 23;
  569. ultraGridColumn46.RowLayoutColumnInfo.OriginY = 0;
  570. ultraGridColumn46.RowLayoutColumnInfo.PreferredCellSize = new System.Drawing.Size(105, 0);
  571. ultraGridColumn46.RowLayoutColumnInfo.PreferredLabelSize = new System.Drawing.Size(0, 27);
  572. ultraGridColumn46.RowLayoutColumnInfo.SpanX = 2;
  573. ultraGridColumn46.RowLayoutColumnInfo.SpanY = 1;
  574. ultraGridColumn47.Header.VisiblePosition = 46;
  575. ultraGridColumn47.RowLayoutColumnInfo.OriginX = 33;
  576. ultraGridColumn47.RowLayoutColumnInfo.OriginY = 0;
  577. ultraGridColumn47.RowLayoutColumnInfo.PreferredCellSize = new System.Drawing.Size(96, 0);
  578. ultraGridColumn47.RowLayoutColumnInfo.PreferredLabelSize = new System.Drawing.Size(0, 27);
  579. ultraGridColumn47.RowLayoutColumnInfo.SpanX = 2;
  580. ultraGridColumn47.RowLayoutColumnInfo.SpanY = 1;
  581. ultraGridColumn48.Header.Caption = "起码";
  582. ultraGridColumn48.Header.VisiblePosition = 47;
  583. ultraGridColumn48.RowLayoutColumnInfo.OriginX = 21;
  584. ultraGridColumn48.RowLayoutColumnInfo.OriginY = 0;
  585. ultraGridColumn48.RowLayoutColumnInfo.PreferredCellSize = new System.Drawing.Size(94, 0);
  586. ultraGridColumn48.RowLayoutColumnInfo.PreferredLabelSize = new System.Drawing.Size(0, 27);
  587. ultraGridColumn48.RowLayoutColumnInfo.SpanX = 2;
  588. ultraGridColumn48.RowLayoutColumnInfo.SpanY = 1;
  589. ultraGridColumn49.Header.VisiblePosition = 48;
  590. ultraGridColumn49.Hidden = true;
  591. ultraGridColumn49.RowLayoutColumnInfo.OriginX = 28;
  592. ultraGridColumn49.RowLayoutColumnInfo.OriginY = 0;
  593. ultraGridColumn49.RowLayoutColumnInfo.SpanX = 2;
  594. ultraGridColumn49.RowLayoutColumnInfo.SpanY = 2;
  595. ultraGridColumn50.Header.VisiblePosition = 49;
  596. ultraGridColumn50.Hidden = true;
  597. ultraGridColumn51.Header.Caption = "收货单位";
  598. ultraGridColumn51.Header.VisiblePosition = 50;
  599. ultraGridColumn51.RowLayoutColumnInfo.OriginX = 15;
  600. ultraGridColumn51.RowLayoutColumnInfo.OriginY = 0;
  601. ultraGridColumn51.RowLayoutColumnInfo.PreferredCellSize = new System.Drawing.Size(89, 0);
  602. ultraGridColumn51.RowLayoutColumnInfo.PreferredLabelSize = new System.Drawing.Size(0, 27);
  603. ultraGridColumn51.RowLayoutColumnInfo.SpanX = 2;
  604. ultraGridColumn51.RowLayoutColumnInfo.SpanY = 1;
  605. ultraGridColumn52.Header.VisiblePosition = 51;
  606. ultraGridColumn52.Hidden = true;
  607. ultraGridColumn53.Header.Caption = "发货单位";
  608. ultraGridColumn53.Header.VisiblePosition = 52;
  609. ultraGridColumn53.Hidden = true;
  610. ultraGridColumn53.RowLayoutColumnInfo.OriginX = 11;
  611. ultraGridColumn53.RowLayoutColumnInfo.OriginY = 0;
  612. ultraGridColumn53.RowLayoutColumnInfo.PreferredCellSize = new System.Drawing.Size(94, 0);
  613. ultraGridColumn53.RowLayoutColumnInfo.PreferredLabelSize = new System.Drawing.Size(0, 27);
  614. ultraGridColumn53.RowLayoutColumnInfo.SpanX = 1;
  615. ultraGridColumn53.RowLayoutColumnInfo.SpanY = 1;
  616. ultraGridColumn54.Header.VisiblePosition = 53;
  617. ultraGridColumn54.Hidden = true;
  618. ultraGridColumn55.Header.VisiblePosition = 54;
  619. ultraGridColumn55.RowLayoutColumnInfo.OriginX = 8;
  620. ultraGridColumn55.RowLayoutColumnInfo.OriginY = 0;
  621. ultraGridColumn55.RowLayoutColumnInfo.PreferredCellSize = new System.Drawing.Size(75, 0);
  622. ultraGridColumn55.RowLayoutColumnInfo.PreferredLabelSize = new System.Drawing.Size(0, 27);
  623. ultraGridColumn55.RowLayoutColumnInfo.SpanX = 1;
  624. ultraGridColumn55.RowLayoutColumnInfo.SpanY = 1;
  625. ultraGridColumn56.Header.Caption = "报港数";
  626. ultraGridColumn56.Header.VisiblePosition = 55;
  627. ultraGridColumn56.RowLayoutColumnInfo.OriginX = 27;
  628. ultraGridColumn56.RowLayoutColumnInfo.OriginY = 0;
  629. ultraGridColumn56.RowLayoutColumnInfo.PreferredCellSize = new System.Drawing.Size(103, 0);
  630. ultraGridColumn56.RowLayoutColumnInfo.PreferredLabelSize = new System.Drawing.Size(0, 27);
  631. ultraGridColumn56.RowLayoutColumnInfo.SpanX = 1;
  632. ultraGridColumn56.RowLayoutColumnInfo.SpanY = 1;
  633. ultraGridColumn57.Header.Caption = "备注";
  634. ultraGridColumn57.Header.VisiblePosition = 56;
  635. ultraGridColumn57.RowLayoutColumnInfo.OriginX = 48;
  636. ultraGridColumn57.RowLayoutColumnInfo.OriginY = 0;
  637. ultraGridColumn57.RowLayoutColumnInfo.PreferredLabelSize = new System.Drawing.Size(0, 27);
  638. ultraGridColumn57.RowLayoutColumnInfo.SpanX = 2;
  639. ultraGridColumn57.RowLayoutColumnInfo.SpanY = 1;
  640. ultraGridColumn58.Header.VisiblePosition = 57;
  641. ultraGridColumn58.Hidden = true;
  642. ultraGridColumn59.Header.VisiblePosition = 58;
  643. ultraGridColumn59.RowLayoutColumnInfo.OriginX = 29;
  644. ultraGridColumn59.RowLayoutColumnInfo.OriginY = 0;
  645. ultraGridColumn59.RowLayoutColumnInfo.SpanX = 2;
  646. ultraGridColumn59.RowLayoutColumnInfo.SpanY = 2;
  647. ultraGridColumn60.Header.VisiblePosition = 60;
  648. ultraGridColumn60.RowLayoutColumnInfo.OriginX = 31;
  649. ultraGridColumn60.RowLayoutColumnInfo.OriginY = 0;
  650. ultraGridColumn60.RowLayoutColumnInfo.SpanX = 2;
  651. ultraGridColumn60.RowLayoutColumnInfo.SpanY = 2;
  652. ultraGridColumn61.Header.VisiblePosition = 61;
  653. ultraGridColumn61.RowLayoutColumnInfo.OriginX = 11;
  654. ultraGridColumn61.RowLayoutColumnInfo.OriginY = 0;
  655. ultraGridColumn61.RowLayoutColumnInfo.SpanX = 2;
  656. ultraGridColumn61.RowLayoutColumnInfo.SpanY = 2;
  657. ultraGridColumn62.Header.VisiblePosition = 62;
  658. ultraGridColumn62.RowLayoutColumnInfo.OriginX = 17;
  659. ultraGridColumn62.RowLayoutColumnInfo.OriginY = 0;
  660. ultraGridColumn62.RowLayoutColumnInfo.SpanX = 2;
  661. ultraGridColumn62.RowLayoutColumnInfo.SpanY = 2;
  662. ultraGridColumn63.Header.VisiblePosition = 63;
  663. ultraGridColumn63.RowLayoutColumnInfo.OriginX = 9;
  664. ultraGridColumn63.RowLayoutColumnInfo.OriginY = 0;
  665. ultraGridColumn63.RowLayoutColumnInfo.SpanX = 2;
  666. ultraGridColumn63.RowLayoutColumnInfo.SpanY = 2;
  667. ultraGridColumn64.Header.VisiblePosition = 64;
  668. ultraGridColumn64.Hidden = true;
  669. ultraGridColumn65.Header.VisiblePosition = 65;
  670. ultraGridColumn65.RowLayoutColumnInfo.OriginX = 13;
  671. ultraGridColumn65.RowLayoutColumnInfo.OriginY = 0;
  672. ultraGridColumn65.RowLayoutColumnInfo.SpanX = 2;
  673. ultraGridColumn65.RowLayoutColumnInfo.SpanY = 2;
  674. ultraGridColumn66.Header.VisiblePosition = 66;
  675. ultraGridColumn66.Hidden = true;
  676. ultraGridColumn67.Header.VisiblePosition = 67;
  677. ultraGridColumn67.RowLayoutColumnInfo.OriginX = 2;
  678. ultraGridColumn67.RowLayoutColumnInfo.OriginY = 0;
  679. ultraGridColumn67.RowLayoutColumnInfo.SpanX = 2;
  680. ultraGridColumn67.RowLayoutColumnInfo.SpanY = 2;
  681. ultraGridColumn68.DataType = typeof(bool);
  682. ultraGridColumn68.Header.Caption = "选择";
  683. ultraGridColumn68.Header.CheckBoxVisibility = Infragistics.Win.UltraWinGrid.HeaderCheckBoxVisibility.Always;
  684. ultraGridColumn68.Header.VisiblePosition = 59;
  685. ultraGridColumn68.RowLayoutColumnInfo.OriginX = 0;
  686. ultraGridColumn68.RowLayoutColumnInfo.OriginY = 0;
  687. ultraGridColumn68.RowLayoutColumnInfo.PreferredLabelSize = new System.Drawing.Size(0, 27);
  688. ultraGridColumn68.RowLayoutColumnInfo.SpanX = 2;
  689. ultraGridColumn68.RowLayoutColumnInfo.SpanY = 1;
  690. ultraGridColumn68.Width = 50;
  691. ultraGridBand1.Columns.AddRange(new object[] {
  692. ultraGridColumn1,
  693. ultraGridColumn2,
  694. ultraGridColumn3,
  695. ultraGridColumn4,
  696. ultraGridColumn5,
  697. ultraGridColumn6,
  698. ultraGridColumn7,
  699. ultraGridColumn8,
  700. ultraGridColumn9,
  701. ultraGridColumn10,
  702. ultraGridColumn11,
  703. ultraGridColumn12,
  704. ultraGridColumn13,
  705. ultraGridColumn14,
  706. ultraGridColumn15,
  707. ultraGridColumn16,
  708. ultraGridColumn17,
  709. ultraGridColumn18,
  710. ultraGridColumn19,
  711. ultraGridColumn20,
  712. ultraGridColumn21,
  713. ultraGridColumn22,
  714. ultraGridColumn23,
  715. ultraGridColumn24,
  716. ultraGridColumn25,
  717. ultraGridColumn26,
  718. ultraGridColumn27,
  719. ultraGridColumn28,
  720. ultraGridColumn29,
  721. ultraGridColumn30,
  722. ultraGridColumn31,
  723. ultraGridColumn32,
  724. ultraGridColumn33,
  725. ultraGridColumn34,
  726. ultraGridColumn35,
  727. ultraGridColumn36,
  728. ultraGridColumn37,
  729. ultraGridColumn38,
  730. ultraGridColumn39,
  731. ultraGridColumn40,
  732. ultraGridColumn41,
  733. ultraGridColumn42,
  734. ultraGridColumn43,
  735. ultraGridColumn44,
  736. ultraGridColumn45,
  737. ultraGridColumn46,
  738. ultraGridColumn47,
  739. ultraGridColumn48,
  740. ultraGridColumn49,
  741. ultraGridColumn50,
  742. ultraGridColumn51,
  743. ultraGridColumn52,
  744. ultraGridColumn53,
  745. ultraGridColumn54,
  746. ultraGridColumn55,
  747. ultraGridColumn56,
  748. ultraGridColumn57,
  749. ultraGridColumn58,
  750. ultraGridColumn59,
  751. ultraGridColumn60,
  752. ultraGridColumn61,
  753. ultraGridColumn62,
  754. ultraGridColumn63,
  755. ultraGridColumn64,
  756. ultraGridColumn65,
  757. ultraGridColumn66,
  758. ultraGridColumn67,
  759. ultraGridColumn68});
  760. ultraGridBand1.RowLayoutStyle = Infragistics.Win.UltraWinGrid.RowLayoutStyle.ColumnLayout;
  761. summarySettings1.DisplayFormat = "数量:{0}";
  762. summarySettings1.GroupBySummaryValueAppearance = appearance1;
  763. summarySettings2.DisplayFormat = "{0}";
  764. summarySettings2.GroupBySummaryValueAppearance = appearance2;
  765. summarySettings3.DisplayFormat = "{0}";
  766. summarySettings3.GroupBySummaryValueAppearance = appearance3;
  767. summarySettings4.DisplayFormat = "{0}";
  768. summarySettings4.GroupBySummaryValueAppearance = appearance4;
  769. summarySettings5.DisplayFormat = "{0}";
  770. summarySettings5.GroupBySummaryValueAppearance = appearance5;
  771. ultraGridBand1.Summaries.AddRange(new Infragistics.Win.UltraWinGrid.SummarySettings[] {
  772. summarySettings1,
  773. summarySettings2,
  774. summarySettings3,
  775. summarySettings4,
  776. summarySettings5});
  777. ultraGridBand1.SummaryFooterCaption = "合计";
  778. this.beltActualGrid.DisplayLayout.BandsSerializer.Add(ultraGridBand1);
  779. this.beltActualGrid.DisplayLayout.DefaultSelectedBackColor = System.Drawing.Color.Empty;
  780. this.beltActualGrid.DisplayLayout.DefaultSelectedForeColor = System.Drawing.Color.Empty;
  781. this.beltActualGrid.DisplayLayout.GroupByBox.Hidden = true;
  782. this.beltActualGrid.DisplayLayout.Override.AllowRowFiltering = Infragistics.Win.DefaultableBoolean.True;
  783. this.beltActualGrid.DisplayLayout.Override.ButtonStyle = Infragistics.Win.UIElementButtonStyle.Button3D;
  784. appearance14.TextVAlignAsString = "Middle";
  785. this.beltActualGrid.DisplayLayout.Override.CellAppearance = appearance14;
  786. appearance15.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(183)))), ((int)(((byte)(208)))), ((int)(((byte)(250)))));
  787. appearance15.BackColor2 = System.Drawing.Color.FromArgb(((int)(((byte)(183)))), ((int)(((byte)(208)))), ((int)(((byte)(250)))));
  788. this.beltActualGrid.DisplayLayout.Override.HeaderAppearance = appearance15;
  789. this.beltActualGrid.DisplayLayout.Override.HeaderStyle = Infragistics.Win.HeaderStyle.Standard;
  790. this.beltActualGrid.DisplayLayout.Override.MaxSelectedRows = 1;
  791. this.beltActualGrid.DisplayLayout.Override.MinRowHeight = 21;
  792. appearance16.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(183)))), ((int)(((byte)(208)))), ((int)(((byte)(250)))));
  793. appearance16.TextVAlignAsString = "Middle";
  794. this.beltActualGrid.DisplayLayout.Override.RowSelectorAppearance = appearance16;
  795. this.beltActualGrid.DisplayLayout.Override.RowSelectorNumberStyle = Infragistics.Win.UltraWinGrid.RowSelectorNumberStyle.RowIndex;
  796. this.beltActualGrid.DisplayLayout.Override.SelectTypeCol = Infragistics.Win.UltraWinGrid.SelectType.None;
  797. this.beltActualGrid.DisplayLayout.Override.SelectTypeRow = Infragistics.Win.UltraWinGrid.SelectType.Single;
  798. this.beltActualGrid.DisplayLayout.Override.WrapHeaderText = Infragistics.Win.DefaultableBoolean.True;
  799. this.beltActualGrid.DisplayLayout.ViewStyleBand = Infragistics.Win.UltraWinGrid.ViewStyleBand.OutlookGroupBy;
  800. this.beltActualGrid.Dock = System.Windows.Forms.DockStyle.Fill;
  801. this.beltActualGrid.Font = new System.Drawing.Font("宋体", 12F);
  802. this.beltActualGrid.Location = new System.Drawing.Point(0, 0);
  803. this.beltActualGrid.Name = "beltActualGrid";
  804. this.beltActualGrid.Size = new System.Drawing.Size(1692, 410);
  805. this.beltActualGrid.TabIndex = 9;
  806. this.beltActualGrid.CellChange += new Infragistics.Win.UltraWinGrid.CellEventHandler(this.beltActualGrid_CellChange);
  807. //
  808. // dataSetActual
  809. //
  810. this.dataSetActual.DataSetName = "NewDataSet";
  811. this.dataSetActual.Locale = new System.Globalization.CultureInfo("zh-CN");
  812. this.dataSetActual.Tables.AddRange(new System.Data.DataTable[] {
  813. this.dataTable2});
  814. //
  815. // dataTable2
  816. //
  817. this.dataTable2.Columns.AddRange(new System.Data.DataColumn[] {
  818. this.dataColumn47,
  819. this.dataColumn48,
  820. this.dataColumn49,
  821. this.dataColumn50,
  822. this.dataColumn51,
  823. this.dataColumn52,
  824. this.dataColumn53,
  825. this.dataColumn54,
  826. this.dataColumn55,
  827. this.dataColumn56,
  828. this.dataColumn57,
  829. this.dataColumn58,
  830. this.dataColumn59,
  831. this.dataColumn60,
  832. this.dataColumn61,
  833. this.dataColumn62,
  834. this.dataColumn63,
  835. this.dataColumn64,
  836. this.dataColumn65,
  837. this.dataColumn66,
  838. this.dataColumn67,
  839. this.dataColumn68,
  840. this.dataColumn69,
  841. this.dataColumn70,
  842. this.dataColumn71,
  843. this.dataColumn72,
  844. this.dataColumn73,
  845. this.dataColumn74,
  846. this.dataColumn75,
  847. this.dataColumn76,
  848. this.dataColumn77,
  849. this.dataColumn78,
  850. this.dataColumn79,
  851. this.dataColumn80,
  852. this.dataColumn81,
  853. this.dataColumn82,
  854. this.dataColumn83,
  855. this.dataColumn84,
  856. this.dataColumn85,
  857. this.dataColumn86,
  858. this.dataColumn87,
  859. this.dataColumn88,
  860. this.dataColumn89,
  861. this.dataColumn120,
  862. this.dataColumn121,
  863. this.dataColumn122,
  864. this.dataColumn123,
  865. this.dataColumn124,
  866. this.dataColumn125,
  867. this.dataColumn126,
  868. this.dataColumn127,
  869. this.dataColumn128,
  870. this.dataColumn129,
  871. this.dataColumn1,
  872. this.dataColumn2,
  873. this.dataColumn3,
  874. this.dataColumn4,
  875. this.dataColumn5,
  876. this.dataColumn6,
  877. this.dataColumn7,
  878. this.dataColumn8,
  879. this.dataColumn9,
  880. this.dataColumn10,
  881. this.dataColumn11,
  882. this.dataColumn12,
  883. this.dataColumn13,
  884. this.dataColumn14});
  885. this.dataTable2.TableName = "计量实绩";
  886. //
  887. // dataColumn47
  888. //
  889. this.dataColumn47.Caption = "实绩编号";
  890. this.dataColumn47.ColumnName = "actualNo";
  891. //
  892. // dataColumn48
  893. //
  894. this.dataColumn48.Caption = "预报编号";
  895. this.dataColumn48.ColumnName = "predictionNo";
  896. //
  897. // dataColumn49
  898. //
  899. this.dataColumn49.Caption = "通知单号";
  900. this.dataColumn49.ColumnName = "noticeNo";
  901. //
  902. // dataColumn50
  903. //
  904. this.dataColumn50.Caption = "批号";
  905. this.dataColumn50.ColumnName = "batchNo";
  906. //
  907. // dataColumn51
  908. //
  909. this.dataColumn51.Caption = "备注";
  910. this.dataColumn51.ColumnName = "memo";
  911. //
  912. // dataColumn52
  913. //
  914. this.dataColumn52.Caption = "状态";
  915. this.dataColumn52.ColumnName = "valueFlag";
  916. //
  917. // dataColumn53
  918. //
  919. this.dataColumn53.Caption = "创建人编号";
  920. this.dataColumn53.ColumnName = "createManNo";
  921. //
  922. // dataColumn54
  923. //
  924. this.dataColumn54.Caption = "司秤工";
  925. this.dataColumn54.ColumnName = "createManName";
  926. //
  927. // dataColumn55
  928. //
  929. this.dataColumn55.Caption = "过磅时间";
  930. this.dataColumn55.ColumnName = "createTime";
  931. //
  932. // dataColumn56
  933. //
  934. this.dataColumn56.Caption = "修改人编号";
  935. this.dataColumn56.ColumnName = "updateManNo";
  936. //
  937. // dataColumn57
  938. //
  939. this.dataColumn57.Caption = "修改人";
  940. this.dataColumn57.ColumnName = "updateManName";
  941. //
  942. // dataColumn58
  943. //
  944. this.dataColumn58.Caption = "删除人编号";
  945. this.dataColumn58.ColumnName = "deleteManNo";
  946. //
  947. // dataColumn59
  948. //
  949. this.dataColumn59.Caption = "删除人";
  950. this.dataColumn59.ColumnName = "deleteManName";
  951. //
  952. // dataColumn60
  953. //
  954. this.dataColumn60.Caption = "产品编号";
  955. this.dataColumn60.ColumnName = "productNo";
  956. //
  957. // dataColumn61
  958. //
  959. this.dataColumn61.Caption = "产品名称";
  960. this.dataColumn61.ColumnName = "productName";
  961. //
  962. // dataColumn62
  963. //
  964. this.dataColumn62.Caption = "钢号编码";
  965. this.dataColumn62.ColumnName = "gradeNo";
  966. //
  967. // dataColumn63
  968. //
  969. this.dataColumn63.Caption = "钢种";
  970. this.dataColumn63.ColumnName = "gradeName";
  971. //
  972. // dataColumn64
  973. //
  974. this.dataColumn64.Caption = "标准编号";
  975. this.dataColumn64.ColumnName = "standardNo";
  976. //
  977. // dataColumn65
  978. //
  979. this.dataColumn65.Caption = "标准";
  980. this.dataColumn65.ColumnName = "standardName";
  981. //
  982. // dataColumn66
  983. //
  984. this.dataColumn66.Caption = "顺序号";
  985. this.dataColumn66.ColumnName = "packageNo";
  986. //
  987. // dataColumn67
  988. //
  989. this.dataColumn67.Caption = "支数";
  990. this.dataColumn67.ColumnName = "blockNum";
  991. //
  992. // dataColumn68
  993. //
  994. this.dataColumn68.Caption = "生产日期";
  995. this.dataColumn68.ColumnName = "productDate";
  996. //
  997. // dataColumn69
  998. //
  999. this.dataColumn69.Caption = "铅封号";
  1000. this.dataColumn69.ColumnName = "sealNo";
  1001. //
  1002. // dataColumn70
  1003. //
  1004. this.dataColumn70.Caption = "桶号";
  1005. this.dataColumn70.ColumnName = "bucketNo";
  1006. //
  1007. // dataColumn71
  1008. //
  1009. this.dataColumn71.Caption = "净重";
  1010. this.dataColumn71.ColumnName = "actualWeight";
  1011. //
  1012. // dataColumn72
  1013. //
  1014. this.dataColumn72.Caption = "仪表底数";
  1015. this.dataColumn72.ColumnName = "referWeight";
  1016. //
  1017. // dataColumn73
  1018. //
  1019. this.dataColumn73.Caption = "零点重量";
  1020. this.dataColumn73.ColumnName = "tareWeight";
  1021. //
  1022. // dataColumn74
  1023. //
  1024. this.dataColumn74.Caption = "毛重";
  1025. this.dataColumn74.ColumnName = "grossWeight";
  1026. //
  1027. // dataColumn75
  1028. //
  1029. this.dataColumn75.Caption = "重量组合包号";
  1030. this.dataColumn75.ColumnName = "combinPackageNo";
  1031. //
  1032. // dataColumn76
  1033. //
  1034. this.dataColumn76.Caption = "重量类型";
  1035. this.dataColumn76.ColumnName = "weightType";
  1036. //
  1037. // dataColumn77
  1038. //
  1039. this.dataColumn77.Caption = "审核状态";
  1040. this.dataColumn77.ColumnName = "checkFlag";
  1041. //
  1042. // dataColumn78
  1043. //
  1044. this.dataColumn78.Caption = "计量点编号";
  1045. this.dataColumn78.ColumnName = "baseSpotNo";
  1046. //
  1047. // dataColumn79
  1048. //
  1049. this.dataColumn79.Caption = "计量点";
  1050. this.dataColumn79.ColumnName = "baseSpotName";
  1051. //
  1052. // dataColumn80
  1053. //
  1054. this.dataColumn80.Caption = "净重";
  1055. this.dataColumn80.ColumnName = "netWeight";
  1056. //
  1057. // dataColumn81
  1058. //
  1059. this.dataColumn81.Caption = "修改时间";
  1060. this.dataColumn81.ColumnName = "updateTime";
  1061. //
  1062. // dataColumn82
  1063. //
  1064. this.dataColumn82.Caption = "MES炉号";
  1065. this.dataColumn82.ColumnName = "heatNoMes";
  1066. //
  1067. // dataColumn83
  1068. //
  1069. this.dataColumn83.Caption = "顺序炉号";
  1070. this.dataColumn83.ColumnName = "heatNoSeq";
  1071. //
  1072. // dataColumn84
  1073. //
  1074. this.dataColumn84.Caption = "炉号";
  1075. this.dataColumn84.ColumnName = "heatNo";
  1076. //
  1077. // dataColumn85
  1078. //
  1079. this.dataColumn85.Caption = "班组";
  1080. this.dataColumn85.ColumnName = "meterGroup";
  1081. //
  1082. // dataColumn86
  1083. //
  1084. this.dataColumn86.Caption = "班次";
  1085. this.dataColumn86.ColumnName = "meterClass";
  1086. //
  1087. // dataColumn87
  1088. //
  1089. this.dataColumn87.Caption = "理论重量";
  1090. this.dataColumn87.ColumnName = "theoreticalWeight";
  1091. //
  1092. // dataColumn88
  1093. //
  1094. this.dataColumn88.Caption = "规格编号";
  1095. this.dataColumn88.ColumnName = "specNo";
  1096. //
  1097. // dataColumn89
  1098. //
  1099. this.dataColumn89.Caption = "规格";
  1100. this.dataColumn89.ColumnName = "specName";
  1101. //
  1102. // dataColumn120
  1103. //
  1104. this.dataColumn120.Caption = "AB秤";
  1105. this.dataColumn120.ColumnName = "scaleName";
  1106. //
  1107. // dataColumn121
  1108. //
  1109. this.dataColumn121.Caption = "结束时间";
  1110. this.dataColumn121.ColumnName = "endTime";
  1111. //
  1112. // dataColumn122
  1113. //
  1114. this.dataColumn122.Caption = "结束重量";
  1115. this.dataColumn122.ColumnName = "endWeight";
  1116. //
  1117. // dataColumn123
  1118. //
  1119. this.dataColumn123.Caption = "开始时间";
  1120. this.dataColumn123.ColumnName = "startTime";
  1121. //
  1122. // dataColumn124
  1123. //
  1124. this.dataColumn124.Caption = "开始重量";
  1125. this.dataColumn124.ColumnName = "startWeight";
  1126. //
  1127. // dataColumn125
  1128. //
  1129. this.dataColumn125.Caption = "重量差值";
  1130. this.dataColumn125.ColumnName = "weightDiff";
  1131. //
  1132. // dataColumn126
  1133. //
  1134. this.dataColumn126.Caption = "收货单位编码";
  1135. this.dataColumn126.ColumnName = "receivingUintNo";
  1136. //
  1137. // dataColumn127
  1138. //
  1139. this.dataColumn127.Caption = "收货单位名称";
  1140. this.dataColumn127.ColumnName = "receivingUintName";
  1141. //
  1142. // dataColumn128
  1143. //
  1144. this.dataColumn128.Caption = "发货单位编码";
  1145. this.dataColumn128.ColumnName = "forwardingUnitNo";
  1146. //
  1147. // dataColumn129
  1148. //
  1149. this.dataColumn129.Caption = "发货单位名称";
  1150. this.dataColumn129.ColumnName = "forwardingUnitName";
  1151. //
  1152. // dataColumn1
  1153. //
  1154. this.dataColumn1.Caption = "卸货码头";
  1155. this.dataColumn1.ColumnName = "unloadWharf";
  1156. //
  1157. // dataColumn2
  1158. //
  1159. this.dataColumn2.Caption = "船号";
  1160. this.dataColumn2.ColumnName = "shipNo";
  1161. //
  1162. // dataColumn3
  1163. //
  1164. this.dataColumn3.Caption = "发运重量";
  1165. this.dataColumn3.ColumnName = "forwardingWeight";
  1166. //
  1167. // dataColumn4
  1168. //
  1169. this.dataColumn4.Caption = "卸货地点";
  1170. this.dataColumn4.ColumnName = "unloadSite";
  1171. //
  1172. // dataColumn5
  1173. //
  1174. this.dataColumn5.Caption = "压港时间";
  1175. this.dataColumn5.ColumnName = "overstock";
  1176. //
  1177. // dataColumn6
  1178. //
  1179. this.dataColumn6.Caption = "审核人";
  1180. this.dataColumn6.ColumnName = "checkManName";
  1181. //
  1182. // dataColumn7
  1183. //
  1184. this.dataColumn7.Caption = "审核时间";
  1185. this.dataColumn7.ColumnName = "checkTime";
  1186. //
  1187. // dataColumn8
  1188. //
  1189. this.dataColumn8.Caption = "物料名称";
  1190. this.dataColumn8.ColumnName = "newMatName";
  1191. //
  1192. // dataColumn9
  1193. //
  1194. this.dataColumn9.Caption = "发货单位";
  1195. this.dataColumn9.ColumnName = "newSupplier";
  1196. //
  1197. // dataColumn10
  1198. //
  1199. this.dataColumn10.Caption = "物料类别";
  1200. this.dataColumn10.ColumnName = "newMatClass";
  1201. //
  1202. // dataColumn11
  1203. //
  1204. this.dataColumn11.Caption = "物料类别编码";
  1205. this.dataColumn11.ColumnName = "newMatClassCode";
  1206. //
  1207. // dataColumn12
  1208. //
  1209. this.dataColumn12.Caption = "物料规格";
  1210. this.dataColumn12.ColumnName = "newGg";
  1211. //
  1212. // dataColumn13
  1213. //
  1214. this.dataColumn13.Caption = "海轮号";
  1215. this.dataColumn13.ColumnName = "newHlh";
  1216. //
  1217. // dataColumn14
  1218. //
  1219. this.dataColumn14.Caption = "合同号";
  1220. this.dataColumn14.ColumnName = "orderNo";
  1221. //
  1222. // ultraGroupBoxEdit
  1223. //
  1224. this.ultraGroupBoxEdit.Controls.Add(this.tableLayoutPanel5);
  1225. this.ultraGroupBoxEdit.Dock = System.Windows.Forms.DockStyle.Fill;
  1226. this.ultraGroupBoxEdit.Location = new System.Drawing.Point(0, 0);
  1227. this.ultraGroupBoxEdit.Name = "ultraGroupBoxEdit";
  1228. this.ultraGroupBoxEdit.Size = new System.Drawing.Size(1698, 147);
  1229. this.ultraGroupBoxEdit.TabIndex = 2;
  1230. this.ultraGroupBoxEdit.Text = "数据编辑区域";
  1231. this.ultraGroupBoxEdit.ViewStyle = Infragistics.Win.Misc.GroupBoxViewStyle.Office2007;
  1232. //
  1233. // tableLayoutPanel5
  1234. //
  1235. this.tableLayoutPanel5.ColumnCount = 12;
  1236. this.tableLayoutPanel5.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Absolute, 50F));
  1237. this.tableLayoutPanel5.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Percent, 4.952768F));
  1238. this.tableLayoutPanel5.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Percent, 10.18707F));
  1239. this.tableLayoutPanel5.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Percent, 5.515293F));
  1240. this.tableLayoutPanel5.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Percent, 10.57639F));
  1241. this.tableLayoutPanel5.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Percent, 5.320635F));
  1242. this.tableLayoutPanel5.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Percent, 13.10693F));
  1243. this.tableLayoutPanel5.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Percent, 6.358808F));
  1244. this.tableLayoutPanel5.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Percent, 11.54968F));
  1245. this.tableLayoutPanel5.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Percent, 6.081081F));
  1246. this.tableLayoutPanel5.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Percent, 11.14865F));
  1247. this.tableLayoutPanel5.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Percent, 15.2027F));
  1248. this.tableLayoutPanel5.Controls.Add(this.newOrder_text, 10, 4);
  1249. this.tableLayoutPanel5.Controls.Add(this.newHlh_text, 10, 3);
  1250. this.tableLayoutPanel5.Controls.Add(this.newGg_text, 10, 2);
  1251. this.tableLayoutPanel5.Controls.Add(this.newMatClass_text, 10, 1);
  1252. this.tableLayoutPanel5.Controls.Add(this.label29, 9, 4);
  1253. this.tableLayoutPanel5.Controls.Add(this.label26, 9, 3);
  1254. this.tableLayoutPanel5.Controls.Add(this.label25, 9, 2);
  1255. this.tableLayoutPanel5.Controls.Add(this.label24, 9, 1);
  1256. this.tableLayoutPanel5.Controls.Add(this.predictionNo_Txt, 8, 4);
  1257. this.tableLayoutPanel5.Controls.Add(this.label23, 7, 4);
  1258. this.tableLayoutPanel5.Controls.Add(this.actualNoTxt, 6, 3);
  1259. this.tableLayoutPanel5.Controls.Add(this.requiteWeightTxt, 4, 4);
  1260. this.tableLayoutPanel5.Controls.Add(this.startTime, 6, 1);
  1261. this.tableLayoutPanel5.Controls.Add(this.netWeightTxt, 2, 4);
  1262. this.tableLayoutPanel5.Controls.Add(this.endWeight_Txt, 2, 3);
  1263. this.tableLayoutPanel5.Controls.Add(this.cbPntName, 4, 1);
  1264. this.tableLayoutPanel5.Controls.Add(this.cbshouh_1, 8, 3);
  1265. this.tableLayoutPanel5.Controls.Add(this.cbfahuo_1, 8, 2);
  1266. this.tableLayoutPanel5.Controls.Add(this.meterStaffTxt, 4, 2);
  1267. this.tableLayoutPanel5.Controls.Add(this.ScaleName, 4, 3);
  1268. this.tableLayoutPanel5.Controls.Add(this.shipnoTxt, 2, 1);
  1269. this.tableLayoutPanel5.Controls.Add(this.label11, 1, 4);
  1270. this.tableLayoutPanel5.Controls.Add(this.label28, 1, 1);
  1271. this.tableLayoutPanel5.Controls.Add(this.label10, 1, 3);
  1272. this.tableLayoutPanel5.Controls.Add(this.label7, 3, 2);
  1273. this.tableLayoutPanel5.Controls.Add(this.label8, 3, 3);
  1274. this.tableLayoutPanel5.Controls.Add(this.label9, 3, 4);
  1275. this.tableLayoutPanel5.Controls.Add(this.label12, 3, 1);
  1276. this.tableLayoutPanel5.Controls.Add(this.label13, 7, 1);
  1277. this.tableLayoutPanel5.Controls.Add(this.label14, 7, 2);
  1278. this.tableLayoutPanel5.Controls.Add(this.label15, 7, 3);
  1279. this.tableLayoutPanel5.Controls.Add(this.moteTxt, 6, 4);
  1280. this.tableLayoutPanel5.Controls.Add(this.endTime, 6, 2);
  1281. this.tableLayoutPanel5.Controls.Add(this.cmMatname_1, 8, 1);
  1282. this.tableLayoutPanel5.Controls.Add(this.label19, 5, 1);
  1283. this.tableLayoutPanel5.Controls.Add(this.label20, 5, 2);
  1284. this.tableLayoutPanel5.Controls.Add(this.label21, 5, 3);
  1285. this.tableLayoutPanel5.Controls.Add(this.label22, 5, 4);
  1286. this.tableLayoutPanel5.Controls.Add(this.startWeightTxt, 2, 2);
  1287. this.tableLayoutPanel5.Controls.Add(this.label27, 1, 2);
  1288. this.tableLayoutPanel5.Dock = System.Windows.Forms.DockStyle.Fill;
  1289. this.tableLayoutPanel5.Location = new System.Drawing.Point(3, 18);
  1290. this.tableLayoutPanel5.Margin = new System.Windows.Forms.Padding(0, 10, 0, 0);
  1291. this.tableLayoutPanel5.Name = "tableLayoutPanel5";
  1292. this.tableLayoutPanel5.RowCount = 5;
  1293. this.tableLayoutPanel5.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Absolute, 8F));
  1294. this.tableLayoutPanel5.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Percent, 24.78632F));
  1295. this.tableLayoutPanel5.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Percent, 24.78632F));
  1296. this.tableLayoutPanel5.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Percent, 25.21367F));
  1297. this.tableLayoutPanel5.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Percent, 25.21367F));
  1298. this.tableLayoutPanel5.Size = new System.Drawing.Size(1692, 126);
  1299. this.tableLayoutPanel5.TabIndex = 1;
  1300. //
  1301. // newOrder_text
  1302. //
  1303. this.newOrder_text.Dock = System.Windows.Forms.DockStyle.Fill;
  1304. this.newOrder_text.Font = new System.Drawing.Font("宋体", 9.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  1305. this.newOrder_text.Location = new System.Drawing.Point(1255, 105);
  1306. this.newOrder_text.Margin = new System.Windows.Forms.Padding(0, 10, 0, 0);
  1307. this.newOrder_text.Name = "newOrder_text";
  1308. this.newOrder_text.Size = new System.Drawing.Size(183, 22);
  1309. this.newOrder_text.TabIndex = 154;
  1310. //
  1311. // newHlh_text
  1312. //
  1313. this.newHlh_text.Dock = System.Windows.Forms.DockStyle.Fill;
  1314. this.newHlh_text.Font = new System.Drawing.Font("宋体", 9.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  1315. this.newHlh_text.Location = new System.Drawing.Point(1255, 76);
  1316. this.newHlh_text.Margin = new System.Windows.Forms.Padding(0, 10, 0, 0);
  1317. this.newHlh_text.Name = "newHlh_text";
  1318. this.newHlh_text.Size = new System.Drawing.Size(183, 22);
  1319. this.newHlh_text.TabIndex = 153;
  1320. //
  1321. // newGg_text
  1322. //
  1323. this.newGg_text.Dock = System.Windows.Forms.DockStyle.Fill;
  1324. this.newGg_text.Font = new System.Drawing.Font("宋体", 9.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  1325. this.newGg_text.Location = new System.Drawing.Point(1255, 47);
  1326. this.newGg_text.Margin = new System.Windows.Forms.Padding(0, 10, 0, 0);
  1327. this.newGg_text.Name = "newGg_text";
  1328. this.newGg_text.Size = new System.Drawing.Size(183, 22);
  1329. this.newGg_text.TabIndex = 152;
  1330. //
  1331. // newMatClass_text
  1332. //
  1333. this.newMatClass_text.Dock = System.Windows.Forms.DockStyle.Fill;
  1334. this.newMatClass_text.Font = new System.Drawing.Font("宋体", 9.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  1335. this.newMatClass_text.Location = new System.Drawing.Point(1255, 18);
  1336. this.newMatClass_text.Margin = new System.Windows.Forms.Padding(0, 10, 0, 0);
  1337. this.newMatClass_text.Name = "newMatClass_text";
  1338. this.newMatClass_text.Size = new System.Drawing.Size(183, 22);
  1339. this.newMatClass_text.TabIndex = 151;
  1340. //
  1341. // label29
  1342. //
  1343. this.label29.AutoSize = true;
  1344. this.label29.Dock = System.Windows.Forms.DockStyle.Fill;
  1345. this.label29.Font = new System.Drawing.Font("宋体", 10.5F, System.Drawing.FontStyle.Bold);
  1346. this.label29.Location = new System.Drawing.Point(1159, 98);
  1347. this.label29.Margin = new System.Windows.Forms.Padding(3);
  1348. this.label29.Name = "label29";
  1349. this.label29.Size = new System.Drawing.Size(93, 25);
  1350. this.label29.TabIndex = 150;
  1351. this.label29.Text = "合同号";
  1352. this.label29.TextAlign = System.Drawing.ContentAlignment.MiddleCenter;
  1353. //
  1354. // label26
  1355. //
  1356. this.label26.AutoSize = true;
  1357. this.label26.Dock = System.Windows.Forms.DockStyle.Fill;
  1358. this.label26.Font = new System.Drawing.Font("宋体", 10.5F, System.Drawing.FontStyle.Bold);
  1359. this.label26.Location = new System.Drawing.Point(1159, 69);
  1360. this.label26.Margin = new System.Windows.Forms.Padding(3);
  1361. this.label26.Name = "label26";
  1362. this.label26.Size = new System.Drawing.Size(93, 23);
  1363. this.label26.TabIndex = 149;
  1364. this.label26.Text = "海轮号";
  1365. this.label26.TextAlign = System.Drawing.ContentAlignment.MiddleCenter;
  1366. //
  1367. // label25
  1368. //
  1369. this.label25.AutoSize = true;
  1370. this.label25.Dock = System.Windows.Forms.DockStyle.Fill;
  1371. this.label25.Font = new System.Drawing.Font("宋体", 10.5F, System.Drawing.FontStyle.Bold);
  1372. this.label25.Location = new System.Drawing.Point(1159, 40);
  1373. this.label25.Margin = new System.Windows.Forms.Padding(3);
  1374. this.label25.Name = "label25";
  1375. this.label25.Size = new System.Drawing.Size(93, 23);
  1376. this.label25.TabIndex = 148;
  1377. this.label25.Text = "物料规格";
  1378. this.label25.TextAlign = System.Drawing.ContentAlignment.MiddleCenter;
  1379. //
  1380. // label24
  1381. //
  1382. this.label24.AutoSize = true;
  1383. this.label24.Dock = System.Windows.Forms.DockStyle.Fill;
  1384. this.label24.Font = new System.Drawing.Font("宋体", 10.5F, System.Drawing.FontStyle.Bold);
  1385. this.label24.Location = new System.Drawing.Point(1159, 11);
  1386. this.label24.Margin = new System.Windows.Forms.Padding(3);
  1387. this.label24.Name = "label24";
  1388. this.label24.Size = new System.Drawing.Size(93, 23);
  1389. this.label24.TabIndex = 147;
  1390. this.label24.Text = "物料类别";
  1391. this.label24.TextAlign = System.Drawing.ContentAlignment.MiddleCenter;
  1392. //
  1393. // predictionNo_Txt
  1394. //
  1395. this.predictionNo_Txt.Dock = System.Windows.Forms.DockStyle.Fill;
  1396. this.predictionNo_Txt.Font = new System.Drawing.Font("宋体", 9.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  1397. this.predictionNo_Txt.Location = new System.Drawing.Point(967, 105);
  1398. this.predictionNo_Txt.Margin = new System.Windows.Forms.Padding(0, 10, 0, 0);
  1399. this.predictionNo_Txt.Name = "predictionNo_Txt";
  1400. this.predictionNo_Txt.Size = new System.Drawing.Size(189, 22);
  1401. this.predictionNo_Txt.TabIndex = 146;
  1402. //
  1403. // label23
  1404. //
  1405. this.label23.AutoSize = true;
  1406. this.label23.Dock = System.Windows.Forms.DockStyle.Fill;
  1407. this.label23.Font = new System.Drawing.Font("宋体", 10.5F, System.Drawing.FontStyle.Bold);
  1408. this.label23.Location = new System.Drawing.Point(866, 98);
  1409. this.label23.Margin = new System.Windows.Forms.Padding(3);
  1410. this.label23.Name = "label23";
  1411. this.label23.Size = new System.Drawing.Size(98, 25);
  1412. this.label23.TabIndex = 145;
  1413. this.label23.Text = "卸货计划";
  1414. this.label23.TextAlign = System.Drawing.ContentAlignment.MiddleCenter;
  1415. //
  1416. // actualNoTxt
  1417. //
  1418. this.actualNoTxt.Dock = System.Windows.Forms.DockStyle.Fill;
  1419. this.actualNoTxt.Enabled = false;
  1420. this.actualNoTxt.Font = new System.Drawing.Font("宋体", 9.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  1421. this.actualNoTxt.Location = new System.Drawing.Point(648, 76);
  1422. this.actualNoTxt.Margin = new System.Windows.Forms.Padding(0, 10, 0, 0);
  1423. this.actualNoTxt.Name = "actualNoTxt";
  1424. this.actualNoTxt.Size = new System.Drawing.Size(215, 22);
  1425. this.actualNoTxt.TabIndex = 144;
  1426. //
  1427. // requiteWeightTxt
  1428. //
  1429. this.requiteWeightTxt.Dock = System.Windows.Forms.DockStyle.Fill;
  1430. this.requiteWeightTxt.Font = new System.Drawing.Font("宋体", 9.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  1431. this.requiteWeightTxt.Location = new System.Drawing.Point(388, 105);
  1432. this.requiteWeightTxt.Margin = new System.Windows.Forms.Padding(0, 10, 0, 0);
  1433. this.requiteWeightTxt.Name = "requiteWeightTxt";
  1434. this.requiteWeightTxt.Size = new System.Drawing.Size(173, 22);
  1435. this.requiteWeightTxt.TabIndex = 139;
  1436. //
  1437. // startTime
  1438. //
  1439. this.startTime.Cursor = System.Windows.Forms.Cursors.Default;
  1440. this.startTime.CustomFormat = "yyyy-MM-dd HH:mm:ss";
  1441. this.startTime.Dock = System.Windows.Forms.DockStyle.Fill;
  1442. this.startTime.Font = new System.Drawing.Font("宋体", 12F);
  1443. this.startTime.Format = System.Windows.Forms.DateTimePickerFormat.Custom;
  1444. this.startTime.Location = new System.Drawing.Point(648, 18);
  1445. this.startTime.Margin = new System.Windows.Forms.Padding(0, 10, 0, 0);
  1446. this.startTime.MaxDate = new System.DateTime(3000, 12, 31, 0, 0, 0, 0);
  1447. this.startTime.MinDate = new System.DateTime(1900, 1, 1, 0, 0, 0, 0);
  1448. this.startTime.Name = "startTime";
  1449. this.startTime.Size = new System.Drawing.Size(215, 26);
  1450. this.startTime.TabIndex = 137;
  1451. //
  1452. // netWeightTxt
  1453. //
  1454. this.netWeightTxt.Dock = System.Windows.Forms.DockStyle.Fill;
  1455. this.netWeightTxt.Enabled = false;
  1456. this.netWeightTxt.Font = new System.Drawing.Font("宋体", 9.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  1457. this.netWeightTxt.Location = new System.Drawing.Point(131, 105);
  1458. this.netWeightTxt.Margin = new System.Windows.Forms.Padding(0, 10, 0, 0);
  1459. this.netWeightTxt.Name = "netWeightTxt";
  1460. this.netWeightTxt.Size = new System.Drawing.Size(167, 22);
  1461. this.netWeightTxt.TabIndex = 136;
  1462. this.netWeightTxt.KeyPress += new System.Windows.Forms.KeyPressEventHandler(this.netWeightTxt_KeyPress);
  1463. //
  1464. // endWeight_Txt
  1465. //
  1466. this.endWeight_Txt.Dock = System.Windows.Forms.DockStyle.Fill;
  1467. this.endWeight_Txt.Font = new System.Drawing.Font("宋体", 9.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  1468. this.endWeight_Txt.Location = new System.Drawing.Point(131, 76);
  1469. this.endWeight_Txt.Margin = new System.Windows.Forms.Padding(0, 10, 0, 0);
  1470. this.endWeight_Txt.Name = "endWeight_Txt";
  1471. this.endWeight_Txt.Size = new System.Drawing.Size(167, 22);
  1472. this.endWeight_Txt.TabIndex = 135;
  1473. this.endWeight_Txt.TextChanged += new System.EventHandler(this.endWeight_Txt_TextChanged);
  1474. this.endWeight_Txt.KeyPress += new System.Windows.Forms.KeyPressEventHandler(this.endWeight_Txt_KeyPress);
  1475. //
  1476. // cbPntName
  1477. //
  1478. this.cbPntName.Dock = System.Windows.Forms.DockStyle.Fill;
  1479. this.cbPntName.Font = new System.Drawing.Font("宋体", 9.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  1480. this.cbPntName.FormattingEnabled = true;
  1481. this.cbPntName.Location = new System.Drawing.Point(388, 18);
  1482. this.cbPntName.Margin = new System.Windows.Forms.Padding(0, 10, 0, 0);
  1483. this.cbPntName.Name = "cbPntName";
  1484. this.cbPntName.Size = new System.Drawing.Size(173, 21);
  1485. this.cbPntName.TabIndex = 133;
  1486. //
  1487. // cbshouh_1
  1488. //
  1489. this.cbshouh_1.Dock = System.Windows.Forms.DockStyle.Fill;
  1490. this.cbshouh_1.Font = new System.Drawing.Font("宋体", 9.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  1491. this.cbshouh_1.FormattingEnabled = true;
  1492. this.cbshouh_1.Location = new System.Drawing.Point(967, 76);
  1493. this.cbshouh_1.Margin = new System.Windows.Forms.Padding(0, 10, 0, 0);
  1494. this.cbshouh_1.Name = "cbshouh_1";
  1495. this.cbshouh_1.Size = new System.Drawing.Size(189, 21);
  1496. this.cbshouh_1.TabIndex = 132;
  1497. //
  1498. // cbfahuo_1
  1499. //
  1500. this.cbfahuo_1.Dock = System.Windows.Forms.DockStyle.Fill;
  1501. this.cbfahuo_1.Font = new System.Drawing.Font("宋体", 9.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  1502. this.cbfahuo_1.FormattingEnabled = true;
  1503. this.cbfahuo_1.Location = new System.Drawing.Point(967, 47);
  1504. this.cbfahuo_1.Margin = new System.Windows.Forms.Padding(0, 10, 0, 0);
  1505. this.cbfahuo_1.Name = "cbfahuo_1";
  1506. this.cbfahuo_1.Size = new System.Drawing.Size(189, 21);
  1507. this.cbfahuo_1.TabIndex = 131;
  1508. //
  1509. // meterStaffTxt
  1510. //
  1511. this.meterStaffTxt.Dock = System.Windows.Forms.DockStyle.Fill;
  1512. this.meterStaffTxt.Font = new System.Drawing.Font("宋体", 9.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  1513. this.meterStaffTxt.Location = new System.Drawing.Point(388, 47);
  1514. this.meterStaffTxt.Margin = new System.Windows.Forms.Padding(0, 10, 0, 0);
  1515. this.meterStaffTxt.Name = "meterStaffTxt";
  1516. this.meterStaffTxt.Size = new System.Drawing.Size(173, 22);
  1517. this.meterStaffTxt.TabIndex = 130;
  1518. //
  1519. // ScaleName
  1520. //
  1521. this.ScaleName.Dock = System.Windows.Forms.DockStyle.Fill;
  1522. this.ScaleName.Font = new System.Drawing.Font("宋体", 9.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  1523. this.ScaleName.FormattingEnabled = true;
  1524. this.ScaleName.Items.AddRange(new object[] {
  1525. "A",
  1526. "B"});
  1527. this.ScaleName.Location = new System.Drawing.Point(388, 76);
  1528. this.ScaleName.Margin = new System.Windows.Forms.Padding(0, 10, 0, 0);
  1529. this.ScaleName.Name = "ScaleName";
  1530. this.ScaleName.Size = new System.Drawing.Size(173, 21);
  1531. this.ScaleName.TabIndex = 129;
  1532. //
  1533. // shipnoTxt
  1534. //
  1535. this.shipnoTxt.Dock = System.Windows.Forms.DockStyle.Fill;
  1536. this.shipnoTxt.Font = new System.Drawing.Font("宋体", 9.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  1537. this.shipnoTxt.Location = new System.Drawing.Point(131, 18);
  1538. this.shipnoTxt.Margin = new System.Windows.Forms.Padding(0, 10, 0, 0);
  1539. this.shipnoTxt.Name = "shipnoTxt";
  1540. this.shipnoTxt.Size = new System.Drawing.Size(167, 22);
  1541. this.shipnoTxt.TabIndex = 22;
  1542. //
  1543. // label11
  1544. //
  1545. this.label11.AutoSize = true;
  1546. this.label11.Dock = System.Windows.Forms.DockStyle.Fill;
  1547. this.label11.Font = new System.Drawing.Font("宋体", 10.5F, System.Drawing.FontStyle.Bold);
  1548. this.label11.Location = new System.Drawing.Point(53, 95);
  1549. this.label11.Name = "label11";
  1550. this.label11.Size = new System.Drawing.Size(75, 31);
  1551. this.label11.TabIndex = 11;
  1552. this.label11.Text = "结净重量";
  1553. this.label11.TextAlign = System.Drawing.ContentAlignment.MiddleCenter;
  1554. //
  1555. // label28
  1556. //
  1557. this.label28.AutoSize = true;
  1558. this.label28.Dock = System.Windows.Forms.DockStyle.Fill;
  1559. this.label28.Font = new System.Drawing.Font("宋体", 10.5F, System.Drawing.FontStyle.Bold);
  1560. this.label28.Location = new System.Drawing.Point(53, 8);
  1561. this.label28.Name = "label28";
  1562. this.label28.Size = new System.Drawing.Size(75, 29);
  1563. this.label28.TabIndex = 1;
  1564. this.label28.Text = "船号";
  1565. this.label28.TextAlign = System.Drawing.ContentAlignment.MiddleCenter;
  1566. //
  1567. // label10
  1568. //
  1569. this.label10.AutoSize = true;
  1570. this.label10.Dock = System.Windows.Forms.DockStyle.Fill;
  1571. this.label10.Font = new System.Drawing.Font("宋体", 10.5F, System.Drawing.FontStyle.Bold);
  1572. this.label10.Location = new System.Drawing.Point(53, 66);
  1573. this.label10.Name = "label10";
  1574. this.label10.Size = new System.Drawing.Size(75, 29);
  1575. this.label10.TabIndex = 10;
  1576. this.label10.Text = "结束重量";
  1577. this.label10.TextAlign = System.Drawing.ContentAlignment.MiddleCenter;
  1578. //
  1579. // label7
  1580. //
  1581. this.label7.AutoSize = true;
  1582. this.label7.Dock = System.Windows.Forms.DockStyle.Fill;
  1583. this.label7.Font = new System.Drawing.Font("宋体", 10.5F, System.Drawing.FontStyle.Bold);
  1584. this.label7.Location = new System.Drawing.Point(301, 40);
  1585. this.label7.Margin = new System.Windows.Forms.Padding(3);
  1586. this.label7.Name = "label7";
  1587. this.label7.Size = new System.Drawing.Size(84, 23);
  1588. this.label7.TabIndex = 26;
  1589. this.label7.Text = "计量员";
  1590. this.label7.TextAlign = System.Drawing.ContentAlignment.MiddleCenter;
  1591. //
  1592. // label8
  1593. //
  1594. this.label8.AutoSize = true;
  1595. this.label8.Dock = System.Windows.Forms.DockStyle.Fill;
  1596. this.label8.Font = new System.Drawing.Font("宋体", 10.5F, System.Drawing.FontStyle.Bold);
  1597. this.label8.Location = new System.Drawing.Point(301, 69);
  1598. this.label8.Margin = new System.Windows.Forms.Padding(3);
  1599. this.label8.Name = "label8";
  1600. this.label8.Size = new System.Drawing.Size(84, 23);
  1601. this.label8.TabIndex = 27;
  1602. this.label8.Text = "A/B秤台";
  1603. this.label8.TextAlign = System.Drawing.ContentAlignment.MiddleCenter;
  1604. //
  1605. // label9
  1606. //
  1607. this.label9.AutoSize = true;
  1608. this.label9.Dock = System.Windows.Forms.DockStyle.Fill;
  1609. this.label9.Font = new System.Drawing.Font("宋体", 10.5F, System.Drawing.FontStyle.Bold);
  1610. this.label9.Location = new System.Drawing.Point(301, 98);
  1611. this.label9.Margin = new System.Windows.Forms.Padding(3);
  1612. this.label9.Name = "label9";
  1613. this.label9.Size = new System.Drawing.Size(84, 25);
  1614. this.label9.TabIndex = 28;
  1615. this.label9.Text = "报港量";
  1616. this.label9.TextAlign = System.Drawing.ContentAlignment.MiddleCenter;
  1617. //
  1618. // label12
  1619. //
  1620. this.label12.AutoSize = true;
  1621. this.label12.Dock = System.Windows.Forms.DockStyle.Fill;
  1622. this.label12.Font = new System.Drawing.Font("宋体", 10.5F, System.Drawing.FontStyle.Bold);
  1623. this.label12.Location = new System.Drawing.Point(301, 11);
  1624. this.label12.Margin = new System.Windows.Forms.Padding(3);
  1625. this.label12.Name = "label12";
  1626. this.label12.Size = new System.Drawing.Size(84, 23);
  1627. this.label12.TabIndex = 29;
  1628. this.label12.Text = "计量点";
  1629. this.label12.TextAlign = System.Drawing.ContentAlignment.MiddleCenter;
  1630. //
  1631. // label13
  1632. //
  1633. this.label13.AutoSize = true;
  1634. this.label13.Dock = System.Windows.Forms.DockStyle.Fill;
  1635. this.label13.Font = new System.Drawing.Font("宋体", 10.5F, System.Drawing.FontStyle.Bold);
  1636. this.label13.Location = new System.Drawing.Point(866, 11);
  1637. this.label13.Margin = new System.Windows.Forms.Padding(3);
  1638. this.label13.Name = "label13";
  1639. this.label13.Size = new System.Drawing.Size(98, 23);
  1640. this.label13.TabIndex = 30;
  1641. this.label13.Text = "物料名称";
  1642. this.label13.TextAlign = System.Drawing.ContentAlignment.MiddleCenter;
  1643. //
  1644. // label14
  1645. //
  1646. this.label14.AutoSize = true;
  1647. this.label14.Dock = System.Windows.Forms.DockStyle.Fill;
  1648. this.label14.Font = new System.Drawing.Font("宋体", 10.5F, System.Drawing.FontStyle.Bold);
  1649. this.label14.Location = new System.Drawing.Point(866, 40);
  1650. this.label14.Margin = new System.Windows.Forms.Padding(3);
  1651. this.label14.Name = "label14";
  1652. this.label14.Size = new System.Drawing.Size(98, 23);
  1653. this.label14.TabIndex = 31;
  1654. this.label14.Text = "发货单位";
  1655. this.label14.TextAlign = System.Drawing.ContentAlignment.MiddleCenter;
  1656. //
  1657. // label15
  1658. //
  1659. this.label15.AutoSize = true;
  1660. this.label15.Dock = System.Windows.Forms.DockStyle.Fill;
  1661. this.label15.Font = new System.Drawing.Font("宋体", 10.5F, System.Drawing.FontStyle.Bold);
  1662. this.label15.Location = new System.Drawing.Point(866, 69);
  1663. this.label15.Margin = new System.Windows.Forms.Padding(3);
  1664. this.label15.Name = "label15";
  1665. this.label15.Size = new System.Drawing.Size(98, 23);
  1666. this.label15.TabIndex = 32;
  1667. this.label15.Text = "收货单位";
  1668. this.label15.TextAlign = System.Drawing.ContentAlignment.MiddleCenter;
  1669. //
  1670. // moteTxt
  1671. //
  1672. this.moteTxt.Dock = System.Windows.Forms.DockStyle.Fill;
  1673. this.moteTxt.Font = new System.Drawing.Font("宋体", 9.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  1674. this.moteTxt.Location = new System.Drawing.Point(648, 105);
  1675. this.moteTxt.Margin = new System.Windows.Forms.Padding(0, 10, 0, 0);
  1676. this.moteTxt.Name = "moteTxt";
  1677. this.moteTxt.Size = new System.Drawing.Size(215, 22);
  1678. this.moteTxt.TabIndex = 41;
  1679. //
  1680. // endTime
  1681. //
  1682. this.endTime.Cursor = System.Windows.Forms.Cursors.Default;
  1683. this.endTime.CustomFormat = "yyyy-MM-dd HH:mm:ss";
  1684. this.endTime.Dock = System.Windows.Forms.DockStyle.Fill;
  1685. this.endTime.Font = new System.Drawing.Font("宋体", 12F);
  1686. this.endTime.Format = System.Windows.Forms.DateTimePickerFormat.Custom;
  1687. this.endTime.Location = new System.Drawing.Point(648, 47);
  1688. this.endTime.Margin = new System.Windows.Forms.Padding(0, 10, 0, 0);
  1689. this.endTime.MaxDate = new System.DateTime(3000, 12, 31, 0, 0, 0, 0);
  1690. this.endTime.MinDate = new System.DateTime(1900, 1, 1, 0, 0, 0, 0);
  1691. this.endTime.Name = "endTime";
  1692. this.endTime.Size = new System.Drawing.Size(215, 26);
  1693. this.endTime.TabIndex = 125;
  1694. //
  1695. // cmMatname_1
  1696. //
  1697. this.cmMatname_1.Dock = System.Windows.Forms.DockStyle.Fill;
  1698. this.cmMatname_1.Font = new System.Drawing.Font("宋体", 9.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  1699. this.cmMatname_1.FormattingEnabled = true;
  1700. this.cmMatname_1.Location = new System.Drawing.Point(967, 18);
  1701. this.cmMatname_1.Margin = new System.Windows.Forms.Padding(0, 10, 0, 0);
  1702. this.cmMatname_1.Name = "cmMatname_1";
  1703. this.cmMatname_1.Size = new System.Drawing.Size(189, 21);
  1704. this.cmMatname_1.TabIndex = 128;
  1705. //
  1706. // label19
  1707. //
  1708. this.label19.AutoSize = true;
  1709. this.label19.Dock = System.Windows.Forms.DockStyle.Fill;
  1710. this.label19.Font = new System.Drawing.Font("宋体", 10.5F, System.Drawing.FontStyle.Bold);
  1711. this.label19.Location = new System.Drawing.Point(564, 11);
  1712. this.label19.Margin = new System.Windows.Forms.Padding(3);
  1713. this.label19.Name = "label19";
  1714. this.label19.Size = new System.Drawing.Size(81, 23);
  1715. this.label19.TabIndex = 140;
  1716. this.label19.Text = "开始时间";
  1717. this.label19.TextAlign = System.Drawing.ContentAlignment.MiddleCenter;
  1718. //
  1719. // label20
  1720. //
  1721. this.label20.AutoSize = true;
  1722. this.label20.Dock = System.Windows.Forms.DockStyle.Fill;
  1723. this.label20.Font = new System.Drawing.Font("宋体", 10.5F, System.Drawing.FontStyle.Bold);
  1724. this.label20.Location = new System.Drawing.Point(564, 40);
  1725. this.label20.Margin = new System.Windows.Forms.Padding(3);
  1726. this.label20.Name = "label20";
  1727. this.label20.Size = new System.Drawing.Size(81, 23);
  1728. this.label20.TabIndex = 141;
  1729. this.label20.Text = "结束时间";
  1730. this.label20.TextAlign = System.Drawing.ContentAlignment.MiddleCenter;
  1731. //
  1732. // label21
  1733. //
  1734. this.label21.AutoSize = true;
  1735. this.label21.Dock = System.Windows.Forms.DockStyle.Fill;
  1736. this.label21.Font = new System.Drawing.Font("宋体", 10.5F, System.Drawing.FontStyle.Bold);
  1737. this.label21.Location = new System.Drawing.Point(564, 69);
  1738. this.label21.Margin = new System.Windows.Forms.Padding(3);
  1739. this.label21.Name = "label21";
  1740. this.label21.Size = new System.Drawing.Size(81, 23);
  1741. this.label21.TabIndex = 142;
  1742. this.label21.Text = "实绩编码";
  1743. this.label21.TextAlign = System.Drawing.ContentAlignment.MiddleCenter;
  1744. //
  1745. // label22
  1746. //
  1747. this.label22.AutoSize = true;
  1748. this.label22.Dock = System.Windows.Forms.DockStyle.Fill;
  1749. this.label22.Font = new System.Drawing.Font("宋体", 10.5F, System.Drawing.FontStyle.Bold);
  1750. this.label22.Location = new System.Drawing.Point(564, 98);
  1751. this.label22.Margin = new System.Windows.Forms.Padding(3);
  1752. this.label22.Name = "label22";
  1753. this.label22.Size = new System.Drawing.Size(81, 25);
  1754. this.label22.TabIndex = 143;
  1755. this.label22.Text = "备注";
  1756. this.label22.TextAlign = System.Drawing.ContentAlignment.MiddleCenter;
  1757. //
  1758. // startWeightTxt
  1759. //
  1760. this.startWeightTxt.Dock = System.Windows.Forms.DockStyle.Fill;
  1761. this.startWeightTxt.Enabled = false;
  1762. this.startWeightTxt.Font = new System.Drawing.Font("宋体", 9.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  1763. this.startWeightTxt.Location = new System.Drawing.Point(131, 47);
  1764. this.startWeightTxt.Margin = new System.Windows.Forms.Padding(0, 10, 0, 0);
  1765. this.startWeightTxt.Name = "startWeightTxt";
  1766. this.startWeightTxt.Size = new System.Drawing.Size(167, 22);
  1767. this.startWeightTxt.TabIndex = 134;
  1768. this.startWeightTxt.KeyPress += new System.Windows.Forms.KeyPressEventHandler(this.startWeightTxt_KeyPress);
  1769. //
  1770. // label27
  1771. //
  1772. this.label27.AutoSize = true;
  1773. this.label27.Dock = System.Windows.Forms.DockStyle.Fill;
  1774. this.label27.Font = new System.Drawing.Font("宋体", 10.5F, System.Drawing.FontStyle.Bold);
  1775. this.label27.Location = new System.Drawing.Point(53, 37);
  1776. this.label27.Name = "label27";
  1777. this.label27.Size = new System.Drawing.Size(75, 29);
  1778. this.label27.TabIndex = 8;
  1779. this.label27.Text = "开始重量";
  1780. this.label27.TextAlign = System.Drawing.ContentAlignment.MiddleCenter;
  1781. //
  1782. // ultraGroupBoxCondition
  1783. //
  1784. this.ultraGroupBoxCondition.Controls.Add(this.checkBox1);
  1785. this.ultraGroupBoxCondition.Controls.Add(this.Rbtn_B);
  1786. this.ultraGroupBoxCondition.Controls.Add(this.Rbtn_A);
  1787. this.ultraGroupBoxCondition.Controls.Add(this.Rbtn_AB);
  1788. this.ultraGroupBoxCondition.Controls.Add(this.cbDateFlag);
  1789. this.ultraGroupBoxCondition.Controls.Add(this.cmbState);
  1790. this.ultraGroupBoxCondition.Controls.Add(this.label16);
  1791. this.ultraGroupBoxCondition.Controls.Add(this.moteTxt_1);
  1792. this.ultraGroupBoxCondition.Controls.Add(this.label18);
  1793. this.ultraGroupBoxCondition.Controls.Add(this.ckShipNo);
  1794. this.ultraGroupBoxCondition.Controls.Add(this.ShipnoTxt_1);
  1795. this.ultraGroupBoxCondition.Controls.Add(this.cbshouh);
  1796. this.ultraGroupBoxCondition.Controls.Add(this.label17);
  1797. this.ultraGroupBoxCondition.Controls.Add(this.checkDate);
  1798. this.ultraGroupBoxCondition.Controls.Add(this.cbfahuo);
  1799. this.ultraGroupBoxCondition.Controls.Add(this.cmMatName);
  1800. this.ultraGroupBoxCondition.Controls.Add(this.label6);
  1801. this.ultraGroupBoxCondition.Controls.Add(this.label5);
  1802. this.ultraGroupBoxCondition.Controls.Add(this.label2);
  1803. this.ultraGroupBoxCondition.Controls.Add(this.label3);
  1804. this.ultraGroupBoxCondition.Controls.Add(this.dtStartTime);
  1805. this.ultraGroupBoxCondition.Controls.Add(this.label4);
  1806. this.ultraGroupBoxCondition.Controls.Add(this.dtEndTime);
  1807. this.ultraGroupBoxCondition.Controls.Add(this.label1);
  1808. this.ultraGroupBoxCondition.Dock = System.Windows.Forms.DockStyle.Top;
  1809. this.ultraGroupBoxCondition.Location = new System.Drawing.Point(0, 0);
  1810. this.ultraGroupBoxCondition.Name = "ultraGroupBoxCondition";
  1811. this.ultraGroupBoxCondition.Size = new System.Drawing.Size(1698, 91);
  1812. this.ultraGroupBoxCondition.TabIndex = 0;
  1813. this.ultraGroupBoxCondition.Text = "查询条件";
  1814. this.ultraGroupBoxCondition.ViewStyle = Infragistics.Win.Misc.GroupBoxViewStyle.Office2007;
  1815. //
  1816. // checkBox1
  1817. //
  1818. this.checkBox1.AutoSize = true;
  1819. this.checkBox1.Font = new System.Drawing.Font("宋体", 12F);
  1820. this.checkBox1.Location = new System.Drawing.Point(1145, 58);
  1821. this.checkBox1.Name = "checkBox1";
  1822. this.checkBox1.Size = new System.Drawing.Size(91, 20);
  1823. this.checkBox1.TabIndex = 145;
  1824. this.checkBox1.Text = "批量选择";
  1825. this.checkBox1.UseVisualStyleBackColor = true;
  1826. this.checkBox1.CheckedChanged += new System.EventHandler(this.checkBox1_CheckedChanged);
  1827. //
  1828. // Rbtn_B
  1829. //
  1830. this.Rbtn_B.AutoSize = true;
  1831. this.Rbtn_B.Font = new System.Drawing.Font("宋体", 10F);
  1832. this.Rbtn_B.Location = new System.Drawing.Point(1018, 30);
  1833. this.Rbtn_B.Name = "Rbtn_B";
  1834. this.Rbtn_B.Size = new System.Drawing.Size(46, 18);
  1835. this.Rbtn_B.TabIndex = 144;
  1836. this.Rbtn_B.Text = "B秤";
  1837. this.Rbtn_B.UseVisualStyleBackColor = true;
  1838. this.Rbtn_B.CheckedChanged += new System.EventHandler(this.radioButton3_CheckedChanged);
  1839. //
  1840. // Rbtn_A
  1841. //
  1842. this.Rbtn_A.AutoSize = true;
  1843. this.Rbtn_A.Font = new System.Drawing.Font("宋体", 10F);
  1844. this.Rbtn_A.Location = new System.Drawing.Point(948, 30);
  1845. this.Rbtn_A.Name = "Rbtn_A";
  1846. this.Rbtn_A.Size = new System.Drawing.Size(46, 18);
  1847. this.Rbtn_A.TabIndex = 143;
  1848. this.Rbtn_A.Text = "A秤";
  1849. this.Rbtn_A.UseVisualStyleBackColor = true;
  1850. this.Rbtn_A.CheckedChanged += new System.EventHandler(this.Rbtn_A_CheckedChanged);
  1851. //
  1852. // Rbtn_AB
  1853. //
  1854. this.Rbtn_AB.AutoSize = true;
  1855. this.Rbtn_AB.Checked = true;
  1856. this.Rbtn_AB.Font = new System.Drawing.Font("宋体", 10F);
  1857. this.Rbtn_AB.Location = new System.Drawing.Point(878, 30);
  1858. this.Rbtn_AB.Name = "Rbtn_AB";
  1859. this.Rbtn_AB.Size = new System.Drawing.Size(53, 18);
  1860. this.Rbtn_AB.TabIndex = 142;
  1861. this.Rbtn_AB.TabStop = true;
  1862. this.Rbtn_AB.Text = "AB秤";
  1863. this.Rbtn_AB.UseVisualStyleBackColor = true;
  1864. this.Rbtn_AB.CheckedChanged += new System.EventHandler(this.Rbtn_AB_CheckedChanged);
  1865. //
  1866. // cbDateFlag
  1867. //
  1868. this.cbDateFlag.Font = new System.Drawing.Font("宋体", 12F);
  1869. this.cbDateFlag.Location = new System.Drawing.Point(98, 23);
  1870. this.cbDateFlag.Name = "cbDateFlag";
  1871. this.cbDateFlag.Size = new System.Drawing.Size(92, 25);
  1872. this.cbDateFlag.TabIndex = 141;
  1873. //
  1874. // cmbState
  1875. //
  1876. this.cmbState.Font = new System.Drawing.Font("宋体", 12F);
  1877. this.cmbState.Location = new System.Drawing.Point(1163, 25);
  1878. this.cmbState.Name = "cmbState";
  1879. this.cmbState.Size = new System.Drawing.Size(92, 25);
  1880. this.cmbState.TabIndex = 140;
  1881. //
  1882. // label16
  1883. //
  1884. this.label16.AutoSize = true;
  1885. this.label16.BackColor = System.Drawing.Color.Transparent;
  1886. this.label16.Font = new System.Drawing.Font("宋体", 10F);
  1887. this.label16.Location = new System.Drawing.Point(1122, 31);
  1888. this.label16.Name = "label16";
  1889. this.label16.Size = new System.Drawing.Size(35, 14);
  1890. this.label16.TabIndex = 139;
  1891. this.label16.Text = "状态";
  1892. //
  1893. // moteTxt_1
  1894. //
  1895. this.moteTxt_1.Font = new System.Drawing.Font("宋体", 12F);
  1896. this.moteTxt_1.Location = new System.Drawing.Point(877, 56);
  1897. this.moteTxt_1.Margin = new System.Windows.Forms.Padding(0, 5, 0, 0);
  1898. this.moteTxt_1.Name = "moteTxt_1";
  1899. this.moteTxt_1.Size = new System.Drawing.Size(235, 26);
  1900. this.moteTxt_1.TabIndex = 138;
  1901. //
  1902. // label18
  1903. //
  1904. this.label18.AutoSize = true;
  1905. this.label18.BackColor = System.Drawing.Color.Transparent;
  1906. this.label18.Font = new System.Drawing.Font("宋体", 10F);
  1907. this.label18.Location = new System.Drawing.Point(837, 63);
  1908. this.label18.Name = "label18";
  1909. this.label18.Size = new System.Drawing.Size(35, 14);
  1910. this.label18.TabIndex = 137;
  1911. this.label18.Text = "备注";
  1912. //
  1913. // ckShipNo
  1914. //
  1915. this.ckShipNo.AutoSize = true;
  1916. this.ckShipNo.Location = new System.Drawing.Point(71, 66);
  1917. this.ckShipNo.Name = "ckShipNo";
  1918. this.ckShipNo.Size = new System.Drawing.Size(15, 14);
  1919. this.ckShipNo.TabIndex = 136;
  1920. this.ckShipNo.UseVisualStyleBackColor = true;
  1921. this.ckShipNo.CheckedChanged += new System.EventHandler(this.ckShipNo_CheckedChanged);
  1922. //
  1923. // ShipnoTxt_1
  1924. //
  1925. this.ShipnoTxt_1.Enabled = false;
  1926. this.ShipnoTxt_1.Font = new System.Drawing.Font("宋体", 12F);
  1927. this.ShipnoTxt_1.Location = new System.Drawing.Point(98, 60);
  1928. this.ShipnoTxt_1.Margin = new System.Windows.Forms.Padding(0, 5, 0, 0);
  1929. this.ShipnoTxt_1.Name = "ShipnoTxt_1";
  1930. this.ShipnoTxt_1.Size = new System.Drawing.Size(205, 26);
  1931. this.ShipnoTxt_1.TabIndex = 134;
  1932. //
  1933. // cbshouh
  1934. //
  1935. this.cbshouh.Font = new System.Drawing.Font("宋体", 12F);
  1936. this.cbshouh.FormattingEnabled = true;
  1937. this.cbshouh.Location = new System.Drawing.Point(656, 59);
  1938. this.cbshouh.Name = "cbshouh";
  1939. this.cbshouh.Size = new System.Drawing.Size(170, 24);
  1940. this.cbshouh.TabIndex = 133;
  1941. //
  1942. // label17
  1943. //
  1944. this.label17.AutoSize = true;
  1945. this.label17.BackColor = System.Drawing.Color.Transparent;
  1946. this.label17.Font = new System.Drawing.Font("宋体", 10F);
  1947. this.label17.Location = new System.Drawing.Point(587, 64);
  1948. this.label17.Name = "label17";
  1949. this.label17.Size = new System.Drawing.Size(63, 14);
  1950. this.label17.TabIndex = 132;
  1951. this.label17.Text = "收货单位";
  1952. //
  1953. // checkDate
  1954. //
  1955. this.checkDate.AutoSize = true;
  1956. this.checkDate.Checked = true;
  1957. this.checkDate.CheckState = System.Windows.Forms.CheckState.Checked;
  1958. this.checkDate.Location = new System.Drawing.Point(71, 28);
  1959. this.checkDate.Name = "checkDate";
  1960. this.checkDate.Size = new System.Drawing.Size(15, 14);
  1961. this.checkDate.TabIndex = 131;
  1962. this.checkDate.UseVisualStyleBackColor = true;
  1963. this.checkDate.CheckedChanged += new System.EventHandler(this.checkDate_CheckedChanged);
  1964. //
  1965. // cbfahuo
  1966. //
  1967. this.cbfahuo.Font = new System.Drawing.Font("宋体", 12F);
  1968. this.cbfahuo.FormattingEnabled = true;
  1969. this.cbfahuo.Location = new System.Drawing.Point(656, 25);
  1970. this.cbfahuo.Name = "cbfahuo";
  1971. this.cbfahuo.Size = new System.Drawing.Size(170, 24);
  1972. this.cbfahuo.TabIndex = 129;
  1973. //
  1974. // cmMatName
  1975. //
  1976. this.cmMatName.Font = new System.Drawing.Font("宋体", 12F);
  1977. this.cmMatName.FormattingEnabled = true;
  1978. this.cmMatName.Location = new System.Drawing.Point(399, 58);
  1979. this.cmMatName.Name = "cmMatName";
  1980. this.cmMatName.Size = new System.Drawing.Size(182, 24);
  1981. this.cmMatName.TabIndex = 128;
  1982. //
  1983. // label6
  1984. //
  1985. this.label6.AutoSize = true;
  1986. this.label6.BackColor = System.Drawing.Color.Transparent;
  1987. this.label6.Font = new System.Drawing.Font("宋体", 10F);
  1988. this.label6.Location = new System.Drawing.Point(836, 32);
  1989. this.label6.Name = "label6";
  1990. this.label6.Size = new System.Drawing.Size(35, 14);
  1991. this.label6.TabIndex = 123;
  1992. this.label6.Text = "秤台";
  1993. //
  1994. // label5
  1995. //
  1996. this.label5.AutoSize = true;
  1997. this.label5.BackColor = System.Drawing.Color.Transparent;
  1998. this.label5.Font = new System.Drawing.Font("宋体", 10F);
  1999. this.label5.Location = new System.Drawing.Point(29, 64);
  2000. this.label5.Name = "label5";
  2001. this.label5.Size = new System.Drawing.Size(35, 14);
  2002. this.label5.TabIndex = 121;
  2003. this.label5.Text = "船号";
  2004. //
  2005. // label2
  2006. //
  2007. this.label2.AutoSize = true;
  2008. this.label2.BackColor = System.Drawing.Color.Transparent;
  2009. this.label2.Font = new System.Drawing.Font("宋体", 10F);
  2010. this.label2.Location = new System.Drawing.Point(587, 30);
  2011. this.label2.Name = "label2";
  2012. this.label2.Size = new System.Drawing.Size(63, 14);
  2013. this.label2.TabIndex = 119;
  2014. this.label2.Text = "发货单位";
  2015. //
  2016. // label3
  2017. //
  2018. this.label3.AutoSize = true;
  2019. this.label3.BackColor = System.Drawing.Color.Transparent;
  2020. this.label3.Font = new System.Drawing.Font("宋体", 10F);
  2021. this.label3.Location = new System.Drawing.Point(330, 64);
  2022. this.label3.Name = "label3";
  2023. this.label3.Size = new System.Drawing.Size(63, 14);
  2024. this.label3.TabIndex = 117;
  2025. this.label3.Text = "物料名称";
  2026. //
  2027. // dtStartTime
  2028. //
  2029. this.dtStartTime.Cursor = System.Windows.Forms.Cursors.Default;
  2030. this.dtStartTime.CustomFormat = "yyyy-MM-dd HH:mm:ss";
  2031. this.dtStartTime.Font = new System.Drawing.Font("宋体", 12F);
  2032. this.dtStartTime.Format = System.Windows.Forms.DateTimePickerFormat.Custom;
  2033. this.dtStartTime.Location = new System.Drawing.Point(196, 23);
  2034. this.dtStartTime.Margin = new System.Windows.Forms.Padding(0, 5, 0, 0);
  2035. this.dtStartTime.MaxDate = new System.DateTime(3000, 12, 31, 0, 0, 0, 0);
  2036. this.dtStartTime.MinDate = new System.DateTime(1900, 1, 1, 0, 0, 0, 0);
  2037. this.dtStartTime.Name = "dtStartTime";
  2038. this.dtStartTime.Size = new System.Drawing.Size(181, 26);
  2039. this.dtStartTime.TabIndex = 112;
  2040. //
  2041. // label4
  2042. //
  2043. this.label4.AutoSize = true;
  2044. this.label4.BackColor = System.Drawing.Color.Transparent;
  2045. this.label4.Location = new System.Drawing.Point(380, 30);
  2046. this.label4.Name = "label4";
  2047. this.label4.Size = new System.Drawing.Size(17, 12);
  2048. this.label4.TabIndex = 111;
  2049. this.label4.Text = "至";
  2050. //
  2051. // dtEndTime
  2052. //
  2053. this.dtEndTime.Cursor = System.Windows.Forms.Cursors.Default;
  2054. this.dtEndTime.CustomFormat = "yyyy-MM-dd HH:mm:ss";
  2055. this.dtEndTime.Font = new System.Drawing.Font("宋体", 12F);
  2056. this.dtEndTime.Format = System.Windows.Forms.DateTimePickerFormat.Custom;
  2057. this.dtEndTime.Location = new System.Drawing.Point(400, 23);
  2058. this.dtEndTime.Margin = new System.Windows.Forms.Padding(0, 5, 0, 0);
  2059. this.dtEndTime.MaxDate = new System.DateTime(3000, 12, 31, 0, 0, 0, 0);
  2060. this.dtEndTime.MinDate = new System.DateTime(1900, 1, 1, 0, 0, 0, 0);
  2061. this.dtEndTime.Name = "dtEndTime";
  2062. this.dtEndTime.Size = new System.Drawing.Size(181, 26);
  2063. this.dtEndTime.TabIndex = 107;
  2064. //
  2065. // label1
  2066. //
  2067. this.label1.AutoSize = true;
  2068. this.label1.BackColor = System.Drawing.Color.Transparent;
  2069. this.label1.Font = new System.Drawing.Font("宋体", 10F);
  2070. this.label1.Location = new System.Drawing.Point(29, 26);
  2071. this.label1.Name = "label1";
  2072. this.label1.Size = new System.Drawing.Size(35, 14);
  2073. this.label1.TabIndex = 108;
  2074. this.label1.Text = "时间";
  2075. //
  2076. // panel1
  2077. //
  2078. this.panel1.Controls.Add(this.panel1_Fill_Panel);
  2079. this.panel1.Controls.Add(this._panel1_Toolbars_Dock_Area_Left);
  2080. this.panel1.Controls.Add(this._panel1_Toolbars_Dock_Area_Right);
  2081. this.panel1.Controls.Add(this._panel1_Toolbars_Dock_Area_Top);
  2082. this.panel1.Controls.Add(this._panel1_Toolbars_Dock_Area_Bottom);
  2083. this.panel1.Dock = System.Windows.Forms.DockStyle.Top;
  2084. this.panel1.Location = new System.Drawing.Point(3, 0);
  2085. this.panel1.Name = "panel1";
  2086. this.panel1.Size = new System.Drawing.Size(1698, 30);
  2087. this.panel1.TabIndex = 0;
  2088. //
  2089. // panel1_Fill_Panel
  2090. //
  2091. this.panel1_Fill_Panel.Cursor = System.Windows.Forms.Cursors.Default;
  2092. this.panel1_Fill_Panel.Dock = System.Windows.Forms.DockStyle.Fill;
  2093. this.panel1_Fill_Panel.Location = new System.Drawing.Point(0, 27);
  2094. this.panel1_Fill_Panel.Name = "panel1_Fill_Panel";
  2095. this.panel1_Fill_Panel.Size = new System.Drawing.Size(1698, 3);
  2096. this.panel1_Fill_Panel.TabIndex = 0;
  2097. //
  2098. // _panel1_Toolbars_Dock_Area_Left
  2099. //
  2100. this._panel1_Toolbars_Dock_Area_Left.AccessibleRole = System.Windows.Forms.AccessibleRole.Grouping;
  2101. this._panel1_Toolbars_Dock_Area_Left.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(158)))), ((int)(((byte)(190)))), ((int)(((byte)(245)))));
  2102. this._panel1_Toolbars_Dock_Area_Left.DockedPosition = Infragistics.Win.UltraWinToolbars.DockedPosition.Left;
  2103. this._panel1_Toolbars_Dock_Area_Left.ForeColor = System.Drawing.SystemColors.ControlText;
  2104. this._panel1_Toolbars_Dock_Area_Left.Location = new System.Drawing.Point(0, 27);
  2105. this._panel1_Toolbars_Dock_Area_Left.Name = "_panel1_Toolbars_Dock_Area_Left";
  2106. this._panel1_Toolbars_Dock_Area_Left.Size = new System.Drawing.Size(0, 3);
  2107. this._panel1_Toolbars_Dock_Area_Left.ToolbarsManager = this.ultraToolbarsManager1;
  2108. //
  2109. // ultraToolbarsManager1
  2110. //
  2111. this.ultraToolbarsManager1.DesignerFlags = 1;
  2112. this.ultraToolbarsManager1.DockWithinContainer = this.panel1;
  2113. this.ultraToolbarsManager1.Style = Infragistics.Win.UltraWinToolbars.ToolbarStyle.Office2003;
  2114. ultraToolbar1.DockedColumn = 0;
  2115. ultraToolbar1.DockedRow = 0;
  2116. ultraToolbar1.NonInheritedTools.AddRange(new Infragistics.Win.UltraWinToolbars.ToolBase[] {
  2117. buttonTool1,
  2118. buttonTool11,
  2119. buttonTool13,
  2120. buttonTool2,
  2121. buttonTool3,
  2122. buttonTool4});
  2123. ultraToolbar1.Text = "UltraToolbar1";
  2124. this.ultraToolbarsManager1.Toolbars.AddRange(new Infragistics.Win.UltraWinToolbars.UltraToolbar[] {
  2125. ultraToolbar1});
  2126. appearance27.Image = ((object)(resources.GetObject("appearance27.Image")));
  2127. buttonTool5.SharedPropsInternal.AppearancesSmall.Appearance = appearance27;
  2128. buttonTool5.SharedPropsInternal.Caption = "查询";
  2129. buttonTool5.SharedPropsInternal.DisplayStyle = Infragistics.Win.UltraWinToolbars.ToolDisplayStyle.ImageAndText;
  2130. appearance28.Image = ((object)(resources.GetObject("appearance28.Image")));
  2131. buttonTool6.SharedPropsInternal.AppearancesSmall.Appearance = appearance28;
  2132. buttonTool6.SharedPropsInternal.Caption = "导出";
  2133. buttonTool6.SharedPropsInternal.DisplayStyle = Infragistics.Win.UltraWinToolbars.ToolDisplayStyle.ImageAndText;
  2134. appearance30.Image = ((object)(resources.GetObject("appearance30.Image")));
  2135. buttonTool7.SharedPropsInternal.AppearancesSmall.Appearance = appearance30;
  2136. buttonTool7.SharedPropsInternal.Caption = "删除";
  2137. buttonTool7.SharedPropsInternal.DisplayStyle = Infragistics.Win.UltraWinToolbars.ToolDisplayStyle.ImageAndText;
  2138. appearance54.Image = ((object)(resources.GetObject("appearance54.Image")));
  2139. buttonTool8.SharedPropsInternal.AppearancesSmall.Appearance = appearance54;
  2140. buttonTool8.SharedPropsInternal.Caption = "还原";
  2141. buttonTool8.SharedPropsInternal.DisplayStyle = Infragistics.Win.UltraWinToolbars.ToolDisplayStyle.ImageAndText;
  2142. appearance55.Image = ((object)(resources.GetObject("appearance55.Image")));
  2143. buttonTool10.SharedPropsInternal.AppearancesSmall.Appearance = appearance55;
  2144. buttonTool10.SharedPropsInternal.Caption = "退出";
  2145. buttonTool10.SharedPropsInternal.DisplayStyle = Infragistics.Win.UltraWinToolbars.ToolDisplayStyle.ImageAndText;
  2146. appearance23.Image = ((object)(resources.GetObject("appearance23.Image")));
  2147. buttonTool12.SharedPropsInternal.AppearancesSmall.Appearance = appearance23;
  2148. buttonTool12.SharedPropsInternal.Caption = "新增";
  2149. buttonTool12.SharedPropsInternal.DisplayStyle = Infragistics.Win.UltraWinToolbars.ToolDisplayStyle.ImageAndText;
  2150. appearance24.Image = ((object)(resources.GetObject("appearance24.Image")));
  2151. buttonTool14.SharedPropsInternal.AppearancesSmall.Appearance = appearance24;
  2152. buttonTool14.SharedPropsInternal.Caption = "修改";
  2153. buttonTool14.SharedPropsInternal.DisplayStyle = Infragistics.Win.UltraWinToolbars.ToolDisplayStyle.ImageAndText;
  2154. appearance12.Image = ((object)(resources.GetObject("appearance12.Image")));
  2155. buttonTool16.SharedPropsInternal.AppearancesSmall.Appearance = appearance12;
  2156. buttonTool16.SharedPropsInternal.Caption = "审核";
  2157. buttonTool16.SharedPropsInternal.DisplayStyle = Infragistics.Win.UltraWinToolbars.ToolDisplayStyle.ImageAndText;
  2158. appearance13.Image = ((object)(resources.GetObject("appearance13.Image")));
  2159. buttonTool17.SharedPropsInternal.AppearancesSmall.Appearance = appearance13;
  2160. buttonTool17.SharedPropsInternal.Caption = "取消审核";
  2161. buttonTool17.SharedPropsInternal.DisplayStyle = Infragistics.Win.UltraWinToolbars.ToolDisplayStyle.ImageAndText;
  2162. this.ultraToolbarsManager1.Tools.AddRange(new Infragistics.Win.UltraWinToolbars.ToolBase[] {
  2163. buttonTool5,
  2164. buttonTool6,
  2165. buttonTool7,
  2166. buttonTool8,
  2167. buttonTool10,
  2168. buttonTool12,
  2169. buttonTool14,
  2170. buttonTool16,
  2171. buttonTool17});
  2172. this.ultraToolbarsManager1.ToolClick += new Infragistics.Win.UltraWinToolbars.ToolClickEventHandler(this.ultraToolbarsManager1_ToolClick);
  2173. //
  2174. // _panel1_Toolbars_Dock_Area_Right
  2175. //
  2176. this._panel1_Toolbars_Dock_Area_Right.AccessibleRole = System.Windows.Forms.AccessibleRole.Grouping;
  2177. this._panel1_Toolbars_Dock_Area_Right.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(158)))), ((int)(((byte)(190)))), ((int)(((byte)(245)))));
  2178. this._panel1_Toolbars_Dock_Area_Right.DockedPosition = Infragistics.Win.UltraWinToolbars.DockedPosition.Right;
  2179. this._panel1_Toolbars_Dock_Area_Right.ForeColor = System.Drawing.SystemColors.ControlText;
  2180. this._panel1_Toolbars_Dock_Area_Right.Location = new System.Drawing.Point(1698, 27);
  2181. this._panel1_Toolbars_Dock_Area_Right.Name = "_panel1_Toolbars_Dock_Area_Right";
  2182. this._panel1_Toolbars_Dock_Area_Right.Size = new System.Drawing.Size(0, 3);
  2183. this._panel1_Toolbars_Dock_Area_Right.ToolbarsManager = this.ultraToolbarsManager1;
  2184. //
  2185. // _panel1_Toolbars_Dock_Area_Top
  2186. //
  2187. this._panel1_Toolbars_Dock_Area_Top.AccessibleRole = System.Windows.Forms.AccessibleRole.Grouping;
  2188. this._panel1_Toolbars_Dock_Area_Top.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(158)))), ((int)(((byte)(190)))), ((int)(((byte)(245)))));
  2189. this._panel1_Toolbars_Dock_Area_Top.DockedPosition = Infragistics.Win.UltraWinToolbars.DockedPosition.Top;
  2190. this._panel1_Toolbars_Dock_Area_Top.ForeColor = System.Drawing.SystemColors.ControlText;
  2191. this._panel1_Toolbars_Dock_Area_Top.Location = new System.Drawing.Point(0, 0);
  2192. this._panel1_Toolbars_Dock_Area_Top.Name = "_panel1_Toolbars_Dock_Area_Top";
  2193. this._panel1_Toolbars_Dock_Area_Top.Size = new System.Drawing.Size(1698, 27);
  2194. this._panel1_Toolbars_Dock_Area_Top.ToolbarsManager = this.ultraToolbarsManager1;
  2195. //
  2196. // _panel1_Toolbars_Dock_Area_Bottom
  2197. //
  2198. this._panel1_Toolbars_Dock_Area_Bottom.AccessibleRole = System.Windows.Forms.AccessibleRole.Grouping;
  2199. this._panel1_Toolbars_Dock_Area_Bottom.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(158)))), ((int)(((byte)(190)))), ((int)(((byte)(245)))));
  2200. this._panel1_Toolbars_Dock_Area_Bottom.DockedPosition = Infragistics.Win.UltraWinToolbars.DockedPosition.Bottom;
  2201. this._panel1_Toolbars_Dock_Area_Bottom.ForeColor = System.Drawing.SystemColors.ControlText;
  2202. this._panel1_Toolbars_Dock_Area_Bottom.Location = new System.Drawing.Point(0, 30);
  2203. this._panel1_Toolbars_Dock_Area_Bottom.Name = "_panel1_Toolbars_Dock_Area_Bottom";
  2204. this._panel1_Toolbars_Dock_Area_Bottom.Size = new System.Drawing.Size(1698, 0);
  2205. this._panel1_Toolbars_Dock_Area_Bottom.ToolbarsManager = this.ultraToolbarsManager1;
  2206. //
  2207. // frmBeltScaleActualinfo_addendum
  2208. //
  2209. this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 12F);
  2210. this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
  2211. this.BackColor = System.Drawing.Color.White;
  2212. this.ClientSize = new System.Drawing.Size(1704, 706);
  2213. this.ControlBox = false;
  2214. this.Controls.Add(this.ultraGroupBox1);
  2215. this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.None;
  2216. this.Margin = new System.Windows.Forms.Padding(2);
  2217. this.MaximizeBox = false;
  2218. this.MinimizeBox = false;
  2219. this.Name = "frmBeltScaleActualinfo_addendum";
  2220. this.Text = "皮带结净数据补录";
  2221. this.Load += new System.EventHandler(this.frmBeltScaleActualinfo_Load);
  2222. ((System.ComponentModel.ISupportInitialize)(this.ultraGroupBox1)).EndInit();
  2223. this.ultraGroupBox1.ResumeLayout(false);
  2224. this.panel2.ResumeLayout(false);
  2225. this.splitContainer1.Panel1.ResumeLayout(false);
  2226. this.splitContainer1.Panel2.ResumeLayout(false);
  2227. ((System.ComponentModel.ISupportInitialize)(this.splitContainer1)).EndInit();
  2228. this.splitContainer1.ResumeLayout(false);
  2229. ((System.ComponentModel.ISupportInitialize)(this.ultraGroupBox4)).EndInit();
  2230. this.ultraGroupBox4.ResumeLayout(false);
  2231. this.panel2Query.ResumeLayout(false);
  2232. ((System.ComponentModel.ISupportInitialize)(this.beltActualGrid)).EndInit();
  2233. ((System.ComponentModel.ISupportInitialize)(this.dataSetActual)).EndInit();
  2234. ((System.ComponentModel.ISupportInitialize)(this.dataTable2)).EndInit();
  2235. ((System.ComponentModel.ISupportInitialize)(this.ultraGroupBoxEdit)).EndInit();
  2236. this.ultraGroupBoxEdit.ResumeLayout(false);
  2237. this.tableLayoutPanel5.ResumeLayout(false);
  2238. this.tableLayoutPanel5.PerformLayout();
  2239. ((System.ComponentModel.ISupportInitialize)(this.ultraGroupBoxCondition)).EndInit();
  2240. this.ultraGroupBoxCondition.ResumeLayout(false);
  2241. this.ultraGroupBoxCondition.PerformLayout();
  2242. ((System.ComponentModel.ISupportInitialize)(this.cbDateFlag)).EndInit();
  2243. ((System.ComponentModel.ISupportInitialize)(this.cmbState)).EndInit();
  2244. this.panel1.ResumeLayout(false);
  2245. ((System.ComponentModel.ISupportInitialize)(this.ultraToolbarsManager1)).EndInit();
  2246. this.ResumeLayout(false);
  2247. }
  2248. #endregion
  2249. private Infragistics.Win.Misc.UltraGroupBox ultraGroupBox1;
  2250. private System.Windows.Forms.Panel panel2;
  2251. private Infragistics.Win.Misc.UltraGroupBox ultraGroupBox4;
  2252. private System.Windows.Forms.Panel panel2Query;
  2253. private Infragistics.Win.Misc.UltraGroupBox ultraGroupBoxCondition;
  2254. private System.Windows.Forms.Label label2;
  2255. private System.Windows.Forms.Label label3;
  2256. private System.Windows.Forms.DateTimePicker dtStartTime;
  2257. private System.Windows.Forms.Label label4;
  2258. private System.Windows.Forms.DateTimePicker dtEndTime;
  2259. private System.Windows.Forms.Label label1;
  2260. private System.Windows.Forms.Panel panel1;
  2261. private System.Windows.Forms.Panel panel1_Fill_Panel;
  2262. private Infragistics.Win.UltraWinToolbars.UltraToolbarsManager ultraToolbarsManager1;
  2263. private Infragistics.Win.UltraWinToolbars.UltraToolbarsDockArea _panel1_Toolbars_Dock_Area_Left;
  2264. private Infragistics.Win.UltraWinToolbars.UltraToolbarsDockArea _panel1_Toolbars_Dock_Area_Right;
  2265. private Infragistics.Win.UltraWinToolbars.UltraToolbarsDockArea _panel1_Toolbars_Dock_Area_Top;
  2266. private Infragistics.Win.UltraWinToolbars.UltraToolbarsDockArea _panel1_Toolbars_Dock_Area_Bottom;
  2267. private Infragistics.Win.UltraWinGrid.ExcelExport.UltraGridExcelExporter ultraGridExcelExporter1;
  2268. private System.Windows.Forms.Label label6;
  2269. private Infragistics.Win.Misc.UltraGroupBox ultraGroupBoxEdit;
  2270. private System.Windows.Forms.SplitContainer splitContainer1;
  2271. private System.Windows.Forms.TableLayoutPanel tableLayoutPanel5;
  2272. private System.Windows.Forms.TextBox shipnoTxt;
  2273. private System.Windows.Forms.Label label27;
  2274. private System.Windows.Forms.Label label28;
  2275. private System.Windows.Forms.Label label10;
  2276. private System.Windows.Forms.Label label14;
  2277. private System.Windows.Forms.Label label7;
  2278. private System.Windows.Forms.Label label8;
  2279. private System.Windows.Forms.Label label12;
  2280. private System.Windows.Forms.Label label13;
  2281. private System.Windows.Forms.Label label15;
  2282. private System.Windows.Forms.DateTimePicker endTime;
  2283. private System.Windows.Forms.ComboBox cbPntName;
  2284. private System.Windows.Forms.ComboBox cbshouh_1;
  2285. private System.Windows.Forms.ComboBox cbfahuo_1;
  2286. private System.Windows.Forms.TextBox meterStaffTxt;
  2287. private System.Windows.Forms.ComboBox ScaleName;
  2288. private System.Windows.Forms.ComboBox cbfahuo;
  2289. private System.Windows.Forms.ComboBox cmMatName;
  2290. private System.Windows.Forms.ComboBox cmMatname_1;
  2291. private System.Windows.Forms.CheckBox checkDate;
  2292. private System.Windows.Forms.ComboBox cbshouh;
  2293. private System.Windows.Forms.Label label17;
  2294. private System.Windows.Forms.CheckBox ckShipNo;
  2295. private System.Windows.Forms.Label label5;
  2296. private System.Windows.Forms.TextBox moteTxt_1;
  2297. private System.Windows.Forms.Label label18;
  2298. private System.Windows.Forms.TextBox endWeight_Txt;
  2299. private System.Windows.Forms.TextBox startWeightTxt;
  2300. private System.Windows.Forms.DateTimePicker startTime;
  2301. private System.Windows.Forms.TextBox actualNoTxt;
  2302. private System.Windows.Forms.Label label19;
  2303. private System.Windows.Forms.Label label20;
  2304. private System.Windows.Forms.Label label21;
  2305. private Infragistics.Win.UltraWinEditors.UltraComboEditor cmbState;
  2306. private System.Windows.Forms.Label label16;
  2307. private Infragistics.Win.UltraWinEditors.UltraComboEditor cbDateFlag;
  2308. private System.Windows.Forms.TextBox ShipnoTxt_1;
  2309. private System.Windows.Forms.RadioButton Rbtn_B;
  2310. private System.Windows.Forms.RadioButton Rbtn_A;
  2311. private System.Windows.Forms.RadioButton Rbtn_AB;
  2312. private System.Windows.Forms.CheckBox checkBox1;
  2313. private Infragistics.Win.UltraWinGrid.UltraGrid beltActualGrid;
  2314. private System.Data.DataSet dataSetActual;
  2315. private System.Data.DataTable dataTable2;
  2316. private System.Data.DataColumn dataColumn47;
  2317. private System.Data.DataColumn dataColumn48;
  2318. private System.Data.DataColumn dataColumn49;
  2319. private System.Data.DataColumn dataColumn50;
  2320. private System.Data.DataColumn dataColumn51;
  2321. private System.Data.DataColumn dataColumn52;
  2322. private System.Data.DataColumn dataColumn53;
  2323. private System.Data.DataColumn dataColumn54;
  2324. private System.Data.DataColumn dataColumn55;
  2325. private System.Data.DataColumn dataColumn56;
  2326. private System.Data.DataColumn dataColumn57;
  2327. private System.Data.DataColumn dataColumn58;
  2328. private System.Data.DataColumn dataColumn59;
  2329. private System.Data.DataColumn dataColumn60;
  2330. private System.Data.DataColumn dataColumn61;
  2331. private System.Data.DataColumn dataColumn62;
  2332. private System.Data.DataColumn dataColumn63;
  2333. private System.Data.DataColumn dataColumn64;
  2334. private System.Data.DataColumn dataColumn65;
  2335. private System.Data.DataColumn dataColumn66;
  2336. private System.Data.DataColumn dataColumn67;
  2337. private System.Data.DataColumn dataColumn68;
  2338. private System.Data.DataColumn dataColumn69;
  2339. private System.Data.DataColumn dataColumn70;
  2340. private System.Data.DataColumn dataColumn71;
  2341. private System.Data.DataColumn dataColumn72;
  2342. private System.Data.DataColumn dataColumn73;
  2343. private System.Data.DataColumn dataColumn74;
  2344. private System.Data.DataColumn dataColumn75;
  2345. private System.Data.DataColumn dataColumn76;
  2346. private System.Data.DataColumn dataColumn77;
  2347. private System.Data.DataColumn dataColumn78;
  2348. private System.Data.DataColumn dataColumn79;
  2349. private System.Data.DataColumn dataColumn80;
  2350. private System.Data.DataColumn dataColumn81;
  2351. private System.Data.DataColumn dataColumn82;
  2352. private System.Data.DataColumn dataColumn83;
  2353. private System.Data.DataColumn dataColumn84;
  2354. private System.Data.DataColumn dataColumn85;
  2355. private System.Data.DataColumn dataColumn86;
  2356. private System.Data.DataColumn dataColumn87;
  2357. private System.Data.DataColumn dataColumn88;
  2358. private System.Data.DataColumn dataColumn89;
  2359. private System.Data.DataColumn dataColumn120;
  2360. private System.Data.DataColumn dataColumn121;
  2361. private System.Data.DataColumn dataColumn122;
  2362. private System.Data.DataColumn dataColumn123;
  2363. private System.Data.DataColumn dataColumn124;
  2364. private System.Data.DataColumn dataColumn125;
  2365. private System.Data.DataColumn dataColumn126;
  2366. private System.Data.DataColumn dataColumn127;
  2367. private System.Data.DataColumn dataColumn128;
  2368. private System.Data.DataColumn dataColumn129;
  2369. private System.Data.DataColumn dataColumn1;
  2370. private System.Data.DataColumn dataColumn2;
  2371. private System.Data.DataColumn dataColumn3;
  2372. private System.Data.DataColumn dataColumn4;
  2373. private System.Data.DataColumn dataColumn5;
  2374. private System.Data.DataColumn dataColumn6;
  2375. private System.Data.DataColumn dataColumn7;
  2376. private System.Data.DataColumn dataColumn8;
  2377. private System.Data.DataColumn dataColumn9;
  2378. private System.Data.DataColumn dataColumn10;
  2379. private System.Data.DataColumn dataColumn11;
  2380. private System.Data.DataColumn dataColumn12;
  2381. private System.Data.DataColumn dataColumn13;
  2382. private System.Data.DataColumn dataColumn14;
  2383. private System.Windows.Forms.TextBox predictionNo_Txt;
  2384. private System.Windows.Forms.Label label23;
  2385. private System.Windows.Forms.TextBox requiteWeightTxt;
  2386. private System.Windows.Forms.TextBox netWeightTxt;
  2387. private System.Windows.Forms.Label label11;
  2388. private System.Windows.Forms.Label label9;
  2389. private System.Windows.Forms.TextBox moteTxt;
  2390. private System.Windows.Forms.Label label22;
  2391. private System.Windows.Forms.TextBox newOrder_text;
  2392. private System.Windows.Forms.TextBox newHlh_text;
  2393. private System.Windows.Forms.TextBox newGg_text;
  2394. private System.Windows.Forms.TextBox newMatClass_text;
  2395. private System.Windows.Forms.Label label29;
  2396. private System.Windows.Forms.Label label26;
  2397. private System.Windows.Forms.Label label25;
  2398. private System.Windows.Forms.Label label24;
  2399. }
  2400. }