Commit 695ce17c authored by liudong1993's avatar liudong1993

1

parent d75637ad
...@@ -432,7 +432,7 @@ namespace Edu.Model.Entity.Sell ...@@ -432,7 +432,7 @@ namespace Edu.Model.Entity.Sell
public int OrderIdentify { get; set; } public int OrderIdentify { get; set; }
/// <summary> /// <summary>
/// 同行返佣 1按课耗反 2付款返佣 /// 返佣类型(1比例返佣,2-固定金额返佣)
/// </summary> /// </summary>
public int CommissionReType { get; set; } public int CommissionReType { get; set; }
} }
......
This diff is collapsed.
...@@ -40,7 +40,7 @@ namespace Edu.Repository.Sell ...@@ -40,7 +40,7 @@ namespace Edu.Repository.Sell
DynamicParameters parameters = new DynamicParameters(); DynamicParameters parameters = new DynamicParameters();
parameters.Add("gid", groupId); parameters.Add("gid", groupId);
parameters.Add("type", groupId); parameters.Add("type", type);
return Get<RB_Order_ReturnComission_ViewModel>(sql, parameters).ToList(); return Get<RB_Order_ReturnComission_ViewModel>(sql, parameters).ToList();
} }
...@@ -53,7 +53,7 @@ namespace Edu.Repository.Sell ...@@ -53,7 +53,7 @@ namespace Edu.Repository.Sell
/// <returns></returns> /// <returns></returns>
public bool UpdateModelByBatch(int batchId,string ids) public bool UpdateModelByBatch(int batchId,string ids)
{ {
var sql = $"update rb_order_returncomission set Status=1,BatchId={batchId} where Id in(ids)"; var sql = $"update rb_order_returncomission set Status=1,BatchId={batchId} where Id in({ids})";
return Execute(sql, null) > 0; return Execute(sql, null) > 0;
} }
...@@ -100,7 +100,7 @@ namespace Edu.Repository.Sell ...@@ -100,7 +100,7 @@ namespace Edu.Repository.Sell
} }
if (demodel.OrderSourceType > 0) if (demodel.OrderSourceType > 0)
{ {
where += $@" and r.{nameof(RB_Order_ReturnComission_ViewModel.OrderSourceType)} ={demodel.OrderSourceType}"; where += $@" and r.{nameof(RB_Order_ReturnComission_ViewModel.OrderSourceType)} ={(int)demodel.OrderSourceType}";
} }
if (demodel.OrderSourceId > 0) if (demodel.OrderSourceId > 0)
{ {
...@@ -163,7 +163,7 @@ where {where} order by r.Id desc"; ...@@ -163,7 +163,7 @@ where {where} order by r.Id desc";
} }
if (demodel.OrderSourceType > 0) if (demodel.OrderSourceType > 0)
{ {
where += $@" and r.{nameof(RB_Order_ReturnComission_ViewModel.OrderSourceType)} ={demodel.OrderSourceType}"; where += $@" and r.{nameof(RB_Order_ReturnComission_ViewModel.OrderSourceType)} ={(int)demodel.OrderSourceType}";
} }
if (demodel.OrderSourceId > 0) if (demodel.OrderSourceId > 0)
{ {
...@@ -222,7 +222,7 @@ from RB_Order_ReturnComission r where {where} group by r.OrderSourceType,r.Order ...@@ -222,7 +222,7 @@ from RB_Order_ReturnComission r where {where} group by r.OrderSourceType,r.Order
} }
if (demodel.OrderSourceType > 0) if (demodel.OrderSourceType > 0)
{ {
where += $@" and r.{nameof(RB_Order_ReturnComission_ViewModel.OrderSourceType)} ={demodel.OrderSourceType}"; where += $@" and r.{nameof(RB_Order_ReturnComission_ViewModel.OrderSourceType)} ={(int)demodel.OrderSourceType}";
} }
if (demodel.OrderSourceId > 0) if (demodel.OrderSourceId > 0)
{ {
......
...@@ -76,14 +76,8 @@ namespace Edu.Repository.Sell ...@@ -76,14 +76,8 @@ namespace Edu.Repository.Sell
/// <returns></returns> /// <returns></returns>
public bool ExsitModelByMonth(int groupId,string month,int type) public bool ExsitModelByMonth(int groupId,string month,int type)
{ {
var sql = "select Count(0) from RB_ReturnMoney_Batch a where a.GroupId=@gid and DATE_FORMAT(a.CreateDate,'%Y-%m')=@month and a.CommissionType=@type"; var sql = $@"select Count(0) from RB_ReturnMoney_Batch a where a.GroupId={groupId} and DATE_FORMAT(a.CreateDate,'%Y-%m')='{month}' and a.CommissionType={type}";
DynamicParameters parameters = new DynamicParameters(); var result = ExecuteScalar(sql);
parameters.Add("gid", groupId);
parameters.Add("month", month);
parameters.Add("type", type);
var result = ExecuteScalar(sql, parameters);
return Convert.ToInt32(result) > 0; return Convert.ToInt32(result) > 0;
} }
} }
......
...@@ -143,6 +143,7 @@ namespace Edu.WebApi.Controllers.Course ...@@ -143,6 +143,7 @@ namespace Edu.WebApi.Controllers.Course
x.SchoolName, x.SchoolName,
x.UserName, x.UserName,
x.OrderSourceType, x.OrderSourceType,
OrderSourceTypeName = x.OrderSourceType.ToName(),
x.OrderSourceId, x.OrderSourceId,
x.ClassId, x.ClassId,
x.ClassName, x.ClassName,
...@@ -154,7 +155,8 @@ namespace Edu.WebApi.Controllers.Course ...@@ -154,7 +155,8 @@ namespace Edu.WebApi.Controllers.Course
x.BatchId, x.BatchId,
x.BatchName, x.BatchName,
x.StuId, x.StuId,
x.StuName x.StuName,
x.CommissionType
}) })
}; };
return ApiResult.Success("", pageModel); return ApiResult.Success("", pageModel);
...@@ -231,8 +233,8 @@ namespace Edu.WebApi.Controllers.Course ...@@ -231,8 +233,8 @@ namespace Edu.WebApi.Controllers.Course
new ExcelColumn(value: ""){ }, new ExcelColumn(value: ""){ },
new ExcelColumn(value: ""){ }, new ExcelColumn(value: ""){ },
new ExcelColumn(value: ""){ }, new ExcelColumn(value: ""){ },
new ExcelColumn(value: TotalMoney.ToString("#0.00")){ },
new ExcelColumn(value: ""){ }, new ExcelColumn(value: ""){ },
new ExcelColumn(value: TotalMoney.ToString("#0.00")){ },
new ExcelColumn(value: ""){ }, new ExcelColumn(value: ""){ },
new ExcelColumn(value: ""){ }, new ExcelColumn(value: ""){ },
new ExcelColumn(value: ""){ }, new ExcelColumn(value: ""){ },
......
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