Commit cd7e9fde authored by 黄奎's avatar 黄奎

页面修改

parent 05fbaa5a
...@@ -332,7 +332,7 @@ namespace Edu.Module.Customer ...@@ -332,7 +332,7 @@ namespace Edu.Module.Customer
/// 客户兑换奖品 /// 客户兑换奖品
/// </summary> /// </summary>
/// <returns></returns> /// <returns></returns>
public virtual bool ExchangeKudoModule(int customerId, string exchangeCode, out string message) public virtual bool ExchangeKudoModule(int Id, out string message)
{ {
message = ""; message = "";
bool flag = false; bool flag = false;
...@@ -343,8 +343,7 @@ namespace Edu.Module.Customer ...@@ -343,8 +343,7 @@ namespace Edu.Module.Customer
}; };
List<WhereHelper> where = new List<WhereHelper>() List<WhereHelper> where = new List<WhereHelper>()
{ {
new WhereHelper(nameof(RB_Customer_Finishtask_Extend.ExchangeCode),exchangeCode), new WhereHelper(nameof(RB_Customer_Finishtask_Extend.Id),Id),
new WhereHelper(nameof(RB_Customer_Finishtask_Extend.CustomerId),customerId),
}; };
flag = customer_FinishtaskRepository.Update(fileds, where); flag = customer_FinishtaskRepository.Update(fileds, where);
return flag; return flag;
......
...@@ -368,7 +368,7 @@ WHERE o.OrderState=1 and og.`Status`=0 and sog.`Status`=0 and og.GuestState=1 an ...@@ -368,7 +368,7 @@ WHERE o.OrderState=1 and og.`Status`=0 and sog.`Status`=0 and og.GuestState=1 an
{ {
QIds = oldModel.CreateBy + "," + CreateBy QIds = oldModel.CreateBy + "," + CreateBy
}); });
logContent = string.Format("复制人:由【{0}】=>【{1}】", logContent = string.Format("负责人:由【{0}】=>【{1}】",
empList?.FirstOrDefault(qitem => qitem.CreateBy == oldModel.CreateBy)?.EmployeeName, empList?.FirstOrDefault(qitem => qitem.CreateBy == oldModel.CreateBy)?.EmployeeName,
empList?.FirstOrDefault(qitem => qitem.CreateBy == CreateBy)?.EmployeeName empList?.FirstOrDefault(qitem => qitem.CreateBy == CreateBy)?.EmployeeName
); );
......
...@@ -428,9 +428,10 @@ namespace Edu.WebApi.Controllers.Customer ...@@ -428,9 +428,10 @@ namespace Edu.WebApi.Controllers.Customer
[HttpPost] [HttpPost]
public ApiResult ExchangeKudo() public ApiResult ExchangeKudo()
{ {
var Id = base.ParmJObj.GetInt("Id");
string exchangeCode = base.ParmJObj.GetStringValue("ExchangeCode"); string exchangeCode = base.ParmJObj.GetStringValue("ExchangeCode");
var CustomerId = base.ParmJObj.GetInt("CustomerId"); var CustomerId = base.ParmJObj.GetInt("CustomerId");
bool flag = taskModule.ExchangeKudoModule(CustomerId, exchangeCode, out string message); bool flag = taskModule.ExchangeKudoModule(Id, out string message);
return flag ? ApiResult.Success() : ApiResult.Failed(message: message); return flag ? ApiResult.Success() : ApiResult.Failed(message: message);
} }
......
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