Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
D
data-center-auto
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
data-center-auto
Commits
b4385f66
Commit
b4385f66
authored
Mar 24, 2021
by
泽锋 李
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
利润分析导新增库容字段
parent
716770cd
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
7 additions
and
1 deletion
+7
-1
SkuAutoTurnServices.cs
AutoTurnOver.Services/SkuAutoTurnServices.cs
+7
-1
No files found.
AutoTurnOver.Services/SkuAutoTurnServices.cs
View file @
b4385f66
...
...
@@ -748,7 +748,8 @@ namespace AutoTurnOver.Services
orows
+=
list
.
Count
();
DataTable
table
=
new
DataTable
();
string
[]
cols
=
new
string
[]
{
"sku"
,
"产品名称"
,
"商品编码"
,
"国家"
,
"仓库类型"
,
"仓库"
,
"默认调拨方式"
,
"180天日均"
,
"90天日均"
,
"30天日均"
,
"7天日均"
,
"加权日均销量"
,
"预测日均销量"
,
"采购单价"
,
"单位重量"
,
"实际建议周转数"
,
string
[]
cols
=
new
string
[]
{
"sku"
,
"产品名称"
,
"商品编码"
,
"国家"
,
"仓库类型"
,
"仓库"
,
"默认调拨方式"
,
"180天日均"
,
"90天日均"
,
"30天日均"
,
"7天日均"
,
"加权日均销量"
,
"预测日均销量"
,
"采购单价"
,
"Fba库容值"
,
"可用库容值"
,
"空运票数占比"
,
"空运数量占比"
,
"单位重量"
,
"实际建议周转数"
,
"实际建议周转金额"
,
"实际周转数"
,
"实际周转运费"
,
"实际运费单价"
,
"海运周转数(推荐海运)"
,
"海运周转金额"
,
"海运周转运费"
,
"空运周转数(推荐空运)"
,
"空运周转金额"
,
"空运周转运费"
,
"实际-海运运费差值"
,
"实际-海运周转采购金额差值"
,
"实际-空运运费差值"
,
"实际-空运周转采购金额差值"
,
"海运-空运运费差值"
,
"海运-空运周转采购金额差值"
,
"安全库存数量"
,
"空运周转天数"
,
"实际周转天数"
,
"海运周转天数"
,
"30天预测销量海运运费-实际周转运费金额"
,
"30天预测销量空运运费-实际周转运费金额"
,
"30天预测销量空运运费-海运周转运费金额"
...
...
@@ -764,6 +765,11 @@ namespace AutoTurnOver.Services
{
DataRow
row
=
table
.
NewRow
();
row
[
"Fba库容值"
]
=
itemData
.
fba_storage_capacity
;
row
[
"可用库容值"
]
=
itemData
.
storage_capacity
;
row
[
"空运票数占比"
]
=
itemData
.
order_count_3_radio
;
row
[
"空运数量占比"
]
=
itemData
.
product_count_3_radio
;
row
[
"sku"
]
=
itemData
.
bailun_sku
;
row
[
"产品名称"
]
=
itemData
.
product_name
;
row
[
"商品编码"
]
=
itemData
.
product_code
;
...
...
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