diff --git a/.vscode/launch.json b/.vscode/launch.json index 712bc83..329ea7b 100644 --- a/.vscode/launch.json +++ b/.vscode/launch.json @@ -6,7 +6,7 @@ "type": "coreclr", "request": "launch", "preLaunchTask": "build", - "program": "${workspaceFolder}/src/Duempelkas.Desktop/bin/Debug/net10.0/Duempelkas.Desktop.dll", + "program": "${workspaceFolder}/src/Duempelkas.Desktop/bin/Debug/net10.0/Duempelkas.Desktop.exe", "args": [], "cwd": "${workspaceFolder}/src/Duempelkas.Desktop", "stopAtEntry": false, diff --git a/src/Duempelkas.App/Pages/Dashboard.razor b/src/Duempelkas.App/Pages/Dashboard.razor index 8a40306..2358eca 100644 --- a/src/Duempelkas.App/Pages/Dashboard.razor +++ b/src/Duempelkas.App/Pages/Dashboard.razor @@ -2,8 +2,11 @@ @inject IAccountService AccountService @inject IBackupService BackupService @inject ISettingsService SettingsService +@inject IPdfStatementService PdfStatementService +@inject IFileSaveService FileSaveService @inject IJSRuntime JsRuntime @inject NavigationManager NavigationManager +@using System.Globalization
@@ -29,8 +32,22 @@ + | +
+ @if (accounts != null && accounts.Any()) + { +
+ Summe aller Konten: + + @FormatCurrency(TotalClubBalance) + +
+ } + @if (!string.IsNullOrWhiteSpace(operationMessage)) {