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
075f7de0
Commit
075f7de0
authored
Jul 09, 2020
by
泽锋 李
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
fix
parent
359d6348
Expand all
Show whitespace changes
Inline
Side-by-side
Showing
7 changed files
with
34 additions
and
3 deletions
+34
-3
appsettings.dev.json
AutoGeneratePurchaseAdvise/appsettings.dev.json
+2
-1
appsettings.json
AutoGeneratePurchaseAdvise/appsettings.json
+2
-1
appsettings.prod.json
AutoGeneratePurchaseAdvise/appsettings.prod.json
+3
-1
dc_auto_first_order_sku_dao.cs
AutoTurnOver.DB/dc_auto_first_order_sku_dao.cs
+0
-0
pds_sku_sales_dto.cs
AutoTurnOver.Models/ApiDto/pds_sku_sales_dto.cs
+23
-0
dc_auto_first_order_sku.cs
AutoTurnOver.Models/dc_auto_first_order_sku.cs
+3
-0
Program.cs
ShortagePush/Program.cs
+1
-0
No files found.
AutoGeneratePurchaseAdvise/appsettings.dev.json
View file @
075f7de0
...
...
@@ -9,5 +9,6 @@
"CdnUrl"
:
"http://imgcache.bailuntec.com"
},
"QiYeJiQiRen"
:
"https://qyapi.weixin.qq.com/cgi-bin/webhook/send?key=5fa4c1d5-ce65-4e8a-9ae9-a0d689a13b65"
,
"GetSchedulings"
:
"http://oa.bailuntec.com/Api/Cq/GetSchedulings?userID=1922"
"GetSchedulings"
:
"http://oa.bailuntec.com/Api/Cq/GetSchedulings?userID=1922"
,
"postaveragesales"
:
"http://doc.bailuntec.com:6032/postaveragesales"
}
AutoGeneratePurchaseAdvise/appsettings.json
View file @
075f7de0
...
...
@@ -9,5 +9,6 @@
"CdnUrl"
:
"http://imgcache.bailuntec.com"
},
"QiYeJiQiRen"
:
"https://qyapi.weixin.qq.com/cgi-bin/webhook/send?key=5fa4c1d5-ce65-4e8a-9ae9-a0d689a13b65"
,
"GetSchedulings"
:
"http://oa.bailuntec.com/Api/Cq/GetSchedulings?userID=1922"
"GetSchedulings"
:
"http://oa.bailuntec.com/Api/Cq/GetSchedulings?userID=1922"
,
"postaveragesales"
:
"http://10.0.6.27/pds/PdsOpenApi/postaveragesales"
}
AutoGeneratePurchaseAdvise/appsettings.prod.json
View file @
075f7de0
...
...
@@ -9,5 +9,6 @@
"CdnUrl"
:
"http://imgcache.bailuntec.com"
},
"QiYeJiQiRen"
:
"https://qyapi.weixin.qq.com/cgi-bin/webhook/send?key=5fa4c1d5-ce65-4e8a-9ae9-a0d689a13b65"
,
"GetSchedulings"
:
"http://oa.bailuntec.com/Api/Cq/GetSchedulings?userID=1922"
"GetSchedulings"
:
"http://oa.bailuntec.com/Api/Cq/GetSchedulings?userID=1922"
,
"postaveragesales"
:
"http://10.0.6.27/pds/PdsOpenApi/postaveragesales"
}
\ No newline at end of file
AutoTurnOver.DB/dc_auto_first_order_sku_dao.cs
View file @
075f7de0
This diff is collapsed.
Click to expand it.
AutoTurnOver.Models/ApiDto/pds_sku_sales_dto.cs
0 → 100644
View file @
075f7de0
using
System
;
using
System.Collections.Generic
;
using
System.Text
;
namespace
AutoTurnOver.Models.ApiDto
{
/// <summary>
/// 从pds获取的sku销量
/// </summary>
public
class
pds_sku_sales_dto
{
public
string
procudeCode
{
get
;
set
;
}
public
string
sku
{
get
;
set
;
}
/// <summary>
/// 累积销量
/// </summary>
public
decimal
salesVolume
{
get
;
set
;
}
/// <summary>
/// 日均销量
/// </summary>
public
decimal
averageSales
{
get
;
set
;
}
}
}
AutoTurnOver.Models/dc_auto_first_order_sku.cs
View file @
075f7de0
...
...
@@ -84,6 +84,9 @@ namespace AutoTurnOver.Models
{
public
string
bailun_sku
{
get
;
set
;
}
public
decimal
quantity
{
get
;
set
;
}
public
decimal
share_quantity
{
get
;
set
;
}
public
StringBuilder
remarks
{
get
;
set
;
}
}
}
ShortagePush/Program.cs
View file @
075f7de0
...
...
@@ -14,6 +14,7 @@ namespace ShortagePush
Console
.
WriteLine
(
"推送缺货数据服务"
);
//new ReportServices().ShortagePush();
//new ReportServices().ShortagePush(platform: "walmart");
new
ReportServices
().
ShortagePush
();
var
builder
=
new
HostBuilder
().
ConfigureServices
((
hostContext
,
services
)
=>
{
services
.
AddHostedService
<
ShortagePushBackgroundService
>();
...
...
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