This commit is contained in:
jackchenyang 2024-05-13 09:07:36 +08:00
parent 6cd0f1e90e
commit 8e6df2317d
1 changed files with 20 additions and 0 deletions

View File

@ -255,6 +255,24 @@ GO
/*******PMI委托明细视图***********/
USE [HJGLDB_ZJBSF]
GO
/****** Object: View [dbo].[View_PMI_DelegationDetails] Script Date: 2024-5-13 9:06:44 ******/
SET ANSI_NULLS ON
GO
SET QUOTED_IDENTIFIER ON
GO
ALTER VIEW [dbo].[View_PMI_DelegationDetails]
AS
/********热处理明细********/
@ -269,6 +287,7 @@ TrustItem.PMIId,
Trust.ProjectId,
Trust.DelegationNo,
Trust.DelegationDate,
ISNULL(TrustItem.reportNo,Trust.DelegationNo) as reportNo,
WeldJoint.WeldJointCode,
Pipeline.PipelineCode,
WeldJoint.Specification,
@ -287,3 +306,4 @@ GO