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
5462b9e7
Commit
5462b9e7
authored
Jun 20, 2023
by
liudong1993
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
1 甲鹤市场主管提成规则
parent
fcdd0d51
Expand all
Show whitespace changes
Inline
Side-by-side
Showing
7 changed files
with
202 additions
and
15 deletions
+202
-15
RB_Sell_Achievements_Rule.cs
Edu.Model/Entity/Sell/RB_Sell_Achievements_Rule.cs
+10
-0
RB_Sell_Achievements_Emp_ViewModel.cs
...odel/ViewModel/Sell/RB_Sell_Achievements_Emp_ViewModel.cs
+5
-0
RB_Sell_Achievements_Rule_ViewModel.cs
...del/ViewModel/Sell/RB_Sell_Achievements_Rule_ViewModel.cs
+5
-0
SellAchievementsModule.cs
Edu.Module.Course/SellAchievementsModule.cs
+144
-15
RB_StudentRepository.cs
Edu.Repository/User/RB_StudentRepository.cs
+24
-0
SellAchievementsController.cs
Edu.WebApi/Controllers/Course/SellAchievementsController.cs
+13
-0
UserController.cs
Edu.WebApi/Controllers/User/UserController.cs
+1
-0
No files found.
Edu.Model/Entity/Sell/RB_Sell_Achievements_Rule.cs
View file @
5462b9e7
...
@@ -112,5 +112,15 @@ namespace Edu.Model.Entity.Sell
...
@@ -112,5 +112,15 @@ namespace Edu.Model.Entity.Sell
/// </summary>
/// </summary>
public
decimal
ExtraMoney
{
get
;
set
;
}
public
decimal
ExtraMoney
{
get
;
set
;
}
/// <summary>
/// 是否启用 主管奖励 1是
/// </summary>
public
int
EnableZGAward
{
get
;
set
;
}
/// <summary>
/// 主管奖励规则
/// </summary>
public
string
ZGAwardRule
{
get
;
set
;
}
}
}
}
}
Edu.Model/ViewModel/Sell/RB_Sell_Achievements_Emp_ViewModel.cs
View file @
5462b9e7
...
@@ -29,5 +29,10 @@ namespace Edu.Model.ViewModel.Sell
...
@@ -29,5 +29,10 @@ namespace Edu.Model.ViewModel.Sell
/// 返佣总金额
/// 返佣总金额
/// </summary>
/// </summary>
public
decimal
CommissionMoney
{
get
;
set
;
}
public
decimal
CommissionMoney
{
get
;
set
;
}
/// <summary>
/// 奖励数量
/// </summary>
public
int
AwardOrderNum
{
get
;
set
;
}
}
}
}
}
\ No newline at end of file
Edu.Model/ViewModel/Sell/RB_Sell_Achievements_Rule_ViewModel.cs
View file @
5462b9e7
...
@@ -36,6 +36,11 @@ namespace Edu.Model.ViewModel.Sell
...
@@ -36,6 +36,11 @@ namespace Edu.Model.ViewModel.Sell
/// 校区名称
/// 校区名称
/// </summary>
/// </summary>
public
string
SchoolName
{
get
;
set
;
}
public
string
SchoolName
{
get
;
set
;
}
/// <summary>
/// 业绩比例
/// </summary>
public
List
<
AchievementsRateModel
>
ZGAwardList
{
get
;
set
;
}
}
}
/// <summary>
/// <summary>
...
...
Edu.Module.Course/SellAchievementsModule.cs
View file @
5462b9e7
This diff is collapsed.
Click to expand it.
Edu.Repository/User/RB_StudentRepository.cs
View file @
5462b9e7
...
@@ -456,6 +456,16 @@ WHERE 1=1
...
@@ -456,6 +456,16 @@ WHERE 1=1
{
{
builder
.
AppendFormat
(
" AND (t.StuStage={0} OR t.AdvisorStatus={1}) "
,
7
,
7
);
builder
.
AppendFormat
(
" AND (t.StuStage={0} OR t.AdvisorStatus={1}) "
,
7
,
7
);
}
}
if
(
query
.
IsSureConsultTime
>
0
)
{
if
(
query
.
IsSureConsultTime
==
1
)
{
builder
.
AppendFormat
(
" AND t.{0}={1} "
,
nameof
(
RB_Student_ViewModel
.
IsSureConsultTime
),
1
);
}
else
{
builder
.
AppendFormat
(
" AND t.{0}<>{1} "
,
nameof
(
RB_Student_ViewModel
.
IsSureConsultTime
),
1
);
}
}
//渠道
//渠道
if
(
query
.
StuChannel
>
0
)
if
(
query
.
StuChannel
>
0
)
{
{
...
@@ -1229,5 +1239,19 @@ WHERE s.`Status`=0 and s.Group_Id ={group_Id} and (s.CreateBy ={userId} or a.Ass
...
@@ -1229,5 +1239,19 @@ WHERE s.`Status`=0 and s.Group_Id ={group_Id} and (s.CreateBy ={userId} or a.Ass
group by s.StuId"
;
group by s.StuId"
;
return
Get
<
RB_Student_ViewModel
>(
sql
).
ToList
();
return
Get
<
RB_Student_ViewModel
>(
sql
).
ToList
();
}
}
/// <summary>
/// 获取甲鹤学生到访30分钟以上的
/// </summary>
/// <param name="sDate"></param>
/// <param name="eDate"></param>
/// <param name="group_Id"></param>
/// <returns></returns>
public
List
<
RB_Student_ViewModel
>
GetValidVisitNum
(
string
sDate
,
string
eDate
,
int
group_Id
)
{
string
sql
=
$@"SELECT CreateBy,count(0) AS OrderCount FROM rb_student
WHERE Group_Id =
{
group_Id
}
and `Status` =0 and IsSureConsultTime =1 and CreateTime>='
{
sDate
}
' and CreateTime <='
{
eDate
}
23:59:59' GROUP BY CreateBy"
;
return
Get
<
RB_Student_ViewModel
>(
sql
).
ToList
();
}
}
}
}
}
\ No newline at end of file
Edu.WebApi/Controllers/Course/SellAchievementsController.cs
View file @
5462b9e7
...
@@ -70,6 +70,8 @@ namespace Edu.WebApi.Controllers.Course
...
@@ -70,6 +70,8 @@ namespace Edu.WebApi.Controllers.Course
x
.
SendType
,
x
.
SendType
,
x
.
PeopleMoney
,
x
.
PeopleMoney
,
x
.
ExtraMoney
,
x
.
ExtraMoney
,
x
.
EnableZGAward
,
x
.
ZGAwardList
,
CreateTime
=
x
.
CreateTime
.
ToString
(
"yyyy-MM-dd HH:mm:ss"
)
CreateTime
=
x
.
CreateTime
.
ToString
(
"yyyy-MM-dd HH:mm:ss"
)
}));
}));
}
}
...
@@ -137,6 +139,17 @@ namespace Edu.WebApi.Controllers.Course
...
@@ -137,6 +139,17 @@ namespace Edu.WebApi.Controllers.Course
demodel
.
Content
=
""
;
demodel
.
Content
=
""
;
}
}
if
(
demodel
.
EnableZGAward
==
1
)
{
if
(
demodel
.
ZGAwardList
==
null
||
!
demodel
.
ZGAwardList
.
Any
())
{
return
ApiResult
.
ParamIsNull
(
"请传递有效到访奖励"
);
}
demodel
.
ZGAwardRule
=
JsonHelper
.
Serialize
(
demodel
.
ZGAwardList
);
}
else
{
demodel
.
ZGAwardRule
=
""
;
}
demodel
.
Status
=
0
;
demodel
.
Status
=
0
;
demodel
.
Group_Id
=
userInfo
.
Group_Id
;
demodel
.
Group_Id
=
userInfo
.
Group_Id
;
demodel
.
CreateBy
=
userInfo
.
Id
;
demodel
.
CreateBy
=
userInfo
.
Id
;
...
...
Edu.WebApi/Controllers/User/UserController.cs
View file @
5462b9e7
...
@@ -701,6 +701,7 @@ namespace Edu.WebApi.Controllers.User
...
@@ -701,6 +701,7 @@ namespace Edu.WebApi.Controllers.User
StuChannel
=
base
.
ParmJObj
.
GetInt
(
"StuChannel"
),
StuChannel
=
base
.
ParmJObj
.
GetInt
(
"StuChannel"
),
CreateType
=
(
StuCreateTypeEnum
)
base
.
ParmJObj
.
GetInt
(
"CreateType"
),
CreateType
=
(
StuCreateTypeEnum
)
base
.
ParmJObj
.
GetInt
(
"CreateType"
),
StuSourceId
=
base
.
ParmJObj
.
GetInt
(
"StuSourceId"
),
StuSourceId
=
base
.
ParmJObj
.
GetInt
(
"StuSourceId"
),
IsSureConsultTime
=
base
.
ParmJObj
.
GetInt
(
"IsSureConsultTime"
)
};
};
if
(
query
.
IsQueryMyStu
==
1
)
if
(
query
.
IsQueryMyStu
==
1
)
{
{
...
...
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