Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
D
DataCenter_Core2.1_20190520
Overview
Overview
Details
Activity
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
bltdc
DataCenter_Core2.1_20190520
Commits
1471129d
Commit
1471129d
authored
Jan 21, 2021
by
guanzhenshan
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
解决付现不对的问题
parent
47af129c
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
1 addition
and
1 deletion
+1
-1
Services.cs
Bailun.DC.MonthSaleProfit/Services.cs
+1
-1
No files found.
Bailun.DC.MonthSaleProfit/Services.cs
View file @
1471129d
...
@@ -641,7 +641,7 @@ join dc_base_warehouse t3 on t1.warehouse_code=t3.warehouse_code
...
@@ -641,7 +641,7 @@ join dc_base_warehouse t3 on t1.warehouse_code=t3.warehouse_code
//付现销售费用
//付现销售费用
m
.
managecost_bl_xg
=
(
list
.
Where
(
a
=>
a
.
company_name
.
Contains
(
"香港百伦"
))?.
Sum
(
a
=>
a
.
amount_rmb
)
??
0
);
m
.
managecost_bl_xg
=
(
list
.
Where
(
a
=>
a
.
company_name
.
Contains
(
"香港百伦"
))?.
Sum
(
a
=>
a
.
amount_rmb
)
??
0
);
m
.
fee_paycash_sales
=
list
.
Where
(
a
=>
a
.
fee_super_type
==
"推广费"
||
a
.
fee_super_type
==
"物流费用"
)?.
Sum
(
a
=>
a
.
amount_rmb
)
??
0
;
m
.
fee_paycash_sales
=
list
.
Where
(
a
=>
(
a
.
fee_super_type
==
"推广费"
||
a
.
fee_super_type
==
"物流费用"
)
&&
!
a
.
company_name
.
Contains
(
"香港百伦"
)
)?.
Sum
(
a
=>
a
.
amount_rmb
)
??
0
;
//付现销售费用加上香港百伦的管理成本金额
//付现销售费用加上香港百伦的管理成本金额
//Add by Allan at 20210102
//Add by Allan at 20210102
m
.
fee_paycash_sales
+=
m
.
managecost_bl_xg
;
m
.
fee_paycash_sales
+=
m
.
managecost_bl_xg
;
...
...
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