Merge branch 'localization-seeding' into feature-globalization

This commit is contained in:
Ed Charbeneau 2020-07-20 12:42:38 -04:00
Родитель 6effc2d125 cd667f7450
Коммит 3380bfd5f2
1 изменённых файлов: 2 добавлений и 1 удалений

Просмотреть файл

@ -1896,6 +1896,7 @@ namespace BlazingCoffee.Server.Data
var importPath = Path.Combine(environment.WebRootPath, @"imports\finserv.csv");
CultureInfo enUSCulture = new CultureInfo("en-US"); // Fixes data import for non-us users
using var reader = new StreamReader(importPath);
using var csv = new CsvReader(reader, CultureInfo.InvariantCulture);
var records = csv.GetRecords<SalesImportDTO>();
@ -1912,7 +1913,7 @@ namespace BlazingCoffee.Server.Data
Region = dto.Region,
StoreId = dto.StoreId,
TransactionId = dto.TransactionId,
TransactionDate = DateTime.Parse($"{dto.TransactionDate} {dto.TransactionHour}")
TransactionDate = DateTime.Parse($"{dto.TransactionDate} {dto.TransactionHour}", enUSCulture.DateTimeFormat)
});
context.AddRange(import);