Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
E
Education
Project
Project
Details
Activity
Releases
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
黄奎
Education
Commits
6481b4b0
Commit
6481b4b0
authored
Dec 16, 2021
by
liudong1993
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
1
parent
05a239d6
Hide whitespace changes
Inline
Side-by-side
Showing
5 changed files
with
16 additions
and
2 deletions
+16
-2
RB_Course.cs
Edu.Model/Entity/Course/RB_Course.cs
+5
-1
RB_Customer_BalanceDetail.cs
Edu.Model/Entity/Customer/RB_Customer_BalanceDetail.cs
+6
-1
CourseModule.cs
Edu.Module.Course/CourseModule.cs
+1
-0
OrderModule.cs
Edu.Module.Course/OrderModule.cs
+2
-0
CourseController.cs
Edu.WebApi/Controllers/Course/CourseController.cs
+2
-0
No files found.
Edu.Model/Entity/Course/RB_Course.cs
View file @
6481b4b0
...
@@ -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
Edu.Model/Entity/Customer/RB_Customer_BalanceDetail.cs
View file @
6481b4b0
...
@@ -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
;
}
}
}
}
}
Edu.Module.Course/CourseModule.cs
View file @
6481b4b0
...
@@ -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
));
}
}
...
...
Edu.Module.Course/OrderModule.cs
View file @
6481b4b0
...
@@ -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
)
{
{
...
...
Edu.WebApi/Controllers/Course/CourseController.cs
View file @
6481b4b0
...
@@ -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
();
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment