DeliveryAncmtAdminWindow: Add option to search in all delivery schedules and init mgnr with selected
All checks were successful
Test / Run tests (push) Successful in 2m2s

This commit is contained in:
2024-09-04 18:02:50 +02:00
parent a04c7d538e
commit a5638135a3
4 changed files with 27 additions and 7 deletions

View File

@ -14,6 +14,8 @@ namespace Elwig.ViewModels {
[ObservableProperty]
private bool _filterOnlyUpcoming;
[ObservableProperty]
private bool _filterFromAllSchedules;
[ObservableProperty]
private string? _filterSeasonString;
public int? FilterSeason {
get => int.TryParse(FilterSeasonString, out var year) ? year : null;