20250613 试压包

This commit is contained in:
2025-06-13 10:54:16 +08:00
parent eef442181b
commit d22783f08f
11 changed files with 1534 additions and 2 deletions
@@ -0,0 +1,26 @@
CREATE VIEW View_TestPackage_PipelineList
as
/*********ÊÔѹ°üÃ÷ϸ**********/
select l.PT_PipeId,
l.PTP_ID,
l.PipelineId,
l.TestPressure,
t.ProjectId,
t.TestPackageNo,
t.TestPackageName,
t.Remark,
t.UnitWorkId,
t.Tabler,
t.TableDate,
p.PipelineCode,
uw.UnitWorkCode,
uw.UnitWorkName,
uw.UnitId,
u.UnitCode,
u.UnitName
from PTP_PipelineList l
left join PTP_TestPackage as t on t.PTP_ID=l.PTP_ID
left join HJGL_Pipeline p on p.PipelineId = l.PipelineId
left join WBS_UnitWork uw on uw.UnitWorkId = t.UnitWorkId
left join Base_Unit u on u.UnitId =uw.UnitId
go