|
|
@@ -54,7 +54,7 @@ namespace Learun.Application.Web.Areas.EducationalAdministration.Controllers |
|
|
|
[AjaxOnly] |
|
|
|
public ActionResult GetSelectedUserName(string keyValue) |
|
|
|
{ |
|
|
|
return Success("",string.Join(",", userIbll.GetListByUserIds(keyValue).Select(m=>m.F_RealName))); |
|
|
|
return Success("", string.Join(",", userIbll.GetListByUserIds(keyValue).Select(m => m.F_RealName))); |
|
|
|
} |
|
|
|
/// <summary> |
|
|
|
/// 获取页面显示列表数据 |
|
|
@@ -134,6 +134,7 @@ namespace Learun.Application.Web.Areas.EducationalAdministration.Controllers |
|
|
|
SYS_SendMessageEntity entity = strEntity.ToObject<SYS_SendMessageEntity>(); |
|
|
|
entity.SENDERID = logInfo.userId; |
|
|
|
entity.SENDER = logInfo.realName; |
|
|
|
entity.CONTENTS = HttpUtility.HtmlDecode(entity.CONTENTS); |
|
|
|
entity.RECEIVER = string.Join(",", userIbll.GetListByUserIds(entity.RECEIVERID).Select(m => m.F_RealName)); |
|
|
|
if (!string.IsNullOrEmpty(entity.RECEIVERIDToo)) |
|
|
|
{ |
|
|
|