202306131、新增项目级消息待办页面功能。2、新增项目单位是否同步实名制设置功能。3、优化考试合格自动生成卡号功能。
This commit is contained in:
@@ -448,7 +448,7 @@ namespace FineUIPro.Web.ZHGL.RealName
|
||||
join persons in Funs.DB.Person_Persons on x.PersonId equals persons.PersonId
|
||||
join v in Funs.DB.ProjectData_TeamGroup on x.TeamGroupId equals v.TeamGroupId
|
||||
join p in Funs.DB.Project_ProjectUnit on new { x.UnitId, x.ProjectId } equals new { p.UnitId, p.ProjectId }
|
||||
where x.ProjectId == projectId
|
||||
where x.ProjectId == projectId && p.IsSynchro == true
|
||||
&& persons.IsCardNoOK == true
|
||||
&& v.TeamId.HasValue && persons.HeadImage != null && persons.HeadImage.Length > 0
|
||||
&& !x.RealNameAddTime.HasValue
|
||||
@@ -495,7 +495,7 @@ namespace FineUIPro.Web.ZHGL.RealName
|
||||
var getIdentityCards = (from x in Funs.DB.SitePerson_Person
|
||||
join v in Funs.DB.ProjectData_TeamGroup on x.TeamGroupId equals v.TeamGroupId
|
||||
join p in Funs.DB.Project_ProjectUnit on new { x.UnitId, x.ProjectId } equals new { p.UnitId, p.ProjectId }
|
||||
where x.ProjectId == projectId && v.TeamId.HasValue
|
||||
where x.ProjectId == projectId && v.TeamId.HasValue && p.IsSynchro == true
|
||||
&& !x.RealNameUpdateTime.HasValue
|
||||
//&& x.RealNameAddTime.HasValue
|
||||
&& p.UnitType != Const.ProjectUnitType_3 && p.UnitType != Const.ProjectUnitType_4
|
||||
|
||||
Reference in New Issue
Block a user