DeliveryAdminWindow: Add DeliveryJournal

This commit is contained in:
2023-09-19 02:11:22 +02:00
parent 13ba3f90f6
commit 5271f357f5
7 changed files with 162 additions and 0 deletions

View File

@ -53,6 +53,8 @@ namespace Elwig.Documents {
name = "DeliveryNote";
} else if (this is CreditNote) {
name = "CreditNote";
} else if (this is DeliveryJournal) {
name = "DeliveryJournal";
} else {
throw new InvalidOperationException("Invalid document object");
}