Windows: Prettify formatting for numbers
All checks were successful
Test / Run tests (push) Successful in 2m5s

This commit is contained in:
2024-09-25 12:19:25 +02:00
parent 1fc736ce16
commit 579ed53487
5 changed files with 8 additions and 8 deletions

View File

@ -206,7 +206,7 @@ namespace Elwig.Windows {
} else {
await ElwigData.Export(path, deliveries, [$"{Utils.CurrentLastSeason}", $"Zweigstelle {App.BranchName}"]);
await Utils.UploadExportData(path, App.Config.SyncUrl, App.Config.SyncUsername, App.Config.SyncPassword);
MessageBox.Show($"Hochladen von {deliveries.Count} Lieferungen erfolgreich!", "Lieferungen hochladen",
MessageBox.Show($"Hochladen von {deliveries.Count:N0} Lieferungen erfolgreich!", "Lieferungen hochladen",
MessageBoxButton.OK, MessageBoxImage.Information);
}
} catch (HttpRequestException exc) {