You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

340 lines
28 KiB
Plaintext

<?xml version="1.0" encoding="utf-8"?>
<Report ScriptLanguage="CSharp" ReportInfo.Created="03/26/2013 08:39:47" ReportInfo.Modified="11/20/2014 15:44:35" ReportInfo.CreatorVersion="1.5.14.0">
<ScriptText> using System;
using System.Collections;
using System.Collections.Generic;
using System.ComponentModel;
using System.Windows.Forms;
using System.Drawing;
using System.Data;
using FastReport;
using FastReport.Data;
using FastReport.Dialog;
using FastReport.Barcode;
using FastReport.Table;
using FastReport.Utils;
using FastReport.Matrix;
namespace FastReport
{
public class ReportScript
{
private void tb_PptLot_BeforePrint(object sender, EventArgs e)
{
DataSourceBase rowdata = Report.GetDataSource(&quot;planMain&quot;);
rowdata.Init();
Cell2.Text = rowdata.Report.GetColumnValue(&quot;planMain.recipematerialname&quot;).ToString();
Cell7.Text = rowdata.Report.GetColumnValue(&quot;planMain.equipcode&quot;).ToString();
Cell17.Text = String.Format(&quot;{0:yyyy-MM-dd HH:mm:ss}&quot;,Convert.ToDateTime(rowdata.Report.GetColumnValue(&quot;planMain.realstarttime&quot;).ToString()));
Cell4.Text = rowdata.Report.GetColumnValue(&quot;planMain.itemname&quot;).ToString();
Cell9.Text = rowdata.Report.GetColumnValue(&quot;planMain.shiftclassname&quot;).ToString();
Cell19.Text = String.Format(&quot;{0:yyyy-MM-dd HH:mm:ss}&quot;,Convert.ToDateTime(rowdata.Report.GetColumnValue(&quot;planMain.realendtime&quot;).ToString()));
Cell26.Text = rowdata.Report.GetColumnValue(&quot;planMain.realnum&quot;).ToString();
Cell27.Text = rowdata.Report.GetColumnValue(&quot;planMain.PlanNum&quot;).ToString();
}
private void Table1_BeforePrint(object sender, EventArgs e)
{
DataSourceBase rowData = Report.GetDataSource(&quot;planAvgAndSumMain&quot;);
rowData.Init();
Cell46.Text = Convert.ToDouble(rowData.Report.GetColumnValue(&quot;planAvgAndSumMain.avgDoneAllRtime&quot;)).ToString(); //平均配方时间
Cell47.Text = Convert.ToDouble(rowData.Report.GetColumnValue(&quot;planAvgAndSumMain.avgDoneRtime&quot;)).ToString(); //平均炼胶时间
Cell48.Text = Convert.ToDouble(rowData.Report.GetColumnValue(&quot;planAvgAndSumMain.avgBwbTime&quot;)).ToString(); //平均间隔时间
Cell63.Text = Convert.ToDouble(rowData.Report.GetColumnValue(&quot;planAvgAndSumMain.avgPolydistime&quot;)).ToString(); //平均加胶时间
Cell61.Text = Convert.ToDouble(rowData.Report.GetColumnValue(&quot;planAvgAndSumMain.avgCBdistime&quot;)).ToString(); //平均加炭黑时间
Cell59.Text = Convert.ToDouble(rowData.Report.GetColumnValue(&quot;planAvgAndSumMain.avgOilDistime&quot;)).ToString(); //平均加油1时间
Cell57.Text = Convert.ToDouble(rowData.Report.GetColumnValue(&quot;planAvgAndSumMain.avgOil2Distime&quot;)).ToString(); //平均加油2时间
Cell49.Text = Convert.ToDouble(rowData.Report.GetColumnValue(&quot;planAvgAndSumMain.avgPowderDisTime&quot;)).ToString(); //平均加粉料时间
Cell164.Text = Convert.ToDouble(rowData.Report.GetColumnValue(&quot;planAvgAndSumMain.avgPjTemp&quot;)).ToString(); //平均排胶温度
Cell165.Text = Convert.ToDouble(rowData.Report.GetColumnValue(&quot;planAvgAndSumMain.avgPjPower&quot;)).ToString(); //平均排胶功率
Cell166.Text = Convert.ToDouble(rowData.Report.GetColumnValue(&quot;planAvgAndSumMain.avgLotEnergy&quot;)).ToString(); //平均排胶能量
Cell65.Text = Convert.ToDouble(rowData.Report.GetColumnValue(&quot;planAvgAndSumMain.sumDoneAllRtime&quot;)).ToString(); //配方时间和
Cell66.Text = Convert.ToDouble(rowData.Report.GetColumnValue(&quot;planAvgAndSumMain.sumDoneRtime&quot;)).ToString(); //炼胶时间和
Cell67.Text = Convert.ToDouble(rowData.Report.GetColumnValue(&quot;planAvgAndSumMain.sumBwbTime&quot;)).ToString(); //间隔时间和
Cell68.Text = Convert.ToDouble(rowData.Report.GetColumnValue(&quot;planAvgAndSumMain.sumPolyDistime&quot;)).ToString(); //加胶时间和
Cell69.Text = Convert.ToDouble(rowData.Report.GetColumnValue(&quot;planAvgAndSumMain.sumCBDistime&quot;)).ToString(); //加炭黑时间和
Cell70.Text = Convert.ToDouble(rowData.Report.GetColumnValue(&quot;planAvgAndSumMain.sumOilDistime&quot;)).ToString(); //加油1时间和
Cell71.Text = Convert.ToDouble(rowData.Report.GetColumnValue(&quot;planAvgAndSumMain.sumOil2Distime&quot;)).ToString(); //加油2时间和
Cell72.Text = Convert.ToDouble(rowData.Report.GetColumnValue(&quot;planAvgAndSumMain.sumPowderDisTime&quot;)).ToString(); //加粉料时间和
Cell167.Text = Convert.ToDouble(rowData.Report.GetColumnValue(&quot;planAvgAndSumMain.sumPjTemp&quot;)).ToString(); //排胶温度和
Cell168.Text = Convert.ToDouble(rowData.Report.GetColumnValue(&quot;planAvgAndSumMain.sumPjPower&quot;)).ToString(); //排胶功率和
Cell169.Text = Convert.ToDouble(rowData.Report.GetColumnValue(&quot;planAvgAndSumMain.sumLotEnergy&quot;)).ToString(); //排胶能量和
}
private void Table2_ManualBuild(object sender, EventArgs e)
{
DataSourceBase rowData = Report.GetDataSource(&quot;MaterialDetailInfo&quot;);
rowData.Init();
int count = 0;
int temp = 53;
// now enumerate the data source and print the table body
while (rowData.HasMoreRows)
{
if(count &lt; 22 )
{
if(count % 21 == 0)
{
Table2.PrintRow(0);
Table2.PrintColumns();
}
}
if(count &gt; 45 )
{
if(count % temp == 0)
{
Table2.PrintRow(0);
Table2.PrintColumns();
temp = temp + 32;
}
}
Cell153.Text = rowData.Report.GetColumnValue(&quot;MaterialDetailInfo.StartDatetime&quot;).ToString().Substring(0,8); //开始时间
Cell93.Text = rowData.Report.GetColumnValue(&quot;MaterialDetailInfo.serialid&quot;).ToString(); //
Cell94.Text = rowData.Report.GetColumnValue(&quot;MaterialDetailInfo.doneallrtime&quot;).ToString(); //配方时间
Cell95.Text = rowData.Report.GetColumnValue(&quot;MaterialDetailInfo.donertime&quot;).ToString(); //炼胶时间
Cell96.Text = Convert.ToDouble(rowData.Report.GetColumnValue(&quot;MaterialDetailInfo.bwbtime&quot;)).ToString(); //间隔时间
Cell112.Text = Convert.ToDouble(rowData.Report.GetColumnValue(&quot;MaterialDetailInfo.PolyDisTime&quot;)).ToString(); //加胶时间
Cell107.Text = Convert.ToDouble(rowData.Report.GetColumnValue(&quot;MaterialDetailInfo.CBDisTime&quot;)).ToString(); //加炭黑时间
Cell102.Text = Convert.ToDouble(rowData.Report.GetColumnValue(&quot;MaterialDetailInfo.OilDisTime&quot;)).ToString(); //加油1时间
Cell127.Text = Convert.ToDouble(rowData.Report.GetColumnValue(&quot;MaterialDetailInfo.Oil2DisTime&quot;)).ToString(); //加油2时间
Cell122.Text = Convert.ToDouble(rowData.Report.GetColumnValue(&quot;MaterialDetailInfo.PowderDistime&quot;)).ToString(); //加粉料时间
Cell117.Text = Convert.ToDouble(rowData.Report.GetColumnValue(&quot;MaterialDetailInfo.PjTemp&quot;)).ToString(); //排胶温度
Cell157.Text = Convert.ToDouble(rowData.Report.GetColumnValue(&quot;MaterialDetailInfo.pjpower&quot;)).ToString(); //排胶功率
Cell158.Text = Convert.ToDouble(rowData.Report.GetColumnValue(&quot;MaterialDetailInfo.PjEner&quot;)).ToString(); //排胶能量
Table2.PrintRow(1);
Table2.PrintColumns();
rowData.Next();
count ++;
}
// print the last table row - it is a footer
Table2.PrintRow(2);
Table2.PrintColumns();
}
}
}
</ScriptText>
<Dictionary>
<OleDbDataConnection Name="Connection" ConnectionString="rijcmlqVzFGsc+BVENiWJhr/EarGo8KURK6uFEv1yamZF9CDRlIJXb4vuQYHnmt/S7E2gWSsL9Wk8PA/98GeGirZkHcH1f+fTPnWXDVS6vfCVYxsSQboxqtiG/jCRsfLTNdZ3kLy++cLBre6Io682I2fNkw0Dm/b+w61JEo0DObRFhpTIY=">
<TableDataSource Name="dbo_PptWeigh" DataType="System.Int32" Enabled="true" TableName="dbo.&quot;PptWeigh&quot;">
<Column Name="Barcode" DataType="System.String"/>
<Column Name="Weight_id" DataType="System.Int32"/>
<Column Name="Mater_code" DataType="System.String"/>
<Column Name="Mater_name" DataType="System.String"/>
<Column Name="Equip_code" DataType="System.String"/>
<Column Name="Set_weight" DataType="System.Decimal"/>
<Column Name="Real_weight" DataType="System.Decimal"/>
<Column Name="Error_allow" DataType="System.Decimal"/>
<Column Name="Error_out" DataType="System.Decimal"/>
<Column Name="Warning_sgn" DataType="System.String"/>
<Column Name="Mater_qua" DataType="System.String"/>
<Column Name="Mater_barcode" DataType="System.String"/>
<Column Name="Weigh_time" DataType="System.String"/>
<Column Name="weigh_type" DataType="System.String"/>
<Column Name="Weigh_state" DataType="System.String"/>
<Column Name="Unit_name" DataType="System.String"/>
<Column Name="Plan_id" DataType="System.String"/>
<Column Name="Plan_date" DataType="System.String"/>
<Column Name="serial_id" DataType="System.Int32"/>
<Column Name="Scale_Code" DataType="System.Int32"/>
<Column Name="IsUpFlag" DataType="System.Int32"/>
</TableDataSource>
</OleDbDataConnection>
<Parameter Name="PlanID" DataType="System.String"/>
</Dictionary>
<ReportPage Name="Page1" Landscape="true" PaperWidth="507" PaperHeight="210" FirstPageSource="15" OtherPagesSource="15" Guides="708.75,708.75,708.75,708.75,1030.05">
<ReportTitleBand Name="ReportTitle1" Width="1840.86" Height="529.2" CanGrow="true" BeforeLayoutEvent="ReportTitle1_BeforeLayout">
<TextObject Name="txtTitle" Left="9.45" Top="9.45" Width="812.7" Height="37.8" Text="批报表『[PlanID]』" HorzAlign="Center" VertAlign="Center" Font="宋体, 20pt, style=Bold"/>
<TableObject Name="tb_PptLot" Left="9.45" Top="47.25" Width="642.55" Height="56.7" Border.Lines="All" BeforePrintEvent="tb_PptLot_BeforePrint">
<TableColumn Name="Column1" Width="75.04"/>
<TableColumn Name="Column2" Width="212.54"/>
<TableColumn Name="Column3" Width="75.04"/>
<TableColumn Name="Column4" Width="126.08"/>
<TableColumn Name="Column5" Width="75.04"/>
<TableColumn Name="Column6" Width="78.81"/>
<TableRow Name="Row1">
<TableCell Name="Cell1" Border.Lines="All" Text="配方名称" HorzAlign="Center" VertAlign="Bottom" Font="宋体, 9pt, style=Bold"/>
<TableCell Name="Cell2" Border.Lines="All" HorzAlign="Center" VertAlign="Bottom" Font="宋体, 9pt"/>
<TableCell Name="Cell3" Border.Lines="All" Text="配方类型" HorzAlign="Center" VertAlign="Bottom" Font="宋体, 9pt, style=Bold"/>
<TableCell Name="Cell4" Border.Lines="All" HorzAlign="Center" VertAlign="Bottom" Font="宋体, 9pt"/>
<TableCell Name="Cell5" Border.Lines="All" Text="完成" HorzAlign="Center" VertAlign="Bottom" Font="宋体, 9pt, style=Bold"/>
<TableCell Name="Cell26" Border.Lines="All" HorzAlign="Center" VertAlign="Bottom" Font="宋体, 9pt"/>
</TableRow>
<TableRow Name="Row2">
<TableCell Name="Cell6" Border.Lines="All" Text="生产机台" HorzAlign="Center" VertAlign="Bottom" Font="宋体, 9pt, style=Bold"/>
<TableCell Name="Cell7" Border.Lines="All" HorzAlign="Center" VertAlign="Bottom" Font="宋体, 9pt"/>
<TableCell Name="Cell8" Border.Lines="All" Text="班组" HorzAlign="Center" VertAlign="Bottom" Font="宋体, 9pt, style=Bold"/>
<TableCell Name="Cell9" Border.Lines="All" HorzAlign="Center" VertAlign="Bottom" Font="宋体, 9pt"/>
<TableCell Name="Cell10" Border.Lines="All" Text="设定" HorzAlign="Center" VertAlign="Bottom" Font="宋体, 9pt, style=Bold"/>
<TableCell Name="Cell27" Border.Lines="All" HorzAlign="Center" VertAlign="Bottom" Font="宋体, 9pt"/>
</TableRow>
<TableRow Name="Row4">
<TableCell Name="Cell16" Border.Lines="All" Text="开始时间" HorzAlign="Center" VertAlign="Bottom" Font="宋体, 9pt, style=Bold"/>
<TableCell Name="Cell17" Border.Lines="All" Text="+" HorzAlign="Center" VertAlign="Bottom" Font="宋体, 9pt"/>
<TableCell Name="Cell18" Border.Lines="All" Text="结束时间" HorzAlign="Center" VertAlign="Bottom" Font="宋体, 9pt, style=Bold"/>
<TableCell Name="Cell19" Border.Lines="All" HorzAlign="Center" VertAlign="Bottom" Font="宋体, 9pt" ColSpan="3"/>
<TableCell Name="Cell20" Border.Lines="All" HorzAlign="Center" VertAlign="Center" Font="宋体, 9pt"/>
<TableCell Name="Cell29" Border.Lines="All" HorzAlign="Center" VertAlign="Center" Font="宋体, 9pt"/>
</TableRow>
</TableObject>
<TableObject Name="Table1" Left="9.45" Top="114.53" Width="841.05" Height="56.7" Border.Lines="All" BeforePrintEvent="Table1_BeforePrint">
<TableColumn Name="Column7" Width="71.4"/>
<TableColumn Name="Column8" Width="71.4"/>
<TableColumn Name="Column9" Width="71.4"/>
<TableColumn Name="Column10" Width="71.4"/>
<TableColumn Name="Column15" Width="71.4"/>
<TableColumn Name="Column14" Width="71.4"/>
<TableColumn Name="Column13" Width="71.4"/>
<TableColumn Name="Column12" Width="71.4"/>
<TableColumn Name="Column11" Width="71.4"/>
<TableColumn Name="Column33"/>
<TableColumn Name="Column34"/>
<TableColumn Name="Column35"/>
<TableRow Name="Row5">
<TableCell Name="Cell30" Border.Lines="All" HorzAlign="Center" VertAlign="Center" Font="宋体, 9pt, style=Bold"/>
<TableCell Name="Cell31" Border.Lines="All" Text="配方时间" HorzAlign="Center" VertAlign="Bottom" Font="宋体, 9pt, style=Bold"/>
<TableCell Name="Cell32" Border.Lines="All" Text="炼胶时间" HorzAlign="Center" VertAlign="Bottom" Font="宋体, 9pt, style=Bold"/>
<TableCell Name="Cell33" Border.Lines="All" Text="间隔时间" HorzAlign="Center" VertAlign="Bottom" Font="宋体, 9pt, style=Bold"/>
<TableCell Name="Cell62" Border.Lines="All" Text="加胶时间" HorzAlign="Center" VertAlign="Bottom" Font="宋体, 9pt, style=Bold"/>
<TableCell Name="Cell60" Border.Lines="All" Text="加炭黑时间" HorzAlign="Center" VertAlign="Bottom" Font="宋体, 9pt, style=Bold"/>
<TableCell Name="Cell58" Border.Lines="All" Text="加油1时间" HorzAlign="Center" VertAlign="Bottom" Font="宋体, 9pt, style=Bold"/>
<TableCell Name="Cell56" Border.Lines="All" Text="加油2时间" HorzAlign="Center" VertAlign="Bottom" Font="宋体, 9pt, style=Bold"/>
<TableCell Name="Cell34" Border.Lines="All" Text="加粉料时间" HorzAlign="Center" VertAlign="Bottom" Font="宋体, 9pt, style=Bold"/>
<TableCell Name="Cell161" Border.Lines="All" Text="排胶温度" HorzAlign="Center" VertAlign="Bottom" Font="宋体, 9pt, style=Bold"/>
<TableCell Name="Cell162" Border.Lines="All" Text="排胶功率" HorzAlign="Center" VertAlign="Bottom" Font="宋体, 9pt, style=Bold"/>
<TableCell Name="Cell163" Border.Lines="All" Text="排胶能量" HorzAlign="Center" VertAlign="Bottom" Font="宋体, 9pt, style=Bold"/>
</TableRow>
<TableRow Name="Row8">
<TableCell Name="Cell55" Text="平均" HorzAlign="Center" VertAlign="Bottom" Font="宋体, 9pt, style=Bold"/>
<TableCell Name="Cell46" Border.Lines="All" HorzAlign="Center" VertAlign="Bottom" Font="宋体, 9pt"/>
<TableCell Name="Cell47" Border.Lines="All" HorzAlign="Center" VertAlign="Bottom" Font="宋体, 9pt"/>
<TableCell Name="Cell48" Border.Lines="All" HorzAlign="Center" VertAlign="Bottom" Font="宋体, 9pt"/>
<TableCell Name="Cell63" Border.Lines="All" HorzAlign="Center" VertAlign="Bottom" Font="宋体, 9pt"/>
<TableCell Name="Cell61" Border.Lines="All" HorzAlign="Center" VertAlign="Bottom" Font="宋体, 9pt"/>
<TableCell Name="Cell59" Border.Lines="All" HorzAlign="Center" VertAlign="Bottom" Font="宋体, 9pt"/>
<TableCell Name="Cell57" Border.Lines="All" Format="Number" Format.UseLocale="false" Format.DecimalDigits="2" Format.DecimalSeparator="." Format.GroupSeparator="," Format.NegativePattern="1" HorzAlign="Center" VertAlign="Bottom" Font="宋体, 9pt"/>
<TableCell Name="Cell49" Border.Lines="All" Format="Number" Format.UseLocale="false" Format.DecimalDigits="2" Format.DecimalSeparator="." Format.GroupSeparator="," Format.NegativePattern="1" HorzAlign="Center" VertAlign="Bottom" Font="宋体, 9pt"/>
<TableCell Name="Cell164" Border.Lines="All" HorzAlign="Center" VertAlign="Bottom" Font="宋体, 9pt"/>
<TableCell Name="Cell165" Border.Lines="All" HorzAlign="Center" VertAlign="Bottom" Font="宋体, 9pt"/>
<TableCell Name="Cell166" Border.Lines="All" HorzAlign="Center" VertAlign="Bottom" Font="宋体, 9pt"/>
</TableRow>
<TableRow Name="Row9">
<TableCell Name="Cell64" Border.Lines="All" Text="合计" HorzAlign="Center" VertAlign="Center" Font="宋体, 9pt, style=Bold"/>
<TableCell Name="Cell65" Border.Lines="All" HorzAlign="Center" VertAlign="Bottom" Font="宋体, 9pt"/>
<TableCell Name="Cell66" Border.Lines="All" HorzAlign="Center" VertAlign="Bottom" Font="宋体, 9pt"/>
<TableCell Name="Cell67" Border.Lines="All" HorzAlign="Center" VertAlign="Bottom" Font="宋体, 9pt"/>
<TableCell Name="Cell68" Border.Lines="All" HorzAlign="Center" VertAlign="Bottom" Font="宋体, 9pt"/>
<TableCell Name="Cell69" Border.Lines="All" HorzAlign="Center" VertAlign="Bottom" Font="宋体, 9pt"/>
<TableCell Name="Cell70" Border.Lines="All" HorzAlign="Center" VertAlign="Bottom" Font="宋体, 9pt"/>
<TableCell Name="Cell71" Border.Lines="All" HorzAlign="Center" VertAlign="Bottom" Font="宋体, 9pt"/>
<TableCell Name="Cell72" Border.Lines="All" HorzAlign="Center" VertAlign="Bottom" Font="宋体, 9pt"/>
<TableCell Name="Cell167" Border.Lines="All" HorzAlign="Center" VertAlign="Bottom" Font="宋体, 9pt"/>
<TableCell Name="Cell168" Border.Lines="All" HorzAlign="Center" VertAlign="Bottom" Font="宋体, 9pt"/>
<TableCell Name="Cell169" Border.Lines="All" HorzAlign="Center" VertAlign="Bottom" Font="宋体, 9pt"/>
</TableRow>
</TableObject>
<TextObject Name="Text1" Left="9.45" Top="179.55" Width="217.35" Height="37.8" Text="报表明细" HorzAlign="Center" VertAlign="Center" Font="宋体, 14pt, style=Bold"/>
<TableObject Name="Table2" Left="11.34" Top="217.35" Width="791.91" Height="103.95" ManualBuildEvent="Table2_ManualBuild">
<TableColumn Name="Column16" Width="37.8"/>
<TableColumn Name="Column30"/>
<TableColumn Name="Column17" Width="60.48"/>
<TableColumn Name="Column18" Width="60.48"/>
<TableColumn Name="Column19" Width="60.48"/>
<TableColumn Name="Column23" Width="60.48"/>
<TableColumn Name="Column22" Width="71.82"/>
<TableColumn Name="Column21" Width="60.48"/>
<TableColumn Name="Column26" Width="60.48"/>
<TableColumn Name="Column25" Width="60.48"/>
<TableColumn Name="Column24" Width="60.48"/>
<TableColumn Name="Column31"/>
<TableColumn Name="Column32"/>
<TableRow Name="Row10" Height="66.15">
<TableCell Name="Cell73" Border.Lines="All" Text="车次&#13;&#10;" HorzAlign="Center" VertAlign="Center" Font="宋体, 9pt, style=Bold"/>
<TableCell Name="Cell152" Border.Lines="All" Text="开始&#13;&#10;时间" HorzAlign="Center" VertAlign="Center" Font="宋体, 9pt, style=Bold"/>
<TableCell Name="Cell74" Border.Lines="All" Text="配方&#13;&#10;时间" HorzAlign="Center" VertAlign="Center" Font="宋体, 9pt, style=Bold"/>
<TableCell Name="Cell75" Border.Lines="All" Text="炼胶&#13;&#10;时间" HorzAlign="Center" VertAlign="Center" Font="宋体, 9pt, style=Bold"/>
<TableCell Name="Cell76" Border.Lines="All" Text="间隔&#13;&#10;时间" HorzAlign="Center" VertAlign="Center" Font="宋体, 9pt, style=Bold"/>
<TableCell Name="Cell108" Border.Lines="All" Text="加胶&#13;&#10;时间" HorzAlign="Center" VertAlign="Center" Font="宋体, 9pt, style=Bold"/>
<TableCell Name="Cell103" Border.Lines="All" Text="加炭黑&#13;&#10;时间" HorzAlign="Center" VertAlign="Center" Font="宋体, 9pt, style=Bold"/>
<TableCell Name="Cell98" Border.Lines="All" Text="加油1&#13;&#10;时间" HorzAlign="Center" VertAlign="Center" Font="宋体, 9pt, style=Bold"/>
<TableCell Name="Cell123" Border.Lines="All" Text="加油2&#13;&#10;时间" HorzAlign="Center" VertAlign="Center" Font="宋体, 9pt, style=Bold"/>
<TableCell Name="Cell118" Border.Lines="All" Text="加粉料&#13;&#10;时间" HorzAlign="Center" VertAlign="Center" Font="宋体, 9pt, style=Bold"/>
<TableCell Name="Cell113" Border.Lines="All" Text="排胶&#13;&#10;温度" HorzAlign="Center" VertAlign="Center" Font="宋体, 9pt, style=Bold"/>
<TableCell Name="Cell155" Border.Lines="All" Text="排胶&#13;&#10;功率" HorzAlign="Center" VertAlign="Center" Font="宋体, 9pt, style=Bold"/>
<TableCell Name="Cell156" Border.Lines="All" Text="排胶&#13;&#10;能量" HorzAlign="Center" VertAlign="Center" Font="宋体, 9pt, style=Bold"/>
</TableRow>
<TableRow Name="Row14">
<TableCell Name="Cell93" Border.Lines="All" HorzAlign="Center" VertAlign="Center" Font="宋体, 9pt"/>
<TableCell Name="Cell153" Border.Lines="Bottom" HorzAlign="Center" VertAlign="Center" Font="宋体, 9pt"/>
<TableCell Name="Cell94" Border.Lines="All" HorzAlign="Center" VertAlign="Center" Font="宋体, 9pt"/>
<TableCell Name="Cell95" Border.Lines="All" HorzAlign="Center" VertAlign="Center" Font="宋体, 9pt"/>
<TableCell Name="Cell96" Border.Lines="All" HorzAlign="Center" VertAlign="Center" Font="宋体, 9pt"/>
<TableCell Name="Cell112" Border.Lines="All" HorzAlign="Center" VertAlign="Center" Font="宋体, 9pt"/>
<TableCell Name="Cell107" Border.Lines="All" HorzAlign="Center" VertAlign="Center" Font="宋体, 9pt"/>
<TableCell Name="Cell102" Border.Lines="All" HorzAlign="Center" VertAlign="Center" Font="宋体, 9pt"/>
<TableCell Name="Cell127" Border.Lines="All" HorzAlign="Center" VertAlign="Center" Font="宋体, 9pt"/>
<TableCell Name="Cell122" Border.Lines="All" HorzAlign="Center" VertAlign="Center" Font="宋体, 9pt"/>
<TableCell Name="Cell117" Border.Lines="All" HorzAlign="Center" VertAlign="Center" Font="宋体, 9pt"/>
<TableCell Name="Cell157" Border.Lines="All" HorzAlign="Center" VertAlign="Center" Font="宋体, 9pt"/>
<TableCell Name="Cell158" Border.Lines="All" HorzAlign="Center" VertAlign="Center" Font="宋体, 9pt"/>
</TableRow>
<TableRow Name="Row19">
<TableCell Name="Cell142" Border.Lines="All" Text="合计" HorzAlign="Center" Font="宋体, 9pt" ColSpan="11"/>
<TableCell Name="Cell154"/>
<TableCell Name="Cell143" Border.Lines="All" Font="宋体, 9pt"/>
<TableCell Name="Cell144" Border.Lines="All" Font="宋体, 9pt"/>
<TableCell Name="Cell145" Border.Lines="All" Font="宋体, 9pt"/>
<TableCell Name="Cell146" Border.Lines="All" Font="宋体, 9pt"/>
<TableCell Name="Cell147" Border.Lines="All" Font="宋体, 9pt"/>
<TableCell Name="Cell148" Border.Lines="All" Font="宋体, 9pt"/>
<TableCell Name="Cell149" Border.Lines="All" Font="宋体, 9pt"/>
<TableCell Name="Cell150" Border.Lines="All" Font="宋体, 9pt"/>
<TableCell Name="Cell151" Border.Lines="All" Font="宋体, 9pt"/>
<TableCell Name="Cell159" Border.Lines="All" HorzAlign="Center" VertAlign="Center" Font="宋体, 9pt"/>
<TableCell Name="Cell160" Border.Lines="All" HorzAlign="Center" VertAlign="Center" Font="宋体, 9pt"/>
</TableRow>
</TableObject>
<MatrixObject Name="Matrix1" Left="803.07" Top="217.35" Width="226.98" Height="103.95" Border.Lines="All" FixedRows="2" FixedColumns="1" DataSource="dbo_PptWeigh">
<MatrixColumns>
<Header Expression="[dbo_PptWeigh.weigh_type]"/>
<Header Expression="[dbo_PptWeigh.Mater_name]" Totals="false"/>
</MatrixColumns>
<MatrixRows>
<Header Expression="[dbo_PptWeigh.serial_id]"/>
</MatrixRows>
<MatrixCells>
<Cell Expression="[dbo_PptWeigh.Real_weight]"/>
</MatrixCells>
<TableColumn Name="Column27" Visible="false" MinWidth="60.48" Width="77.06" AutoSize="true"/>
<TableColumn Name="Column28" MinWidth="60.48" Width="89.44" AutoSize="true"/>
<TableColumn Name="Column29" MinWidth="60.48" Width="60.48" AutoSize="true"/>
<TableRow Name="Row15" MinHeight="30.24" Height="30.24" AutoSize="true">
<TableCell Name="Cell128" HorzAlign="Center" VertAlign="Center" Font="宋体, 9pt" RowSpan="2"/>
<TableCell Name="Cell129" Border.Lines="All" Text="[weigh_type]" HorzAlign="Center" VertAlign="Center" Font="宋体, 9pt, style=Bold"/>
<TableCell Name="Cell136" Border.Lines="All" Text="总重" HorzAlign="Center" VertAlign="Center" Font="宋体, 9pt, style=Bold" RowSpan="2"/>
</TableRow>
<TableRow Name="Row16" MinHeight="35.91" Height="35.91" AutoSize="true">
<TableCell Name="Cell130"/>
<TableCell Name="Cell131" Border.Lines="All" Text="[Mater_name]" HorzAlign="Center" VertAlign="Center" Font="宋体, 9pt"/>
<TableCell Name="Cell137"/>
</TableRow>
<TableRow Name="Row17" MinHeight="18.9" AutoSize="true">
<TableCell Name="Cell134" Border.Lines="All" Text="[serial_id]" HorzAlign="Center" VertAlign="Center" Font="宋体, 9pt"/>
<TableCell Name="Cell135" Border.Lines="All" Text="[Real_weight]" Format="Number" Format.UseLocale="false" Format.DecimalDigits="2" Format.DecimalSeparator="." Format.GroupSeparator="," Format.NegativePattern="1" HorzAlign="Center" VertAlign="Center" Font="宋体, 9pt"/>
<TableCell Name="Cell138" Border.Lines="All" HorzAlign="Center" VertAlign="Center" Font="宋体, 9pt"/>
</TableRow>
<TableRow Name="Row18" MinHeight="18.9" AutoSize="true">
<TableCell Name="Cell139" Border.Lines="All" Text="Total" HorzAlign="Center" VertAlign="Center" Font="宋体, 9pt"/>
<TableCell Name="Cell140" Border.Lines="All" HorzAlign="Center" VertAlign="Center" Font="宋体, 9pt"/>
<TableCell Name="Cell141" HorzAlign="Center" VertAlign="Center" Font="宋体, 9pt"/>
</TableRow>
</MatrixObject>
<ChildBand Name="Child1" Top="533.2" Width="1840.86" Height="37.8" CanGrow="true"/>
</ReportTitleBand>
<PageFooterBand Name="PageFooter1" Top="575" Width="1840.86" Height="37.8">
<TextObject Name="Text6" Left="907.2" Top="9.45" Width="94.5" Height="18.9" Text="第 [Page] 页" VertAlign="Center" Font="宋体, 9pt"/>
</PageFooterBand>
</ReportPage>
</Report>