Ver código fonte

推送消息 添加会议记录人

临城职教中职
ndbs 2 anos atrás
pai
commit
85f7902d3c
1 arquivos alterados com 11 adições e 0 exclusões
  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 arquivo

@@ -487,6 +487,17 @@ namespace Learun.Application.TwoDevelopment.PersonnelManagement
userInfos.Add(user); 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) //foreach (var uitem in userInfos)
//{ //{
// SYS_ReceiveMessageEntity receiveMessageEntity = new SYS_ReceiveMessageEntity(); // SYS_ReceiveMessageEntity receiveMessageEntity = new SYS_ReceiveMessageEntity();


Carregando…
Cancelar
Salvar