From 6518fe493990d28dfba4aaf65fe409f9fe48a5f3 Mon Sep 17 00:00:00 2001 From: Marcel Hirschle Date: Wed, 5 Apr 2023 19:20:56 +0200 Subject: [PATCH] MH: Mobile Rechnung --- ReportImp/MobileEV/CustomReportCreator.cs | 1 + .../Invoicing/CustomInvoiceCreation.cs | 28 + .../Invoicing/CustomInvoiceFactory.cs | 27 + ReportImp/MobileEV/MobileEV.csproj | 11 + ReportImp/MobileEV/Sammelrechnung.Designer.cs | 1618 +++++++++++++++++ ReportImp/MobileEV/Sammelrechnung.cs | 81 + ReportImp/MobileEV/Sammelrechnung.resx | 318 ++++ 7 files changed, 2084 insertions(+) create mode 100644 ReportImp/MobileEV/Invoicing/CustomInvoiceCreation.cs create mode 100644 ReportImp/MobileEV/Invoicing/CustomInvoiceFactory.cs create mode 100644 ReportImp/MobileEV/Sammelrechnung.Designer.cs create mode 100644 ReportImp/MobileEV/Sammelrechnung.cs create mode 100644 ReportImp/MobileEV/Sammelrechnung.resx diff --git a/ReportImp/MobileEV/CustomReportCreator.cs b/ReportImp/MobileEV/CustomReportCreator.cs index d937f79ee..6ede068ed 100644 --- a/ReportImp/MobileEV/CustomReportCreator.cs +++ b/ReportImp/MobileEV/CustomReportCreator.cs @@ -85,6 +85,7 @@ namespace MobileEV report = new Quittierungsbeleg(); //if (report == null) // report = new Leistungsnachweis(); + report.SetReportDataSource(ro); return report as XtraReport; diff --git a/ReportImp/MobileEV/Invoicing/CustomInvoiceCreation.cs b/ReportImp/MobileEV/Invoicing/CustomInvoiceCreation.cs new file mode 100644 index 000000000..cba95a65d --- /dev/null +++ b/ReportImp/MobileEV/Invoicing/CustomInvoiceCreation.cs @@ -0,0 +1,28 @@ +using System; +using System.Collections.Generic; +using System.Linq; +using System.Text; +using BeWo.Data.Access; +using BeWo.Data.Entities; +using BeWo.Service.Invoicing; +using BS.Shared.Core; +using BS.Shared.DataContracts; +using BS.Shared.Services; + +namespace MobileEV.Invoicing +{ + + public class CustomInvoiceCreation : InvoiceCreation + { + public override void SetInvoiceId(ServiceInvoice invoice) + { + invoice.InvoiceBase.InvoiceId = "Dortmund"; + invoice.InvoiceBase.InvoiceTypeText = "Sammelrechnung"; + } + + public override IList CreateSummaryInvoiceItems(IList itemList, DateTimeSpan invoicePeriod, SupportConceptApprovalPeriod scap, Calculations calc) + { + return itemList; + } + } +} diff --git a/ReportImp/MobileEV/Invoicing/CustomInvoiceFactory.cs b/ReportImp/MobileEV/Invoicing/CustomInvoiceFactory.cs new file mode 100644 index 000000000..9e048dd90 --- /dev/null +++ b/ReportImp/MobileEV/Invoicing/CustomInvoiceFactory.cs @@ -0,0 +1,27 @@ +using System; +using System.Collections.Generic; +using BeWo.Data.Access; +using BeWo.Data.Entities; +using BeWo.Service.Invoicing; +using BS.Shared.DataContracts; +using BS.Shared.DataContracts.Compact; + +namespace MobileEV.Invoicing +{ + public class CustomInvoiceFactory : InvoiceFactory + { + + public override InvoiceCreation CreateInvoiceCreator(string specificId, string tenant, Dictionary> supportConcepts2ServiceRecords) + { + foreach (var sc2sr in supportConcepts2ServiceRecords) + { + if (sc2sr.Key.CostBearer.Contains("Stadt Dortmund")) + return new CustomInvoiceCreation(); + } + + return new InvoiceCreation(); + } + + + } +} diff --git a/ReportImp/MobileEV/MobileEV.csproj b/ReportImp/MobileEV/MobileEV.csproj index faee37855..fb51c850d 100644 --- a/ReportImp/MobileEV/MobileEV.csproj +++ b/ReportImp/MobileEV/MobileEV.csproj @@ -49,6 +49,8 @@ + + Component @@ -56,6 +58,12 @@ Leistungsnachweis.cs + + Component + + + Sammelrechnung.cs + Component @@ -117,6 +125,9 @@ Leistungsnachweis.cs Designer + + Sammelrechnung.cs + Taetigkeitsnachweis.cs Designer diff --git a/ReportImp/MobileEV/Sammelrechnung.Designer.cs b/ReportImp/MobileEV/Sammelrechnung.Designer.cs new file mode 100644 index 000000000..ec51d6b13 --- /dev/null +++ b/ReportImp/MobileEV/Sammelrechnung.Designer.cs @@ -0,0 +1,1618 @@ +using BeWo.Report.ReportObjects; +namespace MobileEV +{ + partial class Sammelrechnung + { + /// + /// Required designer variable. + /// + private System.ComponentModel.IContainer components = null; + + /// + /// Clean up any resources being used. + /// + /// true if managed resources should be disposed; otherwise, false. + protected override void Dispose(bool disposing) + { + if (disposing && (components != null)) + { + components.Dispose(); + } + base.Dispose(disposing); + } + + + /// + /// Required method for Designer support - do not modify + /// the contents of this method with the code editor. + /// + private void InitializeComponent() + { + this.components = new System.ComponentModel.Container(); + System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(Sammelrechnung)); + this.Detail = new DevExpress.XtraReports.UI.DetailBand(); + this.ReportHeader = new DevExpress.XtraReports.UI.ReportHeaderBand(); + this.xrLabel8 = new DevExpress.XtraReports.UI.XRLabel(); + this.xrTable2 = new DevExpress.XtraReports.UI.XRTable(); + this.xrTableRow12 = new DevExpress.XtraReports.UI.XRTableRow(); + this.xrTableCell1 = new DevExpress.XtraReports.UI.XRTableCell(); + this.xrTableRow11 = new DevExpress.XtraReports.UI.XRTableRow(); + this.xrTableCell14 = new DevExpress.XtraReports.UI.XRTableCell(); + this.xrTableRow9 = new DevExpress.XtraReports.UI.XRTableRow(); + this.xrTableCell7 = new DevExpress.XtraReports.UI.XRTableCell(); + this.xrTableRow2 = new DevExpress.XtraReports.UI.XRTableRow(); + this.xrTableCell4 = new DevExpress.XtraReports.UI.XRTableCell(); + this.xrTableRow5 = new DevExpress.XtraReports.UI.XRTableRow(); + this.xrTableCell13 = new DevExpress.XtraReports.UI.XRTableCell(); + this.xrTableRow4 = new DevExpress.XtraReports.UI.XRTableRow(); + this.xrTableCell11 = new DevExpress.XtraReports.UI.XRTableCell(); + this.xrTableRow3 = new DevExpress.XtraReports.UI.XRTableRow(); + this.xrTableCell3 = new DevExpress.XtraReports.UI.XRTableCell(); + this.xrTableRow1 = new DevExpress.XtraReports.UI.XRTableRow(); + this.xrTableCell2 = new DevExpress.XtraReports.UI.XRTableCell(); + this.xrTableRow6 = new DevExpress.XtraReports.UI.XRTableRow(); + this.xrTableCell5 = new DevExpress.XtraReports.UI.XRTableCell(); + this.xrTableRow8 = new DevExpress.XtraReports.UI.XRTableRow(); + this.xrTableCell6 = new DevExpress.XtraReports.UI.XRTableCell(); + this.xrTableRow7 = new DevExpress.XtraReports.UI.XRTableRow(); + this.xrTableCell8 = new DevExpress.XtraReports.UI.XRTableCell(); + this.xrTableRow13 = new DevExpress.XtraReports.UI.XRTableRow(); + this.xrTableCell10 = new DevExpress.XtraReports.UI.XRTableCell(); + this.xrLabel6 = new DevExpress.XtraReports.UI.XRLabel(); + this.xrLabel7 = new DevExpress.XtraReports.UI.XRLabel(); + this.xrPictureBox1 = new DevExpress.XtraReports.UI.XRPictureBox(); + this.ruleRateFactorNull = new DevExpress.XtraReports.UI.FormattingRule(); + this.topMarginBand1 = new DevExpress.XtraReports.UI.TopMarginBand(); + this.bottomMarginBand1 = new DevExpress.XtraReports.UI.BottomMarginBand(); + this.xrRichText1 = new DevExpress.XtraReports.UI.XRRichText(); + this.Page1 = new DevExpress.XtraReports.UI.GroupHeaderBand(); + this.xrLabel4 = new DevExpress.XtraReports.UI.XRLabel(); + this.xrLabel3 = new DevExpress.XtraReports.UI.XRLabel(); + this.xrLabel2 = new DevExpress.XtraReports.UI.XRLabel(); + this.DetailReport = new DevExpress.XtraReports.UI.DetailReportBand(); + this.Detail1 = new DevExpress.XtraReports.UI.DetailBand(); + this.xrTable5 = new DevExpress.XtraReports.UI.XRTable(); + this.xrTableRow23 = new DevExpress.XtraReports.UI.XRTableRow(); + this.xrTableCell32 = new DevExpress.XtraReports.UI.XRTableCell(); + this.xrTableCell37 = new DevExpress.XtraReports.UI.XRTableCell(); + this.xrTableCell35 = new DevExpress.XtraReports.UI.XRTableCell(); + this.xrTableCell33 = new DevExpress.XtraReports.UI.XRTableCell(); + this.xrTableCell36 = new DevExpress.XtraReports.UI.XRTableCell(); + this.xrTableCell38 = new DevExpress.XtraReports.UI.XRTableCell(); + this.xrTableCell34 = new DevExpress.XtraReports.UI.XRTableCell(); + this.xrTableCell15 = new DevExpress.XtraReports.UI.XRTableCell(); + this.DetailReport2 = new DevExpress.XtraReports.UI.DetailReportBand(); + this.Detail3 = new DevExpress.XtraReports.UI.DetailBand(); + this.xrTable6 = new DevExpress.XtraReports.UI.XRTable(); + this.xrTableRow25 = new DevExpress.XtraReports.UI.XRTableRow(); + this.xrTableCell40 = new DevExpress.XtraReports.UI.XRTableCell(); + this.xrTableCell16 = new DevExpress.XtraReports.UI.XRTableCell(); + this.xrTableCell17 = new DevExpress.XtraReports.UI.XRTableCell(); + this.xrTableCell18 = new DevExpress.XtraReports.UI.XRTableCell(); + this.xrTableCell19 = new DevExpress.XtraReports.UI.XRTableCell(); + this.xrTableCell20 = new DevExpress.XtraReports.UI.XRTableCell(); + this.xrTableCell21 = new DevExpress.XtraReports.UI.XRTableCell(); + this.xrTableCell22 = new DevExpress.XtraReports.UI.XRTableCell(); + this.GroupFooter1 = new DevExpress.XtraReports.UI.GroupFooterBand(); + this.bindingSource1 = new System.Windows.Forms.BindingSource(this.components); + this.xrLabel5 = new DevExpress.XtraReports.UI.XRLabel(); + this.xrTable3 = new DevExpress.XtraReports.UI.XRTable(); + this.xrTableRow10 = new DevExpress.XtraReports.UI.XRTableRow(); + this.lblKategorie1 = new DevExpress.XtraReports.UI.XRTableCell(); + this.xrTableCell9 = new DevExpress.XtraReports.UI.XRTableCell(); + this.xrTableCell12 = new DevExpress.XtraReports.UI.XRTableCell(); + this.xrTableCellwf = new DevExpress.XtraReports.UI.XRTableCell(); + this.wrfwergr = new DevExpress.XtraReports.UI.XRTableCell(); + this.xrTableRow14 = new DevExpress.XtraReports.UI.XRTableRow(); + this.lblKategorie2 = new DevExpress.XtraReports.UI.XRTableCell(); + this.xrTableCell23 = new DevExpress.XtraReports.UI.XRTableCell(); + this.xrTableCell24 = new DevExpress.XtraReports.UI.XRTableCell(); + this.xrTableCellwfr = new DevExpress.XtraReports.UI.XRTableCell(); + this.trhtzjt = new DevExpress.XtraReports.UI.XRTableCell(); + this.xrTableRow15 = new DevExpress.XtraReports.UI.XRTableRow(); + this.lblKategorie3 = new DevExpress.XtraReports.UI.XRTableCell(); + this.xrTableCell25 = new DevExpress.XtraReports.UI.XRTableCell(); + this.xrTableCell26 = new DevExpress.XtraReports.UI.XRTableCell(); + this.xrTableCellwfffg = new DevExpress.XtraReports.UI.XRTableCell(); + this.regtrhzr = new DevExpress.XtraReports.UI.XRTableCell(); + this.lblSummeGelFLS1 = new DevExpress.XtraReports.UI.XRTableCell(); + this.lblSummeGelFLS2 = new DevExpress.XtraReports.UI.XRTableCell(); + this.lblSummeGelFLS3 = new DevExpress.XtraReports.UI.XRTableCell(); + this.xrTableCell41 = new DevExpress.XtraReports.UI.XRTableCell(); + this.xrTableCell42 = new DevExpress.XtraReports.UI.XRTableCell(); + this.xrTableCell43 = new DevExpress.XtraReports.UI.XRTableCell(); + this.lblSumme1 = new DevExpress.XtraReports.UI.XRTableCell(); + this.lblSumme2 = new DevExpress.XtraReports.UI.XRTableCell(); + this.lblSumme3 = new DevExpress.XtraReports.UI.XRTableCell(); + this.xrTableRow16 = new DevExpress.XtraReports.UI.XRTableRow(); + this.lblKategorie4 = new DevExpress.XtraReports.UI.XRTableCell(); + this.xrTableCell28 = new DevExpress.XtraReports.UI.XRTableCell(); + this.xrTableCell29 = new DevExpress.XtraReports.UI.XRTableCell(); + this.xrTableCell30 = new DevExpress.XtraReports.UI.XRTableCell(); + this.xrTableCell39 = new DevExpress.XtraReports.UI.XRTableCell(); + this.lblSummeGelFLS4 = new DevExpress.XtraReports.UI.XRTableCell(); + this.xrTableCell48 = new DevExpress.XtraReports.UI.XRTableCell(); + this.lblSumme4 = new DevExpress.XtraReports.UI.XRTableCell(); + ((System.ComponentModel.ISupportInitialize)(this.xrTable2)).BeginInit(); + ((System.ComponentModel.ISupportInitialize)(this.xrRichText1)).BeginInit(); + ((System.ComponentModel.ISupportInitialize)(this.xrTable5)).BeginInit(); + ((System.ComponentModel.ISupportInitialize)(this.xrTable6)).BeginInit(); + ((System.ComponentModel.ISupportInitialize)(this.bindingSource1)).BeginInit(); + ((System.ComponentModel.ISupportInitialize)(this.xrTable3)).BeginInit(); + ((System.ComponentModel.ISupportInitialize)(this)).BeginInit(); + // + // Detail + // + this.Detail.HeightF = 0F; + this.Detail.Name = "Detail"; + this.Detail.Padding = new DevExpress.XtraPrinting.PaddingInfo(0, 0, 0, 0, 100F); + this.Detail.TextAlignment = DevExpress.XtraPrinting.TextAlignment.TopLeft; + // + // ReportHeader + // + this.ReportHeader.Controls.AddRange(new DevExpress.XtraReports.UI.XRControl[] { + this.xrLabel8, + this.xrTable2, + this.xrLabel6, + this.xrLabel7, + this.xrPictureBox1}); + this.ReportHeader.Font = new System.Drawing.Font("Verdana", 10F); + this.ReportHeader.HeightF = 296.6667F; + this.ReportHeader.Name = "ReportHeader"; + this.ReportHeader.StylePriority.UseFont = false; + // + // xrLabel8 + // + this.xrLabel8.DataBindings.AddRange(new DevExpress.XtraReports.UI.XRBinding[] { + new DevExpress.XtraReports.UI.XRBinding("Text", null, "InvoiceDate", "Datum: {0}")}); + this.xrLabel8.Font = new System.Drawing.Font("Calibri", 10.5F); + this.xrLabel8.LocationFloat = new DevExpress.Utils.PointFloat(394F, 263.6667F); + this.xrLabel8.Name = "xrLabel8"; + this.xrLabel8.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F); + this.xrLabel8.SizeF = new System.Drawing.SizeF(283F, 23F); + this.xrLabel8.StylePriority.UseFont = false; + this.xrLabel8.StylePriority.UseTextAlignment = false; + this.xrLabel8.TextAlignment = DevExpress.XtraPrinting.TextAlignment.TopLeft; + // + // xrTable2 + // + this.xrTable2.Font = new System.Drawing.Font("Calibri", 10.5F); + this.xrTable2.LocationFloat = new DevExpress.Utils.PointFloat(394F, 0F); + this.xrTable2.Name = "xrTable2"; + this.xrTable2.Rows.AddRange(new DevExpress.XtraReports.UI.XRTableRow[] { + this.xrTableRow12, + this.xrTableRow11, + this.xrTableRow9, + this.xrTableRow2, + this.xrTableRow5, + this.xrTableRow4, + this.xrTableRow3, + this.xrTableRow1, + this.xrTableRow6, + this.xrTableRow8, + this.xrTableRow7, + this.xrTableRow13}); + this.xrTable2.SizeF = new System.Drawing.SizeF(283F, 224F); + this.xrTable2.StylePriority.UseFont = false; + // + // xrTableRow12 + // + this.xrTableRow12.Cells.AddRange(new DevExpress.XtraReports.UI.XRTableCell[] { + this.xrTableCell1}); + this.xrTableRow12.Name = "xrTableRow12"; + this.xrTableRow12.Weight = 0.13245033112582783D; + // + // xrTableCell1 + // + this.xrTableCell1.Font = new System.Drawing.Font("Calibri", 11.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0))); + this.xrTableCell1.Name = "xrTableCell1"; + this.xrTableCell1.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F); + this.xrTableCell1.StylePriority.UseFont = false; + this.xrTableCell1.StylePriority.UsePadding = false; + this.xrTableCell1.StylePriority.UseTextAlignment = false; + this.xrTableCell1.Text = "Geschäftsstelle"; + this.xrTableCell1.TextAlignment = DevExpress.XtraPrinting.TextAlignment.TopLeft; + this.xrTableCell1.Weight = 1D; + // + // xrTableRow11 + // + this.xrTableRow11.Cells.AddRange(new DevExpress.XtraReports.UI.XRTableCell[] { + this.xrTableCell14}); + this.xrTableRow11.Name = "xrTableRow11"; + this.xrTableRow11.Weight = 0.13245033112582783D; + // + // xrTableCell14 + // + this.xrTableCell14.Name = "xrTableCell14"; + this.xrTableCell14.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F); + this.xrTableCell14.StylePriority.UsePadding = false; + this.xrTableCell14.StylePriority.UseTextAlignment = false; + this.xrTableCell14.Text = "Tel.: 0231 /58 06 34 79"; + this.xrTableCell14.TextAlignment = DevExpress.XtraPrinting.TextAlignment.TopLeft; + this.xrTableCell14.Weight = 1D; + // + // xrTableRow9 + // + this.xrTableRow9.Cells.AddRange(new DevExpress.XtraReports.UI.XRTableCell[] { + this.xrTableCell7}); + this.xrTableRow9.Name = "xrTableRow9"; + this.xrTableRow9.Weight = 0.13245033112582783D; + // + // xrTableCell7 + // + this.xrTableCell7.Name = "xrTableCell7"; + this.xrTableCell7.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F); + this.xrTableCell7.StylePriority.UsePadding = false; + this.xrTableCell7.StylePriority.UseTextAlignment = false; + this.xrTableCell7.TextAlignment = DevExpress.XtraPrinting.TextAlignment.TopLeft; + this.xrTableCell7.Weight = 1D; + // + // xrTableRow2 + // + this.xrTableRow2.Cells.AddRange(new DevExpress.XtraReports.UI.XRTableCell[] { + this.xrTableCell4}); + this.xrTableRow2.Name = "xrTableRow2"; + this.xrTableRow2.Weight = 0.13245033112582783D; + // + // xrTableCell4 + // + this.xrTableCell4.CanShrink = true; + this.xrTableCell4.Name = "xrTableCell4"; + this.xrTableCell4.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F); + this.xrTableCell4.ProcessNullValues = DevExpress.XtraReports.UI.ValueSuppressType.SuppressAndShrink; + this.xrTableCell4.StylePriority.UseFont = false; + this.xrTableCell4.StylePriority.UseTextAlignment = false; + this.xrTableCell4.Text = "Ansprechpartner/-in:"; + this.xrTableCell4.TextAlignment = DevExpress.XtraPrinting.TextAlignment.TopLeft; + this.xrTableCell4.Weight = 1D; + // + // xrTableRow5 + // + this.xrTableRow5.Cells.AddRange(new DevExpress.XtraReports.UI.XRTableCell[] { + this.xrTableCell13}); + this.xrTableRow5.Name = "xrTableRow5"; + this.xrTableRow5.Weight = 0.13245033112582783D; + // + // xrTableCell13 + // + this.xrTableCell13.CanShrink = true; + this.xrTableCell13.Name = "xrTableCell13"; + this.xrTableCell13.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F); + this.xrTableCell13.ProcessNullValues = DevExpress.XtraReports.UI.ValueSuppressType.SuppressAndShrink; + this.xrTableCell13.StylePriority.UseFont = false; + this.xrTableCell13.StylePriority.UseTextAlignment = false; + this.xrTableCell13.Text = "[SenderContactPerson]"; + this.xrTableCell13.TextAlignment = DevExpress.XtraPrinting.TextAlignment.TopLeft; + this.xrTableCell13.Weight = 1D; + // + // xrTableRow4 + // + this.xrTableRow4.Cells.AddRange(new DevExpress.XtraReports.UI.XRTableCell[] { + this.xrTableCell11}); + this.xrTableRow4.Name = "xrTableRow4"; + this.xrTableRow4.Weight = 0.13245033112582783D; + // + // xrTableCell11 + // + this.xrTableCell11.CanShrink = true; + this.xrTableCell11.Name = "xrTableCell11"; + this.xrTableCell11.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F); + this.xrTableCell11.ProcessNullValues = DevExpress.XtraReports.UI.ValueSuppressType.SuppressAndShrink; + this.xrTableCell11.StylePriority.UseFont = false; + this.xrTableCell11.StylePriority.UseTextAlignment = false; + this.xrTableCell11.Text = "[SenderContactPersonDivision]"; + this.xrTableCell11.TextAlignment = DevExpress.XtraPrinting.TextAlignment.TopLeft; + this.xrTableCell11.Weight = 1D; + // + // xrTableRow3 + // + this.xrTableRow3.Cells.AddRange(new DevExpress.XtraReports.UI.XRTableCell[] { + this.xrTableCell3}); + this.xrTableRow3.Name = "xrTableRow3"; + this.xrTableRow3.Weight = 0.0794701986754967D; + // + // xrTableCell3 + // + this.xrTableCell3.Name = "xrTableCell3"; + this.xrTableCell3.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F); + this.xrTableCell3.StylePriority.UsePadding = false; + this.xrTableCell3.StylePriority.UseTextAlignment = false; + this.xrTableCell3.TextAlignment = DevExpress.XtraPrinting.TextAlignment.TopLeft; + this.xrTableCell3.Weight = 1D; + // + // xrTableRow1 + // + this.xrTableRow1.Cells.AddRange(new DevExpress.XtraReports.UI.XRTableCell[] { + this.xrTableCell2}); + this.xrTableRow1.Name = "xrTableRow1"; + this.xrTableRow1.Weight = 0.13245033112582783D; + // + // xrTableCell2 + // + this.xrTableCell2.CanShrink = true; + this.xrTableCell2.Name = "xrTableCell2"; + this.xrTableCell2.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F); + this.xrTableCell2.ProcessNullValues = DevExpress.XtraReports.UI.ValueSuppressType.SuppressAndShrink; + this.xrTableCell2.StylePriority.UseFont = false; + this.xrTableCell2.StylePriority.UseTextAlignment = false; + this.xrTableCell2.Text = "[SenderContactPersonPhone]"; + this.xrTableCell2.TextAlignment = DevExpress.XtraPrinting.TextAlignment.TopLeft; + this.xrTableCell2.Weight = 1D; + // + // xrTableRow6 + // + this.xrTableRow6.Cells.AddRange(new DevExpress.XtraReports.UI.XRTableCell[] { + this.xrTableCell5}); + this.xrTableRow6.Name = "xrTableRow6"; + this.xrTableRow6.Weight = 0.13245033112582783D; + // + // xrTableCell5 + // + this.xrTableCell5.CanShrink = true; + this.xrTableCell5.Name = "xrTableCell5"; + this.xrTableCell5.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F); + this.xrTableCell5.ProcessNullValues = DevExpress.XtraReports.UI.ValueSuppressType.SuppressAndShrink; + this.xrTableCell5.StylePriority.UseFont = false; + this.xrTableCell5.StylePriority.UseTextAlignment = false; + this.xrTableCell5.Text = "[SenderContactPersonFax]"; + this.xrTableCell5.TextAlignment = DevExpress.XtraPrinting.TextAlignment.TopLeft; + this.xrTableCell5.Weight = 1D; + // + // xrTableRow8 + // + this.xrTableRow8.Cells.AddRange(new DevExpress.XtraReports.UI.XRTableCell[] { + this.xrTableCell6}); + this.xrTableRow8.Name = "xrTableRow8"; + this.xrTableRow8.Weight = 0.079470198675496678D; + // + // xrTableCell6 + // + this.xrTableCell6.Name = "xrTableCell6"; + this.xrTableCell6.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F); + this.xrTableCell6.StylePriority.UseTextAlignment = false; + this.xrTableCell6.TextAlignment = DevExpress.XtraPrinting.TextAlignment.TopLeft; + this.xrTableCell6.Weight = 1D; + // + // xrTableRow7 + // + this.xrTableRow7.Cells.AddRange(new DevExpress.XtraReports.UI.XRTableCell[] { + this.xrTableCell8}); + this.xrTableRow7.Name = "xrTableRow7"; + this.xrTableRow7.Weight = 0.13245033112582783D; + // + // xrTableCell8 + // + this.xrTableCell8.DataBindings.AddRange(new DevExpress.XtraReports.UI.XRBinding[] { + new DevExpress.XtraReports.UI.XRBinding("Text", null, "SenderContactPersonMail")}); + this.xrTableCell8.Name = "xrTableCell8"; + this.xrTableCell8.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F); + this.xrTableCell8.StylePriority.UsePadding = false; + this.xrTableCell8.StylePriority.UseTextAlignment = false; + this.xrTableCell8.TextAlignment = DevExpress.XtraPrinting.TextAlignment.TopLeft; + this.xrTableCell8.Weight = 1D; + // + // xrTableRow13 + // + this.xrTableRow13.Cells.AddRange(new DevExpress.XtraReports.UI.XRTableCell[] { + this.xrTableCell10}); + this.xrTableRow13.Name = "xrTableRow13"; + this.xrTableRow13.Weight = 0.13245033112582783D; + // + // xrTableCell10 + // + this.xrTableCell10.Name = "xrTableCell10"; + this.xrTableCell10.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F); + this.xrTableCell10.StylePriority.UsePadding = false; + this.xrTableCell10.StylePriority.UseTextAlignment = false; + this.xrTableCell10.Text = "Web: www.mobile-dortmund.de"; + this.xrTableCell10.TextAlignment = DevExpress.XtraPrinting.TextAlignment.TopLeft; + this.xrTableCell10.Weight = 1D; + // + // xrLabel6 + // + this.xrLabel6.CanShrink = true; + this.xrLabel6.Font = new System.Drawing.Font("Calibri", 8.25F, System.Drawing.FontStyle.Underline, System.Drawing.GraphicsUnit.Point, ((byte)(0))); + this.xrLabel6.LocationFloat = new DevExpress.Utils.PointFloat(0F, 164.6667F); + this.xrLabel6.Name = "xrLabel6"; + this.xrLabel6.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F); + this.xrLabel6.ProcessNullValues = DevExpress.XtraReports.UI.ValueSuppressType.SuppressAndShrink; + this.xrLabel6.SizeF = new System.Drawing.SizeF(292F, 17F); + this.xrLabel6.StylePriority.UseFont = false; + this.xrLabel6.Text = "MOBILE e.V., Märkische Straße 239a, 44141 Dortmund"; + // + // xrLabel7 + // + this.xrLabel7.LocationFloat = new DevExpress.Utils.PointFloat(0F, 185.1667F); + this.xrLabel7.Multiline = true; + this.xrLabel7.Name = "xrLabel7"; + this.xrLabel7.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F); + this.xrLabel7.SizeF = new System.Drawing.SizeF(317F, 111.5F); + this.xrLabel7.StylePriority.UseFont = false; + this.xrLabel7.Text = "[RecipientOrganisation]\r\n[RecipientContactPerson]\r\n[RecipientDivision]\r\n[Recipien" + + "tStreet]\r\n[RecipientPostCodeAndTown]"; + // + // xrPictureBox1 + // + this.xrPictureBox1.Image = ((System.Drawing.Image)(resources.GetObject("xrPictureBox1.Image"))); + this.xrPictureBox1.LocationFloat = new DevExpress.Utils.PointFloat(0F, 0F); + this.xrPictureBox1.Name = "xrPictureBox1"; + this.xrPictureBox1.SizeF = new System.Drawing.SizeF(311.3539F, 126.875F); + this.xrPictureBox1.Sizing = DevExpress.XtraPrinting.ImageSizeMode.ZoomImage; + // + // ruleRateFactorNull + // + this.ruleRateFactorNull.Condition = "[RateFactorText2] == ?"; + this.ruleRateFactorNull.Formatting.Visible = DevExpress.Utils.DefaultBoolean.False; + this.ruleRateFactorNull.Name = "ruleRateFactorNull"; + // + // topMarginBand1 + // + this.topMarginBand1.HeightF = 28F; + this.topMarginBand1.Name = "topMarginBand1"; + // + // bottomMarginBand1 + // + this.bottomMarginBand1.Controls.AddRange(new DevExpress.XtraReports.UI.XRControl[] { + this.xrRichText1}); + this.bottomMarginBand1.HeightF = 95F; + this.bottomMarginBand1.Name = "bottomMarginBand1"; + // + // xrRichText1 + // + this.xrRichText1.Font = new System.Drawing.Font("Arial", 11F); + this.xrRichText1.LocationFloat = new DevExpress.Utils.PointFloat(90.56228F, 9.999974F); + this.xrRichText1.Name = "xrRichText1"; + this.xrRichText1.SerializableRtfString = resources.GetString("xrRichText1.SerializableRtfString"); + this.xrRichText1.SizeF = new System.Drawing.SizeF(494.7921F, 75F); + // + // Page1 + // + this.Page1.Controls.AddRange(new DevExpress.XtraReports.UI.XRControl[] { + this.xrLabel4, + this.xrLabel3, + this.xrLabel2}); + this.Page1.Font = new System.Drawing.Font("Verdana", 10F); + this.Page1.HeightF = 108.75F; + this.Page1.Name = "Page1"; + this.Page1.StylePriority.UseFont = false; + // + // xrLabel4 + // + this.xrLabel4.BackColor = System.Drawing.Color.Transparent; + this.xrLabel4.CanShrink = true; + this.xrLabel4.Font = new System.Drawing.Font("Calibri", 13F); + this.xrLabel4.LocationFloat = new DevExpress.Utils.PointFloat(0F, 71.95829F); + this.xrLabel4.Multiline = true; + this.xrLabel4.Name = "xrLabel4"; + this.xrLabel4.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F); + this.xrLabel4.SizeF = new System.Drawing.SizeF(676.8332F, 20F); + this.xrLabel4.StylePriority.UseBackColor = false; + this.xrLabel4.StylePriority.UseFont = false; + this.xrLabel4.Text = "Familienname: [CustomerLastName]"; + this.xrLabel4.WordWrap = false; + // + // xrLabel3 + // + this.xrLabel3.BackColor = System.Drawing.Color.Transparent; + this.xrLabel3.CanShrink = true; + this.xrLabel3.Font = new System.Drawing.Font("Calibri", 13F); + this.xrLabel3.LocationFloat = new DevExpress.Utils.PointFloat(0F, 51.95834F); + this.xrLabel3.Name = "xrLabel3"; + this.xrLabel3.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F); + this.xrLabel3.SizeF = new System.Drawing.SizeF(676.8332F, 20F); + this.xrLabel3.StylePriority.UseBackColor = false; + this.xrLabel3.StylePriority.UseFont = false; + this.xrLabel3.Text = "Aktenzeichen: [CustomerReferenceNumber]"; + this.xrLabel3.WordWrap = false; + // + // xrLabel2 + // + this.xrLabel2.BackColor = System.Drawing.Color.Transparent; + this.xrLabel2.CanShrink = true; + this.xrLabel2.Font = new System.Drawing.Font("Calibri", 13F); + this.xrLabel2.LocationFloat = new DevExpress.Utils.PointFloat(0F, 31.95833F); + this.xrLabel2.Name = "xrLabel2"; + this.xrLabel2.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F); + this.xrLabel2.SizeF = new System.Drawing.SizeF(676.8332F, 20F); + this.xrLabel2.StylePriority.UseBackColor = false; + this.xrLabel2.StylePriority.UseFont = false; + this.xrLabel2.Text = "Rechnungsnummer [InvoiceNumber]"; + this.xrLabel2.WordWrap = false; + // + // DetailReport + // + this.DetailReport.Bands.AddRange(new DevExpress.XtraReports.UI.Band[] { + this.Detail1, + this.DetailReport2}); + this.DetailReport.DataMember = "ServiceInvoicePeriods"; + this.DetailReport.DataSource = this.bindingSource1; + this.DetailReport.Level = 0; + this.DetailReport.Name = "DetailReport"; + // + // Detail1 + // + this.Detail1.Controls.AddRange(new DevExpress.XtraReports.UI.XRControl[] { + this.xrTable5}); + this.Detail1.HeightF = 25F; + this.Detail1.Name = "Detail1"; + // + // xrTable5 + // + this.xrTable5.LocationFloat = new DevExpress.Utils.PointFloat(0F, 0F); + this.xrTable5.Name = "xrTable5"; + this.xrTable5.Rows.AddRange(new DevExpress.XtraReports.UI.XRTableRow[] { + this.xrTableRow23}); + this.xrTable5.SizeF = new System.Drawing.SizeF(672F, 25F); + // + // xrTableRow23 + // + this.xrTableRow23.Cells.AddRange(new DevExpress.XtraReports.UI.XRTableCell[] { + this.xrTableCell32, + this.xrTableCell37, + this.xrTableCell35, + this.xrTableCell33, + this.xrTableCell36, + this.xrTableCell38, + this.xrTableCell34, + this.xrTableCell15}); + this.xrTableRow23.Name = "xrTableRow23"; + this.xrTableRow23.Weight = 1D; + // + // xrTableCell32 + // + this.xrTableCell32.BackColor = System.Drawing.Color.Transparent; + this.xrTableCell32.BorderColor = System.Drawing.Color.DarkGray; + this.xrTableCell32.Borders = ((DevExpress.XtraPrinting.BorderSide)(((DevExpress.XtraPrinting.BorderSide.Left | DevExpress.XtraPrinting.BorderSide.Top) + | DevExpress.XtraPrinting.BorderSide.Bottom))); + this.xrTableCell32.Font = new System.Drawing.Font("Calibri", 10.5F); + this.xrTableCell32.Name = "xrTableCell32"; + this.xrTableCell32.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 2, 2, 100F); + this.xrTableCell32.StylePriority.UseBackColor = false; + this.xrTableCell32.StylePriority.UseBorderColor = false; + this.xrTableCell32.StylePriority.UseBorders = false; + this.xrTableCell32.StylePriority.UseFont = false; + this.xrTableCell32.StylePriority.UsePadding = false; + this.xrTableCell32.StylePriority.UseTextAlignment = false; + this.xrTableCell32.Text = "Datum"; + this.xrTableCell32.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleCenter; + this.xrTableCell32.Weight = 0.31317869566006923D; + // + // xrTableCell37 + // + this.xrTableCell37.BackColor = System.Drawing.Color.Transparent; + this.xrTableCell37.BorderColor = System.Drawing.Color.DarkGray; + this.xrTableCell37.Borders = ((DevExpress.XtraPrinting.BorderSide)(((DevExpress.XtraPrinting.BorderSide.Left | DevExpress.XtraPrinting.BorderSide.Top) + | DevExpress.XtraPrinting.BorderSide.Bottom))); + this.xrTableCell37.Font = new System.Drawing.Font("Calibri", 10.5F); + this.xrTableCell37.Name = "xrTableCell37"; + this.xrTableCell37.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 2, 2, 100F); + this.xrTableCell37.StylePriority.UseBackColor = false; + this.xrTableCell37.StylePriority.UseBorderColor = false; + this.xrTableCell37.StylePriority.UseBorders = false; + this.xrTableCell37.StylePriority.UseFont = false; + this.xrTableCell37.StylePriority.UsePadding = false; + this.xrTableCell37.StylePriority.UseTextAlignment = false; + this.xrTableCell37.Text = "BewBeginn"; + this.xrTableCell37.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleCenter; + this.xrTableCell37.Weight = 0.31317869701028961D; + // + // xrTableCell35 + // + this.xrTableCell35.BackColor = System.Drawing.Color.Transparent; + this.xrTableCell35.BorderColor = System.Drawing.Color.DarkGray; + this.xrTableCell35.Borders = ((DevExpress.XtraPrinting.BorderSide)(((DevExpress.XtraPrinting.BorderSide.Left | DevExpress.XtraPrinting.BorderSide.Top) + | DevExpress.XtraPrinting.BorderSide.Bottom))); + this.xrTableCell35.Font = new System.Drawing.Font("Calibri", 10.5F); + this.xrTableCell35.Name = "xrTableCell35"; + this.xrTableCell35.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 2, 2, 100F); + this.xrTableCell35.StylePriority.UseBackColor = false; + this.xrTableCell35.StylePriority.UseBorderColor = false; + this.xrTableCell35.StylePriority.UseBorders = false; + this.xrTableCell35.StylePriority.UseFont = false; + this.xrTableCell35.StylePriority.UsePadding = false; + this.xrTableCell35.StylePriority.UseTextAlignment = false; + this.xrTableCell35.Text = "BewEnde"; + this.xrTableCell35.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleCenter; + this.xrTableCell35.Weight = 0.3131786919721703D; + // + // xrTableCell33 + // + this.xrTableCell33.BackColor = System.Drawing.Color.Transparent; + this.xrTableCell33.BorderColor = System.Drawing.Color.DarkGray; + this.xrTableCell33.Borders = ((DevExpress.XtraPrinting.BorderSide)(((DevExpress.XtraPrinting.BorderSide.Left | DevExpress.XtraPrinting.BorderSide.Top) + | DevExpress.XtraPrinting.BorderSide.Bottom))); + this.xrTableCell33.Font = new System.Drawing.Font("Calibri", 10.5F); + this.xrTableCell33.Name = "xrTableCell33"; + this.xrTableCell33.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 2, 2, 100F); + this.xrTableCell33.StylePriority.UseBackColor = false; + this.xrTableCell33.StylePriority.UseBorderColor = false; + this.xrTableCell33.StylePriority.UseBorders = false; + this.xrTableCell33.StylePriority.UseFont = false; + this.xrTableCell33.StylePriority.UsePadding = false; + this.xrTableCell33.StylePriority.UseTextAlignment = false; + this.xrTableCell33.Text = "Freizeit"; + this.xrTableCell33.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleCenter; + this.xrTableCell33.Weight = 0.31317868222249534D; + // + // xrTableCell36 + // + this.xrTableCell36.BackColor = System.Drawing.Color.Transparent; + this.xrTableCell36.BorderColor = System.Drawing.Color.DarkGray; + this.xrTableCell36.Borders = ((DevExpress.XtraPrinting.BorderSide)(((DevExpress.XtraPrinting.BorderSide.Left | DevExpress.XtraPrinting.BorderSide.Top) + | DevExpress.XtraPrinting.BorderSide.Bottom))); + this.xrTableCell36.Font = new System.Drawing.Font("Calibri", 10.5F); + this.xrTableCell36.Name = "xrTableCell36"; + this.xrTableCell36.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 2, 2, 100F); + this.xrTableCell36.StylePriority.UseBackColor = false; + this.xrTableCell36.StylePriority.UseBorderColor = false; + this.xrTableCell36.StylePriority.UseBorders = false; + this.xrTableCell36.StylePriority.UseFont = false; + this.xrTableCell36.StylePriority.UsePadding = false; + this.xrTableCell36.StylePriority.UseTextAlignment = false; + this.xrTableCell36.Text = "Art"; + this.xrTableCell36.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleCenter; + this.xrTableCell36.Weight = 0.31317867897807589D; + // + // xrTableCell38 + // + this.xrTableCell38.BackColor = System.Drawing.Color.Transparent; + this.xrTableCell38.BorderColor = System.Drawing.Color.DarkGray; + this.xrTableCell38.Borders = ((DevExpress.XtraPrinting.BorderSide)(((DevExpress.XtraPrinting.BorderSide.Left | DevExpress.XtraPrinting.BorderSide.Top) + | DevExpress.XtraPrinting.BorderSide.Bottom))); + this.xrTableCell38.Font = new System.Drawing.Font("Calibri", 10.5F); + this.xrTableCell38.Name = "xrTableCell38"; + this.xrTableCell38.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 2, 2, 100F); + this.xrTableCell38.StylePriority.UseBackColor = false; + this.xrTableCell38.StylePriority.UseBorderColor = false; + this.xrTableCell38.StylePriority.UseBorders = false; + this.xrTableCell38.StylePriority.UseFont = false; + this.xrTableCell38.StylePriority.UsePadding = false; + this.xrTableCell38.StylePriority.UseTextAlignment = false; + this.xrTableCell38.Text = "GelFLS"; + this.xrTableCell38.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleCenter; + this.xrTableCell38.Weight = 0.31317868879546573D; + // + // xrTableCell34 + // + this.xrTableCell34.BackColor = System.Drawing.Color.Transparent; + this.xrTableCell34.BorderColor = System.Drawing.Color.DarkGray; + this.xrTableCell34.Borders = ((DevExpress.XtraPrinting.BorderSide)(((DevExpress.XtraPrinting.BorderSide.Left | DevExpress.XtraPrinting.BorderSide.Top) + | DevExpress.XtraPrinting.BorderSide.Bottom))); + this.xrTableCell34.Font = new System.Drawing.Font("Calibri", 10.5F); + this.xrTableCell34.Name = "xrTableCell34"; + this.xrTableCell34.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 2, 2, 100F); + this.xrTableCell34.StylePriority.UseBackColor = false; + this.xrTableCell34.StylePriority.UseBorderColor = false; + this.xrTableCell34.StylePriority.UseBorders = false; + this.xrTableCell34.StylePriority.UseFont = false; + this.xrTableCell34.StylePriority.UsePadding = false; + this.xrTableCell34.StylePriority.UseTextAlignment = false; + this.xrTableCell34.Text = "StdSatz"; + this.xrTableCell34.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleCenter; + this.xrTableCell34.Weight = 0.31317868325995035D; + // + // xrTableCell15 + // + this.xrTableCell15.BackColor = System.Drawing.Color.Transparent; + this.xrTableCell15.BorderColor = System.Drawing.Color.DarkGray; + this.xrTableCell15.Borders = ((DevExpress.XtraPrinting.BorderSide)((((DevExpress.XtraPrinting.BorderSide.Left | DevExpress.XtraPrinting.BorderSide.Top) + | DevExpress.XtraPrinting.BorderSide.Right) + | DevExpress.XtraPrinting.BorderSide.Bottom))); + this.xrTableCell15.Font = new System.Drawing.Font("Calibri", 10.5F); + this.xrTableCell15.Name = "xrTableCell15"; + this.xrTableCell15.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 2, 2, 100F); + this.xrTableCell15.StylePriority.UseBackColor = false; + this.xrTableCell15.StylePriority.UseBorderColor = false; + this.xrTableCell15.StylePriority.UseBorders = false; + this.xrTableCell15.StylePriority.UseFont = false; + this.xrTableCell15.StylePriority.UsePadding = false; + this.xrTableCell15.StylePriority.UseTextAlignment = false; + this.xrTableCell15.Text = "Summe"; + this.xrTableCell15.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleCenter; + this.xrTableCell15.Weight = 0.31317865481513246D; + // + // DetailReport2 + // + this.DetailReport2.Bands.AddRange(new DevExpress.XtraReports.UI.Band[] { + this.Detail3, + this.GroupFooter1}); + this.DetailReport2.DataMember = "ServiceInvoicePeriods.ServiceInvoiceItems"; + this.DetailReport2.DataSource = this.bindingSource1; + this.DetailReport2.Level = 0; + this.DetailReport2.Name = "DetailReport2"; + this.DetailReport2.PageBreak = DevExpress.XtraReports.UI.PageBreak.AfterBand; + // + // Detail3 + // + this.Detail3.Controls.AddRange(new DevExpress.XtraReports.UI.XRControl[] { + this.xrTable6}); + this.Detail3.HeightF = 25F; + this.Detail3.Name = "Detail3"; + // + // xrTable6 + // + this.xrTable6.Font = new System.Drawing.Font("Verdana", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0))); + this.xrTable6.LocationFloat = new DevExpress.Utils.PointFloat(0F, 0F); + this.xrTable6.Name = "xrTable6"; + this.xrTable6.Rows.AddRange(new DevExpress.XtraReports.UI.XRTableRow[] { + this.xrTableRow25}); + this.xrTable6.SizeF = new System.Drawing.SizeF(672.0002F, 25F); + this.xrTable6.StylePriority.UseFont = false; + // + // xrTableRow25 + // + this.xrTableRow25.Cells.AddRange(new DevExpress.XtraReports.UI.XRTableCell[] { + this.xrTableCell40, + this.xrTableCell16, + this.xrTableCell17, + this.xrTableCell18, + this.xrTableCell19, + this.xrTableCell20, + this.xrTableCell21, + this.xrTableCell22}); + this.xrTableRow25.Name = "xrTableRow25"; + this.xrTableRow25.Weight = 1D; + // + // xrTableCell40 + // + this.xrTableCell40.BorderColor = System.Drawing.Color.DarkGray; + this.xrTableCell40.Borders = ((DevExpress.XtraPrinting.BorderSide)((DevExpress.XtraPrinting.BorderSide.Left | DevExpress.XtraPrinting.BorderSide.Bottom))); + this.xrTableCell40.DataBindings.AddRange(new DevExpress.XtraReports.UI.XRBinding[] { + new DevExpress.XtraReports.UI.XRBinding("Text", null, "ServiceInvoicePeriods.ServiceInvoiceItems.AccountingPeriodStart", "{0:dd.MM.yyyy}")}); + this.xrTableCell40.Font = new System.Drawing.Font("Calibri", 10.5F); + this.xrTableCell40.Name = "xrTableCell40"; + this.xrTableCell40.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 2, 2, 100F); + this.xrTableCell40.StylePriority.UseBorderColor = false; + this.xrTableCell40.StylePriority.UseBorders = false; + this.xrTableCell40.StylePriority.UseFont = false; + this.xrTableCell40.StylePriority.UsePadding = false; + this.xrTableCell40.StylePriority.UseTextAlignment = false; + this.xrTableCell40.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleCenter; + this.xrTableCell40.Weight = 2.9999999999999996D; + // + // xrTableCell16 + // + this.xrTableCell16.BorderColor = System.Drawing.Color.DarkGray; + this.xrTableCell16.Borders = ((DevExpress.XtraPrinting.BorderSide)((DevExpress.XtraPrinting.BorderSide.Left | DevExpress.XtraPrinting.BorderSide.Bottom))); + this.xrTableCell16.DataBindings.AddRange(new DevExpress.XtraReports.UI.XRBinding[] { + new DevExpress.XtraReports.UI.XRBinding("Text", null, "ServiceInvoicePeriods.SupportConceptApprovalPeriod.CostBearer2SupportConcept.Supp" + + "ortConcept.StartDate", "{0:dd.MM.yyyy}")}); + this.xrTableCell16.Font = new System.Drawing.Font("Calibri", 10.5F); + this.xrTableCell16.Name = "xrTableCell16"; + this.xrTableCell16.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 2, 2, 100F); + this.xrTableCell16.StylePriority.UseBorderColor = false; + this.xrTableCell16.StylePriority.UseBorders = false; + this.xrTableCell16.StylePriority.UseFont = false; + this.xrTableCell16.StylePriority.UsePadding = false; + this.xrTableCell16.StylePriority.UseTextAlignment = false; + this.xrTableCell16.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleCenter; + this.xrTableCell16.Weight = 2.9999999999999996D; + // + // xrTableCell17 + // + this.xrTableCell17.BorderColor = System.Drawing.Color.DarkGray; + this.xrTableCell17.Borders = ((DevExpress.XtraPrinting.BorderSide)((DevExpress.XtraPrinting.BorderSide.Left | DevExpress.XtraPrinting.BorderSide.Bottom))); + this.xrTableCell17.DataBindings.AddRange(new DevExpress.XtraReports.UI.XRBinding[] { + new DevExpress.XtraReports.UI.XRBinding("Text", null, "ServiceInvoicePeriods.SupportConceptApprovalPeriod.CostBearer2SupportConcept.Supp" + + "ortConcept.EndDate", "{0:dd.MM.yyyy}")}); + this.xrTableCell17.Font = new System.Drawing.Font("Calibri", 10.5F); + this.xrTableCell17.Name = "xrTableCell17"; + this.xrTableCell17.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 2, 2, 100F); + this.xrTableCell17.StylePriority.UseBorderColor = false; + this.xrTableCell17.StylePriority.UseBorders = false; + this.xrTableCell17.StylePriority.UseFont = false; + this.xrTableCell17.StylePriority.UsePadding = false; + this.xrTableCell17.StylePriority.UseTextAlignment = false; + this.xrTableCell17.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleCenter; + this.xrTableCell17.Weight = 2.9999999999999996D; + // + // xrTableCell18 + // + this.xrTableCell18.BorderColor = System.Drawing.Color.DarkGray; + this.xrTableCell18.Borders = ((DevExpress.XtraPrinting.BorderSide)((DevExpress.XtraPrinting.BorderSide.Left | DevExpress.XtraPrinting.BorderSide.Bottom))); + this.xrTableCell18.Font = new System.Drawing.Font("Calibri", 10.5F); + this.xrTableCell18.Name = "xrTableCell18"; + this.xrTableCell18.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 2, 2, 100F); + this.xrTableCell18.StylePriority.UseBorderColor = false; + this.xrTableCell18.StylePriority.UseBorders = false; + this.xrTableCell18.StylePriority.UseFont = false; + this.xrTableCell18.StylePriority.UsePadding = false; + this.xrTableCell18.StylePriority.UseTextAlignment = false; + this.xrTableCell18.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleCenter; + this.xrTableCell18.Weight = 2.9999999999999996D; + // + // xrTableCell19 + // + this.xrTableCell19.BorderColor = System.Drawing.Color.DarkGray; + this.xrTableCell19.Borders = ((DevExpress.XtraPrinting.BorderSide)((DevExpress.XtraPrinting.BorderSide.Left | DevExpress.XtraPrinting.BorderSide.Bottom))); + this.xrTableCell19.DataBindings.AddRange(new DevExpress.XtraReports.UI.XRBinding[] { + new DevExpress.XtraReports.UI.XRBinding("Text", null, "ServiceInvoicePeriods.ServiceInvoiceItems.ServiceRecord.ServiceDescription.Catego" + + "ryName")}); + this.xrTableCell19.Font = new System.Drawing.Font("Calibri", 10.5F); + this.xrTableCell19.Name = "xrTableCell19"; + this.xrTableCell19.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 2, 2, 100F); + this.xrTableCell19.StylePriority.UseBorderColor = false; + this.xrTableCell19.StylePriority.UseBorders = false; + this.xrTableCell19.StylePriority.UseFont = false; + this.xrTableCell19.StylePriority.UsePadding = false; + this.xrTableCell19.StylePriority.UseTextAlignment = false; + this.xrTableCell19.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleCenter; + this.xrTableCell19.Weight = 2.9999999999999996D; + // + // xrTableCell20 + // + this.xrTableCell20.BorderColor = System.Drawing.Color.DarkGray; + this.xrTableCell20.Borders = ((DevExpress.XtraPrinting.BorderSide)((DevExpress.XtraPrinting.BorderSide.Left | DevExpress.XtraPrinting.BorderSide.Bottom))); + this.xrTableCell20.DataBindings.AddRange(new DevExpress.XtraReports.UI.XRBinding[] { + new DevExpress.XtraReports.UI.XRBinding("Text", null, "ServiceInvoicePeriods.ServiceInvoiceItems.UnitCount", "{0:0.00}")}); + this.xrTableCell20.Font = new System.Drawing.Font("Calibri", 10.5F); + this.xrTableCell20.Name = "xrTableCell20"; + this.xrTableCell20.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 2, 2, 100F); + this.xrTableCell20.StylePriority.UseBorderColor = false; + this.xrTableCell20.StylePriority.UseBorders = false; + this.xrTableCell20.StylePriority.UseFont = false; + this.xrTableCell20.StylePriority.UsePadding = false; + this.xrTableCell20.StylePriority.UseTextAlignment = false; + this.xrTableCell20.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleCenter; + this.xrTableCell20.Weight = 2.9999999999999996D; + // + // xrTableCell21 + // + this.xrTableCell21.BorderColor = System.Drawing.Color.DarkGray; + this.xrTableCell21.Borders = ((DevExpress.XtraPrinting.BorderSide)((DevExpress.XtraPrinting.BorderSide.Left | DevExpress.XtraPrinting.BorderSide.Bottom))); + this.xrTableCell21.DataBindings.AddRange(new DevExpress.XtraReports.UI.XRBinding[] { + new DevExpress.XtraReports.UI.XRBinding("Text", null, "ServiceInvoicePeriods.ServiceInvoiceItems.AmountPerUnit", "{0:c}")}); + this.xrTableCell21.Font = new System.Drawing.Font("Calibri", 10.5F); + this.xrTableCell21.Name = "xrTableCell21"; + this.xrTableCell21.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 2, 2, 100F); + this.xrTableCell21.StylePriority.UseBorderColor = false; + this.xrTableCell21.StylePriority.UseBorders = false; + this.xrTableCell21.StylePriority.UseFont = false; + this.xrTableCell21.StylePriority.UsePadding = false; + this.xrTableCell21.StylePriority.UseTextAlignment = false; + this.xrTableCell21.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleCenter; + this.xrTableCell21.Weight = 2.9999999999999996D; + // + // xrTableCell22 + // + this.xrTableCell22.BorderColor = System.Drawing.Color.DarkGray; + this.xrTableCell22.Borders = ((DevExpress.XtraPrinting.BorderSide)(((DevExpress.XtraPrinting.BorderSide.Left | DevExpress.XtraPrinting.BorderSide.Right) + | DevExpress.XtraPrinting.BorderSide.Bottom))); + this.xrTableCell22.DataBindings.AddRange(new DevExpress.XtraReports.UI.XRBinding[] { + new DevExpress.XtraReports.UI.XRBinding("Text", null, "ServiceInvoicePeriods.ServiceInvoiceItems.GrossAmount")}); + this.xrTableCell22.Font = new System.Drawing.Font("Calibri", 10.5F); + this.xrTableCell22.Name = "xrTableCell22"; + this.xrTableCell22.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 2, 2, 100F); + this.xrTableCell22.StylePriority.UseBorderColor = false; + this.xrTableCell22.StylePriority.UseBorders = false; + this.xrTableCell22.StylePriority.UseFont = false; + this.xrTableCell22.StylePriority.UsePadding = false; + this.xrTableCell22.StylePriority.UseTextAlignment = false; + this.xrTableCell22.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleCenter; + this.xrTableCell22.Weight = 2.9999999999999996D; + // + // GroupFooter1 + // + this.GroupFooter1.Controls.AddRange(new DevExpress.XtraReports.UI.XRControl[] { + this.xrTable3, + this.xrLabel5}); + this.GroupFooter1.HeightF = 161.7917F; + this.GroupFooter1.Name = "GroupFooter1"; + // + // bindingSource1 + // + this.bindingSource1.DataSource = typeof(BeWo.Report.ReportObjects.ServiceInvoiceRO); + // + // xrLabel5 + // + this.xrLabel5.DataBindings.AddRange(new DevExpress.XtraReports.UI.XRBinding[] { + new DevExpress.XtraReports.UI.XRBinding("Text", null, "GrossClaim", "Wir bitten den Betrag von {0} auf folgendes Konto zu überweisen.")}); + this.xrLabel5.Font = new System.Drawing.Font("Calibri", 10.5F, System.Drawing.FontStyle.Bold); + this.xrLabel5.LocationFloat = new DevExpress.Utils.PointFloat(0F, 115.3334F); + this.xrLabel5.Name = "xrLabel5"; + this.xrLabel5.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 5, 0, 0, 100F); + this.xrLabel5.SizeF = new System.Drawing.SizeF(677F, 25F); + this.xrLabel5.StylePriority.UseFont = false; + this.xrLabel5.StylePriority.UsePadding = false; + this.xrLabel5.StylePriority.UseTextAlignment = false; + this.xrLabel5.Text = "xrLabel1"; + this.xrLabel5.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleLeft; + // + // xrTable3 + // + this.xrTable3.BorderColor = System.Drawing.Color.Black; + this.xrTable3.Borders = ((DevExpress.XtraPrinting.BorderSide)(((DevExpress.XtraPrinting.BorderSide.Left | DevExpress.XtraPrinting.BorderSide.Right) + | DevExpress.XtraPrinting.BorderSide.Bottom))); + this.xrTable3.Font = new System.Drawing.Font("Arial", 10F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0))); + this.xrTable3.LocationFloat = new DevExpress.Utils.PointFloat(0F, 0F); + this.xrTable3.Name = "xrTable3"; + this.xrTable3.Padding = new DevExpress.XtraPrinting.PaddingInfo(0, 0, 0, 0, 100F); + this.xrTable3.Rows.AddRange(new DevExpress.XtraReports.UI.XRTableRow[] { + this.xrTableRow10, + this.xrTableRow14, + this.xrTableRow15, + this.xrTableRow16}); + this.xrTable3.SizeF = new System.Drawing.SizeF(672.0002F, 88F); + this.xrTable3.StylePriority.UseFont = false; + this.xrTable3.TextAlignment = DevExpress.XtraPrinting.TextAlignment.TopLeft; + // + // xrTableRow10 + // + this.xrTableRow10.Cells.AddRange(new DevExpress.XtraReports.UI.XRTableCell[] { + this.lblKategorie1, + this.xrTableCell9, + this.xrTableCell12, + this.xrTableCellwf, + this.wrfwergr, + this.lblSummeGelFLS1, + this.xrTableCell41, + this.lblSumme1}); + this.xrTableRow10.Name = "xrTableRow10"; + this.xrTableRow10.Padding = new DevExpress.XtraPrinting.PaddingInfo(0, 0, 0, 0, 100F); + this.xrTableRow10.TextAlignment = DevExpress.XtraPrinting.TextAlignment.TopLeft; + this.xrTableRow10.Weight = 0.82499883949919872D; + // + // lblKategorie1 + // + this.lblKategorie1.BorderColor = System.Drawing.Color.DarkGray; + this.lblKategorie1.Borders = ((DevExpress.XtraPrinting.BorderSide)((DevExpress.XtraPrinting.BorderSide.Left | DevExpress.XtraPrinting.BorderSide.Bottom))); + this.lblKategorie1.Font = new System.Drawing.Font("Arial", 10F); + this.lblKategorie1.Name = "lblKategorie1"; + this.lblKategorie1.Padding = new DevExpress.XtraPrinting.PaddingInfo(4, 0, 2, 0, 100F); + this.lblKategorie1.StylePriority.UseBorderColor = false; + this.lblKategorie1.StylePriority.UseBorders = false; + this.lblKategorie1.StylePriority.UseFont = false; + this.lblKategorie1.StylePriority.UsePadding = false; + this.lblKategorie1.StylePriority.UseTextAlignment = false; + this.lblKategorie1.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleCenter; + this.lblKategorie1.Weight = 0.076656496982748429D; + // + // xrTableCell9 + // + this.xrTableCell9.BorderColor = System.Drawing.Color.DarkGray; + this.xrTableCell9.Borders = ((DevExpress.XtraPrinting.BorderSide)((DevExpress.XtraPrinting.BorderSide.Left | DevExpress.XtraPrinting.BorderSide.Bottom))); + this.xrTableCell9.Font = new System.Drawing.Font("Arial", 10F); + this.xrTableCell9.Multiline = true; + this.xrTableCell9.Name = "xrTableCell9"; + this.xrTableCell9.Padding = new DevExpress.XtraPrinting.PaddingInfo(4, 0, 2, 0, 100F); + this.xrTableCell9.StylePriority.UseBorderColor = false; + this.xrTableCell9.StylePriority.UseBorders = false; + this.xrTableCell9.StylePriority.UseFont = false; + this.xrTableCell9.StylePriority.UsePadding = false; + this.xrTableCell9.StylePriority.UseTextAlignment = false; + this.xrTableCell9.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleLeft; + this.xrTableCell9.Weight = 0.076656472976401532D; + // + // xrTableCell12 + // + this.xrTableCell12.BorderColor = System.Drawing.Color.DarkGray; + this.xrTableCell12.Borders = ((DevExpress.XtraPrinting.BorderSide)((DevExpress.XtraPrinting.BorderSide.Left | DevExpress.XtraPrinting.BorderSide.Bottom))); + this.xrTableCell12.Font = new System.Drawing.Font("Arial", 10F); + this.xrTableCell12.Multiline = true; + this.xrTableCell12.Name = "xrTableCell12"; + this.xrTableCell12.Padding = new DevExpress.XtraPrinting.PaddingInfo(4, 0, 2, 0, 100F); + this.xrTableCell12.StylePriority.UseBorderColor = false; + this.xrTableCell12.StylePriority.UseBorders = false; + this.xrTableCell12.StylePriority.UseFont = false; + this.xrTableCell12.StylePriority.UsePadding = false; + this.xrTableCell12.StylePriority.UseTextAlignment = false; + this.xrTableCell12.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleLeft; + this.xrTableCell12.Weight = 0.076656504057011771D; + // + // xrTableCellwf + // + this.xrTableCellwf.BorderColor = System.Drawing.Color.DarkGray; + this.xrTableCellwf.Borders = ((DevExpress.XtraPrinting.BorderSide)((DevExpress.XtraPrinting.BorderSide.Left | DevExpress.XtraPrinting.BorderSide.Bottom))); + this.xrTableCellwf.Font = new System.Drawing.Font("Arial", 10F); + this.xrTableCellwf.Name = "xrTableCellwf"; + this.xrTableCellwf.Padding = new DevExpress.XtraPrinting.PaddingInfo(4, 0, 2, 0, 100F); + this.xrTableCellwf.StylePriority.UseBorderColor = false; + this.xrTableCellwf.StylePriority.UseBorders = false; + this.xrTableCellwf.StylePriority.UseFont = false; + this.xrTableCellwf.StylePriority.UsePadding = false; + this.xrTableCellwf.StylePriority.UseTextAlignment = false; + this.xrTableCellwf.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleLeft; + this.xrTableCellwf.Weight = 0.076656554409376D; + // + // wrfwergr + // + this.wrfwergr.BorderColor = System.Drawing.Color.DarkGray; + this.wrfwergr.Borders = ((DevExpress.XtraPrinting.BorderSide)((DevExpress.XtraPrinting.BorderSide.Left | DevExpress.XtraPrinting.BorderSide.Bottom))); + this.wrfwergr.Font = new System.Drawing.Font("Arial", 10F); + this.wrfwergr.Name = "wrfwergr"; + this.wrfwergr.Padding = new DevExpress.XtraPrinting.PaddingInfo(4, 0, 2, 0, 100F); + this.wrfwergr.StylePriority.UseBorderColor = false; + this.wrfwergr.StylePriority.UseBorders = false; + this.wrfwergr.StylePriority.UseFont = false; + this.wrfwergr.StylePriority.UsePadding = false; + this.wrfwergr.StylePriority.UseTextAlignment = false; + this.wrfwergr.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleLeft; + this.wrfwergr.Weight = 0.076656524108514215D; + // + // xrTableRow14 + // + this.xrTableRow14.Cells.AddRange(new DevExpress.XtraReports.UI.XRTableCell[] { + this.lblKategorie2, + this.xrTableCell23, + this.xrTableCell24, + this.xrTableCellwfr, + this.trhtzjt, + this.lblSummeGelFLS2, + this.xrTableCell42, + this.lblSumme2}); + this.xrTableRow14.Name = "xrTableRow14"; + this.xrTableRow14.Weight = 0.82499883949919872D; + // + // lblKategorie2 + // + this.lblKategorie2.BorderColor = System.Drawing.Color.DarkGray; + this.lblKategorie2.Borders = ((DevExpress.XtraPrinting.BorderSide)((DevExpress.XtraPrinting.BorderSide.Left | DevExpress.XtraPrinting.BorderSide.Bottom))); + this.lblKategorie2.Font = new System.Drawing.Font("Arial", 10F); + this.lblKategorie2.Name = "lblKategorie2"; + this.lblKategorie2.Padding = new DevExpress.XtraPrinting.PaddingInfo(4, 0, 2, 0, 100F); + this.lblKategorie2.StylePriority.UseBorderColor = false; + this.lblKategorie2.StylePriority.UseBorders = false; + this.lblKategorie2.StylePriority.UseFont = false; + this.lblKategorie2.StylePriority.UsePadding = false; + this.lblKategorie2.StylePriority.UseTextAlignment = false; + this.lblKategorie2.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleCenter; + this.lblKategorie2.Weight = 0.076656496982748429D; + // + // xrTableCell23 + // + this.xrTableCell23.BorderColor = System.Drawing.Color.DarkGray; + this.xrTableCell23.Borders = ((DevExpress.XtraPrinting.BorderSide)((DevExpress.XtraPrinting.BorderSide.Left | DevExpress.XtraPrinting.BorderSide.Bottom))); + this.xrTableCell23.Font = new System.Drawing.Font("Arial", 10F); + this.xrTableCell23.Name = "xrTableCell23"; + this.xrTableCell23.Padding = new DevExpress.XtraPrinting.PaddingInfo(4, 0, 2, 0, 100F); + this.xrTableCell23.StylePriority.UseBorderColor = false; + this.xrTableCell23.StylePriority.UseBorders = false; + this.xrTableCell23.StylePriority.UseFont = false; + this.xrTableCell23.StylePriority.UsePadding = false; + this.xrTableCell23.StylePriority.UseTextAlignment = false; + this.xrTableCell23.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleLeft; + this.xrTableCell23.Weight = 0.076656528675696D; + // + // xrTableCell24 + // + this.xrTableCell24.BorderColor = System.Drawing.Color.DarkGray; + this.xrTableCell24.Borders = ((DevExpress.XtraPrinting.BorderSide)((DevExpress.XtraPrinting.BorderSide.Left | DevExpress.XtraPrinting.BorderSide.Bottom))); + this.xrTableCell24.Font = new System.Drawing.Font("Arial", 10F); + this.xrTableCell24.Name = "xrTableCell24"; + this.xrTableCell24.Padding = new DevExpress.XtraPrinting.PaddingInfo(4, 0, 2, 0, 100F); + this.xrTableCell24.StylePriority.UseBorderColor = false; + this.xrTableCell24.StylePriority.UseBorders = false; + this.xrTableCell24.StylePriority.UseFont = false; + this.xrTableCell24.StylePriority.UsePadding = false; + this.xrTableCell24.StylePriority.UseTextAlignment = false; + this.xrTableCell24.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleLeft; + this.xrTableCell24.Weight = 0.076656504057011743D; + // + // xrTableCellwfr + // + this.xrTableCellwfr.BorderColor = System.Drawing.Color.DarkGray; + this.xrTableCellwfr.Borders = ((DevExpress.XtraPrinting.BorderSide)((DevExpress.XtraPrinting.BorderSide.Left | DevExpress.XtraPrinting.BorderSide.Bottom))); + this.xrTableCellwfr.Font = new System.Drawing.Font("Arial", 10F); + this.xrTableCellwfr.Name = "xrTableCellwfr"; + this.xrTableCellwfr.Padding = new DevExpress.XtraPrinting.PaddingInfo(4, 0, 2, 0, 100F); + this.xrTableCellwfr.StylePriority.UseBorderColor = false; + this.xrTableCellwfr.StylePriority.UseBorders = false; + this.xrTableCellwfr.StylePriority.UseFont = false; + this.xrTableCellwfr.StylePriority.UsePadding = false; + this.xrTableCellwfr.StylePriority.UseTextAlignment = false; + this.xrTableCellwfr.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleLeft; + this.xrTableCellwfr.Weight = 0.076656498710081483D; + // + // trhtzjt + // + this.trhtzjt.BorderColor = System.Drawing.Color.DarkGray; + this.trhtzjt.Borders = ((DevExpress.XtraPrinting.BorderSide)((DevExpress.XtraPrinting.BorderSide.Left | DevExpress.XtraPrinting.BorderSide.Bottom))); + this.trhtzjt.Font = new System.Drawing.Font("Arial", 10F); + this.trhtzjt.Name = "trhtzjt"; + this.trhtzjt.Padding = new DevExpress.XtraPrinting.PaddingInfo(4, 0, 2, 0, 100F); + this.trhtzjt.StylePriority.UseBorderColor = false; + this.trhtzjt.StylePriority.UseBorders = false; + this.trhtzjt.StylePriority.UseFont = false; + this.trhtzjt.StylePriority.UsePadding = false; + this.trhtzjt.StylePriority.UseTextAlignment = false; + this.trhtzjt.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleLeft; + this.trhtzjt.Weight = 0.076656524108514271D; + // + // xrTableRow15 + // + this.xrTableRow15.Cells.AddRange(new DevExpress.XtraReports.UI.XRTableCell[] { + this.lblKategorie3, + this.xrTableCell25, + this.xrTableCell26, + this.xrTableCellwfffg, + this.regtrhzr, + this.lblSummeGelFLS3, + this.xrTableCell43, + this.lblSumme3}); + this.xrTableRow15.Name = "xrTableRow15"; + this.xrTableRow15.Weight = 0.82499883949919872D; + // + // lblKategorie3 + // + this.lblKategorie3.BorderColor = System.Drawing.Color.DarkGray; + this.lblKategorie3.Borders = ((DevExpress.XtraPrinting.BorderSide)((DevExpress.XtraPrinting.BorderSide.Left | DevExpress.XtraPrinting.BorderSide.Bottom))); + this.lblKategorie3.Font = new System.Drawing.Font("Arial", 10F); + this.lblKategorie3.Name = "lblKategorie3"; + this.lblKategorie3.Padding = new DevExpress.XtraPrinting.PaddingInfo(4, 0, 2, 0, 100F); + this.lblKategorie3.StylePriority.UseBorderColor = false; + this.lblKategorie3.StylePriority.UseBorders = false; + this.lblKategorie3.StylePriority.UseFont = false; + this.lblKategorie3.StylePriority.UsePadding = false; + this.lblKategorie3.StylePriority.UseTextAlignment = false; + this.lblKategorie3.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleCenter; + this.lblKategorie3.Weight = 0.076656496982748429D; + // + // xrTableCell25 + // + this.xrTableCell25.BorderColor = System.Drawing.Color.DarkGray; + this.xrTableCell25.Borders = ((DevExpress.XtraPrinting.BorderSide)((DevExpress.XtraPrinting.BorderSide.Left | DevExpress.XtraPrinting.BorderSide.Bottom))); + this.xrTableCell25.Font = new System.Drawing.Font("Arial", 10F); + this.xrTableCell25.Name = "xrTableCell25"; + this.xrTableCell25.Padding = new DevExpress.XtraPrinting.PaddingInfo(4, 0, 2, 0, 100F); + this.xrTableCell25.StylePriority.UseBorderColor = false; + this.xrTableCell25.StylePriority.UseBorders = false; + this.xrTableCell25.StylePriority.UseFont = false; + this.xrTableCell25.StylePriority.UsePadding = false; + this.xrTableCell25.StylePriority.UseTextAlignment = false; + this.xrTableCell25.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleLeft; + this.xrTableCell25.Weight = 0.076656528675696D; + // + // xrTableCell26 + // + this.xrTableCell26.BorderColor = System.Drawing.Color.DarkGray; + this.xrTableCell26.Borders = ((DevExpress.XtraPrinting.BorderSide)((DevExpress.XtraPrinting.BorderSide.Left | DevExpress.XtraPrinting.BorderSide.Bottom))); + this.xrTableCell26.Font = new System.Drawing.Font("Arial", 10F); + this.xrTableCell26.Name = "xrTableCell26"; + this.xrTableCell26.Padding = new DevExpress.XtraPrinting.PaddingInfo(4, 0, 2, 0, 100F); + this.xrTableCell26.StylePriority.UseBorderColor = false; + this.xrTableCell26.StylePriority.UseBorders = false; + this.xrTableCell26.StylePriority.UseFont = false; + this.xrTableCell26.StylePriority.UsePadding = false; + this.xrTableCell26.StylePriority.UseTextAlignment = false; + this.xrTableCell26.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleLeft; + this.xrTableCell26.Weight = 0.076656504057011743D; + // + // xrTableCellwfffg + // + this.xrTableCellwfffg.BorderColor = System.Drawing.Color.DarkGray; + this.xrTableCellwfffg.Borders = ((DevExpress.XtraPrinting.BorderSide)((DevExpress.XtraPrinting.BorderSide.Left | DevExpress.XtraPrinting.BorderSide.Bottom))); + this.xrTableCellwfffg.Font = new System.Drawing.Font("Arial", 10F); + this.xrTableCellwfffg.Name = "xrTableCellwfffg"; + this.xrTableCellwfffg.Padding = new DevExpress.XtraPrinting.PaddingInfo(4, 0, 2, 0, 100F); + this.xrTableCellwfffg.StylePriority.UseBorderColor = false; + this.xrTableCellwfffg.StylePriority.UseBorders = false; + this.xrTableCellwfffg.StylePriority.UseFont = false; + this.xrTableCellwfffg.StylePriority.UsePadding = false; + this.xrTableCellwfffg.StylePriority.UseTextAlignment = false; + this.xrTableCellwfffg.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleLeft; + this.xrTableCellwfffg.Weight = 0.076656498710081483D; + // + // regtrhzr + // + this.regtrhzr.BorderColor = System.Drawing.Color.DarkGray; + this.regtrhzr.Borders = ((DevExpress.XtraPrinting.BorderSide)((DevExpress.XtraPrinting.BorderSide.Left | DevExpress.XtraPrinting.BorderSide.Bottom))); + this.regtrhzr.Font = new System.Drawing.Font("Arial", 10F); + this.regtrhzr.Name = "regtrhzr"; + this.regtrhzr.Padding = new DevExpress.XtraPrinting.PaddingInfo(4, 0, 2, 0, 100F); + this.regtrhzr.StylePriority.UseBorderColor = false; + this.regtrhzr.StylePriority.UseBorders = false; + this.regtrhzr.StylePriority.UseFont = false; + this.regtrhzr.StylePriority.UsePadding = false; + this.regtrhzr.StylePriority.UseTextAlignment = false; + this.regtrhzr.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleLeft; + this.regtrhzr.Weight = 0.076656524108514271D; + // + // lblSummeGelFLS1 + // + this.lblSummeGelFLS1.BorderColor = System.Drawing.Color.DarkGray; + this.lblSummeGelFLS1.Borders = ((DevExpress.XtraPrinting.BorderSide)((DevExpress.XtraPrinting.BorderSide.Left | DevExpress.XtraPrinting.BorderSide.Bottom))); + this.lblSummeGelFLS1.Font = new System.Drawing.Font("Arial", 10F); + this.lblSummeGelFLS1.Name = "lblSummeGelFLS1"; + this.lblSummeGelFLS1.Padding = new DevExpress.XtraPrinting.PaddingInfo(4, 0, 2, 0, 100F); + this.lblSummeGelFLS1.StylePriority.UseBorderColor = false; + this.lblSummeGelFLS1.StylePriority.UseBorders = false; + this.lblSummeGelFLS1.StylePriority.UseFont = false; + this.lblSummeGelFLS1.StylePriority.UsePadding = false; + this.lblSummeGelFLS1.StylePriority.UseTextAlignment = false; + this.lblSummeGelFLS1.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleCenter; + this.lblSummeGelFLS1.Weight = 0.076656524108514215D; + // + // lblSummeGelFLS2 + // + this.lblSummeGelFLS2.BorderColor = System.Drawing.Color.DarkGray; + this.lblSummeGelFLS2.Borders = ((DevExpress.XtraPrinting.BorderSide)((DevExpress.XtraPrinting.BorderSide.Left | DevExpress.XtraPrinting.BorderSide.Bottom))); + this.lblSummeGelFLS2.Font = new System.Drawing.Font("Arial", 10F); + this.lblSummeGelFLS2.Name = "lblSummeGelFLS2"; + this.lblSummeGelFLS2.Padding = new DevExpress.XtraPrinting.PaddingInfo(4, 0, 2, 0, 100F); + this.lblSummeGelFLS2.StylePriority.UseBorderColor = false; + this.lblSummeGelFLS2.StylePriority.UseBorders = false; + this.lblSummeGelFLS2.StylePriority.UseFont = false; + this.lblSummeGelFLS2.StylePriority.UsePadding = false; + this.lblSummeGelFLS2.StylePriority.UseTextAlignment = false; + this.lblSummeGelFLS2.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleCenter; + this.lblSummeGelFLS2.Weight = 0.076656524108514271D; + // + // lblSummeGelFLS3 + // + this.lblSummeGelFLS3.BorderColor = System.Drawing.Color.DarkGray; + this.lblSummeGelFLS3.Borders = ((DevExpress.XtraPrinting.BorderSide)((DevExpress.XtraPrinting.BorderSide.Left | DevExpress.XtraPrinting.BorderSide.Bottom))); + this.lblSummeGelFLS3.Font = new System.Drawing.Font("Arial", 10F); + this.lblSummeGelFLS3.Name = "lblSummeGelFLS3"; + this.lblSummeGelFLS3.Padding = new DevExpress.XtraPrinting.PaddingInfo(4, 0, 2, 0, 100F); + this.lblSummeGelFLS3.StylePriority.UseBorderColor = false; + this.lblSummeGelFLS3.StylePriority.UseBorders = false; + this.lblSummeGelFLS3.StylePriority.UseFont = false; + this.lblSummeGelFLS3.StylePriority.UsePadding = false; + this.lblSummeGelFLS3.StylePriority.UseTextAlignment = false; + this.lblSummeGelFLS3.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleCenter; + this.lblSummeGelFLS3.Weight = 0.076656524108514271D; + // + // xrTableCell41 + // + this.xrTableCell41.BorderColor = System.Drawing.Color.DarkGray; + this.xrTableCell41.Borders = ((DevExpress.XtraPrinting.BorderSide)((DevExpress.XtraPrinting.BorderSide.Left | DevExpress.XtraPrinting.BorderSide.Bottom))); + this.xrTableCell41.Font = new System.Drawing.Font("Arial", 10F); + this.xrTableCell41.Name = "xrTableCell41"; + this.xrTableCell41.Padding = new DevExpress.XtraPrinting.PaddingInfo(4, 0, 2, 0, 100F); + this.xrTableCell41.StylePriority.UseBorderColor = false; + this.xrTableCell41.StylePriority.UseBorders = false; + this.xrTableCell41.StylePriority.UseFont = false; + this.xrTableCell41.StylePriority.UsePadding = false; + this.xrTableCell41.StylePriority.UseTextAlignment = false; + this.xrTableCell41.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleLeft; + this.xrTableCell41.Weight = 0.076656524108514215D; + // + // xrTableCell42 + // + this.xrTableCell42.BorderColor = System.Drawing.Color.DarkGray; + this.xrTableCell42.Borders = ((DevExpress.XtraPrinting.BorderSide)((DevExpress.XtraPrinting.BorderSide.Left | DevExpress.XtraPrinting.BorderSide.Bottom))); + this.xrTableCell42.Font = new System.Drawing.Font("Arial", 10F); + this.xrTableCell42.Name = "xrTableCell42"; + this.xrTableCell42.Padding = new DevExpress.XtraPrinting.PaddingInfo(4, 0, 2, 0, 100F); + this.xrTableCell42.StylePriority.UseBorderColor = false; + this.xrTableCell42.StylePriority.UseBorders = false; + this.xrTableCell42.StylePriority.UseFont = false; + this.xrTableCell42.StylePriority.UsePadding = false; + this.xrTableCell42.StylePriority.UseTextAlignment = false; + this.xrTableCell42.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleLeft; + this.xrTableCell42.Weight = 0.076656524108514271D; + // + // xrTableCell43 + // + this.xrTableCell43.BorderColor = System.Drawing.Color.DarkGray; + this.xrTableCell43.Borders = ((DevExpress.XtraPrinting.BorderSide)((DevExpress.XtraPrinting.BorderSide.Left | DevExpress.XtraPrinting.BorderSide.Bottom))); + this.xrTableCell43.Font = new System.Drawing.Font("Arial", 10F); + this.xrTableCell43.Name = "xrTableCell43"; + this.xrTableCell43.Padding = new DevExpress.XtraPrinting.PaddingInfo(4, 0, 2, 0, 100F); + this.xrTableCell43.StylePriority.UseBorderColor = false; + this.xrTableCell43.StylePriority.UseBorders = false; + this.xrTableCell43.StylePriority.UseFont = false; + this.xrTableCell43.StylePriority.UsePadding = false; + this.xrTableCell43.StylePriority.UseTextAlignment = false; + this.xrTableCell43.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleLeft; + this.xrTableCell43.Weight = 0.076656524108514271D; + // + // lblSumme1 + // + this.lblSumme1.BorderColor = System.Drawing.Color.DarkGray; + this.lblSumme1.Borders = ((DevExpress.XtraPrinting.BorderSide)(((DevExpress.XtraPrinting.BorderSide.Left | DevExpress.XtraPrinting.BorderSide.Right) + | DevExpress.XtraPrinting.BorderSide.Bottom))); + this.lblSumme1.Font = new System.Drawing.Font("Arial", 10F); + this.lblSumme1.Name = "lblSumme1"; + this.lblSumme1.Padding = new DevExpress.XtraPrinting.PaddingInfo(4, 0, 2, 0, 100F); + this.lblSumme1.StylePriority.UseBorderColor = false; + this.lblSumme1.StylePriority.UseBorders = false; + this.lblSumme1.StylePriority.UseFont = false; + this.lblSumme1.StylePriority.UsePadding = false; + this.lblSumme1.StylePriority.UseTextAlignment = false; + this.lblSumme1.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleCenter; + this.lblSumme1.Weight = 0.076656524108514215D; + // + // lblSumme2 + // + this.lblSumme2.BorderColor = System.Drawing.Color.DarkGray; + this.lblSumme2.Borders = ((DevExpress.XtraPrinting.BorderSide)(((DevExpress.XtraPrinting.BorderSide.Left | DevExpress.XtraPrinting.BorderSide.Right) + | DevExpress.XtraPrinting.BorderSide.Bottom))); + this.lblSumme2.Font = new System.Drawing.Font("Arial", 10F); + this.lblSumme2.Name = "lblSumme2"; + this.lblSumme2.Padding = new DevExpress.XtraPrinting.PaddingInfo(4, 0, 2, 0, 100F); + this.lblSumme2.StylePriority.UseBorderColor = false; + this.lblSumme2.StylePriority.UseBorders = false; + this.lblSumme2.StylePriority.UseFont = false; + this.lblSumme2.StylePriority.UsePadding = false; + this.lblSumme2.StylePriority.UseTextAlignment = false; + this.lblSumme2.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleCenter; + this.lblSumme2.Weight = 0.076656524108514271D; + // + // lblSumme3 + // + this.lblSumme3.BorderColor = System.Drawing.Color.DarkGray; + this.lblSumme3.Borders = ((DevExpress.XtraPrinting.BorderSide)(((DevExpress.XtraPrinting.BorderSide.Left | DevExpress.XtraPrinting.BorderSide.Right) + | DevExpress.XtraPrinting.BorderSide.Bottom))); + this.lblSumme3.Font = new System.Drawing.Font("Arial", 10F); + this.lblSumme3.Name = "lblSumme3"; + this.lblSumme3.Padding = new DevExpress.XtraPrinting.PaddingInfo(4, 0, 2, 0, 100F); + this.lblSumme3.StylePriority.UseBorderColor = false; + this.lblSumme3.StylePriority.UseBorders = false; + this.lblSumme3.StylePriority.UseFont = false; + this.lblSumme3.StylePriority.UsePadding = false; + this.lblSumme3.StylePriority.UseTextAlignment = false; + this.lblSumme3.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleCenter; + this.lblSumme3.Weight = 0.076656524108514271D; + // + // xrTableRow16 + // + this.xrTableRow16.Cells.AddRange(new DevExpress.XtraReports.UI.XRTableCell[] { + this.lblKategorie4, + this.xrTableCell28, + this.xrTableCell29, + this.xrTableCell30, + this.xrTableCell39, + this.lblSummeGelFLS4, + this.xrTableCell48, + this.lblSumme4}); + this.xrTableRow16.Name = "xrTableRow16"; + this.xrTableRow16.Weight = 0.82499883949919872D; + // + // lblKategorie4 + // + this.lblKategorie4.BorderColor = System.Drawing.Color.DarkGray; + this.lblKategorie4.Borders = ((DevExpress.XtraPrinting.BorderSide)((DevExpress.XtraPrinting.BorderSide.Left | DevExpress.XtraPrinting.BorderSide.Bottom))); + this.lblKategorie4.Font = new System.Drawing.Font("Arial", 10F); + this.lblKategorie4.Name = "lblKategorie4"; + this.lblKategorie4.Padding = new DevExpress.XtraPrinting.PaddingInfo(4, 0, 2, 0, 100F); + this.lblKategorie4.StylePriority.UseBorderColor = false; + this.lblKategorie4.StylePriority.UseBorders = false; + this.lblKategorie4.StylePriority.UseFont = false; + this.lblKategorie4.StylePriority.UsePadding = false; + this.lblKategorie4.StylePriority.UseTextAlignment = false; + this.lblKategorie4.Text = "Gesamt:"; + this.lblKategorie4.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleCenter; + this.lblKategorie4.Weight = 0.076656496982748429D; + // + // xrTableCell28 + // + this.xrTableCell28.BorderColor = System.Drawing.Color.DarkGray; + this.xrTableCell28.Borders = ((DevExpress.XtraPrinting.BorderSide)((DevExpress.XtraPrinting.BorderSide.Left | DevExpress.XtraPrinting.BorderSide.Bottom))); + this.xrTableCell28.Font = new System.Drawing.Font("Arial", 10F); + this.xrTableCell28.Name = "xrTableCell28"; + this.xrTableCell28.Padding = new DevExpress.XtraPrinting.PaddingInfo(4, 0, 2, 0, 100F); + this.xrTableCell28.StylePriority.UseBorderColor = false; + this.xrTableCell28.StylePriority.UseBorders = false; + this.xrTableCell28.StylePriority.UseFont = false; + this.xrTableCell28.StylePriority.UsePadding = false; + this.xrTableCell28.StylePriority.UseTextAlignment = false; + this.xrTableCell28.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleLeft; + this.xrTableCell28.Weight = 0.076656528675696D; + // + // xrTableCell29 + // + this.xrTableCell29.BorderColor = System.Drawing.Color.DarkGray; + this.xrTableCell29.Borders = ((DevExpress.XtraPrinting.BorderSide)((DevExpress.XtraPrinting.BorderSide.Left | DevExpress.XtraPrinting.BorderSide.Bottom))); + this.xrTableCell29.Font = new System.Drawing.Font("Arial", 10F); + this.xrTableCell29.Name = "xrTableCell29"; + this.xrTableCell29.Padding = new DevExpress.XtraPrinting.PaddingInfo(4, 0, 2, 0, 100F); + this.xrTableCell29.StylePriority.UseBorderColor = false; + this.xrTableCell29.StylePriority.UseBorders = false; + this.xrTableCell29.StylePriority.UseFont = false; + this.xrTableCell29.StylePriority.UsePadding = false; + this.xrTableCell29.StylePriority.UseTextAlignment = false; + this.xrTableCell29.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleLeft; + this.xrTableCell29.Weight = 0.076656504057011743D; + // + // xrTableCell30 + // + this.xrTableCell30.BorderColor = System.Drawing.Color.DarkGray; + this.xrTableCell30.Borders = ((DevExpress.XtraPrinting.BorderSide)((DevExpress.XtraPrinting.BorderSide.Left | DevExpress.XtraPrinting.BorderSide.Bottom))); + this.xrTableCell30.Font = new System.Drawing.Font("Arial", 10F); + this.xrTableCell30.Name = "xrTableCell30"; + this.xrTableCell30.Padding = new DevExpress.XtraPrinting.PaddingInfo(4, 0, 2, 0, 100F); + this.xrTableCell30.StylePriority.UseBorderColor = false; + this.xrTableCell30.StylePriority.UseBorders = false; + this.xrTableCell30.StylePriority.UseFont = false; + this.xrTableCell30.StylePriority.UsePadding = false; + this.xrTableCell30.StylePriority.UseTextAlignment = false; + this.xrTableCell30.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleLeft; + this.xrTableCell30.Weight = 0.076656498710081483D; + // + // xrTableCell39 + // + this.xrTableCell39.BorderColor = System.Drawing.Color.DarkGray; + this.xrTableCell39.Borders = ((DevExpress.XtraPrinting.BorderSide)((DevExpress.XtraPrinting.BorderSide.Left | DevExpress.XtraPrinting.BorderSide.Bottom))); + this.xrTableCell39.Font = new System.Drawing.Font("Arial", 10F); + this.xrTableCell39.Name = "xrTableCell39"; + this.xrTableCell39.Padding = new DevExpress.XtraPrinting.PaddingInfo(4, 0, 2, 0, 100F); + this.xrTableCell39.StylePriority.UseBorderColor = false; + this.xrTableCell39.StylePriority.UseBorders = false; + this.xrTableCell39.StylePriority.UseFont = false; + this.xrTableCell39.StylePriority.UsePadding = false; + this.xrTableCell39.StylePriority.UseTextAlignment = false; + this.xrTableCell39.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleLeft; + this.xrTableCell39.Weight = 0.076656524108514271D; + // + // lblSummeGelFLS4 + // + this.lblSummeGelFLS4.BorderColor = System.Drawing.Color.DarkGray; + this.lblSummeGelFLS4.Borders = ((DevExpress.XtraPrinting.BorderSide)((DevExpress.XtraPrinting.BorderSide.Left | DevExpress.XtraPrinting.BorderSide.Bottom))); + this.lblSummeGelFLS4.Font = new System.Drawing.Font("Arial", 10F); + this.lblSummeGelFLS4.Name = "lblSummeGelFLS4"; + this.lblSummeGelFLS4.Padding = new DevExpress.XtraPrinting.PaddingInfo(4, 0, 2, 0, 100F); + this.lblSummeGelFLS4.StylePriority.UseBorderColor = false; + this.lblSummeGelFLS4.StylePriority.UseBorders = false; + this.lblSummeGelFLS4.StylePriority.UseFont = false; + this.lblSummeGelFLS4.StylePriority.UsePadding = false; + this.lblSummeGelFLS4.StylePriority.UseTextAlignment = false; + this.lblSummeGelFLS4.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleCenter; + this.lblSummeGelFLS4.Weight = 0.076656524108514271D; + // + // xrTableCell48 + // + this.xrTableCell48.BorderColor = System.Drawing.Color.DarkGray; + this.xrTableCell48.Borders = ((DevExpress.XtraPrinting.BorderSide)((DevExpress.XtraPrinting.BorderSide.Left | DevExpress.XtraPrinting.BorderSide.Bottom))); + this.xrTableCell48.Font = new System.Drawing.Font("Arial", 10F); + this.xrTableCell48.Name = "xrTableCell48"; + this.xrTableCell48.Padding = new DevExpress.XtraPrinting.PaddingInfo(4, 0, 2, 0, 100F); + this.xrTableCell48.StylePriority.UseBorderColor = false; + this.xrTableCell48.StylePriority.UseBorders = false; + this.xrTableCell48.StylePriority.UseFont = false; + this.xrTableCell48.StylePriority.UsePadding = false; + this.xrTableCell48.StylePriority.UseTextAlignment = false; + this.xrTableCell48.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleLeft; + this.xrTableCell48.Weight = 0.076656524108514271D; + // + // lblSumme4 + // + this.lblSumme4.BorderColor = System.Drawing.Color.DarkGray; + this.lblSumme4.Borders = ((DevExpress.XtraPrinting.BorderSide)(((DevExpress.XtraPrinting.BorderSide.Left | DevExpress.XtraPrinting.BorderSide.Right) + | DevExpress.XtraPrinting.BorderSide.Bottom))); + this.lblSumme4.Font = new System.Drawing.Font("Arial", 10F); + this.lblSumme4.Name = "lblSumme4"; + this.lblSumme4.Padding = new DevExpress.XtraPrinting.PaddingInfo(4, 0, 2, 0, 100F); + this.lblSumme4.StylePriority.UseBorderColor = false; + this.lblSumme4.StylePriority.UseBorders = false; + this.lblSumme4.StylePriority.UseFont = false; + this.lblSumme4.StylePriority.UsePadding = false; + this.lblSumme4.StylePriority.UseTextAlignment = false; + this.lblSumme4.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleCenter; + this.lblSumme4.Weight = 0.076656524108514271D; + // + // Sammelrechnung + // + this.Bands.AddRange(new DevExpress.XtraReports.UI.Band[] { + this.Detail, + this.ReportHeader, + this.topMarginBand1, + this.bottomMarginBand1, + this.Page1, + this.DetailReport}); + this.DataSource = this.bindingSource1; + this.ExportOptions.PrintPreview.DefaultFileName = "Spitzabrechnung"; + this.Font = new System.Drawing.Font("Verdana", 10F); + this.FormattingRuleSheet.AddRange(new DevExpress.XtraReports.UI.FormattingRule[] { + this.ruleRateFactorNull}); + this.Margins = new System.Drawing.Printing.Margins(96, 54, 28, 95); + this.PageHeight = 1169; + this.PageWidth = 827; + this.PaperKind = System.Drawing.Printing.PaperKind.A4; + this.Version = "17.1"; + ((System.ComponentModel.ISupportInitialize)(this.xrTable2)).EndInit(); + ((System.ComponentModel.ISupportInitialize)(this.xrRichText1)).EndInit(); + ((System.ComponentModel.ISupportInitialize)(this.xrTable5)).EndInit(); + ((System.ComponentModel.ISupportInitialize)(this.xrTable6)).EndInit(); + ((System.ComponentModel.ISupportInitialize)(this.bindingSource1)).EndInit(); + ((System.ComponentModel.ISupportInitialize)(this.xrTable3)).EndInit(); + ((System.ComponentModel.ISupportInitialize)(this)).EndInit(); + + } + + + private DevExpress.XtraReports.UI.DetailBand Detail; + private System.Windows.Forms.BindingSource bindingSource1; + private DevExpress.XtraReports.UI.ReportHeaderBand ReportHeader; + private DevExpress.XtraReports.UI.FormattingRule ruleRateFactorNull; + private DevExpress.XtraReports.UI.TopMarginBand topMarginBand1; + private DevExpress.XtraReports.UI.BottomMarginBand bottomMarginBand1; + private DevExpress.XtraReports.UI.GroupHeaderBand Page1; + private DevExpress.XtraReports.UI.XRLabel xrLabel4; + private DevExpress.XtraReports.UI.XRLabel xrLabel3; + private DevExpress.XtraReports.UI.XRLabel xrLabel2; + private DevExpress.XtraReports.UI.XRLabel xrLabel8; + private DevExpress.XtraReports.UI.DetailReportBand DetailReport; + private DevExpress.XtraReports.UI.DetailBand Detail1; + private DevExpress.XtraReports.UI.XRTable xrTable5; + private DevExpress.XtraReports.UI.XRTableRow xrTableRow23; + private DevExpress.XtraReports.UI.XRTableCell xrTableCell32; + private DevExpress.XtraReports.UI.XRTableCell xrTableCell37; + private DevExpress.XtraReports.UI.XRTableCell xrTableCell35; + private DevExpress.XtraReports.UI.XRTableCell xrTableCell33; + private DevExpress.XtraReports.UI.XRTableCell xrTableCell36; + private DevExpress.XtraReports.UI.XRTableCell xrTableCell38; + private DevExpress.XtraReports.UI.XRTableCell xrTableCell34; + private DevExpress.XtraReports.UI.DetailReportBand DetailReport2; + private DevExpress.XtraReports.UI.DetailBand Detail3; + private DevExpress.XtraReports.UI.XRTable xrTable6; + private DevExpress.XtraReports.UI.XRTableRow xrTableRow25; + private DevExpress.XtraReports.UI.XRTableCell xrTableCell40; + private DevExpress.XtraReports.UI.XRLabel xrLabel7; + private DevExpress.XtraReports.UI.GroupFooterBand GroupFooter1; + private DevExpress.XtraReports.UI.XRPictureBox xrPictureBox1; + private DevExpress.XtraReports.UI.XRLabel xrLabel6; + private DevExpress.XtraReports.UI.XRTable xrTable2; + private DevExpress.XtraReports.UI.XRTableRow xrTableRow12; + private DevExpress.XtraReports.UI.XRTableCell xrTableCell1; + private DevExpress.XtraReports.UI.XRTableRow xrTableRow2; + private DevExpress.XtraReports.UI.XRTableCell xrTableCell4; + private DevExpress.XtraReports.UI.XRTableRow xrTableRow5; + private DevExpress.XtraReports.UI.XRTableCell xrTableCell13; + private DevExpress.XtraReports.UI.XRTableRow xrTableRow4; + private DevExpress.XtraReports.UI.XRTableCell xrTableCell11; + private DevExpress.XtraReports.UI.XRTableRow xrTableRow3; + private DevExpress.XtraReports.UI.XRTableCell xrTableCell3; + private DevExpress.XtraReports.UI.XRTableRow xrTableRow1; + private DevExpress.XtraReports.UI.XRTableCell xrTableCell2; + private DevExpress.XtraReports.UI.XRTableRow xrTableRow6; + private DevExpress.XtraReports.UI.XRTableCell xrTableCell5; + private DevExpress.XtraReports.UI.XRTableRow xrTableRow8; + private DevExpress.XtraReports.UI.XRTableCell xrTableCell6; + private DevExpress.XtraReports.UI.XRTableRow xrTableRow7; + private DevExpress.XtraReports.UI.XRTableCell xrTableCell8; + private DevExpress.XtraReports.UI.XRTableRow xrTableRow13; + private DevExpress.XtraReports.UI.XRTableCell xrTableCell10; + private DevExpress.XtraReports.UI.XRRichText xrRichText1; + private DevExpress.XtraReports.UI.XRTableRow xrTableRow11; + private DevExpress.XtraReports.UI.XRTableCell xrTableCell14; + private DevExpress.XtraReports.UI.XRTableRow xrTableRow9; + private DevExpress.XtraReports.UI.XRTableCell xrTableCell7; + private DevExpress.XtraReports.UI.XRTableCell xrTableCell15; + private DevExpress.XtraReports.UI.XRTableCell xrTableCell16; + private DevExpress.XtraReports.UI.XRTableCell xrTableCell17; + private DevExpress.XtraReports.UI.XRTableCell xrTableCell18; + private DevExpress.XtraReports.UI.XRTableCell xrTableCell19; + private DevExpress.XtraReports.UI.XRTableCell xrTableCell20; + private DevExpress.XtraReports.UI.XRTableCell xrTableCell21; + private DevExpress.XtraReports.UI.XRTableCell xrTableCell22; + private DevExpress.XtraReports.UI.XRLabel xrLabel5; + private DevExpress.XtraReports.UI.XRTable xrTable3; + private DevExpress.XtraReports.UI.XRTableRow xrTableRow10; + private DevExpress.XtraReports.UI.XRTableCell lblKategorie1; + private DevExpress.XtraReports.UI.XRTableCell xrTableCell9; + private DevExpress.XtraReports.UI.XRTableCell xrTableCell12; + private DevExpress.XtraReports.UI.XRTableCell xrTableCellwf; + private DevExpress.XtraReports.UI.XRTableCell wrfwergr; + private DevExpress.XtraReports.UI.XRTableRow xrTableRow14; + private DevExpress.XtraReports.UI.XRTableCell lblKategorie2; + private DevExpress.XtraReports.UI.XRTableCell xrTableCell23; + private DevExpress.XtraReports.UI.XRTableCell xrTableCell24; + private DevExpress.XtraReports.UI.XRTableCell xrTableCellwfr; + private DevExpress.XtraReports.UI.XRTableCell trhtzjt; + private DevExpress.XtraReports.UI.XRTableRow xrTableRow15; + private DevExpress.XtraReports.UI.XRTableCell lblKategorie3; + private DevExpress.XtraReports.UI.XRTableCell xrTableCell25; + private DevExpress.XtraReports.UI.XRTableCell xrTableCell26; + private DevExpress.XtraReports.UI.XRTableCell xrTableCellwfffg; + private DevExpress.XtraReports.UI.XRTableCell regtrhzr; + private DevExpress.XtraReports.UI.XRTableCell lblSummeGelFLS1; + private DevExpress.XtraReports.UI.XRTableCell xrTableCell41; + private DevExpress.XtraReports.UI.XRTableCell lblSumme1; + private DevExpress.XtraReports.UI.XRTableCell lblSummeGelFLS2; + private DevExpress.XtraReports.UI.XRTableCell xrTableCell42; + private DevExpress.XtraReports.UI.XRTableCell lblSumme2; + private DevExpress.XtraReports.UI.XRTableCell lblSummeGelFLS3; + private DevExpress.XtraReports.UI.XRTableCell xrTableCell43; + private DevExpress.XtraReports.UI.XRTableCell lblSumme3; + private DevExpress.XtraReports.UI.XRTableRow xrTableRow16; + private DevExpress.XtraReports.UI.XRTableCell lblKategorie4; + private DevExpress.XtraReports.UI.XRTableCell xrTableCell28; + private DevExpress.XtraReports.UI.XRTableCell xrTableCell29; + private DevExpress.XtraReports.UI.XRTableCell xrTableCell30; + private DevExpress.XtraReports.UI.XRTableCell xrTableCell39; + private DevExpress.XtraReports.UI.XRTableCell lblSummeGelFLS4; + private DevExpress.XtraReports.UI.XRTableCell xrTableCell48; + private DevExpress.XtraReports.UI.XRTableCell lblSumme4; + } +} diff --git a/ReportImp/MobileEV/Sammelrechnung.cs b/ReportImp/MobileEV/Sammelrechnung.cs new file mode 100644 index 000000000..a657c086d --- /dev/null +++ b/ReportImp/MobileEV/Sammelrechnung.cs @@ -0,0 +1,81 @@ +using System; +using BeWo.Report.ReportObjects; +using BeWo.Report; +using DevExpress.XtraReports.UI; +using BS.Shared.Core; +using System.Collections.Generic; +using System.Linq; + +namespace MobileEV +{ + [IDSpecificClass(Identifier = "Dortmund")] + public partial class Sammelrechnung : XtraReport, IBeWoReport + { + public Sammelrechnung() + { + this.InitializeComponent(); + } + + public void SetReportDataSource(ServiceInvoiceRO pRO) + { + DateTime start = pRO.AccountingPeriodStart; + DateTime end = pRO.AccountingPeriodEnd; + //if (start.Month == end.Month && start.Year == end.Year) + //{ + // lblAbrechnungszeitraum.Text = String.Format("hiermit berechnen wir für den Monat {0:MMMM yyyy} folgende erbrachte Tätigkeiten:", start); + //} + //else + //{ + // lblAbrechnungszeitraum.Text = String.Format("hiermit berechnen wir für den Zeitraum {0:MMMM yyyy} - {1:MMMM yyyy} folgende erbrachte Tätigkeiten:", start, end); + //} + + Dictionary kategorieZuStunden = new Dictionary(); + Dictionary kategorieZuKosten = new Dictionary(); + var stundenGesamt = 0.0m; + var betragGeamt = 0.0m; + + foreach (var ip in pRO.ServiceInvoicePeriods) + { + ip.ServiceInvoiceItems = ip.ServiceInvoiceItems.OrderBy(sii => sii.ServiceRecord.ServiceDescription.CategoryName).ToList(); + + foreach (var item in ip.ServiceInvoiceItems) + { + if (!kategorieZuStunden.ContainsKey(item.ServiceRecord.ServiceDescription.CategoryName)) + kategorieZuStunden.Add(item.ServiceRecord.ServiceDescription.CategoryName, 0m); + if (!kategorieZuKosten.ContainsKey(item.ServiceRecord.ServiceDescription.CategoryName)) + kategorieZuKosten.Add(item.ServiceRecord.ServiceDescription.CategoryName, 0m); + + kategorieZuStunden[item.ServiceRecord.ServiceDescription.CategoryName] += item.Hours.Value; + kategorieZuKosten[item.ServiceRecord.ServiceDescription.CategoryName] += item.AmountPerUnit.Value * item.UnitCount.Value; + + stundenGesamt += item.Hours.Value; + betragGeamt += item.AmountPerUnit.Value * item.UnitCount.Value; + } + } + + lblSumme4.Text = string.Format("{0:c}", betragGeamt); + lblSummeGelFLS4.Text = string.Format("{0:0.00}", stundenGesamt); + if (kategorieZuStunden.Count >= 1) + { + lblKategorie1.Text = kategorieZuStunden.ElementAt(0).Key; + lblSummeGelFLS1.Text = string.Format("{0:0.00}", kategorieZuStunden.ElementAt(0).Value); + lblSumme1.Text = string.Format("{0:c}", kategorieZuKosten.ElementAt(0).Value); + } + if (kategorieZuStunden.Count >= 2) + { + lblKategorie2.Text = kategorieZuStunden.ElementAt(1).Key; + lblSummeGelFLS2.Text = string.Format("{0:0.00}", kategorieZuStunden.ElementAt(1).Value); + lblSumme2.Text = string.Format("{0:c}", kategorieZuKosten.ElementAt(1).Value); + } + if (kategorieZuStunden.Count >= 3) + { + lblKategorie3.Text = kategorieZuStunden.ElementAt(2).Key; + lblSummeGelFLS3.Text = string.Format("{0:0.00}", kategorieZuStunden.ElementAt(2).Value); + lblSumme3.Text = string.Format("{0:c}", kategorieZuKosten.ElementAt(2).Value); + } + + + this.bindingSource1.DataSource = pRO; + } + } +} \ No newline at end of file diff --git a/ReportImp/MobileEV/Sammelrechnung.resx b/ReportImp/MobileEV/Sammelrechnung.resx new file mode 100644 index 000000000..4f76f3881 --- /dev/null +++ b/ReportImp/MobileEV/Sammelrechnung.resx @@ -0,0 +1,318 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + text/microsoft-resx + + + 2.0 + + + System.Resources.ResXResourceReader, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + System.Resources.ResXResourceWriter, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + + + /9j/4AAQSkZJRgABAQEAYABgAAD/2wBDAAIBAQIBAQICAgICAgICAwUDAwMDAwYEBAMFBwYHBwcGBwcI + CQsJCAgKCAcHCg0KCgsMDAwMBwkODw0MDgsMDAz/2wBDAQICAgMDAwYDAwYMCAcIDAwMDAwMDAwMDAwM + DAwMDAwMDAwMDAwMDAwMDAwMDAwMDAwMDAwMDAwMDAwMDAwMDAz/wAARCAB1ATgDASIAAhEBAxEB/8QA + HwAAAQUBAQEBAQEAAAAAAAAAAAECAwQFBgcICQoL/8QAtRAAAgEDAwIEAwUFBAQAAAF9AQIDAAQRBRIh + MUEGE1FhByJxFDKBkaEII0KxwRVS0fAkM2JyggkKFhcYGRolJicoKSo0NTY3ODk6Q0RFRkdISUpTVFVW + V1hZWmNkZWZnaGlqc3R1dnd4eXqDhIWGh4iJipKTlJWWl5iZmqKjpKWmp6ipqrKztLW2t7i5usLDxMXG + x8jJytLT1NXW19jZ2uHi4+Tl5ufo6erx8vP09fb3+Pn6/8QAHwEAAwEBAQEBAQEBAQAAAAAAAAECAwQF + BgcICQoL/8QAtREAAgECBAQDBAcFBAQAAQJ3AAECAxEEBSExBhJBUQdhcRMiMoEIFEKRobHBCSMzUvAV + YnLRChYkNOEl8RcYGRomJygpKjU2Nzg5OkNERUZHSElKU1RVVldYWVpjZGVmZ2hpanN0dXZ3eHl6goOE + hYaHiImKkpOUlZaXmJmaoqOkpaanqKmqsrO0tba3uLm6wsPExcbHyMnK0tPU1dbX2Nna4uPk5ebn6Onq + 8vP09fb3+Pn6/9oADAMBAAIRAxEAPwD9/KKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAoooo + AKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACivJ/2tfif + 8Ufhb4R0y7+Fnw4tPiTqk90Y7yzn1mPTBaw7CRIGfhjuwMe+a+AP2oP+DgL4w/sYeI7bS/iZ+zNc+Fri + +UtaSza6Jba7A6+XNGjRsRxkBsjPIFduGy+tiP4Vm+11f7r3PdyvhzG5jb6ooyb6c8FLT+63f8D9V6K/ + Ff8A4i17/wD6Iza/+D0//Gq3vhZ/wdcW/iv4maBpev8Awsg0XRNS1CG1vtQTWTIbGF3CtNtMYyEzuIz0 + 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 + KKACiiigAooooAKKKKACiiigD//Z + + + + ewBcAHIAdABmADEAXABkAGUAZgBmADAAewBcAGYAbwBuAHQAdABiAGwAewBcAGYAMAAgAEMAYQBsAGkAYgByAGkAOwB9AHsAXABmADEAIABUAGkAbQBlAHMAIABOAGUAdwAgAFIAbwBtAGEAbgA7AH0AfQB7AFwAYwBvAGwAbwByAHQAYgBsACAAOwBcAHIAZQBkADAAXABnAHIAZQBlAG4AMABcAGIAbAB1AGUAMAAgADsAXAByAGUAZAAwAFwAZwByAGUAZQBuADAAXABiAGwAdQBlADIANQA1ACAAOwBcAHIAZQBkADIAOQBcAGcAcgBlAGUAbgAzADQAXABiAGwAdQBlADQAMAAgADsAXAByAGUAZAAyADUANQBcAGcAcgBlAGUAbgAyADUANQBcAGIAbAB1AGUAMgA1ADUAIAA7AH0AewBcACoAXABkAGUAZgBjAGgAcAAgAFwAZgAxAFwAZgBzADIANAB9AHsAXABzAHQAeQBsAGUAcwBoAGUAZQB0ACAAewBcAHEAbABcAGYAMQBcAGYAcwAyADQAIABOAG8AcgBtAGEAbAA7AH0AewBcAHMAMQBcAHMAYgBhAHMAZQBkAG8AbgAwAFwAcwBuAGUAeAB0ADEAXABxAGwAXAB0AHEAYwBcAHQAeAA0ADUAMwA2AFwAdABxAHIAXAB0AHgAOQAwADcAMgBcAGYAcwAyADQAIABmAG8AbwB0AGUAcgA7AH0AewBcACoAXABjAHMAMgBcAGYAMQBcAGYAcwAyADQAXABjAGYAMQAgAEQAZQBmAGEAdQBsAHQAIABQAGEAcgBhAGcAcgBhAHAAaAAgAEYAbwBuAHQAOwB9AHsAXAAqAFwAYwBzADMAXABzAGIAYQBzAGUAZABvAG4AMgBcAGYAMQBcAGYAcwAyADQAXABjAGYAMQAgAEwAaQBuAGUAIABOAHUAbQBiAGUAcgA7AH0AewBcACoAXABjAHMANABcAHUAbABcAGYAMQBcAGYAcwAyADQAXABjAGYAMgAgAEgAeQBwAGUAcgBsAGkAbgBrADsAfQB7AFwAKgBcAHQAcwA1AFwAdABzAHIAbwB3AGQAXABmADEAXABmAHMAMgA0AFwAcQBsAFwAdABzAGMAZQBsAGwAcABhAGQAZABmAGwAMwBcAHQAcwBjAGUAbABsAHAAYQBkAGQAbAAxADAAOABcAHQAcwBjAGUAbABsAHAAYQBkAGQAZgBiADMAXAB0AHMAYwBlAGwAbABwAGEAZABkAGYAcgAzAFwAdABzAGMAZQBsAGwAcABhAGQAZAByADEAMAA4AFwAdABzAGMAZQBsAGwAcABhAGQAZABmAHQAMwBcAHQAcwB2AGUAcgB0AGEAbAB0AFwAYwBsAHQAeABsAHIAdABiACAATgBvAHIAbQBhAGwAIABUAGEAYgBsAGUAOwB9AHsAXAAqAFwAdABzADYAXAB0AHMAcgBvAHcAZABcAHMAYgBhAHMAZQBkAG8AbgA1AFwAZgAxAFwAZgBzADIANABcAHEAbABcAHQAcgBiAHIAZAByAHQAXABiAHIAZAByAHMAXABiAHIAZAByAHcAMQAwAFwAdAByAGIAcgBkAHIAbABcAGIAcgBkAHIAcwBcAGIAcgBkAHIAdwAxADAAXAB0AHIAYgByAGQAcgBiAFwAYgByAGQAcgBzAFwAYgByAGQAcgB3ADEAMABcAHQAcgBiAHIAZAByAHIAXABiAHIAZAByAHMAXABiAHIAZAByAHcAMQAwAFwAdAByAGIAcgBkAHIAaABcAGIAcgBkAHIAcwBcAGIAcgBkAHIAdwAxADAAXAB0AHIAYgByAGQAcgB2AFwAYgByAGQAcgBzAFwAYgByAGQAcgB3ADEAMABcAHQAcwBjAGUAbABsAHAAYQBkAGQAZgBsADMAXAB0AHMAYwBlAGwAbABwAGEAZABkAGwAMQAwADgAXAB0AHMAYwBlAGwAbABwAGEAZABkAGYAcgAzAFwAdABzAGMAZQBsAGwAcABhAGQAZAByADEAMAA4AFwAdABzAHYAZQByAHQAYQBsAHQAXABjAGwAdAB4AGwAcgB0AGIAIABUAGEAYgBsAGUAIABTAGkAbQBwAGwAZQAgADEAOwB9AH0AewBcACoAXABsAGkAcwB0AG8AdgBlAHIAcgBpAGQAZQB0AGEAYgBsAGUAfQBcAG4AbwB1AGkAYwBvAG0AcABhAHQAXABzAHAAbAB5AHQAdwBuAGkAbgBlAFwAaAB0AG0AYQB1AHQAcwBwAFwAcABhAHIAZABcAHAAbABhAGkAbgBcAHMAMQBcAHEAYwBcAHMAbAAtADIAMAAwAFwAcwBsAG0AdQBsAHQAMABcAHQAcQBjAFwAdAB4ADQANQAzADYAXAB0AHEAcgBcAHQAeAA5ADAANwAyAHsAXABsAGEAbgBnADEAMAAzADEAXABsAGEAbgBnAGYAZQAxADAAMwAxAFwAZgBzADEAOABcAGMAZgAxACAAQgBhAG4AawB2AGUAcgBiAGkAbgBkAHUAbgBnADoAfQB7AFwAZgBzADEAOABcAGMAZgAxACAAIAB9AFwAZgBzADEAOABcAGMAZgAxAFwAcABhAHIAXABwAGEAcgBkAFwAcABsAGEAaQBuAFwAcwAxAFwAcQBjAFwAcwBsAC0AMgAwADAAXABzAGwAbQB1AGwAdAAwAFwAdABxAGMAXAB0AHgANAA1ADMANgBcAHQAcQByAFwAdAB4ADkAMAA3ADIAewBcAGwAYQBuAGcAMQAwADMAMQBcAGwAYQBuAGcAZgBlADEAMAAzADEAXABmAHMAMQA4AFwAYwBmADEAIABTAHAAYQByAGsAYQBzAHMAZQAgAEQAbwByAHQAbQB1AG4AZAAsACAASwBvAG4AdABvAC0ATgByAC4AOgAgADIAMQAxACAAMAAwADEAIAA5ADIANQAsACAAQgBMAFoAOgAgADQANAAwACAANQAwADEAIAA5ADkAfQBcAGYAcwAxADgAXABjAGYAMQBcAHAAYQByAFwAcABhAHIAZABcAHAAbABhAGkAbgBcAHMAMQBcAHEAYwBcAHMAbAAtADIAMAAwAFwAcwBsAG0AdQBsAHQAMABcAHQAcQBjAFwAdAB4ADQANQAzADYAXAB0AHEAcgBcAHQAeAA5ADAANwAyAHsAXABiAFwAZgBzADEAOABcAGMAZgAxACAASQBCAEEATgA6ACAARABFADQANwAgADQANAAwADUAIAAwADEAOQA5ACAAMAAyADEAMQAgADAAMAAxADkAIAAyADUAIAAgACAAQgBJAEMAOgAgAEQATwBSAFQARABFADMAMwBYAFgAWAAgAH0AewBcAGwAYQBuAGcAMQAwADMAMQBcAGwAYQBuAGcAZgBlADEAMAAzADEAXABmAHMAMQA4AFwAYwBmADMAXABjAGgAcwBoAGQAbgBnADAAXABjAGgAYwBiAHAAYQB0ADQAIAAgAH0AXABsAGEAbgBnADEAMAAzADEAXABsAGEAbgBnAGYAZQAxADAAMwAxAFwAZgBzADEAOABcAGMAZgAzAFwAcABhAHIAXABwAGEAcgBkAFwAcABsAGEAaQBuAFwAcwAxAFwAcQBjAFwAcwBsAC0AMgAwADAAXABzAGwAbQB1AGwAdAAwAFwAdABxAGMAXAB0AHgANAA1ADMANgBcAHQAcQByAFwAdAB4ADkAMAA3ADIAewBcAGwAYQBuAGcAMQAwADMAMQBcAGwAYQBuAGcAZgBlADEAMAAzADEAXABmAHMAMQA4AFwAYwBmADEAIABWAGUAcgBlAGkAbgBzAHIAZQBnAGkAcwB0AGUAcgA6ACAAVgBSACAAMwAxADAAOAAgACAAIAB9AFwAbABhAG4AZwAxADAAMwAxAFwAbABhAG4AZwBmAGUAMQAwADMAMQBcAGYAcwAxADgAXABjAGYAMQBcAHAAYQByAFwAcABhAHIAZABcAHAAbABhAGkAbgBcAHMAMQBcAHEAYwBcAHMAbAAtADIAMAAwAFwAcwBsAG0AdQBsAHQAMABcAHQAcQBjAFwAdAB4ADQANQAzADYAXAB0AHEAcgBcAHQAeAA5ADAANwAyAHsAXABsAGEAbgBnADEAMAAzADEAXABsAGEAbgBnAGYAZQAxADAAMwAxAFwAZgBzADEAOABcAGMAZgAxACAAUwB0AGUAdQBlAHIAbgB1AG0AbQBlAHIAOgAgADMAMQA0AC8ANQA3ADAAMgAvADMANgA2ADYAfQBcAGwAYQBuAGcAMQAwADMAMQBcAGwAYQBuAGcAZgBlADEAMAAzADEAXABmAHMAMQA4AFwAYwBmADEAXABwAGEAcgBcAHAAYQByAGQAXABwAGwAYQBpAG4AXABxAGwAXABsAGEAbgBnADEAMAAzADEAXABsAGEAbgBnAGYAZQAxADAAMwAxAFwAZgAxAFwAZgBzADIANABcAGMAZgAxAFwAcABhAHIAfQA= + + + 17, 17 + + \ No newline at end of file