提交代码

This commit is contained in:
2023-11-24 12:11:42 +08:00
parent 31d0b92b8f
commit 98701b3991
3 changed files with 5 additions and 5 deletions
+1 -1
View File
@@ -10,7 +10,7 @@ CREATE PROC [dbo].[sp_rpt_CheckResult]
AS
/*检测结果汇总*/
select unit.UnitName,jot.WeldJointCode,detectionType.DetectionTypeCode,ndeItem.TotalFilm,ndeItem.PassFilm,
select ndeItem.NDEItemID,unit.UnitName,jot.WeldJointCode,detectionType.DetectionTypeCode,ndeItem.TotalFilm,ndeItem.PassFilm,
case ndeItem.CheckResult when '1' then '合格' else '不合格' end as CheckResult,pipeline.FlowingSection
from HJGL_Batch_NDEItem ndeItem
LEFT JOIN dbo.Base_DetectionType detectionType ON detectionType.DetectionTypeId = ndeItem.DetectionTypeId