项目推送集团过滤已删除的项目数据
This commit is contained in:
@@ -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,
|
||||||
|
|||||||
Reference in New Issue
Block a user