This commit is contained in:
commit
9a4cdcc36a
|
|
@ -0,0 +1,4 @@
|
|||
alter table JGZL_DocumentDescription add CompilationBasis nvarchar(1000)
|
||||
alter table JGZL_DocumentDescription add MainContent nvarchar(500)
|
||||
alter table JGZL_DocumentDescription add CopiesNum nvarchar(500)
|
||||
go
|
||||
|
|
@ -248,6 +248,7 @@
|
|||
<Compile Include="HJGL\WeldingManage\WeldRecordInService.cs" />
|
||||
<Compile Include="JGZL\AcceptanceCertificateService.cs" />
|
||||
<Compile Include="JGZL\DocumentDescriptionService.cs" />
|
||||
<Compile Include="JGZL\FileDirectoryService.cs" />
|
||||
<Compile Include="JGZL\LeakTestOfPipelineSystemRecordItemService.cs" />
|
||||
<Compile Include="JGZL\PressureTestOfPipelineSystemRecordItemService.cs" />
|
||||
<Compile Include="JGZL\AnticorrosionEngineeringInspectionRecordItemService.cs" />
|
||||
|
|
|
|||
|
|
@ -1900,6 +1900,10 @@ namespace BLL
|
|||
/// </summary>
|
||||
public const string JGZL_DocumentDescriptionMenuId = "81B9A521-A077-48C5-98A8-3A44C0B0D803";
|
||||
|
||||
/// <summary>
|
||||
/// 交工技术文件目录
|
||||
/// </summary>
|
||||
public const string JGZL_FileDirectoryMenuId = "729387AD-488D-4451-AEB4-570306747351";
|
||||
|
||||
#endregion
|
||||
|
||||
|
|
|
|||
|
|
@ -42,6 +42,9 @@ namespace BLL
|
|||
newDocumentDescription.CompileDate = documentDescription.CompileDate;
|
||||
newDocumentDescription.Reviewer = documentDescription.Reviewer;
|
||||
newDocumentDescription.ReviewDate = documentDescription.ReviewDate;
|
||||
newDocumentDescription.CompilationBasis= documentDescription.CompilationBasis;
|
||||
newDocumentDescription.MainContent = documentDescription.MainContent;
|
||||
newDocumentDescription.CopiesNum = documentDescription.CopiesNum;
|
||||
db.JGZL_DocumentDescription.InsertOnSubmit(newDocumentDescription);
|
||||
db.SubmitChanges();
|
||||
}
|
||||
|
|
@ -61,6 +64,9 @@ namespace BLL
|
|||
newDocumentDescription.DesigningUnit = documentDescription.DesigningUnit;
|
||||
newDocumentDescription.TestingUnit = documentDescription.TestingUnit;
|
||||
newDocumentDescription.ConstructionCompany = documentDescription.ConstructionCompany;
|
||||
newDocumentDescription.CompilationBasis = documentDescription.CompilationBasis;
|
||||
newDocumentDescription.MainContent = documentDescription.MainContent;
|
||||
newDocumentDescription.CopiesNum = documentDescription.CopiesNum;
|
||||
db.SubmitChanges();
|
||||
}
|
||||
}
|
||||
|
|
|
|||
|
|
@ -0,0 +1,41 @@
|
|||
using Model;
|
||||
using NPOI.SS.UserModel;
|
||||
using System;
|
||||
using System.Collections.Generic;
|
||||
using System.Linq;
|
||||
using System.Text;
|
||||
using System.Threading.Tasks;
|
||||
|
||||
namespace BLL
|
||||
{
|
||||
/// <summary>
|
||||
/// 交工技术文件目录
|
||||
/// </summary>
|
||||
public class FileDirectoryService
|
||||
{
|
||||
/// <summary>
|
||||
/// 根据主键获取交工技术文件目录
|
||||
/// </summary>
|
||||
/// <param name="fileDirectoryId"></param>
|
||||
/// <returns></returns>
|
||||
public static Model.JGZL_FileDirectory GetFileDirectoryById(string fileDirectoryId)
|
||||
{
|
||||
return Funs.DB.JGZL_FileDirectory.FirstOrDefault(e => e.FileDirectoryId == fileDirectoryId);
|
||||
}
|
||||
|
||||
/// <summary>
|
||||
/// 根据主键删除交工技术文件目录
|
||||
/// </summary>
|
||||
/// <param name="fileDirectoryId"></param>
|
||||
public static void DeleteFileDirectoryById(string fileDirectoryId)
|
||||
{
|
||||
SGGLDB db = Funs.DB;
|
||||
var fileDirectory = db.JGZL_FileDirectory.FirstOrDefault(e => e.FileDirectoryId == fileDirectoryId);
|
||||
if (fileDirectory != null)
|
||||
{
|
||||
db.JGZL_FileDirectory.DeleteOnSubmit(fileDirectory);
|
||||
db.SubmitChanges();
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
|
|
@ -18,11 +18,21 @@ namespace BLL
|
|||
return Funs.DB.JGZL_SpecialEquipmentMaintenance.FirstOrDefault(e => e.MaintenanceId == maintenanceId);
|
||||
}
|
||||
|
||||
/// <summary>
|
||||
/// 增加特种设备安装改造维修告知书
|
||||
/// </summary>
|
||||
/// <param name="maintenance"></param>
|
||||
public static void AddSpecialEquipmentMaintenance(Model.JGZL_SpecialEquipmentMaintenance maintenance)
|
||||
/// <summary>
|
||||
/// 根据项目Id获取设备安装改造维修告知书
|
||||
/// </summary>
|
||||
/// <param name="projectId"></param>
|
||||
/// <returns></returns>
|
||||
public static Model.JGZL_SpecialEquipmentMaintenance GetSpecialEquipmentMaintenanceByProjectId(string projectId)
|
||||
{
|
||||
return Funs.DB.JGZL_SpecialEquipmentMaintenance.FirstOrDefault(e => e.MaintenanceId == projectId);
|
||||
}
|
||||
|
||||
/// <summary>
|
||||
/// 增加特种设备安装改造维修告知书
|
||||
/// </summary>
|
||||
/// <param name="maintenance"></param>
|
||||
public static void AddSpecialEquipmentMaintenance(Model.JGZL_SpecialEquipmentMaintenance maintenance)
|
||||
{
|
||||
SGGLDB db = Funs.DB;
|
||||
Model.JGZL_SpecialEquipmentMaintenance newMaintenance = new Model.JGZL_SpecialEquipmentMaintenance();
|
||||
|
|
|
|||
|
|
@ -1,5 +1,5 @@
|
|||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<Report ScriptLanguage="CSharp" ReportInfo.Created="02/06/2026 09:48:33" ReportInfo.Modified="02/06/2026 15:37:44" ReportInfo.CreatorVersion="2017.1.16.0">
|
||||
<Report ScriptLanguage="CSharp" ReportInfo.Created="02/06/2026 09:48:33" ReportInfo.Modified="02/07/2026 13:45:30" ReportInfo.CreatorVersion="2017.1.16.0">
|
||||
<ScriptText>using System;
|
||||
using System.Collections;
|
||||
using System.Collections.Generic;
|
||||
|
|
@ -42,7 +42,7 @@ namespace FastReport
|
|||
}
|
||||
</ScriptText>
|
||||
<Dictionary>
|
||||
<MsSqlDataConnection Name="Connection" ConnectionString="rijcmlqtRsOalcXxDhVt62rPEPNYjaATUoMqziRYvJtgNsyJKYAG7kXKvNAMI/qBkgJNPccFsWrhiII6oyX1HS+uwN7YigxVjqUq3vIet2zpPnmWhwvYEvWOOCZZGx6EC4BfGfWX8aPj6bmoF52Z0fnUA9g71duxa/gvChTW/nzu9qsYVuvlVHliMnnu6jEIF9n+/QFIivhvgFLiGeh14nMUOBc7Q==">
|
||||
<MsSqlDataConnection Name="Connection" ConnectionString="rijcmlqtRsOalcXxDhVt62rPEPNYjaATUoMqziRYvJtgNsyJKYAG7kXKvNAMI/qBkgJNPccFsWrhiII6oyX1HS+uwN7YigxVjqUq3vIet2zpPnmWhwvYEvWOOCZZGx6EC4BfGfWX8aPj6bmoF52Z0fnUA9g71duxa/gvChTW/nzu9qsYVuvlVHliMnnu6jEIF9n+/QFD4TgajWZCbg/4DFdUKoX7Q==">
|
||||
<TableDataSource Name="Data" DataType="System.Int32" PropName="Attach_Image" Enabled="true" TableName="Data">
|
||||
<Column Name="SerialNumber" DataType="System.String" PropName="attach_image_id"/>
|
||||
<Column Name="FileCode" DataType="System.String" PropName="image_series"/>
|
||||
|
|
@ -52,7 +52,7 @@ namespace FastReport
|
|||
</MsSqlDataConnection>
|
||||
<Parameter Name="ProjectName" DataType="System.String"/>
|
||||
</Dictionary>
|
||||
<ReportPage Name="Page1" RawPaperSize="9" LeftMargin="22" TopMargin="13.3" RightMargin="17" BottomMargin="16.5" Guides="0,646.4,129.28,390.86,475.91,34.78,138.73,261.58,507.67,646.38,323.19,646.37,45.83,242.86,515.49">
|
||||
<ReportPage Name="Page1" RawPaperSize="9" LeftMargin="22" TopMargin="13.3" RightMargin="17" BottomMargin="16.5" Guides="0,646.4,129.28,390.86,475.91,34.78,138.73,261.58,507.67,646.37,45.83,242.86,515.49,646.38,323.19">
|
||||
<PageHeaderBand Name="PageHeader1" Width="646.38" Height="113.4" Guides="0,113.4,75.6,9.45,28.35,37.8">
|
||||
<TableObject Name="Table1" Width="646.4" Height="113.4" Border.Lines="Left">
|
||||
<TableColumn Name="Column1" Width="129.28"/>
|
||||
|
|
@ -77,40 +77,22 @@ namespace FastReport
|
|||
<TableCell Name="Cell10" Border.Lines="Right, Bottom" Text="管道安装工程" VertAlign="Center" Font="楷体, 10.5pt"/>
|
||||
</TableRow>
|
||||
</TableObject>
|
||||
<ChildBand Name="Child1" Top="117.4" Width="646.38" Height="107.6" PrintOn="LastPage, OddPages, EvenPages, RepeatedBand, SinglePage" Guides="0,107.6,31.5,76.1">
|
||||
<TableObject Name="Table4" Width="646.38" Height="107.6" Border.Lines="Left">
|
||||
<TableColumn Name="Column23" Width="323.19"/>
|
||||
<TableColumn Name="Column24" Width="323.19"/>
|
||||
<TableRow Name="Row11" Height="31.5">
|
||||
<TableCell Name="Cell48" Text="编制人:" VertAlign="Center" Font="宋体, 10.5pt"/>
|
||||
<TableCell Name="Cell49" Border.Lines="Left, Right" Text="审核人:" VertAlign="Center" Font="宋体, 10.5pt"/>
|
||||
</TableRow>
|
||||
<TableRow Name="Row12" Height="44.6">
|
||||
<TableCell Name="Cell53" VertAlign="Center" Font="宋体, 10.5pt"/>
|
||||
<TableCell Name="Cell54" Border.Lines="Left, Right" VertAlign="Center" Font="宋体, 10.5pt"/>
|
||||
</TableRow>
|
||||
<TableRow Name="Row13" Height="31.5">
|
||||
<TableCell Name="Cell58" Text="日 期: 年 月 日" VertAlign="Center" Font="宋体, 10.5pt"/>
|
||||
<TableCell Name="Cell59" Border.Lines="Left, Right" Text="日 期: 年 月 日" VertAlign="Center" Font="宋体, 10.5pt"/>
|
||||
<ChildBand Name="Child3" Top="117.4" Width="646.38" Height="34.85" Guides="0,34.85">
|
||||
<TableObject Name="Table2" Width="646.37" Height="34.85" Border.Lines="All">
|
||||
<TableColumn Name="Column6" Width="45.83"/>
|
||||
<TableColumn Name="Column7" Width="197.03"/>
|
||||
<TableColumn Name="Column8" Width="272.63"/>
|
||||
<TableColumn Name="Column9" Width="130.88"/>
|
||||
<TableRow Name="Row3" Height="34.85">
|
||||
<TableCell Name="Cell11" Border.Lines="All" Text="序号" HorzAlign="Center" VertAlign="Center" Font="宋体, 10.5pt"/>
|
||||
<TableCell Name="Cell12" Border.Lines="All" Text="文件编号" HorzAlign="Center" VertAlign="Center" Font="宋体, 10.5pt"/>
|
||||
<TableCell Name="Cell13" Border.Lines="All" Text="文件名称" HorzAlign="Center" VertAlign="Center" Font="宋体, 10.5pt"/>
|
||||
<TableCell Name="Cell14" Border.Lines="All" Text="页次" HorzAlign="Center" VertAlign="Center" Font="宋体, 10.5pt"/>
|
||||
</TableRow>
|
||||
</TableObject>
|
||||
<ChildBand Name="Child3" Top="229" Width="646.38" Height="34.85" Guides="0,34.85">
|
||||
<TableObject Name="Table2" Width="646.37" Height="34.85" Border.Lines="All">
|
||||
<TableColumn Name="Column6" Width="45.83"/>
|
||||
<TableColumn Name="Column7" Width="197.03"/>
|
||||
<TableColumn Name="Column8" Width="272.63"/>
|
||||
<TableColumn Name="Column9" Width="130.88"/>
|
||||
<TableRow Name="Row3" Height="34.85">
|
||||
<TableCell Name="Cell11" Border.Lines="All" Text="序号" HorzAlign="Center" VertAlign="Center" Font="宋体, 10.5pt"/>
|
||||
<TableCell Name="Cell12" Border.Lines="All" Text="文件编号" HorzAlign="Center" VertAlign="Center" Font="宋体, 10.5pt"/>
|
||||
<TableCell Name="Cell13" Border.Lines="All" Text="文件名称" HorzAlign="Center" VertAlign="Center" Font="宋体, 10.5pt"/>
|
||||
<TableCell Name="Cell14" Border.Lines="All" Text="页次" HorzAlign="Center" VertAlign="Center" Font="宋体, 10.5pt"/>
|
||||
</TableRow>
|
||||
</TableObject>
|
||||
</ChildBand>
|
||||
</ChildBand>
|
||||
</PageHeaderBand>
|
||||
<DataBand Name="Data1" Top="267.85" Width="646.38" Height="35.91" Guides="0,35.91">
|
||||
<DataBand Name="Data1" Top="156.25" Width="646.38" Height="35.91" Guides="0,35.91">
|
||||
<TableObject Name="Table3" Width="646.37" Height="35.91" Border.Lines="All" ManualBuildEvent="Table3_ManualBuild">
|
||||
<TableColumn Name="Column10" Width="45.83"/>
|
||||
<TableColumn Name="Column11" Width="197.03"/>
|
||||
|
|
@ -124,21 +106,39 @@ namespace FastReport
|
|||
</TableRow>
|
||||
</TableObject>
|
||||
</DataBand>
|
||||
<ColumnFooterBand Name="ColumnFooter1" Top="347.67" Width="646.38">
|
||||
<ChildBand Name="Child2" Top="307.76" Width="646.38" Height="35.91" Guides="0,35.91" FillUnusedSpace="true">
|
||||
<TableObject Name="Table5" Width="646.37" Height="35.91" Border.Lines="All">
|
||||
<TableColumn Name="Column19" Width="45.83"/>
|
||||
<TableColumn Name="Column20" Width="197.03"/>
|
||||
<TableColumn Name="Column21" Width="272.63"/>
|
||||
<TableColumn Name="Column22" Width="130.88"/>
|
||||
<TableRow Name="Row10" Height="35.91">
|
||||
<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"/>
|
||||
<TableCell Name="Cell46" Border.Lines="All" HorzAlign="Center" VertAlign="Center" Font="宋体, 10.5pt"/>
|
||||
<TableCell Name="Cell47" Border.Lines="All" HorzAlign="Center" VertAlign="Center" Font="宋体, 10.5pt"/>
|
||||
<ColumnFooterBand Name="ColumnFooter1" Top="236.07" Width="646.38">
|
||||
<ChildBand Name="Child2" Top="196.16" Width="646.38" Height="35.91" Guides="0,35.91" FillUnusedSpace="true">
|
||||
<TableObject Name="Table5" Width="646.37" Height="35.91" Border.Lines="All" ManualBuildEvent="Table3_ManualBuild">
|
||||
<TableColumn Name="Column25" Width="45.83"/>
|
||||
<TableColumn Name="Column26" Width="197.03"/>
|
||||
<TableColumn Name="Column27" Width="272.63"/>
|
||||
<TableColumn Name="Column28" Width="130.88"/>
|
||||
<TableRow Name="Row14" Height="35.91">
|
||||
<TableCell Name="Cell60" Border.Lines="All" HorzAlign="Center" VertAlign="Center" Font="楷体, 10.5pt"/>
|
||||
<TableCell Name="Cell61" Border.Lines="All" HorzAlign="Center" VertAlign="Center" Font="楷体, 10.5pt"/>
|
||||
<TableCell Name="Cell62" Border.Lines="All" VertAlign="Center" Font="楷体, 10.5pt"/>
|
||||
<TableCell Name="Cell63" Border.Lines="All" HorzAlign="Center" VertAlign="Center" Font="楷体, 10.5pt"/>
|
||||
</TableRow>
|
||||
</TableObject>
|
||||
</ChildBand>
|
||||
</ColumnFooterBand>
|
||||
<PageFooterBand Name="PageFooter1" Top="240.07" Width="646.38" Height="106.34" Guides="0,106.34,31.5,76.1">
|
||||
<TableObject Name="Table4" Width="646.38" Height="106.34" Border.Lines="Left">
|
||||
<TableColumn Name="Column23" Width="323.19"/>
|
||||
<TableColumn Name="Column24" Width="323.19"/>
|
||||
<TableRow Name="Row11" Height="31.5">
|
||||
<TableCell Name="Cell48" Text="编制人:" VertAlign="Center" Font="宋体, 10.5pt"/>
|
||||
<TableCell Name="Cell49" Border.Lines="Left, Right" Text="审核人:" VertAlign="Center" Font="宋体, 10.5pt"/>
|
||||
</TableRow>
|
||||
<TableRow Name="Row12" Height="44.6">
|
||||
<TableCell Name="Cell53" VertAlign="Center" Font="宋体, 10.5pt"/>
|
||||
<TableCell Name="Cell54" Border.Lines="Left, Right" VertAlign="Center" Font="宋体, 10.5pt"/>
|
||||
</TableRow>
|
||||
<TableRow Name="Row13" Height="30.24">
|
||||
<TableCell Name="Cell58" Border.Lines="Bottom" Text="日 期: 年 月 日" VertAlign="Center" Font="宋体, 10.5pt"/>
|
||||
<TableCell Name="Cell59" Border.Lines="Left, Right, Bottom" Text="日 期: 年 月 日" VertAlign="Center" Font="宋体, 10.5pt"/>
|
||||
</TableRow>
|
||||
</TableObject>
|
||||
</PageFooterBand>
|
||||
</ReportPage>
|
||||
</Report>
|
||||
|
|
|
|||
|
|
@ -1,5 +1,27 @@
|
|||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<Report ScriptLanguage="CSharp" ReportInfo.Created="01/29/2026 16:26:38" ReportInfo.Modified="02/06/2026 15:09:52" ReportInfo.CreatorVersion="2017.1.16.0">
|
||||
<Report ScriptLanguage="CSharp" ReportInfo.Created="01/29/2026 16:26:38" ReportInfo.Modified="02/08/2026 11:00:00" 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
|
||||
{
|
||||
|
||||
}
|
||||
}
|
||||
</ScriptText>
|
||||
<Dictionary>
|
||||
<Parameter Name="ProjectName" DataType="System.String"/>
|
||||
<Parameter Name="ProjectOverview" DataType="System.String"/>
|
||||
|
|
@ -7,6 +29,9 @@
|
|||
<Parameter Name="DesigningUnit" DataType="System.String"/>
|
||||
<Parameter Name="TestingUnit" DataType="System.String"/>
|
||||
<Parameter Name="ConstructionCompany" DataType="System.String"/>
|
||||
<Parameter Name="CompilationBasis" DataType="System.String"/>
|
||||
<Parameter Name="MainContent" DataType="System.String"/>
|
||||
<Parameter Name="CopiesNum" DataType="System.String"/>
|
||||
</Dictionary>
|
||||
<ReportPage Name="Page1" RawPaperSize="9" LeftMargin="22" TopMargin="13.3" RightMargin="17" BottomMargin="16.5" Guides="0,646.38,158.76,421.47,506.52,418.23,228.15,323.19">
|
||||
<PageHeaderBand Name="PageHeader1" Width="646.38" Height="94.5" Guides="0,94.5,9.45,28.35">
|
||||
|
|
@ -17,13 +42,13 @@
|
|||
<TableRow Name="Row1" Height="94.5">
|
||||
<TableCell Name="Cell1" Border.Lines="All" Text="SH/T 3503—J104" HorzAlign="Center" VertAlign="Center" Font="黑体, 10.5pt"/>
|
||||
<TableCell Name="Cell2" Border.Lines="Top, Bottom" Text="交工技术文件说明" HorzAlign="Center" VertAlign="Center" Font="思源宋体 CN, 16pt, style=Bold"/>
|
||||
<TableCell Name="Cell3" Border.Lines="All" Text=" [ProjectName]" Padding="2, 9, 2, 1" Font="楷体, 10.5pt">
|
||||
<TableCell Name="Cell3" Border.Lines="All" Text=" [ProjectName]" Padding="5, 9, 2, 1" Font="楷体, 10.5pt">
|
||||
<TextObject Name="Text1" Top="9.45" Width="85.05" Height="18.9" Text="工程名称:" HorzAlign="Center" VertAlign="Center" Font="宋体, 10.5pt"/>
|
||||
</TableCell>
|
||||
</TableRow>
|
||||
</TableObject>
|
||||
</PageHeaderBand>
|
||||
<DataBand Name="Data1" Top="98.5" Width="646.38" Height="830.2" Guides="0,830.2,194.11,227.57,33.46,261.03,294.49,327.95,361.41,394.87,428.33,461.79,495.25,528.71,562.17,605.08,42.91,642.88,37.8,676.34,709.8,749.49">
|
||||
<DataBand Name="Data1" Top="98.5" Width="646.38" Height="830.2" Guides="0,830.2,194.11,227.57,33.46,327.95,361.41,394.87,428.33,461.79,495.25,528.71,642.88,42.91,37.8,676.34,709.8,749.49">
|
||||
<TableObject Name="Table2" Width="646.38" Height="830.2" Border.Lines="Left, Right, Bottom">
|
||||
<TableColumn Name="Column4" Width="228.15"/>
|
||||
<TableColumn Name="Column5" Width="418.23"/>
|
||||
|
|
@ -36,51 +61,51 @@
|
|||
<TableCell Name="Cell10" VertAlign="Center" Font="楷体, 10.5pt"/>
|
||||
</TableRow>
|
||||
<TableRow Name="Row4" Height="33.46">
|
||||
<TableCell Name="Cell14" Text="1、《石油化工建设工程项目交工技术文件规定》(SH/T 3503-2007)" Padding="50, 1, 2, 1" VertAlign="Center" Font="楷体, 10.5pt" ColSpan="2"/>
|
||||
<TableCell Name="Cell15" VertAlign="Center" Font="楷体, 10.5pt"/>
|
||||
<TableCell Name="Cell14" Text="[CompilationBasis]" Padding="50, 1, 2, 1" Font="楷体, 10.5pt" ColSpan="2" RowSpan="3"/>
|
||||
<TableCell Name="Cell15" Font="楷体, 10.5pt"/>
|
||||
</TableRow>
|
||||
<TableRow Name="Row5" Height="33.46">
|
||||
<TableCell Name="Cell19" Text="2、《国家重大建设项目文件归档要求与档案管理规范》(DA/T28-2002 ) " Padding="50, 1, 2, 1" VertAlign="Center" Font="楷体, 10.5pt" ColSpan="2"/>
|
||||
<TableCell Name="Cell20" VertAlign="Center" Font="楷体, 10.5pt"/>
|
||||
<TableCell Name="Cell19" Padding="50, 1, 2, 1" Font="楷体, 10.5pt"/>
|
||||
<TableCell Name="Cell20" Font="楷体, 10.5pt"/>
|
||||
</TableRow>
|
||||
<TableRow Name="Row6" Height="33.46">
|
||||
<TableCell Name="Cell24" Text="3、《石油化工建设工程项目过程技术文件规定》(DA/T28-2002 ) " Padding="50, 1, 2, 1" VertAlign="Center" Font="楷体, 10.5pt" ColSpan="2"/>
|
||||
<TableCell Name="Cell25" VertAlign="Center" Font="楷体, 10.5pt"/>
|
||||
<TableCell Name="Cell24" Padding="50, 1, 2, 1" Font="楷体, 10.5pt"/>
|
||||
<TableCell Name="Cell25" Font="楷体, 10.5pt"/>
|
||||
</TableRow>
|
||||
<TableRow Name="Row7" Height="33.46">
|
||||
<TableCell Name="Cell26" Text="三、参建单位" VertAlign="Center" Font="楷体, 10.5pt" ColSpan="2"/>
|
||||
<TableCell Name="Cell27" VertAlign="Center" Font="楷体, 10.5pt"/>
|
||||
</TableRow>
|
||||
<TableRow Name="Row8" Height="33.46">
|
||||
<TableCell Name="Cell28" Text="建设单位:" HorzAlign="Right" VertAlign="Center" Font="楷体, 10.5pt"/>
|
||||
<TableCell Name="Cell29" Text="[ConstructionUnit]" VertAlign="Center" Font="楷体, 10.5pt"/>
|
||||
<TableCell Name="Cell28" Text="建设单位:[ConstructionUnit]" Padding="50, 1, 2, 1" VertAlign="Center" Font="楷体, 10.5pt" ColSpan="2"/>
|
||||
<TableCell Name="Cell29" VertAlign="Center" Font="楷体, 10.5pt"/>
|
||||
</TableRow>
|
||||
<TableRow Name="Row9" Height="33.46">
|
||||
<TableCell Name="Cell30" Text="设计单位:" HorzAlign="Right" VertAlign="Center" Font="楷体, 10.5pt"/>
|
||||
<TableCell Name="Cell31" Text="[DesigningUnit]" VertAlign="Center" Font="楷体, 10.5pt"/>
|
||||
<TableCell Name="Cell30" Text="设计单位:[DesigningUnit]" Padding="50, 1, 2, 1" VertAlign="Center" Font="楷体, 10.5pt" ColSpan="2"/>
|
||||
<TableCell Name="Cell31" VertAlign="Center" Font="楷体, 10.5pt"/>
|
||||
</TableRow>
|
||||
<TableRow Name="Row10" Height="33.46">
|
||||
<TableCell Name="Cell32" Text="检测单位:" HorzAlign="Right" VertAlign="Center" Font="楷体, 10.5pt"/>
|
||||
<TableCell Name="Cell33" Text="[TestingUnit]" VertAlign="Center" Font="楷体, 10.5pt"/>
|
||||
<TableCell Name="Cell32" Text="检测单位:[TestingUnit]" Padding="50, 1, 2, 1" VertAlign="Center" Font="楷体, 10.5pt" ColSpan="2"/>
|
||||
<TableCell Name="Cell33" VertAlign="Center" Font="楷体, 10.5pt"/>
|
||||
</TableRow>
|
||||
<TableRow Name="Row11" Height="33.46">
|
||||
<TableCell Name="Cell34" Text="施工单位:" HorzAlign="Right" VertAlign="Center" Font="楷体, 10.5pt"/>
|
||||
<TableCell Name="Cell35" Text="[ConstructionCompany]" VertAlign="Center" Font="楷体, 10.5pt"/>
|
||||
<TableCell Name="Cell34" Text="施工单位:[ConstructionCompany]" Padding="50, 1, 2, 1" VertAlign="Center" Font="楷体, 10.5pt" ColSpan="2"/>
|
||||
<TableCell Name="Cell35" VertAlign="Center" Font="楷体, 10.5pt"/>
|
||||
</TableRow>
|
||||
<TableRow Name="Row12" Height="33.46">
|
||||
<TableCell Name="Cell36" Text="四、案卷构成及本卷册主要内容" VertAlign="Center" Font="楷体, 10.5pt" ColSpan="2"/>
|
||||
<TableCell Name="Cell37" VertAlign="Center" Font="楷体, 10.5pt"/>
|
||||
</TableRow>
|
||||
<TableRow Name="Row13" Height="33.46">
|
||||
<TableCell Name="Cell38" Text="1、交工技术文件,共2册,分别为:管道安装工程册、材料质量证明文件册" Padding="50, 1, 2, 1" VertAlign="Center" Font="楷体, 10.5pt" ColSpan="2"/>
|
||||
<TableCell Name="Cell39" VertAlign="Center" Font="楷体, 10.5pt"/>
|
||||
<TableCell Name="Cell38" Text="[MainContent]" Padding="50, 1, 2, 1" Font="楷体, 10.5pt" ColSpan="2" RowSpan="3"/>
|
||||
<TableCell Name="Cell39" Font="楷体, 10.5pt"/>
|
||||
</TableRow>
|
||||
<TableRow Name="Row14" Height="42.91">
|
||||
<TableCell Name="Cell40" Text="2、本册为管道安装工程册,册内内容包括:封面、交工技术目录、交工技术总目录、交工技" Padding="50, 1, 2, 1" VertAlign="Center" Font="楷体, 10.5pt" ColSpan="2"/>
|
||||
<TableCell Name="Cell41" VertAlign="Center" Font="楷体, 10.5pt"/>
|
||||
<TableCell Name="Cell40" Padding="50, 1, 2, 1" Font="楷体, 10.5pt"/>
|
||||
<TableCell Name="Cell41" Font="楷体, 10.5pt"/>
|
||||
</TableRow>
|
||||
<TableRow Name="Row21" Height="37.8">
|
||||
<TableCell Name="Cell57" Text="术说明、交工技术文件移交证书等。" Padding="50, 1, 2, 1" VertAlign="Center" Font="楷体, 10.5pt" ColSpan="2"/>
|
||||
<TableCell Name="Cell57" Padding="50, 1, 2, 1" Font="楷体, 10.5pt"/>
|
||||
<TableCell Name="Cell58"/>
|
||||
</TableRow>
|
||||
<TableRow Name="Row15" Height="33.46">
|
||||
|
|
@ -88,7 +113,7 @@
|
|||
<TableCell Name="Cell43" VertAlign="Center" Font="楷体, 10.5pt"/>
|
||||
</TableRow>
|
||||
<TableRow Name="Row16" Height="33.46">
|
||||
<TableCell Name="Cell44" Text="1、交工纸质文件归档2份,其中正本1份,副本1份。" Padding="50, 1, 2, 1" VertAlign="Center" Font="楷体, 10.5pt" ColSpan="2"/>
|
||||
<TableCell Name="Cell44" Text="[CopiesNum]" Padding="50, 1, 2, 1" VertAlign="Center" Font="楷体, 10.5pt" ColSpan="2"/>
|
||||
<TableCell Name="Cell45" VertAlign="Center" Font="楷体, 10.5pt"/>
|
||||
</TableRow>
|
||||
<TableRow Name="Row17" Height="39.69">
|
||||
|
|
|
|||
|
|
@ -1,7 +1,7 @@
|
|||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<Report ScriptLanguage="CSharp" ReportInfo.Created="01/23/2026 17:12:17" ReportInfo.Modified="02/06/2026 16:23:06" ReportInfo.CreatorVersion="2017.1.16.0">
|
||||
<Report ScriptLanguage="CSharp" ReportInfo.Created="01/23/2026 17:12:17" ReportInfo.Modified="02/08/2026 11:11:39" ReportInfo.CreatorVersion="2017.1.16.0">
|
||||
<Dictionary>
|
||||
<MsSqlDataConnection Name="Connection" ConnectionString="rijcmlqtRsOalcXxDhVt62rPEPNYjaATUoMqziRYvJtgNsyJKYAG7kXKvNAMI/qBkgJNPccFsWrhiII6oyX1HS+uwN7YigxVjqUq3vIet2zpPnmWhwvYEvWOOCZZGx6EC4BfGfWX8aPj6bmoF52Z0fnUA9g71duxa/gvChTW/nzu9qsYVuvlVHliMnnu6jEIF9n+/QF9Yu2tPE4XnZAHvGq5Vj6Kw==">
|
||||
<MsSqlDataConnection Name="Connection" ConnectionString="rijcmlqtRsOalcXxDhVt62rPEPNYjaATUoMqziRYvJtgNsyJKYAG7kXKvNAMI/qBkgJNPccFsWrhiII6oyX1HS+uwN7YigxVjqUq3vIet2zpPnmWhwvYEvWOOCZZGx6EC4BfGfWX8aPj6bmoF52Z0fnUA9g71duxa/gvChTW/nzu9qsYVuvlVHliMnnu6jEIF9n+/QFPYfzwMV5u+uo6P+ngcIbpQ==">
|
||||
<TableDataSource Name="Data" DataType="System.Int32" PropName="Attach_Image" Enabled="true" TableName="Data">
|
||||
<Column Name="CertificateCode" DataType="System.String" PropName="attach_image_id"/>
|
||||
<Column Name="EngineeringName" DataType="System.String" PropName="image_series"/>
|
||||
|
|
|
|||
|
|
@ -1,5 +1,5 @@
|
|||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<Report ScriptLanguage="CSharp" ReportInfo.Created="07/15/2025 14:12:53" ReportInfo.Modified="02/04/2026 14:43:42" ReportInfo.CreatorVersion="2017.1.16.0">
|
||||
<Report ScriptLanguage="CSharp" ReportInfo.Created="07/15/2025 14:12:53" ReportInfo.Modified="02/06/2026 17:11:16" ReportInfo.CreatorVersion="2017.1.16.0">
|
||||
<ScriptText>using System;
|
||||
using System.Collections;
|
||||
using System.Collections.Generic;
|
||||
|
|
@ -42,7 +42,7 @@ namespace FastReport
|
|||
}
|
||||
</ScriptText>
|
||||
<Dictionary>
|
||||
<MsSqlDataConnection Name="Connection" ConnectionString="rijcmlqtRsOalcXxDhVt62rPEPNYjaATUoMqziRYvJtgNsyJKYAG7kXKvNAMI/qBkgJNPccFsWrhiII6oyX1HS+uwN7YigxVjqUq3vIet2zpPnmWhwvYEvWOOCZZGx6EC4BfGfWX8aPj6bmoF52Z0fnUA9g71duxa/gvChTW/nzu9qsYVuvlVHliMnnu6jEIF9n+/QF0cz+Pv4PFEpbXgxV+EogSQ==">
|
||||
<MsSqlDataConnection Name="Connection" ConnectionString="rijcmlqtRsOalcXxDhVt62rPEPNYjaATUoMqziRYvJtgNsyJKYAG7kXKvNAMI/qBkgJNPccFsWrhiII6oyX1HS+uwN7YigxVjqUq3vIet2zpPnmWhwvYEvWOOCZZGx6EC4BfGfWX8aPj6bmoF52Z0fnUA9g71duxa/gvChTW/nzu9qsYVuvlVHliMnnu6jEIF9n+/QFXLKJ1jNbCuhAR+28+pWB0g==">
|
||||
<TableDataSource Name="Data" DataType="System.Int32" PropName="Attach_Image" Enabled="true" TableName="Data">
|
||||
<Column Name="Number" DataType="System.String" PropName="attach_image_id"/>
|
||||
<Column Name="WED_Name" DataType="System.String" PropName="image_series"/>
|
||||
|
|
@ -54,22 +54,22 @@ namespace FastReport
|
|||
</MsSqlDataConnection>
|
||||
<Parameter Name="ProjectName" DataType="System.String"/>
|
||||
</Dictionary>
|
||||
<ReportPage Name="Page1" RawPaperSize="9" LeftMargin="20" TopMargin="17" RightMargin="17" BottomMargin="17" Guides="0,653.55,196.98,75.11,403.91,65.66,498.41,84.57,80.51,46.76,121.87,338.25,573.04,84.56,653.53,338.24,573.02,211.55,413.65">
|
||||
<PageHeaderBand Name="PageHeader1" Width="653.94" Height="130.37" Guides="0,130.37,92.57,9.45,28.35,37.8">
|
||||
<TableObject Name="Table1" Width="653.55" Height="130.37">
|
||||
<TableColumn Name="Column1" Width="46.76"/>
|
||||
<TableColumn Name="Column2" Width="75.11"/>
|
||||
<TableColumn Name="Column3" Width="75.11"/>
|
||||
<TableColumn Name="Column4" Width="141.27"/>
|
||||
<TableColumn Name="Column5" Width="65.66"/>
|
||||
<TableColumn Name="Column6" Width="84.56"/>
|
||||
<TableColumn Name="Column7" Width="84.57"/>
|
||||
<TableColumn Name="Column8" Width="80.51"/>
|
||||
<ReportPage Name="Page1" RawPaperSize="9" LeftMargin="22" TopMargin="13.3" RightMargin="17" BottomMargin="16.5" Guides="0,646.34,190,74.21,395.13,64.76,489.63,83.67,83.88,41.58,115.79,330.37,562.46,646.38,115.8,190.02,330.39,562.5,209.16,408.87">
|
||||
<PageHeaderBand Name="PageHeader1" Width="646.38" Height="130.37" Guides="0,130.37,92.57,9.45,28.35,37.8">
|
||||
<TableObject Name="Table1" Width="646.34" Height="130.37">
|
||||
<TableColumn Name="Column1" Width="41.58"/>
|
||||
<TableColumn Name="Column2" Width="74.21"/>
|
||||
<TableColumn Name="Column3" Width="74.21"/>
|
||||
<TableColumn Name="Column4" Width="140.37"/>
|
||||
<TableColumn Name="Column5" Width="64.76"/>
|
||||
<TableColumn Name="Column6" Width="83.66"/>
|
||||
<TableColumn Name="Column7" Width="83.67"/>
|
||||
<TableColumn Name="Column8" Width="83.88"/>
|
||||
<TableRow Name="Row1" Height="92.57">
|
||||
<TableCell Name="Cell1" Border.Lines="All" Text="SH/T 3503-J115" HorzAlign="Center" VertAlign="Center" Font="宋体, 10.5pt" ColSpan="3"/>
|
||||
<TableCell Name="Cell2" Border.Lines="All" HorzAlign="Center" VertAlign="Center" Font="宋体, 10.5pt"/>
|
||||
<TableCell Name="Cell3" Border.Lines="All" HorzAlign="Center" VertAlign="Center" Font="宋体, 10.5pt"/>
|
||||
<TableCell Name="Cell4" Border.Lines="All" Text="合格焊工登记表" HorzAlign="Center" VertAlign="Center" Font="华文中宋, 16pt, style=Bold" ColSpan="2"/>
|
||||
<TableCell Name="Cell4" Border.Lines="All" Text="合格焊工登记表" HorzAlign="Center" VertAlign="Center" Font="思源宋体 CN, 16pt, style=Bold" ColSpan="2"/>
|
||||
<TableCell Name="Cell5" Border.Lines="All" HorzAlign="Center" VertAlign="Center" Font="宋体, 10.5pt"/>
|
||||
<TableCell Name="Cell26" Border.Lines="All" Text=" [ProjectName]" Padding="2, 10, 2, 1" Font="楷体, 10.5pt" ColSpan="3">
|
||||
<TextObject Name="Text1" Top="9.45" Width="94.5" Height="18.9" Text="工程名称:" VertAlign="Center" Font="宋体, 10.5pt"/>
|
||||
|
|
@ -89,17 +89,17 @@ namespace FastReport
|
|||
</TableRow>
|
||||
</TableObject>
|
||||
</PageHeaderBand>
|
||||
<DataBand Name="Data1" Top="134.37" Width="653.94" Height="56.7" Guides="0,56.7">
|
||||
<TableObject Name="Table2" Width="653.53" Height="56.7" ManualBuildEvent="Table2_ManualBuild">
|
||||
<TableColumn Name="Column9" Width="46.76"/>
|
||||
<TableColumn Name="Column10" Width="75.11"/>
|
||||
<TableColumn Name="Column11" Width="75.11"/>
|
||||
<TableColumn Name="Column12" Width="141.26"/>
|
||||
<TableColumn Name="Column13" Width="65.66"/>
|
||||
<TableColumn Name="Column14" Width="84.56"/>
|
||||
<TableColumn Name="Column15" Width="84.56"/>
|
||||
<TableColumn Name="Column16" Width="80.51"/>
|
||||
<TableRow Name="Row4" Height="56.7">
|
||||
<DataBand Name="Data1" Top="134.37" Width="646.38" Height="120.96" Guides="0,120.96">
|
||||
<TableObject Name="Table2" Width="646.38" Height="120.96" ManualBuildEvent="Table2_ManualBuild">
|
||||
<TableColumn Name="Column9" Width="41.58"/>
|
||||
<TableColumn Name="Column10" Width="74.22"/>
|
||||
<TableColumn Name="Column11" Width="74.22"/>
|
||||
<TableColumn Name="Column12" Width="140.37"/>
|
||||
<TableColumn Name="Column13" Width="64.77"/>
|
||||
<TableColumn Name="Column14" Width="83.67"/>
|
||||
<TableColumn Name="Column15" Width="83.67"/>
|
||||
<TableColumn Name="Column16" Width="83.88"/>
|
||||
<TableRow Name="Row4" Height="120.96">
|
||||
<TableCell Name="Cell40" Border.Lines="All" Text="[Data.Number]" HorzAlign="Center" VertAlign="Center" Font="楷体, 10.5pt"/>
|
||||
<TableCell Name="Cell41" Border.Lines="All" Text="[Data.WED_Name]" HorzAlign="Center" VertAlign="Center" Font="楷体, 10.5pt"/>
|
||||
<TableCell Name="Cell42" Border.Lines="All" Text="[Data.WED_Code]" HorzAlign="Center" VertAlign="Center" Font="楷体, 10.5pt"/>
|
||||
|
|
@ -111,18 +111,18 @@ namespace FastReport
|
|||
</TableRow>
|
||||
</TableObject>
|
||||
</DataBand>
|
||||
<ColumnFooterBand Name="ColumnFooter1" Top="255.77" Width="653.94">
|
||||
<ChildBand Name="Child1" Top="195.07" Width="653.94" Height="56.7" Guides="0,56.7" FillUnusedSpace="true">
|
||||
<TableObject Name="Table3" Width="653.53" Height="56.7">
|
||||
<TableColumn Name="Column17" Width="46.76"/>
|
||||
<TableColumn Name="Column18" Width="75.11"/>
|
||||
<TableColumn Name="Column19" Width="75.11"/>
|
||||
<TableColumn Name="Column20" Width="141.26"/>
|
||||
<TableColumn Name="Column21" Width="65.66"/>
|
||||
<TableColumn Name="Column22" Width="84.56"/>
|
||||
<TableColumn Name="Column23" Width="84.56"/>
|
||||
<TableColumn Name="Column24" Width="80.51"/>
|
||||
<TableRow Name="Row5" Height="56.7">
|
||||
<ColumnFooterBand Name="ColumnFooter1" Top="384.29" Width="646.38">
|
||||
<ChildBand Name="Child1" Top="259.33" Width="646.38" Height="120.96" Guides="0,120.96" FillUnusedSpace="true">
|
||||
<TableObject Name="Table3" Width="646.38" Height="120.96">
|
||||
<TableColumn Name="Column17" Width="41.58"/>
|
||||
<TableColumn Name="Column18" Width="74.22"/>
|
||||
<TableColumn Name="Column19" Width="74.22"/>
|
||||
<TableColumn Name="Column20" Width="140.37"/>
|
||||
<TableColumn Name="Column21" Width="64.77"/>
|
||||
<TableColumn Name="Column22" Width="83.67"/>
|
||||
<TableColumn Name="Column23" Width="83.67"/>
|
||||
<TableColumn Name="Column24" Width="83.88"/>
|
||||
<TableRow Name="Row5" Height="120.96">
|
||||
<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"/>
|
||||
|
|
@ -135,17 +135,17 @@ namespace FastReport
|
|||
</TableObject>
|
||||
</ChildBand>
|
||||
</ColumnFooterBand>
|
||||
<PageFooterBand Name="PageFooter1" Top="259.77" Width="653.94" Height="126" Guides="0,126,37.8,91.35">
|
||||
<TableObject Name="Table4" Width="653.55" Height="126" Border.Lines="All">
|
||||
<TableColumn Name="Column25" Width="211.55"/>
|
||||
<TableColumn Name="Column26" Width="202.1"/>
|
||||
<TableColumn Name="Column27" Width="239.9"/>
|
||||
<PageFooterBand Name="PageFooter1" Top="388.29" Width="646.38" Height="153.72" Guides="0,153.72,37.8,119.07">
|
||||
<TableObject Name="Table4" Width="646.38" Height="153.72" Border.Lines="All">
|
||||
<TableColumn Name="Column25" Width="209.16"/>
|
||||
<TableColumn Name="Column26" Width="199.71"/>
|
||||
<TableColumn Name="Column27" Width="237.51"/>
|
||||
<TableRow Name="Row6" Height="37.8">
|
||||
<TableCell Name="Cell56" 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="Cell58" Border.Lines="All" Text="施工单位" HorzAlign="Center" VertAlign="Center" Font="宋体, 10.5pt"/>
|
||||
</TableRow>
|
||||
<TableRow Name="Row7" Height="53.55">
|
||||
<TableRow Name="Row7" Height="81.27">
|
||||
<TableCell Name="Cell61" Border.Lines="Left, Right, Top" Text="专业工程师:" VertAlign="Center" Font="宋体, 10.5pt"/>
|
||||
<TableCell Name="Cell62" Border.Lines="Left, Right, Top" Text="专业工程师:" VertAlign="Center" Font="宋体, 10.5pt"/>
|
||||
<TableCell Name="Cell63" Border.Lines="Left, Right, Top" Text="专业工程师:" VertAlign="Center" Font="宋体, 10.5pt"/>
|
||||
|
|
|
|||
|
|
@ -1,5 +1,5 @@
|
|||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<Report ScriptLanguage="CSharp" ReportInfo.Created="01/29/2026 15:42:03" ReportInfo.Modified="02/06/2026 09:33:22" ReportInfo.CreatorVersion="2017.1.16.0">
|
||||
<Report ScriptLanguage="CSharp" ReportInfo.Created="01/29/2026 15:42:03" ReportInfo.Modified="02/07/2026 10:37:06" ReportInfo.CreatorVersion="2017.1.16.0">
|
||||
<Dictionary>
|
||||
<Parameter Name="ProjectName" DataType="System.String"/>
|
||||
<Parameter Name="Code" DataType="System.String"/>
|
||||
|
|
@ -24,7 +24,7 @@
|
|||
<TableColumn Name="Column4" Width="146.37"/>
|
||||
<TableColumn Name="Column5" Width="500"/>
|
||||
<TableRow Name="Row2" Height="173.12">
|
||||
<TableCell Name="Cell4" Border.Lines="Left" Text="石油化工建设工程项目交工技术文件" HorzAlign="Center" VertAlign="Center" Font="黑体, 22pt" ColSpan="2"/>
|
||||
<TableCell Name="Cell4" Border.Lines="Left" Text="石油化工建设工程项目交工技术文件" HorzAlign="Center" VertAlign="Center" Font="黑体, 22pt, style=Bold" ColSpan="2"/>
|
||||
<TableCell Name="Cell20" HorzAlign="Center" VertAlign="Center" Font="黑体, 22pt"/>
|
||||
</TableRow>
|
||||
<TableRow Name="Row3" Height="78.62">
|
||||
|
|
|
|||
|
|
@ -1,5 +1,5 @@
|
|||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<Report ScriptLanguage="CSharp" ReportInfo.Created="12/10/2025 16:28:15" ReportInfo.Modified="02/04/2026 14:35:40" ReportInfo.CreatorVersion="2017.1.16.0">
|
||||
<Report ScriptLanguage="CSharp" ReportInfo.Created="12/10/2025 16:28:15" ReportInfo.Modified="02/06/2026 16:39:45" ReportInfo.CreatorVersion="2017.1.16.0">
|
||||
<Dictionary>
|
||||
<Parameter Name="ProjectName" DataType="System.String"/>
|
||||
<Parameter Name="ContractNumber" DataType="System.String"/>
|
||||
|
|
@ -9,9 +9,9 @@
|
|||
<Parameter Name="HeaderMan" DataType="System.String"/>
|
||||
<Parameter Name="SupervisionOpinion" DataType="System.String"/>
|
||||
</Dictionary>
|
||||
<ReportPage Name="Page1" RawPaperSize="9" LeftMargin="22" TopMargin="18" RightMargin="17" BottomMargin="19" Guides="0,646.38,191.97,73.44,82.89,440.64,437.67,532.17,63.99,92.34,35.64,205.74,109.08,348.3,646.4,161.6,323.2,484.8">
|
||||
<PageHeaderBand Name="PageHeader1" Width="646.38" Height="831.51" Guides="0,831.51,103.92,33.06,9.45,28.35,70.86,136.98,401.58,264.6,623.64,590.58,189,798.45,174.81">
|
||||
<TableObject Name="Table1" Width="646.38" Height="831.51" Border.Lines="Left, Right, Top">
|
||||
<ReportPage Name="Page1" RawPaperSize="9" LeftMargin="22" TopMargin="13.3" RightMargin="17" BottomMargin="16.5" Guides="0,646.38,191.97,73.44,82.89,440.64,437.67,532.17,63.99,92.34,35.64,205.74,109.08,348.3,646.4,161.6,323.2,484.8">
|
||||
<PageHeaderBand Name="PageHeader1" Width="646.38" Height="858.93" Guides="0,858.93,103.92,33.06,9.45,28.35,70.86,136.98,401.58,264.6,632.16,590.58,189,41.58,806.97,174.81,51.96">
|
||||
<TableObject Name="Table1" Width="646.38" Height="858.93" Border.Lines="Left, Right, Top">
|
||||
<TableColumn Name="Column1" Width="35.64"/>
|
||||
<TableColumn Name="Column2" Width="73.44"/>
|
||||
<TableColumn Name="Column3" Width="82.89"/>
|
||||
|
|
@ -23,7 +23,7 @@
|
|||
<TableCell Name="Cell1" Border.Lines="Left, Right, Top" Text="SH/T 3503—J106A" HorzAlign="Center" VertAlign="Center" Font="黑体, 10.5pt" ColSpan="3" RowSpan="2"/>
|
||||
<TableCell Name="Cell2" Border.Lines="Left, Right, Top" HorzAlign="Center" VertAlign="Center" Font="宋体, 10.5pt"/>
|
||||
<TableCell Name="Cell3" Border.Lines="Left, Right, Top" HorzAlign="Center" VertAlign="Center" Font="宋体, 10.5pt"/>
|
||||
<TableCell Name="Cell4" Border.Lines="Top" Text="工程中间交接证书" HorzAlign="Center" VertAlign="Center" Font="华文中宋, 16pt, style=Bold" ColSpan="3" RowSpan="2">
|
||||
<TableCell Name="Cell4" Border.Lines="Top" Text="工程中间交接证书" HorzAlign="Center" VertAlign="Center" Font="思源宋体 CN, 16pt, style=Bold" ColSpan="3" RowSpan="2">
|
||||
<TextObject Name="Text1" Left="245.7" Top="9.45" Width="94.5" Height="18.9" Text="工程名称:" HorzAlign="Center" Font="宋体, 10.5pt"/>
|
||||
</TableCell>
|
||||
<TableCell Name="Cell5" Border.Lines="Left, Right, Top" HorzAlign="Center" VertAlign="Center" Font="宋体, 10.5pt"/>
|
||||
|
|
@ -66,7 +66,7 @@
|
|||
<TableCell Name="Cell34" Border.Lines="All" HorzAlign="Center" VertAlign="Center" Font="宋体, 10.5pt"/>
|
||||
<TableCell Name="Cell35" Border.Lines="All" HorzAlign="Center" VertAlign="Center" Font="宋体, 10.5pt"/>
|
||||
</TableRow>
|
||||
<TableRow Name="Row6" Height="33.06">
|
||||
<TableRow Name="Row6" Height="41.58">
|
||||
<TableCell Name="Cell36" Border.Lines="All" HorzAlign="Center" VertAlign="Center" Font="宋体, 10.5pt"/>
|
||||
<TableCell Name="Cell37" Border.Lines="Left, Bottom" Text="使用单位负责(代表)人:" HorzAlign="Right" VertAlign="Center" Font="宋体, 10.5pt" ColSpan="4"/>
|
||||
<TableCell Name="Cell38" Border.Lines="Left, Right, Bottom" HorzAlign="Center" VertAlign="Center" Font="宋体, 10.5pt"/>
|
||||
|
|
@ -84,7 +84,7 @@
|
|||
<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"/>
|
||||
</TableRow>
|
||||
<TableRow Name="Row8" Height="33.06">
|
||||
<TableRow Name="Row8" Height="51.96">
|
||||
<TableCell Name="Cell50" Border.Lines="All" HorzAlign="Center" VertAlign="Center" Font="宋体, 10.5pt"/>
|
||||
<TableCell Name="Cell51" Border.Lines="Left, Right" Text="工程质量监督站长/组长:(监督站/组章) 年 月 日" HorzAlign="Center" VertAlign="Center" Font="宋体, 10.5pt" ColSpan="6"/>
|
||||
<TableCell Name="Cell52" Border.Lines="All" HorzAlign="Center" VertAlign="Center" Font="宋体, 10.5pt"/>
|
||||
|
|
@ -95,7 +95,7 @@
|
|||
</TableRow>
|
||||
</TableObject>
|
||||
</PageHeaderBand>
|
||||
<PageFooterBand Name="PageFooter1" Top="835.51" Width="646.38" Height="151.13" Guides="0,151.13,35.42,80.28999,115.71">
|
||||
<PageFooterBand Name="PageFooter1" Top="862.93" Width="646.38" Height="151.13" Guides="0,151.13,35.42,80.28999,115.71">
|
||||
<TableObject Name="Table2" Width="646.4" Height="151.13" Border.Lines="Left, Right, Bottom">
|
||||
<TableColumn Name="Column8" Width="161.6"/>
|
||||
<TableColumn Name="Column9" Width="161.6"/>
|
||||
|
|
|
|||
|
|
@ -1,5 +1,5 @@
|
|||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<Report ScriptLanguage="CSharp" TextQuality="ClearType" ReportInfo.Created="12/12/2025 11:03:02" ReportInfo.Modified="02/04/2026 17:17:25" ReportInfo.CreatorVersion="2017.1.16.0">
|
||||
<Report ScriptLanguage="CSharp" TextQuality="ClearType" ReportInfo.Created="12/12/2025 11:03:02" ReportInfo.Modified="02/06/2026 16:41:20" ReportInfo.CreatorVersion="2017.1.16.0">
|
||||
<ScriptText>using System;
|
||||
using System.Collections;
|
||||
using System.Collections.Generic;
|
||||
|
|
@ -32,7 +32,7 @@ namespace FastReport
|
|||
<Parameter Name="HeaderMan" DataType="System.String"/>
|
||||
<Parameter Name="SupervisoryOpinion" DataType="System.String"/>
|
||||
</Dictionary>
|
||||
<ReportPage Name="Page1" RawPaperSize="9" LeftMargin="22" TopMargin="13.3" RightMargin="17" BottomMargin="16.7" Guides="0,646.4,160.28,51.79,415.06,127.39,509.56,108.49,231.34,287.67,161.6,323.2,484.8">
|
||||
<ReportPage Name="Page1" RawPaperSize="9" LeftMargin="22" TopMargin="13.3" RightMargin="17" BottomMargin="16.5" Guides="0,646.4,160.28,51.79,415.06,127.39,509.56,108.49,231.34,287.67,161.6,323.2,484.8">
|
||||
<PageHeaderBand Name="PageHeader1" Width="646.38" Height="830.18" Guides="0,830.18,82.54,22.68,9.45,28.35,59.86,114.05,31.51,145.56,167.62,22.06,414.08,246.46,436.14,590.5,154.36,622.01,644.07,798.43,31.75">
|
||||
<TableObject Name="Table1" Width="646.4" Height="830.18">
|
||||
<TableColumn Name="Column1" Width="108.49"/>
|
||||
|
|
@ -43,7 +43,7 @@ namespace FastReport
|
|||
<TableRow Name="Row1" Height="22.68">
|
||||
<TableCell Name="Cell1" Border.Lines="All" Text="SH/T 3503—J107B" HorzAlign="Center" VertAlign="Center" Font="黑体, 10.5pt" ColSpan="2" RowSpan="2"/>
|
||||
<TableCell Name="Cell2" Border.Lines="All" HorzAlign="Center" VertAlign="Center" Font="宋体, 10.5pt"/>
|
||||
<TableCell Name="Cell3" Border.Lines="All" Text="工程交工验收证书" HorzAlign="Center" VertAlign="Center" Font="华文中宋, 16pt, style=Bold" ColSpan="2" RowSpan="2"/>
|
||||
<TableCell Name="Cell3" Border.Lines="All" Text="工程交工验收证书" HorzAlign="Center" VertAlign="Center" Font="思源宋体 CN, 16pt, style=Bold" ColSpan="2" RowSpan="2"/>
|
||||
<TableCell Name="Cell4" Border.Lines="All" HorzAlign="Center" VertAlign="Center" Font="宋体, 10.5pt"/>
|
||||
<TableCell Name="Cell5" Border.Lines="Left, Right, Top" Text=" [ProjectName]" Padding="2, 9, 2, 1" Font="楷体, 10.5pt" RowSpan="2">
|
||||
<TextObject Name="Text1" Top="9.45" Width="94.5" Height="18.9" Text="工程名称:" Font="宋体, 10.5pt"/>
|
||||
|
|
|
|||
|
|
@ -1,5 +1,5 @@
|
|||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<Report ScriptLanguage="CSharp" ReportInfo.Created="12/09/2025 11:39:20" ReportInfo.Modified="02/06/2026 16:24:04" ReportInfo.CreatorVersion="2017.1.16.0">
|
||||
<Report ScriptLanguage="CSharp" ReportInfo.Created="12/09/2025 11:39:20" ReportInfo.Modified="02/07/2026 14:50:31" ReportInfo.CreatorVersion="2017.1.16.0">
|
||||
<Dictionary>
|
||||
<Parameter Name="ProjectName" DataType="System.String"/>
|
||||
<Parameter Name="ContractNumber" DataType="System.String"/>
|
||||
|
|
@ -11,9 +11,9 @@
|
|||
<Parameter Name="ReviewOpinion" DataType="System.String"/>
|
||||
<Parameter Name="QualitySupervisionOpinion" DataType="System.String"/>
|
||||
</Dictionary>
|
||||
<ReportPage Name="Page1" RawPaperSize="9" LeftMargin="22" TopMargin="18" RightMargin="17" BottomMargin="19" Guides="0,646.4,171.99,73.09,63.61,393.77,110.89,488.27,35.29,252.63,108.38,282.88,646.38,218.61,437.22">
|
||||
<PageHeaderBand Name="PageHeader1" Width="646.38" Height="802.87" Guides="0,802.87,90.2,22.16,9.45,28.35,68.04,131.26,41.06,169.06,37.8,367.72,198.66,514.01,146.29,648.41,134.4,761.81,113.4">
|
||||
<TableObject Name="Table1" Width="646.4" Height="802.87">
|
||||
<ReportPage Name="Page1" RawPaperSize="9" LeftMargin="22" TopMargin="13.3" RightMargin="17" BottomMargin="16.5" Guides="0,646.4,171.99,73.09,63.61,393.77,110.89,488.27,35.29,252.63,108.38,282.88,646.38,218.61,437.22">
|
||||
<PageHeaderBand Name="PageHeader1" Width="646.38" Height="831.36" Guides="0,831.36,90.2,22.16,9.45,28.35,68.04,131.26,41.06,169.06,37.8,367.72,198.66,514.01,146.29,648.41,134.4,761.81,113.4,69.55">
|
||||
<TableObject Name="Table1" Width="646.4" Height="831.36">
|
||||
<TableColumn Name="Column1" Width="35.29"/>
|
||||
<TableColumn Name="Column2" Width="73.09"/>
|
||||
<TableColumn Name="Column3" Width="63.61"/>
|
||||
|
|
@ -86,9 +86,9 @@
|
|||
<TableCell Name="Cell47" Border.Lines="All" HorzAlign="Center" VertAlign="Center" Font="宋体, 10.5pt"/>
|
||||
<TableCell Name="Cell48" Border.Lines="All" HorzAlign="Center" VertAlign="Center" Font="宋体, 10.5pt"/>
|
||||
</TableRow>
|
||||
<TableRow Name="Row8" Height="41.06">
|
||||
<TableRow Name="Row8" Height="69.55">
|
||||
<TableCell Name="Cell50" Border.Lines="All" HorzAlign="Center" VertAlign="Center" Font="宋体, 10.5pt"/>
|
||||
<TableCell Name="Cell51" Border.Lines="Left, Right, Bottom" Text=" 工程质量监督站长/组长:(监督站/组章)年月日" VertAlign="Center" Font="宋体, 10.5pt" ColSpan="5"/>
|
||||
<TableCell Name="Cell51" Border.Lines="Left, Right" Text=" 工程质量监督站长/组长:(监督站/组章)年月日" VertAlign="Center" Font="宋体, 10.5pt" ColSpan="5"/>
|
||||
<TableCell Name="Cell52" Border.Lines="All" HorzAlign="Center" VertAlign="Center" Font="宋体, 10.5pt"/>
|
||||
<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"/>
|
||||
|
|
@ -96,7 +96,7 @@
|
|||
</TableRow>
|
||||
</TableObject>
|
||||
</PageHeaderBand>
|
||||
<PageFooterBand Name="PageFooter1" Top="806.87" Width="646.38" Height="179.52" Guides="0,179.52,35.43,99.21,144.09">
|
||||
<PageFooterBand Name="PageFooter1" Top="835.36" Width="646.38" Height="179.52" Guides="0,179.52,35.43,99.21,144.09">
|
||||
<TableObject Name="Table2" Width="646.38" Height="179.52" Border.Lines="Left, Right, Bottom">
|
||||
<TableColumn Name="Column7" Width="218.61"/>
|
||||
<TableColumn Name="Column8" Width="218.61"/>
|
||||
|
|
|
|||
|
|
@ -1,5 +1,5 @@
|
|||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<Report ScriptLanguage="CSharp" ReportInfo.Created="12/15/2025 14:30:33" ReportInfo.Modified="02/04/2026 14:39:08" ReportInfo.CreatorVersion="2017.1.16.0">
|
||||
<Report ScriptLanguage="CSharp" ReportInfo.Created="12/15/2025 14:30:33" ReportInfo.Modified="02/06/2026 16:55:52" ReportInfo.CreatorVersion="2017.1.16.0">
|
||||
<Dictionary>
|
||||
<Parameter Name="ProjectName" DataType="System.String"/>
|
||||
<Parameter Name="ContractNumber" DataType="System.String"/>
|
||||
|
|
@ -16,21 +16,21 @@
|
|||
<Parameter Name="OpinionsReviewer" DataType="System.String"/>
|
||||
<Parameter Name="OpinionsDate" DataType="System.String"/>
|
||||
</Dictionary>
|
||||
<ReportPage Name="Page1" RawPaperSize="9" LeftMargin="25" TopMargin="20" RightMargin="20" BottomMargin="20" Guides="0,623.7,163.35,41.85,60.75,360.45,79.65,454.95,145.8,117.45,477.9,102.6,280.8,207.9,415.8">
|
||||
<PageHeaderBand Name="PageHeader1" Width="623.7" Height="801.11" Guides="0,801.11,97.42,20.36,67.61,9.45,28.35,47.25,29.81,127.23,157.04,205.75,48.71,235.56,435.47,199.91,493.63,58.16,561.24,591.05,741.49,150.44,771.3">
|
||||
<TableObject Name="Table1" Width="623.7" Height="801.11">
|
||||
<TableColumn Name="Column1" Width="60.75"/>
|
||||
<TableColumn Name="Column2" Width="41.85"/>
|
||||
<TableColumn Name="Column3" Width="60.75"/>
|
||||
<TableColumn Name="Column4" Width="117.45"/>
|
||||
<TableColumn Name="Column5" Width="79.65"/>
|
||||
<TableColumn Name="Column6" Width="117.45"/>
|
||||
<TableColumn Name="Column7" Width="145.8"/>
|
||||
<ReportPage Name="Page1" RawPaperSize="9" LeftMargin="22" TopMargin="13.3" RightMargin="17" BottomMargin="16.5" Guides="0,646.38,173.07,45.09,63.99,376.65,82.89,471.15,149.04,120.69,497.34,109.08,293.76,215.46,430.92">
|
||||
<PageHeaderBand Name="PageHeader1" Width="646.38" Height="811.37" Guides="0,811.37,97.42,20.36,67.61,9.45,28.35,47.25,29.81,127.23,157.04,205.75,48.71,235.56,443.46,207.9,501.62,58.16,569.23,599.04,751.75,152.71,781.56">
|
||||
<TableObject Name="Table1" Width="646.38" Height="811.37">
|
||||
<TableColumn Name="Column1" Width="63.99"/>
|
||||
<TableColumn Name="Column2" Width="45.09"/>
|
||||
<TableColumn Name="Column3" Width="63.99"/>
|
||||
<TableColumn Name="Column4" Width="120.69"/>
|
||||
<TableColumn Name="Column5" Width="82.89"/>
|
||||
<TableColumn Name="Column6" Width="120.69"/>
|
||||
<TableColumn Name="Column7" Width="149.04"/>
|
||||
<TableRow Name="Row1" Height="20.36">
|
||||
<TableCell Name="Cell1" Border.Lines="All" Text="SH/T 3503—J114" HorzAlign="Center" VertAlign="Center" Font="黑体, 10.5pt" ColSpan="3" RowSpan="3"/>
|
||||
<TableCell Name="Cell2" Border.Lines="All" HorzAlign="Center" VertAlign="Center" Font="宋体, 10.5pt"/>
|
||||
<TableCell Name="Cell3" Border.Lines="All" HorzAlign="Center" VertAlign="Center" Font="宋体, 10.5pt"/>
|
||||
<TableCell Name="Cell4" Border.Lines="All" Text="工程联络单" HorzAlign="Center" VertAlign="Center" Font="华文中宋, 16pt, style=Bold" ColSpan="2" RowSpan="3"/>
|
||||
<TableCell Name="Cell4" Border.Lines="All" Text="工程联络单" HorzAlign="Center" VertAlign="Center" Font="思源宋体 CN, 16pt, style=Bold" ColSpan="2" RowSpan="3"/>
|
||||
<TableCell Name="Cell5" Border.Lines="All" HorzAlign="Center" VertAlign="Center" Font="宋体, 10.5pt"/>
|
||||
<TableCell Name="Cell26" Border.Lines="Left, Right, Top" Text=" [ProjectName]" Padding="2, 9, 2, 1" Font="楷体, 10.5pt" ColSpan="2" RowSpan="2">
|
||||
<TextObject Name="Text1" Top="9.45" Width="94.5" Height="18.9" Text="工程名称:" Font="宋体, 10.5pt"/>
|
||||
|
|
@ -91,7 +91,7 @@
|
|||
<TableCell Name="Cell41" Border.Lines="Left, Right" HorzAlign="Center" VertAlign="Center" Font="宋体, 10.5pt"/>
|
||||
<TableCell Name="Cell42" Border.Lines="Left, Right" HorzAlign="Center" VertAlign="Center" Font="宋体, 10.5pt"/>
|
||||
</TableRow>
|
||||
<TableRow Name="Row7" Height="199.91">
|
||||
<TableRow Name="Row7" Height="207.9">
|
||||
<TableCell Name="Cell43" Border.Lines="Left, Right" Text="[Contents]" Font="楷体, 10.5pt" ColSpan="7"/>
|
||||
<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"/>
|
||||
|
|
@ -127,7 +127,7 @@
|
|||
<TableCell Name="Cell69" Border.Lines="All" HorzAlign="Center" VertAlign="Center" Font="宋体, 10.5pt"/>
|
||||
<TableCell Name="Cell70" Border.Lines="All" HorzAlign="Center" VertAlign="Center" Font="宋体, 10.5pt"/>
|
||||
</TableRow>
|
||||
<TableRow Name="Row11" Height="150.44">
|
||||
<TableRow Name="Row11" Height="152.71">
|
||||
<TableCell Name="Cell71" Border.Lines="Left, Right" Text="[HandlingOpinion]" Font="楷体, 10.5pt" ColSpan="7"/>
|
||||
<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"/>
|
||||
|
|
@ -156,11 +156,11 @@
|
|||
</TableRow>
|
||||
</TableObject>
|
||||
</PageHeaderBand>
|
||||
<PageFooterBand Name="PageFooter1" Top="805.11" Width="623.7" Height="198.38" Guides="0,198.38,92.12,127.54,162.96">
|
||||
<TableObject Name="Table2" Width="623.7" Height="198.38" Border.Lines="Left, Bottom">
|
||||
<TableColumn Name="Column8" Width="207.9"/>
|
||||
<TableColumn Name="Column9" Width="207.9"/>
|
||||
<TableColumn Name="Column10" Width="207.9"/>
|
||||
<PageFooterBand Name="PageFooter1" Top="815.37" Width="646.38" Height="198.38" Guides="0,198.38,92.12,127.54,162.96">
|
||||
<TableObject Name="Table2" Width="646.38" Height="198.38" Border.Lines="Left, Bottom">
|
||||
<TableColumn Name="Column8" Width="215.46"/>
|
||||
<TableColumn Name="Column9" Width="215.46"/>
|
||||
<TableColumn Name="Column10" Width="215.46"/>
|
||||
<TableRow Name="Row15" Height="92.12">
|
||||
<TableCell Name="Cell99" Border.Lines="Left, Right, Top" Text="会签意见:" Font="宋体, 10.5pt"/>
|
||||
<TableCell Name="Cell100" Border.Lines="Left, Right, Top" Text="会签意见:" Font="宋体, 10.5pt"/>
|
||||
|
|
|
|||
|
|
@ -1,5 +1,5 @@
|
|||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<Report ScriptLanguage="CSharp" ReportInfo.Created="12/15/2025 15:12:33" ReportInfo.Modified="02/04/2026 14:44:44" ReportInfo.CreatorVersion="2017.1.16.0">
|
||||
<Report ScriptLanguage="CSharp" ReportInfo.Created="12/15/2025 15:12:33" ReportInfo.Modified="02/06/2026 17:01:56" ReportInfo.CreatorVersion="2017.1.16.0">
|
||||
<Dictionary>
|
||||
<Parameter Name="ProjectName" DataType="System.String"/>
|
||||
<Parameter Name="DesignUnit" DataType="System.String"/>
|
||||
|
|
@ -15,23 +15,23 @@
|
|||
<Parameter Name="Reviewer" DataType="System.String"/>
|
||||
<Parameter Name="ReviewDate" DataType="System.String"/>
|
||||
</Dictionary>
|
||||
<ReportPage Name="Page1" RawPaperSize="9" LeftMargin="25" TopMargin="20" RightMargin="20" BottomMargin="20" Guides="0,624.24,179.73,104.04,387.81,387.63,482.13,122.94,75.69,113.49,501.3,283.77,623.8,311.9">
|
||||
<PageHeaderBand Name="PageHeader1" Width="623.7" Height="905.03" Guides="0,905.03,103.11,24.92,9.45,28.35,78.19,53.27,137.48,34.37,171.85,206.22,382.34,176.12,407.26,725.13,317.87,750.05,154.98">
|
||||
<TableObject Name="Table1" Width="624.24" Height="905.03" Border.Lines="Bottom">
|
||||
<TableColumn Name="Column1" Width="75.69"/>
|
||||
<TableColumn Name="Column2" Width="104.04"/>
|
||||
<TableColumn Name="Column3" Width="104.04"/>
|
||||
<TableColumn Name="Column4" Width="104.04"/>
|
||||
<TableColumn Name="Column5" Width="113.49"/>
|
||||
<TableColumn Name="Column6" Width="122.94"/>
|
||||
<ReportPage Name="Page1" RawPaperSize="9" LeftMargin="22" TopMargin="13.3" RightMargin="17" BottomMargin="16.5" Guides="0,646.38,187.11,107.73,402.57,487.62,126.63,79.38,117.18,519.75,294.84,323.19">
|
||||
<PageHeaderBand Name="PageHeader1" Width="646.38" Height="944.37" Guides="0,944.37,103.11,24.92,78.19,9.45,28.35,53.27,137.48,34.37,171.85,206.22,410.69,204.47,435.61,764.47,328.86,789.39,154.98">
|
||||
<TableObject Name="Table1" Width="646.38" Height="944.37">
|
||||
<TableColumn Name="Column1" Width="79.38"/>
|
||||
<TableColumn Name="Column2" Width="107.73"/>
|
||||
<TableColumn Name="Column3" Width="107.73"/>
|
||||
<TableColumn Name="Column4" Width="107.73"/>
|
||||
<TableColumn Name="Column5" Width="117.18"/>
|
||||
<TableColumn Name="Column6" Width="126.63"/>
|
||||
<TableRow Name="Row1" Height="24.92">
|
||||
<TableCell Name="Cell1" Border.Lines="All" Text="SH/T 3543—G110" HorzAlign="Center" VertAlign="Center" Font="黑体, 10.5pt" ColSpan="2" RowSpan="3"/>
|
||||
<TableCell Name="Cell2" Border.Lines="All" HorzAlign="Center" VertAlign="Center" Font="宋体, 10.5pt"/>
|
||||
<TableCell Name="Cell3" Border.Lines="All" Text="施工图核查记录" HorzAlign="Center" VertAlign="Center" Font="华文中宋, 16pt, style=Bold" ColSpan="2" RowSpan="3">
|
||||
<TextObject Name="Text1" Left="207.9" Top="9.45" Width="94.5" Height="18.9" Text="工程名称:" Font="宋体, 10.5pt"/>
|
||||
</TableCell>
|
||||
<TableCell Name="Cell3" Border.Lines="All" Text="施工图核查记录" HorzAlign="Center" VertAlign="Center" Font="思源宋体 CN, 16pt, style=Bold" ColSpan="2" RowSpan="3"/>
|
||||
<TableCell Name="Cell4" Border.Lines="All" HorzAlign="Center" VertAlign="Center" Font="宋体, 10.5pt"/>
|
||||
<TableCell Name="Cell5" Border.Lines="Left, Right, Top" Text=" [ProjectName]" Padding="2, 10, 2, 1" Font="楷体, 10.5pt" ColSpan="2" RowSpan="2"/>
|
||||
<TableCell Name="Cell5" Border.Lines="Left, Right, Top" Text=" [ProjectName]" Padding="2, 10, 2, 1" Font="楷体, 10.5pt" ColSpan="2" RowSpan="2">
|
||||
<TextObject Name="Text1" Top="9.45" Width="85.05" Height="18.9" Text="工程名称:" Font="宋体, 10.5pt"/>
|
||||
</TableCell>
|
||||
<TableCell Name="Cell56" Border.Lines="Right, Top" HorzAlign="Center" Font="楷体, 10.5pt"/>
|
||||
</TableRow>
|
||||
<TableRow Name="Row2" Height="53.27">
|
||||
|
|
@ -74,7 +74,7 @@
|
|||
<TableCell Name="Cell30" Border.Lines="All" HorzAlign="Center" VertAlign="Center" Font="宋体, 10.5pt"/>
|
||||
<TableCell Name="Cell61" Border.Lines="All" HorzAlign="Center" VertAlign="Center" Font="宋体, 10.5pt"/>
|
||||
</TableRow>
|
||||
<TableRow Name="Row7" Height="176.12">
|
||||
<TableRow Name="Row7" Height="204.47">
|
||||
<TableCell Name="Cell31" Border.Lines="All" Text="参加核查 人 员" HorzAlign="Center" VertAlign="Center" Font="宋体, 10.5pt"/>
|
||||
<TableCell Name="Cell32" Border.Lines="All" Text="[Personnel]" VertAlign="Center" Font="楷体, 10.5pt" ColSpan="5"/>
|
||||
<TableCell Name="Cell33" Border.Lines="All" HorzAlign="Center" VertAlign="Center" Font="宋体, 10.5pt"/>
|
||||
|
|
@ -90,7 +90,7 @@
|
|||
<TableCell Name="Cell40" Border.Lines="All" VertAlign="Center" Font="宋体, 10.5pt"/>
|
||||
<TableCell Name="Cell63" Border.Lines="All" VertAlign="Center" Font="宋体, 10.5pt"/>
|
||||
</TableRow>
|
||||
<TableRow Name="Row9" Height="317.87">
|
||||
<TableRow Name="Row9" Height="328.86">
|
||||
<TableCell Name="Cell41" Border.Lines="Left, Right, Bottom" Text="[Contents]" Font="楷体, 10.5pt" ColSpan="6"/>
|
||||
<TableCell Name="Cell42" Border.Lines="All" VertAlign="Center" Font="宋体, 10.5pt"/>
|
||||
<TableCell Name="Cell43" Border.Lines="All" VertAlign="Center" Font="宋体, 10.5pt"/>
|
||||
|
|
@ -107,7 +107,7 @@
|
|||
<TableCell Name="Cell65" Border.Lines="All" VertAlign="Center" Font="宋体, 10.5pt"/>
|
||||
</TableRow>
|
||||
<TableRow Name="Row11" Height="154.98">
|
||||
<TableCell Name="Cell51" Border.Lines="Left, Right, Bottom" Text="[Problems]" Font="楷体, 10.5pt" ColSpan="6"/>
|
||||
<TableCell Name="Cell51" Border.Lines="Left, Right" Text="[Problems]" Font="楷体, 10.5pt" ColSpan="6"/>
|
||||
<TableCell Name="Cell52" Border.Lines="All" VertAlign="Center" Font="宋体, 10.5pt"/>
|
||||
<TableCell Name="Cell53" Border.Lines="All" VertAlign="Center" Font="宋体, 10.5pt"/>
|
||||
<TableCell Name="Cell54" Border.Lines="All" VertAlign="Center" Font="宋体, 10.5pt"/>
|
||||
|
|
@ -116,10 +116,10 @@
|
|||
</TableRow>
|
||||
</TableObject>
|
||||
</PageHeaderBand>
|
||||
<PageFooterBand Name="PageFooter1" Top="909.03" Width="623.7" Height="66.18" Guides="0,66.18,33.09">
|
||||
<TableObject Name="Table2" Width="623.8" Height="66.18" Border.Lines="Left, Right, Bottom">
|
||||
<TableColumn Name="Column7" Width="311.9"/>
|
||||
<TableColumn Name="Column8" Width="311.9"/>
|
||||
<PageFooterBand Name="PageFooter1" Top="948.37" Width="646.38" Height="66.18" Guides="0,66.18,33.09">
|
||||
<TableObject Name="Table2" Width="646.38" Height="66.18" Border.Lines="Left, Right, Bottom">
|
||||
<TableColumn Name="Column7" Width="323.19"/>
|
||||
<TableColumn Name="Column8" Width="323.19"/>
|
||||
<TableRow Name="Row12" Height="33.09">
|
||||
<TableCell Name="Cell67" Border.Lines="Right, Top" Text="记录人:[Recorder]" VertAlign="Center" Font="宋体, 10.5pt"/>
|
||||
<TableCell Name="Cell68" Border.Lines="Left, Top" Text="审核人:[Reviewer]" VertAlign="Center" Font="宋体, 10.5pt"/>
|
||||
|
|
|
|||
|
|
@ -1,5 +1,5 @@
|
|||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<Report ScriptLanguage="CSharp" ReportInfo.Created="12/18/2025 17:45:45" ReportInfo.Modified="02/04/2026 14:44:35" ReportInfo.CreatorVersion="2017.1.16.0">
|
||||
<Report ScriptLanguage="CSharp" ReportInfo.Created="12/18/2025 17:45:45" ReportInfo.Modified="02/06/2026 17:18:56" ReportInfo.CreatorVersion="2017.1.16.0">
|
||||
<ScriptText>using System;
|
||||
using System.Collections;
|
||||
using System.Collections.Generic;
|
||||
|
|
@ -42,7 +42,7 @@ namespace FastReport
|
|||
}
|
||||
</ScriptText>
|
||||
<Dictionary>
|
||||
<MsSqlDataConnection Name="Connection" ConnectionString="rijcmlqtRsOalcXxDhVt62rPEPNYjaATUoMqziRYvJtgNsyJKYAG7kXKvNAMI/qBkgJNPccFsWrhiII6oyX1HS+uwN7YigxVjqUq3vIet2zpPnmWhwvYEvWOOCZZGx6EC4BfGfWX8aPj6bmoF52Z0fnUA9g71duxa/gvChTW/nzu9qsYVuvlVHliMnnu6jEIF9n+/QFTlxqY9Kp5WY08togtfm5iQ==">
|
||||
<MsSqlDataConnection Name="Connection" ConnectionString="rijcmlqtRsOalcXxDhVt62rPEPNYjaATUoMqziRYvJtgNsyJKYAG7kXKvNAMI/qBkgJNPccFsWrhiII6oyX1HS+uwN7YigxVjqUq3vIet2zpPnmWhwvYEvWOOCZZGx6EC4BfGfWX8aPj6bmoF52Z0fnUA9g71duxa/gvChTW/nzu9qsYVuvlVHliMnnu6jEIF9n+/QF3gOCTWHIbofiM93+8NfrAw==">
|
||||
<TableDataSource Name="Data" DataType="System.Int32" PropName="Attach_Image" Enabled="true" TableName="Data">
|
||||
<Column Name="PersonName" DataType="System.String" PropName="attach_image_id"/>
|
||||
<Column Name="CertificateNumber" DataType="System.String" PropName="image_series"/>
|
||||
|
|
@ -54,15 +54,15 @@ namespace FastReport
|
|||
</MsSqlDataConnection>
|
||||
<Parameter Name="ProjectName" DataType="System.String"/>
|
||||
</Dictionary>
|
||||
<ReportPage Name="Page1" RawPaperSize="9" LeftMargin="25" TopMargin="20" RightMargin="20" BottomMargin="20" Guides="0,623.7,170.1,396.9,491.4,226.8,624.3,47.35,132.5,264.9,435.1,520.25,47.25,132.3,264.6,434.7,519.75,207.9,415.8">
|
||||
<PageHeaderBand Name="PageHeader1" Width="623.7" Height="103.95" Guides="0,75.61,9.45,28.35,51.98,75.6,103.95">
|
||||
<TableObject Name="Table1" Width="623.7" Height="75.61">
|
||||
<TableColumn Name="Column1" Width="170.1"/>
|
||||
<TableColumn Name="Column2" Width="226.8"/>
|
||||
<TableColumn Name="Column3" Width="226.8"/>
|
||||
<ReportPage Name="Page1" RawPaperSize="9" LeftMargin="22" TopMargin="13.3" RightMargin="17" BottomMargin="16.5" Guides="0,646.38,177.66,412.02,506.52,234.36,51.03,139.86,275.94,449.82,538.65,215.46,430.92">
|
||||
<PageHeaderBand Name="PageHeader1" Width="646.38" Height="103.95" Guides="0,75.61,9.45,28.35,51.98,75.6,103.95">
|
||||
<TableObject Name="Table1" Width="646.38" Height="75.61">
|
||||
<TableColumn Name="Column1" Width="177.66"/>
|
||||
<TableColumn Name="Column2" Width="234.36"/>
|
||||
<TableColumn Name="Column3" Width="234.36"/>
|
||||
<TableRow Name="Row1" Height="23.63">
|
||||
<TableCell Name="Cell1" Border.Lines="All" Text="SH/T 3503—J116" HorzAlign="Center" VertAlign="Center" Font="黑体, 10.5pt" RowSpan="2"/>
|
||||
<TableCell Name="Cell2" Border.Lines="All" Text="无损检测人员登记表" HorzAlign="Center" VertAlign="Center" Font="华文中宋, 16pt, style=Bold" RowSpan="2"/>
|
||||
<TableCell Name="Cell1" Border.Lines="Left, Right, Top" Text="SH/T 3503—J116" HorzAlign="Center" VertAlign="Center" Font="黑体, 10.5pt" RowSpan="2"/>
|
||||
<TableCell Name="Cell2" Border.Lines="Top" Text="无损检测人员登记表" HorzAlign="Center" VertAlign="Center" Font="思源宋体 CN, 16pt, style=Bold" RowSpan="2"/>
|
||||
<TableCell Name="Cell3" Border.Lines="Left, Right, Top" Text=" [ProjectName]" Padding="2, 10, 2, 1" Font="楷体, 10.5pt" RowSpan="2">
|
||||
<TextObject Name="Text1" Top="9.45" Width="94.5" Height="18.9" Text="工程名称:" Font="宋体, 10.5pt"/>
|
||||
</TableCell>
|
||||
|
|
@ -73,70 +73,70 @@ namespace FastReport
|
|||
<TableCell Name="Cell8" Border.Lines="Left, Right, Bottom" Font="楷体, 10.5pt"/>
|
||||
</TableRow>
|
||||
</TableObject>
|
||||
<TableObject Name="Table2" Top="75.6" Width="624.3" Height="28.35" Border.Lines="Left, Right, Bottom">
|
||||
<TableColumn Name="Column4" Width="47.35"/>
|
||||
<TableColumn Name="Column5" Width="85.15"/>
|
||||
<TableColumn Name="Column6" Width="132.4"/>
|
||||
<TableColumn Name="Column7" Width="170.2"/>
|
||||
<TableColumn Name="Column8" Width="85.15"/>
|
||||
<TableColumn Name="Column9" Width="104.05"/>
|
||||
<TableObject Name="Table2" Top="75.6" Width="646.38" Height="28.35" Border.Lines="Left, Right, Bottom">
|
||||
<TableColumn Name="Column4" Width="51.03"/>
|
||||
<TableColumn Name="Column5" Width="88.83"/>
|
||||
<TableColumn Name="Column6" Width="136.08"/>
|
||||
<TableColumn Name="Column7" Width="173.88"/>
|
||||
<TableColumn Name="Column8" Width="88.83"/>
|
||||
<TableColumn Name="Column9" Width="107.73"/>
|
||||
<TableRow Name="Row3" Height="28.35">
|
||||
<TableCell Name="Cell9" Border.Lines="All" Text="序号" HorzAlign="Center" VertAlign="Center" Font="宋体, 10.5pt"/>
|
||||
<TableCell Name="Cell10" Border.Lines="All" Text="姓名" HorzAlign="Center" VertAlign="Center" Font="宋体, 10.5pt"/>
|
||||
<TableCell Name="Cell11" Border.Lines="All" Text="证书编号" HorzAlign="Center" VertAlign="Center" Font="宋体, 10.5pt"/>
|
||||
<TableCell Name="Cell12" Border.Lines="All" Text="合格项目代号" HorzAlign="Center" VertAlign="Center" Font="宋体, 10.5pt"/>
|
||||
<TableCell Name="Cell13" 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="Cell9" Border.Lines="Left, Right, Top" Text="序号" HorzAlign="Center" VertAlign="Center" Font="宋体, 10.5pt"/>
|
||||
<TableCell Name="Cell10" Border.Lines="Right, Top" Text="姓名" HorzAlign="Center" VertAlign="Center" Font="宋体, 10.5pt"/>
|
||||
<TableCell Name="Cell11" Border.Lines="Right, Top" Text="证书编号" HorzAlign="Center" VertAlign="Center" Font="宋体, 10.5pt"/>
|
||||
<TableCell Name="Cell12" Border.Lines="Right, Top" Text="合格项目代号" HorzAlign="Center" VertAlign="Center" Font="宋体, 10.5pt"/>
|
||||
<TableCell Name="Cell13" Border.Lines="Right, Top" Text="级别" HorzAlign="Center" VertAlign="Center" Font="宋体, 10.5pt"/>
|
||||
<TableCell Name="Cell34" Border.Lines="Top" Text="有效期限" HorzAlign="Center" VertAlign="Center" Font="宋体, 10.5pt"/>
|
||||
</TableRow>
|
||||
</TableObject>
|
||||
</PageHeaderBand>
|
||||
<DataBand Name="Data1" Top="107.95" Width="623.7" Height="28.35" Guides="0,28.35">
|
||||
<TableObject Name="Table3" Width="623.7" Height="28.35" Border.Lines="Left, Right, Bottom" ManualBuildEvent="Table3_ManualBuild">
|
||||
<TableColumn Name="Column10" Width="47.25"/>
|
||||
<TableColumn Name="Column11" Width="85.05"/>
|
||||
<TableColumn Name="Column12" Width="132.3"/>
|
||||
<TableColumn Name="Column13" Width="170.1"/>
|
||||
<TableColumn Name="Column14" Width="85.05"/>
|
||||
<TableColumn Name="Column15" Width="103.95"/>
|
||||
<DataBand Name="Data1" Top="107.95" Width="646.38" Height="28.35" Guides="0,28.35">
|
||||
<TableObject Name="Table3" Width="646.38" Height="28.35" Border.Lines="Left, Right, Bottom" ManualBuildEvent="Table3_ManualBuild">
|
||||
<TableColumn Name="Column10" Width="51.03"/>
|
||||
<TableColumn Name="Column11" Width="88.83"/>
|
||||
<TableColumn Name="Column12" Width="136.08"/>
|
||||
<TableColumn Name="Column13" Width="173.88"/>
|
||||
<TableColumn Name="Column14" Width="88.83"/>
|
||||
<TableColumn Name="Column15" Width="107.73"/>
|
||||
<TableRow Name="Row4" Height="28.35">
|
||||
<TableCell Name="Cell35" Border.Lines="All" Text="[Data.Num]" HorzAlign="Center" VertAlign="Center" Font="楷体, 10.5pt"/>
|
||||
<TableCell Name="Cell36" Border.Lines="All" Text="[Data.PersonName]" HorzAlign="Center" VertAlign="Center" Font="楷体, 10.5pt"/>
|
||||
<TableCell Name="Cell37" Border.Lines="All" Text="[Data.CertificateNumber]" HorzAlign="Center" VertAlign="Center" Font="楷体, 10.5pt"/>
|
||||
<TableCell Name="Cell38" Border.Lines="All" Text="[Data.QualifiedProjectCode]" HorzAlign="Center" VertAlign="Center" Font="楷体, 10.5pt"/>
|
||||
<TableCell Name="Cell39" Border.Lines="All" Text="[Data.Levels]" HorzAlign="Center" VertAlign="Center" Font="楷体, 10.5pt"/>
|
||||
<TableCell Name="Cell40" Border.Lines="All" Text="[Data.ValidityDate]" HorzAlign="Center" VertAlign="Center" Font="楷体, 10.5pt"/>
|
||||
<TableCell Name="Cell35" Border.Lines="Left, Right, Top" Text="[Data.Num]" HorzAlign="Center" VertAlign="Center" Font="楷体, 10.5pt"/>
|
||||
<TableCell Name="Cell36" Border.Lines="Right, Top" Text="[Data.PersonName]" HorzAlign="Center" VertAlign="Center" Font="楷体, 10.5pt"/>
|
||||
<TableCell Name="Cell37" Border.Lines="Right, Top" Text="[Data.CertificateNumber]" HorzAlign="Center" VertAlign="Center" Font="楷体, 10.5pt"/>
|
||||
<TableCell Name="Cell38" Border.Lines="Right, Top" Text="[Data.QualifiedProjectCode]" HorzAlign="Center" VertAlign="Center" Font="楷体, 10.5pt"/>
|
||||
<TableCell Name="Cell39" Border.Lines="Right, Top" Text="[Data.Levels]" HorzAlign="Center" VertAlign="Center" Font="楷体, 10.5pt"/>
|
||||
<TableCell Name="Cell40" Border.Lines="Top" Text="[Data.ValidityDate]" HorzAlign="Center" VertAlign="Center" Font="楷体, 10.5pt"/>
|
||||
</TableRow>
|
||||
</TableObject>
|
||||
</DataBand>
|
||||
<ColumnFooterBand Name="ColumnFooter1" Top="172.65" Width="623.7">
|
||||
<ChildBand Name="Child1" Top="140.3" Width="623.7" Height="28.35" Guides="0,28.35" FillUnusedSpace="true">
|
||||
<TableObject Name="Table4" Width="623.7" Height="28.35" Border.Lines="Left, Right, Bottom">
|
||||
<TableColumn Name="Column16" Width="47.25"/>
|
||||
<TableColumn Name="Column17" Width="85.05"/>
|
||||
<TableColumn Name="Column18" Width="132.3"/>
|
||||
<TableColumn Name="Column19" Width="170.1"/>
|
||||
<TableColumn Name="Column20" Width="85.05"/>
|
||||
<TableColumn Name="Column21" Width="103.95"/>
|
||||
<ColumnFooterBand Name="ColumnFooter1" Top="172.65" Width="646.38">
|
||||
<ChildBand Name="Child1" Top="140.3" Width="646.38" Height="28.35" Guides="0,28.35" FillUnusedSpace="true">
|
||||
<TableObject Name="Table4" Width="646.38" Height="28.35" Border.Lines="Left, Right, Bottom">
|
||||
<TableColumn Name="Column16" Width="51.03"/>
|
||||
<TableColumn Name="Column17" Width="88.83"/>
|
||||
<TableColumn Name="Column18" Width="136.08"/>
|
||||
<TableColumn Name="Column19" Width="173.88"/>
|
||||
<TableColumn Name="Column20" Width="88.83"/>
|
||||
<TableColumn Name="Column21" Width="107.73"/>
|
||||
<TableRow Name="Row5" Height="28.35">
|
||||
<TableCell Name="Cell41" Border.Lines="All" HorzAlign="Center" VertAlign="Center" Font="宋体, 10.5pt"/>
|
||||
<TableCell Name="Cell42" 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="Cell44" Border.Lines="All" HorzAlign="Center" VertAlign="Center" Font="宋体, 10.5pt"/>
|
||||
<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="Cell41" Border.Lines="Left, Right, Top" HorzAlign="Center" VertAlign="Center" Font="宋体, 10.5pt"/>
|
||||
<TableCell Name="Cell42" Border.Lines="Right, Top" HorzAlign="Center" VertAlign="Center" Font="宋体, 10.5pt"/>
|
||||
<TableCell Name="Cell43" Border.Lines="Right, Top" HorzAlign="Center" VertAlign="Center" Font="宋体, 10.5pt"/>
|
||||
<TableCell Name="Cell44" Border.Lines="Right, Top" HorzAlign="Center" VertAlign="Center" Font="宋体, 10.5pt"/>
|
||||
<TableCell Name="Cell45" Border.Lines="Right, Top" HorzAlign="Center" VertAlign="Center" Font="宋体, 10.5pt"/>
|
||||
<TableCell Name="Cell46" Border.Lines="Top" HorzAlign="Center" VertAlign="Center" Font="宋体, 10.5pt"/>
|
||||
</TableRow>
|
||||
</TableObject>
|
||||
</ChildBand>
|
||||
</ColumnFooterBand>
|
||||
<PageFooterBand Name="PageFooter1" Top="176.65" Width="623.7" Height="129.42" Guides="0,129.42,30.24,63.3,96.36">
|
||||
<TableObject Name="Table5" Width="623.7" Height="129.42" Border.Lines="All">
|
||||
<TableColumn Name="Column22" Width="207.9"/>
|
||||
<TableColumn Name="Column23" Width="207.9"/>
|
||||
<TableColumn Name="Column24" Width="207.9"/>
|
||||
<TableRow Name="Row6" Height="30.24">
|
||||
<TableCell Name="Cell47" Border.Lines="All" Text="建设/监理单位" HorzAlign="Center" VertAlign="Center" Font="宋体, 10.5pt"/>
|
||||
<TableCell Name="Cell48" 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"/>
|
||||
<PageFooterBand Name="PageFooter1" Top="176.65" Width="646.38" Height="139.83" Guides="0,139.83,39.69,72.75,105.81">
|
||||
<TableObject Name="Table5" Width="646.38" Height="139.83" Border.Lines="All">
|
||||
<TableColumn Name="Column22" Width="215.46"/>
|
||||
<TableColumn Name="Column23" Width="215.46"/>
|
||||
<TableColumn Name="Column24" Width="215.46"/>
|
||||
<TableRow Name="Row6" Height="39.69">
|
||||
<TableCell Name="Cell47" Border.Lines="Left, Bottom" Text="建设/监理单位" HorzAlign="Center" VertAlign="Center" Font="宋体, 10.5pt"/>
|
||||
<TableCell Name="Cell48" Border.Lines="Left, Right, Bottom" Text="总承包单位" HorzAlign="Center" VertAlign="Center" Font="宋体, 10.5pt"/>
|
||||
<TableCell Name="Cell49" Border.Lines="Bottom" Text="检测单位" HorzAlign="Center" VertAlign="Center" Font="宋体, 10.5pt"/>
|
||||
</TableRow>
|
||||
<TableRow Name="Row7" Height="33.06">
|
||||
<TableCell Name="Cell52" Text="专业工程师:" VertAlign="Center" Font="宋体, 10.5pt"/>
|
||||
|
|
@ -148,7 +148,7 @@ namespace FastReport
|
|||
<TableCell Name="Cell58" Border.Lines="Left, Right" VertAlign="Center" Font="宋体, 10.5pt"/>
|
||||
<TableCell Name="Cell59" Text="制表人:" VertAlign="Center" Font="宋体, 10.5pt"/>
|
||||
</TableRow>
|
||||
<TableRow Name="Row9" Height="33.06">
|
||||
<TableRow Name="Row9" Height="34.02">
|
||||
<TableCell Name="Cell62" Text="日期: 年 月 日" VertAlign="Center" Font="宋体, 10.5pt"/>
|
||||
<TableCell Name="Cell63" Border.Lines="Left, Right" Text="日期: 年 月 日" VertAlign="Center" Font="宋体, 10.5pt"/>
|
||||
<TableCell Name="Cell64" Text="日期: 年 月 日" VertAlign="Center" Font="宋体, 10.5pt"/>
|
||||
|
|
|
|||
|
|
@ -1,7 +1,7 @@
|
|||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<Report ScriptLanguage="CSharp" ReportInfo.Created="12/22/2025 14:15:28" ReportInfo.Modified="02/06/2026 16:12:03" ReportInfo.CreatorVersion="2017.1.16.0">
|
||||
<Report ScriptLanguage="CSharp" ReportInfo.Created="12/22/2025 14:15:28" ReportInfo.Modified="02/08/2026 11:01:59" ReportInfo.CreatorVersion="2017.1.16.0">
|
||||
<Dictionary>
|
||||
<MsSqlDataConnection Name="Connection" ConnectionString="rijcmlqtRsOalcXxDhVt62rPEPNYjaATUoMqziRYvJtgNsyJKYAG7kXKvNAMI/qBkgJNPccFsWrhiII6oyX1HS+uwN7YigxVjqUq3vIet2zpPnmWhwvYEvWOOCZZGx6EC4BfGfWX8aPj6bmoF52Z0fnUA9g71duxa/gvChTW/nzu9qsYVuvlVHliMnnu6jEIF9n+/QFhOYRTSh3GPJRF/zyf7XpDg==">
|
||||
<MsSqlDataConnection Name="Connection" ConnectionString="rijcmlqtRsOalcXxDhVt62rPEPNYjaATUoMqziRYvJtgNsyJKYAG7kXKvNAMI/qBkgJNPccFsWrhiII6oyX1HS+uwN7YigxVjqUq3vIet2zpPnmWhwvYEvWOOCZZGx6EC4BfGfWX8aPj6bmoF52Z0fnUA9g71duxa/gvChTW/nzu9qsYVuvlVHliMnnu6jEIF9n+/QFTMfW2RuqdVwibFML3uCXMA==">
|
||||
<TableDataSource Name="Data" DataType="System.Int32" PropName="Attach_Image" Enabled="true" TableName="Data">
|
||||
<Column Name="MaintenanceCode" DataType="System.String" PropName="attach_image_id"/>
|
||||
<Column Name="ConUnit" DataType="System.String" PropName="image_series"/>
|
||||
|
|
|
|||
|
|
@ -1,5 +1,5 @@
|
|||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<Report ScriptLanguage="CSharp" ReportInfo.Created="11/19/2024 10:28:42" ReportInfo.Modified="02/04/2026 14:38:36" ReportInfo.CreatorVersion="2017.1.16.0">
|
||||
<Report ScriptLanguage="CSharp" ReportInfo.Created="11/19/2024 10:28:42" ReportInfo.Modified="02/07/2026 11:08:13" ReportInfo.CreatorVersion="2017.1.16.0">
|
||||
<ScriptText>using System;
|
||||
using System.Collections;
|
||||
using System.Collections.Generic;
|
||||
|
|
@ -50,7 +50,7 @@ namespace FastReport
|
|||
}
|
||||
</ScriptText>
|
||||
<Dictionary>
|
||||
<MsSqlDataConnection Name="Connection" ConnectionString="rijcmlqtRsOalcXxDhVt62rPEPNYjaATUoMqziRYvJtgNsyJKYAG7kXKvNAMI/qBkgJNPccFsWrhiII6oyX1HS+uwN7YigxVjqUq3vIet2zpPnmWhwvYEvWOOCZZGx6EC4BfGfWX8aPj6bmoF52Z0fnUA9g71duxa/gvChTW/nzu9qsYVuvlVHliMnnu6jEIF9n+/QFvddCqtNGuu8RLw78xI3x/g==">
|
||||
<MsSqlDataConnection Name="Connection" ConnectionString="rijcmlqtRsOalcXxDhVt62rPEPNYjaATUoMqziRYvJtgNsyJKYAG7kXKvNAMI/qBkgJNPccFsWrhiII6oyX1HS+uwN7YigxVjqUq3vIet2zpPnmWhwvYEvWOOCZZGx6EC4BfGfWX8aPj6bmoF52Z0fnUA9g71duxa/gvChTW/nzu9qsYVuvlVHliMnnu6jEIF9n+/QFXLKJ1jNbCuhAR+28+pWB0g==">
|
||||
<TableDataSource Name="Data" DataType="System.Int32" PropName="Attach_Image" Enabled="true" TableName="Data">
|
||||
<Column Name="ISO_IsoNo" DataType="System.String" PropName="attach_image_id"/>
|
||||
<Column Name="JOT_JointNo" DataType="System.String" PropName="image_series"/>
|
||||
|
|
@ -66,25 +66,25 @@ namespace FastReport
|
|||
</MsSqlDataConnection>
|
||||
<Parameter Name="ProjectName" DataType="System.String"/>
|
||||
</Dictionary>
|
||||
<ReportPage Name="Page1" Landscape="true" PaperWidth="297" PaperHeight="210" LeftMargin="25" TopMargin="20" RightMargin="20" BottomMargin="21" FirstPageSource="4" OtherPagesSource="4" Guides="0,952.51,221.52,44.61,703.39,110.76,88.72,82.41,35.16,797.89,49.14,54.06,176.91,816.04,303.93,414.69,503.41,585.82,668.23,766.9,63.51,870.1,318.09,636.18">
|
||||
<PageHeaderBand Name="PageHeader1" Width="952.56" Height="139.1" Guides="0,139.1,101.3,63.5,9.45,28.35,37.8">
|
||||
<TableObject Name="Table1" Width="952.51" Height="139.1" Border.Lines="Right">
|
||||
<TableColumn Name="Column1" Width="176.91"/>
|
||||
<TableColumn Name="Column2" Width="44.61"/>
|
||||
<TableColumn Name="Column3" Width="82.41"/>
|
||||
<TableColumn Name="Column4" Width="110.76"/>
|
||||
<TableColumn Name="Column5" Width="88.72"/>
|
||||
<TableColumn Name="Column6" Width="82.41"/>
|
||||
<TableColumn Name="Column7" Width="82.41"/>
|
||||
<TableColumn Name="Column8" Width="35.16"/>
|
||||
<TableColumn Name="Column9" Width="63.51"/>
|
||||
<TableColumn Name="Column10" Width="49.14"/>
|
||||
<TableColumn Name="Column11" Width="54.06"/>
|
||||
<TableColumn Name="Column12" Width="82.41"/>
|
||||
<TableRow Name="Row1" Height="63.5">
|
||||
<ReportPage Name="Page1" Landscape="true" PaperWidth="297" PaperHeight="210" RawPaperSize="9" LeftMargin="16.5" TopMargin="22" RightMargin="13.3" BottomMargin="17" Guides="0,1009.39,231,49.35,741.3099,115.5,93.46,87.15,39.9,835.81,53.88,58.8,181.65,863.44,318.15,433.65,527.11,614.26,701.41,809.56,68.25,922.24,1009.21,336.99,673.98,9.45,406.35">
|
||||
<PageHeaderBand Name="PageHeader1" Width="1010.02" Height="136.08" Guides="0,136.08,98.28,68.04,9.45,28.35,30.24,37.8">
|
||||
<TableObject Name="Table1" Width="1009.39" Height="136.08" Border.Lines="Right">
|
||||
<TableColumn Name="Column1" Width="181.65"/>
|
||||
<TableColumn Name="Column2" Width="49.35"/>
|
||||
<TableColumn Name="Column3" Width="87.15"/>
|
||||
<TableColumn Name="Column4" Width="115.5"/>
|
||||
<TableColumn Name="Column5" Width="93.46"/>
|
||||
<TableColumn Name="Column6" Width="87.15"/>
|
||||
<TableColumn Name="Column7" Width="87.15"/>
|
||||
<TableColumn Name="Column8" Width="39.9"/>
|
||||
<TableColumn Name="Column9" Width="68.25"/>
|
||||
<TableColumn Name="Column10" Width="53.88"/>
|
||||
<TableColumn Name="Column11" Width="58.8"/>
|
||||
<TableColumn Name="Column12" Width="87.15"/>
|
||||
<TableRow Name="Row1" Height="68.04">
|
||||
<TableCell Name="Cell1" Border.Lines="All" Text="SH/T 3503-J415-1" HorzAlign="Center" VertAlign="Center" Font="宋体, 10.5pt" ColSpan="2" RowSpan="2"/>
|
||||
<TableCell Name="Cell2" Border.Lines="All"/>
|
||||
<TableCell Name="Cell3" Border.Lines="All" BeforePrintEvent="Cell3_BeforePrint" Text="管道焊接工作记录[header]" HorzAlign="Center" VertAlign="Center" Font="华文中宋, 16pt, style=Bold" ColSpan="6" RowSpan="2"/>
|
||||
<TableCell Name="Cell3" Border.Lines="All" BeforePrintEvent="Cell3_BeforePrint" Text="管道焊接工作记录[header]" HorzAlign="Center" VertAlign="Center" Font="思源宋体 CN, 16pt, style=Bold" ColSpan="6" RowSpan="2"/>
|
||||
<TableCell Name="Cell4" Border.Lines="All"/>
|
||||
<TableCell Name="Cell5" Border.Lines="All"/>
|
||||
<TableCell Name="Cell26" Border.Lines="All"/>
|
||||
|
|
@ -97,7 +97,7 @@ namespace FastReport
|
|||
<TableCell Name="Cell31" Border.Lines="Right, Top" Font="楷体, 10.5pt"/>
|
||||
<TableCell Name="Cell32" Border.Lines="Right, Top" Font="楷体, 9pt"/>
|
||||
</TableRow>
|
||||
<TableRow Name="Row2" Height="37.8">
|
||||
<TableRow Name="Row2" Height="30.24">
|
||||
<TableCell Name="Cell6" Border.Lines="All"/>
|
||||
<TableCell Name="Cell7" Border.Lines="All"/>
|
||||
<TableCell Name="Cell8" Border.Lines="All"/>
|
||||
|
|
@ -127,20 +127,20 @@ namespace FastReport
|
|||
</TableRow>
|
||||
</TableObject>
|
||||
</PageHeaderBand>
|
||||
<DataBand Name="Data1" Top="143.1" Width="952.56" Height="34.02" Guides="0,34.02">
|
||||
<TableObject Name="Table2" Width="952.51" Height="34.02" ManualBuildEvent="Table2_ManualBuild">
|
||||
<TableColumn Name="Column13" Width="176.91"/>
|
||||
<TableColumn Name="Column14" Width="44.61"/>
|
||||
<TableColumn Name="Column15" Width="82.41"/>
|
||||
<TableColumn Name="Column16" Width="110.76"/>
|
||||
<TableColumn Name="Column17" Width="88.72"/>
|
||||
<TableColumn Name="Column18" Width="82.41"/>
|
||||
<TableColumn Name="Column19" Width="82.41"/>
|
||||
<TableColumn Name="Column20" Width="35.16"/>
|
||||
<TableColumn Name="Column21" Width="63.51"/>
|
||||
<TableColumn Name="Column22" Width="49.14"/>
|
||||
<TableColumn Name="Column23" Width="54.06"/>
|
||||
<TableColumn Name="Column24" Width="82.41"/>
|
||||
<DataBand Name="Data1" Top="140.08" Width="1010.02" Height="34.02" Guides="0,34.02">
|
||||
<TableObject Name="Table2" Width="1009.39" Height="34.02" ManualBuildEvent="Table2_ManualBuild">
|
||||
<TableColumn Name="Column13" Width="181.65"/>
|
||||
<TableColumn Name="Column14" Width="49.35"/>
|
||||
<TableColumn Name="Column15" Width="87.15"/>
|
||||
<TableColumn Name="Column16" Width="115.5"/>
|
||||
<TableColumn Name="Column17" Width="93.46"/>
|
||||
<TableColumn Name="Column18" Width="87.15"/>
|
||||
<TableColumn Name="Column19" Width="87.15"/>
|
||||
<TableColumn Name="Column20" Width="39.9"/>
|
||||
<TableColumn Name="Column21" Width="68.25"/>
|
||||
<TableColumn Name="Column22" Width="53.88"/>
|
||||
<TableColumn Name="Column23" Width="58.8"/>
|
||||
<TableColumn Name="Column24" Width="87.15"/>
|
||||
<TableRow Name="Row6" Height="34.02">
|
||||
<TableCell Name="Cell71" Border.Lines="All" Text="[Data.ISO_IsoNo]" HorzAlign="Center" VertAlign="Center" Font="楷体, 10.5pt"/>
|
||||
<TableCell Name="Cell72" Border.Lines="All" Text="[Data.JOT_JointNo]" HorzAlign="Center" VertAlign="Center" Font="楷体, 10.5pt"/>
|
||||
|
|
@ -157,21 +157,21 @@ namespace FastReport
|
|||
</TableRow>
|
||||
</TableObject>
|
||||
</DataBand>
|
||||
<ColumnFooterBand Name="ColumnFooter1" Top="219.14" Width="952.56">
|
||||
<ChildBand Name="Child1" Top="181.12" Width="952.56" Height="34.02" Guides="0,34.02" FillUnusedSpace="true">
|
||||
<TableObject Name="Table3" Width="952.51" Height="34.02">
|
||||
<TableColumn Name="Column25" Width="176.91"/>
|
||||
<TableColumn Name="Column26" Width="44.61"/>
|
||||
<TableColumn Name="Column27" Width="82.41"/>
|
||||
<TableColumn Name="Column28" Width="110.76"/>
|
||||
<TableColumn Name="Column29" Width="88.72"/>
|
||||
<TableColumn Name="Column30" Width="82.41"/>
|
||||
<TableColumn Name="Column31" Width="82.41"/>
|
||||
<TableColumn Name="Column32" Width="35.16"/>
|
||||
<TableColumn Name="Column33" Width="63.51"/>
|
||||
<TableColumn Name="Column34" Width="49.14"/>
|
||||
<TableColumn Name="Column35" Width="54.06"/>
|
||||
<TableColumn Name="Column36" Width="82.41"/>
|
||||
<ColumnFooterBand Name="ColumnFooter1" Top="216.12" Width="1010.02">
|
||||
<ChildBand Name="Child1" Top="178.1" Width="1010.02" Height="34.02" Guides="0,34.02" FillUnusedSpace="true">
|
||||
<TableObject Name="Table3" Width="1009.39" Height="34.02">
|
||||
<TableColumn Name="Column25" Width="181.65"/>
|
||||
<TableColumn Name="Column26" Width="49.35"/>
|
||||
<TableColumn Name="Column27" Width="87.15"/>
|
||||
<TableColumn Name="Column28" Width="115.5"/>
|
||||
<TableColumn Name="Column29" Width="93.46"/>
|
||||
<TableColumn Name="Column30" Width="87.15"/>
|
||||
<TableColumn Name="Column31" Width="87.15"/>
|
||||
<TableColumn Name="Column32" Width="39.9"/>
|
||||
<TableColumn Name="Column33" Width="68.25"/>
|
||||
<TableColumn Name="Column34" Width="53.88"/>
|
||||
<TableColumn Name="Column35" Width="58.8"/>
|
||||
<TableColumn Name="Column36" Width="87.15"/>
|
||||
<TableRow Name="Row7" Height="34.02">
|
||||
<TableCell Name="Cell83" Border.Lines="All" HorzAlign="Center" VertAlign="Center" Font="宋体, 10.5pt"/>
|
||||
<TableCell Name="Cell84" Border.Lines="All" HorzAlign="Center" VertAlign="Center" Font="宋体, 10.5pt"/>
|
||||
|
|
@ -189,37 +189,40 @@ namespace FastReport
|
|||
</TableObject>
|
||||
</ChildBand>
|
||||
</ColumnFooterBand>
|
||||
<PageFooterBand Name="PageFooter1" Top="223.14" Width="952.56" Height="124.74" PrintOn="FirstPage" Guides="0,124.74,34.02,56.7,79.38,102.06">
|
||||
<TableObject Name="Table4" Width="952.51" Height="124.74" Border.Lines="Left, Right, Top">
|
||||
<TableColumn Name="Column37" Width="318.09"/>
|
||||
<TableColumn Name="Column38" Width="318.09"/>
|
||||
<TableColumn Name="Column39" Width="316.33"/>
|
||||
<TableRow Name="Row8" Height="34.02">
|
||||
<PageFooterBand Name="PageFooter1" Top="220.12" Width="1010.02" Height="136.08" PrintOn="FirstPage" Guides="0,136.08,26.46,52.92,83.16,109.62">
|
||||
<TableObject Name="Table4" Width="1009.21" Height="136.08" Border.Lines="Left, Right, Top">
|
||||
<TableColumn Name="Column37" Width="336.99"/>
|
||||
<TableColumn Name="Column38" Width="336.99"/>
|
||||
<TableColumn Name="Column39" Width="335.23"/>
|
||||
<TableRow Name="Row8" Height="26.46">
|
||||
<TableCell Name="Cell95" Border.Lines="All" Text="建设/监理单位" HorzAlign="Center" VertAlign="Center" Font="宋体, 10.5pt"/>
|
||||
<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"/>
|
||||
</TableRow>
|
||||
<TableRow Name="Row9" Height="22.68">
|
||||
<TableRow Name="Row9" Height="26.46">
|
||||
<TableCell Name="Cell100" Border.Lines="Right" Text="专业工程师:" VertAlign="Center" Font="宋体, 10.5pt"/>
|
||||
<TableCell Name="Cell101" Border.Lines="Right" Text="专业工程师:" VertAlign="Center" Font="宋体, 10.5pt"/>
|
||||
<TableCell Name="Cell102" Border.Lines="Right" Text="记录人:" VertAlign="Center" Font="宋体, 10.5pt"/>
|
||||
</TableRow>
|
||||
<TableRow Name="Row10" Height="22.68">
|
||||
<TableRow Name="Row10" Height="30.24">
|
||||
<TableCell Name="Cell105" Border.Lines="Right" VertAlign="Center" Font="宋体, 10.5pt"/>
|
||||
<TableCell Name="Cell106" Border.Lines="Right" VertAlign="Center" Font="宋体, 10.5pt"/>
|
||||
<TableCell Name="Cell107" Border.Lines="Right" Text="质量检查员:" VertAlign="Center" Font="宋体, 10.5pt"/>
|
||||
</TableRow>
|
||||
<TableRow Name="Row11" Height="22.68">
|
||||
<TableRow Name="Row11" Height="26.46">
|
||||
<TableCell Name="Cell110" Border.Lines="Right" VertAlign="Center" Font="宋体, 10.5pt"/>
|
||||
<TableCell Name="Cell111" Border.Lines="Right" VertAlign="Center" Font="宋体, 10.5pt"/>
|
||||
<TableCell Name="Cell112" Border.Lines="Right" Text="焊接责任工程师:" VertAlign="Center" Font="宋体, 10.5pt"/>
|
||||
</TableRow>
|
||||
<TableRow Name="Row12" Height="22.68">
|
||||
<TableRow Name="Row12" Height="26.46">
|
||||
<TableCell Name="Cell115" Border.Lines="Right, Bottom" Text="日期:" VertAlign="Center" Font="宋体, 10.5pt"/>
|
||||
<TableCell Name="Cell116" Border.Lines="Right, Bottom" Text="日期:" VertAlign="Center" Font="宋体, 10.5pt"/>
|
||||
<TableCell Name="Cell117" Border.Lines="Right, Bottom" Text="日期:" VertAlign="Center" Font="宋体, 10.5pt"/>
|
||||
</TableRow>
|
||||
</TableObject>
|
||||
<ChildBand Name="Child2" Top="360.2" Width="1010.02" PrintOn="LastPage, OddPages, EvenPages, RepeatedBand, SinglePage" Guides="0">
|
||||
<LineObject Name="Line1" Left="9.45" Width="396.9"/>
|
||||
</ChildBand>
|
||||
</PageFooterBand>
|
||||
</ReportPage>
|
||||
</Report>
|
||||
|
|
|
|||
|
|
@ -164,7 +164,9 @@ namespace FineUIPro.Web.JGZL
|
|||
///<param name="e"></param>
|
||||
protected void drpProjectId_SelectedIndexChanged(object sender, EventArgs e)
|
||||
{
|
||||
this.tvControlItem.SelectedNodeID = this.drpProjectId.SelectedValue;
|
||||
this.InitTreeMenu();
|
||||
BindGrid();
|
||||
}
|
||||
|
||||
/// <summary>
|
||||
|
|
|
|||
|
|
@ -175,7 +175,9 @@ namespace FineUIPro.Web.JGZL
|
|||
///<param name="e"></param>
|
||||
protected void drpProjectId_SelectedIndexChanged(object sender, EventArgs e)
|
||||
{
|
||||
this.tvControlItem.SelectedNodeID = this.drpProjectId.SelectedValue;
|
||||
this.InitTreeMenu();
|
||||
BindGrid();
|
||||
}
|
||||
|
||||
/// <summary>
|
||||
|
|
|
|||
|
|
@ -164,7 +164,9 @@ namespace FineUIPro.Web.JGZL
|
|||
///<param name="e"></param>
|
||||
protected void drpProjectId_SelectedIndexChanged(object sender, EventArgs e)
|
||||
{
|
||||
this.tvControlItem.SelectedNodeID = this.drpProjectId.SelectedValue;
|
||||
this.InitTreeMenu();
|
||||
BindGrid();
|
||||
}
|
||||
|
||||
/// <summary>
|
||||
|
|
|
|||
|
|
@ -166,7 +166,9 @@ namespace FineUIPro.Web.JGZL
|
|||
///<param name="e"></param>
|
||||
protected void drpProjectId_SelectedIndexChanged(object sender, EventArgs e)
|
||||
{
|
||||
this.tvControlItem.SelectedNodeID = this.drpProjectId.SelectedValue;
|
||||
this.InitTreeMenu();
|
||||
BindGrid();
|
||||
}
|
||||
|
||||
/// <summary>
|
||||
|
|
|
|||
|
|
@ -164,7 +164,9 @@ namespace FineUIPro.Web.JGZL
|
|||
///<param name="e"></param>
|
||||
protected void drpProjectId_SelectedIndexChanged(object sender, EventArgs e)
|
||||
{
|
||||
this.tvControlItem.SelectedNodeID = this.drpProjectId.SelectedValue;
|
||||
this.InitTreeMenu();
|
||||
BindGrid();
|
||||
}
|
||||
|
||||
/// <summary>
|
||||
|
|
|
|||
|
|
@ -164,8 +164,9 @@ namespace FineUIPro.Web.JGZL
|
|||
///<param name="e"></param>
|
||||
protected void drpProjectId_SelectedIndexChanged(object sender, EventArgs e)
|
||||
{
|
||||
this.tvControlItem.SelectedNodeID = this.drpProjectId.SelectedValue;
|
||||
this.InitTreeMenu();
|
||||
this.BindGrid();
|
||||
BindGrid();
|
||||
}
|
||||
|
||||
/// <summary>
|
||||
|
|
|
|||
|
|
@ -164,7 +164,9 @@ namespace FineUIPro.Web.JGZL
|
|||
///<param name="e"></param>
|
||||
protected void drpProjectId_SelectedIndexChanged(object sender, EventArgs e)
|
||||
{
|
||||
this.tvControlItem.SelectedNodeID = this.drpProjectId.SelectedValue;
|
||||
this.InitTreeMenu();
|
||||
BindGrid();
|
||||
}
|
||||
|
||||
/// <summary>
|
||||
|
|
|
|||
|
|
@ -118,7 +118,9 @@ namespace FineUIPro.Web.JGZL
|
|||
///<param name="e"></param>
|
||||
protected void drpProjectId_SelectedIndexChanged(object sender, EventArgs e)
|
||||
{
|
||||
this.tvControlItem.SelectedNodeID = this.drpProjectId.SelectedValue;
|
||||
this.InitTreeMenu();
|
||||
BindGrid();
|
||||
}
|
||||
#endregion
|
||||
|
||||
|
|
|
|||
|
|
@ -51,6 +51,16 @@
|
|||
<f:Form ID="SimpleForm1" ShowBorder="true" ShowHeader="false" AutoScroll="true" BodyPadding="10px"
|
||||
runat="server" RedStarPosition="BeforeText" LabelAlign="Right">
|
||||
<Rows>
|
||||
<f:FormRow>
|
||||
<Items>
|
||||
<f:TextArea ID="txtProjectOverview" runat="server" Label="工程概况" LabelAlign="Right" LabelWidth="110px" MaxLength="2000" Height="150px"></f:TextArea>
|
||||
</Items>
|
||||
</f:FormRow>
|
||||
<f:FormRow>
|
||||
<Items>
|
||||
<f:TextArea ID="txtCompilationBasis" runat="server" Label="编制依据" LabelAlign="Right" LabelWidth="110px" MaxLength="1000" Height="150px"></f:TextArea>
|
||||
</Items>
|
||||
</f:FormRow>
|
||||
<f:FormRow>
|
||||
<Items>
|
||||
<f:TextBox ID="txtConstructionUnit" runat="server" Label="建设单位" LabelAlign="Right" LabelWidth="110px" MaxLength="50"></f:TextBox>
|
||||
|
|
@ -65,7 +75,12 @@
|
|||
</f:FormRow>
|
||||
<f:FormRow>
|
||||
<Items>
|
||||
<f:TextArea ID="txtProjectOverview" runat="server" Label="工程概况" LabelAlign="Right" LabelWidth="110px" MaxLength="2000" Height="300px"></f:TextArea>
|
||||
<f:TextArea ID="txtMainContent" runat="server" Label="案卷构成及本卷册主要内容" LabelAlign="Right" LabelWidth="110px" MaxLength="500" Height="150px"></f:TextArea>
|
||||
</Items>
|
||||
</f:FormRow>
|
||||
<f:FormRow>
|
||||
<Items>
|
||||
<f:TextBox ID="txtCopiesNum" runat="server" Label="编制份数" LabelAlign="Right" LabelWidth="110px" MaxLength="500" ></f:TextBox>
|
||||
</Items>
|
||||
</f:FormRow>
|
||||
</Rows>
|
||||
|
|
|
|||
|
|
@ -9,6 +9,7 @@ using System.Web.UI;
|
|||
using System.Web.UI.WebControls;
|
||||
using static System.Windows.Forms.VisualStyles.VisualStyleElement;
|
||||
using System.IO;
|
||||
using Microsoft.SqlServer.Server;
|
||||
|
||||
namespace FineUIPro.Web.JGZL
|
||||
{
|
||||
|
|
@ -111,7 +112,9 @@ namespace FineUIPro.Web.JGZL
|
|||
///<param name="e"></param>
|
||||
protected void drpProjectId_SelectedIndexChanged(object sender, EventArgs e)
|
||||
{
|
||||
this.tvControlItem.SelectedNodeID = this.drpProjectId.SelectedValue;
|
||||
this.InitTreeMenu();
|
||||
PageData();
|
||||
}
|
||||
#endregion
|
||||
|
||||
|
|
@ -127,35 +130,57 @@ namespace FineUIPro.Web.JGZL
|
|||
{
|
||||
this.DocumentDescriptionId = report.DocumentDescriptionId;
|
||||
this.txtProjectOverview.Text = report.ProjectOverview;
|
||||
this.txtConstructionUnit.Text = report.ConstructionUnit;
|
||||
if(!string.IsNullOrEmpty(report.ConstructionUnit))
|
||||
{
|
||||
this.txtConstructionUnit.Text = report.ConstructionUnit;
|
||||
}
|
||||
else
|
||||
{
|
||||
this.txtConstructionUnit.Text = "浙江石油化工有限公司";
|
||||
}
|
||||
|
||||
this.txtDesigningUnit.Text = report.DesigningUnit;
|
||||
this.txtTestingUnit.Text = report.TestingUnit;
|
||||
this.txtConstructionCompany.Text = report.ConstructionCompany;
|
||||
if (!string.IsNullOrEmpty(report.ConstructionCompany))
|
||||
{
|
||||
this.txtConstructionCompany.Text = report.ConstructionCompany;
|
||||
}
|
||||
else
|
||||
{
|
||||
this.txtConstructionCompany.Text = "浙江鼎盛石化工程有限公司";
|
||||
}
|
||||
if (!string.IsNullOrEmpty(report.CompilationBasis))
|
||||
{
|
||||
this.txtCompilationBasis.Text = report.CompilationBasis;
|
||||
}
|
||||
else
|
||||
{
|
||||
this.txtCompilationBasis.Text = "1、《石油化工建设工程项目交工技术文件规定》(SH/T3503-2017)\r\n2、《国家重大建设项目文件归档要求与档案管理规范》(DA/T28-2018)\r\n3、《石油化工建设工程项目过程技术文件规定》(SH/T3543-2017)";
|
||||
}
|
||||
if (!string.IsNullOrEmpty(report.MainContent))
|
||||
{
|
||||
this.txtMainContent.Text = report.MainContent;
|
||||
}
|
||||
else
|
||||
{
|
||||
this.txtMainContent.Text = "1、交工技术文件,共2册,分别为:管道安装工程册、材料质量证明文件\r\n2、本册为管道安装工程册,册内内容包括:封面、交工技术目录、交工技术总目录、交工技术说明、交工技术文件移交证书等。";
|
||||
}
|
||||
if (!string.IsNullOrEmpty(report.CopiesNum))
|
||||
{
|
||||
this.txtCopiesNum.Text = report.CopiesNum;
|
||||
}
|
||||
else
|
||||
{
|
||||
this.txtCopiesNum.Text = "1、交工纸质文件归档2份,其中正本1份,副本1份。";
|
||||
}
|
||||
}
|
||||
else
|
||||
{
|
||||
//var project = BLL.Base_ProjectService.GetProjectByProjectId(projectId);
|
||||
//var isoLists = BLL.HJGL_PW_IsoInfoService.GetIsoInfoByProjectId(projectId);
|
||||
//string isoInfos = string.Empty;
|
||||
//foreach (var item in isoLists)
|
||||
//{
|
||||
// int hdCount = 0;
|
||||
// int gdCount = 0;
|
||||
// var joitInfos = (from x in Funs.DB.HJGL_PW_JointInfo where x.ISO_ID == item.ISO_ID select x);
|
||||
// if (joitInfos.Count() > 0)
|
||||
// {
|
||||
// hdCount = joitInfos.Where(x => x.JOT_JointAttribute == "活动").Count();
|
||||
// gdCount = joitInfos.Where(x => x.JOT_JointAttribute == "固定").Count();
|
||||
// }
|
||||
// isoInfos += "管线编号" + item.ISO_IsoNo + ",其中活动焊口" + hdCount + "道,固定焊口" + gdCount + "道;";
|
||||
//}
|
||||
//if (!string.IsNullOrEmpty(isoInfos))
|
||||
//{
|
||||
// isoInfos = isoInfos.Substring(0, isoInfos.LastIndexOf(';'));
|
||||
//}
|
||||
//this.txtProjectOverview.Text = "本文件为" + project.ProjectName + "," + string.Format("{0:yyyy年MM月dd日}", project.StartDate) + "开工,到" + string.Format("{0:yyyy年MM月dd日}", project.EndDate) + "施工结束,主要施工内容:" + isoInfos;
|
||||
this.txtCompilationBasis.Text = "1、《石油化工建设工程项目交工技术文件规定》(SH/T3503-2017)\r\n2、《国家重大建设项目文件归档要求与档案管理规范》(DA/T28-2018)\r\n3、《石油化工建设工程项目过程技术文件规定》(SH/T3543-2017)";
|
||||
this.txtConstructionUnit.Text = "浙江石油化工有限公司";
|
||||
this.txtConstructionCompany.Text = "浙江鼎盛石化工程有限公司";
|
||||
this.txtMainContent.Text = "1、交工技术文件,共2册,分别为:管道安装工程册、材料质量证明文件\r\n2、本册为管道安装工程册,册内内容包括:封面、交工技术目录、交工技术总目录、交工技术说明、交工技术文件移交证书等。";
|
||||
this.txtCopiesNum.Text = "1、交工纸质文件归档2份,其中正本1份,副本1份。";
|
||||
}
|
||||
}
|
||||
}
|
||||
|
|
@ -176,6 +201,9 @@ namespace FineUIPro.Web.JGZL
|
|||
newDocumentDescription.DesigningUnit = this.txtDesigningUnit.Text;
|
||||
newDocumentDescription.TestingUnit = this.txtTestingUnit.Text;
|
||||
newDocumentDescription.ConstructionCompany = this.txtConstructionCompany.Text;
|
||||
newDocumentDescription.CompilationBasis=this.txtCompilationBasis.Text;
|
||||
newDocumentDescription.MainContent = this.txtMainContent.Text;
|
||||
newDocumentDescription.CopiesNum = this.txtCopiesNum.Text;
|
||||
if (!string.IsNullOrEmpty(this.DocumentDescriptionId))
|
||||
{
|
||||
newDocumentDescription.DocumentDescriptionId = this.DocumentDescriptionId;
|
||||
|
|
@ -224,6 +252,9 @@ namespace FineUIPro.Web.JGZL
|
|||
keyValuePairs.Add("DesigningUnit", this.txtDesigningUnit.Text);
|
||||
keyValuePairs.Add("TestingUnit", this.txtTestingUnit.Text);
|
||||
keyValuePairs.Add("ConstructionCompany", this.txtConstructionCompany.Text);
|
||||
keyValuePairs.Add("CompilationBasis", this.txtCompilationBasis.Text);
|
||||
keyValuePairs.Add("MainContent", this.txtMainContent.Text);
|
||||
keyValuePairs.Add("CopiesNum", this.txtCopiesNum.Text);
|
||||
BLL.Common.FastReportService.AddFastreportParameter(keyValuePairs);
|
||||
|
||||
initTemplatePath = "File\\Fastreport\\JGZL\\交工技术文件说明.frx";
|
||||
|
|
|
|||
|
|
@ -131,6 +131,24 @@ namespace FineUIPro.Web.JGZL
|
|||
/// </remarks>
|
||||
protected global::FineUIPro.Form SimpleForm1;
|
||||
|
||||
/// <summary>
|
||||
/// txtProjectOverview 控件。
|
||||
/// </summary>
|
||||
/// <remarks>
|
||||
/// 自动生成的字段。
|
||||
/// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。
|
||||
/// </remarks>
|
||||
protected global::FineUIPro.TextArea txtProjectOverview;
|
||||
|
||||
/// <summary>
|
||||
/// txtCompilationBasis 控件。
|
||||
/// </summary>
|
||||
/// <remarks>
|
||||
/// 自动生成的字段。
|
||||
/// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。
|
||||
/// </remarks>
|
||||
protected global::FineUIPro.TextArea txtCompilationBasis;
|
||||
|
||||
/// <summary>
|
||||
/// txtConstructionUnit 控件。
|
||||
/// </summary>
|
||||
|
|
@ -168,13 +186,22 @@ namespace FineUIPro.Web.JGZL
|
|||
protected global::FineUIPro.TextBox txtConstructionCompany;
|
||||
|
||||
/// <summary>
|
||||
/// txtProjectOverview 控件。
|
||||
/// txtMainContent 控件。
|
||||
/// </summary>
|
||||
/// <remarks>
|
||||
/// 自动生成的字段。
|
||||
/// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。
|
||||
/// </remarks>
|
||||
protected global::FineUIPro.TextArea txtProjectOverview;
|
||||
protected global::FineUIPro.TextArea txtMainContent;
|
||||
|
||||
/// <summary>
|
||||
/// txtCopiesNum 控件。
|
||||
/// </summary>
|
||||
/// <remarks>
|
||||
/// 自动生成的字段。
|
||||
/// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。
|
||||
/// </remarks>
|
||||
protected global::FineUIPro.TextBox txtCopiesNum;
|
||||
|
||||
/// <summary>
|
||||
/// WindowPrint 控件。
|
||||
|
|
|
|||
|
|
@ -188,7 +188,9 @@ namespace FineUIPro.Web.JGZL
|
|||
///<param name="e"></param>
|
||||
protected void drpProjectId_SelectedIndexChanged(object sender, EventArgs e)
|
||||
{
|
||||
this.tvControlItem.SelectedNodeID = this.drpProjectId.SelectedValue;
|
||||
this.InitTreeMenu();
|
||||
BindGrid();
|
||||
}
|
||||
|
||||
/// <summary>
|
||||
|
|
|
|||
|
|
@ -47,12 +47,16 @@
|
|||
<Items>
|
||||
<f:Grid ID="Grid1" ShowBorder="true" ShowHeader="false" Title="交工技术文件目录" EnableCollapse="true"
|
||||
runat="server" BoxFlex="1" DataKeyNames="FileDirectoryId" AllowCellEditing="true"
|
||||
EnableColumnLines="true" ClicksToEdit="1" DataIDField="FileDirectoryId" SortField="SerialNumber" AllowSorting="true" SortDirection="ASC"
|
||||
EnableColumnLines="true" ClicksToEdit="1" DataIDField="FileDirectoryId" AllowSorting="true"
|
||||
SortField="SerialNumber" SortDirection="ASC" OnSort="Grid1_Sort" AllowPaging="true"
|
||||
IsDatabasePaging="true" PageSize="10" OnPageIndexChange="Grid1_PageIndexChange"
|
||||
EnableTextSelection="True" AutoScroll="true">
|
||||
<Columns>
|
||||
<f:RenderField HeaderText="序号" ColumnID="SerialNumber" DataField="SerialNumber" SortField="SerialNumber"
|
||||
<%--<f:RenderField HeaderText="序号" ColumnID="SerialNumber" DataField="SerialNumber" SortField="SerialNumber"
|
||||
FieldType="String" HeaderTextAlign="Center" TextAlign="Left" Width="150px">
|
||||
</f:RenderField>
|
||||
</f:RenderField>--%>
|
||||
<f:RowNumberField EnablePagingNumber="true" HeaderText="序号" Width="50px" HeaderTextAlign="Center"
|
||||
TextAlign="Center" />
|
||||
<f:RenderField HeaderText="文件编号" ColumnID="FileCode" DataField="FileCode" SortField="FileCode"
|
||||
FieldType="String" HeaderTextAlign="Center" TextAlign="Left" Width="350px">
|
||||
</f:RenderField>
|
||||
|
|
@ -63,15 +67,47 @@
|
|||
FieldType="String" HeaderTextAlign="Center" TextAlign="Left" Width="350px">
|
||||
</f:RenderField>
|
||||
</Columns>
|
||||
<Listeners>
|
||||
<f:Listener Event="beforerowcontextmenu" Handler="onRowContextMenu" />
|
||||
</Listeners>
|
||||
<PageItems>
|
||||
<f:ToolbarSeparator ID="ToolbarSeparator1" runat="server">
|
||||
</f:ToolbarSeparator>
|
||||
<f:ToolbarText ID="ToolbarText1" runat="server" Text="每页记录数:">
|
||||
</f:ToolbarText>
|
||||
<f:DropDownList runat="server" ID="ddlPageSize" Width="80px" AutoPostBack="true"
|
||||
OnSelectedIndexChanged="ddlPageSize_SelectedIndexChanged">
|
||||
<f:ListItem Text="10" Value="10" />
|
||||
<f:ListItem Text="15" Value="15" />
|
||||
<f:ListItem Text="20" Value="20" />
|
||||
<f:ListItem Text="25" Value="25" />
|
||||
</f:DropDownList>
|
||||
</PageItems>
|
||||
</f:Grid>
|
||||
</Items>
|
||||
</f:Panel>
|
||||
</Items>
|
||||
</f:Panel>
|
||||
<f:Window ID="WindowPrint" Title="打印封面" Hidden="true" EnableIFrame="true" EnableMaximize="false"
|
||||
<f:Window ID="WindowPrint" Title="打印交工技术文件目录" Hidden="true" EnableIFrame="true" EnableMaximize="false"
|
||||
Target="Top" EnableResize="true" runat="server" IsModal="true" Width="1024px"
|
||||
Height="600px">
|
||||
</f:Window>
|
||||
<f:Menu ID="Menu1" runat="server">
|
||||
<%-- <f:MenuButton ID="btnMenuEdit" OnClick="btnMenuEdit_Click" EnablePostBack="true"
|
||||
runat="server" Text="编辑" Icon="TableEdit">
|
||||
</f:MenuButton>--%>
|
||||
<f:MenuButton ID="btnMenuDelete" OnClick="btnMenuDelete_Click" EnablePostBack="true"
|
||||
ConfirmText="删除选中行?" ConfirmTarget="Top" runat="server" Text="删除" Icon="Delete">
|
||||
</f:MenuButton>
|
||||
</f:Menu>
|
||||
</form>
|
||||
<script type="text/javascript">
|
||||
var menuID = '<%= Menu1.ClientID %>';
|
||||
// 返回false,来阻止浏览器右键菜单
|
||||
function onRowContextMenu(event, rowId) {
|
||||
F(menuID).show(); //showAt(event.pageX, event.pageY);
|
||||
return false;
|
||||
}
|
||||
</script>
|
||||
</body>
|
||||
</html>
|
||||
|
|
|
|||
|
|
@ -110,6 +110,45 @@ namespace FineUIPro.Web.JGZL
|
|||
}
|
||||
#endregion
|
||||
|
||||
#region 分页排序
|
||||
#region 页索引改变事件
|
||||
/// <summary>
|
||||
/// 页索引改变事件
|
||||
/// </summary>
|
||||
/// <param name="sender"></param>
|
||||
/// <param name="e"></param>
|
||||
protected void Grid1_PageIndexChange(object sender, GridPageEventArgs e)
|
||||
{
|
||||
BindGrid();
|
||||
}
|
||||
#endregion
|
||||
|
||||
#region 排序
|
||||
/// <summary>
|
||||
/// 排序
|
||||
/// </summary>
|
||||
/// <param name="sender"></param>
|
||||
/// <param name="e"></param>
|
||||
protected void Grid1_Sort(object sender, GridSortEventArgs e)
|
||||
{
|
||||
BindGrid();
|
||||
}
|
||||
#endregion
|
||||
|
||||
#region 分页选择下拉改变事件
|
||||
/// <summary>
|
||||
/// 分页选择下拉改变事件
|
||||
/// </summary>
|
||||
/// <param name="sender"></param>
|
||||
/// <param name="e"></param>
|
||||
protected void ddlPageSize_SelectedIndexChanged(object sender, EventArgs e)
|
||||
{
|
||||
Grid1.PageSize = Convert.ToInt32(ddlPageSize.SelectedValue);
|
||||
BindGrid();
|
||||
}
|
||||
#endregion
|
||||
#endregion
|
||||
|
||||
#region 查询
|
||||
///<summary>
|
||||
///查询
|
||||
|
|
@ -118,10 +157,80 @@ namespace FineUIPro.Web.JGZL
|
|||
///<param name="e"></param>
|
||||
protected void drpProjectId_SelectedIndexChanged(object sender, EventArgs e)
|
||||
{
|
||||
this.tvControlItem.SelectedNodeID = this.drpProjectId.SelectedValue;
|
||||
this.InitTreeMenu();
|
||||
BindGrid();
|
||||
}
|
||||
#endregion
|
||||
|
||||
#region 删除
|
||||
/// <summary>
|
||||
/// 右键删除
|
||||
/// </summary>
|
||||
/// <param name="sender"></param>
|
||||
/// <param name="e"></param>
|
||||
protected void btnMenuDelete_Click(object sender, EventArgs e)
|
||||
{
|
||||
if (CommonService.GetAllButtonPowerList(this.CurrUser.LoginProjectId, this.CurrUser.UserId, Const.JGZL_FileDirectoryMenuId, Const.BtnDelete))
|
||||
{
|
||||
if (Grid1.SelectedRowIndexArray.Length == 0)
|
||||
{
|
||||
Alert.ShowInTop("请选择一条记录!", MessageBoxIcon.Warning);
|
||||
return;
|
||||
}
|
||||
|
||||
bool isShow = true;
|
||||
if (Grid1.SelectedRowIndexArray.Length > 1)
|
||||
{
|
||||
isShow = false;
|
||||
}
|
||||
bool isDelete = false;
|
||||
foreach (int rowIndex in Grid1.SelectedRowIndexArray)
|
||||
{
|
||||
string rowID = Grid1.DataKeys[rowIndex][0].ToString();
|
||||
if (judgementDelete(rowID, isShow))
|
||||
{
|
||||
isDelete = true;
|
||||
BLL.FileDirectoryService.DeleteFileDirectoryById(rowID);
|
||||
BLL.Sys_LogService.AddLog(BLL.Const.System_3, this.CurrUser.LoginProjectId, this.CurrUser.UserId, "删除交工技术文件目录");
|
||||
}
|
||||
}
|
||||
if (isDelete)
|
||||
{
|
||||
ShowNotify("删除成功!", MessageBoxIcon.Success);
|
||||
}
|
||||
this.BindGrid();
|
||||
}
|
||||
else
|
||||
{
|
||||
Alert.ShowInTop("您没有这个权限,请与管理员联系!", MessageBoxIcon.Warning);
|
||||
}
|
||||
}
|
||||
#region 判断是否可删除
|
||||
/// <summary>
|
||||
/// 判断是否可以删除
|
||||
/// </summary>
|
||||
/// <returns></returns>
|
||||
private bool judgementDelete(string id, bool isShow)
|
||||
{
|
||||
string content = string.Empty;
|
||||
|
||||
if (string.IsNullOrEmpty(content))
|
||||
{
|
||||
return true;
|
||||
}
|
||||
else
|
||||
{
|
||||
if (isShow)
|
||||
{
|
||||
Alert.ShowInTop(content, MessageBoxIcon.Error);
|
||||
}
|
||||
return false;
|
||||
}
|
||||
}
|
||||
#endregion
|
||||
#endregion
|
||||
|
||||
#region 打印
|
||||
/// <summary>
|
||||
/// 打印
|
||||
|
|
@ -152,14 +261,16 @@ namespace FineUIPro.Web.JGZL
|
|||
dt.Columns.Add("Remark");
|
||||
|
||||
DataRow[] rows = tb.DefaultView.ToTable().Select();
|
||||
int i = 0;
|
||||
foreach (var row in rows)
|
||||
{
|
||||
var newRow = dt.NewRow();
|
||||
newRow["SerialNumber"] = row["SerialNumber"].ToString();
|
||||
newRow["SerialNumber"] = (i + 1).ToString(); //row["SerialNumber"].ToString();
|
||||
newRow["FileCode"] = row["FileCode"].ToString();
|
||||
newRow["FileName"] = row["FileName"].ToString();
|
||||
newRow["Remark"] = row["Remark"].ToString();
|
||||
dt.Rows.Add(newRow);
|
||||
i++;
|
||||
}
|
||||
BLL.Common.FastReportService.AddFastreportTable(dt);
|
||||
|
||||
|
|
|
|||
|
|
@ -122,6 +122,33 @@ namespace FineUIPro.Web.JGZL
|
|||
/// </remarks>
|
||||
protected global::FineUIPro.Grid Grid1;
|
||||
|
||||
/// <summary>
|
||||
/// ToolbarSeparator1 控件。
|
||||
/// </summary>
|
||||
/// <remarks>
|
||||
/// 自动生成的字段。
|
||||
/// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。
|
||||
/// </remarks>
|
||||
protected global::FineUIPro.ToolbarSeparator ToolbarSeparator1;
|
||||
|
||||
/// <summary>
|
||||
/// ToolbarText1 控件。
|
||||
/// </summary>
|
||||
/// <remarks>
|
||||
/// 自动生成的字段。
|
||||
/// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。
|
||||
/// </remarks>
|
||||
protected global::FineUIPro.ToolbarText ToolbarText1;
|
||||
|
||||
/// <summary>
|
||||
/// ddlPageSize 控件。
|
||||
/// </summary>
|
||||
/// <remarks>
|
||||
/// 自动生成的字段。
|
||||
/// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。
|
||||
/// </remarks>
|
||||
protected global::FineUIPro.DropDownList ddlPageSize;
|
||||
|
||||
/// <summary>
|
||||
/// WindowPrint 控件。
|
||||
/// </summary>
|
||||
|
|
@ -130,5 +157,23 @@ namespace FineUIPro.Web.JGZL
|
|||
/// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。
|
||||
/// </remarks>
|
||||
protected global::FineUIPro.Window WindowPrint;
|
||||
|
||||
/// <summary>
|
||||
/// Menu1 控件。
|
||||
/// </summary>
|
||||
/// <remarks>
|
||||
/// 自动生成的字段。
|
||||
/// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。
|
||||
/// </remarks>
|
||||
protected global::FineUIPro.Menu Menu1;
|
||||
|
||||
/// <summary>
|
||||
/// btnMenuDelete 控件。
|
||||
/// </summary>
|
||||
/// <remarks>
|
||||
/// 自动生成的字段。
|
||||
/// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。
|
||||
/// </remarks>
|
||||
protected global::FineUIPro.MenuButton btnMenuDelete;
|
||||
}
|
||||
}
|
||||
|
|
|
|||
|
|
@ -164,7 +164,9 @@ namespace FineUIPro.Web.JGZL
|
|||
///<param name="e"></param>
|
||||
protected void drpProjectId_SelectedIndexChanged(object sender, EventArgs e)
|
||||
{
|
||||
this.tvControlItem.SelectedNodeID = this.drpProjectId.SelectedValue;
|
||||
this.InitTreeMenu();
|
||||
BindGrid();
|
||||
}
|
||||
|
||||
/// <summary>
|
||||
|
|
|
|||
|
|
@ -164,8 +164,9 @@ namespace FineUIPro.Web.JGZL
|
|||
///<param name="e"></param>
|
||||
protected void drpProjectId_SelectedIndexChanged(object sender, EventArgs e)
|
||||
{
|
||||
this.tvControlItem.SelectedNodeID = this.drpProjectId.SelectedValue;
|
||||
this.InitTreeMenu();
|
||||
this.BindGrid();
|
||||
BindGrid();
|
||||
}
|
||||
|
||||
/// <summary>
|
||||
|
|
|
|||
|
|
@ -167,8 +167,9 @@ namespace FineUIPro.Web.JGZL
|
|||
///<param name="e"></param>
|
||||
protected void drpProjectId_SelectedIndexChanged(object sender, EventArgs e)
|
||||
{
|
||||
this.tvControlItem.SelectedNodeID = this.drpProjectId.SelectedValue;
|
||||
this.InitTreeMenu();
|
||||
this.BindGrid();
|
||||
BindGrid();
|
||||
}
|
||||
|
||||
/// <summary>
|
||||
|
|
|
|||
|
|
@ -175,7 +175,9 @@ namespace FineUIPro.Web.JGZL
|
|||
///<param name="e"></param>
|
||||
protected void drpProjectId_SelectedIndexChanged(object sender, EventArgs e)
|
||||
{
|
||||
this.tvControlItem.SelectedNodeID = this.drpProjectId.SelectedValue;
|
||||
this.InitTreeMenu();
|
||||
BindGrid();
|
||||
}
|
||||
|
||||
/// <summary>
|
||||
|
|
|
|||
|
|
@ -179,7 +179,9 @@ namespace FineUIPro.Web.JGZL
|
|||
///<param name="e"></param>
|
||||
protected void drpProjectId_SelectedIndexChanged(object sender, EventArgs e)
|
||||
{
|
||||
this.tvControlItem.SelectedNodeID = this.drpProjectId.SelectedValue;
|
||||
this.InitTreeMenu();
|
||||
BindGrid();
|
||||
}
|
||||
|
||||
/// <summary>
|
||||
|
|
|
|||
|
|
@ -164,7 +164,9 @@ namespace FineUIPro.Web.JGZL
|
|||
///<param name="e"></param>
|
||||
protected void drpProjectId_SelectedIndexChanged(object sender, EventArgs e)
|
||||
{
|
||||
this.tvControlItem.SelectedNodeID = this.drpProjectId.SelectedValue;
|
||||
this.InitTreeMenu();
|
||||
BindGrid();
|
||||
}
|
||||
|
||||
/// <summary>
|
||||
|
|
|
|||
|
|
@ -164,7 +164,9 @@ namespace FineUIPro.Web.JGZL
|
|||
///<param name="e"></param>
|
||||
protected void drpProjectId_SelectedIndexChanged(object sender, EventArgs e)
|
||||
{
|
||||
this.tvControlItem.SelectedNodeID = this.drpProjectId.SelectedValue;
|
||||
this.InitTreeMenu();
|
||||
BindGrid();
|
||||
}
|
||||
|
||||
/// <summary>
|
||||
|
|
|
|||
|
|
@ -35,6 +35,17 @@ namespace FineUIPro.Web.JGZL
|
|||
this.drpProjectId.SelectedValue = this.CurrUser.LoginProjectId;
|
||||
this.InitTreeMenu();//加载树
|
||||
this.tvControlItem.SelectedNodeID = this.drpProjectId.SelectedValue;
|
||||
|
||||
this.Grid1.Items.Clear();
|
||||
this.Grid1.DataBind();
|
||||
this.drpIsoId.Items.Clear();
|
||||
this.drpIsoId.DataTextField = "ISO_IsoNo";
|
||||
this.drpIsoId.DataValueField = "ISO_ID";
|
||||
this.drpIsoId.DataSource = (from x in Funs.DB.HJGL_PW_IsoInfo where x.ProjectId == this.tvControlItem.SelectedNodeID select x).ToList();
|
||||
this.drpIsoId.DataBind();
|
||||
Funs.FineUIPleaseSelect(this.drpIsoId);
|
||||
this.drpIsoId.SelectedIndex = 0;
|
||||
|
||||
this.BindGrid();
|
||||
}
|
||||
}
|
||||
|
|
@ -175,6 +186,16 @@ namespace FineUIPro.Web.JGZL
|
|||
protected void drpProjectId_SelectedIndexChanged(object sender, EventArgs e)
|
||||
{
|
||||
this.InitTreeMenu();
|
||||
|
||||
this.Grid1.Items.Clear();
|
||||
this.Grid1.DataBind();
|
||||
this.drpIsoId.Items.Clear();
|
||||
this.drpIsoId.DataTextField = "ISO_IsoNo";
|
||||
this.drpIsoId.DataValueField = "ISO_ID";
|
||||
this.drpIsoId.DataSource = (from x in Funs.DB.HJGL_PW_IsoInfo where x.ProjectId == this.tvControlItem.SelectedNodeID select x).ToList();
|
||||
this.drpIsoId.DataBind();
|
||||
Funs.FineUIPleaseSelect(this.drpIsoId);
|
||||
this.drpIsoId.SelectedIndex = 0;
|
||||
}
|
||||
|
||||
/// <summary>
|
||||
|
|
|
|||
|
|
@ -176,6 +176,7 @@ namespace FineUIPro.Web.JGZL
|
|||
protected void drpProjectId_SelectedIndexChanged(object sender, EventArgs e)
|
||||
{
|
||||
this.InitTreeMenu();
|
||||
this.BindGrid();
|
||||
}
|
||||
|
||||
/// <summary>
|
||||
|
|
|
|||
|
|
@ -174,6 +174,7 @@ namespace FineUIPro.Web.JGZL
|
|||
protected void drpProjectId_SelectedIndexChanged(object sender, EventArgs e)
|
||||
{
|
||||
this.InitTreeMenu();
|
||||
this.BindGrid();
|
||||
}
|
||||
|
||||
/// <summary>
|
||||
|
|
|
|||
|
|
@ -176,6 +176,7 @@ namespace FineUIPro.Web.JGZL
|
|||
protected void drpProjectId_SelectedIndexChanged(object sender, EventArgs e)
|
||||
{
|
||||
this.InitTreeMenu();
|
||||
this.BindGrid();
|
||||
}
|
||||
|
||||
/// <summary>
|
||||
|
|
|
|||
|
|
@ -176,6 +176,7 @@ namespace FineUIPro.Web.JGZL
|
|||
protected void drpProjectId_SelectedIndexChanged(object sender, EventArgs e)
|
||||
{
|
||||
this.InitTreeMenu();
|
||||
this.BindGrid();
|
||||
}
|
||||
|
||||
/// <summary>
|
||||
|
|
|
|||
|
|
@ -91,6 +91,7 @@ namespace FineUIPro.Web.JGZL
|
|||
protected void drpProjectId_SelectedIndexChanged(object sender, EventArgs e)
|
||||
{
|
||||
this.InitTreeMenu();
|
||||
this.BindGrid();
|
||||
}
|
||||
#endregion
|
||||
|
||||
|
|
|
|||
|
|
@ -39,14 +39,99 @@
|
|||
<Items>
|
||||
<f:ToolbarFill ID="ToolbarFill1" runat="server">
|
||||
</f:ToolbarFill>
|
||||
<f:Button ID="btnAdd" runat="server" Icon="Add" Text="增加" OnClick="btnAdd_Click"></f:Button>
|
||||
<f:Button ID="btnSave" Icon="SystemSave" runat="server" Text="保存" ValidateForms="SimpleForm1"
|
||||
OnClick="btnSave_Click">
|
||||
</f:Button>
|
||||
<%--<f:Button ID="btnAdd" runat="server" Icon="Add" Text="增加" OnClick="btnAdd_Click"></f:Button>--%>
|
||||
<f:Button ID="btnPrint" Text="特种设备安装改造维修告知书打印" Icon="Printer" runat="server" OnClick="btnPrint_Click">
|
||||
</f:Button>
|
||||
</Items>
|
||||
</f:Toolbar>
|
||||
</Toolbars>
|
||||
<Items>
|
||||
<f:Grid ID="Grid1" ShowBorder="true" ShowHeader="false" Title="特种设备安装改造维修告知书" EnableCollapse="true"
|
||||
<f:Form ID="SimpleForm1" ShowBorder="true" ShowHeader="false" AutoScroll="true" BodyPadding="10px"
|
||||
runat="server" RedStarPosition="BeforeText" LabelAlign="Right">
|
||||
<Rows>
|
||||
<f:FormRow>
|
||||
<Items>
|
||||
<f:TextBox ID="txtConUnit" runat="server" Label="施工单位" LabelAlign="Right" LabelWidth="130px" MaxLength="50" Required="true" ShowRedStar="true"></f:TextBox>
|
||||
<f:TextBox ID="txtMaintenanceCode" runat="server" Label="告知书编号" LabelAlign="Right" LabelWidth="130px" MaxLength="50" Required="true" ShowRedStar="true"></f:TextBox>
|
||||
</Items>
|
||||
</f:FormRow>
|
||||
<f:FormRow>
|
||||
<Items>
|
||||
<f:TextBox ID="txtEquipmentName" runat="server" Label="设备名称" LabelAlign="Right" LabelWidth="130px" MaxLength="50" Required="true" ShowRedStar="true"></f:TextBox>
|
||||
<f:TextBox ID="txtEquipmentModel" runat="server" Label="型号(参数)" LabelAlign="Right" LabelWidth="130px" MaxLength="50"></f:TextBox>
|
||||
</Items>
|
||||
</f:FormRow>
|
||||
<f:FormRow>
|
||||
<Items>
|
||||
<f:TextBox ID="txtEquipmentCode" runat="server" Label="设备代码" LabelAlign="Right" LabelWidth="130px"></f:TextBox>
|
||||
<f:TextBox ID="txtManufacturingNumber" runat="server" Label="制造编号" LabelAlign="Right" LabelWidth="130px"></f:TextBox>
|
||||
|
||||
</Items>
|
||||
</f:FormRow>
|
||||
<f:FormRow>
|
||||
<Items>
|
||||
<f:TextBox ID="txtManufacturingUnit" runat="server" Label="设备制造单位全称" LabelAlign="Right" LabelWidth="130px"></f:TextBox>
|
||||
<f:TextBox ID="txtManufacturingLicenseNumber" runat="server" Label="制造许可证编号" LabelAlign="Right" LabelWidth="130px"></f:TextBox>
|
||||
</Items>
|
||||
</f:FormRow>
|
||||
<f:FormRow>
|
||||
<Items>
|
||||
<f:TextBox ID="txtEquipmentLocation" runat="server" Label="设备地点" LabelAlign="Right" LabelWidth="130px"></f:TextBox>
|
||||
<f:DatePicker ID="txtConstructionDate" runat="server" Label="施工日期" LabelAlign="Right" LabelWidth="130px"></f:DatePicker>
|
||||
</Items>
|
||||
</f:FormRow>
|
||||
<f:FormRow>
|
||||
<Items>
|
||||
<f:DropDownList ID="drpConstructionCategory" runat="server" Label="施工类别" LabelAlign="Right" LabelWidth="130px" ShowRedStar="true" Required="true">
|
||||
<f:ListItem Value="改造" Text="改造" Selected="true" />
|
||||
<f:ListItem Value="安装" Text="安装" />
|
||||
<f:ListItem Value="维修" Text="维修" />
|
||||
</f:DropDownList>
|
||||
<f:TextBox ID="txtLicenseNumber" runat="server" Label="许可证编号" LabelAlign="Right" LabelWidth="130px"></f:TextBox>
|
||||
</Items>
|
||||
</f:FormRow>
|
||||
<f:FormRow>
|
||||
<Items>
|
||||
<f:DatePicker ID="txtLicenseValidityDate" runat="server" Label="许可证有效期" LabelAlign="Right" LabelWidth="130px"></f:DatePicker>
|
||||
<f:TextBox ID="txtConContactMan" runat="server" Label="联系人" LabelAlign="Right" LabelWidth="130px"></f:TextBox>
|
||||
</Items>
|
||||
</f:FormRow>
|
||||
<f:FormRow>
|
||||
<Items>
|
||||
<f:TextBox ID="txtConTelephone" runat="server" Label="电话" LabelAlign="Right" LabelWidth="130px"></f:TextBox>
|
||||
<f:TextBox ID="txtConFax" runat="server" Label="传真" LabelAlign="Right" LabelWidth="130px"></f:TextBox>
|
||||
</Items>
|
||||
</f:FormRow>
|
||||
<f:FormRow>
|
||||
<Items>
|
||||
<f:TextBox ID="txtConAddress" runat="server" Label="地址" LabelAlign="Right" LabelWidth="130px"></f:TextBox>
|
||||
<f:TextBox ID="txtConEmail" runat="server" Label="邮编" LabelAlign="Right" LabelWidth="130px"></f:TextBox>
|
||||
</Items>
|
||||
</f:FormRow>
|
||||
<f:FormRow>
|
||||
<Items>
|
||||
<f:TextBox ID="txtUseUnit" runat="server" Label="使用单位全称" LabelAlign="Right" LabelWidth="130px"></f:TextBox>
|
||||
<f:TextBox ID="txtUseContactMan" runat="server" Label="联系人" LabelAlign="Right" LabelWidth="130px"></f:TextBox>
|
||||
</Items>
|
||||
</f:FormRow>
|
||||
<f:FormRow>
|
||||
<Items>
|
||||
<f:TextBox ID="txtUseTelephone" runat="server" Label="电话" LabelAlign="Right" LabelWidth="130px"></f:TextBox>
|
||||
<f:TextBox ID="txtUseFax" runat="server" Label="传真" LabelAlign="Right" LabelWidth="130px"></f:TextBox>
|
||||
</Items>
|
||||
</f:FormRow>
|
||||
<f:FormRow>
|
||||
<Items>
|
||||
<f:TextBox ID="txtUseAddress" runat="server" Label="地址" LabelAlign="Right" LabelWidth="130px"></f:TextBox>
|
||||
<f:TextBox ID="txtUseEmail" runat="server" Label="邮编" LabelAlign="Right" LabelWidth="130px"></f:TextBox>
|
||||
</Items>
|
||||
</f:FormRow>
|
||||
</Rows>
|
||||
</f:Form>
|
||||
<%--<f:Grid ID="Grid1" ShowBorder="true" ShowHeader="false" Title="特种设备安装改造维修告知书" EnableCollapse="true"
|
||||
runat="server" BoxFlex="1" DataKeyNames="MaintenanceId" AllowCellEditing="true"
|
||||
EnableColumnLines="true" ClicksToEdit="1" DataIDField="MaintenanceId" AllowSorting="true"
|
||||
SortField="MaintenanceCode" SortDirection="DESC" OnSort="Grid1_Sort" AllowPaging="true"
|
||||
|
|
@ -102,35 +187,35 @@
|
|||
<f:ListItem Text="25" Value="25" />
|
||||
</f:DropDownList>
|
||||
</PageItems>
|
||||
</f:Grid>
|
||||
</f:Grid>--%>
|
||||
</Items>
|
||||
</f:Panel>
|
||||
</Items>
|
||||
</f:Panel>
|
||||
<f:Window ID="Window1" Title="特种设备安装改造维修告知书" Hidden="true" EnableIFrame="true" EnableMaximize="true"
|
||||
<%--<f:Window ID="Window1" Title="特种设备安装改造维修告知书" Hidden="true" EnableIFrame="true" EnableMaximize="true"
|
||||
Target="top" EnableResize="true" runat="server" OnClose="Window1_Close" IsModal="true"
|
||||
Width="1100px" Height="620px">
|
||||
</f:Window>
|
||||
</f:Window>--%>
|
||||
<f:Window ID="WindowPrint" Title="打印特种设备安装改造维修告知书" Hidden="true" EnableIFrame="true" EnableMaximize="false"
|
||||
Target="Top" EnableResize="true" runat="server" IsModal="true" Width="1024px"
|
||||
Height="600px">
|
||||
</f:Window>
|
||||
<f:Menu ID="Menu1" runat="server">
|
||||
<%--<f:Menu ID="Menu1" runat="server">
|
||||
<f:MenuButton ID="btnMenuEdit" OnClick="btnMenuEdit_Click" EnablePostBack="true"
|
||||
runat="server" Text="编辑" Icon="TableEdit">
|
||||
</f:MenuButton>
|
||||
<f:MenuButton ID="btnMenuDelete" OnClick="btnMenuDelete_Click" EnablePostBack="true"
|
||||
ConfirmText="删除选中行?" ConfirmTarget="Top" runat="server" Text="删除" Icon="Delete">
|
||||
</f:MenuButton>
|
||||
</f:Menu>
|
||||
</f:Menu>--%>
|
||||
</form>
|
||||
<script type="text/javascript">
|
||||
<%--<script type="text/javascript">
|
||||
var menuID = '<%= Menu1.ClientID %>';
|
||||
// 返回false,来阻止浏览器右键菜单
|
||||
function onRowContextMenu(event, rowId) {
|
||||
F(menuID).show(); //showAt(event.pageX, event.pageY);
|
||||
return false;
|
||||
}
|
||||
</script>
|
||||
</script>--%>
|
||||
</body>
|
||||
</html>
|
||||
|
|
|
|||
|
|
@ -8,11 +8,29 @@ using System.Web;
|
|||
using System.Web.UI;
|
||||
using System.Web.UI.WebControls;
|
||||
using System.IO;
|
||||
using FineUIPro.Web.common.BaseInfo;
|
||||
|
||||
namespace FineUIPro.Web.JGZL
|
||||
{
|
||||
public partial class SpecialEquipmentMaintenance : PageBase
|
||||
{
|
||||
#region 定义变量
|
||||
/// <summary>
|
||||
/// 主键
|
||||
/// </summary>
|
||||
private string MaintenanceId
|
||||
{
|
||||
get
|
||||
{
|
||||
return (string)ViewState["MaintenanceId"];
|
||||
}
|
||||
set
|
||||
{
|
||||
ViewState["MaintenanceId"] = value;
|
||||
}
|
||||
}
|
||||
#endregion
|
||||
|
||||
#region 加载页面
|
||||
/// <summary>
|
||||
/// 加载页面
|
||||
|
|
@ -23,7 +41,7 @@ namespace FineUIPro.Web.JGZL
|
|||
{
|
||||
if (!IsPostBack)
|
||||
{
|
||||
this.ddlPageSize.SelectedValue = this.Grid1.PageSize.ToString();
|
||||
//this.ddlPageSize.SelectedValue = this.Grid1.PageSize.ToString();
|
||||
|
||||
this.drpProjectId.DataTextField = "ProjectCode";
|
||||
this.drpProjectId.DataValueField = "ProjectId";
|
||||
|
|
@ -34,11 +52,154 @@ namespace FineUIPro.Web.JGZL
|
|||
this.drpProjectId.SelectedValue = this.CurrUser.LoginProjectId;
|
||||
this.InitTreeMenu();//加载树
|
||||
this.tvControlItem.SelectedNodeID = this.drpProjectId.SelectedValue;
|
||||
this.BindGrid();
|
||||
//this.BindGrid();
|
||||
PageData();
|
||||
}
|
||||
}
|
||||
#endregion
|
||||
|
||||
private void PageData()
|
||||
{
|
||||
string projectId = this.tvControlItem.SelectedNodeID;
|
||||
if (!string.IsNullOrEmpty(projectId))
|
||||
{
|
||||
var pro = BLL.Base_ProjectService.GetProjectByProjectId(projectId);
|
||||
if (pro != null)
|
||||
{
|
||||
var report = BLL.SpecialEquipmentMaintenanceService.GetSpecialEquipmentMaintenanceByProjectId(projectId);
|
||||
if (report != null)
|
||||
{
|
||||
this.MaintenanceId = report.MaintenanceId;
|
||||
if (!string.IsNullOrEmpty(report.MaintenanceCode))
|
||||
{
|
||||
this.txtMaintenanceCode.Text = report.MaintenanceCode;
|
||||
}
|
||||
else
|
||||
{
|
||||
this.txtMaintenanceCode.Text = "0XXX-91330921MA2A2R3F6G-2026";
|
||||
}
|
||||
if (!string.IsNullOrEmpty(report.ConUnit))
|
||||
{
|
||||
this.txtConUnit.Text = report.ConUnit;
|
||||
}
|
||||
else
|
||||
{
|
||||
this.txtConUnit.Text = "浙江鼎盛石化工程有限公司";
|
||||
}
|
||||
if (!string.IsNullOrEmpty(report.EquipmentName))
|
||||
{
|
||||
this.txtEquipmentName.Text = report.EquipmentName;
|
||||
}
|
||||
else
|
||||
{
|
||||
this.txtEquipmentName.Text = "压力管道(" + pro.ProjectName + ")";
|
||||
}
|
||||
this.txtEquipmentModel.Text = report.EquipmentModel;
|
||||
if (!string.IsNullOrEmpty(report.EquipmentCode))
|
||||
{
|
||||
this.txtEquipmentCode.Text = report.EquipmentCode;
|
||||
}
|
||||
else
|
||||
{
|
||||
this.txtEquipmentCode.Text = "/";
|
||||
}
|
||||
if (!string.IsNullOrEmpty(report.ManufacturingNumber))
|
||||
{
|
||||
this.txtManufacturingNumber.Text = report.ManufacturingNumber;
|
||||
}
|
||||
else
|
||||
{
|
||||
this.txtManufacturingNumber.Text = "/";
|
||||
}
|
||||
if (!string.IsNullOrEmpty(report.ManufacturingUnit))
|
||||
{
|
||||
this.txtManufacturingUnit.Text = report.ManufacturingUnit;
|
||||
}
|
||||
else
|
||||
{
|
||||
this.txtManufacturingUnit.Text = "/";
|
||||
}
|
||||
if (!string.IsNullOrEmpty(report.ManufacturingLicenseNumber))
|
||||
{
|
||||
this.txtManufacturingLicenseNumber.Text = report.ManufacturingLicenseNumber;
|
||||
}
|
||||
else
|
||||
{
|
||||
this.txtManufacturingLicenseNumber.Text = "/";
|
||||
}
|
||||
if (!string.IsNullOrEmpty(report.EquipmentLocation))
|
||||
{
|
||||
this.txtEquipmentLocation.Text = report.EquipmentLocation;
|
||||
}
|
||||
else
|
||||
{
|
||||
this.txtEquipmentLocation.Text = pro.ProjectName;
|
||||
}
|
||||
this.txtConstructionDate.Text = report.ConstructionDate.HasValue ? string.Format("{0:yyyy-MM-dd}", report.ConstructionDate) : string.Format("{0:yyyy-MM-dd}", pro.StartDate);
|
||||
this.drpConstructionCategory.SelectedValue = report.ConstructionCategory;
|
||||
if (!string.IsNullOrEmpty(report.LicenseNumber))
|
||||
{
|
||||
this.txtLicenseNumber.Text = report.LicenseNumber;
|
||||
}
|
||||
else
|
||||
{
|
||||
this.txtLicenseNumber.Text = "TS3833339-2028";
|
||||
}
|
||||
this.txtLicenseValidityDate.Text = report.LicenseValidityDate.HasValue ? string.Format("{0:yyyy-MM-dd}", report.LicenseValidityDate) : string.Format("{0:yyyy-MM-dd}", "2028-8-20");
|
||||
this.txtConContactMan.Text = report.ConContactMan;
|
||||
this.txtConTelephone.Text = report.ConTelephone;
|
||||
this.txtConFax.Text = report.ConFax;
|
||||
if (!string.IsNullOrEmpty(report.ConAddress))
|
||||
{
|
||||
this.txtConAddress.Text = report.ConAddress;
|
||||
}
|
||||
else
|
||||
{
|
||||
this.txtConAddress.Text = "浙江省舟山市岱山县经济技术开发区徐福大道988号810室(岱西片区)";
|
||||
}
|
||||
this.txtConEmail.Text = report.ConEmail;
|
||||
if (!string.IsNullOrEmpty(report.UseUnit))
|
||||
{
|
||||
this.txtUseUnit.Text = report.UseUnit;
|
||||
}
|
||||
else
|
||||
{
|
||||
this.txtUseUnit.Text = "浙江石油化工有限公司";
|
||||
}
|
||||
this.txtUseContactMan.Text = report.UseContactMan;
|
||||
this.txtUseTelephone.Text = report.UseTelephone;
|
||||
this.txtUseFax.Text = report.UseFax;
|
||||
if (!string.IsNullOrEmpty(report.UseAddress))
|
||||
{
|
||||
this.txtUseAddress.Text = report.UseAddress;
|
||||
}
|
||||
else
|
||||
{
|
||||
this.txtUseAddress.Text = "浙江省舟山市定海区临城街道翁山路555号大宗商品交易中心5201室(自贸试验区内)";
|
||||
}
|
||||
this.txtUseEmail.Text = report.UseEmail;
|
||||
}
|
||||
else
|
||||
{
|
||||
this.txtMaintenanceCode.Text = "0XXX-91330921MA2A2R3F6G-2026";
|
||||
this.txtConUnit.Text = "浙江鼎盛石化工程有限公司";
|
||||
this.txtEquipmentCode.Text = "/";
|
||||
this.txtManufacturingNumber.Text = "/";
|
||||
this.txtManufacturingUnit.Text = "/";
|
||||
this.txtManufacturingLicenseNumber.Text = "/";
|
||||
this.txtEquipmentName.Text = "压力管道(" + pro.ProjectName + ")";
|
||||
this.txtEquipmentLocation.Text = pro.ProjectName;
|
||||
this.txtConstructionDate.Text = pro.StartDate.HasValue ? string.Format("{0:yyyy-MM-dd}", pro.StartDate) : "";
|
||||
this.txtLicenseNumber.Text = "TS3833339-2028";
|
||||
this.txtLicenseValidityDate.Text = string.Format("{0:yyyy-MM-dd}", "2028-8-20");
|
||||
this.txtConAddress.Text = "浙江省舟山市岱山县经济技术开发区徐福大道988号810室(岱西片区)";
|
||||
this.txtUseUnit.Text = "浙江石油化工有限公司";
|
||||
this.txtUseAddress.Text = "浙江省舟山市定海区临城街道翁山路555号大宗商品交易中心5201室(自贸试验区内)";
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
#region 加载树项目
|
||||
/// <summary>
|
||||
/// 加载树
|
||||
|
|
@ -82,7 +243,8 @@ namespace FineUIPro.Web.JGZL
|
|||
{
|
||||
if (this.tvControlItem.SelectedNodeID != "0")
|
||||
{
|
||||
this.BindGrid();
|
||||
this.PageData();
|
||||
//this.BindGrid();
|
||||
}
|
||||
}
|
||||
#endregion
|
||||
|
|
@ -91,30 +253,30 @@ namespace FineUIPro.Web.JGZL
|
|||
/// <summary>
|
||||
/// 数据绑定
|
||||
/// </summary>
|
||||
private void BindGrid()
|
||||
{
|
||||
//string projectIds = BLL.Base_ProjectService.GetStrOnProjectIds(this.CurrUser.UserId, "1");
|
||||
string strSql = @"SELECT * from JGZL_SpecialEquipmentMaintenance where 1=1";
|
||||
List<SqlParameter> listStr = new List<SqlParameter>();
|
||||
if (!string.IsNullOrEmpty(this.tvControlItem.SelectedNodeID))
|
||||
{
|
||||
strSql += " AND ProjectId = @ProjectId";
|
||||
listStr.Add(new SqlParameter("@ProjectId", this.tvControlItem.SelectedNodeID));
|
||||
}
|
||||
//else
|
||||
//{
|
||||
// strSql += " AND CHARINDEX(ProjectId,@ProjectId)>0 ";
|
||||
// listStr.Add(new SqlParameter("@ProjectId", projectIds));
|
||||
//}
|
||||
SqlParameter[] parameter = listStr.ToArray();
|
||||
DataTable tb = SQLHelper.GetDataTableRunText(strSql, parameter);
|
||||
// 2.获取当前分页数据
|
||||
Grid1.RecordCount = tb.Rows.Count;
|
||||
//tb = GetFilteredTable(Grid1.FilteredData, tb);
|
||||
var table = this.GetPagedDataTable(Grid1, tb);
|
||||
Grid1.DataSource = table;
|
||||
Grid1.DataBind();
|
||||
}
|
||||
//private void BindGrid()
|
||||
//{
|
||||
// //string projectIds = BLL.Base_ProjectService.GetStrOnProjectIds(this.CurrUser.UserId, "1");
|
||||
// string strSql = @"SELECT * from JGZL_SpecialEquipmentMaintenance where 1=1";
|
||||
// List<SqlParameter> listStr = new List<SqlParameter>();
|
||||
// if (!string.IsNullOrEmpty(this.tvControlItem.SelectedNodeID))
|
||||
// {
|
||||
// strSql += " AND ProjectId = @ProjectId";
|
||||
// listStr.Add(new SqlParameter("@ProjectId", this.tvControlItem.SelectedNodeID));
|
||||
// }
|
||||
// //else
|
||||
// //{
|
||||
// // strSql += " AND CHARINDEX(ProjectId,@ProjectId)>0 ";
|
||||
// // listStr.Add(new SqlParameter("@ProjectId", projectIds));
|
||||
// //}
|
||||
// SqlParameter[] parameter = listStr.ToArray();
|
||||
// DataTable tb = SQLHelper.GetDataTableRunText(strSql, parameter);
|
||||
// // 2.获取当前分页数据
|
||||
// Grid1.RecordCount = tb.Rows.Count;
|
||||
// //tb = GetFilteredTable(Grid1.FilteredData, tb);
|
||||
// var table = this.GetPagedDataTable(Grid1, tb);
|
||||
// Grid1.DataSource = table;
|
||||
// Grid1.DataBind();
|
||||
//}
|
||||
#endregion
|
||||
|
||||
#region 分页排序
|
||||
|
|
@ -124,10 +286,10 @@ namespace FineUIPro.Web.JGZL
|
|||
/// </summary>
|
||||
/// <param name="sender"></param>
|
||||
/// <param name="e"></param>
|
||||
protected void Grid1_PageIndexChange(object sender, GridPageEventArgs e)
|
||||
{
|
||||
BindGrid();
|
||||
}
|
||||
//protected void Grid1_PageIndexChange(object sender, GridPageEventArgs e)
|
||||
//{
|
||||
// BindGrid();
|
||||
//}
|
||||
#endregion
|
||||
|
||||
#region 排序
|
||||
|
|
@ -136,10 +298,10 @@ namespace FineUIPro.Web.JGZL
|
|||
/// </summary>
|
||||
/// <param name="sender"></param>
|
||||
/// <param name="e"></param>
|
||||
protected void Grid1_Sort(object sender, GridSortEventArgs e)
|
||||
{
|
||||
BindGrid();
|
||||
}
|
||||
//protected void Grid1_Sort(object sender, GridSortEventArgs e)
|
||||
//{
|
||||
// BindGrid();
|
||||
//}
|
||||
#endregion
|
||||
|
||||
#region 分页选择下拉改变事件
|
||||
|
|
@ -148,11 +310,11 @@ namespace FineUIPro.Web.JGZL
|
|||
/// </summary>
|
||||
/// <param name="sender"></param>
|
||||
/// <param name="e"></param>
|
||||
protected void ddlPageSize_SelectedIndexChanged(object sender, EventArgs e)
|
||||
{
|
||||
Grid1.PageSize = Convert.ToInt32(ddlPageSize.SelectedValue);
|
||||
BindGrid();
|
||||
}
|
||||
//protected void ddlPageSize_SelectedIndexChanged(object sender, EventArgs e)
|
||||
//{
|
||||
// Grid1.PageSize = Convert.ToInt32(ddlPageSize.SelectedValue);
|
||||
// BindGrid();
|
||||
//}
|
||||
#endregion
|
||||
#endregion
|
||||
|
||||
|
|
@ -164,7 +326,9 @@ namespace FineUIPro.Web.JGZL
|
|||
///<param name="e"></param>
|
||||
protected void drpProjectId_SelectedIndexChanged(object sender, EventArgs e)
|
||||
{
|
||||
this.tvControlItem.SelectedNodeID = this.drpProjectId.SelectedValue;
|
||||
this.InitTreeMenu();
|
||||
PageData();
|
||||
}
|
||||
|
||||
/// <summary>
|
||||
|
|
@ -174,7 +338,7 @@ namespace FineUIPro.Web.JGZL
|
|||
/// <param name="e"></param>
|
||||
protected void TextBox_TextChanged(object sender, EventArgs e)
|
||||
{
|
||||
this.BindGrid();
|
||||
//this.BindGrid();
|
||||
}
|
||||
#endregion
|
||||
|
||||
|
|
@ -186,88 +350,88 @@ namespace FineUIPro.Web.JGZL
|
|||
/// <param name="e"></param>
|
||||
protected void btnPrint_Click(object sender, EventArgs e)
|
||||
{
|
||||
string id = this.Grid1.SelectedRowID;
|
||||
if (!string.IsNullOrEmpty(id))
|
||||
string projectId = this.tvControlItem.SelectedNodeID;
|
||||
if (!string.IsNullOrEmpty(projectId))
|
||||
{
|
||||
string initTemplatePath = "";
|
||||
string rootPath = Server.MapPath("~/");
|
||||
BLL.Common.FastReportService.ResetData();
|
||||
|
||||
var specialEquipmentMaintenance = BLL.SpecialEquipmentMaintenanceService.GetSpecialEquipmentMaintenance(id);
|
||||
if (specialEquipmentMaintenance != null)
|
||||
//var specialEquipmentMaintenance = BLL.SpecialEquipmentMaintenanceService.GetSpecialEquipmentMaintenanceByProjectId(projectId);
|
||||
//if (specialEquipmentMaintenance != null)
|
||||
//{
|
||||
DataTable dt = new DataTable();
|
||||
dt.TableName = "Data";
|
||||
dt.Columns.Add("MaintenanceCode");
|
||||
dt.Columns.Add("ConUnit");
|
||||
dt.Columns.Add("EquipmentName");
|
||||
dt.Columns.Add("EquipmentModel");
|
||||
dt.Columns.Add("EquipmentCode");
|
||||
dt.Columns.Add("ManufacturingNumber");
|
||||
dt.Columns.Add("ManufacturingUnit");
|
||||
dt.Columns.Add("ManufacturingLicenseNumber");
|
||||
dt.Columns.Add("EquipmentLocation");
|
||||
dt.Columns.Add("ConstructionDate");
|
||||
dt.Columns.Add("ConstructionCategory");
|
||||
dt.Columns.Add("LicenseNumber");
|
||||
dt.Columns.Add("LicenseValidityDate");
|
||||
dt.Columns.Add("ConContactMan");
|
||||
dt.Columns.Add("ConTelephone");
|
||||
dt.Columns.Add("ConFax");
|
||||
dt.Columns.Add("ConAddress");
|
||||
dt.Columns.Add("ConEmail");
|
||||
dt.Columns.Add("UseUnit");
|
||||
dt.Columns.Add("UseContactMan");
|
||||
dt.Columns.Add("UseTelephone");
|
||||
dt.Columns.Add("UseFax");
|
||||
dt.Columns.Add("UseAddress");
|
||||
dt.Columns.Add("UseEmail");
|
||||
|
||||
var newRow = dt.NewRow();
|
||||
newRow["MaintenanceCode"] = this.txtMaintenanceCode.Text;
|
||||
newRow["ConUnit"] = this.txtConUnit.Text;
|
||||
newRow["EquipmentName"] = this.txtEquipmentName.Text;
|
||||
newRow["EquipmentModel"] = this.txtEquipmentModel.Text;
|
||||
newRow["EquipmentCode"] = this.txtEquipmentCode.Text;
|
||||
newRow["ManufacturingNumber"] = this.txtManufacturingNumber.Text;
|
||||
newRow["ManufacturingUnit"] = this.txtManufacturingUnit.Text;
|
||||
newRow["ManufacturingLicenseNumber"] = this.txtManufacturingLicenseNumber.Text;
|
||||
newRow["EquipmentLocation"] = this.txtEquipmentLocation.Text;
|
||||
string constructionDate = string.Format("{0:yyyy年MM月dd}", this.txtConstructionDate.Text);
|
||||
newRow["ConstructionDate"] = constructionDate;
|
||||
newRow["ConstructionCategory"] = this.drpConstructionCategory.SelectedText;
|
||||
newRow["LicenseNumber"] = this.txtLicenseNumber.Text;
|
||||
string licenseValidityDate = string.Format("{0:yyyy年MM月dd}", this.txtLicenseValidityDate.Text);
|
||||
newRow["LicenseValidityDate"] = licenseValidityDate;
|
||||
newRow["ConContactMan"] = this.txtConContactMan.Text;
|
||||
newRow["ConTelephone"] = this.txtConTelephone.Text;
|
||||
newRow["ConFax"] = this.txtConFax.Text;
|
||||
newRow["ConAddress"] = this.txtConAddress.Text;
|
||||
newRow["ConEmail"] = this.txtConEmail.Text;
|
||||
newRow["UseUnit"] = this.txtUseUnit.Text;
|
||||
newRow["UseContactMan"] = this.txtUseContactMan.Text;
|
||||
newRow["UseTelephone"] = this.txtUseTelephone.Text;
|
||||
newRow["UseFax"] = this.txtUseFax.Text;
|
||||
newRow["UseAddress"] = this.txtUseAddress.Text;
|
||||
newRow["UseEmail"] = this.txtUseEmail.Text;
|
||||
|
||||
dt.Rows.Add(newRow);
|
||||
BLL.Common.FastReportService.AddFastreportTable(dt);
|
||||
|
||||
Dictionary<string, string> keyValuePairs = new Dictionary<string, string>();
|
||||
//keyValuePairs.Add("ProjectName", BLL.Base_ProjectService.GetProjectByProjectId(projectId).ProjectName);
|
||||
BLL.Common.FastReportService.AddFastreportParameter(keyValuePairs);
|
||||
|
||||
initTemplatePath = "File\\Fastreport\\JGZL\\特种设备安装改造维修告知书.frx";
|
||||
if (File.Exists(rootPath + initTemplatePath))
|
||||
{
|
||||
DataTable dt = new DataTable();
|
||||
dt.TableName = "Data";
|
||||
dt.Columns.Add("MaintenanceCode");
|
||||
dt.Columns.Add("ConUnit");
|
||||
dt.Columns.Add("EquipmentName");
|
||||
dt.Columns.Add("EquipmentModel");
|
||||
dt.Columns.Add("EquipmentCode");
|
||||
dt.Columns.Add("ManufacturingNumber");
|
||||
dt.Columns.Add("ManufacturingUnit");
|
||||
dt.Columns.Add("ManufacturingLicenseNumber");
|
||||
dt.Columns.Add("EquipmentLocation");
|
||||
dt.Columns.Add("ConstructionDate");
|
||||
dt.Columns.Add("ConstructionCategory");
|
||||
dt.Columns.Add("LicenseNumber");
|
||||
dt.Columns.Add("LicenseValidityDate");
|
||||
dt.Columns.Add("ConContactMan");
|
||||
dt.Columns.Add("ConTelephone");
|
||||
dt.Columns.Add("ConFax");
|
||||
dt.Columns.Add("ConAddress");
|
||||
dt.Columns.Add("ConEmail");
|
||||
dt.Columns.Add("UseUnit");
|
||||
dt.Columns.Add("UseContactMan");
|
||||
dt.Columns.Add("UseTelephone");
|
||||
dt.Columns.Add("UseFax");
|
||||
dt.Columns.Add("UseAddress");
|
||||
dt.Columns.Add("UseEmail");
|
||||
|
||||
var newRow = dt.NewRow();
|
||||
newRow["MaintenanceCode"] = specialEquipmentMaintenance.MaintenanceCode;
|
||||
newRow["ConUnit"] = specialEquipmentMaintenance.ConUnit;
|
||||
newRow["EquipmentName"] = specialEquipmentMaintenance.EquipmentName;
|
||||
newRow["EquipmentModel"] = specialEquipmentMaintenance.EquipmentModel;
|
||||
newRow["EquipmentCode"] = specialEquipmentMaintenance.EquipmentCode;
|
||||
newRow["ManufacturingNumber"] = specialEquipmentMaintenance.ManufacturingNumber;
|
||||
newRow["ManufacturingUnit"] = specialEquipmentMaintenance.ManufacturingUnit;
|
||||
newRow["ManufacturingLicenseNumber"] = specialEquipmentMaintenance.ManufacturingLicenseNumber;
|
||||
newRow["EquipmentLocation"] = specialEquipmentMaintenance.EquipmentLocation;
|
||||
string constructionDate = string.Format("{0:yyyy年MM月dd}", specialEquipmentMaintenance.ConstructionDate);
|
||||
newRow["ConstructionDate"] = constructionDate;
|
||||
newRow["ConstructionCategory"] = specialEquipmentMaintenance.ConstructionCategory;
|
||||
newRow["LicenseNumber"] = specialEquipmentMaintenance.LicenseNumber;
|
||||
string licenseValidityDate = string.Format("{0:yyyy年MM月dd}", specialEquipmentMaintenance.LicenseValidityDate);
|
||||
newRow["LicenseValidityDate"] = licenseValidityDate;
|
||||
newRow["ConContactMan"] = specialEquipmentMaintenance.ConContactMan;
|
||||
newRow["ConTelephone"] = specialEquipmentMaintenance.ConTelephone;
|
||||
newRow["ConFax"] = specialEquipmentMaintenance.ConFax;
|
||||
newRow["ConAddress"] = specialEquipmentMaintenance.ConAddress;
|
||||
newRow["ConEmail"] = specialEquipmentMaintenance.ConEmail;
|
||||
newRow["UseUnit"] = specialEquipmentMaintenance.UseUnit;
|
||||
newRow["UseContactMan"] = specialEquipmentMaintenance.UseContactMan;
|
||||
newRow["UseTelephone"] = specialEquipmentMaintenance.UseTelephone;
|
||||
newRow["UseFax"] = specialEquipmentMaintenance.UseFax;
|
||||
newRow["UseAddress"] = specialEquipmentMaintenance.UseAddress;
|
||||
newRow["UseEmail"] = specialEquipmentMaintenance.UseEmail;
|
||||
|
||||
dt.Rows.Add(newRow);
|
||||
BLL.Common.FastReportService.AddFastreportTable(dt);
|
||||
|
||||
Dictionary<string, string> keyValuePairs = new Dictionary<string, string>();
|
||||
//keyValuePairs.Add("ProjectName", BLL.Base_ProjectService.GetProjectByProjectId(projectId).ProjectName);
|
||||
BLL.Common.FastReportService.AddFastreportParameter(keyValuePairs);
|
||||
|
||||
initTemplatePath = "File\\Fastreport\\JGZL\\特种设备安装改造维修告知书.frx";
|
||||
if (File.Exists(rootPath + initTemplatePath))
|
||||
{
|
||||
PageContext.RegisterStartupScript(WindowPrint.GetShowReference(String.Format("../common/ReportPrint/Fastreport.aspx?ReportPath={0}", rootPath + initTemplatePath)));
|
||||
}
|
||||
PageContext.RegisterStartupScript(WindowPrint.GetShowReference(String.Format("../common/ReportPrint/Fastreport.aspx?ReportPath={0}", rootPath + initTemplatePath)));
|
||||
}
|
||||
//}
|
||||
}
|
||||
else
|
||||
{
|
||||
Alert.ShowInTop("请选择一条记录!", MessageBoxIcon.Warning);
|
||||
Alert.ShowInTop("请选择项目!", MessageBoxIcon.Warning);
|
||||
return;
|
||||
}
|
||||
}
|
||||
|
|
@ -279,139 +443,139 @@ namespace FineUIPro.Web.JGZL
|
|||
/// </summary>
|
||||
/// <param name="sender"></param>
|
||||
/// <param name="e"></param>
|
||||
protected void btnAdd_Click(object sender, EventArgs e)
|
||||
{
|
||||
if (!string.IsNullOrEmpty(this.tvControlItem.SelectedNodeID))
|
||||
{
|
||||
PageContext.RegisterStartupScript(Window1.GetShowReference(String.Format("SpecialEquipmentMaintenanceEdit.aspx?projectId={0}", this.tvControlItem.SelectedNodeID, "新增 - ")));
|
||||
}
|
||||
else
|
||||
{
|
||||
Alert.ShowInTop("请选择项目!", MessageBoxIcon.Warning);
|
||||
return;
|
||||
}
|
||||
}
|
||||
//protected void btnAdd_Click(object sender, EventArgs e)
|
||||
//{
|
||||
// if (!string.IsNullOrEmpty(this.tvControlItem.SelectedNodeID))
|
||||
// {
|
||||
// PageContext.RegisterStartupScript(Window1.GetShowReference(String.Format("SpecialEquipmentMaintenanceEdit.aspx?projectId={0}", this.tvControlItem.SelectedNodeID, "新增 - ")));
|
||||
// }
|
||||
// else
|
||||
// {
|
||||
// Alert.ShowInTop("请选择项目!", MessageBoxIcon.Warning);
|
||||
// return;
|
||||
// }
|
||||
//}
|
||||
|
||||
/// <summary>
|
||||
/// 双击编辑
|
||||
/// </summary>
|
||||
/// <param name="sender"></param>
|
||||
/// <param name="e"></param>
|
||||
protected void Grid1_RowDoubleClick(object sender, GridRowClickEventArgs e)
|
||||
{
|
||||
if (BLL.CommonService.GetAllButtonPowerList(this.CurrUser.LoginProjectId, this.CurrUser.UserId, BLL.Const.JGZL_SpecialEquipmentMaintenanceMenuId, BLL.Const.BtnModify))
|
||||
{
|
||||
if (!string.IsNullOrEmpty(this.tvControlItem.SelectedNodeID))
|
||||
{
|
||||
if (!string.IsNullOrEmpty(this.Grid1.SelectedRowID))
|
||||
{
|
||||
PageContext.RegisterStartupScript(Window1.GetShowReference(String.Format("SpecialEquipmentMaintenanceEdit.aspx?maintenanceId={0}", this.Grid1.SelectedRowID, "编辑 - ")));
|
||||
}
|
||||
else
|
||||
{
|
||||
Alert.ShowInTop("请选择一条记录!", MessageBoxIcon.Warning);
|
||||
return;
|
||||
}
|
||||
}
|
||||
else
|
||||
{
|
||||
Alert.ShowInTop("请选择项目!", MessageBoxIcon.Warning);
|
||||
return;
|
||||
}
|
||||
}
|
||||
else
|
||||
{
|
||||
ShowNotify("您没有这个权限,请与管理员联系!", MessageBoxIcon.Warning);
|
||||
}
|
||||
}
|
||||
//protected void Grid1_RowDoubleClick(object sender, GridRowClickEventArgs e)
|
||||
//{
|
||||
// if (BLL.CommonService.GetAllButtonPowerList(this.CurrUser.LoginProjectId, this.CurrUser.UserId, BLL.Const.JGZL_SpecialEquipmentMaintenanceMenuId, BLL.Const.BtnModify))
|
||||
// {
|
||||
// if (!string.IsNullOrEmpty(this.tvControlItem.SelectedNodeID))
|
||||
// {
|
||||
// if (!string.IsNullOrEmpty(this.Grid1.SelectedRowID))
|
||||
// {
|
||||
// PageContext.RegisterStartupScript(Window1.GetShowReference(String.Format("SpecialEquipmentMaintenanceEdit.aspx?maintenanceId={0}", this.Grid1.SelectedRowID, "编辑 - ")));
|
||||
// }
|
||||
// else
|
||||
// {
|
||||
// Alert.ShowInTop("请选择一条记录!", MessageBoxIcon.Warning);
|
||||
// return;
|
||||
// }
|
||||
// }
|
||||
// else
|
||||
// {
|
||||
// Alert.ShowInTop("请选择项目!", MessageBoxIcon.Warning);
|
||||
// return;
|
||||
// }
|
||||
// }
|
||||
// else
|
||||
// {
|
||||
// ShowNotify("您没有这个权限,请与管理员联系!", MessageBoxIcon.Warning);
|
||||
// }
|
||||
//}
|
||||
|
||||
/// <summary>
|
||||
/// 右键编辑
|
||||
/// </summary>
|
||||
/// <param name="sender"></param>
|
||||
/// <param name="e"></param>
|
||||
protected void btnMenuEdit_Click(object sender, EventArgs e)
|
||||
{
|
||||
if (BLL.CommonService.GetAllButtonPowerList(this.CurrUser.LoginProjectId, this.CurrUser.UserId, BLL.Const.JGZL_SpecialEquipmentMaintenanceMenuId, BLL.Const.BtnModify))
|
||||
{
|
||||
if (Grid1.SelectedRowIndexArray.Length == 0)
|
||||
{
|
||||
Alert.ShowInTop("请选择一条记录!", MessageBoxIcon.Warning);
|
||||
return;
|
||||
}
|
||||
PageContext.RegisterStartupScript(Window1.GetShowReference(String.Format("SpecialEquipmentMaintenanceEdit.aspx?maintenanceId={0}", Grid1.SelectedRowID, "维护 - ")));
|
||||
}
|
||||
else
|
||||
{
|
||||
Alert.ShowInTop("您没有这个权限,请与管理员联系!", MessageBoxIcon.Warning);
|
||||
}
|
||||
}
|
||||
//protected void btnMenuEdit_Click(object sender, EventArgs e)
|
||||
//{
|
||||
// if (BLL.CommonService.GetAllButtonPowerList(this.CurrUser.LoginProjectId, this.CurrUser.UserId, BLL.Const.JGZL_SpecialEquipmentMaintenanceMenuId, BLL.Const.BtnModify))
|
||||
// {
|
||||
// if (Grid1.SelectedRowIndexArray.Length == 0)
|
||||
// {
|
||||
// Alert.ShowInTop("请选择一条记录!", MessageBoxIcon.Warning);
|
||||
// return;
|
||||
// }
|
||||
// PageContext.RegisterStartupScript(Window1.GetShowReference(String.Format("SpecialEquipmentMaintenanceEdit.aspx?maintenanceId={0}", Grid1.SelectedRowID, "维护 - ")));
|
||||
// }
|
||||
// else
|
||||
// {
|
||||
// Alert.ShowInTop("您没有这个权限,请与管理员联系!", MessageBoxIcon.Warning);
|
||||
// }
|
||||
//}
|
||||
|
||||
/// <summary>
|
||||
/// 右键删除
|
||||
/// </summary>
|
||||
/// <param name="sender"></param>
|
||||
/// <param name="e"></param>
|
||||
protected void btnMenuDelete_Click(object sender, EventArgs e)
|
||||
{
|
||||
if (CommonService.GetAllButtonPowerList(this.CurrUser.LoginProjectId, this.CurrUser.UserId, Const.JGZL_SpecialEquipmentMaintenanceMenuId, Const.BtnDelete))
|
||||
{
|
||||
if (Grid1.SelectedRowIndexArray.Length == 0)
|
||||
{
|
||||
Alert.ShowInTop("请选择一条记录!", MessageBoxIcon.Warning);
|
||||
return;
|
||||
}
|
||||
//protected void btnMenuDelete_Click(object sender, EventArgs e)
|
||||
//{
|
||||
// if (CommonService.GetAllButtonPowerList(this.CurrUser.LoginProjectId, this.CurrUser.UserId, Const.JGZL_SpecialEquipmentMaintenanceMenuId, Const.BtnDelete))
|
||||
// {
|
||||
// if (Grid1.SelectedRowIndexArray.Length == 0)
|
||||
// {
|
||||
// Alert.ShowInTop("请选择一条记录!", MessageBoxIcon.Warning);
|
||||
// return;
|
||||
// }
|
||||
|
||||
bool isShow = true;
|
||||
if (Grid1.SelectedRowIndexArray.Length > 1)
|
||||
{
|
||||
isShow = false;
|
||||
}
|
||||
bool isDelete = false;
|
||||
foreach (int rowIndex in Grid1.SelectedRowIndexArray)
|
||||
{
|
||||
string rowID = Grid1.DataKeys[rowIndex][0].ToString();
|
||||
if (judgementDelete(rowID, isShow))
|
||||
{
|
||||
isDelete = true;
|
||||
BLL.SpecialEquipmentMaintenanceService.DeleteSpecialEquipmentMaintenanceById(rowID);
|
||||
BLL.Sys_LogService.AddLog(BLL.Const.System_3, this.CurrUser.LoginProjectId, this.CurrUser.UserId, "删除特种设备安装改造维修告知书");
|
||||
}
|
||||
}
|
||||
if (isDelete)
|
||||
{
|
||||
ShowNotify("删除成功!", MessageBoxIcon.Success);
|
||||
}
|
||||
this.BindGrid();
|
||||
}
|
||||
else
|
||||
{
|
||||
Alert.ShowInTop("您没有这个权限,请与管理员联系!", MessageBoxIcon.Warning);
|
||||
}
|
||||
}
|
||||
// bool isShow = true;
|
||||
// if (Grid1.SelectedRowIndexArray.Length > 1)
|
||||
// {
|
||||
// isShow = false;
|
||||
// }
|
||||
// bool isDelete = false;
|
||||
// foreach (int rowIndex in Grid1.SelectedRowIndexArray)
|
||||
// {
|
||||
// string rowID = Grid1.DataKeys[rowIndex][0].ToString();
|
||||
// if (judgementDelete(rowID, isShow))
|
||||
// {
|
||||
// isDelete = true;
|
||||
// BLL.SpecialEquipmentMaintenanceService.DeleteSpecialEquipmentMaintenanceById(rowID);
|
||||
// BLL.Sys_LogService.AddLog(BLL.Const.System_3, this.CurrUser.LoginProjectId, this.CurrUser.UserId, "删除特种设备安装改造维修告知书");
|
||||
// }
|
||||
// }
|
||||
// if (isDelete)
|
||||
// {
|
||||
// ShowNotify("删除成功!", MessageBoxIcon.Success);
|
||||
// }
|
||||
// this.BindGrid();
|
||||
// }
|
||||
// else
|
||||
// {
|
||||
// Alert.ShowInTop("您没有这个权限,请与管理员联系!", MessageBoxIcon.Warning);
|
||||
// }
|
||||
//}
|
||||
|
||||
#region 判断是否可删除
|
||||
/// <summary>
|
||||
/// 判断是否可以删除
|
||||
/// </summary>
|
||||
/// <returns></returns>
|
||||
private bool judgementDelete(string id, bool isShow)
|
||||
{
|
||||
string content = string.Empty;
|
||||
//private bool judgementDelete(string id, bool isShow)
|
||||
//{
|
||||
// string content = string.Empty;
|
||||
|
||||
if (string.IsNullOrEmpty(content))
|
||||
{
|
||||
return true;
|
||||
}
|
||||
else
|
||||
{
|
||||
if (isShow)
|
||||
{
|
||||
Alert.ShowInTop(content, MessageBoxIcon.Error);
|
||||
}
|
||||
return false;
|
||||
}
|
||||
}
|
||||
// if (string.IsNullOrEmpty(content))
|
||||
// {
|
||||
// return true;
|
||||
// }
|
||||
// else
|
||||
// {
|
||||
// if (isShow)
|
||||
// {
|
||||
// Alert.ShowInTop(content, MessageBoxIcon.Error);
|
||||
// }
|
||||
// return false;
|
||||
// }
|
||||
//}
|
||||
#endregion
|
||||
#endregion
|
||||
|
||||
|
|
@ -421,10 +585,80 @@ namespace FineUIPro.Web.JGZL
|
|||
/// </summary>
|
||||
/// <param name="sender"></param>
|
||||
/// <param name="e"></param>
|
||||
protected void Window1_Close(object sender, WindowCloseEventArgs e)
|
||||
//protected void Window1_Close(object sender, WindowCloseEventArgs e)
|
||||
//{
|
||||
// this.InitTreeMenu();//加载树
|
||||
// this.BindGrid();
|
||||
//}
|
||||
#endregion
|
||||
|
||||
#region 提交按钮
|
||||
/// <summary>
|
||||
/// 提交按钮
|
||||
/// </summary>
|
||||
/// <param name="sender"></param>
|
||||
/// <param name="e"></param>
|
||||
protected void btnSave_Click(object sender, EventArgs e)
|
||||
{
|
||||
this.InitTreeMenu();//加载树
|
||||
this.BindGrid();
|
||||
if (CommonService.GetAllButtonPowerList(this.CurrUser.LoginProjectId, this.CurrUser.UserId, Const.JGZL_SpecialEquipmentMaintenanceMenuId, Const.BtnSave))
|
||||
{
|
||||
string projectId = this.tvControlItem.SelectedNodeID;
|
||||
if (!string.IsNullOrEmpty(projectId))
|
||||
{
|
||||
Model.JGZL_SpecialEquipmentMaintenance newReport = new Model.JGZL_SpecialEquipmentMaintenance();
|
||||
newReport.MaintenanceCode = this.txtMaintenanceCode.Text.Trim();
|
||||
newReport.ConUnit = this.txtConUnit.Text.Trim();
|
||||
newReport.EquipmentName = this.txtEquipmentName.Text.Trim();
|
||||
newReport.EquipmentModel = this.txtEquipmentModel.Text.Trim();
|
||||
newReport.EquipmentCode = this.txtEquipmentCode.Text.Trim();
|
||||
newReport.ManufacturingNumber = this.txtManufacturingNumber.Text.Trim();
|
||||
newReport.ManufacturingUnit = this.txtManufacturingUnit.Text.Trim();
|
||||
newReport.ManufacturingLicenseNumber = this.txtManufacturingLicenseNumber.Text.Trim();
|
||||
newReport.EquipmentLocation = this.txtEquipmentLocation.Text.Trim();
|
||||
newReport.ConstructionDate = Funs.GetNewDateTime(this.txtConstructionDate.Text.Trim());
|
||||
newReport.ConstructionCategory = this.drpConstructionCategory.SelectedValue;
|
||||
newReport.LicenseNumber = this.txtLicenseNumber.Text.Trim();
|
||||
newReport.LicenseValidityDate = Funs.GetNewDateTime(this.txtLicenseValidityDate.Text);
|
||||
newReport.ConContactMan = this.txtConContactMan.Text.Trim();
|
||||
newReport.ConTelephone = this.txtConTelephone.Text.Trim();
|
||||
newReport.ConFax = this.txtConFax.Text.Trim();
|
||||
newReport.ConAddress = this.txtConAddress.Text.Trim();
|
||||
newReport.ConEmail = this.txtConEmail.Text.Trim();
|
||||
newReport.UseUnit = this.txtUseUnit.Text.Trim();
|
||||
newReport.UseContactMan = this.txtUseContactMan.Text.Trim();
|
||||
newReport.UseTelephone = this.txtUseTelephone.Text.Trim();
|
||||
newReport.UseFax = this.txtUseFax.Text.Trim();
|
||||
newReport.UseAddress = this.txtUseAddress.Text.Trim();
|
||||
newReport.UseEmail = this.txtUseEmail.Text.Trim();
|
||||
|
||||
if (!string.IsNullOrEmpty(this.MaintenanceId))
|
||||
{
|
||||
newReport.MaintenanceId = this.MaintenanceId;
|
||||
BLL.SpecialEquipmentMaintenanceService.UpdateSpecialEquipmentMaintenance(newReport);
|
||||
}
|
||||
else
|
||||
{
|
||||
newReport.ProjectId = projectId;
|
||||
newReport.CompileMan = this.CurrUser.UserId;
|
||||
newReport.CompileDate = DateTime.Now;
|
||||
newReport.MaintenanceId = SQLHelper.GetNewID(typeof(Model.JGZL_SpecialEquipmentMaintenance));
|
||||
this.MaintenanceId = newReport.MaintenanceId;
|
||||
BLL.SpecialEquipmentMaintenanceService.AddSpecialEquipmentMaintenance(newReport);
|
||||
}
|
||||
ShowNotify("保存成功!", MessageBoxIcon.Success);
|
||||
//PageContext.RegisterStartupScript(ActiveWindow.GetHidePostBackReference());
|
||||
}
|
||||
else
|
||||
{
|
||||
Alert.ShowInTop("请选择项目!", MessageBoxIcon.Warning);
|
||||
return;
|
||||
}
|
||||
}
|
||||
else
|
||||
{
|
||||
Alert.ShowInTop("您没有这个权限,请与管理员联系!", MessageBoxIcon.Warning);
|
||||
return;
|
||||
}
|
||||
}
|
||||
#endregion
|
||||
}
|
||||
|
|
|
|||
|
|
@ -105,13 +105,13 @@ namespace FineUIPro.Web.JGZL
|
|||
protected global::FineUIPro.ToolbarFill ToolbarFill1;
|
||||
|
||||
/// <summary>
|
||||
/// btnAdd 控件。
|
||||
/// btnSave 控件。
|
||||
/// </summary>
|
||||
/// <remarks>
|
||||
/// 自动生成的字段。
|
||||
/// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。
|
||||
/// </remarks>
|
||||
protected global::FineUIPro.Button btnAdd;
|
||||
protected global::FineUIPro.Button btnSave;
|
||||
|
||||
/// <summary>
|
||||
/// btnPrint 控件。
|
||||
|
|
@ -123,49 +123,229 @@ namespace FineUIPro.Web.JGZL
|
|||
protected global::FineUIPro.Button btnPrint;
|
||||
|
||||
/// <summary>
|
||||
/// Grid1 控件。
|
||||
/// SimpleForm1 控件。
|
||||
/// </summary>
|
||||
/// <remarks>
|
||||
/// 自动生成的字段。
|
||||
/// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。
|
||||
/// </remarks>
|
||||
protected global::FineUIPro.Grid Grid1;
|
||||
protected global::FineUIPro.Form SimpleForm1;
|
||||
|
||||
/// <summary>
|
||||
/// ToolbarSeparator1 控件。
|
||||
/// txtConUnit 控件。
|
||||
/// </summary>
|
||||
/// <remarks>
|
||||
/// 自动生成的字段。
|
||||
/// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。
|
||||
/// </remarks>
|
||||
protected global::FineUIPro.ToolbarSeparator ToolbarSeparator1;
|
||||
protected global::FineUIPro.TextBox txtConUnit;
|
||||
|
||||
/// <summary>
|
||||
/// ToolbarText1 控件。
|
||||
/// txtMaintenanceCode 控件。
|
||||
/// </summary>
|
||||
/// <remarks>
|
||||
/// 自动生成的字段。
|
||||
/// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。
|
||||
/// </remarks>
|
||||
protected global::FineUIPro.ToolbarText ToolbarText1;
|
||||
protected global::FineUIPro.TextBox txtMaintenanceCode;
|
||||
|
||||
/// <summary>
|
||||
/// ddlPageSize 控件。
|
||||
/// txtEquipmentName 控件。
|
||||
/// </summary>
|
||||
/// <remarks>
|
||||
/// 自动生成的字段。
|
||||
/// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。
|
||||
/// </remarks>
|
||||
protected global::FineUIPro.DropDownList ddlPageSize;
|
||||
protected global::FineUIPro.TextBox txtEquipmentName;
|
||||
|
||||
/// <summary>
|
||||
/// Window1 控件。
|
||||
/// txtEquipmentModel 控件。
|
||||
/// </summary>
|
||||
/// <remarks>
|
||||
/// 自动生成的字段。
|
||||
/// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。
|
||||
/// </remarks>
|
||||
protected global::FineUIPro.Window Window1;
|
||||
protected global::FineUIPro.TextBox txtEquipmentModel;
|
||||
|
||||
/// <summary>
|
||||
/// txtEquipmentCode 控件。
|
||||
/// </summary>
|
||||
/// <remarks>
|
||||
/// 自动生成的字段。
|
||||
/// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。
|
||||
/// </remarks>
|
||||
protected global::FineUIPro.TextBox txtEquipmentCode;
|
||||
|
||||
/// <summary>
|
||||
/// txtManufacturingNumber 控件。
|
||||
/// </summary>
|
||||
/// <remarks>
|
||||
/// 自动生成的字段。
|
||||
/// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。
|
||||
/// </remarks>
|
||||
protected global::FineUIPro.TextBox txtManufacturingNumber;
|
||||
|
||||
/// <summary>
|
||||
/// txtManufacturingUnit 控件。
|
||||
/// </summary>
|
||||
/// <remarks>
|
||||
/// 自动生成的字段。
|
||||
/// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。
|
||||
/// </remarks>
|
||||
protected global::FineUIPro.TextBox txtManufacturingUnit;
|
||||
|
||||
/// <summary>
|
||||
/// txtManufacturingLicenseNumber 控件。
|
||||
/// </summary>
|
||||
/// <remarks>
|
||||
/// 自动生成的字段。
|
||||
/// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。
|
||||
/// </remarks>
|
||||
protected global::FineUIPro.TextBox txtManufacturingLicenseNumber;
|
||||
|
||||
/// <summary>
|
||||
/// txtEquipmentLocation 控件。
|
||||
/// </summary>
|
||||
/// <remarks>
|
||||
/// 自动生成的字段。
|
||||
/// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。
|
||||
/// </remarks>
|
||||
protected global::FineUIPro.TextBox txtEquipmentLocation;
|
||||
|
||||
/// <summary>
|
||||
/// txtConstructionDate 控件。
|
||||
/// </summary>
|
||||
/// <remarks>
|
||||
/// 自动生成的字段。
|
||||
/// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。
|
||||
/// </remarks>
|
||||
protected global::FineUIPro.DatePicker txtConstructionDate;
|
||||
|
||||
/// <summary>
|
||||
/// drpConstructionCategory 控件。
|
||||
/// </summary>
|
||||
/// <remarks>
|
||||
/// 自动生成的字段。
|
||||
/// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。
|
||||
/// </remarks>
|
||||
protected global::FineUIPro.DropDownList drpConstructionCategory;
|
||||
|
||||
/// <summary>
|
||||
/// txtLicenseNumber 控件。
|
||||
/// </summary>
|
||||
/// <remarks>
|
||||
/// 自动生成的字段。
|
||||
/// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。
|
||||
/// </remarks>
|
||||
protected global::FineUIPro.TextBox txtLicenseNumber;
|
||||
|
||||
/// <summary>
|
||||
/// txtLicenseValidityDate 控件。
|
||||
/// </summary>
|
||||
/// <remarks>
|
||||
/// 自动生成的字段。
|
||||
/// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。
|
||||
/// </remarks>
|
||||
protected global::FineUIPro.DatePicker txtLicenseValidityDate;
|
||||
|
||||
/// <summary>
|
||||
/// txtConContactMan 控件。
|
||||
/// </summary>
|
||||
/// <remarks>
|
||||
/// 自动生成的字段。
|
||||
/// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。
|
||||
/// </remarks>
|
||||
protected global::FineUIPro.TextBox txtConContactMan;
|
||||
|
||||
/// <summary>
|
||||
/// txtConTelephone 控件。
|
||||
/// </summary>
|
||||
/// <remarks>
|
||||
/// 自动生成的字段。
|
||||
/// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。
|
||||
/// </remarks>
|
||||
protected global::FineUIPro.TextBox txtConTelephone;
|
||||
|
||||
/// <summary>
|
||||
/// txtConFax 控件。
|
||||
/// </summary>
|
||||
/// <remarks>
|
||||
/// 自动生成的字段。
|
||||
/// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。
|
||||
/// </remarks>
|
||||
protected global::FineUIPro.TextBox txtConFax;
|
||||
|
||||
/// <summary>
|
||||
/// txtConAddress 控件。
|
||||
/// </summary>
|
||||
/// <remarks>
|
||||
/// 自动生成的字段。
|
||||
/// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。
|
||||
/// </remarks>
|
||||
protected global::FineUIPro.TextBox txtConAddress;
|
||||
|
||||
/// <summary>
|
||||
/// txtConEmail 控件。
|
||||
/// </summary>
|
||||
/// <remarks>
|
||||
/// 自动生成的字段。
|
||||
/// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。
|
||||
/// </remarks>
|
||||
protected global::FineUIPro.TextBox txtConEmail;
|
||||
|
||||
/// <summary>
|
||||
/// txtUseUnit 控件。
|
||||
/// </summary>
|
||||
/// <remarks>
|
||||
/// 自动生成的字段。
|
||||
/// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。
|
||||
/// </remarks>
|
||||
protected global::FineUIPro.TextBox txtUseUnit;
|
||||
|
||||
/// <summary>
|
||||
/// txtUseContactMan 控件。
|
||||
/// </summary>
|
||||
/// <remarks>
|
||||
/// 自动生成的字段。
|
||||
/// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。
|
||||
/// </remarks>
|
||||
protected global::FineUIPro.TextBox txtUseContactMan;
|
||||
|
||||
/// <summary>
|
||||
/// txtUseTelephone 控件。
|
||||
/// </summary>
|
||||
/// <remarks>
|
||||
/// 自动生成的字段。
|
||||
/// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。
|
||||
/// </remarks>
|
||||
protected global::FineUIPro.TextBox txtUseTelephone;
|
||||
|
||||
/// <summary>
|
||||
/// txtUseFax 控件。
|
||||
/// </summary>
|
||||
/// <remarks>
|
||||
/// 自动生成的字段。
|
||||
/// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。
|
||||
/// </remarks>
|
||||
protected global::FineUIPro.TextBox txtUseFax;
|
||||
|
||||
/// <summary>
|
||||
/// txtUseAddress 控件。
|
||||
/// </summary>
|
||||
/// <remarks>
|
||||
/// 自动生成的字段。
|
||||
/// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。
|
||||
/// </remarks>
|
||||
protected global::FineUIPro.TextBox txtUseAddress;
|
||||
|
||||
/// <summary>
|
||||
/// txtUseEmail 控件。
|
||||
/// </summary>
|
||||
/// <remarks>
|
||||
/// 自动生成的字段。
|
||||
/// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。
|
||||
/// </remarks>
|
||||
protected global::FineUIPro.TextBox txtUseEmail;
|
||||
|
||||
/// <summary>
|
||||
/// WindowPrint 控件。
|
||||
|
|
@ -175,32 +355,5 @@ namespace FineUIPro.Web.JGZL
|
|||
/// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。
|
||||
/// </remarks>
|
||||
protected global::FineUIPro.Window WindowPrint;
|
||||
|
||||
/// <summary>
|
||||
/// Menu1 控件。
|
||||
/// </summary>
|
||||
/// <remarks>
|
||||
/// 自动生成的字段。
|
||||
/// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。
|
||||
/// </remarks>
|
||||
protected global::FineUIPro.Menu Menu1;
|
||||
|
||||
/// <summary>
|
||||
/// btnMenuEdit 控件。
|
||||
/// </summary>
|
||||
/// <remarks>
|
||||
/// 自动生成的字段。
|
||||
/// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。
|
||||
/// </remarks>
|
||||
protected global::FineUIPro.MenuButton btnMenuEdit;
|
||||
|
||||
/// <summary>
|
||||
/// btnMenuDelete 控件。
|
||||
/// </summary>
|
||||
/// <remarks>
|
||||
/// 自动生成的字段。
|
||||
/// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。
|
||||
/// </remarks>
|
||||
protected global::FineUIPro.MenuButton btnMenuDelete;
|
||||
}
|
||||
}
|
||||
|
|
|
|||
|
|
@ -175,6 +175,7 @@ namespace FineUIPro.Web.JGZL
|
|||
protected void drpProjectId_SelectedIndexChanged(object sender, EventArgs e)
|
||||
{
|
||||
this.InitTreeMenu();
|
||||
this.BindGrid();
|
||||
}
|
||||
|
||||
/// <summary>
|
||||
|
|
|
|||
|
|
@ -215,6 +215,7 @@ namespace FineUIPro.Web.JGZL
|
|||
protected void drpProjectId_SelectedIndexChanged(object sender, EventArgs e)
|
||||
{
|
||||
this.InitTreeMenu();
|
||||
this.BindGrid();
|
||||
}
|
||||
|
||||
/// <summary>
|
||||
|
|
|
|||
|
|
@ -225,6 +225,7 @@ namespace FineUIPro.Web.JGZL
|
|||
protected void drpProjectId_SelectedIndexChanged(object sender, EventArgs e)
|
||||
{
|
||||
this.InitTreeMenu();
|
||||
this.BindGrid();
|
||||
}
|
||||
#endregion
|
||||
|
||||
|
|
|
|||
|
|
@ -171,6 +171,7 @@ namespace FineUIPro.Web.JGZL
|
|||
protected void drpProjectId_SelectedIndexChanged(object sender, EventArgs e)
|
||||
{
|
||||
this.InitTreeMenu();
|
||||
this.BindGrid();
|
||||
}
|
||||
|
||||
/// <summary>
|
||||
|
|
|
|||
|
|
@ -194,6 +194,7 @@ namespace FineUIPro.Web.JGZL
|
|||
protected void drpProjectId_SelectedIndexChanged(object sender, EventArgs e)
|
||||
{
|
||||
this.InitTreeMenu();
|
||||
this.BindGrid();
|
||||
}
|
||||
|
||||
/// <summary>
|
||||
|
|
|
|||
|
|
@ -83974,6 +83974,12 @@ namespace Model
|
|||
|
||||
private System.Nullable<System.DateTime> _ReviewDate;
|
||||
|
||||
private string _CompilationBasis;
|
||||
|
||||
private string _MainContent;
|
||||
|
||||
private string _CopiesNum;
|
||||
|
||||
private EntityRef<Base_Project> _Base_Project;
|
||||
|
||||
private EntityRef<Sys_User> _Sys_User;
|
||||
|
|
@ -84006,6 +84012,12 @@ namespace Model
|
|||
partial void OnReviewerChanged();
|
||||
partial void OnReviewDateChanging(System.Nullable<System.DateTime> value);
|
||||
partial void OnReviewDateChanged();
|
||||
partial void OnCompilationBasisChanging(string value);
|
||||
partial void OnCompilationBasisChanged();
|
||||
partial void OnMainContentChanging(string value);
|
||||
partial void OnMainContentChanged();
|
||||
partial void OnCopiesNumChanging(string value);
|
||||
partial void OnCopiesNumChanged();
|
||||
#endregion
|
||||
|
||||
public JGZL_DocumentDescription()
|
||||
|
|
@ -84248,6 +84260,66 @@ namespace Model
|
|||
}
|
||||
}
|
||||
|
||||
[global::System.Data.Linq.Mapping.ColumnAttribute(Storage="_CompilationBasis", DbType="NVarChar(1000)")]
|
||||
public string CompilationBasis
|
||||
{
|
||||
get
|
||||
{
|
||||
return this._CompilationBasis;
|
||||
}
|
||||
set
|
||||
{
|
||||
if ((this._CompilationBasis != value))
|
||||
{
|
||||
this.OnCompilationBasisChanging(value);
|
||||
this.SendPropertyChanging();
|
||||
this._CompilationBasis = value;
|
||||
this.SendPropertyChanged("CompilationBasis");
|
||||
this.OnCompilationBasisChanged();
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
[global::System.Data.Linq.Mapping.ColumnAttribute(Storage="_MainContent", DbType="NVarChar(500)")]
|
||||
public string MainContent
|
||||
{
|
||||
get
|
||||
{
|
||||
return this._MainContent;
|
||||
}
|
||||
set
|
||||
{
|
||||
if ((this._MainContent != value))
|
||||
{
|
||||
this.OnMainContentChanging(value);
|
||||
this.SendPropertyChanging();
|
||||
this._MainContent = value;
|
||||
this.SendPropertyChanged("MainContent");
|
||||
this.OnMainContentChanged();
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
[global::System.Data.Linq.Mapping.ColumnAttribute(Storage="_CopiesNum", DbType="NVarChar(500)")]
|
||||
public string CopiesNum
|
||||
{
|
||||
get
|
||||
{
|
||||
return this._CopiesNum;
|
||||
}
|
||||
set
|
||||
{
|
||||
if ((this._CopiesNum != value))
|
||||
{
|
||||
this.OnCopiesNumChanging(value);
|
||||
this.SendPropertyChanging();
|
||||
this._CopiesNum = value;
|
||||
this.SendPropertyChanged("CopiesNum");
|
||||
this.OnCopiesNumChanged();
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
[global::System.Data.Linq.Mapping.AssociationAttribute(Name="FK_JGZL_DocumentDescription_Base_Project", Storage="_Base_Project", ThisKey="ProjectId", OtherKey="ProjectId", IsForeignKey=true)]
|
||||
public Base_Project Base_Project
|
||||
{
|
||||
|
|
|
|||
Loading…
Reference in New Issue