Commit 654f81d6 authored by 黄奎's avatar 黄奎

试听推送调整

parents c38fae48 1268abd5
......@@ -31,6 +31,7 @@ using Edu.Model.Public;
using Edu.Module.User;
using Senparc.Weixin.MP.AdvancedAPIs;
using Edu.Model.ViewModel.Sell;
using Senparc.CO2NET.Extensions;
namespace Edu.Module.Duty
{
......@@ -316,12 +317,15 @@ namespace Edu.Module.Duty
{
queryNotifyManager.ForEach(x =>
{
var path = $"/h5page/TrialClass?Id={model.Id}";//这个地址是欠费的通知地址,后续有H5需要改
path = HttpUtility.UrlEncode(path);
string newUrl = $"{Config.ErpUrl}/autologin?loginId={x.Id}&target={path}";
Common.Plugin.LogHelper.WriteInfo("试听推送::" + newUrl);
var content = $"<font color='info'>学员试听课通知</font>\n>**概要信息** \n>学员名称:<font color='warning'>{guestModel.StuName}({guestModel.StuRealMobile})</font>\n>预约时间:<font color='warning'>{Common.ConvertHelper.FormatDate(model.ReservationDate)}</font>\n>试听需求:<font color='warning'>{Common.Plugin.StringHelper.FilterHtml(model.Demand)}</font>\n>请 点 击:[查看详情]({newUrl})";
PushWorkChatHelper.PushToWorkChat(content, x.WorkUserId, "学员试听课通知");
if (!string.IsNullOrWhiteSpace(x.WorkUserId))
{
var path = $"/h5page/TrialClass?Id={model.Id}";//这个地址是欠费的通知地址,后续有H5需要改
path = HttpUtility.UrlEncode(path);
string newUrl = $"{Config.ErpUrl}/login?loginId={x.Id}&target={path}";
Common.Plugin.LogHelper.WriteInfo("试听推送::" + newUrl);
var content = $"<font color='info'>学员试听课通知</font>\n>**概要信息** \n>学员名称:<font color='warning'>{guestModel.StuName}({guestModel.StuRealMobile})</font>\n>预约时间:<font color='warning'>{Common.ConvertHelper.FormatDate(model.ReservationDate)}</font>\n>试听需求:<font color='warning'>{Common.Plugin.StringHelper.FilterHtml(model.Demand)}</font>\n>请 点 击:[查看详情]({newUrl})";
PushWorkChatHelper.PushToWorkChat(content, x.WorkUserId, "学员试听课通知");
}
});
}
#endregion
......@@ -382,21 +386,24 @@ namespace Edu.Module.Duty
string markdownContent = $@"`留学需求通知` 学员留学需求通知\n>**概要信息** \n>学员名称:{studentModel.StuName}({studentModel.StuRealMobile})\n>
留学需求:<font color='warning'>{model.Remark}\n>
请点击:[查看详情]({Config.ErpUrl}/autologin?loginId={x.Id}&target={path})";
Common.Message.PushMessageModel modelWork = new Common.Message.PushMessageModel()
if (!string.IsNullOrWhiteSpace(x.WorkUserId))
{
CategoryId = PushMessageCategoryEnum.SalePeople,
Content = markdownContent,
CoverImg = "",
CreateByName = userInfo.AccountName,
JumpUrl = "",
WorkMsgType = "markdown",
SendTime = DateTime.Now,
SendType = 0,
Title = "学员留学需求通知",
Platform = 5,
ReceiveId = x.WorkUserId??""
};
pushList.Add(modelWork);
Common.Message.PushMessageModel modelWork = new Common.Message.PushMessageModel()
{
CategoryId = PushMessageCategoryEnum.SalePeople,
Content = markdownContent,
CoverImg = "",
CreateByName = userInfo.AccountName,
JumpUrl = "",
WorkMsgType = "markdown",
SendTime = DateTime.Now,
SendType = 0,
Title = "学员留学需求通知",
Platform = 5,
ReceiveId = x.WorkUserId ?? ""
};
pushList.Add(modelWork);
}
});
if (pushList != null && pushList.Any())
{
......@@ -455,21 +462,24 @@ namespace Edu.Module.Duty
{
queryNotifyManager.ForEach(x =>
{
Common.Message.PushMessageModel modelWork = new Common.Message.PushMessageModel()
if (!string.IsNullOrWhiteSpace(x.WorkUserId))
{
CategoryId = PushMessageCategoryEnum.ReserveClass,
Content = markdownContents + $"/autologin?loginId={x.Id}&target={paths})",
CoverImg = "",
CreateByName = "系统",
JumpUrl = "",
WorkMsgType = "markdown",
SendTime = DateTime.Now,
SendType = 0,
Title = "学员试听课通知",
Platform = 5,
ReceiveId = x.WorkUserId
};
pushList.Add(modelWork);
Common.Message.PushMessageModel modelWork = new Common.Message.PushMessageModel()
{
CategoryId = PushMessageCategoryEnum.ReserveClass,
Content = markdownContents + $"/autologin?loginId={x.Id}&target={paths})",
CoverImg = "",
CreateByName = "系统",
JumpUrl = "",
WorkMsgType = "markdown",
SendTime = DateTime.Now,
SendType = 0,
Title = "学员试听课通知",
Platform = 5,
ReceiveId = x.WorkUserId
};
pushList.Add(modelWork);
}
});
}
......@@ -482,20 +492,24 @@ namespace Edu.Module.Duty
});
foreach (var item in teacherList)
{
Common.Message.PushMessageModel pushModels = new Common.Message.PushMessageModel()
if (!string.IsNullOrWhiteSpace(item.WorkUserId))
{
CategoryId = PushMessageCategoryEnum.ReserveClass,
Content = markdownContents + $"/autologin?loginId={item.Id}&target={paths})",
CoverImg = "",
CreateByName = UserInfo.AccountName,
JumpUrl = "",
SendTime = DateTime.Now,
SendType = 0,
Title = "试听课",
Platform = 2,
ReceiveId = (item?.WorkUserId).ToString(),
};
pushList.Add(pushModels);
Common.Message.PushMessageModel pushModels = new Common.Message.PushMessageModel()
{
CategoryId = PushMessageCategoryEnum.ReserveClass,
Content = markdownContents + $"/autologin?loginId={item.Id}&target={paths})",
CoverImg = "",
CreateByName = UserInfo.AccountName,
JumpUrl = "",
SendTime = DateTime.Now,
SendType = 0,
Title = "试听课",
Platform = 2,
ReceiveId = (item?.WorkUserId).ToString(),
};
pushList.Add(pushModels);
}
}
if (pushList != null && pushList.Any())
{
......@@ -1066,20 +1080,23 @@ namespace Edu.Module.Duty
#region 老师消息推送
if (model.TeacherId != oldTeacherId && oldTeacherId > 0)
{
Common.Message.PushMessageModel pushModel2 = new Common.Message.PushMessageModel()
if (!string.IsNullOrWhiteSpace((teacherList.Where(qitem => qitem.AccountId == oldTeacherId)?.FirstOrDefault()?.WorkUserId)))
{
CategoryId = PushMessageCategoryEnum.ReserveClass,
Content = "您有试听课被取消!请查收",
CoverImg = "",
CreateByName = UserInfo.AccountName,
JumpUrl = $"/course/classPlan?ClassType=2",
SendTime = DateTime.Now,
SendType = 0,
Title = "试听课",
Platform = 2,
ReceiveId = (teacherList.Where(qitem => qitem.AccountId == oldTeacherId)?.FirstOrDefault()?.WorkUserId).ToString(),
};
pushList.Add(pushModel2);
Common.Message.PushMessageModel pushModel2 = new Common.Message.PushMessageModel()
{
CategoryId = PushMessageCategoryEnum.ReserveClass,
Content = "您有试听课被取消!请查收",
CoverImg = "",
CreateByName = UserInfo.AccountName,
JumpUrl = $"/course/classPlan?ClassType=2",
SendTime = DateTime.Now,
SendType = 0,
Title = "试听课",
Platform = 2,
ReceiveId = (teacherList.Where(qitem => qitem.AccountId == oldTeacherId)?.FirstOrDefault()?.WorkUserId).ToString(),
};
pushList.Add(pushModel2);
}
}
var path = $"/course/classPlan?ClassType=2";//
path = HttpUtility.UrlEncode(path);
......@@ -1090,21 +1107,24 @@ namespace Edu.Module.Duty
课程名称:<font color='warning'>{model.LessonName}\n>
教室:<font color='warning'>{model.RoomName}\n>
请点击:[查看详情]({Config.ErpUrl}/autologin?loginId={(teacherList.Where(qitem => qitem.AccountId == model.TeacherId)?.FirstOrDefault()?.Id ?? 0)}&target={path})";
Common.Message.PushMessageModel pushModel = new Common.Message.PushMessageModel()
if (!string.IsNullOrWhiteSpace((teacherList.Where(qitem => qitem.AccountId == model.TeacherId)?.FirstOrDefault()?.WorkUserId ?? "")))
{
CategoryId = PushMessageCategoryEnum.ReserveClass,
Content = markdownContent,
CoverImg = "",
CreateByName = UserInfo.AccountName,
JumpUrl = "",
WorkMsgType = "markdown",
SendTime = DateTime.Now,
SendType = 0,
Title = "学员试听课通知",
Platform = 2,
ReceiveId = (teacherList.Where(qitem => qitem.AccountId == model.TeacherId)?.FirstOrDefault()?.WorkUserId ?? "").ToString(),
};
pushList.Add(pushModel);
Common.Message.PushMessageModel pushModel = new Common.Message.PushMessageModel()
{
CategoryId = PushMessageCategoryEnum.ReserveClass,
Content = markdownContent,
CoverImg = "",
CreateByName = UserInfo.AccountName,
JumpUrl = "",
WorkMsgType = "markdown",
SendTime = DateTime.Now,
SendType = 0,
Title = "学员试听课通知",
Platform = 2,
ReceiveId = (teacherList.Where(qitem => qitem.AccountId == model.TeacherId)?.FirstOrDefault()?.WorkUserId ?? "").ToString(),
};
pushList.Add(pushModel);
}
#endregion
#region 销售消息推送
......@@ -1123,21 +1143,24 @@ namespace Edu.Module.Duty
课程名称:<font color='warning'>{model.LessonName}\n>
教室:<font color='warning'>{model.RoomName}\n>
请点击:[查看详情]({Config.ErpUrl}/autologin?loginId={modelReserve.CreateBy}&target={paths})";
Common.Message.PushMessageModel pushModels = new Common.Message.PushMessageModel()
if (!string.IsNullOrWhiteSpace(saleModel.WorkUserId))
{
CategoryId = PushMessageCategoryEnum.ReserveClass,
Content = markdownContents,
CoverImg = "",
CreateByName = UserInfo.AccountName,
JumpUrl = "",
WorkMsgType = "markdown",
SendTime = DateTime.Now,
SendType = 0,
Title = "学员试听课通知",
Platform = 2,
ReceiveId = (saleModel?.WorkUserId ?? "").ToString(),
};
pushList.Add(pushModels);
Common.Message.PushMessageModel pushModels = new Common.Message.PushMessageModel()
{
CategoryId = PushMessageCategoryEnum.ReserveClass,
Content = markdownContents,
CoverImg = "",
CreateByName = UserInfo.AccountName,
JumpUrl = "",
WorkMsgType = "markdown",
SendTime = DateTime.Now,
SendType = 0,
Title = "学员试听课通知",
Platform = 2,
ReceiveId = (saleModel?.WorkUserId ?? "").ToString(),
};
pushList.Add(pushModels);
}
#endregion
LogHelper.WriteInfo("这是设置老师等发送消息:" + JsonHelper.Serialize(pushList));
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment