Commit 85f805ec by 泽锋 李

fab库存导出新增review分数和个数

parent 375b8c3a
......@@ -437,6 +437,8 @@ namespace AutoTurnOver.Models
public decimal? sum_mid_amount { get; set; }
public decimal? usable_stock_amount { get; set; }
public decimal? sum_amount { get; set; }
public decimal? review_count { get; set; }
public decimal? review_score { get; set; }
}
......
......@@ -407,6 +407,9 @@ namespace AutoTurnOver.Services
foreach (var itemData in list)
{
DataRow row = table.NewRow();
row["昨日review分数"] = itemData.review_score;
row["昨日reivew个数"] = itemData.review_count;
row["采购陆运在途"] = itemData.quantity_land_purchase;
row["采购海运在途"] = itemData.quantity_ocean_purchase;
row["采购空运在途"] = itemData.quantity_air_purchase;
......
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