项目推送集团过滤已删除的项目数据
This commit is contained in:
parent
bf14c58571
commit
c31c5d1097
|
@ -7196,7 +7196,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