项目看板资质预警逻辑优化
This commit is contained in:
parent
a92df1a682
commit
b785ed0e86
|
@ -505,7 +505,7 @@ namespace FineUIPro.Web.common
|
||||||
int allCount = 0;
|
int allCount = 0;
|
||||||
var getPersonQualitys = from x in Funs.DB.QualityAudit_PersonQuality
|
var getPersonQualitys = from x in Funs.DB.QualityAudit_PersonQuality
|
||||||
join y in Funs.DB.SitePerson_Person on x.PersonId equals y.PersonId
|
join y in Funs.DB.SitePerson_Person on x.PersonId equals y.PersonId
|
||||||
where x.LimitDate.HasValue && x.LimitDate < DateTime.Now && y.ProjectId == ProjectId
|
where x.LimitDate.HasValue && x.LimitDate < DateTime.Now && y.ProjectId == ProjectId && y.OutTime == null
|
||||||
select x;
|
select x;
|
||||||
//// 预警人数
|
//// 预警人数
|
||||||
allCount = getPersonQualitys.Count();
|
allCount = getPersonQualitys.Count();
|
||||||
|
|
Loading…
Reference in New Issue