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
7e46bb24
Commit
7e46bb24
authored
Mar 06, 2021
by
泽锋 李
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
利润计算新增计算过程
parent
8056813c
Expand all
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
28 additions
and
0 deletions
+28
-0
dc_auto_turnover.cs
AutoTurnOver.DB/dc_auto_turnover.cs
+0
-0
transfer_profit_modal_dto.cs
AutoTurnOver.Models/Report/transfer_profit_modal_dto.cs
+23
-0
transfer_profit_dto.cs
AutoTurnOver.Models/transfer_profit_dto.cs
+5
-0
No files found.
AutoTurnOver.DB/dc_auto_turnover.cs
View file @
7e46bb24
This diff is collapsed.
Click to expand it.
AutoTurnOver.Models/Report/transfer_profit_modal_dto.cs
View file @
7e46bb24
...
...
@@ -12,6 +12,11 @@ namespace AutoTurnOver.Models.Report
public
int
?
quantity_final_advise
;
/// <summary>
/// 30天的预计周转数
/// </summary>
public
int
?
quantity_final_advise_30
;
/// <summary>
/// 实际周转数
/// </summary>
public
int
?
turnover
;
...
...
@@ -20,6 +25,10 @@ namespace AutoTurnOver.Models.Report
/// 实际建议周转金额
/// </summary>
public
decimal
?
quantity_final_advise_amount
;
/// <summary>
/// 30天的预计周转金额
/// </summary>
public
decimal
?
quantity_final_advise_amount_30
;
/// <summary>
/// 实际周转金额
...
...
@@ -40,15 +49,25 @@ namespace AutoTurnOver.Models.Report
/// 实际周转运费
/// </summary>
public
decimal
?
freight_price
;
/// <summary>
/// 30 天的实际周转运费
/// </summary>
public
decimal
?
freight_price_30
;
/// <summary>
/// 海运周转数(推荐海运)
/// </summary>
public
int
?
quantity_final_advise_ocean
;
/// <summary>
/// 海运周转运费
/// </summary>
public
decimal
?
freight_price_ocean
;
/// <summary>
/// 30天海运周转运费
/// </summary>
public
decimal
?
freight_price_ocean_30
;
/// <summary>
/// 海运运费单价
...
...
@@ -77,6 +96,10 @@ namespace AutoTurnOver.Models.Report
/// 空运周转运费
/// </summary>
public
decimal
?
freight_price_air
;
/// <summary>
/// 30天空运周转运费
/// </summary>
public
decimal
?
freight_price_air_30
;
/// <summary>
/// 实际-空运运费差值
...
...
AutoTurnOver.Models/transfer_profit_dto.cs
View file @
7e46bb24
...
...
@@ -14,6 +14,11 @@ namespace AutoTurnOver.Models
public
class
day_dto
{
public
bool
has_int
{
get
;
set
;
}
/// <summary>
/// 计算公式
/// </summary>
public
string
formula
{
get
;
set
;
}
public
DateTime
date
{
get
;
set
;
}
public
string
date_str
{
get
{
return
date
.
ToString
(
"MM-dd"
+
$"(
{
Sinicization
(
date
.
DayOfWeek
)}
)"
);
...
...
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