共检
This commit is contained in:
@@ -164,7 +164,7 @@ namespace BLL
|
||||
{
|
||||
return (from x in db.ProcessControl_InspectionManagementDetail
|
||||
join y in db.ProcessControl_InspectionManagement on x.InspectionId equals y.InspectionId
|
||||
where x.InspectionId == InspectionId && y.IsOnceQualified == true
|
||||
where x.InspectionId == InspectionId && (y.IsOnceQualified == null || y.IsOnceQualified == true)
|
||||
select x).ToList();
|
||||
}
|
||||
}
|
||||
@@ -174,7 +174,7 @@ namespace BLL
|
||||
{
|
||||
return (from x in db.ProcessControl_InspectionManagementDetail
|
||||
join y in db.ProcessControl_InspectionManagement on x.InspectionId equals y.InspectionId
|
||||
where x.InspectionId == InspectionId && y.IsOnceQualified == true
|
||||
where x.InspectionId == InspectionId && (y.IsOnceQualified == null || y.IsOnceQualified == true)
|
||||
select x).ToList();
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user