diff --git a/Report/ReportObjects/BudgetnachweisAnhangRO.cs b/Report/ReportObjects/BudgetnachweisAnhangRO.cs index 6ddc34e28..70b5b9915 100644 --- a/Report/ReportObjects/BudgetnachweisAnhangRO.cs +++ b/Report/ReportObjects/BudgetnachweisAnhangRO.cs @@ -25,8 +25,10 @@ namespace BeWo.Report.ReportObjects public decimal SummeFaktorMinuten { get; set; } public decimal SummeGesamtMinuten { get; set; } public decimal SummeFLStunden { get; set; } + public decimal SummeFehlkontakte { get; set; } public decimal SummeFaktorStunden { get; set; } public decimal SummeGesamtStunden { get; set; } + public decimal SummeGesamtStundenMitFK { get; set; } public void Create(Settlement2DC dc) @@ -100,9 +102,6 @@ namespace BeWo.Report.ReportObjects start = cr.EndDate.Value; } - - - var span = new DateTimeSpan(); span.StartDateTime = dc.AccountingPeriodStart.Value; span.EndDateTime = dc.AccountingPeriodEnd.Value.AddDays(1).AddTicks(-1); @@ -123,7 +122,8 @@ namespace BeWo.Report.ReportObjects zeile.ServiceRecords = new List(); zeile.Monat = monat; zeile.SummeMinuten = 0; - + zeile.SummeFehlkontakte = 0; + foreach (var e in this.Entgeltzeitraeume) { if (e.Start <= monat && monat <= e.Ende) @@ -158,17 +158,20 @@ namespace BeWo.Report.ReportObjects monat2Zeile[key].ServiceRecords.Add(srDc); decimal minuten = sr.RoundedDuration; - decimal prozent = sr.ServiceDescription.ServiceCategory.ProzentAbrechnung; + if (sr.ServiceDescription.ProzentAbrechnung.HasValue) { prozent = sr.ServiceDescription.ProzentAbrechnung.Value; } minuten *= (prozent / 100); - - - monat2Zeile[key].SummeMinuten += minuten; + if (sr.ServiceDescription.Name.ToLower().Contains("fehlkontakt")) + { + monat2Zeile[key].SummeFehlkontakte += Math.Round(minuten / 60, 2, MidpointRounding.AwayFromZero); + } + else + monat2Zeile[key].SummeMinuten += minuten; foreach (var e in this.Entgeltzeitraeume) @@ -176,7 +179,12 @@ namespace BeWo.Report.ReportObjects if (e.Start <= sr.Start.Value.Date && sr.Start.Value.Date <= e.Ende) { e.ServiceRecords.Add(srDc); - e.SummeFLMinuten += minuten; + if (sr.ServiceDescription.Name.ToLower().Contains("fehlkontakt")) + { + e.SummeFehlkontakte += Math.Round(minuten / 60, 2, MidpointRounding.AwayFromZero); + } + else + e.SummeFLMinuten += minuten; } } } @@ -192,29 +200,23 @@ namespace BeWo.Report.ReportObjects e.SummeFLStunden = Math.Round(e.SummeFLMinuten / 60, 2, MidpointRounding.AwayFromZero); e.SummeGesamtStunden = Math.Round(((this.RateFactor + 100) / 100) * e.SummeFLStunden, 2, MidpointRounding.AwayFromZero); e.SummeFaktorStunden = e.SummeGesamtStunden - e.SummeFLStunden; - - + e.SummeGesamtStundenMitFK = e.SummeFehlkontakte + e.SummeGesamtStunden; //e.SummeFaktorMinuten = (this.RateFactor / 100) * e.SummeFLMinuten; e.SummeFaktorMinuten = e.SummeFaktorStunden * 60; e.SummeGesamtMinuten = e.SummeFaktorMinuten + e.SummeFLMinuten; - - //e.SummeFaktorStunden = e.SummeFaktorMinuten / 60; - - //e.SummeGesamtStunden = e.SummeGesamtMinuten / 60; this.SummeFLMinuten += e.SummeFLMinuten; this.SummeFaktorMinuten += e.SummeFaktorMinuten; this.SummeGesamtMinuten += e.SummeGesamtMinuten; - this.SummeFLStunden += e.SummeFLStunden; this.SummeFaktorStunden += e.SummeFaktorStunden; this.SummeGesamtStunden += e.SummeGesamtStunden; + this.SummeFehlkontakte += e.SummeFehlkontakte; + this.SummeGesamtStundenMitFK += e.SummeGesamtStundenMitFK; } - - } public virtual IList GetServiceRecords(CostBearer2SupportConcept cb2sc) @@ -228,9 +230,9 @@ namespace BeWo.Report.ReportObjects public List ServiceRecords { get; set; } public DateTime Monat { get; set; } public decimal? SummeMinuten { get; set; } + public decimal? SummeFehlkontakte { get; set; } public int Entgeltzeitraum { get; set; } public decimal? Betrag { get; set; } - } public class Entgeltzeitraum @@ -243,8 +245,10 @@ namespace BeWo.Report.ReportObjects public decimal SummeFaktorMinuten { get; set; } public decimal SummeGesamtMinuten { get; set; } public decimal SummeFLStunden { get; set; } + public decimal SummeFehlkontakte { get; set; } public decimal SummeFaktorStunden { get; set; } public decimal SummeGesamtStunden { get; set; } + public decimal SummeGesamtStundenMitFK { get; set; } public int Index { get; set; } } diff --git a/ReportImp/LebenshilfeBadKreuznach/Invoicing/CustomInvoiceCreation.cs b/ReportImp/LebenshilfeBadKreuznach/Invoicing/CustomInvoiceCreation.cs new file mode 100644 index 000000000..c31117a6f --- /dev/null +++ b/ReportImp/LebenshilfeBadKreuznach/Invoicing/CustomInvoiceCreation.cs @@ -0,0 +1,36 @@ +using System; +using System.Collections.Generic; +using System.Linq; +using BeWo.Data.Entities; +using BeWo.Service.DCEntityMapper; +using BeWo.Service.Invoicing; +using BeWo.Service.Plugins; +using BS.Shared; +using BS.Shared.Core; +using BS.Shared.DataContracts; +using BS.Shared.DataContracts.Compact; +using BS.Shared.Extensions; +using BS.Shared.Services; + +namespace LebenshilfeBadKreuznach.Invoicing +{ + public class CustomInvoiceCreation : InvoiceCreation + { + public override InvoiceItem CreateInvoiceItem(ServiceRecordDC iServiceRecord, SupportConceptApprovalPeriod scap, Calculations calc) + { + var ii = base.CreateInvoiceItem(iServiceRecord, scap, calc); + + if (!ii.RateFactor.HasValue) + { + var rateFactor = iServiceRecord.CostBearer.CostRatePeriods.GetCostRatePeriodForDate(CostRatePeriodType.RateFactor, iServiceRecord.Start.Value); + if (rateFactor != null && rateFactor.CostRateValue.HasValue) + { + ii.RateFactor = rateFactor.CostRateValue; + //ii.UnitCount = ii.UnitCount.Value * ((100 + ii.RateFactor.Value) / 100); + //ii.GrossAmountTotal = ii.UnitCount * (ii.AmountPerUnit ?? 0); + } + } + return ii; + } + } +} diff --git a/ReportImp/LebenshilfeBadKreuznach/Invoicing/CustomInvoiceFactory.cs b/ReportImp/LebenshilfeBadKreuznach/Invoicing/CustomInvoiceFactory.cs new file mode 100644 index 000000000..130aab168 --- /dev/null +++ b/ReportImp/LebenshilfeBadKreuznach/Invoicing/CustomInvoiceFactory.cs @@ -0,0 +1,18 @@ +using System; +using System.Collections.Generic; +using BeWo.Data.Entities; +using BeWo.Service.Invoicing; +using BS.Shared.DataContracts; +using BS.Shared.DataContracts.Compact; + +namespace LebenshilfeBadKreuznach.Invoicing +{ + public class CustomInvoiceFactory : InvoiceFactory + { + + public override InvoiceCreation CreateInvoiceCreator(string specificId, string tenant, Dictionary> supportConcepts2ServiceRecords) + { + return new CustomInvoiceCreation(); + } + } +} diff --git a/ReportImp/LebenshilfeBadKreuznach/LebenshilfeBadKreuznach.csproj b/ReportImp/LebenshilfeBadKreuznach/LebenshilfeBadKreuznach.csproj new file mode 100644 index 000000000..09d87aafa --- /dev/null +++ b/ReportImp/LebenshilfeBadKreuznach/LebenshilfeBadKreuznach.csproj @@ -0,0 +1,74 @@ + + + + + Debug + AnyCPU + {FBC007FD-9185-44DB-BB18-F16B1F288A63} + Library + Properties + LebenshilfeBadKreuznach + 1253359817_Reports + v4.7.2 + 512 + + + + true + full + false + ..\..\Host\bin\ + DEBUG;TRACE + prompt + 4 + + + pdbonly + true + ..\..\Host\bin\ + TRACE + prompt + 4 + + + + + + + + + + + + + + + + + + + + + + + + + + {B0D73E3D-4AE7-4024-93A6-DB1F46D7CCEE} + Data + + + {40d8b312-ea64-49e3-a31a-5e57ed4d5654} + Report + + + {094331c3-ecee-4c89-bbfd-4c9ded89f0ef} + Service + + + {2f50b83d-a3f0-4ec4-979a-3f9b7e3d8ed4} + Shared + + + + \ No newline at end of file diff --git a/ReportImp/LebenshilfeBadKreuznach/Properties/AssemblyInfo.cs b/ReportImp/LebenshilfeBadKreuznach/Properties/AssemblyInfo.cs new file mode 100644 index 000000000..930888dd6 --- /dev/null +++ b/ReportImp/LebenshilfeBadKreuznach/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("KundeXyz")] +[assembly: AssemblyDescription("")] +[assembly: AssemblyConfiguration("")] +[assembly: AssemblyCompany("")] +[assembly: AssemblyProduct("KundeXyz")] +[assembly: AssemblyCopyright("Copyright © 2020")] +[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/SynpraxReports/BudgetnachweisAnhang.Designer.cs b/ReportImp/SynpraxReports/BudgetnachweisAnhang.Designer.cs index 34d01dcce..80480b418 100644 --- a/ReportImp/SynpraxReports/BudgetnachweisAnhang.Designer.cs +++ b/ReportImp/SynpraxReports/BudgetnachweisAnhang.Designer.cs @@ -32,7 +32,9 @@ DevExpress.XtraReports.UI.XRSummary xrSummary1 = new DevExpress.XtraReports.UI.XRSummary(); DevExpress.XtraReports.UI.XRSummary xrSummary2 = new DevExpress.XtraReports.UI.XRSummary(); DevExpress.XtraReports.UI.XRSummary xrSummary3 = new DevExpress.XtraReports.UI.XRSummary(); + DevExpress.XtraReports.UI.XRSummary xrSummary4 = new DevExpress.XtraReports.UI.XRSummary(); System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(BudgetnachweisAnhang)); + DevExpress.XtraReports.UI.XRSummary xrSummary5 = new DevExpress.XtraReports.UI.XRSummary(); this.Detail = new DevExpress.XtraReports.UI.DetailBand(); this.xrTable1 = new DevExpress.XtraReports.UI.XRTable(); this.xrTableRow1 = new DevExpress.XtraReports.UI.XRTableRow(); @@ -81,7 +83,6 @@ this.xrTableCell31 = new DevExpress.XtraReports.UI.XRTableCell(); this.xrTableCell32 = new DevExpress.XtraReports.UI.XRTableCell(); this.xrTableCell33 = new DevExpress.XtraReports.UI.XRTableCell(); - this.xrTableCell34 = new DevExpress.XtraReports.UI.XRTableCell(); this.Einzahlungstextsichtbarkeitsformatierungsregel = new DevExpress.XtraReports.UI.FormattingRule(); this.Auszahlungstextsichtbarkeitsformatierungsregel = new DevExpress.XtraReports.UI.FormattingRule(); this.xrTable3 = new DevExpress.XtraReports.UI.XRTable(); @@ -125,7 +126,30 @@ this.xrTableCell50 = new DevExpress.XtraReports.UI.XRTableCell(); this.xrTableCell51 = new DevExpress.XtraReports.UI.XRTableCell(); this.xrTableCell52 = new DevExpress.XtraReports.UI.XRTableCell(); + this.xrTableCell54 = new DevExpress.XtraReports.UI.XRTableCell(); + this.xrTableCell55 = new DevExpress.XtraReports.UI.XRTableCell(); + this.xrTableCell56 = new DevExpress.XtraReports.UI.XRTableCell(); + this.xrTableCell57 = new DevExpress.XtraReports.UI.XRTableCell(); + this.xrTableCell58 = new DevExpress.XtraReports.UI.XRTableCell(); + this.xrTableCell59 = new DevExpress.XtraReports.UI.XRTableCell(); + this.xrTableCell60 = new DevExpress.XtraReports.UI.XRTableCell(); + this.xrTableCell34 = new DevExpress.XtraReports.UI.XRTableCell(); + this.xrTableCell61 = new DevExpress.XtraReports.UI.XRTableCell(); + this.xrTableCell62 = new DevExpress.XtraReports.UI.XRTableCell(); + this.xrTableCell63 = new DevExpress.XtraReports.UI.XRTableCell(); + this.xrTableRow10 = new DevExpress.XtraReports.UI.XRTableRow(); + this.xrTableCell64 = new DevExpress.XtraReports.UI.XRTableCell(); + this.xrTableCell65 = new DevExpress.XtraReports.UI.XRTableCell(); + this.xrTableCell66 = new DevExpress.XtraReports.UI.XRTableCell(); + this.xrTableCell67 = new DevExpress.XtraReports.UI.XRTableCell(); + this.xrTableCell68 = new DevExpress.XtraReports.UI.XRTableCell(); + this.xrTableCell69 = new DevExpress.XtraReports.UI.XRTableCell(); + this.xrTableCell70 = new DevExpress.XtraReports.UI.XRTableCell(); + this.xrTableCell71 = new DevExpress.XtraReports.UI.XRTableCell(); + this.xrLine3 = new DevExpress.XtraReports.UI.XRLine(); + this.xrLine4 = new DevExpress.XtraReports.UI.XRLine(); this.bindingSource1 = new System.Windows.Forms.BindingSource(this.components); + this.GesamtStd = new DevExpress.XtraReports.UI.CalculatedField(); ((System.ComponentModel.ISupportInitialize)(this.xrTable1)).BeginInit(); ((System.ComponentModel.ISupportInitialize)(this.xrTable2)).BeginInit(); ((System.ComponentModel.ISupportInitialize)(this.xrTable4)).BeginInit(); @@ -155,7 +179,7 @@ this.xrTable1.Name = "xrTable1"; this.xrTable1.Rows.AddRange(new DevExpress.XtraReports.UI.XRTableRow[] { this.xrTableRow1}); - this.xrTable1.SizeF = new System.Drawing.SizeF(725F, 40F); + this.xrTable1.SizeF = new System.Drawing.SizeF(689.9998F, 40F); this.xrTable1.StylePriority.UseBorders = false; this.xrTable1.StylePriority.UseFont = false; this.xrTable1.StylePriority.UseTextAlignment = false; @@ -173,7 +197,9 @@ this.xrTableCell7, this.xrTableCell24, this.xrTableCell21, - this.xrTableCell3}); + this.xrTableCell54, + this.xrTableCell3, + this.xrTableCell57}); this.xrTableRow1.Name = "xrTableRow1"; this.xrTableRow1.StylePriority.UseBorders = false; this.xrTableRow1.Weight = 0.95999988281251425D; @@ -188,7 +214,7 @@ this.xrTableCell9.StylePriority.UseTextAlignment = false; this.xrTableCell9.Text = "Anzahl\r\nMonat"; this.xrTableCell9.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleCenter; - this.xrTableCell9.Weight = 0.25384615971491892D; + this.xrTableCell9.Weight = 0.20602031758567113D; // // xrTableCell22 // @@ -198,7 +224,7 @@ this.xrTableCell22.StylePriority.UsePadding = false; this.xrTableCell22.StylePriority.UseTextAlignment = false; this.xrTableCell22.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleCenter; - this.xrTableCell22.Weight = 0.092307695242074855D; + this.xrTableCell22.Weight = 0.074916364309996777D; // // xrTableCell1 // @@ -211,7 +237,7 @@ this.xrTableCell1.StylePriority.UseTextAlignment = false; this.xrTableCell1.Text = "Entgeltzeit-\r\nraum"; this.xrTableCell1.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleCenter; - this.xrTableCell1.Weight = 0.36923077216515177D; + this.xrTableCell1.Weight = 0.29966554846100885D; // // xrTableCell14 // @@ -225,7 +251,7 @@ this.xrTableCell14.StylePriority.UsePadding = false; this.xrTableCell14.StylePriority.UseTextAlignment = false; this.xrTableCell14.Text = "Monat"; - this.xrTableCell14.Weight = 0.34615384908822872D; + this.xrTableCell14.Weight = 0.29966554852367611D; // // xrTableCell2 // @@ -237,7 +263,7 @@ this.xrTableCell2.StylePriority.UseTextAlignment = false; this.xrTableCell2.Text = "Jahr"; this.xrTableCell2.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleCenter; - this.xrTableCell2.Weight = 0.3461538490882286D; + this.xrTableCell2.Weight = 0.29966555056498545D; // // xrTableCell23 // @@ -246,7 +272,7 @@ this.xrTableCell23.StylePriority.UseBorders = false; this.xrTableCell23.StylePriority.UseTextAlignment = false; this.xrTableCell23.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleCenter; - this.xrTableCell23.Weight = 0.2307692160973181D; + this.xrTableCell23.Weight = 0.074916383071270645D; // // xrTableCell7 // @@ -258,7 +284,7 @@ this.xrTableCell7.StylePriority.UseTextAlignment = false; this.xrTableCell7.Text = "Erfassung\r\nD-FLMin"; this.xrTableCell7.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleCenter; - this.xrTableCell7.Weight = 0.34615383148193346D; + this.xrTableCell7.Weight = 0.31839465449523224D; // // xrTableCell24 // @@ -269,7 +295,7 @@ this.xrTableCell24.StylePriority.UsePadding = false; this.xrTableCell24.StylePriority.UseTextAlignment = false; this.xrTableCell24.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleRight; - this.xrTableCell24.Weight = 0.34615384908822872D; + this.xrTableCell24.Weight = 0.14983277336240891D; // // xrTableCell21 // @@ -282,18 +308,19 @@ this.xrTableCell21.StylePriority.UseTextAlignment = false; this.xrTableCell21.Text = "=D-FLS"; this.xrTableCell21.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleRight; - this.xrTableCell21.Weight = 0.34615384908822866D; + this.xrTableCell21.Weight = 0.24347827679363632D; // // xrTableCell3 // - this.xrTableCell3.Borders = ((DevExpress.XtraPrinting.BorderSide)((DevExpress.XtraPrinting.BorderSide.Top | DevExpress.XtraPrinting.BorderSide.Right))); + this.xrTableCell3.Borders = DevExpress.XtraPrinting.BorderSide.Top; this.xrTableCell3.Name = "xrTableCell3"; this.xrTableCell3.Padding = new DevExpress.XtraPrinting.PaddingInfo(3, 0, 0, 0, 100F); this.xrTableCell3.StylePriority.UseBorders = false; this.xrTableCell3.StylePriority.UsePadding = false; this.xrTableCell3.StylePriority.UseTextAlignment = false; - this.xrTableCell3.Text = "Fehlkontakte"; - this.xrTableCell3.Weight = 0.66923077509953455D; + this.xrTableCell3.Text = "Fehl-kontakte"; + this.xrTableCell3.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleCenter; + this.xrTableCell3.Weight = 0.29966555480803031D; // // TopMargin // @@ -337,7 +364,7 @@ this.xrTable2.Name = "xrTable2"; this.xrTable2.Rows.AddRange(new DevExpress.XtraReports.UI.XRTableRow[] { this.xrTableRow2}); - this.xrTable2.SizeF = new System.Drawing.SizeF(725F, 20F); + this.xrTable2.SizeF = new System.Drawing.SizeF(689.9998F, 20F); this.xrTable2.StylePriority.UseBorders = false; this.xrTable2.StylePriority.UseFont = false; this.xrTable2.StylePriority.UseTextAlignment = false; @@ -355,7 +382,9 @@ this.xrTableCell26, this.xrTableCell27, this.xrTableCell28, - this.xrTableCell29}); + this.xrTableCell55, + this.xrTableCell29, + this.xrTableCell58}); this.xrTableRow2.Name = "xrTableRow2"; this.xrTableRow2.StylePriority.UseBorders = false; this.xrTableRow2.Weight = 0.47999994140625712D; @@ -412,7 +441,7 @@ this.xrTableCell8.StylePriority.UseFont = false; this.xrTableCell8.StylePriority.UsePadding = false; this.xrTableCell8.StylePriority.UseTextAlignment = false; - this.xrTableCell8.Weight = 0.34615384908822872D; + this.xrTableCell8.Weight = 0.369230772182515D; // // xrTableCell10 // @@ -425,7 +454,7 @@ this.xrTableCell10.StylePriority.UsePadding = false; this.xrTableCell10.StylePriority.UseTextAlignment = false; this.xrTableCell10.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleCenter; - this.xrTableCell10.Weight = 0.3461538490882286D; + this.xrTableCell10.Weight = 0.36923063133215428D; // // xrTableCell25 // @@ -434,7 +463,7 @@ this.xrTableCell25.StylePriority.UseBorders = false; this.xrTableCell25.StylePriority.UseTextAlignment = false; this.xrTableCell25.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleCenter; - this.xrTableCell25.Weight = 0.2307692160973181D; + this.xrTableCell25.Weight = 0.092307677531600435D; // // xrTableCell26 // @@ -449,7 +478,7 @@ this.xrTableCell26.StylePriority.UsePadding = false; this.xrTableCell26.StylePriority.UseTextAlignment = false; this.xrTableCell26.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleRight; - this.xrTableCell26.Weight = 0.34615383148193346D; + this.xrTableCell26.Weight = 0.39230753682014541D; // // xrTableCell27 // @@ -460,7 +489,7 @@ this.xrTableCell27.StylePriority.UsePadding = false; this.xrTableCell27.StylePriority.UseTextAlignment = false; this.xrTableCell27.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleRight; - this.xrTableCell27.Weight = 0.34615384908822872D; + this.xrTableCell27.Weight = 0.18461552836540141D; // // xrTableCell28 // @@ -474,17 +503,21 @@ this.xrTableCell28.StylePriority.UsePadding = false; this.xrTableCell28.StylePriority.UseTextAlignment = false; this.xrTableCell28.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleRight; - this.xrTableCell28.Weight = 0.34615384908822866D; + this.xrTableCell28.Weight = 0.30000014375001693D; // // xrTableCell29 // - this.xrTableCell29.Borders = DevExpress.XtraPrinting.BorderSide.Right; + this.xrTableCell29.Borders = ((DevExpress.XtraPrinting.BorderSide)(((DevExpress.XtraPrinting.BorderSide.Left | DevExpress.XtraPrinting.BorderSide.Top) + | DevExpress.XtraPrinting.BorderSide.Right))); + this.xrTableCell29.DataBindings.AddRange(new DevExpress.XtraReports.UI.XRBinding[] { + new DevExpress.XtraReports.UI.XRBinding("Text", null, "MonatsZeilen.SummeFehlkontakte", "{0:0.00}")}); this.xrTableCell29.Name = "xrTableCell29"; this.xrTableCell29.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 3, 2, 2, 100F); this.xrTableCell29.StylePriority.UseBorders = false; this.xrTableCell29.StylePriority.UsePadding = false; this.xrTableCell29.StylePriority.UseTextAlignment = false; - this.xrTableCell29.Weight = 0.66923077509953455D; + this.xrTableCell29.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleRight; + this.xrTableCell29.Weight = 0.36923077202624588D; // // GroupFooter1 // @@ -501,11 +534,13 @@ // // xrLabel6 // + this.xrLabel6.Borders = ((DevExpress.XtraPrinting.BorderSide)((DevExpress.XtraPrinting.BorderSide.Left | DevExpress.XtraPrinting.BorderSide.Top))); this.xrLabel6.Font = new System.Drawing.Font("Segoe UI", 9F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0))); this.xrLabel6.LocationFloat = new DevExpress.Utils.PointFloat(0F, 112F); this.xrLabel6.Name = "xrLabel6"; this.xrLabel6.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F); - this.xrLabel6.SizeF = new System.Drawing.SizeF(665.62F, 30F); + this.xrLabel6.SizeF = new System.Drawing.SizeF(689.9998F, 30.00002F); + this.xrLabel6.StylePriority.UseBorders = false; this.xrLabel6.StylePriority.UseFont = false; this.xrLabel6.StylePriority.UseForeColor = false; this.xrLabel6.StylePriority.UseTextAlignment = false; @@ -518,11 +553,11 @@ | DevExpress.XtraPrinting.BorderSide.Bottom))); this.xrLabel5.DataBindings.AddRange(new DevExpress.XtraReports.UI.XRBinding[] { new DevExpress.XtraReports.UI.XRBinding("Text", null, "RateFactor", "{0:0.0}%")}); - this.xrLabel5.LocationFloat = new DevExpress.Utils.PointFloat(505.0001F, 82.00003F); + this.xrLabel5.LocationFloat = new DevExpress.Utils.PointFloat(545.0001F, 81.99997F); this.xrLabel5.Multiline = true; this.xrLabel5.Name = "xrLabel5"; this.xrLabel5.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F); - this.xrLabel5.SizeF = new System.Drawing.SizeF(75F, 20F); + this.xrLabel5.SizeF = new System.Drawing.SizeF(80F, 20F); this.xrLabel5.StylePriority.UseBorders = false; this.xrLabel5.StylePriority.UseFont = false; this.xrLabel5.StylePriority.UseForeColor = false; @@ -534,11 +569,11 @@ this.xrLabel4.Borders = ((DevExpress.XtraPrinting.BorderSide)((((DevExpress.XtraPrinting.BorderSide.Left | DevExpress.XtraPrinting.BorderSide.Top) | DevExpress.XtraPrinting.BorderSide.Right) | DevExpress.XtraPrinting.BorderSide.Bottom))); - this.xrLabel4.LocationFloat = new DevExpress.Utils.PointFloat(505.0001F, 62.00002F); + this.xrLabel4.LocationFloat = new DevExpress.Utils.PointFloat(545.0001F, 61.99996F); 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(75F, 20F); + this.xrLabel4.SizeF = new System.Drawing.SizeF(80F, 20F); this.xrLabel4.StylePriority.UseBorders = false; this.xrLabel4.StylePriority.UseFont = false; this.xrLabel4.StylePriority.UseForeColor = false; @@ -547,11 +582,11 @@ // // xrLabel3 // - this.xrLabel3.LocationFloat = new DevExpress.Utils.PointFloat(25.83833F, 62.00002F); + this.xrLabel3.LocationFloat = new DevExpress.Utils.PointFloat(0.0001271566F, 61.99996F); this.xrLabel3.Multiline = true; this.xrLabel3.Name = "xrLabel3"; this.xrLabel3.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F); - this.xrLabel3.SizeF = new System.Drawing.SizeF(479.1617F, 40.00003F); + this.xrLabel3.SizeF = new System.Drawing.SizeF(544.9999F, 40.00003F); this.xrLabel3.StylePriority.UseFont = false; this.xrLabel3.StylePriority.UseForeColor = false; this.xrLabel3.StylePriority.UseTextAlignment = false; @@ -562,10 +597,10 @@ // xrLabel2 // this.xrLabel2.Font = new System.Drawing.Font("Segoe UI", 9F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0))); - this.xrLabel2.LocationFloat = new DevExpress.Utils.PointFloat(0F, 32F); + this.xrLabel2.LocationFloat = new DevExpress.Utils.PointFloat(0.0001271566F, 31.99997F); this.xrLabel2.Name = "xrLabel2"; this.xrLabel2.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F); - this.xrLabel2.SizeF = new System.Drawing.SizeF(665.62F, 30F); + this.xrLabel2.SizeF = new System.Drawing.SizeF(689.9999F, 30F); this.xrLabel2.StylePriority.UseFont = false; this.xrLabel2.StylePriority.UseForeColor = false; this.xrLabel2.StylePriority.UseTextAlignment = false; @@ -591,7 +626,7 @@ this.xrTable4.Rows.AddRange(new DevExpress.XtraReports.UI.XRTableRow[] { this.xrTableRow5, this.xrTableRow6}); - this.xrTable4.SizeF = new System.Drawing.SizeF(725F, 29.95387F); + this.xrTable4.SizeF = new System.Drawing.SizeF(690F, 29.95387F); this.xrTable4.StylePriority.UseBorders = false; this.xrTable4.StylePriority.UseFont = false; this.xrTable4.StylePriority.UseTextAlignment = false; @@ -604,7 +639,9 @@ this.xrTableCell36, this.xrTableCell37, this.xrTableCell38, - this.xrTableCell39}); + this.xrTableCell56, + this.xrTableCell39, + this.xrTableCell59}); this.xrTableRow5.Name = "xrTableRow5"; this.xrTableRow5.StylePriority.UseBorders = false; this.xrTableRow5.Weight = 0.47999994140625712D; @@ -621,7 +658,7 @@ this.xrTableCell35.StylePriority.UseTextAlignment = false; this.xrTableCell35.Text = "SUMME D-FLMin ="; this.xrTableCell35.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleRight; - this.xrTableCell35.Weight = 1.6384615413959209D; + this.xrTableCell35.Weight = 1.5461539898691366D; // // xrTableCell36 // @@ -641,7 +678,7 @@ xrSummary2.Running = DevExpress.XtraReports.UI.SummaryRunning.Group; this.xrTableCell36.Summary = xrSummary2; this.xrTableCell36.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleRight; - this.xrTableCell36.Weight = 0.34615383148193346D; + this.xrTableCell36.Weight = 0.39230753682014535D; // // xrTableCell37 // @@ -654,7 +691,7 @@ this.xrTableCell37.StylePriority.UseTextAlignment = false; this.xrTableCell37.Text = ": 60 ="; this.xrTableCell37.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleCenter; - this.xrTableCell37.Weight = 0.34615384908822872D; + this.xrTableCell37.Weight = 0.18461552836540141D; // // xrTableCell38 // @@ -673,11 +710,14 @@ xrSummary3.Running = DevExpress.XtraReports.UI.SummaryRunning.Group; this.xrTableCell38.Summary = xrSummary3; this.xrTableCell38.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleRight; - this.xrTableCell38.Weight = 0.34615384908822866D; + this.xrTableCell38.Weight = 0.30000014375001682D; // // xrTableCell39 // - this.xrTableCell39.Borders = DevExpress.XtraPrinting.BorderSide.Right; + this.xrTableCell39.Borders = ((DevExpress.XtraPrinting.BorderSide)(((DevExpress.XtraPrinting.BorderSide.Left | DevExpress.XtraPrinting.BorderSide.Right) + | DevExpress.XtraPrinting.BorderSide.Bottom))); + this.xrTableCell39.DataBindings.AddRange(new DevExpress.XtraReports.UI.XRBinding[] { + new DevExpress.XtraReports.UI.XRBinding("Text", null, "MonatsZeilen.SummeFehlkontakte")}); this.xrTableCell39.Font = new System.Drawing.Font("Segoe UI", 9F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0))); this.xrTableCell39.Name = "xrTableCell39"; this.xrTableCell39.Padding = new DevExpress.XtraPrinting.PaddingInfo(3, 0, 0, 0, 100F); @@ -685,7 +725,11 @@ this.xrTableCell39.StylePriority.UseFont = false; this.xrTableCell39.StylePriority.UsePadding = false; this.xrTableCell39.StylePriority.UseTextAlignment = false; - this.xrTableCell39.Weight = 0.66923077509953455D; + xrSummary4.FormatString = "{0:0.00}"; + xrSummary4.Running = DevExpress.XtraReports.UI.SummaryRunning.Report; + this.xrTableCell39.Summary = xrSummary4; + this.xrTableCell39.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleRight; + this.xrTableCell39.Weight = 0.36923077202624627D; // // xrTableRow6 // @@ -694,7 +738,7 @@ this.xrTableCell31, this.xrTableCell32, this.xrTableCell33, - this.xrTableCell34}); + this.xrTableCell60}); this.xrTableRow6.Name = "xrTableRow6"; this.xrTableRow6.Weight = 0.23999997070312854D; // @@ -748,17 +792,6 @@ this.xrTableCell33.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleRight; this.xrTableCell33.Weight = 0.34615384908822866D; // - // xrTableCell34 - // - this.xrTableCell34.Borders = ((DevExpress.XtraPrinting.BorderSide)((DevExpress.XtraPrinting.BorderSide.Right | DevExpress.XtraPrinting.BorderSide.Bottom))); - this.xrTableCell34.Font = new System.Drawing.Font("Segoe UI", 9F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0))); - this.xrTableCell34.Name = "xrTableCell34"; - this.xrTableCell34.Padding = new DevExpress.XtraPrinting.PaddingInfo(3, 0, 0, 0, 100F); - this.xrTableCell34.StylePriority.UseBorders = false; - this.xrTableCell34.StylePriority.UseFont = false; - this.xrTableCell34.StylePriority.UsePadding = false; - this.xrTableCell34.Weight = 0.66923077509953455D; - // // Einzahlungstextsichtbarkeitsformatierungsregel // this.Einzahlungstextsichtbarkeitsformatierungsregel.Condition = "[Einzahlung] == 0"; @@ -941,7 +974,7 @@ this.xrLabel8.LocationFloat = new DevExpress.Utils.PointFloat(0F, 39.99999F); this.xrLabel8.Name = "xrLabel8"; this.xrLabel8.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F); - this.xrLabel8.SizeF = new System.Drawing.SizeF(665.62F, 30F); + this.xrLabel8.SizeF = new System.Drawing.SizeF(689.9998F, 29.99999F); this.xrLabel8.StylePriority.UseFont = false; this.xrLabel8.StylePriority.UseForeColor = false; this.xrLabel8.StylePriority.UseTextAlignment = false; @@ -996,6 +1029,8 @@ this.xrTableCell41, this.xrTableCell42, this.xrTableCell43, + this.xrTableCell63, + this.xrTableCell62, this.xrTableCell44}); this.xrTableRow8.Name = "xrTableRow8"; this.xrTableRow8.StylePriority.UseBorders = false; @@ -1025,11 +1060,11 @@ this.xrTableCell41.StylePriority.UseTextAlignment = false; this.xrTableCell41.Text = "[Start!dd.MM.yyyy] bis [Ende!dd.MM.yyyy]"; this.xrTableCell41.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleLeft; - this.xrTableCell41.Weight = 1.2596164497962366D; + this.xrTableCell41.Weight = 0.93269276252159716D; // // xrTableCell42 // - this.xrTableCell42.Borders = ((DevExpress.XtraPrinting.BorderSide)((DevExpress.XtraPrinting.BorderSide.Top | DevExpress.XtraPrinting.BorderSide.Right))); + this.xrTableCell42.Borders = ((DevExpress.XtraPrinting.BorderSide)((DevExpress.XtraPrinting.BorderSide.Left | DevExpress.XtraPrinting.BorderSide.Top))); this.xrTableCell42.DataBindings.AddRange(new DevExpress.XtraReports.UI.XRBinding[] { new DevExpress.XtraReports.UI.XRBinding("Text", null, "Entgeltzeitraeume.SummeFLStunden", "{0:0.00}")}); this.xrTableCell42.Multiline = true; @@ -1039,12 +1074,11 @@ this.xrTableCell42.StylePriority.UsePadding = false; this.xrTableCell42.StylePriority.UseTextAlignment = false; this.xrTableCell42.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleRight; - this.xrTableCell42.Weight = 0.47115334730881858D; + this.xrTableCell42.Weight = 0.40484043414776094D; // // xrTableCell43 // - this.xrTableCell43.Borders = ((DevExpress.XtraPrinting.BorderSide)(((DevExpress.XtraPrinting.BorderSide.Left | DevExpress.XtraPrinting.BorderSide.Top) - | DevExpress.XtraPrinting.BorderSide.Right))); + this.xrTableCell43.Borders = ((DevExpress.XtraPrinting.BorderSide)((DevExpress.XtraPrinting.BorderSide.Left | DevExpress.XtraPrinting.BorderSide.Top))); this.xrTableCell43.DataBindings.AddRange(new DevExpress.XtraReports.UI.XRBinding[] { new DevExpress.XtraReports.UI.XRBinding("Text", null, "Entgeltzeitraeume.SummeFaktorStunden", "{0:0.00}")}); this.xrTableCell43.Name = "xrTableCell43"; @@ -1053,27 +1087,27 @@ this.xrTableCell43.StylePriority.UsePadding = false; this.xrTableCell43.StylePriority.UseTextAlignment = false; this.xrTableCell43.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleRight; - this.xrTableCell43.Weight = 0.69230769817645732D; + this.xrTableCell43.Weight = 0.39323604290301983D; // // xrTableCell44 // this.xrTableCell44.Borders = ((DevExpress.XtraPrinting.BorderSide)(((DevExpress.XtraPrinting.BorderSide.Left | DevExpress.XtraPrinting.BorderSide.Top) | DevExpress.XtraPrinting.BorderSide.Right))); this.xrTableCell44.DataBindings.AddRange(new DevExpress.XtraReports.UI.XRBinding[] { - new DevExpress.XtraReports.UI.XRBinding("Text", null, "Entgeltzeitraeume.SummeGesamtStunden", "{0:0.00}")}); + new DevExpress.XtraReports.UI.XRBinding("Text", null, "Entgeltzeitraeume.SummeGesamtStundenMitFK", "{0:0.00}")}); this.xrTableCell44.Name = "xrTableCell44"; this.xrTableCell44.Padding = new DevExpress.XtraPrinting.PaddingInfo(0, 3, 0, 0, 100F); this.xrTableCell44.StylePriority.UseBorders = false; this.xrTableCell44.StylePriority.UsePadding = false; this.xrTableCell44.StylePriority.UseTextAlignment = false; this.xrTableCell44.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleRight; - this.xrTableCell44.Weight = 0.50769175015963064D; + this.xrTableCell44.Weight = 0.50769231062669029D; // // GroupHeader1 // this.GroupHeader1.Controls.AddRange(new DevExpress.XtraReports.UI.XRControl[] { this.xrTable5}); - this.GroupHeader1.HeightF = 20F; + this.GroupHeader1.HeightF = 40F; this.GroupHeader1.KeepTogether = true; this.GroupHeader1.Name = "GroupHeader1"; // @@ -1086,8 +1120,9 @@ this.xrTable5.LocationFloat = new DevExpress.Utils.PointFloat(0F, 0F); this.xrTable5.Name = "xrTable5"; this.xrTable5.Rows.AddRange(new DevExpress.XtraReports.UI.XRTableRow[] { - this.xrTableRow7}); - this.xrTable5.SizeF = new System.Drawing.SizeF(689.9999F, 20F); + this.xrTableRow7, + this.xrTableRow10}); + this.xrTable5.SizeF = new System.Drawing.SizeF(689.9999F, 40F); this.xrTable5.StylePriority.UseBorders = false; this.xrTable5.StylePriority.UseFont = false; this.xrTable5.StylePriority.UseTextAlignment = false; @@ -1099,6 +1134,8 @@ this.xrTableCell40, this.xrTableCell46, this.xrTableCell48, + this.xrTableCell34, + this.xrTableCell61, this.xrTableCell49}); this.xrTableRow7.Name = "xrTableRow7"; this.xrTableRow7.StylePriority.UseBorders = false; @@ -1115,11 +1152,11 @@ this.xrTableCell40.StylePriority.UseTextAlignment = false; this.xrTableCell40.Text = "Entgeltzeiträume von/bis:"; this.xrTableCell40.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleLeft; - this.xrTableCell40.Weight = 1.5134620255690356D; + this.xrTableCell40.Weight = 1.1865389016958385D; // // xrTableCell46 // - this.xrTableCell46.Borders = DevExpress.XtraPrinting.BorderSide.Top; + this.xrTableCell46.Borders = ((DevExpress.XtraPrinting.BorderSide)((DevExpress.XtraPrinting.BorderSide.Left | DevExpress.XtraPrinting.BorderSide.Top))); this.xrTableCell46.Multiline = true; this.xrTableCell46.Name = "xrTableCell46"; this.xrTableCell46.Padding = new DevExpress.XtraPrinting.PaddingInfo(0, 3, 0, 0, 100F); @@ -1127,39 +1164,42 @@ this.xrTableCell46.StylePriority.UsePadding = false; this.xrTableCell46.StylePriority.UseTextAlignment = false; this.xrTableCell46.Text = "Summe D-FLS"; - this.xrTableCell46.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleRight; - this.xrTableCell46.Weight = 0.47115334730881858D; + this.xrTableCell46.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleCenter; + this.xrTableCell46.Weight = 0.40484043414776089D; // // xrTableCell48 // - this.xrTableCell48.Borders = DevExpress.XtraPrinting.BorderSide.Top; + this.xrTableCell48.Borders = ((DevExpress.XtraPrinting.BorderSide)((DevExpress.XtraPrinting.BorderSide.Left | DevExpress.XtraPrinting.BorderSide.Top))); this.xrTableCell48.Name = "xrTableCell48"; this.xrTableCell48.Padding = new DevExpress.XtraPrinting.PaddingInfo(0, 3, 0, 0, 100F); this.xrTableCell48.StylePriority.UseBorders = false; this.xrTableCell48.StylePriority.UsePadding = false; this.xrTableCell48.StylePriority.UseTextAlignment = false; - this.xrTableCell48.Text = "+ Summe M-FLS ="; - this.xrTableCell48.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleRight; - this.xrTableCell48.Weight = 0.69230769817645732D; + this.xrTableCell48.Text = "+ Summe"; + this.xrTableCell48.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleCenter; + this.xrTableCell48.Weight = 0.39323604290301972D; // // xrTableCell49 // - this.xrTableCell49.Borders = ((DevExpress.XtraPrinting.BorderSide)((DevExpress.XtraPrinting.BorderSide.Top | DevExpress.XtraPrinting.BorderSide.Right))); + this.xrTableCell49.Borders = ((DevExpress.XtraPrinting.BorderSide)(((DevExpress.XtraPrinting.BorderSide.Left | DevExpress.XtraPrinting.BorderSide.Top) + | DevExpress.XtraPrinting.BorderSide.Right))); this.xrTableCell49.Name = "xrTableCell49"; this.xrTableCell49.Padding = new DevExpress.XtraPrinting.PaddingInfo(0, 3, 0, 0, 100F); this.xrTableCell49.StylePriority.UseBorders = false; this.xrTableCell49.StylePriority.UsePadding = false; this.xrTableCell49.StylePriority.UseTextAlignment = false; - this.xrTableCell49.Text = "Gesamt-FLS"; - this.xrTableCell49.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleRight; - this.xrTableCell49.Weight = 0.50769175015963064D; + this.xrTableCell49.Text = "Gesamt-FLS und"; + this.xrTableCell49.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleCenter; + this.xrTableCell49.Weight = 0.50769174575805665D; // // GroupFooter2 // this.GroupFooter2.Controls.AddRange(new DevExpress.XtraReports.UI.XRControl[] { + this.xrLine4, + this.xrLine3, this.xrLine2, this.xrTable7}); - this.GroupFooter2.HeightF = 28.25F; + this.GroupFooter2.HeightF = 28.24999F; this.GroupFooter2.Name = "GroupFooter2"; // // xrLine2 @@ -1192,6 +1232,8 @@ this.xrTableCell47, this.xrTableCell50, this.xrTableCell51, + this.xrTableCell71, + this.xrTableCell70, this.xrTableCell52}); this.xrTableRow9.Name = "xrTableRow9"; this.xrTableRow9.StylePriority.UseBorders = false; @@ -1210,8 +1252,7 @@ // // xrTableCell47 // - this.xrTableCell47.Borders = ((DevExpress.XtraPrinting.BorderSide)((((DevExpress.XtraPrinting.BorderSide.Left | DevExpress.XtraPrinting.BorderSide.Top) - | DevExpress.XtraPrinting.BorderSide.Right) + this.xrTableCell47.Borders = ((DevExpress.XtraPrinting.BorderSide)(((DevExpress.XtraPrinting.BorderSide.Left | DevExpress.XtraPrinting.BorderSide.Top) | DevExpress.XtraPrinting.BorderSide.Bottom))); this.xrTableCell47.Multiline = true; this.xrTableCell47.Name = "xrTableCell47"; @@ -1221,12 +1262,11 @@ this.xrTableCell47.StylePriority.UseTextAlignment = false; this.xrTableCell47.Text = "Summe FLS:"; this.xrTableCell47.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleLeft; - this.xrTableCell47.Weight = 1.2596156046940732D; + this.xrTableCell47.Weight = 0.93269248082087608D; // // xrTableCell50 // - this.xrTableCell50.Borders = ((DevExpress.XtraPrinting.BorderSide)((((DevExpress.XtraPrinting.BorderSide.Left | DevExpress.XtraPrinting.BorderSide.Top) - | DevExpress.XtraPrinting.BorderSide.Right) + this.xrTableCell50.Borders = ((DevExpress.XtraPrinting.BorderSide)(((DevExpress.XtraPrinting.BorderSide.Left | DevExpress.XtraPrinting.BorderSide.Top) | DevExpress.XtraPrinting.BorderSide.Bottom))); this.xrTableCell50.DataBindings.AddRange(new DevExpress.XtraReports.UI.XRBinding[] { new DevExpress.XtraReports.UI.XRBinding("Text", null, "SummeFLStunden", "{0:0.00}")}); @@ -1237,10 +1277,12 @@ this.xrTableCell50.StylePriority.UsePadding = false; this.xrTableCell50.StylePriority.UseTextAlignment = false; this.xrTableCell50.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleRight; - this.xrTableCell50.Weight = 0.47115334730881858D; + this.xrTableCell50.Weight = 0.40484043414776089D; // // xrTableCell51 // + this.xrTableCell51.Borders = ((DevExpress.XtraPrinting.BorderSide)(((DevExpress.XtraPrinting.BorderSide.Left | DevExpress.XtraPrinting.BorderSide.Top) + | DevExpress.XtraPrinting.BorderSide.Bottom))); this.xrTableCell51.DataBindings.AddRange(new DevExpress.XtraReports.UI.XRBinding[] { new DevExpress.XtraReports.UI.XRBinding("Text", null, "SummeFaktorStunden", "{0:0.00}")}); this.xrTableCell51.Name = "xrTableCell51"; @@ -1249,24 +1291,287 @@ this.xrTableCell51.StylePriority.UsePadding = false; this.xrTableCell51.StylePriority.UseTextAlignment = false; this.xrTableCell51.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleRight; - this.xrTableCell51.Weight = 0.69230769817645732D; + this.xrTableCell51.Weight = 0.39323604290301972D; // // xrTableCell52 // + this.xrTableCell52.Borders = ((DevExpress.XtraPrinting.BorderSide)((((DevExpress.XtraPrinting.BorderSide.Left | DevExpress.XtraPrinting.BorderSide.Top) + | DevExpress.XtraPrinting.BorderSide.Right) + | DevExpress.XtraPrinting.BorderSide.Bottom))); this.xrTableCell52.DataBindings.AddRange(new DevExpress.XtraReports.UI.XRBinding[] { - new DevExpress.XtraReports.UI.XRBinding("Text", null, "SummeGesamtStunden", "{0:0.00}")}); + new DevExpress.XtraReports.UI.XRBinding("Text", null, "SummeGesamtStundenMitFK", "{0:0.00}")}); this.xrTableCell52.Name = "xrTableCell52"; this.xrTableCell52.Padding = new DevExpress.XtraPrinting.PaddingInfo(0, 3, 0, 0, 100F); this.xrTableCell52.StylePriority.UseBorders = false; this.xrTableCell52.StylePriority.UsePadding = false; this.xrTableCell52.StylePriority.UseTextAlignment = false; this.xrTableCell52.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleRight; - this.xrTableCell52.Weight = 0.50769175015963064D; + this.xrTableCell52.Weight = 0.50769160637488742D; + // + // xrTableCell54 + // + this.xrTableCell54.Borders = DevExpress.XtraPrinting.BorderSide.Top; + this.xrTableCell54.Name = "xrTableCell54"; + this.xrTableCell54.Padding = new DevExpress.XtraPrinting.PaddingInfo(3, 0, 0, 0, 100F); + this.xrTableCell54.StylePriority.UseBorders = false; + this.xrTableCell54.StylePriority.UsePadding = false; + this.xrTableCell54.Weight = 0.074916394805868092D; + // + // xrTableCell55 + // + this.xrTableCell55.Borders = DevExpress.XtraPrinting.BorderSide.Right; + this.xrTableCell55.Name = "xrTableCell55"; + this.xrTableCell55.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 3, 2, 2, 100F); + this.xrTableCell55.StylePriority.UseBorders = false; + this.xrTableCell55.StylePriority.UsePadding = false; + this.xrTableCell55.Weight = 0.092307695137895773D; + // + // xrTableCell56 + // + this.xrTableCell56.Borders = DevExpress.XtraPrinting.BorderSide.Right; + this.xrTableCell56.Font = new System.Drawing.Font("Segoe UI", 9F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0))); + this.xrTableCell56.Name = "xrTableCell56"; + this.xrTableCell56.Padding = new DevExpress.XtraPrinting.PaddingInfo(3, 0, 0, 0, 100F); + this.xrTableCell56.StylePriority.UseBorders = false; + this.xrTableCell56.StylePriority.UseFont = false; + this.xrTableCell56.StylePriority.UsePadding = false; + this.xrTableCell56.Weight = 0.092307695137895662D; + // + // xrTableCell57 + // + this.xrTableCell57.Borders = DevExpress.XtraPrinting.BorderSide.Top; + this.xrTableCell57.Name = "xrTableCell57"; + this.xrTableCell57.Padding = new DevExpress.XtraPrinting.PaddingInfo(3, 0, 0, 0, 100F); + this.xrTableCell57.StylePriority.UseBorders = false; + this.xrTableCell57.StylePriority.UsePadding = false; + this.xrTableCell57.Weight = 0.24347733897231019D; + // + // xrTableCell58 + // + this.xrTableCell58.Borders = DevExpress.XtraPrinting.BorderSide.None; + this.xrTableCell58.Name = "xrTableCell58"; + this.xrTableCell58.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 3, 2, 2, 100F); + this.xrTableCell58.StylePriority.UseBorders = false; + this.xrTableCell58.StylePriority.UsePadding = false; + this.xrTableCell58.Weight = 0.29999887594050167D; + // + // xrTableCell59 + // + this.xrTableCell59.Borders = ((DevExpress.XtraPrinting.BorderSide)(((DevExpress.XtraPrinting.BorderSide.Left | DevExpress.XtraPrinting.BorderSide.Right) + | DevExpress.XtraPrinting.BorderSide.Bottom))); + this.xrTableCell59.DataBindings.AddRange(new DevExpress.XtraReports.UI.XRBinding[] { + new DevExpress.XtraReports.UI.XRBinding("Text", null, "MonatsZeilen.GesamtStd")}); + this.xrTableCell59.Font = new System.Drawing.Font("Segoe UI", 9F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0))); + this.xrTableCell59.Name = "xrTableCell59"; + this.xrTableCell59.Padding = new DevExpress.XtraPrinting.PaddingInfo(3, 0, 0, 0, 100F); + this.xrTableCell59.StylePriority.UseBorders = false; + this.xrTableCell59.StylePriority.UseFont = false; + this.xrTableCell59.StylePriority.UsePadding = false; + this.xrTableCell59.StylePriority.UseTextAlignment = false; + xrSummary5.FormatString = "{0:0.00}"; + xrSummary5.Running = DevExpress.XtraReports.UI.SummaryRunning.Report; + this.xrTableCell59.Summary = xrSummary5; + this.xrTableCell59.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleRight; + this.xrTableCell59.Weight = 0.299999721042666D; + // + // xrTableCell60 + // + this.xrTableCell60.Borders = ((DevExpress.XtraPrinting.BorderSide)((DevExpress.XtraPrinting.BorderSide.Right | DevExpress.XtraPrinting.BorderSide.Bottom))); + this.xrTableCell60.Font = new System.Drawing.Font("Segoe UI", 9F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0))); + this.xrTableCell60.Name = "xrTableCell60"; + this.xrTableCell60.Padding = new DevExpress.XtraPrinting.PaddingInfo(3, 0, 0, 0, 100F); + this.xrTableCell60.StylePriority.UseBorders = false; + this.xrTableCell60.StylePriority.UseFont = false; + this.xrTableCell60.StylePriority.UsePadding = false; + this.xrTableCell60.Weight = 0.60191170843069752D; + // + // xrTableCell34 + // + this.xrTableCell34.Borders = ((DevExpress.XtraPrinting.BorderSide)((DevExpress.XtraPrinting.BorderSide.Left | DevExpress.XtraPrinting.BorderSide.Top))); + this.xrTableCell34.Name = "xrTableCell34"; + this.xrTableCell34.Padding = new DevExpress.XtraPrinting.PaddingInfo(0, 3, 0, 0, 100F); + 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.MiddleCenter; + this.xrTableCell34.Weight = 0.29999972123366142D; + // + // xrTableCell61 + // + this.xrTableCell61.Borders = ((DevExpress.XtraPrinting.BorderSide)((DevExpress.XtraPrinting.BorderSide.Left | DevExpress.XtraPrinting.BorderSide.Top))); + this.xrTableCell61.Name = "xrTableCell61"; + this.xrTableCell61.Padding = new DevExpress.XtraPrinting.PaddingInfo(0, 3, 0, 0, 100F); + this.xrTableCell61.StylePriority.UseBorders = false; + this.xrTableCell61.StylePriority.UsePadding = false; + this.xrTableCell61.StylePriority.UseTextAlignment = false; + this.xrTableCell61.Text = "Fehlkontakte"; + this.xrTableCell61.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleCenter; + this.xrTableCell61.Weight = 0.3923079754756047D; + // + // xrTableCell62 + // + this.xrTableCell62.Borders = ((DevExpress.XtraPrinting.BorderSide)((DevExpress.XtraPrinting.BorderSide.Left | DevExpress.XtraPrinting.BorderSide.Top))); + this.xrTableCell62.DataBindings.AddRange(new DevExpress.XtraReports.UI.XRBinding[] { + new DevExpress.XtraReports.UI.XRBinding("Text", null, "Entgeltzeitraeume.SummeFehlkontakte", "{0:0.00}")}); + this.xrTableCell62.Name = "xrTableCell62"; + this.xrTableCell62.Padding = new DevExpress.XtraPrinting.PaddingInfo(0, 3, 0, 0, 100F); + this.xrTableCell62.StylePriority.UseBorders = false; + this.xrTableCell62.StylePriority.UsePadding = false; + this.xrTableCell62.StylePriority.UseTextAlignment = false; + this.xrTableCell62.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleRight; + this.xrTableCell62.Weight = 0.39230769377488361D; + // + // xrTableCell63 + // + this.xrTableCell63.Borders = ((DevExpress.XtraPrinting.BorderSide)((DevExpress.XtraPrinting.BorderSide.Left | DevExpress.XtraPrinting.BorderSide.Top))); + this.xrTableCell63.DataBindings.AddRange(new DevExpress.XtraReports.UI.XRBinding[] { + new DevExpress.XtraReports.UI.XRBinding("Text", null, "Entgeltzeitraeume.SummeGesamtStunden")}); + this.xrTableCell63.Name = "xrTableCell63"; + this.xrTableCell63.Padding = new DevExpress.XtraPrinting.PaddingInfo(0, 3, 0, 0, 100F); + this.xrTableCell63.StylePriority.UseBorders = false; + this.xrTableCell63.StylePriority.UsePadding = false; + this.xrTableCell63.StylePriority.UseTextAlignment = false; + this.xrTableCell63.Text = "xrTableCell63"; + this.xrTableCell63.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleRight; + this.xrTableCell63.Weight = 0.3000000014671913D; + // + // xrTableRow10 + // + this.xrTableRow10.Cells.AddRange(new DevExpress.XtraReports.UI.XRTableCell[] { + this.xrTableCell64, + this.xrTableCell65, + this.xrTableCell66, + this.xrTableCell67, + this.xrTableCell68, + this.xrTableCell69}); + this.xrTableRow10.Name = "xrTableRow10"; + this.xrTableRow10.Weight = 0.47999994140625707D; + // + // xrTableCell64 + // + this.xrTableCell64.Borders = ((DevExpress.XtraPrinting.BorderSide)((DevExpress.XtraPrinting.BorderSide.Left | DevExpress.XtraPrinting.BorderSide.Top))); + this.xrTableCell64.Name = "xrTableCell64"; + this.xrTableCell64.Padding = new DevExpress.XtraPrinting.PaddingInfo(3, 0, 0, 0, 100F); + this.xrTableCell64.StylePriority.UseBorders = false; + this.xrTableCell64.StylePriority.UsePadding = false; + this.xrTableCell64.StylePriority.UseTextAlignment = false; + this.xrTableCell64.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleLeft; + this.xrTableCell64.Weight = 1.1865389016958385D; + // + // xrTableCell65 + // + this.xrTableCell65.Borders = DevExpress.XtraPrinting.BorderSide.Left; + this.xrTableCell65.Name = "xrTableCell65"; + this.xrTableCell65.Padding = new DevExpress.XtraPrinting.PaddingInfo(0, 3, 0, 0, 100F); + this.xrTableCell65.StylePriority.UseBorders = false; + this.xrTableCell65.StylePriority.UsePadding = false; + this.xrTableCell65.StylePriority.UseTextAlignment = false; + this.xrTableCell65.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleRight; + this.xrTableCell65.Weight = 0.40484043414776089D; + // + // xrTableCell66 + // + this.xrTableCell66.Borders = DevExpress.XtraPrinting.BorderSide.Left; + this.xrTableCell66.Name = "xrTableCell66"; + this.xrTableCell66.Padding = new DevExpress.XtraPrinting.PaddingInfo(0, 3, 0, 0, 100F); + this.xrTableCell66.StylePriority.UseBorders = false; + this.xrTableCell66.StylePriority.UsePadding = false; + this.xrTableCell66.StylePriority.UseTextAlignment = false; + this.xrTableCell66.Text = " M-FLS ="; + this.xrTableCell66.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleCenter; + this.xrTableCell66.Weight = 0.39323604290301972D; + // + // xrTableCell67 + // + this.xrTableCell67.Borders = DevExpress.XtraPrinting.BorderSide.Left; + this.xrTableCell67.Multiline = true; + this.xrTableCell67.Name = "xrTableCell67"; + this.xrTableCell67.Padding = new DevExpress.XtraPrinting.PaddingInfo(0, 3, 0, 0, 100F); + this.xrTableCell67.StylePriority.UseBorders = false; + this.xrTableCell67.StylePriority.UsePadding = false; + this.xrTableCell67.StylePriority.UseTextAlignment = false; + this.xrTableCell67.Text = "FLS"; + this.xrTableCell67.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleCenter; + this.xrTableCell67.Weight = 0.29999972123366142D; + // + // xrTableCell68 + // + this.xrTableCell68.Borders = DevExpress.XtraPrinting.BorderSide.Left; + this.xrTableCell68.Name = "xrTableCell68"; + this.xrTableCell68.Padding = new DevExpress.XtraPrinting.PaddingInfo(0, 3, 0, 0, 100F); + this.xrTableCell68.StylePriority.UseBorders = false; + this.xrTableCell68.StylePriority.UsePadding = false; + this.xrTableCell68.StylePriority.UseTextAlignment = false; + this.xrTableCell68.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleRight; + this.xrTableCell68.Weight = 0.3923079754756047D; + // + // xrTableCell69 + // + this.xrTableCell69.Borders = ((DevExpress.XtraPrinting.BorderSide)(((DevExpress.XtraPrinting.BorderSide.Left | DevExpress.XtraPrinting.BorderSide.Top) + | DevExpress.XtraPrinting.BorderSide.Right))); + this.xrTableCell69.Name = "xrTableCell69"; + this.xrTableCell69.Padding = new DevExpress.XtraPrinting.PaddingInfo(0, 3, 0, 0, 100F); + this.xrTableCell69.StylePriority.UseBorders = false; + this.xrTableCell69.StylePriority.UsePadding = false; + this.xrTableCell69.StylePriority.UseTextAlignment = false; + this.xrTableCell69.Text = "Fehlkontakte"; + this.xrTableCell69.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleCenter; + this.xrTableCell69.Weight = 0.50769174575805665D; + // + // xrTableCell70 + // + this.xrTableCell70.Borders = ((DevExpress.XtraPrinting.BorderSide)(((DevExpress.XtraPrinting.BorderSide.Left | DevExpress.XtraPrinting.BorderSide.Top) + | DevExpress.XtraPrinting.BorderSide.Bottom))); + this.xrTableCell70.DataBindings.AddRange(new DevExpress.XtraReports.UI.XRBinding[] { + new DevExpress.XtraReports.UI.XRBinding("Text", null, "SummeFehlkontakte", "{0:0.00}")}); + this.xrTableCell70.Name = "xrTableCell70"; + this.xrTableCell70.Padding = new DevExpress.XtraPrinting.PaddingInfo(0, 3, 0, 0, 100F); + this.xrTableCell70.StylePriority.UseBorders = false; + this.xrTableCell70.StylePriority.UsePadding = false; + this.xrTableCell70.StylePriority.UseTextAlignment = false; + this.xrTableCell70.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleRight; + this.xrTableCell70.Weight = 0.39230797547560475D; + // + // xrTableCell71 + // + this.xrTableCell71.Borders = ((DevExpress.XtraPrinting.BorderSide)(((DevExpress.XtraPrinting.BorderSide.Left | DevExpress.XtraPrinting.BorderSide.Top) + | DevExpress.XtraPrinting.BorderSide.Bottom))); + this.xrTableCell71.DataBindings.AddRange(new DevExpress.XtraReports.UI.XRBinding[] { + new DevExpress.XtraReports.UI.XRBinding("Text", null, "SummeGesamtStunden")}); + this.xrTableCell71.Name = "xrTableCell71"; + this.xrTableCell71.Padding = new DevExpress.XtraPrinting.PaddingInfo(0, 3, 0, 0, 100F); + this.xrTableCell71.StylePriority.UseBorders = false; + this.xrTableCell71.StylePriority.UsePadding = false; + this.xrTableCell71.StylePriority.UseTextAlignment = false; + this.xrTableCell71.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleRight; + this.xrTableCell71.Weight = 0.2999998606168307D; + // + // xrLine3 + // + this.xrLine3.LineWidth = 2; + this.xrLine3.LocationFloat = new DevExpress.Utils.PointFloat(494.9999F, 20.00001F); + this.xrLine3.Name = "xrLine3"; + this.xrLine3.SizeF = new System.Drawing.SizeF(85.00006F, 6F); + // + // xrLine4 + // + this.xrLine4.LineWidth = 2; + this.xrLine4.LocationFloat = new DevExpress.Utils.PointFloat(430F, 20.00001F); + this.xrLine4.Name = "xrLine4"; + this.xrLine4.SizeF = new System.Drawing.SizeF(64.99988F, 6F); // // bindingSource1 // this.bindingSource1.DataSource = typeof(BeWo.Report.ReportObjects.BudgetnachweisAnhangRO); // + // GesamtStd + // + this.GesamtStd.DataMember = "MonatsZeilen"; + this.GesamtStd.Expression = "[SummeFehlkontakte]+[fieldFls]"; + this.GesamtStd.FieldType = DevExpress.XtraReports.UI.FieldType.Decimal; + this.GesamtStd.Name = "GesamtStd"; + // // BudgetnachweisAnhang // this.Bands.AddRange(new DevExpress.XtraReports.UI.Band[] { @@ -1277,13 +1582,14 @@ this.ReportHeader, this.DetailReport1}); this.CalculatedFields.AddRange(new DevExpress.XtraReports.UI.CalculatedField[] { - this.fieldFls}); + this.fieldFls, + this.GesamtStd}); this.DataSource = this.bindingSource1; this.Font = new System.Drawing.Font("Segoe UI", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0))); this.FormattingRuleSheet.AddRange(new DevExpress.XtraReports.UI.FormattingRule[] { this.Einzahlungstextsichtbarkeitsformatierungsregel, this.Auszahlungstextsichtbarkeitsformatierungsregel}); - this.Margins = new System.Drawing.Printing.Margins(70, 32, 50, 50); + this.Margins = new System.Drawing.Printing.Margins(70, 33, 50, 50); this.PageHeight = 1169; this.PageWidth = 827; this.PaperKind = System.Drawing.Printing.PaperKind.A4; @@ -1365,7 +1671,6 @@ private DevExpress.XtraReports.UI.XRTableCell xrTableCell31; private DevExpress.XtraReports.UI.XRTableCell xrTableCell32; private DevExpress.XtraReports.UI.XRTableCell xrTableCell33; - private DevExpress.XtraReports.UI.XRTableCell xrTableCell34; private DevExpress.XtraReports.UI.XRLabel xrLabel3; private DevExpress.XtraReports.UI.XRLabel xrLabel5; private DevExpress.XtraReports.UI.XRLabel xrLabel4; @@ -1395,5 +1700,28 @@ private DevExpress.XtraReports.UI.XRTableCell xrTableCell53; private DevExpress.XtraReports.UI.XRLabel xrLabel6; private DevExpress.XtraReports.UI.XRLine xrLine2; + private DevExpress.XtraReports.UI.XRTableCell xrTableCell54; + private DevExpress.XtraReports.UI.XRTableCell xrTableCell57; + private DevExpress.XtraReports.UI.XRTableCell xrTableCell55; + private DevExpress.XtraReports.UI.XRTableCell xrTableCell58; + private DevExpress.XtraReports.UI.XRTableCell xrTableCell56; + private DevExpress.XtraReports.UI.XRTableCell xrTableCell59; + private DevExpress.XtraReports.UI.XRTableCell xrTableCell60; + private DevExpress.XtraReports.UI.XRTableCell xrTableCell63; + private DevExpress.XtraReports.UI.XRTableCell xrTableCell62; + private DevExpress.XtraReports.UI.XRTableCell xrTableCell34; + private DevExpress.XtraReports.UI.XRTableCell xrTableCell61; + private DevExpress.XtraReports.UI.XRTableRow xrTableRow10; + private DevExpress.XtraReports.UI.XRTableCell xrTableCell64; + private DevExpress.XtraReports.UI.XRTableCell xrTableCell65; + private DevExpress.XtraReports.UI.XRTableCell xrTableCell66; + private DevExpress.XtraReports.UI.XRTableCell xrTableCell67; + private DevExpress.XtraReports.UI.XRTableCell xrTableCell68; + private DevExpress.XtraReports.UI.XRTableCell xrTableCell69; + private DevExpress.XtraReports.UI.XRLine xrLine4; + private DevExpress.XtraReports.UI.XRLine xrLine3; + private DevExpress.XtraReports.UI.XRTableCell xrTableCell71; + private DevExpress.XtraReports.UI.XRTableCell xrTableCell70; + private DevExpress.XtraReports.UI.CalculatedField GesamtStd; } } diff --git a/ReportImp/SynpraxReports/SettlementReport.Designer.cs b/ReportImp/SynpraxReports/SettlementReport.Designer.cs index 8574bd80d..129a8da54 100644 --- a/ReportImp/SynpraxReports/SettlementReport.Designer.cs +++ b/ReportImp/SynpraxReports/SettlementReport.Designer.cs @@ -1,5 +1,4 @@ -using BeWo.Report.ReportObjects; -namespace SynpraxReports +namespace AbwMuenster { partial class Spitzabrechnung { @@ -32,219 +31,271 @@ namespace SynpraxReports this.components = new System.ComponentModel.Container(); System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(Spitzabrechnung)); this.Detail = new DevExpress.XtraReports.UI.DetailBand(); - this.ReportHeader = new DevExpress.XtraReports.UI.ReportHeaderBand(); - this.xrPictureBox1 = new DevExpress.XtraReports.UI.XRPictureBox(); + this.xrPanel1 = new DevExpress.XtraReports.UI.XRPanel(); this.xrLabel15 = new DevExpress.XtraReports.UI.XRLabel(); - this.xrLabel8 = new DevExpress.XtraReports.UI.XRLabel(); - this.xrLabel14 = new DevExpress.XtraReports.UI.XRLabel(); - this.xrLabel13 = new DevExpress.XtraReports.UI.XRLabel(); - this.labelHourlyRate = new DevExpress.XtraReports.UI.XRLabel(); + this.lblAktenzeichen = new DevExpress.XtraReports.UI.XRLabel(); + this.xrLabel7 = new DevExpress.XtraReports.UI.XRLabel(); + this.xrLabel10 = new DevExpress.XtraReports.UI.XRLabel(); + this.xrLabel3 = new DevExpress.XtraReports.UI.XRLabel(); this.xrLabel9 = 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.xrLabel1 = new DevExpress.XtraReports.UI.XRLabel(); + this.xrLine1 = new DevExpress.XtraReports.UI.XRLine(); + this.xrLabel35 = new DevExpress.XtraReports.UI.XRLabel(); + this.xrLabel12 = new DevExpress.XtraReports.UI.XRLabel(); + this.xrCheckBox2 = new DevExpress.XtraReports.UI.XRCheckBox(); + this.xrCheckBox1 = new DevExpress.XtraReports.UI.XRCheckBox(); this.ruleRateFactorNull = new DevExpress.XtraReports.UI.FormattingRule(); this.topMarginBand1 = new DevExpress.XtraReports.UI.TopMarginBand(); this.bottomMarginBand1 = new DevExpress.XtraReports.UI.BottomMarginBand(); - this.ReportFooter = new DevExpress.XtraReports.UI.ReportFooterBand(); - this.xrLabel93 = new DevExpress.XtraReports.UI.XRLabel(); - this.xrLabel57 = new DevExpress.XtraReports.UI.XRLabel(); - this.xrLabel16 = new DevExpress.XtraReports.UI.XRLabel(); + this.lblAdresse = new DevExpress.XtraReports.UI.XRLabel(); + this.lblAdresseLori = new DevExpress.XtraReports.UI.XRLabel(); + this.xrLabel2 = new DevExpress.XtraReports.UI.XRLabel(); this.GroupHeader1 = new DevExpress.XtraReports.UI.GroupHeaderBand(); - this.xrLabel34 = new DevExpress.XtraReports.UI.XRLabel(); - this.xrPanel1 = new DevExpress.XtraReports.UI.XRPanel(); - this.xrLabel32 = new DevExpress.XtraReports.UI.XRLabel(); - this.xrLabel31 = new DevExpress.XtraReports.UI.XRLabel(); - this.xrLabel29 = new DevExpress.XtraReports.UI.XRLabel(); - this.xrLabel28 = new DevExpress.XtraReports.UI.XRLabel(); - this.xrLabel27 = new DevExpress.XtraReports.UI.XRLabel(); - this.xrLabel26 = new DevExpress.XtraReports.UI.XRLabel(); - this.xrLabel25 = new DevExpress.XtraReports.UI.XRLabel(); - this.xrLabel23 = new DevExpress.XtraReports.UI.XRLabel(); - this.xrLabel22 = new DevExpress.XtraReports.UI.XRLabel(); - this.xrLabel21 = new DevExpress.XtraReports.UI.XRLabel(); - this.xrLabel12 = new DevExpress.XtraReports.UI.XRLabel(); - this.xrLabel10 = new DevExpress.XtraReports.UI.XRLabel(); - this.xrLabel7 = new DevExpress.XtraReports.UI.XRLabel(); - this.GroupHeader2 = new DevExpress.XtraReports.UI.GroupHeaderBand(); - this.xrLabel83 = new DevExpress.XtraReports.UI.XRLabel(); - this.xrLabel82 = new DevExpress.XtraReports.UI.XRLabel(); - this.xrLabel81 = new DevExpress.XtraReports.UI.XRLabel(); - this.xrLabel80 = new DevExpress.XtraReports.UI.XRLabel(); - this.xrLabel79 = new DevExpress.XtraReports.UI.XRLabel(); - this.xrLabel78 = new DevExpress.XtraReports.UI.XRLabel(); - this.xrLabel77 = new DevExpress.XtraReports.UI.XRLabel(); - this.panel3 = new DevExpress.XtraReports.UI.XRPanel(); - this.xrLabel103 = new DevExpress.XtraReports.UI.XRLabel(); - this.xrLabel96 = new DevExpress.XtraReports.UI.XRLabel(); - this.lblWeeks3 = new DevExpress.XtraReports.UI.XRLabel(); - this.lblTage3 = new DevExpress.XtraReports.UI.XRLabel(); - this.xrLabel6 = new DevExpress.XtraReports.UI.XRLabel(); - this.xrLabel85 = new DevExpress.XtraReports.UI.XRLabel(); - this.xrLabel84 = new DevExpress.XtraReports.UI.XRLabel(); - this.lblFLSTotal3 = new DevExpress.XtraReports.UI.XRLabel(); - this.xrLabel36 = new DevExpress.XtraReports.UI.XRLabel(); - this.xrLabel35 = new DevExpress.XtraReports.UI.XRLabel(); - this.xrLabel33 = new DevExpress.XtraReports.UI.XRLabel(); - this.lblClaimText = new DevExpress.XtraReports.UI.XRLabel(); - this.xrLabel70 = new DevExpress.XtraReports.UI.XRLabel(); - this.xrLabel87 = new DevExpress.XtraReports.UI.XRLabel(); - this.xrLabel72 = new DevExpress.XtraReports.UI.XRLabel(); - this.xrLabel88 = new DevExpress.XtraReports.UI.XRLabel(); - this.xrLabel42 = new DevExpress.XtraReports.UI.XRLabel(); - this.xrLabel71 = new DevExpress.XtraReports.UI.XRLabel(); - this.xrLabel90 = new DevExpress.XtraReports.UI.XRLabel(); - this.xrLabel86 = new DevExpress.XtraReports.UI.XRLabel(); - this.xrLabel69 = new DevExpress.XtraReports.UI.XRLabel(); - this.GroupFooter1 = new DevExpress.XtraReports.UI.GroupFooterBand(); - this.xrLabel17 = new DevExpress.XtraReports.UI.XRLabel(); - this.fieldAmountTotal = new DevExpress.XtraReports.UI.CalculatedField(); - this.DetailReport = new DevExpress.XtraReports.UI.DetailReportBand(); - this.Detail1 = new DevExpress.XtraReports.UI.DetailBand(); - this.xrLabel41 = new DevExpress.XtraReports.UI.XRLabel(); - this.xrLabel40 = new DevExpress.XtraReports.UI.XRLabel(); - this.bindingSource1 = new System.Windows.Forms.BindingSource(this.components); - this.GroupFooter2 = new DevExpress.XtraReports.UI.GroupFooterBand(); - this.chkBeendet = new DevExpress.XtraReports.UI.XRCheckBox(); - this.chkNichtBeendet = new DevExpress.XtraReports.UI.XRCheckBox(); this.xrLabel11 = new DevExpress.XtraReports.UI.XRLabel(); + this.xrLabel8 = new DevExpress.XtraReports.UI.XRLabel(); + this.xrLabel6 = new DevExpress.XtraReports.UI.XRLabel(); + this.xrLabel5 = new DevExpress.XtraReports.UI.XRLabel(); + this.bindingSource1 = new System.Windows.Forms.BindingSource(this.components); + this.xrLabel13 = new DevExpress.XtraReports.UI.XRLabel(); + this.xrPictureBox1 = new DevExpress.XtraReports.UI.XRPictureBox(); + this.xrLabel1 = new DevExpress.XtraReports.UI.XRLabel(); + this.xrLabel14 = new DevExpress.XtraReports.UI.XRLabel(); + this.xrLabel16 = new DevExpress.XtraReports.UI.XRLabel(); + this.xrLabel78 = new DevExpress.XtraReports.UI.XRLabel(); + this.xrLabel79 = new DevExpress.XtraReports.UI.XRLabel(); + this.xrLabel80 = new DevExpress.XtraReports.UI.XRLabel(); + this.xrLabel81 = new DevExpress.XtraReports.UI.XRLabel(); + this.xrLabel82 = new DevExpress.XtraReports.UI.XRLabel(); + this.xrLabel83 = new DevExpress.XtraReports.UI.XRLabel(); + this.xrLabel17 = new DevExpress.XtraReports.UI.XRLabel(); + this.xrLabel103 = new DevExpress.XtraReports.UI.XRLabel(); + this.lblTage3 = new DevExpress.XtraReports.UI.XRLabel(); + this.lblWeeks3 = new DevExpress.XtraReports.UI.XRLabel(); + this.xrLabel96 = new DevExpress.XtraReports.UI.XRLabel(); + this.lblFLSTotal3 = new DevExpress.XtraReports.UI.XRLabel(); ((System.ComponentModel.ISupportInitialize)(this.bindingSource1)).BeginInit(); ((System.ComponentModel.ISupportInitialize)(this)).BeginInit(); // // Detail // - this.Detail.HeightF = 0F; + this.Detail.Controls.AddRange(new DevExpress.XtraReports.UI.XRControl[] { + this.xrLabel13, + this.xrPanel1, + this.xrLabel4, + this.xrLine1, + this.xrLabel35, + this.xrLabel12, + this.xrCheckBox2, + this.xrCheckBox1}); + this.Detail.Font = new System.Drawing.Font("Arial", 11F); + this.Detail.HeightF = 612.7708F; this.Detail.Name = "Detail"; this.Detail.Padding = new DevExpress.XtraPrinting.PaddingInfo(0, 0, 0, 0, 100F); + this.Detail.StylePriority.UseFont = false; this.Detail.TextAlignment = DevExpress.XtraPrinting.TextAlignment.TopLeft; // - // ReportHeader + // xrPanel1 // - this.ReportHeader.Controls.AddRange(new DevExpress.XtraReports.UI.XRControl[] { - this.xrPictureBox1, - this.xrLabel15, - this.xrLabel8, + this.xrPanel1.Borders = ((DevExpress.XtraPrinting.BorderSide)((((DevExpress.XtraPrinting.BorderSide.Left | DevExpress.XtraPrinting.BorderSide.Top) + | DevExpress.XtraPrinting.BorderSide.Right) + | DevExpress.XtraPrinting.BorderSide.Bottom))); + this.xrPanel1.Controls.AddRange(new DevExpress.XtraReports.UI.XRControl[] { + this.xrLabel17, + this.xrLabel103, + this.lblTage3, + this.lblWeeks3, + this.xrLabel96, + this.lblFLSTotal3, + this.xrLabel78, + this.xrLabel79, + this.xrLabel80, + this.xrLabel81, + this.xrLabel82, + this.xrLabel83, + this.xrLabel16, this.xrLabel14, - this.xrLabel13, - this.labelHourlyRate, - this.xrLabel9, - this.xrLabel4, + this.xrLabel15, + this.lblAktenzeichen, + this.xrLabel7, + this.xrLabel10, this.xrLabel3, - this.xrLabel2, - this.xrLabel1}); - this.ReportHeader.Font = new System.Drawing.Font("Calibri", 11F); - this.ReportHeader.HeightF = 240F; - this.ReportHeader.Name = "ReportHeader"; - this.ReportHeader.StylePriority.UseFont = false; - this.ReportHeader.StylePriority.UseTextAlignment = false; - this.ReportHeader.TextAlignment = DevExpress.XtraPrinting.TextAlignment.TopLeft; - this.ReportHeader.BeforePrint += new System.Drawing.Printing.PrintEventHandler(this.ReportHeader_BeforePrint); - // - // xrPictureBox1 - // - this.xrPictureBox1.Image = ((System.Drawing.Image)(resources.GetObject("xrPictureBox1.Image"))); - this.xrPictureBox1.LocationFloat = new DevExpress.Utils.PointFloat(471.4165F, 0F); - this.xrPictureBox1.Name = "xrPictureBox1"; - this.xrPictureBox1.SizeF = new System.Drawing.SizeF(239.5834F, 106.25F); - this.xrPictureBox1.Sizing = DevExpress.XtraPrinting.ImageSizeMode.ZoomImage; + this.xrLabel9}); + this.xrPanel1.LocationFloat = new DevExpress.Utils.PointFloat(0F, 0F); + this.xrPanel1.Name = "xrPanel1"; + this.xrPanel1.SizeF = new System.Drawing.SizeF(673.3192F, 253.12F); + this.xrPanel1.StylePriority.UseBorders = false; // // xrLabel15 // - this.xrLabel15.LocationFloat = new DevExpress.Utils.PointFloat(438.3331F, 204.9583F); + this.xrLabel15.BackColor = System.Drawing.Color.Transparent; + this.xrLabel15.Borders = DevExpress.XtraPrinting.BorderSide.None; + this.xrLabel15.CanShrink = true; + this.xrLabel15.Font = new System.Drawing.Font("Calibri", 11.25F); + this.xrLabel15.LocationFloat = new DevExpress.Utils.PointFloat(10.0001F, 29.99999F); this.xrLabel15.Name = "xrLabel15"; - this.xrLabel15.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F); - this.xrLabel15.SizeF = new System.Drawing.SizeF(272.6669F, 17.00001F); + this.xrLabel15.SizeF = new System.Drawing.SizeF(650F, 20F); + this.xrLabel15.StylePriority.UseBackColor = false; + this.xrLabel15.StylePriority.UseBorders = false; this.xrLabel15.StylePriority.UseFont = false; - this.xrLabel15.Text = "lt. Vergütungsvereinbarung"; + this.xrLabel15.StylePriority.UsePadding = false; + this.xrLabel15.Text = "[CustomerName], [CustomerStreet], [CustomerPostalCode] [CustomerTown]"; + this.xrLabel15.WordWrap = false; // - // xrLabel8 + // lblAktenzeichen // - this.xrLabel8.LocationFloat = new DevExpress.Utils.PointFloat(438.3331F, 166.9583F); - this.xrLabel8.Multiline = true; - this.xrLabel8.Name = "xrLabel8"; - this.xrLabel8.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F); - this.xrLabel8.SizeF = new System.Drawing.SizeF(243.67F, 38F); - this.xrLabel8.StylePriority.UseFont = false; - this.xrLabel8.Text = "lt. Leistungs- und\r\nPrüfungsvereinbarung"; + this.lblAktenzeichen.BackColor = System.Drawing.Color.Transparent; + this.lblAktenzeichen.Borders = DevExpress.XtraPrinting.BorderSide.None; + this.lblAktenzeichen.CanShrink = true; + this.lblAktenzeichen.Font = new System.Drawing.Font("Calibri", 11.25F); + this.lblAktenzeichen.LocationFloat = new DevExpress.Utils.PointFloat(10F, 65F); + this.lblAktenzeichen.Multiline = true; + this.lblAktenzeichen.Name = "lblAktenzeichen"; + this.lblAktenzeichen.SizeF = new System.Drawing.SizeF(650F, 20F); + this.lblAktenzeichen.StylePriority.UseBackColor = false; + this.lblAktenzeichen.StylePriority.UseBorders = false; + this.lblAktenzeichen.StylePriority.UseFont = false; + this.lblAktenzeichen.StylePriority.UsePadding = false; + this.lblAktenzeichen.Text = "Aktenzeichen: [CustomerReferenceNumber] Geburtsdatum: [CustomerBirthdayStr" + + "ing]"; + this.lblAktenzeichen.WordWrap = false; // - // xrLabel14 + // xrLabel7 // - this.xrLabel14.LocationFloat = new DevExpress.Utils.PointFloat(0F, 204.9583F); - this.xrLabel14.Name = "xrLabel14"; - this.xrLabel14.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F); - this.xrLabel14.SizeF = new System.Drawing.SizeF(239.9999F, 17.00001F); - this.xrLabel14.StylePriority.UseFont = false; - this.xrLabel14.Text = "Vergütung pro Fachleistungsstunde"; + this.xrLabel7.BackColor = System.Drawing.Color.Transparent; + this.xrLabel7.Borders = DevExpress.XtraPrinting.BorderSide.None; + this.xrLabel7.CanShrink = true; + this.xrLabel7.Font = new System.Drawing.Font("Calibri", 11.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0))); + this.xrLabel7.LocationFloat = new DevExpress.Utils.PointFloat(10.00001F, 127.0833F); + this.xrLabel7.Multiline = true; + this.xrLabel7.Name = "xrLabel7"; + this.xrLabel7.SizeF = new System.Drawing.SizeF(650F, 20F); + this.xrLabel7.StylePriority.UseBackColor = false; + this.xrLabel7.StylePriority.UseBorders = false; + this.xrLabel7.StylePriority.UseFont = false; + this.xrLabel7.StylePriority.UsePadding = false; + this.xrLabel7.Text = "Bewilligungszeitraum von [AccountingPeriod]"; + this.xrLabel7.WordWrap = false; // - // xrLabel13 + // xrLabel10 // - this.xrLabel13.LocationFloat = new DevExpress.Utils.PointFloat(0F, 166.9583F); - this.xrLabel13.Name = "xrLabel13"; - this.xrLabel13.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F); - this.xrLabel13.SizeF = new System.Drawing.SizeF(229.9998F, 17.00001F); - this.xrLabel13.StylePriority.UseFont = false; - this.xrLabel13.Text = "Aktenzeichen LWL:"; - // - // labelHourlyRate - // - this.labelHourlyRate.LocationFloat = new DevExpress.Utils.PointFloat(269.7917F, 204.9583F); - this.labelHourlyRate.Multiline = true; - this.labelHourlyRate.Name = "labelHourlyRate"; - this.labelHourlyRate.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F); - this.labelHourlyRate.SizeF = new System.Drawing.SizeF(168.5414F, 35.04172F); - this.labelHourlyRate.StylePriority.UseFont = false; - this.labelHourlyRate.Text = "labelHourlyRate"; - // - // xrLabel9 - // - this.xrLabel9.LocationFloat = new DevExpress.Utils.PointFloat(269.7917F, 166.9583F); - this.xrLabel9.Name = "xrLabel9"; - this.xrLabel9.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F); - this.xrLabel9.SizeF = new System.Drawing.SizeF(168.5414F, 17.00001F); - this.xrLabel9.StylePriority.UseFont = false; - this.xrLabel9.Text = "60‐33/01‐13/40 N23"; - // - // xrLabel4 - // - this.xrLabel4.LocationFloat = new DevExpress.Utils.PointFloat(269.7917F, 132.9583F); - this.xrLabel4.Name = "xrLabel4"; - this.xrLabel4.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F); - this.xrLabel4.SizeF = new System.Drawing.SizeF(168.5414F, 17.00001F); - this.xrLabel4.StylePriority.UseFont = false; - this.xrLabel4.Text = "33607 Bielefeld"; + this.xrLabel10.BackColor = System.Drawing.Color.Transparent; + this.xrLabel10.Borders = DevExpress.XtraPrinting.BorderSide.None; + this.xrLabel10.Font = new System.Drawing.Font("Calibri", 11.25F); + this.xrLabel10.LocationFloat = new DevExpress.Utils.PointFloat(10.00001F, 216.0367F); + this.xrLabel10.Multiline = true; + this.xrLabel10.Name = "xrLabel10"; + this.xrLabel10.Padding = new DevExpress.XtraPrinting.PaddingInfo(0, 0, 0, 0, 100F); + this.xrLabel10.SizeF = new System.Drawing.SizeF(551.3751F, 27.08333F); + this.xrLabel10.StylePriority.UseBackColor = false; + this.xrLabel10.StylePriority.UseBorders = false; + this.xrLabel10.StylePriority.UseFont = false; + this.xrLabel10.StylePriority.UsePadding = false; + this.xrLabel10.Text = "Tatsächlich geleistete Fachleistungsstunden im Bewilligungszeitraum lt. Anlage:"; // // xrLabel3 // - this.xrLabel3.LocationFloat = new DevExpress.Utils.PointFloat(269.7917F, 115.9583F); + this.xrLabel3.BackColor = System.Drawing.Color.Transparent; + this.xrLabel3.Borders = ((DevExpress.XtraPrinting.BorderSide)((((DevExpress.XtraPrinting.BorderSide.Left | DevExpress.XtraPrinting.BorderSide.Top) + | DevExpress.XtraPrinting.BorderSide.Right) + | DevExpress.XtraPrinting.BorderSide.Bottom))); + this.xrLabel3.BorderWidth = 2F; + this.xrLabel3.CanShrink = true; + this.xrLabel3.DataBindings.AddRange(new DevExpress.XtraReports.UI.XRBinding[] { + new DevExpress.XtraReports.UI.XRBinding("Text", null, "RecordedFLSTotal", "{0:0.00}")}); + this.xrLabel3.Font = new System.Drawing.Font("Calibri", 11.25F, System.Drawing.FontStyle.Bold); + this.xrLabel3.LocationFloat = new DevExpress.Utils.PointFloat(561.3801F, 213.0367F); + this.xrLabel3.Multiline = true; this.xrLabel3.Name = "xrLabel3"; this.xrLabel3.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F); - this.xrLabel3.SizeF = new System.Drawing.SizeF(168.5414F, 17.00001F); + this.xrLabel3.SizeF = new System.Drawing.SizeF(98.62469F, 27.08333F); + this.xrLabel3.StylePriority.UseBackColor = false; + this.xrLabel3.StylePriority.UseBorders = false; + this.xrLabel3.StylePriority.UseBorderWidth = false; this.xrLabel3.StylePriority.UseFont = false; - this.xrLabel3.Text = "Otto‐Brenner‐Str.5"; + this.xrLabel3.StylePriority.UseTextAlignment = false; + this.xrLabel3.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleCenter; + this.xrLabel3.WordWrap = false; // - // xrLabel2 + // xrLabel9 // - this.xrLabel2.Font = new System.Drawing.Font("Calibri", 11F, System.Drawing.FontStyle.Bold); - this.xrLabel2.LocationFloat = new DevExpress.Utils.PointFloat(269.7917F, 98.95834F); - this.xrLabel2.Name = "xrLabel2"; - this.xrLabel2.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F); - this.xrLabel2.SizeF = new System.Drawing.SizeF(168.5414F, 17.00001F); - this.xrLabel2.StylePriority.UseFont = false; - this.xrLabel2.Text = "Synprax"; + this.xrLabel9.BackColor = System.Drawing.Color.Transparent; + this.xrLabel9.Borders = DevExpress.XtraPrinting.BorderSide.None; + this.xrLabel9.CanShrink = true; + this.xrLabel9.Font = new System.Drawing.Font("Calibri", 11.25F, ((System.Drawing.FontStyle)((System.Drawing.FontStyle.Bold | System.Drawing.FontStyle.Underline)))); + this.xrLabel9.LocationFloat = new DevExpress.Utils.PointFloat(10.0001F, 9.999974F); + this.xrLabel9.Name = "xrLabel9"; + this.xrLabel9.SizeF = new System.Drawing.SizeF(650F, 20F); + this.xrLabel9.StylePriority.UseBackColor = false; + this.xrLabel9.StylePriority.UseBorders = false; + this.xrLabel9.StylePriority.UseFont = false; + this.xrLabel9.StylePriority.UsePadding = false; + this.xrLabel9.Text = "Leistungsberechtigte/r:"; + this.xrLabel9.WordWrap = false; // - // xrLabel1 + // xrLabel4 // - this.xrLabel1.Font = new System.Drawing.Font("Calibri", 12F, ((System.Drawing.FontStyle)((System.Drawing.FontStyle.Bold | System.Drawing.FontStyle.Underline)))); - this.xrLabel1.LocationFloat = new DevExpress.Utils.PointFloat(0F, 61.45833F); - this.xrLabel1.Name = "xrLabel1"; - this.xrLabel1.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F); - this.xrLabel1.SizeF = new System.Drawing.SizeF(191.9999F, 19.79167F); - this.xrLabel1.StylePriority.UseBorders = false; - this.xrLabel1.StylePriority.UseFont = false; - this.xrLabel1.StylePriority.UseTextAlignment = false; - this.xrLabel1.Text = "Budgetnachweis"; - this.xrLabel1.TextAlignment = DevExpress.XtraPrinting.TextAlignment.TopLeft; + this.xrLabel4.Font = new System.Drawing.Font("Calibri", 11.25F, System.Drawing.FontStyle.Bold); + this.xrLabel4.LocationFloat = new DevExpress.Utils.PointFloat(0F, 441.375F); + this.xrLabel4.Multiline = true; + this.xrLabel4.Name = "xrLabel4"; + this.xrLabel4.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F); + this.xrLabel4.ProcessNullValues = DevExpress.XtraReports.UI.ValueSuppressType.SuppressAndShrink; + this.xrLabel4.SizeF = new System.Drawing.SizeF(678.3188F, 81.58328F); + this.xrLabel4.StylePriority.UseFont = false; + this.xrLabel4.Text = resources.GetString("xrLabel4.Text"); + // + // xrLine1 + // + this.xrLine1.LocationFloat = new DevExpress.Utils.PointFloat(0F, 577.6875F); + this.xrLine1.Name = "xrLine1"; + this.xrLine1.SizeF = new System.Drawing.SizeF(678.3188F, 10.79163F); + // + // xrLabel35 + // + this.xrLabel35.BackColor = System.Drawing.Color.Transparent; + this.xrLabel35.Borders = DevExpress.XtraPrinting.BorderSide.None; + this.xrLabel35.Font = new System.Drawing.Font("Calibri", 11.25F, System.Drawing.FontStyle.Bold); + this.xrLabel35.LocationFloat = new DevExpress.Utils.PointFloat(2.997335F, 588.4792F); + this.xrLabel35.Multiline = true; + this.xrLabel35.Name = "xrLabel35"; + this.xrLabel35.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F); + this.xrLabel35.SizeF = new System.Drawing.SizeF(657F, 24.29156F); + this.xrLabel35.StylePriority.UseBackColor = false; + this.xrLabel35.StylePriority.UseBorders = false; + this.xrLabel35.StylePriority.UseFont = false; + this.xrLabel35.Text = "Stempel / Funktion und Unterschrift der / des Verantwortlichen"; + this.xrLabel35.WordWrap = false; + // + // xrLabel12 + // + this.xrLabel12.BackColor = System.Drawing.Color.Transparent; + this.xrLabel12.Font = new System.Drawing.Font("Calibri", 11.25F); + this.xrLabel12.LocationFloat = new DevExpress.Utils.PointFloat(0F, 297.2916F); + this.xrLabel12.Multiline = true; + this.xrLabel12.Name = "xrLabel12"; + this.xrLabel12.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F); + this.xrLabel12.SizeF = new System.Drawing.SizeF(678.3188F, 101.7916F); + this.xrLabel12.StylePriority.UseBackColor = false; + this.xrLabel12.StylePriority.UseFont = false; + this.xrLabel12.Text = resources.GetString("xrLabel12.Text"); + // + // xrCheckBox2 + // + this.xrCheckBox2.Font = new System.Drawing.Font("Calibri", 11.25F); + this.xrCheckBox2.LocationFloat = new DevExpress.Utils.PointFloat(383.7451F, 263.5367F); + this.xrCheckBox2.Name = "xrCheckBox2"; + this.xrCheckBox2.SizeF = new System.Drawing.SizeF(211.0832F, 21.875F); + this.xrCheckBox2.StylePriority.UseFont = false; + this.xrCheckBox2.Text = " Die Betreuung dauert an."; + // + // xrCheckBox1 + // + this.xrCheckBox1.Font = new System.Drawing.Font("Calibri", 11.25F); + this.xrCheckBox1.LocationFloat = new DevExpress.Utils.PointFloat(0F, 263.5367F); + this.xrCheckBox1.Name = "xrCheckBox1"; + this.xrCheckBox1.SizeF = new System.Drawing.SizeF(358.1408F, 21.875F); + this.xrCheckBox1.StylePriority.UseFont = false; + this.xrCheckBox1.Text = " Die Betreuung wurde beendet am"; // // ruleRateFactorNull // @@ -254,307 +305,244 @@ namespace SynpraxReports // // topMarginBand1 // - this.topMarginBand1.Font = new System.Drawing.Font("Arial", 8F); - this.topMarginBand1.HeightF = 40F; + this.topMarginBand1.HeightF = 50F; this.topMarginBand1.Name = "topMarginBand1"; - this.topMarginBand1.StylePriority.UseFont = false; // // bottomMarginBand1 // - this.bottomMarginBand1.HeightF = 20F; + this.bottomMarginBand1.HeightF = 50F; this.bottomMarginBand1.Name = "bottomMarginBand1"; // - // ReportFooter + // lblAdresse // - this.ReportFooter.Controls.AddRange(new DevExpress.XtraReports.UI.XRControl[] { - this.xrLabel93, - this.xrLabel57}); - this.ReportFooter.Font = new System.Drawing.Font("Calibri", 11F); - this.ReportFooter.HeightF = 79.51389F; - this.ReportFooter.KeepTogether = true; - this.ReportFooter.Name = "ReportFooter"; - this.ReportFooter.StylePriority.UseFont = false; + this.lblAdresse.Font = new System.Drawing.Font("Calibri", 11.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0))); + this.lblAdresse.LocationFloat = new DevExpress.Utils.PointFloat(0F, 175.4376F); + this.lblAdresse.Multiline = true; + this.lblAdresse.Name = "lblAdresse"; + this.lblAdresse.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F); + this.lblAdresse.ProcessNullValues = DevExpress.XtraReports.UI.ValueSuppressType.SuppressAndShrink; + this.lblAdresse.SizeF = new System.Drawing.SizeF(329.9999F, 81.58333F); + this.lblAdresse.StylePriority.UseFont = false; + this.lblAdresse.Text = "Landschaftsverband Westfalen- Lippe\r\nLWL- Inklusionsamt Soziale Teilhabe\r\n48133 M" + + "ünster\r\n"; // - // xrLabel93 + // lblAdresseLori // - this.xrLabel93.Borders = DevExpress.XtraPrinting.BorderSide.Top; - this.xrLabel93.LocationFloat = new DevExpress.Utils.PointFloat(0F, 54.51389F); - this.xrLabel93.Name = "xrLabel93"; - this.xrLabel93.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F); - this.xrLabel93.SizeF = new System.Drawing.SizeF(267F, 25F); - this.xrLabel93.StylePriority.UseBorders = false; - this.xrLabel93.StylePriority.UseFont = false; - this.xrLabel93.StylePriority.UseTextAlignment = false; - this.xrLabel93.Text = "Ort, Datum"; - this.xrLabel93.TextAlignment = DevExpress.XtraPrinting.TextAlignment.TopLeft; + this.lblAdresseLori.Font = new System.Drawing.Font("Calibri", 11.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0))); + this.lblAdresseLori.LocationFloat = new DevExpress.Utils.PointFloat(0F, 20.00001F); + this.lblAdresseLori.Multiline = true; + this.lblAdresseLori.Name = "lblAdresseLori"; + this.lblAdresseLori.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F); + this.lblAdresseLori.ProcessNullValues = DevExpress.XtraReports.UI.ValueSuppressType.SuppressAndShrink; + this.lblAdresseLori.SizeF = new System.Drawing.SizeF(309.1667F, 88.24997F); + this.lblAdresseLori.StylePriority.UseFont = false; + this.lblAdresseLori.Text = "Otto‐Brenner‐Str.5\r\n33607 Bielefeld"; // - // xrLabel57 + // xrLabel2 // - this.xrLabel57.Borders = DevExpress.XtraPrinting.BorderSide.Top; - this.xrLabel57.LocationFloat = new DevExpress.Utils.PointFloat(267.0001F, 54.51389F); - this.xrLabel57.Name = "xrLabel57"; - this.xrLabel57.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F); - this.xrLabel57.SizeF = new System.Drawing.SizeF(412.9998F, 25F); - this.xrLabel57.StylePriority.UseBorders = false; - this.xrLabel57.StylePriority.UseFont = false; - this.xrLabel57.StylePriority.UseTextAlignment = false; - this.xrLabel57.Text = "Stempel, Unterschrift/en des Anbieters"; - this.xrLabel57.TextAlignment = DevExpress.XtraPrinting.TextAlignment.TopLeft; - // - // xrLabel16 - // - this.xrLabel16.BorderColor = System.Drawing.Color.LightGray; - this.xrLabel16.LocationFloat = new DevExpress.Utils.PointFloat(0F, 35.06947F); - this.xrLabel16.Multiline = true; - this.xrLabel16.Name = "xrLabel16"; - this.xrLabel16.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F); - this.xrLabel16.SizeF = new System.Drawing.SizeF(675F, 100.6389F); - this.xrLabel16.StylePriority.UseBorderColor = false; - this.xrLabel16.StylePriority.UseBorders = false; - this.xrLabel16.StylePriority.UseFont = false; - this.xrLabel16.StylePriority.UseTextAlignment = false; - this.xrLabel16.Text = resources.GetString("xrLabel16.Text"); - this.xrLabel16.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleLeft; + this.xrLabel2.Borders = DevExpress.XtraPrinting.BorderSide.Top; + this.xrLabel2.Font = new System.Drawing.Font("Calibri", 11.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0))); + this.xrLabel2.LocationFloat = new DevExpress.Utils.PointFloat(410.7083F, 152.7292F); + this.xrLabel2.Multiline = true; + this.xrLabel2.Name = "xrLabel2"; + this.xrLabel2.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F); + this.xrLabel2.ProcessNullValues = DevExpress.XtraReports.UI.ValueSuppressType.SuppressAndShrink; + this.xrLabel2.SizeF = new System.Drawing.SizeF(113.0575F, 29.49994F); + this.xrLabel2.StylePriority.UseBorders = false; + this.xrLabel2.StylePriority.UseFont = false; + this.xrLabel2.Text = "ZAD-Nr. des LWL:"; // // GroupHeader1 // this.GroupHeader1.Controls.AddRange(new DevExpress.XtraReports.UI.XRControl[] { - this.xrLabel34, - this.xrPanel1}); - this.GroupHeader1.Font = new System.Drawing.Font("Calibri", 11F); - this.GroupHeader1.HeightF = 133F; - this.GroupHeader1.Level = 1; + this.xrPictureBox1, + this.xrLabel1, + this.xrLabel11, + this.xrLabel8, + this.xrLabel6, + this.xrLabel5, + this.xrLabel2, + this.lblAdresseLori, + this.lblAdresse}); + this.GroupHeader1.Font = new System.Drawing.Font("Arial", 11F); + this.GroupHeader1.HeightF = 329.8334F; this.GroupHeader1.Name = "GroupHeader1"; this.GroupHeader1.StylePriority.UseFont = false; // - // xrLabel34 + // xrLabel11 // - this.xrLabel34.LocationFloat = new DevExpress.Utils.PointFloat(269.79F, 106F); - this.xrLabel34.Name = "xrLabel34"; - this.xrLabel34.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F); - this.xrLabel34.SizeF = new System.Drawing.SizeF(168.5414F, 17.00001F); - this.xrLabel34.StylePriority.UseFont = false; + this.xrLabel11.Borders = DevExpress.XtraPrinting.BorderSide.Top; + this.xrLabel11.Font = new System.Drawing.Font("Calibri", 11.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0))); + this.xrLabel11.LocationFloat = new DevExpress.Utils.PointFloat(523.7657F, 152.7292F); + this.xrLabel11.Multiline = true; + this.xrLabel11.Name = "xrLabel11"; + this.xrLabel11.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F); + this.xrLabel11.ProcessNullValues = DevExpress.XtraReports.UI.ValueSuppressType.SuppressAndShrink; + this.xrLabel11.SizeF = new System.Drawing.SizeF(173.6299F, 29.49995F); + this.xrLabel11.StylePriority.UseBorders = false; + this.xrLabel11.StylePriority.UseFont = false; + this.xrLabel11.Text = "60‐33/01‐13/40 N23"; // - // xrPanel1 + // xrLabel8 // - this.xrPanel1.Controls.AddRange(new DevExpress.XtraReports.UI.XRControl[] { - this.xrLabel32, - this.xrLabel31, - this.xrLabel29, - this.xrLabel28, - this.xrLabel27, - this.xrLabel26, - this.xrLabel25, - this.xrLabel23, - this.xrLabel22, - this.xrLabel21, - this.xrLabel12, - this.xrLabel10, - this.xrLabel7}); - this.xrPanel1.LocationFloat = new DevExpress.Utils.PointFloat(0F, 0F); - this.xrPanel1.Name = "xrPanel1"; - this.xrPanel1.SizeF = new System.Drawing.SizeF(711F, 106F); - this.xrPanel1.StylePriority.UseBorders = false; + this.xrLabel8.Font = new System.Drawing.Font("Calibri", 11.25F, System.Drawing.FontStyle.Bold); + this.xrLabel8.LocationFloat = new DevExpress.Utils.PointFloat(0F, 289.8333F); + this.xrLabel8.Multiline = true; + this.xrLabel8.Name = "xrLabel8"; + this.xrLabel8.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F); + this.xrLabel8.ProcessNullValues = DevExpress.XtraReports.UI.ValueSuppressType.SuppressAndShrink; + this.xrLabel8.SizeF = new System.Drawing.SizeF(673.319F, 40.00003F); + this.xrLabel8.StylePriority.UseFont = false; + this.xrLabel8.StylePriority.UseTextAlignment = false; + this.xrLabel8.Text = "Budgetnachweis\r\nüber die Abrechnung von Fachleistungsstunden im Rahmen der Eingli" + + "ederungshilfe"; + this.xrLabel8.TextAlignment = DevExpress.XtraPrinting.TextAlignment.TopCenter; // - // xrLabel32 + // xrLabel6 // - this.xrLabel32.Borders = DevExpress.XtraPrinting.BorderSide.None; - this.xrLabel32.LocationFloat = new DevExpress.Utils.PointFloat(438.3331F, 87.00005F); - this.xrLabel32.Name = "xrLabel32"; - this.xrLabel32.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F); - this.xrLabel32.SizeF = new System.Drawing.SizeF(236.6669F, 17.00001F); - this.xrLabel32.StylePriority.UseBorders = false; - this.xrLabel32.StylePriority.UseFont = false; - this.xrLabel32.Text = "lt. Bewilligungsbescheid"; + this.xrLabel6.Borders = DevExpress.XtraPrinting.BorderSide.None; + this.xrLabel6.DataBindings.AddRange(new DevExpress.XtraReports.UI.XRBinding[] { + new DevExpress.XtraReports.UI.XRBinding("Text", null, "InvoiceDate", "Bielefeld, {0}")}); + this.xrLabel6.Font = new System.Drawing.Font("Calibri", 11.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0))); + this.xrLabel6.LocationFloat = new DevExpress.Utils.PointFloat(523.7657F, 132.7292F); + this.xrLabel6.Name = "xrLabel6"; + this.xrLabel6.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F); + this.xrLabel6.SizeF = new System.Drawing.SizeF(173.6299F, 20.00002F); + this.xrLabel6.StylePriority.UseBorders = false; + this.xrLabel6.StylePriority.UseFont = false; // - // xrLabel31 + // xrLabel5 // - this.xrLabel31.Borders = DevExpress.XtraPrinting.BorderSide.None; - this.xrLabel31.LocationFloat = new DevExpress.Utils.PointFloat(438.3331F, 70.00005F); - this.xrLabel31.Name = "xrLabel31"; - this.xrLabel31.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F); - this.xrLabel31.SizeF = new System.Drawing.SizeF(236.6669F, 17.00001F); - this.xrLabel31.StylePriority.UseBorders = false; - this.xrLabel31.StylePriority.UseFont = false; - this.xrLabel31.Text = "lt. Bewilligungsbescheid"; + this.xrLabel5.Borders = DevExpress.XtraPrinting.BorderSide.None; + this.xrLabel5.Font = new System.Drawing.Font("Calibri", 11.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0))); + this.xrLabel5.LocationFloat = new DevExpress.Utils.PointFloat(410.7084F, 132.7292F); + this.xrLabel5.Multiline = true; + this.xrLabel5.Name = "xrLabel5"; + this.xrLabel5.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F); + this.xrLabel5.ProcessNullValues = DevExpress.XtraReports.UI.ValueSuppressType.SuppressAndShrink; + this.xrLabel5.SizeF = new System.Drawing.SizeF(113.0574F, 20F); + this.xrLabel5.StylePriority.UseBorders = false; + this.xrLabel5.StylePriority.UseFont = false; + this.xrLabel5.Text = "Ort, Datum"; // - // xrLabel29 + // bindingSource1 // - this.xrLabel29.Borders = DevExpress.XtraPrinting.BorderSide.None; - this.xrLabel29.LocationFloat = new DevExpress.Utils.PointFloat(269.7917F, 87.00005F); - this.xrLabel29.Name = "xrLabel29"; - this.xrLabel29.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F); - this.xrLabel29.SizeF = new System.Drawing.SizeF(168.5414F, 17.00001F); - this.xrLabel29.StylePriority.UseBorders = false; - this.xrLabel29.StylePriority.UseFont = false; + this.bindingSource1.DataSource = typeof(BeWo.Report.ReportObjects.SettlementRO); // - // xrLabel28 + // xrLabel13 // - this.xrLabel28.Borders = DevExpress.XtraPrinting.BorderSide.None; - this.xrLabel28.DataBindings.AddRange(new DevExpress.XtraReports.UI.XRBinding[] { - new DevExpress.XtraReports.UI.XRBinding("Text", null, "CustomerReferenceNumber")}); - this.xrLabel28.LocationFloat = new DevExpress.Utils.PointFloat(269.7917F, 70.00005F); - this.xrLabel28.Name = "xrLabel28"; - this.xrLabel28.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F); - this.xrLabel28.SizeF = new System.Drawing.SizeF(168.5414F, 17.00001F); - this.xrLabel28.StylePriority.UseBorders = false; - this.xrLabel28.StylePriority.UseFont = false; + this.xrLabel13.BorderColor = System.Drawing.Color.LightGray; + this.xrLabel13.DataBindings.AddRange(new DevExpress.XtraReports.UI.XRBinding[] { + new DevExpress.XtraReports.UI.XRBinding("Text", null, "Notice")}); + this.xrLabel13.Font = new System.Drawing.Font("Calibri", 11.25F); + this.xrLabel13.LocationFloat = new DevExpress.Utils.PointFloat(0F, 409.4999F); + this.xrLabel13.Multiline = true; + this.xrLabel13.Name = "xrLabel13"; + this.xrLabel13.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F); + this.xrLabel13.SizeF = new System.Drawing.SizeF(678.3188F, 18.34726F); + this.xrLabel13.StylePriority.UseBorderColor = false; + this.xrLabel13.StylePriority.UseBorders = false; + this.xrLabel13.StylePriority.UseFont = false; + this.xrLabel13.StylePriority.UseTextAlignment = false; + this.xrLabel13.Text = resources.GetString("xrLabel13.Text"); + this.xrLabel13.TextAlignment = DevExpress.XtraPrinting.TextAlignment.TopLeft; // - // xrLabel27 + // xrPictureBox1 // - this.xrLabel27.Borders = DevExpress.XtraPrinting.BorderSide.None; - this.xrLabel27.DataBindings.AddRange(new DevExpress.XtraReports.UI.XRBinding[] { - new DevExpress.XtraReports.UI.XRBinding("Text", null, "CustomerBirthdayString")}); - this.xrLabel27.Font = new System.Drawing.Font("Calibri", 11F, System.Drawing.FontStyle.Bold); - this.xrLabel27.LocationFloat = new DevExpress.Utils.PointFloat(269.7917F, 53.00004F); - this.xrLabel27.Name = "xrLabel27"; - this.xrLabel27.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F); - this.xrLabel27.SizeF = new System.Drawing.SizeF(229.9998F, 17.00001F); - this.xrLabel27.StylePriority.UseBorders = false; - this.xrLabel27.StylePriority.UseFont = false; + this.xrPictureBox1.Image = ((System.Drawing.Image)(resources.GetObject("xrPictureBox1.Image"))); + this.xrPictureBox1.LocationFloat = new DevExpress.Utils.PointFloat(477.4165F, 0F); + this.xrPictureBox1.Name = "xrPictureBox1"; + this.xrPictureBox1.SizeF = new System.Drawing.SizeF(239.5834F, 106.25F); + this.xrPictureBox1.Sizing = DevExpress.XtraPrinting.ImageSizeMode.ZoomImage; // - // xrLabel26 + // xrLabel1 // - this.xrLabel26.Borders = DevExpress.XtraPrinting.BorderSide.None; - this.xrLabel26.DataBindings.AddRange(new DevExpress.XtraReports.UI.XRBinding[] { - new DevExpress.XtraReports.UI.XRBinding("Text", null, "CustomerFirstName")}); - this.xrLabel26.Font = new System.Drawing.Font("Calibri", 11F, System.Drawing.FontStyle.Bold); - this.xrLabel26.LocationFloat = new DevExpress.Utils.PointFloat(269.7917F, 36.00003F); - this.xrLabel26.Name = "xrLabel26"; - this.xrLabel26.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F); - this.xrLabel26.SizeF = new System.Drawing.SizeF(229.9998F, 17.00001F); - this.xrLabel26.StylePriority.UseBorders = false; - this.xrLabel26.StylePriority.UseFont = false; + this.xrLabel1.Font = new System.Drawing.Font("Calibri", 11F, System.Drawing.FontStyle.Bold); + this.xrLabel1.LocationFloat = new DevExpress.Utils.PointFloat(0F, 3.000005F); + this.xrLabel1.Name = "xrLabel1"; + this.xrLabel1.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F); + this.xrLabel1.SizeF = new System.Drawing.SizeF(168.5414F, 17.00001F); + this.xrLabel1.StylePriority.UseFont = false; + this.xrLabel1.Text = "Synprax"; // - // xrLabel25 + // xrLabel14 // - this.xrLabel25.Borders = DevExpress.XtraPrinting.BorderSide.None; - this.xrLabel25.DataBindings.AddRange(new DevExpress.XtraReports.UI.XRBinding[] { - new DevExpress.XtraReports.UI.XRBinding("Text", null, "CustomerLastName")}); - this.xrLabel25.Font = new System.Drawing.Font("Calibri", 11F, System.Drawing.FontStyle.Bold); - this.xrLabel25.LocationFloat = new DevExpress.Utils.PointFloat(269.7917F, 19.00002F); - this.xrLabel25.Name = "xrLabel25"; - this.xrLabel25.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F); - this.xrLabel25.SizeF = new System.Drawing.SizeF(229.9998F, 17.00001F); - this.xrLabel25.StylePriority.UseBorders = false; - this.xrLabel25.StylePriority.UseFont = false; + this.xrLabel14.BackColor = System.Drawing.Color.Transparent; + this.xrLabel14.Borders = DevExpress.XtraPrinting.BorderSide.None; + this.xrLabel14.CanShrink = true; + this.xrLabel14.Font = new System.Drawing.Font("Calibri", 11.25F); + this.xrLabel14.LocationFloat = new DevExpress.Utils.PointFloat(10.0001F, 95.72668F); + this.xrLabel14.Multiline = true; + this.xrLabel14.Name = "xrLabel14"; + this.xrLabel14.SizeF = new System.Drawing.SizeF(195.8333F, 20F); + this.xrLabel14.StylePriority.UseBackColor = false; + this.xrLabel14.StylePriority.UseBorders = false; + this.xrLabel14.StylePriority.UseFont = false; + this.xrLabel14.StylePriority.UsePadding = false; + this.xrLabel14.Text = "Monatliche Eigenbeteiligung: "; + this.xrLabel14.WordWrap = false; // - // xrLabel23 + // xrLabel16 // - this.xrLabel23.Borders = DevExpress.XtraPrinting.BorderSide.None; - this.xrLabel23.LocationFloat = new DevExpress.Utils.PointFloat(1.999919F, 87.00005F); - this.xrLabel23.Name = "xrLabel23"; - this.xrLabel23.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F); - this.xrLabel23.SizeF = new System.Drawing.SizeF(229.9998F, 17.00001F); - this.xrLabel23.StylePriority.UseBorders = false; - this.xrLabel23.StylePriority.UseFont = false; - this.xrLabel23.Text = "monatliche Eigenbeteiligung:"; + this.xrLabel16.BackColor = System.Drawing.Color.Transparent; + this.xrLabel16.Borders = DevExpress.XtraPrinting.BorderSide.None; + this.xrLabel16.CanShrink = true; + this.xrLabel16.DataBindings.AddRange(new DevExpress.XtraReports.UI.XRBinding[] { + new DevExpress.XtraReports.UI.XRBinding("Text", null, "Eigenbeteiligung")}); + this.xrLabel16.Font = new System.Drawing.Font("Calibri", 11.25F); + this.xrLabel16.LocationFloat = new DevExpress.Utils.PointFloat(205.8334F, 95.72668F); + this.xrLabel16.Multiline = true; + this.xrLabel16.Name = "xrLabel16"; + this.xrLabel16.SizeF = new System.Drawing.SizeF(303.125F, 20F); + this.xrLabel16.StylePriority.UseBackColor = false; + this.xrLabel16.StylePriority.UseBorders = false; + this.xrLabel16.StylePriority.UseFont = false; + this.xrLabel16.StylePriority.UsePadding = false; + this.xrLabel16.WordWrap = false; // - // xrLabel22 + // xrLabel78 // - this.xrLabel22.Borders = DevExpress.XtraPrinting.BorderSide.None; - this.xrLabel22.LocationFloat = new DevExpress.Utils.PointFloat(1.999919F, 70.00005F); - this.xrLabel22.Name = "xrLabel22"; - this.xrLabel22.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F); - this.xrLabel22.SizeF = new System.Drawing.SizeF(229.9998F, 17.00001F); - this.xrLabel22.StylePriority.UseBorders = false; - this.xrLabel22.StylePriority.UseFont = false; - this.xrLabel22.Text = "Aktenzeichen LWL:"; + this.xrLabel78.Borders = DevExpress.XtraPrinting.BorderSide.None; + this.xrLabel78.Font = new System.Drawing.Font("Calibri", 11F, System.Drawing.FontStyle.Bold); + this.xrLabel78.LocationFloat = new DevExpress.Utils.PointFloat(10.0001F, 158.0183F); + this.xrLabel78.Name = "xrLabel78"; + this.xrLabel78.Padding = new DevExpress.XtraPrinting.PaddingInfo(0, 0, 0, 0, 100F); + this.xrLabel78.SizeF = new System.Drawing.SizeF(499.7914F, 18F); + this.xrLabel78.StylePriority.UseBorders = false; + this.xrLabel78.StylePriority.UseFont = false; + this.xrLabel78.StylePriority.UsePadding = false; + this.xrLabel78.Text = "Bewilligte Anzahl von FLS laut Bewilligungsbescheid"; // - // xrLabel21 + // xrLabel79 // - this.xrLabel21.Borders = DevExpress.XtraPrinting.BorderSide.None; - this.xrLabel21.LocationFloat = new DevExpress.Utils.PointFloat(1.999919F, 53.00004F); - this.xrLabel21.Name = "xrLabel21"; - this.xrLabel21.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F); - this.xrLabel21.SizeF = new System.Drawing.SizeF(229.9998F, 17.00001F); - this.xrLabel21.StylePriority.UseBorders = false; - this.xrLabel21.StylePriority.UseFont = false; - this.xrLabel21.Text = "Geburtsdatum:"; + this.xrLabel79.Borders = DevExpress.XtraPrinting.BorderSide.None; + this.xrLabel79.Font = new System.Drawing.Font("Calibri", 11.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0))); + this.xrLabel79.LocationFloat = new DevExpress.Utils.PointFloat(10.0001F, 176.0183F); + this.xrLabel79.Name = "xrLabel79"; + this.xrLabel79.Padding = new DevExpress.XtraPrinting.PaddingInfo(0, 0, 0, 0, 100F); + this.xrLabel79.SizeF = new System.Drawing.SizeF(88.33308F, 17.00001F); + this.xrLabel79.StylePriority.UseBorders = false; + this.xrLabel79.StylePriority.UseFont = false; + this.xrLabel79.StylePriority.UsePadding = false; + this.xrLabel79.Text = "von"; // - // xrLabel12 + // xrLabel80 // - this.xrLabel12.Borders = DevExpress.XtraPrinting.BorderSide.None; - this.xrLabel12.LocationFloat = new DevExpress.Utils.PointFloat(1.999919F, 36.00003F); - this.xrLabel12.Name = "xrLabel12"; - this.xrLabel12.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F); - this.xrLabel12.SizeF = new System.Drawing.SizeF(229.9998F, 17.00001F); - this.xrLabel12.StylePriority.UseBorders = false; - this.xrLabel12.StylePriority.UseFont = false; - this.xrLabel12.Text = "Vorname:"; - // - // xrLabel10 - // - this.xrLabel10.Borders = DevExpress.XtraPrinting.BorderSide.None; - this.xrLabel10.LocationFloat = new DevExpress.Utils.PointFloat(1.999919F, 19.00002F); - this.xrLabel10.Name = "xrLabel10"; - this.xrLabel10.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F); - this.xrLabel10.SizeF = new System.Drawing.SizeF(229.9998F, 17.00001F); - this.xrLabel10.StylePriority.UseBorders = false; - this.xrLabel10.StylePriority.UseFont = false; - this.xrLabel10.Text = "Name:"; - // - // xrLabel7 - // - this.xrLabel7.Borders = DevExpress.XtraPrinting.BorderSide.None; - this.xrLabel7.Font = new System.Drawing.Font("Calibri", 11F, ((System.Drawing.FontStyle)((System.Drawing.FontStyle.Bold | System.Drawing.FontStyle.Underline)))); - this.xrLabel7.LocationFloat = new DevExpress.Utils.PointFloat(2F, 2F); - this.xrLabel7.Name = "xrLabel7"; - this.xrLabel7.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F); - this.xrLabel7.SizeF = new System.Drawing.SizeF(229.9998F, 17.00001F); - this.xrLabel7.StylePriority.UseBorders = false; - this.xrLabel7.StylePriority.UseFont = false; - this.xrLabel7.Text = "Angaben zur betreuten Person:"; - // - // GroupHeader2 - // - this.GroupHeader2.Controls.AddRange(new DevExpress.XtraReports.UI.XRControl[] { - this.xrLabel83, - this.xrLabel82, - this.xrLabel81, - this.xrLabel80, - this.xrLabel79, - this.xrLabel78, - this.xrLabel77, - this.panel3, - this.xrLabel36, - this.xrLabel35, - this.xrLabel33}); - this.GroupHeader2.Font = new System.Drawing.Font("Calibri", 11F); - this.GroupHeader2.HeightF = 124F; - this.GroupHeader2.Name = "GroupHeader2"; - this.GroupHeader2.StylePriority.UseFont = false; - // - // xrLabel83 - // - this.xrLabel83.Borders = DevExpress.XtraPrinting.BorderSide.None; - this.xrLabel83.LocationFloat = new DevExpress.Utils.PointFloat(400.7083F, 53F); - this.xrLabel83.Name = "xrLabel83"; - this.xrLabel83.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F); - this.xrLabel83.SizeF = new System.Drawing.SizeF(124.0421F, 17.00001F); - this.xrLabel83.StylePriority.UseBorders = false; - this.xrLabel83.StylePriority.UseFont = false; - this.xrLabel83.StylePriority.UseTextAlignment = false; - this.xrLabel83.Text = "Anzahl FLS"; - this.xrLabel83.TextAlignment = DevExpress.XtraPrinting.TextAlignment.TopCenter; - // - // xrLabel82 - // - this.xrLabel82.Borders = DevExpress.XtraPrinting.BorderSide.None; - this.xrLabel82.LocationFloat = new DevExpress.Utils.PointFloat(276.6663F, 53F); - this.xrLabel82.Name = "xrLabel82"; - this.xrLabel82.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F); - this.xrLabel82.SizeF = new System.Drawing.SizeF(124.0421F, 17.00001F); - this.xrLabel82.StylePriority.UseBorders = false; - this.xrLabel82.StylePriority.UseFont = false; - this.xrLabel82.StylePriority.UseTextAlignment = false; - this.xrLabel82.Text = "Anzahl Wochen"; - this.xrLabel82.TextAlignment = DevExpress.XtraPrinting.TextAlignment.TopCenter; + this.xrLabel80.Borders = DevExpress.XtraPrinting.BorderSide.None; + this.xrLabel80.Font = new System.Drawing.Font("Calibri", 11.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0))); + this.xrLabel80.LocationFloat = new DevExpress.Utils.PointFloat(98.33324F, 176.0183F); + this.xrLabel80.Name = "xrLabel80"; + this.xrLabel80.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F); + this.xrLabel80.SizeF = new System.Drawing.SizeF(88.33308F, 17.00001F); + this.xrLabel80.StylePriority.UseBorders = false; + this.xrLabel80.StylePriority.UseFont = false; + this.xrLabel80.Text = "bis"; // // xrLabel81 // this.xrLabel81.Borders = DevExpress.XtraPrinting.BorderSide.None; - this.xrLabel81.LocationFloat = new DevExpress.Utils.PointFloat(176.6663F, 53F); + this.xrLabel81.Font = new System.Drawing.Font("Calibri", 11.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0))); + this.xrLabel81.LocationFloat = new DevExpress.Utils.PointFloat(186.6664F, 176.0183F); this.xrLabel81.Name = "xrLabel81"; this.xrLabel81.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F); this.xrLabel81.SizeF = new System.Drawing.SizeF(100F, 17.00001F); @@ -564,453 +552,129 @@ namespace SynpraxReports this.xrLabel81.Text = "Anzahl Tage"; this.xrLabel81.TextAlignment = DevExpress.XtraPrinting.TextAlignment.TopCenter; // - // xrLabel80 + // xrLabel82 // - this.xrLabel80.Borders = DevExpress.XtraPrinting.BorderSide.None; - this.xrLabel80.LocationFloat = new DevExpress.Utils.PointFloat(88.33313F, 53F); - this.xrLabel80.Name = "xrLabel80"; - this.xrLabel80.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F); - this.xrLabel80.SizeF = new System.Drawing.SizeF(88.33308F, 17.00001F); - this.xrLabel80.StylePriority.UseBorders = false; - this.xrLabel80.StylePriority.UseFont = false; - this.xrLabel80.Text = "bis"; + this.xrLabel82.Borders = DevExpress.XtraPrinting.BorderSide.None; + this.xrLabel82.Font = new System.Drawing.Font("Calibri", 11.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0))); + this.xrLabel82.LocationFloat = new DevExpress.Utils.PointFloat(286.6664F, 176.0183F); + this.xrLabel82.Name = "xrLabel82"; + this.xrLabel82.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F); + this.xrLabel82.SizeF = new System.Drawing.SizeF(124.0421F, 17.00001F); + this.xrLabel82.StylePriority.UseBorders = false; + this.xrLabel82.StylePriority.UseFont = false; + this.xrLabel82.StylePriority.UseTextAlignment = false; + this.xrLabel82.Text = "Anzahl Wochen"; + this.xrLabel82.TextAlignment = DevExpress.XtraPrinting.TextAlignment.TopCenter; // - // xrLabel79 + // xrLabel83 // - this.xrLabel79.Borders = DevExpress.XtraPrinting.BorderSide.None; - this.xrLabel79.LocationFloat = new DevExpress.Utils.PointFloat(0F, 53F); - this.xrLabel79.Name = "xrLabel79"; - this.xrLabel79.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F); - this.xrLabel79.SizeF = new System.Drawing.SizeF(88.33308F, 17.00001F); - this.xrLabel79.StylePriority.UseBorders = false; - this.xrLabel79.StylePriority.UseFont = false; - this.xrLabel79.Text = "von"; + this.xrLabel83.Borders = DevExpress.XtraPrinting.BorderSide.None; + this.xrLabel83.Font = new System.Drawing.Font("Calibri", 11.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0))); + this.xrLabel83.LocationFloat = new DevExpress.Utils.PointFloat(410.7084F, 176.0183F); + this.xrLabel83.Name = "xrLabel83"; + this.xrLabel83.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F); + this.xrLabel83.SizeF = new System.Drawing.SizeF(124.0421F, 17.00001F); + this.xrLabel83.StylePriority.UseBorders = false; + this.xrLabel83.StylePriority.UseFont = false; + this.xrLabel83.StylePriority.UseTextAlignment = false; + this.xrLabel83.Text = "Anzahl FLS"; + this.xrLabel83.TextAlignment = DevExpress.XtraPrinting.TextAlignment.TopCenter; // - // xrLabel78 + // xrLabel17 // - this.xrLabel78.Font = new System.Drawing.Font("Calibri", 11F, System.Drawing.FontStyle.Bold); - this.xrLabel78.LocationFloat = new DevExpress.Utils.PointFloat(0F, 35.00001F); - this.xrLabel78.Name = "xrLabel78"; - this.xrLabel78.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F); - this.xrLabel78.SizeF = new System.Drawing.SizeF(499.7914F, 18F); - this.xrLabel78.StylePriority.UseFont = false; - this.xrLabel78.Text = "Bewilligte Anzahl von FLS laut Bewilligungsbescheid"; - // - // xrLabel77 - // - this.xrLabel77.LocationFloat = new DevExpress.Utils.PointFloat(269.7917F, 18F); - this.xrLabel77.Name = "xrLabel77"; - this.xrLabel77.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F); - this.xrLabel77.SizeF = new System.Drawing.SizeF(168.5414F, 17.00001F); - this.xrLabel77.StylePriority.UseFont = false; - // - // panel3 - // - this.panel3.Controls.AddRange(new DevExpress.XtraReports.UI.XRControl[] { - this.xrLabel103, - this.xrLabel96, - this.lblWeeks3, - this.lblTage3, - this.xrLabel6, - this.xrLabel85, - this.xrLabel84, - this.lblFLSTotal3}); - this.panel3.LocationFloat = new DevExpress.Utils.PointFloat(0F, 70.00002F); - this.panel3.Name = "panel3"; - this.panel3.SizeF = new System.Drawing.SizeF(711F, 54F); + this.xrLabel17.Borders = DevExpress.XtraPrinting.BorderSide.None; + this.xrLabel17.DataBindings.AddRange(new DevExpress.XtraReports.UI.XRBinding[] { + new DevExpress.XtraReports.UI.XRBinding("Text", null, "AccountingStartDateString")}); + this.xrLabel17.Font = new System.Drawing.Font("Calibri", 11F); + this.xrLabel17.LocationFloat = new DevExpress.Utils.PointFloat(10.00001F, 193.0183F); + this.xrLabel17.Name = "xrLabel17"; + this.xrLabel17.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F); + this.xrLabel17.SizeF = new System.Drawing.SizeF(88.33F, 18F); + this.xrLabel17.StylePriority.UseBorders = false; + this.xrLabel17.StylePriority.UseFont = false; + this.xrLabel17.Text = "xrLabel6"; // // xrLabel103 // + this.xrLabel103.Borders = DevExpress.XtraPrinting.BorderSide.None; this.xrLabel103.DataBindings.AddRange(new DevExpress.XtraReports.UI.XRBinding[] { new DevExpress.XtraReports.UI.XRBinding("Text", null, "AccountingEndDateString")}); - this.xrLabel103.LocationFloat = new DevExpress.Utils.PointFloat(88.33008F, 0F); + this.xrLabel103.Font = new System.Drawing.Font("Calibri", 11F); + this.xrLabel103.LocationFloat = new DevExpress.Utils.PointFloat(98.33318F, 193.0183F); this.xrLabel103.Name = "xrLabel103"; this.xrLabel103.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F); - this.xrLabel103.SizeF = new System.Drawing.SizeF(88.33F, 18F); + this.xrLabel103.SizeF = new System.Drawing.SizeF(88.32706F, 18F); + this.xrLabel103.StylePriority.UseBorders = false; this.xrLabel103.StylePriority.UseFont = false; this.xrLabel103.Text = "xrLabel6"; // + // lblTage3 + // + this.lblTage3.Borders = DevExpress.XtraPrinting.BorderSide.None; + this.lblTage3.Font = new System.Drawing.Font("Calibri", 11F); + this.lblTage3.LocationFloat = new DevExpress.Utils.PointFloat(186.6602F, 193.0183F); + this.lblTage3.Name = "lblTage3"; + this.lblTage3.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F); + this.lblTage3.SizeF = new System.Drawing.SizeF(100.0061F, 18F); + this.lblTage3.StylePriority.UseBorders = false; + this.lblTage3.StylePriority.UseFont = false; + this.lblTage3.StylePriority.UseTextAlignment = false; + this.lblTage3.TextAlignment = DevExpress.XtraPrinting.TextAlignment.TopCenter; + // + // lblWeeks3 + // + this.lblWeeks3.Borders = DevExpress.XtraPrinting.BorderSide.None; + this.lblWeeks3.Font = new System.Drawing.Font("Calibri", 11F); + this.lblWeeks3.LocationFloat = new DevExpress.Utils.PointFloat(286.6664F, 193.0183F); + this.lblWeeks3.Name = "lblWeeks3"; + this.lblWeeks3.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F); + this.lblWeeks3.SizeF = new System.Drawing.SizeF(124.042F, 18F); + this.lblWeeks3.StylePriority.UseBorders = false; + this.lblWeeks3.StylePriority.UseFont = false; + this.lblWeeks3.StylePriority.UseTextAlignment = false; + this.lblWeeks3.TextAlignment = DevExpress.XtraPrinting.TextAlignment.TopCenter; + // // xrLabel96 // + this.xrLabel96.Borders = DevExpress.XtraPrinting.BorderSide.None; this.xrLabel96.DataBindings.AddRange(new DevExpress.XtraReports.UI.XRBinding[] { new DevExpress.XtraReports.UI.XRBinding("Text", null, "ApprovedFLSWeekly", "{0:0.00}")}); - this.xrLabel96.LocationFloat = new DevExpress.Utils.PointFloat(400.7083F, 0F); + this.xrLabel96.Font = new System.Drawing.Font("Calibri", 11F); + this.xrLabel96.LocationFloat = new DevExpress.Utils.PointFloat(410.7084F, 193.0183F); this.xrLabel96.Name = "xrLabel96"; this.xrLabel96.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F); this.xrLabel96.SizeF = new System.Drawing.SizeF(124.0421F, 18F); + this.xrLabel96.StylePriority.UseBorders = false; this.xrLabel96.StylePriority.UseFont = false; this.xrLabel96.StylePriority.UseTextAlignment = false; this.xrLabel96.Text = "xrLabel96"; this.xrLabel96.TextAlignment = DevExpress.XtraPrinting.TextAlignment.TopCenter; // - // lblWeeks3 - // - this.lblWeeks3.LocationFloat = new DevExpress.Utils.PointFloat(276.6663F, 0F); - this.lblWeeks3.Name = "lblWeeks3"; - this.lblWeeks3.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F); - this.lblWeeks3.SizeF = new System.Drawing.SizeF(124.042F, 18F); - this.lblWeeks3.StylePriority.UseFont = false; - this.lblWeeks3.StylePriority.UseTextAlignment = false; - this.lblWeeks3.TextAlignment = DevExpress.XtraPrinting.TextAlignment.TopCenter; - // - // lblTage3 - // - this.lblTage3.LocationFloat = new DevExpress.Utils.PointFloat(176.6602F, 0F); - this.lblTage3.Name = "lblTage3"; - this.lblTage3.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F); - this.lblTage3.SizeF = new System.Drawing.SizeF(100.0061F, 18F); - this.lblTage3.StylePriority.UseFont = false; - this.lblTage3.StylePriority.UseTextAlignment = false; - this.lblTage3.TextAlignment = DevExpress.XtraPrinting.TextAlignment.TopCenter; - // - // xrLabel6 - // - this.xrLabel6.DataBindings.AddRange(new DevExpress.XtraReports.UI.XRBinding[] { - new DevExpress.XtraReports.UI.XRBinding("Text", null, "AccountingStartDateString")}); - this.xrLabel6.LocationFloat = new DevExpress.Utils.PointFloat(0F, 0F); - this.xrLabel6.Name = "xrLabel6"; - this.xrLabel6.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F); - this.xrLabel6.SizeF = new System.Drawing.SizeF(88.33F, 18F); - this.xrLabel6.StylePriority.UseFont = false; - this.xrLabel6.Text = "xrLabel6"; - // - // xrLabel85 - // - this.xrLabel85.Font = new System.Drawing.Font("Arial", 8F); - this.xrLabel85.LocationFloat = new DevExpress.Utils.PointFloat(352.0421F, 36F); - this.xrLabel85.Name = "xrLabel85"; - this.xrLabel85.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F); - this.xrLabel85.SizeF = new System.Drawing.SizeF(193.5415F, 18F); - this.xrLabel85.StylePriority.UseFont = false; - this.xrLabel85.StylePriority.UseTextAlignment = false; - this.xrLabel85.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleLeft; - // - // xrLabel84 - // - this.xrLabel84.Font = new System.Drawing.Font("Calibri", 11F, System.Drawing.FontStyle.Bold); - this.xrLabel84.LocationFloat = new DevExpress.Utils.PointFloat(0F, 36F); - this.xrLabel84.Name = "xrLabel84"; - this.xrLabel84.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F); - this.xrLabel84.SizeF = new System.Drawing.SizeF(352.0421F, 18.00003F); - this.xrLabel84.StylePriority.UseFont = false; - this.xrLabel84.StylePriority.UseTextAlignment = false; - this.xrLabel84.Text = "Tatsächlich geleistete FLS im Bewilligungszeitraum:"; - this.xrLabel84.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleLeft; - // // lblFLSTotal3 // - this.lblFLSTotal3.LocationFloat = new DevExpress.Utils.PointFloat(565F, 0F); + this.lblFLSTotal3.Borders = DevExpress.XtraPrinting.BorderSide.None; + this.lblFLSTotal3.Font = new System.Drawing.Font("Calibri", 11.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0))); + this.lblFLSTotal3.LocationFloat = new DevExpress.Utils.PointFloat(543.0048F, 193.0183F); this.lblFLSTotal3.Name = "lblFLSTotal3"; this.lblFLSTotal3.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F); this.lblFLSTotal3.SizeF = new System.Drawing.SizeF(117F, 18F); + this.lblFLSTotal3.StylePriority.UseBorders = false; this.lblFLSTotal3.StylePriority.UseFont = false; this.lblFLSTotal3.StylePriority.UseTextAlignment = false; this.lblFLSTotal3.TextAlignment = DevExpress.XtraPrinting.TextAlignment.TopRight; // - // xrLabel36 - // - this.xrLabel36.DataBindings.AddRange(new DevExpress.XtraReports.UI.XRBinding[] { - new DevExpress.XtraReports.UI.XRBinding("Text", null, "AccountingEndDateString", "bis {0}")}); - this.xrLabel36.Font = new System.Drawing.Font("Calibri", 11F, System.Drawing.FontStyle.Bold); - this.xrLabel36.LocationFloat = new DevExpress.Utils.PointFloat(438.3331F, 0F); - this.xrLabel36.Name = "xrLabel36"; - this.xrLabel36.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F); - this.xrLabel36.SizeF = new System.Drawing.SizeF(216.4567F, 18F); - this.xrLabel36.StylePriority.UseFont = false; - this.xrLabel36.Text = "xrLabel36"; - // - // xrLabel35 - // - this.xrLabel35.DataBindings.AddRange(new DevExpress.XtraReports.UI.XRBinding[] { - new DevExpress.XtraReports.UI.XRBinding("Text", null, "AccountingStartDateString")}); - this.xrLabel35.Font = new System.Drawing.Font("Calibri", 11F, System.Drawing.FontStyle.Bold); - this.xrLabel35.LocationFloat = new DevExpress.Utils.PointFloat(269.7917F, 0F); - this.xrLabel35.Name = "xrLabel35"; - this.xrLabel35.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F); - this.xrLabel35.SizeF = new System.Drawing.SizeF(168.54F, 18F); - this.xrLabel35.StylePriority.UseFont = false; - this.xrLabel35.Text = "xrLabel35"; - // - // xrLabel33 - // - this.xrLabel33.Font = new System.Drawing.Font("Calibri", 11F, ((System.Drawing.FontStyle)((System.Drawing.FontStyle.Bold | System.Drawing.FontStyle.Underline)))); - this.xrLabel33.LocationFloat = new DevExpress.Utils.PointFloat(0F, 0F); - this.xrLabel33.Name = "xrLabel33"; - this.xrLabel33.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F); - this.xrLabel33.SizeF = new System.Drawing.SizeF(230F, 18F); - this.xrLabel33.StylePriority.UseFont = false; - this.xrLabel33.Text = "Bewilligungszeitraum"; - // - // lblClaimText - // - this.lblClaimText.Font = new System.Drawing.Font("Calibri", 11F, ((System.Drawing.FontStyle)((System.Drawing.FontStyle.Bold | System.Drawing.FontStyle.Underline)))); - this.lblClaimText.LocationFloat = new DevExpress.Utils.PointFloat(0F, 118F); - this.lblClaimText.Name = "lblClaimText"; - this.lblClaimText.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F); - this.lblClaimText.SizeF = new System.Drawing.SizeF(468.6668F, 18.00003F); - this.lblClaimText.StylePriority.UseFont = false; - this.lblClaimText.StylePriority.UseTextAlignment = false; - this.lblClaimText.Text = "Nachzahlungsanspruch"; - this.lblClaimText.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleLeft; - // - // xrLabel70 - // - this.xrLabel70.DataBindings.AddRange(new DevExpress.XtraReports.UI.XRBinding[] { - new DevExpress.XtraReports.UI.XRBinding("Text", null, "AmountAdvancedPayments")}); - this.xrLabel70.LocationFloat = new DevExpress.Utils.PointFloat(565F, 82F); - this.xrLabel70.Name = "xrLabel70"; - this.xrLabel70.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F); - this.xrLabel70.SizeF = new System.Drawing.SizeF(117F, 18F); - this.xrLabel70.StylePriority.UseFont = false; - this.xrLabel70.StylePriority.UseTextAlignment = false; - this.xrLabel70.Text = "xrLabel9"; - this.xrLabel70.TextAlignment = DevExpress.XtraPrinting.TextAlignment.TopRight; - // - // xrLabel87 - // - this.xrLabel87.LocationFloat = new DevExpress.Utils.PointFloat(0F, 28.0001F); - this.xrLabel87.Name = "xrLabel87"; - this.xrLabel87.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F); - this.xrLabel87.SizeF = new System.Drawing.SizeF(468.6668F, 18.00003F); - this.xrLabel87.StylePriority.UseFont = false; - this.xrLabel87.StylePriority.UseTextAlignment = false; - this.xrLabel87.Text = "abzüglich festgelegte Eigenbeteilligung"; - this.xrLabel87.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleLeft; - // - // xrLabel72 - // - this.xrLabel72.DataBindings.AddRange(new DevExpress.XtraReports.UI.XRBinding[] { - new DevExpress.XtraReports.UI.XRBinding("Text", null, "AmountRecordedFLS", "{0:c}")}); - this.xrLabel72.LocationFloat = new DevExpress.Utils.PointFloat(564.9999F, 10.00001F); - this.xrLabel72.Name = "xrLabel72"; - this.xrLabel72.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F); - this.xrLabel72.SizeF = new System.Drawing.SizeF(117F, 18F); - this.xrLabel72.StylePriority.UseFont = false; - this.xrLabel72.StylePriority.UseTextAlignment = false; - this.xrLabel72.Text = "xrLabel3"; - this.xrLabel72.TextAlignment = DevExpress.XtraPrinting.TextAlignment.TopRight; - // - // xrLabel88 - // - this.xrLabel88.LocationFloat = new DevExpress.Utils.PointFloat(0F, 46.00013F); - this.xrLabel88.Name = "xrLabel88"; - this.xrLabel88.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F); - this.xrLabel88.SizeF = new System.Drawing.SizeF(468.6668F, 18.00003F); - this.xrLabel88.StylePriority.UseFont = false; - this.xrLabel88.StylePriority.UseTextAlignment = false; - this.xrLabel88.Text = "verbleiben:"; - this.xrLabel88.TextAlignment = DevExpress.XtraPrinting.TextAlignment.TopRight; - // - // xrLabel42 - // - this.xrLabel42.DataBindings.AddRange(new DevExpress.XtraReports.UI.XRBinding[] { - new DevExpress.XtraReports.UI.XRBinding("Text", null, "Eigenbeteiligung", "-{0:c}")}); - this.xrLabel42.LocationFloat = new DevExpress.Utils.PointFloat(565F, 28.00004F); - this.xrLabel42.Name = "xrLabel42"; - this.xrLabel42.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F); - this.xrLabel42.SizeF = new System.Drawing.SizeF(117F, 18F); - this.xrLabel42.StylePriority.UseFont = false; - this.xrLabel42.StylePriority.UseTextAlignment = false; - this.xrLabel42.Text = "xrLabel42"; - this.xrLabel42.TextAlignment = DevExpress.XtraPrinting.TextAlignment.TopRight; - // - // xrLabel71 - // - this.xrLabel71.DataBindings.AddRange(new DevExpress.XtraReports.UI.XRBinding[] { - new DevExpress.XtraReports.UI.XRBinding("Text", null, "fieldAmountTotal", "{0:c}")}); - this.xrLabel71.LocationFloat = new DevExpress.Utils.PointFloat(565F, 46F); - this.xrLabel71.Name = "xrLabel71"; - this.xrLabel71.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F); - this.xrLabel71.SizeF = new System.Drawing.SizeF(117F, 18F); - this.xrLabel71.StylePriority.UseFont = false; - this.xrLabel71.StylePriority.UseTextAlignment = false; - this.xrLabel71.Text = "xrLabel6"; - this.xrLabel71.TextAlignment = DevExpress.XtraPrinting.TextAlignment.TopRight; - // - // xrLabel90 - // - this.xrLabel90.LocationFloat = new DevExpress.Utils.PointFloat(0F, 82F); - this.xrLabel90.Name = "xrLabel90"; - this.xrLabel90.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F); - this.xrLabel90.SizeF = new System.Drawing.SizeF(483F, 18.00003F); - this.xrLabel90.StylePriority.UseFont = false; - this.xrLabel90.StylePriority.UseTextAlignment = false; - this.xrLabel90.Text = "Summe der anzurechnenden Abschlagszahlungen (einschl. Überzahlungen)"; - this.xrLabel90.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleLeft; - // - // xrLabel86 - // - this.xrLabel86.Font = new System.Drawing.Font("Calibri", 11F, ((System.Drawing.FontStyle)((System.Drawing.FontStyle.Bold | System.Drawing.FontStyle.Underline)))); - this.xrLabel86.LocationFloat = new DevExpress.Utils.PointFloat(0F, 10.00001F); - this.xrLabel86.Name = "xrLabel86"; - this.xrLabel86.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F); - this.xrLabel86.SizeF = new System.Drawing.SizeF(468.6668F, 18.00003F); - this.xrLabel86.StylePriority.UseFont = false; - this.xrLabel86.StylePriority.UseTextAlignment = false; - this.xrLabel86.Text = "Vergütungsanspruch"; - this.xrLabel86.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleLeft; - // - // xrLabel69 - // - this.xrLabel69.DataBindings.AddRange(new DevExpress.XtraReports.UI.XRBinding[] { - new DevExpress.XtraReports.UI.XRBinding("Text", null, "ClaimWithEigenbeteiligung", "{0:c}")}); - this.xrLabel69.Font = new System.Drawing.Font("Calibri", 11F, System.Drawing.FontStyle.Bold); - this.xrLabel69.LocationFloat = new DevExpress.Utils.PointFloat(565F, 118F); - this.xrLabel69.Name = "xrLabel69"; - this.xrLabel69.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F); - this.xrLabel69.SizeF = new System.Drawing.SizeF(117F, 18F); - this.xrLabel69.StylePriority.UseFont = false; - this.xrLabel69.StylePriority.UseTextAlignment = false; - this.xrLabel69.Text = "xrLabel10"; - this.xrLabel69.TextAlignment = DevExpress.XtraPrinting.TextAlignment.TopRight; - // - // GroupFooter1 - // - this.GroupFooter1.Controls.AddRange(new DevExpress.XtraReports.UI.XRControl[] { - this.xrLabel17, - this.xrLabel86, - this.xrLabel69, - this.xrLabel90, - this.xrLabel71, - this.xrLabel42, - this.xrLabel88, - this.xrLabel72, - this.xrLabel87, - this.xrLabel70, - this.lblClaimText}); - this.GroupFooter1.Font = new System.Drawing.Font("Calibri", 11F); - this.GroupFooter1.HeightF = 200.4167F; - this.GroupFooter1.Name = "GroupFooter1"; - this.GroupFooter1.StylePriority.UseFont = false; - // - // xrLabel17 - // - this.xrLabel17.Font = new System.Drawing.Font("Calibri", 11F, System.Drawing.FontStyle.Bold); - this.xrLabel17.LocationFloat = new DevExpress.Utils.PointFloat(0F, 156.4861F); - this.xrLabel17.Name = "xrLabel17"; - this.xrLabel17.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F); - this.xrLabel17.SizeF = new System.Drawing.SizeF(682.0031F, 18.00003F); - this.xrLabel17.StylePriority.UseFont = false; - this.xrLabel17.StylePriority.UseTextAlignment = false; - this.xrLabel17.Text = "Kontoverbindung: Bank für Sozialwirtschaft, IBAN: DE54 3702 0500 0001 3106 00, BI" + - "C: BFSWDE33XXX"; - this.xrLabel17.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleLeft; - // - // fieldAmountTotal - // - this.fieldAmountTotal.Expression = "[AmountRecordedFLS] - [Eigenbeteiligung]"; - this.fieldAmountTotal.FieldType = DevExpress.XtraReports.UI.FieldType.Decimal; - this.fieldAmountTotal.Name = "fieldAmountTotal"; - // - // DetailReport - // - this.DetailReport.Bands.AddRange(new DevExpress.XtraReports.UI.Band[] { - this.Detail1}); - 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.xrLabel41, - this.xrLabel40}); - this.Detail1.Font = new System.Drawing.Font("Calibri", 11F); - this.Detail1.HeightF = 18F; - this.Detail1.Name = "Detail1"; - this.Detail1.StylePriority.UseFont = false; - // - // xrLabel41 - // - this.xrLabel41.DataBindings.AddRange(new DevExpress.XtraReports.UI.XRBinding[] { - new DevExpress.XtraReports.UI.XRBinding("Text", null, "InvoiceItems.AmountTotal", "{0:c}")}); - this.xrLabel41.LocationFloat = new DevExpress.Utils.PointFloat(565F, 0F); - this.xrLabel41.Name = "xrLabel41"; - this.xrLabel41.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F); - this.xrLabel41.SizeF = new System.Drawing.SizeF(117F, 18F); - this.xrLabel41.StylePriority.UseTextAlignment = false; - this.xrLabel41.Text = "xrLabel41"; - this.xrLabel41.TextAlignment = DevExpress.XtraPrinting.TextAlignment.TopRight; - // - // xrLabel40 - // - this.xrLabel40.DataBindings.AddRange(new DevExpress.XtraReports.UI.XRBinding[] { - new DevExpress.XtraReports.UI.XRBinding("Text", null, "InvoiceItems.ItemDescription")}); - this.xrLabel40.LocationFloat = new DevExpress.Utils.PointFloat(0F, 0F); - this.xrLabel40.Name = "xrLabel40"; - this.xrLabel40.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F); - this.xrLabel40.SizeF = new System.Drawing.SizeF(565F, 18F); - this.xrLabel40.Text = "xrLabel40"; - // - // bindingSource1 - // - this.bindingSource1.DataSource = typeof(BeWo.Report.ReportObjects.SettlementRO); - // - // GroupFooter2 - // - this.GroupFooter2.Controls.AddRange(new DevExpress.XtraReports.UI.XRControl[] { - this.chkBeendet, - this.chkNichtBeendet, - this.xrLabel11, - this.xrLabel16}); - this.GroupFooter2.Font = new System.Drawing.Font("Calibri", 11F); - this.GroupFooter2.HeightF = 167.4792F; - this.GroupFooter2.Level = 1; - this.GroupFooter2.Name = "GroupFooter2"; - this.GroupFooter2.StylePriority.UseFont = false; - // - // chkBeendet - // - this.chkBeendet.LocationFloat = new DevExpress.Utils.PointFloat(0F, 0F); - this.chkBeendet.Name = "chkBeendet"; - this.chkBeendet.SizeF = new System.Drawing.SizeF(324.9999F, 21.875F); - this.chkBeendet.Text = "Die Betreuung wurde am beendet."; - // - // chkNichtBeendet - // - this.chkNichtBeendet.LocationFloat = new DevExpress.Utils.PointFloat(333.0001F, 0F); - this.chkNichtBeendet.Name = "chkNichtBeendet"; - this.chkNichtBeendet.SizeF = new System.Drawing.SizeF(358.9999F, 21.875F); - this.chkNichtBeendet.Text = "Die Betreuung dauert an."; - // - // xrLabel11 - // - this.xrLabel11.BorderColor = System.Drawing.Color.LightGray; - this.xrLabel11.DataBindings.AddRange(new DevExpress.XtraReports.UI.XRBinding[] { - new DevExpress.XtraReports.UI.XRBinding("Text", null, "Notice")}); - this.xrLabel11.LocationFloat = new DevExpress.Utils.PointFloat(0F, 149.132F); - 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(682.0031F, 18.34726F); - this.xrLabel11.StylePriority.UseBorderColor = false; - this.xrLabel11.StylePriority.UseBorders = false; - this.xrLabel11.StylePriority.UseFont = false; - this.xrLabel11.StylePriority.UseTextAlignment = false; - this.xrLabel11.Text = resources.GetString("xrLabel11.Text"); - this.xrLabel11.TextAlignment = DevExpress.XtraPrinting.TextAlignment.TopLeft; - // // Spitzabrechnung // this.Bands.AddRange(new DevExpress.XtraReports.UI.Band[] { this.Detail, - this.ReportHeader, - this.ReportFooter, this.topMarginBand1, this.bottomMarginBand1, - this.GroupHeader1, - this.GroupHeader2, - this.GroupFooter1, - this.DetailReport, - this.GroupFooter2}); - this.CalculatedFields.AddRange(new DevExpress.XtraReports.UI.CalculatedField[] { - this.fieldAmountTotal}); + this.GroupHeader1}); 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(60, 56, 40, 20); + this.Margins = new System.Drawing.Printing.Margins(80, 30, 50, 50); this.PageHeight = 1169; this.PageWidth = 827; this.PaperKind = System.Drawing.Printing.PaperKind.A4; @@ -1024,81 +688,46 @@ namespace SynpraxReports 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.ReportFooterBand ReportFooter; - private DevExpress.XtraReports.UI.XRLabel xrLabel1; - private DevExpress.XtraReports.UI.XRLabel xrLabel4; - private DevExpress.XtraReports.UI.XRLabel xrLabel3; + private DevExpress.XtraReports.UI.XRLabel xrLabel12; + private DevExpress.XtraReports.UI.XRCheckBox xrCheckBox2; + private DevExpress.XtraReports.UI.XRCheckBox xrCheckBox1; + private DevExpress.XtraReports.UI.XRLabel xrLabel35; + private DevExpress.XtraReports.UI.XRLine xrLine1; + private DevExpress.XtraReports.UI.XRLabel lblAdresse; + private DevExpress.XtraReports.UI.XRLabel lblAdresseLori; private DevExpress.XtraReports.UI.XRLabel xrLabel2; - private DevExpress.XtraReports.UI.XRLabel xrLabel15; - private DevExpress.XtraReports.UI.XRLabel xrLabel8; - private DevExpress.XtraReports.UI.XRLabel xrLabel14; - private DevExpress.XtraReports.UI.XRLabel xrLabel13; - private DevExpress.XtraReports.UI.XRLabel labelHourlyRate; - private DevExpress.XtraReports.UI.XRLabel xrLabel9; private DevExpress.XtraReports.UI.GroupHeaderBand GroupHeader1; - private DevExpress.XtraReports.UI.XRPanel xrPanel1; - private DevExpress.XtraReports.UI.XRLabel xrLabel57; - private DevExpress.XtraReports.UI.XRLabel xrLabel7; - private DevExpress.XtraReports.UI.XRLabel xrLabel23; - private DevExpress.XtraReports.UI.XRLabel xrLabel22; - private DevExpress.XtraReports.UI.XRLabel xrLabel21; - private DevExpress.XtraReports.UI.XRLabel xrLabel12; - private DevExpress.XtraReports.UI.XRLabel xrLabel10; - private DevExpress.XtraReports.UI.GroupHeaderBand GroupHeader2; - private DevExpress.XtraReports.UI.XRLabel xrLabel32; - private DevExpress.XtraReports.UI.XRLabel xrLabel31; - private DevExpress.XtraReports.UI.XRLabel xrLabel29; - private DevExpress.XtraReports.UI.XRLabel xrLabel27; - private DevExpress.XtraReports.UI.XRLabel xrLabel26; - private DevExpress.XtraReports.UI.XRLabel xrLabel25; - private DevExpress.XtraReports.UI.XRLabel xrLabel28; - private DevExpress.XtraReports.UI.XRLabel xrLabel34; - private DevExpress.XtraReports.UI.XRLabel xrLabel33; - private DevExpress.XtraReports.UI.XRLabel xrLabel36; - private DevExpress.XtraReports.UI.XRLabel xrLabel35; - private DevExpress.XtraReports.UI.XRLabel xrLabel77; - private DevExpress.XtraReports.UI.XRPanel panel3; - private DevExpress.XtraReports.UI.XRLabel lblFLSTotal3; - private DevExpress.XtraReports.UI.XRLabel xrLabel42; - private DevExpress.XtraReports.UI.XRLabel xrLabel69; - private DevExpress.XtraReports.UI.XRLabel xrLabel70; - private DevExpress.XtraReports.UI.XRLabel xrLabel71; - private DevExpress.XtraReports.UI.XRLabel xrLabel72; - private DevExpress.XtraReports.UI.XRLabel xrLabel78; - private DevExpress.XtraReports.UI.XRLabel xrLabel82; - private DevExpress.XtraReports.UI.XRLabel xrLabel81; - private DevExpress.XtraReports.UI.XRLabel xrLabel80; - private DevExpress.XtraReports.UI.XRLabel xrLabel79; - private DevExpress.XtraReports.UI.XRLabel xrLabel83; - private DevExpress.XtraReports.UI.XRLabel xrLabel85; - private DevExpress.XtraReports.UI.XRLabel xrLabel84; - private DevExpress.XtraReports.UI.XRLabel xrLabel86; - private DevExpress.XtraReports.UI.XRLabel xrLabel90; - private DevExpress.XtraReports.UI.XRLabel xrLabel88; - private DevExpress.XtraReports.UI.XRLabel xrLabel87; - private DevExpress.XtraReports.UI.GroupFooterBand GroupFooter1; - private DevExpress.XtraReports.UI.XRLabel xrLabel93; - private DevExpress.XtraReports.UI.XRLabel xrLabel96; - private DevExpress.XtraReports.UI.XRLabel lblWeeks3; - private DevExpress.XtraReports.UI.XRLabel lblTage3; + private DevExpress.XtraReports.UI.XRLabel xrLabel4; private DevExpress.XtraReports.UI.XRLabel xrLabel6; - private DevExpress.XtraReports.UI.XRLabel xrLabel103; - private DevExpress.XtraReports.UI.XRLabel lblClaimText; - private DevExpress.XtraReports.UI.CalculatedField fieldAmountTotal; - private DevExpress.XtraReports.UI.DetailReportBand DetailReport; - private DevExpress.XtraReports.UI.DetailBand Detail1; - private DevExpress.XtraReports.UI.XRLabel xrLabel41; - private DevExpress.XtraReports.UI.XRLabel xrLabel40; - private DevExpress.XtraReports.UI.XRPictureBox xrPictureBox1; - private DevExpress.XtraReports.UI.XRLabel xrLabel16; - private DevExpress.XtraReports.UI.GroupFooterBand GroupFooter2; + private DevExpress.XtraReports.UI.XRLabel xrLabel5; + private DevExpress.XtraReports.UI.XRPanel xrPanel1; + private DevExpress.XtraReports.UI.XRLabel xrLabel15; + private DevExpress.XtraReports.UI.XRLabel lblAktenzeichen; + private DevExpress.XtraReports.UI.XRLabel xrLabel7; + private DevExpress.XtraReports.UI.XRLabel xrLabel10; + private DevExpress.XtraReports.UI.XRLabel xrLabel3; + private DevExpress.XtraReports.UI.XRLabel xrLabel9; + private DevExpress.XtraReports.UI.XRLabel xrLabel8; private DevExpress.XtraReports.UI.XRLabel xrLabel11; + private DevExpress.XtraReports.UI.XRLabel xrLabel13; + private DevExpress.XtraReports.UI.XRPictureBox xrPictureBox1; + private DevExpress.XtraReports.UI.XRLabel xrLabel1; + private DevExpress.XtraReports.UI.XRLabel xrLabel16; + private DevExpress.XtraReports.UI.XRLabel xrLabel14; + private DevExpress.XtraReports.UI.XRLabel xrLabel78; + private DevExpress.XtraReports.UI.XRLabel xrLabel79; + private DevExpress.XtraReports.UI.XRLabel xrLabel80; + private DevExpress.XtraReports.UI.XRLabel xrLabel81; + private DevExpress.XtraReports.UI.XRLabel xrLabel82; + private DevExpress.XtraReports.UI.XRLabel xrLabel83; private DevExpress.XtraReports.UI.XRLabel xrLabel17; - private DevExpress.XtraReports.UI.XRCheckBox chkBeendet; - private DevExpress.XtraReports.UI.XRCheckBox chkNichtBeendet; + private DevExpress.XtraReports.UI.XRLabel xrLabel103; + private DevExpress.XtraReports.UI.XRLabel lblTage3; + private DevExpress.XtraReports.UI.XRLabel lblWeeks3; + private DevExpress.XtraReports.UI.XRLabel xrLabel96; + private DevExpress.XtraReports.UI.XRLabel lblFLSTotal3; } } diff --git a/ReportImp/SynpraxReports/SettlementReport.cs b/ReportImp/SynpraxReports/SettlementReport.cs index 00f2c7cae..8c58c415b 100644 --- a/ReportImp/SynpraxReports/SettlementReport.cs +++ b/ReportImp/SynpraxReports/SettlementReport.cs @@ -1,17 +1,16 @@ using System; using System.Collections.Generic; -using System.Drawing; -using System.Collections; -using System.ComponentModel; +using System.Linq; +using System.Text; using BeWo.Data.Access; using BeWo.Data.Entities; -using BS.Shared; -using BS.Shared.DataContracts; -using DevExpress.XtraReports.UI; using BeWo.Report.ReportObjects; using BeWo.Report; +using BS.Shared.DataContracts; +using DevExpress.XtraReports.UI; +using BS.Shared; -namespace SynpraxReports +namespace AbwMuenster { public partial class Spitzabrechnung : DevExpress.XtraReports.UI.XtraReport, IBeWoReport { @@ -22,40 +21,58 @@ namespace SynpraxReports public void SetReportDataSource(SettlementRO pRO) { - if (pRO.TerminationDate.HasValue) + if (!String.IsNullOrEmpty(pRO.SenderContactPersonPhone)) { - chkBeendet.Text = String.Format("Die Betreuung wurde am {0:dd.MM.yyyy} beendet.", pRO.TerminationDate); - chkBeendet.Checked = true; + pRO.SenderContactPersonPhone = pRO.SenderContactPersonPhone.Replace("Tel.:", "").Trim(); + } + if (!String.IsNullOrEmpty(pRO.SenderContactPersonFax)) + { + pRO.SenderContactPersonFax = pRO.SenderContactPersonFax.Replace("Fax:", "").Trim(); + } + if (!String.IsNullOrEmpty(pRO.SenderContactPersonMail)) + { + pRO.SenderContactPersonMail = pRO.SenderContactPersonMail.Replace("E-Mail:", "").Trim(); + } + + + xrCheckBox2.Checked = true; + + if (pRO.CostBearer2SupportConceptOid > 0) + { + var c2s = DAOFactory.GenericDAO.LoadByID(pRO.CostBearer2SupportConceptOid); + + if (c2s.SupportConcept.Customer.TerminationDate.HasValue) + { + xrCheckBox1.Text = String.Format(" Die Betreuung wurde beendet am {0:dd.MM.yyyy}", + c2s.SupportConcept.Customer.TerminationDate); + xrCheckBox2.Checked = false; + xrCheckBox1.Checked = true; + } + } + if (!String.IsNullOrEmpty(pRO.SenderContactPersonPhone)) + pRO.SenderContactPersonPhone = pRO.SenderContactPersonPhone.Replace("Tel.:", "").Trim(); + + if (!String.IsNullOrEmpty(pRO.SenderContactPersonFax)) + pRO.SenderContactPersonFax = pRO.SenderContactPersonFax.Replace("Fax:", "").Trim(); + + if (!String.IsNullOrEmpty(pRO.SenderContactPersonMail)) + pRO.SenderContactPersonMail = pRO.SenderContactPersonMail.Replace("E-Mail:", "").Trim(); + bool isOldVersion = true; + + if (pRO.HourlyRate3 == 0 && !pRO.HourlyRateOld.HasValue && !pRO.HourlyRateNew.HasValue) + isOldVersion = false; + + if (!isOldVersion && pRO.ApprovedFLSWeekly == 0 && pRO.Approvals != null && pRO.Approvals.Count > 0) + { + var app = pRO.Approvals[0]; + if (app.ApprovalUnit.HasValue && app.ApprovalUnit.Value == AccountingIntervalType.Weekly && app.ApprovedPerUnit.HasValue) + pRO.ApprovedFLSWeekly = app.ApprovedPerUnit.Value; } else { - chkNichtBeendet.Checked = true; + pRO.ApprovedFLSWeekly *= (decimal)pRO.RateFactor; } - if (pRO.TerminationDate.HasValue) - { - //lblTermination.Text = String.Format("{0:dd.MM.yyyy} {1}", pRO.TerminationDate, pRO.TerminationReason); - } - - bool isOldVersion = true; - - if (pRO.HourlyRate3 == 0 && !pRO.HourlyRateOld.HasValue && !pRO.HourlyRateNew.HasValue) - isOldVersion = false; - - if (pRO.ClaimWithEigenbeteiligung < 0) - lblClaimText.Text = "Rckzahlungsverpflichtung"; - - if (!isOldVersion && pRO.ApprovedFLSWeekly == 0 && pRO.Approvals != null && pRO.Approvals.Count > 0) - { - var app = pRO.Approvals[0]; - if (app.ApprovalUnit.HasValue && app.ApprovalUnit.Value == AccountingIntervalType.Weekly && app.ApprovedPerUnit.HasValue) - pRO.ApprovedFLSWeekly = app.ApprovedPerUnit.Value; - } - else - { - pRO.ApprovedFLSWeekly *= (decimal)pRO.RateFactor; - } - pRO.ApprovedFLSWeekly = Math.Round(pRO.ApprovedFLSWeekly, 2, MidpointRounding.AwayFromZero); DateTime dt1; @@ -68,100 +85,8 @@ namespace SynpraxReports lblWeeks3.Text = String.Format("{0:0.##}", (sp.TotalDays + 1) * 0.1427); lblFLSTotal3.Text = String.Format("{0:0.##} FLS", Math.Round((sp.TotalDays + 1) * 0.1427, 2) * (double)pRO.ApprovedFLSWeekly); - String hourlyRateString = ""; - if (pRO.InvoiceItems == null) - pRO.InvoiceItems = new List(); - - if (!isOldVersion) - { - foreach (var ii in pRO.InvoiceItems) - { - ii.ItemDescription = String.Format("{0:dd.MM.yyyy} - {1:dd.MM.yyyy} {2:0.00} Std. x {3:c} =", ii.ItemPeriodStart, - ii.ItemPeriodEnd, ii.UnitCount, ii.AmountPerUnit); - - if (hourlyRateString.Length > 0) - { - hourlyRateString += ", "; - } - hourlyRateString += String.Format("{0:c}", ii.AmountPerUnit); - } - } - else - { - pRO.InvoiceItems.Clear(); - if (pRO.DifferentHourlyRateCount == 1) - { - pRO.TotalApprovedFLSWithNewHourlyRate = Math.Round(pRO.ApprovedFLSWeekly * pRO.WeeksWithNewHourlyRate, 2); - pRO.TotalApprovedFLSWithNewHourlyRateString = string.Format("{0:0.00}", pRO.TotalApprovedFLSWithNewHourlyRate); - - var ii = new InvoiceItemDC(); - ii.ItemDescription = String.Format("{0} - {1} {2} Std. x {3} =", pRO.AccountingStartDateString, - pRO.AccountingEndDateString, pRO.RecordedFLSWithNewHourlyRateString, pRO.HourlyRateNewString); - - ii.AmountTotal = pRO.AmountTotalWithNewHourlyRate; - - pRO.InvoiceItems.Add(ii); - hourlyRateString = String.Format("{0} ", pRO.HourlyRateNewString); - } - - else if (pRO.DifferentHourlyRateCount == 2) - { - var ii = new InvoiceItemDC(); - ii.ItemDescription = String.Format("{0} - {1} {2} Std. x {3} =", pRO.AccountingStartDateString, - pRO.HourlyRateOldEndDateString, pRO.RecordedFLSWithOldHourlyRateString, pRO.HourlyRateOldString); - - ii.AmountTotal = pRO.AmountTotalWithOldHourlyRate; - - pRO.InvoiceItems.Add(ii); - - ii = new InvoiceItemDC(); - ii.ItemDescription = String.Format("{0} - {1} {2} Std. x {3} =", pRO.HourlyRateNewStartDateString, - pRO.AccountingEndDateString, pRO.RecordedFLSWithNewHourlyRateString, pRO.HourlyRateNewString); - - ii.AmountTotal = pRO.AmountTotalWithNewHourlyRate; - - pRO.InvoiceItems.Add(ii); - - hourlyRateString = String.Format("{0} , {1} ", pRO.HourlyRateOldString, pRO.HourlyRateNewString); - } - else if (pRO.DifferentHourlyRateCount == 3) - { - var ii = new InvoiceItemDC(); - ii.ItemDescription = String.Format("{0} - {1} {2} Std. x {3} =", pRO.AccountingStartDateString, - pRO.HourlyRate3EndDateString, pRO.RecordedFLSWithHourlyRate3String, pRO.HourlyRate3String); - - ii.AmountTotal = pRO.AmountTotalWithHourlyRate3; - - pRO.InvoiceItems.Add(ii); - - ii = new InvoiceItemDC(); - ii.ItemDescription = String.Format("{0} - {1} {2} Std. x {3} =", pRO.HourlyRateOldStartDateString, - pRO.HourlyRateOldEndDateString, pRO.RecordedFLSWithOldHourlyRateString, pRO.HourlyRateOldString); - - ii.AmountTotal = pRO.AmountTotalWithOldHourlyRate; - - pRO.InvoiceItems.Add(ii); - - ii = new InvoiceItemDC(); - ii.ItemDescription = String.Format("{0} - {1} {2} Std. x {3} =", pRO.HourlyRateNewStartDateString, - pRO.AccountingEndDateString, pRO.RecordedFLSWithNewHourlyRateString, pRO.HourlyRateNewString); - - ii.AmountTotal = pRO.AmountTotalWithNewHourlyRate; - - pRO.InvoiceItems.Add(ii); - - hourlyRateString = String.Format("{0} , {1} , {2} ", pRO.HourlyRate3String, pRO.HourlyRateOldString, pRO.HourlyRateNewString); - } - } - - labelHourlyRate.Text = hourlyRateString; - - this.bindingSource1.DataSource = pRO; + bindingSource1.DataSource = pRO; } - private void ReportHeader_BeforePrint(object sender, System.Drawing.Printing.PrintEventArgs e) - { - - } } } diff --git a/ReportImp/SynpraxReports/SettlementReport.resx b/ReportImp/SynpraxReports/SettlementReport.resx index d75f4d316..7b3a87542 100644 --- a/ReportImp/SynpraxReports/SettlementReport.resx +++ b/ReportImp/SynpraxReports/SettlementReport.resx @@ -1,4 +1,4 @@ - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + text/microsoft-resx + + + 2.0 + + + System.Resources.ResXResourceReader, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + System.Resources.ResXResourceWriter, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + + + /9j/4AAQSkZJRgABAQEASABIAAD/4QDsRXhpZgAATU0AKgAAAAgABgEaAAUAAAABAAAAVgEbAAUAAAAB + AAAAXgEoAAMAAAABAAIAAAExAAIAAAAQAAAAZgEyAAIAAAAUAAAAdodpAAQAAAABAAAAigAAAKoASAAA + AAEAAABIAAAAAQAAcGFpbnQubmV0IDQuMC42ADIwMTY6MDE6MDggMTU6Mjc6MjAAAAKgAgAEAAAAAQAA + AfSgAwAEAAAAAQAAAPoAAAAAAAAAAwEaAAUAAAABAAAA1AEbAAUAAAABAAAA3AEoAAMAAAABAAIAAAAA + AAAAAABIAAAAAQAAAEgAAAAB/+IMWElDQ19QUk9GSUxFAAEBAAAMSExpbm8CEAAAbW50clJHQiBYWVog + B84AAgAJAAYAMQAAYWNzcE1TRlQAAAAASUVDIHNSR0IAAAAAAAAAAAAAAAEAAPbWAAEAAAAA0y1IUCAg + AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAARY3BydAAAAVAAAAAz + ZGVzYwAAAYQAAABsd3RwdAAAAfAAAAAUYmtwdAAAAgQAAAAUclhZWgAAAhgAAAAUZ1hZWgAAAiwAAAAU + YlhZWgAAAkAAAAAUZG1uZAAAAlQAAABwZG1kZAAAAsQAAACIdnVlZAAAA0wAAACGdmlldwAAA9QAAAAk + bHVtaQAAA/gAAAAUbWVhcwAABAwAAAAkdGVjaAAABDAAAAAMclRSQwAABDwAAAgMZ1RSQwAABDwAAAgM + YlRSQwAABDwAAAgMdGV4dAAAAABDb3B5cmlnaHQgKGMpIDE5OTggSGV3bGV0dC1QYWNrYXJkIENvbXBh + bnkAAGRlc2MAAAAAAAAAEnNSR0IgSUVDNjE5NjYtMi4xAAAAAAAAAAAAAAASc1JHQiBJRUM2MTk2Ni0y + LjEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAFhZWiAAAAAA + AADzUQABAAAAARbMWFlaIAAAAAAAAAAAAAAAAAAAAABYWVogAAAAAAAAb6IAADj1AAADkFhZWiAAAAAA + AABimQAAt4UAABjaWFlaIAAAAAAAACSgAAAPhAAAts9kZXNjAAAAAAAAABZJRUMgaHR0cDovL3d3dy5p + ZWMuY2gAAAAAAAAAAAAAABZJRUMgaHR0cDovL3d3dy5pZWMuY2gAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZGVzYwAAAAAAAAAuSUVDIDYxOTY2LTIuMSBEZWZhdWx0IFJH + QiBjb2xvdXIgc3BhY2UgLSBzUkdCAAAAAAAAAAAAAAAuSUVDIDYxOTY2LTIuMSBEZWZhdWx0IFJHQiBj + b2xvdXIgc3BhY2UgLSBzUkdCAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGRlc2MAAAAAAAAALFJlZmVyZW5j + ZSBWaWV3aW5nIENvbmRpdGlvbiBpbiBJRUM2MTk2Ni0yLjEAAAAAAAAAAAAAACxSZWZlcmVuY2UgVmll + d2luZyBDb25kaXRpb24gaW4gSUVDNjE5NjYtMi4xAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAB2aWV3 + AAAAAAATpP4AFF8uABDPFAAD7cwABBMLAANcngAAAAFYWVogAAAAAABMCVYAUAAAAFcf521lYXMAAAAA + AAAAAQAAAAAAAAAAAAAAAAAAAAAAAAKPAAAAAnNpZyAAAAAAQ1JUIGN1cnYAAAAAAAAEAAAAAAUACgAP + ABQAGQAeACMAKAAtADIANwA7AEAARQBKAE8AVABZAF4AYwBoAG0AcgB3AHwAgQCGAIsAkACVAJoAnwCk + AKkArgCyALcAvADBAMYAywDQANUA2wDgAOUA6wDwAPYA+wEBAQcBDQETARkBHwElASsBMgE4AT4BRQFM + AVIBWQFgAWcBbgF1AXwBgwGLAZIBmgGhAakBsQG5AcEByQHRAdkB4QHpAfIB+gIDAgwCFAIdAiYCLwI4 + AkECSwJUAl0CZwJxAnoChAKOApgCogKsArYCwQLLAtUC4ALrAvUDAAMLAxYDIQMtAzgDQwNPA1oDZgNy + A34DigOWA6IDrgO6A8cD0wPgA+wD+QQGBBMEIAQtBDsESARVBGMEcQR+BIwEmgSoBLYExATTBOEE8AT+ + BQ0FHAUrBToFSQVYBWcFdwWGBZYFpgW1BcUF1QXlBfYGBgYWBicGNwZIBlkGagZ7BowGnQavBsAG0Qbj + BvUHBwcZBysHPQdPB2EHdAeGB5kHrAe/B9IH5Qf4CAsIHwgyCEYIWghuCIIIlgiqCL4I0gjnCPsJEAkl + CToJTwlkCXkJjwmkCboJzwnlCfsKEQonCj0KVApqCoEKmAquCsUK3ArzCwsLIgs5C1ELaQuAC5gLsAvI + C+EL+QwSDCoMQwxcDHUMjgynDMAM2QzzDQ0NJg1ADVoNdA2ODakNww3eDfgOEw4uDkkOZA5/DpsOtg7S + Du4PCQ8lD0EPXg96D5YPsw/PD+wQCRAmEEMQYRB+EJsQuRDXEPURExExEU8RbRGMEaoRyRHoEgcSJhJF + EmQShBKjEsMS4xMDEyMTQxNjE4MTpBPFE+UUBhQnFEkUahSLFK0UzhTwFRIVNBVWFXgVmxW9FeAWAxYm + FkkWbBaPFrIW1hb6Fx0XQRdlF4kXrhfSF/cYGxhAGGUYihivGNUY+hkgGUUZaxmRGbcZ3RoEGioaURp3 + Gp4axRrsGxQbOxtjG4obshvaHAIcKhxSHHscoxzMHPUdHh1HHXAdmR3DHeweFh5AHmoelB6+HukfEx8+ + H2kflB+/H+ogFSBBIGwgmCDEIPAhHCFIIXUhoSHOIfsiJyJVIoIiryLdIwojOCNmI5QjwiPwJB8kTSR8 + JKsk2iUJJTglaCWXJccl9yYnJlcmhya3JugnGCdJJ3onqyfcKA0oPyhxKKIo1CkGKTgpaymdKdAqAio1 + KmgqmyrPKwIrNitpK50r0SwFLDksbiyiLNctDC1BLXYtqy3hLhYuTC6CLrcu7i8kL1ovkS/HL/4wNTBs + MKQw2zESMUoxgjG6MfIyKjJjMpsy1DMNM0YzfzO4M/E0KzRlNJ402DUTNU01hzXCNf02NzZyNq426Tck + N2A3nDfXOBQ4UDiMOMg5BTlCOX85vDn5OjY6dDqyOu87LTtrO6o76DwnPGU8pDzjPSI9YT2hPeA+ID5g + PqA+4D8hP2E/oj/iQCNAZECmQOdBKUFqQaxB7kIwQnJCtUL3QzpDfUPARANER0SKRM5FEkVVRZpF3kYi + RmdGq0bwRzVHe0fASAVIS0iRSNdJHUljSalJ8Eo3Sn1KxEsMS1NLmkviTCpMcky6TQJNSk2TTdxOJU5u + TrdPAE9JT5NP3VAnUHFQu1EGUVBRm1HmUjFSfFLHUxNTX1OqU/ZUQlSPVNtVKFV1VcJWD1ZcVqlW91dE + V5JX4FgvWH1Yy1kaWWlZuFoHWlZaplr1W0VblVvlXDVchlzWXSddeF3JXhpebF69Xw9fYV+zYAVgV2Cq + YPxhT2GiYfViSWKcYvBjQ2OXY+tkQGSUZOllPWWSZedmPWaSZuhnPWeTZ+loP2iWaOxpQ2maafFqSGqf + avdrT2una/9sV2yvbQhtYG25bhJua27Ebx5veG/RcCtwhnDgcTpxlXHwcktypnMBc11zuHQUdHB0zHUo + dYV14XY+dpt2+HdWd7N4EXhueMx5KnmJeed6RnqlewR7Y3vCfCF8gXzhfUF9oX4BfmJ+wn8jf4R/5YBH + gKiBCoFrgc2CMIKSgvSDV4O6hB2EgITjhUeFq4YOhnKG14c7h5+IBIhpiM6JM4mZif6KZIrKizCLlov8 + jGOMyo0xjZiN/45mjs6PNo+ekAaQbpDWkT+RqJIRknqS45NNk7aUIJSKlPSVX5XJljSWn5cKl3WX4JhM + mLiZJJmQmfyaaJrVm0Kbr5wcnImc951kndKeQJ6unx2fi5/6oGmg2KFHobaiJqKWowajdqPmpFakx6U4 + pammGqaLpv2nbqfgqFKoxKk3qamqHKqPqwKrdavprFys0K1ErbiuLa6hrxavi7AAsHWw6rFgsdayS7LC + szizrrQltJy1E7WKtgG2ebbwt2i34LhZuNG5SrnCuju6tbsuu6e8IbybvRW9j74KvoS+/796v/XAcMDs + wWfB48JfwtvDWMPUxFHEzsVLxcjGRsbDx0HHv8g9yLzJOsm5yjjKt8s2y7bMNcy1zTXNtc42zrbPN8+4 + 0DnQutE80b7SP9LB00TTxtRJ1MvVTtXR1lXW2Ndc1+DYZNjo2WzZ8dp22vvbgNwF3IrdEN2W3hzeot8p + 36/gNuC94UThzOJT4tvjY+Pr5HPk/OWE5g3mlucf56noMui86Ubp0Opb6uXrcOv77IbtEe2c7ijutO9A + 78zwWPDl8XLx//KM8xnzp/Q09ML1UPXe9m32+/eK+Bn4qPk4+cf6V/rn+3f8B/yY/Sn9uv5L/tz/bf// + /9sAQwACAQECAQECAgICAgICAgMFAwMDAwMGBAQDBQcGBwcHBgcHCAkLCQgICggHBwoNCgoLDAwMDAcJ + Dg8NDA4LDAwM/9sAQwECAgIDAwMGAwMGDAgHCAwMDAwMDAwMDAwMDAwMDAwMDAwMDAwMDAwMDAwMDAwM + DAwMDAwMDAwMDAwMDAwMDAwM/8AAEQgA+gH0AwEiAAIRAQMRAf/EAB8AAAEFAQEBAQEBAAAAAAAAAAAB + AgMEBQYHCAkKC//EALUQAAIBAwMCBAMFBQQEAAABfQECAwAEEQUSITFBBhNRYQcicRQygZGhCCNCscEV + UtHwJDNicoIJChYXGBkaJSYnKCkqNDU2Nzg5OkNERUZHSElKU1RVVldYWVpjZGVmZ2hpanN0dXZ3eHl6 + g4SFhoeIiYqSk5SVlpeYmZqio6Slpqeoqaqys7S1tre4ubrCw8TFxsfIycrS09TV1tfY2drh4uPk5ebn + 6Onq8fLz9PX29/j5+v/EAB8BAAMBAQEBAQEBAQEAAAAAAAABAgMEBQYHCAkKC//EALURAAIBAgQEAwQH + BQQEAAECdwABAgMRBAUhMQYSQVEHYXETIjKBCBRCkaGxwQkjM1LwFWJy0QoWJDThJfEXGBkaJicoKSo1 + Njc4OTpDREVGR0hJSlNUVVZXWFlaY2RlZmdoaWpzdHV2d3h5eoKDhIWGh4iJipKTlJWWl5iZmqKjpKWm + p6ipqrKztLW2t7i5usLDxMXGx8jJytLT1NXW19jZ2uLj5OXm5+jp6vLz9PX29/j5+v/aAAwDAQACEQMR + AD8A/fyiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAoooo + AKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAoooo + AKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAoooo + AKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAoooo + AKKKKACiiigAooooAKKKKACiiigAooooAK83+OH7V3gX9ntBH4k1qOPUGXfHp9svn3bjt8i/dB7FyoPr + XE/t9/tZSfs2fDyC00do/wDhKfEG+OyZgGFnGuN85HcjICg8FjnkKQfzk8FeCfFH7QXxHXT9NhvNe1/V + pGlkeSQszHq0skjdAM5LMf5gV+W8aeIMstxCyzLaftMQ7X3aTeystXJ726ab7H65wJ4awzXDPNc1qeyw + yva1k5Jbu70jFbX1vZ7bn2Z4j/4LF6La3LLpHgjVL6HPD3moJasR9FST+dV9I/4LH6fNMBqHgG8toyeW + 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 + Ax9QUUAeHfD79kTWfDH7Jfi74a698Rtd8Zap4usb+zl8RatG89xB9qtvIGEeZmZY/vBTIM9MjrVn9hH9 + kP8A4Yn+CMng3/hIf+Em8zU5tR+2fYPsWPMWNdmzzJOmzru5z0GK9oooA85/aa/ZW8G/tcfD0+HPGenv + dW0b+da3UD+VdWEuMb4nwcHHBBBVuMg4FfNuhf8ABKLx74Ct00zwr+0x8R9D8NxJ5cenCKR2gXBAEbrc + oqf8BQfyx9sUUAeY/srfs4N+zL4DvtHm8YeKvG11qV++o3F/r1z9om8xkRCEPULiNTgs3JY55xXlf7aP + /BLbwv8AtZ+PoPGdjr+qeB/G0EaRnVLCMSrOYxiN5I9yN5iAABldTgAHOBj6iooA+OdI/wCCQum3/hPx + A3jL4jeKfiD401TSJ9J0/XNe33UWiCWMo0sNu8rEtg/xSnAxjaea94/Y6/Z1b9k79nTw/wDD9tZXxANB + NztvxZ/ZPOE1zLP/AKve+MeaV+8c4zx0r06igD4//aX/AOCROh/GH4y3XxC8GeNtd+Gfi2/m+03Vzp0R + ljeY/fmQLJE8cj8lismCSTjJOc/xN/wRr0LxR8IvEWm6h478Qa9488Sm3Wfxfr0Z1K4t4YpllMUUTSqV + VyvJMhb3x8tfaFFAHL/BP4ct8H/g14T8ItejUj4X0e00j7WIfJ+0i3hSISbNzbd2zONxxnqa8Z/4J4/8 + E/v+GC9F8UWf/CW/8JX/AMJJPbzb/wCy/sP2bylkGMedJuzv68Yx3zX0dRQB5n+2H+zr/wANY/s5+Ivh + /wD2x/YH9v8A2b/T/sn2ryPJuobj/V703bvK2/eGN2ecYMn7MX7PUP7O/wCzjoHw7ur+LxJb6Lay2ktz + LZiFL1JJJHIaIs4Aw5UgsQQPfFekVn+KvD0fi7wvqWkzTXNvDqdrLaSS277JolkQqWRsHDAHIODggUAf + Huv/APBGfQNF+IN14g+GXxI8c/C/+0H3zW2kXJ8tAd2UidXjdUweAzPjJ7HA+bv+Cpf7Kngf9mP4PeGf + D+l6lrXjH4qeNPEMV7d6rq10bzVLy3igmi2Y/gRpZ49oxlyvLPsG36Q07/gk/wCMfAEK2Pgb9pD4meGd + DjO2Owl3XKxR/wB1dk8SK2MDcEHTp2HX/s5/8EqvBvwX+J0fjnxJr3iH4leNIJBLBqOvS+YtvIBxIqEs + WkByQzs204IwRmgD6D+EnhSXwH8KvDGhzf67RtJtbGTkN80UKIeRweVroaKKACiiigAooooAKKKKACii + igAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACii + igAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACii + igAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACii + igAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACii + igAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACii + igAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACii + igAooooAKKKKACiiigD/2Q== + + + + Hiermit wird erklärt, dass die Verpflichtungen aus den Vereinbarungen nach §§ 75 ff. SGB Xll bzw. §§ 125 ff. SGB IX eingehalten wurden und alle hier gemachten Angaben je Betreuungskontakt anhand der Quittierungsbelege sowie der Betreuungsdokumentation jederzeit nachgewiesen werden können. Diese Unterlagen sind 5 Jahre lang aufzubewahren und auf Verlangen des Sozialhilfeträgers bzw. des Trägers der Eingliederungshilfe vorzulegen (§ 2 Abs. 1 der Vergütungsvereinbarung). + + + 17, 17 + + + Hiermit wird erklärt, dass die Verpflichtungen aus der Leistungs-, Prüf-, und Vergütungsvereinbarung nach §§ 123 ff. Sozialgesetzbuch (IX) eingehalten wurden und die vorgenannten Angaben anhand der vorgehaltenen Quittierungsbelege sowie Betreuungsdokumentation jederzeit nachgewiesen werden kann. + + \ No newline at end of file diff --git a/ReportImp/SynpraxReports/SynpraxReports.csproj b/ReportImp/SynpraxReports/SynpraxReports.csproj index b0b87a5eb..5ffe9f9f1 100644 --- a/ReportImp/SynpraxReports/SynpraxReports.csproj +++ b/ReportImp/SynpraxReports/SynpraxReports.csproj @@ -113,6 +113,12 @@ SettlementReport.cs + + Component + + + SettlementReportOld.cs + @@ -152,6 +158,10 @@ SettlementReport.cs + Designer + + + SettlementReportOld.cs