2022-09-05 16:36:31 +08:00
|
|
|
<?xml version="1.0" encoding="utf-8"?>
|
2022-11-09 16:57:01 +08:00
|
|
|
<Report ScriptLanguage="CSharp" ReportInfo.Created="12/29/2021 10:56:08" ReportInfo.Modified="11/08/2022 18:38:05" ReportInfo.CreatorVersion="2017.1.16.0">
|
2022-09-05 16:36:31 +08:00
|
|
|
<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;
|
|
|
|
|
|
|
|
|
|
namespace FastReport
|
|
|
|
|
{
|
|
|
|
|
public class ReportScript
|
|
|
|
|
{
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
private void Table3_ManualBuild(object sender, EventArgs e)
|
|
|
|
|
{
|
|
|
|
|
// get the data source by its name
|
|
|
|
|
DataSourceBase rowData = Report.GetDataSource("Data");
|
|
|
|
|
// init the data source
|
|
|
|
|
rowData.Init();
|
|
|
|
|
|
|
|
|
|
// print the first table row - it is a header
|
|
|
|
|
Tabel_Data.PrintRow(0);
|
|
|
|
|
// each PrintRow call must be followed by either PrintColumn or PrintColumns call
|
|
|
|
|
// to print cells on the row
|
|
|
|
|
Tabel_Data.PrintColumns();
|
|
|
|
|
|
|
|
|
|
// now enumerate the data source and print the table body
|
|
|
|
|
while (rowData.HasMoreRows)
|
|
|
|
|
{
|
|
|
|
|
// print the table body
|
|
|
|
|
Tabel_Data.PrintRow(0);
|
|
|
|
|
Tabel_Data.PrintColumns();
|
|
|
|
|
|
|
|
|
|
// go next data source row
|
|
|
|
|
rowData.Next();
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
// print the last table row - it is a footer
|
|
|
|
|
//Tabel_Data.PrintRow(2);
|
|
|
|
|
//Table3.PrintColumns();
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
private void Table4_ManualBuild(object sender, EventArgs e)
|
|
|
|
|
{
|
|
|
|
|
DataSourceBase rowData = Report.GetDataSource("Table1");
|
|
|
|
|
// init the data source
|
|
|
|
|
rowData.Init();
|
|
|
|
|
|
|
|
|
|
// print the first table row - it is a header
|
|
|
|
|
Table4.PrintRow(0);
|
|
|
|
|
// each PrintRow call must be followed by either PrintColumn or PrintColumns call
|
|
|
|
|
// to print cells on the row
|
|
|
|
|
Table4.PrintColumns();
|
|
|
|
|
|
|
|
|
|
// now enumerate the data source and print the table body
|
|
|
|
|
|
|
|
|
|
// print the table body
|
|
|
|
|
Table4.PrintRow(1);
|
|
|
|
|
Table4.PrintColumns();
|
|
|
|
|
Table4.PrintRow(2);
|
|
|
|
|
Table4.PrintColumns();
|
|
|
|
|
Table4.PrintRow(3);
|
|
|
|
|
Table4.PrintColumns();
|
|
|
|
|
Table4.PrintRow(4);
|
|
|
|
|
Table4.PrintColumns();
|
|
|
|
|
Table4.PrintRow(5);
|
|
|
|
|
Table4.PrintColumns();
|
|
|
|
|
Table4.PrintRow(6);
|
|
|
|
|
Table4.PrintColumns();
|
|
|
|
|
// go next data source row
|
|
|
|
|
rowData.Next();
|
|
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
private void Table5_ManualBuild(object sender, EventArgs e)
|
|
|
|
|
{
|
|
|
|
|
Table5.PrintRow(0);
|
|
|
|
|
Table5.PrintColumns();
|
|
|
|
|
Table5.PrintRow(1);
|
|
|
|
|
Table5.PrintColumns();
|
|
|
|
|
}
|
|
|
|
|
**/
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
</ScriptText>
|
|
|
|
|
<Dictionary>
|
2022-11-09 16:57:01 +08:00
|
|
|
<MsSqlDataConnection Name="Connection" ConnectionString="rijcmlqvJIqZbrmqGn7L0P56UFhaUHihKXxbhpqie4wmZgM2ymDKry7UxzO5md9ybQlkfKpN2rHYbp9GtH1LDQPa7z2vVu/kEnNnTKeHt9obmaC7TQDh0IvsUBSuzhGZdfAIK7YyBqykCgeZm5rvA6K5b7zHGdA+7pUpJ/9ZLpp1NuxWRG2GgxEqS00JK4qSAdSXJGw"/>
|
2022-09-05 16:36:31 +08:00
|
|
|
<TableDataSource Name="Table1" ReferenceName="Table1" DataType="System.Int32" Enabled="true">
|
|
|
|
|
<Column Name="PrefabricatedComponents" DataType="System.String" PropName="CH_TrustCode"/>
|
|
|
|
|
<Column Name="PlanStartDate" DataType="System.String" PropName="CH_TrustMan"/>
|
|
|
|
|
<Column Name="PreUnit" DataType="System.String" PropName="CH_SlopeType"/>
|
|
|
|
|
<Column Name="QRCode" DataType="System.String" PropName="CH_WeldMethod"/>
|
|
|
|
|
<Column Name="PipelineComponentId" DataType="System.String"/>
|
|
|
|
|
<Column Name="PipelineComponentCode" DataType="System.String"/>
|
|
|
|
|
<Column Name="BoxNumber" DataType="System.String"/>
|
|
|
|
|
<Column Name="PipelineId" DataType="System.String"/>
|
|
|
|
|
<Column Name="AssembleUnit" DataType="System.String"/>
|
|
|
|
|
<Column Name="State" DataType="System.String"/>
|
|
|
|
|
<Column Name="PipelineCode" DataType="System.String"/>
|
2022-10-08 15:20:07 +08:00
|
|
|
<Column Name="QRCode2" DataType="System.String" PropName="Column"/>
|
2022-10-13 18:52:45 +08:00
|
|
|
<Column Name="UnitWorkName" DataType="System.Char" PropName="Column"/>
|
2022-10-28 17:01:51 +08:00
|
|
|
<Column Name="MaterialCode" DataType="System.String" PropName="Column"/>
|
2022-11-09 16:57:01 +08:00
|
|
|
<Column Name="MaterialId" DataType="System.String"/>
|
|
|
|
|
<Column Name="MaterialType" DataType="System.String"/>
|
|
|
|
|
<Column Name="SteelType" DataType="System.String"/>
|
|
|
|
|
<Column Name="MaterialClass" DataType="System.String"/>
|
|
|
|
|
<Column Name="MaterialGroup" DataType="System.String"/>
|
|
|
|
|
<Column Name="Remark" DataType="System.String"/>
|
|
|
|
|
<Column Name="MetalType" DataType="System.String"/>
|
2022-09-05 16:36:31 +08:00
|
|
|
</TableDataSource>
|
|
|
|
|
<TableDataSource Name="Data" ReferenceName="Data.Data" DataType="System.Int32" Enabled="true">
|
|
|
|
|
<Column Name="CH_TrustID" DataType="System.String"/>
|
|
|
|
|
<Column Name="ISO_IsoNo" DataType="System.Int32" PropName="Column" Calculated="true" Expression=""/>
|
|
|
|
|
<Column Name="ISO_IsoNumber" DataType="System.Int32" PropName="Column" Calculated="true" Expression=""/>
|
|
|
|
|
<Column Name="JOT_JointNo" DataType="System.Int32" PropName="Column1" Calculated="true" Expression=""/>
|
|
|
|
|
<Column Name="WED_Code2" DataType="System.Int32" PropName="Column2" Calculated="true" Expression=""/>
|
|
|
|
|
<Column Name="JOT_JointDesc" DataType="System.Int32" PropName="Column3" Calculated="true" Expression=""/>
|
|
|
|
|
<Column Name="STE_Name1" DataType="System.Int32" PropName="Column" Calculated="true" Expression=""/>
|
|
|
|
|
<Column Name="Remark" DataType="System.Int32" PropName="Column1" Calculated="true" Expression=""/>
|
|
|
|
|
</TableDataSource>
|
|
|
|
|
<TableDataSource Name="Products" ReferenceName="NorthWind.Products" DataType="System.Int32" Enabled="true">
|
|
|
|
|
<Column Name="ProductID" DataType="System.Int32"/>
|
|
|
|
|
<Column Name="ProductName" DataType="System.String"/>
|
|
|
|
|
<Column Name="SupplierID" DataType="System.Int32"/>
|
|
|
|
|
<Column Name="CategoryID" DataType="System.Int32"/>
|
|
|
|
|
<Column Name="QuantityPerUnit" DataType="System.String"/>
|
|
|
|
|
<Column Name="UnitPrice" DataType="System.Decimal"/>
|
|
|
|
|
<Column Name="UnitsInStock" DataType="System.Int16"/>
|
|
|
|
|
<Column Name="UnitsOnOrder" DataType="System.Int16"/>
|
|
|
|
|
<Column Name="ReorderLevel" DataType="System.Int16"/>
|
|
|
|
|
<Column Name="Discontinued" DataType="System.Boolean" BindableControl="CheckBox"/>
|
|
|
|
|
<Column Name="EAN13" DataType="System.String"/>
|
|
|
|
|
</TableDataSource>
|
|
|
|
|
<Parameter Name="CH_TrustID" DataType="System.Single"/>
|
|
|
|
|
<Parameter Name="supUnit" DataType="System.String"/>
|
|
|
|
|
<Parameter Name="totalUnit" DataType="System.String"/>
|
|
|
|
|
<Parameter Name="ConUnit" DataType="System.String"/>
|
|
|
|
|
<Parameter Name="CheckUnit" DataType="System.String"/>
|
|
|
|
|
</Dictionary>
|
2022-10-17 15:57:40 +08:00
|
|
|
<ReportPage Name="Page1" RawPaperSize="9">
|
2022-10-13 18:52:45 +08:00
|
|
|
<PageHeaderBand Name="PageHeader1" Width="718.2"/>
|
2022-10-28 17:01:51 +08:00
|
|
|
<DataBand Name="Data1" Top="3.03" Width="718.2" Height="245.73" Guides="198.45" DataSource="Table1" Columns.Count="1">
|
2022-10-13 18:52:45 +08:00
|
|
|
<TableObject Name="Table2" Width="718.21" Height="226.8" Border.Lines="All">
|
|
|
|
|
<TableColumn Name="Column3" Width="174.82"/>
|
|
|
|
|
<TableColumn Name="Column1" Width="146.49"/>
|
|
|
|
|
<TableColumn Name="Column2" Width="269.33"/>
|
|
|
|
|
<TableColumn Name="Column4" Width="127.57"/>
|
2022-10-28 17:01:51 +08:00
|
|
|
<TableRow Name="Row1" Height="45.36">
|
2022-10-13 18:52:45 +08:00
|
|
|
<TableCell Name="Cell23" HorzAlign="Center" VertAlign="Center" Font="宋体, 11pt" RowSpan="4">
|
|
|
|
|
<BarcodeObject Name="Barcode1" Left="3.78" Top="47.25" Width="151.2" Height="151.2" AutoSize="false" Text="[Table1.QRCode]" ShowText="false" AllowExpressions="true" Barcode="QR Code" Barcode.ErrorCorrection="L" Barcode.Encoding="UTF8" Barcode.QuietZone="true"/>
|
|
|
|
|
<TextObject Name="Text1" Left="37.8" Top="28.35" Width="94.5" Height="18.9" Text="三维模型定位" HorzAlign="Center" VertAlign="Bottom"/>
|
2022-10-08 15:20:07 +08:00
|
|
|
</TableCell>
|
2022-10-13 18:52:45 +08:00
|
|
|
<TableCell Name="Cell1" Text="预制组件编号:" VertAlign="Center" Font="宋体, 11pt"/>
|
2022-10-08 15:20:07 +08:00
|
|
|
<TableCell Name="Cell2" Border.Lines="Bottom" Text="[Table1.PipelineComponentCode]" VertAlign="Center" Font="宋体, 11pt"/>
|
2022-10-13 18:52:45 +08:00
|
|
|
<TableCell Name="Cell31" HorzAlign="Center" VertAlign="Center" Font="宋体, 11pt" RowSpan="4">
|
|
|
|
|
<TextObject Name="Text2" Left="11.34" Top="28.35" Width="94.5" Height="18.9" Text="组件验收" HorzAlign="Center" VertAlign="Bottom"/>
|
|
|
|
|
<BarcodeObject Name="Barcode2" Left="15.12" Top="47.25" Width="94.5" Height="94.5" AutoSize="false" Text="[Table1.QRCode2]" ShowText="false" AllowExpressions="true" Barcode="QR Code" Barcode.ErrorCorrection="L" Barcode.Encoding="UTF8" Barcode.QuietZone="true"/>
|
2022-11-09 16:57:01 +08:00
|
|
|
<PictureObject Name="Picture1" Left="15.12" Top="141.75" Width="94.5" Height="75.6" Image="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
|
2022-10-08 15:20:07 +08:00
|
|
|
</TableCell>
|
2022-09-05 16:36:31 +08:00
|
|
|
</TableRow>
|
2022-10-28 17:01:51 +08:00
|
|
|
<TableRow Name="Row2" Height="45.36">
|
2022-10-08 15:20:07 +08:00
|
|
|
<TableCell Name="Cell24" HorzAlign="Center" VertAlign="Center" Font="宋体, 11pt"/>
|
2022-10-13 18:52:45 +08:00
|
|
|
<TableCell Name="Cell6" Text="管线号:" VertAlign="Center" Font="宋体, 11pt"/>
|
2022-09-05 16:36:31 +08:00
|
|
|
<TableCell Name="Cell7" Border.Lines="Bottom" Text="[Table1.PipelineCode]" VertAlign="Center" Font="宋体, 11pt"/>
|
2022-10-08 15:20:07 +08:00
|
|
|
<TableCell Name="Cell32" HorzAlign="Center" VertAlign="Center" Font="宋体, 11pt"/>
|
2022-09-05 16:36:31 +08:00
|
|
|
</TableRow>
|
2022-10-28 17:01:51 +08:00
|
|
|
<TableRow Name="Row5" Height="45.36">
|
|
|
|
|
<TableCell Name="Cell35"/>
|
|
|
|
|
<TableCell Name="Cell36" Text="材质:" VertAlign="Center" Font="宋体, 11pt"/>
|
|
|
|
|
<TableCell Name="Cell37" Border.Lines="Bottom" Text="[Table1.MaterialCode]" VertAlign="Center" Font="宋体, 11pt"/>
|
|
|
|
|
<TableCell Name="Cell38"/>
|
|
|
|
|
</TableRow>
|
|
|
|
|
<TableRow Name="Row3" Height="45.36">
|
2022-10-08 15:20:07 +08:00
|
|
|
<TableCell Name="Cell25"/>
|
2022-10-13 18:52:45 +08:00
|
|
|
<TableCell Name="Cell11" Text="装置名称:" VertAlign="Center" Font="宋体, 11pt"/>
|
|
|
|
|
<TableCell Name="Cell12" Border.Lines="Bottom" Text="[Table1.UnitWorkName]" VertAlign="Center" Font="宋体, 11pt"/>
|
2022-10-08 15:20:07 +08:00
|
|
|
<TableCell Name="Cell33" HorzAlign="Center" VertAlign="Center" Font="宋体, 11pt"/>
|
2022-09-05 16:36:31 +08:00
|
|
|
</TableRow>
|
2022-10-28 17:01:51 +08:00
|
|
|
<TableRow Name="Row4" Height="45.36">
|
2022-10-08 15:20:07 +08:00
|
|
|
<TableCell Name="Cell26"/>
|
2022-10-13 18:52:45 +08:00
|
|
|
<TableCell Name="Cell16" Text="管线计划安装日期:" VertAlign="Center" Font="宋体, 11pt"/>
|
2022-09-05 16:36:31 +08:00
|
|
|
<TableCell Name="Cell17" Border.Lines="Bottom" Text="[Table1.PlanStartDate]" VertAlign="Center" Font="宋体, 11pt"/>
|
2022-10-08 15:20:07 +08:00
|
|
|
<TableCell Name="Cell34" HorzAlign="Center" VertAlign="Center" Font="宋体, 11pt"/>
|
2022-09-05 16:36:31 +08:00
|
|
|
</TableRow>
|
|
|
|
|
</TableObject>
|
|
|
|
|
</DataBand>
|
|
|
|
|
</ReportPage>
|
|
|
|
|
</Report>
|