diff --git a/ReportImp/BbcTerwort/BbcTerwort.csproj b/ReportImp/BbcTerwort/BbcTerwort.csproj new file mode 100644 index 000000000..4dbfc5930 --- /dev/null +++ b/ReportImp/BbcTerwort/BbcTerwort.csproj @@ -0,0 +1,98 @@ + + + + + Debug + AnyCPU + {5A67E122-9DDA-4C38-A20B-DB252DB1A3A9} + Library + Properties + BbcTerwort + 4431610343_Reports + v4.7.2 + 512 + + + + true + full + false + ..\..\CustomerDlls\ + DEBUG;TRACE + prompt + 4 + + + pdbonly + true + ..\..\CustomerDlls\ + TRACE + prompt + 4 + + + + + + + + + + + + + + + + + + + + + + + + + Component + + + ServiceInvoiceReport.cs + + + Component + + + SettlementReport2.cs + + + + + {B0D73E3D-4AE7-4024-93A6-DB1F46D7CCEE} + Data + + + {40d8b312-ea64-49e3-a31a-5e57ed4d5654} + Report + + + {094331c3-ecee-4c89-bbfd-4c9ded89f0ef} + Service + + + {2f50b83d-a3f0-4ec4-979a-3f9b7e3d8ed4} + Shared + + + + + + ServiceInvoiceReport.cs + Designer + + + SettlementReport2.cs + Designer + + + + \ No newline at end of file diff --git a/ReportImp/BbcTerwort/BbcTerwort_Logo.png b/ReportImp/BbcTerwort/BbcTerwort_Logo.png new file mode 100644 index 000000000..252bf9042 Binary files /dev/null and b/ReportImp/BbcTerwort/BbcTerwort_Logo.png differ diff --git a/ReportImp/BbcTerwort/Invoicing/CustomInvoiceFactory.cs b/ReportImp/BbcTerwort/Invoicing/CustomInvoiceFactory.cs new file mode 100644 index 000000000..8e78fce82 --- /dev/null +++ b/ReportImp/BbcTerwort/Invoicing/CustomInvoiceFactory.cs @@ -0,0 +1,45 @@ +using System; +using System.Collections.Generic; +using BeWo.Service.Invoicing; +using BS.Shared.DataContracts; +using BS.Shared.DataContracts.Compact; + +namespace BbcTerwort.Invoicing +{ + public class CustomInvoiceFactory : InvoiceFactory + { + public override InvoiceCreation CreateInvoiceCreator(string specificId, string tenant, Dictionary> supportConcepts2ServiceRecords) + { + foreach (var list in supportConcepts2ServiceRecords.Values) + { + foreach (var sr in list) + { + if (sr.CostBearer != null) + { + if (sr.CostBearer.Name.StartsWith("Selbstzahler")) + { + return new SelbstzahlerInvoiceCreation(); + } + } + var sd = sr.ServiceDescription.Category; + var ic = GetInvoiceCreatorForCategory(sd); + if (ic != null) + return ic; + } + } + return base.CreateInvoiceCreator(specificId, tenant, supportConcepts2ServiceRecords); + } + + private InvoiceCreation GetInvoiceCreatorForCategory(ServiceCategoryDC sd) + { + if (sd != null && !String.IsNullOrEmpty(sd.Name)) + { + String cat = sd.Name.ToLower().Trim(); + + // if (cat.IndexOf("unterstützend") >= 0) + // return new CustomAssistenzInvoiceCreation(); + } + return null; + } + } +} diff --git a/ReportImp/BbcTerwort/Invoicing/SelbstzahlerInvoiceCreation.cs b/ReportImp/BbcTerwort/Invoicing/SelbstzahlerInvoiceCreation.cs new file mode 100644 index 000000000..d34670cb9 --- /dev/null +++ b/ReportImp/BbcTerwort/Invoicing/SelbstzahlerInvoiceCreation.cs @@ -0,0 +1,80 @@ +using BeWo.Data.Entities; +using BeWo.Service.Invoicing; +using BS.Shared.Core; +using BS.Shared.DataContracts; +using BS.Shared.DataContracts.Compact; +using BS.Shared.Services; +using System; +using System.Collections.Generic; +using System.Linq; + +namespace BbcTerwort.Invoicing +{ + + public class SelbstzahlerInvoiceCreation : InvoiceCreation + { + private DateTime? accountingPeriodStart = null; + private DateTime? accountingPeriodEnd = null; + + public override void SetInvoiceBaseData(int invoiceCounter, ServiceInvoice invoice, CostBearer costBearer, DateTimeSpan invoicePeriod, + IList supportConceptList) + { + if (invoicePeriod != null) + { + accountingPeriodStart = invoicePeriod.StartDate; + accountingPeriodEnd = invoicePeriod.EndDate; + } + base.SetInvoiceBaseData(invoiceCounter, invoice, costBearer, invoicePeriod, supportConceptList); + } + + public override void SetRecipientInformation(ServiceInvoice serviceInvoice, CostBearer costBearer) + { + serviceInvoice.InvoiceBase.RecipientDivision = costBearer.Organisation.Name2; + serviceInvoice.InvoiceBase.RecipientOrganisationOid = costBearer.Organisation.Oid; + serviceInvoice.InvoiceBase.RecipientOrganisation = costBearer.Organisation.Name; + serviceInvoice.InvoiceBase.RecipientContacts = costBearer.Organisation.Contacts.Select(i => i.CopyToNew()).ToList(); + serviceInvoice.InvoiceBase.RecipientCostBearerOid = costBearer.Oid; + + if (serviceInvoice.InvoiceBase.CostBearer2SupportConcept != null) + { + var cust = serviceInvoice.InvoiceBase.CostBearer2SupportConcept.SupportConcept.Customer; + + if (cust.Person.InvoiceAddress != null) + { + serviceInvoice.InvoiceBase.RecipientAddress = cust.Person.InvoiceAddress.CopyToNew(); + } + else if (cust.Person.Address != null) + { + serviceInvoice.InvoiceBase.RecipientAddress = cust.Person.Address.CopyToNew(); + } + //Rechnungsempfänger != Klient + if (cust.Person.InvoiceAddress != null && cust.Person.InvoiceAddress.AddressLine1 != null) + { + serviceInvoice.InvoiceBase.RecipientPersonFirstName = cust.Person.InvoiceAddress.AddressLine1; + serviceInvoice.InvoiceBase.RecipientPersonLastName = ""; + } + else + { + serviceInvoice.InvoiceBase.RecipientPersonFirstName = cust.Person.FirstName; + serviceInvoice.InvoiceBase.RecipientPersonLastName = cust.Person.LastName; + } + return; + } + if (costBearer.Organisation.InvoiceAddress != null) + { + serviceInvoice.InvoiceBase.RecipientAddress = costBearer.Organisation.InvoiceAddress.CopyToNew(); + } + else if (costBearer.Organisation.Address != null) + { + serviceInvoice.InvoiceBase.RecipientAddress = costBearer.Organisation.Address.CopyToNew(); + } + } + + public override InvoiceItem CreateInvoiceItem(ServiceRecordDC iServiceRecord, SupportConceptApprovalPeriod scap, Calculations calc) + { + var ii = base.CreateInvoiceItem(iServiceRecord, scap, calc); + ii.ItemDescription = iServiceRecord.ServiceDescription.CategoryName; + return ii; + } + } +} \ No newline at end of file diff --git a/ReportImp/BbcTerwort/Invoicing/SettlementInvoiceCreation.cs b/ReportImp/BbcTerwort/Invoicing/SettlementInvoiceCreation.cs new file mode 100644 index 000000000..893d38fac --- /dev/null +++ b/ReportImp/BbcTerwort/Invoicing/SettlementInvoiceCreation.cs @@ -0,0 +1,14 @@ +using BeWo.Data.Entities; +using BeWo.Service.Invoicing; +using BS.Shared.DataContracts; + +namespace BbcTerwort.Invoicing +{ + public class CustomSettlementInvoiceCreation : SettlementInvoiceCreation + { + public override bool CanCreateInvoiceTheOldWay(Settlement2DC si, CostBearer2SupportConcept c2s) + { + return false; + } + } +} diff --git a/ReportImp/BbcTerwort/Properties/AssemblyInfo.cs b/ReportImp/BbcTerwort/Properties/AssemblyInfo.cs new file mode 100644 index 000000000..a3a95cc10 --- /dev/null +++ b/ReportImp/BbcTerwort/Properties/AssemblyInfo.cs @@ -0,0 +1,36 @@ +using System.Reflection; +using System.Runtime.CompilerServices; +using System.Runtime.InteropServices; + +// Allgemeine Informationen über eine Assembly werden über die folgenden +// Attribute gesteuert. Ändern Sie diese Attributwerte, um die Informationen zu ändern, +// die einer Assembly zugeordnet sind. +[assembly: AssemblyTitle("BbcTerwort")] +[assembly: AssemblyDescription("")] +[assembly: AssemblyConfiguration("")] +[assembly: AssemblyCompany("")] +[assembly: AssemblyProduct("BbcTerwort")] +[assembly: AssemblyCopyright("Copyright © 2023")] +[assembly: AssemblyTrademark("")] +[assembly: AssemblyCulture("")] + +// Durch Festlegen von ComVisible auf FALSE werden die Typen in dieser Assembly +// für COM-Komponenten unsichtbar. Wenn Sie auf einen Typ in dieser Assembly von +// COM aus zugreifen müssen, sollten Sie das ComVisible-Attribut für diesen Typ auf "True" festlegen. +[assembly: ComVisible(false)] + +// Die folgende GUID bestimmt die ID der Typbibliothek, wenn dieses Projekt für COM verfügbar gemacht wird +[assembly: Guid("c1fed668-adb9-47e0-b589-1389618e1b6e")] + +// Versionsinformationen für eine Assembly bestehen aus den folgenden vier Werten: +// +// Hauptversion +// Nebenversion +// Buildnummer +// Revision +// +// Sie können alle Werte angeben oder Standardwerte für die Build- und Revisionsnummern verwenden, +// indem Sie "*" wie unten gezeigt eingeben: +// [assembly: AssemblyVersion("1.0.*")] +[assembly: AssemblyVersion("1.0.0.0")] +[assembly: AssemblyFileVersion("1.0.0.0")] diff --git a/ReportImp/BbcTerwort/Properties/licenses.licx b/ReportImp/BbcTerwort/Properties/licenses.licx new file mode 100644 index 000000000..74cb33aa2 --- /dev/null +++ b/ReportImp/BbcTerwort/Properties/licenses.licx @@ -0,0 +1 @@ +DevExpress.XtraReports.UI.XtraReport, DevExpress.XtraReports.v17.1, Version=17.1.4.0, Culture=neutral, PublicKeyToken=b88d1754d700e49a diff --git a/ReportImp/BbcTerwort/ServiceInvoiceReport.Designer.cs b/ReportImp/BbcTerwort/ServiceInvoiceReport.Designer.cs new file mode 100644 index 000000000..af6d4ee71 --- /dev/null +++ b/ReportImp/BbcTerwort/ServiceInvoiceReport.Designer.cs @@ -0,0 +1,864 @@ +using BeWo.Report.ReportObjects; +namespace BbcTerwort +{ + partial class ServiceInvoiceReport + { + /// + /// 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(ServiceInvoiceReport)); + this.Detail = new DevExpress.XtraReports.UI.DetailBand(); + this.ReportHeader = new DevExpress.XtraReports.UI.ReportHeaderBand(); + this.ruleRateFactorNull = new DevExpress.XtraReports.UI.FormattingRule(); + this.topMarginBand1 = new DevExpress.XtraReports.UI.TopMarginBand(); + this.bottomMarginBand1 = new DevExpress.XtraReports.UI.BottomMarginBand(); + this.Page1 = new DevExpress.XtraReports.UI.GroupHeaderBand(); + this.lblAdresse = new DevExpress.XtraReports.UI.XRLabel(); + this.xrLabel3 = new DevExpress.XtraReports.UI.XRLabel(); + this.xrLabel2 = new DevExpress.XtraReports.UI.XRLabel(); + this.xrLabel5 = new DevExpress.XtraReports.UI.XRLabel(); + this.xrLabel8 = new DevExpress.XtraReports.UI.XRLabel(); + this.lblAbrechnungszeitraum = new DevExpress.XtraReports.UI.XRLabel(); + this.xrTable2 = new DevExpress.XtraReports.UI.XRTable(); + 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.xrTableCell8 = new DevExpress.XtraReports.UI.XRTableCell(); + this.xrTableRow1 = new DevExpress.XtraReports.UI.XRTableRow(); + this.xrTableCell1 = new DevExpress.XtraReports.UI.XRTableCell(); + this.xrTableRow6 = new DevExpress.XtraReports.UI.XRTableRow(); + this.xrTableCell2 = new DevExpress.XtraReports.UI.XRTableCell(); + this.xrTableRow8 = new DevExpress.XtraReports.UI.XRTableRow(); + this.xrTableCell5 = new DevExpress.XtraReports.UI.XRTableCell(); + this.xrLabel14 = 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.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.xrTableCell42 = new DevExpress.XtraReports.UI.XRTableCell(); + this.xrTableCell43 = new DevExpress.XtraReports.UI.XRTableCell(); + this.xrTableCell44 = new DevExpress.XtraReports.UI.XRTableCell(); + this.xrTableCell45 = new DevExpress.XtraReports.UI.XRTableCell(); + this.xrTableCell46 = new DevExpress.XtraReports.UI.XRTableCell(); + this.xrTableCell47 = new DevExpress.XtraReports.UI.XRTableCell(); + this.GroupFooter1 = new DevExpress.XtraReports.UI.GroupFooterBand(); + this.xrLabel1 = new DevExpress.XtraReports.UI.XRLabel(); + this.xrPictureBox1 = new DevExpress.XtraReports.UI.XRPictureBox(); + this.xrLabel6 = new DevExpress.XtraReports.UI.XRLabel(); + this.xrLabel10 = new DevExpress.XtraReports.UI.XRLabel(); + this.xrLabel9 = new DevExpress.XtraReports.UI.XRLabel(); + this.xrLabel11 = new DevExpress.XtraReports.UI.XRLabel(); + this.bindingSource1 = new System.Windows.Forms.BindingSource(this.components); + ((System.ComponentModel.ISupportInitialize)(this.xrTable2)).BeginInit(); + ((System.ComponentModel.ISupportInitialize)(this.xrTable5)).BeginInit(); + ((System.ComponentModel.ISupportInitialize)(this.xrTable6)).BeginInit(); + ((System.ComponentModel.ISupportInitialize)(this.bindingSource1)).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.Font = new System.Drawing.Font("Verdana", 10F); + this.ReportHeader.HeightF = 0F; + this.ReportHeader.Name = "ReportHeader"; + this.ReportHeader.StylePriority.UseFont = false; + // + // ruleRateFactorNull + // + this.ruleRateFactorNull.Condition = "[RateFactorText2] == ?"; + this.ruleRateFactorNull.Formatting.Visible = DevExpress.Utils.DefaultBoolean.False; + this.ruleRateFactorNull.Name = "ruleRateFactorNull"; + // + // topMarginBand1 + // + this.topMarginBand1.Controls.AddRange(new DevExpress.XtraReports.UI.XRControl[] { + this.xrPictureBox1}); + this.topMarginBand1.HeightF = 145.8335F; + this.topMarginBand1.Name = "topMarginBand1"; + // + // bottomMarginBand1 + // + this.bottomMarginBand1.Controls.AddRange(new DevExpress.XtraReports.UI.XRControl[] { + this.xrLabel11}); + this.bottomMarginBand1.HeightF = 125F; + this.bottomMarginBand1.Name = "bottomMarginBand1"; + // + // Page1 + // + this.Page1.Controls.AddRange(new DevExpress.XtraReports.UI.XRControl[] { + this.xrLabel9, + this.xrLabel6, + this.lblAdresse, + this.xrLabel3, + this.xrLabel2, + this.xrLabel5, + this.xrLabel8, + this.lblAbrechnungszeitraum, + this.xrTable2}); + this.Page1.Font = new System.Drawing.Font("Microsoft Sans Serif", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0))); + this.Page1.HeightF = 356.1667F; + this.Page1.Name = "Page1"; + this.Page1.StylePriority.UseFont = false; + // + // lblAdresse + // + this.lblAdresse.LocationFloat = new DevExpress.Utils.PointFloat(0F, 21F); + this.lblAdresse.Multiline = true; + this.lblAdresse.Name = "lblAdresse"; + this.lblAdresse.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F); + this.lblAdresse.SizeF = new System.Drawing.SizeF(317F, 111.5F); + this.lblAdresse.StylePriority.UseFont = false; + this.lblAdresse.Text = "[RecipientOrganisation]\r\n[RecipientContactPerson]\r\n[RecipientDivision]\r\n[Recipien" + + "tStreet]\r\n[RecipientPostCodeAndTown]"; + // + // xrLabel3 + // + this.xrLabel3.BackColor = System.Drawing.Color.Transparent; + this.xrLabel3.CanShrink = true; + this.xrLabel3.Font = new System.Drawing.Font("Microsoft Sans Serif", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0))); + this.xrLabel3.LocationFloat = new DevExpress.Utils.PointFloat(0F, 215F); + this.xrLabel3.Name = "xrLabel3"; + this.xrLabel3.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F); + this.xrLabel3.SizeF = new System.Drawing.SizeF(450.7083F, 20F); + this.xrLabel3.StylePriority.UseBackColor = false; + this.xrLabel3.StylePriority.UseFont = false; + this.xrLabel3.Text = "Name: \t[CustomerLastName]"; + this.xrLabel3.WordWrap = false; + // + // xrLabel2 + // + this.xrLabel2.BackColor = System.Drawing.Color.Transparent; + this.xrLabel2.CanShrink = true; + this.xrLabel2.Font = new System.Drawing.Font("Microsoft Sans Serif", 12F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0))); + this.xrLabel2.LocationFloat = new DevExpress.Utils.PointFloat(0F, 195F); + this.xrLabel2.Name = "xrLabel2"; + this.xrLabel2.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F); + this.xrLabel2.SizeF = new System.Drawing.SizeF(450.7083F, 20F); + this.xrLabel2.StylePriority.UseBackColor = false; + this.xrLabel2.StylePriority.UseFont = false; + this.xrLabel2.Text = "Rechnungsnummer: [InvoiceNumber]"; + this.xrLabel2.WordWrap = false; + // + // xrLabel5 + // + this.xrLabel5.LocationFloat = new DevExpress.Utils.PointFloat(0.1668294F, 287.9167F); + this.xrLabel5.Name = "xrLabel5"; + this.xrLabel5.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F); + this.xrLabel5.SizeF = new System.Drawing.SizeF(676.8332F, 17F); + this.xrLabel5.StylePriority.UseFont = false; + this.xrLabel5.Text = "Sehr geehrte/r [CustomerSalutation] [CustomerFirstName] [CustomerLastName],"; + // + // xrLabel8 + // + this.xrLabel8.DataBindings.AddRange(new DevExpress.XtraReports.UI.XRBinding[] { + new DevExpress.XtraReports.UI.XRBinding("Text", null, "InvoiceDate")}); + this.xrLabel8.LocationFloat = new DevExpress.Utils.PointFloat(394F, 172F); + 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.UseTextAlignment = false; + this.xrLabel8.Text = "xrLabel8"; + this.xrLabel8.TextAlignment = DevExpress.XtraPrinting.TextAlignment.TopRight; + // + // lblAbrechnungszeitraum + // + this.lblAbrechnungszeitraum.LocationFloat = new DevExpress.Utils.PointFloat(0.1668294F, 315.9166F); + this.lblAbrechnungszeitraum.Multiline = true; + this.lblAbrechnungszeitraum.Name = "lblAbrechnungszeitraum"; + this.lblAbrechnungszeitraum.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F); + this.lblAbrechnungszeitraum.SizeF = new System.Drawing.SizeF(676.8332F, 31.58334F); + this.lblAbrechnungszeitraum.StylePriority.UseFont = false; + this.lblAbrechnungszeitraum.Text = "hiermit berechnen wir für den ... folgende erbrachte Tätigkeiten:"; + // + // xrTable2 + // + this.xrTable2.LocationFloat = new DevExpress.Utils.PointFloat(394F, 0F); + this.xrTable2.Name = "xrTable2"; + this.xrTable2.Rows.AddRange(new DevExpress.XtraReports.UI.XRTableRow[] { + this.xrTableRow2, + this.xrTableRow5, + this.xrTableRow4, + this.xrTableRow3, + this.xrTableRow1, + this.xrTableRow6, + this.xrTableRow8}); + this.xrTable2.SizeF = new System.Drawing.SizeF(283F, 134F); + // + // 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 = "Ihr(e) Ansprechpartner(in):"; + this.xrTableCell4.TextAlignment = DevExpress.XtraPrinting.TextAlignment.TopRight; + 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.TopRight; + 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.TopRight; + this.xrTableCell11.Weight = 1D; + // + // xrTableRow3 + // + this.xrTableRow3.Cells.AddRange(new DevExpress.XtraReports.UI.XRTableCell[] { + this.xrTableCell8}); + this.xrTableRow3.Name = "xrTableRow3"; + this.xrTableRow3.Weight = 0.13245033112582783D; + // + // xrTableCell8 + // + this.xrTableCell8.CanShrink = true; + this.xrTableCell8.Name = "xrTableCell8"; + this.xrTableCell8.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F); + this.xrTableCell8.ProcessNullValues = DevExpress.XtraReports.UI.ValueSuppressType.SuppressAndShrink; + this.xrTableCell8.StylePriority.UseFont = false; + this.xrTableCell8.StylePriority.UseTextAlignment = false; + this.xrTableCell8.Text = "[SenderContactPersonMail]"; + this.xrTableCell8.TextAlignment = DevExpress.XtraPrinting.TextAlignment.TopRight; + this.xrTableCell8.Weight = 1D; + // + // xrTableRow1 + // + this.xrTableRow1.Cells.AddRange(new DevExpress.XtraReports.UI.XRTableCell[] { + this.xrTableCell1}); + this.xrTableRow1.Name = "xrTableRow1"; + this.xrTableRow1.Weight = 0.13245033112582783D; + // + // xrTableCell1 + // + this.xrTableCell1.CanShrink = true; + this.xrTableCell1.Name = "xrTableCell1"; + this.xrTableCell1.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F); + this.xrTableCell1.ProcessNullValues = DevExpress.XtraReports.UI.ValueSuppressType.SuppressAndShrink; + this.xrTableCell1.StylePriority.UseFont = false; + this.xrTableCell1.StylePriority.UseTextAlignment = false; + this.xrTableCell1.Text = "[SenderContactPersonPhone]"; + this.xrTableCell1.TextAlignment = DevExpress.XtraPrinting.TextAlignment.TopRight; + this.xrTableCell1.Weight = 1D; + // + // xrTableRow6 + // + this.xrTableRow6.Cells.AddRange(new DevExpress.XtraReports.UI.XRTableCell[] { + this.xrTableCell2}); + this.xrTableRow6.Name = "xrTableRow6"; + this.xrTableRow6.Weight = 0.11258278145695365D; + // + // 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 = "[SenderContactPersonFax]"; + this.xrTableCell2.TextAlignment = DevExpress.XtraPrinting.TextAlignment.TopRight; + this.xrTableCell2.Weight = 1D; + // + // xrTableRow8 + // + this.xrTableRow8.Cells.AddRange(new DevExpress.XtraReports.UI.XRTableCell[] { + this.xrTableCell5}); + this.xrTableRow8.Name = "xrTableRow8"; + this.xrTableRow8.Weight = 0.11258278145695365D; + // + // xrTableCell5 + // + this.xrTableCell5.Name = "xrTableCell5"; + this.xrTableCell5.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F); + this.xrTableCell5.Weight = 1D; + // + // xrLabel14 + // + this.xrLabel14.DataBindings.AddRange(new DevExpress.XtraReports.UI.XRBinding[] { + new DevExpress.XtraReports.UI.XRBinding("Text", null, "CreatorName")}); + this.xrLabel14.Font = new System.Drawing.Font("Microsoft Sans Serif", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0))); + this.xrLabel14.LocationFloat = new DevExpress.Utils.PointFloat(0F, 211.5833F); + this.xrLabel14.Name = "xrLabel14"; + this.xrLabel14.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F); + this.xrLabel14.SizeF = new System.Drawing.SizeF(225F, 17F); + this.xrLabel14.StylePriority.UseFont = false; + this.xrLabel14.Text = "[CreatorName]"; + // + // 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.Font = new System.Drawing.Font("Microsoft Sans Serif", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0))); + 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.Font = new System.Drawing.Font("Microsoft Sans Serif", 11F); + 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(677F, 25F); + this.xrTable5.StylePriority.UseFont = false; + // + // 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.xrTableRow23.Name = "xrTableRow23"; + this.xrTableRow23.Weight = 1D; + // + // xrTableCell32 + // + this.xrTableCell32.BackColor = System.Drawing.Color.Gainsboro; + this.xrTableCell32.BorderColor = System.Drawing.Color.DarkGray; + this.xrTableCell32.Borders = ((DevExpress.XtraPrinting.BorderSide)((((DevExpress.XtraPrinting.BorderSide.Left | DevExpress.XtraPrinting.BorderSide.Top) + | DevExpress.XtraPrinting.BorderSide.Right) + | DevExpress.XtraPrinting.BorderSide.Bottom))); + 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.UsePadding = false; + this.xrTableCell32.StylePriority.UseTextAlignment = false; + this.xrTableCell32.Text = "Zeitraum"; + this.xrTableCell32.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleLeft; + this.xrTableCell32.Weight = 0.62463077449375981D; + // + // xrTableCell37 + // + this.xrTableCell37.BackColor = System.Drawing.Color.Gainsboro; + this.xrTableCell37.BorderColor = System.Drawing.Color.DarkGray; + this.xrTableCell37.Borders = ((DevExpress.XtraPrinting.BorderSide)((((DevExpress.XtraPrinting.BorderSide.Left | DevExpress.XtraPrinting.BorderSide.Top) + | DevExpress.XtraPrinting.BorderSide.Right) + | DevExpress.XtraPrinting.BorderSide.Bottom))); + 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.UsePadding = false; + this.xrTableCell37.StylePriority.UseTextAlignment = false; + this.xrTableCell37.Text = "Leistung"; + this.xrTableCell37.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleLeft; + this.xrTableCell37.Weight = 0.85081236260328186D; + // + // xrTableCell35 + // + this.xrTableCell35.BackColor = System.Drawing.Color.Gainsboro; + this.xrTableCell35.BorderColor = System.Drawing.Color.DarkGray; + this.xrTableCell35.Borders = ((DevExpress.XtraPrinting.BorderSide)((((DevExpress.XtraPrinting.BorderSide.Left | DevExpress.XtraPrinting.BorderSide.Top) + | DevExpress.XtraPrinting.BorderSide.Right) + | DevExpress.XtraPrinting.BorderSide.Bottom))); + 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.UsePadding = false; + this.xrTableCell35.StylePriority.UseTextAlignment = false; + this.xrTableCell35.Text = "Satz"; + this.xrTableCell35.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleRight; + this.xrTableCell35.Weight = 0.23245943032832414D; + // + // xrTableCell33 + // + this.xrTableCell33.BackColor = System.Drawing.Color.Gainsboro; + this.xrTableCell33.BorderColor = System.Drawing.Color.DarkGray; + this.xrTableCell33.Borders = ((DevExpress.XtraPrinting.BorderSide)((((DevExpress.XtraPrinting.BorderSide.Left | DevExpress.XtraPrinting.BorderSide.Top) + | DevExpress.XtraPrinting.BorderSide.Right) + | DevExpress.XtraPrinting.BorderSide.Bottom))); + 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.UsePadding = false; + this.xrTableCell33.StylePriority.UseTextAlignment = false; + this.xrTableCell33.Text = "Stunden"; + this.xrTableCell33.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleRight; + this.xrTableCell33.Weight = 0.2893277257020575D; + // + // xrTableCell36 + // + this.xrTableCell36.BackColor = System.Drawing.Color.Gainsboro; + this.xrTableCell36.BorderColor = System.Drawing.Color.DarkGray; + this.xrTableCell36.Borders = ((DevExpress.XtraPrinting.BorderSide)((((DevExpress.XtraPrinting.BorderSide.Left | DevExpress.XtraPrinting.BorderSide.Top) + | DevExpress.XtraPrinting.BorderSide.Right) + | DevExpress.XtraPrinting.BorderSide.Bottom))); + 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.UsePadding = false; + this.xrTableCell36.StylePriority.UseTextAlignment = false; + this.xrTableCell36.Text = "Betrag"; + this.xrTableCell36.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleRight; + this.xrTableCell36.Weight = 0.26310971709438763D; + // + // xrTableCell38 + // + this.xrTableCell38.BackColor = System.Drawing.Color.Gainsboro; + this.xrTableCell38.BorderColor = System.Drawing.Color.DarkGray; + this.xrTableCell38.Borders = ((DevExpress.XtraPrinting.BorderSide)((((DevExpress.XtraPrinting.BorderSide.Left | DevExpress.XtraPrinting.BorderSide.Top) + | DevExpress.XtraPrinting.BorderSide.Right) + | DevExpress.XtraPrinting.BorderSide.Bottom))); + 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.UsePadding = false; + this.xrTableCell38.StylePriority.UseTextAlignment = false; + this.xrTableCell38.Text = "pausch Fakt."; + this.xrTableCell38.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleRight; + this.xrTableCell38.Weight = 0.42042083402151886D; + // + // xrTableCell34 + // + this.xrTableCell34.BackColor = System.Drawing.Color.Gainsboro; + this.xrTableCell34.BorderColor = System.Drawing.Color.DarkGray; + this.xrTableCell34.Borders = ((DevExpress.XtraPrinting.BorderSide)((((DevExpress.XtraPrinting.BorderSide.Left | DevExpress.XtraPrinting.BorderSide.Top) + | DevExpress.XtraPrinting.BorderSide.Right) + | DevExpress.XtraPrinting.BorderSide.Bottom))); + 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.UsePadding = false; + this.xrTableCell34.StylePriority.UseTextAlignment = false; + this.xrTableCell34.Text = "Gesamt"; + this.xrTableCell34.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleRight; + this.xrTableCell34.Weight = 0.31923915575667006D; + // + // 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("Microsoft Sans Serif", 11F); + 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(677F, 25F); + this.xrTable6.StylePriority.UseFont = false; + // + // xrTableRow25 + // + this.xrTableRow25.Cells.AddRange(new DevExpress.XtraReports.UI.XRTableCell[] { + this.xrTableCell40, + this.xrTableCell42, + this.xrTableCell43, + this.xrTableCell44, + this.xrTableCell45, + this.xrTableCell46, + this.xrTableCell47}); + 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.Right) + | DevExpress.XtraPrinting.BorderSide.Bottom))); + this.xrTableCell40.DataBindings.AddRange(new DevExpress.XtraReports.UI.XRBinding[] { + new DevExpress.XtraReports.UI.XRBinding("Text", null, "ServiceInvoicePeriods.ServiceInvoiceItems.Duration")}); + 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.UsePadding = false; + this.xrTableCell40.StylePriority.UseTextAlignment = false; + this.xrTableCell40.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleLeft; + this.xrTableCell40.Weight = 0.62463084211025488D; + // + // xrTableCell42 + // + this.xrTableCell42.BorderColor = System.Drawing.Color.DarkGray; + this.xrTableCell42.Borders = ((DevExpress.XtraPrinting.BorderSide)(((DevExpress.XtraPrinting.BorderSide.Left | DevExpress.XtraPrinting.BorderSide.Right) + | DevExpress.XtraPrinting.BorderSide.Bottom))); + this.xrTableCell42.DataBindings.AddRange(new DevExpress.XtraReports.UI.XRBinding[] { + new DevExpress.XtraReports.UI.XRBinding("Text", null, "ServiceInvoicePeriods.ServiceInvoiceItems.ServiceDescription")}); + this.xrTableCell42.Name = "xrTableCell42"; + this.xrTableCell42.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 2, 2, 100F); + this.xrTableCell42.StylePriority.UseBorderColor = false; + this.xrTableCell42.StylePriority.UseBorders = false; + this.xrTableCell42.StylePriority.UsePadding = false; + this.xrTableCell42.StylePriority.UseTextAlignment = false; + this.xrTableCell42.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleLeft; + this.xrTableCell42.Weight = 0.85081229498678679D; + // + // xrTableCell43 + // + this.xrTableCell43.BorderColor = System.Drawing.Color.DarkGray; + this.xrTableCell43.Borders = ((DevExpress.XtraPrinting.BorderSide)(((DevExpress.XtraPrinting.BorderSide.Left | DevExpress.XtraPrinting.BorderSide.Right) + | DevExpress.XtraPrinting.BorderSide.Bottom))); + this.xrTableCell43.DataBindings.AddRange(new DevExpress.XtraReports.UI.XRBinding[] { + new DevExpress.XtraReports.UI.XRBinding("Text", null, "ServiceInvoicePeriods.ServiceInvoiceItems.HourlyRate", "{0:0.00}")}); + this.xrTableCell43.Name = "xrTableCell43"; + this.xrTableCell43.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 2, 2, 100F); + this.xrTableCell43.StylePriority.UseBorderColor = false; + this.xrTableCell43.StylePriority.UseBorders = false; + this.xrTableCell43.StylePriority.UsePadding = false; + this.xrTableCell43.StylePriority.UseTextAlignment = false; + this.xrTableCell43.Text = "xrTableCell43"; + this.xrTableCell43.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleRight; + this.xrTableCell43.Weight = 0.23245943032832414D; + // + // xrTableCell44 + // + this.xrTableCell44.BorderColor = System.Drawing.Color.DarkGray; + this.xrTableCell44.Borders = ((DevExpress.XtraPrinting.BorderSide)(((DevExpress.XtraPrinting.BorderSide.Left | DevExpress.XtraPrinting.BorderSide.Right) + | DevExpress.XtraPrinting.BorderSide.Bottom))); + this.xrTableCell44.DataBindings.AddRange(new DevExpress.XtraReports.UI.XRBinding[] { + new DevExpress.XtraReports.UI.XRBinding("Text", null, "ServiceInvoicePeriods.ServiceInvoiceItems.Hours", "{0:0.##}")}); + this.xrTableCell44.Name = "xrTableCell44"; + this.xrTableCell44.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 2, 2, 100F); + this.xrTableCell44.StylePriority.UseBorderColor = false; + this.xrTableCell44.StylePriority.UseBorders = false; + this.xrTableCell44.StylePriority.UsePadding = false; + this.xrTableCell44.StylePriority.UseTextAlignment = false; + this.xrTableCell44.Text = "xrTableCell44"; + this.xrTableCell44.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleRight; + this.xrTableCell44.Weight = 0.2893277257020575D; + // + // xrTableCell45 + // + this.xrTableCell45.BorderColor = System.Drawing.Color.DarkGray; + this.xrTableCell45.Borders = ((DevExpress.XtraPrinting.BorderSide)(((DevExpress.XtraPrinting.BorderSide.Left | DevExpress.XtraPrinting.BorderSide.Right) + | DevExpress.XtraPrinting.BorderSide.Bottom))); + this.xrTableCell45.DataBindings.AddRange(new DevExpress.XtraReports.UI.XRBinding[] { + new DevExpress.XtraReports.UI.XRBinding("Text", null, "ServiceInvoicePeriods.ServiceInvoiceItems.NetAmount", "{0:0.00}")}); + this.xrTableCell45.Name = "xrTableCell45"; + this.xrTableCell45.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 2, 2, 100F); + this.xrTableCell45.StylePriority.UseBorderColor = false; + this.xrTableCell45.StylePriority.UseBorders = false; + this.xrTableCell45.StylePriority.UsePadding = false; + this.xrTableCell45.StylePriority.UseTextAlignment = false; + this.xrTableCell45.Text = "xrTableCell45"; + this.xrTableCell45.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleRight; + this.xrTableCell45.Weight = 0.26310971709438763D; + // + // xrTableCell46 + // + this.xrTableCell46.BorderColor = System.Drawing.Color.DarkGray; + this.xrTableCell46.Borders = ((DevExpress.XtraPrinting.BorderSide)(((DevExpress.XtraPrinting.BorderSide.Left | DevExpress.XtraPrinting.BorderSide.Right) + | DevExpress.XtraPrinting.BorderSide.Bottom))); + this.xrTableCell46.DataBindings.AddRange(new DevExpress.XtraReports.UI.XRBinding[] { + new DevExpress.XtraReports.UI.XRBinding("Text", null, "ServiceInvoicePeriods.ServiceInvoiceItems.RateFactor")}); + this.xrTableCell46.Name = "xrTableCell46"; + this.xrTableCell46.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 2, 2, 100F); + this.xrTableCell46.StylePriority.UseBorderColor = false; + this.xrTableCell46.StylePriority.UseBorders = false; + this.xrTableCell46.StylePriority.UsePadding = false; + this.xrTableCell46.StylePriority.UseTextAlignment = false; + this.xrTableCell46.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleRight; + this.xrTableCell46.Weight = 0.42042083402151886D; + // + // xrTableCell47 + // + this.xrTableCell47.BorderColor = System.Drawing.Color.DarkGray; + this.xrTableCell47.Borders = ((DevExpress.XtraPrinting.BorderSide)(((DevExpress.XtraPrinting.BorderSide.Left | DevExpress.XtraPrinting.BorderSide.Right) + | DevExpress.XtraPrinting.BorderSide.Bottom))); + this.xrTableCell47.DataBindings.AddRange(new DevExpress.XtraReports.UI.XRBinding[] { + new DevExpress.XtraReports.UI.XRBinding("Text", null, "ServiceInvoicePeriods.ServiceInvoiceItems.GrossAmount")}); + this.xrTableCell47.Name = "xrTableCell47"; + this.xrTableCell47.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 2, 2, 100F); + this.xrTableCell47.StylePriority.UseBorderColor = false; + this.xrTableCell47.StylePriority.UseBorders = false; + this.xrTableCell47.StylePriority.UsePadding = false; + this.xrTableCell47.StylePriority.UseTextAlignment = false; + this.xrTableCell47.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleRight; + this.xrTableCell47.Weight = 0.31923915575667006D; + // + // GroupFooter1 + // + this.GroupFooter1.Controls.AddRange(new DevExpress.XtraReports.UI.XRControl[] { + this.xrLabel10, + this.xrLabel1, + this.xrLabel14}); + this.GroupFooter1.HeightF = 233.375F; + this.GroupFooter1.Name = "GroupFooter1"; + // + // xrLabel1 + // + this.xrLabel1.DataBindings.AddRange(new DevExpress.XtraReports.UI.XRBinding[] { + new DevExpress.XtraReports.UI.XRBinding("Text", null, "GrossClaim", "Gesamtbetrag: {0}")}); + this.xrLabel1.Font = new System.Drawing.Font("Microsoft Sans Serif", 11F, System.Drawing.FontStyle.Bold); + this.xrLabel1.LocationFloat = new DevExpress.Utils.PointFloat(420.9999F, 0F); + this.xrLabel1.Name = "xrLabel1"; + this.xrLabel1.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 5, 0, 0, 100F); + this.xrLabel1.SizeF = new System.Drawing.SizeF(255.8333F, 25F); + this.xrLabel1.StylePriority.UseFont = false; + this.xrLabel1.StylePriority.UsePadding = false; + this.xrLabel1.StylePriority.UseTextAlignment = false; + this.xrLabel1.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleRight; + // + // xrPictureBox1 + // + this.xrPictureBox1.Image = ((System.Drawing.Image)(resources.GetObject("xrPictureBox1.Image"))); + this.xrPictureBox1.LocationFloat = new DevExpress.Utils.PointFloat(201.5832F, 30.66667F); + this.xrPictureBox1.Name = "xrPictureBox1"; + this.xrPictureBox1.SizeF = new System.Drawing.SizeF(271.3333F, 90.62512F); + this.xrPictureBox1.Sizing = DevExpress.XtraPrinting.ImageSizeMode.ZoomImage; + // + // xrLabel6 + // + this.xrLabel6.Font = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Underline, System.Drawing.GraphicsUnit.Point, ((byte)(0))); + this.xrLabel6.LocationFloat = new DevExpress.Utils.PointFloat(0F, 3.999996F); + this.xrLabel6.Name = "xrLabel6"; + this.xrLabel6.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F); + this.xrLabel6.SizeF = new System.Drawing.SizeF(317F, 17F); + this.xrLabel6.StylePriority.UseFont = false; + this.xrLabel6.Text = "B-B-C-Terwort GmbH, Herkulesstr. 4, 53881 Euskirchen"; + // + // xrLabel10 + // + this.xrLabel10.Font = new System.Drawing.Font("Microsoft Sans Serif", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0))); + this.xrLabel10.LocationFloat = new DevExpress.Utils.PointFloat(0F, 39F); + this.xrLabel10.Multiline = true; + this.xrLabel10.Name = "xrLabel10"; + this.xrLabel10.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F); + this.xrLabel10.SizeF = new System.Drawing.SizeF(676.8332F, 136.4583F); + this.xrLabel10.StylePriority.UseFont = false; + this.xrLabel10.Text = "[Notice]\r\n\n\r\nAlle Leistungen sind umsatzsteuerfrei nach § 4 Nr. 16 UStG.\r\nZahlbar" + + " ohne Abzug innerhalb von 20 Tagen ab Rechnungserstellung.\r\nVielen herzlichen Da" + + "nk.\r\n\r\nMit freundlichen Grüßen"; + // + // xrLabel9 + // + this.xrLabel9.BackColor = System.Drawing.Color.Transparent; + this.xrLabel9.CanShrink = true; + this.xrLabel9.Font = new System.Drawing.Font("Microsoft Sans Serif", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0))); + this.xrLabel9.LocationFloat = new DevExpress.Utils.PointFloat(0F, 235F); + this.xrLabel9.Name = "xrLabel9"; + this.xrLabel9.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F); + this.xrLabel9.SizeF = new System.Drawing.SizeF(450.7083F, 20F); + this.xrLabel9.StylePriority.UseBackColor = false; + this.xrLabel9.StylePriority.UseFont = false; + this.xrLabel9.Text = "Vorname: \t[CustomerFirstName]"; + this.xrLabel9.WordWrap = false; + // + // xrLabel11 + // + this.xrLabel11.Font = new System.Drawing.Font("Arial", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0))); + this.xrLabel11.LocationFloat = new DevExpress.Utils.PointFloat(0.08341471F, 9F); + this.xrLabel11.Multiline = true; + this.xrLabel11.Name = "xrLabel11"; + this.xrLabel11.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F); + this.xrLabel11.SizeF = new System.Drawing.SizeF(676.9166F, 69.79166F); + this.xrLabel11.StylePriority.UseFont = false; + this.xrLabel11.Text = resources.GetString("xrLabel11.Text"); + // + // bindingSource1 + // + this.bindingSource1.DataSource = typeof(BeWo.Report.ReportObjects.ServiceInvoiceRO); + // + // ServiceInvoiceReport + // + 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(75, 75, 146, 125); + 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.xrTable5)).EndInit(); + ((System.ComponentModel.ISupportInitialize)(this.xrTable6)).EndInit(); + ((System.ComponentModel.ISupportInitialize)(this.bindingSource1)).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 xrLabel3; + private DevExpress.XtraReports.UI.XRLabel xrLabel2; + private DevExpress.XtraReports.UI.XRLabel xrLabel5; + private DevExpress.XtraReports.UI.XRLabel xrLabel8; + private DevExpress.XtraReports.UI.XRLabel lblAbrechnungszeitraum; + private DevExpress.XtraReports.UI.XRTable xrTable2; + 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 xrTableCell8; + private DevExpress.XtraReports.UI.XRTableRow xrTableRow1; + private DevExpress.XtraReports.UI.XRTableCell xrTableCell1; + private DevExpress.XtraReports.UI.XRTableRow xrTableRow6; + private DevExpress.XtraReports.UI.XRTableCell xrTableCell2; + private DevExpress.XtraReports.UI.XRTableRow xrTableRow8; + private DevExpress.XtraReports.UI.XRTableCell xrTableCell5; + private DevExpress.XtraReports.UI.XRLabel xrLabel14; + 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.XRTableCell xrTableCell42; + private DevExpress.XtraReports.UI.XRTableCell xrTableCell43; + private DevExpress.XtraReports.UI.XRTableCell xrTableCell44; + private DevExpress.XtraReports.UI.XRTableCell xrTableCell45; + private DevExpress.XtraReports.UI.XRTableCell xrTableCell46; + private DevExpress.XtraReports.UI.XRTableCell xrTableCell47; + private DevExpress.XtraReports.UI.XRLabel lblAdresse; + private DevExpress.XtraReports.UI.GroupFooterBand GroupFooter1; + private DevExpress.XtraReports.UI.XRLabel xrLabel1; + private DevExpress.XtraReports.UI.XRPictureBox xrPictureBox1; + private DevExpress.XtraReports.UI.XRLabel xrLabel6; + private DevExpress.XtraReports.UI.XRLabel xrLabel10; + private DevExpress.XtraReports.UI.XRLabel xrLabel9; + private DevExpress.XtraReports.UI.XRLabel xrLabel11; + } +} diff --git a/ReportImp/BbcTerwort/ServiceInvoiceReport.cs b/ReportImp/BbcTerwort/ServiceInvoiceReport.cs new file mode 100644 index 000000000..d383a4966 --- /dev/null +++ b/ReportImp/BbcTerwort/ServiceInvoiceReport.cs @@ -0,0 +1,66 @@ +using System; +using System.Text; +using BeWo.Report; +using BeWo.Report.ReportObjects; + +using DevExpress.XtraReports.UI; + +namespace BbcTerwort +{ + public partial class ServiceInvoiceReport : XtraReport, IBeWoReport + { + public ServiceInvoiceReport() + { + this.InitializeComponent(); + } + + public void SetReportDataSource(ServiceInvoiceRO pRO) + { + StringBuilder sb = new StringBuilder(); + + if (!String.IsNullOrEmpty(pRO.RecipientOrganisation) && pRO.RecipientOrganisation != "Selbstzahler") + { + sb.AppendLine(pRO.RecipientOrganisation); + } + if (!String.IsNullOrEmpty(pRO.RecipientAddressLine1)) + { + sb.AppendLine(pRO.RecipientAddressLine1); + } + if (!String.IsNullOrEmpty(pRO.RecipientContactPerson)) + { + sb.AppendLine(pRO.RecipientContactPerson); + } + if (!String.IsNullOrEmpty(pRO.RecipientDivision) && !String.IsNullOrEmpty(pRO.RecipientOrganisation) && pRO.RecipientOrganisation != "Selbstzahler") + { + sb.AppendLine(pRO.RecipientDivision); + } + if (!String.IsNullOrEmpty(pRO.RecipientPoBox)) + { + sb.AppendLine(pRO.RecipientPoBox); + } + else if (!String.IsNullOrEmpty(pRO.RecipientStreet)) + { + sb.AppendLine(pRO.RecipientStreet); + } + if (!String.IsNullOrEmpty(pRO.RecipientPostCodeAndTown)) + { + sb.AppendLine(""); + sb.AppendLine(pRO.RecipientPostCodeAndTown); + } + lblAdresse.Text = sb.ToString(); + + 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); + } + + this.bindingSource1.DataSource = pRO; + } + } +} \ No newline at end of file diff --git a/ReportImp/BbcTerwort/ServiceInvoiceReport.resx b/ReportImp/BbcTerwort/ServiceInvoiceReport.resx new file mode 100644 index 000000000..8ba024a18 --- /dev/null +++ b/ReportImp/BbcTerwort/ServiceInvoiceReport.resx @@ -0,0 +1,332 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + 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 + + + + + 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 + + + + B-B-C Terwort GmbH Geschäftsführung Tel: 02251/ 7772080 Kreissparkasse Euskirchen +Kölner Straße 30 Gabriele Terwort Fax: 02251/ 7772081 IBAN: DE52 3825 0110 0001 5908 50 +53879 Euskirchen Michaela Ritzleben info.bbct@web.de BiC: WELADED1EUS +Amtsgericht Bonn: Betriebsnummer: Finanzamt Euskirchen: +HRB 23171 93178516 209/ 5702/ 2765 + + + 17, 17 + + \ No newline at end of file diff --git a/ReportImp/BbcTerwort/SettlementReport2.Designer.cs b/ReportImp/BbcTerwort/SettlementReport2.Designer.cs new file mode 100644 index 000000000..ba819f978 --- /dev/null +++ b/ReportImp/BbcTerwort/SettlementReport2.Designer.cs @@ -0,0 +1,1210 @@ +using BeWo.Report.ReportObjects; +namespace BeWo.Report.DefaultReports +{ + partial class Spitzabrechnung + { + /// + /// 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); + } + + #region Designer generated code + + /// + /// 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(Spitzabrechnung)); + DevExpress.XtraReports.UI.XRSummary xrSummary1 = new DevExpress.XtraReports.UI.XRSummary(); + this.Detail = new DevExpress.XtraReports.UI.DetailBand(); + this.ReportHeader = new DevExpress.XtraReports.UI.ReportHeaderBand(); + this.xrPictureBox1 = new DevExpress.XtraReports.UI.XRPictureBox(); + this.xrLabel8 = new DevExpress.XtraReports.UI.XRLabel(); + this.xrTable1 = new DevExpress.XtraReports.UI.XRTable(); + this.rowErbrachteLeistung = new DevExpress.XtraReports.UI.XRTableRow(); + this.xrTableCell22 = new DevExpress.XtraReports.UI.XRTableCell(); + this.ruleRateFactorNull = new DevExpress.XtraReports.UI.FormattingRule(); + this.xrLabel6 = new DevExpress.XtraReports.UI.XRLabel(); + this.xrLabel5 = new DevExpress.XtraReports.UI.XRLabel(); + this.xrLabel4 = new DevExpress.XtraReports.UI.XRLabel(); + this.xrLabel3 = new DevExpress.XtraReports.UI.XRLabel(); + this.xrLabel2 = new DevExpress.XtraReports.UI.XRLabel(); + this.xrTable2 = new DevExpress.XtraReports.UI.XRTable(); + 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.xrTableCell8 = new DevExpress.XtraReports.UI.XRTableCell(); + this.xrTableRow1 = new DevExpress.XtraReports.UI.XRTableRow(); + this.xrTableCell1 = new DevExpress.XtraReports.UI.XRTableCell(); + this.xrTableRow6 = new DevExpress.XtraReports.UI.XRTableRow(); + this.xrTableCell2 = new DevExpress.XtraReports.UI.XRTableCell(); + this.xrTableRow8 = new DevExpress.XtraReports.UI.XRTableRow(); + this.xrTableCell5 = new DevExpress.XtraReports.UI.XRTableCell(); + this.RecipientPostCodeAndTown = new DevExpress.XtraReports.UI.XRLabel(); + this.xrLabel_RecipientStreet = new DevExpress.XtraReports.UI.XRLabel(); + this.xrLabel_RecipientDivision = new DevExpress.XtraReports.UI.XRLabel(); + this.xrLabel_RecipientContactPerson = new DevExpress.XtraReports.UI.XRLabel(); + this.xrLabel1 = new DevExpress.XtraReports.UI.XRLabel(); + this.ReportFooter = new DevExpress.XtraReports.UI.ReportFooterBand(); + this.xrLabel10 = new DevExpress.XtraReports.UI.XRLabel(); + this.xrTable3 = new DevExpress.XtraReports.UI.XRTable(); + this.xrTableRow20 = new DevExpress.XtraReports.UI.XRTableRow(); + this.xrTableCell16 = new DevExpress.XtraReports.UI.XRTableCell(); + this.xrTableRow7 = new DevExpress.XtraReports.UI.XRTableRow(); + this.xrTableCell3 = new DevExpress.XtraReports.UI.XRTableCell(); + this.xrTableRow9 = new DevExpress.XtraReports.UI.XRTableRow(); + this.xrTableCell6 = new DevExpress.XtraReports.UI.XRTableCell(); + this.xrTableRow21 = new DevExpress.XtraReports.UI.XRTableRow(); + this.xrTableCell18 = new DevExpress.XtraReports.UI.XRTableCell(); + this.xrTableRow22 = new DevExpress.XtraReports.UI.XRTableRow(); + this.xrTableCell29 = new DevExpress.XtraReports.UI.XRTableCell(); + this.xrTableRow23 = new DevExpress.XtraReports.UI.XRTableRow(); + this.xrTableCell30 = new DevExpress.XtraReports.UI.XRTableCell(); + this.xrTableRow24 = new DevExpress.XtraReports.UI.XRTableRow(); + this.xrTableCell31 = new DevExpress.XtraReports.UI.XRTableCell(); + this.xrLabel12 = new DevExpress.XtraReports.UI.XRLabel(); + this.xrLabel11 = new DevExpress.XtraReports.UI.XRLabel(); + this.lblNotice = new DevExpress.XtraReports.UI.XRLabel(); + this.topMarginBand1 = new DevExpress.XtraReports.UI.TopMarginBand(); + this.bottomMarginBand1 = new DevExpress.XtraReports.UI.BottomMarginBand(); + this.xrLabel9 = new DevExpress.XtraReports.UI.XRLabel(); + this.GroupHeader1 = new DevExpress.XtraReports.UI.GroupHeaderBand(); + this.xrLabel7 = new DevExpress.XtraReports.UI.XRLabel(); + this.fieldApprovedFLSWithFactor = new DevExpress.XtraReports.UI.CalculatedField(); + this.DetailReport = new DevExpress.XtraReports.UI.DetailReportBand(); + this.Detail1 = new DevExpress.XtraReports.UI.DetailBand(); + this.xrTable4 = new DevExpress.XtraReports.UI.XRTable(); + this.xrTableRow33 = new DevExpress.XtraReports.UI.XRTableRow(); + this.xrTableCell52 = new DevExpress.XtraReports.UI.XRTableCell(); + this.xrTableCell53 = new DevExpress.XtraReports.UI.XRTableCell(); + this.GroupHeader2 = new DevExpress.XtraReports.UI.GroupHeaderBand(); + this.Zwischensumme = new DevExpress.XtraReports.UI.GroupFooterBand(); + this.xrTable6 = new DevExpress.XtraReports.UI.XRTable(); + this.xrTableRow12 = new DevExpress.XtraReports.UI.XRTableRow(); + this.xrTableCell9 = new DevExpress.XtraReports.UI.XRTableCell(); + this.xrTableCell10 = new DevExpress.XtraReports.UI.XRTableCell(); + this.xrTableRow10 = new DevExpress.XtraReports.UI.XRTableRow(); + this.xrTableCell7 = new DevExpress.XtraReports.UI.XRTableCell(); + this.bindingSource1 = new System.Windows.Forms.BindingSource(this.components); + this.GroupFooter1 = new DevExpress.XtraReports.UI.GroupFooterBand(); + this.xrTable5 = new DevExpress.XtraReports.UI.XRTable(); + this.xrTableRow31 = new DevExpress.XtraReports.UI.XRTableRow(); + this.xrTableCell49 = new DevExpress.XtraReports.UI.XRTableCell(); + this.xrTableCell50 = new DevExpress.XtraReports.UI.XRTableCell(); + this.xrTableRow32 = new DevExpress.XtraReports.UI.XRTableRow(); + this.xrTableCell51 = new DevExpress.XtraReports.UI.XRTableCell(); + this.xrTableRow34 = new DevExpress.XtraReports.UI.XRTableRow(); + this.xrTableCell54 = new DevExpress.XtraReports.UI.XRTableCell(); + this.xrTableCell55 = new DevExpress.XtraReports.UI.XRTableCell(); + this.xrTableRow35 = new DevExpress.XtraReports.UI.XRTableRow(); + this.xrTableCell56 = new DevExpress.XtraReports.UI.XRTableCell(); + this.xrTableCell57 = new DevExpress.XtraReports.UI.XRTableCell(); + this.xrTableRow36 = new DevExpress.XtraReports.UI.XRTableRow(); + this.xrTableCell58 = new DevExpress.XtraReports.UI.XRTableCell(); + this.xrTableRow37 = new DevExpress.XtraReports.UI.XRTableRow(); + this.xrTableCell59 = new DevExpress.XtraReports.UI.XRTableCell(); + this.xrTableCell60 = new DevExpress.XtraReports.UI.XRTableCell(); + ((System.ComponentModel.ISupportInitialize)(this.xrTable1)).BeginInit(); + ((System.ComponentModel.ISupportInitialize)(this.xrTable2)).BeginInit(); + ((System.ComponentModel.ISupportInitialize)(this.xrTable3)).BeginInit(); + ((System.ComponentModel.ISupportInitialize)(this.xrTable4)).BeginInit(); + ((System.ComponentModel.ISupportInitialize)(this.xrTable6)).BeginInit(); + ((System.ComponentModel.ISupportInitialize)(this.bindingSource1)).BeginInit(); + ((System.ComponentModel.ISupportInitialize)(this.xrTable5)).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.xrPictureBox1}); + this.ReportHeader.Font = new System.Drawing.Font("Verdana", 10F); + this.ReportHeader.HeightF = 120F; + this.ReportHeader.Name = "ReportHeader"; + this.ReportHeader.StylePriority.UseFont = false; + // + // xrPictureBox1 + // + this.xrPictureBox1.Image = ((System.Drawing.Image)(resources.GetObject("xrPictureBox1.Image"))); + this.xrPictureBox1.LocationFloat = new DevExpress.Utils.PointFloat(198.0416F, 13.47911F); + this.xrPictureBox1.Name = "xrPictureBox1"; + this.xrPictureBox1.SizeF = new System.Drawing.SizeF(280.7083F, 91.66679F); + this.xrPictureBox1.Sizing = DevExpress.XtraPrinting.ImageSizeMode.ZoomImage; + // + // xrLabel8 + // + this.xrLabel8.DataBindings.AddRange(new DevExpress.XtraReports.UI.XRBinding[] { + new DevExpress.XtraReports.UI.XRBinding("Text", null, "InvoiceDate", "{0:dd.MM.yyyy}")}); + this.xrLabel8.LocationFloat = new DevExpress.Utils.PointFloat(366.9999F, 147.125F); + 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.UseTextAlignment = false; + this.xrLabel8.Text = "xrLabel8"; + this.xrLabel8.TextAlignment = DevExpress.XtraPrinting.TextAlignment.TopRight; + // + // xrTable1 + // + this.xrTable1.BorderColor = System.Drawing.SystemColors.ControlLight; + this.xrTable1.LocationFloat = new DevExpress.Utils.PointFloat(0F, 353.4583F); + this.xrTable1.Name = "xrTable1"; + this.xrTable1.Rows.AddRange(new DevExpress.XtraReports.UI.XRTableRow[] { + this.rowErbrachteLeistung}); + this.xrTable1.SizeF = new System.Drawing.SizeF(650F, 17F); + this.xrTable1.StylePriority.UseBorderColor = false; + // + // rowErbrachteLeistung + // + this.rowErbrachteLeistung.Cells.AddRange(new DevExpress.XtraReports.UI.XRTableCell[] { + this.xrTableCell22}); + this.rowErbrachteLeistung.Name = "rowErbrachteLeistung"; + this.rowErbrachteLeistung.Weight = 0.085D; + // + // xrTableCell22 + // + this.xrTableCell22.BorderColor = System.Drawing.SystemColors.ControlLight; + this.xrTableCell22.Borders = ((DevExpress.XtraPrinting.BorderSide)((((DevExpress.XtraPrinting.BorderSide.Left | DevExpress.XtraPrinting.BorderSide.Top) + | DevExpress.XtraPrinting.BorderSide.Right) + | DevExpress.XtraPrinting.BorderSide.Bottom))); + this.xrTableCell22.Name = "xrTableCell22"; + this.xrTableCell22.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F); + this.xrTableCell22.StylePriority.UseBorderColor = false; + this.xrTableCell22.StylePriority.UseBorders = false; + this.xrTableCell22.StylePriority.UseFont = false; + this.xrTableCell22.Text = "Erbrachte Leistungen:"; + this.xrTableCell22.Weight = 1D; + // + // ruleRateFactorNull + // + this.ruleRateFactorNull.Condition = "[RateFactorText2] == ?"; + this.ruleRateFactorNull.Formatting.Visible = DevExpress.Utils.DefaultBoolean.False; + this.ruleRateFactorNull.Name = "ruleRateFactorNull"; + // + // xrLabel6 + // + this.xrLabel6.BackColor = System.Drawing.Color.Transparent; + this.xrLabel6.LocationFloat = new DevExpress.Utils.PointFloat(0F, 278.4583F); + this.xrLabel6.Multiline = true; + this.xrLabel6.Name = "xrLabel6"; + this.xrLabel6.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F); + this.xrLabel6.SizeF = new System.Drawing.SizeF(649.9999F, 67F); + this.xrLabel6.StylePriority.UseBackColor = false; + this.xrLabel6.StylePriority.UseFont = false; + this.xrLabel6.Text = resources.GetString("xrLabel6.Text"); + // + // xrLabel5 + // + this.xrLabel5.LocationFloat = new DevExpress.Utils.PointFloat(0F, 245.4583F); + this.xrLabel5.Name = "xrLabel5"; + this.xrLabel5.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F); + this.xrLabel5.SizeF = new System.Drawing.SizeF(317F, 17F); + this.xrLabel5.StylePriority.UseFont = false; + this.xrLabel5.Text = "Sehr geehrte/r [RecipientContactPerson],"; + // + // xrLabel4 + // + this.xrLabel4.BackColor = System.Drawing.Color.Transparent; + this.xrLabel4.CanShrink = true; + this.xrLabel4.Font = new System.Drawing.Font("Microsoft Sans Serif", 11F, System.Drawing.FontStyle.Bold); + this.xrLabel4.LocationFloat = new DevExpress.Utils.PointFloat(0F, 203.125F); + 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(650F, 17F); + this.xrLabel4.StylePriority.UseBackColor = false; + this.xrLabel4.StylePriority.UseFont = false; + this.xrLabel4.Text = "[CustomerReferenceNumberAndDate]"; + this.xrLabel4.WordWrap = false; + // + // xrLabel3 + // + this.xrLabel3.BackColor = System.Drawing.Color.Transparent; + this.xrLabel3.CanShrink = true; + this.xrLabel3.Font = new System.Drawing.Font("Microsoft Sans Serif", 11F, System.Drawing.FontStyle.Bold); + this.xrLabel3.LocationFloat = new DevExpress.Utils.PointFloat(0F, 187.125F); + this.xrLabel3.Name = "xrLabel3"; + this.xrLabel3.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F); + this.xrLabel3.SizeF = new System.Drawing.SizeF(650F, 16F); + this.xrLabel3.StylePriority.UseBackColor = false; + this.xrLabel3.StylePriority.UseFont = false; + this.xrLabel3.Text = "Abrechnung Betreuungsleistungen für [Salutation2] [CustomerFirstName] [CustomerLa" + + "stName]"; + this.xrLabel3.WordWrap = false; + // + // xrLabel2 + // + this.xrLabel2.BackColor = System.Drawing.Color.Transparent; + this.xrLabel2.CanShrink = true; + this.xrLabel2.Font = new System.Drawing.Font("Microsoft Sans Serif", 11F, System.Drawing.FontStyle.Bold); + this.xrLabel2.LocationFloat = new DevExpress.Utils.PointFloat(0F, 170.125F); + this.xrLabel2.Name = "xrLabel2"; + this.xrLabel2.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F); + this.xrLabel2.SizeF = new System.Drawing.SizeF(650F, 17F); + this.xrLabel2.StylePriority.UseBackColor = false; + this.xrLabel2.StylePriority.UseFont = false; + this.xrLabel2.Text = "Rechnung Nr. [InvoiceNumber]"; + this.xrLabel2.WordWrap = false; + // + // xrTable2 + // + this.xrTable2.LocationFloat = new DevExpress.Utils.PointFloat(367.0001F, 0F); + this.xrTable2.Name = "xrTable2"; + this.xrTable2.Rows.AddRange(new DevExpress.XtraReports.UI.XRTableRow[] { + this.xrTableRow2, + this.xrTableRow5, + this.xrTableRow4, + this.xrTableRow3, + this.xrTableRow1, + this.xrTableRow6, + this.xrTableRow8}); + this.xrTable2.SizeF = new System.Drawing.SizeF(283F, 134F); + // + // 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 = "Ihr(e) Ansprechpartner(in):"; + this.xrTableCell4.TextAlignment = DevExpress.XtraPrinting.TextAlignment.TopRight; + 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.TopRight; + 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.TopRight; + this.xrTableCell11.Weight = 1D; + // + // xrTableRow3 + // + this.xrTableRow3.Cells.AddRange(new DevExpress.XtraReports.UI.XRTableCell[] { + this.xrTableCell8}); + this.xrTableRow3.Name = "xrTableRow3"; + this.xrTableRow3.Weight = 0.13245033112582783D; + // + // xrTableCell8 + // + this.xrTableCell8.CanShrink = true; + this.xrTableCell8.Name = "xrTableCell8"; + this.xrTableCell8.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F); + this.xrTableCell8.ProcessNullValues = DevExpress.XtraReports.UI.ValueSuppressType.SuppressAndShrink; + this.xrTableCell8.StylePriority.UseFont = false; + this.xrTableCell8.StylePriority.UseTextAlignment = false; + this.xrTableCell8.Text = "[SenderContactPersonMail]"; + this.xrTableCell8.TextAlignment = DevExpress.XtraPrinting.TextAlignment.TopRight; + this.xrTableCell8.Weight = 1D; + // + // xrTableRow1 + // + this.xrTableRow1.Cells.AddRange(new DevExpress.XtraReports.UI.XRTableCell[] { + this.xrTableCell1}); + this.xrTableRow1.Name = "xrTableRow1"; + this.xrTableRow1.Weight = 0.13245033112582783D; + // + // xrTableCell1 + // + this.xrTableCell1.CanShrink = true; + this.xrTableCell1.Name = "xrTableCell1"; + this.xrTableCell1.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F); + this.xrTableCell1.ProcessNullValues = DevExpress.XtraReports.UI.ValueSuppressType.SuppressAndShrink; + this.xrTableCell1.StylePriority.UseFont = false; + this.xrTableCell1.StylePriority.UseTextAlignment = false; + this.xrTableCell1.Text = "[SenderContactPersonPhone]"; + this.xrTableCell1.TextAlignment = DevExpress.XtraPrinting.TextAlignment.TopRight; + this.xrTableCell1.Weight = 1D; + // + // xrTableRow6 + // + this.xrTableRow6.Cells.AddRange(new DevExpress.XtraReports.UI.XRTableCell[] { + this.xrTableCell2}); + this.xrTableRow6.Name = "xrTableRow6"; + this.xrTableRow6.Weight = 0.11258278145695365D; + // + // 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 = "[SenderContactPersonFax]"; + this.xrTableCell2.TextAlignment = DevExpress.XtraPrinting.TextAlignment.TopRight; + this.xrTableCell2.Weight = 1D; + // + // xrTableRow8 + // + this.xrTableRow8.Cells.AddRange(new DevExpress.XtraReports.UI.XRTableCell[] { + this.xrTableCell5}); + this.xrTableRow8.Name = "xrTableRow8"; + this.xrTableRow8.Weight = 0.11258278145695365D; + // + // xrTableCell5 + // + this.xrTableCell5.Name = "xrTableCell5"; + this.xrTableCell5.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F); + this.xrTableCell5.Weight = 1D; + // + // RecipientPostCodeAndTown + // + this.RecipientPostCodeAndTown.CanShrink = true; + this.RecipientPostCodeAndTown.LocationFloat = new DevExpress.Utils.PointFloat(0F, 85.00003F); + this.RecipientPostCodeAndTown.Name = "RecipientPostCodeAndTown"; + this.RecipientPostCodeAndTown.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F); + this.RecipientPostCodeAndTown.ProcessNullValues = DevExpress.XtraReports.UI.ValueSuppressType.SuppressAndShrink; + this.RecipientPostCodeAndTown.SizeF = new System.Drawing.SizeF(292F, 17F); + this.RecipientPostCodeAndTown.StylePriority.UseFont = false; + this.RecipientPostCodeAndTown.Text = "[RecipientPostCodeAndTown]"; + // + // xrLabel_RecipientStreet + // + this.xrLabel_RecipientStreet.CanShrink = true; + this.xrLabel_RecipientStreet.LocationFloat = new DevExpress.Utils.PointFloat(0F, 68.00002F); + this.xrLabel_RecipientStreet.Name = "xrLabel_RecipientStreet"; + this.xrLabel_RecipientStreet.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F); + this.xrLabel_RecipientStreet.ProcessNullValues = DevExpress.XtraReports.UI.ValueSuppressType.SuppressAndShrink; + this.xrLabel_RecipientStreet.SizeF = new System.Drawing.SizeF(292F, 17F); + this.xrLabel_RecipientStreet.StylePriority.UseFont = false; + this.xrLabel_RecipientStreet.Text = "[RecipientStreet]"; + // + // xrLabel_RecipientDivision + // + this.xrLabel_RecipientDivision.CanShrink = true; + this.xrLabel_RecipientDivision.LocationFloat = new DevExpress.Utils.PointFloat(0F, 51.00002F); + this.xrLabel_RecipientDivision.Name = "xrLabel_RecipientDivision"; + this.xrLabel_RecipientDivision.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F); + this.xrLabel_RecipientDivision.ProcessNullValues = DevExpress.XtraReports.UI.ValueSuppressType.SuppressAndShrink; + this.xrLabel_RecipientDivision.SizeF = new System.Drawing.SizeF(292F, 17F); + this.xrLabel_RecipientDivision.StylePriority.UseFont = false; + this.xrLabel_RecipientDivision.Text = "[RecipientDivision]"; + // + // xrLabel_RecipientContactPerson + // + this.xrLabel_RecipientContactPerson.CanShrink = true; + this.xrLabel_RecipientContactPerson.LocationFloat = new DevExpress.Utils.PointFloat(0F, 34.00001F); + this.xrLabel_RecipientContactPerson.Name = "xrLabel_RecipientContactPerson"; + this.xrLabel_RecipientContactPerson.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F); + this.xrLabel_RecipientContactPerson.ProcessNullValues = DevExpress.XtraReports.UI.ValueSuppressType.SuppressAndShrink; + this.xrLabel_RecipientContactPerson.SizeF = new System.Drawing.SizeF(292F, 17F); + this.xrLabel_RecipientContactPerson.StylePriority.UseFont = false; + this.xrLabel_RecipientContactPerson.Text = "[RecipientContactPerson]"; + // + // xrLabel1 + // + this.xrLabel1.CanShrink = true; + this.xrLabel1.LocationFloat = new DevExpress.Utils.PointFloat(0F, 17F); + this.xrLabel1.Name = "xrLabel1"; + this.xrLabel1.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F); + this.xrLabel1.ProcessNullValues = DevExpress.XtraReports.UI.ValueSuppressType.SuppressAndShrink; + this.xrLabel1.SizeF = new System.Drawing.SizeF(292F, 17F); + this.xrLabel1.StylePriority.UseFont = false; + this.xrLabel1.Text = "[RecipientOrganisation]"; + // + // ReportFooter + // + this.ReportFooter.Controls.AddRange(new DevExpress.XtraReports.UI.XRControl[] { + this.xrLabel10, + this.xrTable3, + this.xrLabel12, + this.xrLabel11, + this.lblNotice}); + this.ReportFooter.Font = new System.Drawing.Font("Verdana", 10F); + this.ReportFooter.HeightF = 254.8333F; + this.ReportFooter.KeepTogether = true; + this.ReportFooter.Name = "ReportFooter"; + this.ReportFooter.StylePriority.UseFont = false; + // + // xrLabel10 + // + this.xrLabel10.Font = new System.Drawing.Font("Microsoft Sans Serif", 11.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0))); + this.xrLabel10.LocationFloat = new DevExpress.Utils.PointFloat(0F, 130F); + this.xrLabel10.Multiline = true; + this.xrLabel10.Name = "xrLabel10"; + this.xrLabel10.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F); + this.xrLabel10.SizeF = new System.Drawing.SizeF(650.0001F, 72.20834F); + this.xrLabel10.StylePriority.UseFont = false; + this.xrLabel10.Text = "Ich bitte höflich um Überweisung des Rechnungsbetrags.\r\nAlle Leistungen sind umsa" + + "tzsteuerfrei nach § 4 Nr. 16 UStG.\r\n\r\nMit freundlichen Grüßen"; + // + // xrTable3 + // + this.xrTable3.Font = new System.Drawing.Font("Microsoft Sans Serif", 11.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0))); + this.xrTable3.LocationFloat = new DevExpress.Utils.PointFloat(0F, 30F); + this.xrTable3.Name = "xrTable3"; + this.xrTable3.Rows.AddRange(new DevExpress.XtraReports.UI.XRTableRow[] { + this.xrTableRow20, + this.xrTableRow7, + this.xrTableRow9, + this.xrTableRow21, + this.xrTableRow22, + this.xrTableRow23, + this.xrTableRow24}); + this.xrTable3.SizeF = new System.Drawing.SizeF(650F, 94F); + this.xrTable3.StylePriority.UseFont = false; + // + // xrTableRow20 + // + this.xrTableRow20.Cells.AddRange(new DevExpress.XtraReports.UI.XRTableCell[] { + this.xrTableCell16}); + this.xrTableRow20.Name = "xrTableRow20"; + this.xrTableRow20.Weight = 0.38095238095238093D; + // + // xrTableCell16 + // + this.xrTableCell16.DataBindings.AddRange(new DevExpress.XtraReports.UI.XRBinding[] { + new DevExpress.XtraReports.UI.XRBinding("Text", null, "Notice")}); + this.xrTableCell16.Name = "xrTableCell16"; + this.xrTableCell16.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F); + this.xrTableCell16.StylePriority.UsePadding = false; + this.xrTableCell16.Text = "xrTableCell1"; + this.xrTableCell16.Weight = 3D; + // + // xrTableRow7 + // + this.xrTableRow7.Cells.AddRange(new DevExpress.XtraReports.UI.XRTableCell[] { + this.xrTableCell3}); + this.xrTableRow7.Name = "xrTableRow7"; + this.xrTableRow7.Weight = 0.23809523809523808D; + // + // xrTableCell3 + // + this.xrTableCell3.Name = "xrTableCell3"; + this.xrTableCell3.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F); + this.xrTableCell3.StylePriority.UsePadding = false; + this.xrTableCell3.Weight = 3D; + // + // xrTableRow9 + // + this.xrTableRow9.Cells.AddRange(new DevExpress.XtraReports.UI.XRTableCell[] { + this.xrTableCell6}); + this.xrTableRow9.Name = "xrTableRow9"; + this.xrTableRow9.Weight = 0.38095238095238088D; + // + // xrTableCell6 + // + this.xrTableCell6.DataBindings.AddRange(new DevExpress.XtraReports.UI.XRBinding[] { + new DevExpress.XtraReports.UI.XRBinding("Text", null, "FehlkontakteString")}); + this.xrTableCell6.Name = "xrTableCell6"; + this.xrTableCell6.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F); + this.xrTableCell6.StylePriority.UsePadding = false; + this.xrTableCell6.Weight = 3D; + // + // xrTableRow21 + // + this.xrTableRow21.Cells.AddRange(new DevExpress.XtraReports.UI.XRTableCell[] { + this.xrTableCell18}); + this.xrTableRow21.Name = "xrTableRow21"; + this.xrTableRow21.Weight = 0.23809523809523808D; + // + // xrTableCell18 + // + this.xrTableCell18.Name = "xrTableCell18"; + this.xrTableCell18.Weight = 3D; + // + // xrTableRow22 + // + this.xrTableRow22.Cells.AddRange(new DevExpress.XtraReports.UI.XRTableCell[] { + this.xrTableCell29}); + this.xrTableRow22.Name = "xrTableRow22"; + this.xrTableRow22.Weight = 0.38095238095238088D; + // + // xrTableCell29 + // + this.xrTableCell29.DataBindings.AddRange(new DevExpress.XtraReports.UI.XRBinding[] { + new DevExpress.XtraReports.UI.XRBinding("Text", null, "AbsenceTimes")}); + this.xrTableCell29.Name = "xrTableCell29"; + this.xrTableCell29.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F); + this.xrTableCell29.StylePriority.UsePadding = false; + this.xrTableCell29.Text = "xrTableCell4"; + this.xrTableCell29.Weight = 3D; + // + // xrTableRow23 + // + this.xrTableRow23.Cells.AddRange(new DevExpress.XtraReports.UI.XRTableCell[] { + this.xrTableCell30}); + this.xrTableRow23.Name = "xrTableRow23"; + this.xrTableRow23.Weight = 0.23809523809523803D; + // + // xrTableCell30 + // + this.xrTableCell30.Name = "xrTableCell30"; + this.xrTableCell30.Weight = 3D; + // + // xrTableRow24 + // + this.xrTableRow24.Cells.AddRange(new DevExpress.XtraReports.UI.XRTableCell[] { + this.xrTableCell31}); + this.xrTableRow24.Name = "xrTableRow24"; + this.xrTableRow24.Weight = 0.38095238095238088D; + // + // xrTableCell31 + // + this.xrTableCell31.DataBindings.AddRange(new DevExpress.XtraReports.UI.XRBinding[] { + new DevExpress.XtraReports.UI.XRBinding("Text", null, "FinalSentence")}); + this.xrTableCell31.Name = "xrTableCell31"; + this.xrTableCell31.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F); + this.xrTableCell31.StylePriority.UsePadding = false; + this.xrTableCell31.Text = "xrTableCell8"; + this.xrTableCell31.Weight = 3D; + // + // xrLabel12 + // + this.xrLabel12.Font = new System.Drawing.Font("Microsoft Sans Serif", 11.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0))); + this.xrLabel12.LocationFloat = new DevExpress.Utils.PointFloat(0.541687F, 231.9167F); + this.xrLabel12.Name = "xrLabel12"; + this.xrLabel12.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F); + this.xrLabel12.SizeF = new System.Drawing.SizeF(225F, 17F); + this.xrLabel12.StylePriority.UseFont = false; + this.xrLabel12.Text = "[CreatorName]"; + // + // xrLabel11 + // + this.xrLabel11.Font = new System.Drawing.Font("Microsoft Sans Serif", 11.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0))); + this.xrLabel11.LocationFloat = new DevExpress.Utils.PointFloat(583.5416F, 231.9167F); + this.xrLabel11.Name = "xrLabel11"; + this.xrLabel11.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F); + this.xrLabel11.SizeF = new System.Drawing.SizeF(67F, 17F); + this.xrLabel11.StylePriority.UseFont = false; + this.xrLabel11.StylePriority.UseTextAlignment = false; + this.xrLabel11.Text = "Anlage"; + this.xrLabel11.TextAlignment = DevExpress.XtraPrinting.TextAlignment.TopRight; + // + // lblNotice + // + this.lblNotice.CanShrink = true; + this.lblNotice.Font = new System.Drawing.Font("Microsoft Sans Serif", 11.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0))); + this.lblNotice.LocationFloat = new DevExpress.Utils.PointFloat(0F, 4.999992F); + this.lblNotice.Name = "lblNotice"; + this.lblNotice.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F); + this.lblNotice.SizeF = new System.Drawing.SizeF(250F, 25F); + this.lblNotice.StylePriority.UseFont = false; + this.lblNotice.Text = "Abschließende Bemerkungen:"; + // + // topMarginBand1 + // + this.topMarginBand1.HeightF = 100F; + this.topMarginBand1.Name = "topMarginBand1"; + // + // bottomMarginBand1 + // + this.bottomMarginBand1.Controls.AddRange(new DevExpress.XtraReports.UI.XRControl[] { + this.xrLabel9}); + this.bottomMarginBand1.HeightF = 81.91668F; + this.bottomMarginBand1.Name = "bottomMarginBand1"; + // + // xrLabel9 + // + this.xrLabel9.Font = new System.Drawing.Font("Arial", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0))); + this.xrLabel9.LocationFloat = new DevExpress.Utils.PointFloat(0.541687F, 6.062571F); + this.xrLabel9.Multiline = true; + this.xrLabel9.Name = "xrLabel9"; + this.xrLabel9.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F); + this.xrLabel9.SizeF = new System.Drawing.SizeF(649.4582F, 69.79166F); + this.xrLabel9.StylePriority.UseFont = false; + this.xrLabel9.Text = resources.GetString("xrLabel9.Text"); + // + // GroupHeader1 + // + this.GroupHeader1.Controls.AddRange(new DevExpress.XtraReports.UI.XRControl[] { + this.xrLabel7, + this.xrLabel1, + this.xrLabel_RecipientContactPerson, + this.xrLabel_RecipientDivision, + this.xrLabel_RecipientStreet, + this.RecipientPostCodeAndTown, + this.xrTable2, + this.xrLabel2, + this.xrLabel3, + this.xrLabel4, + this.xrLabel5, + this.xrLabel6, + this.xrTable1, + this.xrLabel8}); + this.GroupHeader1.Font = new System.Drawing.Font("Microsoft Sans Serif", 11F); + this.GroupHeader1.HeightF = 370.4583F; + this.GroupHeader1.Name = "GroupHeader1"; + this.GroupHeader1.StylePriority.UseFont = false; + // + // xrLabel7 + // + this.xrLabel7.Font = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Underline, System.Drawing.GraphicsUnit.Point, ((byte)(0))); + this.xrLabel7.LocationFloat = new DevExpress.Utils.PointFloat(0F, 0F); + this.xrLabel7.Name = "xrLabel7"; + this.xrLabel7.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F); + this.xrLabel7.SizeF = new System.Drawing.SizeF(292.0001F, 17F); + this.xrLabel7.StylePriority.UseFont = false; + this.xrLabel7.Text = "B-B-C-Terwort GmbH, Herkulesstr. 4, 53881 Euskirchen"; + // + // fieldApprovedFLSWithFactor + // + this.fieldApprovedFLSWithFactor.Expression = "[ApprovedFLSTotal] * [RateFactor]"; + this.fieldApprovedFLSWithFactor.FieldType = DevExpress.XtraReports.UI.FieldType.Decimal; + this.fieldApprovedFLSWithFactor.Name = "fieldApprovedFLSWithFactor"; + // + // DetailReport + // + this.DetailReport.Bands.AddRange(new DevExpress.XtraReports.UI.Band[] { + this.Detail1, + this.GroupHeader2, + this.Zwischensumme}); + this.DetailReport.DataMember = "InvoiceItems"; + this.DetailReport.DataSource = this.bindingSource1; + this.DetailReport.Level = 0; + this.DetailReport.Name = "DetailReport"; + // + // Detail1 + // + this.Detail1.Controls.AddRange(new DevExpress.XtraReports.UI.XRControl[] { + this.xrTable4}); + this.Detail1.Font = new System.Drawing.Font("Verdana", 9.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0))); + this.Detail1.HeightF = 17F; + this.Detail1.Name = "Detail1"; + this.Detail1.SortFields.AddRange(new DevExpress.XtraReports.UI.GroupField[] { + new DevExpress.XtraReports.UI.GroupField("PeriodStartDate", DevExpress.XtraReports.UI.XRColumnSortOrder.Ascending)}); + this.Detail1.StylePriority.UseFont = false; + // + // xrTable4 + // + this.xrTable4.BorderColor = System.Drawing.SystemColors.ControlLight; + this.xrTable4.Font = new System.Drawing.Font("Microsoft Sans Serif", 11.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0))); + this.xrTable4.LocationFloat = new DevExpress.Utils.PointFloat(0F, 0F); + this.xrTable4.Name = "xrTable4"; + this.xrTable4.Rows.AddRange(new DevExpress.XtraReports.UI.XRTableRow[] { + this.xrTableRow33}); + this.xrTable4.SizeF = new System.Drawing.SizeF(650F, 17F); + this.xrTable4.StylePriority.UseBorderColor = false; + this.xrTable4.StylePriority.UseFont = false; + // + // xrTableRow33 + // + this.xrTableRow33.Cells.AddRange(new DevExpress.XtraReports.UI.XRTableCell[] { + this.xrTableCell52, + this.xrTableCell53}); + this.xrTableRow33.Name = "xrTableRow33"; + this.xrTableRow33.Weight = 0.085D; + // + // xrTableCell52 + // + this.xrTableCell52.BorderColor = System.Drawing.SystemColors.ControlLight; + this.xrTableCell52.Borders = ((DevExpress.XtraPrinting.BorderSide)((DevExpress.XtraPrinting.BorderSide.Left | DevExpress.XtraPrinting.BorderSide.Bottom))); + this.xrTableCell52.DataBindings.AddRange(new DevExpress.XtraReports.UI.XRBinding[] { + new DevExpress.XtraReports.UI.XRBinding("Text", null, "InvoiceItems.AbrechnungsText")}); + this.xrTableCell52.Name = "xrTableCell52"; + this.xrTableCell52.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F); + this.xrTableCell52.StylePriority.UseBorderColor = false; + this.xrTableCell52.StylePriority.UseBorders = false; + this.xrTableCell52.StylePriority.UseFont = false; + this.xrTableCell52.Text = "abzüglich der geleisteten Abschlagszahlung:"; + this.xrTableCell52.Weight = 0.83602567232572123D; + // + // xrTableCell53 + // + this.xrTableCell53.BorderColor = System.Drawing.SystemColors.ControlLight; + this.xrTableCell53.Borders = ((DevExpress.XtraPrinting.BorderSide)(((DevExpress.XtraPrinting.BorderSide.Left | DevExpress.XtraPrinting.BorderSide.Right) + | DevExpress.XtraPrinting.BorderSide.Bottom))); + this.xrTableCell53.DataBindings.AddRange(new DevExpress.XtraReports.UI.XRBinding[] { + new DevExpress.XtraReports.UI.XRBinding("Text", null, "InvoiceItems.GrossAmountTotal", "{0:c}")}); + this.xrTableCell53.Name = "xrTableCell53"; + this.xrTableCell53.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F); + this.xrTableCell53.StylePriority.UseBorderColor = false; + this.xrTableCell53.StylePriority.UseBorders = false; + this.xrTableCell53.StylePriority.UseFont = false; + this.xrTableCell53.StylePriority.UseTextAlignment = false; + this.xrTableCell53.Text = "xrTableCell10"; + this.xrTableCell53.TextAlignment = DevExpress.XtraPrinting.TextAlignment.TopRight; + this.xrTableCell53.Weight = 0.16397432767427886D; + // + // GroupHeader2 + // + this.GroupHeader2.BorderColor = System.Drawing.Color.Transparent; + this.GroupHeader2.Expanded = false; + this.GroupHeader2.GroupFields.AddRange(new DevExpress.XtraReports.UI.GroupField[] { + new DevExpress.XtraReports.UI.GroupField("RateFactor", DevExpress.XtraReports.UI.XRColumnSortOrder.Descending)}); + this.GroupHeader2.HeightF = 0F; + this.GroupHeader2.Name = "GroupHeader2"; + this.GroupHeader2.StylePriority.UseBorderColor = false; + // + // Zwischensumme + // + this.Zwischensumme.Controls.AddRange(new DevExpress.XtraReports.UI.XRControl[] { + this.xrTable6}); + this.Zwischensumme.HeightF = 27F; + this.Zwischensumme.Name = "Zwischensumme"; + this.Zwischensumme.Visible = false; + // + // xrTable6 + // + this.xrTable6.Font = new System.Drawing.Font("Microsoft Sans Serif", 11.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.xrTableRow12, + this.xrTableRow10}); + this.xrTable6.SizeF = new System.Drawing.SizeF(650F, 27F); + this.xrTable6.StylePriority.UseFont = false; + // + // xrTableRow12 + // + this.xrTableRow12.Cells.AddRange(new DevExpress.XtraReports.UI.XRTableCell[] { + this.xrTableCell9, + this.xrTableCell10}); + this.xrTableRow12.Name = "xrTableRow12"; + this.xrTableRow12.Weight = 0.40476190476190466D; + // + // xrTableCell9 + // + this.xrTableCell9.BorderColor = System.Drawing.SystemColors.ControlLight; + this.xrTableCell9.Borders = ((DevExpress.XtraPrinting.BorderSide)((DevExpress.XtraPrinting.BorderSide.Left | DevExpress.XtraPrinting.BorderSide.Bottom))); + this.xrTableCell9.Font = new System.Drawing.Font("Microsoft Sans Serif", 11.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0))); + this.xrTableCell9.Name = "xrTableCell9"; + this.xrTableCell9.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F); + this.xrTableCell9.StylePriority.UseBorderColor = false; + this.xrTableCell9.StylePriority.UseBorders = false; + this.xrTableCell9.StylePriority.UseFont = false; + this.xrTableCell9.StylePriority.UsePadding = false; + this.xrTableCell9.Text = "Zwischensumme [ItemDescription]:"; + this.xrTableCell9.Weight = 2.5080772986778848D; + // + // xrTableCell10 + // + this.xrTableCell10.BorderColor = System.Drawing.SystemColors.ControlLight; + this.xrTableCell10.Borders = ((DevExpress.XtraPrinting.BorderSide)(((DevExpress.XtraPrinting.BorderSide.Left | DevExpress.XtraPrinting.BorderSide.Right) + | DevExpress.XtraPrinting.BorderSide.Bottom))); + this.xrTableCell10.DataBindings.AddRange(new DevExpress.XtraReports.UI.XRBinding[] { + new DevExpress.XtraReports.UI.XRBinding("Text", null, "InvoiceItems.GrossAmountTotal")}); + this.xrTableCell10.Font = new System.Drawing.Font("Microsoft Sans Serif", 11.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0))); + this.xrTableCell10.Name = "xrTableCell10"; + this.xrTableCell10.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F); + this.xrTableCell10.StylePriority.UseBorderColor = false; + this.xrTableCell10.StylePriority.UseBorders = false; + this.xrTableCell10.StylePriority.UseFont = false; + this.xrTableCell10.StylePriority.UsePadding = false; + this.xrTableCell10.StylePriority.UseTextAlignment = false; + xrSummary1.FormatString = "{0:c}"; + xrSummary1.Running = DevExpress.XtraReports.UI.SummaryRunning.Group; + this.xrTableCell10.Summary = xrSummary1; + this.xrTableCell10.TextAlignment = DevExpress.XtraPrinting.TextAlignment.TopRight; + this.xrTableCell10.Weight = 0.4919227013221153D; + // + // xrTableRow10 + // + this.xrTableRow10.Cells.AddRange(new DevExpress.XtraReports.UI.XRTableCell[] { + this.xrTableCell7}); + this.xrTableRow10.Name = "xrTableRow10"; + this.xrTableRow10.Weight = 0.23809523809523805D; + // + // xrTableCell7 + // + this.xrTableCell7.BorderColor = System.Drawing.SystemColors.ControlLight; + this.xrTableCell7.Borders = ((DevExpress.XtraPrinting.BorderSide)(((DevExpress.XtraPrinting.BorderSide.Left | DevExpress.XtraPrinting.BorderSide.Right) + | DevExpress.XtraPrinting.BorderSide.Bottom))); + this.xrTableCell7.Font = new System.Drawing.Font("Verdana", 9.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0))); + this.xrTableCell7.Name = "xrTableCell7"; + this.xrTableCell7.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F); + this.xrTableCell7.StylePriority.UseBorderColor = false; + this.xrTableCell7.StylePriority.UseBorders = false; + this.xrTableCell7.StylePriority.UseFont = false; + this.xrTableCell7.StylePriority.UsePadding = false; + this.xrTableCell7.Weight = 3D; + // + // bindingSource1 + // + this.bindingSource1.DataSource = typeof(BeWo.Report.ReportObjects.Settlement2RO); + // + // GroupFooter1 + // + this.GroupFooter1.Controls.AddRange(new DevExpress.XtraReports.UI.XRControl[] { + this.xrTable5}); + this.GroupFooter1.Font = new System.Drawing.Font("Verdana", 9.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0))); + this.GroupFooter1.HeightF = 111F; + this.GroupFooter1.Name = "GroupFooter1"; + this.GroupFooter1.StylePriority.UseFont = false; + // + // xrTable5 + // + this.xrTable5.BorderColor = System.Drawing.SystemColors.ControlLight; + this.xrTable5.Font = new System.Drawing.Font("Microsoft Sans Serif", 11.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0))); + this.xrTable5.LocationFloat = new DevExpress.Utils.PointFloat(0F, 0F); + this.xrTable5.Name = "xrTable5"; + this.xrTable5.Rows.AddRange(new DevExpress.XtraReports.UI.XRTableRow[] { + this.xrTableRow31, + this.xrTableRow32, + this.xrTableRow34, + this.xrTableRow35, + this.xrTableRow36, + this.xrTableRow37}); + this.xrTable5.SizeF = new System.Drawing.SizeF(650F, 111F); + this.xrTable5.StylePriority.UseBorderColor = false; + this.xrTable5.StylePriority.UseFont = false; + // + // xrTableRow31 + // + this.xrTableRow31.Cells.AddRange(new DevExpress.XtraReports.UI.XRTableCell[] { + this.xrTableCell49, + this.xrTableCell50}); + this.xrTableRow31.Name = "xrTableRow31"; + this.xrTableRow31.Weight = 0.085D; + // + // xrTableCell49 + // + this.xrTableCell49.Borders = ((DevExpress.XtraPrinting.BorderSide)((DevExpress.XtraPrinting.BorderSide.Left | DevExpress.XtraPrinting.BorderSide.Bottom))); + this.xrTableCell49.Name = "xrTableCell49"; + this.xrTableCell49.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F); + this.xrTableCell49.StylePriority.UseBorders = false; + this.xrTableCell49.StylePriority.UseFont = false; + this.xrTableCell49.StylePriority.UsePadding = false; + this.xrTableCell49.Text = "Gesamtforderung:"; + this.xrTableCell49.Weight = 0.836025672325721D; + // + // xrTableCell50 + // + this.xrTableCell50.Borders = ((DevExpress.XtraPrinting.BorderSide)(((DevExpress.XtraPrinting.BorderSide.Left | DevExpress.XtraPrinting.BorderSide.Right) + | DevExpress.XtraPrinting.BorderSide.Bottom))); + this.xrTableCell50.DataBindings.AddRange(new DevExpress.XtraReports.UI.XRBinding[] { + new DevExpress.XtraReports.UI.XRBinding("Text", null, "AmountBillableTotal", "{0:c}")}); + this.xrTableCell50.Name = "xrTableCell50"; + this.xrTableCell50.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F); + this.xrTableCell50.StylePriority.UseBorders = false; + this.xrTableCell50.StylePriority.UseFont = false; + this.xrTableCell50.StylePriority.UsePadding = false; + this.xrTableCell50.StylePriority.UseTextAlignment = false; + this.xrTableCell50.Text = "xrTableCell9"; + this.xrTableCell50.TextAlignment = DevExpress.XtraPrinting.TextAlignment.TopRight; + this.xrTableCell50.Weight = 0.16397432767427886D; + // + // xrTableRow32 + // + this.xrTableRow32.Cells.AddRange(new DevExpress.XtraReports.UI.XRTableCell[] { + this.xrTableCell51}); + this.xrTableRow32.Name = "xrTableRow32"; + this.xrTableRow32.Weight = 0.085D; + // + // xrTableCell51 + // + this.xrTableCell51.Borders = ((DevExpress.XtraPrinting.BorderSide)(((DevExpress.XtraPrinting.BorderSide.Left | DevExpress.XtraPrinting.BorderSide.Right) + | DevExpress.XtraPrinting.BorderSide.Bottom))); + this.xrTableCell51.Name = "xrTableCell51"; + this.xrTableCell51.StylePriority.UseBorders = false; + this.xrTableCell51.Weight = 1D; + // + // xrTableRow34 + // + this.xrTableRow34.Cells.AddRange(new DevExpress.XtraReports.UI.XRTableCell[] { + this.xrTableCell54, + this.xrTableCell55}); + this.xrTableRow34.Name = "xrTableRow34"; + this.xrTableRow34.Weight = 0.085D; + // + // xrTableCell54 + // + this.xrTableCell54.BorderColor = System.Drawing.SystemColors.ControlLight; + this.xrTableCell54.Borders = ((DevExpress.XtraPrinting.BorderSide)((DevExpress.XtraPrinting.BorderSide.Left | DevExpress.XtraPrinting.BorderSide.Bottom))); + this.xrTableCell54.Name = "xrTableCell54"; + this.xrTableCell54.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F); + this.xrTableCell54.StylePriority.UseBorderColor = false; + this.xrTableCell54.StylePriority.UseBorders = false; + this.xrTableCell54.StylePriority.UseFont = false; + this.xrTableCell54.Text = "abzüglich der geleisteten Abschlagszahlung:"; + this.xrTableCell54.Weight = 0.83602576622596159D; + // + // xrTableCell55 + // + this.xrTableCell55.BorderColor = System.Drawing.SystemColors.ControlLight; + this.xrTableCell55.Borders = ((DevExpress.XtraPrinting.BorderSide)(((DevExpress.XtraPrinting.BorderSide.Left | DevExpress.XtraPrinting.BorderSide.Right) + | DevExpress.XtraPrinting.BorderSide.Bottom))); + this.xrTableCell55.DataBindings.AddRange(new DevExpress.XtraReports.UI.XRBinding[] { + new DevExpress.XtraReports.UI.XRBinding("Text", null, "AmountAdvancedPayments", "{0:c}")}); + this.xrTableCell55.Name = "xrTableCell55"; + this.xrTableCell55.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F); + this.xrTableCell55.StylePriority.UseBorderColor = false; + this.xrTableCell55.StylePriority.UseBorders = false; + this.xrTableCell55.StylePriority.UseFont = false; + this.xrTableCell55.StylePriority.UseTextAlignment = false; + this.xrTableCell55.Text = "xrTableCell10"; + this.xrTableCell55.TextAlignment = DevExpress.XtraPrinting.TextAlignment.TopRight; + this.xrTableCell55.Weight = 0.16397423377403847D; + // + // xrTableRow35 + // + this.xrTableRow35.Cells.AddRange(new DevExpress.XtraReports.UI.XRTableCell[] { + this.xrTableCell56, + this.xrTableCell57}); + this.xrTableRow35.Name = "xrTableRow35"; + this.xrTableRow35.Weight = 0.085D; + // + // xrTableCell56 + // + this.xrTableCell56.Borders = ((DevExpress.XtraPrinting.BorderSide)((DevExpress.XtraPrinting.BorderSide.Left | DevExpress.XtraPrinting.BorderSide.Bottom))); + this.xrTableCell56.Name = "xrTableCell56"; + this.xrTableCell56.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F); + this.xrTableCell56.StylePriority.UseBorders = false; + this.xrTableCell56.StylePriority.UsePadding = false; + this.xrTableCell56.Text = "abzüglich Eigenanteil:"; + this.xrTableCell56.Weight = 0.83602586012620206D; + // + // xrTableCell57 + // + this.xrTableCell57.Borders = ((DevExpress.XtraPrinting.BorderSide)(((DevExpress.XtraPrinting.BorderSide.Left | DevExpress.XtraPrinting.BorderSide.Right) + | DevExpress.XtraPrinting.BorderSide.Bottom))); + this.xrTableCell57.DataBindings.AddRange(new DevExpress.XtraReports.UI.XRBinding[] { + new DevExpress.XtraReports.UI.XRBinding("Text", null, "Eigenbeteiligung", "{0:c}")}); + this.xrTableCell57.Name = "xrTableCell57"; + this.xrTableCell57.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F); + this.xrTableCell57.StylePriority.UseBorders = false; + this.xrTableCell57.StylePriority.UsePadding = false; + this.xrTableCell57.StylePriority.UseTextAlignment = false; + this.xrTableCell57.Text = "xrTableCell15"; + this.xrTableCell57.TextAlignment = DevExpress.XtraPrinting.TextAlignment.TopRight; + this.xrTableCell57.Weight = 0.16397413987379808D; + // + // xrTableRow36 + // + this.xrTableRow36.Cells.AddRange(new DevExpress.XtraReports.UI.XRTableCell[] { + this.xrTableCell58}); + this.xrTableRow36.Name = "xrTableRow36"; + this.xrTableRow36.Weight = 0.085D; + // + // xrTableCell58 + // + this.xrTableCell58.BorderColor = System.Drawing.SystemColors.ControlLight; + this.xrTableCell58.Borders = ((DevExpress.XtraPrinting.BorderSide)(((DevExpress.XtraPrinting.BorderSide.Left | DevExpress.XtraPrinting.BorderSide.Right) + | DevExpress.XtraPrinting.BorderSide.Bottom))); + this.xrTableCell58.Name = "xrTableCell58"; + this.xrTableCell58.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F); + this.xrTableCell58.StylePriority.UseBorderColor = false; + this.xrTableCell58.StylePriority.UseBorders = false; + this.xrTableCell58.Weight = 1D; + // + // xrTableRow37 + // + this.xrTableRow37.Cells.AddRange(new DevExpress.XtraReports.UI.XRTableCell[] { + this.xrTableCell59, + this.xrTableCell60}); + this.xrTableRow37.Name = "xrTableRow37"; + this.xrTableRow37.Weight = 0.13D; + // + // xrTableCell59 + // + this.xrTableCell59.BorderColor = System.Drawing.SystemColors.ControlLight; + this.xrTableCell59.Borders = ((DevExpress.XtraPrinting.BorderSide)((DevExpress.XtraPrinting.BorderSide.Left | DevExpress.XtraPrinting.BorderSide.Bottom))); + this.xrTableCell59.Name = "xrTableCell59"; + this.xrTableCell59.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F); + this.xrTableCell59.StylePriority.UseBorderColor = false; + this.xrTableCell59.StylePriority.UseBorders = false; + this.xrTableCell59.StylePriority.UseFont = false; + this.xrTableCell59.Text = "Restforderung:"; + this.xrTableCell59.Weight = 0.83602567232572123D; + // + // xrTableCell60 + // + this.xrTableCell60.Borders = ((DevExpress.XtraPrinting.BorderSide)(((DevExpress.XtraPrinting.BorderSide.Left | DevExpress.XtraPrinting.BorderSide.Right) + | DevExpress.XtraPrinting.BorderSide.Bottom))); + this.xrTableCell60.DataBindings.AddRange(new DevExpress.XtraReports.UI.XRBinding[] { + new DevExpress.XtraReports.UI.XRBinding("Text", null, "Claim", "{0:c}")}); + this.xrTableCell60.Font = new System.Drawing.Font("Microsoft Sans Serif", 11.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0))); + this.xrTableCell60.Name = "xrTableCell60"; + this.xrTableCell60.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F); + this.xrTableCell60.StylePriority.UseBorderColor = false; + this.xrTableCell60.StylePriority.UseBorders = false; + this.xrTableCell60.StylePriority.UseFont = false; + this.xrTableCell60.StylePriority.UseTextAlignment = false; + this.xrTableCell60.Text = "xrTableCell17"; + this.xrTableCell60.TextAlignment = DevExpress.XtraPrinting.TextAlignment.TopRight; + this.xrTableCell60.Weight = 0.16397432767427886D; + // + // Spitzabrechnung + // + this.Bands.AddRange(new DevExpress.XtraReports.UI.Band[] { + this.Detail, + this.ReportHeader, + this.ReportFooter, + this.topMarginBand1, + this.bottomMarginBand1, + this.GroupHeader1, + this.DetailReport, + this.GroupFooter1}); + this.CalculatedFields.AddRange(new DevExpress.XtraReports.UI.CalculatedField[] { + this.fieldApprovedFLSWithFactor}); + this.DataSource = this.bindingSource1; + this.ExportOptions.PrintPreview.DefaultFileName = "Spitzabrechnung"; + this.FormattingRuleSheet.AddRange(new DevExpress.XtraReports.UI.FormattingRule[] { + this.ruleRateFactorNull}); + this.Margins = new System.Drawing.Printing.Margins(75, 74, 100, 82); + this.PageHeight = 1169; + this.PageWidth = 827; + this.PaperKind = System.Drawing.Printing.PaperKind.A4; + this.Version = "17.1"; + ((System.ComponentModel.ISupportInitialize)(this.xrTable1)).EndInit(); + ((System.ComponentModel.ISupportInitialize)(this.xrTable2)).EndInit(); + ((System.ComponentModel.ISupportInitialize)(this.xrTable3)).EndInit(); + ((System.ComponentModel.ISupportInitialize)(this.xrTable4)).EndInit(); + ((System.ComponentModel.ISupportInitialize)(this.xrTable6)).EndInit(); + ((System.ComponentModel.ISupportInitialize)(this.bindingSource1)).EndInit(); + ((System.ComponentModel.ISupportInitialize)(this.xrTable5)).EndInit(); + ((System.ComponentModel.ISupportInitialize)(this)).EndInit(); + + } + + #endregion + + private DevExpress.XtraReports.UI.DetailBand Detail; + private System.Windows.Forms.BindingSource bindingSource1; + private DevExpress.XtraReports.UI.ReportHeaderBand ReportHeader; + private DevExpress.XtraReports.UI.XRLabel xrLabel6; + private DevExpress.XtraReports.UI.XRLabel xrLabel5; + private DevExpress.XtraReports.UI.XRLabel xrLabel4; + private DevExpress.XtraReports.UI.XRLabel xrLabel3; + private DevExpress.XtraReports.UI.XRLabel xrLabel2; + private DevExpress.XtraReports.UI.XRTable xrTable2; + 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 xrTableCell8; + private DevExpress.XtraReports.UI.XRTableRow xrTableRow1; + private DevExpress.XtraReports.UI.XRTableCell xrTableCell1; + private DevExpress.XtraReports.UI.XRTableRow xrTableRow6; + private DevExpress.XtraReports.UI.XRTableCell xrTableCell2; + private DevExpress.XtraReports.UI.XRTableRow xrTableRow8; + private DevExpress.XtraReports.UI.XRTableCell xrTableCell5; + private DevExpress.XtraReports.UI.XRLabel RecipientPostCodeAndTown; + private DevExpress.XtraReports.UI.XRLabel xrLabel_RecipientStreet; + private DevExpress.XtraReports.UI.XRLabel xrLabel_RecipientDivision; + private DevExpress.XtraReports.UI.XRLabel xrLabel_RecipientContactPerson; + private DevExpress.XtraReports.UI.XRLabel xrLabel1; + private DevExpress.XtraReports.UI.ReportFooterBand ReportFooter; + private DevExpress.XtraReports.UI.XRLabel lblNotice; + private DevExpress.XtraReports.UI.XRLabel xrLabel12; + private DevExpress.XtraReports.UI.XRLabel xrLabel11; + private DevExpress.XtraReports.UI.XRTable xrTable1; + private DevExpress.XtraReports.UI.XRTableRow rowErbrachteLeistung; + private DevExpress.XtraReports.UI.XRTableCell xrTableCell22; + private DevExpress.XtraReports.UI.XRTable xrTable3; + private DevExpress.XtraReports.UI.XRTableRow xrTableRow20; + private DevExpress.XtraReports.UI.XRTableCell xrTableCell16; + private DevExpress.XtraReports.UI.XRTableRow xrTableRow21; + private DevExpress.XtraReports.UI.XRTableCell xrTableCell18; + private DevExpress.XtraReports.UI.XRTableRow xrTableRow22; + private DevExpress.XtraReports.UI.XRTableCell xrTableCell29; + private DevExpress.XtraReports.UI.XRTableRow xrTableRow23; + private DevExpress.XtraReports.UI.XRTableCell xrTableCell30; + private DevExpress.XtraReports.UI.XRTableRow xrTableRow24; + private DevExpress.XtraReports.UI.XRTableCell xrTableCell31; + private DevExpress.XtraReports.UI.XRLabel xrLabel10; + private DevExpress.XtraReports.UI.FormattingRule ruleRateFactorNull; + private DevExpress.XtraReports.UI.TopMarginBand topMarginBand1; + private DevExpress.XtraReports.UI.BottomMarginBand bottomMarginBand1; + private DevExpress.XtraReports.UI.XRLabel xrLabel8; + private DevExpress.XtraReports.UI.GroupHeaderBand GroupHeader1; + private DevExpress.XtraReports.UI.CalculatedField fieldApprovedFLSWithFactor; + private DevExpress.XtraReports.UI.DetailReportBand DetailReport; + private DevExpress.XtraReports.UI.DetailBand Detail1; + private DevExpress.XtraReports.UI.XRTable xrTable4; + private DevExpress.XtraReports.UI.XRTableRow xrTableRow33; + private DevExpress.XtraReports.UI.XRTableCell xrTableCell52; + private DevExpress.XtraReports.UI.XRTableCell xrTableCell53; + private DevExpress.XtraReports.UI.GroupFooterBand GroupFooter1; + private DevExpress.XtraReports.UI.XRTable xrTable5; + private DevExpress.XtraReports.UI.XRTableRow xrTableRow31; + private DevExpress.XtraReports.UI.XRTableCell xrTableCell49; + private DevExpress.XtraReports.UI.XRTableCell xrTableCell50; + private DevExpress.XtraReports.UI.XRTableRow xrTableRow32; + private DevExpress.XtraReports.UI.XRTableCell xrTableCell51; + private DevExpress.XtraReports.UI.XRTableRow xrTableRow34; + private DevExpress.XtraReports.UI.XRTableCell xrTableCell54; + private DevExpress.XtraReports.UI.XRTableCell xrTableCell55; + private DevExpress.XtraReports.UI.XRTableRow xrTableRow35; + private DevExpress.XtraReports.UI.XRTableCell xrTableCell56; + private DevExpress.XtraReports.UI.XRTableCell xrTableCell57; + private DevExpress.XtraReports.UI.XRTableRow xrTableRow36; + private DevExpress.XtraReports.UI.XRTableCell xrTableCell58; + private DevExpress.XtraReports.UI.XRTableRow xrTableRow37; + private DevExpress.XtraReports.UI.XRTableCell xrTableCell59; + private DevExpress.XtraReports.UI.XRTableCell xrTableCell60; + private DevExpress.XtraReports.UI.XRTableRow xrTableRow7; + private DevExpress.XtraReports.UI.XRTableCell xrTableCell3; + private DevExpress.XtraReports.UI.XRTableRow xrTableRow9; + private DevExpress.XtraReports.UI.XRTableCell xrTableCell6; + private DevExpress.XtraReports.UI.GroupHeaderBand GroupHeader2; + private DevExpress.XtraReports.UI.GroupFooterBand Zwischensumme; + private DevExpress.XtraReports.UI.XRTable xrTable6; + private DevExpress.XtraReports.UI.XRTableRow xrTableRow12; + private DevExpress.XtraReports.UI.XRTableCell xrTableCell9; + private DevExpress.XtraReports.UI.XRTableCell xrTableCell10; + private DevExpress.XtraReports.UI.XRTableRow xrTableRow10; + private DevExpress.XtraReports.UI.XRTableCell xrTableCell7; + private DevExpress.XtraReports.UI.XRPictureBox xrPictureBox1; + private DevExpress.XtraReports.UI.XRLabel xrLabel7; + private DevExpress.XtraReports.UI.XRLabel xrLabel9; + } +} \ No newline at end of file diff --git a/ReportImp/BbcTerwort/SettlementReport2.cs b/ReportImp/BbcTerwort/SettlementReport2.cs new file mode 100644 index 000000000..31a3eb073 --- /dev/null +++ b/ReportImp/BbcTerwort/SettlementReport2.cs @@ -0,0 +1,48 @@ +using System; +using DevExpress.XtraReports.UI; +using BeWo.Report.ReportObjects; +using BS.Shared.Extensions; + +namespace BeWo.Report.DefaultReports +{ + public partial class Spitzabrechnung : DevExpress.XtraReports.UI.XtraReport, IBeWoReport + { + public Spitzabrechnung() + { + InitializeComponent(); + } + + public void SetReportDataSource(Settlement2RO pRO) + { + if (String.IsNullOrEmpty(pRO.Notice)) + { + lblNotice.Visible = false; + } + + decimal rateFactor = 1; + + foreach (var ii in pRO.InvoiceItems) + { + if (ii.RateFactor.HasValue) + { + rateFactor = (100 + ii.RateFactor.Value) / 100; + } + + if (!pRO.FehlkontakteString.IsNullOrEmpty() && ii.RateFactor == 0) + { + Zwischensumme.Visible = true; + ii.AbrechnungsText = ii.AbrechnungsText.Replace("FLS", "Std."); + ii.ItemDescription = "Fehlkontakte"; + } + else if (ii.ItemDescription.IsNullOrEmpty()) + { + ii.ItemDescription = "Fachleistungsstunden"; + } + } + pRO.RateFactor = (double)rateFactor; + + this.bindingSource1.DataSource = pRO; + } + + } +} diff --git a/ReportImp/BbcTerwort/SettlementReport2.resx b/ReportImp/BbcTerwort/SettlementReport2.resx new file mode 100644 index 000000000..0cb700716 --- /dev/null +++ b/ReportImp/BbcTerwort/SettlementReport2.resx @@ -0,0 +1,336 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + 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 + + + + + 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 + + + + anbei sende ich Ihnen die unterschriebenen Nachweise über die im Rahmen des Betreuten Wohnens für [Salutation2] [CustomerFirstName] [CustomerLastName] erbrachten Leistungen zu. Nach unserer Berechnung ergeben sich für den Betreuungszeitraum [AccountingPeriod] hieraus: + + + + B-B-C Terwort GmbH Geschäftsführung Tel: 02251/ 7772080 Kreissparkasse Euskirchen +Kölner Straße 30 Gabriele Terwort Fax: 02251/ 7772081 IBAN: DE52 3825 0110 0001 5908 50 +53879 Euskirchen Michaela Ritzleben info.bbct@web.de BiC: WELADED1EUS +Amtsgericht Bonn: Betriebsnummer: Finanzamt Euskirchen: +HRB 23171 93178516 209/ 5702/ 2765 + + + 17, 17 + + \ No newline at end of file