Browse Source

GENGX

master
fyf 2 years ago
parent
commit
558942e161
1 changed files with 2 additions and 2 deletions
  1. +2
    -2
      DataVApi.Order/OrderProvider.cs

+ 2
- 2
DataVApi.Order/OrderProvider.cs View File

@@ -153,7 +153,7 @@ WHERE
doc.LoadXml(Temps[i]);
loc.Add(new LocSaleDto
{
Count = data[i].Counts,
Count = data[i].Count,
City = doc.SelectSingleNode("//province")?.InnerText + doc.SelectSingleNode("//city")?.InnerText
});
}
@@ -162,7 +162,7 @@ WHERE
{
Data = loc.GroupBy(t => t.City).Select(t => new LocSaleDto
{
City = t.Key,
City = string.IsNullOrEmpty(t.Key)?"未知": t.Key,
Count = t.Sum(t => t.Count)
})
};


Loading…
Cancel
Save