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
6573dda9
Commit
6573dda9
authored
Oct 11, 2024
by
liudong1993
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
1
parent
d4da3063
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
2 additions
and
1 deletion
+2
-1
SellAchievementsModule.cs
Edu.Module.Course/SellAchievementsModule.cs
+2
-1
No files found.
Edu.Module.Course/SellAchievementsModule.cs
View file @
6573dda9
...
...
@@ -1113,7 +1113,8 @@ namespace Edu.Module.Course
//计算一下 退费金额,要算入当期的业绩里
decimal
TRefund
=
ROrderList
.
Where
(
x
=>
(
","
+
item
.
EmpIds
+
","
).
Contains
(
","
+
x
.
EmpId
+
","
)).
Sum
(
x
=>
x
.
Remark
.
Contains
(
"销售额减半计算"
)
?
(
x
.
OrderMoney
-
x
.
OrderSaleMoney
)
/
2
:
x
.
OrderMoney
-
x
.
OrderSaleMoney
);
//计算市场业绩 如果有 老师提成,
decimal
TotalYj
=
sellOrderList
.
Sum
(
x
=>
x
.
HelpEnterId
>
0
?
(
x
.
PreferPrice
-
x
.
DiscountMoney
-
x
.
PlatformTax
-
x
.
TextbookFee
)
/
2
:
x
.
PreferPrice
-
x
.
DiscountMoney
-
x
.
PlatformTax
-
x
.
TextbookFee
);
//decimal TotalYj = sellOrderList.Sum(x => x.HelpEnterId > 0 ? (x.PreferPrice - x.DiscountMoney - x.PlatformTax - x.TextbookFee) / 2 : x.PreferPrice - x.DiscountMoney - x.PlatformTax - x.TextbookFee);
decimal
TotalYj
=
sellOrderList
.
Sum
(
x
=>
x
.
PreferPrice
-
x
.
DiscountMoney
-
x
.
PlatformTax
-
x
.
TextbookFee
);
//计算订单返佣
decimal
bdCommTotal
=
bdList
.
Where
(
x
=>
sellOrderList
.
Select
(
x
=>
x
.
OrderId
).
Contains
(
x
.
OrderId
)).
Sum
(
x
=>
x
.
CommissionMoeny
);
TotalYj
-=
bdCommTotal
;
// 需要减去 返佣的部分
...
...
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