Commit 6043b7ee by zhoujinhui

实时库存接口新增shopify销量统计

parent bd9a10de
...@@ -436,6 +436,7 @@ t6.history_sevenday_sales_ebay,t6.history_fourteenday_sales_ebay,t6.history_thir ...@@ -436,6 +436,7 @@ t6.history_sevenday_sales_ebay,t6.history_fourteenday_sales_ebay,t6.history_thir
t6.history_sevenday_sales_aliexpress,t6.history_fourteenday_sales_aliexpress,t6.history_thirtyday_sales_aliexpress, t6.history_sevenday_sales_aliexpress,t6.history_fourteenday_sales_aliexpress,t6.history_thirtyday_sales_aliexpress,
t6.history_sevenday_sales_amazon,t6.history_fourteenday_sales_amazon,t6.history_thirtyday_sales_amazon, t6.history_sevenday_sales_amazon,t6.history_fourteenday_sales_amazon,t6.history_thirtyday_sales_amazon,
t6.history_sevenday_sales_walmart,t6.history_fourteenday_sales_walmart,t6.history_thirtyday_sales_walmart, t6.history_sevenday_sales_walmart,t6.history_fourteenday_sales_walmart,t6.history_thirtyday_sales_walmart,
t6.history_sevenday_sales_shopify,t6.history_fourteenday_sales_shopify,t6.history_thirtyday_sales_shopify,
dbw.area_name, dbw.area_name,
dbw.hq_type, dbw.hq_type,
......
...@@ -577,6 +577,19 @@ namespace AutoTurnOver.Models ...@@ -577,6 +577,19 @@ namespace AutoTurnOver.Models
/// </summary> /// </summary>
public decimal history_thirtyday_sales_walmart { get; set; } public decimal history_thirtyday_sales_walmart { get; set; }
/// <summary>
/// shopify 过去7日销量(日均)
/// </summary>
public decimal history_sevenday_sales_shopify { get; set; }
/// <summary>
/// shopify 过去14日销量(日均)
/// </summary>
public decimal history_fourteenday_sales_shopify { get; set; }
/// <summary>
/// shopify 过去30日销量(日均)
/// </summary>
public decimal history_thirtyday_sales_shopify { get; set; }
public string category_simple_name { get; set; } public string category_simple_name { get; set; }
......
...@@ -292,6 +292,7 @@ namespace AutoTurnOver.Services ...@@ -292,6 +292,7 @@ namespace AutoTurnOver.Services
"采购陆运在途","采购海运在途","采购空运在途","采购铁路在途","调拨陆运在途","调拨海运在途","调拨空运在途","调拨铁路在途", "采购陆运在途","采购海运在途","采购空运在途","采购铁路在途","调拨陆运在途","调拨海运在途","调拨空运在途","调拨铁路在途",
"调拨最快到货时间","调拨最快到货单号","调拨最快到货数量","调拨最快到货跟踪号","调拨最快到货运输方式","调拨最快到到货物流","周转表更新时间", "调拨最快到货时间","调拨最快到货单号","调拨最快到货数量","调拨最快到货跟踪号","调拨最快到货运输方式","调拨最快到到货物流","周转表更新时间",
"供应链长度天数","供应链预测销量","供应链预测缺货","供应链预测冗余","walmart最近7天日均销量","walmart最近14天日均销量","walmart最近30天日均销量","库存更新时间", "供应链长度天数","供应链预测销量","供应链预测缺货","供应链预测冗余","walmart最近7天日均销量","walmart最近14天日均销量","walmart最近30天日均销量","库存更新时间",
"shopify最近7天日均销量", "shopify最近14天日均销量", "shopify最近30天日均销量",
"在库+调拨单在途数量","在库+调拨单在途金额","在库+在途金额(总)","产品线", "在库+调拨单在途数量","在库+调拨单在途金额","在库+在途金额(总)","产品线",
"头程费/一个单位","头程费/kg","产品特性","最近7天的订单数量","清货状态" "头程费/一个单位","头程费/kg","产品特性","最近7天的订单数量","清货状态"
}; };
...@@ -318,6 +319,10 @@ namespace AutoTurnOver.Services ...@@ -318,6 +319,10 @@ namespace AutoTurnOver.Services
row["walmart最近14天日均销量"] = itemData.history_fourteenday_sales_walmart; row["walmart最近14天日均销量"] = itemData.history_fourteenday_sales_walmart;
row["walmart最近30天日均销量"] = itemData.history_thirtyday_sales_walmart; row["walmart最近30天日均销量"] = itemData.history_thirtyday_sales_walmart;
row["shopify最近7天日均销量"] = itemData.history_sevenday_sales_shopify;
row["shopify最近14天日均销量"] = itemData.history_fourteenday_sales_shopify;
row["shopify最近30天日均销量"] = itemData.history_thirtyday_sales_shopify;
row["供应链长度天数"] = itemData.turnover_days; row["供应链长度天数"] = itemData.turnover_days;
row["供应链预测销量"] = itemData.turnover_days_quantity; row["供应链预测销量"] = itemData.turnover_days_quantity;
row["供应链预测缺货"] = itemData.turnover_days_outofstock_quantity; row["供应链预测缺货"] = itemData.turnover_days_outofstock_quantity;
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment