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
8b7e5c8a
Commit
8b7e5c8a
authored
Jun 08, 2023
by
jianshuqin
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
调整平台利润取数逻辑
parent
93f22b70
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
5 additions
and
5 deletions
+5
-5
OrdersController.cs
Bailun.DC.Web/Areas/Reports/Controllers/OrdersController.cs
+5
-5
No files found.
Bailun.DC.Web/Areas/Reports/Controllers/OrdersController.cs
View file @
8b7e5c8a
...
@@ -1733,7 +1733,7 @@ namespace Bailun.DC.Web.Areas.Reports.Controllers
...
@@ -1733,7 +1733,7 @@ namespace Bailun.DC.Web.Areas.Reports.Controllers
listRefund
=
_service
.
ListPlatformRefund
(
dtstart
,
dtend
,
companyid
,
platform
,
website
,
currency
.
ToUpper
()
==
"USD"
,
false
,
producttype
,
skusource
,
shippingstrategy
,
statistictype
);
//不包含未发货的退款金额
listRefund
=
_service
.
ListPlatformRefund
(
dtstart
,
dtend
,
null
,
platform
,
website
,
currency
.
ToUpper
()
==
"USD"
,
false
,
producttype
,
skusource
,
shippingstrategy
,
statistictype
);
//不包含未发货的退款金额
//针对SKU FJH-L-2 做特殊处理
//针对SKU FJH-L-2 做特殊处理
if
(
producttype
.
Length
>
0
)
if
(
producttype
.
Length
>
0
)
...
@@ -1806,7 +1806,7 @@ namespace Bailun.DC.Web.Areas.Reports.Controllers
...
@@ -1806,7 +1806,7 @@ namespace Bailun.DC.Web.Areas.Reports.Controllers
{
{
string
[]
originOrderIds
=
null
;
string
[]
originOrderIds
=
null
;
result
=
_service
.
ListPlatformProfit
(
platform
,
website
,
start
,
end
,
shipstart
,
shipend
,
currency
.
ToUpper
()
==
"USD"
,
companyid
,
skucategoryids
,
producttype
,
skusource
,
shippingstrategy
,
statistictype
,
skunewcategory
,
null
,
null
,
null
,
null
,
out
originOrderIds
);
result
=
_service
.
ListPlatformProfit
(
platform
,
website
,
start
,
end
,
shipstart
,
shipend
,
currency
.
ToUpper
()
==
"USD"
,
companyid
,
skucategoryids
,
producttype
,
skusource
,
shippingstrategy
,
statistictype
,
skunewcategory
,
null
,
null
,
null
,
null
,
out
originOrderIds
);
listRefund
=
_service
.
ListPlatformRefund
(
dtstart
,
dtend
,
companyid
,
platform
,
website
,
currency
.
ToUpper
()
==
"USD"
,
true
,
producttype
,
skusource
,
shippingstrategy
,
statistictype
,
originOrderIds
);
//包含未发货的退款金额
listRefund
=
_service
.
ListPlatformRefund
(
dtstart
,
dtend
,
null
,
platform
,
website
,
currency
.
ToUpper
()
==
"USD"
,
true
,
producttype
,
skusource
,
shippingstrategy
,
statistictype
,
originOrderIds
);
//包含未发货的退款金额
//针对SKU FJH-L-2 做特殊处理
//针对SKU FJH-L-2 做特殊处理
if
(
producttype
.
Length
>
0
)
if
(
producttype
.
Length
>
0
)
...
@@ -1893,13 +1893,13 @@ namespace Bailun.DC.Web.Areas.Reports.Controllers
...
@@ -1893,13 +1893,13 @@ namespace Bailun.DC.Web.Areas.Reports.Controllers
result
.
AddRange
(
fbaResult
);
result
.
AddRange
(
fbaResult
);
}
}
listRefund
=
_service
.
ListPlatformRefund
(
dtstart
,
dtend
,
companyid
,
platform
,
website
,
currency
.
ToUpper
()
==
"USD"
,
false
,
null
,
null
,
null
,
statistictype
);
//不包含未发货的退款金额
listRefund
=
_service
.
ListPlatformRefund
(
dtstart
,
dtend
,
null
,
platform
,
website
,
currency
.
ToUpper
()
==
"USD"
,
false
,
null
,
null
,
null
,
statistictype
);
//不包含未发货的退款金额
}
}
else
else
{
{
string
[]
originOrderIds
=
null
;
string
[]
originOrderIds
=
null
;
result
=
_service
.
ListPlatformProfit
(
platform
,
website
,
start
,
end
,
shipstart
,
shipend
,
currency
.
ToUpper
()
==
"USD"
,
companyid
,
skucategoryids
,
null
,
null
,
null
,
statistictype
,
skunewcategory
,
null
,
null
,
null
,
null
,
out
originOrderIds
);
result
=
_service
.
ListPlatformProfit
(
platform
,
website
,
start
,
end
,
shipstart
,
shipend
,
currency
.
ToUpper
()
==
"USD"
,
null
,
skucategoryids
,
null
,
null
,
null
,
statistictype
,
skunewcategory
,
null
,
null
,
null
,
null
,
out
originOrderIds
);
listRefund
=
_service
.
ListPlatformRefund
(
dtstart
,
dtend
,
companyid
,
platform
,
website
,
currency
.
ToUpper
()
==
"USD"
,
true
,
null
,
null
,
null
,
statistictype
,
originOrderIds
);
//包含未发货的退款金额
listRefund
=
_service
.
ListPlatformRefund
(
dtstart
,
dtend
,
null
,
platform
,
website
,
currency
.
ToUpper
()
==
"USD"
,
true
,
null
,
null
,
null
,
statistictype
,
originOrderIds
);
//包含未发货的退款金额
}
}
if
(
statistictype
==
0
)
if
(
statistictype
==
0
)
...
...
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