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

This commit is contained in:
2025-04-18 15:00:27 +08:00
parent 4751353221
commit f7d2f3b990
+1 -1
View File
@@ -3532,7 +3532,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,