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
7194b72b
Commit
7194b72b
authored
Mar 05, 2021
by
泽锋 李
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
fix
parent
0cc3b764
Show whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
6 additions
and
6 deletions
+6
-6
dc_auto_turnover.cs
AutoTurnOver.DB/dc_auto_turnover.cs
+2
-2
dc_base_forecast_history.cs
AutoTurnOver.DB/dc_base_forecast_history.cs
+4
-4
No files found.
AutoTurnOver.DB/dc_auto_turnover.cs
View file @
7194b72b
...
...
@@ -1543,7 +1543,7 @@ where t1.gmt_modified>=@btime and t1.gmt_modified<=@etime
date_str
=
this_time_end
.
ToString
(
"yyyy-MM-dd"
)
})
??
new
dc_base_forecast_history
()
{
};
modalData
.
quantity_final_advise_ocean
=
null
;
if
(
dc_base_forecast_history_ocean_data
.
id
>
0
)
if
(
dc_base_forecast_history_ocean_data
.
turnover_sales
>
0
)
{
modalData
.
quantity_final_advise_ocean
=(
int
)
Math
.
Round
(
(
dc_base_forecast_history_ocean_data
.
turnover_sales
+
dc_base_forecast_history_ocean_data
.
quantity_safe_inventory
));
}
...
...
@@ -1573,7 +1573,7 @@ where t1.gmt_modified>=@btime and t1.gmt_modified<=@etime
date_str
=
this_time_end
.
ToString
(
"yyyy-MM-dd"
)
})??
new
dc_base_forecast_history
()
{
};
modalData
.
quantity_final_advise_air
=
null
;
if
(
dc_base_forecast_history_air_data
.
id
>
0
)
if
(
dc_base_forecast_history_air_data
.
turnover_sales
>
0
)
{
modalData
.
quantity_final_advise_air
=
(
dc_base_forecast_history_air_data
.
turnover_sales
+
dc_base_forecast_history_air_data
.
quantity_safe_inventory
);
}
...
...
AutoTurnOver.DB/dc_base_forecast_history.cs
View file @
7194b72b
...
...
@@ -29,9 +29,9 @@ namespace AutoTurnOver.DB
public
int
transfer_delivery
{
get
;
set
;
}
public
int
transfer_bale_delivery
{
get
;
set
;
}
public
int
abroad_inbound_delivery
{
get
;
set
;
}
public
int
turnover_sales
{
get
;
set
;
}
public
int
usable_stock
{
get
;
set
;
}
public
int
quantity_transfer
{
get
;
set
;
}
public
int
quantity_purchase
{
get
;
set
;
}
public
decimal
turnover_sales
{
get
;
set
;
}
public
decimal
usable_stock
{
get
;
set
;
}
public
decimal
quantity_transfer
{
get
;
set
;
}
public
decimal
quantity_purchase
{
get
;
set
;
}
}
}
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