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
a711068f
Commit
a711068f
authored
Dec 21, 2021
by
黄奎
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
页面修改
parent
21567372
Hide whitespace changes
Inline
Side-by-side
Showing
5 changed files
with
30 additions
and
5 deletions
+30
-5
RB_Customer_Extend.cs
Edu.Model/ViewModel/Customer/RB_Customer_Extend.cs
+5
-0
EmployeeBonusModule.cs
Edu.Module.Course/EmployeeBonusModule.cs
+12
-4
RB_CustomerRepository.cs
Edu.Repository/Customer/RB_CustomerRepository.cs
+11
-0
RB_OrderRepository.cs
Edu.Repository/Sell/RB_OrderRepository.cs
+1
-1
B2BCustomerController.cs
Edu.WebApi/Controllers/Customer/B2BCustomerController.cs
+1
-0
No files found.
Edu.Model/ViewModel/Customer/RB_Customer_Extend.cs
View file @
a711068f
...
...
@@ -59,6 +59,11 @@ namespace Edu.Model.ViewModel.Customer
}
/// <summary>
/// 审核状态
/// </summary>
public
int
QApproveState
{
get
;
set
;
}
/// <summary>
/// 审核人
/// </summary>
...
...
Edu.Module.Course/EmployeeBonusModule.cs
View file @
a711068f
...
...
@@ -44,9 +44,9 @@ namespace Edu.Module.Course
/// </summary>
public
void
CreateEmployeeBonusModule
(
int
GroupId
)
{
string
endDate
=
"2021-1
1-30
"
;
string
endDate
=
"2021-1
2-31
"
;
int
CurrentYear
=
2021
;
int
CurrentMonth
=
1
1
;
int
CurrentMonth
=
1
2
;
//人头配置列表
var
planList
=
bonus_PlanRepository
.
GetBounsPlanListRepository
(
new
RB_Bonus_PlanExtend
()
{
Group_Id
=
GroupId
...
...
@@ -72,13 +72,21 @@ namespace Edu.Module.Course
CurGuestNum
=
curNum
,
CurOrderMoney
=
curOrderMoney
,
Group_Id
=
GroupId
,
CurRewardMoney
=
GetStepAwardAmount
(
item
,
curNum
)
CurRewardMoney
=
GetStepAwardAmount
(
item
,
curNum
),
CreateBy
=
0
,
CreateTime
=
DateTime
.
Now
,
UpdateBy
=
1
,
UpdateTime
=
DateTime
.
Now
,
};
var
newId
=
personnel_BonusRepository
.
Insert
(
pModel
);
pModel
.
Id
=
newId
;
foreach
(
var
oItem
in
orderList
)
{
var
detail
=
new
RB_Personnel_BonusDetail
()
{
Id
=
0
,
BonusId
=
pModel
.
Id
};
}
}
}
...
...
Edu.Repository/Customer/RB_CustomerRepository.cs
View file @
a711068f
...
...
@@ -61,6 +61,17 @@ WHERE 1=1
{
builder
.
AppendFormat
(
" AND A.{0}={1} "
,
nameof
(
RB_Customer_Extend
.
ApproveState
),
query
.
ApproveState
);
}
if
(
query
.
QApproveState
>
0
)
{
if
(
query
.
QApproveState
==
3
)
{
builder
.
AppendFormat
(
" AND A.{0}={1} "
,
nameof
(
RB_Customer_Extend
.
ApproveState
),
0
);
}
else
{
builder
.
AppendFormat
(
" AND A.{0}={1} "
,
nameof
(
RB_Customer_Extend
.
ApproveState
),
query
.
QApproveState
);
}
}
if
(
query
.
QCustomerState
>
0
)
{
switch
(
query
.
QCustomerState
)
...
...
Edu.Repository/Sell/RB_OrderRepository.cs
View file @
a711068f
...
...
@@ -1186,7 +1186,7 @@ WHERE 1=1
"
);
builder
.
AppendFormat
(
" AND o.OrderState IN({0},{1}) "
,
(
int
)
OrderStateEnum
.
Normal
,
(
int
)
OrderStateEnum
.
DropOut
);
builder
.
AppendFormat
(
" AND o.{0}={1} "
,
nameof
(
RB_Order_ViewModel
.
OrderType
),
(
int
)
OrderTypeEnum
.
CourseOrder
);
//
builder.AppendFormat(" AND o.CreateTime >= '2021-12-01' ");
builder
.
AppendFormat
(
" AND o.CreateTime >= '2021-12-01' "
);
//帐平
builder
.
AppendFormat
(
" AND o.PreferPrice = (o.Income - o.Refund + o.DiscountMoney + o.PlatformTax) "
);
if
(
group_Id
>
0
)
...
...
Edu.WebApi/Controllers/Customer/B2BCustomerController.cs
View file @
a711068f
...
...
@@ -54,6 +54,7 @@ namespace Edu.WebApi.Controllers.Customer
ContactNumber
=
base
.
ParmJObj
.
GetStringValue
(
"ContactNumber"
),
ApproveState
=
base
.
ParmJObj
.
GetInt
(
"ApproveState"
),
QCustomerState
=
base
.
ParmJObj
.
GetInt
(
"QCustomerState"
),
QApproveState
=
base
.
ParmJObj
.
GetInt
(
"QApproveState"
)
};
var
list
=
customerModule
.
GetCustomerPageModule
(
pageModel
.
PageIndex
,
pageModel
.
PageSize
,
out
long
rowsCount
,
query
);
foreach
(
var
item
in
list
)
...
...
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