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.
310 lines
24 KiB
Plaintext
310 lines
24 KiB
Plaintext
<?xml version="1.0" encoding="utf-8"?>
|
|
<Report ScriptLanguage="CSharp" ReportInfo.Created="03/26/2013 08:39:47" ReportInfo.Modified="06/26/2014 08:30:34" 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("planMain");
|
|
rowdata.Init();
|
|
Cell2.Text = rowdata.Report.GetColumnValue("planMain.recipematerialname").ToString();
|
|
Cell7.Text = rowdata.Report.GetColumnValue("planMain.equipcode").ToString();
|
|
Cell17.Text = String.Format("{0:yyyy-MM-dd HH:mm:ss}",Convert.ToDateTime(rowdata.Report.GetColumnValue("planMain.realstarttime").ToString()));
|
|
Cell4.Text = rowdata.Report.GetColumnValue("planMain.itemname").ToString();
|
|
Cell9.Text = rowdata.Report.GetColumnValue("planMain.shiftclassname").ToString();
|
|
Cell19.Text = String.Format("{0:yyyy-MM-dd HH:mm:ss}",Convert.ToDateTime(rowdata.Report.GetColumnValue("planMain.realendtime").ToString()));
|
|
Cell26.Text = rowdata.Report.GetColumnValue("planMain.realnum").ToString();
|
|
Cell27.Text = rowdata.Report.GetColumnValue("planMain.PlanNum").ToString();
|
|
}
|
|
|
|
private void Table1_BeforePrint(object sender, EventArgs e)
|
|
{
|
|
DataSourceBase rowData = Report.GetDataSource("planAvgAndSumMain");
|
|
rowData.Init();
|
|
Cell46.Text = Convert.ToDouble(rowData.Report.GetColumnValue("planAvgAndSumMain.avgDoneAllRtime")).ToString();
|
|
Cell47.Text = Convert.ToDouble(rowData.Report.GetColumnValue("planAvgAndSumMain.avgDoneRtime")).ToString();
|
|
Cell48.Text = Convert.ToDouble(rowData.Report.GetColumnValue("planAvgAndSumMain.avgBwbTime")).ToString();
|
|
Cell63.Text = Convert.ToDouble(rowData.Report.GetColumnValue("planAvgAndSumMain.avgPolydistime")).ToString();
|
|
Cell61.Text = Convert.ToDouble(rowData.Report.GetColumnValue("planAvgAndSumMain.avgCBdistime")).ToString();
|
|
Cell59.Text = Convert.ToDouble(rowData.Report.GetColumnValue("planAvgAndSumMain.avgPjTemp")).ToString();
|
|
Cell57.Text = Convert.ToDouble(rowData.Report.GetColumnValue("planAvgAndSumMain.avgPjPower")).ToString();
|
|
Cell49.Text = Convert.ToDouble(rowData.Report.GetColumnValue("planAvgAndSumMain.avgLotEnergy")).ToString();
|
|
Cell65.Text = Convert.ToDouble(rowData.Report.GetColumnValue("planAvgAndSumMain.sumDoneAllRtime")).ToString();
|
|
Cell66.Text = Convert.ToDouble(rowData.Report.GetColumnValue("planAvgAndSumMain.sumDoneRtime")).ToString();
|
|
Cell67.Text = Convert.ToDouble(rowData.Report.GetColumnValue("planAvgAndSumMain.sumBwbTime")).ToString();
|
|
Cell68.Text = Convert.ToDouble(rowData.Report.GetColumnValue("planAvgAndSumMain.sumPolyDistime")).ToString();
|
|
Cell69.Text = Convert.ToDouble(rowData.Report.GetColumnValue("planAvgAndSumMain.sumCBDistime")).ToString();
|
|
Cell70.Text = Convert.ToDouble(rowData.Report.GetColumnValue("planAvgAndSumMain.sumPjTemp")).ToString();
|
|
Cell71.Text = Convert.ToDouble(rowData.Report.GetColumnValue("planAvgAndSumMain.sumPjPower")).ToString();
|
|
Cell72.Text = Convert.ToDouble(rowData.Report.GetColumnValue("planAvgAndSumMain.sumLotEnergy")).ToString();
|
|
}
|
|
|
|
private void Table2_ManualBuild(object sender, EventArgs e)
|
|
{
|
|
DataSourceBase rowData = Report.GetDataSource("MaterialDetailInfo");
|
|
rowData.Init();
|
|
int count = 0;
|
|
int temp = 53;
|
|
// now enumerate the data source and print the table body
|
|
while (rowData.HasMoreRows)
|
|
{
|
|
if(count < 22 )
|
|
{
|
|
if(count % 21 == 0)
|
|
{
|
|
Table2.PrintRow(0);
|
|
Table2.PrintColumns();
|
|
}
|
|
}
|
|
if(count > 45 )
|
|
{
|
|
if(count % temp == 0)
|
|
{
|
|
Table2.PrintRow(0);
|
|
Table2.PrintColumns();
|
|
temp = temp + 32;
|
|
}
|
|
}
|
|
Cell153.Text = rowData.Report.GetColumnValue("MaterialDetailInfo.StartDatetime").ToString().Substring(0,8);
|
|
Cell93.Text = rowData.Report.GetColumnValue("MaterialDetailInfo.serialid").ToString();
|
|
Cell94.Text = rowData.Report.GetColumnValue("MaterialDetailInfo.doneallrtime").ToString();
|
|
Cell95.Text = rowData.Report.GetColumnValue("MaterialDetailInfo.donertime").ToString();
|
|
Cell96.Text = Convert.ToDouble(rowData.Report.GetColumnValue("MaterialDetailInfo.bwbtime")).ToString();
|
|
Cell112.Text = Convert.ToDouble(rowData.Report.GetColumnValue("MaterialDetailInfo.PolyDisTime")).ToString();
|
|
Cell107.Text = Convert.ToDouble(rowData.Report.GetColumnValue("MaterialDetailInfo.CBDisTime")).ToString();
|
|
Cell102.Text = Convert.ToDouble(rowData.Report.GetColumnValue("MaterialDetailInfo.OilDisTime")).ToString();
|
|
Cell127.Text = Convert.ToDouble(rowData.Report.GetColumnValue("MaterialDetailInfo.PjTemp")).ToString();
|
|
Cell122.Text = Convert.ToDouble(rowData.Report.GetColumnValue("MaterialDetailInfo.pjpower")).ToString();
|
|
Cell117.Text = Convert.ToDouble(rowData.Report.GetColumnValue("MaterialDetailInfo.PjEner")).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++cLBre6Io682I2fNkw0Pf35c5EmOK6QTqYllWNn1c=">
|
|
<TableDataSource Name="dbo_PptWeigh" DataType="System.Int32" Enabled="true" TableName="dbo."PptWeigh"">
|
|
<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="105.08" Width="642.6" 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"/>
|
|
<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="排胶温度" HorzAlign="Center" VertAlign="Bottom" Font="宋体, 9pt, style=Bold"/>
|
|
<TableCell Name="Cell56" Border.Lines="All" Text="排胶功率" HorzAlign="Center" VertAlign="Bottom" Font="宋体, 9pt, style=Bold"/>
|
|
<TableCell Name="Cell34" 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"/>
|
|
</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"/>
|
|
</TableRow>
|
|
</TableObject>
|
|
<TextObject Name="Text1" Left="9.45" Top="170.1" Width="217.35" Height="37.8" Text="报表明细" HorzAlign="Center" VertAlign="Center" Font="宋体, 14pt, style=Bold"/>
|
|
<TableObject Name="Table2" Left="11.34" Top="207.9" Width="659.61" 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"/>
|
|
<TableRow Name="Row10" Height="66.15">
|
|
<TableCell Name="Cell73" Border.Lines="All" Text="车次 " HorzAlign="Center" VertAlign="Center" Font="宋体, 9pt, style=Bold"/>
|
|
<TableCell Name="Cell152" Border.Lines="All" Text="开始 时间" HorzAlign="Center" VertAlign="Center" Font="宋体, 9pt, style=Bold"/>
|
|
<TableCell Name="Cell74" Border.Lines="All" Text="配方 时间" HorzAlign="Center" VertAlign="Center" Font="宋体, 9pt, style=Bold"/>
|
|
<TableCell Name="Cell75" Border.Lines="All" Text="炼胶 时间" HorzAlign="Center" VertAlign="Center" Font="宋体, 9pt, style=Bold"/>
|
|
<TableCell Name="Cell76" Border.Lines="All" Text="间隔 时间" HorzAlign="Center" VertAlign="Center" Font="宋体, 9pt, style=Bold"/>
|
|
<TableCell Name="Cell108" Border.Lines="All" Text="加胶 时间" HorzAlign="Center" VertAlign="Center" Font="宋体, 9pt, style=Bold"/>
|
|
<TableCell Name="Cell103" Border.Lines="All" Text="加炭黑 时间" HorzAlign="Center" VertAlign="Center" Font="宋体, 9pt, style=Bold"/>
|
|
<TableCell Name="Cell98" Border.Lines="All" Text="加油 时间" HorzAlign="Center" VertAlign="Center" Font="宋体, 9pt, style=Bold"/>
|
|
<TableCell Name="Cell123" Border.Lines="All" Text="排胶 温度" HorzAlign="Center" VertAlign="Center" Font="宋体, 9pt, style=Bold"/>
|
|
<TableCell Name="Cell118" Border.Lines="All" Text="排胶 功率" HorzAlign="Center" VertAlign="Center" Font="宋体, 9pt, style=Bold"/>
|
|
<TableCell Name="Cell113" Border.Lines="All" Text="排胶 能量" 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"/>
|
|
</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"/>
|
|
</TableRow>
|
|
</TableObject>
|
|
<MatrixObject Name="Matrix1" Left="670.95" Top="207.9" 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>
|