frmBeltScaleActualinfo.Designer.cs 115 KB

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