1112
This commit is contained in:
@@ -31,4 +31,36 @@ update Pipeline_WeldJoint set isPMI=0
|
||||
-- 插入PMI委托菜单
|
||||
insert into Sys_Menu values('A6FB44C3-0920-4F77-862F-D814FD5E5D23','PMI检测管理','PMI detection management','',21,0,3,NUll,1)
|
||||
insert into Sys_Menu values(NEWID(),'PMI委托','PMI delegation','/WeldingProcess/PMI/PMIDelegation.aspx',0,'A6FB44C3-0920-4F77-862F-D814FD5E5D23',3,NULL,1)
|
||||
insert into Sys_Menu values(NEWID(),'PMI检测录入','PMI detection entry','/WeldingProcess/PMI/PMIDetectionEntry.aspx',0,'A6FB44C3-0920-4F77-862F-D814FD5E5D23',3,NULL,1)
|
||||
insert into Sys_Menu values(NEWID(),'PMI检测录入','PMI detection entry','/WeldingProcess/PMI/PMIDetectionEntry.aspx',0,'A6FB44C3-0920-4F77-862F-D814FD5E5D23',3,NULL,1)
|
||||
|
||||
|
||||
|
||||
CREATE VIEW [dbo].[View_PMI_DelegationDetails]
|
||||
AS
|
||||
/*******硬度委托明细***********/
|
||||
SELECT
|
||||
B.PMIId,
|
||||
B.JointId,
|
||||
B.QualityNo,
|
||||
B.Acceptance,
|
||||
B.CreatedTime,
|
||||
B.status,
|
||||
Pipeline.PipelineCode,
|
||||
WeldJoint.WeldJointCode,
|
||||
WeldJoint.Specification,
|
||||
WeldJoint.Remark,
|
||||
Pipeline.SingleNumber,
|
||||
(CASE WHEN WeldJoint.CoverWelderCode IS NOT NULL AND WeldJoint.BackingWelderCode IS NOT NULL
|
||||
THEN WeldJoint.CoverWelderCode + '/' + WeldJoint.BackingWelderCode
|
||||
ELSE (ISNULL(WeldJoint.CoverWelderCode,'') + ISNULL(WeldJoint.BackingWelderCode,'')) END) AS WelderCode, --焊工
|
||||
(CASE WHEN WeldJoint.Material1Code IS NOT NULL AND WeldJoint.Material2Code IS NOT NULL
|
||||
THEN WeldJoint.Material1Code + '/' + WeldJoint.Material2Code
|
||||
ELSE (ISNULL(WeldJoint.Material1Code,'') + ISNULL(WeldJoint.Material2Code,'')) END) AS MaterialCode --材质
|
||||
FROM PMI_Delegation AS A INNER JOIN
|
||||
PMI_DelegationDetails AS B ON A.Id=B.PMIId
|
||||
LEFT JOIN View_Pipeline_WeldJoint AS WeldJoint ON WeldJoint.WeldJointId=B.JointId
|
||||
LEFT JOIN Pipeline_Pipeline AS Pipeline ON Pipeline.PipelineId=WeldJoint.PipelineId
|
||||
|
||||
GO
|
||||
|
||||
|
||||
|
||||
Reference in New Issue
Block a user