From 91c9a697ea7c254e9d904520c496e10cc76ba68d Mon Sep 17 00:00:00 2001 From: wendy <408182087@qq.com> Date: Tue, 8 Sep 2026 11:38:00 +0800 Subject: [PATCH] =?UTF-8?q?20260908=20=E5=B7=A5=E4=B8=9A=E7=AE=A1=E9=81=93?= =?UTF-8?q?=E5=AE=89=E8=A3=85=E6=B1=87=E6=80=BB?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../Fastreport/JGZL/压力管道安装质量证明.frx | 28 +++++++++---------- .../File/Fastreport/JGZL/工程交工验收证书.frx | 6 ++-- .../FineUIPro.Web/FineUIPro.Web.csproj.user | 2 +- ...ustrialPipelineInstallationSummary.aspx.cs | 11 +++++--- HJGL_DS/WebAPI/WebAPI.csproj.user | 2 +- 5 files changed, 26 insertions(+), 23 deletions(-) diff --git a/HJGL_DS/FineUIPro.Web/File/Fastreport/JGZL/压力管道安装质量证明.frx b/HJGL_DS/FineUIPro.Web/File/Fastreport/JGZL/压力管道安装质量证明.frx index f238465..467c6d2 100644 --- a/HJGL_DS/FineUIPro.Web/File/Fastreport/JGZL/压力管道安装质量证明.frx +++ b/HJGL_DS/FineUIPro.Web/File/Fastreport/JGZL/压力管道安装质量证明.frx @@ -1,7 +1,7 @@  - + - + @@ -25,13 +25,13 @@ - + - + @@ -95,15 +95,15 @@ - - - - - + + + + + - + @@ -115,15 +115,15 @@ - - + + - - + + diff --git a/HJGL_DS/FineUIPro.Web/File/Fastreport/JGZL/工程交工验收证书.frx b/HJGL_DS/FineUIPro.Web/File/Fastreport/JGZL/工程交工验收证书.frx index d75e8f7..e6585ed 100644 --- a/HJGL_DS/FineUIPro.Web/File/Fastreport/JGZL/工程交工验收证书.frx +++ b/HJGL_DS/FineUIPro.Web/File/Fastreport/JGZL/工程交工验收证书.frx @@ -1,5 +1,5 @@  - + using System; using System.Collections; using System.Collections.Generic; @@ -32,7 +32,7 @@ namespace FastReport - + @@ -42,7 +42,7 @@ namespace FastReport - + diff --git a/HJGL_DS/FineUIPro.Web/FineUIPro.Web.csproj.user b/HJGL_DS/FineUIPro.Web/FineUIPro.Web.csproj.user index 80f7761..e3436b8 100644 --- a/HJGL_DS/FineUIPro.Web/FineUIPro.Web.csproj.user +++ b/HJGL_DS/FineUIPro.Web/FineUIPro.Web.csproj.user @@ -1,4 +1,4 @@ - + true diff --git a/HJGL_DS/FineUIPro.Web/JGZL/IndustrialPipelineInstallationSummary.aspx.cs b/HJGL_DS/FineUIPro.Web/JGZL/IndustrialPipelineInstallationSummary.aspx.cs index 3e34091..7ec5b71 100644 --- a/HJGL_DS/FineUIPro.Web/JGZL/IndustrialPipelineInstallationSummary.aspx.cs +++ b/HJGL_DS/FineUIPro.Web/JGZL/IndustrialPipelineInstallationSummary.aspx.cs @@ -124,14 +124,17 @@ namespace FineUIPro.Web.JGZL Model.JGZL_IndustrialPipelineInstallationSummary newSummary = new JGZL_IndustrialPipelineInstallationSummary(); newSummary.SummaryId = SQLHelper.GetNewID(typeof(Model.JGZL_IndustrialPipelineInstallationSummary)); newSummary.ProjectId = this.tvControlItem.SelectedNodeID; - newSummary.CertificateId = this.drpCertificateCode.SelectedValue; + if (!string.IsNullOrEmpty(this.drpCertificateCode.SelectedValue)) + { + newSummary.CertificateId = this.drpCertificateCode.SelectedValue; + } newSummary.PipelineCode = item.ISO_IsoNo; if (!string.IsNullOrEmpty(item.ISC_ID)) { newSummary.PipelineLevel = BLL.HJGL_PipingClassService.GetPipingClassByPipingClassId(item.ISC_ID).ISC_IsoName; } - newSummary.DesignPressure = item.ISO_DesignPress.Value.ToString("#.00"); - newSummary.DesignTemperature = item.ISO_DesignTemperature.Value.ToString("#.00"); + newSummary.DesignPressure = item.ISO_DesignPress.HasValue ? item.ISO_DesignPress.Value.ToString("#.00") : ""; + newSummary.DesignTemperature = item.ISO_DesignTemperature.HasValue ? item.ISO_DesignTemperature.Value.ToString("#.00") : ""; if (!string.IsNullOrEmpty(item.SER_ID)) { newSummary.Medium = BLL.HJGL_MediumService.GetServiceBySERID(item.SER_ID).SER_Name; @@ -145,7 +148,7 @@ namespace FineUIPro.Web.JGZL { newSummary.Specifications = jointInfo.JOT_JointDesc; } - newSummary.Length = item.PipeLineLength.Value.ToString("#.00"); + newSummary.Length = item.PipeLineLength.HasValue ? item.PipeLineLength.Value.ToString("#.00") : ""; newSummary.WeldsNum = BLL.HJGL_PW_JointInfoService.GetJointCountByIsoId(item.ISO_ID).ToString(); if (!string.IsNullOrEmpty(item.Joty_B_Rate)) { diff --git a/HJGL_DS/WebAPI/WebAPI.csproj.user b/HJGL_DS/WebAPI/WebAPI.csproj.user index 28be9c4..8cd7f1f 100644 --- a/HJGL_DS/WebAPI/WebAPI.csproj.user +++ b/HJGL_DS/WebAPI/WebAPI.csproj.user @@ -1,4 +1,4 @@ - + Release|Any CPU