项目推送集团过滤已删除的项目数据

This commit is contained in:
夏菊 2025-04-18 15:02:43 +08:00
parent bf14c58571
commit c31c5d1097
1 changed files with 1 additions and 1 deletions

View File

@ -7196,7 +7196,7 @@
{
//查询所有在建项目
var upReport = (from x in db.Base_Project
where (x.ProjectState == "1" || x.ProjectState == null)
where (x.ProjectState == "1" || x.ProjectState == null) && (x.IsDelete == null || x.IsDelete == false)
select new Model.BaseProjectItem
{
ProjectId = x.ProjectId,