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
17b48173
Commit
17b48173
authored
May 09, 2023
by
lizefeng
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
亚马逊仓储费,新增sku字段
parent
dde3b10e
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
3 additions
and
0 deletions
+3
-0
dc_profit_business_amazon_storage_fee.cs
AutoTurnOver.Models/dc_profit_business_amazon_storage_fee.cs
+1
-0
AmazonDataSynchroService.cs
AutoTurnOver.Services/AmazonDataSynchroService.cs
+2
-0
No files found.
AutoTurnOver.Models/dc_profit_business_amazon_storage_fee.cs
View file @
17b48173
...
@@ -16,6 +16,7 @@ namespace AutoTurnOver.Models
...
@@ -16,6 +16,7 @@ namespace AutoTurnOver.Models
public
DateTime
report_end_date
{
get
;
set
;
}
public
DateTime
report_end_date
{
get
;
set
;
}
public
string
account
{
get
;
set
;
}
public
string
account
{
get
;
set
;
}
public
string
asin
{
get
;
set
;
}
public
string
asin
{
get
;
set
;
}
public
string
sku
{
get
;
set
;
}
public
string
site
{
get
;
set
;
}
public
string
site
{
get
;
set
;
}
public
decimal
fee
{
get
;
set
;
}
public
decimal
fee
{
get
;
set
;
}
public
decimal
?
exchange_cny
{
get
;
set
;
}
public
decimal
?
exchange_cny
{
get
;
set
;
}
...
...
AutoTurnOver.Services/AmazonDataSynchroService.cs
View file @
17b48173
...
@@ -889,6 +889,7 @@ namespace AutoTurnOver.Services
...
@@ -889,6 +889,7 @@ namespace AutoTurnOver.Services
fee_type
=
"月度仓储费"
,
fee_type
=
"月度仓储费"
,
account
=
pamsAccount
.
Account
,
account
=
pamsAccount
.
Account
,
asin
=
row
.
DataRowToString
(
"asin"
),
asin
=
row
.
DataRowToString
(
"asin"
),
sku
=
row
.
DataRowToString
(
"fnsku"
),
report_end_date
=
ana_task
.
etime
.
Value
report_end_date
=
ana_task
.
etime
.
Value
};
};
storageFee
.
fee
=
row
.
DataRowToNumber
(
"estimated_monthly_storage_fee"
)
??
0
;
storageFee
.
fee
=
row
.
DataRowToNumber
(
"estimated_monthly_storage_fee"
)
??
0
;
...
@@ -1012,6 +1013,7 @@ namespace AutoTurnOver.Services
...
@@ -1012,6 +1013,7 @@ namespace AutoTurnOver.Services
fee_type
=
"超长仓储费"
,
fee_type
=
"超长仓储费"
,
account
=
pamsAccount
.
Account
,
account
=
pamsAccount
.
Account
,
asin
=
row
.
DataRowToString
(
"asin"
),
asin
=
row
.
DataRowToString
(
"asin"
),
sku
=
row
.
DataRowToString
(
"fnsku"
),
report_end_date
=
reportData
.
DataEndTime
??
new
DateTime
(
1991
,
1
,
1
)
report_end_date
=
reportData
.
DataEndTime
??
new
DateTime
(
1991
,
1
,
1
)
};
};
storageFee
.
fee
=
row
.
DataRowToNumber
(
"estimated-ltsf-next-charge"
)
??
(
row
.
DataRowToNumber
(
"estimated-storage-cost-next-month"
)
??
0
);
storageFee
.
fee
=
row
.
DataRowToNumber
(
"estimated-ltsf-next-charge"
)
??
(
row
.
DataRowToNumber
(
"estimated-storage-cost-next-month"
)
??
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