Commit ffe5a564 by 泽锋 李

fix

parent f13a6a58
......@@ -3061,7 +3061,7 @@ where t1.bailun_sku = t2.bailun_sku and t1.week_tag=@week_tag;
var datas_web_site_group = datas.GroupBy(s => s.web_site).ToList();
foreach (var websiteGroupItem in datas_web_site_group)
foreach (var websiteGroupItem in datas_web_site_group.OrderBy(s=>s.Key))
{
r_datas.Add(new report_stock_week_view_dto { web_site = websiteGroupItem.Key, tag = "出单sku数量占比", weeks = new List<report_stock_week_view_dto.week>() { } });
r_datas.Add(new report_stock_week_view_dto { web_site = websiteGroupItem.Key, tag = "不出单数量sku占比", weeks = new List<report_stock_week_view_dto.week>() { } });
......
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