完善PC待办功能

This commit is contained in:
2023-08-17 09:39:51 +08:00
parent 12b9eaae63
commit c8d6ac780a
12 changed files with 1361 additions and 171 deletions
+1 -1
View File
@@ -1298,7 +1298,7 @@ namespace BLL
list = (from x in db.Sys_User
join y in db.Project_ProjectUser on x.UserId equals y.UserId
join z in db.Project_ProjectUnit on x.UnitId equals z.UnitId
where y.ProjectId == projectId && z.ProjectId == projectId && z.UnitType == unitType
where y.ProjectId == projectId && z.ProjectId == projectId && (z.UnitType == unitType || string.IsNullOrEmpty(unitType))
&& y.IsPost == true
orderby x.UserName
select x).ToList();