Commit e541bb23 authored by 吴春's avatar 吴春

提交代码

parent 0a1d624e
...@@ -4060,8 +4060,27 @@ namespace Mall.Module.Product ...@@ -4060,8 +4060,27 @@ namespace Mall.Module.Product
} }
} }
} }
//获取订阅消息
var miniModel = miniProgramRepository.GetListRepository(new RB_MiniProgram_Extend { TenantId = gModel.TenantId, MallBaseId = gModel.MallBaseId }).FirstOrDefault();
List<string> template_message_list = new List<string>();
if (miniModel != null)
{
if (!string.IsNullOrWhiteSpace(miniModel.RefundTpl))
{
template_message_list.Add(miniModel.RefundTpl);
}
if (!string.IsNullOrWhiteSpace(miniModel.AuditResultTpl))
{
template_message_list.Add(miniModel.AuditResultTpl);
}
}
return ApiResult.Success("", new return ApiResult.Success("", new
{ {
template_message_list,
model.ReOrderId, model.ReOrderId,
model.ReOrderNo, model.ReOrderNo,
model.Type, model.Type,
......
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