Commit 6481b4b0 authored by liudong1993's avatar liudong1993

1

parent 05a239d6
...@@ -207,10 +207,14 @@ namespace Edu.Model.Entity.Course ...@@ -207,10 +207,14 @@ namespace Edu.Model.Entity.Course
/// </summary> /// </summary>
public decimal InnerRecommendRatio { get; set; } public decimal InnerRecommendRatio { get; set; }
/// <summary> /// <summary>
/// 內推续费返佣比例 /// 內推续费返佣比例
/// </summary> /// </summary>
public decimal InnerRecommendReNewRatio { get; set; } public decimal InnerRecommendReNewRatio { get; set; }
/// <summary>
/// 返佣类型 1按课耗反 2付款返佣
/// </summary>
public int CommissionReType { get; set; }
} }
} }
\ No newline at end of file
...@@ -88,7 +88,7 @@ namespace Edu.Model.Entity.Customer ...@@ -88,7 +88,7 @@ namespace Edu.Model.Entity.Customer
public int ClassId { get; set; } public int ClassId { get; set; }
/// <summary> /// <summary>
/// 状态 1已返佣 2待返佣 /// 状态 1已返佣 2待返佣 3部分返佣
/// </summary> /// </summary>
public int BalanceState { get; set; } public int BalanceState { get; set; }
...@@ -96,5 +96,10 @@ namespace Edu.Model.Entity.Customer ...@@ -96,5 +96,10 @@ namespace Edu.Model.Entity.Customer
/// 是否已提现 1是 2否 /// 是否已提现 1是 2否
/// </summary> /// </summary>
public int IsRemit { get; set; } public int IsRemit { get; set; }
/// <summary>
/// 已发放金额( 根据订单返佣设置 按课耗 / 付款后发放)
/// </summary>
public decimal GiveOutMoney { get; set; }
} }
} }
...@@ -1487,6 +1487,7 @@ namespace Edu.Module.Course ...@@ -1487,6 +1487,7 @@ namespace Edu.Module.Course
{nameof(RB_Course_ViewModel.InnerRecommendReNewRatio),courseModel.InnerRecommendReNewRatio }, {nameof(RB_Course_ViewModel.InnerRecommendReNewRatio),courseModel.InnerRecommendReNewRatio },
{nameof(RB_Course_ViewModel.TransIntroductceRatio),courseModel.TransIntroductceRatio }, {nameof(RB_Course_ViewModel.TransIntroductceRatio),courseModel.TransIntroductceRatio },
{nameof(RB_Course_ViewModel.TransIntroductceReNewRatio),courseModel.TransIntroductceReNewRatio }, {nameof(RB_Course_ViewModel.TransIntroductceReNewRatio),courseModel.TransIntroductceReNewRatio },
{nameof(RB_Course_ViewModel.CommissionReType),courseModel.CommissionReType },
}; };
flag = courseRepository.Update(fileds, new WhereHelper(nameof(RB_Course_ViewModel.CourseId), courseModel.CourseId)); flag = courseRepository.Update(fileds, new WhereHelper(nameof(RB_Course_ViewModel.CourseId), courseModel.CourseId));
} }
......
...@@ -416,6 +416,8 @@ namespace Edu.Module.Course ...@@ -416,6 +416,8 @@ namespace Edu.Module.Course
//课程信息 //课程信息
var courseModel = courseRepository.GetEntity(demodel.CourseId); var courseModel = courseRepository.GetEntity(demodel.CourseId);
decimal coursePrice = courseModel.SellPrice;//课程最低单价 decimal coursePrice = courseModel.SellPrice;//课程最低单价
demodel.CommissionReType = courseModel.CommissionReType;
#region 课程比例赋值 #region 课程比例赋值
if (demodel.OrderId <= 0) if (demodel.OrderId <= 0)
{ {
......
...@@ -1231,6 +1231,7 @@ namespace Edu.WebApi.Controllers.Course ...@@ -1231,6 +1231,7 @@ namespace Edu.WebApi.Controllers.Course
InnerRecommendReNewRatio=courseObj.GetDecimal("InnerRecommendReNewRatio"), InnerRecommendReNewRatio=courseObj.GetDecimal("InnerRecommendReNewRatio"),
TransIntroductceRatio=courseObj.GetDecimal("TransIntroductceRatio"), TransIntroductceRatio=courseObj.GetDecimal("TransIntroductceRatio"),
TransIntroductceReNewRatio=courseObj.GetDecimal("TransIntroductceReNewRatio"), TransIntroductceReNewRatio=courseObj.GetDecimal("TransIntroductceReNewRatio"),
CommissionReType = courseObj.GetInt("CommissionReType")
}; };
var priceObj = base.ParmJObj.GetStringValue("priceList"); var priceObj = base.ParmJObj.GetStringValue("priceList");
var list = new List<RB_Course_Preferential_Extend>(); var list = new List<RB_Course_Preferential_Extend>();
...@@ -1297,6 +1298,7 @@ namespace Edu.WebApi.Controllers.Course ...@@ -1297,6 +1298,7 @@ namespace Edu.WebApi.Controllers.Course
extModel.InnerRecommendReNewRatio = courseModel.InnerRecommendReNewRatio; extModel.InnerRecommendReNewRatio = courseModel.InnerRecommendReNewRatio;
extModel.TransIntroductceRatio = courseModel.TransIntroductceRatio; extModel.TransIntroductceRatio = courseModel.TransIntroductceRatio;
extModel.TransIntroductceReNewRatio = courseModel.TransIntroductceReNewRatio; extModel.TransIntroductceReNewRatio = courseModel.TransIntroductceReNewRatio;
extModel.CommissionReType = courseModel.CommissionReType;
var flag = courseModule.SetCoursePreferentialListModule(extModel, list); var flag = courseModule.SetCoursePreferentialListModule(extModel, list);
return flag ? ApiResult.Success() : ApiResult.Failed(); return flag ? ApiResult.Success() : ApiResult.Failed();
......
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