项目推送集团过滤已删除的项目数据
This commit is contained in:
parent
4751353221
commit
f7d2f3b990
|
@ -3532,7 +3532,7 @@
|
||||||
{
|
{
|
||||||
//查询所有在建项目
|
//查询所有在建项目
|
||||||
var upReport = (from x in db.Base_Project
|
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
|
select new Model.BaseProjectItem
|
||||||
{
|
{
|
||||||
ProjectId = x.ProjectId,
|
ProjectId = x.ProjectId,
|
||||||
|
|
Loading…
Reference in New Issue