* Added ExcelGenerator and EmailSender

This commit is contained in:
2025-05-17 20:31:42 +02:00
parent 6ab3960e50
commit f4195a540c
9 changed files with 174 additions and 3 deletions

View File

@@ -24,8 +24,8 @@
<ToolbarItems>
<ToolbarItem Type="ItemType.Button" Text="Zapisz" Id="SaveButton"
PrefixIcon="e-icons e-save" OnClick="SaveChanges"/>
<ToolbarItem Type="ItemType.Button" Id="Generuj XLS" PrefixIcon="e-icons export-xls"
Text="Usuń Zapisane Filtry" OnClick="ExportXls"/>
<ToolbarItem Type="ItemType.Button" Id="Generuj XLS" PrefixIcon="e-icons e-export-xls"
Text="Generuj XLS" OnClick="ExportXls"/>
</ToolbarItems>
</SfToolbar>
<GridColumns>
@@ -99,6 +99,6 @@
private async Task ExportXls()
{
await _grid.ExportToExcelAsync();
await WarehouseService.GenerateXlsForMeyleAsync(WzHeader);
}
}