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; + } + } +}