diff --git a/ReportImp/Wabe/Briefpapier.png b/ReportImp/Wabe/Briefpapier.png new file mode 100644 index 000000000..cdd031167 Binary files /dev/null and b/ReportImp/Wabe/Briefpapier.png differ diff --git a/ReportImp/Wabe/CustomReportCreator.cs b/ReportImp/Wabe/CustomReportCreator.cs index dab8f6a9a..5f93fdafb 100644 --- a/ReportImp/Wabe/CustomReportCreator.cs +++ b/ReportImp/Wabe/CustomReportCreator.cs @@ -59,12 +59,21 @@ namespace Wabe ((XtraReport)singleReport).CreateDocument(); invoiceReport = singleReport as XtraReport; - //var anhang = new SammelrechnungBezirkDetail(); - //anhang.SetReportDataSource(ro); - //anhang.CreateDocument(); - //((XtraReport)singleReport).Pages.AddRange(((XtraReport)anhang).Pages); - //invoiceReport = singleReport as XtraReport; + var anhang = new Sammelrechnung(); + anhang.SetReportDataSource(ro); + anhang.CreateDocument(); + ((XtraReport)singleReport).Pages.AddRange(((XtraReport)anhang).Pages); + invoiceReport = singleReport as XtraReport; } + else + { + + var ro = ServiceInvoiceRO.Create(iDC); + singleReport.SetReportDataSource(ro); + ((XtraReport)singleReport).CreateDocument(); + invoiceReport = singleReport as XtraReport; + } + if (allReports == null) allReports = invoiceReport; } diff --git a/ReportImp/Wabe/InvoiceCustomerReport.Designer.cs b/ReportImp/Wabe/InvoiceCustomerReport.Designer.cs index 474a28961..a081e4751 100644 --- a/ReportImp/Wabe/InvoiceCustomerReport.Designer.cs +++ b/ReportImp/Wabe/InvoiceCustomerReport.Designer.cs @@ -753,7 +753,7 @@ namespace BeWo.Report.DefaultReports // // topMarginBand1 // - this.topMarginBand1.HeightF = 234.375F; + this.topMarginBand1.HeightF = 191.6667F; this.topMarginBand1.Name = "topMarginBand1"; // // bottomMarginBand1 @@ -796,7 +796,7 @@ namespace BeWo.Report.DefaultReports this.ExportOptions.PrintPreview.DefaultFileName = "Spitzabrechnung"; this.FormattingRuleSheet.AddRange(new DevExpress.XtraReports.UI.FormattingRule[] { this.ruleRateFactorNull}); - this.Margins = new DevExpress.Drawing.DXMargins(75F, 34F, 234.375F, 27.70844F); + this.Margins = new DevExpress.Drawing.DXMargins(82.29165F, 34F, 191.6667F, 27.70844F); this.PageHeight = 1169; this.PageWidth = 827; this.PaperKind = DevExpress.Drawing.Printing.DXPaperKind.A4; diff --git a/ReportImp/Wabe/Invoicing/AbwInvoiceCreation.cs b/ReportImp/Wabe/Invoicing/AbwInvoiceCreation.cs deleted file mode 100644 index 95201ebe1..000000000 --- a/ReportImp/Wabe/Invoicing/AbwInvoiceCreation.cs +++ /dev/null @@ -1,156 +0,0 @@ -using System; -using System.Collections.Generic; -using System.Linq; -using BeWo.Data.Access; -using BeWo.Data.Entities; -using BeWo.Service.DCEntityMapper; -using BeWo.Service.Invoicing; -using BS.Shared.Core; -using BS.Shared.DataContracts; -using BS.Shared.DataContracts.Compact; -using BS.Shared.Extensions; -using BS.Shared.Services; - - -namespace Wabe.Invoicing -{ - public class AbwInvoiceCreation : InvoiceCreation - { - private const decimal TAGESPAUSCHALE = 129.55m; - private const decimal FREIHALTEGEBUEHR = 103.64m; - - private DateTime? accountingPeriodStart = null; - private DateTime? accountingPeriodEnd = null; - - public override void SetInvoiceId(ServiceInvoice invoice) - { - invoice.InvoiceBase.InvoiceId = "RechnungABW"; - invoice.InvoiceBase.InvoiceTypeText = "Rechnung ABW"; - } - - public override List GenerateServiceInvoices(long costBearerOid, - DateTimeSpan invoicePeriod, - Dictionary> supportConcepts2ServiceRecords) - { - var costBearer = DAOFactory.GenericDAO.LoadByID(costBearerOid); - var invoiceList = new List(); - ServiceInvoice invoice; - - invoice = CreateCollectiveBilling2(costBearer, invoicePeriod, supportConcepts2ServiceRecords); - if (invoice != null) - invoiceList.Add(invoice); - - var result = invoiceList.Select(item => MapperFactory.ServiceInvoiceDC_ServiceInvoice.MapToNewDC(item)).ToList(); - return result.Count > 1 ? result.OrderBy(i => i.InvoiceBase.CustomerLastName).ToList() : result; - } - - private ServiceInvoice CreateCollectiveBilling2(CostBearer costBearer, DateTimeSpan invoicePeriod, Dictionary> supportConcepts2ServiceRecords) - { - var invoice = new ServiceInvoice(); - var newDict = new Dictionary>(); - - foreach (var sc2sr in supportConcepts2ServiceRecords) - { - if (sc2sr.Key.IsApproved) - newDict.Add(sc2sr.Key, sc2sr.Value); - } - - SetRecipientInformation(invoice, costBearer); - SetSenderInformation(invoice); - SetInvoiceBaseData(0, invoice, costBearer, invoicePeriod, newDict.Keys.ToList()); - SetCollectiveBillingBaseData(0, invoice, costBearer, invoicePeriod, newDict); - SetCollectiveBillingServiceInvoicePeriods(invoice, invoicePeriod, newDict); - SetServiceInvoicePeriodAmounts(invoice); - - SetAmountAdvancePayments(invoice); - - return invoice; - } - - - public override void SetServiceInvoicePeriods(ServiceInvoice invoice, CostBearer2SupportConcept costBearer2SupportConcept, DateTimeSpan invoicePeriod, List serviceRecords) - { - base.SetServiceInvoicePeriods(invoice, costBearer2SupportConcept, invoicePeriod, serviceRecords); - - invoice.ServiceInvoicePeriodList = invoice.ServiceInvoicePeriodList.OrderBy(sip => sip.Customer.Person.LastNameFirstName).ToList(); - } - - 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 SetInvoiceItems(ServiceInvoice invoice, - ServiceInvoicePeriod serviceInvoicePeriod, - SupportConceptApprovalPeriodDC supportConceptApprovalPeriod, - CostBearer2SupportConcept cb2sc, - DateTimeSpan invoicePeriod, - List serviceRecords) - { - var itemList = CreateInvoiceItems(null, invoicePeriod, serviceInvoicePeriod.SupportConceptApprovalPeriod, null); - serviceInvoicePeriod.InvoiceItemList.AddRange(itemList); - } - - public override void CheckMaxApprovedAmount(ServiceInvoice invoice, ServiceInvoicePeriod sip, SupportConceptApprovalPeriodDC scap, CostBearer2SupportConcept costBearer2SupportConcept, DateTimeSpan invoicePeriod, List serviceRecords) - { - //Mach nix - } - - public override IList CreateInvoiceItems(List serviceRecordsInPeriod, DateTimeSpan invoicePeriod, SupportConceptApprovalPeriod scap, - Calculations calc) - { - - IList ergebnis = new List(); - - if (scap != null && scap.ServiceCategory != null && scap.ServiceCategory.Name.Contains("HEG")) - { - DateTime start; - DateTime ende; - if (scap.StartDate <= invoicePeriod.StartDate) - start = invoicePeriod.StartDate; - else - start = (DateTime)scap.StartDate; - if (scap.EndDate >= invoicePeriod.EndDate) - ende = invoicePeriod.EndDate; - else - ende = (DateTime)scap.EndDate; - - var tage = (int)ende.Subtract(start).TotalDays + 1; - - decimal pauschale = 0; - - var crList = MapperFactory.CostRatePeriodDC_CostRatePeriod.MapToNewDCs(scap.ServiceCategory.CostRatePeriods); - - var cr = crList.GetCostRatePeriodForDate(BS.Shared.CostRatePeriodType.AmountOfMoney, start); - if (cr != null && cr.CostRateValue.HasValue) - { - pauschale = cr.CostRateValue.Value; - } - - - var ii = new InvoiceItem(); - ii.UnitCount = tage; - ii.AmountPerUnit = pauschale; - ii.AmountTotal = ii.UnitCount * ii.AmountPerUnit; - ii.GrossAmountTotal = ii.AmountTotal; - - ii.MaxApprovedAmount = null; - ii.ItemDescription = scap.ServiceCategory.Name.Replace("Ambulant Betreutes Einzelwohnen", "").Trim(); - ii.UnitDescription = scap.ServiceCategory.Name; - ii.ItemPeriodStart = start; - - ii.SupportConceptApprovalPeriodOid = scap.Oid; - - ergebnis.Add(ii); - } - - return ergebnis; - } - } -} diff --git a/ReportImp/Wabe/Invoicing/StationaerInvoiceCreation.cs b/ReportImp/Wabe/Invoicing/CollectiveInvoiceCreation.cs similarity index 99% rename from ReportImp/Wabe/Invoicing/StationaerInvoiceCreation.cs rename to ReportImp/Wabe/Invoicing/CollectiveInvoiceCreation.cs index 7f5729ecb..300e23b09 100644 --- a/ReportImp/Wabe/Invoicing/StationaerInvoiceCreation.cs +++ b/ReportImp/Wabe/Invoicing/CollectiveInvoiceCreation.cs @@ -16,7 +16,7 @@ using BS.Shared.Services; namespace Wabe.Invoicing { - public class StationaerInvoiceCreation : InvoiceCreation + public class CollectiveInvoiceCreation : InvoiceCreation { private DateTime? accountingPeriodStart = null; private DateTime? accountingPeriodEnd = null; diff --git a/ReportImp/Wabe/Invoicing/CustomInvoiceFactory.cs b/ReportImp/Wabe/Invoicing/CustomInvoiceFactory.cs index a7dd9765a..38ca19ada 100644 --- a/ReportImp/Wabe/Invoicing/CustomInvoiceFactory.cs +++ b/ReportImp/Wabe/Invoicing/CustomInvoiceFactory.cs @@ -20,12 +20,12 @@ namespace Wabe.Invoicing { if (sr.CostBearer != null && sr.CostBearer.Name.Contains("Bezirk Mittelfranken")) { - return new StationaerInvoiceCreation(); + return new CollectiveInvoiceCreation(); } } } - return new AbwInvoiceCreation(); + return new DefaultInvoiceCreation(); } } } diff --git a/ReportImp/Wabe/Invoicing/DefaultInvoiceCreation.cs b/ReportImp/Wabe/Invoicing/DefaultInvoiceCreation.cs new file mode 100644 index 000000000..9123a758f --- /dev/null +++ b/ReportImp/Wabe/Invoicing/DefaultInvoiceCreation.cs @@ -0,0 +1,140 @@ +using System; +using System.Collections.Generic; +using System.Linq; +using BeWo.Data.Access; +using BeWo.Data.Entities; +using BeWo.Service.DCEntityMapper; +using BeWo.Service.Invoicing; +using BS.Shared.Core; +using BS.Shared.DataContracts; +using BS.Shared.DataContracts.Compact; +using BS.Shared.Extensions; +using BS.Shared.Services; + + +namespace Wabe.Invoicing +{ + public class DefaultInvoiceCreation : InvoiceCreation + { + private const decimal TAGESPAUSCHALE = 129.55m; + private const decimal FREIHALTEGEBUEHR = 103.64m; + + 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 SetInvoiceItems(ServiceInvoice invoice, + ServiceInvoicePeriod serviceInvoicePeriod, + SupportConceptApprovalPeriodDC supportConceptApprovalPeriod, + CostBearer2SupportConcept cb2sc, + DateTimeSpan invoicePeriod, + List serviceRecords) + { + var itemList = CreateInvoiceItems(null, invoicePeriod, serviceInvoicePeriod.SupportConceptApprovalPeriod, null); + serviceInvoicePeriod.InvoiceItemList.AddRange(itemList); + } + + public override void CheckMaxApprovedAmount(ServiceInvoice invoice, ServiceInvoicePeriod sip, SupportConceptApprovalPeriodDC scap, CostBearer2SupportConcept costBearer2SupportConcept, DateTimeSpan invoicePeriod, List serviceRecords) + { + //Mach nix + } + + public override IList CreateInvoiceItems(List serviceRecordsInPeriod, DateTimeSpan invoicePeriod, SupportConceptApprovalPeriod scap, + Calculations calc) + { + + IList ergebnis = new List(); + if (scap != null) + { + DateTime start; + DateTime ende; + if (scap.StartDate <= invoicePeriod.StartDate) + start = invoicePeriod.StartDate; + else + start = (DateTime)scap.StartDate; + if (scap.EndDate >= invoicePeriod.EndDate) + ende = invoicePeriod.EndDate; + else + ende = (DateTime)scap.EndDate; + if (scap.ApprovedFixedAmount.HasValue && scap.ApprovedFixedAmountInterval == BS.Shared.SupportConceptApprovalInterval.Monthly) + { + var ii = new InvoiceItem(); + ii.UnitCount = 1; + ii.AmountPerUnit = scap.ApprovedFixedAmount.Value; + ii.AmountTotal = ii.AmountPerUnit; + ii.GrossAmountTotal = ii.AmountTotal; + + ii.MaxApprovedAmount = null; + if (scap.ServiceCategory != null) + { + ii.ItemDescription = scap.ServiceCategory.Name; + if (scap.ServiceCategory != null && scap.ServiceCategory.Name.Contains("HEG")) + { + ii.ItemDescription = scap.ServiceCategory.Name.Replace("Ambulant Betreutes Einzelwohnen", "").Trim(); + } + } + ii.UnitDescription = scap.ServiceCategory.Name; + ii.ItemPeriodStart = start; + ii.SupportConceptApprovalPeriodOid = scap.Oid; + + ergebnis.Add(ii); + } + else if (scap.ServiceCategory != null && scap.ServiceCategory.Name.Contains("HEG")) + { + var tage = (int)ende.Subtract(start).TotalDays + 1; + decimal pauschale = 0; + var crList = MapperFactory.CostRatePeriodDC_CostRatePeriod.MapToNewDCs(scap.ServiceCategory.CostRatePeriods); + + var cr = crList.GetCostRatePeriodForDate(BS.Shared.CostRatePeriodType.AmountOfMoney, start); + if (cr != null && cr.CostRateValue.HasValue) + { + pauschale = cr.CostRateValue.Value; + } + + var ii = new InvoiceItem(); + ii.UnitCount = tage; + ii.AmountPerUnit = pauschale; + ii.AmountTotal = ii.UnitCount * ii.AmountPerUnit; + ii.GrossAmountTotal = ii.AmountTotal; + + ii.MaxApprovedAmount = null; + ii.ItemDescription = scap.ServiceCategory.Name.Replace("Ambulant Betreutes Einzelwohnen", "").Trim(); + ii.UnitDescription = scap.ServiceCategory.Name; + ii.ItemPeriodStart = start; + + ii.SupportConceptApprovalPeriodOid = scap.Oid; + + ergebnis.Add(ii); + } + } + + return ergebnis; + } + + public override void SetServiceInvoicePeriodAmounts(ServiceInvoice invoice) + { + foreach (ServiceInvoicePeriod iPeriod in invoice.ServiceInvoicePeriodList) + { + iPeriod.Claim = 0; + + foreach (InvoiceItem item in iPeriod.InvoiceItemList) + { + if (item.GrossAmountTotal.HasValue) + iPeriod.Claim += item.GrossAmountTotal; + } + + iPeriod.Claim = Math.Round(iPeriod.Claim.Value, 2, MidpointRounding.AwayFromZero); + } + } + } +} diff --git a/ReportImp/Wabe/RechnungBezirk.Designer.cs b/ReportImp/Wabe/RechnungBezirk.Designer.cs index a16f34403..70f1f6179 100644 --- a/ReportImp/Wabe/RechnungBezirk.Designer.cs +++ b/ReportImp/Wabe/RechnungBezirk.Designer.cs @@ -29,46 +29,60 @@ namespace Wabe private void InitializeComponent() { this.components = new System.ComponentModel.Container(); + System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(Sammelrechnung)); + DevExpress.XtraReports.UI.XRWatermark xrWatermark1 = new DevExpress.XtraReports.UI.XRWatermark(); 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.GroupFooter = new DevExpress.XtraReports.UI.GroupFooterBand(); - this.xrLabel10 = new DevExpress.XtraReports.UI.XRLabel(); - this.xrLabel1 = new DevExpress.XtraReports.UI.XRLabel(); this.ruleNoticeNull = new DevExpress.XtraReports.UI.FormattingRule(); this.Page1 = new DevExpress.XtraReports.UI.GroupHeaderBand(); - this.xrLabel6 = new DevExpress.XtraReports.UI.XRLabel(); this.lblAdresse = new DevExpress.XtraReports.UI.XRLabel(); - this.xrLabel3 = new DevExpress.XtraReports.UI.XRLabel(); - this.xrLabel2 = new DevExpress.XtraReports.UI.XRLabel(); - this.xrLabel8 = 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.xrTableCell37 = new DevExpress.XtraReports.UI.XRTableCell(); - this.xrTableCell7 = new DevExpress.XtraReports.UI.XRTableCell(); this.xrTableCell36 = 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.xrTableCell42 = new DevExpress.XtraReports.UI.XRTableCell(); - this.xrTableCell10 = new DevExpress.XtraReports.UI.XRTableCell(); - this.xrTableCell45 = new DevExpress.XtraReports.UI.XRTableCell(); this.GroupFooter1 = new DevExpress.XtraReports.UI.GroupFooterBand(); this.xrTable1 = new DevExpress.XtraReports.UI.XRTable(); this.xrTableRow6 = new DevExpress.XtraReports.UI.XRTableRow(); this.xrTableCell3 = new DevExpress.XtraReports.UI.XRTableCell(); - this.xrTableCell9 = new DevExpress.XtraReports.UI.XRTableCell(); this.xrTableCell11 = new DevExpress.XtraReports.UI.XRTableCell(); this.bindingSource1 = new System.Windows.Forms.BindingSource(this.components); + this.xrLabel4 = new DevExpress.XtraReports.UI.XRLabel(); + this.xrLabel7 = new DevExpress.XtraReports.UI.XRLabel(); + this.xrLabel9 = new DevExpress.XtraReports.UI.XRLabel(); + this.xrLabel11 = new DevExpress.XtraReports.UI.XRLabel(); + this.xrLabel12 = new DevExpress.XtraReports.UI.XRLabel(); + this.xrLabel13 = new DevExpress.XtraReports.UI.XRLabel(); + this.xrLabel17 = new DevExpress.XtraReports.UI.XRLabel(); + this.xrLabel16 = new DevExpress.XtraReports.UI.XRLabel(); + this.xrLabel14 = new DevExpress.XtraReports.UI.XRLabel(); + this.xrLabel15 = new DevExpress.XtraReports.UI.XRLabel(); + this.xrLabel18 = new DevExpress.XtraReports.UI.XRLabel(); + this.xrLabel2 = new DevExpress.XtraReports.UI.XRLabel(); + this.xrPictureBox1 = new DevExpress.XtraReports.UI.XRPictureBox(); + this.xrLabel19 = new DevExpress.XtraReports.UI.XRLabel(); + this.xrLabel3 = new DevExpress.XtraReports.UI.XRLabel(); + this.xrLabel8 = new DevExpress.XtraReports.UI.XRLabel(); + this.xrTable3 = new DevExpress.XtraReports.UI.XRTable(); + this.xrTableRow10 = new DevExpress.XtraReports.UI.XRTableRow(); + this.xrTableCell6 = new DevExpress.XtraReports.UI.XRTableCell(); + this.xrTableRow14 = new DevExpress.XtraReports.UI.XRTableRow(); + this.xrTableCell1 = new DevExpress.XtraReports.UI.XRTableCell(); + this.xrLabel5 = new DevExpress.XtraReports.UI.XRLabel(); + this.xrLabel6 = new DevExpress.XtraReports.UI.XRLabel(); + this.xrTableRow1 = new DevExpress.XtraReports.UI.XRTableRow(); + this.xrTableCell2 = new DevExpress.XtraReports.UI.XRTableCell(); + this.xrTableCell4 = new DevExpress.XtraReports.UI.XRTableCell(); ((System.ComponentModel.ISupportInitialize)(this.xrTable5)).BeginInit(); - ((System.ComponentModel.ISupportInitialize)(this.xrTable6)).BeginInit(); ((System.ComponentModel.ISupportInitialize)(this.xrTable1)).BeginInit(); ((System.ComponentModel.ISupportInitialize)(this.bindingSource1)).BeginInit(); + ((System.ComponentModel.ISupportInitialize)(this.xrTable3)).BeginInit(); ((System.ComponentModel.ISupportInitialize)(this)).BeginInit(); // // Detail @@ -78,13 +92,6 @@ namespace Wabe this.Detail.Padding = new DevExpress.XtraPrinting.PaddingInfo(0, 0, 0, 0, 100F); this.Detail.TextAlignment = DevExpress.XtraPrinting.TextAlignment.TopLeft; // - // ReportHeader - // - this.ReportHeader.Font = new DevExpress.Drawing.DXFont("Verdana", 10F); - this.ReportHeader.HeightF = 180.2084F; - this.ReportHeader.Name = "ReportHeader"; - this.ReportHeader.StylePriority.UseFont = false; - // // ruleRateFactorNull // this.ruleRateFactorNull.Condition = "[RateFactorText2] == ?"; @@ -93,7 +100,7 @@ namespace Wabe // // topMarginBand1 // - this.topMarginBand1.HeightF = 37F; + this.topMarginBand1.HeightF = 192.2083F; this.topMarginBand1.Name = "topMarginBand1"; // // bottomMarginBand1 @@ -104,49 +111,16 @@ namespace Wabe // GroupFooter // this.GroupFooter.Controls.AddRange(new DevExpress.XtraReports.UI.XRControl[] { - this.xrLabel10, - this.xrLabel1}); - this.GroupFooter.HeightF = 87.79178F; + this.xrPictureBox1, + this.xrLabel19, + this.xrLabel3, + this.xrLabel8, + this.xrTable3, + this.xrLabel5, + this.xrLabel6}); + this.GroupFooter.HeightF = 226.0417F; this.GroupFooter.Name = "GroupFooter"; // - // xrLabel10 - // - this.xrLabel10.BackColor = System.Drawing.Color.DarkGray; - this.xrLabel10.Borders = ((DevExpress.XtraPrinting.BorderSide)((((DevExpress.XtraPrinting.BorderSide.Left | DevExpress.XtraPrinting.BorderSide.Top) - | DevExpress.XtraPrinting.BorderSide.Right) - | DevExpress.XtraPrinting.BorderSide.Bottom))); - this.xrLabel10.CanShrink = true; - this.xrLabel10.Font = new DevExpress.Drawing.DXFont("Arial", 12F, DevExpress.Drawing.DXFontStyle.Bold, DevExpress.Drawing.DXGraphicsUnit.Point, new DevExpress.Drawing.DXFontAdditionalProperty[] { - new DevExpress.Drawing.DXFontAdditionalProperty("GdiCharSet", ((byte)(0)))}); - this.xrLabel10.LocationFloat = new DevExpress.Utils.PointFloat(487.7083F, 23.47921F); - this.xrLabel10.Name = "xrLabel10"; - this.xrLabel10.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F); - this.xrLabel10.SizeF = new System.Drawing.SizeF(147.29F, 25F); - this.xrLabel10.StylePriority.UseBackColor = false; - this.xrLabel10.StylePriority.UseBorders = false; - this.xrLabel10.StylePriority.UseFont = false; - this.xrLabel10.StylePriority.UseTextAlignment = false; - this.xrLabel10.Text = "Forderung"; - this.xrLabel10.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleCenter; - this.xrLabel10.WordWrap = false; - // - // xrLabel1 - // - this.xrLabel1.BackColor = System.Drawing.Color.Transparent; - this.xrLabel1.CanShrink = true; - this.xrLabel1.Font = new DevExpress.Drawing.DXFont("Arial", 12F, DevExpress.Drawing.DXFontStyle.Bold, DevExpress.Drawing.DXGraphicsUnit.Point, new DevExpress.Drawing.DXFontAdditionalProperty[] { - new DevExpress.Drawing.DXFontAdditionalProperty("GdiCharSet", ((byte)(0)))}); - this.xrLabel1.LocationFloat = new DevExpress.Utils.PointFloat(0F, 23.47921F); - this.xrLabel1.Name = "xrLabel1"; - this.xrLabel1.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F); - this.xrLabel1.SizeF = new System.Drawing.SizeF(250F, 25F); - this.xrLabel1.StylePriority.UseBackColor = false; - this.xrLabel1.StylePriority.UseFont = false; - this.xrLabel1.StylePriority.UseTextAlignment = false; - this.xrLabel1.Text = "Forderung"; - this.xrLabel1.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleLeft; - this.xrLabel1.WordWrap = false; - // // ruleNoticeNull // this.ruleNoticeNull.Condition = "[Notice] == ?"; @@ -156,34 +130,26 @@ namespace Wabe // Page1 // this.Page1.Controls.AddRange(new DevExpress.XtraReports.UI.XRControl[] { - this.xrLabel6, - this.lblAdresse, - this.xrLabel3, this.xrLabel2, - this.xrLabel8}); - this.Page1.HeightF = 253.3333F; + this.xrLabel4, + this.xrLabel7, + this.xrLabel9, + this.xrLabel11, + this.xrLabel12, + this.xrLabel13, + this.xrLabel17, + this.xrLabel16, + this.xrLabel14, + this.xrLabel15, + this.xrLabel18, + this.lblAdresse}); + this.Page1.HeightF = 337.6666F; this.Page1.Name = "Page1"; this.Page1.StylePriority.UseFont = false; // - // xrLabel6 - // - this.xrLabel6.BackColor = System.Drawing.Color.Transparent; - this.xrLabel6.CanShrink = true; - this.xrLabel6.DataBindings.AddRange(new DevExpress.XtraReports.UI.XRBinding[] { - new DevExpress.XtraReports.UI.XRBinding("Text", null, "OrganisationDebitorNumber")}); - this.xrLabel6.Font = new DevExpress.Drawing.DXFont("Arial", 12F, DevExpress.Drawing.DXFontStyle.Bold, DevExpress.Drawing.DXGraphicsUnit.Point, new DevExpress.Drawing.DXFontAdditionalProperty[] { - new DevExpress.Drawing.DXFontAdditionalProperty("GdiCharSet", ((byte)(0)))}); - this.xrLabel6.LocationFloat = new DevExpress.Utils.PointFloat(250F, 192.5F); - this.xrLabel6.Name = "xrLabel6"; - this.xrLabel6.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F); - this.xrLabel6.SizeF = new System.Drawing.SizeF(250F, 19.99998F); - this.xrLabel6.StylePriority.UseBackColor = false; - this.xrLabel6.StylePriority.UseFont = false; - this.xrLabel6.Text = "ZE 70027"; - this.xrLabel6.WordWrap = false; - // // lblAdresse // + this.lblAdresse.Font = new DevExpress.Drawing.DXFont("Arial", 11F); this.lblAdresse.LocationFloat = new DevExpress.Utils.PointFloat(0F, 10.00002F); this.lblAdresse.Multiline = true; this.lblAdresse.Name = "lblAdresse"; @@ -192,50 +158,6 @@ namespace Wabe 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 DevExpress.Drawing.DXFont("Arial", 10F, DevExpress.Drawing.DXFontStyle.Bold, DevExpress.Drawing.DXGraphicsUnit.Point, new DevExpress.Drawing.DXFontAdditionalProperty[] { - new DevExpress.Drawing.DXFontAdditionalProperty("GdiCharSet", ((byte)(0)))}); - this.xrLabel3.LocationFloat = new DevExpress.Utils.PointFloat(0F, 212.5F); - this.xrLabel3.Name = "xrLabel3"; - this.xrLabel3.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F); - this.xrLabel3.SizeF = new System.Drawing.SizeF(626F, 20F); - this.xrLabel3.StylePriority.UseBackColor = false; - this.xrLabel3.StylePriority.UseFont = false; - this.xrLabel3.Text = "Betreutes Wohnen"; - this.xrLabel3.WordWrap = false; - // - // xrLabel2 - // - this.xrLabel2.BackColor = System.Drawing.Color.Transparent; - this.xrLabel2.CanShrink = true; - this.xrLabel2.Font = new DevExpress.Drawing.DXFont("Arial", 12F, DevExpress.Drawing.DXFontStyle.Bold, DevExpress.Drawing.DXGraphicsUnit.Point, new DevExpress.Drawing.DXFontAdditionalProperty[] { - new DevExpress.Drawing.DXFontAdditionalProperty("GdiCharSet", ((byte)(0)))}); - this.xrLabel2.LocationFloat = new DevExpress.Utils.PointFloat(0F, 192.5F); - this.xrLabel2.Name = "xrLabel2"; - this.xrLabel2.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F); - this.xrLabel2.SizeF = new System.Drawing.SizeF(250F, 19.99998F); - this.xrLabel2.StylePriority.UseBackColor = false; - this.xrLabel2.StylePriority.UseFont = false; - this.xrLabel2.Text = "Abrechnung"; - this.xrLabel2.WordWrap = false; - // - // xrLabel8 - // - this.xrLabel8.DataBindings.AddRange(new DevExpress.XtraReports.UI.XRBinding[] { - new DevExpress.XtraReports.UI.XRBinding("Text", null, "InvoiceDate", "Ansbach, {0:dd.MM.yyyy}")}); - this.xrLabel8.Font = new DevExpress.Drawing.DXFont("Arial", 11F, DevExpress.Drawing.DXFontStyle.Regular, DevExpress.Drawing.DXGraphicsUnit.Point, new DevExpress.Drawing.DXFontAdditionalProperty[] { - new DevExpress.Drawing.DXFontAdditionalProperty("GdiCharSet", ((byte)(0)))}); - this.xrLabel8.LocationFloat = new DevExpress.Utils.PointFloat(412.0555F, 172.5F); - this.xrLabel8.Name = "xrLabel8"; - this.xrLabel8.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F); - this.xrLabel8.SizeF = new System.Drawing.SizeF(214.9445F, 20.00002F); - this.xrLabel8.StylePriority.UseFont = false; - this.xrLabel8.StylePriority.UseTextAlignment = false; - this.xrLabel8.TextAlignment = DevExpress.XtraPrinting.TextAlignment.TopLeft; // // DetailReport // @@ -263,13 +185,12 @@ namespace Wabe this.xrTable5.Name = "xrTable5"; this.xrTable5.Rows.AddRange(new DevExpress.XtraReports.UI.XRTableRow[] { this.xrTableRow23}); - this.xrTable5.SizeF = new System.Drawing.SizeF(635F, 25F); + this.xrTable5.SizeF = new System.Drawing.SizeF(505F, 25F); // // xrTableRow23 // this.xrTableRow23.Cells.AddRange(new DevExpress.XtraReports.UI.XRTableCell[] { this.xrTableCell37, - this.xrTableCell7, this.xrTableCell36}); this.xrTableRow23.Name = "xrTableRow23"; this.xrTableRow23.Weight = 1D; @@ -280,46 +201,38 @@ namespace Wabe this.xrTableCell37.Borders = ((DevExpress.XtraPrinting.BorderSide)((((DevExpress.XtraPrinting.BorderSide.Left | DevExpress.XtraPrinting.BorderSide.Top) | DevExpress.XtraPrinting.BorderSide.Right) | DevExpress.XtraPrinting.BorderSide.Bottom))); + this.xrTableCell37.Font = new DevExpress.Drawing.DXFont("Arial", 12F, DevExpress.Drawing.DXFontStyle.Regular, DevExpress.Drawing.DXGraphicsUnit.Point, new DevExpress.Drawing.DXFontAdditionalProperty[] { + new DevExpress.Drawing.DXFontAdditionalProperty("GdiCharSet", ((byte)(0)))}); this.xrTableCell37.Name = "xrTableCell37"; this.xrTableCell37.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 2, 2, 100F); this.xrTableCell37.StylePriority.UseBackColor = false; this.xrTableCell37.StylePriority.UseBorderColor = false; this.xrTableCell37.StylePriority.UseBorders = false; + this.xrTableCell37.StylePriority.UseFont = false; this.xrTableCell37.StylePriority.UsePadding = false; this.xrTableCell37.StylePriority.UseTextAlignment = false; + this.xrTableCell37.Text = "Gesamtsumme:"; this.xrTableCell37.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleLeft; this.xrTableCell37.Weight = 1.6985645512702885D; // - // xrTableCell7 - // - this.xrTableCell7.BorderColor = System.Drawing.Color.DarkGray; - this.xrTableCell7.Borders = ((DevExpress.XtraPrinting.BorderSide)((((DevExpress.XtraPrinting.BorderSide.Left | DevExpress.XtraPrinting.BorderSide.Top) - | DevExpress.XtraPrinting.BorderSide.Right) - | DevExpress.XtraPrinting.BorderSide.Bottom))); - this.xrTableCell7.Name = "xrTableCell7"; - this.xrTableCell7.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 2, 2, 100F); - this.xrTableCell7.StylePriority.UseBackColor = false; - this.xrTableCell7.StylePriority.UseBorderColor = false; - this.xrTableCell7.StylePriority.UseBorders = false; - this.xrTableCell7.StylePriority.UsePadding = false; - this.xrTableCell7.StylePriority.UseTextAlignment = false; - this.xrTableCell7.Text = "Entgelt"; - this.xrTableCell7.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleRight; - this.xrTableCell7.Weight = 0.62200957147374258D; - // // xrTableCell36 // + 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.DataBindings.AddRange(new DevExpress.XtraReports.UI.XRBinding[] { + new DevExpress.XtraReports.UI.XRBinding("Text", null, "GrossClaim")}); + this.xrTableCell36.Font = new DevExpress.Drawing.DXFont("Arial", 12F, DevExpress.Drawing.DXFontStyle.Regular, DevExpress.Drawing.DXGraphicsUnit.Point, new DevExpress.Drawing.DXFontAdditionalProperty[] { + new DevExpress.Drawing.DXFontAdditionalProperty("GdiCharSet", ((byte)(0)))}); this.xrTableCell36.Name = "xrTableCell36"; this.xrTableCell36.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 2, 2, 100F); this.xrTableCell36.StylePriority.UseBackColor = false; this.xrTableCell36.StylePriority.UseBorderColor = false; this.xrTableCell36.StylePriority.UseBorders = false; + this.xrTableCell36.StylePriority.UseFont = false; this.xrTableCell36.StylePriority.UsePadding = false; this.xrTableCell36.StylePriority.UseTextAlignment = false; - this.xrTableCell36.Text = "Gesamtkosten"; this.xrTableCell36.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleRight; this.xrTableCell36.Weight = 0.71770342553031441D; // @@ -335,97 +248,32 @@ namespace Wabe // // Detail3 // - this.Detail3.Controls.AddRange(new DevExpress.XtraReports.UI.XRControl[] { - this.xrTable6}); - this.Detail3.HeightF = 25F; + this.Detail3.HeightF = 0F; this.Detail3.Name = "Detail3"; // - // xrTable6 - // - 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(635F, 25F); - this.xrTable6.StylePriority.UseFont = false; - // - // xrTableRow25 - // - this.xrTableRow25.Cells.AddRange(new DevExpress.XtraReports.UI.XRTableCell[] { - this.xrTableCell42, - this.xrTableCell10, - this.xrTableCell45}); - this.xrTableRow25.Name = "xrTableRow25"; - this.xrTableRow25.Weight = 1D; - // - // xrTableCell42 - // - this.xrTableCell42.BorderColor = System.Drawing.Color.DarkGray; - this.xrTableCell42.Borders = ((DevExpress.XtraPrinting.BorderSide)((DevExpress.XtraPrinting.BorderSide.Left | DevExpress.XtraPrinting.BorderSide.Right))); - 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 = 1.6985642207574698D; - // - // xrTableCell10 - // - this.xrTableCell10.BorderColor = System.Drawing.Color.DarkGray; - 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, "ServiceInvoicePeriods.ServiceInvoiceItems.NetAmount", "{0:0.00} €")}); - this.xrTableCell10.Name = "xrTableCell10"; - this.xrTableCell10.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 2, 2, 100F); - this.xrTableCell10.StylePriority.UseBorderColor = false; - this.xrTableCell10.StylePriority.UseBorders = false; - this.xrTableCell10.StylePriority.UsePadding = false; - this.xrTableCell10.StylePriority.UseTextAlignment = false; - this.xrTableCell10.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleRight; - this.xrTableCell10.Weight = 0.62200945020992493D; - // - // 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.71770328563102037D; - // // GroupFooter1 // this.GroupFooter1.Controls.AddRange(new DevExpress.XtraReports.UI.XRControl[] { this.xrTable1}); - this.GroupFooter1.HeightF = 25F; + this.GroupFooter1.Font = new DevExpress.Drawing.DXFont("Arial", 12F, DevExpress.Drawing.DXFontStyle.Bold, DevExpress.Drawing.DXGraphicsUnit.Point, new DevExpress.Drawing.DXFontAdditionalProperty[] { + new DevExpress.Drawing.DXFontAdditionalProperty("GdiCharSet", ((byte)(0)))}); + this.GroupFooter1.HeightF = 50F; this.GroupFooter1.Name = "GroupFooter1"; + this.GroupFooter1.StylePriority.UseFont = false; // // xrTable1 // this.xrTable1.LocationFloat = new DevExpress.Utils.PointFloat(2.119276E-05F, 0F); this.xrTable1.Name = "xrTable1"; this.xrTable1.Rows.AddRange(new DevExpress.XtraReports.UI.XRTableRow[] { + this.xrTableRow1, this.xrTableRow6}); - this.xrTable1.SizeF = new System.Drawing.SizeF(635F, 25F); + this.xrTable1.SizeF = new System.Drawing.SizeF(505F, 50F); // // xrTableRow6 // this.xrTableRow6.Cells.AddRange(new DevExpress.XtraReports.UI.XRTableCell[] { this.xrTableCell3, - this.xrTableCell9, this.xrTableCell11}); this.xrTableRow6.Name = "xrTableRow6"; this.xrTableRow6.Weight = 1D; @@ -436,7 +284,7 @@ namespace Wabe this.xrTableCell3.Borders = ((DevExpress.XtraPrinting.BorderSide)((((DevExpress.XtraPrinting.BorderSide.Left | DevExpress.XtraPrinting.BorderSide.Top) | DevExpress.XtraPrinting.BorderSide.Right) | DevExpress.XtraPrinting.BorderSide.Bottom))); - this.xrTableCell3.Font = new DevExpress.Drawing.DXFont("Arial", 12F, DevExpress.Drawing.DXFontStyle.Bold, DevExpress.Drawing.DXGraphicsUnit.Point, new DevExpress.Drawing.DXFontAdditionalProperty[] { + this.xrTableCell3.Font = new DevExpress.Drawing.DXFont("Arial", 12F, DevExpress.Drawing.DXFontStyle.Regular, DevExpress.Drawing.DXGraphicsUnit.Point, new DevExpress.Drawing.DXFontAdditionalProperty[] { new DevExpress.Drawing.DXFontAdditionalProperty("GdiCharSet", ((byte)(0)))}); this.xrTableCell3.Name = "xrTableCell3"; this.xrTableCell3.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 2, 2, 100F); @@ -446,40 +294,19 @@ namespace Wabe this.xrTableCell3.StylePriority.UseFont = false; this.xrTableCell3.StylePriority.UsePadding = false; this.xrTableCell3.StylePriority.UseTextAlignment = false; - this.xrTableCell3.Text = "SUMME:"; + this.xrTableCell3.Text = "Restbetrag"; this.xrTableCell3.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleLeft; this.xrTableCell3.Weight = 1.6985645512702885D; // - // xrTableCell9 - // - this.xrTableCell9.BorderColor = System.Drawing.Color.DarkGray; - this.xrTableCell9.Borders = ((DevExpress.XtraPrinting.BorderSide)((((DevExpress.XtraPrinting.BorderSide.Left | DevExpress.XtraPrinting.BorderSide.Top) - | DevExpress.XtraPrinting.BorderSide.Right) - | DevExpress.XtraPrinting.BorderSide.Bottom))); - this.xrTableCell9.DataBindings.AddRange(new DevExpress.XtraReports.UI.XRBinding[] { - new DevExpress.XtraReports.UI.XRBinding("Text", null, "GrossClaim")}); - this.xrTableCell9.Font = new DevExpress.Drawing.DXFont("Arial", 12F, DevExpress.Drawing.DXFontStyle.Bold, DevExpress.Drawing.DXGraphicsUnit.Point, new DevExpress.Drawing.DXFontAdditionalProperty[] { - new DevExpress.Drawing.DXFontAdditionalProperty("GdiCharSet", ((byte)(0)))}); - this.xrTableCell9.Name = "xrTableCell9"; - this.xrTableCell9.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 2, 2, 100F); - this.xrTableCell9.StylePriority.UseBackColor = false; - this.xrTableCell9.StylePriority.UseBorderColor = false; - this.xrTableCell9.StylePriority.UseBorders = false; - this.xrTableCell9.StylePriority.UseFont = false; - this.xrTableCell9.StylePriority.UsePadding = false; - this.xrTableCell9.StylePriority.UseTextAlignment = false; - this.xrTableCell9.Text = "Entgelt"; - this.xrTableCell9.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleRight; - this.xrTableCell9.Weight = 0.62200957147374258D; - // // xrTableCell11 // + this.xrTableCell11.BorderColor = System.Drawing.Color.DarkGray; this.xrTableCell11.Borders = ((DevExpress.XtraPrinting.BorderSide)((((DevExpress.XtraPrinting.BorderSide.Left | DevExpress.XtraPrinting.BorderSide.Top) | DevExpress.XtraPrinting.BorderSide.Right) | DevExpress.XtraPrinting.BorderSide.Bottom))); this.xrTableCell11.DataBindings.AddRange(new DevExpress.XtraReports.UI.XRBinding[] { - new DevExpress.XtraReports.UI.XRBinding("Text", null, "GrossClaim")}); - this.xrTableCell11.Font = new DevExpress.Drawing.DXFont("Arial", 12F, DevExpress.Drawing.DXFontStyle.Bold, DevExpress.Drawing.DXGraphicsUnit.Point, new DevExpress.Drawing.DXFontAdditionalProperty[] { + new DevExpress.XtraReports.UI.XRBinding("Text", null, "NetClaim")}); + this.xrTableCell11.Font = new DevExpress.Drawing.DXFont("Arial", 12F, DevExpress.Drawing.DXFontStyle.Regular, DevExpress.Drawing.DXGraphicsUnit.Point, new DevExpress.Drawing.DXFontAdditionalProperty[] { new DevExpress.Drawing.DXFontAdditionalProperty("GdiCharSet", ((byte)(0)))}); this.xrTableCell11.Name = "xrTableCell11"; this.xrTableCell11.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 2, 2, 100F); @@ -497,11 +324,325 @@ namespace Wabe // this.bindingSource1.DataSource = typeof(BeWo.Report.ReportObjects.ServiceInvoiceRO); // + // xrLabel4 + // + this.xrLabel4.DataBindings.AddRange(new DevExpress.XtraReports.UI.XRBinding[] { + new DevExpress.XtraReports.UI.XRBinding("Text", null, "InvoiceDate")}); + this.xrLabel4.Font = new DevExpress.Drawing.DXFont("Arial", 10F); + this.xrLabel4.LocationFloat = new DevExpress.Utils.PointFloat(461.3603F, 230.1668F); + this.xrLabel4.Name = "xrLabel4"; + this.xrLabel4.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F); + this.xrLabel4.SizeF = new System.Drawing.SizeF(236.2083F, 23F); + this.xrLabel4.StylePriority.UseFont = false; + this.xrLabel4.StylePriority.UseTextAlignment = false; + this.xrLabel4.Text = "xrLabel8"; + this.xrLabel4.TextAlignment = DevExpress.XtraPrinting.TextAlignment.TopLeft; + this.xrLabel4.TextFormatString = "Erlangen, {0}"; + // + // xrLabel7 + // + this.xrLabel7.BackColor = System.Drawing.Color.Transparent; + this.xrLabel7.CanShrink = true; + this.xrLabel7.Font = new DevExpress.Drawing.DXFont("Arial", 11F); + this.xrLabel7.LocationFloat = new DevExpress.Utils.PointFloat(0F, 253.1668F); + this.xrLabel7.Name = "xrLabel7"; + this.xrLabel7.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F); + this.xrLabel7.SizeF = new System.Drawing.SizeF(461.3603F, 20F); + this.xrLabel7.StylePriority.UseBackColor = false; + this.xrLabel7.StylePriority.UseFont = false; + this.xrLabel7.Text = "Abrechnung von Maßnahmekosten für betreutes Wohnen"; + this.xrLabel7.WordWrap = false; + // + // xrLabel9 + // + this.xrLabel9.Font = new DevExpress.Drawing.DXFont("Arial", 11F, DevExpress.Drawing.DXFontStyle.Bold); + this.xrLabel9.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(150)))), ((int)(((byte)(150)))), ((int)(((byte)(150))))); + this.xrLabel9.LocationFloat = new DevExpress.Utils.PointFloat(0F, 184.1667F); + this.xrLabel9.Name = "xrLabel9"; + this.xrLabel9.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F); + this.xrLabel9.SizeF = new System.Drawing.SizeF(195.9023F, 23F); + this.xrLabel9.StylePriority.UseFont = false; + this.xrLabel9.StylePriority.UseForeColor = false; + this.xrLabel9.StylePriority.UseTextAlignment = false; + this.xrLabel9.Text = "Ansprechpartner"; + this.xrLabel9.TextAlignment = DevExpress.XtraPrinting.TextAlignment.TopLeft; + // + // xrLabel11 + // + this.xrLabel11.Font = new DevExpress.Drawing.DXFont("Arial", 11F, DevExpress.Drawing.DXFontStyle.Bold); + this.xrLabel11.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(150)))), ((int)(((byte)(150)))), ((int)(((byte)(150))))); + this.xrLabel11.LocationFloat = new DevExpress.Utils.PointFloat(195.9021F, 184.1667F); + this.xrLabel11.Name = "xrLabel11"; + this.xrLabel11.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F); + this.xrLabel11.SizeF = new System.Drawing.SizeF(142.0001F, 23F); + this.xrLabel11.StylePriority.UseFont = false; + this.xrLabel11.StylePriority.UseForeColor = false; + this.xrLabel11.StylePriority.UseTextAlignment = false; + this.xrLabel11.Text = "Telefon"; + this.xrLabel11.TextAlignment = DevExpress.XtraPrinting.TextAlignment.TopLeft; + // + // xrLabel12 + // + this.xrLabel12.Font = new DevExpress.Drawing.DXFont("Arial", 11F, DevExpress.Drawing.DXFontStyle.Bold); + this.xrLabel12.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(150)))), ((int)(((byte)(150)))), ((int)(((byte)(150))))); + this.xrLabel12.LocationFloat = new DevExpress.Utils.PointFloat(337.9022F, 184.1667F); + this.xrLabel12.Name = "xrLabel12"; + this.xrLabel12.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F); + this.xrLabel12.SizeF = new System.Drawing.SizeF(123.4581F, 23F); + this.xrLabel12.StylePriority.UseFont = false; + this.xrLabel12.StylePriority.UseForeColor = false; + this.xrLabel12.StylePriority.UseTextAlignment = false; + this.xrLabel12.Text = "Fax"; + this.xrLabel12.TextAlignment = DevExpress.XtraPrinting.TextAlignment.TopLeft; + // + // xrLabel13 + // + this.xrLabel13.Font = new DevExpress.Drawing.DXFont("Arial", 11F, DevExpress.Drawing.DXFontStyle.Bold); + this.xrLabel13.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(150)))), ((int)(((byte)(150)))), ((int)(((byte)(150))))); + this.xrLabel13.LocationFloat = new DevExpress.Utils.PointFloat(461.3603F, 184.1666F); + this.xrLabel13.Name = "xrLabel13"; + this.xrLabel13.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F); + this.xrLabel13.SizeF = new System.Drawing.SizeF(236.2083F, 23F); + this.xrLabel13.StylePriority.UseFont = false; + this.xrLabel13.StylePriority.UseForeColor = false; + this.xrLabel13.StylePriority.UseTextAlignment = false; + this.xrLabel13.Text = "Email"; + this.xrLabel13.TextAlignment = DevExpress.XtraPrinting.TextAlignment.TopLeft; + // + // xrLabel17 + // + this.xrLabel17.Font = new DevExpress.Drawing.DXFont("Arial", 11F, DevExpress.Drawing.DXFontStyle.Bold); + this.xrLabel17.ForeColor = System.Drawing.Color.Black; + this.xrLabel17.LocationFloat = new DevExpress.Utils.PointFloat(461.3603F, 207.1666F); + this.xrLabel17.Name = "xrLabel17"; + this.xrLabel17.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F); + this.xrLabel17.SizeF = new System.Drawing.SizeF(236.2083F, 23F); + this.xrLabel17.StylePriority.UseFont = false; + this.xrLabel17.StylePriority.UseForeColor = false; + this.xrLabel17.StylePriority.UseTextAlignment = false; + this.xrLabel17.Text = "e.hartmann@wabe-erlangen.de"; + this.xrLabel17.TextAlignment = DevExpress.XtraPrinting.TextAlignment.TopLeft; + // + // xrLabel16 + // + this.xrLabel16.Font = new DevExpress.Drawing.DXFont("Arial", 11F, DevExpress.Drawing.DXFontStyle.Bold); + this.xrLabel16.ForeColor = System.Drawing.Color.Black; + this.xrLabel16.LocationFloat = new DevExpress.Utils.PointFloat(337.9022F, 207.1666F); + this.xrLabel16.Name = "xrLabel16"; + this.xrLabel16.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F); + this.xrLabel16.SizeF = new System.Drawing.SizeF(123.4581F, 23F); + this.xrLabel16.StylePriority.UseFont = false; + this.xrLabel16.StylePriority.UseForeColor = false; + this.xrLabel16.StylePriority.UseTextAlignment = false; + this.xrLabel16.Text = "09131/617146"; + this.xrLabel16.TextAlignment = DevExpress.XtraPrinting.TextAlignment.TopLeft; + // + // xrLabel14 + // + this.xrLabel14.Font = new DevExpress.Drawing.DXFont("Arial", 11F, DevExpress.Drawing.DXFontStyle.Bold); + this.xrLabel14.ForeColor = System.Drawing.Color.Black; + this.xrLabel14.LocationFloat = new DevExpress.Utils.PointFloat(195.9021F, 207.1668F); + this.xrLabel14.Name = "xrLabel14"; + this.xrLabel14.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F); + this.xrLabel14.SizeF = new System.Drawing.SizeF(142.0001F, 23F); + this.xrLabel14.StylePriority.UseFont = false; + this.xrLabel14.StylePriority.UseForeColor = false; + this.xrLabel14.StylePriority.UseTextAlignment = false; + this.xrLabel14.Text = "09131/617130"; + this.xrLabel14.TextAlignment = DevExpress.XtraPrinting.TextAlignment.TopLeft; + // + // xrLabel15 + // + this.xrLabel15.Font = new DevExpress.Drawing.DXFont("Arial", 11F, DevExpress.Drawing.DXFontStyle.Bold); + this.xrLabel15.ForeColor = System.Drawing.Color.Black; + this.xrLabel15.LocationFloat = new DevExpress.Utils.PointFloat(0F, 207.1666F); + this.xrLabel15.Name = "xrLabel15"; + this.xrLabel15.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F); + this.xrLabel15.SizeF = new System.Drawing.SizeF(195.9023F, 23F); + this.xrLabel15.StylePriority.UseFont = false; + this.xrLabel15.StylePriority.UseForeColor = false; + this.xrLabel15.StylePriority.UseTextAlignment = false; + this.xrLabel15.Text = "Elke Hartmann"; + this.xrLabel15.TextAlignment = DevExpress.XtraPrinting.TextAlignment.TopLeft; + // + // xrLabel18 + // + this.xrLabel18.BackColor = System.Drawing.Color.Transparent; + this.xrLabel18.CanShrink = true; + this.xrLabel18.Font = new DevExpress.Drawing.DXFont("Arial", 11F); + this.xrLabel18.LocationFloat = new DevExpress.Utils.PointFloat(0F, 273.1668F); + this.xrLabel18.Name = "xrLabel18"; + this.xrLabel18.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F); + this.xrLabel18.SizeF = new System.Drawing.SizeF(650F, 20F); + this.xrLabel18.StylePriority.UseBackColor = false; + this.xrLabel18.StylePriority.UseFont = false; + this.xrLabel18.Text = "Betreuungszeitraum [AccountingPeriod]"; + this.xrLabel18.WordWrap = false; + // + // xrLabel2 + // + this.xrLabel2.Font = new DevExpress.Drawing.DXFont("Arial", 10F); + this.xrLabel2.LocationFloat = new DevExpress.Utils.PointFloat(461.3603F, 253.1668F); + this.xrLabel2.Name = "xrLabel2"; + this.xrLabel2.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F); + this.xrLabel2.SizeF = new System.Drawing.SizeF(236.2082F, 20F); + this.xrLabel2.StylePriority.UseFont = false; + this.xrLabel2.StylePriority.UseTextAlignment = false; + this.xrLabel2.Text = "ZE-Nummer 70033"; + this.xrLabel2.TextAlignment = DevExpress.XtraPrinting.TextAlignment.TopLeft; + // + // xrPictureBox1 + // + this.xrPictureBox1.ImageSource = new DevExpress.XtraPrinting.Drawing.ImageSource("img", resources.GetString("xrPictureBox1.ImageSource")); + this.xrPictureBox1.LocationFloat = new DevExpress.Utils.PointFloat(0F, 143.4167F); + this.xrPictureBox1.Name = "xrPictureBox1"; + this.xrPictureBox1.SizeF = new System.Drawing.SizeF(144.6248F, 65.62502F); + this.xrPictureBox1.Sizing = DevExpress.XtraPrinting.ImageSizeMode.ZoomImage; + // + // xrLabel19 + // + this.xrLabel19.Font = new DevExpress.Drawing.DXFont("Arial", 11F); + this.xrLabel19.LocationFloat = new DevExpress.Utils.PointFloat(0F, 126.4166F); + this.xrLabel19.Name = "xrLabel19"; + this.xrLabel19.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F); + this.xrLabel19.SizeF = new System.Drawing.SizeF(175F, 17F); + this.xrLabel19.StylePriority.UseFont = false; + this.xrLabel19.Text = "Im Auftrag"; + // + // xrLabel3 + // + this.xrLabel3.Font = new DevExpress.Drawing.DXFont("Arial", 11F); + this.xrLabel3.LocationFloat = new DevExpress.Utils.PointFloat(0F, 91.66666F); + this.xrLabel3.Name = "xrLabel3"; + this.xrLabel3.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F); + this.xrLabel3.SizeF = new System.Drawing.SizeF(587.8749F, 17.74998F); + this.xrLabel3.StylePriority.UseFont = false; + this.xrLabel3.Text = "Für Ihre Unterstützung bedanken wir uns im voraus sehr herzlich und verbleiben"; + // + // xrLabel8 + // + this.xrLabel8.Font = new DevExpress.Drawing.DXFont("Arial", 11F); + this.xrLabel8.LocationFloat = new DevExpress.Utils.PointFloat(0F, 30.20833F); + this.xrLabel8.Name = "xrLabel8"; + this.xrLabel8.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F); + this.xrLabel8.SizeF = new System.Drawing.SizeF(650F, 21.91664F); + this.xrLabel8.StylePriority.UseFont = false; + this.xrLabel8.Text = "Wir bitten Sie um Überweisung des Rechnungsbetrages auf die angegebene Bankverbin" + + "dung."; + // + // xrTable3 + // + this.xrTable3.Font = new DevExpress.Drawing.DXFont("Arial", 11F); + this.xrTable3.LocationFloat = new DevExpress.Utils.PointFloat(3.178914E-05F, 65.66664F); + this.xrTable3.Name = "xrTable3"; + this.xrTable3.Rows.AddRange(new DevExpress.XtraReports.UI.XRTableRow[] { + this.xrTableRow10, + this.xrTableRow14}); + this.xrTable3.SizeF = new System.Drawing.SizeF(650F, 26F); + this.xrTable3.StylePriority.UseFont = false; + // + // xrTableRow10 + // + this.xrTableRow10.Cells.AddRange(new DevExpress.XtraReports.UI.XRTableCell[] { + this.xrTableCell6}); + this.xrTableRow10.Name = "xrTableRow10"; + this.xrTableRow10.Weight = 0.38095238095238093D; + // + // xrTableCell6 + // + this.xrTableCell6.DataBindings.AddRange(new DevExpress.XtraReports.UI.XRBinding[] { + new DevExpress.XtraReports.UI.XRBinding("Text", null, "Notice")}); + this.xrTableCell6.Name = "xrTableCell6"; + this.xrTableCell6.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F); + this.xrTableCell6.StylePriority.UsePadding = false; + this.xrTableCell6.Text = "xrTableCell1"; + this.xrTableCell6.Weight = 3D; + // + // xrTableRow14 + // + this.xrTableRow14.Cells.AddRange(new DevExpress.XtraReports.UI.XRTableCell[] { + this.xrTableCell1}); + this.xrTableRow14.Name = "xrTableRow14"; + this.xrTableRow14.Weight = 0.23809523809523808D; + // + // xrTableCell1 + // + this.xrTableCell1.Name = "xrTableCell1"; + this.xrTableCell1.Weight = 3D; + // + // xrLabel5 + // + this.xrLabel5.Font = new DevExpress.Drawing.DXFont("Arial", 11F); + this.xrLabel5.LocationFloat = new DevExpress.Utils.PointFloat(0F, 209.0417F); + this.xrLabel5.Name = "xrLabel5"; + this.xrLabel5.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F); + this.xrLabel5.SizeF = new System.Drawing.SizeF(225F, 17F); + this.xrLabel5.StylePriority.UseFont = false; + this.xrLabel5.Text = "Hartmann "; + // + // xrLabel6 + // + this.xrLabel6.Font = new DevExpress.Drawing.DXFont("Arial", 11F); + this.xrLabel6.LocationFloat = new DevExpress.Utils.PointFloat(0F, 109.4166F); + this.xrLabel6.Name = "xrLabel6"; + this.xrLabel6.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F); + this.xrLabel6.SizeF = new System.Drawing.SizeF(175F, 17F); + this.xrLabel6.StylePriority.UseFont = false; + this.xrLabel6.Text = "mit freundlichen Grüßen"; + // + // xrTableRow1 + // + this.xrTableRow1.Cells.AddRange(new DevExpress.XtraReports.UI.XRTableCell[] { + this.xrTableCell2, + this.xrTableCell4}); + this.xrTableRow1.Name = "xrTableRow1"; + this.xrTableRow1.Weight = 1D; + // + // xrTableCell2 + // + this.xrTableCell2.BorderColor = System.Drawing.Color.DarkGray; + this.xrTableCell2.Borders = ((DevExpress.XtraPrinting.BorderSide)(((DevExpress.XtraPrinting.BorderSide.Left | DevExpress.XtraPrinting.BorderSide.Top) + | DevExpress.XtraPrinting.BorderSide.Right))); + this.xrTableCell2.Font = new DevExpress.Drawing.DXFont("Arial", 12F, DevExpress.Drawing.DXFontStyle.Regular, DevExpress.Drawing.DXGraphicsUnit.Point, new DevExpress.Drawing.DXFontAdditionalProperty[] { + new DevExpress.Drawing.DXFontAdditionalProperty("GdiCharSet", ((byte)(0)))}); + this.xrTableCell2.Multiline = true; + this.xrTableCell2.Name = "xrTableCell2"; + this.xrTableCell2.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 2, 2, 100F); + this.xrTableCell2.StylePriority.UseBackColor = false; + this.xrTableCell2.StylePriority.UseBorderColor = false; + this.xrTableCell2.StylePriority.UseBorders = false; + this.xrTableCell2.StylePriority.UseFont = false; + this.xrTableCell2.StylePriority.UsePadding = false; + this.xrTableCell2.StylePriority.UseTextAlignment = false; + this.xrTableCell2.Text = "abzüglich Abschlagszahlungen"; + this.xrTableCell2.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleLeft; + this.xrTableCell2.Weight = 1.6985645512702885D; + // + // xrTableCell4 + // + this.xrTableCell4.BorderColor = System.Drawing.Color.DarkGray; + this.xrTableCell4.Borders = ((DevExpress.XtraPrinting.BorderSide)(((DevExpress.XtraPrinting.BorderSide.Left | DevExpress.XtraPrinting.BorderSide.Top) + | DevExpress.XtraPrinting.BorderSide.Right))); + this.xrTableCell4.DataBindings.AddRange(new DevExpress.XtraReports.UI.XRBinding[] { + new DevExpress.XtraReports.UI.XRBinding("Text", null, "AmountAdvancedPayments")}); + this.xrTableCell4.Font = new DevExpress.Drawing.DXFont("Arial", 12F, DevExpress.Drawing.DXFontStyle.Regular, DevExpress.Drawing.DXGraphicsUnit.Point, new DevExpress.Drawing.DXFontAdditionalProperty[] { + new DevExpress.Drawing.DXFontAdditionalProperty("GdiCharSet", ((byte)(0)))}); + this.xrTableCell4.Multiline = true; + this.xrTableCell4.Name = "xrTableCell4"; + this.xrTableCell4.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 2, 2, 100F); + this.xrTableCell4.StylePriority.UseBackColor = false; + this.xrTableCell4.StylePriority.UseBorderColor = false; + this.xrTableCell4.StylePriority.UseBorders = false; + this.xrTableCell4.StylePriority.UseFont = false; + this.xrTableCell4.StylePriority.UsePadding = false; + this.xrTableCell4.StylePriority.UseTextAlignment = false; + this.xrTableCell4.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleRight; + this.xrTableCell4.Weight = 0.71770342553031441D; + // // Sammelrechnung // this.Bands.AddRange(new DevExpress.XtraReports.UI.Band[] { this.Detail, - this.ReportHeader, this.topMarginBand1, this.bottomMarginBand1, this.GroupFooter, @@ -514,15 +655,17 @@ namespace Wabe this.FormattingRuleSheet.AddRange(new DevExpress.XtraReports.UI.FormattingRule[] { this.ruleRateFactorNull, this.ruleNoticeNull}); - this.Margins = new DevExpress.Drawing.DXMargins(76F, 72F, 37F, 71.00005F); + this.Margins = new DevExpress.Drawing.DXMargins(82.25F, 47F, 192.2083F, 71.00005F); this.PageHeight = 1169; this.PageWidth = 827; this.PaperKind = DevExpress.Drawing.Printing.DXPaperKind.A4; this.Version = "23.2"; + xrWatermark1.Id = "Watermark1"; + this.Watermarks.Add(xrWatermark1); ((System.ComponentModel.ISupportInitialize)(this.xrTable5)).EndInit(); - ((System.ComponentModel.ISupportInitialize)(this.xrTable6)).EndInit(); ((System.ComponentModel.ISupportInitialize)(this.xrTable1)).EndInit(); ((System.ComponentModel.ISupportInitialize)(this.bindingSource1)).EndInit(); + ((System.ComponentModel.ISupportInitialize)(this.xrTable3)).EndInit(); ((System.ComponentModel.ISupportInitialize)(this)).EndInit(); } @@ -530,15 +673,11 @@ namespace Wabe 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.GroupFooterBand GroupFooter; private DevExpress.XtraReports.UI.GroupHeaderBand Page1; - private DevExpress.XtraReports.UI.XRLabel xrLabel3; - private DevExpress.XtraReports.UI.XRLabel xrLabel2; - private DevExpress.XtraReports.UI.XRLabel xrLabel8; private DevExpress.XtraReports.UI.DetailReportBand DetailReport; private DevExpress.XtraReports.UI.DetailBand Detail1; private DevExpress.XtraReports.UI.XRTable xrTable5; @@ -547,22 +686,38 @@ namespace Wabe private DevExpress.XtraReports.UI.XRTableCell xrTableCell36; 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 xrTableCell42; - private DevExpress.XtraReports.UI.XRTableCell xrTableCell45; private DevExpress.XtraReports.UI.XRLabel lblAdresse; private DevExpress.XtraReports.UI.FormattingRule ruleNoticeNull; private DevExpress.XtraReports.UI.GroupFooterBand GroupFooter1; - private DevExpress.XtraReports.UI.XRLabel xrLabel10; - private DevExpress.XtraReports.UI.XRLabel xrLabel1; - private DevExpress.XtraReports.UI.XRLabel xrLabel6; - private DevExpress.XtraReports.UI.XRTableCell xrTableCell7; - private DevExpress.XtraReports.UI.XRTableCell xrTableCell10; private DevExpress.XtraReports.UI.XRTable xrTable1; private DevExpress.XtraReports.UI.XRTableRow xrTableRow6; private DevExpress.XtraReports.UI.XRTableCell xrTableCell3; - private DevExpress.XtraReports.UI.XRTableCell xrTableCell9; private DevExpress.XtraReports.UI.XRTableCell xrTableCell11; + private DevExpress.XtraReports.UI.XRLabel xrLabel4; + private DevExpress.XtraReports.UI.XRLabel xrLabel7; + private DevExpress.XtraReports.UI.XRLabel xrLabel9; + private DevExpress.XtraReports.UI.XRLabel xrLabel11; + private DevExpress.XtraReports.UI.XRLabel xrLabel12; + private DevExpress.XtraReports.UI.XRLabel xrLabel13; + private DevExpress.XtraReports.UI.XRLabel xrLabel17; + private DevExpress.XtraReports.UI.XRLabel xrLabel16; + private DevExpress.XtraReports.UI.XRLabel xrLabel14; + private DevExpress.XtraReports.UI.XRLabel xrLabel15; + private DevExpress.XtraReports.UI.XRLabel xrLabel18; + private DevExpress.XtraReports.UI.XRLabel xrLabel2; + private DevExpress.XtraReports.UI.XRPictureBox xrPictureBox1; + private DevExpress.XtraReports.UI.XRLabel xrLabel19; + private DevExpress.XtraReports.UI.XRLabel xrLabel3; + private DevExpress.XtraReports.UI.XRLabel xrLabel8; + private DevExpress.XtraReports.UI.XRTable xrTable3; + private DevExpress.XtraReports.UI.XRTableRow xrTableRow10; + private DevExpress.XtraReports.UI.XRTableCell xrTableCell6; + private DevExpress.XtraReports.UI.XRTableRow xrTableRow14; + private DevExpress.XtraReports.UI.XRTableCell xrTableCell1; + private DevExpress.XtraReports.UI.XRLabel xrLabel5; + private DevExpress.XtraReports.UI.XRLabel xrLabel6; + private DevExpress.XtraReports.UI.XRTableRow xrTableRow1; + private DevExpress.XtraReports.UI.XRTableCell xrTableCell2; + private DevExpress.XtraReports.UI.XRTableCell xrTableCell4; } } diff --git a/ReportImp/Wabe/RechnungBezirk.resx b/ReportImp/Wabe/RechnungBezirk.resx index d58980a38..bc4bafdf8 100644 --- a/ReportImp/Wabe/RechnungBezirk.resx +++ b/ReportImp/Wabe/RechnungBezirk.resx @@ -117,4 +117,7 @@ System.Resources.ResXResourceWriter, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + 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 + \ No newline at end of file diff --git a/ReportImp/Wabe/ServiceInvoiceReport.Designer.cs b/ReportImp/Wabe/ServiceInvoiceReport.Designer.cs index 1094ebce6..9cec40b4b 100644 --- a/ReportImp/Wabe/ServiceInvoiceReport.Designer.cs +++ b/ReportImp/Wabe/ServiceInvoiceReport.Designer.cs @@ -138,7 +138,7 @@ namespace BeWo.Report.DefaultReports // // topMarginBand1 // - this.topMarginBand1.HeightF = 233.5417F; + this.topMarginBand1.HeightF = 191.875F; this.topMarginBand1.Name = "topMarginBand1"; // // bottomMarginBand1 @@ -165,14 +165,14 @@ namespace BeWo.Report.DefaultReports this.xrLabel2, this.xrLabel8}); this.Page1.Font = new DevExpress.Drawing.DXFont("Arial", 10F); - this.Page1.HeightF = 444.8749F; + this.Page1.HeightF = 490.7082F; this.Page1.Name = "Page1"; this.Page1.StylePriority.UseFont = false; // // xrTable3 // this.xrTable3.Font = new DevExpress.Drawing.DXFont("Arial", 11F); - this.xrTable3.LocationFloat = new DevExpress.Utils.PointFloat(0F, 404.8749F); + this.xrTable3.LocationFloat = new DevExpress.Utils.PointFloat(0F, 450.7082F); this.xrTable3.Name = "xrTable3"; this.xrTable3.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 96F); this.xrTable3.Rows.AddRange(new DevExpress.XtraReports.UI.XRTableRow[] { @@ -277,7 +277,7 @@ namespace BeWo.Report.DefaultReports // xrTable1 // this.xrTable1.Font = new DevExpress.Drawing.DXFont("Arial", 11F); - this.xrTable1.LocationFloat = new DevExpress.Utils.PointFloat(0F, 324.8749F); + this.xrTable1.LocationFloat = new DevExpress.Utils.PointFloat(0F, 370.7083F); this.xrTable1.Name = "xrTable1"; this.xrTable1.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 96F); this.xrTable1.Rows.AddRange(new DevExpress.XtraReports.UI.XRTableRow[] { @@ -432,7 +432,7 @@ namespace BeWo.Report.DefaultReports this.xrLabel4.BackColor = System.Drawing.Color.Transparent; this.xrLabel4.CanShrink = true; this.xrLabel4.Font = new DevExpress.Drawing.DXFont("Arial", 11F); - this.xrLabel4.LocationFloat = new DevExpress.Utils.PointFloat(0F, 269F); + this.xrLabel4.LocationFloat = new DevExpress.Utils.PointFloat(0F, 314.8333F); this.xrLabel4.Name = "xrLabel4"; this.xrLabel4.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F); this.xrLabel4.SizeF = new System.Drawing.SizeF(650F, 20F); @@ -445,7 +445,7 @@ namespace BeWo.Report.DefaultReports // this.xrLabel12.Font = new DevExpress.Drawing.DXFont("Arial", 11F, DevExpress.Drawing.DXFontStyle.Bold); this.xrLabel12.ForeColor = System.Drawing.Color.Black; - this.xrLabel12.LocationFloat = new DevExpress.Utils.PointFloat(0F, 202.9999F); + this.xrLabel12.LocationFloat = new DevExpress.Utils.PointFloat(0F, 248.8332F); this.xrLabel12.Name = "xrLabel12"; this.xrLabel12.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F); this.xrLabel12.SizeF = new System.Drawing.SizeF(195.9023F, 23F); @@ -459,7 +459,7 @@ namespace BeWo.Report.DefaultReports // this.xrLabel13.Font = new DevExpress.Drawing.DXFont("Arial", 11F, DevExpress.Drawing.DXFontStyle.Bold); this.xrLabel13.ForeColor = System.Drawing.Color.Black; - this.xrLabel13.LocationFloat = new DevExpress.Utils.PointFloat(195.9023F, 203F); + this.xrLabel13.LocationFloat = new DevExpress.Utils.PointFloat(195.9021F, 248.8334F); this.xrLabel13.Name = "xrLabel13"; this.xrLabel13.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F); this.xrLabel13.SizeF = new System.Drawing.SizeF(142.0001F, 23F); @@ -473,7 +473,7 @@ namespace BeWo.Report.DefaultReports // this.xrLabel16.Font = new DevExpress.Drawing.DXFont("Arial", 11F, DevExpress.Drawing.DXFontStyle.Bold); this.xrLabel16.ForeColor = System.Drawing.Color.Black; - this.xrLabel16.LocationFloat = new DevExpress.Utils.PointFloat(337.9023F, 202.9999F); + this.xrLabel16.LocationFloat = new DevExpress.Utils.PointFloat(337.9022F, 248.8332F); this.xrLabel16.Name = "xrLabel16"; this.xrLabel16.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F); this.xrLabel16.SizeF = new System.Drawing.SizeF(123.4581F, 23F); @@ -487,7 +487,7 @@ namespace BeWo.Report.DefaultReports // this.xrLabel17.Font = new DevExpress.Drawing.DXFont("Arial", 11F, DevExpress.Drawing.DXFontStyle.Bold); this.xrLabel17.ForeColor = System.Drawing.Color.Black; - this.xrLabel17.LocationFloat = new DevExpress.Utils.PointFloat(461.3604F, 202.9999F); + this.xrLabel17.LocationFloat = new DevExpress.Utils.PointFloat(461.3603F, 248.8332F); this.xrLabel17.Name = "xrLabel17"; this.xrLabel17.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F); this.xrLabel17.SizeF = new System.Drawing.SizeF(236.2083F, 23F); @@ -501,7 +501,7 @@ namespace BeWo.Report.DefaultReports // this.xrLabel11.Font = new DevExpress.Drawing.DXFont("Arial", 11F, DevExpress.Drawing.DXFontStyle.Bold); this.xrLabel11.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(150)))), ((int)(((byte)(150)))), ((int)(((byte)(150))))); - this.xrLabel11.LocationFloat = new DevExpress.Utils.PointFloat(461.3604F, 179.9999F); + this.xrLabel11.LocationFloat = new DevExpress.Utils.PointFloat(461.3603F, 225.8332F); this.xrLabel11.Name = "xrLabel11"; this.xrLabel11.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F); this.xrLabel11.SizeF = new System.Drawing.SizeF(236.2083F, 23F); @@ -515,7 +515,7 @@ namespace BeWo.Report.DefaultReports // this.xrLabel10.Font = new DevExpress.Drawing.DXFont("Arial", 11F, DevExpress.Drawing.DXFontStyle.Bold); this.xrLabel10.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(150)))), ((int)(((byte)(150)))), ((int)(((byte)(150))))); - this.xrLabel10.LocationFloat = new DevExpress.Utils.PointFloat(337.9023F, 180F); + this.xrLabel10.LocationFloat = new DevExpress.Utils.PointFloat(337.9022F, 225.8334F); this.xrLabel10.Name = "xrLabel10"; this.xrLabel10.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F); this.xrLabel10.SizeF = new System.Drawing.SizeF(123.4581F, 23F); @@ -529,7 +529,7 @@ namespace BeWo.Report.DefaultReports // this.xrLabel7.Font = new DevExpress.Drawing.DXFont("Arial", 11F, DevExpress.Drawing.DXFontStyle.Bold); this.xrLabel7.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(150)))), ((int)(((byte)(150)))), ((int)(((byte)(150))))); - this.xrLabel7.LocationFloat = new DevExpress.Utils.PointFloat(195.9023F, 180F); + this.xrLabel7.LocationFloat = new DevExpress.Utils.PointFloat(195.9021F, 225.8334F); this.xrLabel7.Name = "xrLabel7"; this.xrLabel7.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F); this.xrLabel7.SizeF = new System.Drawing.SizeF(142.0001F, 23F); @@ -543,7 +543,7 @@ namespace BeWo.Report.DefaultReports // this.xrLabel6.Font = new DevExpress.Drawing.DXFont("Arial", 11F, DevExpress.Drawing.DXFontStyle.Bold); this.xrLabel6.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(150)))), ((int)(((byte)(150)))), ((int)(((byte)(150))))); - this.xrLabel6.LocationFloat = new DevExpress.Utils.PointFloat(0F, 180F); + this.xrLabel6.LocationFloat = new DevExpress.Utils.PointFloat(0F, 225.8334F); this.xrLabel6.Name = "xrLabel6"; this.xrLabel6.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F); this.xrLabel6.SizeF = new System.Drawing.SizeF(195.9023F, 23F); @@ -570,7 +570,7 @@ namespace BeWo.Report.DefaultReports this.xrLabel3.BackColor = System.Drawing.Color.Transparent; this.xrLabel3.CanShrink = true; this.xrLabel3.Font = new DevExpress.Drawing.DXFont("Arial", 11F); - this.xrLabel3.LocationFloat = new DevExpress.Utils.PointFloat(0F, 249F); + this.xrLabel3.LocationFloat = new DevExpress.Utils.PointFloat(0F, 294.8333F); this.xrLabel3.Name = "xrLabel3"; this.xrLabel3.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F); this.xrLabel3.SizeF = new System.Drawing.SizeF(650F, 20F); @@ -584,7 +584,7 @@ namespace BeWo.Report.DefaultReports this.xrLabel2.BackColor = System.Drawing.Color.Transparent; this.xrLabel2.CanShrink = true; this.xrLabel2.Font = new DevExpress.Drawing.DXFont("Arial", 11F); - this.xrLabel2.LocationFloat = new DevExpress.Utils.PointFloat(0F, 288.9999F); + this.xrLabel2.LocationFloat = new DevExpress.Utils.PointFloat(0F, 334.8333F); this.xrLabel2.Name = "xrLabel2"; this.xrLabel2.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F); this.xrLabel2.SizeF = new System.Drawing.SizeF(650F, 20F); @@ -598,7 +598,7 @@ namespace BeWo.Report.DefaultReports this.xrLabel8.DataBindings.AddRange(new DevExpress.XtraReports.UI.XRBinding[] { new DevExpress.XtraReports.UI.XRBinding("Text", null, "InvoiceDate")}); this.xrLabel8.Font = new DevExpress.Drawing.DXFont("Arial", 10F); - this.xrLabel8.LocationFloat = new DevExpress.Utils.PointFloat(461.3604F, 226F); + this.xrLabel8.LocationFloat = new DevExpress.Utils.PointFloat(461.3603F, 271.8333F); this.xrLabel8.Name = "xrLabel8"; this.xrLabel8.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F); this.xrLabel8.SizeF = new System.Drawing.SizeF(236.2083F, 23F); @@ -879,7 +879,7 @@ namespace BeWo.Report.DefaultReports // xrTableCell47 // this.xrTableCell47.BorderColor = System.Drawing.Color.Black; - this.xrTableCell47.Borders = DevExpress.XtraPrinting.BorderSide.Bottom; + this.xrTableCell47.Borders = ((DevExpress.XtraPrinting.BorderSide)((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.Font = new DevExpress.Drawing.DXFont("Arial", 11F); @@ -983,7 +983,7 @@ namespace BeWo.Report.DefaultReports this.Font = new DevExpress.Drawing.DXFont("Verdana", 10F); this.FormattingRuleSheet.AddRange(new DevExpress.XtraReports.UI.FormattingRule[] { this.ruleRateFactorNull}); - this.Margins = new DevExpress.Drawing.DXMargins(75F, 50F, 233.5417F, 50F); + this.Margins = new DevExpress.Drawing.DXMargins(82.29165F, 39F, 191.875F, 50F); this.PageHeight = 1169; this.PageWidth = 827; this.PaperKind = DevExpress.Drawing.Printing.DXPaperKind.A4; diff --git a/ReportImp/Wabe/Wabe.csproj b/ReportImp/Wabe/Wabe.csproj index 1d0e00c01..d8a681823 100644 --- a/ReportImp/Wabe/Wabe.csproj +++ b/ReportImp/Wabe/Wabe.csproj @@ -74,9 +74,9 @@ RechnungBezirk.cs - + - + Component