From b1754dbad7ac2d18beef74033ceb68e7d69ad695 Mon Sep 17 00:00:00 2001 From: Kojo Date: Fri, 28 Feb 2025 18:13:17 +0100 Subject: [PATCH] AMBEWO: Nur noch SR2 --- .../AMBEWO/Invoicing/SettlementInvoiceCreation.cs | 14 ++++++++++++++ 1 file changed, 14 insertions(+) create mode 100644 ReportImp/AMBEWO/Invoicing/SettlementInvoiceCreation.cs diff --git a/ReportImp/AMBEWO/Invoicing/SettlementInvoiceCreation.cs b/ReportImp/AMBEWO/Invoicing/SettlementInvoiceCreation.cs new file mode 100644 index 000000000..e28ea95c1 --- /dev/null +++ b/ReportImp/AMBEWO/Invoicing/SettlementInvoiceCreation.cs @@ -0,0 +1,14 @@ +using BeWo.Data.Entities; +using BeWo.Service.Invoicing; +using BS.Shared.DataContracts; + +namespace Ambewo.Invoicing +{ + public class CustomSettlementInvoiceCreation : SettlementInvoiceCreation + { + public override bool CanCreateInvoiceTheOldWay(Settlement2DC si, CostBearer2SupportConcept c2s) + { + return false; + } + } +}