Commit e152f19b by guanzhenshan

发货重量差异增加发货仓库导出

parent 29f75e0a
......@@ -129,13 +129,13 @@ namespace Bailun.DC.Web.Areas.Reports.Controllers
{
var obj = new Services.OrdersServices().ListWeighDiff(shipstart, shipend, min, max, sku);
var colNames = new List<string> {"日期","配货单号","sku","sku重量", "发货重量", "重量差异值"};
var colNames = new List<string> {"日期","配货单号","sku","sku重量", "发货重量", "重量差异值","发货仓库"};
var list = new List<string>();
foreach (var item in obj)
{
list.Add(item.day.ToString("yyyy-MM-dd") + "|" + item.pick_order_id + "|" + item.bailun_sku + "|" + item.weight + "|" + item.bailun_sku_outbound_weight + "|" +
item.diffweigh
item.diffweigh+"|"+item.warehouse_name
);
}
......
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