168 lines
7.5 KiB
Plaintext
168 lines
7.5 KiB
Plaintext
|
|
<?xml version="1.0" encoding="utf-8"?>
|
||
|
|
<Report ScriptLanguage="CSharp" ReportInfo.Created="12/29/2021 10:56:08" ReportInfo.Modified="03/11/2026 16:13:59" ReportInfo.CreatorVersion="2017.1.16.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;
|
||
|
|
|
||
|
|
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>
|
||
|
|
<MsSqlDataConnection Name="Connection" ConnectionString="rijcmlqvJIqZbrmqGn7L0P56UFhaUHihKXxbhpqie4wmZgM2ymDKry7UxzO5md9ybQlkfKpN2rHYbp9GtH1LDQPa7z2vVu/kEnNnTKeHt9obmaC7TQDh0IvsUBSuzhGZdfAIK7YyBqykCgeZm5rvA6K5b7zHGdA+7pUpJ/9ZLpp1NuxWRF3o/LeJFRC5FM7f/mM4Wzy"/>
|
||
|
|
<TableDataSource Name="Table1" ReferenceName="Table1" DataType="System.Int32" Enabled="true">
|
||
|
|
<Column Name="pipelineCode" DataType="System.String" PropName="PipelineComponentId"/>
|
||
|
|
<Column Name="Mat" DataType="System.String" PropName="PipelineComponentCode"/>
|
||
|
|
<Column Name="WeldJointId" DataType="System.String" PropName="BoxNumber"/>
|
||
|
|
<Column Name="Spec" DataType="System.String" PropName="UnitWorkName"/>
|
||
|
|
<Column Name="SortIndex" DataType="System.String" PropName="PipelineId"/>
|
||
|
|
<Column Name="PipelineCode" DataType="System.String"/>
|
||
|
|
<Column Name="WeldJointPoint" DataType="System.String" PropName="Column"/>
|
||
|
|
</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>
|
||
|
|
<ReportPage Name="Page1" PaperWidth="80" PaperHeight="42" LeftMargin="0" TopMargin="0" RightMargin="0" BottomMargin="0" MirrorMargins="true">
|
||
|
|
<PageHeaderBand Name="PageHeader1" Width="302.4"/>
|
||
|
|
<DataBand Name="Data1" Top="2.7" Width="302.4" Height="158.76" Guides="198.45" DataSource="Table1" Columns.Count="1">
|
||
|
|
<TableObject Name="Table2" Left="3.78" Top="3.78" Width="294.84" Height="151.2" Border.Lines="All">
|
||
|
|
<TableColumn Name="Column3" Width="128.51"/>
|
||
|
|
<TableColumn Name="Column1" Width="166.33"/>
|
||
|
|
<TableRow Name="Row1" Height="37.8">
|
||
|
|
<TableCell Name="Cell23" Text="管线号:[Table1.pipelineCode]" VertAlign="Center" Font="宋体, 11pt" ColSpan="2"/>
|
||
|
|
<TableCell Name="Cell1" VertAlign="Center" Font="宋体, 11pt"/>
|
||
|
|
</TableRow>
|
||
|
|
<TableRow Name="Row2" Height="37.8">
|
||
|
|
<TableCell Name="Cell24" Text="规格:[Table1.Spec]" VertAlign="Center" Font="宋体, 11pt"/>
|
||
|
|
<TableCell Name="Cell6" Text="材质:[Table1.Mat]" VertAlign="Center" Font="宋体, 11pt"/>
|
||
|
|
</TableRow>
|
||
|
|
<TableRow Name="Row5" Height="75.6">
|
||
|
|
<TableCell Name="Cell35">
|
||
|
|
<BarcodeObject Name="Barcode1" Left="22.68" Width="83.16" Height="75.6" AutoSize="false" Text="https://sggl.sedin.com.cn/StaticPage/HJGL/index.html?id=[Table1.WeldJointId]&weldjoint=1" ShowText="false" AllowExpressions="true" Barcode="QR Code" Barcode.ErrorCorrection="L" Barcode.Encoding="UTF8" Barcode.QuietZone="true"/>
|
||
|
|
<TextObject Name="Text2" Left="103.95" Top="56.7" Width="406.35" Height="18.9" Text="[Table1.WeldJointPoint]" VertAlign="Center" Font="黑体, 6pt"/>
|
||
|
|
</TableCell>
|
||
|
|
<TableCell Name="Cell36" VertAlign="Center" Font="宋体, 11pt">
|
||
|
|
<TextObject Name="Text1" Left="9.45" Width="151.2" Height="56.7" Text="[Table1.SortIndex]#" VertAlign="Center" Font="黑体, 36pt, style=Bold"/>
|
||
|
|
</TableCell>
|
||
|
|
</TableRow>
|
||
|
|
</TableObject>
|
||
|
|
</DataBand>
|
||
|
|
</ReportPage>
|
||
|
|
</Report>
|