From de89181af38a234258fd4fbf6a69309e5b6965dd Mon Sep 17 00:00:00 2001 From: Alexandra Date: Tue, 10 Dec 2024 16:19:19 +0100 Subject: [PATCH] SehtMuenster/CustomReportCreator.cs - Nachcommit zum Budgetnachweis --- ReportImp/SehtMuenster/CustomReportCreator.cs | 21 +++++++++++++++++++ 1 file changed, 21 insertions(+) create mode 100644 ReportImp/SehtMuenster/CustomReportCreator.cs diff --git a/ReportImp/SehtMuenster/CustomReportCreator.cs b/ReportImp/SehtMuenster/CustomReportCreator.cs new file mode 100644 index 000000000..b720498ab --- /dev/null +++ b/ReportImp/SehtMuenster/CustomReportCreator.cs @@ -0,0 +1,21 @@ +using System; +using System.Collections.Generic; +using System.Linq; +using System.Text; +using BeWo.Data.Access; +using BeWo.Data.Entities; +using BeWo.Report; +using BeWo.Report.ReportObjects; +using DevExpress.XtraReports.Design; +using DevExpress.XtraReports.UI; + +namespace SehtMuenster +{ + public class CustomReportCreator : DefaultReportCreator + { + public override XtraReport CreateSettlementReport(string dcId, long? invoiceBaseOid) + { + return base.CreateSettlementReport(dcId, invoiceBaseOid, true); + } + } +}