Commit cc444c51 by 泽锋 李

实时库存新增产品标签

parent 5a4e47b3
......@@ -313,6 +313,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_amazon,t6.history_fourteenday_sales_amazon,t6.history_thirtyday_sales_amazon,
t3.moq,
t3.tags,
t3.brand,
t8.oneday_sales,
t3.`status` as 'sku_status'
......
......@@ -166,6 +166,7 @@ namespace AutoTurnOver.Models
public class dc_base_stock_dto : dc_base_stock
{
public string brand { get; set; }
public string tags { get; set; }
public decimal? moq { get; set; }
/// <summary>
/// 昨日销量
......
......@@ -102,7 +102,7 @@ namespace AutoTurnOver.Services
,"待上架","可配库存","销售可用库存(聚合)","销售可用库存(私有)","销售可用库存(共享)","在仓库存(共享)","在仓库存(私有)","在仓库存(聚合)","仓库占用(共享)"
,"仓库占用(私有)","仓库占用(聚合)","活动占用","单占用(私有)","订单占用(共享)","订单占用(聚合)","环球更新时间","供应商","采购员","重量","单价","已发货库存","实时缺货","是否侵权",
"过去7日日均销量", "过去14日日均销量", "过去30日日均销量", "过去7日Eaby日均销量", "过去14日Eaby日均销量", "过去30日Eaby日均销量", "过去7日速卖通日均销量", "过去14日速卖通日均销量", "过去30日速卖通日均销量",
"监控状态","开发时间","昨日销量","停售状态","amazon最近7天日均销量","amazon最近14天日均销量","amazon最近30天日均销量","moq","品牌"
"监控状态","开发时间","昨日销量","停售状态","amazon最近7天日均销量","amazon最近14天日均销量","amazon最近30天日均销量","moq","品牌","标签"
};
foreach (var item in cols)
{
......@@ -176,6 +176,7 @@ namespace AutoTurnOver.Services
row["停售状态"] = itemData.sku_status_str;
row["moq"] = itemData.moq;
row["品牌"] = itemData.brand;
row["标签"] = itemData.tags;
table.Rows.Add(row);
}
......
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