提交代码

This commit is contained in:
2024-01-31 16:32:26 +08:00
parent 5c58e948ef
commit df9bf75f24
7 changed files with 222 additions and 9 deletions
@@ -100,7 +100,7 @@ namespace FineUIPro.Web.common
//质量培训人员
DateTime date = DateTime.Now.AddDays(-1);
int CqmsPxNum = (from x in Funs.DB.Comprehensive_InspectionPerson
where x.IsTrain == true && x.CompileDate.Value.Year == date.Year && x.CompileDate.Value.Month == date.Month && x.CompileDate.Value.Day == date.Day
where x.IsTrain == true && x.ProjectId == ProjectId
select x).Count();
divCqmsPxNum.InnerHtml = CqmsPxNum.ToString();