Explorar el Código

推送消息 添加会议记录人

临城职教中职
ndbs hace 2 años
padre
commit
85f7902d3c
Se han modificado 1 ficheros con 11 adiciones y 0 borrados
  1. +11
    -0
      Learun.Framework.Ultimate V7/Learun.Framework.Module/Learun.Application.Module/Learun.Application.TwoDevelopment/PersonnelManagement/MeetingManagement/MeetingManagementService.cs

+ 11
- 0
Learun.Framework.Ultimate V7/Learun.Framework.Module/Learun.Application.Module/Learun.Application.TwoDevelopment/PersonnelManagement/MeetingManagement/MeetingManagementService.cs Ver fichero

@@ -487,6 +487,17 @@ namespace Learun.Application.TwoDevelopment.PersonnelManagement
userInfos.Add(user);
}
}
if (!string.IsNullOrEmpty(Received.RecordPerson))
{
foreach (var rid in Received.RecordPerson.Split(','))
{
var user = this.BaseRepository().FindEntity<UserEntity>(m => m.F_UserId == rid);
if (!userInfos.Contains(user))
{
userInfos.Add(user);
}
}
}
//foreach (var uitem in userInfos)
//{
// SYS_ReceiveMessageEntity receiveMessageEntity = new SYS_ReceiveMessageEntity();


Cargando…
Cancelar
Guardar