20260113 焊缝检测委托单

This commit is contained in:
毕文静 2026-01-13 17:32:26 +08:00
parent 4da0548152
commit 50beaf476e
16 changed files with 1517 additions and 281 deletions

View File

@ -0,0 +1,14 @@
insert into Sys_Menu(MenuId,MenuName,Url,SortIndex,SuperMenu,MenuModule)
values('D145745B-2A1F-4AFA-B7C5-B038EA32326C','보係뷸옛션쩌','JGZL/WeldingRodBaking.aspx',210,'2A84FA58-8B20-48ED-A621-3EC98CF4AD28','3')
go
insert into Sys_Menu(MenuId,MenuName,Url,SortIndex,SuperMenu,MenuModule)
values('E7681A08-F21C-441B-B6BC-DF41BF2651CD','보係랙렴쀼澗션쩌','HJGL/MaterialManage/ElectrodeRecovery.aspx',220,'2A84FA58-8B20-48ED-A621-3EC98CF4AD28','3')
go
insert into Sys_Menu(MenuId,MenuName,Url,SortIndex,SuperMenu,MenuModule)
values('87D52498-9FCC-4D47-B717-4CB2CA355E31','보介랙렴션쩌','HJGL/MaterialManage/WeldingWireRecovery.aspx',230,'2A84FA58-8B20-48ED-A621-3EC98CF4AD28','3')
go
insert into Sys_Menu(MenuId,MenuName,Url,SortIndex,SuperMenu,MenuModule)
values('C79CAE07-DAB5-4EBD-A192-31A26A3F9353','보꼼욋侊嫁똑션쩌깊','HJGL/MaterialManage/EWeldRHRecordNew.aspx',240,'2A84FA58-8B20-48ED-A621-3EC98CF4AD28','3')
go

View File

@ -217,17 +217,17 @@ namespace FineUIPro.Web.ContinuousPrint
dt.Columns.Add("ProjectName"); dt.Columns.Add("ProjectName");
dt.Columns.Add("InstallastionName"); dt.Columns.Add("InstallastionName");
dt.Columns.Add("InstallatinCode"); dt.Columns.Add("InstallatinCode");
dt.Columns.Add("TrustUnit"); //dt.Columns.Add("TrustUnit");
dt.Columns.Add("TrustCode"); dt.Columns.Add("TrustCode");
dt.Columns.Add("CheckUnit"); dt.Columns.Add("CheckUnit");
dt.Columns.Add("ItemName"); //dt.Columns.Add("ItemName");
dt.Columns.Add("WME_Code"); dt.Columns.Add("WME_Code");
dt.Columns.Add("IsHot");
dt.Columns.Add("JST_Name"); dt.Columns.Add("JST_Name");
dt.Columns.Add("NDTR_Name"); dt.Columns.Add("IsHot");
dt.Columns.Add("NDT_Code"); dt.Columns.Add("NDT_Code");
dt.Columns.Add("AcceptGrade");
dt.Columns.Add("CH_NDTCriteria"); dt.Columns.Add("CH_NDTCriteria");
dt.Columns.Add("NDTR_Name");
dt.Columns.Add("AcceptGrade");
DataRow[] rows = tbTitle.DefaultView.ToTable().Select(); DataRow[] rows = tbTitle.DefaultView.ToTable().Select();
foreach (var row in rows) foreach (var row in rows)
@ -236,12 +236,21 @@ namespace FineUIPro.Web.ContinuousPrint
newRow["ProjectName"] = row["ProjectName"].ToString(); newRow["ProjectName"] = row["ProjectName"].ToString();
newRow["InstallastionName"] = row["InstallationName"].ToString(); newRow["InstallastionName"] = row["InstallationName"].ToString();
newRow["InstallatinCode"] = row["InstallationCode"].ToString(); newRow["InstallatinCode"] = row["InstallationCode"].ToString();
newRow["TrustUnit"] = row["UnitName"].ToString(); //newRow["TrustUnit"] = row["UnitName"].ToString();
newRow["TrustCode"] = row["CH_TrustCode"].ToString(); newRow["TrustCode"] = row["CH_TrustCode"].ToString();
newRow["CheckUnit"] = row["CheckUnitName"].ToString(); newRow["CheckUnit"] = row["CheckUnitName"].ToString();
newRow["ItemName"] = row["CH_ItemName"].ToString(); //newRow["ItemName"] = row["CH_ItemName"].ToString();
newRow["WME_Code"] = row["WME_Code"].ToString(); newRow["WME_Code"] = row["WME_Code"].ToString();
newRow["IsHot"] = "合格"; string hot = string.Empty;
if (row["IsHot"].ToString() == "是")
{
hot = "☑是/□否";
}
else
{
hot = "□是/☑否";
}
newRow["IsHot"] = hot;
newRow["JST_Name"] = row["JST_Code"]; newRow["JST_Name"] = row["JST_Code"];
newRow["NDTR_Name"] = row["NDTR_Name"]; newRow["NDTR_Name"] = row["NDTR_Name"];
newRow["NDT_Code"] = row["NDT_Code"]; newRow["NDT_Code"] = row["NDT_Code"];
@ -302,7 +311,7 @@ namespace FineUIPro.Web.ContinuousPrint
dt2.TableName = "Data"; dt2.TableName = "Data";
dt2.Columns.Add("SortNum"); dt2.Columns.Add("SortNum");
dt2.Columns.Add("IsoNo"); dt2.Columns.Add("IsoNo");
dt2.Columns.Add("ISO_Number"); //dt2.Columns.Add("ISO_Number");
dt2.Columns.Add("JointNo"); dt2.Columns.Add("JointNo");
dt2.Columns.Add("JointDesc"); dt2.Columns.Add("JointDesc");
dt2.Columns.Add("Ste_Code"); dt2.Columns.Add("Ste_Code");
@ -322,7 +331,7 @@ namespace FineUIPro.Web.ContinuousPrint
newRows["SortNum"] = i + 1; newRows["SortNum"] = i + 1;
//} //}
newRows["IsoNo"] = row["ISO_IsoNo"].ToString(); newRows["IsoNo"] = row["ISO_IsoNo"].ToString();
newRows["ISO_Number"] = row["ISO_IsoNo"].ToString(); //newRows["ISO_Number"] = row["ISO_IsoNo"].ToString();
newRows["JointNo"] = row["JOT_JointNo"].ToString(); newRows["JointNo"] = row["JOT_JointNo"].ToString();
newRows["JointDesc"] = row["JOT_JointDesc"].ToString(); newRows["JointDesc"] = row["JOT_JointDesc"].ToString();
newRows["Ste_Code"] = row["STE_Code"].ToString(); newRows["Ste_Code"] = row["STE_Code"].ToString();
@ -334,13 +343,13 @@ namespace FineUIPro.Web.ContinuousPrint
} }
BLL.Common.FastReportService.AddFastreportTable(dt2); BLL.Common.FastReportService.AddFastreportTable(dt2);
string isoid = rows2[0]["ISO_ID"].ToString(); //string isoid = rows2[0]["ISO_ID"].ToString();
string jotyId = rows2[0]["JOTY_ID"].ToString(); //string jotyId = rows2[0]["JOTY_ID"].ToString();
int jointCount = BLL.HJGL_PW_JointInfoService.GetJointCountByIsoId(isoid, jotyId); //int jointCount = BLL.HJGL_PW_JointInfoService.GetJointCountByIsoId(isoid, jotyId);
//传参 //传参
Dictionary<string, string> keyValuePairs = new Dictionary<string, string>(); Dictionary<string, string> keyValuePairs = new Dictionary<string, string>();
keyValuePairs.Add("JointCount", jointCount.ToString()); //keyValuePairs.Add("JointCount", jointCount.ToString());
keyValuePairs.Add("CheckCount", (rows.Count() - 1).ToString()); //keyValuePairs.Add("CheckCount", (rows.Count() - 1).ToString());
BLL.Common.FastReportService.AddFastreportParameter(keyValuePairs); BLL.Common.FastReportService.AddFastreportParameter(keyValuePairs);

View File

@ -218,10 +218,10 @@ namespace FineUIPro.Web.ContinuousPrint
dt.Columns.Add("ProjectName"); dt.Columns.Add("ProjectName");
dt.Columns.Add("InstallastionName"); dt.Columns.Add("InstallastionName");
dt.Columns.Add("InstallatinCode"); dt.Columns.Add("InstallatinCode");
dt.Columns.Add("TrustUnit"); //dt.Columns.Add("TrustUnit");
dt.Columns.Add("TrustCode"); dt.Columns.Add("TrustCode");
dt.Columns.Add("CheckUnit"); dt.Columns.Add("CheckUnit");
dt.Columns.Add("ItemName"); //dt.Columns.Add("ItemName");
dt.Columns.Add("WME_Code"); dt.Columns.Add("WME_Code");
dt.Columns.Add("IsHot"); dt.Columns.Add("IsHot");
dt.Columns.Add("JST_Name"); dt.Columns.Add("JST_Name");
@ -237,12 +237,21 @@ namespace FineUIPro.Web.ContinuousPrint
newRow["ProjectName"] = row["ProjectName"].ToString(); newRow["ProjectName"] = row["ProjectName"].ToString();
newRow["InstallastionName"] = row["InstallationName"].ToString(); newRow["InstallastionName"] = row["InstallationName"].ToString();
newRow["InstallatinCode"] = row["InstallationCode"].ToString(); newRow["InstallatinCode"] = row["InstallationCode"].ToString();
newRow["TrustUnit"] = row["UnitName"].ToString(); //newRow["TrustUnit"] = row["UnitName"].ToString();
newRow["TrustCode"] = row["CH_TrustCode"].ToString(); newRow["TrustCode"] = row["CH_TrustCode"].ToString();
newRow["CheckUnit"] = row["CheckUnitName"].ToString(); newRow["CheckUnit"] = row["CheckUnitName"].ToString();
newRow["ItemName"] = row["CH_ItemName"].ToString(); //newRow["ItemName"] = row["CH_ItemName"].ToString();
newRow["WME_Code"] = row["WME_Code"].ToString(); newRow["WME_Code"] = row["WME_Code"].ToString();
newRow["IsHot"] = "合格"; string hot = string.Empty;
if (row["IsHot"].ToString() == "是")
{
hot = "☑是/□否";
}
else
{
hot = "□是/☑否";
}
newRow["IsHot"] = hot;
newRow["JST_Name"] = row["JST_Name"]; newRow["JST_Name"] = row["JST_Name"];
newRow["NDTR_Name"] = row["NDTR_Name"]; newRow["NDTR_Name"] = row["NDTR_Name"];
newRow["NDT_Code"] = row["NDT_Code"]; newRow["NDT_Code"] = row["NDT_Code"];
@ -304,7 +313,7 @@ namespace FineUIPro.Web.ContinuousPrint
dt2.TableName = "Data"; dt2.TableName = "Data";
dt2.Columns.Add("SortNum"); dt2.Columns.Add("SortNum");
dt2.Columns.Add("IsoNo"); dt2.Columns.Add("IsoNo");
dt2.Columns.Add("ISO_Number"); //dt2.Columns.Add("ISO_Number");
dt2.Columns.Add("JointNo"); dt2.Columns.Add("JointNo");
dt2.Columns.Add("JointDesc"); dt2.Columns.Add("JointDesc");
dt2.Columns.Add("Ste_Code"); dt2.Columns.Add("Ste_Code");
@ -324,7 +333,7 @@ namespace FineUIPro.Web.ContinuousPrint
newRows["SortNum"] = i + 1; newRows["SortNum"] = i + 1;
} }
newRows["IsoNo"] = row["ISO_IsoNo"].ToString(); newRows["IsoNo"] = row["ISO_IsoNo"].ToString();
newRows["ISO_Number"] = row["ISO_Number"].ToString(); //newRows["ISO_Number"] = row["ISO_Number"].ToString();
newRows["JointNo"] = row["JOT_JointNo"].ToString(); newRows["JointNo"] = row["JOT_JointNo"].ToString();
newRows["JointDesc"] = row["JOT_JointDesc"].ToString(); newRows["JointDesc"] = row["JOT_JointDesc"].ToString();
newRows["Ste_Code"] = row["STE_Code"].ToString(); newRows["Ste_Code"] = row["STE_Code"].ToString();
@ -336,15 +345,15 @@ namespace FineUIPro.Web.ContinuousPrint
} }
BLL.Common.FastReportService.AddFastreportTable(dt2); BLL.Common.FastReportService.AddFastreportTable(dt2);
string isoid = rows2[0]["ISO_ID"].ToString(); //string isoid = rows2[0]["ISO_ID"].ToString();
string jotyId = rows2[0]["JOTY_ID"].ToString(); //string jotyId = rows2[0]["JOTY_ID"].ToString();
int jointCount = BLL.HJGL_PW_JointInfoService.GetJointCountByIsoId(isoid, jotyId); //int jointCount = BLL.HJGL_PW_JointInfoService.GetJointCountByIsoId(isoid, jotyId);
string pointDate = string.Format("{0:yyyy-MM-dd}", rows2[0]["PointDate"]); //string pointDate = string.Format("{0:yyyy-MM-dd}", rows2[0]["PointDate"]);
//传参 //传参
Dictionary<string, string> keyValuePairs = new Dictionary<string, string>(); Dictionary<string, string> keyValuePairs = new Dictionary<string, string>();
keyValuePairs.Add("JointCount", jointCount.ToString()); //keyValuePairs.Add("JointCount", jointCount.ToString());
keyValuePairs.Add("CheckCount", (rows2.Count() - 1).ToString()); //keyValuePairs.Add("CheckCount", (rows2.Count() - 1).ToString());
keyValuePairs.Add("pointDate", pointDate); //keyValuePairs.Add("pointDate", pointDate);
BLL.Common.FastReportService.AddFastreportParameter(keyValuePairs); BLL.Common.FastReportService.AddFastreportParameter(keyValuePairs);
initTemplatePath = "File\\Fastreport\\管道焊缝检测委托单.frx"; initTemplatePath = "File\\Fastreport\\管道焊缝检测委托单.frx";

View File

@ -0,0 +1,335 @@
<?xml version="1.0" encoding="utf-8"?>
<Report ScriptLanguage="CSharp" ReportInfo.Created="10/26/2024 15:04:43" ReportInfo.Modified="01/08/2026 17:00:02" 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 Table2_ManualBuild(object sender, EventArgs e)
{
DataSourceBase rowData = Report.GetDataSource(&quot;Data&quot;);
// init the data source
rowData.Init();
// now enumerate the data source and print the table body
while (rowData.HasMoreRows)
{
// print the table body
Table2.PrintRow(0);
Table2.PrintColumns();
// go next data source row
rowData.Next();
}
}
}
}
</ScriptText>
<Dictionary>
<MsSqlDataConnection Name="Connection" ConnectionString="rijcmlqtRsOalcXxDhVt62rPEPNYjaATUoMqziRYvJtgNsyJKYAG7kXKvNAMI/qBkgJNPccFsWrhiII6oyX1HS+uwN7YigxVjqUq3vIet2zpPnmWhwvYEvWOOCZZGx6EC4BfGfWX8aPj6bmoF52Z0fnUA9g71duxa/gvChTW/nzu9qsYVuvlVHliMnnu6jEIF9n+/QFM+BsZnGDZM0WjE8XPhabZg==">
<TableDataSource Name="Data" DataType="System.Int32" PropName="HJGL_BakeRecords" Enabled="true" TableName="Data">
<Column Name="BakeDateMonth" DataType="System.String"/>
<Column Name="BakeDateDay" DataType="System.String" PropName="Column"/>
<Column Name="Brand" DataType="System.String" PropName="Column1"/>
<Column Name="BatchNum" DataType="System.String" PropName="Column2"/>
<Column Name="InboundSelfNum" DataType="System.String" PropName="Column3"/>
<Column Name="Specifications" DataType="System.String" PropName="Column"/>
<Column Name="Quantity" DataType="System.Int32" PropName="Column"/>
<Column Name="PowerTimeHour" DataType="System.String" PropName="Column"/>
<Column Name="PowerTimeMin" DataType="System.String" PropName="Column"/>
<Column Name="PowerTemperature" DataType="System.Int32" PropName="Column" Format="Number"/>
<Column Name="ConstantTemperature" DataType="System.Int32" PropName="Column"/>
<Column Name="ConstantStartHour" DataType="System.String" PropName="Column"/>
<Column Name="ConstantStartMin" DataType="System.String" PropName="Column"/>
<Column Name="ConstantEndHour" DataType="System.String" PropName="Column"/>
<Column Name="ConstantEndMin" DataType="System.String" PropName="Column"/>
<Column Name="MoveInsulationBoxHour" DataType="System.String" PropName="Column"/>
<Column Name="MoveInsulationBoxMin" DataType="System.String" PropName="Column"/>
<Column Name="MoveInsulationBoxTemperature" DataType="System.Int32" PropName="Column"/>
<Column Name="BakingFrequency" DataType="System.String" PropName="Column"/>
<Column Name="Bakers" DataType="System.String" PropName="Column"/>
</TableDataSource>
</MsSqlDataConnection>
<Parameter Name="ProjectName" DataType="System.String"/>
</Dictionary>
<ReportPage Name="Page1" Landscape="true" PaperWidth="297" PaperHeight="210" LeftMargin="20" TopMargin="25" RightMargin="20" BottomMargin="21" FirstPageSource="4" OtherPagesSource="4" Guides="0,969.67,320.2,31.91,98.06,50.81,682.9901,41.36,788.17,76.32,73.27,171.33,269.39,371.01,421.82,463.18,568.36,756.26,861.44,893.35,527,609.72,820.08,495.09,641.6299,714.9,9.45,963.9,708.75,969.93,41.4,73.35001,171.45,269.55,371.25,50.85,422.1,463.5,495.45,527.4,568.8,610.2,642.15,683.55,715.5,756.9,788.27,820.22,861.62,893.57,970.51,788.85,820.8,862.2,894.15,970.89,495.65,31.95,98.1,60.3,69.75,1.9,61.24">
<PageHeaderBand Name="PageHeader1" Width="971.46" Height="222.06" Guides="66.15,222.06,0,85.05,108.67,23.62,155.91,132.29,9.45,37.8,47.25">
<TableObject Name="Table1" Top="66.15" Width="969.67" Height="155.91">
<TableColumn Name="Column1" Width="41.36"/>
<TableColumn Name="Column2" Width="31.91"/>
<TableColumn Name="Column3" Width="98.06"/>
<TableColumn Name="Column4" Width="98.06"/>
<TableColumn Name="Column5" Width="50.81"/>
<TableColumn Name="Column6" Width="50.81"/>
<TableColumn Name="Column7" Width="50.81"/>
<TableColumn Name="Column8" Width="41.36"/>
<TableColumn Name="Column9" Width="31.91"/>
<TableColumn Name="Column10" Width="31.91"/>
<TableColumn Name="Column11" Width="41.36"/>
<TableColumn Name="Column12" Width="41.36"/>
<TableColumn Name="Column13" Width="31.91"/>
<TableColumn Name="Column14" Width="41.36"/>
<TableColumn Name="Column15" Width="31.91"/>
<TableColumn Name="Column16" Width="41.36"/>
<TableColumn Name="Column17" Width="31.91"/>
<TableColumn Name="Column18" Width="31.91"/>
<TableColumn Name="Column19" Width="41.36"/>
<TableColumn Name="Column20" Width="31.91"/>
<TableColumn Name="Column21" Width="76.32"/>
<TableRow Name="Row1" Height="85.05">
<TableCell Name="Cell1" Border.Lines="All" Text="SH/T3543-G117" HorzAlign="Center" VertAlign="Center" Font="黑体, 10.5pt" ColSpan="5"/>
<TableCell Name="Cell2" Border.Lines="All" HorzAlign="Center" VertAlign="Center"/>
<TableCell Name="Cell3" Border.Lines="All" HorzAlign="Center" VertAlign="Center"/>
<TableCell Name="Cell4" Border.Lines="All" HorzAlign="Center" VertAlign="Center"/>
<TableCell Name="Cell5" Border.Lines="All" HorzAlign="Center" VertAlign="Center"/>
<TableCell Name="Cell26" Border.Lines="All" Text="焊条烘烤记录" HorzAlign="Center" VertAlign="Center" Font="宋体, 16pt, style=Bold" ColSpan="9"/>
<TableCell Name="Cell27" Border.Lines="All" HorzAlign="Center" VertAlign="Center"/>
<TableCell Name="Cell28" Border.Lines="All" HorzAlign="Center" VertAlign="Center"/>
<TableCell Name="Cell29" Border.Lines="All" HorzAlign="Center" VertAlign="Center"/>
<TableCell Name="Cell30" Border.Lines="All" HorzAlign="Center" VertAlign="Center"/>
<TableCell Name="Cell31" Border.Lines="All" HorzAlign="Center" VertAlign="Center"/>
<TableCell Name="Cell32" Border.Lines="All" HorzAlign="Center" VertAlign="Center"/>
<TableCell Name="Cell33" Border.Lines="All" HorzAlign="Center" VertAlign="Center"/>
<TableCell Name="Cell34" Border.Lines="All" HorzAlign="Center" VertAlign="Center"/>
<TableCell Name="Cell35" Border.Lines="Left, Top, Bottom" Text="工程名称:" Font="宋体, 10.5pt" ColSpan="3"/>
<TableCell Name="Cell36" Border.Lines="All" HorzAlign="Right" VertAlign="Center"/>
<TableCell Name="Cell37" Border.Lines="Right, Top, Bottom" Font="楷体, 10.5pt"/>
<TableCell Name="Cell38" Border.Lines="Right, Top, Bottom" Text="[ProjectName]" Font="楷体, 10.5pt" ColSpan="4"/>
<TableCell Name="Cell39" Border.Lines="All" Font="楷体, 10.5pt"/>
<TableCell Name="Cell40" Border.Lines="All" Font="楷体, 10.5pt"/>
<TableCell Name="Cell86" Border.Lines="All" Font="楷体, 10.5pt"/>
</TableRow>
<TableRow Name="Row2" Height="23.62">
<TableCell Name="Cell6" Border.Lines="All" Text="烘烤日期" HorzAlign="Center" VertAlign="Center" Font="宋体, 10.5pt" ColSpan="2"/>
<TableCell Name="Cell7" Border.Lines="All" HorzAlign="Center" VertAlign="Center" Font="宋体, 10.5pt"/>
<TableCell Name="Cell8" Border.Lines="All" Text="牌号" HorzAlign="Center" VertAlign="Center" Font="宋体, 10.5pt" RowSpan="3"/>
<TableCell Name="Cell9" Border.Lines="All" Text="批号" HorzAlign="Center" VertAlign="Center" Font="宋体, 10.5pt" RowSpan="3"/>
<TableCell Name="Cell10" Border.Lines="All" Text="入库&#13;&#10;自编号" HorzAlign="Center" VertAlign="Center" Font="宋体, 10.5pt" ColSpan="2" RowSpan="3"/>
<TableCell Name="Cell41" Border.Lines="All" HorzAlign="Center" VertAlign="Center" Font="宋体, 10.5pt"/>
<TableCell Name="Cell42" Border.Lines="All" Text="规格&#13;&#10;mm" HorzAlign="Center" VertAlign="Center" Font="宋体, 10.5pt" RowSpan="3"/>
<TableCell Name="Cell43" Border.Lines="All" Text="数量&#13;&#10;kg" HorzAlign="Center" VertAlign="Center" Font="宋体, 10.5pt" RowSpan="3"/>
<TableCell Name="Cell44" Border.Lines="All" Text="烘箱送电" HorzAlign="Center" VertAlign="Center" Font="宋体, 10.5pt" ColSpan="3"/>
<TableCell Name="Cell45" Border.Lines="All" HorzAlign="Center" VertAlign="Center" Font="宋体, 10.5pt"/>
<TableCell Name="Cell46" Border.Lines="All" HorzAlign="Center" VertAlign="Center" Font="宋体, 10.5pt"/>
<TableCell Name="Cell47" Border.Lines="All" Text="恒温" HorzAlign="Center" VertAlign="Center" Font="宋体, 10.5pt" ColSpan="5"/>
<TableCell Name="Cell48" Border.Lines="All" HorzAlign="Center" VertAlign="Center" Font="宋体, 10.5pt"/>
<TableCell Name="Cell49" Border.Lines="All" HorzAlign="Center" VertAlign="Center" Font="宋体, 10.5pt"/>
<TableCell Name="Cell50" Border.Lines="All" HorzAlign="Center" VertAlign="Center" Font="宋体, 10.5pt"/>
<TableCell Name="Cell51" Border.Lines="All" HorzAlign="Center" VertAlign="Center" Font="宋体, 10.5pt"/>
<TableCell Name="Cell52" Border.Lines="All" Text="移入保温箱" HorzAlign="Center" VertAlign="Center" Font="宋体, 10.5pt" ColSpan="3"/>
<TableCell Name="Cell53" Border.Lines="All" HorzAlign="Center" VertAlign="Center" Font="宋体, 10.5pt"/>
<TableCell Name="Cell54" Border.Lines="All" HorzAlign="Center" VertAlign="Center" Font="宋体, 10.5pt"/>
<TableCell Name="Cell55" Border.Lines="All" Text="烘烤次数" HorzAlign="Center" VertAlign="Center" Font="宋体, 10.5pt" RowSpan="3"/>
<TableCell Name="Cell87" Border.Lines="All" Text="烘烤负责人" HorzAlign="Center" VertAlign="Center" Font="宋体, 10.5pt" RowSpan="3"/>
</TableRow>
<TableRow Name="Row3" Height="23.62">
<TableCell Name="Cell11" Border.Lines="All" Text="月" HorzAlign="Center" VertAlign="Center" Font="宋体, 10.5pt" RowSpan="2"/>
<TableCell Name="Cell12" Border.Lines="All" Text="日" HorzAlign="Center" VertAlign="Center" Font="宋体, 10.5pt" RowSpan="2"/>
<TableCell Name="Cell13" Border.Lines="All" HorzAlign="Center" VertAlign="Center" Font="宋体, 10.5pt"/>
<TableCell Name="Cell14" Border.Lines="All" HorzAlign="Center" VertAlign="Center" Font="宋体, 10.5pt"/>
<TableCell Name="Cell15" Border.Lines="All" HorzAlign="Center" VertAlign="Center" Font="宋体, 10.5pt"/>
<TableCell Name="Cell56" Border.Lines="All" HorzAlign="Center" VertAlign="Center" Font="宋体, 10.5pt"/>
<TableCell Name="Cell57" Border.Lines="All" HorzAlign="Center" VertAlign="Center" Font="宋体, 10.5pt"/>
<TableCell Name="Cell58" Border.Lines="All" HorzAlign="Center" VertAlign="Center" Font="宋体, 10.5pt"/>
<TableCell Name="Cell59" Border.Lines="All" Text="时间" HorzAlign="Center" VertAlign="Center" Font="宋体, 10.5pt" ColSpan="2"/>
<TableCell Name="Cell60" Border.Lines="All" HorzAlign="Center" VertAlign="Center" Font="宋体, 10.5pt"/>
<TableCell Name="Cell61" Border.Lines="All" Text="温度&#13;&#10;℃" HorzAlign="Center" VertAlign="Center" Font="宋体, 10.5pt" RowSpan="2"/>
<TableCell Name="Cell62" Border.Lines="All" Text="温度&#13;&#10;℃" HorzAlign="Center" VertAlign="Center" Font="宋体, 10.5pt" RowSpan="2"/>
<TableCell Name="Cell63" Border.Lines="All" Text="开始时间" HorzAlign="Center" VertAlign="Center" Font="宋体, 10.5pt" ColSpan="2"/>
<TableCell Name="Cell64" Border.Lines="All" HorzAlign="Center" VertAlign="Center" Font="宋体, 10.5pt"/>
<TableCell Name="Cell65" Border.Lines="All" Text="结束时间" HorzAlign="Center" VertAlign="Center" Font="宋体, 10.5pt" ColSpan="2"/>
<TableCell Name="Cell66" Border.Lines="All" HorzAlign="Center" VertAlign="Center" Font="宋体, 10.5pt"/>
<TableCell Name="Cell67" Border.Lines="All" Text="时间" HorzAlign="Center" VertAlign="Center" Font="宋体, 10.5pt" ColSpan="2"/>
<TableCell Name="Cell68" Border.Lines="All" HorzAlign="Center" VertAlign="Center" Font="宋体, 10.5pt"/>
<TableCell Name="Cell69" Border.Lines="All" Text="温度℃" HorzAlign="Center" VertAlign="Center" Font="宋体, 10.5pt" RowSpan="2"/>
<TableCell Name="Cell70" Border.Lines="All" HorzAlign="Center" VertAlign="Center" Font="宋体, 10.5pt"/>
<TableCell Name="Cell88" Border.Lines="All" HorzAlign="Center" VertAlign="Center" Font="宋体, 10.5pt"/>
</TableRow>
<TableRow Name="Row4" Height="23.62">
<TableCell Name="Cell16" Border.Lines="All" HorzAlign="Center" VertAlign="Center" Font="宋体, 10.5pt"/>
<TableCell Name="Cell17" Border.Lines="All" HorzAlign="Center" VertAlign="Center" Font="宋体, 10.5pt"/>
<TableCell Name="Cell18" Border.Lines="All" HorzAlign="Center" VertAlign="Center" Font="宋体, 10.5pt"/>
<TableCell Name="Cell19" Border.Lines="All" HorzAlign="Center" VertAlign="Center" Font="宋体, 10.5pt"/>
<TableCell Name="Cell20" Border.Lines="All" HorzAlign="Center" VertAlign="Center" Font="宋体, 10.5pt"/>
<TableCell Name="Cell71" Border.Lines="All" HorzAlign="Center" VertAlign="Center" Font="宋体, 10.5pt"/>
<TableCell Name="Cell72" Border.Lines="All" HorzAlign="Center" VertAlign="Center" Font="宋体, 10.5pt"/>
<TableCell Name="Cell73" Border.Lines="All" HorzAlign="Center" VertAlign="Center" Font="宋体, 10.5pt"/>
<TableCell Name="Cell74" Border.Lines="All" Text="时" HorzAlign="Center" VertAlign="Center" Font="宋体, 10.5pt"/>
<TableCell Name="Cell75" Border.Lines="All" Text="分" HorzAlign="Center" VertAlign="Center" Font="宋体, 10.5pt"/>
<TableCell Name="Cell76" Border.Lines="All" HorzAlign="Center" VertAlign="Center" Font="宋体, 10.5pt"/>
<TableCell Name="Cell77" Border.Lines="All" HorzAlign="Center" VertAlign="Center" Font="宋体, 10.5pt"/>
<TableCell Name="Cell78" Border.Lines="All" Text="时" HorzAlign="Center" VertAlign="Center" Font="宋体, 10.5pt"/>
<TableCell Name="Cell79" Border.Lines="All" Text="分" HorzAlign="Center" VertAlign="Center" Font="宋体, 10.5pt"/>
<TableCell Name="Cell80" Border.Lines="All" Text="时" HorzAlign="Center" VertAlign="Center" Font="宋体, 10.5pt"/>
<TableCell Name="Cell81" Border.Lines="All" Text="分" HorzAlign="Center" VertAlign="Center" Font="宋体, 10.5pt"/>
<TableCell Name="Cell82" Border.Lines="All" Text="时" HorzAlign="Center" VertAlign="Center" Font="宋体, 10.5pt"/>
<TableCell Name="Cell83" Border.Lines="All" Text="分" HorzAlign="Center" VertAlign="Center" Font="宋体, 10.5pt"/>
<TableCell Name="Cell84" Border.Lines="All" HorzAlign="Center" VertAlign="Center" Font="宋体, 10.5pt"/>
<TableCell Name="Cell85" Border.Lines="All" HorzAlign="Center" VertAlign="Center" Font="宋体, 10.5pt"/>
<TableCell Name="Cell89" Border.Lines="All" HorzAlign="Center" VertAlign="Center" Font="宋体, 10.5pt"/>
</TableRow>
</TableObject>
<TextObject Name="Text1" Left="9.45" Top="9.45" Width="954.45" Height="28.35" Text="浙 江 鼎 盛 石 化 工 程 有 限 公 司" HorzAlign="Center" VertAlign="Center" Font="宋体, 16pt, style=Bold"/>
<TextObject Name="Text2" Left="708.75" Top="47.25" Width="255.15" Height="18.9" Text="ZDS-T6.37.075.A/1.2020" HorzAlign="Center" VertAlign="Center" Font="宋体, 12pt"/>
</PageHeaderBand>
<DataBand Name="Data1" Top="226.06" Width="971.46" Height="33.07" Guides="0,33.07">
<TableObject Name="Table2" Width="969.93" Height="33.07" ManualBuildEvent="Table2_ManualBuild">
<TableColumn Name="Column22" Width="41.4"/>
<TableColumn Name="Column23" Width="31.95"/>
<TableColumn Name="Column24" Width="98.1"/>
<TableColumn Name="Column25" Width="98.1"/>
<TableColumn Name="Column26" Width="50.85"/>
<TableColumn Name="Column27" Width="50.85"/>
<TableColumn Name="Column28" Width="50.85"/>
<TableColumn Name="Column29" Width="41.4"/>
<TableColumn Name="Column30" Width="31.95"/>
<TableColumn Name="Column31" Width="31.95"/>
<TableColumn Name="Column32" Width="41.4"/>
<TableColumn Name="Column33" Width="41.4"/>
<TableColumn Name="Column34" Width="31.95"/>
<TableColumn Name="Column35" Width="41.4"/>
<TableColumn Name="Column36" Width="31.95"/>
<TableColumn Name="Column37" Width="41.4"/>
<TableColumn Name="Column38" Width="31.37"/>
<TableColumn Name="Column39" Width="31.95"/>
<TableColumn Name="Column40" Width="41.4"/>
<TableColumn Name="Column41" Width="31.95"/>
<TableColumn Name="Column42" Width="76.36"/>
<TableRow Name="Row8" Height="33.07">
<TableCell Name="Cell153" Border.Lines="All" Text="[Data.BakeDateMonth]" HorzAlign="Center" VertAlign="Center" Font="楷体, 10.5pt"/>
<TableCell Name="Cell154" Border.Lines="All" Text="[Data.BakeDateDay]" HorzAlign="Center" VertAlign="Center" Font="楷体, 10.5pt"/>
<TableCell Name="Cell155" Border.Lines="All" Text="[Data.Brand]" HorzAlign="Center" VertAlign="Center" Font="楷体, 10.5pt"/>
<TableCell Name="Cell156" Border.Lines="All" Text="[Data.BatchNum]" HorzAlign="Center" VertAlign="Center" Font="楷体, 10.5pt"/>
<TableCell Name="Cell157" Border.Lines="All" Text="[Data.InboundSelfNum]" HorzAlign="Center" VertAlign="Center" Font="楷体, 10.5pt" ColSpan="2"/>
<TableCell Name="Cell158" Border.Lines="All" HorzAlign="Center" VertAlign="Center" Font="楷体, 10.5pt"/>
<TableCell Name="Cell159" Border.Lines="All" Text="[Data.Specifications]" HorzAlign="Center" VertAlign="Center" Font="楷体, 10.5pt"/>
<TableCell Name="Cell160" Border.Lines="All" Text="[Data.Quantity]" Format="Number" Format.UseLocale="false" Format.DecimalDigits="0" Format.DecimalSeparator="." Format.GroupSeparator="," Format.NegativePattern="1" HorzAlign="Center" VertAlign="Center" Font="楷体, 10.5pt"/>
<TableCell Name="Cell161" Border.Lines="All" Text="[Data.PowerTimeHour]" HorzAlign="Center" VertAlign="Center" Font="楷体, 10.5pt"/>
<TableCell Name="Cell162" Border.Lines="All" Text="[Data.PowerTimeMin]" HorzAlign="Center" VertAlign="Center" Font="楷体, 10.5pt"/>
<TableCell Name="Cell163" Border.Lines="All" Text="[Data.PowerTemperature]" Format="Number" Format.UseLocale="false" Format.DecimalDigits="0" Format.DecimalSeparator="." Format.GroupSeparator="," Format.NegativePattern="1" HorzAlign="Center" VertAlign="Center" Font="楷体, 10.5pt"/>
<TableCell Name="Cell164" Border.Lines="All" Text="[Data.ConstantTemperature]" Format="Number" Format.UseLocale="false" Format.DecimalDigits="0" Format.DecimalSeparator="." Format.GroupSeparator="," Format.NegativePattern="1" HorzAlign="Center" VertAlign="Center" Font="楷体, 10.5pt"/>
<TableCell Name="Cell165" Border.Lines="All" Text="[Data.ConstantStartHour]" HorzAlign="Center" VertAlign="Center" Font="楷体, 10.5pt"/>
<TableCell Name="Cell166" Border.Lines="All" Text="[Data.ConstantStartMin]" HorzAlign="Center" VertAlign="Center" Font="楷体, 10.5pt"/>
<TableCell Name="Cell167" Border.Lines="All" Text="[Data.ConstantEndHour]" HorzAlign="Center" VertAlign="Center" Font="楷体, 10.5pt"/>
<TableCell Name="Cell168" Border.Lines="All" Text="[Data.ConstantEndMin]" HorzAlign="Center" VertAlign="Center" Font="楷体, 10.5pt"/>
<TableCell Name="Cell169" Border.Lines="All" Text="[Data.MoveInsulationBoxHour]" HorzAlign="Center" VertAlign="Center" Font="楷体, 10.5pt"/>
<TableCell Name="Cell170" Border.Lines="All" Text="[Data.MoveInsulationBoxMin]" HorzAlign="Center" VertAlign="Center" Font="楷体, 10.5pt"/>
<TableCell Name="Cell171" Border.Lines="All" Text="[Data.MoveInsulationBoxTemperature]" Format="Number" Format.UseLocale="false" Format.DecimalDigits="0" Format.DecimalSeparator="." Format.GroupSeparator="," Format.NegativePattern="1" HorzAlign="Center" VertAlign="Center" Font="楷体, 10.5pt"/>
<TableCell Name="Cell172" Border.Lines="All" Text="[Data.BakingFrequency]" HorzAlign="Center" VertAlign="Center" Font="楷体, 10.5pt"/>
<TableCell Name="Cell173" Border.Lines="All" Text="[Data.Bakers]" HorzAlign="Center" VertAlign="Center" Font="楷体, 10.5pt"/>
</TableRow>
</TableObject>
</DataBand>
<ColumnFooterBand Name="ColumnFooter1" Top="300.2" Width="971.46">
<ChildBand Name="Child1" Top="263.13" Width="971.46" Height="33.07" Guides="0,33.07" FillUnusedSpace="true">
<TableObject Name="Table3" Width="970.51" Height="33.07">
<TableColumn Name="Column43" Width="41.4"/>
<TableColumn Name="Column44" Width="31.95"/>
<TableColumn Name="Column45" Width="98.1"/>
<TableColumn Name="Column46" Width="98.1"/>
<TableColumn Name="Column47" Width="50.85"/>
<TableColumn Name="Column48" Width="50.85"/>
<TableColumn Name="Column49" Width="50.85"/>
<TableColumn Name="Column50" Width="41.4"/>
<TableColumn Name="Column51" Width="31.95"/>
<TableColumn Name="Column52" Width="31.95"/>
<TableColumn Name="Column53" Width="41.4"/>
<TableColumn Name="Column54" Width="41.4"/>
<TableColumn Name="Column55" Width="31.95"/>
<TableColumn Name="Column56" Width="41.4"/>
<TableColumn Name="Column57" Width="31.95"/>
<TableColumn Name="Column58" Width="41.4"/>
<TableColumn Name="Column59" Width="31.95"/>
<TableColumn Name="Column60" Width="31.95"/>
<TableColumn Name="Column61" Width="41.4"/>
<TableColumn Name="Column62" Width="31.95"/>
<TableColumn Name="Column63" Width="76.36"/>
<TableRow Name="Row9" Height="33.07">
<TableCell Name="Cell174" Border.Lines="All" HorzAlign="Center" VertAlign="Center"/>
<TableCell Name="Cell175" Border.Lines="All" HorzAlign="Center" VertAlign="Center"/>
<TableCell Name="Cell176" Border.Lines="All" HorzAlign="Center" VertAlign="Center"/>
<TableCell Name="Cell177" Border.Lines="All" HorzAlign="Center" VertAlign="Center"/>
<TableCell Name="Cell178" Border.Lines="All" HorzAlign="Center" VertAlign="Center" ColSpan="2"/>
<TableCell Name="Cell179" Border.Lines="All" HorzAlign="Center" VertAlign="Center"/>
<TableCell Name="Cell180" Border.Lines="All" HorzAlign="Center" VertAlign="Center"/>
<TableCell Name="Cell181" Border.Lines="All" HorzAlign="Center" VertAlign="Center"/>
<TableCell Name="Cell182" Border.Lines="All" HorzAlign="Center" VertAlign="Center"/>
<TableCell Name="Cell183" Border.Lines="All" HorzAlign="Center" VertAlign="Center"/>
<TableCell Name="Cell184" Border.Lines="All" HorzAlign="Center" VertAlign="Center"/>
<TableCell Name="Cell185" Border.Lines="All" HorzAlign="Center" VertAlign="Center"/>
<TableCell Name="Cell186" Border.Lines="All" HorzAlign="Center" VertAlign="Center"/>
<TableCell Name="Cell187" Border.Lines="All" HorzAlign="Center" VertAlign="Center"/>
<TableCell Name="Cell188" Border.Lines="All" HorzAlign="Center" VertAlign="Center"/>
<TableCell Name="Cell189" Border.Lines="All" HorzAlign="Center" VertAlign="Center"/>
<TableCell Name="Cell190" Border.Lines="All" HorzAlign="Center" VertAlign="Center"/>
<TableCell Name="Cell191" Border.Lines="All" HorzAlign="Center" VertAlign="Center"/>
<TableCell Name="Cell192" Border.Lines="All" HorzAlign="Center" VertAlign="Center"/>
<TableCell Name="Cell193" Border.Lines="All" HorzAlign="Center" VertAlign="Center"/>
<TableCell Name="Cell194" Border.Lines="All" HorzAlign="Center" VertAlign="Center"/>
</TableRow>
</TableObject>
</ChildBand>
</ColumnFooterBand>
<PageFooterBand Name="PageFooter1" Top="304.2" Width="971.46" Height="34.02" Guides="0,34.02">
<TableObject Name="Table4" Width="970.89" Height="34.02">
<TableColumn Name="Column64" Width="31.95"/>
<TableColumn Name="Column65" Width="31.95"/>
<TableColumn Name="Column66" Width="98.1"/>
<TableColumn Name="Column67" Width="98.1"/>
<TableColumn Name="Column68" Width="50.85"/>
<TableColumn Name="Column69" Width="60.3"/>
<TableColumn Name="Column70" Width="69.75"/>
<TableColumn Name="Column71" Width="50.85"/>
<TableColumn Name="Column72" Width="1.9"/>
<TableColumn Name="Column73" Width="1.9"/>
<TableColumn Name="Column74" Width="41.4"/>
<TableColumn Name="Column75" Width="41.4"/>
<TableColumn Name="Column76" Width="41.4"/>
<TableColumn Name="Column77" Width="41.4"/>
<TableColumn Name="Column78" Width="41.4"/>
<TableColumn Name="Column79" Width="41.4"/>
<TableColumn Name="Column80" Width="41.4"/>
<TableColumn Name="Column81" Width="41.4"/>
<TableColumn Name="Column82" Width="50.85"/>
<TableColumn Name="Column83" Width="31.95"/>
<TableColumn Name="Column84" Width="61.24"/>
<TableRow Name="Row10" Height="34.02">
<TableCell Name="Cell195" Border.Lines="All" Text="焊接责任工程师:" VertAlign="Center" Font="宋体, 10.5pt" ColSpan="10"/>
<TableCell Name="Cell196" Border.Lines="All" HorzAlign="Center" VertAlign="Center" Font="宋体, 10.5pt"/>
<TableCell Name="Cell197" Border.Lines="All" HorzAlign="Center" VertAlign="Center" Font="宋体, 10.5pt"/>
<TableCell Name="Cell198" Border.Lines="All" HorzAlign="Center" VertAlign="Center" Font="宋体, 10.5pt"/>
<TableCell Name="Cell199" Border.Lines="All" HorzAlign="Center" VertAlign="Center" Font="宋体, 10.5pt"/>
<TableCell Name="Cell200" Border.Lines="All" HorzAlign="Center" VertAlign="Center" Font="宋体, 10.5pt"/>
<TableCell Name="Cell201" Border.Lines="All" HorzAlign="Center" VertAlign="Center" Font="宋体, 10.5pt"/>
<TableCell Name="Cell202" Border.Lines="All" HorzAlign="Center" VertAlign="Center" Font="宋体, 10.5pt"/>
<TableCell Name="Cell203" Border.Lines="All" HorzAlign="Center" VertAlign="Center" Font="宋体, 10.5pt"/>
<TableCell Name="Cell204" Border.Lines="All" HorzAlign="Center" VertAlign="Center" Font="宋体, 10.5pt"/>
<TableCell Name="Cell205" Border.Lines="All" Text="日期: 年 月 日" VertAlign="Center" Font="宋体, 10.5pt" ColSpan="11"/>
<TableCell Name="Cell206" Border.Lines="All" HorzAlign="Center" VertAlign="Center" Font="宋体, 10.5pt"/>
<TableCell Name="Cell207" Border.Lines="All" HorzAlign="Center" VertAlign="Center" Font="宋体, 10.5pt"/>
<TableCell Name="Cell208" Border.Lines="All" HorzAlign="Center" VertAlign="Center" Font="宋体, 10.5pt"/>
<TableCell Name="Cell209" Border.Lines="All" HorzAlign="Center" VertAlign="Center" Font="宋体, 10.5pt"/>
<TableCell Name="Cell210" Border.Lines="All" HorzAlign="Center" VertAlign="Center" Font="宋体, 10.5pt"/>
<TableCell Name="Cell211" Border.Lines="All" HorzAlign="Center" VertAlign="Center" Font="宋体, 10.5pt"/>
<TableCell Name="Cell212" Border.Lines="All" HorzAlign="Center" VertAlign="Center" Font="宋体, 10.5pt"/>
<TableCell Name="Cell213" Border.Lines="All" HorzAlign="Center" VertAlign="Center" Font="宋体, 10.5pt"/>
<TableCell Name="Cell214" Border.Lines="All" HorzAlign="Center" VertAlign="Center" Font="宋体, 10.5pt"/>
<TableCell Name="Cell215" Border.Lines="All" HorzAlign="Center" VertAlign="Center" Font="宋体, 10.5pt"/>
</TableRow>
</TableObject>
</PageFooterBand>
</ReportPage>
</Report>

View File

@ -1,7 +1,7 @@
<?xml version="1.0" encoding="utf-8"?> <?xml version="1.0" encoding="utf-8"?>
<Report ScriptLanguage="CSharp" ReportInfo.Created="10/24/2024 15:29:01" ReportInfo.Modified="03/06/2025 15:52:38" ReportInfo.CreatorVersion="2017.1.16.0"> <Report ScriptLanguage="CSharp" ReportInfo.Created="10/24/2024 15:29:01" ReportInfo.Modified="01/12/2026 15:59:56" ReportInfo.CreatorVersion="2017.1.16.0">
<Dictionary> <Dictionary>
<MsSqlDataConnection Name="Connection" ConnectionString="rijcmlqdP6ADbZQpLOMXx+Ivgq2SioFBJ7B1iEOuUxf7y1evrTM15NUOhfx6SD2+E9SReEWvg7u6EQdXpqQDDPj6WgkoKQIrTt5q9lJyuCu5B6Nl0MXJ6ZEae4ta6haGkhwICyq72I9X2dS6a3zf8gkFZpb6VtdwKlyFhTivyv2i8IjPiUXLimy5mJMh8U2rXyiDDAJlZ3IoGxz5wFG1jPkBxi97A=="> <MsSqlDataConnection Name="Connection" ConnectionString="rijcmlqtRsOalcXxDhVt62rPEPNYjaATUoMqziRYvJtgNsyJKYAG7kXKvNAMI/qBkgJNPccFsWrhiII6oyX1HS+uwN7YigxVjqUq3vIet2zpPnmWhwvYEvWOOCZZGx6EC4BfGfWX8aPj6bmoF52Z0fnUA9g71duxa/gvChTW/nzu9qsYVuvlVHliMnnu6jEIF9n+/QFNmBFaL33ptL9HABNnvYppw==">
<TableDataSource Name="View_Report_Weld_UsingMat" DataType="System.Int32" Enabled="true" TableName="View_Report_Weld_UsingMat"> <TableDataSource Name="View_Report_Weld_UsingMat" DataType="System.Int32" Enabled="true" TableName="View_Report_Weld_UsingMat">
<Column Name="UsingMatId" DataType="System.String"/> <Column Name="UsingMatId" DataType="System.String"/>
<Column Name="ProjectId" DataType="System.String"/> <Column Name="ProjectId" DataType="System.String"/>

View File

@ -1,7 +1,7 @@
<?xml version="1.0" encoding="utf-8"?> <?xml version="1.0" encoding="utf-8"?>
<Report ScriptLanguage="CSharp" ReportInfo.Created="10/24/2024 10:38:56" ReportInfo.Modified="10/28/2024 16:25:19" ReportInfo.CreatorVersion="2017.1.16.0"> <Report ScriptLanguage="CSharp" ReportInfo.Created="10/24/2024 10:38:56" ReportInfo.Modified="01/12/2026 15:55:39" ReportInfo.CreatorVersion="2017.1.16.0">
<Dictionary> <Dictionary>
<MsSqlDataConnection Name="Connection" ConnectionString="rijcmlqmiolkP7NbNeEtn2w+6M4fMnJnPNmXuIR8xDmDAJlNqPuZFJJo/FFi8XiEF1Bs9fwub8bcmzRijQA8YF4x2+Ex4JYHa+AlyhIrZHAQYbZSFriKwFRHaoN4o5w5U/YM2joSdj3YFw00PBatG3QDnsnNQTen7dmdos4rMma5WNjMvRnFNsz0sw1Q8gK1Bw+V3/g/oZzVMCPMEtFxYOC+ZGreQ=="> <MsSqlDataConnection Name="Connection" ConnectionString="rijcmlqtRsOalcXxDhVt62rPEPNYjaATUoMqziRYvJtgNsyJKYAG7kXKvNAMI/qBkgJNPccFsWrhiII6oyX1HS+uwN7YigxVjqUq3vIet2zpPnmWhwvYEvWOOCZZGx6EC4BfGfWX8aPj6bmoF52Z0fnUA9g71duxa/gvChTW/nzu9qsYVuvlVHliMnnu6jEIF9n+/QFBZ0b0wVaKcNdAQrlt12Iwg==">
<TableDataSource Name="View_Report_UsingMat" DataType="System.Int32" Enabled="true" TableName="View_Report_UsingMat"> <TableDataSource Name="View_Report_UsingMat" DataType="System.Int32" Enabled="true" TableName="View_Report_UsingMat">
<Column Name="UsingMatId" DataType="System.String"/> <Column Name="UsingMatId" DataType="System.String"/>
<Column Name="ProjectId" DataType="System.String"/> <Column Name="ProjectId" DataType="System.String"/>

View File

@ -1,5 +1,5 @@
<?xml version="1.0" encoding="utf-8"?> <?xml version="1.0" encoding="utf-8"?>
<Report ScriptLanguage="CSharp" ReportInfo.Created="11/20/2024 14:22:21" ReportInfo.Modified="05/28/2025 15:16:00" ReportInfo.CreatorVersion="2017.1.16.0"> <Report ScriptLanguage="CSharp" ReportInfo.Created="11/20/2024 14:22:21" ReportInfo.Modified="01/13/2026 16:28:14" ReportInfo.CreatorVersion="2017.1.16.0">
<ScriptText>using System; <ScriptText>using System;
using System.Collections; using System.Collections;
using System.Collections.Generic; using System.Collections.Generic;
@ -42,7 +42,7 @@ namespace FastReport
} }
</ScriptText> </ScriptText>
<Dictionary> <Dictionary>
<MsSqlDataConnection Name="Connection" ConnectionString="rijcmlqtRsOalcXxDhVt62rPEPNYjaATUoMqziRYvJtgNsyJKYAG7kXKvNAMI/qBkgJNPccFsWrhiII6oyX1HS+uwN7YigxVjqUq3vIet2zpPnmWhwvYEvWOOCZZGx6EC4BfGfWX8aPj6bmoF52Z0fnUA9g71duxa/gvChTW/nzu9qsYVuvlVHliMnnu6jEIF9n+/QFvgq9VSYe6G7q894hcaVyIA=="> <MsSqlDataConnection Name="Connection" ConnectionString="rijcmlqtRsOalcXxDhVt62rPEPNYjaATUoMqziRYvJtgNsyJKYAG7kXKvNAMI/qBkgJNPccFsWrhiII6oyX1HS+uwN7YigxVjqUq3vIet2zpPnmWhwvYEvWOOCZZGx6EC4BfGfWX8aPj6bmoF52Z0fnUA9g71duxa/gvChTW/nzu9qsYVuvlVHliMnnu6jEIF9n+/QFUG9g69GfVA9m0SQU5+zU8g==">
<TableDataSource Name="MainData" DataType="System.Int32" PropName="Attach_Image" Enabled="true" TableName="MainData"> <TableDataSource Name="MainData" DataType="System.Int32" PropName="Attach_Image" Enabled="true" TableName="MainData">
<Column Name="ProjectName" DataType="System.String" PropName="attach_image_id"/> <Column Name="ProjectName" DataType="System.String" PropName="attach_image_id"/>
<Column Name="CheckUnit" DataType="System.String" PropName="image_series"/> <Column Name="CheckUnit" DataType="System.String" PropName="image_series"/>

View File

@ -1,5 +1,5 @@
<?xml version="1.0" encoding="utf-8"?> <?xml version="1.0" encoding="utf-8"?>
<Report ScriptLanguage="CSharp" ReportInfo.Created="11/20/2024 09:40:31" ReportInfo.Modified="10/10/2025 21:47:40" ReportInfo.CreatorVersion="2017.1.16.0"> <Report ScriptLanguage="CSharp" ReportInfo.Created="01/13/2026 15:07:00" ReportInfo.Modified="01/13/2026 16:29:44" ReportInfo.CreatorVersion="2017.1.16.0">
<ScriptText>using System; <ScriptText>using System;
using System.Collections; using System.Collections;
using System.Collections.Generic; using System.Collections.Generic;
@ -18,7 +18,8 @@ namespace FastReport
{ {
public class ReportScript public class ReportScript
{ {
private void Table2_ManualBuild(object sender, EventArgs e)
private void Table3_ManualBuild(object sender, EventArgs e)
{ {
DataSourceBase rowData = Report.GetDataSource(&quot;Data&quot;); DataSourceBase rowData = Report.GetDataSource(&quot;Data&quot;);
// init the data source // init the data source
@ -30,8 +31,8 @@ namespace FastReport
while (rowData.HasMoreRows) while (rowData.HasMoreRows)
{ {
// print the table body // print the table body
Table2.PrintRow(0); Table3.PrintRow(0);
Table2.PrintColumns(); Table3.PrintColumns();
// go next data source row // go next data source row
rowData.Next(); rowData.Next();
@ -41,22 +42,20 @@ namespace FastReport
} }
</ScriptText> </ScriptText>
<Dictionary> <Dictionary>
<MsSqlDataConnection Name="Connection" ConnectionString="rijcmlqtRsOalcXxDhVt62rPEPNYjaATUoMqziRYvJtgNsyJKYAG7kXKvNAMI/qBkgJNPccFsWrhiII6oyX1HS+uwN7YigxVjqUq3vIet2zpPnmWhwvYEvWOOCZZGx6EC4BfGfWX8aPj6bmoF52Z0fnUA9g71duxa/gvChTW/nzu9qsYVuvlVHliMnnu6jEIF9n+/QFPz3ajaxZMvq2A8dZOM8eLw=="> <MsSqlDataConnection Name="Connection" ConnectionString="rijcmlqtRsOalcXxDhVt62rPEPNYjaATUoMqziRYvJtgNsyJKYAG7kXKvNAMI/qBkgJNPccFsWrhiII6oyX1HS+uwN7YigxVjqUq3vIet2zpPnmWhwvYEvWOOCZZGx6EC4BfGfWX8aPj6bmoF52Z0fnUA9g71duxa/gvChTW/nzu9qsYVuvlVHliMnnu6jEIF9n+/QFxby2//5xuwxZB+4FrSeDPA==">
<TableDataSource Name="MainData" DataType="System.Int32" PropName="Attach_Image" Enabled="true" TableName="MainData"> <TableDataSource Name="MainData" DataType="System.Int32" PropName="Attach_Image" Enabled="true" TableName="MainData">
<Column Name="ProjectName" DataType="System.String" PropName="attach_image_id"/> <Column Name="ProjectName" DataType="System.String" PropName="attach_image_id"/>
<Column Name="InstallastionName" DataType="System.String" PropName="image_series"/> <Column Name="InstallastionName" DataType="System.String" PropName="image_series"/>
<Column Name="InstallatinCode" DataType="System.String" PropName="file_name"/> <Column Name="InstallatinCode" DataType="System.String" PropName="file_name"/>
<Column Name="TrustUnit" DataType="System.String" PropName="file_size"/> <Column Name="TrustCode" DataType="System.String" PropName="file_size"/>
<Column Name="TrustCode" DataType="System.String" PropName="file_type"/> <Column Name="CheckUnit" DataType="System.String" PropName="file_type"/>
<Column Name="CheckUnit" DataType="System.String" PropName="Column"/> <Column Name="WME_Code" DataType="System.String" PropName="created_date"/>
<Column Name="ItemName" DataType="System.String" PropName="Column"/> <Column Name="JST_Name" DataType="System.String" PropName="created_by"/>
<Column Name="WME_Code" DataType="System.String" PropName="Column"/> <Column Name="IsHot" DataType="System.String" PropName="series_desc"/>
<Column Name="IsHot" DataType="System.String" PropName="Column"/> <Column Name="NDT_Code" DataType="System.String" PropName="file_path"/>
<Column Name="JST_Name" DataType="System.String" PropName="Column"/> <Column Name="CH_NDTCriteria" DataType="System.String" PropName="series_timestamp"/>
<Column Name="NDTR_Name" DataType="System.String" PropName="Column"/> <Column Name="NDTR_Name" DataType="System.String" PropName="Column"/>
<Column Name="NDT_Code" DataType="System.String" PropName="Column"/>
<Column Name="AcceptGrade" DataType="System.String" PropName="Column"/> <Column Name="AcceptGrade" DataType="System.String" PropName="Column"/>
<Column Name="CH_NDTCriteria" DataType="System.String" PropName="Column"/>
</TableDataSource> </TableDataSource>
<TableDataSource Name="Data" DataType="System.Int32" PropName="AttachFile" Enabled="true" TableName="Data"> <TableDataSource Name="Data" DataType="System.Int32" PropName="AttachFile" Enabled="true" TableName="Data">
<Column Name="SortNum" DataType="System.String" PropName="AttachFileId"/> <Column Name="SortNum" DataType="System.String" PropName="AttachFileId"/>
@ -66,237 +65,219 @@ namespace FastReport
<Column Name="Ste_Code" DataType="System.String" PropName="MenuId"/> <Column Name="Ste_Code" DataType="System.String" PropName="MenuId"/>
<Column Name="WelderCode" DataType="System.String" PropName="Column"/> <Column Name="WelderCode" DataType="System.String" PropName="Column"/>
<Column Name="ISO_Name" DataType="System.String" PropName="Column"/> <Column Name="ISO_Name" DataType="System.String" PropName="Column"/>
<Column Name="ISO_Number" DataType="System.String"/>
</TableDataSource> </TableDataSource>
</MsSqlDataConnection> </MsSqlDataConnection>
<Parameter Name="JointCount" DataType="System.String"/>
<Parameter Name="CheckCount" DataType="System.String"/>
<Parameter Name="pointDate" DataType="System.String"/>
</Dictionary> </Dictionary>
<ReportPage Name="Page1" LeftMargin="25" TopMargin="20" RightMargin="20" BottomMargin="21" FirstPageSource="4" OtherPagesSource="4" Guides="0,623.64,159.97,30.24,89.96,398.65,32.51,39.77,85.13,77.57,66.53,81.27,479.54,70.01,313.52,241.24,557.11,273.75,623.26,623.36,155.84,311.68,467.52"> <ReportPage Name="Page1" RawPaperSize="9" LeftMargin="25" TopMargin="20" RightMargin="20" BottomMargin="21" Guides="0,623.7,143.64,381.78,468.72,124.74,238.14,498.96,30.24,68.25,29.4,240.45,76.65,412.65,95.55,67.2,163.8,317.1,479.85,556.5,38.85,623.6,96.85,59.05,155.9,311.8,467.7,214.95,370.85,526.75">
<PageHeaderBand Name="PageHeader1" Width="623.7" Height="349.65" Guides="0,349.65,103.95,18.9,56.7,75.6,28.35,132.3,160.65,198.45,37.8,236.25,274.05,311.85"> <PageHeaderBand Name="PageHeader1" Width="623.7" Height="302.22" Guides="0,85.05,47.25,37.8,302.22,31.47,62.94,103.86,40.92,144.78,185.7,217.17">
<TableObject Name="Table1" Width="623.64" Height="349.65"> <TableObject Name="Table1" Width="623.7" Height="85.05">
<TableColumn Name="Column1" Width="39.77"/> <TableColumn Name="Column1" Width="143.64"/>
<TableColumn Name="Column2" Width="30.24"/> <TableColumn Name="Column2" Width="238.14"/>
<TableColumn Name="Column3" Width="89.96"/> <TableColumn Name="Column3" Width="86.94"/>
<TableColumn Name="Column5" Width="81.27"/> <TableColumn Name="Column4" Width="30.24"/>
<TableColumn Name="Column11" Width="32.51"/> <TableColumn Name="Column5" Width="124.74"/>
<TableColumn Name="Column6" Width="39.77"/> <TableRow Name="Row1" Height="47.25">
<TableColumn Name="Column7" Width="85.13"/> <TableCell Name="Cell1" Border.Lines="All" Text="浙江石油化工&#13;&#10;有限公司" HorzAlign="Center" VertAlign="Center" Font="宋体, 10.5pt" RowSpan="2"/>
<TableColumn Name="Column8" Width="80.89"/> <TableCell Name="Cell2" Border.Lines="All" Text="管道焊缝检测委托单" HorzAlign="Center" VertAlign="Center" Font="宋体, 16pt, style=Bold" RowSpan="2"/>
<TableColumn Name="Column9" Width="77.57"/> <TableCell Name="Cell3" Border.Lines="Left, Top" Text="工程名称:" Font="宋体, 10.5pt"/>
<TableColumn Name="Column10" Width="66.53"/> <TableCell Name="Cell4" Border.Lines="Right, Top" Text="[MainData.ProjectName]" Font="楷体, 10.5pt" ColSpan="2"/>
<TableRow Name="Row1"> <TableCell Name="Cell5" Border.Lines="Left, Right, Top" VertAlign="Center" Font="宋体, 10.5pt"/>
<TableCell Name="Cell1" Border.Lines="All" Text="浙江石油化工&#13;&#10;有限公司" HorzAlign="Center" VertAlign="Center" Font="宋体, 10.5pt" ColSpan="3" RowSpan="3"/>
<TableCell Name="Cell2" Border.Lines="All" Font="宋体, 10.5pt"/>
<TableCell Name="Cell3" Border.Lines="All" Font="宋体, 10.5pt"/>
<TableCell Name="Cell5" Border.Lines="All" Text="管道焊缝检测委托单" HorzAlign="Center" VertAlign="Center" Font="宋体, 16pt, style=Bold" ColSpan="4" RowSpan="3"/>
<TableCell Name="Cell101" Border.Lines="All"/>
<TableCell Name="Cell26" Border.Lines="All" Font="宋体, 10.5pt"/>
<TableCell Name="Cell27" Border.Lines="All" Font="宋体, 10.5pt"/>
<TableCell Name="Cell28" Border.Lines="Right, Top" Text="工程名称:" Font="宋体, 10.5pt" ColSpan="3"/>
<TableCell Name="Cell29" Font="宋体, 10.5pt"/>
<TableCell Name="Cell30" Font="宋体, 10.5pt"/>
</TableRow> </TableRow>
<TableRow Name="Row2" Height="56.7"> <TableRow Name="Row2" Height="37.8">
<TableCell Name="Cell6" Border.Lines="All" Font="宋体, 10.5pt"/> <TableCell Name="Cell6" Border.Lines="All" HorzAlign="Center" VertAlign="Center" Font="宋体, 10.5pt"/>
<TableCell Name="Cell7" Border.Lines="All" Font="宋体, 10.5pt"/> <TableCell Name="Cell7" Border.Lines="All" HorzAlign="Center" VertAlign="Center" Font="宋体, 10.5pt"/>
<TableCell Name="Cell8" Border.Lines="All" Font="宋体, 10.5pt"/> <TableCell Name="Cell8" Border.Lines="Left, Bottom" Text="单位工程名称:" VertAlign="Center" Font="宋体, 10.5pt" ColSpan="2"/>
<TableCell Name="Cell10" Border.Lines="All" Font="宋体, 10.5pt"/> <TableCell Name="Cell9" Border.Lines="Left, Right, Bottom" VertAlign="Center" Font="宋体, 10.5pt"/>
<TableCell Name="Cell102" Border.Lines="All"/> <TableCell Name="Cell10" Border.Lines="Right, Bottom" Text="管道安装" VertAlign="Center" Font="楷体, 10.5pt"/>
<TableCell Name="Cell31" Border.Lines="All" Font="宋体, 10.5pt"/>
<TableCell Name="Cell32" Border.Lines="All" Font="宋体, 10.5pt"/>
<TableCell Name="Cell33" Border.Lines="Right" Text="[MainData.ProjectName]" Font="楷体, 10.5pt" ColSpan="3"/>
<TableCell Name="Cell34" Font="宋体, 10.5pt"/>
<TableCell Name="Cell35" Font="宋体, 10.5pt"/>
</TableRow> </TableRow>
<TableRow Name="Row3" Height="28.35"> </TableObject>
<TableCell Name="Cell11" Border.Lines="All" Font="宋体, 10.5pt"/> <TableObject Name="Table2" Top="85.05" Width="623.7" Height="217.17" Border.Lines="Left, Bottom">
<TableCell Name="Cell12" Border.Lines="All" Font="宋体, 10.5pt"/> <TableColumn Name="Column6" Width="38.85"/>
<TableCell Name="Cell13" Border.Lines="All" Font="宋体, 10.5pt"/> <TableColumn Name="Column7" Width="29.4"/>
<TableCell Name="Cell15" Border.Lines="All" Font="宋体, 10.5pt"/> <TableColumn Name="Column8" Width="95.55"/>
<TableCell Name="Cell103" Border.Lines="All"/> <TableColumn Name="Column9" Width="76.65"/>
<TableCell Name="Cell36" Border.Lines="All" Font="宋体, 10.5pt"/> <TableColumn Name="Column10" Width="76.65"/>
<TableCell Name="Cell37" Border.Lines="All" Font="宋体, 10.5pt"/> <TableColumn Name="Column11" Width="95.55"/>
<TableCell Name="Cell38" Text="单位工程:" VertAlign="Center" Font="宋体, 10.5pt"/> <TableColumn Name="Column12" Width="67.2"/>
<TableCell Name="Cell39" Border.Lines="Right" Text="管道安装" VertAlign="Center" Font="楷体, 10.5pt" ColSpan="2"/> <TableColumn Name="Column13" Width="76.65"/>
<TableCell Name="Cell40" Font="宋体, 10.5pt"/> <TableColumn Name="Column14" Width="67.2"/>
<TableRow Name="Row3" Height="31.47">
<TableCell Name="Cell11" Border.Lines="All" Text="装置名称" HorzAlign="Center" VertAlign="Center" Font="宋体, 10.5pt" ColSpan="2"/>
<TableCell Name="Cell12" Border.Lines="All" HorzAlign="Center" VertAlign="Center" Font="宋体, 10.5pt"/>
<TableCell Name="Cell13" Border.Lines="All" Text="[MainData.InstallastionName]" HorzAlign="Center" VertAlign="Center" Font="楷体, 10.5pt" ColSpan="2"/>
<TableCell Name="Cell14" Border.Lines="All" HorzAlign="Center" VertAlign="Center" Font="宋体, 10.5pt"/>
<TableCell Name="Cell15" Border.Lines="All" Text="装置主项号" HorzAlign="Center" VertAlign="Center" Font="宋体, 10.5pt" ColSpan="2"/>
<TableCell Name="Cell36" Border.Lines="All" HorzAlign="Center" VertAlign="Center" Font="宋体, 10.5pt"/>
<TableCell Name="Cell37" Border.Lines="All" Text="[MainData.InstallatinCode]" HorzAlign="Center" VertAlign="Center" Font="楷体, 10.5pt" ColSpan="3"/>
<TableCell Name="Cell38" Border.Lines="All" HorzAlign="Center" VertAlign="Center" Font="楷体, 10.5pt"/>
<TableCell Name="Cell39" Border.Lines="All" HorzAlign="Center" VertAlign="Center" Font="楷体, 10.5pt"/>
</TableRow> </TableRow>
<TableRow Name="Row4" Height="28.35"> <TableRow Name="Row4" Height="31.47">
<TableCell Name="Cell16" Border.Lines="All" Text="装置名称" HorzAlign="Center" VertAlign="Center" Font="宋体, 10.5pt" ColSpan="2"/> <TableCell Name="Cell16" Border.Lines="All" Text="委托单位" HorzAlign="Center" VertAlign="Center" Font="宋体, 10.5pt" ColSpan="2"/>
<TableCell Name="Cell17" Border.Lines="All" HorzAlign="Center" VertAlign="Center" Font="宋体, 10.5pt"/> <TableCell Name="Cell17" Border.Lines="All" HorzAlign="Center" VertAlign="Center" Font="宋体, 10.5pt"/>
<TableCell Name="Cell18" Border.Lines="All" Text="[MainData.InstallastionName]" HorzAlign="Center" VertAlign="Center" Font="楷体, 10.5pt" ColSpan="4"/> <TableCell Name="Cell18" Border.Lines="All" Text="浙江石油化工有限公司" HorzAlign="Center" VertAlign="Center" Font="楷体, 10.5pt" ColSpan="2"/>
<TableCell Name="Cell20" Border.Lines="All" HorzAlign="Center" VertAlign="Center" Font="楷体, 10.5pt"/> <TableCell Name="Cell19" Border.Lines="All" HorzAlign="Center" VertAlign="Center" Font="宋体, 10.5pt"/>
<TableCell Name="Cell104" HorzAlign="Center" VertAlign="Center" Font="楷体, 9pt"/> <TableCell Name="Cell20" Border.Lines="All" Text="委托单编号" HorzAlign="Center" VertAlign="Center" Font="宋体, 10.5pt" ColSpan="2"/>
<TableCell Name="Cell41" Border.Lines="All" HorzAlign="Center" VertAlign="Center" Font="楷体, 10.5pt"/> <TableCell Name="Cell40" Border.Lines="All" HorzAlign="Center" VertAlign="Center" Font="宋体, 10.5pt"/>
<TableCell Name="Cell42" Border.Lines="All" Text="装置主项号" HorzAlign="Center" VertAlign="Center" Font="宋体, 10.5pt"/> <TableCell Name="Cell41" Border.Lines="All" Text="[MainData.TrustCode]" HorzAlign="Center" VertAlign="Center" Font="楷体, 10.5pt" ColSpan="3"/>
<TableCell Name="Cell43" Border.Lines="All" Text="[MainData.InstallatinCode]" HorzAlign="Center" VertAlign="Center" Font="楷体, 10.5pt" ColSpan="3"/> <TableCell Name="Cell42" Border.Lines="All" HorzAlign="Center" VertAlign="Center" Font="楷体, 10.5pt"/>
<TableCell Name="Cell44" Border.Lines="All" HorzAlign="Center" VertAlign="Center" Font="楷体, 10.5pt"/> <TableCell Name="Cell43" Border.Lines="All" HorzAlign="Center" VertAlign="Center" Font="楷体, 10.5pt"/>
<TableCell Name="Cell45" Border.Lines="All" HorzAlign="Center" VertAlign="Center" Font="楷体, 10.5pt"/>
</TableRow> </TableRow>
<TableRow Name="Row5" Height="28.35"> <TableRow Name="Row5" Height="40.92">
<TableCell Name="Cell21" Border.Lines="All" Text="委托单位" HorzAlign="Center" VertAlign="Center" Font="宋体, 10.5pt" ColSpan="2"/> <TableCell Name="Cell21" Border.Lines="All" Text="承包商" HorzAlign="Center" VertAlign="Center" Font="宋体, 10.5pt" ColSpan="2"/>
<TableCell Name="Cell22" Border.Lines="All" HorzAlign="Center" VertAlign="Center" Font="宋体, 10.5pt"/> <TableCell Name="Cell22" Border.Lines="All" HorzAlign="Center" VertAlign="Center" Font="宋体, 10.5pt"/>
<TableCell Name="Cell23" Border.Lines="All" Text="浙江石油化工有限公司" HorzAlign="Center" VertAlign="Center" Font="楷体, 10.5pt" ColSpan="4"/> <TableCell Name="Cell23" Border.Lines="All" Text="鼎盛石化工程有限公司" HorzAlign="Center" VertAlign="Center" Font="楷体, 10.5pt"/>
<TableCell Name="Cell25" Border.Lines="All" HorzAlign="Center" VertAlign="Center" Font="楷体, 10.5pt"/> <TableCell Name="Cell24" Border.Lines="All" Text="检测单位" HorzAlign="Center" VertAlign="Center" Font="宋体, 10.5pt"/>
<TableCell Name="Cell105" HorzAlign="Center" VertAlign="Center" Font="楷体, 9pt"/> <TableCell Name="Cell25" Border.Lines="All" Text="[MainData.CheckUnit]" HorzAlign="Center" VertAlign="Center" Font="楷体, 10.5pt"/>
<TableCell Name="Cell46" Border.Lines="All" HorzAlign="Center" VertAlign="Center" Font="楷体, 10.5pt"/> <TableCell Name="Cell44" Border.Lines="All" Text="检件名称" HorzAlign="Center" VertAlign="Center" Font="宋体, 10.5pt"/>
<TableCell Name="Cell47" Border.Lines="All" Text="委托单编号" HorzAlign="Center" VertAlign="Center" Font="宋体, 10.5pt"/> <TableCell Name="Cell45" Border.Lines="All" Text="工业管道" HorzAlign="Center" VertAlign="Center" Font="楷体, 10.5pt"/>
<TableCell Name="Cell48" Border.Lines="All" Text="[MainData.TrustCode]" HorzAlign="Center" VertAlign="Center" Font="楷体, 10.5pt" ColSpan="3"/> <TableCell Name="Cell46" Border.Lines="All" Text="焊接方法" HorzAlign="Center" VertAlign="Center" Font="宋体, 10.5pt"/>
<TableCell Name="Cell49" Border.Lines="All" HorzAlign="Center" VertAlign="Center" Font="楷体, 10.5pt"/> <TableCell Name="Cell47" Border.Lines="All" Text="[MainData.WME_Code]" HorzAlign="Center" VertAlign="Center" Font="楷体, 10.5pt"/>
<TableCell Name="Cell50" Border.Lines="All" HorzAlign="Center" VertAlign="Center" Font="楷体, 10.5pt"/>
</TableRow> </TableRow>
<TableRow Name="Row6" Height="37.8"> <TableRow Name="Row6" Height="40.92">
<TableCell Name="Cell51" Border.Lines="All" Text="承包商" HorzAlign="Center" VertAlign="Center" Font="宋体, 10.5pt" ColSpan="2"/> <TableCell Name="Cell26" Border.Lines="All" Text="坡口形式" HorzAlign="Center" VertAlign="Center" Font="宋体, 10.5pt" ColSpan="2"/>
<TableCell Name="Cell52" Border.Lines="All" HorzAlign="Center" VertAlign="Center" Font="宋体, 10.5pt"/> <TableCell Name="Cell27" Border.Lines="All" HorzAlign="Center" VertAlign="Center" Font="宋体, 10.5pt"/>
<TableCell Name="Cell53" Border.Lines="All" Text="鼎盛石化工程有限公司" HorzAlign="Center" VertAlign="Center" Font="楷体, 10.5pt"/> <TableCell Name="Cell28" Border.Lines="All" Text="[MainData.JST_Name]" HorzAlign="Center" VertAlign="Center" Font="楷体, 10.5pt"/>
<TableCell Name="Cell55" Border.Lines="All" Text="检测单位" HorzAlign="Center" VertAlign="Center" Font="宋体, 10.5pt"/> <TableCell Name="Cell29" Border.Lines="All" Text="热处理状态" HorzAlign="Center" VertAlign="Center" Font="宋体, 10.5pt"/>
<TableCell Name="Cell106" Border.Lines="All" Text="[MainData.CheckUnit]" HorzAlign="Center" VertAlign="Center" Font="楷体, 10.5pt" ColSpan="2"/> <TableCell Name="Cell30" Border.Lines="All" Text="[MainData.IsHot]" HorzAlign="Center" VertAlign="Center" Font="楷体, 10.5pt"/>
<TableCell Name="Cell56" Border.Lines="All" HorzAlign="Center" VertAlign="Center" Font="楷体, 10.5pt"/> <TableCell Name="Cell48" Border.Lines="All" Text="检测时机" HorzAlign="Center" VertAlign="Center" Font="宋体, 10.5pt"/>
<TableCell Name="Cell57" Border.Lines="All" Text="检件名称" HorzAlign="Center" VertAlign="Center" Font="宋体, 10.5pt"/> <TableCell Name="Cell49" Border.Lines="All" Text="焊后" HorzAlign="Center" VertAlign="Center" Font="楷体, 10.5pt"/>
<TableCell Name="Cell58" Border.Lines="All" Text="工业管道" HorzAlign="Center" VertAlign="Center" Font="楷体, 10.5pt"/> <TableCell Name="Cell50" Border.Lines="All" Text="检测方法" HorzAlign="Center" VertAlign="Center" Font="宋体, 10.5pt"/>
<TableCell Name="Cell59" Border.Lines="All" Text="外观检查" HorzAlign="Center" VertAlign="Center" Font="宋体, 10.5pt"/> <TableCell Name="Cell51" Border.Lines="All" Text="[MainData.NDT_Code]" HorzAlign="Center" VertAlign="Center" Font="楷体, 10.5pt"/>
<TableCell Name="Cell60" Border.Lines="All" Text="合格" HorzAlign="Center" VertAlign="Center" Font="楷体, 10.5pt"/>
</TableRow> </TableRow>
<TableRow Name="Row7" Height="37.8"> <TableRow Name="Row7" Height="40.92">
<TableCell Name="Cell61" Border.Lines="All" Text="焊接方法" HorzAlign="Center" VertAlign="Center" Font="宋体, 10.5pt" ColSpan="2"/> <TableCell Name="Cell31" Border.Lines="All" Text="检测标准" HorzAlign="Center" VertAlign="Center" Font="宋体, 10.5pt" ColSpan="2"/>
<TableCell Name="Cell62" Border.Lines="All" HorzAlign="Center" VertAlign="Center" Font="宋体, 10.5pt"/> <TableCell Name="Cell32" Border.Lines="All" HorzAlign="Center" VertAlign="Center" Font="宋体, 10.5pt"/>
<TableCell Name="Cell63" Border.Lines="All" Text="[MainData.WME_Code]" HorzAlign="Center" VertAlign="Center" Font="楷体, 10.5pt"/> <TableCell Name="Cell33" Border.Lines="All" Text="[MainData.CH_NDTCriteria]" HorzAlign="Center" VertAlign="Center" Font="楷体, 10.5pt"/>
<TableCell Name="Cell65" Border.Lines="All" Text="热处理状态" HorzAlign="Center" VertAlign="Center" Font="宋体, 10.5pt"/> <TableCell Name="Cell34" Border.Lines="All" Text="技术等级" HorzAlign="Center" VertAlign="Center" Font="宋体, 10.5pt"/>
<TableCell Name="Cell107" Border.Lines="All" Text="[MainData.IsHot]" HorzAlign="Center" VertAlign="Center" Font="楷体, 10.5pt" ColSpan="2"/> <TableCell Name="Cell35" Border.Lines="All" Text="AB级" HorzAlign="Center" VertAlign="Center" Font="楷体, 10.5pt"/>
<TableCell Name="Cell66" Border.Lines="All" HorzAlign="Center" VertAlign="Center" Font="楷体, 10.5pt"/> <TableCell Name="Cell52" Border.Lines="All" Text="检测比例" HorzAlign="Center" VertAlign="Center" Font="宋体, 10.5pt"/>
<TableCell Name="Cell67" Border.Lines="All" Text="坡口形式" HorzAlign="Center" VertAlign="Center" Font="宋体, 10.5pt"/> <TableCell Name="Cell53" Border.Lines="All" Text="[MainData.NDTR_Name]" HorzAlign="Center" VertAlign="Center" Font="楷体, 10.5pt"/>
<TableCell Name="Cell68" Border.Lines="All" Text="[MainData.JST_Name]" HorzAlign="Center" VertAlign="Center" Font="楷体, 10.5pt"/> <TableCell Name="Cell54" Border.Lines="All" Text="合格级别" HorzAlign="Center" VertAlign="Center" Font="宋体, 10.5pt"/>
<TableCell Name="Cell69" Border.Lines="All" Text="检测比例" HorzAlign="Center" VertAlign="Center" Font="宋体, 10.5pt"/> <TableCell Name="Cell55" Border.Lines="All" Text="[MainData.AcceptGrade]" HorzAlign="Center" VertAlign="Center" Font="楷体, 10.5pt"/>
<TableCell Name="Cell70" Border.Lines="All" Text="[MainData.NDTR_Name]" HorzAlign="Center" VertAlign="Center" Font="楷体, 10.5pt"/>
</TableRow> </TableRow>
<TableRow Name="Row8" Height="37.8"> <TableRow Name="Row8" Height="31.47">
<TableCell Name="Cell71" Border.Lines="All" Text="检测方法" HorzAlign="Center" VertAlign="Center" Font="宋体, 10.5pt" ColSpan="2"/> <TableCell Name="Cell56" Border.Lines="All" Text="序号" HorzAlign="Center" VertAlign="Center" Font="宋体, 10.5pt"/>
<TableCell Name="Cell72" Border.Lines="All" HorzAlign="Center" VertAlign="Center" Font="宋体, 10.5pt"/> <TableCell Name="Cell57" Border.Lines="All" Text="管线编号" HorzAlign="Center" VertAlign="Center" Font="宋体, 10.5pt" ColSpan="3"/>
<TableCell Name="Cell73" Border.Lines="All" Text="[MainData.NDT_Code]" HorzAlign="Center" VertAlign="Center" Font="楷体, 10.5pt"/> <TableCell Name="Cell58" Border.Lines="All" HorzAlign="Center" VertAlign="Center" Font="宋体, 10.5pt"/>
<TableCell Name="Cell75" Border.Lines="All" Text="检测时机" HorzAlign="Center" VertAlign="Center" Font="宋体, 10.5pt"/> <TableCell Name="Cell59" Border.Lines="All" HorzAlign="Center" VertAlign="Center" Font="宋体, 10.5pt"/>
<TableCell Name="Cell108" Border.Lines="All" Text="焊后" HorzAlign="Center" VertAlign="Center" Font="楷体, 10.5pt" ColSpan="2"/> <TableCell Name="Cell60" Border.Lines="All" Text="焊口编号" HorzAlign="Center" VertAlign="Center" Font="宋体, 10.5pt"/>
<TableCell Name="Cell76" Border.Lines="All" HorzAlign="Center" VertAlign="Center" Font="楷体, 10.5pt"/> <TableCell Name="Cell61" Border.Lines="All" Text="规格" HorzAlign="Center" VertAlign="Center" Font="宋体, 10.5pt"/>
<TableCell Name="Cell77" Border.Lines="All" Text="技术等级" HorzAlign="Center" VertAlign="Center" Font="宋体, 10.5pt"/> <TableCell Name="Cell62" Border.Lines="All" Text="材质" HorzAlign="Center" VertAlign="Center" Font="宋体, 10.5pt"/>
<TableCell Name="Cell78" Border.Lines="All" Text="AB级" HorzAlign="Center" VertAlign="Center" Font="楷体, 10.5pt"/> <TableCell Name="Cell63" Border.Lines="All" Text="焊工号" HorzAlign="Center" VertAlign="Center" Font="宋体, 10.5pt"/>
<TableCell Name="Cell79" Border.Lines="All" Text="合格级别" HorzAlign="Center" VertAlign="Center" Font="宋体, 10.5pt"/> <TableCell Name="Cell64" Border.Lines="All" Text="管道等级" HorzAlign="Center" VertAlign="Center" Font="宋体, 10.5pt"/>
<TableCell Name="Cell80" Border.Lines="All" Text="[MainData.AcceptGrade]" HorzAlign="Center" VertAlign="Center" Font="楷体, 10.5pt"/>
</TableRow>
<TableRow Name="Row9" Height="37.8">
<TableCell Name="Cell81" Border.Lines="All" Text="检测标准" HorzAlign="Center" VertAlign="Center" Font="宋体, 10.5pt" ColSpan="2"/>
<TableCell Name="Cell82" Border.Lines="All" HorzAlign="Center" VertAlign="Center" Font="宋体, 10.5pt"/>
<TableCell Name="Cell83" Border.Lines="All" Text="[MainData.CH_NDTCriteria]" HorzAlign="Center" Font="楷体, 10.5pt"/>
<TableCell Name="Cell85" Border.Lines="All" Text="检测部位" HorzAlign="Center" VertAlign="Center" Font="宋体, 10.5pt"/>
<TableCell Name="Cell109" Border.Lines="All" Text="焊缝" HorzAlign="Center" VertAlign="Center" Font="楷体, 10.5pt" ColSpan="2"/>
<TableCell Name="Cell86" Border.Lines="All" HorzAlign="Center" VertAlign="Center" Font="楷体, 10.5pt"/>
<TableCell Name="Cell87" Border.Lines="All" Text="焊口总数" HorzAlign="Center" VertAlign="Center" Font="宋体, 10.5pt"/>
<TableCell Name="Cell88" Border.Lines="All" Text="[JointCount]" HorzAlign="Center" VertAlign="Center" Font="楷体, 10.5pt"/>
<TableCell Name="Cell89" Border.Lines="All" Text="检测数量" HorzAlign="Center" VertAlign="Center" Font="宋体, 10.5pt"/>
<TableCell Name="Cell90" Border.Lines="All" Text="[CheckCount]" HorzAlign="Center" VertAlign="Center" Font="楷体, 10.5pt"/>
</TableRow>
<TableRow Name="Row10" Height="37.8">
<TableCell Name="Cell91" Border.Lines="All" Text="序号" HorzAlign="Center" VertAlign="Center" Font="宋体, 10.5pt"/>
<TableCell Name="Cell92" Border.Lines="All" Text="管线编号" HorzAlign="Center" VertAlign="Center" Font="宋体, 10.5pt" ColSpan="2"/>
<TableCell Name="Cell93" Border.Lines="All" HorzAlign="Center" VertAlign="Center" Font="宋体, 10.5pt"/>
<TableCell Name="Cell95" Border.Lines="All" Text="单线号" HorzAlign="Center" VertAlign="Center" Font="宋体, 10.5pt" ColSpan="2"/>
<TableCell Name="Cell110"/>
<TableCell Name="Cell96" Border.Lines="All" Text="焊口编号" HorzAlign="Center" VertAlign="Center" Font="宋体, 10.5pt"/>
<TableCell Name="Cell97" Border.Lines="All" Text="焊口规格" HorzAlign="Center" VertAlign="Center" Font="宋体, 10.5pt"/>
<TableCell Name="Cell98" Border.Lines="All" Text="材质" HorzAlign="Center" VertAlign="Center" Font="宋体, 10.5pt"/>
<TableCell Name="Cell99" Border.Lines="All" Text="焊工号" HorzAlign="Center" VertAlign="Center" Font="宋体, 10.5pt"/>
<TableCell Name="Cell100" Border.Lines="All" Text="管道等级" HorzAlign="Center" VertAlign="Center" Font="宋体, 10.5pt"/>
</TableRow> </TableRow>
</TableObject> </TableObject>
</PageHeaderBand> </PageHeaderBand>
<DataBand Name="Data1" Top="353.65" Width="623.7" Height="37.8" Guides="0,37.8"> <DataBand Name="Data1" Top="306.22" Width="623.7" Height="31.47" Guides="0,31.47">
<TableObject Name="Table2" Width="623.26" Height="37.8" ManualBuildEvent="Table2_ManualBuild"> <TableObject Name="Table3" Width="623.7" Height="31.47" Border.Lines="Left, Bottom" ManualBuildEvent="Table3_ManualBuild">
<TableColumn Name="Column12" Width="39.77"/> <TableColumn Name="Column15" Width="38.85"/>
<TableColumn Name="Column13" Width="30.24"/> <TableColumn Name="Column16" Width="29.4"/>
<TableColumn Name="Column14" Width="89.96"/> <TableColumn Name="Column17" Width="95.55"/>
<TableColumn Name="Column15" Width="81.27"/> <TableColumn Name="Column18" Width="76.65"/>
<TableColumn Name="Column16" Width="32.51"/> <TableColumn Name="Column19" Width="76.65"/>
<TableColumn Name="Column17" Width="39.77"/> <TableColumn Name="Column20" Width="95.55"/>
<TableColumn Name="Column18" Width="85.13"/> <TableColumn Name="Column21" Width="67.2"/>
<TableColumn Name="Column19" Width="80.89"/> <TableColumn Name="Column22" Width="76.65"/>
<TableColumn Name="Column20" Width="77.57"/> <TableColumn Name="Column23" Width="67.2"/>
<TableColumn Name="Column21"/> <TableRow Name="Row14" Height="31.47">
<TableRow Name="Row11" Height="37.8"> <TableCell Name="Cell110" Border.Lines="All" Text="[Data.SortNum]" HorzAlign="Center" VertAlign="Center" Font="楷体, 10.5pt"/>
<TableCell Name="Cell201" Border.Lines="All" Text="[Data.SortNum]" HorzAlign="Center" VertAlign="Center" Font="楷体, 10.5pt"/> <TableCell Name="Cell111" Border.Lines="All" Text="[Data.IsoNo]" HorzAlign="Center" VertAlign="Center" Font="楷体, 10.5pt" ColSpan="3"/>
<TableCell Name="Cell202" Border.Lines="All" Text="[Data.IsoNo]" HorzAlign="Center" VertAlign="Center" Font="楷体, 10.5pt" ColSpan="2"/> <TableCell Name="Cell112" Border.Lines="All" HorzAlign="Center" VertAlign="Center" Font="楷体, 10.5pt"/>
<TableCell Name="Cell203" Border.Lines="All" HorzAlign="Center" VertAlign="Center" Font="楷体, 10.5pt"/> <TableCell Name="Cell113" Border.Lines="All" HorzAlign="Center" VertAlign="Center" Font="楷体, 10.5pt"/>
<TableCell Name="Cell204" Border.Lines="All" Text="[Data.ISO_Number]" HorzAlign="Center" VertAlign="Center" Font="楷体, 10.5pt" ColSpan="2"/> <TableCell Name="Cell114" Border.Lines="All" Text="[Data.JointNo]" HorzAlign="Center" VertAlign="Center" Font="楷体, 10.5pt"/>
<TableCell Name="Cell205" Font="楷体, 10.5pt"/> <TableCell Name="Cell115" Border.Lines="All" Text="[Data.JointDesc]" HorzAlign="Center" VertAlign="Center" Font="楷体, 10.5pt"/>
<TableCell Name="Cell206" Border.Lines="All" Text="[Data.JointNo]" HorzAlign="Center" VertAlign="Center" Font="楷体, 10.5pt"/> <TableCell Name="Cell116" Border.Lines="All" Text="[Data.Ste_Code]" HorzAlign="Center" VertAlign="Center" Font="楷体, 10.5pt"/>
<TableCell Name="Cell207" Border.Lines="All" Text="[Data.JointDesc]" HorzAlign="Center" VertAlign="Center" Font="楷体, 10.5pt"/> <TableCell Name="Cell117" Border.Lines="All" Text="[Data.WelderCode]" HorzAlign="Center" VertAlign="Center" Font="楷体, 10.5pt"/>
<TableCell Name="Cell208" Border.Lines="All" Text="[Data.Ste_Code]" HorzAlign="Center" VertAlign="Center" Font="楷体, 10.5pt"/> <TableCell Name="Cell118" Border.Lines="All" Text="[Data.ISO_Name]" HorzAlign="Center" VertAlign="Center" Font="楷体, 10.5pt"/>
<TableCell Name="Cell209" Border.Lines="All" Text="[Data.WelderCode]" HorzAlign="Center" VertAlign="Center" Font="楷体, 10.5pt"/>
<TableCell Name="Cell210" Border.Lines="All" Text="[Data.ISO_Name]" HorzAlign="Center" VertAlign="Center" Font="楷体, 10.5pt"/>
</TableRow> </TableRow>
</TableObject> </TableObject>
</DataBand> </DataBand>
<ColumnFooterBand Name="ColumnFooter1" Top="437.25" Width="623.7"> <ColumnFooterBand Name="ColumnFooter1" Top="377.16" Width="623.7">
<ChildBand Name="Child1" Top="395.45" Width="623.7" Height="37.8" Guides="0,37.8" FillUnusedSpace="true"> <ChildBand Name="Child1" Top="341.69" Width="623.7" Height="31.47" Guides="0,31.47" FillUnusedSpace="true">
<TableObject Name="Table3" Width="623.26" Height="37.8"> <TableObject Name="Table4" Width="623.7" Height="31.47" Border.Lines="Left, Bottom">
<TableColumn Name="Column22" Width="39.77"/> <TableColumn Name="Column24" Width="38.85"/>
<TableColumn Name="Column23" Width="30.24"/> <TableColumn Name="Column25" Width="29.4"/>
<TableColumn Name="Column24" Width="89.96"/> <TableColumn Name="Column26" Width="95.55"/>
<TableColumn Name="Column25" Width="81.27"/> <TableColumn Name="Column27" Width="76.65"/>
<TableColumn Name="Column26" Width="32.51"/> <TableColumn Name="Column28" Width="76.65"/>
<TableColumn Name="Column27" Width="39.77"/> <TableColumn Name="Column29" Width="95.55"/>
<TableColumn Name="Column28" Width="85.13"/> <TableColumn Name="Column30" Width="67.2"/>
<TableColumn Name="Column29" Width="80.89"/> <TableColumn Name="Column31" Width="76.65"/>
<TableColumn Name="Column30" Width="77.57"/> <TableColumn Name="Column32" Width="67.2"/>
<TableColumn Name="Column31"/> <TableRow Name="Row15" Height="31.47">
<TableRow Name="Row12" Height="37.8"> <TableCell Name="Cell119" Border.Lines="All" HorzAlign="Center" VertAlign="Center" Font="宋体, 10.5pt"/>
<TableCell Name="Cell211" Border.Lines="All" HorzAlign="Center" VertAlign="Center" Font="宋体, 10.5pt"/> <TableCell Name="Cell120" Border.Lines="All" HorzAlign="Center" VertAlign="Center" Font="宋体, 10.5pt" ColSpan="3"/>
<TableCell Name="Cell212" Border.Lines="All" HorzAlign="Center" VertAlign="Center" Font="宋体, 10.5pt" ColSpan="2"/> <TableCell Name="Cell121" Border.Lines="All" HorzAlign="Center" VertAlign="Center" Font="宋体, 10.5pt"/>
<TableCell Name="Cell213" Border.Lines="All" HorzAlign="Center" VertAlign="Center" Font="宋体, 10.5pt"/> <TableCell Name="Cell122" Border.Lines="All" HorzAlign="Center" VertAlign="Center" Font="宋体, 10.5pt"/>
<TableCell Name="Cell214" Border.Lines="All" HorzAlign="Center" VertAlign="Center" Font="宋体, 10.5pt" ColSpan="2"/> <TableCell Name="Cell123" Border.Lines="All" HorzAlign="Center" VertAlign="Center" Font="宋体, 10.5pt"/>
<TableCell Name="Cell215"/> <TableCell Name="Cell124" Border.Lines="All" HorzAlign="Center" VertAlign="Center" Font="宋体, 10.5pt"/>
<TableCell Name="Cell216" Border.Lines="All" HorzAlign="Center" VertAlign="Center" Font="宋体, 10.5pt"/> <TableCell Name="Cell125" Border.Lines="All" HorzAlign="Center" VertAlign="Center" Font="宋体, 10.5pt"/>
<TableCell Name="Cell217" Border.Lines="All" HorzAlign="Center" VertAlign="Center" Font="宋体, 10.5pt"/> <TableCell Name="Cell126" Border.Lines="All" HorzAlign="Center" VertAlign="Center" Font="宋体, 10.5pt"/>
<TableCell Name="Cell218" Border.Lines="All" HorzAlign="Center" VertAlign="Center" Font="宋体, 10.5pt"/> <TableCell Name="Cell127" Border.Lines="All" HorzAlign="Center" VertAlign="Center" Font="宋体, 10.5pt"/>
<TableCell Name="Cell219" Border.Lines="All" HorzAlign="Center" VertAlign="Center" Font="宋体, 10.5pt"/>
<TableCell Name="Cell220" Border.Lines="All"/>
</TableRow> </TableRow>
</TableObject> </TableObject>
</ChildBand> </ChildBand>
</ColumnFooterBand> </ColumnFooterBand>
<PageFooterBand Name="PageFooter1" Top="441.25" Width="623.7" Height="201.85" Guides="0,201.85,60.1,90.34,148.93,175.39"> <PageFooterBand Name="PageFooter1" Top="381.16" Width="623.7" Height="161.6" Guides="0,161.6,37.8,68.04,30.24,101.12,33.08,131.36">
<TableObject Name="Table4" Width="623.36" Height="201.85" Border.Lines="All"> <TableObject Name="Table5" Width="623.6" Height="161.6" Border.Lines="All">
<TableColumn Name="Column32" Width="155.84"/> <TableColumn Name="Column33" Width="59.05"/>
<TableColumn Name="Column33" Width="155.84"/> <TableColumn Name="Column34" Width="96.85"/>
<TableColumn Name="Column34" Width="155.84"/> <TableColumn Name="Column35" Width="59.05"/>
<TableColumn Name="Column35" Width="155.84"/> <TableColumn Name="Column36" Width="96.85"/>
<TableRow Name="Row13" Height="60.1"> <TableColumn Name="Column37" Width="59.05"/>
<TableCell Name="Cell221" Border.Lines="All" Text="注:&#13;&#10;1、附图 张;&#13;&#10;2、需要说明的其他问题" Font="宋体, 10.5pt" ColSpan="4"/> <TableColumn Name="Column38" Width="96.85"/>
<TableCell Name="Cell222" Border.Lines="All" Font="宋体, 10.5pt"/> <TableColumn Name="Column39" Width="59.05"/>
<TableCell Name="Cell223" Border.Lines="All" Font="宋体, 10.5pt"/> <TableColumn Name="Column40" Width="96.85"/>
<TableCell Name="Cell224" Border.Lines="All" Font="宋体, 10.5pt"/> <TableRow Name="Row16" Height="37.8">
<TableCell Name="Cell128" Border.Lines="All" Text="注:" VertAlign="Center" Font="宋体, 10.5pt" ColSpan="8"/>
<TableCell Name="Cell129" Border.Lines="All"/>
<TableCell Name="Cell130" Border.Lines="All"/>
<TableCell Name="Cell131" Border.Lines="All"/>
<TableCell Name="Cell132" Border.Lines="All"/>
<TableCell Name="Cell153" Border.Lines="All"/>
<TableCell Name="Cell154" Border.Lines="All"/>
<TableCell Name="Cell155" Border.Lines="All"/>
</TableRow> </TableRow>
<TableRow Name="Row14" Height="30.24"> <TableRow Name="Row17" Height="30.24">
<TableCell Name="Cell226" Border.Lines="All" Text="承包商" HorzAlign="Center" VertAlign="Center" Font="宋体, 10.5pt"/> <TableCell Name="Cell133" Border.Lines="Left, Right, Top" Text="承包商" HorzAlign="Center" VertAlign="Center" Font="宋体, 10.5pt" ColSpan="2"/>
<TableCell Name="Cell227" Border.Lines="All" Text="监理单位" HorzAlign="Center" VertAlign="Center" Font="宋体, 10.5pt"/> <TableCell Name="Cell134" Border.Lines="Left, Right, Top" HorzAlign="Center" VertAlign="Center" Font="宋体, 10.5pt"/>
<TableCell Name="Cell228" Border.Lines="All" Text="项目部" HorzAlign="Center" VertAlign="Center" Font="宋体, 10.5pt"/> <TableCell Name="Cell135" Border.Lines="Left, Right, Top" Text="监理单位" HorzAlign="Center" VertAlign="Center" Font="宋体, 10.5pt" ColSpan="2"/>
<TableCell Name="Cell229" Border.Lines="All" Text="检测单位" HorzAlign="Center" VertAlign="Center" Font="宋体, 10.5pt"/> <TableCell Name="Cell136" Border.Lines="Left, Right, Top" HorzAlign="Center" VertAlign="Center" Font="宋体, 10.5pt"/>
<TableCell Name="Cell137" Border.Lines="Left, Right, Top" Text="项目部" HorzAlign="Center" VertAlign="Center" Font="宋体, 10.5pt" ColSpan="2"/>
<TableCell Name="Cell156" Border.Lines="Left, Right, Top" HorzAlign="Center" VertAlign="Center" Font="宋体, 10.5pt"/>
<TableCell Name="Cell157" Border.Lines="Left, Right, Top" Text="检测单位" HorzAlign="Center" VertAlign="Center" Font="宋体, 10.5pt" ColSpan="2"/>
<TableCell Name="Cell158" Border.Lines="Left, Right, Top" HorzAlign="Center" VertAlign="Center" Font="宋体, 10.5pt"/>
</TableRow> </TableRow>
<TableRow Name="Row15" Height="58.59"> <TableRow Name="Row18" Height="33.08">
<TableCell Name="Cell231" Border.Lines="Right"/> <TableCell Name="Cell138" Border.Lines="Left, Right" HorzAlign="Center" VertAlign="Center" Font="宋体, 10.5pt" ColSpan="2"/>
<TableCell Name="Cell232" Border.Lines="Right"/> <TableCell Name="Cell139" Border.Lines="Left, Right" HorzAlign="Center" VertAlign="Center" Font="宋体, 10.5pt"/>
<TableCell Name="Cell233"/> <TableCell Name="Cell140" Border.Lines="Left, Right" HorzAlign="Center" VertAlign="Center" Font="宋体, 10.5pt" ColSpan="2"/>
<TableCell Name="Cell234" Border.Lines="Left"/> <TableCell Name="Cell141" Border.Lines="Left, Right" HorzAlign="Center" VertAlign="Center" Font="宋体, 10.5pt"/>
<TableCell Name="Cell142" Border.Lines="Left, Right" HorzAlign="Center" VertAlign="Center" Font="宋体, 10.5pt" ColSpan="2"/>
<TableCell Name="Cell159" Border.Lines="Left, Right" HorzAlign="Center" VertAlign="Center" Font="宋体, 10.5pt"/>
<TableCell Name="Cell160" Border.Lines="Left, Right" HorzAlign="Center" VertAlign="Center" Font="宋体, 10.5pt" ColSpan="2"/>
<TableCell Name="Cell161" Border.Lines="Left, Right" HorzAlign="Center" VertAlign="Center" Font="宋体, 10.5pt"/>
</TableRow> </TableRow>
<TableRow Name="Row16" Height="26.46"> <TableRow Name="Row19" Height="30.24">
<TableCell Name="Cell236" Border.Lines="Right" Text="签字:" VertAlign="Center" Font="宋体, 10.5pt"/> <TableCell Name="Cell143" Border.Lines="Left" Text="签字:" HorzAlign="Center" VertAlign="Center" Font="宋体, 10.5pt"/>
<TableCell Name="Cell237" Border.Lines="Right" Text="签字:" VertAlign="Center" Font="宋体, 10.5pt"/> <TableCell Name="Cell144" Border.Lines="Right" HorzAlign="Center" VertAlign="Center" Font="宋体, 10.5pt"/>
<TableCell Name="Cell238" Text="签字:" VertAlign="Center" Font="宋体, 10.5pt"/> <TableCell Name="Cell145" Border.Lines="Left" Text="签字:" HorzAlign="Center" VertAlign="Center" Font="宋体, 10.5pt"/>
<TableCell Name="Cell239" Border.Lines="Left" Text="签字:" VertAlign="Center" Font="宋体, 10.5pt"/> <TableCell Name="Cell146" Border.Lines="Right" HorzAlign="Center" VertAlign="Center" Font="宋体, 10.5pt"/>
<TableCell Name="Cell147" Border.Lines="Left" Text="签字:" HorzAlign="Center" VertAlign="Center" Font="宋体, 10.5pt"/>
<TableCell Name="Cell162" Border.Lines="Right" HorzAlign="Center" VertAlign="Center" Font="宋体, 10.5pt"/>
<TableCell Name="Cell163" Border.Lines="Left" Text="签字:" HorzAlign="Center" VertAlign="Center" Font="宋体, 10.5pt"/>
<TableCell Name="Cell164" Border.Lines="Right" HorzAlign="Center" VertAlign="Center" Font="宋体, 10.5pt"/>
</TableRow> </TableRow>
<TableRow Name="Row17" Height="26.46"> <TableRow Name="Row20" Height="30.24">
<TableCell Name="Cell241" Border.Lines="Right" Text="日期:[pointDate]" VertAlign="Center" Font="宋体, 10.5pt"/> <TableCell Name="Cell148" Border.Lines="Left, Bottom" Text="日期:" HorzAlign="Center" VertAlign="Center" Font="宋体, 10.5pt"/>
<TableCell Name="Cell242" Border.Lines="Right" Text="日期:" VertAlign="Center" Font="宋体, 10.5pt"/> <TableCell Name="Cell149" Border.Lines="Right, Bottom" HorzAlign="Center" VertAlign="Center" Font="宋体, 10.5pt"/>
<TableCell Name="Cell243" Text="日期:" VertAlign="Center" Font="宋体, 10.5pt"/> <TableCell Name="Cell150" Border.Lines="Left, Bottom" Text="日期:" HorzAlign="Center" VertAlign="Center" Font="宋体, 10.5pt"/>
<TableCell Name="Cell244" Border.Lines="Left" Text="日期:[pointDate]" VertAlign="Center" Font="宋体, 10.5pt"/> <TableCell Name="Cell151" Border.Lines="Right, Bottom" HorzAlign="Center" VertAlign="Center" Font="宋体, 10.5pt"/>
<TableCell Name="Cell152" Border.Lines="Left, Bottom" Text="日期:" HorzAlign="Center" VertAlign="Center" Font="宋体, 10.5pt"/>
<TableCell Name="Cell165" Border.Lines="Right, Bottom" HorzAlign="Center" VertAlign="Center" Font="宋体, 10.5pt"/>
<TableCell Name="Cell166" Border.Lines="Left, Bottom" Text="日期:" HorzAlign="Center" VertAlign="Center" Font="宋体, 10.5pt"/>
<TableCell Name="Cell167" Border.Lines="Right, Bottom" HorzAlign="Center" VertAlign="Center" Font="宋体, 10.5pt"/>
</TableRow> </TableRow>
</TableObject> </TableObject>
</PageFooterBand> </PageFooterBand>

View File

@ -0,0 +1,304 @@
<?xml version="1.0" encoding="utf-8"?>
<Report ScriptLanguage="CSharp" ReportInfo.Created="11/20/2024 09:40:31" ReportInfo.Modified="10/10/2025 21:47:40" 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 Table2_ManualBuild(object sender, EventArgs e)
{
DataSourceBase rowData = Report.GetDataSource(&quot;Data&quot;);
// init the data source
rowData.Init();
// print the first table row - it is a header
// now enumerate the data source and print the table body
while (rowData.HasMoreRows)
{
// print the table body
Table2.PrintRow(0);
Table2.PrintColumns();
// go next data source row
rowData.Next();
}
}
}
}
</ScriptText>
<Dictionary>
<MsSqlDataConnection Name="Connection" ConnectionString="rijcmlqtRsOalcXxDhVt62rPEPNYjaATUoMqziRYvJtgNsyJKYAG7kXKvNAMI/qBkgJNPccFsWrhiII6oyX1HS+uwN7YigxVjqUq3vIet2zpPnmWhwvYEvWOOCZZGx6EC4BfGfWX8aPj6bmoF52Z0fnUA9g71duxa/gvChTW/nzu9qsYVuvlVHliMnnu6jEIF9n+/QFPz3ajaxZMvq2A8dZOM8eLw==">
<TableDataSource Name="MainData" DataType="System.Int32" PropName="Attach_Image" Enabled="true" TableName="MainData">
<Column Name="ProjectName" DataType="System.String" PropName="attach_image_id"/>
<Column Name="InstallastionName" DataType="System.String" PropName="image_series"/>
<Column Name="InstallatinCode" DataType="System.String" PropName="file_name"/>
<Column Name="TrustUnit" DataType="System.String" PropName="file_size"/>
<Column Name="TrustCode" DataType="System.String" PropName="file_type"/>
<Column Name="CheckUnit" DataType="System.String" PropName="Column"/>
<Column Name="ItemName" DataType="System.String" PropName="Column"/>
<Column Name="WME_Code" DataType="System.String" PropName="Column"/>
<Column Name="IsHot" DataType="System.String" PropName="Column"/>
<Column Name="JST_Name" DataType="System.String" PropName="Column"/>
<Column Name="NDTR_Name" DataType="System.String" PropName="Column"/>
<Column Name="NDT_Code" DataType="System.String" PropName="Column"/>
<Column Name="AcceptGrade" DataType="System.String" PropName="Column"/>
<Column Name="CH_NDTCriteria" DataType="System.String" PropName="Column"/>
</TableDataSource>
<TableDataSource Name="Data" DataType="System.Int32" PropName="AttachFile" Enabled="true" TableName="Data">
<Column Name="SortNum" DataType="System.String" PropName="AttachFileId"/>
<Column Name="IsoNo" DataType="System.String" PropName="ToKeyId"/>
<Column Name="JointNo" DataType="System.String" PropName="AttachSource"/>
<Column Name="JointDesc" DataType="System.String" PropName="AttachUrl"/>
<Column Name="Ste_Code" DataType="System.String" PropName="MenuId"/>
<Column Name="WelderCode" DataType="System.String" PropName="Column"/>
<Column Name="ISO_Name" DataType="System.String" PropName="Column"/>
<Column Name="ISO_Number" DataType="System.String"/>
</TableDataSource>
</MsSqlDataConnection>
<Parameter Name="JointCount" DataType="System.String"/>
<Parameter Name="CheckCount" DataType="System.String"/>
<Parameter Name="pointDate" DataType="System.String"/>
</Dictionary>
<ReportPage Name="Page1" LeftMargin="25" TopMargin="20" RightMargin="20" BottomMargin="21" FirstPageSource="4" OtherPagesSource="4" Guides="0,623.64,159.97,30.24,89.96,398.65,32.51,39.77,85.13,77.57,66.53,81.27,479.54,70.01,313.52,241.24,557.11,273.75,623.26,623.36,155.84,311.68,467.52">
<PageHeaderBand Name="PageHeader1" Width="623.7" Height="349.65" Guides="0,349.65,103.95,18.9,56.7,75.6,28.35,132.3,160.65,198.45,37.8,236.25,274.05,311.85">
<TableObject Name="Table1" Width="623.64" Height="349.65">
<TableColumn Name="Column1" Width="39.77"/>
<TableColumn Name="Column2" Width="30.24"/>
<TableColumn Name="Column3" Width="89.96"/>
<TableColumn Name="Column5" Width="81.27"/>
<TableColumn Name="Column11" Width="32.51"/>
<TableColumn Name="Column6" Width="39.77"/>
<TableColumn Name="Column7" Width="85.13"/>
<TableColumn Name="Column8" Width="80.89"/>
<TableColumn Name="Column9" Width="77.57"/>
<TableColumn Name="Column10" Width="66.53"/>
<TableRow Name="Row1">
<TableCell Name="Cell1" Border.Lines="All" Text="浙江石油化工&#13;&#10;有限公司" HorzAlign="Center" VertAlign="Center" Font="宋体, 10.5pt" ColSpan="3" RowSpan="3"/>
<TableCell Name="Cell2" Border.Lines="All" Font="宋体, 10.5pt"/>
<TableCell Name="Cell3" Border.Lines="All" Font="宋体, 10.5pt"/>
<TableCell Name="Cell5" Border.Lines="All" Text="管道焊缝检测委托单" HorzAlign="Center" VertAlign="Center" Font="宋体, 16pt, style=Bold" ColSpan="4" RowSpan="3"/>
<TableCell Name="Cell101" Border.Lines="All"/>
<TableCell Name="Cell26" Border.Lines="All" Font="宋体, 10.5pt"/>
<TableCell Name="Cell27" Border.Lines="All" Font="宋体, 10.5pt"/>
<TableCell Name="Cell28" Border.Lines="Right, Top" Text="工程名称:" Font="宋体, 10.5pt" ColSpan="3"/>
<TableCell Name="Cell29" Font="宋体, 10.5pt"/>
<TableCell Name="Cell30" Font="宋体, 10.5pt"/>
</TableRow>
<TableRow Name="Row2" Height="56.7">
<TableCell Name="Cell6" Border.Lines="All" Font="宋体, 10.5pt"/>
<TableCell Name="Cell7" Border.Lines="All" Font="宋体, 10.5pt"/>
<TableCell Name="Cell8" Border.Lines="All" Font="宋体, 10.5pt"/>
<TableCell Name="Cell10" Border.Lines="All" Font="宋体, 10.5pt"/>
<TableCell Name="Cell102" Border.Lines="All"/>
<TableCell Name="Cell31" Border.Lines="All" Font="宋体, 10.5pt"/>
<TableCell Name="Cell32" Border.Lines="All" Font="宋体, 10.5pt"/>
<TableCell Name="Cell33" Border.Lines="Right" Text="[MainData.ProjectName]" Font="楷体, 10.5pt" ColSpan="3"/>
<TableCell Name="Cell34" Font="宋体, 10.5pt"/>
<TableCell Name="Cell35" Font="宋体, 10.5pt"/>
</TableRow>
<TableRow Name="Row3" Height="28.35">
<TableCell Name="Cell11" Border.Lines="All" Font="宋体, 10.5pt"/>
<TableCell Name="Cell12" Border.Lines="All" Font="宋体, 10.5pt"/>
<TableCell Name="Cell13" Border.Lines="All" Font="宋体, 10.5pt"/>
<TableCell Name="Cell15" Border.Lines="All" Font="宋体, 10.5pt"/>
<TableCell Name="Cell103" Border.Lines="All"/>
<TableCell Name="Cell36" Border.Lines="All" Font="宋体, 10.5pt"/>
<TableCell Name="Cell37" Border.Lines="All" Font="宋体, 10.5pt"/>
<TableCell Name="Cell38" Text="单位工程:" VertAlign="Center" Font="宋体, 10.5pt"/>
<TableCell Name="Cell39" Border.Lines="Right" Text="管道安装" VertAlign="Center" Font="楷体, 10.5pt" ColSpan="2"/>
<TableCell Name="Cell40" Font="宋体, 10.5pt"/>
</TableRow>
<TableRow Name="Row4" Height="28.35">
<TableCell Name="Cell16" Border.Lines="All" Text="装置名称" HorzAlign="Center" VertAlign="Center" Font="宋体, 10.5pt" ColSpan="2"/>
<TableCell Name="Cell17" Border.Lines="All" HorzAlign="Center" VertAlign="Center" Font="宋体, 10.5pt"/>
<TableCell Name="Cell18" Border.Lines="All" Text="[MainData.InstallastionName]" HorzAlign="Center" VertAlign="Center" Font="楷体, 10.5pt" ColSpan="4"/>
<TableCell Name="Cell20" Border.Lines="All" HorzAlign="Center" VertAlign="Center" Font="楷体, 10.5pt"/>
<TableCell Name="Cell104" HorzAlign="Center" VertAlign="Center" Font="楷体, 9pt"/>
<TableCell Name="Cell41" Border.Lines="All" HorzAlign="Center" VertAlign="Center" Font="楷体, 10.5pt"/>
<TableCell Name="Cell42" Border.Lines="All" Text="装置主项号" HorzAlign="Center" VertAlign="Center" Font="宋体, 10.5pt"/>
<TableCell Name="Cell43" Border.Lines="All" Text="[MainData.InstallatinCode]" HorzAlign="Center" VertAlign="Center" Font="楷体, 10.5pt" ColSpan="3"/>
<TableCell Name="Cell44" Border.Lines="All" HorzAlign="Center" VertAlign="Center" Font="楷体, 10.5pt"/>
<TableCell Name="Cell45" Border.Lines="All" HorzAlign="Center" VertAlign="Center" Font="楷体, 10.5pt"/>
</TableRow>
<TableRow Name="Row5" Height="28.35">
<TableCell Name="Cell21" Border.Lines="All" Text="委托单位" HorzAlign="Center" VertAlign="Center" Font="宋体, 10.5pt" ColSpan="2"/>
<TableCell Name="Cell22" Border.Lines="All" HorzAlign="Center" VertAlign="Center" Font="宋体, 10.5pt"/>
<TableCell Name="Cell23" Border.Lines="All" Text="浙江石油化工有限公司" HorzAlign="Center" VertAlign="Center" Font="楷体, 10.5pt" ColSpan="4"/>
<TableCell Name="Cell25" Border.Lines="All" HorzAlign="Center" VertAlign="Center" Font="楷体, 10.5pt"/>
<TableCell Name="Cell105" HorzAlign="Center" VertAlign="Center" Font="楷体, 9pt"/>
<TableCell Name="Cell46" Border.Lines="All" HorzAlign="Center" VertAlign="Center" Font="楷体, 10.5pt"/>
<TableCell Name="Cell47" Border.Lines="All" Text="委托单编号" HorzAlign="Center" VertAlign="Center" Font="宋体, 10.5pt"/>
<TableCell Name="Cell48" Border.Lines="All" Text="[MainData.TrustCode]" HorzAlign="Center" VertAlign="Center" Font="楷体, 10.5pt" ColSpan="3"/>
<TableCell Name="Cell49" Border.Lines="All" HorzAlign="Center" VertAlign="Center" Font="楷体, 10.5pt"/>
<TableCell Name="Cell50" Border.Lines="All" HorzAlign="Center" VertAlign="Center" Font="楷体, 10.5pt"/>
</TableRow>
<TableRow Name="Row6" Height="37.8">
<TableCell Name="Cell51" Border.Lines="All" Text="承包商" HorzAlign="Center" VertAlign="Center" Font="宋体, 10.5pt" ColSpan="2"/>
<TableCell Name="Cell52" Border.Lines="All" HorzAlign="Center" VertAlign="Center" Font="宋体, 10.5pt"/>
<TableCell Name="Cell53" Border.Lines="All" Text="鼎盛石化工程有限公司" HorzAlign="Center" VertAlign="Center" Font="楷体, 10.5pt"/>
<TableCell Name="Cell55" Border.Lines="All" Text="检测单位" HorzAlign="Center" VertAlign="Center" Font="宋体, 10.5pt"/>
<TableCell Name="Cell106" Border.Lines="All" Text="[MainData.CheckUnit]" HorzAlign="Center" VertAlign="Center" Font="楷体, 10.5pt" ColSpan="2"/>
<TableCell Name="Cell56" Border.Lines="All" HorzAlign="Center" VertAlign="Center" Font="楷体, 10.5pt"/>
<TableCell Name="Cell57" Border.Lines="All" Text="检件名称" HorzAlign="Center" VertAlign="Center" Font="宋体, 10.5pt"/>
<TableCell Name="Cell58" Border.Lines="All" Text="工业管道" HorzAlign="Center" VertAlign="Center" Font="楷体, 10.5pt"/>
<TableCell Name="Cell59" Border.Lines="All" Text="外观检查" HorzAlign="Center" VertAlign="Center" Font="宋体, 10.5pt"/>
<TableCell Name="Cell60" Border.Lines="All" Text="合格" HorzAlign="Center" VertAlign="Center" Font="楷体, 10.5pt"/>
</TableRow>
<TableRow Name="Row7" Height="37.8">
<TableCell Name="Cell61" Border.Lines="All" Text="焊接方法" HorzAlign="Center" VertAlign="Center" Font="宋体, 10.5pt" ColSpan="2"/>
<TableCell Name="Cell62" Border.Lines="All" HorzAlign="Center" VertAlign="Center" Font="宋体, 10.5pt"/>
<TableCell Name="Cell63" Border.Lines="All" Text="[MainData.WME_Code]" HorzAlign="Center" VertAlign="Center" Font="楷体, 10.5pt"/>
<TableCell Name="Cell65" Border.Lines="All" Text="热处理状态" HorzAlign="Center" VertAlign="Center" Font="宋体, 10.5pt"/>
<TableCell Name="Cell107" Border.Lines="All" Text="[MainData.IsHot]" HorzAlign="Center" VertAlign="Center" Font="楷体, 10.5pt" ColSpan="2"/>
<TableCell Name="Cell66" Border.Lines="All" HorzAlign="Center" VertAlign="Center" Font="楷体, 10.5pt"/>
<TableCell Name="Cell67" Border.Lines="All" Text="坡口形式" HorzAlign="Center" VertAlign="Center" Font="宋体, 10.5pt"/>
<TableCell Name="Cell68" Border.Lines="All" Text="[MainData.JST_Name]" HorzAlign="Center" VertAlign="Center" Font="楷体, 10.5pt"/>
<TableCell Name="Cell69" Border.Lines="All" Text="检测比例" HorzAlign="Center" VertAlign="Center" Font="宋体, 10.5pt"/>
<TableCell Name="Cell70" Border.Lines="All" Text="[MainData.NDTR_Name]" HorzAlign="Center" VertAlign="Center" Font="楷体, 10.5pt"/>
</TableRow>
<TableRow Name="Row8" Height="37.8">
<TableCell Name="Cell71" Border.Lines="All" Text="检测方法" HorzAlign="Center" VertAlign="Center" Font="宋体, 10.5pt" ColSpan="2"/>
<TableCell Name="Cell72" Border.Lines="All" HorzAlign="Center" VertAlign="Center" Font="宋体, 10.5pt"/>
<TableCell Name="Cell73" Border.Lines="All" Text="[MainData.NDT_Code]" HorzAlign="Center" VertAlign="Center" Font="楷体, 10.5pt"/>
<TableCell Name="Cell75" Border.Lines="All" Text="检测时机" HorzAlign="Center" VertAlign="Center" Font="宋体, 10.5pt"/>
<TableCell Name="Cell108" Border.Lines="All" Text="焊后" HorzAlign="Center" VertAlign="Center" Font="楷体, 10.5pt" ColSpan="2"/>
<TableCell Name="Cell76" Border.Lines="All" HorzAlign="Center" VertAlign="Center" Font="楷体, 10.5pt"/>
<TableCell Name="Cell77" Border.Lines="All" Text="技术等级" HorzAlign="Center" VertAlign="Center" Font="宋体, 10.5pt"/>
<TableCell Name="Cell78" Border.Lines="All" Text="AB级" HorzAlign="Center" VertAlign="Center" Font="楷体, 10.5pt"/>
<TableCell Name="Cell79" Border.Lines="All" Text="合格级别" HorzAlign="Center" VertAlign="Center" Font="宋体, 10.5pt"/>
<TableCell Name="Cell80" Border.Lines="All" Text="[MainData.AcceptGrade]" HorzAlign="Center" VertAlign="Center" Font="楷体, 10.5pt"/>
</TableRow>
<TableRow Name="Row9" Height="37.8">
<TableCell Name="Cell81" Border.Lines="All" Text="检测标准" HorzAlign="Center" VertAlign="Center" Font="宋体, 10.5pt" ColSpan="2"/>
<TableCell Name="Cell82" Border.Lines="All" HorzAlign="Center" VertAlign="Center" Font="宋体, 10.5pt"/>
<TableCell Name="Cell83" Border.Lines="All" Text="[MainData.CH_NDTCriteria]" HorzAlign="Center" Font="楷体, 10.5pt"/>
<TableCell Name="Cell85" Border.Lines="All" Text="检测部位" HorzAlign="Center" VertAlign="Center" Font="宋体, 10.5pt"/>
<TableCell Name="Cell109" Border.Lines="All" Text="焊缝" HorzAlign="Center" VertAlign="Center" Font="楷体, 10.5pt" ColSpan="2"/>
<TableCell Name="Cell86" Border.Lines="All" HorzAlign="Center" VertAlign="Center" Font="楷体, 10.5pt"/>
<TableCell Name="Cell87" Border.Lines="All" Text="焊口总数" HorzAlign="Center" VertAlign="Center" Font="宋体, 10.5pt"/>
<TableCell Name="Cell88" Border.Lines="All" Text="[JointCount]" HorzAlign="Center" VertAlign="Center" Font="楷体, 10.5pt"/>
<TableCell Name="Cell89" Border.Lines="All" Text="检测数量" HorzAlign="Center" VertAlign="Center" Font="宋体, 10.5pt"/>
<TableCell Name="Cell90" Border.Lines="All" Text="[CheckCount]" HorzAlign="Center" VertAlign="Center" Font="楷体, 10.5pt"/>
</TableRow>
<TableRow Name="Row10" Height="37.8">
<TableCell Name="Cell91" Border.Lines="All" Text="序号" HorzAlign="Center" VertAlign="Center" Font="宋体, 10.5pt"/>
<TableCell Name="Cell92" Border.Lines="All" Text="管线编号" HorzAlign="Center" VertAlign="Center" Font="宋体, 10.5pt" ColSpan="2"/>
<TableCell Name="Cell93" Border.Lines="All" HorzAlign="Center" VertAlign="Center" Font="宋体, 10.5pt"/>
<TableCell Name="Cell95" Border.Lines="All" Text="单线号" HorzAlign="Center" VertAlign="Center" Font="宋体, 10.5pt" ColSpan="2"/>
<TableCell Name="Cell110"/>
<TableCell Name="Cell96" Border.Lines="All" Text="焊口编号" HorzAlign="Center" VertAlign="Center" Font="宋体, 10.5pt"/>
<TableCell Name="Cell97" Border.Lines="All" Text="焊口规格" HorzAlign="Center" VertAlign="Center" Font="宋体, 10.5pt"/>
<TableCell Name="Cell98" Border.Lines="All" Text="材质" HorzAlign="Center" VertAlign="Center" Font="宋体, 10.5pt"/>
<TableCell Name="Cell99" Border.Lines="All" Text="焊工号" HorzAlign="Center" VertAlign="Center" Font="宋体, 10.5pt"/>
<TableCell Name="Cell100" Border.Lines="All" Text="管道等级" HorzAlign="Center" VertAlign="Center" Font="宋体, 10.5pt"/>
</TableRow>
</TableObject>
</PageHeaderBand>
<DataBand Name="Data1" Top="353.65" Width="623.7" Height="37.8" Guides="0,37.8">
<TableObject Name="Table2" Width="623.26" Height="37.8" ManualBuildEvent="Table2_ManualBuild">
<TableColumn Name="Column12" Width="39.77"/>
<TableColumn Name="Column13" Width="30.24"/>
<TableColumn Name="Column14" Width="89.96"/>
<TableColumn Name="Column15" Width="81.27"/>
<TableColumn Name="Column16" Width="32.51"/>
<TableColumn Name="Column17" Width="39.77"/>
<TableColumn Name="Column18" Width="85.13"/>
<TableColumn Name="Column19" Width="80.89"/>
<TableColumn Name="Column20" Width="77.57"/>
<TableColumn Name="Column21"/>
<TableRow Name="Row11" Height="37.8">
<TableCell Name="Cell201" Border.Lines="All" Text="[Data.SortNum]" HorzAlign="Center" VertAlign="Center" Font="楷体, 10.5pt"/>
<TableCell Name="Cell202" Border.Lines="All" Text="[Data.IsoNo]" HorzAlign="Center" VertAlign="Center" Font="楷体, 10.5pt" ColSpan="2"/>
<TableCell Name="Cell203" Border.Lines="All" HorzAlign="Center" VertAlign="Center" Font="楷体, 10.5pt"/>
<TableCell Name="Cell204" Border.Lines="All" Text="[Data.ISO_Number]" HorzAlign="Center" VertAlign="Center" Font="楷体, 10.5pt" ColSpan="2"/>
<TableCell Name="Cell205" Font="楷体, 10.5pt"/>
<TableCell Name="Cell206" Border.Lines="All" Text="[Data.JointNo]" HorzAlign="Center" VertAlign="Center" Font="楷体, 10.5pt"/>
<TableCell Name="Cell207" Border.Lines="All" Text="[Data.JointDesc]" HorzAlign="Center" VertAlign="Center" Font="楷体, 10.5pt"/>
<TableCell Name="Cell208" Border.Lines="All" Text="[Data.Ste_Code]" HorzAlign="Center" VertAlign="Center" Font="楷体, 10.5pt"/>
<TableCell Name="Cell209" Border.Lines="All" Text="[Data.WelderCode]" HorzAlign="Center" VertAlign="Center" Font="楷体, 10.5pt"/>
<TableCell Name="Cell210" Border.Lines="All" Text="[Data.ISO_Name]" HorzAlign="Center" VertAlign="Center" Font="楷体, 10.5pt"/>
</TableRow>
</TableObject>
</DataBand>
<ColumnFooterBand Name="ColumnFooter1" Top="437.25" Width="623.7">
<ChildBand Name="Child1" Top="395.45" Width="623.7" Height="37.8" Guides="0,37.8" FillUnusedSpace="true">
<TableObject Name="Table3" Width="623.26" Height="37.8">
<TableColumn Name="Column22" Width="39.77"/>
<TableColumn Name="Column23" Width="30.24"/>
<TableColumn Name="Column24" Width="89.96"/>
<TableColumn Name="Column25" Width="81.27"/>
<TableColumn Name="Column26" Width="32.51"/>
<TableColumn Name="Column27" Width="39.77"/>
<TableColumn Name="Column28" Width="85.13"/>
<TableColumn Name="Column29" Width="80.89"/>
<TableColumn Name="Column30" Width="77.57"/>
<TableColumn Name="Column31"/>
<TableRow Name="Row12" Height="37.8">
<TableCell Name="Cell211" Border.Lines="All" HorzAlign="Center" VertAlign="Center" Font="宋体, 10.5pt"/>
<TableCell Name="Cell212" Border.Lines="All" HorzAlign="Center" VertAlign="Center" Font="宋体, 10.5pt" ColSpan="2"/>
<TableCell Name="Cell213" Border.Lines="All" HorzAlign="Center" VertAlign="Center" Font="宋体, 10.5pt"/>
<TableCell Name="Cell214" Border.Lines="All" HorzAlign="Center" VertAlign="Center" Font="宋体, 10.5pt" ColSpan="2"/>
<TableCell Name="Cell215"/>
<TableCell Name="Cell216" Border.Lines="All" HorzAlign="Center" VertAlign="Center" Font="宋体, 10.5pt"/>
<TableCell Name="Cell217" Border.Lines="All" HorzAlign="Center" VertAlign="Center" Font="宋体, 10.5pt"/>
<TableCell Name="Cell218" Border.Lines="All" HorzAlign="Center" VertAlign="Center" Font="宋体, 10.5pt"/>
<TableCell Name="Cell219" Border.Lines="All" HorzAlign="Center" VertAlign="Center" Font="宋体, 10.5pt"/>
<TableCell Name="Cell220" Border.Lines="All"/>
</TableRow>
</TableObject>
</ChildBand>
</ColumnFooterBand>
<PageFooterBand Name="PageFooter1" Top="441.25" Width="623.7" Height="201.85" Guides="0,201.85,60.1,90.34,148.93,175.39">
<TableObject Name="Table4" Width="623.36" Height="201.85" Border.Lines="All">
<TableColumn Name="Column32" Width="155.84"/>
<TableColumn Name="Column33" Width="155.84"/>
<TableColumn Name="Column34" Width="155.84"/>
<TableColumn Name="Column35" Width="155.84"/>
<TableRow Name="Row13" Height="60.1">
<TableCell Name="Cell221" Border.Lines="All" Text="注:&#13;&#10;1、附图 张;&#13;&#10;2、需要说明的其他问题" Font="宋体, 10.5pt" ColSpan="4"/>
<TableCell Name="Cell222" Border.Lines="All" Font="宋体, 10.5pt"/>
<TableCell Name="Cell223" Border.Lines="All" Font="宋体, 10.5pt"/>
<TableCell Name="Cell224" Border.Lines="All" Font="宋体, 10.5pt"/>
</TableRow>
<TableRow Name="Row14" Height="30.24">
<TableCell Name="Cell226" Border.Lines="All" Text="承包商" HorzAlign="Center" VertAlign="Center" Font="宋体, 10.5pt"/>
<TableCell Name="Cell227" Border.Lines="All" Text="监理单位" HorzAlign="Center" VertAlign="Center" Font="宋体, 10.5pt"/>
<TableCell Name="Cell228" Border.Lines="All" Text="项目部" HorzAlign="Center" VertAlign="Center" Font="宋体, 10.5pt"/>
<TableCell Name="Cell229" Border.Lines="All" Text="检测单位" HorzAlign="Center" VertAlign="Center" Font="宋体, 10.5pt"/>
</TableRow>
<TableRow Name="Row15" Height="58.59">
<TableCell Name="Cell231" Border.Lines="Right"/>
<TableCell Name="Cell232" Border.Lines="Right"/>
<TableCell Name="Cell233"/>
<TableCell Name="Cell234" Border.Lines="Left"/>
</TableRow>
<TableRow Name="Row16" Height="26.46">
<TableCell Name="Cell236" Border.Lines="Right" Text="签字:" VertAlign="Center" Font="宋体, 10.5pt"/>
<TableCell Name="Cell237" Border.Lines="Right" Text="签字:" VertAlign="Center" Font="宋体, 10.5pt"/>
<TableCell Name="Cell238" Text="签字:" VertAlign="Center" Font="宋体, 10.5pt"/>
<TableCell Name="Cell239" Border.Lines="Left" Text="签字:" VertAlign="Center" Font="宋体, 10.5pt"/>
</TableRow>
<TableRow Name="Row17" Height="26.46">
<TableCell Name="Cell241" Border.Lines="Right" Text="日期:[pointDate]" VertAlign="Center" Font="宋体, 10.5pt"/>
<TableCell Name="Cell242" Border.Lines="Right" Text="日期:" VertAlign="Center" Font="宋体, 10.5pt"/>
<TableCell Name="Cell243" Text="日期:" VertAlign="Center" Font="宋体, 10.5pt"/>
<TableCell Name="Cell244" Border.Lines="Left" Text="日期:[pointDate]" VertAlign="Center" Font="宋体, 10.5pt"/>
</TableRow>
</TableObject>
</PageFooterBand>
</ReportPage>
</Report>

View File

@ -1,5 +1,5 @@
<?xml version="1.0" encoding="utf-8"?> <?xml version="1.0" encoding="utf-8"?>
<Report ScriptLanguage="CSharp" ReportInfo.Created="11/20/2024 15:56:13" ReportInfo.Modified="05/28/2025 15:16:47" ReportInfo.CreatorVersion="2017.1.16.0"> <Report ScriptLanguage="CSharp" ReportInfo.Created="11/20/2024 15:56:13" ReportInfo.Modified="01/13/2026 16:29:40" ReportInfo.CreatorVersion="2017.1.16.0">
<ScriptText>using System; <ScriptText>using System;
using System.Collections; using System.Collections;
using System.Collections.Generic; using System.Collections.Generic;
@ -42,7 +42,7 @@ namespace FastReport
} }
</ScriptText> </ScriptText>
<Dictionary> <Dictionary>
<MsSqlDataConnection Name="Connection" ConnectionString="rijcmlqtRsOalcXxDhVt62rPEPNYjaATUoMqziRYvJtgNsyJKYAG7kXKvNAMI/qBkgJNPccFsWrhiII6oyX1HS+uwN7YigxVjqUq3vIet2zpPnmWhwvYEvWOOCZZGx6EC4BfGfWX8aPj6bmoF52Z0fnUA9g71duxa/gvChTW/nzu9qsYVuvlVHliMnnu6jEIF9n+/QFQYzz+23XPcbv1F0GHaeb2w=="> <MsSqlDataConnection Name="Connection" ConnectionString="rijcmlqtRsOalcXxDhVt62rPEPNYjaATUoMqziRYvJtgNsyJKYAG7kXKvNAMI/qBkgJNPccFsWrhiII6oyX1HS+uwN7YigxVjqUq3vIet2zpPnmWhwvYEvWOOCZZGx6EC4BfGfWX8aPj6bmoF52Z0fnUA9g71duxa/gvChTW/nzu9qsYVuvlVHliMnnu6jEIF9n+/QFU9faa5/HBb4XUQfiMoZgBg==">
<TableDataSource Name="MainData" DataType="System.Int32" PropName="Attach_Image" Enabled="true" TableName="MainData"> <TableDataSource Name="MainData" DataType="System.Int32" PropName="Attach_Image" Enabled="true" TableName="MainData">
<Column Name="UnitName" DataType="System.String" PropName="attach_image_id"/> <Column Name="UnitName" DataType="System.String" PropName="attach_image_id"/>
<Column Name="ProjectCode" DataType="System.String" PropName="image_series"/> <Column Name="ProjectCode" DataType="System.String" PropName="image_series"/>

View File

@ -1263,6 +1263,7 @@
<Content Include="JGZL\SpecialEquipmentMaintenanceEdit.aspx" /> <Content Include="JGZL\SpecialEquipmentMaintenanceEdit.aspx" />
<Content Include="JGZL\TeamWeldingInspection.aspx" /> <Content Include="JGZL\TeamWeldingInspection.aspx" />
<Content Include="JGZL\TeamWeldingInspectionEdit.aspx" /> <Content Include="JGZL\TeamWeldingInspectionEdit.aspx" />
<Content Include="JGZL\WeldingRodBaking.aspx" />
<Content Include="JGZL\WeldInspectionCheckRecord.aspx" /> <Content Include="JGZL\WeldInspectionCheckRecord.aspx" />
<Content Include="Login.aspx" /> <Content Include="Login.aspx" />
<Content Include="AttachFile\fileupload.ashx" /> <Content Include="AttachFile\fileupload.ashx" />
@ -6697,6 +6698,13 @@
<Compile Include="JGZL\TeamWeldingInspectionEdit.aspx.designer.cs"> <Compile Include="JGZL\TeamWeldingInspectionEdit.aspx.designer.cs">
<DependentUpon>TeamWeldingInspectionEdit.aspx</DependentUpon> <DependentUpon>TeamWeldingInspectionEdit.aspx</DependentUpon>
</Compile> </Compile>
<Compile Include="JGZL\WeldingRodBaking.aspx.cs">
<DependentUpon>WeldingRodBaking.aspx</DependentUpon>
<SubType>ASPXCodeBehind</SubType>
</Compile>
<Compile Include="JGZL\WeldingRodBaking.aspx.designer.cs">
<DependentUpon>WeldingRodBaking.aspx</DependentUpon>
</Compile>
<Compile Include="JGZL\WeldInspectionCheckRecord.aspx.cs"> <Compile Include="JGZL\WeldInspectionCheckRecord.aspx.cs">
<DependentUpon>WeldInspectionCheckRecord.aspx</DependentUpon> <DependentUpon>WeldInspectionCheckRecord.aspx</DependentUpon>
<SubType>ASPXCodeBehind</SubType> <SubType>ASPXCodeBehind</SubType>

View File

@ -709,10 +709,10 @@ namespace FineUIPro.Web.HJGL.RepairManage
dt.Columns.Add("ProjectName"); dt.Columns.Add("ProjectName");
dt.Columns.Add("InstallastionName"); dt.Columns.Add("InstallastionName");
dt.Columns.Add("InstallatinCode"); dt.Columns.Add("InstallatinCode");
dt.Columns.Add("TrustUnit"); //dt.Columns.Add("TrustUnit");
dt.Columns.Add("TrustCode"); dt.Columns.Add("TrustCode");
dt.Columns.Add("CheckUnit"); dt.Columns.Add("CheckUnit");
dt.Columns.Add("ItemName"); //dt.Columns.Add("ItemName");
dt.Columns.Add("WME_Code"); dt.Columns.Add("WME_Code");
dt.Columns.Add("IsHot"); dt.Columns.Add("IsHot");
dt.Columns.Add("JST_Name"); dt.Columns.Add("JST_Name");
@ -728,12 +728,21 @@ namespace FineUIPro.Web.HJGL.RepairManage
newRows["ProjectName"] = row["ProjectName"].ToString(); newRows["ProjectName"] = row["ProjectName"].ToString();
newRows["InstallastionName"] = row["InstallationName"].ToString(); newRows["InstallastionName"] = row["InstallationName"].ToString();
newRows["InstallatinCode"] = row["InstallationCode"].ToString(); newRows["InstallatinCode"] = row["InstallationCode"].ToString();
newRows["TrustUnit"] = row["UnitName"].ToString(); //newRows["TrustUnit"] = row["UnitName"].ToString();
newRows["TrustCode"] = row["CH_RepairNo"].ToString(); newRows["TrustCode"] = row["CH_RepairNo"].ToString();
newRows["CheckUnit"] = row["CheckUnitName"].ToString(); newRows["CheckUnit"] = row["CheckUnitName"].ToString();
newRows["ItemName"] = row["CH_ItemName"].ToString(); //newRows["ItemName"] = row["CH_ItemName"].ToString();
newRows["WME_Code"] = row["WME_Code"].ToString(); newRows["WME_Code"] = row["WME_Code"].ToString();
newRows["IsHot"] = row["IsHot"].ToString(); string hot = string.Empty;
if(row["IsHot"].ToString()=="是")
{
hot = "☑是/□否";
}
else
{
hot = "□是/☑否";
}
newRows["IsHot"] = hot;
newRows["JST_Name"] = row["JST_Code"].ToString(); newRows["JST_Name"] = row["JST_Code"].ToString();
newRows["NDTR_Name"] = row["NDTR_Name"].ToString(); newRows["NDTR_Name"] = row["NDTR_Name"].ToString();
newRows["NDT_Code"] = row["NDT_Code"].ToString(); newRows["NDT_Code"] = row["NDT_Code"].ToString();
@ -754,7 +763,7 @@ namespace FineUIPro.Web.HJGL.RepairManage
dt2.TableName = "Data"; dt2.TableName = "Data";
dt2.Columns.Add("SortNum"); dt2.Columns.Add("SortNum");
dt2.Columns.Add("IsoNo"); dt2.Columns.Add("IsoNo");
dt2.Columns.Add("ISO_Number"); //dt2.Columns.Add("ISO_Number");
dt2.Columns.Add("JointNo"); dt2.Columns.Add("JointNo");
dt2.Columns.Add("JointDesc"); dt2.Columns.Add("JointDesc");
dt2.Columns.Add("Ste_Code"); dt2.Columns.Add("Ste_Code");
@ -774,7 +783,7 @@ namespace FineUIPro.Web.HJGL.RepairManage
newRows["SortNum"] = i + 1; newRows["SortNum"] = i + 1;
} }
newRows["IsoNo"] = row["ISO_IsoNo"].ToString(); newRows["IsoNo"] = row["ISO_IsoNo"].ToString();
newRows["ISO_Number"] = row["ISO_IsoNo"].ToString(); //newRows["ISO_Number"] = row["ISO_IsoNo"].ToString();
newRows["JointNo"] = row["JOT_JointNo"].ToString(); newRows["JointNo"] = row["JOT_JointNo"].ToString();
newRows["JointDesc"] = row["JOT_JointDesc"].ToString(); newRows["JointDesc"] = row["JOT_JointDesc"].ToString();
newRows["Ste_Code"] = row["STE_Code"].ToString(); newRows["Ste_Code"] = row["STE_Code"].ToString();
@ -785,13 +794,13 @@ namespace FineUIPro.Web.HJGL.RepairManage
} }
BLL.Common.FastReportService.AddFastreportTable(dt2); BLL.Common.FastReportService.AddFastreportTable(dt2);
#endregion #endregion
string isoid = rows[0]["ISO_ID"].ToString(); //string isoid = rows[0]["ISO_ID"].ToString();
string jotyId = rows[0]["JOTY_ID"].ToString(); //string jotyId = rows[0]["JOTY_ID"].ToString();
int jointCount = BLL.HJGL_PW_JointInfoService.GetJointCountByIsoId(isoid, jotyId); //int jointCount = BLL.HJGL_PW_JointInfoService.GetJointCountByIsoId(isoid, jotyId);
//传参 //传参
Dictionary<string, string> keyValuePairs = new Dictionary<string, string>(); Dictionary<string, string> keyValuePairs = new Dictionary<string, string>();
keyValuePairs.Add("JointCount", jointCount.ToString()); //keyValuePairs.Add("JointCount", jointCount.ToString());
keyValuePairs.Add("CheckCount", (rows.Count() - 1).ToString()); //keyValuePairs.Add("CheckCount", (rows.Count() - 1).ToString());
BLL.Common.FastReportService.AddFastreportParameter(keyValuePairs); BLL.Common.FastReportService.AddFastreportParameter(keyValuePairs);
initTemplatePath = "File\\Fastreport\\管道焊缝检测委托单.frx"; initTemplatePath = "File\\Fastreport\\管道焊缝检测委托单.frx";

View File

@ -682,10 +682,10 @@ namespace FineUIPro.Web.HJGL.TrustManage
dt.Columns.Add("ProjectName"); dt.Columns.Add("ProjectName");
dt.Columns.Add("InstallastionName"); dt.Columns.Add("InstallastionName");
dt.Columns.Add("InstallatinCode"); dt.Columns.Add("InstallatinCode");
dt.Columns.Add("TrustUnit"); //dt.Columns.Add("TrustUnit");
dt.Columns.Add("TrustCode"); dt.Columns.Add("TrustCode");
dt.Columns.Add("CheckUnit"); dt.Columns.Add("CheckUnit");
dt.Columns.Add("ItemName"); //dt.Columns.Add("ItemName");
dt.Columns.Add("WME_Code"); dt.Columns.Add("WME_Code");
dt.Columns.Add("IsHot"); dt.Columns.Add("IsHot");
dt.Columns.Add("JST_Name"); dt.Columns.Add("JST_Name");
@ -701,12 +701,21 @@ namespace FineUIPro.Web.HJGL.TrustManage
newRows["ProjectName"] = row["ProjectName"].ToString(); newRows["ProjectName"] = row["ProjectName"].ToString();
newRows["InstallastionName"] = row["InstallationName"].ToString(); newRows["InstallastionName"] = row["InstallationName"].ToString();
newRows["InstallatinCode"] = row["InstallationCode"].ToString(); newRows["InstallatinCode"] = row["InstallationCode"].ToString();
newRows["TrustUnit"] = row["UnitName"].ToString(); //newRows["TrustUnit"] = row["UnitName"].ToString();
newRows["TrustCode"] = row["CH_TrustCode"].ToString(); newRows["TrustCode"] = row["CH_TrustCode"].ToString();
newRows["CheckUnit"] = row["CheckUnitName"].ToString(); newRows["CheckUnit"] = row["CheckUnitName"].ToString();
newRows["ItemName"] = row["CH_ItemName"].ToString(); //newRows["ItemName"] = row["CH_ItemName"].ToString();
newRows["WME_Code"] = row["WME_Code"].ToString(); newRows["WME_Code"] = row["WME_Code"].ToString();
newRows["IsHot"] = "合格";//row["IsHot"].ToString(); string hot = string.Empty;
if (row["IsHot"].ToString() == "是")
{
hot = "☑是/□否";
}
else
{
hot = "□是/☑否";
}
newRows["IsHot"] = hot;
newRows["JST_Name"] = row["JST_Name"].ToString(); newRows["JST_Name"] = row["JST_Name"].ToString();
newRows["NDTR_Name"] = row["NDTR_Name"].ToString(); newRows["NDTR_Name"] = row["NDTR_Name"].ToString();
newRows["NDT_Code"] = row["NDT_Code"].ToString(); newRows["NDT_Code"] = row["NDT_Code"].ToString();
@ -769,7 +778,7 @@ namespace FineUIPro.Web.HJGL.TrustManage
dt2.TableName = "Data"; dt2.TableName = "Data";
dt2.Columns.Add("SortNum"); dt2.Columns.Add("SortNum");
dt2.Columns.Add("IsoNo"); dt2.Columns.Add("IsoNo");
dt2.Columns.Add("ISO_Number"); //dt2.Columns.Add("ISO_Number");
dt2.Columns.Add("JointNo"); dt2.Columns.Add("JointNo");
dt2.Columns.Add("JointDesc"); dt2.Columns.Add("JointDesc");
dt2.Columns.Add("Ste_Code"); dt2.Columns.Add("Ste_Code");
@ -789,7 +798,7 @@ namespace FineUIPro.Web.HJGL.TrustManage
newRows["SortNum"] = i + 1; newRows["SortNum"] = i + 1;
} }
newRows["IsoNo"] = row["ISO_IsoNo"].ToString(); newRows["IsoNo"] = row["ISO_IsoNo"].ToString();
newRows["ISO_Number"] = row["ISO_Number"].ToString(); //newRows["ISO_Number"] = row["ISO_Number"].ToString();
newRows["JointNo"] = row["JOT_JointNo"].ToString(); newRows["JointNo"] = row["JOT_JointNo"].ToString();
newRows["JointDesc"] = row["JOT_JointDesc"].ToString(); newRows["JointDesc"] = row["JOT_JointDesc"].ToString();
newRows["Ste_Code"] = row["STE_Code"].ToString(); newRows["Ste_Code"] = row["STE_Code"].ToString();
@ -802,13 +811,13 @@ namespace FineUIPro.Web.HJGL.TrustManage
BLL.Common.FastReportService.AddFastreportTable(dt2); BLL.Common.FastReportService.AddFastreportTable(dt2);
#endregion #endregion
string isoid = rows[0]["ISO_ID"].ToString(); //string isoid = rows[0]["ISO_ID"].ToString();
string jotyId = rows[0]["JOTY_ID"].ToString(); //string jotyId = rows[0]["JOTY_ID"].ToString();
int jointCount = BLL.HJGL_PW_JointInfoService.GetJointCountByIsoId(isoid, jotyId); //int jointCount = BLL.HJGL_PW_JointInfoService.GetJointCountByIsoId(isoid, jotyId);
//传参 //传参
Dictionary<string, string> keyValuePairs = new Dictionary<string, string>(); Dictionary<string, string> keyValuePairs = new Dictionary<string, string>();
keyValuePairs.Add("JointCount", jointCount.ToString()); //keyValuePairs.Add("JointCount", jointCount.ToString());
keyValuePairs.Add("CheckCount", (rows.Count() - 1).ToString()); //keyValuePairs.Add("CheckCount", (rows.Count() - 1).ToString());
BLL.Common.FastReportService.AddFastreportParameter(keyValuePairs); BLL.Common.FastReportService.AddFastreportParameter(keyValuePairs);
initTemplatePath = "File\\Fastreport\\管道焊缝检测委托单.frx"; initTemplatePath = "File\\Fastreport\\管道焊缝检测委托单.frx";

View File

@ -0,0 +1,151 @@
<%@ Page Language="C#" AutoEventWireup="true" CodeBehind="WeldingRodBaking.aspx.cs" Inherits="FineUIPro.Web.JGZL.WeldingRodBaking" %>
<!DOCTYPE html>
<html xmlns="http://www.w3.org/1999/xhtml">
<head runat="server">
<meta http-equiv="Content-Type" content="text/html; charset=utf-8"/>
<title>焊条烘烤记录</title>
</head>
<body>
<form id="form1" runat="server">
<f:PageManager ID="PageManager1" AutoSizePanelID="Panel1" runat="server" />
<f:Panel ID="Panel1" runat="server" ShowBorder="false" ShowHeader="false" Layout="Region">
<Items>
<f:Panel runat="server" ID="panelCenterRegion" RegionPosition="Center" ShowBorder="true"
Layout="VBox" ShowHeader="false" BodyPadding="5px" IconFont="PlusCircle" Title="焊条烘烤记录"
TitleToolTip="焊条烘烤记录" AutoScroll="true">
<Items>
<f:Grid ID="Grid1" ShowBorder="true" ShowHeader="false" EnableCollapse="true" EnableCheckBoxSelect="true"
KeepCurrentSelection="true" runat="server" BoxFlex="1" DataKeyNames="BakeRecordsId"
DataIDField="BakeRecordsId" AllowSorting="true" SortField="BakeDate" SortDirection="DESC"
OnSort="Grid1_Sort" EnableTextSelection="True">
<Toolbars>
<f:Toolbar ID="Toolbar3" Position="Top" ToolbarAlign="Right" runat="server">
<Items>
<f:DropDownList ID="drpProjectId" runat="server" Label="项目" LabelWidth="50px" Width="265px"
EnableEdit="true">
</f:DropDownList>
<f:DatePicker ID="txtStartDate" runat="server" Label="烘烤日期" EmptyText="开始时间" Width="220px" LabelAlign="Right"></f:DatePicker>
<f:Label ID="Label1" runat="server" Text="-"></f:Label>
<f:DatePicker ID="txtEndDate" runat="server" EmptyText="结束时间" Width="120px"></f:DatePicker>
<f:TextBox runat="server" Label="焊材牌号" ID="txtBrand" EmptyText="输入查询条件" Width="300px" LabelAlign="right"></f:TextBox>
<f:Button ID="btnSearch" runat="server" Text="查询" Icon="SystemSearch" OnClick="btnSearch_Click"></f:Button>
<f:ToolbarFill ID="ToolbarFill1" runat="server">
</f:ToolbarFill>
<f:Button ID="btnSure" Text="打印" Icon="Printer" runat="server" OnClick="btnSure_Click">
</f:Button>
</Items>
</f:Toolbar>
</Toolbars>
<Columns>
<f:RowNumberField HeaderText="序号" Width="60px" TextAlign="Center" HeaderTextAlign="Center" />
<f:RenderField Width="100px" ColumnID="BakeDate" DataField="BakeDate" FieldType="Date"
Renderer="Date" HeaderText="烘烤日期" HeaderTextAlign="Center" TextAlign="Center">
</f:RenderField>
<f:RenderField Width="150px" ColumnID="Brand" DataField="Brand" FieldType="String"
HeaderText="牌号" HeaderTextAlign="Center" TextAlign="Center">
</f:RenderField>
<f:RenderField Width="120px" ColumnID="BatchNum" DataField="BatchNum" FieldType="String"
HeaderText="批号" HeaderTextAlign="Center" TextAlign="Center">
</f:RenderField>
<f:RenderField Width="120px" ColumnID="InboundSelfNum" DataField="InboundSelfNum" FieldType="String"
HeaderText="入库自编号" HeaderTextAlign="Center" TextAlign="Center">
</f:RenderField>
<f:RenderField Width="120px" ColumnID="Specifications" DataField="Specifications" FieldType="String"
HeaderText="规格mm" HeaderTextAlign="Center" TextAlign="Center">
</f:RenderField>
<f:RenderField Width="80px" ColumnID="Quantity" DataField="Quantity" FieldType="String"
HeaderText="数量kg" HeaderTextAlign="Center" TextAlign="Center">
</f:RenderField>
<%--<f:TemplateField Width="80px" HeaderText="数量kg" HeaderTextAlign="Center" TextAlign="Center">
<ItemTemplate>
<asp:TextBox ID="txtQuantity" runat="server" Width="90%"></asp:TextBox>
</ItemTemplate>
</f:TemplateField>--%>
<f:GroupField HeaderText="烘箱送电" HeaderTextAlign="Center">
<Columns>
<f:GroupField HeaderText="时间" HeaderTextAlign="Center">
<Columns>
<f:RenderField Width="50px" ColumnID="PowerTimeHour" DataField="PowerTimeHour" FieldType="String"
HeaderText="时" HeaderTextAlign="Center" TextAlign="Center">
</f:RenderField>
<f:RenderField Width="50px" ColumnID="PowerTimeMin" DataField="PowerTimeMin" FieldType="String"
HeaderText="分" HeaderTextAlign="Center" TextAlign="Center">
</f:RenderField>
</Columns>
</f:GroupField>
<f:RenderField Width="60px" ColumnID="PowerTemperature" DataField="PowerTemperature" FieldType="String"
HeaderText="温度℃" HeaderTextAlign="Center" TextAlign="Center">
</f:RenderField>
</Columns>
</f:GroupField>
<f:GroupField HeaderText="恒温" HeaderTextAlign="Center">
<Columns>
<f:RenderField Width="60px" ColumnID="ConstantTemperature" DataField="ConstantTemperature" FieldType="String"
HeaderText="温度℃" HeaderTextAlign="Center" TextAlign="Center">
</f:RenderField>
<f:GroupField HeaderText="开始时间" HeaderTextAlign="Center">
<Columns>
<f:RenderField Width="50px" ColumnID="ConstantStartHour" DataField="ConstantStartHour" FieldType="String"
HeaderText="时" HeaderTextAlign="Center" TextAlign="Center">
</f:RenderField>
<f:RenderField Width="50px" ColumnID="ConstantStartMin" DataField="ConstantStartMin" FieldType="String"
HeaderText="分" HeaderTextAlign="Center" TextAlign="Center">
</f:RenderField>
</Columns>
</f:GroupField>
<f:GroupField HeaderText="结束时间" HeaderTextAlign="Center">
<Columns>
<f:RenderField Width="50px" ColumnID="ConstantEndHour" DataField="ConstantEndHour" FieldType="String"
HeaderText="时" HeaderTextAlign="Center" TextAlign="Center">
</f:RenderField>
<f:RenderField Width="50px" ColumnID="ConstantEndMin" DataField="ConstantEndMin" FieldType="String"
HeaderText="分" HeaderTextAlign="Center" TextAlign="Center">
</f:RenderField>
</Columns>
</f:GroupField>
</Columns>
</f:GroupField>
<f:GroupField HeaderText="移入保温箱" HeaderTextAlign="Center">
<Columns>
<f:GroupField HeaderText="时间" HeaderTextAlign="Center">
<Columns>
<f:RenderField Width="50px" ColumnID="MoveInsulationBoxHour" DataField="MoveInsulationBoxHour" FieldType="String"
HeaderText="时" HeaderTextAlign="Center" TextAlign="Center">
</f:RenderField>
<f:RenderField Width="50px" ColumnID="MoveInsulationBoxMin" DataField="MoveInsulationBoxMin" FieldType="String"
HeaderText="分" HeaderTextAlign="Center" TextAlign="Center">
</f:RenderField>
</Columns>
</f:GroupField>
<f:RenderField Width="60px" ColumnID="MoveInsulationBoxTemperature" DataField="MoveInsulationBoxTemperature" FieldType="String"
HeaderText="温度℃" HeaderTextAlign="Center" TextAlign="Center">
</f:RenderField>
</Columns>
</f:GroupField>
<f:RenderField Width="90px" ColumnID="BakingFrequency" DataField="BakingFrequency" FieldType="String"
HeaderText="烘烤次数" HeaderTextAlign="Center" TextAlign="Center">
</f:RenderField>
<f:RenderField Width="80px" ColumnID="Bakers" DataField="Bakers" FieldType="String"
HeaderText="烘烤人" HeaderTextAlign="Center" TextAlign="Center">
</f:RenderField>
<f:RenderField Width="180px" ColumnID="UnitStoreName" DataField="UnitStoreName" FieldType="String"
HeaderText="单位仓库" HeaderTextAlign="Center" TextAlign="Center">
</f:RenderField>
<f:RenderField Width="180px" ColumnID="BakeRecordsId" DataField="BakeRecordsId" FieldType="String"
HeaderText="焊材库Id" HeaderTextAlign="Center" TextAlign="Center" Hidden="true">
</f:RenderField>
</Columns>
</f:Grid>
</Items>
</f:Panel>
</Items>
</f:Panel>
<f:Window ID="Window2" Title="打印焊条烘烤记录" Hidden="true" EnableIFrame="true" EnableMaximize="true"
Target="Top" EnableResize="true" runat="server" IsModal="true" Width="1024px"
Height="640px">
</f:Window>
</form>
</body>
</html>

View File

@ -0,0 +1,255 @@
using BLL;
using System;
using System.Collections.Generic;
using System.Data.SqlClient;
using System.Data;
using System.Linq;
using System.Web;
using System.Web.UI;
using System.Web.UI.WebControls;
using System.IO;
namespace FineUIPro.Web.JGZL
{
public partial class WeldingRodBaking : PageBase
{
/// <summary>
///
/// </summary>
private static List<Model.HJGL_BakeRecords> reportLists = new List<Model.HJGL_BakeRecords>();
#region
/// <summary>
/// 加载页面
/// </summary>
/// <param name="sender"></param>
/// <param name="e"></param>
protected void Page_Load(object sender, EventArgs e)
{
if (!IsPostBack)
{
this.drpProjectId.DataTextField = "ProjectCode";
this.drpProjectId.DataValueField = "ProjectId";
this.drpProjectId.DataSource = BLL.Base_ProjectService.GetOnProjectList("1");
this.drpProjectId.DataBind();
Funs.FineUIPleaseSelect(this.drpProjectId);
BindGrid();
}
}
private void BindGrid()
{
string strSql = @"SELECT BakeRecords.BakeRecordsId,
BakeRecords.BakeDate,
BakeRecords.Brand,
BakeRecords.BatchNum,
BakeRecords.InboundSelfNum,
BakeRecords.Specifications,
BakeRecords.Quantity,
BakeRecords.PowerTime,
datepart(HOUR,BakeRecords.PowerTime) as PowerTimeHour,
datepart(MINUTE,BakeRecords.PowerTime) as PowerTimeMin,
BakeRecords.PowerTemperature,
BakeRecords.ConstantTemperature,
BakeRecords.ConstantStartTime,
datepart(HOUR,BakeRecords.ConstantStartTime) as ConstantStartHour,
datepart(MINUTE,BakeRecords.ConstantStartTime) as ConstantStartMin,
BakeRecords.ConstantEndTime,
datepart(HOUR,BakeRecords.ConstantEndTime) as ConstantEndHour,
datepart(MINUTE,BakeRecords.ConstantEndTime) as ConstantEndMin,
BakeRecords.MoveInsulationBoxTime,
datepart(HOUR,BakeRecords.MoveInsulationBoxTime) as MoveInsulationBoxHour,
datepart(MINUTE,BakeRecords.MoveInsulationBoxTime) as MoveInsulationBoxMin,
BakeRecords.MoveInsulationBoxTemperature,
BakeRecords.BakingFrequency,
BakeRecords.Bakers,
BakeRecords.UnitStoreId,
BakeRecords.Type,
store.UnitStoreName
FROM dbo.HJGL_BakeRecords AS BakeRecords
LEFT JOIN dbo.Weld_UnitStore store ON store.UnitStoreId=BakeRecords.UnitStoreId
WHERE BakeRecords.Type='1' ";
List<SqlParameter> listStr = new List<SqlParameter>();
//listStr.Add(new SqlParameter("@projectId",this.drpProjectId.SelectedValue));
if (!string.IsNullOrEmpty(this.txtBrand.Text.Trim()))
{
strSql += " AND BakeRecords.Brand LIKE @Brand";
listStr.Add(new SqlParameter("@Brand", "%" + this.txtBrand.Text.Trim() + "%"));
}
if (!string.IsNullOrEmpty(this.txtStartDate.Text.Trim()))
{
strSql += " AND BakeRecords.BakeDate >= @startDate";
listStr.Add(new SqlParameter("@startDate", this.txtStartDate.Text.Trim()));
}
if (!string.IsNullOrEmpty(this.txtEndDate.Text.Trim()))
{
strSql += " AND BakeRecords.BakeDate <= @endDate";
listStr.Add(new SqlParameter("@endDate", this.txtEndDate.Text.Trim()));
}
strSql += " order by BakeRecords.BakeDate desc";
SqlParameter[] parameter = listStr.ToArray();
DataTable tb = SQLHelper.GetDataTableRunText(strSql, parameter);
Grid1.RecordCount = tb.Rows.Count;
//var table = this.GetPagedDataTable(Grid1, tb);
Grid1.DataSource = tb;
Grid1.DataBind();
}
#endregion
#region
/// <summary>
/// 排序
/// </summary>
/// <param name="sender"></param>
/// <param name="e"></param>
protected void Grid1_Sort(object sender, GridSortEventArgs e)
{
Grid1.SortDirection = e.SortDirection;
Grid1.SortField = e.SortField;
BindGrid();
}
#endregion
#region
/// <summary>
/// 确定按钮
/// </summary>
/// <param name="sender"></param>
/// <param name="e"></param>
protected void btnSure_Click(object sender, EventArgs e)
{
if (this.drpProjectId.SelectedValue == BLL.Const._Null)
{
Alert.ShowInTop("请选择项目!");
return;
}
reportLists.Clear();
if (Grid1.SelectedRowIDArray.Length <= 0)
{
Alert.ShowInTop("请至少选择一条记录!");
return;
}
string[] selectRowId = Grid1.SelectedRowIDArray;
int n = 0;
int j = 0;
int[] selections = new int[selectRowId.Count()];
foreach (GridRow row in Grid1.Rows)
{
if (selectRowId.Contains(row.DataKeys[0]))
{
selections[n] = j;
n++;
}
j++;
}
var select = selections.Distinct();
foreach (int i in select)
{
var bakeRecords = BLL.BakeRecordsService.GetBakeRecordsById(Grid1.DataKeys[i][0].ToString());
if (bakeRecords != null)
{
reportLists.Add(bakeRecords);
}
if (!string.IsNullOrEmpty(this.txtBrand.Text.Trim()))
{
reportLists = (from x in reportLists where x.Brand.Contains(this.txtBrand.Text.Trim()) select x).ToList();
}
if (!string.IsNullOrEmpty(this.txtStartDate.Text.Trim()))
{
reportLists = (from x in reportLists where x.BakeDate >= Funs.GetNewDateTime(this.txtStartDate.Text.Trim()) select x).ToList();
}
if (!string.IsNullOrEmpty(this.txtEndDate.Text.Trim()))
{
reportLists = (from x in reportLists where x.BakeDate <= Funs.GetNewDateTime(this.txtEndDate.Text.Trim()) select x).ToList();
}
string initTemplatePath = "";
string rootPath = Server.MapPath("~/");
BLL.Common.FastReportService.ResetData();
Dictionary<string, string> keyValuePairs = new Dictionary<string, string>();
if (this.drpProjectId.SelectedValue != BLL.Const._Null)
{
var project = BLL.Base_ProjectService.GetProjectByProjectId(this.drpProjectId.SelectedValue);
if (project != null)
{
keyValuePairs.Add("ProjectName", project.ProjectName);
}
}
DataTable dt = new DataTable();
dt.TableName = "Data";
dt.Columns.Add("BakeDateMonth");
dt.Columns.Add("BakeDateDay");
dt.Columns.Add("Brand");
dt.Columns.Add("BatchNum");
dt.Columns.Add("InboundSelfNum");
dt.Columns.Add("Specifications");
dt.Columns.Add("Quantity");
dt.Columns.Add("PowerTimeHour");
dt.Columns.Add("PowerTimeMin");
dt.Columns.Add("PowerTemperature");
dt.Columns.Add("ConstantTemperature");
dt.Columns.Add("ConstantStartHour");
dt.Columns.Add("ConstantStartMin");
dt.Columns.Add("ConstantEndHour");
dt.Columns.Add("ConstantEndMin");
dt.Columns.Add("MoveInsulationBoxHour");
dt.Columns.Add("MoveInsulationBoxMin");
dt.Columns.Add("MoveInsulationBoxTemperature");
dt.Columns.Add("BakingFrequency");
dt.Columns.Add("Bakers");
reportLists = reportLists.OrderBy(x => x.BakeDate).ToList();
foreach (var item in reportLists)
{
var newRow = dt.NewRow();
newRow["BakeDateMonth"] = item.BakeDate.Value.Month.ToString();
newRow["BakeDateDay"] = item.BakeDate.Value.Day.ToString();
newRow["Brand"] = item.Brand;
newRow["BatchNum"] = item.BatchNum;
newRow["InboundSelfNum"] = item.InboundSelfNum;
newRow["Specifications"] = item.Specifications;
newRow["Quantity"] = item.Quantity.Value.ToString("0.#");
newRow["PowerTimeHour"] = item.PowerTime.HasValue ? item.PowerTime.Value.Hour.ToString() : "";
newRow["PowerTimeMin"] = item.PowerTime.HasValue ? item.PowerTime.Value.Minute.ToString() : "";
newRow["PowerTemperature"] = item.PowerTemperature.HasValue ? item.PowerTemperature.Value.ToString("0.#") : "";
newRow["ConstantTemperature"] = item.ConstantTemperature.HasValue ? item.ConstantTemperature.Value.ToString("0.#") : "";
newRow["ConstantStartHour"] = item.ConstantStartTime.HasValue ? item.ConstantStartTime.Value.Hour.ToString() : "";
newRow["ConstantStartMin"] = item.ConstantStartTime.HasValue ? item.ConstantStartTime.Value.Minute.ToString() : "";
newRow["ConstantEndHour"] = item.ConstantEndTime.HasValue ? item.ConstantEndTime.Value.Hour.ToString() : "";
newRow["ConstantEndMin"] = item.ConstantEndTime.HasValue ? item.ConstantEndTime.Value.Minute.ToString() : "";
newRow["MoveInsulationBoxHour"] = item.MoveInsulationBoxTime.HasValue ? item.MoveInsulationBoxTime.Value.Hour.ToString() : "";
newRow["MoveInsulationBoxMin"] = item.MoveInsulationBoxTime.HasValue ? item.MoveInsulationBoxTime.Value.Minute.ToString() : "";
newRow["MoveInsulationBoxTemperature"] = item.MoveInsulationBoxTemperature.HasValue ? item.MoveInsulationBoxTemperature.Value.ToString("0.#") : "";
newRow["BakingFrequency"] = item.BakingFrequency.ToString();
newRow["Bakers"] = item.Bakers;
dt.Rows.Add(newRow);
}
BLL.Common.FastReportService.AddFastreportParameter(keyValuePairs);
BLL.Common.FastReportService.AddFastreportTable(dt);
initTemplatePath = "File\\Fastreport\\JGZL\\焊条烘烤记录.frx";
if (File.Exists(rootPath + initTemplatePath))
{
PageContext.RegisterStartupScript(Window2.GetShowReference(String.Format("../common/ReportPrint/Fastreport.aspx?ReportPath={0}", rootPath + initTemplatePath)));
}
}
}
#endregion
#region
/// <summary>
/// 查找
/// </summary>
/// <param name="sender"></param>
/// <param name="e"></param>
protected void btnSearch_Click(object sender, EventArgs e)
{
this.BindGrid();
}
#endregion
}
}

View File

@ -0,0 +1,152 @@
//------------------------------------------------------------------------------
// <自动生成>
// 此代码由工具生成。
//
// 对此文件的更改可能导致不正确的行为,如果
// 重新生成代码,则所做更改将丢失。
// </自动生成>
//------------------------------------------------------------------------------
namespace FineUIPro.Web.JGZL
{
public partial class WeldingRodBaking
{
/// <summary>
/// form1 控件。
/// </summary>
/// <remarks>
/// 自动生成的字段。
/// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。
/// </remarks>
protected global::System.Web.UI.HtmlControls.HtmlForm form1;
/// <summary>
/// PageManager1 控件。
/// </summary>
/// <remarks>
/// 自动生成的字段。
/// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。
/// </remarks>
protected global::FineUIPro.PageManager PageManager1;
/// <summary>
/// Panel1 控件。
/// </summary>
/// <remarks>
/// 自动生成的字段。
/// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。
/// </remarks>
protected global::FineUIPro.Panel Panel1;
/// <summary>
/// panelCenterRegion 控件。
/// </summary>
/// <remarks>
/// 自动生成的字段。
/// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。
/// </remarks>
protected global::FineUIPro.Panel panelCenterRegion;
/// <summary>
/// Grid1 控件。
/// </summary>
/// <remarks>
/// 自动生成的字段。
/// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。
/// </remarks>
protected global::FineUIPro.Grid Grid1;
/// <summary>
/// Toolbar3 控件。
/// </summary>
/// <remarks>
/// 自动生成的字段。
/// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。
/// </remarks>
protected global::FineUIPro.Toolbar Toolbar3;
/// <summary>
/// drpProjectId 控件。
/// </summary>
/// <remarks>
/// 自动生成的字段。
/// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。
/// </remarks>
protected global::FineUIPro.DropDownList drpProjectId;
/// <summary>
/// txtStartDate 控件。
/// </summary>
/// <remarks>
/// 自动生成的字段。
/// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。
/// </remarks>
protected global::FineUIPro.DatePicker txtStartDate;
/// <summary>
/// Label1 控件。
/// </summary>
/// <remarks>
/// 自动生成的字段。
/// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。
/// </remarks>
protected global::FineUIPro.Label Label1;
/// <summary>
/// txtEndDate 控件。
/// </summary>
/// <remarks>
/// 自动生成的字段。
/// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。
/// </remarks>
protected global::FineUIPro.DatePicker txtEndDate;
/// <summary>
/// txtBrand 控件。
/// </summary>
/// <remarks>
/// 自动生成的字段。
/// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。
/// </remarks>
protected global::FineUIPro.TextBox txtBrand;
/// <summary>
/// btnSearch 控件。
/// </summary>
/// <remarks>
/// 自动生成的字段。
/// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。
/// </remarks>
protected global::FineUIPro.Button btnSearch;
/// <summary>
/// ToolbarFill1 控件。
/// </summary>
/// <remarks>
/// 自动生成的字段。
/// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。
/// </remarks>
protected global::FineUIPro.ToolbarFill ToolbarFill1;
/// <summary>
/// btnSure 控件。
/// </summary>
/// <remarks>
/// 自动生成的字段。
/// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。
/// </remarks>
protected global::FineUIPro.Button btnSure;
/// <summary>
/// Window2 控件。
/// </summary>
/// <remarks>
/// 自动生成的字段。
/// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。
/// </remarks>
protected global::FineUIPro.Window Window2;
}
}