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