Lebenswert

This commit is contained in:
Alexandra
2022-01-05 17:40:23 +01:00
parent e124b273ae
commit dff6786c74
2 changed files with 6 additions and 2 deletions

View File

@@ -130,7 +130,7 @@ namespace LebensWert.Invoicing
if (cat == "Fachleistungsstunde")
{
invoiceItem.ItemDescription = "Direkte Leistungen";
invoiceItem.ItemDescription = "face-to-face";
invoiceItem.UnitDescription = "Fachleistungsstunde (FLS)";
}
else if (cat == "Fahrtkosten")

View File

@@ -22,9 +22,13 @@ namespace LebensWert.Invoicing
{
return new CustomInvoiceCreationNI();
}
else if (csc.CostBearer.Contains("Hildesheim"))
{
return new CustomInvoiceCreationHI();
}
}
return new CustomInvoiceCreationHI();
return new InvoiceCreation();
}
}
}