Commit 6481b4b0 authored by liudong1993's avatar liudong1993

1

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