Commit 61af529e authored by liudong1993's avatar liudong1993

消息订阅推送备注修改

parent 6e2581cb
...@@ -5536,7 +5536,7 @@ namespace Mall.Module.Product ...@@ -5536,7 +5536,7 @@ namespace Mall.Module.Product
goodsName = goodsName.Substring(0, 18) + ".."; goodsName = goodsName.Substring(0, 18) + "..";
} }
} }
new MiniProgramMsgModule().SendOrderCancelMsg(tenantId, mallBaseId, umodel.OpenId, omodel.OrderNo, omodel.CancelRemark ?? "", (omodel.Income ?? 0).ToString(), goodsName); new MiniProgramMsgModule().SendOrderCancelMsg(tenantId, mallBaseId, umodel.OpenId, omodel.OrderNo, "订单已取消", (omodel.Income ?? 0).ToString(), goodsName);
} }
//记录日志 //记录日志
string Content = $"客人申请取消订单,审核:{(type == 1 ? "同意" : "拒绝")}"; string Content = $"客人申请取消订单,审核:{(type == 1 ? "同意" : "拒绝")}";
...@@ -5757,7 +5757,7 @@ namespace Mall.Module.Product ...@@ -5757,7 +5757,7 @@ namespace Mall.Module.Product
goodsName = goodsName.Substring(0, 18) + ".."; goodsName = goodsName.Substring(0, 18) + "..";
} }
} }
new MiniProgramMsgModule().SendOrderCancelMsg(tenantId, mallBaseId, umodel.OpenId, omodel.OrderNo, omodel.CancelRemark ?? "", (omodel.Income ?? 0).ToString(), goodsName); new MiniProgramMsgModule().SendOrderCancelMsg(tenantId, mallBaseId, umodel.OpenId, omodel.OrderNo, "订单已取消", (omodel.Income ?? 0).ToString(), goodsName);
#endregion #endregion
//记录日志 //记录日志
......
...@@ -1576,7 +1576,7 @@ namespace Mall.WebApi.Controllers.MallBase ...@@ -1576,7 +1576,7 @@ namespace Mall.WebApi.Controllers.MallBase
var umodel = orderModule.GetMemberUserInfo(orderModel.UserId ?? 0); var umodel = orderModule.GetMemberUserInfo(orderModel.UserId ?? 0);
if (goodsName != "" && umodel != null) if (goodsName != "" && umodel != null)
{ {
new MiniProgramMsgModule().SendOrderRefundMsg(orderModel.TenantId, orderModel.MallBaseId, umodel.OpenId, "", orderModel.OrderNo, (Refund).ToString(), goodsName); new MiniProgramMsgModule().SendOrderRefundMsg(orderModel.TenantId, orderModel.MallBaseId, umodel.OpenId, "已退款,请注意查收", orderModel.OrderNo, (Refund).ToString(), goodsName);
} }
return ApiResult.Success(""); return ApiResult.Success("");
} }
......
...@@ -1833,7 +1833,7 @@ namespace Mall.WebApi.Controllers.User ...@@ -1833,7 +1833,7 @@ namespace Mall.WebApi.Controllers.User
LogHelper.Write("提现:" + RemitId + ",失败"); LogHelper.Write("提现:" + RemitId + ",失败");
} }
new MiniProgramMsgModule().SendWithdrawSucceedMsg(model.TenantId, model.MallBaseId, umodel.OpenId, (model.RemitMoney ?? 0).ToString(), (model.Fee ?? 0).ToString(), (model.WithdrawalWay.GetEnumName()), ""); new MiniProgramMsgModule().SendWithdrawSucceedMsg(model.TenantId, model.MallBaseId, umodel.OpenId, (model.RemitMoney ?? 0).ToString(), (model.Fee ?? 0).ToString(), (model.WithdrawalWay.GetEnumName()), "已发放佣金,请注意查收");
return ApiResult.Success(); return ApiResult.Success();
} }
else else
......
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