DeliveryConfirmation: remove name from title

This commit is contained in:
2023-10-17 23:02:28 +02:00
parent 50b9f4e207
commit d2b96736bb

View File

@ -13,7 +13,7 @@ namespace Elwig.Documents {
public Dictionary<string, (string, int, int, int, int)> MemberBins;
public DeliveryConfirmation(AppDbContext ctx, int year, Member m) :
base($"Anlieferungsbestätigung {year} {((IAddress?)m.BillingAddress ?? m).Name}", m) {
base($"Anlieferungsbestätigung {year}", m) {
Year = year;
ShowDateAndLocation = true;
UseBillingAddress = true;