diff --git a/BeWo/View/Detail/SupportConceptView.xaml.cs b/BeWo/View/Detail/SupportConceptView.xaml.cs
index ed9bbceb0..9bf09d984 100644
--- a/BeWo/View/Detail/SupportConceptView.xaml.cs
+++ b/BeWo/View/Detail/SupportConceptView.xaml.cs
@@ -1353,14 +1353,14 @@ namespace BeWo.View.Detail
SelectedApprovalPeriodVM.SupportConceptApprovalEmployeeRelations.NewVM.IsAbsolut = true;
- var cbRelVM = this.tabcontrol_costbearers.SelectedItem as SupportConceptCostBearerRelVM;
- var actual = cbRelVM.ApprovalPeriodList.VMList.OrderByDescending(i => i.StartDate).FirstOrDefault();
+ //var cbRelVM = this.tabcontrol_costbearers.SelectedItem as SupportConceptCostBearerRelVM;
+ //var actual = cbRelVM.ApprovalPeriodList.VMList.OrderByDescending(i => i.StartDate).FirstOrDefault();
decimal max = 0;
- if (actual.ApprovedBEPerInterval.HasValue)
- {
- max = actual.ApprovedBEPerInterval.Value * 60;
- editAbsolut.MaxValue = max;
+ if (SelectedApprovalPeriodVM.ApprovedBEPerInterval.HasValue)
+ {
+ max = SelectedApprovalPeriodVM.ApprovedBEPerInterval.Value * 60;
+ editAbsolut.MaxValue = max;
}
@@ -1521,7 +1521,13 @@ namespace BeWo.View.Detail
private void ToggledAbsol_OnChecked(object sender, RoutedEventArgs e)
{
var cbRelVM = this.tabcontrol_costbearers.SelectedItem as SupportConceptCostBearerRelVM;
- var actual = cbRelVM.ApprovalPeriodList.VMList.OrderByDescending(i => i.StartDate).FirstOrDefault();
+
+ var actual = SelectedApprovalPeriodVM;
+ if (actual == null)
+ {
+ actual = cbRelVM.ApprovalPeriodList.VMList.OrderByDescending(i => i.StartDate).FirstOrDefault();
+ }
+
if (actual.ApprovedBEPerInterval.HasValue)
{
diff --git a/BeWo/ViewModel/ListViewModel/ServiceRecordListVM.cs b/BeWo/ViewModel/ListViewModel/ServiceRecordListVM.cs
index d14b3a709..2512c6845 100644
--- a/BeWo/ViewModel/ListViewModel/ServiceRecordListVM.cs
+++ b/BeWo/ViewModel/ListViewModel/ServiceRecordListVM.cs
@@ -1490,7 +1490,7 @@ namespace BeWo.ViewModel.ListViewModel
sr.StartDate.Value.Date != end)
.Sum(sr => sr.RoundedDuration);
- decimal lNewFLMInAbsenceWeek = CalculateDurationSum(iCustomerNode);
+ //decimal lNewFLMInAbsenceWeek = CalculateDurationSum(iCustomerNode);
//if (lExisitingFLMInAbsenceWeek + lNewFLMInAbsenceWeek > lAbsenceWeek.Value)
//{
@@ -1499,15 +1499,15 @@ namespace BeWo.ViewModel.ListViewModel
CustomerWarning +=
"\nAbrechenbar in dieser Woche: " +
maxBillableMinutes +
- " Minuten\n\nBereits geleistet: " +
- BeWoWpfUtils.GetDecimalValueWithMaxDecimal(lExisitingFLMInAbsenceWeek, 2);
-
+ " Minuten\nBereits geleistet: " +
+ BeWoWpfUtils.GetDecimalValueWithMaxDecimal(lExisitingFLMInAbsenceWeek, 2) +
+ " Minuten";
//" Minuten\nNeue Buchung(en) in der Maske: " + BeWoWpfUtils.GetDecimalValueWithMaxDecimal(lNewFLMInAbsenceWeek, 2) + " Minuten" +
decimal notBillableMinutes =
BeWoWpfUtils.GetDecimalValueWithMaxDecimal(
-(maxBillableMinutes -
- (lExisitingFLMInAbsenceWeek + lNewFLMInAbsenceWeek)), 2) ?? 0;
+ (lExisitingFLMInAbsenceWeek)), 2) ?? 0;
if (notBillableMinutes > 0)
{
CustomerWarning += "\nEs werden " + notBillableMinutes +
diff --git a/Data/Access/UserDAO.cs b/Data/Access/UserDAO.cs
index f6737672e..b6ce9e499 100644
--- a/Data/Access/UserDAO.cs
+++ b/Data/Access/UserDAO.cs
@@ -12,6 +12,7 @@ using NHibernate;
using NHibernate.Criterion;
using NHibernate.SqlCommand;
using System.Threading;
+using BeWo.Data.Security;
namespace BeWo.Data.Access
{
@@ -32,14 +33,30 @@ namespace BeWo.Data.Access
return true;
#endif
- MD5CryptoServiceProvider lMD5 = new MD5CryptoServiceProvider();
- string lHash = BitConverter.ToString(lMD5.ComputeHash(Encoding.UTF8.GetBytes(pPassword)));
- bool valid = lHash == user.HashedPassword || pPassword == user.HashedPassword;
- if (!valid)
+ bool valid = false;
+
+ if (String.IsNullOrWhiteSpace(user.BCryptPassword))
{
- lHash = BitConverter.ToString(lMD5.ComputeHash(Encoding.UTF8.GetBytes(String.Format("{0}_{1}_{2}", user.Salt, pPassword, "o238rRndguK4Fh8dsfkhwon54H8n3qo4itv8nz3o4LvnzQs0npmwEp"))));
- lHash = BitConverter.ToString(lMD5.ComputeHash(Encoding.UTF8.GetBytes(lHash)));
- valid = lHash == user.HashedPassword;
+ MD5CryptoServiceProvider lMD5 = new MD5CryptoServiceProvider();
+ string lHash = BitConverter.ToString(lMD5.ComputeHash(Encoding.UTF8.GetBytes(pPassword)));
+ valid = lHash == user.HashedPassword || pPassword == user.HashedPassword;
+ if (!valid)
+ {
+ lHash = BitConverter.ToString(lMD5.ComputeHash(Encoding.UTF8.GetBytes(String.Format("{0}_{1}_{2}",
+ user.Salt, pPassword, "o238rRndguK4Fh8dsfkhwon54H8n3qo4itv8nz3o4LvnzQs0npmwEp"))));
+ lHash = BitConverter.ToString(lMD5.ComputeHash(Encoding.UTF8.GetBytes(lHash)));
+ valid = lHash == user.HashedPassword;
+ }
+ if (valid)
+ {
+ string salt = BCrypt.GenerateSalt();
+ user.BCryptPassword = BCrypt.HashPassword(pPassword, salt);
+ this.Session.Update(user);
+ }
+ }
+ else
+ {
+ valid = pPassword == user.BCryptPassword || BCrypt.CheckPassword(pPassword, user.BCryptPassword);
}
return valid;
}
diff --git a/Data/Data.csproj b/Data/Data.csproj
index fc716b868..961453770 100644
--- a/Data/Data.csproj
+++ b/Data/Data.csproj
@@ -259,6 +259,7 @@
+
@@ -684,6 +685,7 @@
Designer
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ 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
+
+
+ anbei sende ich Ihnen die unterschriebenen Nachweise über die im Rahmen des Betreuten Wohnens für [Salutation2] [CustomerName] erbrachten Leistungen zu. Nach unserer Berechnung ergeben sich für den Betreuungszeitraum [AccountingPeriod] hieraus:
+
+
+
+ 17, 17
+
+
\ No newline at end of file
diff --git a/ReportImp/BetreutesWohnenAmRheinReports/Properties/licenses.licx b/ReportImp/BetreutesWohnenAmRheinReports/Properties/licenses.licx
index e69de29bb..c7fd819d5 100644
--- a/ReportImp/BetreutesWohnenAmRheinReports/Properties/licenses.licx
+++ b/ReportImp/BetreutesWohnenAmRheinReports/Properties/licenses.licx
@@ -0,0 +1 @@
+DevExpress.XtraReports.UI.XtraReport, DevExpress.XtraReports.v17.1, Version=17.1.4.0, Culture=neutral, PublicKeyToken=b88d1754d700e49a
diff --git a/ReportImp/BetreutesWohnenAmRheinReports/ServicesOverviewReport.Designer.cs b/ReportImp/BetreutesWohnenAmRheinReports/ServicesOverviewReport.Designer.cs
index 92c4b5338..162306513 100644
--- a/ReportImp/BetreutesWohnenAmRheinReports/ServicesOverviewReport.Designer.cs
+++ b/ReportImp/BetreutesWohnenAmRheinReports/ServicesOverviewReport.Designer.cs
@@ -61,19 +61,18 @@ namespace BeWo.BetreutesWohnenAmRheinReports
this.xrLabel9 = new DevExpress.XtraReports.UI.XRLabel();
this.xrLabel10 = new DevExpress.XtraReports.UI.XRLabel();
this.xrLabel12 = new DevExpress.XtraReports.UI.XRLabel();
- this.xrLabel1 = new DevExpress.XtraReports.UI.XRLabel();
this.xrLabel22 = new DevExpress.XtraReports.UI.XRLabel();
this.xrLabel23 = new DevExpress.XtraReports.UI.XRLabel();
this.xrLabel11 = new DevExpress.XtraReports.UI.XRLabel();
+ this.xrLabel1 = new DevExpress.XtraReports.UI.XRLabel();
this.formattingRuleServiceDesc = new DevExpress.XtraReports.UI.FormattingRule();
this.formattingRuleCostBearer = new DevExpress.XtraReports.UI.FormattingRule();
this.formattingRuleEmployeeName = new DevExpress.XtraReports.UI.FormattingRule();
this.topMarginBand1 = new DevExpress.XtraReports.UI.TopMarginBand();
+ this.xrPictureBox1 = new DevExpress.XtraReports.UI.XRPictureBox();
this.bottomMarginBand1 = new DevExpress.XtraReports.UI.BottomMarginBand();
this.ReportFooter = new DevExpress.XtraReports.UI.ReportFooterBand();
this.xrLabel7 = new DevExpress.XtraReports.UI.XRLabel();
- this.xrLabel8 = new DevExpress.XtraReports.UI.XRLabel();
- this.xrLabel2 = new DevExpress.XtraReports.UI.XRLabel();
this.xrLabel6 = new DevExpress.XtraReports.UI.XRLabel();
this.xrLabel3 = new DevExpress.XtraReports.UI.XRLabel();
this.xrLabel4 = new DevExpress.XtraReports.UI.XRLabel();
@@ -84,7 +83,6 @@ namespace BeWo.BetreutesWohnenAmRheinReports
this.customerCountField = new DevExpress.XtraReports.UI.CalculatedField();
this.fieldBillableFLS = new DevExpress.XtraReports.UI.CalculatedField();
this.fieldAbrechenbareFLS = new DevExpress.XtraReports.UI.CalculatedField();
- this.xrPictureBox1 = new DevExpress.XtraReports.UI.XRPictureBox();
((System.ComponentModel.ISupportInitialize)(this.xrTableServiceRecords1)).BeginInit();
((System.ComponentModel.ISupportInitialize)(this.xrTable3)).BeginInit();
((System.ComponentModel.ISupportInitialize)(this.bindingSource1)).BeginInit();
@@ -447,19 +445,6 @@ namespace BeWo.BetreutesWohnenAmRheinReports
this.xrLabel12.StylePriority.UseFont = false;
this.xrLabel12.Text = "Name Klient/in:";
//
- // xrLabel1
- //
- this.xrLabel1.Font = new System.Drawing.Font("Arial", 12F, ((System.Drawing.FontStyle)((System.Drawing.FontStyle.Bold | System.Drawing.FontStyle.Underline))));
- this.xrLabel1.LocationFloat = new DevExpress.Utils.PointFloat(87.27765F, 102.4722F);
- this.xrLabel1.Multiline = true;
- this.xrLabel1.Name = "xrLabel1";
- this.xrLabel1.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
- this.xrLabel1.SizeF = new System.Drawing.SizeF(466.8057F, 25F);
- this.xrLabel1.StylePriority.UseFont = false;
- this.xrLabel1.StylePriority.UseTextAlignment = false;
- this.xrLabel1.Text = "Quittierungsbeleg über direkte Betreuungsleistungen";
- this.xrLabel1.TextAlignment = DevExpress.XtraPrinting.TextAlignment.TopCenter;
- //
// xrLabel22
//
this.xrLabel22.Font = new System.Drawing.Font("Arial", 10F);
@@ -490,6 +475,19 @@ namespace BeWo.BetreutesWohnenAmRheinReports
this.xrLabel11.StylePriority.UseFont = false;
this.xrLabel11.Text = "Bewilligte Fachleistungsstunden wöchentlich:";
//
+ // xrLabel1
+ //
+ this.xrLabel1.Font = new System.Drawing.Font("Arial", 12F, ((System.Drawing.FontStyle)((System.Drawing.FontStyle.Bold | System.Drawing.FontStyle.Underline))));
+ this.xrLabel1.LocationFloat = new DevExpress.Utils.PointFloat(87.27765F, 102.4722F);
+ this.xrLabel1.Multiline = true;
+ this.xrLabel1.Name = "xrLabel1";
+ this.xrLabel1.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
+ this.xrLabel1.SizeF = new System.Drawing.SizeF(466.8057F, 25F);
+ this.xrLabel1.StylePriority.UseFont = false;
+ this.xrLabel1.StylePriority.UseTextAlignment = false;
+ this.xrLabel1.Text = "Quittierungsbeleg über direkte Betreuungsleistungen";
+ this.xrLabel1.TextAlignment = DevExpress.XtraPrinting.TextAlignment.TopCenter;
+ //
// formattingRuleServiceDesc
//
this.formattingRuleServiceDesc.Condition = "[StartDate2] < [StartDate]";
@@ -530,6 +528,14 @@ namespace BeWo.BetreutesWohnenAmRheinReports
this.topMarginBand1.Name = "topMarginBand1";
this.topMarginBand1.StylePriority.UseFont = false;
//
+ // xrPictureBox1
+ //
+ this.xrPictureBox1.Image = ((System.Drawing.Image)(resources.GetObject("xrPictureBox1.Image")));
+ this.xrPictureBox1.LocationFloat = new DevExpress.Utils.PointFloat(554.0834F, 30.61112F);
+ this.xrPictureBox1.Name = "xrPictureBox1";
+ this.xrPictureBox1.SizeF = new System.Drawing.SizeF(122.9167F, 117.6944F);
+ this.xrPictureBox1.Sizing = DevExpress.XtraPrinting.ImageSizeMode.ZoomImage;
+ //
// bottomMarginBand1
//
this.bottomMarginBand1.HeightF = 36.41669F;
@@ -539,21 +545,19 @@ namespace BeWo.BetreutesWohnenAmRheinReports
//
this.ReportFooter.Controls.AddRange(new DevExpress.XtraReports.UI.XRControl[] {
this.xrLabel7,
- this.xrLabel8,
- this.xrLabel2,
this.xrLabel6,
this.xrLabel3,
this.xrLabel4,
this.xrLabel5});
this.ReportFooter.Font = new System.Drawing.Font("Arial", 8F);
- this.ReportFooter.HeightF = 195.1667F;
+ this.ReportFooter.HeightF = 148F;
this.ReportFooter.Name = "ReportFooter";
this.ReportFooter.StylePriority.UseFont = false;
//
// xrLabel7
//
this.xrLabel7.Borders = DevExpress.XtraPrinting.BorderSide.Top;
- this.xrLabel7.LocationFloat = new DevExpress.Utils.PointFloat(435.1247F, 177.1667F);
+ this.xrLabel7.LocationFloat = new DevExpress.Utils.PointFloat(435.1248F, 130F);
this.xrLabel7.Name = "xrLabel7";
this.xrLabel7.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
this.xrLabel7.SizeF = new System.Drawing.SizeF(197F, 17.99997F);
@@ -561,41 +565,10 @@ namespace BeWo.BetreutesWohnenAmRheinReports
this.xrLabel7.StylePriority.UseFont = false;
this.xrLabel7.Text = "Unterschrift Klient/in";
//
- // xrLabel8
- //
- this.xrLabel8.Font = new System.Drawing.Font("Arial", 9F);
- this.xrLabel8.LocationFloat = new DevExpress.Utils.PointFloat(37.99998F, 48.20836F);
- 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(226F, 48.20835F);
- this.xrLabel8.StylePriority.UseFont = false;
- this.xrLabel8.Text = "2. Summe der abzurechnenden Leistungen (= 1 x 1,2)\r\n";
- //
- // xrLabel2
- //
- this.xrLabel2.Borders = ((DevExpress.XtraPrinting.BorderSide)((((DevExpress.XtraPrinting.BorderSide.Left | DevExpress.XtraPrinting.BorderSide.Top)
- | DevExpress.XtraPrinting.BorderSide.Right)
- | DevExpress.XtraPrinting.BorderSide.Bottom)));
- this.xrLabel2.BorderWidth = 2F;
- this.xrLabel2.Font = new System.Drawing.Font("Arial", 9F, System.Drawing.FontStyle.Bold);
- this.xrLabel2.LocationFloat = new DevExpress.Utils.PointFloat(264F, 48.21002F);
- this.xrLabel2.Multiline = true;
- this.xrLabel2.Name = "xrLabel2";
- this.xrLabel2.Padding = new DevExpress.XtraPrinting.PaddingInfo(3, 3, 0, 0, 100F);
- this.xrLabel2.SizeF = new System.Drawing.SizeF(136F, 48.20835F);
- this.xrLabel2.StylePriority.UseBorders = false;
- this.xrLabel2.StylePriority.UseBorderWidth = false;
- this.xrLabel2.StylePriority.UseFont = false;
- this.xrLabel2.StylePriority.UsePadding = false;
- this.xrLabel2.StylePriority.UseTextAlignment = false;
- this.xrLabel2.Text = "[fieldBillableFLS!0.##] x 1,2 = [fieldAbrechenbareFLS!0.##] Std.";
- this.xrLabel2.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleCenter;
- //
// xrLabel6
//
this.xrLabel6.Borders = DevExpress.XtraPrinting.BorderSide.Top;
- this.xrLabel6.LocationFloat = new DevExpress.Utils.PointFloat(183.1248F, 177.1667F);
+ this.xrLabel6.LocationFloat = new DevExpress.Utils.PointFloat(183.1249F, 130F);
this.xrLabel6.Name = "xrLabel6";
this.xrLabel6.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
this.xrLabel6.SizeF = new System.Drawing.SizeF(216.8751F, 17.99997F);
@@ -637,7 +610,7 @@ namespace BeWo.BetreutesWohnenAmRheinReports
// xrLabel5
//
this.xrLabel5.Borders = DevExpress.XtraPrinting.BorderSide.Top;
- this.xrLabel5.LocationFloat = new DevExpress.Utils.PointFloat(12.12489F, 177.1667F);
+ this.xrLabel5.LocationFloat = new DevExpress.Utils.PointFloat(12.12489F, 130F);
this.xrLabel5.Name = "xrLabel5";
this.xrLabel5.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
this.xrLabel5.SizeF = new System.Drawing.SizeF(117F, 17.99997F);
@@ -683,14 +656,6 @@ namespace BeWo.BetreutesWohnenAmRheinReports
this.fieldAbrechenbareFLS.FieldType = DevExpress.XtraReports.UI.FieldType.Decimal;
this.fieldAbrechenbareFLS.Name = "fieldAbrechenbareFLS";
//
- // xrPictureBox1
- //
- this.xrPictureBox1.Image = ((System.Drawing.Image)(resources.GetObject("xrPictureBox1.Image")));
- this.xrPictureBox1.LocationFloat = new DevExpress.Utils.PointFloat(554.0834F, 30.61112F);
- this.xrPictureBox1.Name = "xrPictureBox1";
- this.xrPictureBox1.SizeF = new System.Drawing.SizeF(122.9167F, 117.6944F);
- this.xrPictureBox1.Sizing = DevExpress.XtraPrinting.ImageSizeMode.ZoomImage;
- //
// Stundenzettel
//
this.Bands.AddRange(new DevExpress.XtraReports.UI.Band[] {
@@ -774,8 +739,6 @@ namespace BeWo.BetreutesWohnenAmRheinReports
private DevExpress.XtraReports.UI.XRLabel xrLabel23;
private DevExpress.XtraReports.UI.XRLabel xrLabel11;
private DevExpress.XtraReports.UI.XRLabel xrLabel7;
- private DevExpress.XtraReports.UI.XRLabel xrLabel8;
- private DevExpress.XtraReports.UI.XRLabel xrLabel2;
private DevExpress.XtraReports.UI.XRLabel xrLabel6;
private DevExpress.XtraReports.UI.XRLabel xrLabel3;
private DevExpress.XtraReports.UI.XRLabel xrLabel4;
diff --git a/ReportImp/BrueckeABW/Properties/licenses.licx b/ReportImp/BrueckeABW/Properties/licenses.licx
index e69de29bb..c7fd819d5 100644
--- a/ReportImp/BrueckeABW/Properties/licenses.licx
+++ b/ReportImp/BrueckeABW/Properties/licenses.licx
@@ -0,0 +1 @@
+DevExpress.XtraReports.UI.XtraReport, DevExpress.XtraReports.v17.1, Version=17.1.4.0, Culture=neutral, PublicKeyToken=b88d1754d700e49a
diff --git a/ReportImp/BrueckeABW/ServiceInvoiceReport.Designer.cs b/ReportImp/BrueckeABW/ServiceInvoiceReport.Designer.cs
index 16197f4cb..5b626fac2 100644
--- a/ReportImp/BrueckeABW/ServiceInvoiceReport.Designer.cs
+++ b/ReportImp/BrueckeABW/ServiceInvoiceReport.Designer.cs
@@ -28,89 +28,124 @@ namespace BeWo.BrueckeABW
///
private void InitializeComponent()
{
- this.components = new System.ComponentModel.Container();
- System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(ServiceInvoiceReport));
- this.Detail = new DevExpress.XtraReports.UI.DetailBand();
- this.ReportHeader = new DevExpress.XtraReports.UI.ReportHeaderBand();
- this.ruleRateFactorNull = new DevExpress.XtraReports.UI.FormattingRule();
- this.topMarginBand1 = new DevExpress.XtraReports.UI.TopMarginBand();
- this.bottomMarginBand1 = new DevExpress.XtraReports.UI.BottomMarginBand();
- this.Page1 = new DevExpress.XtraReports.UI.GroupHeaderBand();
- this.xrLabel7 = new DevExpress.XtraReports.UI.XRLabel();
- this.xrLabel4 = new DevExpress.XtraReports.UI.XRLabel();
- this.xrLabel5 = new DevExpress.XtraReports.UI.XRLabel();
- this.xrLabel8 = new DevExpress.XtraReports.UI.XRLabel();
- this.lblAbrechnungszeitraum = new DevExpress.XtraReports.UI.XRLabel();
- this.DetailReport = new DevExpress.XtraReports.UI.DetailReportBand();
- this.Detail1 = new DevExpress.XtraReports.UI.DetailBand();
- this.DetailReport2 = new DevExpress.XtraReports.UI.DetailReportBand();
- this.Detail3 = new DevExpress.XtraReports.UI.DetailBand();
- this.xrRichText1 = new DevExpress.XtraReports.UI.XRRichText();
- this.xrLine1 = new DevExpress.XtraReports.UI.XRLine();
- this.xrRichText4 = new DevExpress.XtraReports.UI.XRRichText();
- this.xrPictureBox1 = new DevExpress.XtraReports.UI.XRPictureBox();
- this.xrRichText2 = new DevExpress.XtraReports.UI.XRRichText();
- this.xrLabel6 = new DevExpress.XtraReports.UI.XRLabel();
- this.xrLabel10 = new DevExpress.XtraReports.UI.XRLabel();
- this.xrLabel11 = new DevExpress.XtraReports.UI.XRLabel();
- this.xrLabel12 = new DevExpress.XtraReports.UI.XRLabel();
- this.ReportFooter = new DevExpress.XtraReports.UI.ReportFooterBand();
- this.xrLabel13 = new DevExpress.XtraReports.UI.XRLabel();
- this.xrLine2 = new DevExpress.XtraReports.UI.XRLine();
- this.xrRichText3 = new DevExpress.XtraReports.UI.XRRichText();
- this.xrLabel1 = new DevExpress.XtraReports.UI.XRLabel();
- this.xrLabel2 = new DevExpress.XtraReports.UI.XRLabel();
- this.bindingSource1 = new System.Windows.Forms.BindingSource(this.components);
- ((System.ComponentModel.ISupportInitialize)(this.xrRichText1)).BeginInit();
- ((System.ComponentModel.ISupportInitialize)(this.xrRichText4)).BeginInit();
- ((System.ComponentModel.ISupportInitialize)(this.xrRichText2)).BeginInit();
- ((System.ComponentModel.ISupportInitialize)(this.xrRichText3)).BeginInit();
- ((System.ComponentModel.ISupportInitialize)(this.bindingSource1)).BeginInit();
- ((System.ComponentModel.ISupportInitialize)(this)).BeginInit();
- //
- // Detail
- //
- this.Detail.HeightF = 0F;
- this.Detail.Name = "Detail";
- this.Detail.Padding = new DevExpress.XtraPrinting.PaddingInfo(0, 0, 0, 0, 100F);
- this.Detail.TextAlignment = DevExpress.XtraPrinting.TextAlignment.TopLeft;
- //
- // ReportHeader
- //
- this.ReportHeader.Controls.AddRange(new DevExpress.XtraReports.UI.XRControl[] {
+ this.components = new System.ComponentModel.Container();
+ System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(ServiceInvoiceReport));
+ this.Detail = new DevExpress.XtraReports.UI.DetailBand();
+ this.ReportHeader = new DevExpress.XtraReports.UI.ReportHeaderBand();
+ this.xrRichText1 = new DevExpress.XtraReports.UI.XRRichText();
+ this.xrLine1 = new DevExpress.XtraReports.UI.XRLine();
+ this.xrPictureBox1 = new DevExpress.XtraReports.UI.XRPictureBox();
+ this.ruleRateFactorNull = new DevExpress.XtraReports.UI.FormattingRule();
+ this.topMarginBand1 = new DevExpress.XtraReports.UI.TopMarginBand();
+ this.bottomMarginBand1 = new DevExpress.XtraReports.UI.BottomMarginBand();
+ this.xrLine2 = new DevExpress.XtraReports.UI.XRLine();
+ this.xrRichText3 = new DevExpress.XtraReports.UI.XRRichText();
+ this.Page1 = new DevExpress.XtraReports.UI.GroupHeaderBand();
+ this.xrRichText2 = new DevExpress.XtraReports.UI.XRRichText();
+ this.xrLabel6 = new DevExpress.XtraReports.UI.XRLabel();
+ this.xrLabel10 = new DevExpress.XtraReports.UI.XRLabel();
+ this.xrLabel11 = new DevExpress.XtraReports.UI.XRLabel();
+ this.xrLabel12 = new DevExpress.XtraReports.UI.XRLabel();
+ this.xrLabel7 = new DevExpress.XtraReports.UI.XRLabel();
+ this.xrLabel4 = new DevExpress.XtraReports.UI.XRLabel();
+ this.xrLabel5 = new DevExpress.XtraReports.UI.XRLabel();
+ this.xrLabel8 = new DevExpress.XtraReports.UI.XRLabel();
+ this.lblAbrechnungszeitraum = new DevExpress.XtraReports.UI.XRLabel();
+ this.DetailReport = new DevExpress.XtraReports.UI.DetailReportBand();
+ this.Detail1 = new DevExpress.XtraReports.UI.DetailBand();
+ this.DetailReport2 = new DevExpress.XtraReports.UI.DetailReportBand();
+ this.Detail3 = new DevExpress.XtraReports.UI.DetailBand();
+ this.xrLabel2 = new DevExpress.XtraReports.UI.XRLabel();
+ this.xrLabel1 = new DevExpress.XtraReports.UI.XRLabel();
+ this.ReportFooter = new DevExpress.XtraReports.UI.ReportFooterBand();
+ this.xrLabel13 = new DevExpress.XtraReports.UI.XRLabel();
+ this.bindingSource1 = new System.Windows.Forms.BindingSource(this.components);
+ this.xrLabel3 = new DevExpress.XtraReports.UI.XRLabel();
+ ((System.ComponentModel.ISupportInitialize)(this.xrRichText1)).BeginInit();
+ ((System.ComponentModel.ISupportInitialize)(this.xrRichText3)).BeginInit();
+ ((System.ComponentModel.ISupportInitialize)(this.xrRichText2)).BeginInit();
+ ((System.ComponentModel.ISupportInitialize)(this.bindingSource1)).BeginInit();
+ ((System.ComponentModel.ISupportInitialize)(this)).BeginInit();
+ //
+ // Detail
+ //
+ this.Detail.HeightF = 0F;
+ this.Detail.Name = "Detail";
+ this.Detail.Padding = new DevExpress.XtraPrinting.PaddingInfo(0, 0, 0, 0, 100F);
+ this.Detail.TextAlignment = DevExpress.XtraPrinting.TextAlignment.TopLeft;
+ //
+ // ReportHeader
+ //
+ this.ReportHeader.Controls.AddRange(new DevExpress.XtraReports.UI.XRControl[] {
+ this.xrLabel3,
this.xrRichText1,
this.xrLine1,
- this.xrRichText4,
this.xrPictureBox1});
- this.ReportHeader.Font = new System.Drawing.Font("Verdana", 10F);
- this.ReportHeader.HeightF = 200F;
- this.ReportHeader.Name = "ReportHeader";
- this.ReportHeader.StylePriority.UseFont = false;
- //
- // ruleRateFactorNull
- //
- this.ruleRateFactorNull.Condition = "[RateFactorText2] == ?";
- //
- //
- //
- this.ruleRateFactorNull.Formatting.Visible = DevExpress.Utils.DefaultBoolean.False;
- this.ruleRateFactorNull.Name = "ruleRateFactorNull";
- //
- // topMarginBand1
- //
- this.topMarginBand1.HeightF = 0F;
- this.topMarginBand1.Name = "topMarginBand1";
- //
- // bottomMarginBand1
- //
- this.bottomMarginBand1.Controls.AddRange(new DevExpress.XtraReports.UI.XRControl[] {
+ this.ReportHeader.Font = new System.Drawing.Font("Verdana", 10F);
+ this.ReportHeader.HeightF = 200F;
+ this.ReportHeader.Name = "ReportHeader";
+ this.ReportHeader.StylePriority.UseFont = false;
+ //
+ // xrRichText1
+ //
+ this.xrRichText1.Font = new System.Drawing.Font("Verdana", 10F);
+ this.xrRichText1.LocationFloat = new DevExpress.Utils.PointFloat(0F, 67.62F);
+ this.xrRichText1.Name = "xrRichText1";
+ this.xrRichText1.SerializableRtfString = resources.GetString("xrRichText1.SerializableRtfString");
+ this.xrRichText1.SizeF = new System.Drawing.SizeF(431.1666F, 61.54167F);
+ //
+ // xrLine1
+ //
+ this.xrLine1.LocationFloat = new DevExpress.Utils.PointFloat(0F, 129.1617F);
+ this.xrLine1.Name = "xrLine1";
+ this.xrLine1.SizeF = new System.Drawing.SizeF(431.1666F, 10.41667F);
+ //
+ // xrPictureBox1
+ //
+ this.xrPictureBox1.Image = ((System.Drawing.Image)(resources.GetObject("xrPictureBox1.Image")));
+ this.xrPictureBox1.LocationFloat = new DevExpress.Utils.PointFloat(442.62F, 0F);
+ this.xrPictureBox1.Name = "xrPictureBox1";
+ this.xrPictureBox1.SizeF = new System.Drawing.SizeF(276.375F, 139.5833F);
+ this.xrPictureBox1.Sizing = DevExpress.XtraPrinting.ImageSizeMode.ZoomImage;
+ //
+ // ruleRateFactorNull
+ //
+ this.ruleRateFactorNull.Condition = "[RateFactorText2] == ?";
+ //
+ //
+ //
+ this.ruleRateFactorNull.Formatting.Visible = DevExpress.Utils.DefaultBoolean.False;
+ this.ruleRateFactorNull.Name = "ruleRateFactorNull";
+ //
+ // topMarginBand1
+ //
+ this.topMarginBand1.HeightF = 0F;
+ this.topMarginBand1.Name = "topMarginBand1";
+ //
+ // bottomMarginBand1
+ //
+ this.bottomMarginBand1.Controls.AddRange(new DevExpress.XtraReports.UI.XRControl[] {
this.xrLine2,
this.xrRichText3});
- this.bottomMarginBand1.Name = "bottomMarginBand1";
- //
- // Page1
- //
- this.Page1.Controls.AddRange(new DevExpress.XtraReports.UI.XRControl[] {
+ this.bottomMarginBand1.Name = "bottomMarginBand1";
+ //
+ // xrLine2
+ //
+ this.xrLine2.LocationFloat = new DevExpress.Utils.PointFloat(0F, 0F);
+ this.xrLine2.Name = "xrLine2";
+ this.xrLine2.SizeF = new System.Drawing.SizeF(689.4999F, 10.41667F);
+ //
+ // xrRichText3
+ //
+ this.xrRichText3.Font = new System.Drawing.Font("Verdana", 10F);
+ this.xrRichText3.LocationFloat = new DevExpress.Utils.PointFloat(0F, 10.42F);
+ this.xrRichText3.Name = "xrRichText3";
+ this.xrRichText3.SerializableRtfString = resources.GetString("xrRichText3.SerializableRtfString");
+ this.xrRichText3.SizeF = new System.Drawing.SizeF(689.4999F, 61.54167F);
+ //
+ // Page1
+ //
+ this.Page1.Controls.AddRange(new DevExpress.XtraReports.UI.XRControl[] {
this.xrRichText2,
this.xrLabel6,
this.xrLabel10,
@@ -121,247 +156,213 @@ namespace BeWo.BrueckeABW
this.xrLabel5,
this.xrLabel8,
this.lblAbrechnungszeitraum});
- this.Page1.Font = new System.Drawing.Font("Arial", 10F);
- this.Page1.HeightF = 353.0417F;
- this.Page1.Name = "Page1";
- this.Page1.StylePriority.UseFont = false;
- //
- // xrLabel7
- //
- this.xrLabel7.LocationFloat = new DevExpress.Utils.PointFloat(0F, 0F);
- this.xrLabel7.Multiline = true;
- this.xrLabel7.Name = "xrLabel7";
- this.xrLabel7.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
- this.xrLabel7.SizeF = new System.Drawing.SizeF(317F, 111.5F);
- this.xrLabel7.StylePriority.UseFont = false;
- this.xrLabel7.Text = "[RecipientOrganisation]\r\n[RecipientStreet]\r\n[RecipientPostCodeAndTown]";
- //
- // xrLabel4
- //
- this.xrLabel4.BackColor = System.Drawing.Color.Transparent;
- this.xrLabel4.CanShrink = true;
- this.xrLabel4.Font = new System.Drawing.Font("Arial", 10F, System.Drawing.FontStyle.Bold);
- this.xrLabel4.LocationFloat = new DevExpress.Utils.PointFloat(0F, 231.58F);
- 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(250F, 20F);
- this.xrLabel4.StylePriority.UseBackColor = false;
- this.xrLabel4.StylePriority.UseFont = false;
- this.xrLabel4.Text = "[CustomerReferenceNumber]";
- this.xrLabel4.WordWrap = false;
- //
- // xrLabel5
- //
- this.xrLabel5.Font = new System.Drawing.Font("Arial", 11F);
- this.xrLabel5.LocationFloat = new DevExpress.Utils.PointFloat(0F, 285F);
- this.xrLabel5.Name = "xrLabel5";
- this.xrLabel5.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
- this.xrLabel5.SizeF = new System.Drawing.SizeF(317F, 25F);
- this.xrLabel5.StylePriority.UseFont = false;
- this.xrLabel5.Text = "Sehr geehrte Damen und Herren,";
- //
- // xrLabel8
- //
- this.xrLabel8.DataBindings.AddRange(new DevExpress.XtraReports.UI.XRBinding[] {
+ this.Page1.Font = new System.Drawing.Font("Arial", 10F);
+ this.Page1.HeightF = 353.0417F;
+ this.Page1.Name = "Page1";
+ this.Page1.StylePriority.UseFont = false;
+ //
+ // xrRichText2
+ //
+ this.xrRichText2.Font = new System.Drawing.Font("Verdana", 10F);
+ this.xrRichText2.LocationFloat = new DevExpress.Utils.PointFloat(504.0001F, 0F);
+ this.xrRichText2.Name = "xrRichText2";
+ this.xrRichText2.SerializableRtfString = resources.GetString("xrRichText2.SerializableRtfString");
+ this.xrRichText2.SizeF = new System.Drawing.SizeF(209.9583F, 187.5833F);
+ //
+ // xrLabel6
+ //
+ this.xrLabel6.Font = new System.Drawing.Font("Arial", 6F);
+ this.xrLabel6.LocationFloat = new DevExpress.Utils.PointFloat(0F, 214.58F);
+ this.xrLabel6.Name = "xrLabel6";
+ this.xrLabel6.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
+ this.xrLabel6.SizeF = new System.Drawing.SizeF(133.6666F, 17F);
+ this.xrLabel6.StylePriority.UseFont = false;
+ this.xrLabel6.Text = "Ihr Zeichen, Ihre Nachricht vom";
+ //
+ // xrLabel10
+ //
+ this.xrLabel10.Font = new System.Drawing.Font("Arial", 6F);
+ this.xrLabel10.LocationFloat = new DevExpress.Utils.PointFloat(208.33F, 214.58F);
+ this.xrLabel10.Name = "xrLabel10";
+ this.xrLabel10.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
+ this.xrLabel10.SizeF = new System.Drawing.SizeF(176.375F, 17F);
+ this.xrLabel10.StylePriority.UseFont = false;
+ this.xrLabel10.Text = "Unser Zeichen, unsere Nachricht vom";
+ //
+ // xrLabel11
+ //
+ this.xrLabel11.Font = new System.Drawing.Font("Arial", 6F);
+ this.xrLabel11.LocationFloat = new DevExpress.Utils.PointFloat(416.58F, 214.58F);
+ this.xrLabel11.Name = "xrLabel11";
+ this.xrLabel11.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
+ this.xrLabel11.SizeF = new System.Drawing.SizeF(155.9585F, 17F);
+ this.xrLabel11.StylePriority.UseFont = false;
+ this.xrLabel11.Text = "Telefon, Name";
+ //
+ // xrLabel12
+ //
+ this.xrLabel12.Font = new System.Drawing.Font("Arial", 6F);
+ this.xrLabel12.LocationFloat = new DevExpress.Utils.PointFloat(572.54F, 214.58F);
+ this.xrLabel12.Name = "xrLabel12";
+ this.xrLabel12.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
+ this.xrLabel12.SizeF = new System.Drawing.SizeF(136.4582F, 17F);
+ this.xrLabel12.StylePriority.UseFont = false;
+ this.xrLabel12.Text = "Datum";
+ //
+ // xrLabel7
+ //
+ this.xrLabel7.LocationFloat = new DevExpress.Utils.PointFloat(0F, 0F);
+ this.xrLabel7.Multiline = true;
+ this.xrLabel7.Name = "xrLabel7";
+ this.xrLabel7.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
+ this.xrLabel7.SizeF = new System.Drawing.SizeF(317F, 111.5F);
+ this.xrLabel7.StylePriority.UseFont = false;
+ this.xrLabel7.Text = "[RecipientOrganisation]\r\n[RecipientStreet]\r\n[RecipientPostCodeAndTown]";
+ //
+ // xrLabel4
+ //
+ this.xrLabel4.BackColor = System.Drawing.Color.Transparent;
+ this.xrLabel4.CanShrink = true;
+ this.xrLabel4.Font = new System.Drawing.Font("Arial", 10F, System.Drawing.FontStyle.Bold);
+ this.xrLabel4.LocationFloat = new DevExpress.Utils.PointFloat(0F, 231.58F);
+ 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(250F, 20F);
+ this.xrLabel4.StylePriority.UseBackColor = false;
+ this.xrLabel4.StylePriority.UseFont = false;
+ this.xrLabel4.Text = "[CustomerReferenceNumber]";
+ this.xrLabel4.WordWrap = false;
+ //
+ // xrLabel5
+ //
+ this.xrLabel5.Font = new System.Drawing.Font("Arial", 11F);
+ this.xrLabel5.LocationFloat = new DevExpress.Utils.PointFloat(0F, 285F);
+ this.xrLabel5.Name = "xrLabel5";
+ this.xrLabel5.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
+ this.xrLabel5.SizeF = new System.Drawing.SizeF(317F, 25F);
+ this.xrLabel5.StylePriority.UseFont = false;
+ this.xrLabel5.Text = "Sehr geehrte Damen und Herren,";
+ //
+ // xrLabel8
+ //
+ this.xrLabel8.DataBindings.AddRange(new DevExpress.XtraReports.UI.XRBinding[] {
new DevExpress.XtraReports.UI.XRBinding("Text", null, "InvoiceDate")});
- this.xrLabel8.Font = new System.Drawing.Font("Arial", 8F);
- this.xrLabel8.LocationFloat = new DevExpress.Utils.PointFloat(572.54F, 231.58F);
- this.xrLabel8.Name = "xrLabel8";
- this.xrLabel8.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
- this.xrLabel8.SizeF = new System.Drawing.SizeF(146.455F, 23F);
- this.xrLabel8.StylePriority.UseFont = false;
- this.xrLabel8.StylePriority.UseTextAlignment = false;
- this.xrLabel8.Text = "xrLabel8";
- this.xrLabel8.TextAlignment = DevExpress.XtraPrinting.TextAlignment.TopLeft;
- //
- // lblAbrechnungszeitraum
- //
- this.lblAbrechnungszeitraum.Font = new System.Drawing.Font("Arial", 11F);
- this.lblAbrechnungszeitraum.LocationFloat = new DevExpress.Utils.PointFloat(0F, 312F);
- this.lblAbrechnungszeitraum.Multiline = true;
- this.lblAbrechnungszeitraum.Name = "lblAbrechnungszeitraum";
- this.lblAbrechnungszeitraum.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
- this.lblAbrechnungszeitraum.SizeF = new System.Drawing.SizeF(642F, 41.04163F);
- this.lblAbrechnungszeitraum.StylePriority.UseFont = false;
- this.lblAbrechnungszeitraum.Text = "hiermit berechnen wir für den ... folgende erbrachte Tätigkeiten:";
- //
- // DetailReport
- //
- this.DetailReport.Bands.AddRange(new DevExpress.XtraReports.UI.Band[] {
+ this.xrLabel8.Font = new System.Drawing.Font("Arial", 8F);
+ this.xrLabel8.LocationFloat = new DevExpress.Utils.PointFloat(572.54F, 231.58F);
+ this.xrLabel8.Name = "xrLabel8";
+ this.xrLabel8.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
+ this.xrLabel8.SizeF = new System.Drawing.SizeF(146.455F, 23F);
+ this.xrLabel8.StylePriority.UseFont = false;
+ this.xrLabel8.StylePriority.UseTextAlignment = false;
+ this.xrLabel8.Text = "xrLabel8";
+ this.xrLabel8.TextAlignment = DevExpress.XtraPrinting.TextAlignment.TopLeft;
+ //
+ // lblAbrechnungszeitraum
+ //
+ this.lblAbrechnungszeitraum.Font = new System.Drawing.Font("Arial", 11F);
+ this.lblAbrechnungszeitraum.LocationFloat = new DevExpress.Utils.PointFloat(0F, 312F);
+ this.lblAbrechnungszeitraum.Multiline = true;
+ this.lblAbrechnungszeitraum.Name = "lblAbrechnungszeitraum";
+ this.lblAbrechnungszeitraum.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
+ this.lblAbrechnungszeitraum.SizeF = new System.Drawing.SizeF(642F, 41.04163F);
+ this.lblAbrechnungszeitraum.StylePriority.UseFont = false;
+ this.lblAbrechnungszeitraum.Text = "hiermit berechnen wir für den ... folgende erbrachte Tätigkeiten:";
+ //
+ // DetailReport
+ //
+ this.DetailReport.Bands.AddRange(new DevExpress.XtraReports.UI.Band[] {
this.Detail1,
this.DetailReport2});
- this.DetailReport.DataMember = "ServiceInvoicePeriods";
- this.DetailReport.DataSource = this.bindingSource1;
- this.DetailReport.Level = 0;
- this.DetailReport.Name = "DetailReport";
- //
- // Detail1
- //
- this.Detail1.HeightF = 0F;
- this.Detail1.Name = "Detail1";
- //
- // DetailReport2
- //
- this.DetailReport2.Bands.AddRange(new DevExpress.XtraReports.UI.Band[] {
+ this.DetailReport.DataMember = "ServiceInvoicePeriods";
+ this.DetailReport.DataSource = this.bindingSource1;
+ this.DetailReport.Level = 0;
+ this.DetailReport.Name = "DetailReport";
+ //
+ // Detail1
+ //
+ this.Detail1.HeightF = 0F;
+ this.Detail1.Name = "Detail1";
+ //
+ // DetailReport2
+ //
+ this.DetailReport2.Bands.AddRange(new DevExpress.XtraReports.UI.Band[] {
this.Detail3});
- this.DetailReport2.DataMember = "ServiceInvoicePeriods.ServiceInvoiceItems";
- this.DetailReport2.DataSource = this.bindingSource1;
- this.DetailReport2.Level = 0;
- this.DetailReport2.Name = "DetailReport2";
- this.DetailReport2.PageBreak = DevExpress.XtraReports.UI.PageBreak.AfterBand;
- //
- // Detail3
- //
- this.Detail3.Controls.AddRange(new DevExpress.XtraReports.UI.XRControl[] {
+ this.DetailReport2.DataMember = "ServiceInvoicePeriods.ServiceInvoiceItems";
+ this.DetailReport2.DataSource = this.bindingSource1;
+ this.DetailReport2.Level = 0;
+ this.DetailReport2.Name = "DetailReport2";
+ this.DetailReport2.PageBreak = DevExpress.XtraReports.UI.PageBreak.AfterBand;
+ //
+ // Detail3
+ //
+ this.Detail3.Controls.AddRange(new DevExpress.XtraReports.UI.XRControl[] {
this.xrLabel2,
this.xrLabel1});
- this.Detail3.Font = new System.Drawing.Font("Arial", 11F);
- this.Detail3.HeightF = 25F;
- this.Detail3.Name = "Detail3";
- this.Detail3.StylePriority.UseFont = false;
- //
- // xrRichText1
- //
- this.xrRichText1.Font = new System.Drawing.Font("Verdana", 10F);
- this.xrRichText1.LocationFloat = new DevExpress.Utils.PointFloat(0F, 67.62F);
- this.xrRichText1.Name = "xrRichText1";
- this.xrRichText1.SerializableRtfString = resources.GetString("xrRichText1.SerializableRtfString");
- this.xrRichText1.SizeF = new System.Drawing.SizeF(431.1666F, 61.54167F);
- //
- // xrLine1
- //
- this.xrLine1.LocationFloat = new DevExpress.Utils.PointFloat(0F, 129.1617F);
- this.xrLine1.Name = "xrLine1";
- this.xrLine1.SizeF = new System.Drawing.SizeF(431.1666F, 10.41667F);
- //
- // xrRichText4
- //
- this.xrRichText4.Font = new System.Drawing.Font("Verdana", 10F);
- this.xrRichText4.LocationFloat = new DevExpress.Utils.PointFloat(0F, 172.4118F);
- this.xrRichText4.Name = "xrRichText4";
- this.xrRichText4.SerializableRtfString = resources.GetString("xrRichText4.SerializableRtfString");
- this.xrRichText4.SizeF = new System.Drawing.SizeF(431.1666F, 27.58334F);
- //
- // xrPictureBox1
- //
- this.xrPictureBox1.Image = ((System.Drawing.Image)(resources.GetObject("xrPictureBox1.Image")));
- this.xrPictureBox1.LocationFloat = new DevExpress.Utils.PointFloat(442.62F, 0F);
- this.xrPictureBox1.Name = "xrPictureBox1";
- this.xrPictureBox1.SizeF = new System.Drawing.SizeF(276.375F, 139.5833F);
- this.xrPictureBox1.Sizing = DevExpress.XtraPrinting.ImageSizeMode.ZoomImage;
- //
- // xrRichText2
- //
- this.xrRichText2.Font = new System.Drawing.Font("Verdana", 10F);
- this.xrRichText2.LocationFloat = new DevExpress.Utils.PointFloat(504.0001F, 0F);
- this.xrRichText2.Name = "xrRichText2";
- this.xrRichText2.SerializableRtfString = resources.GetString("xrRichText2.SerializableRtfString");
- this.xrRichText2.SizeF = new System.Drawing.SizeF(209.9583F, 187.5833F);
- //
- // xrLabel6
- //
- this.xrLabel6.Font = new System.Drawing.Font("Arial", 6F);
- this.xrLabel6.LocationFloat = new DevExpress.Utils.PointFloat(0F, 214.58F);
- this.xrLabel6.Name = "xrLabel6";
- this.xrLabel6.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
- this.xrLabel6.SizeF = new System.Drawing.SizeF(133.6666F, 17F);
- this.xrLabel6.StylePriority.UseFont = false;
- this.xrLabel6.Text = "Ihr Zeichen, Ihre Nachricht vom";
- //
- // xrLabel10
- //
- this.xrLabel10.Font = new System.Drawing.Font("Arial", 6F);
- this.xrLabel10.LocationFloat = new DevExpress.Utils.PointFloat(208.33F, 214.58F);
- this.xrLabel10.Name = "xrLabel10";
- this.xrLabel10.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
- this.xrLabel10.SizeF = new System.Drawing.SizeF(176.375F, 17F);
- this.xrLabel10.StylePriority.UseFont = false;
- this.xrLabel10.Text = "Unser Zeichen, unsere Nachricht vom";
- //
- // xrLabel11
- //
- this.xrLabel11.Font = new System.Drawing.Font("Arial", 6F);
- this.xrLabel11.LocationFloat = new DevExpress.Utils.PointFloat(416.58F, 214.58F);
- this.xrLabel11.Name = "xrLabel11";
- this.xrLabel11.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
- this.xrLabel11.SizeF = new System.Drawing.SizeF(155.9585F, 17F);
- this.xrLabel11.StylePriority.UseFont = false;
- this.xrLabel11.Text = "Telefon, Name";
- //
- // xrLabel12
- //
- this.xrLabel12.Font = new System.Drawing.Font("Arial", 6F);
- this.xrLabel12.LocationFloat = new DevExpress.Utils.PointFloat(572.54F, 214.58F);
- this.xrLabel12.Name = "xrLabel12";
- this.xrLabel12.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
- this.xrLabel12.SizeF = new System.Drawing.SizeF(136.4582F, 17F);
- this.xrLabel12.StylePriority.UseFont = false;
- this.xrLabel12.Text = "Datum";
- //
- // ReportFooter
- //
- this.ReportFooter.Controls.AddRange(new DevExpress.XtraReports.UI.XRControl[] {
- this.xrLabel13});
- this.ReportFooter.Font = new System.Drawing.Font("Arial", 11F);
- this.ReportFooter.HeightF = 199.7916F;
- this.ReportFooter.Name = "ReportFooter";
- this.ReportFooter.StylePriority.UseFont = false;
- //
- // xrLabel13
- //
- this.xrLabel13.LocationFloat = new DevExpress.Utils.PointFloat(0F, 29.79164F);
- 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(407.2917F, 170F);
- this.xrLabel13.StylePriority.UseFont = false;
- this.xrLabel13.Text = "Mit freundlichen Grüßen\r\n\r\n\r\nBRÜCKE\r\nAmbulant Betreutes Wohnen\r\n\r\n\r\n\r\ni. A. Geral" +
- "d Peters";
- //
- // xrLine2
- //
- this.xrLine2.LocationFloat = new DevExpress.Utils.PointFloat(0F, 0F);
- this.xrLine2.Name = "xrLine2";
- this.xrLine2.SizeF = new System.Drawing.SizeF(689.4999F, 10.41667F);
- //
- // xrRichText3
- //
- this.xrRichText3.Font = new System.Drawing.Font("Verdana", 10F);
- this.xrRichText3.LocationFloat = new DevExpress.Utils.PointFloat(0F, 10.42F);
- this.xrRichText3.Name = "xrRichText3";
- this.xrRichText3.SerializableRtfString = resources.GetString("xrRichText3.SerializableRtfString");
- this.xrRichText3.SizeF = new System.Drawing.SizeF(689.4999F, 61.54167F);
- //
- // xrLabel1
- //
- this.xrLabel1.DataBindings.AddRange(new DevExpress.XtraReports.UI.XRBinding[] {
- new DevExpress.XtraReports.UI.XRBinding("Text", null, "ServiceInvoicePeriods.ServiceInvoiceItems.ServiceDescription")});
- this.xrLabel1.LocationFloat = new DevExpress.Utils.PointFloat(0F, 0F);
- this.xrLabel1.Name = "xrLabel1";
- this.xrLabel1.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
- this.xrLabel1.SizeF = new System.Drawing.SizeF(250F, 25F);
- this.xrLabel1.Text = "xrLabel1";
- //
- // xrLabel2
- //
- this.xrLabel2.DataBindings.AddRange(new DevExpress.XtraReports.UI.XRBinding[] {
+ this.Detail3.Font = new System.Drawing.Font("Arial", 11F);
+ this.Detail3.HeightF = 25F;
+ this.Detail3.Name = "Detail3";
+ this.Detail3.StylePriority.UseFont = false;
+ //
+ // xrLabel2
+ //
+ this.xrLabel2.DataBindings.AddRange(new DevExpress.XtraReports.UI.XRBinding[] {
new DevExpress.XtraReports.UI.XRBinding("Text", null, "ServiceInvoicePeriods.ServiceInvoiceItems.GrossAmount")});
- this.xrLabel2.Font = new System.Drawing.Font("Arial", 11F, System.Drawing.FontStyle.Bold);
- this.xrLabel2.LocationFloat = new DevExpress.Utils.PointFloat(250F, 0F);
- this.xrLabel2.Name = "xrLabel2";
- this.xrLabel2.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
- this.xrLabel2.SizeF = new System.Drawing.SizeF(209.375F, 25F);
- this.xrLabel2.StylePriority.UseFont = false;
- this.xrLabel2.Text = "xrLabel2";
- //
- // bindingSource1
- //
- this.bindingSource1.DataSource = typeof(BeWo.Report.ReportObjects.ServiceInvoiceRO);
- //
- // ServiceInvoiceReport
- //
- this.Bands.AddRange(new DevExpress.XtraReports.UI.Band[] {
+ this.xrLabel2.Font = new System.Drawing.Font("Arial", 11F, System.Drawing.FontStyle.Bold);
+ this.xrLabel2.LocationFloat = new DevExpress.Utils.PointFloat(250F, 0F);
+ this.xrLabel2.Name = "xrLabel2";
+ this.xrLabel2.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
+ this.xrLabel2.SizeF = new System.Drawing.SizeF(209.375F, 25F);
+ this.xrLabel2.StylePriority.UseFont = false;
+ this.xrLabel2.Text = "xrLabel2";
+ //
+ // xrLabel1
+ //
+ this.xrLabel1.DataBindings.AddRange(new DevExpress.XtraReports.UI.XRBinding[] {
+ new DevExpress.XtraReports.UI.XRBinding("Text", null, "ServiceInvoicePeriods.ServiceInvoiceItems.ServiceDescription")});
+ this.xrLabel1.LocationFloat = new DevExpress.Utils.PointFloat(0F, 0F);
+ this.xrLabel1.Name = "xrLabel1";
+ this.xrLabel1.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
+ this.xrLabel1.SizeF = new System.Drawing.SizeF(250F, 25F);
+ this.xrLabel1.Text = "xrLabel1";
+ //
+ // ReportFooter
+ //
+ this.ReportFooter.Controls.AddRange(new DevExpress.XtraReports.UI.XRControl[] {
+ this.xrLabel13});
+ this.ReportFooter.Font = new System.Drawing.Font("Arial", 11F);
+ this.ReportFooter.HeightF = 199.7916F;
+ this.ReportFooter.Name = "ReportFooter";
+ this.ReportFooter.StylePriority.UseFont = false;
+ //
+ // xrLabel13
+ //
+ this.xrLabel13.LocationFloat = new DevExpress.Utils.PointFloat(0F, 29.79164F);
+ 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(407.2917F, 170F);
+ this.xrLabel13.StylePriority.UseFont = false;
+ this.xrLabel13.Text = "Mit freundlichen Grüßen\r\n\r\n\r\nBRÜCKE\r\nAmbulant Betreutes Wohnen\r\n\r\n\r\n\r\ni. A. Geral" +
+ "d Peters";
+ //
+ // bindingSource1
+ //
+ this.bindingSource1.DataSource = typeof(BeWo.Report.ReportObjects.ServiceInvoiceRO);
+ //
+ // xrLabel3
+ //
+ this.xrLabel3.Font = new System.Drawing.Font("Arial", 7F, System.Drawing.FontStyle.Underline);
+ this.xrLabel3.LocationFloat = new DevExpress.Utils.PointFloat(0F, 173.4535F);
+ this.xrLabel3.Name = "xrLabel3";
+ this.xrLabel3.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
+ this.xrLabel3.SizeF = new System.Drawing.SizeF(359.7083F, 26.54654F);
+ this.xrLabel3.StylePriority.UseFont = false;
+ this.xrLabel3.Text = "Brücke - ABW · Wilhelmstraße 37 · 52249 Eschweiler";
+ //
+ // ServiceInvoiceReport
+ //
+ this.Bands.AddRange(new DevExpress.XtraReports.UI.Band[] {
this.Detail,
this.ReportHeader,
this.topMarginBand1,
@@ -369,22 +370,21 @@ namespace BeWo.BrueckeABW
this.Page1,
this.DetailReport,
this.ReportFooter});
- this.DataSource = this.bindingSource1;
- this.ExportOptions.PrintPreview.DefaultFileName = "Spitzabrechnung";
- this.Font = new System.Drawing.Font("Verdana", 10F);
- this.FormattingRuleSheet.AddRange(new DevExpress.XtraReports.UI.FormattingRule[] {
+ this.DataSource = this.bindingSource1;
+ this.ExportOptions.PrintPreview.DefaultFileName = "Spitzabrechnung";
+ this.Font = new System.Drawing.Font("Verdana", 10F);
+ this.FormattingRuleSheet.AddRange(new DevExpress.XtraReports.UI.FormattingRule[] {
this.ruleRateFactorNull});
- this.Margins = new System.Drawing.Printing.Margins(85, 10, 0, 100);
- this.PageHeight = 1169;
- this.PageWidth = 827;
- this.PaperKind = System.Drawing.Printing.PaperKind.A4;
- this.Version = "13.1";
- ((System.ComponentModel.ISupportInitialize)(this.xrRichText1)).EndInit();
- ((System.ComponentModel.ISupportInitialize)(this.xrRichText4)).EndInit();
- ((System.ComponentModel.ISupportInitialize)(this.xrRichText2)).EndInit();
- ((System.ComponentModel.ISupportInitialize)(this.xrRichText3)).EndInit();
- ((System.ComponentModel.ISupportInitialize)(this.bindingSource1)).EndInit();
- ((System.ComponentModel.ISupportInitialize)(this)).EndInit();
+ this.Margins = new System.Drawing.Printing.Margins(85, 10, 0, 100);
+ this.PageHeight = 1169;
+ this.PageWidth = 827;
+ this.PaperKind = System.Drawing.Printing.PaperKind.A4;
+ this.Version = "13.2";
+ ((System.ComponentModel.ISupportInitialize)(this.xrRichText1)).EndInit();
+ ((System.ComponentModel.ISupportInitialize)(this.xrRichText3)).EndInit();
+ ((System.ComponentModel.ISupportInitialize)(this.xrRichText2)).EndInit();
+ ((System.ComponentModel.ISupportInitialize)(this.bindingSource1)).EndInit();
+ ((System.ComponentModel.ISupportInitialize)(this)).EndInit();
}
@@ -407,7 +407,6 @@ namespace BeWo.BrueckeABW
private DevExpress.XtraReports.UI.XRLabel xrLabel7;
private DevExpress.XtraReports.UI.XRRichText xrRichText1;
private DevExpress.XtraReports.UI.XRLine xrLine1;
- private DevExpress.XtraReports.UI.XRRichText xrRichText4;
private DevExpress.XtraReports.UI.XRPictureBox xrPictureBox1;
private DevExpress.XtraReports.UI.XRRichText xrRichText2;
private DevExpress.XtraReports.UI.XRLabel xrLabel6;
@@ -420,5 +419,6 @@ namespace BeWo.BrueckeABW
private DevExpress.XtraReports.UI.XRRichText xrRichText3;
private DevExpress.XtraReports.UI.XRLabel xrLabel1;
private DevExpress.XtraReports.UI.XRLabel xrLabel2;
+ private DevExpress.XtraReports.UI.XRLabel xrLabel3;
}
}
diff --git a/ReportImp/BrueckeABW/ServiceInvoiceReport.resx b/ReportImp/BrueckeABW/ServiceInvoiceReport.resx
index 192ac01aa..008670a98 100644
--- a/ReportImp/BrueckeABW/ServiceInvoiceReport.resx
+++ b/ReportImp/BrueckeABW/ServiceInvoiceReport.resx
@@ -120,9 +120,6 @@
ewBcAHIAdABmADEAXABhAG4AcwBpAFwAYQBuAHMAaQBjAHAAZwAxADIANQAyAFwAZABlAGYAZgAwAHsAXABmAG8AbgB0AHQAYgBsAHsAXABmADAAXABmAHMAdwBpAHMAcwBcAGYAcAByAHEAMgBcAGYAYwBoAGEAcgBzAGUAdAAwACAAVAByAGUAYgB1AGMAaABlAHQAIABNAFMAOwB9AHsAXABmADEAXABmAG4AaQBsACAAVABpAG0AZQBzACAATgBlAHcAIABSAG8AbQBhAG4AOwB9AH0ADQAKAFwAdgBpAGUAdwBrAGkAbgBkADQAXAB1AGMAMQBcAHAAYQByAGQAXABxAGoAXAB0AHEAYwBcAHQAeAA0ADUAMwA2AFwAdABxAHIAXAB0AHgAOQAwADcAMgBcAGwAYQBuAGcAMQAwADMAMQBcAGIAXABmADAAXABmAHMAMgAyACAASQBuAGQAaQB2AGkAZAB1AGUAbABsAGUAIABBAGwAbAB0AGEAZwBzAGgAaQBsAGYAZQBuACAAZgBcACcAZgBjAHIAIABNAGUAbgBzAGMAaABlAG4AIABtAGkAdAAgAFwAcABhAHIADQAKAFwAcABhAHIAZAAgAGsAXAAnAGYANgByAHAAZQByAGwAaQBjAGgAZQByACwAIABnAGUAaQBzAHQAaQBnAGUAcgAgAHUAbgBkAC8AbwBkAGUAcgAgAHMAZQBlAGwAaQBzAGMAaABlAHIAXABwAGEAcgANAAoAQgBlAGgAaQBuAGQAZQByAHUAbgBnAFwAYgAwAFwAZgAxAFwAZgBzADIANABcAHAAYQByAA0ACgB9AA0ACgA=
-
- ewBcAHIAdABmADEAXABmAGIAaQBkAGkAcwBcAGEAbgBzAGkAXABhAG4AcwBpAGMAcABnADEAMgA1ADIAXABkAGUAZgBmADAAewBcAGYAbwBuAHQAdABiAGwAewBcAGYAMABcAGYAcwB3AGkAcwBzAFwAZgBwAHIAcQAyAFwAZgBjAGgAYQByAHMAZQB0ADAAIABBAHIAaQBhAGwAOwB9AHsAXABmADEAXABmAG4AaQBsACAAVABpAG0AZQBzACAATgBlAHcAIABSAG8AbQBhAG4AOwB9AH0ADQAKAFwAdgBpAGUAdwBrAGkAbgBkADQAXAB1AGMAMQBcAHAAYQByAGQAXABsAHQAcgBwAGEAcgBcAGwAYQBuAGcAMQAwADIANABcAHUAbABcAGYAMABcAGYAcwAxADQAIABCAHIAXAAnAGYAYwBjAGsAZQAgAC0AIABBAEIAVwAgAFwAJwBiADcAIABCAGkAcwBtAGEAcgBjAGsAcwB0AHIALgAgADEAOAAgAFwAJwBiADcAIAA1ADIAMgA0ADkAIABFAHMAYwBoAHcAZQBpAGwAZQByAFwAbABhAG4AZwAxADAAMwAxAFwAdQBsAG4AbwBuAGUAXABmADEAXABmAHMAMgA0AFwAcABhAHIADQAKAH0ADQAKAA==
-
@@ -3102,10 +3099,10 @@
- ewBcAHIAdABmADEAXABmAGIAaQBkAGkAcwBcAGEAbgBzAGkAXABhAG4AcwBpAGMAcABnADEAMgA1ADIAXABkAGUAZgBmADAAewBcAGYAbwBuAHQAdABiAGwAewBcAGYAMABcAGYAcwB3AGkAcwBzAFwAZgBwAHIAcQAyAFwAZgBjAGgAYQByAHMAZQB0ADAAIABUAHIAZQBiAHUAYwBoAGUAdAAgAE0AUwA7AH0AewBcAGYAMQBcAGYAbgBpAGwAIABUAGkAbQBlAHMAIABOAGUAdwAgAFIAbwBtAGEAbgA7AH0AfQANAAoAXAB2AGkAZQB3AGsAaQBuAGQANABcAHUAYwAxAFwAcABhAHIAZABcAGwAdAByAHAAYQByAFwAcQBjAFwAdABxAGMAXAB0AHgANAA1ADMANgBcAHQAcQByAFwAdAB4ADkAMAA3ADIAXABsAGEAbgBnADEAMAAzADEAXABmADAAXABmAHMAMQA2ACAAQgByAFwAJwBmAGMAYwBrAGUAIAAtACAAQQBtAGIAdQBsAGEAbgB0ACAAQgBlAHQAcgBlAHUAdABlAHMAIABXAG8AaABuAGUAbgAgAFwAJwBiADcAIABCAGkAcwBtAGEAcgBjAGsAcwB0AHIALgAgADEAOAAgAFwAJwBiADcAIAA1ADIAMgA0ADkAIABFAHMAYwBoAHcAZQBpAGwAZQByACAAXAAnAGIANwAgAEQAZQB1AHQAcwBjAGgAbABhAG4AZAAgAFwAJwBiADcAIABEAGkAcABsAC4AIABTAG8AegAuACAAUABcACcAZQA0AGQALgAgAE0AYQByAGkAYQAgAEgAYQB1AHAAdABzAC0AUABlAHQAZQByAHMAXABsAGkAbgBlACAAVQBTAHQALQBJAGQATgByAC4AOgAgAEQARQAgADIAMwA2ADcAMAA4ADcANgA3ACAAXAAnAGIANwAgAEIAYQBuAGsAdgBlAHIAYgBpAG4AZAB1AG4AZwA6ACAASwBvAG4AdABvAG4AdQBtAG0AZQByACAANwAzADMAMAAwADkAMQAwADIAMwAgAFwAJwBiADcAIABCAEwAWgAgADMAOQAxADYAMgA5ADgAMAAgAFwAJwBiADcAIABWAFIAIABCAGEAbgBrACAAXABwAGEAcgANAAoAVABlAGwAZQBmAG8AbgA6ACAAKwA0ADkAIAAoADAAKQAgADIANAAwADMAIAA4ADMAIAA3ADgAIAAwADIAMQAgAFwAJwBiADcAIABUAGUAbABlAGYAYQB4ADoAIAArADQAOQAgACgAMAApACAAMgA0ADAAMwAgADgAMwAgADcAOAAgADAAMgAyAFwAcABhAHIADQAKAEUAbQBhAGkAbAA6ACAAaQBuAGYAbwBAAGIAcgB1AGUAYwBrAGUALQBhAGIAdwAuAGQAZQAgAFwAJwBiADcAIABJAG4AdABlAHIAbgBlAHQAOgB3AHcAdwAuAGIAcgB1AGUAYwBrAGUALQBhAGIAdwAuAGQAZQBcAGYAMQBcAGYAcwAyADQAXABwAGEAcgANAAoAfQANAAoA
+ ewBcAHIAdABmADEAXABhAG4AcwBpAFwAYQBuAHMAaQBjAHAAZwAxADIANQAyAFwAZABlAGYAZgAwAHsAXABmAG8AbgB0AHQAYgBsAHsAXABmADAAXABmAHMAdwBpAHMAcwBcAGYAcAByAHEAMgBcAGYAYwBoAGEAcgBzAGUAdAAwACAAVAByAGUAYgB1AGMAaABlAHQAIABNAFMAOwB9AHsAXABmADEAXABmAG4AaQBsACAAVABpAG0AZQBzACAATgBlAHcAIABSAG8AbQBhAG4AOwB9AH0ADQAKAFwAdgBpAGUAdwBrAGkAbgBkADQAXAB1AGMAMQBcAHAAYQByAGQAXABxAGMAXAB0AHEAYwBcAHQAeAA0ADUAMwA2AFwAdABxAHIAXAB0AHgAOQAwADcAMgBcAGwAYQBuAGcAMQAwADMAMQBcAGYAMABcAGYAcwAxADYAIABCAHIAXAAnAGYAYwBjAGsAZQAgAC0AIABBAG0AYgB1AGwAYQBuAHQAIABCAGUAdAByAGUAdQB0AGUAcwAgAFcAbwBoAG4AZQBuACAAXAAnAGIANwAgAFcAaQBsAGgAZQBsAG0AcwB0AHIAYQBcACcAZABmAGUAIAAzADcAIABcACcAYgA3ACAANQAyADIANAA5ACAARQBzAGMAaAB3AGUAaQBsAGUAcgAgAFwAJwBiADcAIABEAGUAdQB0AHMAYwBoAGwAYQBuAGQAIABcACcAYgA3ACAARABpAHAAbAAuACAAUwBvAHoALgAgAFAAXAAnAGUANABkAC4AIABNAGEAcgBpAGEAIABIAGEAdQBwAHQAcwAtAFAAZQB0AGUAcgBzAFwAbABpAG4AZQAgAFUAUwB0AC0ASQBkAE4AcgAuADoAIABEAEUAIAAyADMANgA3ADAAOAA3ADYANwAgAFwAJwBiADcAIABCAGEAbgBrAHYAZQByAGIAaQBuAGQAdQBuAGcAOgAgAEsAbwBuAHQAbwBuAHUAbQBtAGUAcgAgADcAMwAzADAAMAA5ADEAMAAyADMAIABcACcAYgA3ACAAQgBMAFoAIAAzADkAMQA2ADIAOQA4ADAAIABcACcAYgA3ACAAVgBSACAAQgBhAG4AawAgAFwAcABhAHIADQAKAFQAZQBsAGUAZgBvAG4AOgAgACsANAA5ACAAKAAwACkAIAAyADQAMAAzACAAOAAzACAANwA4ACAAMAAyADEAIABcACcAYgA3ACAAVABlAGwAZQBmAGEAeAA6ACAAKwA0ADkAIAAoADAAKQAgADIANAAwADMAIAA4ADMAIAA3ADgAIAAwADIAMgBcAHAAYQByAA0ACgBFAG0AYQBpAGwAOgAgAGkAbgBmAG8AQABiAHIAdQBlAGMAawBlAC0AYQBiAHcALgBkAGUAIABcACcAYgA3ACAASQBuAHQAZQByAG4AZQB0ADoAdwB3AHcALgBiAHIAdQBlAGMAawBlAC0AYQBiAHcALgBkAGUAXABmADEAXABmAHMAMgA0AFwAcABhAHIADQAKAH0ADQAKAA==
- ewBcAHIAdABmADEAXABhAG4AcwBpAFwAYQBuAHMAaQBjAHAAZwAxADIANQAyAFwAZABlAGYAZgAwAHsAXABmAG8AbgB0AHQAYgBsAHsAXABmADAAXABmAHMAdwBpAHMAcwBcAGYAcAByAHEAMgBcAGYAYwBoAGEAcgBzAGUAdAAwACAAVAByAGUAYgB1AGMAaABlAHQAIABNAFMAOwB9AHsAXABmADEAXABmAG4AaQBsACAAVABpAG0AZQBzACAATgBlAHcAIABSAG8AbQBhAG4AOwB9AH0ADQAKAHsAXABjAG8AbABvAHIAdABiAGwAIAA7AFwAcgBlAGQAMABcAGcAcgBlAGUAbgAwAFwAYgBsAHUAZQAyADUANQA7AH0ADQAKAFwAdgBpAGUAdwBrAGkAbgBkADQAXAB1AGMAMQBcAHAAYQByAGQAXABzAGEAMgAwADAAXABzAGwAMgA3ADYAXABzAGwAbQB1AGwAdAAxAFwAbABhAG4AZwAxADAAMwAxAFwAZgAwAFwAZgBzADEANgAgAEIAcgBcACcAZgBjAGMAawBlAFwAbABpAG4AZQAgAEEAbQBiAHUAbABhAG4AdAAgAEIAZQB0AHIAZQB1AHQAZQBzACAAVwBvAGgAbgBlAG4AXABsAGkAbgBlACAAQgBpAHMAbQBhAHIAYwBrAHMAdAByAC4AIAAxADgAXABsAGkAbgBlACAANQAyADIANAA5ACAARQBzAGMAaAB3AGUAaQBsAGUAcgBcAGwAaQBuAGUAIABEAGUAdQB0AHMAYwBoAGwAYQBuAGQAXABwAGEAcgANAAoAVABlAGwAZQBmAG8AbgA6ACAAKwA0ADkAIAAoADAAKQAgADIANAAwADMAIAA4ADMAIAA3ADgAIAAwADIAMQBcAGwAaQBuAGUAIABUAGUAbABlAGYAYQB4ADoAIAArADQAOQAgACgAMAApACAAMgA0ADAAMwAgADgAMwAgADcAOAAgADAAMgAyAFwAcABhAHIADQAKAFwAcABhAHIAZAAgAEUAbQBhAGkAbAA6ACAAXABjAGYAMQBcAHUAbAAgAGkAbgBmAG8AQABiAHIAdQBlAGMAawBlAC0AYQBiAHcALgBkAGUAXABjAGYAMABcAHUAbABuAG8AbgBlAFwAbABpAG4AZQAgAEkAbgB0AGUAcgBuAGUAdAA6ACAAdwB3AHcALgBiAHIAdQBlAGMAawBlAC0AYQBiAHcALgBkAGUAXABwAGEAcgANAAoAXABmADEAXABmAHMAMgA0AFwAcABhAHIADQAKAH0ADQAKAA==
+ ewBcAHIAdABmADEAXABhAG4AcwBpAFwAYQBuAHMAaQBjAHAAZwAxADIANQAyAFwAZABlAGYAZgAwAHsAXABmAG8AbgB0AHQAYgBsAHsAXABmADAAXABmAHMAdwBpAHMAcwBcAGYAcAByAHEAMgBcAGYAYwBoAGEAcgBzAGUAdAAwACAAVAByAGUAYgB1AGMAaABlAHQAIABNAFMAOwB9AHsAXABmADEAXABmAG4AaQBsACAAVABpAG0AZQBzACAATgBlAHcAIABSAG8AbQBhAG4AOwB9AH0ADQAKAHsAXABjAG8AbABvAHIAdABiAGwAIAA7AFwAcgBlAGQAMABcAGcAcgBlAGUAbgAwAFwAYgBsAHUAZQAyADUANQA7AH0ADQAKAFwAdgBpAGUAdwBrAGkAbgBkADQAXAB1AGMAMQBcAHAAYQByAGQAXABzAGEAMgAwADAAXABzAGwAMgA3ADYAXABzAGwAbQB1AGwAdAAxAFwAbABhAG4AZwAxADAAMwAxAFwAZgAwAFwAZgBzADEANgAgAEIAcgBcACcAZgBjAGMAawBlAFwAbABpAG4AZQAgAEEAbQBiAHUAbABhAG4AdAAgAEIAZQB0AHIAZQB1AHQAZQBzACAAVwBvAGgAbgBlAG4AXABsAGkAbgBlACAAVwBpAGwAaABlAGwAbQBzAHQAcgBhAFwAJwBkAGYAZQAgADMANwBcAGwAaQBuAGUAIAA1ADIAMgA0ADkAIABFAHMAYwBoAHcAZQBpAGwAZQByAFwAbABpAG4AZQAgAEQAZQB1AHQAcwBjAGgAbABhAG4AZABcAHAAYQByAA0ACgBUAGUAbABlAGYAbwBuADoAIAArADQAOQAgACgAMAApACAAMgA0ADAAMwAgADgAMwAgADcAOAAgADAAMgAxAFwAbABpAG4AZQAgAFQAZQBsAGUAZgBhAHgAOgAgACsANAA5ACAAKAAwACkAIAAyADQAMAAzACAAOAAzACAANwA4ACAAMAAyADIAXABwAGEAcgANAAoAXABwAGEAcgBkACAARQBtAGEAaQBsADoAIABcAGMAZgAxAFwAdQBsACAAaQBuAGYAbwBAAGIAcgB1AGUAYwBrAGUALQBhAGIAdwAuAGQAZQBcAGMAZgAwAFwAdQBsAG4AbwBuAGUAXABsAGkAbgBlACAASQBuAHQAZQByAG4AZQB0ADoAIAB3AHcAdwAuAGIAcgB1AGUAYwBrAGUALQBhAGIAdwAuAGQAZQBcAGYAMQBcAGYAcwAyADQAXABwAGEAcgANAAoAfQANAAoA
17, 17
diff --git a/ReportImp/BrueckeABW/SettlementReport.Designer.cs b/ReportImp/BrueckeABW/SettlementReport.Designer.cs
index 3d9d51cc0..fbddac34f 100644
--- a/ReportImp/BrueckeABW/SettlementReport.Designer.cs
+++ b/ReportImp/BrueckeABW/SettlementReport.Designer.cs
@@ -28,152 +28,143 @@ namespace BeWo.BrueckeABW.Alt
///
private void InitializeComponent()
{
- 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.xrRichText4 = new DevExpress.XtraReports.UI.XRRichText();
- this.xrLine1 = new DevExpress.XtraReports.UI.XRLine();
- this.xrRichText1 = new DevExpress.XtraReports.UI.XRRichText();
- this.xrPictureBox1 = new DevExpress.XtraReports.UI.XRPictureBox();
- this.xrLabel8 = new DevExpress.XtraReports.UI.XRLabel();
- this.xrTable1 = new DevExpress.XtraReports.UI.XRTable();
- this.xrTableRow9 = new DevExpress.XtraReports.UI.XRTableRow();
- this.xrTableCell19 = new DevExpress.XtraReports.UI.XRTableCell();
- this.xrTableCell6 = new DevExpress.XtraReports.UI.XRTableCell();
- this.xrTableRow10 = new DevExpress.XtraReports.UI.XRTableRow();
- this.xrTableCell20 = new DevExpress.XtraReports.UI.XRTableCell();
- this.ruleRateFactorNull = new DevExpress.XtraReports.UI.FormattingRule();
- this.xrTableCell7 = new DevExpress.XtraReports.UI.XRTableCell();
- this.xrTableRow11 = new DevExpress.XtraReports.UI.XRTableRow();
- this.xrTableCell21 = new DevExpress.XtraReports.UI.XRTableCell();
- this.rowErbrachteLeistung = new DevExpress.XtraReports.UI.XRTableRow();
- this.xrTableCell22 = new DevExpress.XtraReports.UI.XRTableCell();
- this.rowAbrechnung1 = new DevExpress.XtraReports.UI.XRTableRow();
- this.xrTableCell36 = new DevExpress.XtraReports.UI.XRTableCell();
- this.xrTableCell34 = new DevExpress.XtraReports.UI.XRTableCell();
- this.rowAbrechnung2 = new DevExpress.XtraReports.UI.XRTableRow();
- this.xrTableCell37 = new DevExpress.XtraReports.UI.XRTableCell();
- this.xrTableCell33 = new DevExpress.XtraReports.UI.XRTableCell();
- this.rowAbrechnung3 = new DevExpress.XtraReports.UI.XRTableRow();
- this.xrTableCell38 = new DevExpress.XtraReports.UI.XRTableCell();
- this.xrTableCell32 = new DevExpress.XtraReports.UI.XRTableCell();
- this.xrTableRow13 = new DevExpress.XtraReports.UI.XRTableRow();
- this.xrTableCell23 = new DevExpress.XtraReports.UI.XRTableCell();
- this.xrTableRow14 = new DevExpress.XtraReports.UI.XRTableRow();
- this.xrTableCell12 = new DevExpress.XtraReports.UI.XRTableCell();
- this.xrTableCell9 = new DevExpress.XtraReports.UI.XRTableCell();
- this.xrTableRow7 = new DevExpress.XtraReports.UI.XRTableRow();
- this.xrTableCell3 = new DevExpress.XtraReports.UI.XRTableCell();
- this.xrTableRow12 = new DevExpress.XtraReports.UI.XRTableRow();
- this.xrTableCell24 = new DevExpress.XtraReports.UI.XRTableCell();
- this.xrTableCell10 = new DevExpress.XtraReports.UI.XRTableCell();
- this.xrTableRow15 = new DevExpress.XtraReports.UI.XRTableRow();
- this.xrTableCell14 = new DevExpress.XtraReports.UI.XRTableCell();
- this.xrTableCell15 = new DevExpress.XtraReports.UI.XRTableCell();
- this.xrTableRow18 = new DevExpress.XtraReports.UI.XRTableRow();
- this.xrTableCell25 = new DevExpress.XtraReports.UI.XRTableCell();
- this.xrTableRow17 = new DevExpress.XtraReports.UI.XRTableRow();
- this.xrTableCell28 = new DevExpress.XtraReports.UI.XRTableCell();
- this.xrTableCell17 = new DevExpress.XtraReports.UI.XRTableCell();
- this.xrLabel6 = new DevExpress.XtraReports.UI.XRLabel();
- this.RecipientPostCodeAndTown = new DevExpress.XtraReports.UI.XRLabel();
- this.xrLabel_RecipientStreet = new DevExpress.XtraReports.UI.XRLabel();
- this.xrLabel_RecipientDivision = new DevExpress.XtraReports.UI.XRLabel();
- this.xrLabel_RecipientContactPerson = new DevExpress.XtraReports.UI.XRLabel();
- this.xrLabel1 = new DevExpress.XtraReports.UI.XRLabel();
- this.ReportFooter = new DevExpress.XtraReports.UI.ReportFooterBand();
- this.xrLabel10 = new DevExpress.XtraReports.UI.XRLabel();
- this.topMarginBand1 = new DevExpress.XtraReports.UI.TopMarginBand();
- this.bottomMarginBand1 = new DevExpress.XtraReports.UI.BottomMarginBand();
- this.xrRichText3 = new DevExpress.XtraReports.UI.XRRichText();
- this.xrLine2 = new DevExpress.XtraReports.UI.XRLine();
- this.GroupHeader1 = new DevExpress.XtraReports.UI.GroupHeaderBand();
- this.xrLabel5 = new DevExpress.XtraReports.UI.XRLabel();
- this.xrLabel9 = new DevExpress.XtraReports.UI.XRLabel();
- this.xrLabel7 = 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.xrRichText2 = new DevExpress.XtraReports.UI.XRRichText();
- this.bindingSource1 = new System.Windows.Forms.BindingSource(this.components);
- ((System.ComponentModel.ISupportInitialize)(this.xrRichText4)).BeginInit();
- ((System.ComponentModel.ISupportInitialize)(this.xrRichText1)).BeginInit();
- ((System.ComponentModel.ISupportInitialize)(this.xrTable1)).BeginInit();
- ((System.ComponentModel.ISupportInitialize)(this.xrRichText3)).BeginInit();
- ((System.ComponentModel.ISupportInitialize)(this.xrRichText2)).BeginInit();
- ((System.ComponentModel.ISupportInitialize)(this.bindingSource1)).BeginInit();
- ((System.ComponentModel.ISupportInitialize)(this)).BeginInit();
- //
- // Detail
- //
- this.Detail.HeightF = 0F;
- this.Detail.Name = "Detail";
- this.Detail.Padding = new DevExpress.XtraPrinting.PaddingInfo(0, 0, 0, 0, 100F);
- this.Detail.TextAlignment = DevExpress.XtraPrinting.TextAlignment.TopLeft;
- //
- // ReportHeader
- //
- this.ReportHeader.Controls.AddRange(new DevExpress.XtraReports.UI.XRControl[] {
- this.xrRichText4,
+ 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.xrLine1 = new DevExpress.XtraReports.UI.XRLine();
+ this.xrRichText1 = new DevExpress.XtraReports.UI.XRRichText();
+ this.xrPictureBox1 = new DevExpress.XtraReports.UI.XRPictureBox();
+ this.xrLabel8 = new DevExpress.XtraReports.UI.XRLabel();
+ this.xrTable1 = new DevExpress.XtraReports.UI.XRTable();
+ this.xrTableRow9 = new DevExpress.XtraReports.UI.XRTableRow();
+ this.xrTableCell19 = new DevExpress.XtraReports.UI.XRTableCell();
+ this.xrTableCell6 = new DevExpress.XtraReports.UI.XRTableCell();
+ this.xrTableRow10 = new DevExpress.XtraReports.UI.XRTableRow();
+ this.xrTableCell20 = new DevExpress.XtraReports.UI.XRTableCell();
+ this.ruleRateFactorNull = new DevExpress.XtraReports.UI.FormattingRule();
+ this.xrTableCell7 = new DevExpress.XtraReports.UI.XRTableCell();
+ this.xrTableRow11 = new DevExpress.XtraReports.UI.XRTableRow();
+ this.xrTableCell21 = new DevExpress.XtraReports.UI.XRTableCell();
+ this.rowErbrachteLeistung = new DevExpress.XtraReports.UI.XRTableRow();
+ this.xrTableCell22 = new DevExpress.XtraReports.UI.XRTableCell();
+ this.rowAbrechnung1 = new DevExpress.XtraReports.UI.XRTableRow();
+ this.xrTableCell36 = new DevExpress.XtraReports.UI.XRTableCell();
+ this.xrTableCell34 = new DevExpress.XtraReports.UI.XRTableCell();
+ this.rowAbrechnung2 = new DevExpress.XtraReports.UI.XRTableRow();
+ this.xrTableCell37 = new DevExpress.XtraReports.UI.XRTableCell();
+ this.xrTableCell33 = new DevExpress.XtraReports.UI.XRTableCell();
+ this.rowAbrechnung3 = new DevExpress.XtraReports.UI.XRTableRow();
+ this.xrTableCell38 = new DevExpress.XtraReports.UI.XRTableCell();
+ this.xrTableCell32 = new DevExpress.XtraReports.UI.XRTableCell();
+ this.xrTableRow13 = new DevExpress.XtraReports.UI.XRTableRow();
+ this.xrTableCell23 = new DevExpress.XtraReports.UI.XRTableCell();
+ this.xrTableRow14 = new DevExpress.XtraReports.UI.XRTableRow();
+ this.xrTableCell12 = new DevExpress.XtraReports.UI.XRTableCell();
+ this.xrTableCell9 = new DevExpress.XtraReports.UI.XRTableCell();
+ this.xrTableRow7 = new DevExpress.XtraReports.UI.XRTableRow();
+ this.xrTableCell3 = new DevExpress.XtraReports.UI.XRTableCell();
+ this.xrTableRow12 = new DevExpress.XtraReports.UI.XRTableRow();
+ this.xrTableCell24 = new DevExpress.XtraReports.UI.XRTableCell();
+ this.xrTableCell10 = new DevExpress.XtraReports.UI.XRTableCell();
+ this.xrTableRow15 = new DevExpress.XtraReports.UI.XRTableRow();
+ this.xrTableCell14 = new DevExpress.XtraReports.UI.XRTableCell();
+ this.xrTableCell15 = new DevExpress.XtraReports.UI.XRTableCell();
+ this.xrTableRow18 = new DevExpress.XtraReports.UI.XRTableRow();
+ this.xrTableCell25 = new DevExpress.XtraReports.UI.XRTableCell();
+ this.xrTableRow17 = new DevExpress.XtraReports.UI.XRTableRow();
+ this.xrTableCell28 = new DevExpress.XtraReports.UI.XRTableCell();
+ this.xrTableCell17 = new DevExpress.XtraReports.UI.XRTableCell();
+ this.xrLabel6 = new DevExpress.XtraReports.UI.XRLabel();
+ this.RecipientPostCodeAndTown = new DevExpress.XtraReports.UI.XRLabel();
+ this.xrLabel_RecipientStreet = new DevExpress.XtraReports.UI.XRLabel();
+ this.xrLabel_RecipientDivision = new DevExpress.XtraReports.UI.XRLabel();
+ this.xrLabel_RecipientContactPerson = new DevExpress.XtraReports.UI.XRLabel();
+ this.xrLabel1 = new DevExpress.XtraReports.UI.XRLabel();
+ this.ReportFooter = new DevExpress.XtraReports.UI.ReportFooterBand();
+ this.xrLabel10 = new DevExpress.XtraReports.UI.XRLabel();
+ this.topMarginBand1 = new DevExpress.XtraReports.UI.TopMarginBand();
+ this.bottomMarginBand1 = new DevExpress.XtraReports.UI.BottomMarginBand();
+ this.xrRichText3 = new DevExpress.XtraReports.UI.XRRichText();
+ this.xrLine2 = new DevExpress.XtraReports.UI.XRLine();
+ this.GroupHeader1 = new DevExpress.XtraReports.UI.GroupHeaderBand();
+ this.xrLabel5 = new DevExpress.XtraReports.UI.XRLabel();
+ this.xrLabel9 = new DevExpress.XtraReports.UI.XRLabel();
+ this.xrLabel7 = 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.xrRichText2 = new DevExpress.XtraReports.UI.XRRichText();
+ this.bindingSource1 = new System.Windows.Forms.BindingSource(this.components);
+ this.xrLabel11 = new DevExpress.XtraReports.UI.XRLabel();
+ ((System.ComponentModel.ISupportInitialize)(this.xrRichText1)).BeginInit();
+ ((System.ComponentModel.ISupportInitialize)(this.xrTable1)).BeginInit();
+ ((System.ComponentModel.ISupportInitialize)(this.xrRichText3)).BeginInit();
+ ((System.ComponentModel.ISupportInitialize)(this.xrRichText2)).BeginInit();
+ ((System.ComponentModel.ISupportInitialize)(this.bindingSource1)).BeginInit();
+ ((System.ComponentModel.ISupportInitialize)(this)).BeginInit();
+ //
+ // Detail
+ //
+ this.Detail.HeightF = 0F;
+ this.Detail.Name = "Detail";
+ this.Detail.Padding = new DevExpress.XtraPrinting.PaddingInfo(0, 0, 0, 0, 100F);
+ this.Detail.TextAlignment = DevExpress.XtraPrinting.TextAlignment.TopLeft;
+ //
+ // ReportHeader
+ //
+ this.ReportHeader.Controls.AddRange(new DevExpress.XtraReports.UI.XRControl[] {
+ this.xrLabel11,
this.xrLine1,
this.xrRichText1,
this.xrPictureBox1});
- this.ReportHeader.Font = new System.Drawing.Font("Verdana", 10F);
- this.ReportHeader.HeightF = 200F;
- this.ReportHeader.Name = "ReportHeader";
- this.ReportHeader.StylePriority.UseFont = false;
- //
- // xrRichText4
- //
- this.xrRichText4.Font = new System.Drawing.Font("Verdana", 10F);
- this.xrRichText4.LocationFloat = new DevExpress.Utils.PointFloat(0F, 172.4167F);
- this.xrRichText4.Name = "xrRichText4";
- this.xrRichText4.SerializableRtfString = resources.GetString("xrRichText4.SerializableRtfString");
- this.xrRichText4.SizeF = new System.Drawing.SizeF(431.1666F, 27.58334F);
- //
- // xrLine1
- //
- this.xrLine1.LocationFloat = new DevExpress.Utils.PointFloat(0F, 129.1666F);
- this.xrLine1.Name = "xrLine1";
- this.xrLine1.SizeF = new System.Drawing.SizeF(431.1666F, 10.41667F);
- //
- // xrRichText1
- //
- this.xrRichText1.Font = new System.Drawing.Font("Verdana", 10F);
- this.xrRichText1.LocationFloat = new DevExpress.Utils.PointFloat(0F, 67.62492F);
- this.xrRichText1.Name = "xrRichText1";
- this.xrRichText1.SerializableRtfString = resources.GetString("xrRichText1.SerializableRtfString");
- this.xrRichText1.SizeF = new System.Drawing.SizeF(431.1666F, 61.54167F);
- //
- // xrPictureBox1
- //
- this.xrPictureBox1.Image = ((System.Drawing.Image)(resources.GetObject("xrPictureBox1.Image")));
- this.xrPictureBox1.LocationFloat = new DevExpress.Utils.PointFloat(442.6249F, 0F);
- this.xrPictureBox1.Name = "xrPictureBox1";
- this.xrPictureBox1.SizeF = new System.Drawing.SizeF(276.375F, 139.5833F);
- this.xrPictureBox1.Sizing = DevExpress.XtraPrinting.ImageSizeMode.ZoomImage;
- //
- // xrLabel8
- //
- this.xrLabel8.DataBindings.AddRange(new DevExpress.XtraReports.UI.XRBinding[] {
+ this.ReportHeader.Font = new System.Drawing.Font("Verdana", 10F);
+ this.ReportHeader.HeightF = 200F;
+ this.ReportHeader.Name = "ReportHeader";
+ this.ReportHeader.StylePriority.UseFont = false;
+ //
+ // xrLine1
+ //
+ this.xrLine1.LocationFloat = new DevExpress.Utils.PointFloat(0F, 129.1666F);
+ this.xrLine1.Name = "xrLine1";
+ this.xrLine1.SizeF = new System.Drawing.SizeF(431.1666F, 10.41667F);
+ //
+ // xrRichText1
+ //
+ this.xrRichText1.Font = new System.Drawing.Font("Verdana", 10F);
+ this.xrRichText1.LocationFloat = new DevExpress.Utils.PointFloat(0F, 67.62492F);
+ this.xrRichText1.Name = "xrRichText1";
+ this.xrRichText1.SerializableRtfString = resources.GetString("xrRichText1.SerializableRtfString");
+ this.xrRichText1.SizeF = new System.Drawing.SizeF(431.1666F, 61.54167F);
+ //
+ // xrPictureBox1
+ //
+ this.xrPictureBox1.Image = ((System.Drawing.Image)(resources.GetObject("xrPictureBox1.Image")));
+ this.xrPictureBox1.LocationFloat = new DevExpress.Utils.PointFloat(442.6249F, 0F);
+ this.xrPictureBox1.Name = "xrPictureBox1";
+ this.xrPictureBox1.SizeF = new System.Drawing.SizeF(276.375F, 139.5833F);
+ this.xrPictureBox1.Sizing = DevExpress.XtraPrinting.ImageSizeMode.ZoomImage;
+ //
+ // xrLabel8
+ //
+ this.xrLabel8.DataBindings.AddRange(new DevExpress.XtraReports.UI.XRBinding[] {
new DevExpress.XtraReports.UI.XRBinding("Text", null, "InvoiceDate")});
- this.xrLabel8.Font = new System.Drawing.Font("Arial", 8F);
- this.xrLabel8.LocationFloat = new DevExpress.Utils.PointFloat(572.5418F, 231.5833F);
- this.xrLabel8.Name = "xrLabel8";
- this.xrLabel8.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
- this.xrLabel8.SizeF = new System.Drawing.SizeF(146.4581F, 23F);
- this.xrLabel8.StylePriority.UseFont = false;
- this.xrLabel8.StylePriority.UseTextAlignment = false;
- this.xrLabel8.Text = "xrLabel8";
- this.xrLabel8.TextAlignment = DevExpress.XtraPrinting.TextAlignment.TopLeft;
- //
- // xrTable1
- //
- this.xrTable1.BorderColor = System.Drawing.SystemColors.ControlLight;
- this.xrTable1.LocationFloat = new DevExpress.Utils.PointFloat(0F, 375.3333F);
- this.xrTable1.Name = "xrTable1";
- this.xrTable1.Rows.AddRange(new DevExpress.XtraReports.UI.XRTableRow[] {
+ this.xrLabel8.Font = new System.Drawing.Font("Arial", 8F);
+ this.xrLabel8.LocationFloat = new DevExpress.Utils.PointFloat(572.5418F, 231.5833F);
+ this.xrLabel8.Name = "xrLabel8";
+ this.xrLabel8.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
+ this.xrLabel8.SizeF = new System.Drawing.SizeF(146.4581F, 23F);
+ this.xrLabel8.StylePriority.UseFont = false;
+ this.xrLabel8.StylePriority.UseTextAlignment = false;
+ this.xrLabel8.Text = "xrLabel8";
+ this.xrLabel8.TextAlignment = DevExpress.XtraPrinting.TextAlignment.TopLeft;
+ //
+ // xrTable1
+ //
+ this.xrTable1.BorderColor = System.Drawing.SystemColors.ControlLight;
+ this.xrTable1.LocationFloat = new DevExpress.Utils.PointFloat(0F, 375.3333F);
+ this.xrTable1.Name = "xrTable1";
+ this.xrTable1.Rows.AddRange(new DevExpress.XtraReports.UI.XRTableRow[] {
this.xrTableRow9,
this.xrTableRow10,
this.xrTableRow11,
@@ -188,566 +179,566 @@ namespace BeWo.BrueckeABW.Alt
this.xrTableRow15,
this.xrTableRow18,
this.xrTableRow17});
- this.xrTable1.SizeF = new System.Drawing.SizeF(650F, 251F);
- this.xrTable1.StylePriority.UseBorderColor = false;
- //
- // xrTableRow9
- //
- this.xrTableRow9.Cells.AddRange(new DevExpress.XtraReports.UI.XRTableCell[] {
+ this.xrTable1.SizeF = new System.Drawing.SizeF(650F, 251F);
+ this.xrTable1.StylePriority.UseBorderColor = false;
+ //
+ // xrTableRow9
+ //
+ this.xrTableRow9.Cells.AddRange(new DevExpress.XtraReports.UI.XRTableCell[] {
this.xrTableCell19,
this.xrTableCell6});
- this.xrTableRow9.Name = "xrTableRow9";
- this.xrTableRow9.Weight = 0.085D;
- //
- // xrTableCell19
- //
- this.xrTableCell19.BorderColor = System.Drawing.SystemColors.ControlLight;
- this.xrTableCell19.Borders = ((DevExpress.XtraPrinting.BorderSide)(((DevExpress.XtraPrinting.BorderSide.Left | DevExpress.XtraPrinting.BorderSide.Top)
+ this.xrTableRow9.Name = "xrTableRow9";
+ this.xrTableRow9.Weight = 0.085D;
+ //
+ // xrTableCell19
+ //
+ this.xrTableCell19.BorderColor = System.Drawing.SystemColors.ControlLight;
+ this.xrTableCell19.Borders = ((DevExpress.XtraPrinting.BorderSide)(((DevExpress.XtraPrinting.BorderSide.Left | DevExpress.XtraPrinting.BorderSide.Top)
| DevExpress.XtraPrinting.BorderSide.Right)));
- this.xrTableCell19.Name = "xrTableCell19";
- this.xrTableCell19.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
- this.xrTableCell19.StylePriority.UseBorderColor = false;
- this.xrTableCell19.StylePriority.UseBorders = false;
- this.xrTableCell19.StylePriority.UseFont = false;
- this.xrTableCell19.Text = "Bewilligte Fachleistungsstunden (FLS) gesamt:";
- this.xrTableCell19.Weight = 0.78314100999098568D;
- //
- // xrTableCell6
- //
- this.xrTableCell6.BorderColor = System.Drawing.SystemColors.ControlLight;
- this.xrTableCell6.Borders = ((DevExpress.XtraPrinting.BorderSide)(((DevExpress.XtraPrinting.BorderSide.Left | DevExpress.XtraPrinting.BorderSide.Top)
+ this.xrTableCell19.Name = "xrTableCell19";
+ this.xrTableCell19.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
+ this.xrTableCell19.StylePriority.UseBorderColor = false;
+ this.xrTableCell19.StylePriority.UseBorders = false;
+ this.xrTableCell19.StylePriority.UseFont = false;
+ this.xrTableCell19.Text = "Bewilligte Fachleistungsstunden (FLS) gesamt:";
+ this.xrTableCell19.Weight = 0.78314100999098568D;
+ //
+ // xrTableCell6
+ //
+ this.xrTableCell6.BorderColor = System.Drawing.SystemColors.ControlLight;
+ this.xrTableCell6.Borders = ((DevExpress.XtraPrinting.BorderSide)(((DevExpress.XtraPrinting.BorderSide.Left | DevExpress.XtraPrinting.BorderSide.Top)
| DevExpress.XtraPrinting.BorderSide.Right)));
- this.xrTableCell6.Font = new System.Drawing.Font("Arial", 11F, System.Drawing.FontStyle.Bold);
- this.xrTableCell6.Name = "xrTableCell6";
- this.xrTableCell6.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
- this.xrTableCell6.StylePriority.UseBorderColor = false;
- this.xrTableCell6.StylePriority.UseBorders = false;
- this.xrTableCell6.StylePriority.UseFont = false;
- this.xrTableCell6.StylePriority.UseTextAlignment = false;
- this.xrTableCell6.Text = "[ApprovedFLS]";
- this.xrTableCell6.TextAlignment = DevExpress.XtraPrinting.TextAlignment.TopRight;
- this.xrTableCell6.Weight = 0.21685899000901443D;
- //
- // xrTableRow10
- //
- this.xrTableRow10.Cells.AddRange(new DevExpress.XtraReports.UI.XRTableCell[] {
+ this.xrTableCell6.Font = new System.Drawing.Font("Arial", 11F, System.Drawing.FontStyle.Bold);
+ this.xrTableCell6.Name = "xrTableCell6";
+ this.xrTableCell6.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
+ this.xrTableCell6.StylePriority.UseBorderColor = false;
+ this.xrTableCell6.StylePriority.UseBorders = false;
+ this.xrTableCell6.StylePriority.UseFont = false;
+ this.xrTableCell6.StylePriority.UseTextAlignment = false;
+ this.xrTableCell6.Text = "[ApprovedFLS]";
+ this.xrTableCell6.TextAlignment = DevExpress.XtraPrinting.TextAlignment.TopRight;
+ this.xrTableCell6.Weight = 0.21685899000901443D;
+ //
+ // xrTableRow10
+ //
+ this.xrTableRow10.Cells.AddRange(new DevExpress.XtraReports.UI.XRTableCell[] {
this.xrTableCell20,
this.xrTableCell7});
- this.xrTableRow10.FormattingRules.Add(this.ruleRateFactorNull);
- this.xrTableRow10.Name = "xrTableRow10";
- this.xrTableRow10.Weight = 0.085D;
- //
- // xrTableCell20
- //
- this.xrTableCell20.BorderColor = System.Drawing.SystemColors.ControlLight;
- this.xrTableCell20.Borders = ((DevExpress.XtraPrinting.BorderSide)((DevExpress.XtraPrinting.BorderSide.Left | DevExpress.XtraPrinting.BorderSide.Right)));
- this.xrTableCell20.FormattingRules.Add(this.ruleRateFactorNull);
- this.xrTableCell20.Name = "xrTableCell20";
- this.xrTableCell20.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
- this.xrTableCell20.StylePriority.UseBorderColor = false;
- this.xrTableCell20.StylePriority.UseBorders = false;
- this.xrTableCell20.StylePriority.UseFont = false;
- this.xrTableCell20.Text = "- zzgl. Faktor [RateFactorText2]:";
- this.xrTableCell20.Weight = 0.78314100999098568D;
- //
- // ruleRateFactorNull
- //
- this.ruleRateFactorNull.Condition = "[RateFactorText2] == ?";
- //
- //
- //
- this.ruleRateFactorNull.Formatting.Visible = DevExpress.Utils.DefaultBoolean.False;
- this.ruleRateFactorNull.Name = "ruleRateFactorNull";
- //
- // xrTableCell7
- //
- this.xrTableCell7.BorderColor = System.Drawing.SystemColors.ControlLight;
- this.xrTableCell7.Borders = ((DevExpress.XtraPrinting.BorderSide)((DevExpress.XtraPrinting.BorderSide.Left | DevExpress.XtraPrinting.BorderSide.Right)));
- this.xrTableCell7.Font = new System.Drawing.Font("Arial", 11F, System.Drawing.FontStyle.Bold);
- this.xrTableCell7.FormattingRules.Add(this.ruleRateFactorNull);
- this.xrTableCell7.Name = "xrTableCell7";
- this.xrTableCell7.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
- this.xrTableCell7.StylePriority.UseBorderColor = false;
- this.xrTableCell7.StylePriority.UseBorders = false;
- this.xrTableCell7.StylePriority.UseFont = false;
- this.xrTableCell7.StylePriority.UseTextAlignment = false;
- this.xrTableCell7.Text = "[ApprovedFLSWithFactor]";
- this.xrTableCell7.TextAlignment = DevExpress.XtraPrinting.TextAlignment.TopRight;
- this.xrTableCell7.Weight = 0.21685899000901443D;
- //
- // xrTableRow11
- //
- this.xrTableRow11.Cells.AddRange(new DevExpress.XtraReports.UI.XRTableCell[] {
+ this.xrTableRow10.FormattingRules.Add(this.ruleRateFactorNull);
+ this.xrTableRow10.Name = "xrTableRow10";
+ this.xrTableRow10.Weight = 0.085D;
+ //
+ // xrTableCell20
+ //
+ this.xrTableCell20.BorderColor = System.Drawing.SystemColors.ControlLight;
+ this.xrTableCell20.Borders = ((DevExpress.XtraPrinting.BorderSide)((DevExpress.XtraPrinting.BorderSide.Left | DevExpress.XtraPrinting.BorderSide.Right)));
+ this.xrTableCell20.FormattingRules.Add(this.ruleRateFactorNull);
+ this.xrTableCell20.Name = "xrTableCell20";
+ this.xrTableCell20.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
+ this.xrTableCell20.StylePriority.UseBorderColor = false;
+ this.xrTableCell20.StylePriority.UseBorders = false;
+ this.xrTableCell20.StylePriority.UseFont = false;
+ this.xrTableCell20.Text = "- zzgl. Faktor [RateFactorText2]:";
+ this.xrTableCell20.Weight = 0.78314100999098568D;
+ //
+ // ruleRateFactorNull
+ //
+ this.ruleRateFactorNull.Condition = "[RateFactorText2] == ?";
+ //
+ //
+ //
+ this.ruleRateFactorNull.Formatting.Visible = DevExpress.Utils.DefaultBoolean.False;
+ this.ruleRateFactorNull.Name = "ruleRateFactorNull";
+ //
+ // xrTableCell7
+ //
+ this.xrTableCell7.BorderColor = System.Drawing.SystemColors.ControlLight;
+ this.xrTableCell7.Borders = ((DevExpress.XtraPrinting.BorderSide)((DevExpress.XtraPrinting.BorderSide.Left | DevExpress.XtraPrinting.BorderSide.Right)));
+ this.xrTableCell7.Font = new System.Drawing.Font("Arial", 11F, System.Drawing.FontStyle.Bold);
+ this.xrTableCell7.FormattingRules.Add(this.ruleRateFactorNull);
+ this.xrTableCell7.Name = "xrTableCell7";
+ this.xrTableCell7.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
+ this.xrTableCell7.StylePriority.UseBorderColor = false;
+ this.xrTableCell7.StylePriority.UseBorders = false;
+ this.xrTableCell7.StylePriority.UseFont = false;
+ this.xrTableCell7.StylePriority.UseTextAlignment = false;
+ this.xrTableCell7.Text = "[ApprovedFLSWithFactor]";
+ this.xrTableCell7.TextAlignment = DevExpress.XtraPrinting.TextAlignment.TopRight;
+ this.xrTableCell7.Weight = 0.21685899000901443D;
+ //
+ // xrTableRow11
+ //
+ this.xrTableRow11.Cells.AddRange(new DevExpress.XtraReports.UI.XRTableCell[] {
this.xrTableCell21});
- this.xrTableRow11.Name = "xrTableRow11";
- this.xrTableRow11.Weight = 0.085D;
- //
- // xrTableCell21
- //
- this.xrTableCell21.BorderColor = System.Drawing.SystemColors.ControlLight;
- this.xrTableCell21.Borders = ((DevExpress.XtraPrinting.BorderSide)(((DevExpress.XtraPrinting.BorderSide.Left | DevExpress.XtraPrinting.BorderSide.Top)
+ this.xrTableRow11.Name = "xrTableRow11";
+ this.xrTableRow11.Weight = 0.085D;
+ //
+ // xrTableCell21
+ //
+ this.xrTableCell21.BorderColor = System.Drawing.SystemColors.ControlLight;
+ this.xrTableCell21.Borders = ((DevExpress.XtraPrinting.BorderSide)(((DevExpress.XtraPrinting.BorderSide.Left | DevExpress.XtraPrinting.BorderSide.Top)
| DevExpress.XtraPrinting.BorderSide.Right)));
- this.xrTableCell21.Name = "xrTableCell21";
- this.xrTableCell21.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
- this.xrTableCell21.StylePriority.UseBorderColor = false;
- this.xrTableCell21.StylePriority.UseBorders = false;
- this.xrTableCell21.Weight = 1D;
- //
- // rowErbrachteLeistung
- //
- this.rowErbrachteLeistung.Cells.AddRange(new DevExpress.XtraReports.UI.XRTableCell[] {
+ this.xrTableCell21.Name = "xrTableCell21";
+ this.xrTableCell21.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
+ this.xrTableCell21.StylePriority.UseBorderColor = false;
+ this.xrTableCell21.StylePriority.UseBorders = false;
+ this.xrTableCell21.Weight = 1D;
+ //
+ // rowErbrachteLeistung
+ //
+ this.rowErbrachteLeistung.Cells.AddRange(new DevExpress.XtraReports.UI.XRTableCell[] {
this.xrTableCell22});
- this.rowErbrachteLeistung.Name = "rowErbrachteLeistung";
- this.rowErbrachteLeistung.Weight = 0.085D;
- //
- // xrTableCell22
- //
- this.xrTableCell22.BorderColor = System.Drawing.SystemColors.ControlLight;
- this.xrTableCell22.Borders = ((DevExpress.XtraPrinting.BorderSide)(((DevExpress.XtraPrinting.BorderSide.Left | DevExpress.XtraPrinting.BorderSide.Right)
+ this.rowErbrachteLeistung.Name = "rowErbrachteLeistung";
+ this.rowErbrachteLeistung.Weight = 0.085D;
+ //
+ // xrTableCell22
+ //
+ this.xrTableCell22.BorderColor = System.Drawing.SystemColors.ControlLight;
+ this.xrTableCell22.Borders = ((DevExpress.XtraPrinting.BorderSide)(((DevExpress.XtraPrinting.BorderSide.Left | DevExpress.XtraPrinting.BorderSide.Right)
| DevExpress.XtraPrinting.BorderSide.Bottom)));
- this.xrTableCell22.Name = "xrTableCell22";
- this.xrTableCell22.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
- this.xrTableCell22.StylePriority.UseBorderColor = false;
- this.xrTableCell22.StylePriority.UseBorders = false;
- this.xrTableCell22.StylePriority.UseFont = false;
- this.xrTableCell22.Text = "Erbrachte Leistungen:";
- this.xrTableCell22.Weight = 1D;
- //
- // rowAbrechnung1
- //
- this.rowAbrechnung1.Cells.AddRange(new DevExpress.XtraReports.UI.XRTableCell[] {
+ this.xrTableCell22.Name = "xrTableCell22";
+ this.xrTableCell22.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
+ this.xrTableCell22.StylePriority.UseBorderColor = false;
+ this.xrTableCell22.StylePriority.UseBorders = false;
+ this.xrTableCell22.StylePriority.UseFont = false;
+ this.xrTableCell22.Text = "Erbrachte Leistungen:";
+ this.xrTableCell22.Weight = 1D;
+ //
+ // rowAbrechnung1
+ //
+ this.rowAbrechnung1.Cells.AddRange(new DevExpress.XtraReports.UI.XRTableCell[] {
this.xrTableCell36,
this.xrTableCell34});
- this.rowAbrechnung1.Name = "rowAbrechnung1";
- this.rowAbrechnung1.Weight = 0.085D;
- //
- // xrTableCell36
- //
- this.xrTableCell36.BorderColor = System.Drawing.SystemColors.ControlLight;
- this.xrTableCell36.Borders = ((DevExpress.XtraPrinting.BorderSide)((DevExpress.XtraPrinting.BorderSide.Left | DevExpress.XtraPrinting.BorderSide.Bottom)));
- this.xrTableCell36.CanShrink = true;
- this.xrTableCell36.DataBindings.AddRange(new DevExpress.XtraReports.UI.XRBinding[] {
+ this.rowAbrechnung1.Name = "rowAbrechnung1";
+ this.rowAbrechnung1.Weight = 0.085D;
+ //
+ // xrTableCell36
+ //
+ this.xrTableCell36.BorderColor = System.Drawing.SystemColors.ControlLight;
+ this.xrTableCell36.Borders = ((DevExpress.XtraPrinting.BorderSide)((DevExpress.XtraPrinting.BorderSide.Left | DevExpress.XtraPrinting.BorderSide.Bottom)));
+ this.xrTableCell36.CanShrink = true;
+ this.xrTableCell36.DataBindings.AddRange(new DevExpress.XtraReports.UI.XRBinding[] {
new DevExpress.XtraReports.UI.XRBinding("Text", null, "Abrechnungstext1")});
- this.xrTableCell36.Name = "xrTableCell36";
- this.xrTableCell36.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
- this.xrTableCell36.StylePriority.UseBorderColor = false;
- this.xrTableCell36.StylePriority.UseBorders = false;
- this.xrTableCell36.StylePriority.UseFont = false;
- this.xrTableCell36.StylePriority.UsePadding = false;
- this.xrTableCell36.Weight = 0.78314100999098546D;
- //
- // xrTableCell34
- //
- this.xrTableCell34.BorderColor = System.Drawing.SystemColors.ControlLight;
- this.xrTableCell34.Borders = ((DevExpress.XtraPrinting.BorderSide)(((DevExpress.XtraPrinting.BorderSide.Left | DevExpress.XtraPrinting.BorderSide.Right)
+ this.xrTableCell36.Name = "xrTableCell36";
+ this.xrTableCell36.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
+ this.xrTableCell36.StylePriority.UseBorderColor = false;
+ this.xrTableCell36.StylePriority.UseBorders = false;
+ this.xrTableCell36.StylePriority.UseFont = false;
+ this.xrTableCell36.StylePriority.UsePadding = false;
+ this.xrTableCell36.Weight = 0.78314100999098546D;
+ //
+ // xrTableCell34
+ //
+ this.xrTableCell34.BorderColor = System.Drawing.SystemColors.ControlLight;
+ this.xrTableCell34.Borders = ((DevExpress.XtraPrinting.BorderSide)(((DevExpress.XtraPrinting.BorderSide.Left | DevExpress.XtraPrinting.BorderSide.Right)
| DevExpress.XtraPrinting.BorderSide.Bottom)));
- this.xrTableCell34.CanShrink = true;
- this.xrTableCell34.DataBindings.AddRange(new DevExpress.XtraReports.UI.XRBinding[] {
+ this.xrTableCell34.CanShrink = true;
+ this.xrTableCell34.DataBindings.AddRange(new DevExpress.XtraReports.UI.XRBinding[] {
new DevExpress.XtraReports.UI.XRBinding("Text", null, "Betrag1")});
- this.xrTableCell34.Name = "xrTableCell34";
- this.xrTableCell34.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
- this.xrTableCell34.StylePriority.UseBorderColor = false;
- this.xrTableCell34.StylePriority.UseBorders = false;
- this.xrTableCell34.StylePriority.UseFont = false;
- this.xrTableCell34.StylePriority.UsePadding = false;
- this.xrTableCell34.StylePriority.UseTextAlignment = false;
- this.xrTableCell34.TextAlignment = DevExpress.XtraPrinting.TextAlignment.TopRight;
- this.xrTableCell34.Weight = 0.21685899000901443D;
- //
- // rowAbrechnung2
- //
- this.rowAbrechnung2.Cells.AddRange(new DevExpress.XtraReports.UI.XRTableCell[] {
+ this.xrTableCell34.Name = "xrTableCell34";
+ this.xrTableCell34.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
+ this.xrTableCell34.StylePriority.UseBorderColor = false;
+ this.xrTableCell34.StylePriority.UseBorders = false;
+ this.xrTableCell34.StylePriority.UseFont = false;
+ this.xrTableCell34.StylePriority.UsePadding = false;
+ this.xrTableCell34.StylePriority.UseTextAlignment = false;
+ this.xrTableCell34.TextAlignment = DevExpress.XtraPrinting.TextAlignment.TopRight;
+ this.xrTableCell34.Weight = 0.21685899000901443D;
+ //
+ // rowAbrechnung2
+ //
+ this.rowAbrechnung2.Cells.AddRange(new DevExpress.XtraReports.UI.XRTableCell[] {
this.xrTableCell37,
this.xrTableCell33});
- this.rowAbrechnung2.Name = "rowAbrechnung2";
- this.rowAbrechnung2.Weight = 0.085D;
- //
- // xrTableCell37
- //
- this.xrTableCell37.BorderColor = System.Drawing.SystemColors.ControlLight;
- this.xrTableCell37.Borders = ((DevExpress.XtraPrinting.BorderSide)((DevExpress.XtraPrinting.BorderSide.Left | DevExpress.XtraPrinting.BorderSide.Bottom)));
- this.xrTableCell37.CanShrink = true;
- this.xrTableCell37.DataBindings.AddRange(new DevExpress.XtraReports.UI.XRBinding[] {
+ this.rowAbrechnung2.Name = "rowAbrechnung2";
+ this.rowAbrechnung2.Weight = 0.085D;
+ //
+ // xrTableCell37
+ //
+ this.xrTableCell37.BorderColor = System.Drawing.SystemColors.ControlLight;
+ this.xrTableCell37.Borders = ((DevExpress.XtraPrinting.BorderSide)((DevExpress.XtraPrinting.BorderSide.Left | DevExpress.XtraPrinting.BorderSide.Bottom)));
+ this.xrTableCell37.CanShrink = true;
+ this.xrTableCell37.DataBindings.AddRange(new DevExpress.XtraReports.UI.XRBinding[] {
new DevExpress.XtraReports.UI.XRBinding("Text", null, "Abrechnungstext2")});
- this.xrTableCell37.Name = "xrTableCell37";
- this.xrTableCell37.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
- this.xrTableCell37.StylePriority.UseBorderColor = false;
- this.xrTableCell37.StylePriority.UseBorders = false;
- this.xrTableCell37.StylePriority.UseFont = false;
- this.xrTableCell37.StylePriority.UsePadding = false;
- this.xrTableCell37.Weight = 0.78314100999098546D;
- //
- // xrTableCell33
- //
- this.xrTableCell33.BorderColor = System.Drawing.SystemColors.ControlLight;
- this.xrTableCell33.Borders = ((DevExpress.XtraPrinting.BorderSide)(((DevExpress.XtraPrinting.BorderSide.Left | DevExpress.XtraPrinting.BorderSide.Right)
+ this.xrTableCell37.Name = "xrTableCell37";
+ this.xrTableCell37.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
+ this.xrTableCell37.StylePriority.UseBorderColor = false;
+ this.xrTableCell37.StylePriority.UseBorders = false;
+ this.xrTableCell37.StylePriority.UseFont = false;
+ this.xrTableCell37.StylePriority.UsePadding = false;
+ this.xrTableCell37.Weight = 0.78314100999098546D;
+ //
+ // xrTableCell33
+ //
+ this.xrTableCell33.BorderColor = System.Drawing.SystemColors.ControlLight;
+ this.xrTableCell33.Borders = ((DevExpress.XtraPrinting.BorderSide)(((DevExpress.XtraPrinting.BorderSide.Left | DevExpress.XtraPrinting.BorderSide.Right)
| DevExpress.XtraPrinting.BorderSide.Bottom)));
- this.xrTableCell33.CanShrink = true;
- this.xrTableCell33.DataBindings.AddRange(new DevExpress.XtraReports.UI.XRBinding[] {
+ this.xrTableCell33.CanShrink = true;
+ this.xrTableCell33.DataBindings.AddRange(new DevExpress.XtraReports.UI.XRBinding[] {
new DevExpress.XtraReports.UI.XRBinding("Text", null, "Betrag2")});
- this.xrTableCell33.Name = "xrTableCell33";
- this.xrTableCell33.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
- this.xrTableCell33.StylePriority.UseBorderColor = false;
- this.xrTableCell33.StylePriority.UseBorders = false;
- this.xrTableCell33.StylePriority.UsePadding = false;
- this.xrTableCell33.StylePriority.UseTextAlignment = false;
- this.xrTableCell33.TextAlignment = DevExpress.XtraPrinting.TextAlignment.TopRight;
- this.xrTableCell33.Weight = 0.21685899000901443D;
- //
- // rowAbrechnung3
- //
- this.rowAbrechnung3.Cells.AddRange(new DevExpress.XtraReports.UI.XRTableCell[] {
+ this.xrTableCell33.Name = "xrTableCell33";
+ this.xrTableCell33.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
+ this.xrTableCell33.StylePriority.UseBorderColor = false;
+ this.xrTableCell33.StylePriority.UseBorders = false;
+ this.xrTableCell33.StylePriority.UsePadding = false;
+ this.xrTableCell33.StylePriority.UseTextAlignment = false;
+ this.xrTableCell33.TextAlignment = DevExpress.XtraPrinting.TextAlignment.TopRight;
+ this.xrTableCell33.Weight = 0.21685899000901443D;
+ //
+ // rowAbrechnung3
+ //
+ this.rowAbrechnung3.Cells.AddRange(new DevExpress.XtraReports.UI.XRTableCell[] {
this.xrTableCell38,
this.xrTableCell32});
- this.rowAbrechnung3.Name = "rowAbrechnung3";
- this.rowAbrechnung3.Weight = 0.085D;
- //
- // xrTableCell38
- //
- this.xrTableCell38.BorderColor = System.Drawing.SystemColors.ControlLight;
- this.xrTableCell38.Borders = ((DevExpress.XtraPrinting.BorderSide)((DevExpress.XtraPrinting.BorderSide.Left | DevExpress.XtraPrinting.BorderSide.Bottom)));
- this.xrTableCell38.CanShrink = true;
- this.xrTableCell38.DataBindings.AddRange(new DevExpress.XtraReports.UI.XRBinding[] {
+ this.rowAbrechnung3.Name = "rowAbrechnung3";
+ this.rowAbrechnung3.Weight = 0.085D;
+ //
+ // xrTableCell38
+ //
+ this.xrTableCell38.BorderColor = System.Drawing.SystemColors.ControlLight;
+ this.xrTableCell38.Borders = ((DevExpress.XtraPrinting.BorderSide)((DevExpress.XtraPrinting.BorderSide.Left | DevExpress.XtraPrinting.BorderSide.Bottom)));
+ this.xrTableCell38.CanShrink = true;
+ this.xrTableCell38.DataBindings.AddRange(new DevExpress.XtraReports.UI.XRBinding[] {
new DevExpress.XtraReports.UI.XRBinding("Text", null, "Abrechnungstext3")});
- this.xrTableCell38.Name = "xrTableCell38";
- this.xrTableCell38.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
- this.xrTableCell38.StylePriority.UseBorderColor = false;
- this.xrTableCell38.StylePriority.UseBorders = false;
- this.xrTableCell38.StylePriority.UseFont = false;
- this.xrTableCell38.StylePriority.UsePadding = false;
- this.xrTableCell38.Weight = 0.78314100999098546D;
- //
- // xrTableCell32
- //
- this.xrTableCell32.BorderColor = System.Drawing.SystemColors.ControlLight;
- this.xrTableCell32.Borders = ((DevExpress.XtraPrinting.BorderSide)(((DevExpress.XtraPrinting.BorderSide.Left | DevExpress.XtraPrinting.BorderSide.Right)
+ this.xrTableCell38.Name = "xrTableCell38";
+ this.xrTableCell38.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
+ this.xrTableCell38.StylePriority.UseBorderColor = false;
+ this.xrTableCell38.StylePriority.UseBorders = false;
+ this.xrTableCell38.StylePriority.UseFont = false;
+ this.xrTableCell38.StylePriority.UsePadding = false;
+ this.xrTableCell38.Weight = 0.78314100999098546D;
+ //
+ // xrTableCell32
+ //
+ this.xrTableCell32.BorderColor = System.Drawing.SystemColors.ControlLight;
+ this.xrTableCell32.Borders = ((DevExpress.XtraPrinting.BorderSide)(((DevExpress.XtraPrinting.BorderSide.Left | DevExpress.XtraPrinting.BorderSide.Right)
| DevExpress.XtraPrinting.BorderSide.Bottom)));
- this.xrTableCell32.CanShrink = true;
- this.xrTableCell32.DataBindings.AddRange(new DevExpress.XtraReports.UI.XRBinding[] {
+ this.xrTableCell32.CanShrink = true;
+ this.xrTableCell32.DataBindings.AddRange(new DevExpress.XtraReports.UI.XRBinding[] {
new DevExpress.XtraReports.UI.XRBinding("Text", null, "Betrag3")});
- this.xrTableCell32.Name = "xrTableCell32";
- this.xrTableCell32.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
- this.xrTableCell32.StylePriority.UseBorderColor = false;
- this.xrTableCell32.StylePriority.UseBorders = false;
- this.xrTableCell32.StylePriority.UsePadding = false;
- this.xrTableCell32.StylePriority.UseTextAlignment = false;
- this.xrTableCell32.TextAlignment = DevExpress.XtraPrinting.TextAlignment.TopRight;
- this.xrTableCell32.Weight = 0.21685899000901443D;
- //
- // xrTableRow13
- //
- this.xrTableRow13.Cells.AddRange(new DevExpress.XtraReports.UI.XRTableCell[] {
+ this.xrTableCell32.Name = "xrTableCell32";
+ this.xrTableCell32.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
+ this.xrTableCell32.StylePriority.UseBorderColor = false;
+ this.xrTableCell32.StylePriority.UseBorders = false;
+ this.xrTableCell32.StylePriority.UsePadding = false;
+ this.xrTableCell32.StylePriority.UseTextAlignment = false;
+ this.xrTableCell32.TextAlignment = DevExpress.XtraPrinting.TextAlignment.TopRight;
+ this.xrTableCell32.Weight = 0.21685899000901443D;
+ //
+ // xrTableRow13
+ //
+ this.xrTableRow13.Cells.AddRange(new DevExpress.XtraReports.UI.XRTableCell[] {
this.xrTableCell23});
- this.xrTableRow13.Name = "xrTableRow13";
- this.xrTableRow13.Weight = 0.085D;
- //
- // xrTableCell23
- //
- this.xrTableCell23.BorderColor = System.Drawing.SystemColors.ControlLight;
- this.xrTableCell23.Borders = ((DevExpress.XtraPrinting.BorderSide)(((DevExpress.XtraPrinting.BorderSide.Left | DevExpress.XtraPrinting.BorderSide.Right)
+ this.xrTableRow13.Name = "xrTableRow13";
+ this.xrTableRow13.Weight = 0.085D;
+ //
+ // xrTableCell23
+ //
+ this.xrTableCell23.BorderColor = System.Drawing.SystemColors.ControlLight;
+ this.xrTableCell23.Borders = ((DevExpress.XtraPrinting.BorderSide)(((DevExpress.XtraPrinting.BorderSide.Left | DevExpress.XtraPrinting.BorderSide.Right)
| DevExpress.XtraPrinting.BorderSide.Bottom)));
- this.xrTableCell23.Name = "xrTableCell23";
- this.xrTableCell23.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
- this.xrTableCell23.StylePriority.UseBorderColor = false;
- this.xrTableCell23.StylePriority.UseBorders = false;
- this.xrTableCell23.Weight = 1D;
- //
- // xrTableRow14
- //
- this.xrTableRow14.Cells.AddRange(new DevExpress.XtraReports.UI.XRTableCell[] {
+ this.xrTableCell23.Name = "xrTableCell23";
+ this.xrTableCell23.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
+ this.xrTableCell23.StylePriority.UseBorderColor = false;
+ this.xrTableCell23.StylePriority.UseBorders = false;
+ this.xrTableCell23.Weight = 1D;
+ //
+ // xrTableRow14
+ //
+ this.xrTableRow14.Cells.AddRange(new DevExpress.XtraReports.UI.XRTableCell[] {
this.xrTableCell12,
this.xrTableCell9});
- this.xrTableRow14.Name = "xrTableRow14";
- this.xrTableRow14.Weight = 0.085D;
- //
- // xrTableCell12
- //
- this.xrTableCell12.Borders = ((DevExpress.XtraPrinting.BorderSide)((DevExpress.XtraPrinting.BorderSide.Left | DevExpress.XtraPrinting.BorderSide.Bottom)));
- this.xrTableCell12.Name = "xrTableCell12";
- this.xrTableCell12.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
- this.xrTableCell12.StylePriority.UseBorders = false;
- this.xrTableCell12.StylePriority.UseFont = false;
- this.xrTableCell12.StylePriority.UsePadding = false;
- this.xrTableCell12.Text = "Gesamtforderung:";
- this.xrTableCell12.Weight = 0.78314100999098546D;
- //
- // xrTableCell9
- //
- this.xrTableCell9.Borders = ((DevExpress.XtraPrinting.BorderSide)(((DevExpress.XtraPrinting.BorderSide.Left | DevExpress.XtraPrinting.BorderSide.Right)
+ this.xrTableRow14.Name = "xrTableRow14";
+ this.xrTableRow14.Weight = 0.085D;
+ //
+ // xrTableCell12
+ //
+ this.xrTableCell12.Borders = ((DevExpress.XtraPrinting.BorderSide)((DevExpress.XtraPrinting.BorderSide.Left | DevExpress.XtraPrinting.BorderSide.Bottom)));
+ this.xrTableCell12.Name = "xrTableCell12";
+ this.xrTableCell12.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
+ this.xrTableCell12.StylePriority.UseBorders = false;
+ this.xrTableCell12.StylePriority.UseFont = false;
+ this.xrTableCell12.StylePriority.UsePadding = false;
+ this.xrTableCell12.Text = "Gesamtforderung:";
+ this.xrTableCell12.Weight = 0.78314100999098546D;
+ //
+ // xrTableCell9
+ //
+ this.xrTableCell9.Borders = ((DevExpress.XtraPrinting.BorderSide)(((DevExpress.XtraPrinting.BorderSide.Left | DevExpress.XtraPrinting.BorderSide.Right)
| DevExpress.XtraPrinting.BorderSide.Bottom)));
- this.xrTableCell9.DataBindings.AddRange(new DevExpress.XtraReports.UI.XRBinding[] {
+ this.xrTableCell9.DataBindings.AddRange(new DevExpress.XtraReports.UI.XRBinding[] {
new DevExpress.XtraReports.UI.XRBinding("Text", null, "AmountRecordedFLSString")});
- this.xrTableCell9.Name = "xrTableCell9";
- this.xrTableCell9.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
- this.xrTableCell9.StylePriority.UseBorders = false;
- this.xrTableCell9.StylePriority.UseFont = false;
- this.xrTableCell9.StylePriority.UsePadding = false;
- this.xrTableCell9.StylePriority.UseTextAlignment = false;
- this.xrTableCell9.Text = "[AmountRecordedFLSString]";
- this.xrTableCell9.TextAlignment = DevExpress.XtraPrinting.TextAlignment.TopRight;
- this.xrTableCell9.Weight = 0.21685899000901443D;
- //
- // xrTableRow7
- //
- this.xrTableRow7.Cells.AddRange(new DevExpress.XtraReports.UI.XRTableCell[] {
+ this.xrTableCell9.Name = "xrTableCell9";
+ this.xrTableCell9.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
+ this.xrTableCell9.StylePriority.UseBorders = false;
+ this.xrTableCell9.StylePriority.UseFont = false;
+ this.xrTableCell9.StylePriority.UsePadding = false;
+ this.xrTableCell9.StylePriority.UseTextAlignment = false;
+ this.xrTableCell9.Text = "[AmountRecordedFLSString]";
+ this.xrTableCell9.TextAlignment = DevExpress.XtraPrinting.TextAlignment.TopRight;
+ this.xrTableCell9.Weight = 0.21685899000901443D;
+ //
+ // xrTableRow7
+ //
+ this.xrTableRow7.Cells.AddRange(new DevExpress.XtraReports.UI.XRTableCell[] {
this.xrTableCell3});
- this.xrTableRow7.Name = "xrTableRow7";
- this.xrTableRow7.Weight = 0.085D;
- //
- // xrTableCell3
- //
- this.xrTableCell3.Borders = ((DevExpress.XtraPrinting.BorderSide)(((DevExpress.XtraPrinting.BorderSide.Left | DevExpress.XtraPrinting.BorderSide.Right)
+ this.xrTableRow7.Name = "xrTableRow7";
+ this.xrTableRow7.Weight = 0.085D;
+ //
+ // xrTableCell3
+ //
+ this.xrTableCell3.Borders = ((DevExpress.XtraPrinting.BorderSide)(((DevExpress.XtraPrinting.BorderSide.Left | DevExpress.XtraPrinting.BorderSide.Right)
| DevExpress.XtraPrinting.BorderSide.Bottom)));
- this.xrTableCell3.Name = "xrTableCell3";
- this.xrTableCell3.StylePriority.UseBorders = false;
- this.xrTableCell3.Weight = 1D;
- //
- // xrTableRow12
- //
- this.xrTableRow12.Cells.AddRange(new DevExpress.XtraReports.UI.XRTableCell[] {
+ this.xrTableCell3.Name = "xrTableCell3";
+ this.xrTableCell3.StylePriority.UseBorders = false;
+ this.xrTableCell3.Weight = 1D;
+ //
+ // xrTableRow12
+ //
+ this.xrTableRow12.Cells.AddRange(new DevExpress.XtraReports.UI.XRTableCell[] {
this.xrTableCell24,
this.xrTableCell10});
- this.xrTableRow12.Name = "xrTableRow12";
- this.xrTableRow12.Weight = 0.085D;
- //
- // xrTableCell24
- //
- this.xrTableCell24.BorderColor = System.Drawing.SystemColors.ControlLight;
- this.xrTableCell24.Borders = ((DevExpress.XtraPrinting.BorderSide)((DevExpress.XtraPrinting.BorderSide.Left | DevExpress.XtraPrinting.BorderSide.Bottom)));
- this.xrTableCell24.Name = "xrTableCell24";
- this.xrTableCell24.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
- this.xrTableCell24.StylePriority.UseBorderColor = false;
- this.xrTableCell24.StylePriority.UseBorders = false;
- this.xrTableCell24.StylePriority.UseFont = false;
- this.xrTableCell24.Text = "abzüglich der geleisteten Abschlagszahlung:";
- this.xrTableCell24.Weight = 0.78314100999098568D;
- //
- // xrTableCell10
- //
- this.xrTableCell10.BorderColor = System.Drawing.SystemColors.ControlLight;
- this.xrTableCell10.Borders = ((DevExpress.XtraPrinting.BorderSide)(((DevExpress.XtraPrinting.BorderSide.Left | DevExpress.XtraPrinting.BorderSide.Right)
+ this.xrTableRow12.Name = "xrTableRow12";
+ this.xrTableRow12.Weight = 0.085D;
+ //
+ // xrTableCell24
+ //
+ this.xrTableCell24.BorderColor = System.Drawing.SystemColors.ControlLight;
+ this.xrTableCell24.Borders = ((DevExpress.XtraPrinting.BorderSide)((DevExpress.XtraPrinting.BorderSide.Left | DevExpress.XtraPrinting.BorderSide.Bottom)));
+ this.xrTableCell24.Name = "xrTableCell24";
+ this.xrTableCell24.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
+ this.xrTableCell24.StylePriority.UseBorderColor = false;
+ this.xrTableCell24.StylePriority.UseBorders = false;
+ this.xrTableCell24.StylePriority.UseFont = false;
+ this.xrTableCell24.Text = "abzüglich der geleisteten Abschlagszahlung:";
+ this.xrTableCell24.Weight = 0.78314100999098568D;
+ //
+ // xrTableCell10
+ //
+ this.xrTableCell10.BorderColor = System.Drawing.SystemColors.ControlLight;
+ this.xrTableCell10.Borders = ((DevExpress.XtraPrinting.BorderSide)(((DevExpress.XtraPrinting.BorderSide.Left | DevExpress.XtraPrinting.BorderSide.Right)
| DevExpress.XtraPrinting.BorderSide.Bottom)));
- this.xrTableCell10.Name = "xrTableCell10";
- this.xrTableCell10.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
- this.xrTableCell10.StylePriority.UseBorderColor = false;
- this.xrTableCell10.StylePriority.UseBorders = false;
- this.xrTableCell10.StylePriority.UseFont = false;
- this.xrTableCell10.StylePriority.UseTextAlignment = false;
- this.xrTableCell10.Text = "[AmountAdvancedPayments]";
- this.xrTableCell10.TextAlignment = DevExpress.XtraPrinting.TextAlignment.TopRight;
- this.xrTableCell10.Weight = 0.21685899000901443D;
- //
- // xrTableRow15
- //
- this.xrTableRow15.Cells.AddRange(new DevExpress.XtraReports.UI.XRTableCell[] {
+ this.xrTableCell10.Name = "xrTableCell10";
+ this.xrTableCell10.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
+ this.xrTableCell10.StylePriority.UseBorderColor = false;
+ this.xrTableCell10.StylePriority.UseBorders = false;
+ this.xrTableCell10.StylePriority.UseFont = false;
+ this.xrTableCell10.StylePriority.UseTextAlignment = false;
+ this.xrTableCell10.Text = "[AmountAdvancedPayments]";
+ this.xrTableCell10.TextAlignment = DevExpress.XtraPrinting.TextAlignment.TopRight;
+ this.xrTableCell10.Weight = 0.21685899000901443D;
+ //
+ // xrTableRow15
+ //
+ this.xrTableRow15.Cells.AddRange(new DevExpress.XtraReports.UI.XRTableCell[] {
this.xrTableCell14,
this.xrTableCell15});
- this.xrTableRow15.Name = "xrTableRow15";
- this.xrTableRow15.Weight = 0.085D;
- //
- // xrTableCell14
- //
- this.xrTableCell14.Borders = ((DevExpress.XtraPrinting.BorderSide)((DevExpress.XtraPrinting.BorderSide.Left | DevExpress.XtraPrinting.BorderSide.Bottom)));
- this.xrTableCell14.Name = "xrTableCell14";
- this.xrTableCell14.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
- this.xrTableCell14.StylePriority.UseBorders = false;
- this.xrTableCell14.StylePriority.UsePadding = false;
- this.xrTableCell14.Text = "abzüglich Eigenanteil:";
- this.xrTableCell14.Weight = 0.78314100999098568D;
- //
- // xrTableCell15
- //
- this.xrTableCell15.Borders = ((DevExpress.XtraPrinting.BorderSide)(((DevExpress.XtraPrinting.BorderSide.Left | DevExpress.XtraPrinting.BorderSide.Right)
+ this.xrTableRow15.Name = "xrTableRow15";
+ this.xrTableRow15.Weight = 0.085D;
+ //
+ // xrTableCell14
+ //
+ this.xrTableCell14.Borders = ((DevExpress.XtraPrinting.BorderSide)((DevExpress.XtraPrinting.BorderSide.Left | DevExpress.XtraPrinting.BorderSide.Bottom)));
+ this.xrTableCell14.Name = "xrTableCell14";
+ this.xrTableCell14.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
+ this.xrTableCell14.StylePriority.UseBorders = false;
+ this.xrTableCell14.StylePriority.UsePadding = false;
+ this.xrTableCell14.Text = "abzüglich Eigenanteil:";
+ this.xrTableCell14.Weight = 0.78314100999098568D;
+ //
+ // xrTableCell15
+ //
+ this.xrTableCell15.Borders = ((DevExpress.XtraPrinting.BorderSide)(((DevExpress.XtraPrinting.BorderSide.Left | DevExpress.XtraPrinting.BorderSide.Right)
| DevExpress.XtraPrinting.BorderSide.Bottom)));
- this.xrTableCell15.DataBindings.AddRange(new DevExpress.XtraReports.UI.XRBinding[] {
+ this.xrTableCell15.DataBindings.AddRange(new DevExpress.XtraReports.UI.XRBinding[] {
new DevExpress.XtraReports.UI.XRBinding("Text", null, "Eigenbeteiligung", "{0:c}")});
- this.xrTableCell15.Name = "xrTableCell15";
- this.xrTableCell15.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
- this.xrTableCell15.StylePriority.UseBorders = false;
- this.xrTableCell15.StylePriority.UsePadding = false;
- this.xrTableCell15.StylePriority.UseTextAlignment = false;
- this.xrTableCell15.Text = "xrTableCell15";
- this.xrTableCell15.TextAlignment = DevExpress.XtraPrinting.TextAlignment.TopRight;
- this.xrTableCell15.Weight = 0.21685899000901443D;
- //
- // xrTableRow18
- //
- this.xrTableRow18.Cells.AddRange(new DevExpress.XtraReports.UI.XRTableCell[] {
+ this.xrTableCell15.Name = "xrTableCell15";
+ this.xrTableCell15.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
+ this.xrTableCell15.StylePriority.UseBorders = false;
+ this.xrTableCell15.StylePriority.UsePadding = false;
+ this.xrTableCell15.StylePriority.UseTextAlignment = false;
+ this.xrTableCell15.Text = "xrTableCell15";
+ this.xrTableCell15.TextAlignment = DevExpress.XtraPrinting.TextAlignment.TopRight;
+ this.xrTableCell15.Weight = 0.21685899000901443D;
+ //
+ // xrTableRow18
+ //
+ this.xrTableRow18.Cells.AddRange(new DevExpress.XtraReports.UI.XRTableCell[] {
this.xrTableCell25});
- this.xrTableRow18.Name = "xrTableRow18";
- this.xrTableRow18.Weight = 0.085D;
- //
- // xrTableCell25
- //
- this.xrTableCell25.BorderColor = System.Drawing.SystemColors.ControlLight;
- this.xrTableCell25.Borders = ((DevExpress.XtraPrinting.BorderSide)(((DevExpress.XtraPrinting.BorderSide.Left | DevExpress.XtraPrinting.BorderSide.Right)
+ this.xrTableRow18.Name = "xrTableRow18";
+ this.xrTableRow18.Weight = 0.085D;
+ //
+ // xrTableCell25
+ //
+ this.xrTableCell25.BorderColor = System.Drawing.SystemColors.ControlLight;
+ this.xrTableCell25.Borders = ((DevExpress.XtraPrinting.BorderSide)(((DevExpress.XtraPrinting.BorderSide.Left | DevExpress.XtraPrinting.BorderSide.Right)
| DevExpress.XtraPrinting.BorderSide.Bottom)));
- this.xrTableCell25.Name = "xrTableCell25";
- this.xrTableCell25.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
- this.xrTableCell25.StylePriority.UseBorderColor = false;
- this.xrTableCell25.StylePriority.UseBorders = false;
- this.xrTableCell25.Weight = 1D;
- //
- // xrTableRow17
- //
- this.xrTableRow17.Cells.AddRange(new DevExpress.XtraReports.UI.XRTableCell[] {
+ this.xrTableCell25.Name = "xrTableCell25";
+ this.xrTableCell25.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
+ this.xrTableCell25.StylePriority.UseBorderColor = false;
+ this.xrTableCell25.StylePriority.UseBorders = false;
+ this.xrTableCell25.Weight = 1D;
+ //
+ // xrTableRow17
+ //
+ this.xrTableRow17.Cells.AddRange(new DevExpress.XtraReports.UI.XRTableCell[] {
this.xrTableCell28,
this.xrTableCell17});
- this.xrTableRow17.Name = "xrTableRow17";
- this.xrTableRow17.Weight = 0.15D;
- //
- // xrTableCell28
- //
- this.xrTableCell28.BorderColor = System.Drawing.SystemColors.ControlLight;
- this.xrTableCell28.Borders = ((DevExpress.XtraPrinting.BorderSide)((DevExpress.XtraPrinting.BorderSide.Left | DevExpress.XtraPrinting.BorderSide.Bottom)));
- this.xrTableCell28.Name = "xrTableCell28";
- this.xrTableCell28.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
- this.xrTableCell28.StylePriority.UseBorderColor = false;
- this.xrTableCell28.StylePriority.UseBorders = false;
- this.xrTableCell28.StylePriority.UseFont = false;
- this.xrTableCell28.Text = "Restforderung:";
- this.xrTableCell28.Weight = 0.78314100999098568D;
- //
- // xrTableCell17
- //
- this.xrTableCell17.BorderColor = System.Drawing.SystemColors.ControlLight;
- this.xrTableCell17.Borders = ((DevExpress.XtraPrinting.BorderSide)(((DevExpress.XtraPrinting.BorderSide.Left | DevExpress.XtraPrinting.BorderSide.Right)
+ this.xrTableRow17.Name = "xrTableRow17";
+ this.xrTableRow17.Weight = 0.15D;
+ //
+ // xrTableCell28
+ //
+ this.xrTableCell28.BorderColor = System.Drawing.SystemColors.ControlLight;
+ this.xrTableCell28.Borders = ((DevExpress.XtraPrinting.BorderSide)((DevExpress.XtraPrinting.BorderSide.Left | DevExpress.XtraPrinting.BorderSide.Bottom)));
+ this.xrTableCell28.Name = "xrTableCell28";
+ this.xrTableCell28.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
+ this.xrTableCell28.StylePriority.UseBorderColor = false;
+ this.xrTableCell28.StylePriority.UseBorders = false;
+ this.xrTableCell28.StylePriority.UseFont = false;
+ this.xrTableCell28.Text = "Restforderung:";
+ this.xrTableCell28.Weight = 0.78314100999098568D;
+ //
+ // xrTableCell17
+ //
+ this.xrTableCell17.BorderColor = System.Drawing.SystemColors.ControlLight;
+ this.xrTableCell17.Borders = ((DevExpress.XtraPrinting.BorderSide)(((DevExpress.XtraPrinting.BorderSide.Left | DevExpress.XtraPrinting.BorderSide.Right)
| DevExpress.XtraPrinting.BorderSide.Bottom)));
- this.xrTableCell17.Font = new System.Drawing.Font("Arial", 11F, System.Drawing.FontStyle.Bold);
- this.xrTableCell17.Name = "xrTableCell17";
- this.xrTableCell17.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
- this.xrTableCell17.StylePriority.UseBorderColor = false;
- this.xrTableCell17.StylePriority.UseBorders = false;
- this.xrTableCell17.StylePriority.UseFont = false;
- this.xrTableCell17.StylePriority.UseTextAlignment = false;
- this.xrTableCell17.Text = "[Claim]";
- this.xrTableCell17.TextAlignment = DevExpress.XtraPrinting.TextAlignment.TopRight;
- this.xrTableCell17.Weight = 0.21685899000901443D;
- //
- // xrLabel6
- //
- this.xrLabel6.LocationFloat = new DevExpress.Utils.PointFloat(0F, 286.7916F);
- this.xrLabel6.Multiline = true;
- this.xrLabel6.Name = "xrLabel6";
- this.xrLabel6.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
- this.xrLabel6.SizeF = new System.Drawing.SizeF(718.9999F, 80.54166F);
- this.xrLabel6.StylePriority.UseFont = false;
- this.xrLabel6.Text = "Sehr geehrte Damen und Herren,\r\n\r\nin der Wohnbetreuungsangelegenheit [CustomerNam" +
+ this.xrTableCell17.Font = new System.Drawing.Font("Arial", 11F, System.Drawing.FontStyle.Bold);
+ this.xrTableCell17.Name = "xrTableCell17";
+ this.xrTableCell17.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
+ this.xrTableCell17.StylePriority.UseBorderColor = false;
+ this.xrTableCell17.StylePriority.UseBorders = false;
+ this.xrTableCell17.StylePriority.UseFont = false;
+ this.xrTableCell17.StylePriority.UseTextAlignment = false;
+ this.xrTableCell17.Text = "[Claim]";
+ this.xrTableCell17.TextAlignment = DevExpress.XtraPrinting.TextAlignment.TopRight;
+ this.xrTableCell17.Weight = 0.21685899000901443D;
+ //
+ // xrLabel6
+ //
+ this.xrLabel6.LocationFloat = new DevExpress.Utils.PointFloat(0F, 286.7916F);
+ this.xrLabel6.Multiline = true;
+ this.xrLabel6.Name = "xrLabel6";
+ this.xrLabel6.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
+ this.xrLabel6.SizeF = new System.Drawing.SizeF(718.9999F, 80.54166F);
+ this.xrLabel6.StylePriority.UseFont = false;
+ this.xrLabel6.Text = "Sehr geehrte Damen und Herren,\r\n\r\nin der Wohnbetreuungsangelegenheit [CustomerNam" +
"e] übersende ich die Abrechnungsunterlagen für den Zeitraum [AccountingPeriod]\r\n" +
"\r\n";
- //
- // RecipientPostCodeAndTown
- //
- this.RecipientPostCodeAndTown.CanShrink = true;
- this.RecipientPostCodeAndTown.Font = new System.Drawing.Font("Arial", 10F);
- this.RecipientPostCodeAndTown.LocationFloat = new DevExpress.Utils.PointFloat(0F, 85.00004F);
- this.RecipientPostCodeAndTown.Name = "RecipientPostCodeAndTown";
- this.RecipientPostCodeAndTown.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
- this.RecipientPostCodeAndTown.ProcessNullValues = DevExpress.XtraReports.UI.ValueSuppressType.SuppressAndShrink;
- this.RecipientPostCodeAndTown.SizeF = new System.Drawing.SizeF(292F, 17F);
- this.RecipientPostCodeAndTown.StylePriority.UseFont = false;
- this.RecipientPostCodeAndTown.Text = "[RecipientPostCodeAndTown]";
- //
- // xrLabel_RecipientStreet
- //
- this.xrLabel_RecipientStreet.CanShrink = true;
- this.xrLabel_RecipientStreet.Font = new System.Drawing.Font("Arial", 10F);
- this.xrLabel_RecipientStreet.LocationFloat = new DevExpress.Utils.PointFloat(0F, 68.00003F);
- this.xrLabel_RecipientStreet.Name = "xrLabel_RecipientStreet";
- this.xrLabel_RecipientStreet.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
- this.xrLabel_RecipientStreet.ProcessNullValues = DevExpress.XtraReports.UI.ValueSuppressType.SuppressAndShrink;
- this.xrLabel_RecipientStreet.SizeF = new System.Drawing.SizeF(292F, 17F);
- this.xrLabel_RecipientStreet.StylePriority.UseFont = false;
- this.xrLabel_RecipientStreet.Text = "[RecipientStreet]";
- //
- // xrLabel_RecipientDivision
- //
- this.xrLabel_RecipientDivision.CanShrink = true;
- this.xrLabel_RecipientDivision.Font = new System.Drawing.Font("Arial", 10F);
- this.xrLabel_RecipientDivision.LocationFloat = new DevExpress.Utils.PointFloat(0F, 51.00002F);
- this.xrLabel_RecipientDivision.Name = "xrLabel_RecipientDivision";
- this.xrLabel_RecipientDivision.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
- this.xrLabel_RecipientDivision.ProcessNullValues = DevExpress.XtraReports.UI.ValueSuppressType.SuppressAndShrink;
- this.xrLabel_RecipientDivision.SizeF = new System.Drawing.SizeF(292F, 17F);
- this.xrLabel_RecipientDivision.StylePriority.UseFont = false;
- this.xrLabel_RecipientDivision.Text = "[RecipientDivision]";
- //
- // xrLabel_RecipientContactPerson
- //
- this.xrLabel_RecipientContactPerson.CanShrink = true;
- this.xrLabel_RecipientContactPerson.Font = new System.Drawing.Font("Arial", 10F);
- this.xrLabel_RecipientContactPerson.LocationFloat = new DevExpress.Utils.PointFloat(0F, 34.00002F);
- this.xrLabel_RecipientContactPerson.Name = "xrLabel_RecipientContactPerson";
- this.xrLabel_RecipientContactPerson.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
- this.xrLabel_RecipientContactPerson.ProcessNullValues = DevExpress.XtraReports.UI.ValueSuppressType.SuppressAndShrink;
- this.xrLabel_RecipientContactPerson.SizeF = new System.Drawing.SizeF(292F, 17F);
- this.xrLabel_RecipientContactPerson.StylePriority.UseFont = false;
- this.xrLabel_RecipientContactPerson.Text = "[RecipientContactPerson]";
- //
- // xrLabel1
- //
- this.xrLabel1.CanShrink = true;
- this.xrLabel1.Font = new System.Drawing.Font("Arial", 10F);
- this.xrLabel1.LocationFloat = new DevExpress.Utils.PointFloat(0F, 17.00001F);
- this.xrLabel1.Name = "xrLabel1";
- this.xrLabel1.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
- this.xrLabel1.ProcessNullValues = DevExpress.XtraReports.UI.ValueSuppressType.SuppressAndShrink;
- this.xrLabel1.SizeF = new System.Drawing.SizeF(292F, 17F);
- this.xrLabel1.StylePriority.UseFont = false;
- this.xrLabel1.Text = "[RecipientOrganisation]";
- //
- // ReportFooter
- //
- this.ReportFooter.Controls.AddRange(new DevExpress.XtraReports.UI.XRControl[] {
+ //
+ // RecipientPostCodeAndTown
+ //
+ this.RecipientPostCodeAndTown.CanShrink = true;
+ this.RecipientPostCodeAndTown.Font = new System.Drawing.Font("Arial", 10F);
+ this.RecipientPostCodeAndTown.LocationFloat = new DevExpress.Utils.PointFloat(0F, 85.00004F);
+ this.RecipientPostCodeAndTown.Name = "RecipientPostCodeAndTown";
+ this.RecipientPostCodeAndTown.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
+ this.RecipientPostCodeAndTown.ProcessNullValues = DevExpress.XtraReports.UI.ValueSuppressType.SuppressAndShrink;
+ this.RecipientPostCodeAndTown.SizeF = new System.Drawing.SizeF(292F, 17F);
+ this.RecipientPostCodeAndTown.StylePriority.UseFont = false;
+ this.RecipientPostCodeAndTown.Text = "[RecipientPostCodeAndTown]";
+ //
+ // xrLabel_RecipientStreet
+ //
+ this.xrLabel_RecipientStreet.CanShrink = true;
+ this.xrLabel_RecipientStreet.Font = new System.Drawing.Font("Arial", 10F);
+ this.xrLabel_RecipientStreet.LocationFloat = new DevExpress.Utils.PointFloat(0F, 68.00003F);
+ this.xrLabel_RecipientStreet.Name = "xrLabel_RecipientStreet";
+ this.xrLabel_RecipientStreet.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
+ this.xrLabel_RecipientStreet.ProcessNullValues = DevExpress.XtraReports.UI.ValueSuppressType.SuppressAndShrink;
+ this.xrLabel_RecipientStreet.SizeF = new System.Drawing.SizeF(292F, 17F);
+ this.xrLabel_RecipientStreet.StylePriority.UseFont = false;
+ this.xrLabel_RecipientStreet.Text = "[RecipientStreet]";
+ //
+ // xrLabel_RecipientDivision
+ //
+ this.xrLabel_RecipientDivision.CanShrink = true;
+ this.xrLabel_RecipientDivision.Font = new System.Drawing.Font("Arial", 10F);
+ this.xrLabel_RecipientDivision.LocationFloat = new DevExpress.Utils.PointFloat(0F, 51.00002F);
+ this.xrLabel_RecipientDivision.Name = "xrLabel_RecipientDivision";
+ this.xrLabel_RecipientDivision.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
+ this.xrLabel_RecipientDivision.ProcessNullValues = DevExpress.XtraReports.UI.ValueSuppressType.SuppressAndShrink;
+ this.xrLabel_RecipientDivision.SizeF = new System.Drawing.SizeF(292F, 17F);
+ this.xrLabel_RecipientDivision.StylePriority.UseFont = false;
+ this.xrLabel_RecipientDivision.Text = "[RecipientDivision]";
+ //
+ // xrLabel_RecipientContactPerson
+ //
+ this.xrLabel_RecipientContactPerson.CanShrink = true;
+ this.xrLabel_RecipientContactPerson.Font = new System.Drawing.Font("Arial", 10F);
+ this.xrLabel_RecipientContactPerson.LocationFloat = new DevExpress.Utils.PointFloat(0F, 34.00002F);
+ this.xrLabel_RecipientContactPerson.Name = "xrLabel_RecipientContactPerson";
+ this.xrLabel_RecipientContactPerson.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
+ this.xrLabel_RecipientContactPerson.ProcessNullValues = DevExpress.XtraReports.UI.ValueSuppressType.SuppressAndShrink;
+ this.xrLabel_RecipientContactPerson.SizeF = new System.Drawing.SizeF(292F, 17F);
+ this.xrLabel_RecipientContactPerson.StylePriority.UseFont = false;
+ this.xrLabel_RecipientContactPerson.Text = "[RecipientContactPerson]";
+ //
+ // xrLabel1
+ //
+ this.xrLabel1.CanShrink = true;
+ this.xrLabel1.Font = new System.Drawing.Font("Arial", 10F);
+ this.xrLabel1.LocationFloat = new DevExpress.Utils.PointFloat(0F, 17.00001F);
+ this.xrLabel1.Name = "xrLabel1";
+ this.xrLabel1.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
+ this.xrLabel1.ProcessNullValues = DevExpress.XtraReports.UI.ValueSuppressType.SuppressAndShrink;
+ this.xrLabel1.SizeF = new System.Drawing.SizeF(292F, 17F);
+ this.xrLabel1.StylePriority.UseFont = false;
+ this.xrLabel1.Text = "[RecipientOrganisation]";
+ //
+ // ReportFooter
+ //
+ this.ReportFooter.Controls.AddRange(new DevExpress.XtraReports.UI.XRControl[] {
this.xrLabel10});
- this.ReportFooter.Font = new System.Drawing.Font("Arial", 11F);
- this.ReportFooter.HeightF = 180F;
- this.ReportFooter.KeepTogether = true;
- this.ReportFooter.Name = "ReportFooter";
- this.ReportFooter.StylePriority.UseFont = false;
- //
- // xrLabel10
- //
- this.xrLabel10.LocationFloat = new DevExpress.Utils.PointFloat(0F, 9.999974F);
- this.xrLabel10.Multiline = true;
- this.xrLabel10.Name = "xrLabel10";
- this.xrLabel10.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
- this.xrLabel10.SizeF = new System.Drawing.SizeF(407.2917F, 170F);
- this.xrLabel10.StylePriority.UseFont = false;
- this.xrLabel10.Text = "Mit freundlichen Grüßen\r\n\r\n\r\nBRÜCKE\r\nAmbulant Betreutes Wohnen\r\n\r\n\r\n\r\ni. A. Geral" +
+ this.ReportFooter.Font = new System.Drawing.Font("Arial", 11F);
+ this.ReportFooter.HeightF = 180F;
+ this.ReportFooter.KeepTogether = true;
+ this.ReportFooter.Name = "ReportFooter";
+ this.ReportFooter.StylePriority.UseFont = false;
+ //
+ // xrLabel10
+ //
+ this.xrLabel10.LocationFloat = new DevExpress.Utils.PointFloat(0F, 9.999974F);
+ this.xrLabel10.Multiline = true;
+ this.xrLabel10.Name = "xrLabel10";
+ this.xrLabel10.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
+ this.xrLabel10.SizeF = new System.Drawing.SizeF(407.2917F, 170F);
+ this.xrLabel10.StylePriority.UseFont = false;
+ this.xrLabel10.Text = "Mit freundlichen Grüßen\r\n\r\n\r\nBRÜCKE\r\nAmbulant Betreutes Wohnen\r\n\r\n\r\n\r\ni. A. Geral" +
"d Peters";
- //
- // topMarginBand1
- //
- this.topMarginBand1.Font = new System.Drawing.Font("Arial", 10F);
- this.topMarginBand1.HeightF = 0F;
- this.topMarginBand1.Name = "topMarginBand1";
- this.topMarginBand1.StylePriority.UseFont = false;
- //
- // bottomMarginBand1
- //
- this.bottomMarginBand1.Controls.AddRange(new DevExpress.XtraReports.UI.XRControl[] {
+ //
+ // topMarginBand1
+ //
+ this.topMarginBand1.Font = new System.Drawing.Font("Arial", 10F);
+ this.topMarginBand1.HeightF = 0F;
+ this.topMarginBand1.Name = "topMarginBand1";
+ this.topMarginBand1.StylePriority.UseFont = false;
+ //
+ // bottomMarginBand1
+ //
+ this.bottomMarginBand1.Controls.AddRange(new DevExpress.XtraReports.UI.XRControl[] {
this.xrRichText3,
this.xrLine2});
- this.bottomMarginBand1.Name = "bottomMarginBand1";
- //
- // xrRichText3
- //
- this.xrRichText3.Font = new System.Drawing.Font("Verdana", 10F);
- this.xrRichText3.LocationFloat = new DevExpress.Utils.PointFloat(0F, 10.41667F);
- this.xrRichText3.Name = "xrRichText3";
- this.xrRichText3.SerializableRtfString = resources.GetString("xrRichText3.SerializableRtfString");
- this.xrRichText3.SizeF = new System.Drawing.SizeF(689.4999F, 61.54167F);
- //
- // xrLine2
- //
- this.xrLine2.LocationFloat = new DevExpress.Utils.PointFloat(0F, 0F);
- this.xrLine2.Name = "xrLine2";
- this.xrLine2.SizeF = new System.Drawing.SizeF(689.4999F, 10.41667F);
- //
- // GroupHeader1
- //
- this.GroupHeader1.Controls.AddRange(new DevExpress.XtraReports.UI.XRControl[] {
+ this.bottomMarginBand1.Name = "bottomMarginBand1";
+ //
+ // xrRichText3
+ //
+ this.xrRichText3.Font = new System.Drawing.Font("Verdana", 10F);
+ this.xrRichText3.LocationFloat = new DevExpress.Utils.PointFloat(0F, 10.41667F);
+ this.xrRichText3.Name = "xrRichText3";
+ this.xrRichText3.SerializableRtfString = resources.GetString("xrRichText3.SerializableRtfString");
+ this.xrRichText3.SizeF = new System.Drawing.SizeF(689.4999F, 61.54167F);
+ //
+ // xrLine2
+ //
+ this.xrLine2.LocationFloat = new DevExpress.Utils.PointFloat(0F, 0F);
+ this.xrLine2.Name = "xrLine2";
+ this.xrLine2.SizeF = new System.Drawing.SizeF(689.4999F, 10.41667F);
+ //
+ // GroupHeader1
+ //
+ this.GroupHeader1.Controls.AddRange(new DevExpress.XtraReports.UI.XRControl[] {
this.xrLabel5,
this.xrLabel9,
this.xrLabel7,
@@ -763,115 +754,124 @@ namespace BeWo.BrueckeABW.Alt
this.xrLabel6,
this.xrTable1,
this.xrLabel8});
- this.GroupHeader1.Font = new System.Drawing.Font("Arial", 11F);
- this.GroupHeader1.HeightF = 644.0416F;
- this.GroupHeader1.Name = "GroupHeader1";
- this.GroupHeader1.StylePriority.UseFont = false;
- //
- // xrLabel5
- //
- this.xrLabel5.CanShrink = true;
- this.xrLabel5.DataBindings.AddRange(new DevExpress.XtraReports.UI.XRBinding[] {
+ this.GroupHeader1.Font = new System.Drawing.Font("Arial", 11F);
+ this.GroupHeader1.HeightF = 644.0416F;
+ this.GroupHeader1.Name = "GroupHeader1";
+ this.GroupHeader1.StylePriority.UseFont = false;
+ //
+ // xrLabel5
+ //
+ this.xrLabel5.CanShrink = true;
+ this.xrLabel5.DataBindings.AddRange(new DevExpress.XtraReports.UI.XRBinding[] {
new DevExpress.XtraReports.UI.XRBinding("Text", null, "RecipientFax", "Per Fax: {0}")});
- this.xrLabel5.Font = new System.Drawing.Font("Arial", 10F);
- this.xrLabel5.LocationFloat = new DevExpress.Utils.PointFloat(0F, 0F);
- 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(292F, 17F);
- this.xrLabel5.StylePriority.UseFont = false;
- this.xrLabel5.Text = "xrLabel5";
- //
- // xrLabel9
- //
- this.xrLabel9.DataBindings.AddRange(new DevExpress.XtraReports.UI.XRBinding[] {
+ this.xrLabel5.Font = new System.Drawing.Font("Arial", 10F);
+ this.xrLabel5.LocationFloat = new DevExpress.Utils.PointFloat(0F, 0F);
+ 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(292F, 17F);
+ this.xrLabel5.StylePriority.UseFont = false;
+ this.xrLabel5.Text = "xrLabel5";
+ //
+ // xrLabel9
+ //
+ this.xrLabel9.DataBindings.AddRange(new DevExpress.XtraReports.UI.XRBinding[] {
new DevExpress.XtraReports.UI.XRBinding("Text", null, "CustomerReferenceNumber")});
- this.xrLabel9.Font = new System.Drawing.Font("Arial", 10F, System.Drawing.FontStyle.Bold);
- this.xrLabel9.LocationFloat = new DevExpress.Utils.PointFloat(0F, 231.5833F);
- this.xrLabel9.Name = "xrLabel9";
- this.xrLabel9.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
- this.xrLabel9.SizeF = new System.Drawing.SizeF(317F, 17F);
- this.xrLabel9.StylePriority.UseFont = false;
- //
- // xrLabel7
- //
- this.xrLabel7.Font = new System.Drawing.Font("Arial", 6F);
- this.xrLabel7.LocationFloat = new DevExpress.Utils.PointFloat(572.5418F, 214.5833F);
- this.xrLabel7.Name = "xrLabel7";
- this.xrLabel7.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
- this.xrLabel7.SizeF = new System.Drawing.SizeF(136.4582F, 17F);
- this.xrLabel7.StylePriority.UseFont = false;
- this.xrLabel7.Text = "Datum";
- //
- // xrLabel4
- //
- this.xrLabel4.Font = new System.Drawing.Font("Arial", 6F);
- this.xrLabel4.LocationFloat = new DevExpress.Utils.PointFloat(416.5833F, 214.5833F);
- this.xrLabel4.Name = "xrLabel4";
- this.xrLabel4.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
- this.xrLabel4.SizeF = new System.Drawing.SizeF(155.9585F, 17F);
- this.xrLabel4.StylePriority.UseFont = false;
- this.xrLabel4.Text = "Telefon, Name";
- //
- // xrLabel3
- //
- this.xrLabel3.Font = new System.Drawing.Font("Arial", 6F);
- this.xrLabel3.LocationFloat = new DevExpress.Utils.PointFloat(208.3333F, 214.5833F);
- this.xrLabel3.Name = "xrLabel3";
- this.xrLabel3.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
- this.xrLabel3.SizeF = new System.Drawing.SizeF(176.375F, 17F);
- this.xrLabel3.StylePriority.UseFont = false;
- this.xrLabel3.Text = "Unser Zeichen, unsere Nachricht vom";
- //
- // xrLabel2
- //
- this.xrLabel2.Font = new System.Drawing.Font("Arial", 6F);
- this.xrLabel2.LocationFloat = new DevExpress.Utils.PointFloat(0F, 214.5833F);
- this.xrLabel2.Name = "xrLabel2";
- this.xrLabel2.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
- this.xrLabel2.SizeF = new System.Drawing.SizeF(133.6666F, 17F);
- this.xrLabel2.StylePriority.UseFont = false;
- this.xrLabel2.Text = "Ihr Zeichen, Ihre Nachricht vom";
- //
- // xrRichText2
- //
- this.xrRichText2.Font = new System.Drawing.Font("Verdana", 10F);
- this.xrRichText2.LocationFloat = new DevExpress.Utils.PointFloat(504F, 0F);
- this.xrRichText2.Name = "xrRichText2";
- this.xrRichText2.SerializableRtfString = resources.GetString("xrRichText2.SerializableRtfString");
- this.xrRichText2.SizeF = new System.Drawing.SizeF(209.9583F, 187.5833F);
- //
- // bindingSource1
- //
- this.bindingSource1.DataSource = typeof(BeWo.Report.ReportObjects.SettlementRO);
- //
- // Spitzabrechnung
- //
- this.Bands.AddRange(new DevExpress.XtraReports.UI.Band[] {
+ this.xrLabel9.Font = new System.Drawing.Font("Arial", 10F, System.Drawing.FontStyle.Bold);
+ this.xrLabel9.LocationFloat = new DevExpress.Utils.PointFloat(0F, 231.5833F);
+ this.xrLabel9.Name = "xrLabel9";
+ this.xrLabel9.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
+ this.xrLabel9.SizeF = new System.Drawing.SizeF(317F, 17F);
+ this.xrLabel9.StylePriority.UseFont = false;
+ //
+ // xrLabel7
+ //
+ this.xrLabel7.Font = new System.Drawing.Font("Arial", 6F);
+ this.xrLabel7.LocationFloat = new DevExpress.Utils.PointFloat(572.5418F, 214.5833F);
+ this.xrLabel7.Name = "xrLabel7";
+ this.xrLabel7.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
+ this.xrLabel7.SizeF = new System.Drawing.SizeF(136.4582F, 17F);
+ this.xrLabel7.StylePriority.UseFont = false;
+ this.xrLabel7.Text = "Datum";
+ //
+ // xrLabel4
+ //
+ this.xrLabel4.Font = new System.Drawing.Font("Arial", 6F);
+ this.xrLabel4.LocationFloat = new DevExpress.Utils.PointFloat(416.5833F, 214.5833F);
+ this.xrLabel4.Name = "xrLabel4";
+ this.xrLabel4.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
+ this.xrLabel4.SizeF = new System.Drawing.SizeF(155.9585F, 17F);
+ this.xrLabel4.StylePriority.UseFont = false;
+ this.xrLabel4.Text = "Telefon, Name";
+ //
+ // xrLabel3
+ //
+ this.xrLabel3.Font = new System.Drawing.Font("Arial", 6F);
+ this.xrLabel3.LocationFloat = new DevExpress.Utils.PointFloat(208.3333F, 214.5833F);
+ this.xrLabel3.Name = "xrLabel3";
+ this.xrLabel3.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
+ this.xrLabel3.SizeF = new System.Drawing.SizeF(176.375F, 17F);
+ this.xrLabel3.StylePriority.UseFont = false;
+ this.xrLabel3.Text = "Unser Zeichen, unsere Nachricht vom";
+ //
+ // xrLabel2
+ //
+ this.xrLabel2.Font = new System.Drawing.Font("Arial", 6F);
+ this.xrLabel2.LocationFloat = new DevExpress.Utils.PointFloat(0F, 214.5833F);
+ this.xrLabel2.Name = "xrLabel2";
+ this.xrLabel2.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
+ this.xrLabel2.SizeF = new System.Drawing.SizeF(133.6666F, 17F);
+ this.xrLabel2.StylePriority.UseFont = false;
+ this.xrLabel2.Text = "Ihr Zeichen, Ihre Nachricht vom";
+ //
+ // xrRichText2
+ //
+ this.xrRichText2.Font = new System.Drawing.Font("Verdana", 10F);
+ this.xrRichText2.LocationFloat = new DevExpress.Utils.PointFloat(504F, 0F);
+ this.xrRichText2.Name = "xrRichText2";
+ this.xrRichText2.SerializableRtfString = resources.GetString("xrRichText2.SerializableRtfString");
+ this.xrRichText2.SizeF = new System.Drawing.SizeF(209.9583F, 187.5833F);
+ //
+ // bindingSource1
+ //
+ this.bindingSource1.DataSource = typeof(BeWo.Report.ReportObjects.SettlementRO);
+ //
+ // xrLabel11
+ //
+ this.xrLabel11.Font = new System.Drawing.Font("Arial", 7F, System.Drawing.FontStyle.Underline);
+ this.xrLabel11.LocationFloat = new DevExpress.Utils.PointFloat(0F, 173.4535F);
+ this.xrLabel11.Name = "xrLabel11";
+ this.xrLabel11.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
+ this.xrLabel11.SizeF = new System.Drawing.SizeF(359.7083F, 26.54654F);
+ this.xrLabel11.StylePriority.UseFont = false;
+ this.xrLabel11.Text = "Brücke - ABW · Wilhelmstraße 37 · 52249 Eschweiler";
+ //
+ // Spitzabrechnung
+ //
+ this.Bands.AddRange(new DevExpress.XtraReports.UI.Band[] {
this.Detail,
this.ReportHeader,
this.ReportFooter,
this.topMarginBand1,
this.bottomMarginBand1,
this.GroupHeader1});
- this.DataSource = this.bindingSource1;
- this.ExportOptions.PrintPreview.DefaultFileName = "Spitzabrechnung";
- this.FormattingRuleSheet.AddRange(new DevExpress.XtraReports.UI.FormattingRule[] {
+ 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(85, 10, 0, 100);
- this.PageHeight = 1169;
- this.PageWidth = 827;
- this.PaperKind = System.Drawing.Printing.PaperKind.A4;
- this.Version = "13.1";
- this.Watermark.Image = ((System.Drawing.Image)(resources.GetObject("Spitzabrechnung.Watermark.Image")));
- this.Watermark.ImageViewMode = DevExpress.XtraPrinting.Drawing.ImageViewMode.Zoom;
- ((System.ComponentModel.ISupportInitialize)(this.xrRichText4)).EndInit();
- ((System.ComponentModel.ISupportInitialize)(this.xrRichText1)).EndInit();
- ((System.ComponentModel.ISupportInitialize)(this.xrTable1)).EndInit();
- ((System.ComponentModel.ISupportInitialize)(this.xrRichText3)).EndInit();
- ((System.ComponentModel.ISupportInitialize)(this.xrRichText2)).EndInit();
- ((System.ComponentModel.ISupportInitialize)(this.bindingSource1)).EndInit();
- ((System.ComponentModel.ISupportInitialize)(this)).EndInit();
+ this.Margins = new System.Drawing.Printing.Margins(85, 10, 0, 100);
+ this.PageHeight = 1169;
+ this.PageWidth = 827;
+ this.PaperKind = System.Drawing.Printing.PaperKind.A4;
+ this.Version = "13.2";
+ this.Watermark.Image = ((System.Drawing.Image)(resources.GetObject("Spitzabrechnung.Watermark.Image")));
+ this.Watermark.ImageViewMode = DevExpress.XtraPrinting.Drawing.ImageViewMode.Zoom;
+ ((System.ComponentModel.ISupportInitialize)(this.xrRichText1)).EndInit();
+ ((System.ComponentModel.ISupportInitialize)(this.xrTable1)).EndInit();
+ ((System.ComponentModel.ISupportInitialize)(this.xrRichText3)).EndInit();
+ ((System.ComponentModel.ISupportInitialize)(this.xrRichText2)).EndInit();
+ ((System.ComponentModel.ISupportInitialize)(this.bindingSource1)).EndInit();
+ ((System.ComponentModel.ISupportInitialize)(this)).EndInit();
}
@@ -943,6 +943,6 @@ namespace BeWo.BrueckeABW.Alt
private DevExpress.XtraReports.UI.XRLabel xrLabel2;
private DevExpress.XtraReports.UI.XRLabel xrLabel9;
private DevExpress.XtraReports.UI.XRLabel xrLabel5;
- private DevExpress.XtraReports.UI.XRRichText xrRichText4;
+ private DevExpress.XtraReports.UI.XRLabel xrLabel11;
}
}
diff --git a/ReportImp/BrueckeABW/SettlementReport.resx b/ReportImp/BrueckeABW/SettlementReport.resx
index 2125f4b83..419c0e275 100644
--- a/ReportImp/BrueckeABW/SettlementReport.resx
+++ b/ReportImp/BrueckeABW/SettlementReport.resx
@@ -117,9 +117,6 @@
System.Resources.ResXResourceWriter, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
-
- ewBcAHIAdABmADEAXABmAGIAaQBkAGkAcwBcAGEAbgBzAGkAXABhAG4AcwBpAGMAcABnADEAMgA1ADIAXABkAGUAZgBmADAAewBcAGYAbwBuAHQAdABiAGwAewBcAGYAMABcAGYAcwB3AGkAcwBzAFwAZgBwAHIAcQAyAFwAZgBjAGgAYQByAHMAZQB0ADAAIABBAHIAaQBhAGwAOwB9AHsAXABmADEAXABmAG4AaQBsACAAVABpAG0AZQBzACAATgBlAHcAIABSAG8AbQBhAG4AOwB9AH0ADQAKAFwAdgBpAGUAdwBrAGkAbgBkADQAXAB1AGMAMQBcAHAAYQByAGQAXABsAHQAcgBwAGEAcgBcAGwAYQBuAGcAMQAwADIANABcAHUAbABcAGYAMABcAGYAcwAxADQAIABCAHIAXAAnAGYAYwBjAGsAZQAgAC0AIABBAEIAVwAgAFwAJwBiADcAIABCAGkAcwBtAGEAcgBjAGsAcwB0AHIALgAgADEAOAAgAFwAJwBiADcAIAA1ADIAMgA0ADkAIABFAHMAYwBoAHcAZQBpAGwAZQByAFwAbABhAG4AZwAxADAAMwAxAFwAdQBsAG4AbwBuAGUAXABmADEAXABmAHMAMgA0AFwAcABhAHIADQAKAH0ADQAKAA==
-
ewBcAHIAdABmADEAXABhAG4AcwBpAFwAYQBuAHMAaQBjAHAAZwAxADIANQAyAFwAZABlAGYAZgAwAHsAXABmAG8AbgB0AHQAYgBsAHsAXABmADAAXABmAHMAdwBpAHMAcwBcAGYAcAByAHEAMgBcAGYAYwBoAGEAcgBzAGUAdAAwACAAVAByAGUAYgB1AGMAaABlAHQAIABNAFMAOwB9AHsAXABmADEAXABmAG4AaQBsACAAVABpAG0AZQBzACAATgBlAHcAIABSAG8AbQBhAG4AOwB9AH0ADQAKAFwAdgBpAGUAdwBrAGkAbgBkADQAXAB1AGMAMQBcAHAAYQByAGQAXABxAGoAXAB0AHEAYwBcAHQAeAA0ADUAMwA2AFwAdABxAHIAXAB0AHgAOQAwADcAMgBcAGwAYQBuAGcAMQAwADMAMQBcAGIAXABmADAAXABmAHMAMgAyACAASQBuAGQAaQB2AGkAZAB1AGUAbABsAGUAIABBAGwAbAB0AGEAZwBzAGgAaQBsAGYAZQBuACAAZgBcACcAZgBjAHIAIABNAGUAbgBzAGMAaABlAG4AIABtAGkAdAAgAFwAcABhAHIADQAKAFwAcABhAHIAZAAgAGsAXAAnAGYANgByAHAAZQByAGwAaQBjAGgAZQByACwAIABnAGUAaQBzAHQAaQBnAGUAcgAgAHUAbgBkAC8AbwBkAGUAcgAgAHMAZQBlAGwAaQBzAGMAaABlAHIAXABwAGEAcgANAAoAQgBlAGgAaQBuAGQAZQByAHUAbgBnAFwAYgAwAFwAZgAxAFwAZgBzADIANABcAHAAYQByAA0ACgB9AA0ACgA=
@@ -3102,10 +3099,10 @@
- ewBcAHIAdABmADEAXABmAGIAaQBkAGkAcwBcAGEAbgBzAGkAXABhAG4AcwBpAGMAcABnADEAMgA1ADIAXABkAGUAZgBmADAAewBcAGYAbwBuAHQAdABiAGwAewBcAGYAMABcAGYAcwB3AGkAcwBzAFwAZgBwAHIAcQAyAFwAZgBjAGgAYQByAHMAZQB0ADAAIABUAHIAZQBiAHUAYwBoAGUAdAAgAE0AUwA7AH0AewBcAGYAMQBcAGYAbgBpAGwAIABUAGkAbQBlAHMAIABOAGUAdwAgAFIAbwBtAGEAbgA7AH0AfQANAAoAXAB2AGkAZQB3AGsAaQBuAGQANABcAHUAYwAxAFwAcABhAHIAZABcAGwAdAByAHAAYQByAFwAcQBjAFwAdABxAGMAXAB0AHgANAA1ADMANgBcAHQAcQByAFwAdAB4ADkAMAA3ADIAXABsAGEAbgBnADEAMAAzADEAXABmADAAXABmAHMAMQA2ACAAQgByAFwAJwBmAGMAYwBrAGUAIAAtACAAQQBtAGIAdQBsAGEAbgB0ACAAQgBlAHQAcgBlAHUAdABlAHMAIABXAG8AaABuAGUAbgAgAFwAJwBiADcAIABCAGkAcwBtAGEAcgBjAGsAcwB0AHIALgAgADEAOAAgAFwAJwBiADcAIAA1ADIAMgA0ADkAIABFAHMAYwBoAHcAZQBpAGwAZQByACAAXAAnAGIANwAgAEQAZQB1AHQAcwBjAGgAbABhAG4AZAAgAFwAJwBiADcAIABEAGkAcABsAC4AIABTAG8AegAuACAAUABcACcAZQA0AGQALgAgAE0AYQByAGkAYQAgAEgAYQB1AHAAdABzAC0AUABlAHQAZQByAHMAXABsAGkAbgBlACAAVQBTAHQALQBJAGQATgByAC4AOgAgAEQARQAgADIAMwA2ADcAMAA4ADcANgA3ACAAXAAnAGIANwAgAEIAYQBuAGsAdgBlAHIAYgBpAG4AZAB1AG4AZwA6ACAASwBvAG4AdABvAG4AdQBtAG0AZQByACAANwAzADMAMAAwADkAMQAwADIAMwAgAFwAJwBiADcAIABCAEwAWgAgADMAOQAxADYAMgA5ADgAMAAgAFwAJwBiADcAIABWAFIAIABCAGEAbgBrACAAXABwAGEAcgANAAoAVABlAGwAZQBmAG8AbgA6ACAAKwA0ADkAIAAoADAAKQAgADIANAAwADMAIAA4ADMAIAA3ADgAIAAwADIAMQAgAFwAJwBiADcAIABUAGUAbABlAGYAYQB4ADoAIAArADQAOQAgACgAMAApACAAMgA0ADAAMwAgADgAMwAgADcAOAAgADAAMgAyAFwAcABhAHIADQAKAEUAbQBhAGkAbAA6ACAAaQBuAGYAbwBAAGIAcgB1AGUAYwBrAGUALQBhAGIAdwAuAGQAZQAgAFwAJwBiADcAIABJAG4AdABlAHIAbgBlAHQAOgB3AHcAdwAuAGIAcgB1AGUAYwBrAGUALQBhAGIAdwAuAGQAZQBcAGYAMQBcAGYAcwAyADQAXABwAGEAcgANAAoAfQANAAoA
+ ewBcAHIAdABmADEAXABhAG4AcwBpAFwAYQBuAHMAaQBjAHAAZwAxADIANQAyAFwAZABlAGYAZgAwAHsAXABmAG8AbgB0AHQAYgBsAHsAXABmADAAXABmAHMAdwBpAHMAcwBcAGYAcAByAHEAMgBcAGYAYwBoAGEAcgBzAGUAdAAwACAAVAByAGUAYgB1AGMAaABlAHQAIABNAFMAOwB9AHsAXABmADEAXABmAG4AaQBsACAAVABpAG0AZQBzACAATgBlAHcAIABSAG8AbQBhAG4AOwB9AH0ADQAKAFwAdgBpAGUAdwBrAGkAbgBkADQAXAB1AGMAMQBcAHAAYQByAGQAXABxAGMAXAB0AHEAYwBcAHQAeAA0ADUAMwA2AFwAdABxAHIAXAB0AHgAOQAwADcAMgBcAGwAYQBuAGcAMQAwADMAMQBcAGYAMABcAGYAcwAxADYAIABCAHIAXAAnAGYAYwBjAGsAZQAgAC0AIABBAG0AYgB1AGwAYQBuAHQAIABCAGUAdAByAGUAdQB0AGUAcwAgAFcAbwBoAG4AZQBuACAAXAAnAGIANwAgAFcAaQBsAGgAZQBsAG0AcwB0AHIAYQBcACcAZABmAGUAIAAzADcAIABcACcAYgA3ACAANQAyADIANAA5ACAARQBzAGMAaAB3AGUAaQBsAGUAcgAgAFwAJwBiADcAIABEAGUAdQB0AHMAYwBoAGwAYQBuAGQAIABcACcAYgA3ACAARABpAHAAbAAuACAAUwBvAHoALgAgAFAAXAAnAGUANABkAC4AIABNAGEAcgBpAGEAIABIAGEAdQBwAHQAcwAtAFAAZQB0AGUAcgBzAFwAbABpAG4AZQAgAFUAUwB0AC0ASQBkAE4AcgAuADoAIABEAEUAIAAyADMANgA3ADAAOAA3ADYANwAgAFwAJwBiADcAIABCAGEAbgBrAHYAZQByAGIAaQBuAGQAdQBuAGcAOgAgAEsAbwBuAHQAbwBuAHUAbQBtAGUAcgAgADcAMwAzADAAMAA5ADEAMAAyADMAIABcACcAYgA3ACAAQgBMAFoAIAAzADkAMQA2ADIAOQA4ADAAIABcACcAYgA3ACAAVgBSACAAQgBhAG4AawAgAFwAcABhAHIADQAKAFQAZQBsAGUAZgBvAG4AOgAgACsANAA5ACAAKAAwACkAIAAyADQAMAAzACAAOAAzACAANwA4ACAAMAAyADEAIABcACcAYgA3ACAAVABlAGwAZQBmAGEAeAA6ACAAKwA0ADkAIAAoADAAKQAgADIANAAwADMAIAA4ADMAIAA3ADgAIAAwADIAMgBcAHAAYQByAA0ACgBFAG0AYQBpAGwAOgAgAGkAbgBmAG8AQABiAHIAdQBlAGMAawBlAC0AYQBiAHcALgBkAGUAIABcACcAYgA3ACAASQBuAHQAZQByAG4AZQB0ADoAdwB3AHcALgBiAHIAdQBlAGMAawBlAC0AYQBiAHcALgBkAGUAXABmADEAXABmAHMAMgA0AFwAcABhAHIADQAKAH0ADQAKAA==
- ewBcAHIAdABmADEAXABhAG4AcwBpAFwAYQBuAHMAaQBjAHAAZwAxADIANQAyAFwAZABlAGYAZgAwAHsAXABmAG8AbgB0AHQAYgBsAHsAXABmADAAXABmAHMAdwBpAHMAcwBcAGYAcAByAHEAMgBcAGYAYwBoAGEAcgBzAGUAdAAwACAAVAByAGUAYgB1AGMAaABlAHQAIABNAFMAOwB9AHsAXABmADEAXABmAG4AaQBsACAAVABpAG0AZQBzACAATgBlAHcAIABSAG8AbQBhAG4AOwB9AH0ADQAKAHsAXABjAG8AbABvAHIAdABiAGwAIAA7AFwAcgBlAGQAMABcAGcAcgBlAGUAbgAwAFwAYgBsAHUAZQAyADUANQA7AH0ADQAKAFwAdgBpAGUAdwBrAGkAbgBkADQAXAB1AGMAMQBcAHAAYQByAGQAXABzAGEAMgAwADAAXABzAGwAMgA3ADYAXABzAGwAbQB1AGwAdAAxAFwAbABhAG4AZwAxADAAMwAxAFwAZgAwAFwAZgBzADEANgAgAEIAcgBcACcAZgBjAGMAawBlAFwAbABpAG4AZQAgAEEAbQBiAHUAbABhAG4AdAAgAEIAZQB0AHIAZQB1AHQAZQBzACAAVwBvAGgAbgBlAG4AXABsAGkAbgBlACAAQgBpAHMAbQBhAHIAYwBrAHMAdAByAC4AIAAxADgAXABsAGkAbgBlACAANQAyADIANAA5ACAARQBzAGMAaAB3AGUAaQBsAGUAcgBcAGwAaQBuAGUAIABEAGUAdQB0AHMAYwBoAGwAYQBuAGQAXABwAGEAcgANAAoAVABlAGwAZQBmAG8AbgA6ACAAKwA0ADkAIAAoADAAKQAgADIANAAwADMAIAA4ADMAIAA3ADgAIAAwADIAMQBcAGwAaQBuAGUAIABUAGUAbABlAGYAYQB4ADoAIAArADQAOQAgACgAMAApACAAMgA0ADAAMwAgADgAMwAgADcAOAAgADAAMgAyAFwAcABhAHIADQAKAFwAcABhAHIAZAAgAEUAbQBhAGkAbAA6ACAAXABjAGYAMQBcAHUAbAAgAGkAbgBmAG8AQABiAHIAdQBlAGMAawBlAC0AYQBiAHcALgBkAGUAXABjAGYAMABcAHUAbABuAG8AbgBlAFwAbABpAG4AZQAgAEkAbgB0AGUAcgBuAGUAdAA6ACAAdwB3AHcALgBiAHIAdQBlAGMAawBlAC0AYQBiAHcALgBkAGUAXABwAGEAcgANAAoAXABmADEAXABmAHMAMgA0AFwAcABhAHIADQAKAH0ADQAKAA==
+ ewBcAHIAdABmADEAXABhAG4AcwBpAFwAYQBuAHMAaQBjAHAAZwAxADIANQAyAFwAZABlAGYAZgAwAHsAXABmAG8AbgB0AHQAYgBsAHsAXABmADAAXABmAHMAdwBpAHMAcwBcAGYAcAByAHEAMgBcAGYAYwBoAGEAcgBzAGUAdAAwACAAVAByAGUAYgB1AGMAaABlAHQAIABNAFMAOwB9AHsAXABmADEAXABmAG4AaQBsACAAVABpAG0AZQBzACAATgBlAHcAIABSAG8AbQBhAG4AOwB9AH0ADQAKAHsAXABjAG8AbABvAHIAdABiAGwAIAA7AFwAcgBlAGQAMABcAGcAcgBlAGUAbgAwAFwAYgBsAHUAZQAyADUANQA7AH0ADQAKAFwAdgBpAGUAdwBrAGkAbgBkADQAXAB1AGMAMQBcAHAAYQByAGQAXABzAGEAMgAwADAAXABzAGwAMgA3ADYAXABzAGwAbQB1AGwAdAAxAFwAbABhAG4AZwAxADAAMwAxAFwAZgAwAFwAZgBzADEANgAgAEIAcgBcACcAZgBjAGMAawBlAFwAbABpAG4AZQAgAEEAbQBiAHUAbABhAG4AdAAgAEIAZQB0AHIAZQB1AHQAZQBzACAAVwBvAGgAbgBlAG4AXABsAGkAbgBlACAAVwBpAGwAaABlAGwAbQBzAHQAcgBhAFwAJwBkAGYAZQAgADMANwBcAGwAaQBuAGUAIAA1ADIAMgA0ADkAIABFAHMAYwBoAHcAZQBpAGwAZQByAFwAbABpAG4AZQAgAEQAZQB1AHQAcwBjAGgAbABhAG4AZABcAHAAYQByAA0ACgBUAGUAbABlAGYAbwBuADoAIAArADQAOQAgACgAMAApACAAMgA0ADAAMwAgADgAMwAgADcAOAAgADAAMgAxAFwAbABpAG4AZQAgAFQAZQBsAGUAZgBhAHgAOgAgACsANAA5ACAAKAAwACkAIAAyADQAMAAzACAAOAAzACAANwA4ACAAMAAyADIAXABwAGEAcgANAAoAXABwAGEAcgBkACAARQBtAGEAaQBsADoAIABcAGMAZgAxAFwAdQBsACAAaQBuAGYAbwBAAGIAcgB1AGUAYwBrAGUALQBhAGIAdwAuAGQAZQBcAGMAZgAwAFwAdQBsAG4AbwBuAGUAXABsAGkAbgBlACAASQBuAHQAZQByAG4AZQB0ADoAIAB3AHcAdwAuAGIAcgB1AGUAYwBrAGUALQBhAGIAdwAuAGQAZQBcAGYAMQBcAGYAcwAyADQAXABwAGEAcgANAAoAfQANAAoA
17, 17
diff --git a/ReportImp/BrueckeABW/SettlementReport2.Designer.cs b/ReportImp/BrueckeABW/SettlementReport2.Designer.cs
index e031a6b37..49f7ae248 100644
--- a/ReportImp/BrueckeABW/SettlementReport2.Designer.cs
+++ b/ReportImp/BrueckeABW/SettlementReport2.Designer.cs
@@ -28,406 +28,397 @@ namespace BeWo.BrueckeABW
///
private void InitializeComponent()
{
- 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.xrRichText4 = new DevExpress.XtraReports.UI.XRRichText();
- this.xrLine1 = new DevExpress.XtraReports.UI.XRLine();
- this.xrRichText1 = new DevExpress.XtraReports.UI.XRRichText();
- this.xrPictureBox1 = new DevExpress.XtraReports.UI.XRPictureBox();
- this.xrLabel8 = new DevExpress.XtraReports.UI.XRLabel();
- this.xrTable1 = new DevExpress.XtraReports.UI.XRTable();
- this.xrTableRow9 = new DevExpress.XtraReports.UI.XRTableRow();
- this.xrTableCell19 = new DevExpress.XtraReports.UI.XRTableCell();
- this.xrTableCell6 = new DevExpress.XtraReports.UI.XRTableCell();
- this.xrTableRow10 = new DevExpress.XtraReports.UI.XRTableRow();
- this.xrTableCell20 = new DevExpress.XtraReports.UI.XRTableCell();
- this.ruleRateFactorNull = new DevExpress.XtraReports.UI.FormattingRule();
- this.xrTableCell7 = new DevExpress.XtraReports.UI.XRTableCell();
- this.xrTableRow11 = new DevExpress.XtraReports.UI.XRTableRow();
- this.xrTableCell21 = new DevExpress.XtraReports.UI.XRTableCell();
- this.rowErbrachteLeistung = new DevExpress.XtraReports.UI.XRTableRow();
- this.xrTableCell22 = new DevExpress.XtraReports.UI.XRTableCell();
- this.xrLabel6 = new DevExpress.XtraReports.UI.XRLabel();
- this.RecipientPostCodeAndTown = new DevExpress.XtraReports.UI.XRLabel();
- this.xrLabel_RecipientStreet = new DevExpress.XtraReports.UI.XRLabel();
- this.xrLabel_RecipientDivision = new DevExpress.XtraReports.UI.XRLabel();
- this.xrLabel_RecipientContactPerson = new DevExpress.XtraReports.UI.XRLabel();
- this.xrLabel1 = new DevExpress.XtraReports.UI.XRLabel();
- this.ReportFooter = new DevExpress.XtraReports.UI.ReportFooterBand();
- this.xrLabel10 = new DevExpress.XtraReports.UI.XRLabel();
- this.topMarginBand1 = new DevExpress.XtraReports.UI.TopMarginBand();
- this.bottomMarginBand1 = new DevExpress.XtraReports.UI.BottomMarginBand();
- this.xrRichText3 = new DevExpress.XtraReports.UI.XRRichText();
- this.xrLine2 = new DevExpress.XtraReports.UI.XRLine();
- this.GroupHeader1 = new DevExpress.XtraReports.UI.GroupHeaderBand();
- this.xrLabel5 = new DevExpress.XtraReports.UI.XRLabel();
- this.xrLabel9 = new DevExpress.XtraReports.UI.XRLabel();
- this.xrLabel7 = 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.xrRichText2 = new DevExpress.XtraReports.UI.XRRichText();
- this.DetailReport = new DevExpress.XtraReports.UI.DetailReportBand();
- this.Detail1 = new DevExpress.XtraReports.UI.DetailBand();
- this.xrTable2 = new DevExpress.XtraReports.UI.XRTable();
- this.xrTableRow5 = new DevExpress.XtraReports.UI.XRTableRow();
- this.xrTableCell13 = new DevExpress.XtraReports.UI.XRTableCell();
- this.xrTableCell16 = new DevExpress.XtraReports.UI.XRTableCell();
- this.GroupFooter1 = new DevExpress.XtraReports.UI.GroupFooterBand();
- this.xrTable3 = new DevExpress.XtraReports.UI.XRTable();
- this.xrTableRow32 = new DevExpress.XtraReports.UI.XRTableRow();
- this.xrTableCell59 = new DevExpress.XtraReports.UI.XRTableCell();
- this.xrTableRow33 = new DevExpress.XtraReports.UI.XRTableRow();
- this.xrTableCell60 = new DevExpress.XtraReports.UI.XRTableCell();
- this.xrTableCell61 = new DevExpress.XtraReports.UI.XRTableCell();
- this.xrTableRow34 = new DevExpress.XtraReports.UI.XRTableRow();
- this.xrTableCell62 = new DevExpress.XtraReports.UI.XRTableCell();
- this.xrTableRow35 = new DevExpress.XtraReports.UI.XRTableRow();
- this.xrTableCell63 = new DevExpress.XtraReports.UI.XRTableCell();
- this.xrTableCell64 = new DevExpress.XtraReports.UI.XRTableCell();
- this.xrTableRow36 = new DevExpress.XtraReports.UI.XRTableRow();
- this.xrTableCell65 = new DevExpress.XtraReports.UI.XRTableCell();
- this.xrTableCell66 = new DevExpress.XtraReports.UI.XRTableCell();
- this.xrTableRow37 = new DevExpress.XtraReports.UI.XRTableRow();
- this.xrTableCell67 = new DevExpress.XtraReports.UI.XRTableCell();
- this.xrTableRow38 = new DevExpress.XtraReports.UI.XRTableRow();
- this.xrTableCell68 = new DevExpress.XtraReports.UI.XRTableCell();
- this.xrTableCell69 = new DevExpress.XtraReports.UI.XRTableCell();
- this.bindingSource1 = new System.Windows.Forms.BindingSource(this.components);
- ((System.ComponentModel.ISupportInitialize)(this.xrRichText4)).BeginInit();
- ((System.ComponentModel.ISupportInitialize)(this.xrRichText1)).BeginInit();
- ((System.ComponentModel.ISupportInitialize)(this.xrTable1)).BeginInit();
- ((System.ComponentModel.ISupportInitialize)(this.xrRichText3)).BeginInit();
- ((System.ComponentModel.ISupportInitialize)(this.xrRichText2)).BeginInit();
- ((System.ComponentModel.ISupportInitialize)(this.xrTable2)).BeginInit();
- ((System.ComponentModel.ISupportInitialize)(this.xrTable3)).BeginInit();
- ((System.ComponentModel.ISupportInitialize)(this.bindingSource1)).BeginInit();
- ((System.ComponentModel.ISupportInitialize)(this)).BeginInit();
- //
- // Detail
- //
- this.Detail.HeightF = 0F;
- this.Detail.Name = "Detail";
- this.Detail.Padding = new DevExpress.XtraPrinting.PaddingInfo(0, 0, 0, 0, 100F);
- this.Detail.TextAlignment = DevExpress.XtraPrinting.TextAlignment.TopLeft;
- //
- // ReportHeader
- //
- this.ReportHeader.Controls.AddRange(new DevExpress.XtraReports.UI.XRControl[] {
- this.xrRichText4,
+ 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.xrLine1 = new DevExpress.XtraReports.UI.XRLine();
+ this.xrRichText1 = new DevExpress.XtraReports.UI.XRRichText();
+ this.xrPictureBox1 = new DevExpress.XtraReports.UI.XRPictureBox();
+ this.xrLabel8 = new DevExpress.XtraReports.UI.XRLabel();
+ this.xrTable1 = new DevExpress.XtraReports.UI.XRTable();
+ this.xrTableRow9 = new DevExpress.XtraReports.UI.XRTableRow();
+ this.xrTableCell19 = new DevExpress.XtraReports.UI.XRTableCell();
+ this.xrTableCell6 = new DevExpress.XtraReports.UI.XRTableCell();
+ this.xrTableRow10 = new DevExpress.XtraReports.UI.XRTableRow();
+ this.xrTableCell20 = new DevExpress.XtraReports.UI.XRTableCell();
+ this.ruleRateFactorNull = new DevExpress.XtraReports.UI.FormattingRule();
+ this.xrTableCell7 = new DevExpress.XtraReports.UI.XRTableCell();
+ this.xrTableRow11 = new DevExpress.XtraReports.UI.XRTableRow();
+ this.xrTableCell21 = new DevExpress.XtraReports.UI.XRTableCell();
+ this.rowErbrachteLeistung = new DevExpress.XtraReports.UI.XRTableRow();
+ this.xrTableCell22 = new DevExpress.XtraReports.UI.XRTableCell();
+ this.xrLabel6 = new DevExpress.XtraReports.UI.XRLabel();
+ this.RecipientPostCodeAndTown = new DevExpress.XtraReports.UI.XRLabel();
+ this.xrLabel_RecipientStreet = new DevExpress.XtraReports.UI.XRLabel();
+ this.xrLabel_RecipientDivision = new DevExpress.XtraReports.UI.XRLabel();
+ this.xrLabel_RecipientContactPerson = new DevExpress.XtraReports.UI.XRLabel();
+ this.xrLabel1 = new DevExpress.XtraReports.UI.XRLabel();
+ this.ReportFooter = new DevExpress.XtraReports.UI.ReportFooterBand();
+ this.xrLabel10 = new DevExpress.XtraReports.UI.XRLabel();
+ this.topMarginBand1 = new DevExpress.XtraReports.UI.TopMarginBand();
+ this.bottomMarginBand1 = new DevExpress.XtraReports.UI.BottomMarginBand();
+ this.xrRichText3 = new DevExpress.XtraReports.UI.XRRichText();
+ this.xrLine2 = new DevExpress.XtraReports.UI.XRLine();
+ this.GroupHeader1 = new DevExpress.XtraReports.UI.GroupHeaderBand();
+ this.xrLabel5 = new DevExpress.XtraReports.UI.XRLabel();
+ this.xrLabel9 = new DevExpress.XtraReports.UI.XRLabel();
+ this.xrLabel7 = 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.xrRichText2 = new DevExpress.XtraReports.UI.XRRichText();
+ this.DetailReport = new DevExpress.XtraReports.UI.DetailReportBand();
+ this.Detail1 = new DevExpress.XtraReports.UI.DetailBand();
+ this.xrTable2 = new DevExpress.XtraReports.UI.XRTable();
+ this.xrTableRow5 = new DevExpress.XtraReports.UI.XRTableRow();
+ this.xrTableCell13 = new DevExpress.XtraReports.UI.XRTableCell();
+ this.xrTableCell16 = new DevExpress.XtraReports.UI.XRTableCell();
+ this.GroupFooter1 = new DevExpress.XtraReports.UI.GroupFooterBand();
+ this.xrTable3 = new DevExpress.XtraReports.UI.XRTable();
+ this.xrTableRow32 = new DevExpress.XtraReports.UI.XRTableRow();
+ this.xrTableCell59 = new DevExpress.XtraReports.UI.XRTableCell();
+ this.xrTableRow33 = new DevExpress.XtraReports.UI.XRTableRow();
+ this.xrTableCell60 = new DevExpress.XtraReports.UI.XRTableCell();
+ this.xrTableCell61 = new DevExpress.XtraReports.UI.XRTableCell();
+ this.xrTableRow34 = new DevExpress.XtraReports.UI.XRTableRow();
+ this.xrTableCell62 = new DevExpress.XtraReports.UI.XRTableCell();
+ this.xrTableRow35 = new DevExpress.XtraReports.UI.XRTableRow();
+ this.xrTableCell63 = new DevExpress.XtraReports.UI.XRTableCell();
+ this.xrTableCell64 = new DevExpress.XtraReports.UI.XRTableCell();
+ this.xrTableRow36 = new DevExpress.XtraReports.UI.XRTableRow();
+ this.xrTableCell65 = new DevExpress.XtraReports.UI.XRTableCell();
+ this.xrTableCell66 = new DevExpress.XtraReports.UI.XRTableCell();
+ this.xrTableRow37 = new DevExpress.XtraReports.UI.XRTableRow();
+ this.xrTableCell67 = new DevExpress.XtraReports.UI.XRTableCell();
+ this.xrTableRow38 = new DevExpress.XtraReports.UI.XRTableRow();
+ this.xrTableCell68 = new DevExpress.XtraReports.UI.XRTableCell();
+ this.xrTableCell69 = new DevExpress.XtraReports.UI.XRTableCell();
+ this.bindingSource1 = new System.Windows.Forms.BindingSource(this.components);
+ this.xrLabel11 = new DevExpress.XtraReports.UI.XRLabel();
+ ((System.ComponentModel.ISupportInitialize)(this.xrRichText1)).BeginInit();
+ ((System.ComponentModel.ISupportInitialize)(this.xrTable1)).BeginInit();
+ ((System.ComponentModel.ISupportInitialize)(this.xrRichText3)).BeginInit();
+ ((System.ComponentModel.ISupportInitialize)(this.xrRichText2)).BeginInit();
+ ((System.ComponentModel.ISupportInitialize)(this.xrTable2)).BeginInit();
+ ((System.ComponentModel.ISupportInitialize)(this.xrTable3)).BeginInit();
+ ((System.ComponentModel.ISupportInitialize)(this.bindingSource1)).BeginInit();
+ ((System.ComponentModel.ISupportInitialize)(this)).BeginInit();
+ //
+ // Detail
+ //
+ this.Detail.HeightF = 0F;
+ this.Detail.Name = "Detail";
+ this.Detail.Padding = new DevExpress.XtraPrinting.PaddingInfo(0, 0, 0, 0, 100F);
+ this.Detail.TextAlignment = DevExpress.XtraPrinting.TextAlignment.TopLeft;
+ //
+ // ReportHeader
+ //
+ this.ReportHeader.Controls.AddRange(new DevExpress.XtraReports.UI.XRControl[] {
+ this.xrLabel11,
this.xrLine1,
this.xrRichText1,
this.xrPictureBox1});
- this.ReportHeader.Font = new System.Drawing.Font("Verdana", 10F);
- this.ReportHeader.HeightF = 200F;
- this.ReportHeader.Name = "ReportHeader";
- this.ReportHeader.StylePriority.UseFont = false;
- //
- // xrRichText4
- //
- this.xrRichText4.Font = new System.Drawing.Font("Verdana", 10F);
- this.xrRichText4.LocationFloat = new DevExpress.Utils.PointFloat(0F, 172.4167F);
- this.xrRichText4.Name = "xrRichText4";
- this.xrRichText4.SerializableRtfString = resources.GetString("xrRichText4.SerializableRtfString");
- this.xrRichText4.SizeF = new System.Drawing.SizeF(431.1666F, 27.58334F);
- //
- // xrLine1
- //
- this.xrLine1.LocationFloat = new DevExpress.Utils.PointFloat(0F, 129.1666F);
- this.xrLine1.Name = "xrLine1";
- this.xrLine1.SizeF = new System.Drawing.SizeF(431.1666F, 10.41667F);
- //
- // xrRichText1
- //
- this.xrRichText1.Font = new System.Drawing.Font("Verdana", 10F);
- this.xrRichText1.LocationFloat = new DevExpress.Utils.PointFloat(0F, 67.62492F);
- this.xrRichText1.Name = "xrRichText1";
- this.xrRichText1.SerializableRtfString = resources.GetString("xrRichText1.SerializableRtfString");
- this.xrRichText1.SizeF = new System.Drawing.SizeF(431.1666F, 61.54167F);
- //
- // xrPictureBox1
- //
- this.xrPictureBox1.Image = ((System.Drawing.Image)(resources.GetObject("xrPictureBox1.Image")));
- this.xrPictureBox1.LocationFloat = new DevExpress.Utils.PointFloat(442.6249F, 0F);
- this.xrPictureBox1.Name = "xrPictureBox1";
- this.xrPictureBox1.SizeF = new System.Drawing.SizeF(276.375F, 139.5833F);
- this.xrPictureBox1.Sizing = DevExpress.XtraPrinting.ImageSizeMode.ZoomImage;
- //
- // xrLabel8
- //
- this.xrLabel8.DataBindings.AddRange(new DevExpress.XtraReports.UI.XRBinding[] {
+ this.ReportHeader.Font = new System.Drawing.Font("Verdana", 10F);
+ this.ReportHeader.HeightF = 200F;
+ this.ReportHeader.Name = "ReportHeader";
+ this.ReportHeader.StylePriority.UseFont = false;
+ //
+ // xrLine1
+ //
+ this.xrLine1.LocationFloat = new DevExpress.Utils.PointFloat(0F, 129.1666F);
+ this.xrLine1.Name = "xrLine1";
+ this.xrLine1.SizeF = new System.Drawing.SizeF(431.1666F, 10.41667F);
+ //
+ // xrRichText1
+ //
+ this.xrRichText1.Font = new System.Drawing.Font("Verdana", 10F);
+ this.xrRichText1.LocationFloat = new DevExpress.Utils.PointFloat(0F, 67.62492F);
+ this.xrRichText1.Name = "xrRichText1";
+ this.xrRichText1.SerializableRtfString = resources.GetString("xrRichText1.SerializableRtfString");
+ this.xrRichText1.SizeF = new System.Drawing.SizeF(431.1666F, 61.54167F);
+ //
+ // xrPictureBox1
+ //
+ this.xrPictureBox1.Image = ((System.Drawing.Image)(resources.GetObject("xrPictureBox1.Image")));
+ this.xrPictureBox1.LocationFloat = new DevExpress.Utils.PointFloat(442.6249F, 0F);
+ this.xrPictureBox1.Name = "xrPictureBox1";
+ this.xrPictureBox1.SizeF = new System.Drawing.SizeF(276.375F, 139.5833F);
+ this.xrPictureBox1.Sizing = DevExpress.XtraPrinting.ImageSizeMode.ZoomImage;
+ //
+ // xrLabel8
+ //
+ this.xrLabel8.DataBindings.AddRange(new DevExpress.XtraReports.UI.XRBinding[] {
new DevExpress.XtraReports.UI.XRBinding("Text", null, "InvoiceDate", "{0:dd.MM.yyyy}")});
- this.xrLabel8.Font = new System.Drawing.Font("Arial", 8F);
- this.xrLabel8.LocationFloat = new DevExpress.Utils.PointFloat(572.5418F, 231.5833F);
- this.xrLabel8.Name = "xrLabel8";
- this.xrLabel8.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
- this.xrLabel8.SizeF = new System.Drawing.SizeF(146.4581F, 23F);
- this.xrLabel8.StylePriority.UseFont = false;
- this.xrLabel8.StylePriority.UseTextAlignment = false;
- this.xrLabel8.Text = "xrLabel8";
- this.xrLabel8.TextAlignment = DevExpress.XtraPrinting.TextAlignment.TopLeft;
- //
- // xrTable1
- //
- this.xrTable1.BorderColor = System.Drawing.SystemColors.ControlLight;
- this.xrTable1.LocationFloat = new DevExpress.Utils.PointFloat(0F, 375.3333F);
- this.xrTable1.Name = "xrTable1";
- this.xrTable1.Rows.AddRange(new DevExpress.XtraReports.UI.XRTableRow[] {
+ this.xrLabel8.Font = new System.Drawing.Font("Arial", 8F);
+ this.xrLabel8.LocationFloat = new DevExpress.Utils.PointFloat(572.5418F, 231.5833F);
+ this.xrLabel8.Name = "xrLabel8";
+ this.xrLabel8.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
+ this.xrLabel8.SizeF = new System.Drawing.SizeF(146.4581F, 23F);
+ this.xrLabel8.StylePriority.UseFont = false;
+ this.xrLabel8.StylePriority.UseTextAlignment = false;
+ this.xrLabel8.Text = "xrLabel8";
+ this.xrLabel8.TextAlignment = DevExpress.XtraPrinting.TextAlignment.TopLeft;
+ //
+ // xrTable1
+ //
+ this.xrTable1.BorderColor = System.Drawing.SystemColors.ControlLight;
+ this.xrTable1.LocationFloat = new DevExpress.Utils.PointFloat(0F, 375.3333F);
+ this.xrTable1.Name = "xrTable1";
+ this.xrTable1.Rows.AddRange(new DevExpress.XtraReports.UI.XRTableRow[] {
this.xrTableRow9,
this.xrTableRow10,
this.xrTableRow11,
this.rowErbrachteLeistung});
- this.xrTable1.SizeF = new System.Drawing.SizeF(650F, 68F);
- this.xrTable1.StylePriority.UseBorderColor = false;
- //
- // xrTableRow9
- //
- this.xrTableRow9.Cells.AddRange(new DevExpress.XtraReports.UI.XRTableCell[] {
+ this.xrTable1.SizeF = new System.Drawing.SizeF(650F, 68F);
+ this.xrTable1.StylePriority.UseBorderColor = false;
+ //
+ // xrTableRow9
+ //
+ this.xrTableRow9.Cells.AddRange(new DevExpress.XtraReports.UI.XRTableCell[] {
this.xrTableCell19,
this.xrTableCell6});
- this.xrTableRow9.Name = "xrTableRow9";
- this.xrTableRow9.Weight = 0.085D;
- //
- // xrTableCell19
- //
- this.xrTableCell19.BorderColor = System.Drawing.SystemColors.ControlLight;
- this.xrTableCell19.Borders = ((DevExpress.XtraPrinting.BorderSide)(((DevExpress.XtraPrinting.BorderSide.Left | DevExpress.XtraPrinting.BorderSide.Top)
+ this.xrTableRow9.Name = "xrTableRow9";
+ this.xrTableRow9.Weight = 0.085D;
+ //
+ // xrTableCell19
+ //
+ this.xrTableCell19.BorderColor = System.Drawing.SystemColors.ControlLight;
+ this.xrTableCell19.Borders = ((DevExpress.XtraPrinting.BorderSide)(((DevExpress.XtraPrinting.BorderSide.Left | DevExpress.XtraPrinting.BorderSide.Top)
| DevExpress.XtraPrinting.BorderSide.Right)));
- this.xrTableCell19.Name = "xrTableCell19";
- this.xrTableCell19.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
- this.xrTableCell19.StylePriority.UseBorderColor = false;
- this.xrTableCell19.StylePriority.UseBorders = false;
- this.xrTableCell19.StylePriority.UseFont = false;
- this.xrTableCell19.Text = "Bewilligte Fachleistungsstunden (FLS) gesamt:";
- this.xrTableCell19.Weight = 0.78314100999098568D;
- //
- // xrTableCell6
- //
- this.xrTableCell6.BorderColor = System.Drawing.SystemColors.ControlLight;
- this.xrTableCell6.Borders = ((DevExpress.XtraPrinting.BorderSide)(((DevExpress.XtraPrinting.BorderSide.Left | DevExpress.XtraPrinting.BorderSide.Top)
+ this.xrTableCell19.Name = "xrTableCell19";
+ this.xrTableCell19.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
+ this.xrTableCell19.StylePriority.UseBorderColor = false;
+ this.xrTableCell19.StylePriority.UseBorders = false;
+ this.xrTableCell19.StylePriority.UseFont = false;
+ this.xrTableCell19.Text = "Bewilligte Fachleistungsstunden (FLS) gesamt:";
+ this.xrTableCell19.Weight = 0.78314100999098568D;
+ //
+ // xrTableCell6
+ //
+ this.xrTableCell6.BorderColor = System.Drawing.SystemColors.ControlLight;
+ this.xrTableCell6.Borders = ((DevExpress.XtraPrinting.BorderSide)(((DevExpress.XtraPrinting.BorderSide.Left | DevExpress.XtraPrinting.BorderSide.Top)
| DevExpress.XtraPrinting.BorderSide.Right)));
- this.xrTableCell6.Font = new System.Drawing.Font("Arial", 11F, System.Drawing.FontStyle.Bold);
- this.xrTableCell6.Name = "xrTableCell6";
- this.xrTableCell6.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
- this.xrTableCell6.StylePriority.UseBorderColor = false;
- this.xrTableCell6.StylePriority.UseBorders = false;
- this.xrTableCell6.StylePriority.UseFont = false;
- this.xrTableCell6.StylePriority.UseTextAlignment = false;
- this.xrTableCell6.Text = "[ApprovedFLS]";
- this.xrTableCell6.TextAlignment = DevExpress.XtraPrinting.TextAlignment.TopRight;
- this.xrTableCell6.Weight = 0.21685899000901443D;
- //
- // xrTableRow10
- //
- this.xrTableRow10.Cells.AddRange(new DevExpress.XtraReports.UI.XRTableCell[] {
+ this.xrTableCell6.Font = new System.Drawing.Font("Arial", 11F, System.Drawing.FontStyle.Bold);
+ this.xrTableCell6.Name = "xrTableCell6";
+ this.xrTableCell6.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
+ this.xrTableCell6.StylePriority.UseBorderColor = false;
+ this.xrTableCell6.StylePriority.UseBorders = false;
+ this.xrTableCell6.StylePriority.UseFont = false;
+ this.xrTableCell6.StylePriority.UseTextAlignment = false;
+ this.xrTableCell6.Text = "[ApprovedFLS]";
+ this.xrTableCell6.TextAlignment = DevExpress.XtraPrinting.TextAlignment.TopRight;
+ this.xrTableCell6.Weight = 0.21685899000901443D;
+ //
+ // xrTableRow10
+ //
+ this.xrTableRow10.Cells.AddRange(new DevExpress.XtraReports.UI.XRTableCell[] {
this.xrTableCell20,
this.xrTableCell7});
- this.xrTableRow10.FormattingRules.Add(this.ruleRateFactorNull);
- this.xrTableRow10.Name = "xrTableRow10";
- this.xrTableRow10.Weight = 0.085D;
- //
- // xrTableCell20
- //
- this.xrTableCell20.BorderColor = System.Drawing.SystemColors.ControlLight;
- this.xrTableCell20.Borders = ((DevExpress.XtraPrinting.BorderSide)((DevExpress.XtraPrinting.BorderSide.Left | DevExpress.XtraPrinting.BorderSide.Right)));
- this.xrTableCell20.FormattingRules.Add(this.ruleRateFactorNull);
- this.xrTableCell20.Name = "xrTableCell20";
- this.xrTableCell20.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
- this.xrTableCell20.StylePriority.UseBorderColor = false;
- this.xrTableCell20.StylePriority.UseBorders = false;
- this.xrTableCell20.StylePriority.UseFont = false;
- this.xrTableCell20.Text = "- zzgl. Faktor [RateFactorText2]:";
- this.xrTableCell20.Weight = 0.78314100999098568D;
- //
- // ruleRateFactorNull
- //
- this.ruleRateFactorNull.Condition = "[RateFactorText2] == ?";
- //
- //
- //
- this.ruleRateFactorNull.Formatting.Visible = DevExpress.Utils.DefaultBoolean.False;
- this.ruleRateFactorNull.Name = "ruleRateFactorNull";
- //
- // xrTableCell7
- //
- this.xrTableCell7.BorderColor = System.Drawing.SystemColors.ControlLight;
- this.xrTableCell7.Borders = ((DevExpress.XtraPrinting.BorderSide)((DevExpress.XtraPrinting.BorderSide.Left | DevExpress.XtraPrinting.BorderSide.Right)));
- this.xrTableCell7.Font = new System.Drawing.Font("Arial", 11F, System.Drawing.FontStyle.Bold);
- this.xrTableCell7.FormattingRules.Add(this.ruleRateFactorNull);
- this.xrTableCell7.Name = "xrTableCell7";
- this.xrTableCell7.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
- this.xrTableCell7.StylePriority.UseBorderColor = false;
- this.xrTableCell7.StylePriority.UseBorders = false;
- this.xrTableCell7.StylePriority.UseFont = false;
- this.xrTableCell7.StylePriority.UseTextAlignment = false;
- this.xrTableCell7.Text = "[ApprovedFLSWithFactor]";
- this.xrTableCell7.TextAlignment = DevExpress.XtraPrinting.TextAlignment.TopRight;
- this.xrTableCell7.Weight = 0.21685899000901443D;
- //
- // xrTableRow11
- //
- this.xrTableRow11.Cells.AddRange(new DevExpress.XtraReports.UI.XRTableCell[] {
+ this.xrTableRow10.FormattingRules.Add(this.ruleRateFactorNull);
+ this.xrTableRow10.Name = "xrTableRow10";
+ this.xrTableRow10.Weight = 0.085D;
+ //
+ // xrTableCell20
+ //
+ this.xrTableCell20.BorderColor = System.Drawing.SystemColors.ControlLight;
+ this.xrTableCell20.Borders = ((DevExpress.XtraPrinting.BorderSide)((DevExpress.XtraPrinting.BorderSide.Left | DevExpress.XtraPrinting.BorderSide.Right)));
+ this.xrTableCell20.FormattingRules.Add(this.ruleRateFactorNull);
+ this.xrTableCell20.Name = "xrTableCell20";
+ this.xrTableCell20.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
+ this.xrTableCell20.StylePriority.UseBorderColor = false;
+ this.xrTableCell20.StylePriority.UseBorders = false;
+ this.xrTableCell20.StylePriority.UseFont = false;
+ this.xrTableCell20.Text = "- zzgl. Faktor [RateFactorText2]:";
+ this.xrTableCell20.Weight = 0.78314100999098568D;
+ //
+ // ruleRateFactorNull
+ //
+ this.ruleRateFactorNull.Condition = "[RateFactorText2] == ?";
+ //
+ //
+ //
+ this.ruleRateFactorNull.Formatting.Visible = DevExpress.Utils.DefaultBoolean.False;
+ this.ruleRateFactorNull.Name = "ruleRateFactorNull";
+ //
+ // xrTableCell7
+ //
+ this.xrTableCell7.BorderColor = System.Drawing.SystemColors.ControlLight;
+ this.xrTableCell7.Borders = ((DevExpress.XtraPrinting.BorderSide)((DevExpress.XtraPrinting.BorderSide.Left | DevExpress.XtraPrinting.BorderSide.Right)));
+ this.xrTableCell7.Font = new System.Drawing.Font("Arial", 11F, System.Drawing.FontStyle.Bold);
+ this.xrTableCell7.FormattingRules.Add(this.ruleRateFactorNull);
+ this.xrTableCell7.Name = "xrTableCell7";
+ this.xrTableCell7.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
+ this.xrTableCell7.StylePriority.UseBorderColor = false;
+ this.xrTableCell7.StylePriority.UseBorders = false;
+ this.xrTableCell7.StylePriority.UseFont = false;
+ this.xrTableCell7.StylePriority.UseTextAlignment = false;
+ this.xrTableCell7.Text = "[ApprovedFLSWithFactor]";
+ this.xrTableCell7.TextAlignment = DevExpress.XtraPrinting.TextAlignment.TopRight;
+ this.xrTableCell7.Weight = 0.21685899000901443D;
+ //
+ // xrTableRow11
+ //
+ this.xrTableRow11.Cells.AddRange(new DevExpress.XtraReports.UI.XRTableCell[] {
this.xrTableCell21});
- this.xrTableRow11.Name = "xrTableRow11";
- this.xrTableRow11.Weight = 0.085D;
- //
- // xrTableCell21
- //
- this.xrTableCell21.BorderColor = System.Drawing.SystemColors.ControlLight;
- this.xrTableCell21.Borders = ((DevExpress.XtraPrinting.BorderSide)(((DevExpress.XtraPrinting.BorderSide.Left | DevExpress.XtraPrinting.BorderSide.Top)
+ this.xrTableRow11.Name = "xrTableRow11";
+ this.xrTableRow11.Weight = 0.085D;
+ //
+ // xrTableCell21
+ //
+ this.xrTableCell21.BorderColor = System.Drawing.SystemColors.ControlLight;
+ this.xrTableCell21.Borders = ((DevExpress.XtraPrinting.BorderSide)(((DevExpress.XtraPrinting.BorderSide.Left | DevExpress.XtraPrinting.BorderSide.Top)
| DevExpress.XtraPrinting.BorderSide.Right)));
- this.xrTableCell21.Name = "xrTableCell21";
- this.xrTableCell21.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
- this.xrTableCell21.StylePriority.UseBorderColor = false;
- this.xrTableCell21.StylePriority.UseBorders = false;
- this.xrTableCell21.Weight = 1D;
- //
- // rowErbrachteLeistung
- //
- this.rowErbrachteLeistung.Cells.AddRange(new DevExpress.XtraReports.UI.XRTableCell[] {
+ this.xrTableCell21.Name = "xrTableCell21";
+ this.xrTableCell21.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
+ this.xrTableCell21.StylePriority.UseBorderColor = false;
+ this.xrTableCell21.StylePriority.UseBorders = false;
+ this.xrTableCell21.Weight = 1D;
+ //
+ // rowErbrachteLeistung
+ //
+ this.rowErbrachteLeistung.Cells.AddRange(new DevExpress.XtraReports.UI.XRTableCell[] {
this.xrTableCell22});
- this.rowErbrachteLeistung.Name = "rowErbrachteLeistung";
- this.rowErbrachteLeistung.Weight = 0.085D;
- //
- // xrTableCell22
- //
- this.xrTableCell22.BorderColor = System.Drawing.SystemColors.ControlLight;
- this.xrTableCell22.Borders = ((DevExpress.XtraPrinting.BorderSide)(((DevExpress.XtraPrinting.BorderSide.Left | DevExpress.XtraPrinting.BorderSide.Right)
+ this.rowErbrachteLeistung.Name = "rowErbrachteLeistung";
+ this.rowErbrachteLeistung.Weight = 0.085D;
+ //
+ // xrTableCell22
+ //
+ this.xrTableCell22.BorderColor = System.Drawing.SystemColors.ControlLight;
+ this.xrTableCell22.Borders = ((DevExpress.XtraPrinting.BorderSide)(((DevExpress.XtraPrinting.BorderSide.Left | DevExpress.XtraPrinting.BorderSide.Right)
| DevExpress.XtraPrinting.BorderSide.Bottom)));
- this.xrTableCell22.Name = "xrTableCell22";
- this.xrTableCell22.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
- this.xrTableCell22.StylePriority.UseBorderColor = false;
- this.xrTableCell22.StylePriority.UseBorders = false;
- this.xrTableCell22.StylePriority.UseFont = false;
- this.xrTableCell22.Text = "Erbrachte Leistungen:";
- this.xrTableCell22.Weight = 1D;
- //
- // xrLabel6
- //
- this.xrLabel6.LocationFloat = new DevExpress.Utils.PointFloat(0F, 286.7916F);
- this.xrLabel6.Multiline = true;
- this.xrLabel6.Name = "xrLabel6";
- this.xrLabel6.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
- this.xrLabel6.SizeF = new System.Drawing.SizeF(718.9999F, 80.54166F);
- this.xrLabel6.StylePriority.UseFont = false;
- this.xrLabel6.Text = "Sehr geehrte Damen und Herren,\r\n\r\nin der Wohnbetreuungsangelegenheit [CustomerFir" +
+ this.xrTableCell22.Name = "xrTableCell22";
+ this.xrTableCell22.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
+ this.xrTableCell22.StylePriority.UseBorderColor = false;
+ this.xrTableCell22.StylePriority.UseBorders = false;
+ this.xrTableCell22.StylePriority.UseFont = false;
+ this.xrTableCell22.Text = "Erbrachte Leistungen:";
+ this.xrTableCell22.Weight = 1D;
+ //
+ // xrLabel6
+ //
+ this.xrLabel6.LocationFloat = new DevExpress.Utils.PointFloat(0F, 286.7916F);
+ this.xrLabel6.Multiline = true;
+ this.xrLabel6.Name = "xrLabel6";
+ this.xrLabel6.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
+ this.xrLabel6.SizeF = new System.Drawing.SizeF(718.9999F, 80.54166F);
+ this.xrLabel6.StylePriority.UseFont = false;
+ this.xrLabel6.Text = "Sehr geehrte Damen und Herren,\r\n\r\nin der Wohnbetreuungsangelegenheit [CustomerFir" +
"stName] [CustomerLastName] übersende ich die Abrechnungsunterlagen für den Zeitr" +
"aum [AccountingPeriod]\r\n\r\n";
- //
- // RecipientPostCodeAndTown
- //
- this.RecipientPostCodeAndTown.CanShrink = true;
- this.RecipientPostCodeAndTown.Font = new System.Drawing.Font("Arial", 10F);
- this.RecipientPostCodeAndTown.LocationFloat = new DevExpress.Utils.PointFloat(0F, 85.00004F);
- this.RecipientPostCodeAndTown.Name = "RecipientPostCodeAndTown";
- this.RecipientPostCodeAndTown.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
- this.RecipientPostCodeAndTown.ProcessNullValues = DevExpress.XtraReports.UI.ValueSuppressType.SuppressAndShrink;
- this.RecipientPostCodeAndTown.SizeF = new System.Drawing.SizeF(292F, 17F);
- this.RecipientPostCodeAndTown.StylePriority.UseFont = false;
- this.RecipientPostCodeAndTown.Text = "[RecipientPostCodeAndTown]";
- //
- // xrLabel_RecipientStreet
- //
- this.xrLabel_RecipientStreet.CanShrink = true;
- this.xrLabel_RecipientStreet.Font = new System.Drawing.Font("Arial", 10F);
- this.xrLabel_RecipientStreet.LocationFloat = new DevExpress.Utils.PointFloat(0F, 68.00003F);
- this.xrLabel_RecipientStreet.Name = "xrLabel_RecipientStreet";
- this.xrLabel_RecipientStreet.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
- this.xrLabel_RecipientStreet.ProcessNullValues = DevExpress.XtraReports.UI.ValueSuppressType.SuppressAndShrink;
- this.xrLabel_RecipientStreet.SizeF = new System.Drawing.SizeF(292F, 17F);
- this.xrLabel_RecipientStreet.StylePriority.UseFont = false;
- this.xrLabel_RecipientStreet.Text = "[RecipientStreet]";
- //
- // xrLabel_RecipientDivision
- //
- this.xrLabel_RecipientDivision.CanShrink = true;
- this.xrLabel_RecipientDivision.Font = new System.Drawing.Font("Arial", 10F);
- this.xrLabel_RecipientDivision.LocationFloat = new DevExpress.Utils.PointFloat(0F, 51.00002F);
- this.xrLabel_RecipientDivision.Name = "xrLabel_RecipientDivision";
- this.xrLabel_RecipientDivision.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
- this.xrLabel_RecipientDivision.ProcessNullValues = DevExpress.XtraReports.UI.ValueSuppressType.SuppressAndShrink;
- this.xrLabel_RecipientDivision.SizeF = new System.Drawing.SizeF(292F, 17F);
- this.xrLabel_RecipientDivision.StylePriority.UseFont = false;
- this.xrLabel_RecipientDivision.Text = "[RecipientDivision]";
- //
- // xrLabel_RecipientContactPerson
- //
- this.xrLabel_RecipientContactPerson.CanShrink = true;
- this.xrLabel_RecipientContactPerson.Font = new System.Drawing.Font("Arial", 10F);
- this.xrLabel_RecipientContactPerson.LocationFloat = new DevExpress.Utils.PointFloat(0F, 34.00002F);
- this.xrLabel_RecipientContactPerson.Name = "xrLabel_RecipientContactPerson";
- this.xrLabel_RecipientContactPerson.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
- this.xrLabel_RecipientContactPerson.ProcessNullValues = DevExpress.XtraReports.UI.ValueSuppressType.SuppressAndShrink;
- this.xrLabel_RecipientContactPerson.SizeF = new System.Drawing.SizeF(292F, 17F);
- this.xrLabel_RecipientContactPerson.StylePriority.UseFont = false;
- this.xrLabel_RecipientContactPerson.Text = "[RecipientContactPerson]";
- //
- // xrLabel1
- //
- this.xrLabel1.CanShrink = true;
- this.xrLabel1.Font = new System.Drawing.Font("Arial", 10F);
- this.xrLabel1.LocationFloat = new DevExpress.Utils.PointFloat(0F, 17.00001F);
- this.xrLabel1.Name = "xrLabel1";
- this.xrLabel1.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
- this.xrLabel1.ProcessNullValues = DevExpress.XtraReports.UI.ValueSuppressType.SuppressAndShrink;
- this.xrLabel1.SizeF = new System.Drawing.SizeF(292F, 17F);
- this.xrLabel1.StylePriority.UseFont = false;
- this.xrLabel1.Text = "[RecipientOrganisation]";
- //
- // ReportFooter
- //
- this.ReportFooter.Controls.AddRange(new DevExpress.XtraReports.UI.XRControl[] {
+ //
+ // RecipientPostCodeAndTown
+ //
+ this.RecipientPostCodeAndTown.CanShrink = true;
+ this.RecipientPostCodeAndTown.Font = new System.Drawing.Font("Arial", 10F);
+ this.RecipientPostCodeAndTown.LocationFloat = new DevExpress.Utils.PointFloat(0F, 85.00004F);
+ this.RecipientPostCodeAndTown.Name = "RecipientPostCodeAndTown";
+ this.RecipientPostCodeAndTown.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
+ this.RecipientPostCodeAndTown.ProcessNullValues = DevExpress.XtraReports.UI.ValueSuppressType.SuppressAndShrink;
+ this.RecipientPostCodeAndTown.SizeF = new System.Drawing.SizeF(292F, 17F);
+ this.RecipientPostCodeAndTown.StylePriority.UseFont = false;
+ this.RecipientPostCodeAndTown.Text = "[RecipientPostCodeAndTown]";
+ //
+ // xrLabel_RecipientStreet
+ //
+ this.xrLabel_RecipientStreet.CanShrink = true;
+ this.xrLabel_RecipientStreet.Font = new System.Drawing.Font("Arial", 10F);
+ this.xrLabel_RecipientStreet.LocationFloat = new DevExpress.Utils.PointFloat(0F, 68.00003F);
+ this.xrLabel_RecipientStreet.Name = "xrLabel_RecipientStreet";
+ this.xrLabel_RecipientStreet.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
+ this.xrLabel_RecipientStreet.ProcessNullValues = DevExpress.XtraReports.UI.ValueSuppressType.SuppressAndShrink;
+ this.xrLabel_RecipientStreet.SizeF = new System.Drawing.SizeF(292F, 17F);
+ this.xrLabel_RecipientStreet.StylePriority.UseFont = false;
+ this.xrLabel_RecipientStreet.Text = "[RecipientStreet]";
+ //
+ // xrLabel_RecipientDivision
+ //
+ this.xrLabel_RecipientDivision.CanShrink = true;
+ this.xrLabel_RecipientDivision.Font = new System.Drawing.Font("Arial", 10F);
+ this.xrLabel_RecipientDivision.LocationFloat = new DevExpress.Utils.PointFloat(0F, 51.00002F);
+ this.xrLabel_RecipientDivision.Name = "xrLabel_RecipientDivision";
+ this.xrLabel_RecipientDivision.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
+ this.xrLabel_RecipientDivision.ProcessNullValues = DevExpress.XtraReports.UI.ValueSuppressType.SuppressAndShrink;
+ this.xrLabel_RecipientDivision.SizeF = new System.Drawing.SizeF(292F, 17F);
+ this.xrLabel_RecipientDivision.StylePriority.UseFont = false;
+ this.xrLabel_RecipientDivision.Text = "[RecipientDivision]";
+ //
+ // xrLabel_RecipientContactPerson
+ //
+ this.xrLabel_RecipientContactPerson.CanShrink = true;
+ this.xrLabel_RecipientContactPerson.Font = new System.Drawing.Font("Arial", 10F);
+ this.xrLabel_RecipientContactPerson.LocationFloat = new DevExpress.Utils.PointFloat(0F, 34.00002F);
+ this.xrLabel_RecipientContactPerson.Name = "xrLabel_RecipientContactPerson";
+ this.xrLabel_RecipientContactPerson.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
+ this.xrLabel_RecipientContactPerson.ProcessNullValues = DevExpress.XtraReports.UI.ValueSuppressType.SuppressAndShrink;
+ this.xrLabel_RecipientContactPerson.SizeF = new System.Drawing.SizeF(292F, 17F);
+ this.xrLabel_RecipientContactPerson.StylePriority.UseFont = false;
+ this.xrLabel_RecipientContactPerson.Text = "[RecipientContactPerson]";
+ //
+ // xrLabel1
+ //
+ this.xrLabel1.CanShrink = true;
+ this.xrLabel1.Font = new System.Drawing.Font("Arial", 10F);
+ this.xrLabel1.LocationFloat = new DevExpress.Utils.PointFloat(0F, 17.00001F);
+ this.xrLabel1.Name = "xrLabel1";
+ this.xrLabel1.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
+ this.xrLabel1.ProcessNullValues = DevExpress.XtraReports.UI.ValueSuppressType.SuppressAndShrink;
+ this.xrLabel1.SizeF = new System.Drawing.SizeF(292F, 17F);
+ this.xrLabel1.StylePriority.UseFont = false;
+ this.xrLabel1.Text = "[RecipientOrganisation]";
+ //
+ // ReportFooter
+ //
+ this.ReportFooter.Controls.AddRange(new DevExpress.XtraReports.UI.XRControl[] {
this.xrLabel10});
- this.ReportFooter.Font = new System.Drawing.Font("Arial", 11F);
- this.ReportFooter.HeightF = 180F;
- this.ReportFooter.KeepTogether = true;
- this.ReportFooter.Name = "ReportFooter";
- this.ReportFooter.StylePriority.UseFont = false;
- //
- // xrLabel10
- //
- this.xrLabel10.LocationFloat = new DevExpress.Utils.PointFloat(0F, 9.999974F);
- this.xrLabel10.Multiline = true;
- this.xrLabel10.Name = "xrLabel10";
- this.xrLabel10.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
- this.xrLabel10.SizeF = new System.Drawing.SizeF(407.2917F, 170F);
- this.xrLabel10.StylePriority.UseFont = false;
- this.xrLabel10.Text = "Mit freundlichen Grüßen\r\n\r\n\r\nBRÜCKE\r\nAmbulant Betreutes Wohnen\r\n\r\n\r\n\r\ni. A. Geral" +
+ this.ReportFooter.Font = new System.Drawing.Font("Arial", 11F);
+ this.ReportFooter.HeightF = 180F;
+ this.ReportFooter.KeepTogether = true;
+ this.ReportFooter.Name = "ReportFooter";
+ this.ReportFooter.StylePriority.UseFont = false;
+ //
+ // xrLabel10
+ //
+ this.xrLabel10.LocationFloat = new DevExpress.Utils.PointFloat(0F, 9.999974F);
+ this.xrLabel10.Multiline = true;
+ this.xrLabel10.Name = "xrLabel10";
+ this.xrLabel10.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
+ this.xrLabel10.SizeF = new System.Drawing.SizeF(407.2917F, 170F);
+ this.xrLabel10.StylePriority.UseFont = false;
+ this.xrLabel10.Text = "Mit freundlichen Grüßen\r\n\r\n\r\nBRÜCKE\r\nAmbulant Betreutes Wohnen\r\n\r\n\r\n\r\ni. A. Geral" +
"d Peters";
- //
- // topMarginBand1
- //
- this.topMarginBand1.Font = new System.Drawing.Font("Arial", 10F);
- this.topMarginBand1.HeightF = 0F;
- this.topMarginBand1.Name = "topMarginBand1";
- this.topMarginBand1.StylePriority.UseFont = false;
- //
- // bottomMarginBand1
- //
- this.bottomMarginBand1.Controls.AddRange(new DevExpress.XtraReports.UI.XRControl[] {
+ //
+ // topMarginBand1
+ //
+ this.topMarginBand1.Font = new System.Drawing.Font("Arial", 10F);
+ this.topMarginBand1.HeightF = 0F;
+ this.topMarginBand1.Name = "topMarginBand1";
+ this.topMarginBand1.StylePriority.UseFont = false;
+ //
+ // bottomMarginBand1
+ //
+ this.bottomMarginBand1.Controls.AddRange(new DevExpress.XtraReports.UI.XRControl[] {
this.xrRichText3,
this.xrLine2});
- this.bottomMarginBand1.Name = "bottomMarginBand1";
- //
- // xrRichText3
- //
- this.xrRichText3.Font = new System.Drawing.Font("Verdana", 10F);
- this.xrRichText3.LocationFloat = new DevExpress.Utils.PointFloat(0F, 10.41667F);
- this.xrRichText3.Name = "xrRichText3";
- this.xrRichText3.SerializableRtfString = resources.GetString("xrRichText3.SerializableRtfString");
- this.xrRichText3.SizeF = new System.Drawing.SizeF(689.4999F, 61.54167F);
- //
- // xrLine2
- //
- this.xrLine2.LocationFloat = new DevExpress.Utils.PointFloat(0F, 0F);
- this.xrLine2.Name = "xrLine2";
- this.xrLine2.SizeF = new System.Drawing.SizeF(689.4999F, 10.41667F);
- //
- // GroupHeader1
- //
- this.GroupHeader1.Controls.AddRange(new DevExpress.XtraReports.UI.XRControl[] {
+ this.bottomMarginBand1.Name = "bottomMarginBand1";
+ //
+ // xrRichText3
+ //
+ this.xrRichText3.Font = new System.Drawing.Font("Verdana", 10F);
+ this.xrRichText3.LocationFloat = new DevExpress.Utils.PointFloat(0F, 10.41667F);
+ this.xrRichText3.Name = "xrRichText3";
+ this.xrRichText3.SerializableRtfString = resources.GetString("xrRichText3.SerializableRtfString");
+ this.xrRichText3.SizeF = new System.Drawing.SizeF(689.4999F, 61.54167F);
+ //
+ // xrLine2
+ //
+ this.xrLine2.LocationFloat = new DevExpress.Utils.PointFloat(0F, 0F);
+ this.xrLine2.Name = "xrLine2";
+ this.xrLine2.SizeF = new System.Drawing.SizeF(689.4999F, 10.41667F);
+ //
+ // GroupHeader1
+ //
+ this.GroupHeader1.Controls.AddRange(new DevExpress.XtraReports.UI.XRControl[] {
this.xrLabel5,
this.xrLabel9,
this.xrLabel7,
@@ -443,170 +434,170 @@ namespace BeWo.BrueckeABW
this.xrLabel6,
this.xrTable1,
this.xrLabel8});
- this.GroupHeader1.Font = new System.Drawing.Font("Arial", 11F);
- this.GroupHeader1.HeightF = 443.3333F;
- this.GroupHeader1.Name = "GroupHeader1";
- this.GroupHeader1.StylePriority.UseFont = false;
- //
- // xrLabel5
- //
- this.xrLabel5.CanShrink = true;
- this.xrLabel5.DataBindings.AddRange(new DevExpress.XtraReports.UI.XRBinding[] {
+ this.GroupHeader1.Font = new System.Drawing.Font("Arial", 11F);
+ this.GroupHeader1.HeightF = 443.3333F;
+ this.GroupHeader1.Name = "GroupHeader1";
+ this.GroupHeader1.StylePriority.UseFont = false;
+ //
+ // xrLabel5
+ //
+ this.xrLabel5.CanShrink = true;
+ this.xrLabel5.DataBindings.AddRange(new DevExpress.XtraReports.UI.XRBinding[] {
new DevExpress.XtraReports.UI.XRBinding("Text", null, "RecipientFax", "Per Fax: {0}")});
- this.xrLabel5.Font = new System.Drawing.Font("Arial", 10F);
- this.xrLabel5.LocationFloat = new DevExpress.Utils.PointFloat(0F, 0F);
- 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(292F, 17F);
- this.xrLabel5.StylePriority.UseFont = false;
- this.xrLabel5.Text = "xrLabel5";
- //
- // xrLabel9
- //
- this.xrLabel9.DataBindings.AddRange(new DevExpress.XtraReports.UI.XRBinding[] {
+ this.xrLabel5.Font = new System.Drawing.Font("Arial", 10F);
+ this.xrLabel5.LocationFloat = new DevExpress.Utils.PointFloat(0F, 0F);
+ 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(292F, 17F);
+ this.xrLabel5.StylePriority.UseFont = false;
+ this.xrLabel5.Text = "xrLabel5";
+ //
+ // xrLabel9
+ //
+ this.xrLabel9.DataBindings.AddRange(new DevExpress.XtraReports.UI.XRBinding[] {
new DevExpress.XtraReports.UI.XRBinding("Text", null, "CustomerReferenceNumber")});
- this.xrLabel9.Font = new System.Drawing.Font("Arial", 10F, System.Drawing.FontStyle.Bold);
- this.xrLabel9.LocationFloat = new DevExpress.Utils.PointFloat(0F, 231.5833F);
- this.xrLabel9.Name = "xrLabel9";
- this.xrLabel9.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
- this.xrLabel9.SizeF = new System.Drawing.SizeF(317F, 17F);
- this.xrLabel9.StylePriority.UseFont = false;
- //
- // xrLabel7
- //
- this.xrLabel7.Font = new System.Drawing.Font("Arial", 6F);
- this.xrLabel7.LocationFloat = new DevExpress.Utils.PointFloat(572.5418F, 214.5833F);
- this.xrLabel7.Name = "xrLabel7";
- this.xrLabel7.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
- this.xrLabel7.SizeF = new System.Drawing.SizeF(136.4582F, 17F);
- this.xrLabel7.StylePriority.UseFont = false;
- this.xrLabel7.Text = "Datum";
- //
- // xrLabel4
- //
- this.xrLabel4.Font = new System.Drawing.Font("Arial", 6F);
- this.xrLabel4.LocationFloat = new DevExpress.Utils.PointFloat(416.5833F, 214.5833F);
- this.xrLabel4.Name = "xrLabel4";
- this.xrLabel4.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
- this.xrLabel4.SizeF = new System.Drawing.SizeF(155.9585F, 17F);
- this.xrLabel4.StylePriority.UseFont = false;
- this.xrLabel4.Text = "Telefon, Name";
- //
- // xrLabel3
- //
- this.xrLabel3.Font = new System.Drawing.Font("Arial", 6F);
- this.xrLabel3.LocationFloat = new DevExpress.Utils.PointFloat(208.3333F, 214.5833F);
- this.xrLabel3.Name = "xrLabel3";
- this.xrLabel3.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
- this.xrLabel3.SizeF = new System.Drawing.SizeF(176.375F, 17F);
- this.xrLabel3.StylePriority.UseFont = false;
- this.xrLabel3.Text = "Unser Zeichen, unsere Nachricht vom";
- //
- // xrLabel2
- //
- this.xrLabel2.Font = new System.Drawing.Font("Arial", 6F);
- this.xrLabel2.LocationFloat = new DevExpress.Utils.PointFloat(0F, 214.5833F);
- this.xrLabel2.Name = "xrLabel2";
- this.xrLabel2.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
- this.xrLabel2.SizeF = new System.Drawing.SizeF(133.6666F, 17F);
- this.xrLabel2.StylePriority.UseFont = false;
- this.xrLabel2.Text = "Ihr Zeichen, Ihre Nachricht vom";
- //
- // xrRichText2
- //
- this.xrRichText2.Font = new System.Drawing.Font("Verdana", 10F);
- this.xrRichText2.LocationFloat = new DevExpress.Utils.PointFloat(504F, 0F);
- this.xrRichText2.Name = "xrRichText2";
- this.xrRichText2.SerializableRtfString = resources.GetString("xrRichText2.SerializableRtfString");
- this.xrRichText2.SizeF = new System.Drawing.SizeF(209.9583F, 187.5833F);
- //
- // DetailReport
- //
- this.DetailReport.Bands.AddRange(new DevExpress.XtraReports.UI.Band[] {
+ this.xrLabel9.Font = new System.Drawing.Font("Arial", 10F, System.Drawing.FontStyle.Bold);
+ this.xrLabel9.LocationFloat = new DevExpress.Utils.PointFloat(0F, 231.5833F);
+ this.xrLabel9.Name = "xrLabel9";
+ this.xrLabel9.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
+ this.xrLabel9.SizeF = new System.Drawing.SizeF(317F, 17F);
+ this.xrLabel9.StylePriority.UseFont = false;
+ //
+ // xrLabel7
+ //
+ this.xrLabel7.Font = new System.Drawing.Font("Arial", 6F);
+ this.xrLabel7.LocationFloat = new DevExpress.Utils.PointFloat(572.5418F, 214.5833F);
+ this.xrLabel7.Name = "xrLabel7";
+ this.xrLabel7.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
+ this.xrLabel7.SizeF = new System.Drawing.SizeF(136.4582F, 17F);
+ this.xrLabel7.StylePriority.UseFont = false;
+ this.xrLabel7.Text = "Datum";
+ //
+ // xrLabel4
+ //
+ this.xrLabel4.Font = new System.Drawing.Font("Arial", 6F);
+ this.xrLabel4.LocationFloat = new DevExpress.Utils.PointFloat(416.5833F, 214.5833F);
+ this.xrLabel4.Name = "xrLabel4";
+ this.xrLabel4.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
+ this.xrLabel4.SizeF = new System.Drawing.SizeF(155.9585F, 17F);
+ this.xrLabel4.StylePriority.UseFont = false;
+ this.xrLabel4.Text = "Telefon, Name";
+ //
+ // xrLabel3
+ //
+ this.xrLabel3.Font = new System.Drawing.Font("Arial", 6F);
+ this.xrLabel3.LocationFloat = new DevExpress.Utils.PointFloat(208.3333F, 214.5833F);
+ this.xrLabel3.Name = "xrLabel3";
+ this.xrLabel3.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
+ this.xrLabel3.SizeF = new System.Drawing.SizeF(176.375F, 17F);
+ this.xrLabel3.StylePriority.UseFont = false;
+ this.xrLabel3.Text = "Unser Zeichen, unsere Nachricht vom";
+ //
+ // xrLabel2
+ //
+ this.xrLabel2.Font = new System.Drawing.Font("Arial", 6F);
+ this.xrLabel2.LocationFloat = new DevExpress.Utils.PointFloat(0F, 214.5833F);
+ this.xrLabel2.Name = "xrLabel2";
+ this.xrLabel2.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
+ this.xrLabel2.SizeF = new System.Drawing.SizeF(133.6666F, 17F);
+ this.xrLabel2.StylePriority.UseFont = false;
+ this.xrLabel2.Text = "Ihr Zeichen, Ihre Nachricht vom";
+ //
+ // xrRichText2
+ //
+ this.xrRichText2.Font = new System.Drawing.Font("Verdana", 10F);
+ this.xrRichText2.LocationFloat = new DevExpress.Utils.PointFloat(504F, 0F);
+ this.xrRichText2.Name = "xrRichText2";
+ this.xrRichText2.SerializableRtfString = resources.GetString("xrRichText2.SerializableRtfString");
+ this.xrRichText2.SizeF = new System.Drawing.SizeF(209.9583F, 187.5833F);
+ //
+ // DetailReport
+ //
+ this.DetailReport.Bands.AddRange(new DevExpress.XtraReports.UI.Band[] {
this.Detail1,
this.GroupFooter1});
- 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.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.xrTable2});
- this.Detail1.Font = new System.Drawing.Font("Arial", 11F);
- this.Detail1.HeightF = 17F;
- this.Detail1.Name = "Detail1";
- this.Detail1.StylePriority.UseFont = false;
- //
- // xrTable2
- //
- this.xrTable2.BorderColor = System.Drawing.SystemColors.ControlLight;
- this.xrTable2.LocationFloat = new DevExpress.Utils.PointFloat(0F, 0F);
- this.xrTable2.Name = "xrTable2";
- this.xrTable2.Rows.AddRange(new DevExpress.XtraReports.UI.XRTableRow[] {
+ this.Detail1.Font = new System.Drawing.Font("Arial", 11F);
+ this.Detail1.HeightF = 17F;
+ this.Detail1.Name = "Detail1";
+ this.Detail1.StylePriority.UseFont = false;
+ //
+ // xrTable2
+ //
+ this.xrTable2.BorderColor = System.Drawing.SystemColors.ControlLight;
+ this.xrTable2.LocationFloat = new DevExpress.Utils.PointFloat(0F, 0F);
+ this.xrTable2.Name = "xrTable2";
+ this.xrTable2.Rows.AddRange(new DevExpress.XtraReports.UI.XRTableRow[] {
this.xrTableRow5});
- this.xrTable2.SizeF = new System.Drawing.SizeF(650F, 17F);
- this.xrTable2.StylePriority.UseBorderColor = false;
- //
- // xrTableRow5
- //
- this.xrTableRow5.Cells.AddRange(new DevExpress.XtraReports.UI.XRTableCell[] {
+ this.xrTable2.SizeF = new System.Drawing.SizeF(650F, 17F);
+ this.xrTable2.StylePriority.UseBorderColor = false;
+ //
+ // xrTableRow5
+ //
+ this.xrTableRow5.Cells.AddRange(new DevExpress.XtraReports.UI.XRTableCell[] {
this.xrTableCell13,
this.xrTableCell16});
- this.xrTableRow5.Name = "xrTableRow5";
- this.xrTableRow5.Weight = 0.085D;
- //
- // xrTableCell13
- //
- this.xrTableCell13.BorderColor = System.Drawing.SystemColors.ControlLight;
- this.xrTableCell13.Borders = ((DevExpress.XtraPrinting.BorderSide)((DevExpress.XtraPrinting.BorderSide.Left | DevExpress.XtraPrinting.BorderSide.Bottom)));
- this.xrTableCell13.CanShrink = true;
- this.xrTableCell13.DataBindings.AddRange(new DevExpress.XtraReports.UI.XRBinding[] {
+ this.xrTableRow5.Name = "xrTableRow5";
+ this.xrTableRow5.Weight = 0.085D;
+ //
+ // xrTableCell13
+ //
+ this.xrTableCell13.BorderColor = System.Drawing.SystemColors.ControlLight;
+ this.xrTableCell13.Borders = ((DevExpress.XtraPrinting.BorderSide)((DevExpress.XtraPrinting.BorderSide.Left | DevExpress.XtraPrinting.BorderSide.Bottom)));
+ this.xrTableCell13.CanShrink = true;
+ this.xrTableCell13.DataBindings.AddRange(new DevExpress.XtraReports.UI.XRBinding[] {
new DevExpress.XtraReports.UI.XRBinding("Text", null, "InvoiceItems.AbrechnungsText")});
- this.xrTableCell13.Name = "xrTableCell13";
- this.xrTableCell13.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
- this.xrTableCell13.StylePriority.UseBorderColor = false;
- this.xrTableCell13.StylePriority.UseBorders = false;
- this.xrTableCell13.StylePriority.UseFont = false;
- this.xrTableCell13.StylePriority.UsePadding = false;
- this.xrTableCell13.Weight = 0.78314100999098546D;
- //
- // xrTableCell16
- //
- this.xrTableCell16.BorderColor = System.Drawing.SystemColors.ControlLight;
- this.xrTableCell16.Borders = ((DevExpress.XtraPrinting.BorderSide)(((DevExpress.XtraPrinting.BorderSide.Left | DevExpress.XtraPrinting.BorderSide.Right)
+ this.xrTableCell13.Name = "xrTableCell13";
+ this.xrTableCell13.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
+ this.xrTableCell13.StylePriority.UseBorderColor = false;
+ this.xrTableCell13.StylePriority.UseBorders = false;
+ this.xrTableCell13.StylePriority.UseFont = false;
+ this.xrTableCell13.StylePriority.UsePadding = false;
+ this.xrTableCell13.Weight = 0.78314100999098546D;
+ //
+ // xrTableCell16
+ //
+ this.xrTableCell16.BorderColor = System.Drawing.SystemColors.ControlLight;
+ this.xrTableCell16.Borders = ((DevExpress.XtraPrinting.BorderSide)(((DevExpress.XtraPrinting.BorderSide.Left | DevExpress.XtraPrinting.BorderSide.Right)
| DevExpress.XtraPrinting.BorderSide.Bottom)));
- this.xrTableCell16.CanShrink = true;
- this.xrTableCell16.DataBindings.AddRange(new DevExpress.XtraReports.UI.XRBinding[] {
+ this.xrTableCell16.CanShrink = true;
+ this.xrTableCell16.DataBindings.AddRange(new DevExpress.XtraReports.UI.XRBinding[] {
new DevExpress.XtraReports.UI.XRBinding("Text", null, "InvoiceItems.GrossAmountTotal", "{0:c}")});
- this.xrTableCell16.Name = "xrTableCell16";
- this.xrTableCell16.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
- this.xrTableCell16.StylePriority.UseBorderColor = false;
- this.xrTableCell16.StylePriority.UseBorders = false;
- this.xrTableCell16.StylePriority.UseFont = false;
- this.xrTableCell16.StylePriority.UsePadding = false;
- this.xrTableCell16.StylePriority.UseTextAlignment = false;
- this.xrTableCell16.Text = "xrTableCell16";
- this.xrTableCell16.TextAlignment = DevExpress.XtraPrinting.TextAlignment.TopRight;
- this.xrTableCell16.Weight = 0.21685899000901443D;
- //
- // GroupFooter1
- //
- this.GroupFooter1.Controls.AddRange(new DevExpress.XtraReports.UI.XRControl[] {
+ this.xrTableCell16.Name = "xrTableCell16";
+ this.xrTableCell16.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
+ this.xrTableCell16.StylePriority.UseBorderColor = false;
+ this.xrTableCell16.StylePriority.UseBorders = false;
+ this.xrTableCell16.StylePriority.UseFont = false;
+ this.xrTableCell16.StylePriority.UsePadding = false;
+ this.xrTableCell16.StylePriority.UseTextAlignment = false;
+ this.xrTableCell16.Text = "xrTableCell16";
+ this.xrTableCell16.TextAlignment = DevExpress.XtraPrinting.TextAlignment.TopRight;
+ this.xrTableCell16.Weight = 0.21685899000901443D;
+ //
+ // GroupFooter1
+ //
+ this.GroupFooter1.Controls.AddRange(new DevExpress.XtraReports.UI.XRControl[] {
this.xrTable3});
- this.GroupFooter1.Font = new System.Drawing.Font("Arial", 11F);
- this.GroupFooter1.HeightF = 149.7083F;
- this.GroupFooter1.Name = "GroupFooter1";
- this.GroupFooter1.StylePriority.UseFont = false;
- //
- // xrTable3
- //
- this.xrTable3.BorderColor = System.Drawing.SystemColors.ControlLight;
- this.xrTable3.LocationFloat = new DevExpress.Utils.PointFloat(0F, 0F);
- this.xrTable3.Name = "xrTable3";
- this.xrTable3.Rows.AddRange(new DevExpress.XtraReports.UI.XRTableRow[] {
+ this.GroupFooter1.Font = new System.Drawing.Font("Arial", 11F);
+ this.GroupFooter1.HeightF = 149.7083F;
+ this.GroupFooter1.Name = "GroupFooter1";
+ this.GroupFooter1.StylePriority.UseFont = false;
+ //
+ // xrTable3
+ //
+ this.xrTable3.BorderColor = System.Drawing.SystemColors.ControlLight;
+ this.xrTable3.LocationFloat = new DevExpress.Utils.PointFloat(0F, 0F);
+ this.xrTable3.Name = "xrTable3";
+ this.xrTable3.Rows.AddRange(new DevExpress.XtraReports.UI.XRTableRow[] {
this.xrTableRow32,
this.xrTableRow33,
this.xrTableRow34,
@@ -614,210 +605,220 @@ namespace BeWo.BrueckeABW
this.xrTableRow36,
this.xrTableRow37,
this.xrTableRow38});
- this.xrTable3.SizeF = new System.Drawing.SizeF(650F, 132F);
- this.xrTable3.StylePriority.UseBorderColor = false;
- //
- // xrTableRow32
- //
- this.xrTableRow32.Cells.AddRange(new DevExpress.XtraReports.UI.XRTableCell[] {
+ this.xrTable3.SizeF = new System.Drawing.SizeF(650F, 132F);
+ this.xrTable3.StylePriority.UseBorderColor = false;
+ //
+ // xrTableRow32
+ //
+ this.xrTableRow32.Cells.AddRange(new DevExpress.XtraReports.UI.XRTableCell[] {
this.xrTableCell59});
- this.xrTableRow32.Name = "xrTableRow32";
- this.xrTableRow32.Weight = 0.085D;
- //
- // xrTableCell59
- //
- this.xrTableCell59.BorderColor = System.Drawing.SystemColors.ControlLight;
- this.xrTableCell59.Borders = ((DevExpress.XtraPrinting.BorderSide)(((DevExpress.XtraPrinting.BorderSide.Left | DevExpress.XtraPrinting.BorderSide.Right)
+ this.xrTableRow32.Name = "xrTableRow32";
+ this.xrTableRow32.Weight = 0.085D;
+ //
+ // xrTableCell59
+ //
+ this.xrTableCell59.BorderColor = System.Drawing.SystemColors.ControlLight;
+ this.xrTableCell59.Borders = ((DevExpress.XtraPrinting.BorderSide)(((DevExpress.XtraPrinting.BorderSide.Left | DevExpress.XtraPrinting.BorderSide.Right)
| DevExpress.XtraPrinting.BorderSide.Bottom)));
- this.xrTableCell59.Name = "xrTableCell59";
- this.xrTableCell59.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
- this.xrTableCell59.StylePriority.UseBorderColor = false;
- this.xrTableCell59.StylePriority.UseBorders = false;
- this.xrTableCell59.Weight = 1D;
- //
- // xrTableRow33
- //
- this.xrTableRow33.Cells.AddRange(new DevExpress.XtraReports.UI.XRTableCell[] {
+ this.xrTableCell59.Name = "xrTableCell59";
+ this.xrTableCell59.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
+ this.xrTableCell59.StylePriority.UseBorderColor = false;
+ this.xrTableCell59.StylePriority.UseBorders = false;
+ this.xrTableCell59.Weight = 1D;
+ //
+ // xrTableRow33
+ //
+ this.xrTableRow33.Cells.AddRange(new DevExpress.XtraReports.UI.XRTableCell[] {
this.xrTableCell60,
this.xrTableCell61});
- this.xrTableRow33.Name = "xrTableRow33";
- this.xrTableRow33.Weight = 0.085D;
- //
- // xrTableCell60
- //
- this.xrTableCell60.Borders = ((DevExpress.XtraPrinting.BorderSide)((DevExpress.XtraPrinting.BorderSide.Left | DevExpress.XtraPrinting.BorderSide.Bottom)));
- this.xrTableCell60.Name = "xrTableCell60";
- this.xrTableCell60.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
- this.xrTableCell60.StylePriority.UseBorders = false;
- this.xrTableCell60.StylePriority.UseFont = false;
- this.xrTableCell60.StylePriority.UsePadding = false;
- this.xrTableCell60.Text = "Gesamtforderung:";
- this.xrTableCell60.Weight = 0.78314100999098546D;
- //
- // xrTableCell61
- //
- this.xrTableCell61.Borders = ((DevExpress.XtraPrinting.BorderSide)(((DevExpress.XtraPrinting.BorderSide.Left | DevExpress.XtraPrinting.BorderSide.Right)
+ this.xrTableRow33.Name = "xrTableRow33";
+ this.xrTableRow33.Weight = 0.085D;
+ //
+ // xrTableCell60
+ //
+ this.xrTableCell60.Borders = ((DevExpress.XtraPrinting.BorderSide)((DevExpress.XtraPrinting.BorderSide.Left | DevExpress.XtraPrinting.BorderSide.Bottom)));
+ this.xrTableCell60.Name = "xrTableCell60";
+ this.xrTableCell60.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
+ this.xrTableCell60.StylePriority.UseBorders = false;
+ this.xrTableCell60.StylePriority.UseFont = false;
+ this.xrTableCell60.StylePriority.UsePadding = false;
+ this.xrTableCell60.Text = "Gesamtforderung:";
+ this.xrTableCell60.Weight = 0.78314100999098546D;
+ //
+ // xrTableCell61
+ //
+ this.xrTableCell61.Borders = ((DevExpress.XtraPrinting.BorderSide)(((DevExpress.XtraPrinting.BorderSide.Left | DevExpress.XtraPrinting.BorderSide.Right)
| DevExpress.XtraPrinting.BorderSide.Bottom)));
- this.xrTableCell61.DataBindings.AddRange(new DevExpress.XtraReports.UI.XRBinding[] {
+ this.xrTableCell61.DataBindings.AddRange(new DevExpress.XtraReports.UI.XRBinding[] {
new DevExpress.XtraReports.UI.XRBinding("Text", null, "AmountRecordedFLSString")});
- this.xrTableCell61.Name = "xrTableCell61";
- this.xrTableCell61.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
- this.xrTableCell61.StylePriority.UseBorders = false;
- this.xrTableCell61.StylePriority.UseFont = false;
- this.xrTableCell61.StylePriority.UsePadding = false;
- this.xrTableCell61.StylePriority.UseTextAlignment = false;
- this.xrTableCell61.Text = "[AmountRecordedFLSString]";
- this.xrTableCell61.TextAlignment = DevExpress.XtraPrinting.TextAlignment.TopRight;
- this.xrTableCell61.Weight = 0.21685899000901443D;
- //
- // xrTableRow34
- //
- this.xrTableRow34.Cells.AddRange(new DevExpress.XtraReports.UI.XRTableCell[] {
+ this.xrTableCell61.Name = "xrTableCell61";
+ this.xrTableCell61.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
+ this.xrTableCell61.StylePriority.UseBorders = false;
+ this.xrTableCell61.StylePriority.UseFont = false;
+ this.xrTableCell61.StylePriority.UsePadding = false;
+ this.xrTableCell61.StylePriority.UseTextAlignment = false;
+ this.xrTableCell61.Text = "[AmountRecordedFLSString]";
+ this.xrTableCell61.TextAlignment = DevExpress.XtraPrinting.TextAlignment.TopRight;
+ this.xrTableCell61.Weight = 0.21685899000901443D;
+ //
+ // xrTableRow34
+ //
+ this.xrTableRow34.Cells.AddRange(new DevExpress.XtraReports.UI.XRTableCell[] {
this.xrTableCell62});
- this.xrTableRow34.Name = "xrTableRow34";
- this.xrTableRow34.Weight = 0.085D;
- //
- // xrTableCell62
- //
- this.xrTableCell62.Borders = ((DevExpress.XtraPrinting.BorderSide)(((DevExpress.XtraPrinting.BorderSide.Left | DevExpress.XtraPrinting.BorderSide.Right)
+ this.xrTableRow34.Name = "xrTableRow34";
+ this.xrTableRow34.Weight = 0.085D;
+ //
+ // xrTableCell62
+ //
+ this.xrTableCell62.Borders = ((DevExpress.XtraPrinting.BorderSide)(((DevExpress.XtraPrinting.BorderSide.Left | DevExpress.XtraPrinting.BorderSide.Right)
| DevExpress.XtraPrinting.BorderSide.Bottom)));
- this.xrTableCell62.Name = "xrTableCell62";
- this.xrTableCell62.StylePriority.UseBorders = false;
- this.xrTableCell62.Weight = 1D;
- //
- // xrTableRow35
- //
- this.xrTableRow35.Cells.AddRange(new DevExpress.XtraReports.UI.XRTableCell[] {
+ this.xrTableCell62.Name = "xrTableCell62";
+ this.xrTableCell62.StylePriority.UseBorders = false;
+ this.xrTableCell62.Weight = 1D;
+ //
+ // xrTableRow35
+ //
+ this.xrTableRow35.Cells.AddRange(new DevExpress.XtraReports.UI.XRTableCell[] {
this.xrTableCell63,
this.xrTableCell64});
- this.xrTableRow35.Name = "xrTableRow35";
- this.xrTableRow35.Weight = 0.085D;
- //
- // xrTableCell63
- //
- this.xrTableCell63.BorderColor = System.Drawing.SystemColors.ControlLight;
- this.xrTableCell63.Borders = ((DevExpress.XtraPrinting.BorderSide)((DevExpress.XtraPrinting.BorderSide.Left | DevExpress.XtraPrinting.BorderSide.Bottom)));
- this.xrTableCell63.Name = "xrTableCell63";
- this.xrTableCell63.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
- this.xrTableCell63.StylePriority.UseBorderColor = false;
- this.xrTableCell63.StylePriority.UseBorders = false;
- this.xrTableCell63.StylePriority.UseFont = false;
- this.xrTableCell63.Text = "abzüglich der geleisteten Abschlagszahlung:";
- this.xrTableCell63.Weight = 0.78314100999098568D;
- //
- // xrTableCell64
- //
- this.xrTableCell64.BorderColor = System.Drawing.SystemColors.ControlLight;
- this.xrTableCell64.Borders = ((DevExpress.XtraPrinting.BorderSide)(((DevExpress.XtraPrinting.BorderSide.Left | DevExpress.XtraPrinting.BorderSide.Right)
+ this.xrTableRow35.Name = "xrTableRow35";
+ this.xrTableRow35.Weight = 0.085D;
+ //
+ // xrTableCell63
+ //
+ this.xrTableCell63.BorderColor = System.Drawing.SystemColors.ControlLight;
+ this.xrTableCell63.Borders = ((DevExpress.XtraPrinting.BorderSide)((DevExpress.XtraPrinting.BorderSide.Left | DevExpress.XtraPrinting.BorderSide.Bottom)));
+ this.xrTableCell63.Name = "xrTableCell63";
+ this.xrTableCell63.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
+ this.xrTableCell63.StylePriority.UseBorderColor = false;
+ this.xrTableCell63.StylePriority.UseBorders = false;
+ this.xrTableCell63.StylePriority.UseFont = false;
+ this.xrTableCell63.Text = "abzüglich der geleisteten Abschlagszahlung:";
+ this.xrTableCell63.Weight = 0.78314100999098568D;
+ //
+ // xrTableCell64
+ //
+ this.xrTableCell64.BorderColor = System.Drawing.SystemColors.ControlLight;
+ this.xrTableCell64.Borders = ((DevExpress.XtraPrinting.BorderSide)(((DevExpress.XtraPrinting.BorderSide.Left | DevExpress.XtraPrinting.BorderSide.Right)
| DevExpress.XtraPrinting.BorderSide.Bottom)));
- this.xrTableCell64.DataBindings.AddRange(new DevExpress.XtraReports.UI.XRBinding[] {
+ this.xrTableCell64.DataBindings.AddRange(new DevExpress.XtraReports.UI.XRBinding[] {
new DevExpress.XtraReports.UI.XRBinding("Text", null, "AmountAdvancedPayments", "{0:c}")});
- this.xrTableCell64.Name = "xrTableCell64";
- this.xrTableCell64.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
- this.xrTableCell64.StylePriority.UseBorderColor = false;
- this.xrTableCell64.StylePriority.UseBorders = false;
- this.xrTableCell64.StylePriority.UseFont = false;
- this.xrTableCell64.StylePriority.UseTextAlignment = false;
- this.xrTableCell64.Text = "xrTableCell64";
- this.xrTableCell64.TextAlignment = DevExpress.XtraPrinting.TextAlignment.TopRight;
- this.xrTableCell64.Weight = 0.21685899000901443D;
- //
- // xrTableRow36
- //
- this.xrTableRow36.Cells.AddRange(new DevExpress.XtraReports.UI.XRTableCell[] {
+ this.xrTableCell64.Name = "xrTableCell64";
+ this.xrTableCell64.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
+ this.xrTableCell64.StylePriority.UseBorderColor = false;
+ this.xrTableCell64.StylePriority.UseBorders = false;
+ this.xrTableCell64.StylePriority.UseFont = false;
+ this.xrTableCell64.StylePriority.UseTextAlignment = false;
+ this.xrTableCell64.Text = "xrTableCell64";
+ this.xrTableCell64.TextAlignment = DevExpress.XtraPrinting.TextAlignment.TopRight;
+ this.xrTableCell64.Weight = 0.21685899000901443D;
+ //
+ // xrTableRow36
+ //
+ this.xrTableRow36.Cells.AddRange(new DevExpress.XtraReports.UI.XRTableCell[] {
this.xrTableCell65,
this.xrTableCell66});
- this.xrTableRow36.Name = "xrTableRow36";
- this.xrTableRow36.Weight = 0.085D;
- //
- // xrTableCell65
- //
- this.xrTableCell65.Borders = ((DevExpress.XtraPrinting.BorderSide)((DevExpress.XtraPrinting.BorderSide.Left | DevExpress.XtraPrinting.BorderSide.Bottom)));
- this.xrTableCell65.Name = "xrTableCell65";
- this.xrTableCell65.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
- this.xrTableCell65.StylePriority.UseBorders = false;
- this.xrTableCell65.StylePriority.UsePadding = false;
- this.xrTableCell65.Text = "abzüglich Eigenanteil:";
- this.xrTableCell65.Weight = 0.78314100999098568D;
- //
- // xrTableCell66
- //
- this.xrTableCell66.Borders = ((DevExpress.XtraPrinting.BorderSide)(((DevExpress.XtraPrinting.BorderSide.Left | DevExpress.XtraPrinting.BorderSide.Right)
+ this.xrTableRow36.Name = "xrTableRow36";
+ this.xrTableRow36.Weight = 0.085D;
+ //
+ // xrTableCell65
+ //
+ this.xrTableCell65.Borders = ((DevExpress.XtraPrinting.BorderSide)((DevExpress.XtraPrinting.BorderSide.Left | DevExpress.XtraPrinting.BorderSide.Bottom)));
+ this.xrTableCell65.Name = "xrTableCell65";
+ this.xrTableCell65.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
+ this.xrTableCell65.StylePriority.UseBorders = false;
+ this.xrTableCell65.StylePriority.UsePadding = false;
+ this.xrTableCell65.Text = "abzüglich Eigenanteil:";
+ this.xrTableCell65.Weight = 0.78314100999098568D;
+ //
+ // xrTableCell66
+ //
+ this.xrTableCell66.Borders = ((DevExpress.XtraPrinting.BorderSide)(((DevExpress.XtraPrinting.BorderSide.Left | DevExpress.XtraPrinting.BorderSide.Right)
| DevExpress.XtraPrinting.BorderSide.Bottom)));
- this.xrTableCell66.DataBindings.AddRange(new DevExpress.XtraReports.UI.XRBinding[] {
+ this.xrTableCell66.DataBindings.AddRange(new DevExpress.XtraReports.UI.XRBinding[] {
new DevExpress.XtraReports.UI.XRBinding("Text", null, "Eigenbeteiligung", "{0:c}")});
- this.xrTableCell66.Name = "xrTableCell66";
- this.xrTableCell66.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
- this.xrTableCell66.StylePriority.UseBorders = false;
- this.xrTableCell66.StylePriority.UsePadding = false;
- this.xrTableCell66.StylePriority.UseTextAlignment = false;
- this.xrTableCell66.Text = "xrTableCell15";
- this.xrTableCell66.TextAlignment = DevExpress.XtraPrinting.TextAlignment.TopRight;
- this.xrTableCell66.Weight = 0.21685899000901443D;
- //
- // xrTableRow37
- //
- this.xrTableRow37.Cells.AddRange(new DevExpress.XtraReports.UI.XRTableCell[] {
+ this.xrTableCell66.Name = "xrTableCell66";
+ this.xrTableCell66.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
+ this.xrTableCell66.StylePriority.UseBorders = false;
+ this.xrTableCell66.StylePriority.UsePadding = false;
+ this.xrTableCell66.StylePriority.UseTextAlignment = false;
+ this.xrTableCell66.Text = "xrTableCell15";
+ this.xrTableCell66.TextAlignment = DevExpress.XtraPrinting.TextAlignment.TopRight;
+ this.xrTableCell66.Weight = 0.21685899000901443D;
+ //
+ // xrTableRow37
+ //
+ this.xrTableRow37.Cells.AddRange(new DevExpress.XtraReports.UI.XRTableCell[] {
this.xrTableCell67});
- this.xrTableRow37.Name = "xrTableRow37";
- this.xrTableRow37.Weight = 0.085D;
- //
- // xrTableCell67
- //
- this.xrTableCell67.BorderColor = System.Drawing.SystemColors.ControlLight;
- this.xrTableCell67.Borders = ((DevExpress.XtraPrinting.BorderSide)(((DevExpress.XtraPrinting.BorderSide.Left | DevExpress.XtraPrinting.BorderSide.Right)
+ this.xrTableRow37.Name = "xrTableRow37";
+ this.xrTableRow37.Weight = 0.085D;
+ //
+ // xrTableCell67
+ //
+ this.xrTableCell67.BorderColor = System.Drawing.SystemColors.ControlLight;
+ this.xrTableCell67.Borders = ((DevExpress.XtraPrinting.BorderSide)(((DevExpress.XtraPrinting.BorderSide.Left | DevExpress.XtraPrinting.BorderSide.Right)
| DevExpress.XtraPrinting.BorderSide.Bottom)));
- this.xrTableCell67.Name = "xrTableCell67";
- this.xrTableCell67.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
- this.xrTableCell67.StylePriority.UseBorderColor = false;
- this.xrTableCell67.StylePriority.UseBorders = false;
- this.xrTableCell67.Weight = 1D;
- //
- // xrTableRow38
- //
- this.xrTableRow38.Cells.AddRange(new DevExpress.XtraReports.UI.XRTableCell[] {
+ this.xrTableCell67.Name = "xrTableCell67";
+ this.xrTableCell67.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
+ this.xrTableCell67.StylePriority.UseBorderColor = false;
+ this.xrTableCell67.StylePriority.UseBorders = false;
+ this.xrTableCell67.Weight = 1D;
+ //
+ // xrTableRow38
+ //
+ this.xrTableRow38.Cells.AddRange(new DevExpress.XtraReports.UI.XRTableCell[] {
this.xrTableCell68,
this.xrTableCell69});
- this.xrTableRow38.Name = "xrTableRow38";
- this.xrTableRow38.Weight = 0.15D;
- //
- // xrTableCell68
- //
- this.xrTableCell68.BorderColor = System.Drawing.SystemColors.ControlLight;
- this.xrTableCell68.Borders = ((DevExpress.XtraPrinting.BorderSide)((DevExpress.XtraPrinting.BorderSide.Left | DevExpress.XtraPrinting.BorderSide.Bottom)));
- this.xrTableCell68.Name = "xrTableCell68";
- this.xrTableCell68.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
- this.xrTableCell68.StylePriority.UseBorderColor = false;
- this.xrTableCell68.StylePriority.UseBorders = false;
- this.xrTableCell68.StylePriority.UseFont = false;
- this.xrTableCell68.Text = "Restforderung:";
- this.xrTableCell68.Weight = 0.78314100999098568D;
- //
- // xrTableCell69
- //
- this.xrTableCell69.BorderColor = System.Drawing.SystemColors.ControlLight;
- this.xrTableCell69.Borders = ((DevExpress.XtraPrinting.BorderSide)(((DevExpress.XtraPrinting.BorderSide.Left | DevExpress.XtraPrinting.BorderSide.Right)
+ this.xrTableRow38.Name = "xrTableRow38";
+ this.xrTableRow38.Weight = 0.15D;
+ //
+ // xrTableCell68
+ //
+ this.xrTableCell68.BorderColor = System.Drawing.SystemColors.ControlLight;
+ this.xrTableCell68.Borders = ((DevExpress.XtraPrinting.BorderSide)((DevExpress.XtraPrinting.BorderSide.Left | DevExpress.XtraPrinting.BorderSide.Bottom)));
+ this.xrTableCell68.Name = "xrTableCell68";
+ this.xrTableCell68.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
+ this.xrTableCell68.StylePriority.UseBorderColor = false;
+ this.xrTableCell68.StylePriority.UseBorders = false;
+ this.xrTableCell68.StylePriority.UseFont = false;
+ this.xrTableCell68.Text = "Restforderung:";
+ this.xrTableCell68.Weight = 0.78314100999098568D;
+ //
+ // xrTableCell69
+ //
+ this.xrTableCell69.BorderColor = System.Drawing.SystemColors.ControlLight;
+ this.xrTableCell69.Borders = ((DevExpress.XtraPrinting.BorderSide)(((DevExpress.XtraPrinting.BorderSide.Left | DevExpress.XtraPrinting.BorderSide.Right)
| DevExpress.XtraPrinting.BorderSide.Bottom)));
- this.xrTableCell69.DataBindings.AddRange(new DevExpress.XtraReports.UI.XRBinding[] {
+ this.xrTableCell69.DataBindings.AddRange(new DevExpress.XtraReports.UI.XRBinding[] {
new DevExpress.XtraReports.UI.XRBinding("Text", null, "Claim", "{0:c}")});
- this.xrTableCell69.Font = new System.Drawing.Font("Arial", 11F, System.Drawing.FontStyle.Bold);
- this.xrTableCell69.Name = "xrTableCell69";
- this.xrTableCell69.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
- this.xrTableCell69.StylePriority.UseBorderColor = false;
- this.xrTableCell69.StylePriority.UseBorders = false;
- this.xrTableCell69.StylePriority.UseFont = false;
- this.xrTableCell69.StylePriority.UseTextAlignment = false;
- this.xrTableCell69.Text = "xrTableCell69";
- this.xrTableCell69.TextAlignment = DevExpress.XtraPrinting.TextAlignment.TopRight;
- this.xrTableCell69.Weight = 0.21685899000901443D;
- //
- // bindingSource1
- //
- this.bindingSource1.DataSource = typeof(BeWo.Report.ReportObjects.Settlement2RO);
- //
- // Spitzabrechnung
- //
- this.Bands.AddRange(new DevExpress.XtraReports.UI.Band[] {
+ this.xrTableCell69.Font = new System.Drawing.Font("Arial", 11F, System.Drawing.FontStyle.Bold);
+ this.xrTableCell69.Name = "xrTableCell69";
+ this.xrTableCell69.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
+ this.xrTableCell69.StylePriority.UseBorderColor = false;
+ this.xrTableCell69.StylePriority.UseBorders = false;
+ this.xrTableCell69.StylePriority.UseFont = false;
+ this.xrTableCell69.StylePriority.UseTextAlignment = false;
+ this.xrTableCell69.Text = "xrTableCell69";
+ this.xrTableCell69.TextAlignment = DevExpress.XtraPrinting.TextAlignment.TopRight;
+ this.xrTableCell69.Weight = 0.21685899000901443D;
+ //
+ // bindingSource1
+ //
+ this.bindingSource1.DataSource = typeof(BeWo.Report.ReportObjects.Settlement2RO);
+ //
+ // xrLabel11
+ //
+ this.xrLabel11.Font = new System.Drawing.Font("Arial", 7F, System.Drawing.FontStyle.Underline);
+ this.xrLabel11.LocationFloat = new DevExpress.Utils.PointFloat(0F, 173.4535F);
+ this.xrLabel11.Name = "xrLabel11";
+ this.xrLabel11.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
+ this.xrLabel11.SizeF = new System.Drawing.SizeF(359.7083F, 26.54654F);
+ this.xrLabel11.StylePriority.UseFont = false;
+ this.xrLabel11.Text = "Brücke - ABW · Wilhelmstraße 37 · 52249 Eschweiler";
+ //
+ // Spitzabrechnung
+ //
+ this.Bands.AddRange(new DevExpress.XtraReports.UI.Band[] {
this.Detail,
this.ReportHeader,
this.ReportFooter,
@@ -825,26 +826,25 @@ namespace BeWo.BrueckeABW
this.bottomMarginBand1,
this.GroupHeader1,
this.DetailReport});
- this.DataSource = this.bindingSource1;
- this.ExportOptions.PrintPreview.DefaultFileName = "Spitzabrechnung";
- this.FormattingRuleSheet.AddRange(new DevExpress.XtraReports.UI.FormattingRule[] {
+ 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(85, 10, 0, 100);
- this.PageHeight = 1169;
- this.PageWidth = 827;
- this.PaperKind = System.Drawing.Printing.PaperKind.A4;
- this.Version = "13.1";
- this.Watermark.Image = ((System.Drawing.Image)(resources.GetObject("Spitzabrechnung.Watermark.Image")));
- this.Watermark.ImageViewMode = DevExpress.XtraPrinting.Drawing.ImageViewMode.Zoom;
- ((System.ComponentModel.ISupportInitialize)(this.xrRichText4)).EndInit();
- ((System.ComponentModel.ISupportInitialize)(this.xrRichText1)).EndInit();
- ((System.ComponentModel.ISupportInitialize)(this.xrTable1)).EndInit();
- ((System.ComponentModel.ISupportInitialize)(this.xrRichText3)).EndInit();
- ((System.ComponentModel.ISupportInitialize)(this.xrRichText2)).EndInit();
- ((System.ComponentModel.ISupportInitialize)(this.xrTable2)).EndInit();
- ((System.ComponentModel.ISupportInitialize)(this.xrTable3)).EndInit();
- ((System.ComponentModel.ISupportInitialize)(this.bindingSource1)).EndInit();
- ((System.ComponentModel.ISupportInitialize)(this)).EndInit();
+ this.Margins = new System.Drawing.Printing.Margins(85, 10, 0, 100);
+ this.PageHeight = 1169;
+ this.PageWidth = 827;
+ this.PaperKind = System.Drawing.Printing.PaperKind.A4;
+ this.Version = "13.2";
+ this.Watermark.Image = ((System.Drawing.Image)(resources.GetObject("Spitzabrechnung.Watermark.Image")));
+ this.Watermark.ImageViewMode = DevExpress.XtraPrinting.Drawing.ImageViewMode.Zoom;
+ ((System.ComponentModel.ISupportInitialize)(this.xrRichText1)).EndInit();
+ ((System.ComponentModel.ISupportInitialize)(this.xrTable1)).EndInit();
+ ((System.ComponentModel.ISupportInitialize)(this.xrRichText3)).EndInit();
+ ((System.ComponentModel.ISupportInitialize)(this.xrRichText2)).EndInit();
+ ((System.ComponentModel.ISupportInitialize)(this.xrTable2)).EndInit();
+ ((System.ComponentModel.ISupportInitialize)(this.xrTable3)).EndInit();
+ ((System.ComponentModel.ISupportInitialize)(this.bindingSource1)).EndInit();
+ ((System.ComponentModel.ISupportInitialize)(this)).EndInit();
}
@@ -889,7 +889,6 @@ namespace BeWo.BrueckeABW
private DevExpress.XtraReports.UI.XRLabel xrLabel2;
private DevExpress.XtraReports.UI.XRLabel xrLabel9;
private DevExpress.XtraReports.UI.XRLabel xrLabel5;
- private DevExpress.XtraReports.UI.XRRichText xrRichText4;
private DevExpress.XtraReports.UI.DetailReportBand DetailReport;
private DevExpress.XtraReports.UI.DetailBand Detail1;
private DevExpress.XtraReports.UI.XRTable xrTable2;
@@ -916,5 +915,6 @@ namespace BeWo.BrueckeABW
private DevExpress.XtraReports.UI.XRTableRow xrTableRow38;
private DevExpress.XtraReports.UI.XRTableCell xrTableCell68;
private DevExpress.XtraReports.UI.XRTableCell xrTableCell69;
+ private DevExpress.XtraReports.UI.XRLabel xrLabel11;
}
}
diff --git a/ReportImp/BrueckeABW/SettlementReport2.resx b/ReportImp/BrueckeABW/SettlementReport2.resx
index 2125f4b83..419c0e275 100644
--- a/ReportImp/BrueckeABW/SettlementReport2.resx
+++ b/ReportImp/BrueckeABW/SettlementReport2.resx
@@ -117,9 +117,6 @@
System.Resources.ResXResourceWriter, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
-
- ewBcAHIAdABmADEAXABmAGIAaQBkAGkAcwBcAGEAbgBzAGkAXABhAG4AcwBpAGMAcABnADEAMgA1ADIAXABkAGUAZgBmADAAewBcAGYAbwBuAHQAdABiAGwAewBcAGYAMABcAGYAcwB3AGkAcwBzAFwAZgBwAHIAcQAyAFwAZgBjAGgAYQByAHMAZQB0ADAAIABBAHIAaQBhAGwAOwB9AHsAXABmADEAXABmAG4AaQBsACAAVABpAG0AZQBzACAATgBlAHcAIABSAG8AbQBhAG4AOwB9AH0ADQAKAFwAdgBpAGUAdwBrAGkAbgBkADQAXAB1AGMAMQBcAHAAYQByAGQAXABsAHQAcgBwAGEAcgBcAGwAYQBuAGcAMQAwADIANABcAHUAbABcAGYAMABcAGYAcwAxADQAIABCAHIAXAAnAGYAYwBjAGsAZQAgAC0AIABBAEIAVwAgAFwAJwBiADcAIABCAGkAcwBtAGEAcgBjAGsAcwB0AHIALgAgADEAOAAgAFwAJwBiADcAIAA1ADIAMgA0ADkAIABFAHMAYwBoAHcAZQBpAGwAZQByAFwAbABhAG4AZwAxADAAMwAxAFwAdQBsAG4AbwBuAGUAXABmADEAXABmAHMAMgA0AFwAcABhAHIADQAKAH0ADQAKAA==
-
ewBcAHIAdABmADEAXABhAG4AcwBpAFwAYQBuAHMAaQBjAHAAZwAxADIANQAyAFwAZABlAGYAZgAwAHsAXABmAG8AbgB0AHQAYgBsAHsAXABmADAAXABmAHMAdwBpAHMAcwBcAGYAcAByAHEAMgBcAGYAYwBoAGEAcgBzAGUAdAAwACAAVAByAGUAYgB1AGMAaABlAHQAIABNAFMAOwB9AHsAXABmADEAXABmAG4AaQBsACAAVABpAG0AZQBzACAATgBlAHcAIABSAG8AbQBhAG4AOwB9AH0ADQAKAFwAdgBpAGUAdwBrAGkAbgBkADQAXAB1AGMAMQBcAHAAYQByAGQAXABxAGoAXAB0AHEAYwBcAHQAeAA0ADUAMwA2AFwAdABxAHIAXAB0AHgAOQAwADcAMgBcAGwAYQBuAGcAMQAwADMAMQBcAGIAXABmADAAXABmAHMAMgAyACAASQBuAGQAaQB2AGkAZAB1AGUAbABsAGUAIABBAGwAbAB0AGEAZwBzAGgAaQBsAGYAZQBuACAAZgBcACcAZgBjAHIAIABNAGUAbgBzAGMAaABlAG4AIABtAGkAdAAgAFwAcABhAHIADQAKAFwAcABhAHIAZAAgAGsAXAAnAGYANgByAHAAZQByAGwAaQBjAGgAZQByACwAIABnAGUAaQBzAHQAaQBnAGUAcgAgAHUAbgBkAC8AbwBkAGUAcgAgAHMAZQBlAGwAaQBzAGMAaABlAHIAXABwAGEAcgANAAoAQgBlAGgAaQBuAGQAZQByAHUAbgBnAFwAYgAwAFwAZgAxAFwAZgBzADIANABcAHAAYQByAA0ACgB9AA0ACgA=
@@ -3102,10 +3099,10 @@
- ewBcAHIAdABmADEAXABmAGIAaQBkAGkAcwBcAGEAbgBzAGkAXABhAG4AcwBpAGMAcABnADEAMgA1ADIAXABkAGUAZgBmADAAewBcAGYAbwBuAHQAdABiAGwAewBcAGYAMABcAGYAcwB3AGkAcwBzAFwAZgBwAHIAcQAyAFwAZgBjAGgAYQByAHMAZQB0ADAAIABUAHIAZQBiAHUAYwBoAGUAdAAgAE0AUwA7AH0AewBcAGYAMQBcAGYAbgBpAGwAIABUAGkAbQBlAHMAIABOAGUAdwAgAFIAbwBtAGEAbgA7AH0AfQANAAoAXAB2AGkAZQB3AGsAaQBuAGQANABcAHUAYwAxAFwAcABhAHIAZABcAGwAdAByAHAAYQByAFwAcQBjAFwAdABxAGMAXAB0AHgANAA1ADMANgBcAHQAcQByAFwAdAB4ADkAMAA3ADIAXABsAGEAbgBnADEAMAAzADEAXABmADAAXABmAHMAMQA2ACAAQgByAFwAJwBmAGMAYwBrAGUAIAAtACAAQQBtAGIAdQBsAGEAbgB0ACAAQgBlAHQAcgBlAHUAdABlAHMAIABXAG8AaABuAGUAbgAgAFwAJwBiADcAIABCAGkAcwBtAGEAcgBjAGsAcwB0AHIALgAgADEAOAAgAFwAJwBiADcAIAA1ADIAMgA0ADkAIABFAHMAYwBoAHcAZQBpAGwAZQByACAAXAAnAGIANwAgAEQAZQB1AHQAcwBjAGgAbABhAG4AZAAgAFwAJwBiADcAIABEAGkAcABsAC4AIABTAG8AegAuACAAUABcACcAZQA0AGQALgAgAE0AYQByAGkAYQAgAEgAYQB1AHAAdABzAC0AUABlAHQAZQByAHMAXABsAGkAbgBlACAAVQBTAHQALQBJAGQATgByAC4AOgAgAEQARQAgADIAMwA2ADcAMAA4ADcANgA3ACAAXAAnAGIANwAgAEIAYQBuAGsAdgBlAHIAYgBpAG4AZAB1AG4AZwA6ACAASwBvAG4AdABvAG4AdQBtAG0AZQByACAANwAzADMAMAAwADkAMQAwADIAMwAgAFwAJwBiADcAIABCAEwAWgAgADMAOQAxADYAMgA5ADgAMAAgAFwAJwBiADcAIABWAFIAIABCAGEAbgBrACAAXABwAGEAcgANAAoAVABlAGwAZQBmAG8AbgA6ACAAKwA0ADkAIAAoADAAKQAgADIANAAwADMAIAA4ADMAIAA3ADgAIAAwADIAMQAgAFwAJwBiADcAIABUAGUAbABlAGYAYQB4ADoAIAArADQAOQAgACgAMAApACAAMgA0ADAAMwAgADgAMwAgADcAOAAgADAAMgAyAFwAcABhAHIADQAKAEUAbQBhAGkAbAA6ACAAaQBuAGYAbwBAAGIAcgB1AGUAYwBrAGUALQBhAGIAdwAuAGQAZQAgAFwAJwBiADcAIABJAG4AdABlAHIAbgBlAHQAOgB3AHcAdwAuAGIAcgB1AGUAYwBrAGUALQBhAGIAdwAuAGQAZQBcAGYAMQBcAGYAcwAyADQAXABwAGEAcgANAAoAfQANAAoA
+ ewBcAHIAdABmADEAXABhAG4AcwBpAFwAYQBuAHMAaQBjAHAAZwAxADIANQAyAFwAZABlAGYAZgAwAHsAXABmAG8AbgB0AHQAYgBsAHsAXABmADAAXABmAHMAdwBpAHMAcwBcAGYAcAByAHEAMgBcAGYAYwBoAGEAcgBzAGUAdAAwACAAVAByAGUAYgB1AGMAaABlAHQAIABNAFMAOwB9AHsAXABmADEAXABmAG4AaQBsACAAVABpAG0AZQBzACAATgBlAHcAIABSAG8AbQBhAG4AOwB9AH0ADQAKAFwAdgBpAGUAdwBrAGkAbgBkADQAXAB1AGMAMQBcAHAAYQByAGQAXABxAGMAXAB0AHEAYwBcAHQAeAA0ADUAMwA2AFwAdABxAHIAXAB0AHgAOQAwADcAMgBcAGwAYQBuAGcAMQAwADMAMQBcAGYAMABcAGYAcwAxADYAIABCAHIAXAAnAGYAYwBjAGsAZQAgAC0AIABBAG0AYgB1AGwAYQBuAHQAIABCAGUAdAByAGUAdQB0AGUAcwAgAFcAbwBoAG4AZQBuACAAXAAnAGIANwAgAFcAaQBsAGgAZQBsAG0AcwB0AHIAYQBcACcAZABmAGUAIAAzADcAIABcACcAYgA3ACAANQAyADIANAA5ACAARQBzAGMAaAB3AGUAaQBsAGUAcgAgAFwAJwBiADcAIABEAGUAdQB0AHMAYwBoAGwAYQBuAGQAIABcACcAYgA3ACAARABpAHAAbAAuACAAUwBvAHoALgAgAFAAXAAnAGUANABkAC4AIABNAGEAcgBpAGEAIABIAGEAdQBwAHQAcwAtAFAAZQB0AGUAcgBzAFwAbABpAG4AZQAgAFUAUwB0AC0ASQBkAE4AcgAuADoAIABEAEUAIAAyADMANgA3ADAAOAA3ADYANwAgAFwAJwBiADcAIABCAGEAbgBrAHYAZQByAGIAaQBuAGQAdQBuAGcAOgAgAEsAbwBuAHQAbwBuAHUAbQBtAGUAcgAgADcAMwAzADAAMAA5ADEAMAAyADMAIABcACcAYgA3ACAAQgBMAFoAIAAzADkAMQA2ADIAOQA4ADAAIABcACcAYgA3ACAAVgBSACAAQgBhAG4AawAgAFwAcABhAHIADQAKAFQAZQBsAGUAZgBvAG4AOgAgACsANAA5ACAAKAAwACkAIAAyADQAMAAzACAAOAAzACAANwA4ACAAMAAyADEAIABcACcAYgA3ACAAVABlAGwAZQBmAGEAeAA6ACAAKwA0ADkAIAAoADAAKQAgADIANAAwADMAIAA4ADMAIAA3ADgAIAAwADIAMgBcAHAAYQByAA0ACgBFAG0AYQBpAGwAOgAgAGkAbgBmAG8AQABiAHIAdQBlAGMAawBlAC0AYQBiAHcALgBkAGUAIABcACcAYgA3ACAASQBuAHQAZQByAG4AZQB0ADoAdwB3AHcALgBiAHIAdQBlAGMAawBlAC0AYQBiAHcALgBkAGUAXABmADEAXABmAHMAMgA0AFwAcABhAHIADQAKAH0ADQAKAA==
- ewBcAHIAdABmADEAXABhAG4AcwBpAFwAYQBuAHMAaQBjAHAAZwAxADIANQAyAFwAZABlAGYAZgAwAHsAXABmAG8AbgB0AHQAYgBsAHsAXABmADAAXABmAHMAdwBpAHMAcwBcAGYAcAByAHEAMgBcAGYAYwBoAGEAcgBzAGUAdAAwACAAVAByAGUAYgB1AGMAaABlAHQAIABNAFMAOwB9AHsAXABmADEAXABmAG4AaQBsACAAVABpAG0AZQBzACAATgBlAHcAIABSAG8AbQBhAG4AOwB9AH0ADQAKAHsAXABjAG8AbABvAHIAdABiAGwAIAA7AFwAcgBlAGQAMABcAGcAcgBlAGUAbgAwAFwAYgBsAHUAZQAyADUANQA7AH0ADQAKAFwAdgBpAGUAdwBrAGkAbgBkADQAXAB1AGMAMQBcAHAAYQByAGQAXABzAGEAMgAwADAAXABzAGwAMgA3ADYAXABzAGwAbQB1AGwAdAAxAFwAbABhAG4AZwAxADAAMwAxAFwAZgAwAFwAZgBzADEANgAgAEIAcgBcACcAZgBjAGMAawBlAFwAbABpAG4AZQAgAEEAbQBiAHUAbABhAG4AdAAgAEIAZQB0AHIAZQB1AHQAZQBzACAAVwBvAGgAbgBlAG4AXABsAGkAbgBlACAAQgBpAHMAbQBhAHIAYwBrAHMAdAByAC4AIAAxADgAXABsAGkAbgBlACAANQAyADIANAA5ACAARQBzAGMAaAB3AGUAaQBsAGUAcgBcAGwAaQBuAGUAIABEAGUAdQB0AHMAYwBoAGwAYQBuAGQAXABwAGEAcgANAAoAVABlAGwAZQBmAG8AbgA6ACAAKwA0ADkAIAAoADAAKQAgADIANAAwADMAIAA4ADMAIAA3ADgAIAAwADIAMQBcAGwAaQBuAGUAIABUAGUAbABlAGYAYQB4ADoAIAArADQAOQAgACgAMAApACAAMgA0ADAAMwAgADgAMwAgADcAOAAgADAAMgAyAFwAcABhAHIADQAKAFwAcABhAHIAZAAgAEUAbQBhAGkAbAA6ACAAXABjAGYAMQBcAHUAbAAgAGkAbgBmAG8AQABiAHIAdQBlAGMAawBlAC0AYQBiAHcALgBkAGUAXABjAGYAMABcAHUAbABuAG8AbgBlAFwAbABpAG4AZQAgAEkAbgB0AGUAcgBuAGUAdAA6ACAAdwB3AHcALgBiAHIAdQBlAGMAawBlAC0AYQBiAHcALgBkAGUAXABwAGEAcgANAAoAXABmADEAXABmAHMAMgA0AFwAcABhAHIADQAKAH0ADQAKAA==
+ ewBcAHIAdABmADEAXABhAG4AcwBpAFwAYQBuAHMAaQBjAHAAZwAxADIANQAyAFwAZABlAGYAZgAwAHsAXABmAG8AbgB0AHQAYgBsAHsAXABmADAAXABmAHMAdwBpAHMAcwBcAGYAcAByAHEAMgBcAGYAYwBoAGEAcgBzAGUAdAAwACAAVAByAGUAYgB1AGMAaABlAHQAIABNAFMAOwB9AHsAXABmADEAXABmAG4AaQBsACAAVABpAG0AZQBzACAATgBlAHcAIABSAG8AbQBhAG4AOwB9AH0ADQAKAHsAXABjAG8AbABvAHIAdABiAGwAIAA7AFwAcgBlAGQAMABcAGcAcgBlAGUAbgAwAFwAYgBsAHUAZQAyADUANQA7AH0ADQAKAFwAdgBpAGUAdwBrAGkAbgBkADQAXAB1AGMAMQBcAHAAYQByAGQAXABzAGEAMgAwADAAXABzAGwAMgA3ADYAXABzAGwAbQB1AGwAdAAxAFwAbABhAG4AZwAxADAAMwAxAFwAZgAwAFwAZgBzADEANgAgAEIAcgBcACcAZgBjAGMAawBlAFwAbABpAG4AZQAgAEEAbQBiAHUAbABhAG4AdAAgAEIAZQB0AHIAZQB1AHQAZQBzACAAVwBvAGgAbgBlAG4AXABsAGkAbgBlACAAVwBpAGwAaABlAGwAbQBzAHQAcgBhAFwAJwBkAGYAZQAgADMANwBcAGwAaQBuAGUAIAA1ADIAMgA0ADkAIABFAHMAYwBoAHcAZQBpAGwAZQByAFwAbABpAG4AZQAgAEQAZQB1AHQAcwBjAGgAbABhAG4AZABcAHAAYQByAA0ACgBUAGUAbABlAGYAbwBuADoAIAArADQAOQAgACgAMAApACAAMgA0ADAAMwAgADgAMwAgADcAOAAgADAAMgAxAFwAbABpAG4AZQAgAFQAZQBsAGUAZgBhAHgAOgAgACsANAA5ACAAKAAwACkAIAAyADQAMAAzACAAOAAzACAANwA4ACAAMAAyADIAXABwAGEAcgANAAoAXABwAGEAcgBkACAARQBtAGEAaQBsADoAIABcAGMAZgAxAFwAdQBsACAAaQBuAGYAbwBAAGIAcgB1AGUAYwBrAGUALQBhAGIAdwAuAGQAZQBcAGMAZgAwAFwAdQBsAG4AbwBuAGUAXABsAGkAbgBlACAASQBuAHQAZQByAG4AZQB0ADoAIAB3AHcAdwAuAGIAcgB1AGUAYwBrAGUALQBhAGIAdwAuAGQAZQBcAGYAMQBcAGYAcwAyADQAXABwAGEAcgANAAoAfQANAAoA
17, 17
diff --git a/ReportImp/CaritasUnnaWohnungslosenhilfe/CaritasUnnaWohnungslosenhilfe.csproj b/ReportImp/CaritasUnnaWohnungslosenhilfe/CaritasUnnaWohnungslosenhilfe.csproj
index 32104cd69..1dced7591 100644
--- a/ReportImp/CaritasUnnaWohnungslosenhilfe/CaritasUnnaWohnungslosenhilfe.csproj
+++ b/ReportImp/CaritasUnnaWohnungslosenhilfe/CaritasUnnaWohnungslosenhilfe.csproj
@@ -17,7 +17,7 @@
true
full
false
- bin\Debug\
+ ..\..\Host\bin\
DEBUG;TRACE
prompt
4
diff --git a/ReportImp/FortschritteEV/FortschritteEV.csproj b/ReportImp/FortschritteEV/FortschritteEV.csproj
index 552c0bef8..b4bd9cece 100644
--- a/ReportImp/FortschritteEV/FortschritteEV.csproj
+++ b/ReportImp/FortschritteEV/FortschritteEV.csproj
@@ -17,7 +17,7 @@
true
full
false
- bin\Debug\
+ ..\..\Host\bin\
DEBUG;TRACE
prompt
4
diff --git a/ReportImp/HphBersenbrueckAtz/ServicesOverviewReport.cs b/ReportImp/HphBersenbrueckAtz/ServicesOverviewReport.cs
index 089ef8f3a..ecb03e0cc 100644
--- a/ReportImp/HphBersenbrueckAtz/ServicesOverviewReport.cs
+++ b/ReportImp/HphBersenbrueckAtz/ServicesOverviewReport.cs
@@ -40,10 +40,12 @@ namespace BeWo.HphBersenbrueckAtz
{
isFls = true;
}
-
- if ((s.ServiceCategory.Contains("Intern") || s.ServiceDescription.Contains("L8")) && !s.ServiceDescription.Contains("L6") && !s.ServiceDescription.Contains("L1"))
+ if (s.ServiceCategory.ToLower().Contains("intern") && s.ServiceCategory.ToLower().Contains("wfbm ab 1.8."))
{
-
+ te = s.Minutes / 60;
+ }
+ else if ((s.ServiceCategory.Contains("Intern") || s.ServiceDescription.Contains("L8")) && !s.ServiceDescription.Contains("L6") && !s.ServiceDescription.Contains("L1"))
+ {
te = minuten / 45;
//var rest = minuten % 45;
diff --git a/ReportImp/HphBersenbrueckFreizeitUndReisen/AuswertungEingliederungshilfe.Designer.cs b/ReportImp/HphBersenbrueckFreizeitUndReisen/AuswertungEingliederungshilfe.Designer.cs
index d12e9a2d0..28680e96f 100644
--- a/ReportImp/HphBersenbrueckFreizeitUndReisen/AuswertungEingliederungshilfe.Designer.cs
+++ b/ReportImp/HphBersenbrueckFreizeitUndReisen/AuswertungEingliederungshilfe.Designer.cs
@@ -52,9 +52,16 @@ namespace HphBersenbrueckFreizeitUndReisen
this.ReportHeader = new DevExpress.XtraReports.UI.ReportHeaderBand();
this.lblTitel = new DevExpress.XtraReports.UI.XRLabel();
this.bindingSource1 = new System.Windows.Forms.BindingSource(this.components);
+ this.xrTableGesamt = new DevExpress.XtraReports.UI.XRTable();
+ this.xrTableRowGesamt = new DevExpress.XtraReports.UI.XRTableRow();
+ this.xrTableCell5 = new DevExpress.XtraReports.UI.XRTableCell();
+ this.xrTableCell6 = new DevExpress.XtraReports.UI.XRTableCell();
+ this.xrTableCell7 = new DevExpress.XtraReports.UI.XRTableCell();
+ this.xrTableCell8 = new DevExpress.XtraReports.UI.XRTableCell();
((System.ComponentModel.ISupportInitialize)(this.xrTableDetail)).BeginInit();
((System.ComponentModel.ISupportInitialize)(this.xrTableHeader)).BeginInit();
((System.ComponentModel.ISupportInitialize)(this.bindingSource1)).BeginInit();
+ ((System.ComponentModel.ISupportInitialize)(this.xrTableGesamt)).BeginInit();
((System.ComponentModel.ISupportInitialize)(this)).BeginInit();
//
// Detail
@@ -227,9 +234,12 @@ namespace HphBersenbrueckFreizeitUndReisen
// ReportHeader
//
this.ReportHeader.Controls.AddRange(new DevExpress.XtraReports.UI.XRControl[] {
+ this.xrTableGesamt,
this.lblTitel});
- this.ReportHeader.HeightF = 50F;
+ this.ReportHeader.Font = new System.Drawing.Font("Tahoma", 9F, System.Drawing.FontStyle.Bold);
+ this.ReportHeader.HeightF = 70F;
this.ReportHeader.Name = "ReportHeader";
+ this.ReportHeader.StylePriority.UseFont = false;
//
// lblTitel
//
@@ -247,6 +257,58 @@ namespace HphBersenbrueckFreizeitUndReisen
//
this.bindingSource1.DataSource = typeof(HphBersenbrueckFreizeitUndReisen.AuswertungEingliederungshilfeRO);
//
+ // xrTableGesamt
+ //
+ this.xrTableGesamt.Borders = ((DevExpress.XtraPrinting.BorderSide)((((DevExpress.XtraPrinting.BorderSide.Left | DevExpress.XtraPrinting.BorderSide.Top)
+ | DevExpress.XtraPrinting.BorderSide.Right)
+ | DevExpress.XtraPrinting.BorderSide.Bottom)));
+ this.xrTableGesamt.LocationFloat = new DevExpress.Utils.PointFloat(0F, 45F);
+ this.xrTableGesamt.Name = "xrTableGesamt";
+ this.xrTableGesamt.Rows.AddRange(new DevExpress.XtraReports.UI.XRTableRow[] {
+ this.xrTableRowGesamt});
+ this.xrTableGesamt.SizeF = new System.Drawing.SizeF(640F, 25F);
+ this.xrTableGesamt.StylePriority.UseBackColor = false;
+ this.xrTableGesamt.StylePriority.UseBorders = false;
+ this.xrTableGesamt.StylePriority.UsePadding = false;
+ this.xrTableGesamt.StylePriority.UseTextAlignment = false;
+ this.xrTableGesamt.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleCenter;
+ //
+ // xrTableRowGesamt
+ //
+ this.xrTableRowGesamt.Cells.AddRange(new DevExpress.XtraReports.UI.XRTableCell[] {
+ this.xrTableCell5,
+ this.xrTableCell6,
+ this.xrTableCell7,
+ this.xrTableCell8});
+ this.xrTableRowGesamt.Name = "xrTableRowGesamt";
+ this.xrTableRowGesamt.Weight = 1.25D;
+ //
+ // xrTableCell5
+ //
+ this.xrTableCell5.Name = "xrTableCell5";
+ this.xrTableCell5.Weight = 0.045287729552887165D;
+ //
+ // xrTableCell6
+ //
+ this.xrTableCell6.Name = "xrTableCell6";
+ this.xrTableCell6.StylePriority.UseBackColor = false;
+ this.xrTableCell6.Weight = 0.099633007057251324D;
+ //
+ // xrTableCell7
+ //
+ this.xrTableCell7.Name = "xrTableCell7";
+ this.xrTableCell7.StylePriority.UseBackColor = false;
+ this.xrTableCell7.Weight = 0.072460370260993362D;
+ //
+ // xrTableCell8
+ //
+ this.xrTableCell8.BorderWidth = 1F;
+ this.xrTableCell8.Name = "xrTableCell8";
+ this.xrTableCell8.StylePriority.UseBackColor = false;
+ this.xrTableCell8.StylePriority.UseBorders = false;
+ this.xrTableCell8.StylePriority.UseBorderWidth = false;
+ this.xrTableCell8.Weight = 0.36230185317541913D;
+ //
// AuswertungEingliederungshilfe
//
this.Bands.AddRange(new DevExpress.XtraReports.UI.Band[] {
@@ -273,6 +335,7 @@ namespace HphBersenbrueckFreizeitUndReisen
((System.ComponentModel.ISupportInitialize)(this.xrTableDetail)).EndInit();
((System.ComponentModel.ISupportInitialize)(this.xrTableHeader)).EndInit();
((System.ComponentModel.ISupportInitialize)(this.bindingSource1)).EndInit();
+ ((System.ComponentModel.ISupportInitialize)(this.xrTableGesamt)).EndInit();
((System.ComponentModel.ISupportInitialize)(this)).EndInit();
}
@@ -301,5 +364,11 @@ namespace HphBersenbrueckFreizeitUndReisen
private DevExpress.XtraReports.UI.GroupHeaderBand GroupHeader2;
private DevExpress.XtraReports.UI.ReportHeaderBand ReportHeader;
private DevExpress.XtraReports.UI.XRLabel lblTitel;
+ private DevExpress.XtraReports.UI.XRTable xrTableGesamt;
+ private DevExpress.XtraReports.UI.XRTableRow xrTableRowGesamt;
+ private DevExpress.XtraReports.UI.XRTableCell xrTableCell5;
+ private DevExpress.XtraReports.UI.XRTableCell xrTableCell6;
+ private DevExpress.XtraReports.UI.XRTableCell xrTableCell7;
+ private DevExpress.XtraReports.UI.XRTableCell xrTableCell8;
}
}
diff --git a/ReportImp/HphBersenbrueckFreizeitUndReisen/AuswertungEingliederungshilfe.cs b/ReportImp/HphBersenbrueckFreizeitUndReisen/AuswertungEingliederungshilfe.cs
index ee0e4c309..78bd17bec 100644
--- a/ReportImp/HphBersenbrueckFreizeitUndReisen/AuswertungEingliederungshilfe.cs
+++ b/ReportImp/HphBersenbrueckFreizeitUndReisen/AuswertungEingliederungshilfe.cs
@@ -25,7 +25,6 @@ namespace HphBersenbrueckFreizeitUndReisen
[IDSpecificClass(Identifier = "AuswertungEingliederungshilfe")]
public partial class AuswertungEingliederungshilfe : DevExpress.XtraReports.UI.XtraReport, IBeWoReport
{
-
public AuswertungEingliederungshilfe()
{
InitializeComponent();
@@ -38,9 +37,7 @@ namespace HphBersenbrueckFreizeitUndReisen
this.bindingSource1.DataSource = ro;
}
-
-
-
+
private AuswertungEingliederungshilfeRO CreateRo(QueryRO queryRo)
{
AuswertungEingliederungshilfeRO result = new AuswertungEingliederungshilfeRO();
@@ -110,6 +107,7 @@ namespace HphBersenbrueckFreizeitUndReisen
var dict = CreateHeader(result, reportStart, reportEnde);
CreateDataRows(result, dict);
+ CreateSummenRows(result, dict, reportStart, reportEnde);
return result;
}
@@ -162,6 +160,74 @@ namespace HphBersenbrueckFreizeitUndReisen
xrTableDetail.EndInit();
}
+ private void CreateSummenRows(AuswertungEingliederungshilfeRO result, Dictionary dict, DateTime reportStart, DateTime reportEnd)
+ {
+ for (int i = 4; i < xrTableRowDetail.Cells.Count; i++)
+ {
+ AddNewDataCell(xrTableRowGesamt, "", Color.Transparent);
+ }
+
+ xrTableGesamt.Width = xrTableRowGesamt.Cells.Count * 100;
+
+ for (int i = xrTableRowGesamt.Cells.Count - 1; i > 4; i--)
+ {
+ xrTableRowGesamt.Cells[i].Weight = (i * 100);
+ }
+ for (int i = 0; i < xrTableRowGesamt.Cells.Count; i++)
+ {
+ xrTableRowGesamt.Cells[i].Weight = 100;
+ }
+ xrTableRowGesamt.Cells[0].Width = 60;
+
+ decimal gesamtStd = 0;
+ decimal gesamtKontingent = 0;
+ decimal gesamtVerbraucht = 0;
+
+ foreach (var dro in result.DetailList)
+ {
+ gesamtStd += dro.GesamtStunden;
+ gesamtKontingent += dro.Kontingent;
+ gesamtVerbraucht += dro.Bereitsverbraucht;
+ }
+
+ decimal nochOffen = gesamtKontingent - gesamtVerbraucht;
+
+ if (xrTableRowGesamt.Cells.Count > 4)
+ {
+ xrTableRowGesamt.Cells[xrTableRowDetail.Cells.Count - 1].Text = String.Format("{0:0.00}", nochOffen);
+ xrTableRowGesamt.Cells[xrTableRowDetail.Cells.Count - 2].Text =
+ String.Format("{0:0.00}", gesamtVerbraucht);
+ xrTableRowGesamt.Cells[xrTableRowDetail.Cells.Count - 3].Text =
+ String.Format("{0:0.00}", gesamtKontingent);
+ xrTableRowGesamt.Cells[xrTableRowDetail.Cells.Count - 4].Text = String.Format("{0:0.00}", gesamtStd);
+ }
+
+
+ DateTime datum = reportStart;
+
+ int index = 4;
+ while (datum <= reportEnd)
+ {
+ String key = String.Format("{0:yyyyMM}", datum);
+
+ if (index < xrTableRowGesamt.Cells.Count)
+ {
+ decimal gesamtStdMonat = 0;
+ foreach (var dro in result.DetailList)
+ {
+ if (dro.StundenMonat2Wert.ContainsKey(key))
+ {
+ gesamtStdMonat += dro.StundenMonat2Wert[key];
+ }
+ }
+ xrTableRowGesamt.Cells[index].Text = String.Format("{0:0.00}", gesamtStdMonat);
+ }
+ index++;
+ datum = datum.AddMonths(1);
+ }
+
+ }
+
private void CreateDataRowCells(AuswertungEingliederungshilfeDetailRO detail, XRTableRow row, Dictionary dict)
{
AddNewDataCell(row, detail.Nummer, Color.Transparent);
@@ -225,7 +291,7 @@ namespace HphBersenbrueckFreizeitUndReisen
}
return null;
- }
+ }
private Dictionary CreateHeader(AuswertungEingliederungshilfeRO result, DateTime reportStart, DateTime reportEnde)
{
@@ -259,7 +325,7 @@ namespace HphBersenbrueckFreizeitUndReisen
xrTableHeader.Width = xrTableRowHeader.Cells.Count * 100;
- if (xrTableHeader.Width > this.PageWidth + 100)
+ if (xrTableHeader.Width > this.PageWidth - 100)
{
this.PageWidth = xrTableHeader.Width + 100;
}
diff --git a/ReportImp/HphBersenbrueckFreizeitUndReisen/AuswertungFahrtkosten.Designer.cs b/ReportImp/HphBersenbrueckFreizeitUndReisen/AuswertungFahrtkosten.Designer.cs
index a54472b22..306287889 100644
--- a/ReportImp/HphBersenbrueckFreizeitUndReisen/AuswertungFahrtkosten.Designer.cs
+++ b/ReportImp/HphBersenbrueckFreizeitUndReisen/AuswertungFahrtkosten.Designer.cs
@@ -30,6 +30,23 @@ namespace HphBersenbrueckFreizeitUndReisen
private void InitializeComponent()
{
this.components = new System.ComponentModel.Container();
+ 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();
+ DevExpress.XtraReports.UI.XRSummary xrSummary5 = new DevExpress.XtraReports.UI.XRSummary();
+ DevExpress.XtraReports.UI.XRSummary xrSummary6 = new DevExpress.XtraReports.UI.XRSummary();
+ DevExpress.XtraReports.UI.XRSummary xrSummary7 = new DevExpress.XtraReports.UI.XRSummary();
+ DevExpress.XtraReports.UI.XRSummary xrSummary8 = new DevExpress.XtraReports.UI.XRSummary();
+ DevExpress.XtraReports.UI.XRSummary xrSummary9 = new DevExpress.XtraReports.UI.XRSummary();
+ DevExpress.XtraReports.UI.XRSummary xrSummary10 = new DevExpress.XtraReports.UI.XRSummary();
+ DevExpress.XtraReports.UI.XRSummary xrSummary11 = new DevExpress.XtraReports.UI.XRSummary();
+ DevExpress.XtraReports.UI.XRSummary xrSummary12 = new DevExpress.XtraReports.UI.XRSummary();
+ DevExpress.XtraReports.UI.XRSummary xrSummary13 = new DevExpress.XtraReports.UI.XRSummary();
+ DevExpress.XtraReports.UI.XRSummary xrSummary14 = new DevExpress.XtraReports.UI.XRSummary();
+ DevExpress.XtraReports.UI.XRSummary xrSummary15 = new DevExpress.XtraReports.UI.XRSummary();
+ DevExpress.XtraReports.UI.XRSummary xrSummary16 = new DevExpress.XtraReports.UI.XRSummary();
+ DevExpress.XtraReports.UI.XRSummary xrSummary17 = new DevExpress.XtraReports.UI.XRSummary();
this.Detail = new DevExpress.XtraReports.UI.DetailBand();
this.xrTableDetail = new DevExpress.XtraReports.UI.XRTable();
this.xrTableRowDetail = new DevExpress.XtraReports.UI.XRTableRow();
@@ -91,14 +108,32 @@ namespace HphBersenbrueckFreizeitUndReisen
this.fieldQ3 = new DevExpress.XtraReports.UI.CalculatedField();
this.fieldGesamt = new DevExpress.XtraReports.UI.CalculatedField();
this.fieldQ4 = new DevExpress.XtraReports.UI.CalculatedField();
- this.bindingSource1 = new System.Windows.Forms.BindingSource(this.components);
this.GroupHeader1 = new DevExpress.XtraReports.UI.GroupHeaderBand();
this.xrTable1 = new DevExpress.XtraReports.UI.XRTable();
+ this.xrTableRow2 = new DevExpress.XtraReports.UI.XRTableRow();
+ this.xrTableCell43 = new DevExpress.XtraReports.UI.XRTableCell();
+ this.xrTableCell61 = new DevExpress.XtraReports.UI.XRTableCell();
+ this.cellKmPreisJan = new DevExpress.XtraReports.UI.XRTableCell();
+ this.xrTableCell63 = new DevExpress.XtraReports.UI.XRTableCell();
+ 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.xrTableCell72 = new DevExpress.XtraReports.UI.XRTableCell();
+ this.xrTableCell73 = new DevExpress.XtraReports.UI.XRTableCell();
+ this.xrTableCell74 = new DevExpress.XtraReports.UI.XRTableCell();
+ this.xrTableCell75 = new DevExpress.XtraReports.UI.XRTableCell();
+ this.xrTableCell76 = new DevExpress.XtraReports.UI.XRTableCell();
+ this.xrTableCell77 = new DevExpress.XtraReports.UI.XRTableCell();
+ this.xrTableCell78 = new DevExpress.XtraReports.UI.XRTableCell();
this.xrTableRow1 = new DevExpress.XtraReports.UI.XRTableRow();
this.xrTableCell40 = new DevExpress.XtraReports.UI.XRTableCell();
- this.xrTableCell41 = new DevExpress.XtraReports.UI.XRTableCell();
this.xrTableCell42 = new DevExpress.XtraReports.UI.XRTableCell();
- this.xrTableCell43 = new DevExpress.XtraReports.UI.XRTableCell();
+ this.cellSummeJan = new DevExpress.XtraReports.UI.XRTableCell();
this.xrTableCell44 = new DevExpress.XtraReports.UI.XRTableCell();
this.xrTableCell45 = new DevExpress.XtraReports.UI.XRTableCell();
this.xrTableCell46 = new DevExpress.XtraReports.UI.XRTableCell();
@@ -115,10 +150,28 @@ namespace HphBersenbrueckFreizeitUndReisen
this.xrTableCell57 = new DevExpress.XtraReports.UI.XRTableCell();
this.xrTableCell58 = new DevExpress.XtraReports.UI.XRTableCell();
this.xrTableCell59 = new DevExpress.XtraReports.UI.XRTableCell();
+ this.fieldKmPreisJan = new DevExpress.XtraReports.UI.CalculatedField();
+ this.fieldKmPreisFeb = new DevExpress.XtraReports.UI.CalculatedField();
+ this.fieldKmPreisMar = new DevExpress.XtraReports.UI.CalculatedField();
+ this.fieldKmPreisQ1 = new DevExpress.XtraReports.UI.CalculatedField();
+ this.fieldKmPreisOkt = new DevExpress.XtraReports.UI.CalculatedField();
+ this.fieldKmPreisApr = new DevExpress.XtraReports.UI.CalculatedField();
+ this.fieldKmPreisAug = new DevExpress.XtraReports.UI.CalculatedField();
+ this.fieldKmPreisSep = new DevExpress.XtraReports.UI.CalculatedField();
+ this.fieldKmPreisNov = new DevExpress.XtraReports.UI.CalculatedField();
+ this.fieldKmPreisDez = new DevExpress.XtraReports.UI.CalculatedField();
+ this.fieldKmPreisQ2 = new DevExpress.XtraReports.UI.CalculatedField();
+ this.fieldKmPreisQ3 = new DevExpress.XtraReports.UI.CalculatedField();
+ this.fieldKmPreisQ4 = new DevExpress.XtraReports.UI.CalculatedField();
+ this.fieldKmPreisMai = new DevExpress.XtraReports.UI.CalculatedField();
+ this.fieldKmPreisJun = new DevExpress.XtraReports.UI.CalculatedField();
+ this.fieldKmPreisJul = new DevExpress.XtraReports.UI.CalculatedField();
+ this.fieldKmPreisGesamt = new DevExpress.XtraReports.UI.CalculatedField();
+ this.bindingSource1 = new System.Windows.Forms.BindingSource(this.components);
((System.ComponentModel.ISupportInitialize)(this.xrTableDetail)).BeginInit();
((System.ComponentModel.ISupportInitialize)(this.xrTableHeader)).BeginInit();
- ((System.ComponentModel.ISupportInitialize)(this.bindingSource1)).BeginInit();
((System.ComponentModel.ISupportInitialize)(this.xrTable1)).BeginInit();
+ ((System.ComponentModel.ISupportInitialize)(this.bindingSource1)).BeginInit();
((System.ComponentModel.ISupportInitialize)(this)).BeginInit();
//
// Detail
@@ -175,6 +228,10 @@ namespace HphBersenbrueckFreizeitUndReisen
this.xrTableCell23.DataBindings.AddRange(new DevExpress.XtraReports.UI.XRBinding[] {
new DevExpress.XtraReports.UI.XRBinding("Text", null, "DetailList.Mitarbeiter")});
this.xrTableCell23.Name = "xrTableCell23";
+ this.xrTableCell23.Padding = new DevExpress.XtraPrinting.PaddingInfo(3, 0, 0, 0, 100F);
+ this.xrTableCell23.StylePriority.UsePadding = false;
+ this.xrTableCell23.StylePriority.UseTextAlignment = false;
+ this.xrTableCell23.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleLeft;
this.xrTableCell23.Weight = 0.051451150299989729D;
//
// xrTableCell24
@@ -182,6 +239,10 @@ namespace HphBersenbrueckFreizeitUndReisen
this.xrTableCell24.DataBindings.AddRange(new DevExpress.XtraReports.UI.XRBinding[] {
new DevExpress.XtraReports.UI.XRBinding("Text", null, "DetailList.KlientName")});
this.xrTableCell24.Name = "xrTableCell24";
+ this.xrTableCell24.Padding = new DevExpress.XtraPrinting.PaddingInfo(3, 0, 0, 0, 100F);
+ this.xrTableCell24.StylePriority.UsePadding = false;
+ this.xrTableCell24.StylePriority.UseTextAlignment = false;
+ this.xrTableCell24.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleLeft;
this.xrTableCell24.Weight = 0.051451150299989729D;
//
// xrTableCell22
@@ -189,6 +250,10 @@ namespace HphBersenbrueckFreizeitUndReisen
this.xrTableCell22.DataBindings.AddRange(new DevExpress.XtraReports.UI.XRBinding[] {
new DevExpress.XtraReports.UI.XRBinding("Text", null, "DetailList.Kostentraeger")});
this.xrTableCell22.Name = "xrTableCell22";
+ this.xrTableCell22.Padding = new DevExpress.XtraPrinting.PaddingInfo(3, 0, 0, 0, 100F);
+ this.xrTableCell22.StylePriority.UsePadding = false;
+ this.xrTableCell22.StylePriority.UseTextAlignment = false;
+ this.xrTableCell22.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleLeft;
this.xrTableCell22.Weight = 0.051451150299989729D;
//
// xrTableCell26
@@ -389,15 +454,23 @@ namespace HphBersenbrueckFreizeitUndReisen
// xrTableCell2
//
this.xrTableCell2.Name = "xrTableCell2";
+ this.xrTableCell2.Padding = new DevExpress.XtraPrinting.PaddingInfo(3, 0, 0, 0, 100F);
+ this.xrTableCell2.StylePriority.UsePadding = false;
+ this.xrTableCell2.StylePriority.UseTextAlignment = false;
this.xrTableCell2.Text = "Mitarbeiter";
+ this.xrTableCell2.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleLeft;
this.xrTableCell2.Weight = 0.13586319206016073D;
//
// xrTableCell5
//
this.xrTableCell5.Multiline = true;
this.xrTableCell5.Name = "xrTableCell5";
+ this.xrTableCell5.Padding = new DevExpress.XtraPrinting.PaddingInfo(3, 0, 0, 0, 100F);
this.xrTableCell5.StylePriority.UseBackColor = false;
+ this.xrTableCell5.StylePriority.UsePadding = false;
+ this.xrTableCell5.StylePriority.UseTextAlignment = false;
this.xrTableCell5.Text = "Betreute";
+ this.xrTableCell5.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleLeft;
this.xrTableCell5.Weight = 0.13586319047566994D;
//
// cellBemerkung
@@ -405,10 +478,14 @@ namespace HphBersenbrueckFreizeitUndReisen
this.cellBemerkung.BorderWidth = 1F;
this.cellBemerkung.Multiline = true;
this.cellBemerkung.Name = "cellBemerkung";
+ this.cellBemerkung.Padding = new DevExpress.XtraPrinting.PaddingInfo(3, 0, 0, 0, 100F);
this.cellBemerkung.StylePriority.UseBackColor = false;
this.cellBemerkung.StylePriority.UseBorders = false;
this.cellBemerkung.StylePriority.UseBorderWidth = false;
+ this.cellBemerkung.StylePriority.UsePadding = false;
+ this.cellBemerkung.StylePriority.UseTextAlignment = false;
this.cellBemerkung.Text = "Kostenträger\r\n";
+ this.cellBemerkung.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleLeft;
this.cellBemerkung.Weight = 0.13586319625390542D;
//
// xrTableCell3
@@ -680,16 +757,12 @@ namespace HphBersenbrueckFreizeitUndReisen
this.fieldQ4.FieldType = DevExpress.XtraReports.UI.FieldType.Decimal;
this.fieldQ4.Name = "fieldQ4";
//
- // bindingSource1
- //
- this.bindingSource1.DataSource = typeof(HphBersenbrueckFreizeitUndReisen.AuswertungFahrtkostenRO);
- //
// GroupHeader1
//
this.GroupHeader1.Controls.AddRange(new DevExpress.XtraReports.UI.XRControl[] {
this.xrTable1});
this.GroupHeader1.Font = new System.Drawing.Font("Tahoma", 9F, System.Drawing.FontStyle.Bold);
- this.GroupHeader1.HeightF = 40F;
+ this.GroupHeader1.HeightF = 80F;
this.GroupHeader1.Level = 1;
this.GroupHeader1.Name = "GroupHeader1";
this.GroupHeader1.StylePriority.UseFont = false;
@@ -702,21 +775,180 @@ namespace HphBersenbrueckFreizeitUndReisen
this.xrTable1.LocationFloat = new DevExpress.Utils.PointFloat(0F, 0F);
this.xrTable1.Name = "xrTable1";
this.xrTable1.Rows.AddRange(new DevExpress.XtraReports.UI.XRTableRow[] {
+ this.xrTableRow2,
this.xrTableRow1});
- this.xrTable1.SizeF = new System.Drawing.SizeF(1690F, 40F);
+ this.xrTable1.SizeF = new System.Drawing.SizeF(1690F, 80F);
this.xrTable1.StylePriority.UseBackColor = false;
this.xrTable1.StylePriority.UseBorders = false;
this.xrTable1.StylePriority.UsePadding = false;
this.xrTable1.StylePriority.UseTextAlignment = false;
this.xrTable1.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleCenter;
//
+ // xrTableRow2
+ //
+ this.xrTableRow2.Cells.AddRange(new DevExpress.XtraReports.UI.XRTableCell[] {
+ this.xrTableCell43,
+ this.xrTableCell61,
+ this.cellKmPreisJan,
+ this.xrTableCell63,
+ this.xrTableCell64,
+ this.xrTableCell65,
+ this.xrTableCell66,
+ this.xrTableCell67,
+ this.xrTableCell68,
+ this.xrTableCell69,
+ this.xrTableCell70,
+ this.xrTableCell71,
+ this.xrTableCell72,
+ this.xrTableCell73,
+ this.xrTableCell74,
+ this.xrTableCell75,
+ this.xrTableCell76,
+ this.xrTableCell77,
+ this.xrTableCell78});
+ this.xrTableRow2.Name = "xrTableRow2";
+ this.xrTableRow2.Weight = 2D;
+ //
+ // xrTableCell43
+ //
+ this.xrTableCell43.Name = "xrTableCell43";
+ this.xrTableCell43.Padding = new DevExpress.XtraPrinting.PaddingInfo(3, 0, 0, 0, 100F);
+ this.xrTableCell43.StylePriority.UsePadding = false;
+ this.xrTableCell43.StylePriority.UseTextAlignment = false;
+ this.xrTableCell43.Text = "(Gesamtkilometer*0,27 Euro)";
+ this.xrTableCell43.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleLeft;
+ this.xrTableCell43.Weight = 0.27172638582107111D;
+ //
+ // xrTableCell61
+ //
+ this.xrTableCell61.Name = "xrTableCell61";
+ this.xrTableCell61.Weight = 0.135863192968665D;
+ //
+ // cellKmPreisJan
+ //
+ this.cellKmPreisJan.DataBindings.AddRange(new DevExpress.XtraReports.UI.XRBinding[] {
+ new DevExpress.XtraReports.UI.XRBinding("Text", null, "DetailList.fieldKmPreisJan", "{0:c}")});
+ this.cellKmPreisJan.Name = "cellKmPreisJan";
+ this.cellKmPreisJan.Weight = 0.0634028239109037D;
+ //
+ // xrTableCell63
+ //
+ this.xrTableCell63.DataBindings.AddRange(new DevExpress.XtraReports.UI.XRBinding[] {
+ new DevExpress.XtraReports.UI.XRBinding("Text", null, "DetailList.fieldKmPreisFeb", "{0:c}")});
+ this.xrTableCell63.Name = "xrTableCell63";
+ this.xrTableCell63.Weight = 0.063402823910903683D;
+ //
+ // xrTableCell64
+ //
+ this.xrTableCell64.DataBindings.AddRange(new DevExpress.XtraReports.UI.XRBinding[] {
+ new DevExpress.XtraReports.UI.XRBinding("Text", null, "DetailList.fieldKmPreisMar", "{0:c}")});
+ this.xrTableCell64.Name = "xrTableCell64";
+ this.xrTableCell64.Weight = 0.063402824066715879D;
+ //
+ // xrTableCell65
+ //
+ this.xrTableCell65.DataBindings.AddRange(new DevExpress.XtraReports.UI.XRBinding[] {
+ new DevExpress.XtraReports.UI.XRBinding("Text", null, "DetailList.fieldKmPreisQ1", "{0:c}")});
+ this.xrTableCell65.Name = "xrTableCell65";
+ this.xrTableCell65.Weight = 0.072460370083724954D;
+ //
+ // xrTableCell66
+ //
+ this.xrTableCell66.DataBindings.AddRange(new DevExpress.XtraReports.UI.XRBinding[] {
+ new DevExpress.XtraReports.UI.XRBinding("Text", null, "DetailList.fieldKmPreisApr", "{0:c}")});
+ this.xrTableCell66.Name = "xrTableCell66";
+ this.xrTableCell66.Weight = 0.063402823832997612D;
+ //
+ // xrTableCell67
+ //
+ this.xrTableCell67.DataBindings.AddRange(new DevExpress.XtraReports.UI.XRBinding[] {
+ new DevExpress.XtraReports.UI.XRBinding("Text", null, "DetailList.fieldKmPreisMai", "{0:c}")});
+ this.xrTableCell67.Name = "xrTableCell67";
+ this.xrTableCell67.Weight = 0.063402823910903683D;
+ //
+ // xrTableCell68
+ //
+ this.xrTableCell68.DataBindings.AddRange(new DevExpress.XtraReports.UI.XRBinding[] {
+ new DevExpress.XtraReports.UI.XRBinding("Text", null, "DetailList.fieldKmPreisJun", "{0:c}")});
+ this.xrTableCell68.Name = "xrTableCell68";
+ this.xrTableCell68.Weight = 0.063402824066715879D;
+ //
+ // xrTableCell69
+ //
+ this.xrTableCell69.DataBindings.AddRange(new DevExpress.XtraReports.UI.XRBinding[] {
+ new DevExpress.XtraReports.UI.XRBinding("Text", null, "DetailList.fieldKmPreisQ2", "{0:c}")});
+ this.xrTableCell69.Name = "xrTableCell69";
+ this.xrTableCell69.Weight = 0.072460370083724954D;
+ //
+ // xrTableCell70
+ //
+ this.xrTableCell70.DataBindings.AddRange(new DevExpress.XtraReports.UI.XRBinding[] {
+ new DevExpress.XtraReports.UI.XRBinding("Text", null, "DetailList.fieldKmPreisJul", "{0:c}")});
+ this.xrTableCell70.Name = "xrTableCell70";
+ this.xrTableCell70.Weight = 0.063402823832997585D;
+ //
+ // xrTableCell71
+ //
+ this.xrTableCell71.DataBindings.AddRange(new DevExpress.XtraReports.UI.XRBinding[] {
+ new DevExpress.XtraReports.UI.XRBinding("Text", null, "DetailList.fieldKmPreisAug", "{0:c}")});
+ this.xrTableCell71.Name = "xrTableCell71";
+ this.xrTableCell71.Weight = 0.063402823910903738D;
+ //
+ // xrTableCell72
+ //
+ this.xrTableCell72.DataBindings.AddRange(new DevExpress.XtraReports.UI.XRBinding[] {
+ new DevExpress.XtraReports.UI.XRBinding("Text", null, "DetailList.fieldKmPreisSep", "{0:c}")});
+ this.xrTableCell72.Name = "xrTableCell72";
+ this.xrTableCell72.Weight = 0.063402824066715935D;
+ //
+ // xrTableCell73
+ //
+ this.xrTableCell73.DataBindings.AddRange(new DevExpress.XtraReports.UI.XRBinding[] {
+ new DevExpress.XtraReports.UI.XRBinding("Text", null, "DetailList.fieldKmPreisQ3", "{0:c}")});
+ this.xrTableCell73.Name = "xrTableCell73";
+ this.xrTableCell73.Weight = 0.0724603700447719D;
+ //
+ // xrTableCell74
+ //
+ this.xrTableCell74.DataBindings.AddRange(new DevExpress.XtraReports.UI.XRBinding[] {
+ new DevExpress.XtraReports.UI.XRBinding("Text", null, "DetailList.fieldKmPreisOkt", "{0:c}")});
+ this.xrTableCell74.Name = "xrTableCell74";
+ this.xrTableCell74.Weight = 0.063402823794044549D;
+ //
+ // xrTableCell75
+ //
+ this.xrTableCell75.DataBindings.AddRange(new DevExpress.XtraReports.UI.XRBinding[] {
+ new DevExpress.XtraReports.UI.XRBinding("Text", null, "DetailList.fieldKmPreisNov", "{0:c}")});
+ this.xrTableCell75.Name = "xrTableCell75";
+ this.xrTableCell75.Weight = 0.063402823832997585D;
+ //
+ // xrTableCell76
+ //
+ this.xrTableCell76.DataBindings.AddRange(new DevExpress.XtraReports.UI.XRBinding[] {
+ new DevExpress.XtraReports.UI.XRBinding("Text", null, "DetailList.fieldKmPreisDez", "{0:c}")});
+ this.xrTableCell76.Name = "xrTableCell76";
+ this.xrTableCell76.Weight = 0.063402823910903683D;
+ //
+ // xrTableCell77
+ //
+ this.xrTableCell77.DataBindings.AddRange(new DevExpress.XtraReports.UI.XRBinding[] {
+ new DevExpress.XtraReports.UI.XRBinding("Text", null, "DetailList.fieldKmPreisQ4", "{0:c}")});
+ this.xrTableCell77.Name = "xrTableCell77";
+ this.xrTableCell77.Weight = 0.072460370161631107D;
+ //
+ // xrTableCell78
+ //
+ this.xrTableCell78.DataBindings.AddRange(new DevExpress.XtraReports.UI.XRBinding[] {
+ new DevExpress.XtraReports.UI.XRBinding("Text", null, "DetailList.fieldKmPreisGesamt", "{0:c}")});
+ this.xrTableCell78.Name = "xrTableCell78";
+ this.xrTableCell78.Weight = 0.072460370161631107D;
+ //
// xrTableRow1
//
this.xrTableRow1.Cells.AddRange(new DevExpress.XtraReports.UI.XRTableCell[] {
this.xrTableCell40,
- this.xrTableCell41,
this.xrTableCell42,
- this.xrTableCell43,
+ this.cellSummeJan,
this.xrTableCell44,
this.xrTableCell45,
this.xrTableCell46,
@@ -739,14 +971,12 @@ namespace HphBersenbrueckFreizeitUndReisen
// xrTableCell40
//
this.xrTableCell40.Name = "xrTableCell40";
- this.xrTableCell40.Weight = 0.13586319206016073D;
- //
- // xrTableCell41
- //
- this.xrTableCell41.Multiline = true;
- this.xrTableCell41.Name = "xrTableCell41";
- this.xrTableCell41.StylePriority.UseBackColor = false;
- this.xrTableCell41.Weight = 0.13586319047566994D;
+ this.xrTableCell40.Padding = new DevExpress.XtraPrinting.PaddingInfo(3, 0, 0, 0, 100F);
+ this.xrTableCell40.StylePriority.UsePadding = false;
+ this.xrTableCell40.StylePriority.UseTextAlignment = false;
+ this.xrTableCell40.Text = "Gesamtkilometer";
+ this.xrTableCell40.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleLeft;
+ this.xrTableCell40.Weight = 0.27172638582107111D;
//
// xrTableCell42
//
@@ -756,133 +986,343 @@ namespace HphBersenbrueckFreizeitUndReisen
this.xrTableCell42.StylePriority.UseBackColor = false;
this.xrTableCell42.StylePriority.UseBorders = false;
this.xrTableCell42.StylePriority.UseBorderWidth = false;
- this.xrTableCell42.Weight = 0.13586319625390542D;
+ this.xrTableCell42.Weight = 0.135863192968665D;
//
- // xrTableCell43
+ // cellSummeJan
//
- this.xrTableCell43.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(255)))), ((int)(((byte)(255)))), ((int)(((byte)(153)))));
- this.xrTableCell43.Name = "xrTableCell43";
- this.xrTableCell43.StylePriority.UseBackColor = false;
- this.xrTableCell43.Weight = 0.0634028239109037D;
+ this.cellSummeJan.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(255)))), ((int)(((byte)(255)))), ((int)(((byte)(153)))));
+ this.cellSummeJan.DataBindings.AddRange(new DevExpress.XtraReports.UI.XRBinding[] {
+ new DevExpress.XtraReports.UI.XRBinding("Text", null, "DetailList.Jan")});
+ this.cellSummeJan.Name = "cellSummeJan";
+ this.cellSummeJan.StylePriority.UseBackColor = false;
+ xrSummary1.FormatString = "{0:0.00}";
+ xrSummary1.Running = DevExpress.XtraReports.UI.SummaryRunning.Report;
+ this.cellSummeJan.Summary = xrSummary1;
+ this.cellSummeJan.Weight = 0.0634028239109037D;
//
// xrTableCell44
//
this.xrTableCell44.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(255)))), ((int)(((byte)(255)))), ((int)(((byte)(153)))));
+ this.xrTableCell44.DataBindings.AddRange(new DevExpress.XtraReports.UI.XRBinding[] {
+ new DevExpress.XtraReports.UI.XRBinding("Text", null, "DetailList.Feb")});
this.xrTableCell44.Name = "xrTableCell44";
this.xrTableCell44.StylePriority.UseBackColor = false;
+ xrSummary2.FormatString = "{0:0.00}";
+ xrSummary2.Running = DevExpress.XtraReports.UI.SummaryRunning.Report;
+ this.xrTableCell44.Summary = xrSummary2;
this.xrTableCell44.Weight = 0.063402823910903683D;
//
// xrTableCell45
//
this.xrTableCell45.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(255)))), ((int)(((byte)(255)))), ((int)(((byte)(153)))));
+ this.xrTableCell45.DataBindings.AddRange(new DevExpress.XtraReports.UI.XRBinding[] {
+ new DevExpress.XtraReports.UI.XRBinding("Text", null, "DetailList.Maer")});
this.xrTableCell45.Name = "xrTableCell45";
this.xrTableCell45.StylePriority.UseBackColor = false;
+ xrSummary3.FormatString = "{0:0.00}";
+ xrSummary3.Running = DevExpress.XtraReports.UI.SummaryRunning.Report;
+ this.xrTableCell45.Summary = xrSummary3;
this.xrTableCell45.Weight = 0.063402824066715879D;
//
// xrTableCell46
//
this.xrTableCell46.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(255)))), ((int)(((byte)(153)))), ((int)(((byte)(204)))));
+ this.xrTableCell46.DataBindings.AddRange(new DevExpress.XtraReports.UI.XRBinding[] {
+ new DevExpress.XtraReports.UI.XRBinding("Text", null, "DetailList.fieldQ1")});
this.xrTableCell46.Multiline = true;
this.xrTableCell46.Name = "xrTableCell46";
this.xrTableCell46.StylePriority.UseBackColor = false;
+ xrSummary4.FormatString = "{0:0.00}";
+ xrSummary4.Running = DevExpress.XtraReports.UI.SummaryRunning.Report;
+ this.xrTableCell46.Summary = xrSummary4;
this.xrTableCell46.Weight = 0.072460370083724954D;
//
// xrTableCell47
//
this.xrTableCell47.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(255)))), ((int)(((byte)(255)))), ((int)(((byte)(153)))));
+ this.xrTableCell47.DataBindings.AddRange(new DevExpress.XtraReports.UI.XRBinding[] {
+ new DevExpress.XtraReports.UI.XRBinding("Text", null, "DetailList.Apr")});
this.xrTableCell47.Name = "xrTableCell47";
this.xrTableCell47.StylePriority.UseBackColor = false;
+ xrSummary5.FormatString = "{0:0.00}";
+ xrSummary5.Running = DevExpress.XtraReports.UI.SummaryRunning.Report;
+ this.xrTableCell47.Summary = xrSummary5;
this.xrTableCell47.Weight = 0.063402823832997612D;
//
// xrTableCell48
//
this.xrTableCell48.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(255)))), ((int)(((byte)(255)))), ((int)(((byte)(153)))));
+ this.xrTableCell48.DataBindings.AddRange(new DevExpress.XtraReports.UI.XRBinding[] {
+ new DevExpress.XtraReports.UI.XRBinding("Text", null, "DetailList.Mai")});
this.xrTableCell48.Name = "xrTableCell48";
this.xrTableCell48.StylePriority.UseBackColor = false;
this.xrTableCell48.StylePriority.UseTextAlignment = false;
+ xrSummary6.FormatString = "{0:0.00}";
+ xrSummary6.Running = DevExpress.XtraReports.UI.SummaryRunning.Report;
+ this.xrTableCell48.Summary = xrSummary6;
this.xrTableCell48.Weight = 0.063402823910903683D;
//
// xrTableCell49
//
this.xrTableCell49.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(255)))), ((int)(((byte)(255)))), ((int)(((byte)(153)))));
+ this.xrTableCell49.DataBindings.AddRange(new DevExpress.XtraReports.UI.XRBinding[] {
+ new DevExpress.XtraReports.UI.XRBinding("Text", null, "DetailList.Jun")});
this.xrTableCell49.Name = "xrTableCell49";
this.xrTableCell49.StylePriority.UseBackColor = false;
+ xrSummary7.FormatString = "{0:0.00}";
+ xrSummary7.Running = DevExpress.XtraReports.UI.SummaryRunning.Report;
+ this.xrTableCell49.Summary = xrSummary7;
this.xrTableCell49.Weight = 0.063402824066715879D;
//
// xrTableCell50
//
this.xrTableCell50.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(255)))), ((int)(((byte)(153)))), ((int)(((byte)(204)))));
+ this.xrTableCell50.DataBindings.AddRange(new DevExpress.XtraReports.UI.XRBinding[] {
+ new DevExpress.XtraReports.UI.XRBinding("Text", null, "DetailList.fieldQ2")});
this.xrTableCell50.Multiline = true;
this.xrTableCell50.Name = "xrTableCell50";
this.xrTableCell50.StylePriority.UseBackColor = false;
+ xrSummary8.FormatString = "{0:0.00}";
+ xrSummary8.Running = DevExpress.XtraReports.UI.SummaryRunning.Report;
+ this.xrTableCell50.Summary = xrSummary8;
this.xrTableCell50.Weight = 0.072460370083724954D;
//
// xrTableCell51
//
this.xrTableCell51.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(255)))), ((int)(((byte)(255)))), ((int)(((byte)(153)))));
+ this.xrTableCell51.DataBindings.AddRange(new DevExpress.XtraReports.UI.XRBinding[] {
+ new DevExpress.XtraReports.UI.XRBinding("Text", null, "DetailList.Jul")});
this.xrTableCell51.Name = "xrTableCell51";
this.xrTableCell51.StylePriority.UseBackColor = false;
+ xrSummary9.FormatString = "{0:0.00}";
+ xrSummary9.Running = DevExpress.XtraReports.UI.SummaryRunning.Report;
+ this.xrTableCell51.Summary = xrSummary9;
this.xrTableCell51.Weight = 0.063402823832997585D;
//
// xrTableCell52
//
this.xrTableCell52.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(255)))), ((int)(((byte)(255)))), ((int)(((byte)(153)))));
+ this.xrTableCell52.DataBindings.AddRange(new DevExpress.XtraReports.UI.XRBinding[] {
+ new DevExpress.XtraReports.UI.XRBinding("Text", null, "DetailList.Aug")});
this.xrTableCell52.Name = "xrTableCell52";
this.xrTableCell52.StylePriority.UseBackColor = false;
+ xrSummary10.FormatString = "{0:0.00}";
+ xrSummary10.Running = DevExpress.XtraReports.UI.SummaryRunning.Report;
+ this.xrTableCell52.Summary = xrSummary10;
this.xrTableCell52.Weight = 0.063402823910903738D;
//
// xrTableCell53
//
this.xrTableCell53.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(255)))), ((int)(((byte)(255)))), ((int)(((byte)(153)))));
+ this.xrTableCell53.DataBindings.AddRange(new DevExpress.XtraReports.UI.XRBinding[] {
+ new DevExpress.XtraReports.UI.XRBinding("Text", null, "DetailList.Sep")});
this.xrTableCell53.Name = "xrTableCell53";
this.xrTableCell53.StylePriority.UseBackColor = false;
+ xrSummary11.FormatString = "{0:0.00}";
+ xrSummary11.Running = DevExpress.XtraReports.UI.SummaryRunning.Report;
+ this.xrTableCell53.Summary = xrSummary11;
this.xrTableCell53.Weight = 0.063402824066715935D;
//
// xrTableCell54
//
this.xrTableCell54.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(255)))), ((int)(((byte)(153)))), ((int)(((byte)(204)))));
+ this.xrTableCell54.DataBindings.AddRange(new DevExpress.XtraReports.UI.XRBinding[] {
+ new DevExpress.XtraReports.UI.XRBinding("Text", null, "DetailList.fieldQ3")});
this.xrTableCell54.Multiline = true;
this.xrTableCell54.Name = "xrTableCell54";
this.xrTableCell54.StylePriority.UseBackColor = false;
+ xrSummary12.FormatString = "{0:0.00}";
+ xrSummary12.Running = DevExpress.XtraReports.UI.SummaryRunning.Report;
+ this.xrTableCell54.Summary = xrSummary12;
this.xrTableCell54.Weight = 0.0724603700447719D;
//
// xrTableCell55
//
this.xrTableCell55.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(255)))), ((int)(((byte)(255)))), ((int)(((byte)(153)))));
+ this.xrTableCell55.DataBindings.AddRange(new DevExpress.XtraReports.UI.XRBinding[] {
+ new DevExpress.XtraReports.UI.XRBinding("Text", null, "DetailList.Okt")});
this.xrTableCell55.Name = "xrTableCell55";
this.xrTableCell55.StylePriority.UseBackColor = false;
+ xrSummary13.FormatString = "{0:0.00}";
+ xrSummary13.Running = DevExpress.XtraReports.UI.SummaryRunning.Report;
+ this.xrTableCell55.Summary = xrSummary13;
this.xrTableCell55.Weight = 0.063402823794044549D;
//
// xrTableCell56
//
this.xrTableCell56.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(255)))), ((int)(((byte)(255)))), ((int)(((byte)(153)))));
+ this.xrTableCell56.DataBindings.AddRange(new DevExpress.XtraReports.UI.XRBinding[] {
+ new DevExpress.XtraReports.UI.XRBinding("Text", null, "DetailList.Nov")});
this.xrTableCell56.Name = "xrTableCell56";
this.xrTableCell56.StylePriority.UseBackColor = false;
+ xrSummary14.FormatString = "{0:0.00}";
+ xrSummary14.Running = DevExpress.XtraReports.UI.SummaryRunning.Report;
+ this.xrTableCell56.Summary = xrSummary14;
this.xrTableCell56.Weight = 0.063402823832997585D;
//
// xrTableCell57
//
this.xrTableCell57.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(255)))), ((int)(((byte)(255)))), ((int)(((byte)(153)))));
+ this.xrTableCell57.DataBindings.AddRange(new DevExpress.XtraReports.UI.XRBinding[] {
+ new DevExpress.XtraReports.UI.XRBinding("Text", null, "DetailList.Dez")});
this.xrTableCell57.Name = "xrTableCell57";
this.xrTableCell57.StylePriority.UseBackColor = false;
+ xrSummary15.FormatString = "{0:0.00}";
+ xrSummary15.Running = DevExpress.XtraReports.UI.SummaryRunning.Report;
+ this.xrTableCell57.Summary = xrSummary15;
this.xrTableCell57.Weight = 0.063402823910903683D;
//
// xrTableCell58
//
this.xrTableCell58.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(255)))), ((int)(((byte)(153)))), ((int)(((byte)(204)))));
+ this.xrTableCell58.DataBindings.AddRange(new DevExpress.XtraReports.UI.XRBinding[] {
+ new DevExpress.XtraReports.UI.XRBinding("Text", null, "DetailList.fieldQ4")});
this.xrTableCell58.Multiline = true;
this.xrTableCell58.Name = "xrTableCell58";
this.xrTableCell58.StylePriority.UseBackColor = false;
+ xrSummary16.FormatString = "{0:0.00}";
+ xrSummary16.Running = DevExpress.XtraReports.UI.SummaryRunning.Report;
+ this.xrTableCell58.Summary = xrSummary16;
this.xrTableCell58.Weight = 0.072460370161631107D;
//
// xrTableCell59
//
this.xrTableCell59.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(255)))), ((int)(((byte)(255)))), ((int)(((byte)(153)))));
+ this.xrTableCell59.DataBindings.AddRange(new DevExpress.XtraReports.UI.XRBinding[] {
+ new DevExpress.XtraReports.UI.XRBinding("Text", null, "DetailList.fieldGesamt")});
this.xrTableCell59.Multiline = true;
this.xrTableCell59.Name = "xrTableCell59";
this.xrTableCell59.StylePriority.UseBackColor = false;
+ xrSummary17.FormatString = "{0:0.00}";
+ xrSummary17.Running = DevExpress.XtraReports.UI.SummaryRunning.Report;
+ this.xrTableCell59.Summary = xrSummary17;
this.xrTableCell59.Weight = 0.072460370161631107D;
//
+ // fieldKmPreisJan
+ //
+ this.fieldKmPreisJan.DataMember = "DetailList";
+ this.fieldKmPreisJan.Expression = "[].Sum([Jan]) * 0.27";
+ this.fieldKmPreisJan.FieldType = DevExpress.XtraReports.UI.FieldType.Decimal;
+ this.fieldKmPreisJan.Name = "fieldKmPreisJan";
+ //
+ // fieldKmPreisFeb
+ //
+ this.fieldKmPreisFeb.DataMember = "DetailList";
+ this.fieldKmPreisFeb.Expression = "[].Sum([Feb]) * 0.27";
+ this.fieldKmPreisFeb.FieldType = DevExpress.XtraReports.UI.FieldType.Decimal;
+ this.fieldKmPreisFeb.Name = "fieldKmPreisFeb";
+ //
+ // fieldKmPreisMar
+ //
+ this.fieldKmPreisMar.DataMember = "DetailList";
+ this.fieldKmPreisMar.Expression = "[].Sum([Maer]) * 0.27";
+ this.fieldKmPreisMar.FieldType = DevExpress.XtraReports.UI.FieldType.Decimal;
+ this.fieldKmPreisMar.Name = "fieldKmPreisMar";
+ //
+ // fieldKmPreisQ1
+ //
+ this.fieldKmPreisQ1.DataMember = "DetailList";
+ this.fieldKmPreisQ1.Expression = "([].Sum([Jan]) + [].Sum([Feb]) + [].Sum([Maer])) * 0.27";
+ this.fieldKmPreisQ1.FieldType = DevExpress.XtraReports.UI.FieldType.Decimal;
+ this.fieldKmPreisQ1.Name = "fieldKmPreisQ1";
+ //
+ // fieldKmPreisOkt
+ //
+ this.fieldKmPreisOkt.DataMember = "DetailList";
+ this.fieldKmPreisOkt.Expression = "[].Sum([Okt]) * 0.27";
+ this.fieldKmPreisOkt.FieldType = DevExpress.XtraReports.UI.FieldType.Decimal;
+ this.fieldKmPreisOkt.Name = "fieldKmPreisOkt";
+ //
+ // fieldKmPreisApr
+ //
+ this.fieldKmPreisApr.DataMember = "DetailList";
+ this.fieldKmPreisApr.Expression = "[].Sum([Apr]) * 0.27";
+ this.fieldKmPreisApr.FieldType = DevExpress.XtraReports.UI.FieldType.Decimal;
+ this.fieldKmPreisApr.Name = "fieldKmPreisApr";
+ //
+ // fieldKmPreisAug
+ //
+ this.fieldKmPreisAug.DataMember = "DetailList";
+ this.fieldKmPreisAug.Expression = "[].Sum([Aug]) * 0.27";
+ this.fieldKmPreisAug.FieldType = DevExpress.XtraReports.UI.FieldType.Decimal;
+ this.fieldKmPreisAug.Name = "fieldKmPreisAug";
+ //
+ // fieldKmPreisSep
+ //
+ this.fieldKmPreisSep.DataMember = "DetailList";
+ this.fieldKmPreisSep.Expression = "[].Sum([Sep]) * 0.27";
+ this.fieldKmPreisSep.FieldType = DevExpress.XtraReports.UI.FieldType.Decimal;
+ this.fieldKmPreisSep.Name = "fieldKmPreisSep";
+ //
+ // fieldKmPreisNov
+ //
+ this.fieldKmPreisNov.DataMember = "DetailList";
+ this.fieldKmPreisNov.Expression = "[].Sum([Nov]) * 0.27";
+ this.fieldKmPreisNov.FieldType = DevExpress.XtraReports.UI.FieldType.Decimal;
+ this.fieldKmPreisNov.Name = "fieldKmPreisNov";
+ //
+ // fieldKmPreisDez
+ //
+ this.fieldKmPreisDez.DataMember = "DetailList";
+ this.fieldKmPreisDez.Expression = "[].Sum([Dez]) * 0.27";
+ this.fieldKmPreisDez.FieldType = DevExpress.XtraReports.UI.FieldType.Decimal;
+ this.fieldKmPreisDez.Name = "fieldKmPreisDez";
+ //
+ // fieldKmPreisQ2
+ //
+ this.fieldKmPreisQ2.DataMember = "DetailList";
+ this.fieldKmPreisQ2.Expression = "([].Sum([Apr]) + [].Sum([Mai]) + [].Sum([Jun])) * 0.27";
+ this.fieldKmPreisQ2.FieldType = DevExpress.XtraReports.UI.FieldType.Decimal;
+ this.fieldKmPreisQ2.Name = "fieldKmPreisQ2";
+ //
+ // fieldKmPreisQ3
+ //
+ this.fieldKmPreisQ3.DataMember = "DetailList";
+ this.fieldKmPreisQ3.Expression = "([].Sum([Jul]) + [].Sum([Aug]) + [].Sum([Sep])) * 0.27";
+ this.fieldKmPreisQ3.FieldType = DevExpress.XtraReports.UI.FieldType.Decimal;
+ this.fieldKmPreisQ3.Name = "fieldKmPreisQ3";
+ //
+ // fieldKmPreisQ4
+ //
+ this.fieldKmPreisQ4.DataMember = "DetailList";
+ this.fieldKmPreisQ4.Expression = "([].Sum([Okt]) + [].Sum([Nov]) + [].Sum([Dez])) * 0.27";
+ this.fieldKmPreisQ4.FieldType = DevExpress.XtraReports.UI.FieldType.Decimal;
+ this.fieldKmPreisQ4.Name = "fieldKmPreisQ4";
+ //
+ // fieldKmPreisMai
+ //
+ this.fieldKmPreisMai.DataMember = "DetailList";
+ this.fieldKmPreisMai.Expression = "[].Sum([Mai]) * 0.27";
+ this.fieldKmPreisMai.FieldType = DevExpress.XtraReports.UI.FieldType.Decimal;
+ this.fieldKmPreisMai.Name = "fieldKmPreisMai";
+ //
+ // fieldKmPreisJun
+ //
+ this.fieldKmPreisJun.DataMember = "DetailList";
+ this.fieldKmPreisJun.Expression = "[].Sum([Jun]) * 0.27";
+ this.fieldKmPreisJun.FieldType = DevExpress.XtraReports.UI.FieldType.Decimal;
+ this.fieldKmPreisJun.Name = "fieldKmPreisJun";
+ //
+ // fieldKmPreisJul
+ //
+ this.fieldKmPreisJul.DataMember = "DetailList";
+ this.fieldKmPreisJul.Expression = "[].Sum([Jul]) * 0.27";
+ this.fieldKmPreisJul.FieldType = DevExpress.XtraReports.UI.FieldType.Decimal;
+ this.fieldKmPreisJul.Name = "fieldKmPreisJul";
+ //
+ // fieldKmPreisGesamt
+ //
+ this.fieldKmPreisGesamt.DataMember = "DetailList";
+ this.fieldKmPreisGesamt.Expression = "([].Sum([Jan]) + [].Sum([Feb]) + [].Sum([Maer]) + [].Sum([Apr]) + [].Sum([Mai]) +" +
+ " [].Sum([Jun]) + [].Sum([Jul]) + [].Sum([Aug]) + [].Sum([Sep]) + [].Sum([Okt]) +" +
+ " [].Sum([Nov]) + [].Sum([Dez])) * 0.27";
+ this.fieldKmPreisGesamt.FieldType = DevExpress.XtraReports.UI.FieldType.Decimal;
+ this.fieldKmPreisGesamt.Name = "fieldKmPreisGesamt";
+ //
+ // bindingSource1
+ //
+ this.bindingSource1.DataSource = typeof(HphBersenbrueckFreizeitUndReisen.AuswertungFahrtkostenRO);
+ //
// AuswertungFahrtkosten
//
this.Bands.AddRange(new DevExpress.XtraReports.UI.Band[] {
@@ -899,7 +1339,24 @@ namespace HphBersenbrueckFreizeitUndReisen
this.fieldQ2,
this.fieldQ3,
this.fieldGesamt,
- this.fieldQ4});
+ this.fieldQ4,
+ this.fieldKmPreisJan,
+ this.fieldKmPreisFeb,
+ this.fieldKmPreisMar,
+ this.fieldKmPreisQ1,
+ this.fieldKmPreisOkt,
+ this.fieldKmPreisApr,
+ this.fieldKmPreisAug,
+ this.fieldKmPreisSep,
+ this.fieldKmPreisNov,
+ this.fieldKmPreisDez,
+ this.fieldKmPreisQ2,
+ this.fieldKmPreisQ3,
+ this.fieldKmPreisQ4,
+ this.fieldKmPreisMai,
+ this.fieldKmPreisJun,
+ this.fieldKmPreisJul,
+ this.fieldKmPreisGesamt});
this.DataSource = this.bindingSource1;
this.Landscape = true;
this.Margins = new System.Drawing.Printing.Margins(50, 50, 50, 53);
@@ -914,8 +1371,8 @@ namespace HphBersenbrueckFreizeitUndReisen
this.Version = "13.2";
((System.ComponentModel.ISupportInitialize)(this.xrTableDetail)).EndInit();
((System.ComponentModel.ISupportInitialize)(this.xrTableHeader)).EndInit();
- ((System.ComponentModel.ISupportInitialize)(this.bindingSource1)).EndInit();
((System.ComponentModel.ISupportInitialize)(this.xrTable1)).EndInit();
+ ((System.ComponentModel.ISupportInitialize)(this.bindingSource1)).EndInit();
((System.ComponentModel.ISupportInitialize)(this)).EndInit();
}
@@ -988,9 +1445,8 @@ namespace HphBersenbrueckFreizeitUndReisen
private DevExpress.XtraReports.UI.XRTable xrTable1;
private DevExpress.XtraReports.UI.XRTableRow xrTableRow1;
private DevExpress.XtraReports.UI.XRTableCell xrTableCell40;
- private DevExpress.XtraReports.UI.XRTableCell xrTableCell41;
private DevExpress.XtraReports.UI.XRTableCell xrTableCell42;
- private DevExpress.XtraReports.UI.XRTableCell xrTableCell43;
+ private DevExpress.XtraReports.UI.XRTableCell cellSummeJan;
private DevExpress.XtraReports.UI.XRTableCell xrTableCell44;
private DevExpress.XtraReports.UI.XRTableCell xrTableCell45;
private DevExpress.XtraReports.UI.XRTableCell xrTableCell46;
@@ -1007,5 +1463,42 @@ namespace HphBersenbrueckFreizeitUndReisen
private DevExpress.XtraReports.UI.XRTableCell xrTableCell57;
private DevExpress.XtraReports.UI.XRTableCell xrTableCell58;
private DevExpress.XtraReports.UI.XRTableCell xrTableCell59;
+ private DevExpress.XtraReports.UI.XRTableRow xrTableRow2;
+ private DevExpress.XtraReports.UI.XRTableCell xrTableCell43;
+ private DevExpress.XtraReports.UI.XRTableCell xrTableCell61;
+ private DevExpress.XtraReports.UI.XRTableCell cellKmPreisJan;
+ private DevExpress.XtraReports.UI.XRTableCell xrTableCell63;
+ 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.XRTableCell xrTableCell70;
+ private DevExpress.XtraReports.UI.XRTableCell xrTableCell71;
+ private DevExpress.XtraReports.UI.XRTableCell xrTableCell72;
+ private DevExpress.XtraReports.UI.XRTableCell xrTableCell73;
+ private DevExpress.XtraReports.UI.XRTableCell xrTableCell74;
+ private DevExpress.XtraReports.UI.XRTableCell xrTableCell75;
+ private DevExpress.XtraReports.UI.XRTableCell xrTableCell76;
+ private DevExpress.XtraReports.UI.XRTableCell xrTableCell77;
+ private DevExpress.XtraReports.UI.XRTableCell xrTableCell78;
+ private DevExpress.XtraReports.UI.CalculatedField fieldKmPreisJan;
+ private DevExpress.XtraReports.UI.CalculatedField fieldKmPreisFeb;
+ private DevExpress.XtraReports.UI.CalculatedField fieldKmPreisMar;
+ private DevExpress.XtraReports.UI.CalculatedField fieldKmPreisQ1;
+ private DevExpress.XtraReports.UI.CalculatedField fieldKmPreisOkt;
+ private DevExpress.XtraReports.UI.CalculatedField fieldKmPreisApr;
+ private DevExpress.XtraReports.UI.CalculatedField fieldKmPreisAug;
+ private DevExpress.XtraReports.UI.CalculatedField fieldKmPreisSep;
+ private DevExpress.XtraReports.UI.CalculatedField fieldKmPreisNov;
+ private DevExpress.XtraReports.UI.CalculatedField fieldKmPreisDez;
+ private DevExpress.XtraReports.UI.CalculatedField fieldKmPreisQ2;
+ private DevExpress.XtraReports.UI.CalculatedField fieldKmPreisQ3;
+ private DevExpress.XtraReports.UI.CalculatedField fieldKmPreisQ4;
+ private DevExpress.XtraReports.UI.CalculatedField fieldKmPreisMai;
+ private DevExpress.XtraReports.UI.CalculatedField fieldKmPreisJun;
+ private DevExpress.XtraReports.UI.CalculatedField fieldKmPreisJul;
+ private DevExpress.XtraReports.UI.CalculatedField fieldKmPreisGesamt;
}
}
diff --git a/ReportImp/HphBersenbrueckFreizeitUndReisen/AuswertungFahrtkosten.cs b/ReportImp/HphBersenbrueckFreizeitUndReisen/AuswertungFahrtkosten.cs
index 223b19232..5e3a6183c 100644
--- a/ReportImp/HphBersenbrueckFreizeitUndReisen/AuswertungFahrtkosten.cs
+++ b/ReportImp/HphBersenbrueckFreizeitUndReisen/AuswertungFahrtkosten.cs
@@ -48,8 +48,8 @@ namespace HphBersenbrueckFreizeitUndReisen
long? customerOid = null;
- DateTime reportStart = new DateTime(DateTime.Now.Year, DateTime.Now.Month, 1).AddMonths(-1);
- DateTime reportEnde = reportStart.AddMonths(1).AddDays(-1);
+ DateTime reportStart = new DateTime(DateTime.Now.Year, 1, 1);
+
if (queryRo.Rows.Count > 0)
@@ -64,17 +64,7 @@ namespace HphBersenbrueckFreizeitUndReisen
reportStart = dtTemp;
}
}
- if (queryRo.Rows[0].Field2 != null)
- {
- DateTime dtTemp = DateTime.Now;
- if (DateTime.TryParse(queryRo.Rows[0].Field2.ToString(), out dtTemp) &&
- dtTemp < new DateTime(9000, 1, 1))
- {
- reportEnde = dtTemp.AddDays(-1);
- }
-
- }
-
+
//if (queryRo.Rows[0].Field4 != null)
//{
// long longTemp = 0;
@@ -86,7 +76,7 @@ namespace HphBersenbrueckFreizeitUndReisen
//}
}
-
+ DateTime reportEnde = reportStart.AddYears(1).AddDays(-1);
Dictionary rowDict =
new Dictionary();
diff --git a/ReportImp/HphBersenbrueckFreizeitUndReisen/AuswertungSelbstzahler.Designer.cs b/ReportImp/HphBersenbrueckFreizeitUndReisen/AuswertungSelbstzahler.Designer.cs
index a801ddb82..bf01bb0d3 100644
--- a/ReportImp/HphBersenbrueckFreizeitUndReisen/AuswertungSelbstzahler.Designer.cs
+++ b/ReportImp/HphBersenbrueckFreizeitUndReisen/AuswertungSelbstzahler.Designer.cs
@@ -53,9 +53,20 @@ namespace HphBersenbrueckFreizeitUndReisen
this.fieldDifferenz = new DevExpress.XtraReports.UI.CalculatedField();
this.GroupHeader2 = new DevExpress.XtraReports.UI.GroupHeaderBand();
this.bindingSource1 = new System.Windows.Forms.BindingSource(this.components);
+ this.GroupHeader1 = new DevExpress.XtraReports.UI.GroupHeaderBand();
+ this.xrTableGesamt = new DevExpress.XtraReports.UI.XRTable();
+ this.xrTableRowGesamt = new DevExpress.XtraReports.UI.XRTableRow();
+ this.xrTableCell7 = new DevExpress.XtraReports.UI.XRTableCell();
+ this.xrTableCell8 = new DevExpress.XtraReports.UI.XRTableCell();
+ this.xrTableCell9 = new DevExpress.XtraReports.UI.XRTableCell();
+ this.xrTableCell10 = new DevExpress.XtraReports.UI.XRTableCell();
+ this.xrTableCell11 = new DevExpress.XtraReports.UI.XRTableCell();
+ this.xrTableCell12 = new DevExpress.XtraReports.UI.XRTableCell();
+ this.xrTableCell13 = new DevExpress.XtraReports.UI.XRTableCell();
((System.ComponentModel.ISupportInitialize)(this.xrTableDetail)).BeginInit();
((System.ComponentModel.ISupportInitialize)(this.xrTableHeader)).BeginInit();
((System.ComponentModel.ISupportInitialize)(this.bindingSource1)).BeginInit();
+ ((System.ComponentModel.ISupportInitialize)(this.xrTableGesamt)).BeginInit();
((System.ComponentModel.ISupportInitialize)(this)).BeginInit();
//
// Detail
@@ -255,13 +266,94 @@ namespace HphBersenbrueckFreizeitUndReisen
//
this.bindingSource1.DataSource = typeof(HphBersenbrueckFreizeitUndReisen.AuswertungSelbstzahlerRO);
//
+ // GroupHeader1
+ //
+ this.GroupHeader1.Controls.AddRange(new DevExpress.XtraReports.UI.XRControl[] {
+ this.xrTableGesamt});
+ this.GroupHeader1.Font = new System.Drawing.Font("Tahoma", 9F, System.Drawing.FontStyle.Bold);
+ this.GroupHeader1.HeightF = 25F;
+ this.GroupHeader1.Level = 1;
+ this.GroupHeader1.Name = "GroupHeader1";
+ this.GroupHeader1.StylePriority.UseFont = false;
+ //
+ // xrTableGesamt
+ //
+ this.xrTableGesamt.Borders = ((DevExpress.XtraPrinting.BorderSide)((((DevExpress.XtraPrinting.BorderSide.Left | DevExpress.XtraPrinting.BorderSide.Top)
+ | DevExpress.XtraPrinting.BorderSide.Right)
+ | DevExpress.XtraPrinting.BorderSide.Bottom)));
+ this.xrTableGesamt.LocationFloat = new DevExpress.Utils.PointFloat(0F, 0F);
+ this.xrTableGesamt.Name = "xrTableGesamt";
+ this.xrTableGesamt.Rows.AddRange(new DevExpress.XtraReports.UI.XRTableRow[] {
+ this.xrTableRowGesamt});
+ this.xrTableGesamt.SizeF = new System.Drawing.SizeF(640F, 25F);
+ this.xrTableGesamt.StylePriority.UseBackColor = false;
+ this.xrTableGesamt.StylePriority.UseBorders = false;
+ this.xrTableGesamt.StylePriority.UsePadding = false;
+ this.xrTableGesamt.StylePriority.UseTextAlignment = false;
+ this.xrTableGesamt.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleCenter;
+ //
+ // xrTableRowGesamt
+ //
+ this.xrTableRowGesamt.Cells.AddRange(new DevExpress.XtraReports.UI.XRTableCell[] {
+ this.xrTableCell7,
+ this.xrTableCell8,
+ this.xrTableCell9,
+ this.xrTableCell10,
+ this.xrTableCell12,
+ this.xrTableCell11,
+ this.xrTableCell13});
+ this.xrTableRowGesamt.Name = "xrTableRowGesamt";
+ this.xrTableRowGesamt.Weight = 1.25D;
+ //
+ // xrTableCell7
+ //
+ this.xrTableCell7.Name = "xrTableCell7";
+ this.xrTableCell7.Weight = 0.045287729552887165D;
+ //
+ // xrTableCell8
+ //
+ this.xrTableCell8.Name = "xrTableCell8";
+ this.xrTableCell8.StylePriority.UseBackColor = false;
+ this.xrTableCell8.Weight = 0.099633007057251324D;
+ //
+ // xrTableCell9
+ //
+ this.xrTableCell9.Name = "xrTableCell9";
+ this.xrTableCell9.StylePriority.UseBackColor = false;
+ this.xrTableCell9.Weight = 0.072460370260993362D;
+ //
+ // xrTableCell10
+ //
+ this.xrTableCell10.BorderWidth = 1F;
+ this.xrTableCell10.Name = "xrTableCell10";
+ this.xrTableCell10.StylePriority.UseBackColor = false;
+ this.xrTableCell10.StylePriority.UseBorders = false;
+ this.xrTableCell10.StylePriority.UseBorderWidth = false;
+ this.xrTableCell10.Weight = 0.090575463293854783D;
+ //
+ // xrTableCell11
+ //
+ this.xrTableCell11.Name = "xrTableCell11";
+ this.xrTableCell11.Weight = 0.090575463293854783D;
+ //
+ // xrTableCell12
+ //
+ this.xrTableCell12.Name = "xrTableCell12";
+ this.xrTableCell12.Weight = 0.090575463293854783D;
+ //
+ // xrTableCell13
+ //
+ this.xrTableCell13.Name = "xrTableCell13";
+ this.xrTableCell13.Weight = 0.090575463293854783D;
+ //
// AuswertungSelbstzahler
//
this.Bands.AddRange(new DevExpress.XtraReports.UI.Band[] {
this.Detail,
this.topMarginBand1,
this.bottomMarginBand1,
- this.GroupHeader2});
+ this.GroupHeader2,
+ this.GroupHeader1});
this.CalculatedFields.AddRange(new DevExpress.XtraReports.UI.CalculatedField[] {
this.fieldFLS,
this.fieldDifferenz});
@@ -280,6 +372,7 @@ namespace HphBersenbrueckFreizeitUndReisen
((System.ComponentModel.ISupportInitialize)(this.xrTableDetail)).EndInit();
((System.ComponentModel.ISupportInitialize)(this.xrTableHeader)).EndInit();
((System.ComponentModel.ISupportInitialize)(this.bindingSource1)).EndInit();
+ ((System.ComponentModel.ISupportInitialize)(this.xrTableGesamt)).EndInit();
((System.ComponentModel.ISupportInitialize)(this)).EndInit();
}
@@ -309,5 +402,15 @@ namespace HphBersenbrueckFreizeitUndReisen
private DevExpress.XtraReports.UI.XRTableCell cellBemerkung;
private DevExpress.XtraReports.UI.XRTableCell xrTableCell21;
private DevExpress.XtraReports.UI.GroupHeaderBand GroupHeader2;
+ private DevExpress.XtraReports.UI.GroupHeaderBand GroupHeader1;
+ private DevExpress.XtraReports.UI.XRTable xrTableGesamt;
+ private DevExpress.XtraReports.UI.XRTableRow xrTableRowGesamt;
+ private DevExpress.XtraReports.UI.XRTableCell xrTableCell7;
+ private DevExpress.XtraReports.UI.XRTableCell xrTableCell8;
+ private DevExpress.XtraReports.UI.XRTableCell xrTableCell9;
+ private DevExpress.XtraReports.UI.XRTableCell xrTableCell10;
+ private DevExpress.XtraReports.UI.XRTableCell xrTableCell12;
+ private DevExpress.XtraReports.UI.XRTableCell xrTableCell11;
+ private DevExpress.XtraReports.UI.XRTableCell xrTableCell13;
}
}
diff --git a/ReportImp/HphBersenbrueckFreizeitUndReisen/AuswertungSelbstzahler.cs b/ReportImp/HphBersenbrueckFreizeitUndReisen/AuswertungSelbstzahler.cs
index d93fa2c20..3cbf9e729 100644
--- a/ReportImp/HphBersenbrueckFreizeitUndReisen/AuswertungSelbstzahler.cs
+++ b/ReportImp/HphBersenbrueckFreizeitUndReisen/AuswertungSelbstzahler.cs
@@ -140,10 +140,139 @@ namespace HphBersenbrueckFreizeitUndReisen
var dict = CreateHeader(result, reportStart, reportEnde);
CreateDataRows(result, dict);
+ CreateSummenRows(result, dict, reportStart, reportEnde);
return result;
}
+ private void CreateSummenRows(AuswertungSelbstzahlerRO result, Dictionary dict, DateTime reportStart, DateTime reportEnd)
+ {
+ for (int i = 4; i < xrTableRowDetail.Cells.Count; i++)
+ {
+ AddNewDataCell(xrTableRowGesamt, "", Color.Transparent);
+ }
+
+ xrTableGesamt.Width = xrTableRowGesamt.Cells.Count * 100;
+
+ for (int i = xrTableRowGesamt.Cells.Count - 1; i > 4; i--)
+ {
+ xrTableRowGesamt.Cells[i].Weight = (i * 100);
+ }
+ for (int i = 0; i < xrTableRowGesamt.Cells.Count; i++)
+ {
+ xrTableRowGesamt.Cells[i].Weight = 100;
+ }
+ xrTableRowGesamt.Cells[0].Width = 60;
+
+ //decimal gesamtStd = 0;
+ //decimal gesamtKontingent = 0;
+ //decimal gesamtVerbraucht = 0;
+
+ ////foreach (var dro in result.DetailList)
+ ////{
+ //// gesamtStd += dro.GesamtStunden;
+ //// gesamtKontingent += dro.Kontingent;
+ //// gesamtVerbraucht += dro.Bereitsverbraucht;
+ ////}
+
+ //decimal nochOffen = gesamtKontingent - gesamtVerbraucht;
+
+ //if (xrTableRowGesamt.Cells.Count > 4)
+ //{
+ // xrTableRowGesamt.Cells[xrTableRowDetail.Cells.Count - 1].Text = String.Format("{0:0.00}", nochOffen);
+ // xrTableRowGesamt.Cells[xrTableRowDetail.Cells.Count - 2].Text =
+ // String.Format("{0:0.00}", gesamtVerbraucht);
+ // xrTableRowGesamt.Cells[xrTableRowDetail.Cells.Count - 3].Text =
+ // String.Format("{0:0.00}", gesamtKontingent);
+ // xrTableRowGesamt.Cells[xrTableRowDetail.Cells.Count - 4].Text = String.Format("{0:0.00}", gesamtStd);
+ //}
+
+
+ DateTime datum = reportStart;
+ int anzahlMonate = 0;
+ while (datum <= reportEnd)
+ {
+ anzahlMonate++;
+ datum = datum.AddMonths(1);
+ }
+ datum = reportStart;
+ int index = 0;
+
+ decimal stundenGesamtEb = 0;
+ decimal preisGesamtEb = 0;
+ decimal preisGesamtFrei = 0;
+ decimal preisGesamtFundA = 0;
+ decimal preisGesamtEbFreiFundA = 0;
+ decimal anzUebernachtungenGesamt = 0;
+ decimal preisGesamtKurzpflege = 0;
+ decimal anzTageReisenGesamt = 0;
+ decimal preisGesamtReise = 0;
+
+ while (datum <= reportEnd)
+ {
+ String key = String.Format("{0:yyyyMM}", datum);
+
+
+ if (index < xrTableRowGesamt.Cells.Count)
+ {
+ decimal gesamtEbnMonat = 0;
+ decimal gesamtEbhMonat = 0;
+ decimal gesamtFreiMonat = 0;
+ decimal gesamtFundAMonat = 0;
+
+ foreach (var dro in result.DetailList)
+ {
+ if (dro.EinzelbetreuungNormalMonat2Wert.ContainsKey(key))
+ {
+ gesamtEbnMonat += dro.EinzelbetreuungNormalMonat2Wert[key];
+ stundenGesamtEb += dro.EinzelbetreuungNormalMonat2Wert[key];
+ }
+ if (dro.EinzelbetreuungHauptamtlich2Monat2Wert.ContainsKey(key))
+ {
+ gesamtEbhMonat += dro.EinzelbetreuungHauptamtlich2Monat2Wert[key];
+ stundenGesamtEb += dro.EinzelbetreuungHauptamtlich2Monat2Wert[key];
+ }
+ if (dro.FreizeitAngeboteMonat2Wert.ContainsKey(key))
+ {
+ gesamtFreiMonat += dro.FreizeitAngeboteMonat2Wert[key];
+ }
+ if (dro.FreizeittreffAusflugMonat2Wert.ContainsKey(key))
+ {
+ gesamtFundAMonat += dro.FreizeittreffAusflugMonat2Wert[key];
+ }
+
+ if (index == 0)
+ {
+ preisGesamtEb += dro.EinzelbetreuungPreisGesamt ?? 0;
+ preisGesamtFrei += dro.GesamtPreisFreizeitangebot ?? 0;
+ preisGesamtFundA += dro.GesamtPreisFreizeittreff ?? 0;
+ preisGesamtEbFreiFundA += (dro.EinzelbetreuungPreisGesamt ?? 0) + (dro.GesamtPreisFreizeittreff ?? 0) + (dro.GesamtPreisFreizeitangebot ?? 0);
+ anzUebernachtungenGesamt += dro.KurzzeitpflegeAnzahlUebernachtungen ?? 0;
+ preisGesamtKurzpflege += dro.KurzzeitpflegeGesamtPreis ?? 0;
+ anzTageReisenGesamt += dro.ReisenAnzahlTage ?? 0;
+ preisGesamtReise += dro.ReisenGesamtPreis ?? 0;
+ }
+ }
+
+ xrTableRowGesamt.Cells[(index * 2) + 7].Text = String.Format("{0:0.00}", gesamtEbnMonat);
+ xrTableRowGesamt.Cells[(index * 2) + 8].Text = String.Format("{0:0.00}", gesamtEbhMonat);
+ xrTableRowGesamt.Cells[(anzahlMonate * 2) + index + 9].Text = String.Format("{0:0.00}", gesamtFreiMonat);
+ xrTableRowGesamt.Cells[(anzahlMonate * 3) + index + 11].Text = String.Format("{0:0.00}", gesamtFundAMonat);
+ }
+ index++;
+ datum = datum.AddMonths(1);
+ }
+ xrTableRowGesamt.Cells[(anzahlMonate * 2) + 7].Text = String.Format("{0:0.00}", stundenGesamtEb);
+ xrTableRowGesamt.Cells[(anzahlMonate * 2) + 8].Text = String.Format("{0:c}", preisGesamtEb);
+ xrTableRowGesamt.Cells[(anzahlMonate * 3) + 10].Text = String.Format("{0:c}", preisGesamtFrei);
+ xrTableRowGesamt.Cells[(anzahlMonate * 4) + 12].Text = String.Format("{0:c}", preisGesamtFundA);
+ xrTableRowGesamt.Cells[(anzahlMonate * 4) + 13].Text = String.Format("{0:c}", preisGesamtEbFreiFundA);
+ xrTableRowGesamt.Cells[(anzahlMonate * 4) + 14].Text = String.Format("{0:0.##}", anzUebernachtungenGesamt);
+ xrTableRowGesamt.Cells[(anzahlMonate * 4) + 15].Text = String.Format("{0:c}", preisGesamtKurzpflege);
+ xrTableRowGesamt.Cells[(anzahlMonate * 4) + 16].Text = String.Format("{0:0.##}", anzTageReisenGesamt);
+ xrTableRowGesamt.Cells[(anzahlMonate * 4) + 19].Text = String.Format("{0:c}", preisGesamtReise);
+ }
+
private void CreateDataRows(AuswertungSelbstzahlerRO result, Dictionary dict)
{
xrTableDetail.BeginInit();
@@ -207,11 +336,18 @@ namespace HphBersenbrueckFreizeitUndReisen
String[] split = key.Split('_');
String datumsKey = split[1];
- if (split[0] == "EB")
+ if (split[0] == "EBN")
{
- if (detail.EinzelbetreuungMonat2Wert.ContainsKey(datumsKey))
+ if (detail.EinzelbetreuungNormalMonat2Wert.ContainsKey(datumsKey))
{
- return String.Format("{0:0.##}", detail.EinzelbetreuungMonat2Wert[datumsKey]);
+ return String.Format("{0:0.##}", detail.EinzelbetreuungNormalMonat2Wert[datumsKey]);
+ }
+ }
+ if (split[0] == "EBH")
+ {
+ if (detail.EinzelbetreuungHauptamtlich2Monat2Wert.ContainsKey(datumsKey))
+ {
+ return String.Format("{0:0.##}", detail.EinzelbetreuungHauptamtlich2Monat2Wert[datumsKey]);
}
}
else if (split[0] == "FREI")
@@ -233,7 +369,15 @@ namespace HphBersenbrueckFreizeitUndReisen
{
decimal? gesamt = null;
- foreach (var m2w in detail.EinzelbetreuungMonat2Wert)
+ foreach (var m2w in detail.EinzelbetreuungNormalMonat2Wert)
+ {
+ if (!gesamt.HasValue)
+ {
+ gesamt = 0;
+ }
+ gesamt += m2w.Value;
+ }
+ foreach (var m2w in detail.EinzelbetreuungHauptamtlich2Monat2Wert)
{
if (!gesamt.HasValue)
{
@@ -346,8 +490,10 @@ namespace HphBersenbrueckFreizeitUndReisen
DateTime datum = reportStart;
Dictionary headerDict = new Dictionary();
- List ebHeaders = new List();
- Dictionary ebHeader2Key = new Dictionary();
+ List ebnHeaders = new List();
+ Dictionary ebnHeader2Key = new Dictionary();
+ List ebhHeaders = new List();
+ Dictionary ebhHeader2Key = new Dictionary();
List freizeitAngeboteHeaders = new List();
Dictionary freizeitAngeboteHeader2Key = new Dictionary();
List fUndAHeaders = new List();
@@ -356,8 +502,11 @@ namespace HphBersenbrueckFreizeitUndReisen
while (datum <= reportEnde)
{
String key = String.Format("{0:yyyyMM}", datum);
- ebHeaders.Add(String.Format("EB Std. {0:MMM}", datum));
- ebHeader2Key.Add(String.Format("EB Std. {0:MMM}", datum), String.Format("EB_{0}", key));
+ ebnHeaders.Add(String.Format("EB Std. {0:MMM}", datum));
+ ebnHeader2Key.Add(String.Format("EB Std. {0:MMM}", datum), String.Format("EBN_{0}", key));
+
+ ebhHeaders.Add(String.Format("EB haupt Std. {0:MMM}", datum));
+ ebhHeader2Key.Add(String.Format("EB haupt Std. {0:MMM}", datum), String.Format("EBH_{0}", key));
freizeitAngeboteHeaders.Add(String.Format("Freizeit- angebote {0:MMM}", datum));
freizeitAngeboteHeader2Key.Add(String.Format("Freizeit- angebote {0:MMM}", datum), String.Format("FREI_{0}", key));
@@ -384,11 +533,16 @@ namespace HphBersenbrueckFreizeitUndReisen
datum = datum.AddMonths(1);
}
- foreach (var header in ebHeaders)
+ for (int i = 0; i < ebnHeaders.Count; i++)
{
- AddNewHeaderCell(header, Color.YellowGreen, headerDict, ebHeader2Key[header]);
+ AddNewHeaderCell(ebnHeaders[i], Color.YellowGreen, headerDict, ebnHeader2Key[ebnHeaders[i]]);
+ AddNewHeaderCell(ebhHeaders[i], Color.YellowGreen, headerDict, ebhHeader2Key[ebhHeaders[i]]);
}
- if (ebHeaders.Count > 0)
+ //foreach (var header in ebnHeaders)
+ //{
+ // AddNewHeaderCell(header, Color.YellowGreen, headerDict, ebnHeader2Key[header]);
+ //}
+ if (ebnHeaders.Count > 0 || ebhHeaders.Count > 0)
{
AddNewHeaderCell("Std. Gesamt", Color.YellowGreen, headerDict, "EBSTDGESAMT");
AddNewHeaderCell("Preis Gesamt", Color.YellowGreen, headerDict, "EBPREISGESAMT");
@@ -432,7 +586,7 @@ namespace HphBersenbrueckFreizeitUndReisen
xrTableHeader.Width = xrTableRowHeader.Cells.Count * 100;
- if (xrTableHeader.Width > this.PageWidth + 100)
+ if (xrTableHeader.Width > this.PageWidth - 100)
{
this.PageWidth = xrTableHeader.Width + 100;
}
@@ -480,7 +634,8 @@ namespace HphBersenbrueckFreizeitUndReisen
private AuswertungSelbstzahlerDetailRO CreateRow(SupportConcept sc, CostBearer2SupportConcept c2S, SupportConceptApprovalPeriod scap, DateTime reportStart, DateTime reportEnd)
{
AuswertungSelbstzahlerDetailRO ro = new AuswertungSelbstzahlerDetailRO();
- ro.EinzelbetreuungMonat2Wert = new Dictionary();
+ ro.EinzelbetreuungNormalMonat2Wert = new Dictionary();
+ ro.EinzelbetreuungHauptamtlich2Monat2Wert = new Dictionary();
ro.FreizeitAngeboteMonat2Wert = new Dictionary();
ro.FreizeittreffAusflugMonat2Wert = new Dictionary();
@@ -491,6 +646,7 @@ namespace HphBersenbrueckFreizeitUndReisen
ro.Nummer = c2S.CustomerReferenceNumber;
ro.KlientName = String.Format("{0}, {1}", sc.Customer.Person.LastName, sc.Customer.Person.FirstName);
ro.Pflegegrad = GetPflegegrad(sc.Customer);
+ ro.Restanspruch = scap.MonthlyPayment;
foreach (var vv in sc.Customer.VarFieldValueList)
{
@@ -583,68 +739,115 @@ namespace HphBersenbrueckFreizeitUndReisen
decimal? gesamtPreisFreizeittreff = null;
decimal? tagessatzReisen = null;
decimal? tageKurzurlaub = null;
+ decimal verbrauchtVorBericht = 0;
+
int? tageReisen = null;
foreach (var sr in serviceRecords)
{
- if (sr.Start.HasValue && reportStart <= sr.Start && sr.Start.Value.Date <= reportEnd.Date &&
- (scap.ServiceCategory == null || scap.ServiceCategory.Name == sr.ServiceDescription.ServiceCategory.Name))
+ if (sr.Start.HasValue && (scap.ServiceCategory == null || scap.ServiceCategory.Name == sr.ServiceDescription.ServiceCategory.Name))
{
+ bool liegtImBerichtszeitraun = (reportStart <= sr.Start && sr.Start.Value.Date <= reportEnd.Date);
+
String key = String.Format("{0:yyyyMM}", sr.Start);
if (sr.ServiceDescription.Name.Contains("Einzelbetreuung"))
{
- if (!ro.EinzelbetreuungMonat2Wert.ContainsKey(key))
- {
- ro.EinzelbetreuungMonat2Wert.Add(key, 0);
- }
- ro.EinzelbetreuungMonat2Wert[key] += sr.RoundedDuration / 60;
-
if (!ro.EinzelbetreuungPreisGesamt.HasValue)
{
ro.EinzelbetreuungPreisGesamt = 0;
}
+ if (liegtImBerichtszeitraun)
+ {
+ if (!ro.EinzelbetreuungHauptamtlich2Monat2Wert.ContainsKey(key))
+ {
+ ro.EinzelbetreuungHauptamtlich2Monat2Wert.Add(key, 0);
+ }
+ if (!ro.EinzelbetreuungNormalMonat2Wert.ContainsKey(key))
+ {
+ ro.EinzelbetreuungNormalMonat2Wert.Add(key, 0);
+ }
+ }
decimal preis = 0;
if (sr.ServiceDescription.Name.Contains("hauptamt"))
{
preis = AbrechnungsInfo.GetPreisForEinzelbetreuungHauptamtlich(sr.Start.Value);
-
+
+ if (liegtImBerichtszeitraun)
+ {
+ ro.EinzelbetreuungHauptamtlich2Monat2Wert[key] += sr.RoundedDuration / 60;
+ }
+
}
else
{
preis = AbrechnungsInfo.GetPreisForEinzelbetreuungEhrenamtlich(sr.Start.Value);
+
+ if (liegtImBerichtszeitraun)
+ {
+ ro.EinzelbetreuungNormalMonat2Wert[key] += sr.RoundedDuration / 60;
+ }
}
preis *= (sr.RoundedDuration / 60);
- ro.EinzelbetreuungPreisGesamt += preis;
+ if (liegtImBerichtszeitraun)
+ {
+ ro.EinzelbetreuungPreisGesamt += preis;
+ }
+ else
+ {
+ verbrauchtVorBericht += preis;
+ }
}
else if (sr.ServiceDescription.Name.Contains("Freizeitangebote"))
{
- if (!ro.FreizeitAngeboteMonat2Wert.ContainsKey(key))
+ if (liegtImBerichtszeitraun)
{
- ro.FreizeitAngeboteMonat2Wert.Add(key, 0);
+ if (!ro.FreizeitAngeboteMonat2Wert.ContainsKey(key))
+ {
+ ro.FreizeitAngeboteMonat2Wert.Add(key, 0);
+ }
+ ro.FreizeitAngeboteMonat2Wert[key] += 1;
}
- ro.FreizeitAngeboteMonat2Wert[key] += 1;
preisFreizeitangebot = AbrechnungsInfo.GetPreisForFreizeitangebot(sc.Customer.Pflegegrad, sr.Start.Value);
if (!gesamtPreisFreizeitangebot.HasValue)
{
gesamtPreisFreizeitangebot = 0;
}
- gesamtPreisFreizeitangebot += preisFreizeitangebot;
+
+ if (liegtImBerichtszeitraun)
+ {
+ gesamtPreisFreizeitangebot += preisFreizeitangebot;
+ }
+ else
+ {
+ verbrauchtVorBericht += preisFreizeitangebot ?? 0;
+ }
}
else if (sr.ServiceDescription.Name.Contains("Freizeittreff"))
{
- if (!ro.FreizeittreffAusflugMonat2Wert.ContainsKey(key))
+ if (liegtImBerichtszeitraun)
{
- ro.FreizeittreffAusflugMonat2Wert.Add(key, 0);
+ if (!ro.FreizeittreffAusflugMonat2Wert.ContainsKey(key))
+ {
+ ro.FreizeittreffAusflugMonat2Wert.Add(key, 0);
+ }
+ ro.FreizeittreffAusflugMonat2Wert[key] += 1;
}
- ro.FreizeittreffAusflugMonat2Wert[key] += 1;
preisFreizeittreff = AbrechnungsInfo.GetPreisForAusflugFreizeittreff(sc.Customer.Pflegegrad, sr.Start.Value);
if (!gesamtPreisFreizeittreff.HasValue)
{
gesamtPreisFreizeittreff = 0;
}
- gesamtPreisFreizeittreff += preisFreizeittreff;
+ if (liegtImBerichtszeitraun)
+ {
+ gesamtPreisFreizeittreff += preisFreizeittreff;
+ }
+ else
+ {
+ verbrauchtVorBericht += preisFreizeittreff ?? 0;
+ }
+
}
else if (sr.ServiceDescription.Name.Contains("Kurzurlaub") || sr.ServiceDescription.Name.Contains("Reisen"))
{
@@ -655,31 +858,48 @@ namespace HphBersenbrueckFreizeitUndReisen
{
if (sr.ServiceDescription.Name.Contains("Reisen"))
{
- if (!summeReisen.HasValue)
- summeReisen = 0;
var preis = AbrechnungsInfo.GetPreisForReisen(sc.Customer.Pflegegrad, start);
- summeReisen += preis;
- if (!tagessatzReisen.HasValue)
+
+ if (liegtImBerichtszeitraun)
{
- tagessatzReisen = preis;
+ if (!summeReisen.HasValue)
+ summeReisen = 0;
+ summeReisen += preis;
+ if (!tagessatzReisen.HasValue)
+ {
+ tagessatzReisen = preis;
+ }
+ if (!tageReisen.HasValue)
+ tageReisen = 0;
+ tageReisen++;
}
- if (!tageReisen.HasValue)
- tageReisen = 0;
- tageReisen++;
-
+ else
+ {
+ verbrauchtVorBericht += preis;
+ }
+
}
else
{
var key2Date = key2TagesDict[sr.ServiceDescription.ServiceCategory.Name.ToLower().Trim()];
- if (!summeKurzurlaub.HasValue)
- summeKurzurlaub = 0;
+
var preisFuerEineNacht = AbrechnungsInfo.GetPreisForKurzurlaub(sc.Customer.Pflegegrad, null, start);
var preisFuerDiesenTag = AbrechnungsInfo.GetPreisForKurzurlaub(sc.Customer.Pflegegrad, key2Date, start);
- summeKurzurlaub += preisFuerDiesenTag;
- if (!tageKurzurlaub.HasValue)
- tageKurzurlaub = 0;
- tageKurzurlaub += preisFuerDiesenTag / preisFuerEineNacht;
+ if (liegtImBerichtszeitraun)
+ {
+ if (!summeKurzurlaub.HasValue)
+ summeKurzurlaub = 0;
+ summeKurzurlaub += preisFuerDiesenTag;
+ if (!tageKurzurlaub.HasValue)
+ tageKurzurlaub = 0;
+
+ tageKurzurlaub += preisFuerDiesenTag / preisFuerEineNacht;
+ }
+ else
+ {
+ verbrauchtVorBericht += preisFuerDiesenTag;
+ }
}
start = start.AddDays(1);
@@ -701,7 +921,7 @@ namespace HphBersenbrueckFreizeitUndReisen
ro.ReisenTagessatzProTag = tagessatzReisen;
ro.Kontingent = BerechneBewilligungsBetrag(scap);
- ro.Bereitsverbraucht = (ro.EinzelbetreuungPreisGesamt ?? 0) + (ro.GesamtPreisFreizeitangebot ?? 0) + (ro.GesamtPreisFreizeittreff ?? 0) + (ro.KurzzeitpflegeGesamtPreis ?? 0) + (ro.ReisenGesamtPreis ?? 0);
+ ro.Bereitsverbraucht = (ro.EinzelbetreuungPreisGesamt ?? 0) + (ro.GesamtPreisFreizeitangebot ?? 0) + (ro.GesamtPreisFreizeittreff ?? 0) + (ro.KurzzeitpflegeGesamtPreis ?? 0) + (ro.ReisenGesamtPreis ?? 0) + verbrauchtVorBericht;
ro.NochOffen = (ro.Kontingent ?? 0) - (ro.Bereitsverbraucht ?? 0);
return ro;
}
diff --git a/ReportImp/HphBersenbrueckFreizeitUndReisen/AuswertungSelbstzahlerRO.cs b/ReportImp/HphBersenbrueckFreizeitUndReisen/AuswertungSelbstzahlerRO.cs
index 21b089a80..403c13a9b 100644
--- a/ReportImp/HphBersenbrueckFreizeitUndReisen/AuswertungSelbstzahlerRO.cs
+++ b/ReportImp/HphBersenbrueckFreizeitUndReisen/AuswertungSelbstzahlerRO.cs
@@ -25,7 +25,9 @@ namespace HphBersenbrueckFreizeitUndReisen
public String Bemerkung { get; set; }
- public Dictionary EinzelbetreuungMonat2Wert { get; set; }
+ public Dictionary EinzelbetreuungNormalMonat2Wert { get; set; }
+
+ public Dictionary EinzelbetreuungHauptamtlich2Monat2Wert { get; set; }
public decimal? EinzelbetreuungPreisGesamt { get; set; }
diff --git a/ReportImp/HphBersenbrueckFreizeitUndReisen/Properties/licenses.licx b/ReportImp/HphBersenbrueckFreizeitUndReisen/Properties/licenses.licx
index e69de29bb..c7fd819d5 100644
--- a/ReportImp/HphBersenbrueckFreizeitUndReisen/Properties/licenses.licx
+++ b/ReportImp/HphBersenbrueckFreizeitUndReisen/Properties/licenses.licx
@@ -0,0 +1 @@
+DevExpress.XtraReports.UI.XtraReport, DevExpress.XtraReports.v17.1, Version=17.1.4.0, Culture=neutral, PublicKeyToken=b88d1754d700e49a
diff --git a/ReportImp/KomMitBewo/KomMitBewo.csproj b/ReportImp/KomMitBewo/KomMitBewo.csproj
index 24312eb40..37d73a36d 100644
--- a/ReportImp/KomMitBewo/KomMitBewo.csproj
+++ b/ReportImp/KomMitBewo/KomMitBewo.csproj
@@ -16,9 +16,9 @@
true
full
- true
+ false
..\..\Host\bin\
- TRACE
+ DEBUG;TRACE
prompt
4
false
diff --git a/ReportImp/LebenshilfeAhrweiler/LebenshilfeAhrweiler.csproj b/ReportImp/LebenshilfeAhrweiler/LebenshilfeAhrweiler.csproj
index 246f48aed..41876e069 100644
--- a/ReportImp/LebenshilfeAhrweiler/LebenshilfeAhrweiler.csproj
+++ b/ReportImp/LebenshilfeAhrweiler/LebenshilfeAhrweiler.csproj
@@ -79,6 +79,12 @@
ServicesOverviewReport.cs
+
+ Component
+
+
+ ZieleMassnahmen.cs
+
@@ -107,6 +113,10 @@
ServicesOverviewReport.cs
+
+ ZieleMassnahmen.cs
+ Designer
+
diff --git a/ReportImp/LebenshilfeAhrweiler/ServicesOverviewReport.cs b/ReportImp/LebenshilfeAhrweiler/ServicesOverviewReport.cs
index 57fd11cfc..9144d0e7e 100644
--- a/ReportImp/LebenshilfeAhrweiler/ServicesOverviewReport.cs
+++ b/ReportImp/LebenshilfeAhrweiler/ServicesOverviewReport.cs
@@ -36,6 +36,8 @@ namespace LebenshilfeAhrweiler
decimal minutenFl = 0;
decimal minutenAh = 0;
+ List servicesList = new List();
+
foreach (var sr in pRO.Services)
{
SetGoals(sr);
@@ -47,17 +49,20 @@ namespace LebenshilfeAhrweiler
{
sr.Notice3 = "Fl";
minutenFl += (decimal)sr.Minutes;
+ servicesList.Add(sr);
}
else if (sr.ServiceDescription == "AH-Stunde")
{
sr.Notice3 = "aH";
minutenAh += (decimal)sr.Minutes;
+ servicesList.Add(sr);
}
if (sr.IsGroup)
{
sr.Notice3 = String.Format("{0} / {1}", sr.Notice3, sr.CustomerCount);
}
}
+ pRO.Services = servicesList;
cellGesamtFl.Text = String.Format("{0:0.00}", minutenFl / 60);
cellGesamtAh.Text = String.Format("{0:0.00}", minutenAh / 60);
diff --git a/ReportImp/LebenshilfeAhrweiler/ZieleMassnahmen.Designer.cs b/ReportImp/LebenshilfeAhrweiler/ZieleMassnahmen.Designer.cs
new file mode 100644
index 000000000..0f4035a23
--- /dev/null
+++ b/ReportImp/LebenshilfeAhrweiler/ZieleMassnahmen.Designer.cs
@@ -0,0 +1,248 @@
+namespace LebenshilfeAhrweiler
+{
+ partial class ZieleMassnahmen
+ {
+ ///
+ /// Required designer variable.
+ ///
+ private System.ComponentModel.IContainer components = null;
+
+ ///
+ /// Clean up any resources being used.
+ ///
+ /// true if managed resources should be disposed; otherwise, false.
+ protected override void Dispose(bool disposing)
+ {
+ if (disposing && (components != null))
+ {
+ components.Dispose();
+ }
+ base.Dispose(disposing);
+ }
+
+ #region Designer generated code
+
+ ///
+ /// Required method for Designer support - do not modify
+ /// the contents of this method with the code editor.
+ ///
+ private void InitializeComponent()
+ {
+ this.components = new System.ComponentModel.Container();
+ System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(ZieleMassnahmen));
+ this.Detail = new DevExpress.XtraReports.UI.DetailBand();
+ this.xrRichText1 = new DevExpress.XtraReports.UI.XRRichText();
+ this.bindingSource1 = new System.Windows.Forms.BindingSource(this.components);
+ this.topMarginBand1 = new DevExpress.XtraReports.UI.TopMarginBand();
+ this.bottomMarginBand1 = new DevExpress.XtraReports.UI.BottomMarginBand();
+ this.GroupHeader1 = new DevExpress.XtraReports.UI.GroupHeaderBand();
+ this.lblKlient = new DevExpress.XtraReports.UI.XRLabel();
+ this.xrLabel14 = new DevExpress.XtraReports.UI.XRLabel();
+ this.xrLabel1 = new DevExpress.XtraReports.UI.XRLabel();
+ this.xrLabel2 = new DevExpress.XtraReports.UI.XRLabel();
+ this.lblAktenzeichen = new DevExpress.XtraReports.UI.XRLabel();
+ this.lblZeitraum = new DevExpress.XtraReports.UI.XRLabel();
+ this.xrLabel6 = new DevExpress.XtraReports.UI.XRLabel();
+ ((System.ComponentModel.ISupportInitialize)(this.xrRichText1)).BeginInit();
+ ((System.ComponentModel.ISupportInitialize)(this.bindingSource1)).BeginInit();
+ ((System.ComponentModel.ISupportInitialize)(this)).BeginInit();
+ //
+ // Detail
+ //
+ this.Detail.Controls.AddRange(new DevExpress.XtraReports.UI.XRControl[] {
+ this.xrRichText1});
+ this.Detail.Font = new System.Drawing.Font("Arial", 10F);
+ this.Detail.HeightF = 538F;
+ 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;
+ //
+ // xrRichText1
+ //
+ this.xrRichText1.Font = new System.Drawing.Font("Arial", 10F);
+ this.xrRichText1.LocationFloat = new DevExpress.Utils.PointFloat(0F, 0F);
+ this.xrRichText1.Name = "xrRichText1";
+ this.xrRichText1.SerializableRtfString = resources.GetString("xrRichText1.SerializableRtfString");
+ this.xrRichText1.SizeF = new System.Drawing.SizeF(677F, 538F);
+ //
+ // bindingSource1
+ //
+ this.bindingSource1.DataSource = typeof(BeWo.Report.ReportObjects.CustomerDataRO);
+ //
+ // topMarginBand1
+ //
+ this.topMarginBand1.HeightF = 75F;
+ this.topMarginBand1.Name = "topMarginBand1";
+ //
+ // bottomMarginBand1
+ //
+ this.bottomMarginBand1.HeightF = 75F;
+ this.bottomMarginBand1.Name = "bottomMarginBand1";
+ //
+ // GroupHeader1
+ //
+ this.GroupHeader1.Controls.AddRange(new DevExpress.XtraReports.UI.XRControl[] {
+ this.xrLabel6,
+ this.lblZeitraum,
+ this.lblAktenzeichen,
+ this.xrLabel2,
+ this.xrLabel1,
+ this.lblKlient,
+ this.xrLabel14});
+ this.GroupHeader1.HeightF = 125F;
+ this.GroupHeader1.Name = "GroupHeader1";
+ //
+ // lblKlient
+ //
+ this.lblKlient.BackColor = System.Drawing.Color.Transparent;
+ this.lblKlient.CanShrink = true;
+ this.lblKlient.Font = new System.Drawing.Font("Arial", 12F);
+ this.lblKlient.LocationFloat = new DevExpress.Utils.PointFloat(211.9789F, 1.589457E-05F);
+ this.lblKlient.Name = "lblKlient";
+ this.lblKlient.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
+ this.lblKlient.SizeF = new System.Drawing.SizeF(364.0622F, 24.99998F);
+ this.lblKlient.StylePriority.UseBackColor = false;
+ this.lblKlient.StylePriority.UseBorders = false;
+ this.lblKlient.StylePriority.UseFont = false;
+ this.lblKlient.StylePriority.UseTextAlignment = false;
+ this.lblKlient.TextAlignment = DevExpress.XtraPrinting.TextAlignment.TopLeft;
+ this.lblKlient.WordWrap = false;
+ //
+ // xrLabel14
+ //
+ this.xrLabel14.BackColor = System.Drawing.Color.Transparent;
+ this.xrLabel14.CanShrink = true;
+ this.xrLabel14.Font = new System.Drawing.Font("Arial", 12F, System.Drawing.FontStyle.Bold);
+ this.xrLabel14.LocationFloat = new DevExpress.Utils.PointFloat(0F, 0F);
+ this.xrLabel14.Name = "xrLabel14";
+ this.xrLabel14.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
+ this.xrLabel14.SizeF = new System.Drawing.SizeF(131.25F, 25F);
+ this.xrLabel14.StylePriority.UseBackColor = false;
+ this.xrLabel14.StylePriority.UseBorders = false;
+ this.xrLabel14.StylePriority.UseFont = false;
+ this.xrLabel14.StylePriority.UseTextAlignment = false;
+ this.xrLabel14.Text = "Klient/in:";
+ this.xrLabel14.TextAlignment = DevExpress.XtraPrinting.TextAlignment.TopLeft;
+ this.xrLabel14.WordWrap = false;
+ //
+ // xrLabel1
+ //
+ this.xrLabel1.BackColor = System.Drawing.Color.Transparent;
+ this.xrLabel1.CanShrink = true;
+ this.xrLabel1.Font = new System.Drawing.Font("Arial", 12F, System.Drawing.FontStyle.Bold);
+ this.xrLabel1.LocationFloat = new DevExpress.Utils.PointFloat(0F, 25F);
+ this.xrLabel1.Name = "xrLabel1";
+ this.xrLabel1.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
+ this.xrLabel1.SizeF = new System.Drawing.SizeF(131.25F, 25F);
+ this.xrLabel1.StylePriority.UseBackColor = false;
+ this.xrLabel1.StylePriority.UseBorders = false;
+ this.xrLabel1.StylePriority.UseFont = false;
+ this.xrLabel1.StylePriority.UseTextAlignment = false;
+ this.xrLabel1.Text = "Aktenzeichen:";
+ this.xrLabel1.TextAlignment = DevExpress.XtraPrinting.TextAlignment.TopLeft;
+ this.xrLabel1.WordWrap = false;
+ //
+ // xrLabel2
+ //
+ this.xrLabel2.BackColor = System.Drawing.Color.Transparent;
+ this.xrLabel2.CanShrink = true;
+ this.xrLabel2.Font = new System.Drawing.Font("Arial", 12F, System.Drawing.FontStyle.Bold);
+ this.xrLabel2.LocationFloat = new DevExpress.Utils.PointFloat(0F, 50F);
+ this.xrLabel2.Name = "xrLabel2";
+ this.xrLabel2.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
+ this.xrLabel2.SizeF = new System.Drawing.SizeF(209.8958F, 25F);
+ this.xrLabel2.StylePriority.UseBackColor = false;
+ this.xrLabel2.StylePriority.UseBorders = false;
+ this.xrLabel2.StylePriority.UseFont = false;
+ this.xrLabel2.StylePriority.UseTextAlignment = false;
+ this.xrLabel2.Text = "Bewilligungszeitraum:";
+ this.xrLabel2.TextAlignment = DevExpress.XtraPrinting.TextAlignment.TopLeft;
+ this.xrLabel2.WordWrap = false;
+ //
+ // lblAktenzeichen
+ //
+ this.lblAktenzeichen.BackColor = System.Drawing.Color.Transparent;
+ this.lblAktenzeichen.CanShrink = true;
+ this.lblAktenzeichen.Font = new System.Drawing.Font("Arial", 12F);
+ this.lblAktenzeichen.LocationFloat = new DevExpress.Utils.PointFloat(211.9789F, 25F);
+ this.lblAktenzeichen.Name = "lblAktenzeichen";
+ this.lblAktenzeichen.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
+ this.lblAktenzeichen.SizeF = new System.Drawing.SizeF(364.0622F, 24.99998F);
+ this.lblAktenzeichen.StylePriority.UseBackColor = false;
+ this.lblAktenzeichen.StylePriority.UseBorders = false;
+ this.lblAktenzeichen.StylePriority.UseFont = false;
+ this.lblAktenzeichen.StylePriority.UseTextAlignment = false;
+ this.lblAktenzeichen.TextAlignment = DevExpress.XtraPrinting.TextAlignment.TopLeft;
+ this.lblAktenzeichen.WordWrap = false;
+ //
+ // lblZeitraum
+ //
+ this.lblZeitraum.BackColor = System.Drawing.Color.Transparent;
+ this.lblZeitraum.CanShrink = true;
+ this.lblZeitraum.Font = new System.Drawing.Font("Arial", 12F);
+ this.lblZeitraum.LocationFloat = new DevExpress.Utils.PointFloat(211.9789F, 50.00003F);
+ this.lblZeitraum.Name = "lblZeitraum";
+ this.lblZeitraum.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
+ this.lblZeitraum.SizeF = new System.Drawing.SizeF(364.0622F, 24.99998F);
+ this.lblZeitraum.StylePriority.UseBackColor = false;
+ this.lblZeitraum.StylePriority.UseBorders = false;
+ this.lblZeitraum.StylePriority.UseFont = false;
+ this.lblZeitraum.StylePriority.UseTextAlignment = false;
+ this.lblZeitraum.TextAlignment = DevExpress.XtraPrinting.TextAlignment.TopLeft;
+ this.lblZeitraum.WordWrap = false;
+ //
+ // xrLabel6
+ //
+ this.xrLabel6.BackColor = System.Drawing.Color.Transparent;
+ this.xrLabel6.CanShrink = true;
+ this.xrLabel6.Font = new System.Drawing.Font("Arial", 12F, System.Drawing.FontStyle.Bold);
+ this.xrLabel6.LocationFloat = new DevExpress.Utils.PointFloat(0F, 100F);
+ this.xrLabel6.Name = "xrLabel6";
+ this.xrLabel6.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
+ this.xrLabel6.SizeF = new System.Drawing.SizeF(387.5F, 25F);
+ this.xrLabel6.StylePriority.UseBackColor = false;
+ this.xrLabel6.StylePriority.UseBorders = false;
+ this.xrLabel6.StylePriority.UseFont = false;
+ this.xrLabel6.StylePriority.UseTextAlignment = false;
+ this.xrLabel6.Text = "Maßnahmen und Ziele gemäß Bescheid";
+ this.xrLabel6.TextAlignment = DevExpress.XtraPrinting.TextAlignment.TopLeft;
+ this.xrLabel6.WordWrap = false;
+ //
+ // ZieleMassnahmen
+ //
+ this.Bands.AddRange(new DevExpress.XtraReports.UI.Band[] {
+ this.Detail,
+ this.topMarginBand1,
+ this.bottomMarginBand1,
+ this.GroupHeader1});
+ this.DataSource = this.bindingSource1;
+ this.Font = new System.Drawing.Font("Arial", 10F);
+ this.Margins = new System.Drawing.Printing.Margins(75, 75, 75, 75);
+ this.PageHeight = 1169;
+ this.PageWidth = 827;
+ this.PaperKind = System.Drawing.Printing.PaperKind.A4;
+ this.Version = "13.2";
+ ((System.ComponentModel.ISupportInitialize)(this.xrRichText1)).EndInit();
+ ((System.ComponentModel.ISupportInitialize)(this.bindingSource1)).EndInit();
+ ((System.ComponentModel.ISupportInitialize)(this)).EndInit();
+
+ }
+
+ #endregion
+
+ private DevExpress.XtraReports.UI.DetailBand Detail;
+ private System.Windows.Forms.BindingSource bindingSource1;
+ private DevExpress.XtraReports.UI.TopMarginBand topMarginBand1;
+ private DevExpress.XtraReports.UI.BottomMarginBand bottomMarginBand1;
+ private DevExpress.XtraReports.UI.XRRichText xrRichText1;
+ private DevExpress.XtraReports.UI.GroupHeaderBand GroupHeader1;
+ private DevExpress.XtraReports.UI.XRLabel lblKlient;
+ private DevExpress.XtraReports.UI.XRLabel xrLabel14;
+ private DevExpress.XtraReports.UI.XRLabel xrLabel6;
+ private DevExpress.XtraReports.UI.XRLabel lblZeitraum;
+ private DevExpress.XtraReports.UI.XRLabel lblAktenzeichen;
+ private DevExpress.XtraReports.UI.XRLabel xrLabel2;
+ private DevExpress.XtraReports.UI.XRLabel xrLabel1;
+ }
+}
diff --git a/ReportImp/LebenshilfeAhrweiler/ZieleMassnahmen.cs b/ReportImp/LebenshilfeAhrweiler/ZieleMassnahmen.cs
new file mode 100644
index 000000000..75d90dd8a
--- /dev/null
+++ b/ReportImp/LebenshilfeAhrweiler/ZieleMassnahmen.cs
@@ -0,0 +1,162 @@
+using System;
+using System.Collections.Generic;
+using System.Linq;
+using System.Text;
+using BeWo.Data.Access;
+using BeWo.Report;
+using BeWo.Report.ReportObjects;
+using BeWo.Data.Entities;
+using BS.Shared;
+
+namespace LebenshilfeAhrweiler
+{
+ public partial class ZieleMassnahmen : DevExpress.XtraReports.UI.XtraReport, IBeWoReport
+ {
+ public ZieleMassnahmen()
+ {
+ InitializeComponent();
+ }
+
+ public void SetReportDataSource(QueryRO pRO)
+ {
+ long cb2scOid = 0;
+ if (pRO.Rows != null)
+ {
+ long oid = 0;
+ if (Int64.TryParse(pRO.Rows[0].Field1.ToString(), out oid) && oid > 0)
+ {
+ cb2scOid = oid;
+ }
+ }
+
+ if (cb2scOid > 0)
+ {
+ var c2s = DAOFactory.GenericDAO.LoadByID(cb2scOid);
+
+ lblKlient.Text = String.Format("{0} {1}", c2s.SupportConcept.Customer.Person.FirstName, c2s.SupportConcept.Customer.Person.LastName);
+
+ lblAktenzeichen.Text = c2s.CustomerReferenceNumber;
+
+ lblZeitraum.Text = String.Format("{0:dd.MM.yyyy} - {1:dd.MM.yyyy}", c2s.StartDate, c2s.EndDate);
+
+ var tree = BuildGoalTree(c2s.SupportConcept);
+ var html = BuildGoalHtml(tree);
+
+ xrRichText1.Html = html;
+ }
+ }
+
+ private List BuildGoalTree(SupportConcept sc)
+ {
+ List goals = new List();
+
+ Dictionary oid2Goal = new Dictionary();
+
+ var oid2ValueListEntries = new Dictionary();
+
+ var list = DAOFactory.SearchDAO.FindValueListEntries(new[]
+ {
+ ValueListEntryType.SupportConceptGoalCategoryType,
+ ValueListEntryType.SupportConceptGoalType,
+ ValueListEntryType.SupportConceptIndividualGoalCategoryType,
+ ValueListEntryType.SupportConceptIndividualGoalType
+ }.ToList()).Where(ve => ve.IsActive == ActivationTypeId.Active);
+
+ foreach (var vle in list)
+ {
+ oid2ValueListEntries.Add(vle.Oid.Value, vle);
+ }
+
+ foreach (var v2e in sc.ValueList)
+ {
+ if (v2e.Entry.IsActive == ActivationTypeId.Active && (v2e.Entry.Type == ValueListEntryType.SupportConceptGoalCategoryType ||
+ v2e.Entry.Type == ValueListEntryType.SupportConceptGoalType ||
+ v2e.Entry.Type == ValueListEntryType.SupportConceptIndividualGoalCategoryType ||
+ v2e.Entry.Type == ValueListEntryType.SupportConceptIndividualGoalType))
+ {
+ if (!oid2Goal.ContainsKey(v2e.Entry.Oid.Value))
+ {
+ var goal = new Goal();
+ goal.Oid = v2e.Entry.Oid.Value;
+ goal.Name = v2e.Entry.Value;
+ goal.ParentOid = v2e.Entry.ParentOid;
+
+ oid2Goal.Add(goal.Oid, goal);
+
+ AddParentGoalToDict(goal.ParentOid, oid2Goal, oid2ValueListEntries);
+ }
+ }
+ }
+
+
+
+ foreach (var goal in oid2Goal.Values)
+ {
+ if (goal.ParentOid.HasValue && oid2Goal.ContainsKey(goal.ParentOid.Value))
+ {
+ var parent = oid2Goal[goal.ParentOid.Value];
+
+ if (parent.Children == null)
+ {
+ parent.Children = new List();
+ }
+ parent.Children.Add(goal);
+ parent.Children.Sort((a, b) => a.Name.CompareTo(b.Name));
+ }
+ }
+
+ return oid2Goal.Values.Where(g => !g.ParentOid.HasValue).OrderBy(g => g.Name).ToList();
+ }
+
+ private void AddParentGoalToDict(long? parentGoalOid, Dictionary oid2Goal, Dictionary oid2AllValueListEntries)
+ {
+
+ if (parentGoalOid.HasValue && oid2AllValueListEntries.ContainsKey(parentGoalOid.Value) && !oid2Goal.ContainsKey(parentGoalOid.Value))
+ {
+ var e = oid2AllValueListEntries[parentGoalOid.Value];
+ var parentgoal = new Goal();
+ parentgoal.Oid = e.Oid.Value;
+ parentgoal.Name = e.Value;
+ parentgoal.ParentOid = e.ParentOid;
+
+ oid2Goal.Add(parentgoal.Oid, parentgoal);
+
+ AddParentGoalToDict(parentgoal.ParentOid, oid2Goal, oid2AllValueListEntries);
+ }
+ }
+
+ private string BuildGoalHtml(List goalTree)
+ {
+ StringBuilder sb = new StringBuilder();
+
+ AddGoalsToTree(sb, goalTree);
+
+ return sb.ToString();
+ }
+
+ private void AddGoalsToTree(StringBuilder sb, List goalList)
+ {
+ sb.Append("");
+ foreach (var goal in goalList)
+ {
+ sb.Append("- ");
+ sb.Append(goal.Name);
+ sb.Append("
");
+
+ if (goal.Children != null && goal.Children.Count > 0)
+ {
+ AddGoalsToTree(sb, goal.Children);
+ }
+ }
+ sb.Append("
");
+ }
+ }
+
+ public class Goal
+ {
+ public String Name { get; set; }
+ public long Oid { get; set; }
+ public long? ParentOid { get; set; }
+ public List Children { get; set; }
+ }
+}
diff --git a/ReportImp/LebenshilfeAhrweiler/ZieleMassnahmen.resx b/ReportImp/LebenshilfeAhrweiler/ZieleMassnahmen.resx
new file mode 100644
index 000000000..122115cee
--- /dev/null
+++ b/ReportImp/LebenshilfeAhrweiler/ZieleMassnahmen.resx
@@ -0,0 +1,126 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ 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
+
+
+ ewBcAHIAdABmADEAXABhAG4AcwBpAFwAYQBuAHMAaQBjAHAAZwAxADIANQAyAFwAZABlAGYAZgAwAHsAXABmAG8AbgB0AHQAYgBsAHsAXABmADAAXABmAG4AaQBsACAAVABpAG0AZQBzACAATgBlAHcAIABSAG8AbQBhAG4AOwB9AH0ADQAKAFwAdgBpAGUAdwBrAGkAbgBkADQAXAB1AGMAMQBcAHAAYQByAGQAXABsAGEAbgBnADEAMAAzADEAXABmADAAXABmAHMAMgA0AFwAcABhAHIADQAKAH0ADQAKAA==
+
+
+ 17, 17
+
+
\ No newline at end of file
diff --git a/ReportImp/LebenshilfeDuisburgServicePlus/Invoicing/LHDuisburgDefaultInvoiceCreation.cs b/ReportImp/LebenshilfeDuisburgServicePlus/Invoicing/LHDuisburgDefaultInvoiceCreation.cs
index 0f3a91344..ecb3381de 100644
--- a/ReportImp/LebenshilfeDuisburgServicePlus/Invoicing/LHDuisburgDefaultInvoiceCreation.cs
+++ b/ReportImp/LebenshilfeDuisburgServicePlus/Invoicing/LHDuisburgDefaultInvoiceCreation.cs
@@ -60,9 +60,9 @@ namespace LebenshilfeDuisburgServicePlus.Invoicing
tempii.ItemPeriodStart = accountingPeriodStart;
tempii.ItemPeriodEnd = accountingPeriodEnd;
- CreateItemTextForCategory(tempii, iServiceRecord.ServiceDescription.Category.Name, iServiceRecord.ServiceDescription.Name);
+ CreateItemTextForCategory(tempii, iServiceRecord.ServiceDescription.Category.Name, iServiceRecord.ServiceDescription.Name, iServiceRecord.Notice);
- String key = String.Format("{0}_{1}_{2:0.00}_{3:0.00}", tempii.ItemDescription, tempii.Notice, tempii.AmountPerUnit, tempii.RateFactor);
+ String key = String.Format("{0}_{1}_{2:0.00}_{3:0.00}", tempii.ItemDescription, tempii.Notice, tempii.AmountPerUnit, tempii.RateFactor);
if (category2InvoiceItems.ContainsKey(key))
{
@@ -129,7 +129,7 @@ namespace LebenshilfeDuisburgServicePlus.Invoicing
}
}
- private void CreateItemTextForCategory(InvoiceItem ii, string category, string sd)
+ private void CreateItemTextForCategory(InvoiceItem ii, string category, string sd, string serviceRecordNotice)
{
//Nachmittagsbetreuung SA
//Nachmittagsbetreuung JA
@@ -148,7 +148,11 @@ namespace LebenshilfeDuisburgServicePlus.Invoicing
{
name = sd.ToLower().Trim();
}
-
+ if (name.Contains(" pool "))
+ {
+ ii.ItemDescription = serviceRecordNotice;
+ return;
+ }
ii.ItemDescription = category;
if (name == "Nachmittagsbetreuung SA".ToLower())
{
diff --git a/ReportImp/SozialeDiensteNiederrhein/SDNHomeContentGenerator.cs b/ReportImp/SozialeDiensteNiederrhein/SDNHomeContentGenerator.cs
index 2583e50e6..e3b057367 100644
--- a/ReportImp/SozialeDiensteNiederrhein/SDNHomeContentGenerator.cs
+++ b/ReportImp/SozialeDiensteNiederrhein/SDNHomeContentGenerator.cs
@@ -41,7 +41,7 @@ namespace SozialeDiensteNiederrhein
{
showAll = true;
}
- else if (ug.Name == "UNA-Leitung")
+ else if (ug.Name == "UNA Leitung")
{
showTeam = true;
}
diff --git a/ReportImp/VSDHammReports/VsdHammReportCreator.cs b/ReportImp/VSDHammReports/VsdHammReportCreator.cs
index 28e91e500..745d4784c 100644
--- a/ReportImp/VSDHammReports/VsdHammReportCreator.cs
+++ b/ReportImp/VSDHammReports/VsdHammReportCreator.cs
@@ -43,7 +43,7 @@ namespace VSDHammReports
}
- private XtraReport CreateServicesOverviewReportForRo(ServicesOverviewRO ro, long? serviceCategoryOid)
+ private XtraReport CreateServicesOverviewReportForRo(ServicesOverviewRO ro, long? serviceCategoryOid)
{
IBeWoReport report = null;
@@ -57,10 +57,10 @@ namespace VSDHammReports
{
report = new VSDHammReports.QuittierungsbelegJA();
}
- else if (kt.Contains("Jugendamt") || kt == "Jugendamt der Stadt Hamm" || kt == "Jugendamt der Stadt Aachen"
+ else if (kt.Contains("Jugendamt") || kt.Contains("jugendamt") || kt == "Jugendamt der Stadt Hamm" || kt == "Jugendamt der Stadt Aachen"
|| kt == "Stadt Hamm Jugendamt Clearing" || kt == "Stadt Hamm Jugendamt Wohnprojekt" || kt == "Jugendamt Ahlen Wohnprojekt")
{
- if (ro.StartDate < new DateTime(2016, 7, 1))
+ if (ro.StartDate < new DateTime(2016, 7, 1))
{
report = new VSDHammReports.QuittierungsbelegJA();
}
diff --git a/ReportImp/WegweiserBetreuungsdienstReports/Properties/licenses.licx b/ReportImp/WegweiserBetreuungsdienstReports/Properties/licenses.licx
index e69de29bb..c7fd819d5 100644
--- a/ReportImp/WegweiserBetreuungsdienstReports/Properties/licenses.licx
+++ b/ReportImp/WegweiserBetreuungsdienstReports/Properties/licenses.licx
@@ -0,0 +1 @@
+DevExpress.XtraReports.UI.XtraReport, DevExpress.XtraReports.v17.1, Version=17.1.4.0, Culture=neutral, PublicKeyToken=b88d1754d700e49a
diff --git a/ReportImp/WegweiserBetreuungsdienstReports/SettlementReport.Designer.cs b/ReportImp/WegweiserBetreuungsdienstReports/SettlementReport.Designer.cs
index 115b9ef7d..36f1e485e 100644
--- a/ReportImp/WegweiserBetreuungsdienstReports/SettlementReport.Designer.cs
+++ b/ReportImp/WegweiserBetreuungsdienstReports/SettlementReport.Designer.cs
@@ -1,5 +1,5 @@
using BeWo.Report.ReportObjects;
-namespace BeWo.WegweiserBetreuungsdienstReports
+namespace BeWo.WegweiserBetreuungsdienstReports.Alt
{
partial class Spitzabrechnung
{
@@ -29,182 +29,182 @@ namespace BeWo.WegweiserBetreuungsdienstReports
///
private void InitializeComponent()
{
- 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.xrLabel13 = new DevExpress.XtraReports.UI.XRLabel();
- this.xrLine1 = new DevExpress.XtraReports.UI.XRLine();
- this.xrPictureBox2 = new DevExpress.XtraReports.UI.XRPictureBox();
- this.xrLabel9 = new DevExpress.XtraReports.UI.XRLabel();
- this.xrPictureBox1 = new DevExpress.XtraReports.UI.XRPictureBox();
- this.xrLabel8 = new DevExpress.XtraReports.UI.XRLabel();
- this.xrTable1 = new DevExpress.XtraReports.UI.XRTable();
- this.xrTableRow9 = new DevExpress.XtraReports.UI.XRTableRow();
- this.xrTableCell19 = new DevExpress.XtraReports.UI.XRTableCell();
- this.xrTableCell6 = new DevExpress.XtraReports.UI.XRTableCell();
- this.xrTableRow10 = new DevExpress.XtraReports.UI.XRTableRow();
- this.xrTableCell20 = new DevExpress.XtraReports.UI.XRTableCell();
- this.ruleRateFactorNull = new DevExpress.XtraReports.UI.FormattingRule();
- this.xrTableCell7 = new DevExpress.XtraReports.UI.XRTableCell();
- this.xrTableRow11 = new DevExpress.XtraReports.UI.XRTableRow();
- this.xrTableCell21 = new DevExpress.XtraReports.UI.XRTableCell();
- this.rowErbrachteLeistung = new DevExpress.XtraReports.UI.XRTableRow();
- this.xrTableCell22 = new DevExpress.XtraReports.UI.XRTableCell();
- this.rowAbrechnung1 = new DevExpress.XtraReports.UI.XRTableRow();
- this.xrTableCell36 = new DevExpress.XtraReports.UI.XRTableCell();
- this.xrTableCell34 = new DevExpress.XtraReports.UI.XRTableCell();
- this.rowAbrechnung2 = new DevExpress.XtraReports.UI.XRTableRow();
- this.xrTableCell37 = new DevExpress.XtraReports.UI.XRTableCell();
- this.xrTableCell33 = new DevExpress.XtraReports.UI.XRTableCell();
- this.rowAbrechnung3 = new DevExpress.XtraReports.UI.XRTableRow();
- this.xrTableCell38 = new DevExpress.XtraReports.UI.XRTableCell();
- this.xrTableCell32 = new DevExpress.XtraReports.UI.XRTableCell();
- this.xrTableRow13 = new DevExpress.XtraReports.UI.XRTableRow();
- this.xrTableCell23 = new DevExpress.XtraReports.UI.XRTableCell();
- this.xrTableRow14 = new DevExpress.XtraReports.UI.XRTableRow();
- this.xrTableCell12 = new DevExpress.XtraReports.UI.XRTableCell();
- this.xrTableCell9 = new DevExpress.XtraReports.UI.XRTableCell();
- this.xrTableRow7 = new DevExpress.XtraReports.UI.XRTableRow();
- this.xrTableCell3 = new DevExpress.XtraReports.UI.XRTableCell();
- this.xrTableRow12 = new DevExpress.XtraReports.UI.XRTableRow();
- this.xrTableCell24 = new DevExpress.XtraReports.UI.XRTableCell();
- this.xrTableCell10 = new DevExpress.XtraReports.UI.XRTableCell();
- this.xrTableRow15 = new DevExpress.XtraReports.UI.XRTableRow();
- this.xrTableCell14 = new DevExpress.XtraReports.UI.XRTableCell();
- this.xrTableCell15 = new DevExpress.XtraReports.UI.XRTableCell();
- this.xrTableRow18 = new DevExpress.XtraReports.UI.XRTableRow();
- this.xrTableCell25 = new DevExpress.XtraReports.UI.XRTableCell();
- this.xrTableRow17 = new DevExpress.XtraReports.UI.XRTableRow();
- this.xrTableCell28 = new DevExpress.XtraReports.UI.XRTableCell();
- this.xrTableCell17 = new DevExpress.XtraReports.UI.XRTableCell();
- this.xrLabel6 = new DevExpress.XtraReports.UI.XRLabel();
- this.xrLabel5 = new DevExpress.XtraReports.UI.XRLabel();
- this.xrLabel4 = new DevExpress.XtraReports.UI.XRLabel();
- this.xrLabel3 = new DevExpress.XtraReports.UI.XRLabel();
- this.xrLabel2 = new DevExpress.XtraReports.UI.XRLabel();
- this.RecipientPostCodeAndTown = new DevExpress.XtraReports.UI.XRLabel();
- this.xrLabel_RecipientStreet = new DevExpress.XtraReports.UI.XRLabel();
- this.xrLabel_RecipientDivision = new DevExpress.XtraReports.UI.XRLabel();
- this.xrLabel_RecipientContactPerson = new DevExpress.XtraReports.UI.XRLabel();
- this.xrLabel1 = new DevExpress.XtraReports.UI.XRLabel();
- this.ReportFooter = new DevExpress.XtraReports.UI.ReportFooterBand();
- this.xrLabel11 = new DevExpress.XtraReports.UI.XRLabel();
- this.xrLabel10 = new DevExpress.XtraReports.UI.XRLabel();
- this.xrTable3 = new DevExpress.XtraReports.UI.XRTable();
- this.xrTableRow20 = new DevExpress.XtraReports.UI.XRTableRow();
- this.xrTableCell16 = new DevExpress.XtraReports.UI.XRTableCell();
- this.xrTableRow21 = new DevExpress.XtraReports.UI.XRTableRow();
- this.xrTableCell18 = new DevExpress.XtraReports.UI.XRTableCell();
- this.xrTableRow22 = new DevExpress.XtraReports.UI.XRTableRow();
- this.xrTableCell29 = new DevExpress.XtraReports.UI.XRTableCell();
- this.xrTableRow23 = new DevExpress.XtraReports.UI.XRTableRow();
- this.xrTableCell30 = new DevExpress.XtraReports.UI.XRTableCell();
- this.xrTableRow24 = new DevExpress.XtraReports.UI.XRTableRow();
- this.xrTableCell31 = new DevExpress.XtraReports.UI.XRTableCell();
- this.xrLabel12 = new DevExpress.XtraReports.UI.XRLabel();
- this.xrLabel7 = new DevExpress.XtraReports.UI.XRLabel();
- this.topMarginBand1 = new DevExpress.XtraReports.UI.TopMarginBand();
- this.bottomMarginBand1 = new DevExpress.XtraReports.UI.BottomMarginBand();
- this.xrPictureBox3 = new DevExpress.XtraReports.UI.XRPictureBox();
- this.xrLabel15 = new DevExpress.XtraReports.UI.XRLabel();
- this.xrLabel14 = new DevExpress.XtraReports.UI.XRLabel();
- this.xrLine2 = new DevExpress.XtraReports.UI.XRLine();
- this.GroupHeader1 = new DevExpress.XtraReports.UI.GroupHeaderBand();
- this.bindingSource1 = new System.Windows.Forms.BindingSource(this.components);
- ((System.ComponentModel.ISupportInitialize)(this.xrTable1)).BeginInit();
- ((System.ComponentModel.ISupportInitialize)(this.xrTable3)).BeginInit();
- ((System.ComponentModel.ISupportInitialize)(this.bindingSource1)).BeginInit();
- ((System.ComponentModel.ISupportInitialize)(this)).BeginInit();
- //
- // Detail
- //
- this.Detail.HeightF = 0F;
- this.Detail.Name = "Detail";
- this.Detail.Padding = new DevExpress.XtraPrinting.PaddingInfo(0, 0, 0, 0, 100F);
- this.Detail.TextAlignment = DevExpress.XtraPrinting.TextAlignment.TopLeft;
- //
- // ReportHeader
- //
- this.ReportHeader.Controls.AddRange(new DevExpress.XtraReports.UI.XRControl[] {
+ 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.xrLabel13 = new DevExpress.XtraReports.UI.XRLabel();
+ this.xrLine1 = new DevExpress.XtraReports.UI.XRLine();
+ this.xrPictureBox2 = new DevExpress.XtraReports.UI.XRPictureBox();
+ this.xrLabel9 = new DevExpress.XtraReports.UI.XRLabel();
+ this.xrPictureBox1 = new DevExpress.XtraReports.UI.XRPictureBox();
+ this.xrLabel8 = new DevExpress.XtraReports.UI.XRLabel();
+ this.xrTable1 = new DevExpress.XtraReports.UI.XRTable();
+ this.xrTableRow9 = new DevExpress.XtraReports.UI.XRTableRow();
+ this.xrTableCell19 = new DevExpress.XtraReports.UI.XRTableCell();
+ this.xrTableCell6 = new DevExpress.XtraReports.UI.XRTableCell();
+ this.xrTableRow10 = new DevExpress.XtraReports.UI.XRTableRow();
+ this.xrTableCell20 = new DevExpress.XtraReports.UI.XRTableCell();
+ this.ruleRateFactorNull = new DevExpress.XtraReports.UI.FormattingRule();
+ this.xrTableCell7 = new DevExpress.XtraReports.UI.XRTableCell();
+ this.xrTableRow11 = new DevExpress.XtraReports.UI.XRTableRow();
+ this.xrTableCell21 = new DevExpress.XtraReports.UI.XRTableCell();
+ this.rowErbrachteLeistung = new DevExpress.XtraReports.UI.XRTableRow();
+ this.xrTableCell22 = new DevExpress.XtraReports.UI.XRTableCell();
+ this.rowAbrechnung1 = new DevExpress.XtraReports.UI.XRTableRow();
+ this.xrTableCell36 = new DevExpress.XtraReports.UI.XRTableCell();
+ this.xrTableCell34 = new DevExpress.XtraReports.UI.XRTableCell();
+ this.rowAbrechnung2 = new DevExpress.XtraReports.UI.XRTableRow();
+ this.xrTableCell37 = new DevExpress.XtraReports.UI.XRTableCell();
+ this.xrTableCell33 = new DevExpress.XtraReports.UI.XRTableCell();
+ this.rowAbrechnung3 = new DevExpress.XtraReports.UI.XRTableRow();
+ this.xrTableCell38 = new DevExpress.XtraReports.UI.XRTableCell();
+ this.xrTableCell32 = new DevExpress.XtraReports.UI.XRTableCell();
+ this.xrTableRow13 = new DevExpress.XtraReports.UI.XRTableRow();
+ this.xrTableCell23 = new DevExpress.XtraReports.UI.XRTableCell();
+ this.xrTableRow14 = new DevExpress.XtraReports.UI.XRTableRow();
+ this.xrTableCell12 = new DevExpress.XtraReports.UI.XRTableCell();
+ this.xrTableCell9 = new DevExpress.XtraReports.UI.XRTableCell();
+ this.xrTableRow7 = new DevExpress.XtraReports.UI.XRTableRow();
+ this.xrTableCell3 = new DevExpress.XtraReports.UI.XRTableCell();
+ this.xrTableRow12 = new DevExpress.XtraReports.UI.XRTableRow();
+ this.xrTableCell24 = new DevExpress.XtraReports.UI.XRTableCell();
+ this.xrTableCell10 = new DevExpress.XtraReports.UI.XRTableCell();
+ this.xrTableRow15 = new DevExpress.XtraReports.UI.XRTableRow();
+ this.xrTableCell14 = new DevExpress.XtraReports.UI.XRTableCell();
+ this.xrTableCell15 = new DevExpress.XtraReports.UI.XRTableCell();
+ this.xrTableRow18 = new DevExpress.XtraReports.UI.XRTableRow();
+ this.xrTableCell25 = new DevExpress.XtraReports.UI.XRTableCell();
+ this.xrTableRow17 = new DevExpress.XtraReports.UI.XRTableRow();
+ this.xrTableCell28 = new DevExpress.XtraReports.UI.XRTableCell();
+ this.xrTableCell17 = new DevExpress.XtraReports.UI.XRTableCell();
+ this.xrLabel6 = new DevExpress.XtraReports.UI.XRLabel();
+ this.xrLabel5 = new DevExpress.XtraReports.UI.XRLabel();
+ this.xrLabel4 = new DevExpress.XtraReports.UI.XRLabel();
+ this.xrLabel3 = new DevExpress.XtraReports.UI.XRLabel();
+ this.xrLabel2 = new DevExpress.XtraReports.UI.XRLabel();
+ this.RecipientPostCodeAndTown = new DevExpress.XtraReports.UI.XRLabel();
+ this.xrLabel_RecipientStreet = new DevExpress.XtraReports.UI.XRLabel();
+ this.xrLabel_RecipientDivision = new DevExpress.XtraReports.UI.XRLabel();
+ this.xrLabel_RecipientContactPerson = new DevExpress.XtraReports.UI.XRLabel();
+ this.xrLabel1 = new DevExpress.XtraReports.UI.XRLabel();
+ this.ReportFooter = new DevExpress.XtraReports.UI.ReportFooterBand();
+ this.xrLabel11 = new DevExpress.XtraReports.UI.XRLabel();
+ this.xrLabel10 = new DevExpress.XtraReports.UI.XRLabel();
+ this.xrTable3 = new DevExpress.XtraReports.UI.XRTable();
+ this.xrTableRow20 = new DevExpress.XtraReports.UI.XRTableRow();
+ this.xrTableCell16 = new DevExpress.XtraReports.UI.XRTableCell();
+ this.xrTableRow21 = new DevExpress.XtraReports.UI.XRTableRow();
+ this.xrTableCell18 = new DevExpress.XtraReports.UI.XRTableCell();
+ this.xrTableRow22 = new DevExpress.XtraReports.UI.XRTableRow();
+ this.xrTableCell29 = new DevExpress.XtraReports.UI.XRTableCell();
+ this.xrTableRow23 = new DevExpress.XtraReports.UI.XRTableRow();
+ this.xrTableCell30 = new DevExpress.XtraReports.UI.XRTableCell();
+ this.xrTableRow24 = new DevExpress.XtraReports.UI.XRTableRow();
+ this.xrTableCell31 = new DevExpress.XtraReports.UI.XRTableCell();
+ this.xrLabel12 = new DevExpress.XtraReports.UI.XRLabel();
+ this.lblNotice = new DevExpress.XtraReports.UI.XRLabel();
+ this.topMarginBand1 = new DevExpress.XtraReports.UI.TopMarginBand();
+ this.bottomMarginBand1 = new DevExpress.XtraReports.UI.BottomMarginBand();
+ this.xrPictureBox3 = new DevExpress.XtraReports.UI.XRPictureBox();
+ this.xrLabel15 = new DevExpress.XtraReports.UI.XRLabel();
+ this.xrLabel14 = new DevExpress.XtraReports.UI.XRLabel();
+ this.xrLine2 = new DevExpress.XtraReports.UI.XRLine();
+ this.GroupHeader1 = new DevExpress.XtraReports.UI.GroupHeaderBand();
+ this.bindingSource1 = new System.Windows.Forms.BindingSource(this.components);
+ ((System.ComponentModel.ISupportInitialize)(this.xrTable1)).BeginInit();
+ ((System.ComponentModel.ISupportInitialize)(this.xrTable3)).BeginInit();
+ ((System.ComponentModel.ISupportInitialize)(this.bindingSource1)).BeginInit();
+ ((System.ComponentModel.ISupportInitialize)(this)).BeginInit();
+ //
+ // Detail
+ //
+ this.Detail.HeightF = 0F;
+ this.Detail.Name = "Detail";
+ this.Detail.Padding = new DevExpress.XtraPrinting.PaddingInfo(0, 0, 0, 0, 100F);
+ this.Detail.TextAlignment = DevExpress.XtraPrinting.TextAlignment.TopLeft;
+ //
+ // ReportHeader
+ //
+ this.ReportHeader.Controls.AddRange(new DevExpress.XtraReports.UI.XRControl[] {
this.xrLabel13,
this.xrLine1,
this.xrPictureBox2,
this.xrLabel9,
this.xrPictureBox1});
- this.ReportHeader.Font = new System.Drawing.Font("Arial", 8F);
- this.ReportHeader.HeightF = 188.75F;
- this.ReportHeader.Name = "ReportHeader";
- this.ReportHeader.StylePriority.UseFont = false;
- //
- // xrLabel13
- //
- this.xrLabel13.Font = new System.Drawing.Font("Arial", 6F);
- this.xrLabel13.LocationFloat = new DevExpress.Utils.PointFloat(114.9999F, 152.7917F);
- this.xrLabel13.Name = "xrLabel13";
- this.xrLabel13.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
- this.xrLabel13.SizeF = new System.Drawing.SizeF(317F, 17F);
- this.xrLabel13.StylePriority.UseFont = false;
- this.xrLabel13.StylePriority.UseTextAlignment = false;
- this.xrLabel13.Text = "Kurfürstenstr.8, 47906 Kempen";
- this.xrLabel13.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleLeft;
- //
- // xrLine1
- //
- this.xrLine1.LocationFloat = new DevExpress.Utils.PointFloat(0F, 169.7917F);
- this.xrLine1.Name = "xrLine1";
- this.xrLine1.SizeF = new System.Drawing.SizeF(236.4583F, 2F);
- //
- // xrPictureBox2
- //
- this.xrPictureBox2.Image = ((System.Drawing.Image)(resources.GetObject("xrPictureBox2.Image")));
- this.xrPictureBox2.LocationFloat = new DevExpress.Utils.PointFloat(0F, 144.7917F);
- this.xrPictureBox2.Name = "xrPictureBox2";
- this.xrPictureBox2.SizeF = new System.Drawing.SizeF(115F, 25F);
- this.xrPictureBox2.Sizing = DevExpress.XtraPrinting.ImageSizeMode.ZoomImage;
- //
- // xrLabel9
- //
- this.xrLabel9.CanShrink = true;
- this.xrLabel9.LocationFloat = new DevExpress.Utils.PointFloat(404.9998F, 50F);
- this.xrLabel9.Multiline = true;
- this.xrLabel9.Name = "xrLabel9";
- this.xrLabel9.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
- this.xrLabel9.ProcessNullValues = DevExpress.XtraReports.UI.ValueSuppressType.SuppressAndShrink;
- this.xrLabel9.SizeF = new System.Drawing.SizeF(292F, 68.04167F);
- this.xrLabel9.StylePriority.UseFont = false;
- this.xrLabel9.StylePriority.UseTextAlignment = false;
- this.xrLabel9.Text = "\r\nTel: 02152/558596\r\nFax: 02152/558597";
- this.xrLabel9.TextAlignment = DevExpress.XtraPrinting.TextAlignment.TopRight;
- //
- // xrPictureBox1
- //
- this.xrPictureBox1.Image = ((System.Drawing.Image)(resources.GetObject("xrPictureBox1.Image")));
- this.xrPictureBox1.LocationFloat = new DevExpress.Utils.PointFloat(446.9999F, 0F);
- this.xrPictureBox1.Name = "xrPictureBox1";
- this.xrPictureBox1.SizeF = new System.Drawing.SizeF(250F, 50F);
- this.xrPictureBox1.Sizing = DevExpress.XtraPrinting.ImageSizeMode.ZoomImage;
- //
- // xrLabel8
- //
- this.xrLabel8.DataBindings.AddRange(new DevExpress.XtraReports.UI.XRBinding[] {
+ this.ReportHeader.Font = new System.Drawing.Font("Arial", 8F);
+ this.ReportHeader.HeightF = 188.75F;
+ this.ReportHeader.Name = "ReportHeader";
+ this.ReportHeader.StylePriority.UseFont = false;
+ //
+ // xrLabel13
+ //
+ this.xrLabel13.Font = new System.Drawing.Font("Arial", 6F);
+ this.xrLabel13.LocationFloat = new DevExpress.Utils.PointFloat(114.9999F, 152.7917F);
+ this.xrLabel13.Name = "xrLabel13";
+ this.xrLabel13.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
+ this.xrLabel13.SizeF = new System.Drawing.SizeF(317F, 17F);
+ this.xrLabel13.StylePriority.UseFont = false;
+ this.xrLabel13.StylePriority.UseTextAlignment = false;
+ this.xrLabel13.Text = "Kurfürstenstr.8, 47906 Kempen";
+ this.xrLabel13.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleLeft;
+ //
+ // xrLine1
+ //
+ this.xrLine1.LocationFloat = new DevExpress.Utils.PointFloat(0F, 169.7917F);
+ this.xrLine1.Name = "xrLine1";
+ this.xrLine1.SizeF = new System.Drawing.SizeF(236.4583F, 2F);
+ //
+ // xrPictureBox2
+ //
+ this.xrPictureBox2.Image = ((System.Drawing.Image)(resources.GetObject("xrPictureBox2.Image")));
+ this.xrPictureBox2.LocationFloat = new DevExpress.Utils.PointFloat(0F, 144.7917F);
+ this.xrPictureBox2.Name = "xrPictureBox2";
+ this.xrPictureBox2.SizeF = new System.Drawing.SizeF(115F, 25F);
+ this.xrPictureBox2.Sizing = DevExpress.XtraPrinting.ImageSizeMode.ZoomImage;
+ //
+ // xrLabel9
+ //
+ this.xrLabel9.CanShrink = true;
+ this.xrLabel9.LocationFloat = new DevExpress.Utils.PointFloat(404.9998F, 50F);
+ this.xrLabel9.Multiline = true;
+ this.xrLabel9.Name = "xrLabel9";
+ this.xrLabel9.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
+ this.xrLabel9.ProcessNullValues = DevExpress.XtraReports.UI.ValueSuppressType.SuppressAndShrink;
+ this.xrLabel9.SizeF = new System.Drawing.SizeF(292F, 68.04167F);
+ this.xrLabel9.StylePriority.UseFont = false;
+ this.xrLabel9.StylePriority.UseTextAlignment = false;
+ this.xrLabel9.Text = "\r\nTel: 02152/558596\r\nFax: 02152/558597";
+ this.xrLabel9.TextAlignment = DevExpress.XtraPrinting.TextAlignment.TopRight;
+ //
+ // xrPictureBox1
+ //
+ this.xrPictureBox1.Image = ((System.Drawing.Image)(resources.GetObject("xrPictureBox1.Image")));
+ this.xrPictureBox1.LocationFloat = new DevExpress.Utils.PointFloat(446.9999F, 0F);
+ this.xrPictureBox1.Name = "xrPictureBox1";
+ this.xrPictureBox1.SizeF = new System.Drawing.SizeF(250F, 50F);
+ this.xrPictureBox1.Sizing = DevExpress.XtraPrinting.ImageSizeMode.ZoomImage;
+ //
+ // xrLabel8
+ //
+ this.xrLabel8.DataBindings.AddRange(new DevExpress.XtraReports.UI.XRBinding[] {
new DevExpress.XtraReports.UI.XRBinding("Text", null, "InvoiceDate")});
- this.xrLabel8.Font = new System.Drawing.Font("Arial", 8F);
- this.xrLabel8.LocationFloat = new DevExpress.Utils.PointFloat(413.9999F, 68.00003F);
- this.xrLabel8.Name = "xrLabel8";
- this.xrLabel8.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
- this.xrLabel8.SizeF = new System.Drawing.SizeF(283F, 23F);
- this.xrLabel8.StylePriority.UseFont = false;
- this.xrLabel8.StylePriority.UseTextAlignment = false;
- this.xrLabel8.Text = "xrLabel8";
- this.xrLabel8.TextAlignment = DevExpress.XtraPrinting.TextAlignment.TopRight;
- //
- // xrTable1
- //
- this.xrTable1.BorderColor = System.Drawing.SystemColors.ControlLight;
- this.xrTable1.LocationFloat = new DevExpress.Utils.PointFloat(0F, 375.3333F);
- this.xrTable1.Name = "xrTable1";
- this.xrTable1.Rows.AddRange(new DevExpress.XtraReports.UI.XRTableRow[] {
+ this.xrLabel8.Font = new System.Drawing.Font("Arial", 8F);
+ this.xrLabel8.LocationFloat = new DevExpress.Utils.PointFloat(413.9999F, 68.00003F);
+ this.xrLabel8.Name = "xrLabel8";
+ this.xrLabel8.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
+ this.xrLabel8.SizeF = new System.Drawing.SizeF(283F, 23F);
+ this.xrLabel8.StylePriority.UseFont = false;
+ this.xrLabel8.StylePriority.UseTextAlignment = false;
+ this.xrLabel8.Text = "xrLabel8";
+ this.xrLabel8.TextAlignment = DevExpress.XtraPrinting.TextAlignment.TopRight;
+ //
+ // xrTable1
+ //
+ this.xrTable1.BorderColor = System.Drawing.SystemColors.ControlLight;
+ this.xrTable1.LocationFloat = new DevExpress.Utils.PointFloat(0F, 375.3333F);
+ this.xrTable1.Name = "xrTable1";
+ this.xrTable1.Rows.AddRange(new DevExpress.XtraReports.UI.XRTableRow[] {
this.xrTableRow9,
this.xrTableRow10,
this.xrTableRow11,
@@ -219,766 +219,767 @@ namespace BeWo.WegweiserBetreuungsdienstReports
this.xrTableRow15,
this.xrTableRow18,
this.xrTableRow17});
- this.xrTable1.SizeF = new System.Drawing.SizeF(650F, 251F);
- this.xrTable1.StylePriority.UseBorderColor = false;
- //
- // xrTableRow9
- //
- this.xrTableRow9.Cells.AddRange(new DevExpress.XtraReports.UI.XRTableCell[] {
+ this.xrTable1.SizeF = new System.Drawing.SizeF(650F, 251F);
+ this.xrTable1.StylePriority.UseBorderColor = false;
+ //
+ // xrTableRow9
+ //
+ this.xrTableRow9.Cells.AddRange(new DevExpress.XtraReports.UI.XRTableCell[] {
this.xrTableCell19,
this.xrTableCell6});
- this.xrTableRow9.Name = "xrTableRow9";
- this.xrTableRow9.Weight = 0.085D;
- //
- // xrTableCell19
- //
- this.xrTableCell19.BorderColor = System.Drawing.SystemColors.ControlLight;
- this.xrTableCell19.Borders = ((DevExpress.XtraPrinting.BorderSide)(((DevExpress.XtraPrinting.BorderSide.Left | DevExpress.XtraPrinting.BorderSide.Top)
+ this.xrTableRow9.Name = "xrTableRow9";
+ this.xrTableRow9.Weight = 0.085D;
+ //
+ // xrTableCell19
+ //
+ this.xrTableCell19.BorderColor = System.Drawing.SystemColors.ControlLight;
+ this.xrTableCell19.Borders = ((DevExpress.XtraPrinting.BorderSide)(((DevExpress.XtraPrinting.BorderSide.Left | DevExpress.XtraPrinting.BorderSide.Top)
| DevExpress.XtraPrinting.BorderSide.Right)));
- this.xrTableCell19.Name = "xrTableCell19";
- this.xrTableCell19.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
- this.xrTableCell19.StylePriority.UseBorderColor = false;
- this.xrTableCell19.StylePriority.UseBorders = false;
- this.xrTableCell19.StylePriority.UseFont = false;
- this.xrTableCell19.Text = "Bewilligte Fachleistungsstunden (FLS) gesamt:";
- this.xrTableCell19.Weight = 0.78314100999098568D;
- //
- // xrTableCell6
- //
- this.xrTableCell6.BorderColor = System.Drawing.SystemColors.ControlLight;
- this.xrTableCell6.Borders = ((DevExpress.XtraPrinting.BorderSide)(((DevExpress.XtraPrinting.BorderSide.Left | DevExpress.XtraPrinting.BorderSide.Top)
+ this.xrTableCell19.Name = "xrTableCell19";
+ this.xrTableCell19.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
+ this.xrTableCell19.StylePriority.UseBorderColor = false;
+ this.xrTableCell19.StylePriority.UseBorders = false;
+ this.xrTableCell19.StylePriority.UseFont = false;
+ this.xrTableCell19.Text = "Bewilligte Fachleistungsstunden (FLS) gesamt:";
+ this.xrTableCell19.Weight = 0.78314100999098568D;
+ //
+ // xrTableCell6
+ //
+ this.xrTableCell6.BorderColor = System.Drawing.SystemColors.ControlLight;
+ this.xrTableCell6.Borders = ((DevExpress.XtraPrinting.BorderSide)(((DevExpress.XtraPrinting.BorderSide.Left | DevExpress.XtraPrinting.BorderSide.Top)
| DevExpress.XtraPrinting.BorderSide.Right)));
- this.xrTableCell6.Font = new System.Drawing.Font("Arial", 10F, System.Drawing.FontStyle.Bold);
- this.xrTableCell6.Name = "xrTableCell6";
- this.xrTableCell6.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
- this.xrTableCell6.StylePriority.UseBorderColor = false;
- this.xrTableCell6.StylePriority.UseBorders = false;
- this.xrTableCell6.StylePriority.UseFont = false;
- this.xrTableCell6.StylePriority.UseTextAlignment = false;
- this.xrTableCell6.Text = "[ApprovedFLS]";
- this.xrTableCell6.TextAlignment = DevExpress.XtraPrinting.TextAlignment.TopRight;
- this.xrTableCell6.Weight = 0.21685899000901443D;
- //
- // xrTableRow10
- //
- this.xrTableRow10.Cells.AddRange(new DevExpress.XtraReports.UI.XRTableCell[] {
+ this.xrTableCell6.Font = new System.Drawing.Font("Arial", 10F, System.Drawing.FontStyle.Bold);
+ this.xrTableCell6.Name = "xrTableCell6";
+ this.xrTableCell6.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
+ this.xrTableCell6.StylePriority.UseBorderColor = false;
+ this.xrTableCell6.StylePriority.UseBorders = false;
+ this.xrTableCell6.StylePriority.UseFont = false;
+ this.xrTableCell6.StylePriority.UseTextAlignment = false;
+ this.xrTableCell6.Text = "[ApprovedFLS]";
+ this.xrTableCell6.TextAlignment = DevExpress.XtraPrinting.TextAlignment.TopRight;
+ this.xrTableCell6.Weight = 0.21685899000901443D;
+ //
+ // xrTableRow10
+ //
+ this.xrTableRow10.Cells.AddRange(new DevExpress.XtraReports.UI.XRTableCell[] {
this.xrTableCell20,
this.xrTableCell7});
- this.xrTableRow10.FormattingRules.Add(this.ruleRateFactorNull);
- this.xrTableRow10.Name = "xrTableRow10";
- this.xrTableRow10.Weight = 0.085D;
- //
- // xrTableCell20
- //
- this.xrTableCell20.BorderColor = System.Drawing.SystemColors.ControlLight;
- this.xrTableCell20.Borders = ((DevExpress.XtraPrinting.BorderSide)((DevExpress.XtraPrinting.BorderSide.Left | DevExpress.XtraPrinting.BorderSide.Right)));
- this.xrTableCell20.FormattingRules.Add(this.ruleRateFactorNull);
- this.xrTableCell20.Name = "xrTableCell20";
- this.xrTableCell20.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
- this.xrTableCell20.StylePriority.UseBorderColor = false;
- this.xrTableCell20.StylePriority.UseBorders = false;
- this.xrTableCell20.StylePriority.UseFont = false;
- this.xrTableCell20.Text = "- zzgl. Faktor [RateFactorText2]:";
- this.xrTableCell20.Weight = 0.78314100999098568D;
- //
- // ruleRateFactorNull
- //
- this.ruleRateFactorNull.Condition = "[RateFactorText2] == ?";
- //
- //
- //
- this.ruleRateFactorNull.Formatting.Visible = DevExpress.Utils.DefaultBoolean.False;
- this.ruleRateFactorNull.Name = "ruleRateFactorNull";
- //
- // xrTableCell7
- //
- this.xrTableCell7.BorderColor = System.Drawing.SystemColors.ControlLight;
- this.xrTableCell7.Borders = ((DevExpress.XtraPrinting.BorderSide)((DevExpress.XtraPrinting.BorderSide.Left | DevExpress.XtraPrinting.BorderSide.Right)));
- this.xrTableCell7.Font = new System.Drawing.Font("Arial", 10F, System.Drawing.FontStyle.Bold);
- this.xrTableCell7.FormattingRules.Add(this.ruleRateFactorNull);
- this.xrTableCell7.Name = "xrTableCell7";
- this.xrTableCell7.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
- this.xrTableCell7.StylePriority.UseBorderColor = false;
- this.xrTableCell7.StylePriority.UseBorders = false;
- this.xrTableCell7.StylePriority.UseFont = false;
- this.xrTableCell7.StylePriority.UseTextAlignment = false;
- this.xrTableCell7.Text = "[ApprovedFLSWithFactor]";
- this.xrTableCell7.TextAlignment = DevExpress.XtraPrinting.TextAlignment.TopRight;
- this.xrTableCell7.Weight = 0.21685899000901443D;
- //
- // xrTableRow11
- //
- this.xrTableRow11.Cells.AddRange(new DevExpress.XtraReports.UI.XRTableCell[] {
+ this.xrTableRow10.FormattingRules.Add(this.ruleRateFactorNull);
+ this.xrTableRow10.Name = "xrTableRow10";
+ this.xrTableRow10.Weight = 0.085D;
+ //
+ // xrTableCell20
+ //
+ this.xrTableCell20.BorderColor = System.Drawing.SystemColors.ControlLight;
+ this.xrTableCell20.Borders = ((DevExpress.XtraPrinting.BorderSide)((DevExpress.XtraPrinting.BorderSide.Left | DevExpress.XtraPrinting.BorderSide.Right)));
+ this.xrTableCell20.FormattingRules.Add(this.ruleRateFactorNull);
+ this.xrTableCell20.Name = "xrTableCell20";
+ this.xrTableCell20.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
+ this.xrTableCell20.StylePriority.UseBorderColor = false;
+ this.xrTableCell20.StylePriority.UseBorders = false;
+ this.xrTableCell20.StylePriority.UseFont = false;
+ this.xrTableCell20.Text = "- zzgl. Faktor [RateFactorText2]:";
+ this.xrTableCell20.Weight = 0.78314100999098568D;
+ //
+ // ruleRateFactorNull
+ //
+ this.ruleRateFactorNull.Condition = "[RateFactorText2] == ?";
+ //
+ //
+ //
+ this.ruleRateFactorNull.Formatting.Visible = DevExpress.Utils.DefaultBoolean.False;
+ this.ruleRateFactorNull.Name = "ruleRateFactorNull";
+ //
+ // xrTableCell7
+ //
+ this.xrTableCell7.BorderColor = System.Drawing.SystemColors.ControlLight;
+ this.xrTableCell7.Borders = ((DevExpress.XtraPrinting.BorderSide)((DevExpress.XtraPrinting.BorderSide.Left | DevExpress.XtraPrinting.BorderSide.Right)));
+ this.xrTableCell7.Font = new System.Drawing.Font("Arial", 10F, System.Drawing.FontStyle.Bold);
+ this.xrTableCell7.FormattingRules.Add(this.ruleRateFactorNull);
+ this.xrTableCell7.Name = "xrTableCell7";
+ this.xrTableCell7.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
+ this.xrTableCell7.StylePriority.UseBorderColor = false;
+ this.xrTableCell7.StylePriority.UseBorders = false;
+ this.xrTableCell7.StylePriority.UseFont = false;
+ this.xrTableCell7.StylePriority.UseTextAlignment = false;
+ this.xrTableCell7.Text = "[ApprovedFLSWithFactor]";
+ this.xrTableCell7.TextAlignment = DevExpress.XtraPrinting.TextAlignment.TopRight;
+ this.xrTableCell7.Weight = 0.21685899000901443D;
+ //
+ // xrTableRow11
+ //
+ this.xrTableRow11.Cells.AddRange(new DevExpress.XtraReports.UI.XRTableCell[] {
this.xrTableCell21});
- this.xrTableRow11.Name = "xrTableRow11";
- this.xrTableRow11.Weight = 0.085D;
- //
- // xrTableCell21
- //
- this.xrTableCell21.BorderColor = System.Drawing.SystemColors.ControlLight;
- this.xrTableCell21.Borders = ((DevExpress.XtraPrinting.BorderSide)(((DevExpress.XtraPrinting.BorderSide.Left | DevExpress.XtraPrinting.BorderSide.Top)
+ this.xrTableRow11.Name = "xrTableRow11";
+ this.xrTableRow11.Weight = 0.085D;
+ //
+ // xrTableCell21
+ //
+ this.xrTableCell21.BorderColor = System.Drawing.SystemColors.ControlLight;
+ this.xrTableCell21.Borders = ((DevExpress.XtraPrinting.BorderSide)(((DevExpress.XtraPrinting.BorderSide.Left | DevExpress.XtraPrinting.BorderSide.Top)
| DevExpress.XtraPrinting.BorderSide.Right)));
- this.xrTableCell21.Name = "xrTableCell21";
- this.xrTableCell21.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
- this.xrTableCell21.StylePriority.UseBorderColor = false;
- this.xrTableCell21.StylePriority.UseBorders = false;
- this.xrTableCell21.Weight = 1D;
- //
- // rowErbrachteLeistung
- //
- this.rowErbrachteLeistung.Cells.AddRange(new DevExpress.XtraReports.UI.XRTableCell[] {
+ this.xrTableCell21.Name = "xrTableCell21";
+ this.xrTableCell21.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
+ this.xrTableCell21.StylePriority.UseBorderColor = false;
+ this.xrTableCell21.StylePriority.UseBorders = false;
+ this.xrTableCell21.Weight = 1D;
+ //
+ // rowErbrachteLeistung
+ //
+ this.rowErbrachteLeistung.Cells.AddRange(new DevExpress.XtraReports.UI.XRTableCell[] {
this.xrTableCell22});
- this.rowErbrachteLeistung.Name = "rowErbrachteLeistung";
- this.rowErbrachteLeistung.Weight = 0.085D;
- //
- // xrTableCell22
- //
- this.xrTableCell22.BorderColor = System.Drawing.SystemColors.ControlLight;
- this.xrTableCell22.Borders = ((DevExpress.XtraPrinting.BorderSide)(((DevExpress.XtraPrinting.BorderSide.Left | DevExpress.XtraPrinting.BorderSide.Right)
+ this.rowErbrachteLeistung.Name = "rowErbrachteLeistung";
+ this.rowErbrachteLeistung.Weight = 0.085D;
+ //
+ // xrTableCell22
+ //
+ this.xrTableCell22.BorderColor = System.Drawing.SystemColors.ControlLight;
+ this.xrTableCell22.Borders = ((DevExpress.XtraPrinting.BorderSide)(((DevExpress.XtraPrinting.BorderSide.Left | DevExpress.XtraPrinting.BorderSide.Right)
| DevExpress.XtraPrinting.BorderSide.Bottom)));
- this.xrTableCell22.Name = "xrTableCell22";
- this.xrTableCell22.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
- this.xrTableCell22.StylePriority.UseBorderColor = false;
- this.xrTableCell22.StylePriority.UseBorders = false;
- this.xrTableCell22.StylePriority.UseFont = false;
- this.xrTableCell22.Text = "Erbrachte Leistungen:";
- this.xrTableCell22.Weight = 1D;
- //
- // rowAbrechnung1
- //
- this.rowAbrechnung1.Cells.AddRange(new DevExpress.XtraReports.UI.XRTableCell[] {
+ this.xrTableCell22.Name = "xrTableCell22";
+ this.xrTableCell22.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
+ this.xrTableCell22.StylePriority.UseBorderColor = false;
+ this.xrTableCell22.StylePriority.UseBorders = false;
+ this.xrTableCell22.StylePriority.UseFont = false;
+ this.xrTableCell22.Text = "Erbrachte Leistungen:";
+ this.xrTableCell22.Weight = 1D;
+ //
+ // rowAbrechnung1
+ //
+ this.rowAbrechnung1.Cells.AddRange(new DevExpress.XtraReports.UI.XRTableCell[] {
this.xrTableCell36,
this.xrTableCell34});
- this.rowAbrechnung1.Name = "rowAbrechnung1";
- this.rowAbrechnung1.Weight = 0.085D;
- //
- // xrTableCell36
- //
- this.xrTableCell36.BorderColor = System.Drawing.SystemColors.ControlLight;
- this.xrTableCell36.Borders = ((DevExpress.XtraPrinting.BorderSide)((DevExpress.XtraPrinting.BorderSide.Left | DevExpress.XtraPrinting.BorderSide.Bottom)));
- this.xrTableCell36.CanShrink = true;
- this.xrTableCell36.DataBindings.AddRange(new DevExpress.XtraReports.UI.XRBinding[] {
+ this.rowAbrechnung1.Name = "rowAbrechnung1";
+ this.rowAbrechnung1.Weight = 0.085D;
+ //
+ // xrTableCell36
+ //
+ this.xrTableCell36.BorderColor = System.Drawing.SystemColors.ControlLight;
+ this.xrTableCell36.Borders = ((DevExpress.XtraPrinting.BorderSide)((DevExpress.XtraPrinting.BorderSide.Left | DevExpress.XtraPrinting.BorderSide.Bottom)));
+ this.xrTableCell36.CanShrink = true;
+ this.xrTableCell36.DataBindings.AddRange(new DevExpress.XtraReports.UI.XRBinding[] {
new DevExpress.XtraReports.UI.XRBinding("Text", null, "Abrechnungstext1")});
- this.xrTableCell36.Name = "xrTableCell36";
- this.xrTableCell36.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
- this.xrTableCell36.StylePriority.UseBorderColor = false;
- this.xrTableCell36.StylePriority.UseBorders = false;
- this.xrTableCell36.StylePriority.UseFont = false;
- this.xrTableCell36.StylePriority.UsePadding = false;
- this.xrTableCell36.Weight = 0.78314100999098546D;
- //
- // xrTableCell34
- //
- this.xrTableCell34.BorderColor = System.Drawing.SystemColors.ControlLight;
- this.xrTableCell34.Borders = ((DevExpress.XtraPrinting.BorderSide)(((DevExpress.XtraPrinting.BorderSide.Left | DevExpress.XtraPrinting.BorderSide.Right)
+ this.xrTableCell36.Name = "xrTableCell36";
+ this.xrTableCell36.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
+ this.xrTableCell36.StylePriority.UseBorderColor = false;
+ this.xrTableCell36.StylePriority.UseBorders = false;
+ this.xrTableCell36.StylePriority.UseFont = false;
+ this.xrTableCell36.StylePriority.UsePadding = false;
+ this.xrTableCell36.Weight = 0.78314100999098546D;
+ //
+ // xrTableCell34
+ //
+ this.xrTableCell34.BorderColor = System.Drawing.SystemColors.ControlLight;
+ this.xrTableCell34.Borders = ((DevExpress.XtraPrinting.BorderSide)(((DevExpress.XtraPrinting.BorderSide.Left | DevExpress.XtraPrinting.BorderSide.Right)
| DevExpress.XtraPrinting.BorderSide.Bottom)));
- this.xrTableCell34.CanShrink = true;
- this.xrTableCell34.DataBindings.AddRange(new DevExpress.XtraReports.UI.XRBinding[] {
+ this.xrTableCell34.CanShrink = true;
+ this.xrTableCell34.DataBindings.AddRange(new DevExpress.XtraReports.UI.XRBinding[] {
new DevExpress.XtraReports.UI.XRBinding("Text", null, "Betrag1")});
- this.xrTableCell34.Name = "xrTableCell34";
- this.xrTableCell34.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
- this.xrTableCell34.StylePriority.UseBorderColor = false;
- this.xrTableCell34.StylePriority.UseBorders = false;
- this.xrTableCell34.StylePriority.UseFont = false;
- this.xrTableCell34.StylePriority.UsePadding = false;
- this.xrTableCell34.StylePriority.UseTextAlignment = false;
- this.xrTableCell34.TextAlignment = DevExpress.XtraPrinting.TextAlignment.TopRight;
- this.xrTableCell34.Weight = 0.21685899000901443D;
- //
- // rowAbrechnung2
- //
- this.rowAbrechnung2.Cells.AddRange(new DevExpress.XtraReports.UI.XRTableCell[] {
+ this.xrTableCell34.Name = "xrTableCell34";
+ this.xrTableCell34.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
+ this.xrTableCell34.StylePriority.UseBorderColor = false;
+ this.xrTableCell34.StylePriority.UseBorders = false;
+ this.xrTableCell34.StylePriority.UseFont = false;
+ this.xrTableCell34.StylePriority.UsePadding = false;
+ this.xrTableCell34.StylePriority.UseTextAlignment = false;
+ this.xrTableCell34.TextAlignment = DevExpress.XtraPrinting.TextAlignment.TopRight;
+ this.xrTableCell34.Weight = 0.21685899000901443D;
+ //
+ // rowAbrechnung2
+ //
+ this.rowAbrechnung2.Cells.AddRange(new DevExpress.XtraReports.UI.XRTableCell[] {
this.xrTableCell37,
this.xrTableCell33});
- this.rowAbrechnung2.Name = "rowAbrechnung2";
- this.rowAbrechnung2.Weight = 0.085D;
- //
- // xrTableCell37
- //
- this.xrTableCell37.BorderColor = System.Drawing.SystemColors.ControlLight;
- this.xrTableCell37.Borders = ((DevExpress.XtraPrinting.BorderSide)((DevExpress.XtraPrinting.BorderSide.Left | DevExpress.XtraPrinting.BorderSide.Bottom)));
- this.xrTableCell37.CanShrink = true;
- this.xrTableCell37.DataBindings.AddRange(new DevExpress.XtraReports.UI.XRBinding[] {
+ this.rowAbrechnung2.Name = "rowAbrechnung2";
+ this.rowAbrechnung2.Weight = 0.085D;
+ //
+ // xrTableCell37
+ //
+ this.xrTableCell37.BorderColor = System.Drawing.SystemColors.ControlLight;
+ this.xrTableCell37.Borders = ((DevExpress.XtraPrinting.BorderSide)((DevExpress.XtraPrinting.BorderSide.Left | DevExpress.XtraPrinting.BorderSide.Bottom)));
+ this.xrTableCell37.CanShrink = true;
+ this.xrTableCell37.DataBindings.AddRange(new DevExpress.XtraReports.UI.XRBinding[] {
new DevExpress.XtraReports.UI.XRBinding("Text", null, "Abrechnungstext2")});
- this.xrTableCell37.Name = "xrTableCell37";
- this.xrTableCell37.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
- this.xrTableCell37.StylePriority.UseBorderColor = false;
- this.xrTableCell37.StylePriority.UseBorders = false;
- this.xrTableCell37.StylePriority.UseFont = false;
- this.xrTableCell37.StylePriority.UsePadding = false;
- this.xrTableCell37.Weight = 0.78314100999098546D;
- //
- // xrTableCell33
- //
- this.xrTableCell33.BorderColor = System.Drawing.SystemColors.ControlLight;
- this.xrTableCell33.Borders = ((DevExpress.XtraPrinting.BorderSide)(((DevExpress.XtraPrinting.BorderSide.Left | DevExpress.XtraPrinting.BorderSide.Right)
+ this.xrTableCell37.Name = "xrTableCell37";
+ this.xrTableCell37.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
+ this.xrTableCell37.StylePriority.UseBorderColor = false;
+ this.xrTableCell37.StylePriority.UseBorders = false;
+ this.xrTableCell37.StylePriority.UseFont = false;
+ this.xrTableCell37.StylePriority.UsePadding = false;
+ this.xrTableCell37.Weight = 0.78314100999098546D;
+ //
+ // xrTableCell33
+ //
+ this.xrTableCell33.BorderColor = System.Drawing.SystemColors.ControlLight;
+ this.xrTableCell33.Borders = ((DevExpress.XtraPrinting.BorderSide)(((DevExpress.XtraPrinting.BorderSide.Left | DevExpress.XtraPrinting.BorderSide.Right)
| DevExpress.XtraPrinting.BorderSide.Bottom)));
- this.xrTableCell33.CanShrink = true;
- this.xrTableCell33.DataBindings.AddRange(new DevExpress.XtraReports.UI.XRBinding[] {
+ this.xrTableCell33.CanShrink = true;
+ this.xrTableCell33.DataBindings.AddRange(new DevExpress.XtraReports.UI.XRBinding[] {
new DevExpress.XtraReports.UI.XRBinding("Text", null, "Betrag2")});
- this.xrTableCell33.Name = "xrTableCell33";
- this.xrTableCell33.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
- this.xrTableCell33.StylePriority.UseBorderColor = false;
- this.xrTableCell33.StylePriority.UseBorders = false;
- this.xrTableCell33.StylePriority.UsePadding = false;
- this.xrTableCell33.StylePriority.UseTextAlignment = false;
- this.xrTableCell33.TextAlignment = DevExpress.XtraPrinting.TextAlignment.TopRight;
- this.xrTableCell33.Weight = 0.21685899000901443D;
- //
- // rowAbrechnung3
- //
- this.rowAbrechnung3.Cells.AddRange(new DevExpress.XtraReports.UI.XRTableCell[] {
+ this.xrTableCell33.Name = "xrTableCell33";
+ this.xrTableCell33.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
+ this.xrTableCell33.StylePriority.UseBorderColor = false;
+ this.xrTableCell33.StylePriority.UseBorders = false;
+ this.xrTableCell33.StylePriority.UsePadding = false;
+ this.xrTableCell33.StylePriority.UseTextAlignment = false;
+ this.xrTableCell33.TextAlignment = DevExpress.XtraPrinting.TextAlignment.TopRight;
+ this.xrTableCell33.Weight = 0.21685899000901443D;
+ //
+ // rowAbrechnung3
+ //
+ this.rowAbrechnung3.Cells.AddRange(new DevExpress.XtraReports.UI.XRTableCell[] {
this.xrTableCell38,
this.xrTableCell32});
- this.rowAbrechnung3.Name = "rowAbrechnung3";
- this.rowAbrechnung3.Weight = 0.085D;
- //
- // xrTableCell38
- //
- this.xrTableCell38.BorderColor = System.Drawing.SystemColors.ControlLight;
- this.xrTableCell38.Borders = ((DevExpress.XtraPrinting.BorderSide)((DevExpress.XtraPrinting.BorderSide.Left | DevExpress.XtraPrinting.BorderSide.Bottom)));
- this.xrTableCell38.CanShrink = true;
- this.xrTableCell38.DataBindings.AddRange(new DevExpress.XtraReports.UI.XRBinding[] {
+ this.rowAbrechnung3.Name = "rowAbrechnung3";
+ this.rowAbrechnung3.Weight = 0.085D;
+ //
+ // xrTableCell38
+ //
+ this.xrTableCell38.BorderColor = System.Drawing.SystemColors.ControlLight;
+ this.xrTableCell38.Borders = ((DevExpress.XtraPrinting.BorderSide)((DevExpress.XtraPrinting.BorderSide.Left | DevExpress.XtraPrinting.BorderSide.Bottom)));
+ this.xrTableCell38.CanShrink = true;
+ this.xrTableCell38.DataBindings.AddRange(new DevExpress.XtraReports.UI.XRBinding[] {
new DevExpress.XtraReports.UI.XRBinding("Text", null, "Abrechnungstext3")});
- this.xrTableCell38.Name = "xrTableCell38";
- this.xrTableCell38.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
- this.xrTableCell38.StylePriority.UseBorderColor = false;
- this.xrTableCell38.StylePriority.UseBorders = false;
- this.xrTableCell38.StylePriority.UseFont = false;
- this.xrTableCell38.StylePriority.UsePadding = false;
- this.xrTableCell38.Weight = 0.78314100999098546D;
- //
- // xrTableCell32
- //
- this.xrTableCell32.BorderColor = System.Drawing.SystemColors.ControlLight;
- this.xrTableCell32.Borders = ((DevExpress.XtraPrinting.BorderSide)(((DevExpress.XtraPrinting.BorderSide.Left | DevExpress.XtraPrinting.BorderSide.Right)
+ this.xrTableCell38.Name = "xrTableCell38";
+ this.xrTableCell38.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
+ this.xrTableCell38.StylePriority.UseBorderColor = false;
+ this.xrTableCell38.StylePriority.UseBorders = false;
+ this.xrTableCell38.StylePriority.UseFont = false;
+ this.xrTableCell38.StylePriority.UsePadding = false;
+ this.xrTableCell38.Weight = 0.78314100999098546D;
+ //
+ // xrTableCell32
+ //
+ this.xrTableCell32.BorderColor = System.Drawing.SystemColors.ControlLight;
+ this.xrTableCell32.Borders = ((DevExpress.XtraPrinting.BorderSide)(((DevExpress.XtraPrinting.BorderSide.Left | DevExpress.XtraPrinting.BorderSide.Right)
| DevExpress.XtraPrinting.BorderSide.Bottom)));
- this.xrTableCell32.CanShrink = true;
- this.xrTableCell32.DataBindings.AddRange(new DevExpress.XtraReports.UI.XRBinding[] {
+ this.xrTableCell32.CanShrink = true;
+ this.xrTableCell32.DataBindings.AddRange(new DevExpress.XtraReports.UI.XRBinding[] {
new DevExpress.XtraReports.UI.XRBinding("Text", null, "Betrag3")});
- this.xrTableCell32.Name = "xrTableCell32";
- this.xrTableCell32.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
- this.xrTableCell32.StylePriority.UseBorderColor = false;
- this.xrTableCell32.StylePriority.UseBorders = false;
- this.xrTableCell32.StylePriority.UsePadding = false;
- this.xrTableCell32.StylePriority.UseTextAlignment = false;
- this.xrTableCell32.TextAlignment = DevExpress.XtraPrinting.TextAlignment.TopRight;
- this.xrTableCell32.Weight = 0.21685899000901443D;
- //
- // xrTableRow13
- //
- this.xrTableRow13.Cells.AddRange(new DevExpress.XtraReports.UI.XRTableCell[] {
+ this.xrTableCell32.Name = "xrTableCell32";
+ this.xrTableCell32.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
+ this.xrTableCell32.StylePriority.UseBorderColor = false;
+ this.xrTableCell32.StylePriority.UseBorders = false;
+ this.xrTableCell32.StylePriority.UsePadding = false;
+ this.xrTableCell32.StylePriority.UseTextAlignment = false;
+ this.xrTableCell32.TextAlignment = DevExpress.XtraPrinting.TextAlignment.TopRight;
+ this.xrTableCell32.Weight = 0.21685899000901443D;
+ //
+ // xrTableRow13
+ //
+ this.xrTableRow13.Cells.AddRange(new DevExpress.XtraReports.UI.XRTableCell[] {
this.xrTableCell23});
- this.xrTableRow13.Name = "xrTableRow13";
- this.xrTableRow13.Weight = 0.085D;
- //
- // xrTableCell23
- //
- this.xrTableCell23.BorderColor = System.Drawing.SystemColors.ControlLight;
- this.xrTableCell23.Borders = ((DevExpress.XtraPrinting.BorderSide)(((DevExpress.XtraPrinting.BorderSide.Left | DevExpress.XtraPrinting.BorderSide.Right)
+ this.xrTableRow13.Name = "xrTableRow13";
+ this.xrTableRow13.Weight = 0.085D;
+ //
+ // xrTableCell23
+ //
+ this.xrTableCell23.BorderColor = System.Drawing.SystemColors.ControlLight;
+ this.xrTableCell23.Borders = ((DevExpress.XtraPrinting.BorderSide)(((DevExpress.XtraPrinting.BorderSide.Left | DevExpress.XtraPrinting.BorderSide.Right)
| DevExpress.XtraPrinting.BorderSide.Bottom)));
- this.xrTableCell23.Name = "xrTableCell23";
- this.xrTableCell23.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
- this.xrTableCell23.StylePriority.UseBorderColor = false;
- this.xrTableCell23.StylePriority.UseBorders = false;
- this.xrTableCell23.Weight = 1D;
- //
- // xrTableRow14
- //
- this.xrTableRow14.Cells.AddRange(new DevExpress.XtraReports.UI.XRTableCell[] {
+ this.xrTableCell23.Name = "xrTableCell23";
+ this.xrTableCell23.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
+ this.xrTableCell23.StylePriority.UseBorderColor = false;
+ this.xrTableCell23.StylePriority.UseBorders = false;
+ this.xrTableCell23.Weight = 1D;
+ //
+ // xrTableRow14
+ //
+ this.xrTableRow14.Cells.AddRange(new DevExpress.XtraReports.UI.XRTableCell[] {
this.xrTableCell12,
this.xrTableCell9});
- this.xrTableRow14.Name = "xrTableRow14";
- this.xrTableRow14.Weight = 0.085D;
- //
- // xrTableCell12
- //
- this.xrTableCell12.Borders = ((DevExpress.XtraPrinting.BorderSide)((DevExpress.XtraPrinting.BorderSide.Left | DevExpress.XtraPrinting.BorderSide.Bottom)));
- this.xrTableCell12.Name = "xrTableCell12";
- this.xrTableCell12.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
- this.xrTableCell12.StylePriority.UseBorders = false;
- this.xrTableCell12.StylePriority.UseFont = false;
- this.xrTableCell12.StylePriority.UsePadding = false;
- this.xrTableCell12.Text = "Gesamtforderung:";
- this.xrTableCell12.Weight = 0.78314100999098546D;
- //
- // xrTableCell9
- //
- this.xrTableCell9.Borders = ((DevExpress.XtraPrinting.BorderSide)(((DevExpress.XtraPrinting.BorderSide.Left | DevExpress.XtraPrinting.BorderSide.Right)
+ this.xrTableRow14.Name = "xrTableRow14";
+ this.xrTableRow14.Weight = 0.085D;
+ //
+ // xrTableCell12
+ //
+ this.xrTableCell12.Borders = ((DevExpress.XtraPrinting.BorderSide)((DevExpress.XtraPrinting.BorderSide.Left | DevExpress.XtraPrinting.BorderSide.Bottom)));
+ this.xrTableCell12.Name = "xrTableCell12";
+ this.xrTableCell12.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
+ this.xrTableCell12.StylePriority.UseBorders = false;
+ this.xrTableCell12.StylePriority.UseFont = false;
+ this.xrTableCell12.StylePriority.UsePadding = false;
+ this.xrTableCell12.Text = "Gesamtforderung:";
+ this.xrTableCell12.Weight = 0.78314100999098546D;
+ //
+ // xrTableCell9
+ //
+ this.xrTableCell9.Borders = ((DevExpress.XtraPrinting.BorderSide)(((DevExpress.XtraPrinting.BorderSide.Left | DevExpress.XtraPrinting.BorderSide.Right)
| DevExpress.XtraPrinting.BorderSide.Bottom)));
- this.xrTableCell9.DataBindings.AddRange(new DevExpress.XtraReports.UI.XRBinding[] {
+ this.xrTableCell9.DataBindings.AddRange(new DevExpress.XtraReports.UI.XRBinding[] {
new DevExpress.XtraReports.UI.XRBinding("Text", null, "AmountRecordedFLSString")});
- this.xrTableCell9.Name = "xrTableCell9";
- this.xrTableCell9.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
- this.xrTableCell9.StylePriority.UseBorders = false;
- this.xrTableCell9.StylePriority.UseFont = false;
- this.xrTableCell9.StylePriority.UsePadding = false;
- this.xrTableCell9.StylePriority.UseTextAlignment = false;
- this.xrTableCell9.Text = "[AmountRecordedFLSString]";
- this.xrTableCell9.TextAlignment = DevExpress.XtraPrinting.TextAlignment.TopRight;
- this.xrTableCell9.Weight = 0.21685899000901443D;
- //
- // xrTableRow7
- //
- this.xrTableRow7.Cells.AddRange(new DevExpress.XtraReports.UI.XRTableCell[] {
+ this.xrTableCell9.Name = "xrTableCell9";
+ this.xrTableCell9.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
+ this.xrTableCell9.StylePriority.UseBorders = false;
+ this.xrTableCell9.StylePriority.UseFont = false;
+ this.xrTableCell9.StylePriority.UsePadding = false;
+ this.xrTableCell9.StylePriority.UseTextAlignment = false;
+ this.xrTableCell9.Text = "[AmountRecordedFLSString]";
+ this.xrTableCell9.TextAlignment = DevExpress.XtraPrinting.TextAlignment.TopRight;
+ this.xrTableCell9.Weight = 0.21685899000901443D;
+ //
+ // xrTableRow7
+ //
+ this.xrTableRow7.Cells.AddRange(new DevExpress.XtraReports.UI.XRTableCell[] {
this.xrTableCell3});
- this.xrTableRow7.Name = "xrTableRow7";
- this.xrTableRow7.Weight = 0.085D;
- //
- // xrTableCell3
- //
- this.xrTableCell3.Borders = ((DevExpress.XtraPrinting.BorderSide)(((DevExpress.XtraPrinting.BorderSide.Left | DevExpress.XtraPrinting.BorderSide.Right)
+ this.xrTableRow7.Name = "xrTableRow7";
+ this.xrTableRow7.Weight = 0.085D;
+ //
+ // xrTableCell3
+ //
+ this.xrTableCell3.Borders = ((DevExpress.XtraPrinting.BorderSide)(((DevExpress.XtraPrinting.BorderSide.Left | DevExpress.XtraPrinting.BorderSide.Right)
| DevExpress.XtraPrinting.BorderSide.Bottom)));
- this.xrTableCell3.Name = "xrTableCell3";
- this.xrTableCell3.StylePriority.UseBorders = false;
- this.xrTableCell3.Weight = 1D;
- //
- // xrTableRow12
- //
- this.xrTableRow12.Cells.AddRange(new DevExpress.XtraReports.UI.XRTableCell[] {
+ this.xrTableCell3.Name = "xrTableCell3";
+ this.xrTableCell3.StylePriority.UseBorders = false;
+ this.xrTableCell3.Weight = 1D;
+ //
+ // xrTableRow12
+ //
+ this.xrTableRow12.Cells.AddRange(new DevExpress.XtraReports.UI.XRTableCell[] {
this.xrTableCell24,
this.xrTableCell10});
- this.xrTableRow12.Name = "xrTableRow12";
- this.xrTableRow12.Weight = 0.085D;
- //
- // xrTableCell24
- //
- this.xrTableCell24.BorderColor = System.Drawing.SystemColors.ControlLight;
- this.xrTableCell24.Borders = ((DevExpress.XtraPrinting.BorderSide)((DevExpress.XtraPrinting.BorderSide.Left | DevExpress.XtraPrinting.BorderSide.Bottom)));
- this.xrTableCell24.Name = "xrTableCell24";
- this.xrTableCell24.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
- this.xrTableCell24.StylePriority.UseBorderColor = false;
- this.xrTableCell24.StylePriority.UseBorders = false;
- this.xrTableCell24.StylePriority.UseFont = false;
- this.xrTableCell24.Text = "abzüglich der geleisteten Abschlagszahlung:";
- this.xrTableCell24.Weight = 0.78314100999098568D;
- //
- // xrTableCell10
- //
- this.xrTableCell10.BorderColor = System.Drawing.SystemColors.ControlLight;
- this.xrTableCell10.Borders = ((DevExpress.XtraPrinting.BorderSide)(((DevExpress.XtraPrinting.BorderSide.Left | DevExpress.XtraPrinting.BorderSide.Right)
+ this.xrTableRow12.Name = "xrTableRow12";
+ this.xrTableRow12.Weight = 0.085D;
+ //
+ // xrTableCell24
+ //
+ this.xrTableCell24.BorderColor = System.Drawing.SystemColors.ControlLight;
+ this.xrTableCell24.Borders = ((DevExpress.XtraPrinting.BorderSide)((DevExpress.XtraPrinting.BorderSide.Left | DevExpress.XtraPrinting.BorderSide.Bottom)));
+ this.xrTableCell24.Name = "xrTableCell24";
+ this.xrTableCell24.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
+ this.xrTableCell24.StylePriority.UseBorderColor = false;
+ this.xrTableCell24.StylePriority.UseBorders = false;
+ this.xrTableCell24.StylePriority.UseFont = false;
+ this.xrTableCell24.Text = "abzüglich der geleisteten Abschlagszahlung:";
+ this.xrTableCell24.Weight = 0.78314100999098568D;
+ //
+ // xrTableCell10
+ //
+ this.xrTableCell10.BorderColor = System.Drawing.SystemColors.ControlLight;
+ this.xrTableCell10.Borders = ((DevExpress.XtraPrinting.BorderSide)(((DevExpress.XtraPrinting.BorderSide.Left | DevExpress.XtraPrinting.BorderSide.Right)
| DevExpress.XtraPrinting.BorderSide.Bottom)));
- this.xrTableCell10.Name = "xrTableCell10";
- this.xrTableCell10.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
- this.xrTableCell10.StylePriority.UseBorderColor = false;
- this.xrTableCell10.StylePriority.UseBorders = false;
- this.xrTableCell10.StylePriority.UseFont = false;
- this.xrTableCell10.StylePriority.UseTextAlignment = false;
- this.xrTableCell10.Text = "[AmountAdvancedPayments]";
- this.xrTableCell10.TextAlignment = DevExpress.XtraPrinting.TextAlignment.TopRight;
- this.xrTableCell10.Weight = 0.21685899000901443D;
- //
- // xrTableRow15
- //
- this.xrTableRow15.Cells.AddRange(new DevExpress.XtraReports.UI.XRTableCell[] {
+ this.xrTableCell10.Name = "xrTableCell10";
+ this.xrTableCell10.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
+ this.xrTableCell10.StylePriority.UseBorderColor = false;
+ this.xrTableCell10.StylePriority.UseBorders = false;
+ this.xrTableCell10.StylePriority.UseFont = false;
+ this.xrTableCell10.StylePriority.UseTextAlignment = false;
+ this.xrTableCell10.Text = "[AmountAdvancedPayments]";
+ this.xrTableCell10.TextAlignment = DevExpress.XtraPrinting.TextAlignment.TopRight;
+ this.xrTableCell10.Weight = 0.21685899000901443D;
+ //
+ // xrTableRow15
+ //
+ this.xrTableRow15.Cells.AddRange(new DevExpress.XtraReports.UI.XRTableCell[] {
this.xrTableCell14,
this.xrTableCell15});
- this.xrTableRow15.Name = "xrTableRow15";
- this.xrTableRow15.Weight = 0.085D;
- //
- // xrTableCell14
- //
- this.xrTableCell14.Borders = ((DevExpress.XtraPrinting.BorderSide)((DevExpress.XtraPrinting.BorderSide.Left | DevExpress.XtraPrinting.BorderSide.Bottom)));
- this.xrTableCell14.Name = "xrTableCell14";
- this.xrTableCell14.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
- this.xrTableCell14.StylePriority.UseBorders = false;
- this.xrTableCell14.StylePriority.UsePadding = false;
- this.xrTableCell14.Text = "abzüglich Eigenanteil:";
- this.xrTableCell14.Weight = 0.78314100999098568D;
- //
- // xrTableCell15
- //
- this.xrTableCell15.Borders = ((DevExpress.XtraPrinting.BorderSide)(((DevExpress.XtraPrinting.BorderSide.Left | DevExpress.XtraPrinting.BorderSide.Right)
+ this.xrTableRow15.Name = "xrTableRow15";
+ this.xrTableRow15.Weight = 0.085D;
+ //
+ // xrTableCell14
+ //
+ this.xrTableCell14.Borders = ((DevExpress.XtraPrinting.BorderSide)((DevExpress.XtraPrinting.BorderSide.Left | DevExpress.XtraPrinting.BorderSide.Bottom)));
+ this.xrTableCell14.Name = "xrTableCell14";
+ this.xrTableCell14.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
+ this.xrTableCell14.StylePriority.UseBorders = false;
+ this.xrTableCell14.StylePriority.UsePadding = false;
+ this.xrTableCell14.Text = "abzüglich Eigenanteil:";
+ this.xrTableCell14.Weight = 0.78314100999098568D;
+ //
+ // xrTableCell15
+ //
+ this.xrTableCell15.Borders = ((DevExpress.XtraPrinting.BorderSide)(((DevExpress.XtraPrinting.BorderSide.Left | DevExpress.XtraPrinting.BorderSide.Right)
| DevExpress.XtraPrinting.BorderSide.Bottom)));
- this.xrTableCell15.DataBindings.AddRange(new DevExpress.XtraReports.UI.XRBinding[] {
+ this.xrTableCell15.DataBindings.AddRange(new DevExpress.XtraReports.UI.XRBinding[] {
new DevExpress.XtraReports.UI.XRBinding("Text", null, "Eigenbeteiligung", "{0:c}")});
- this.xrTableCell15.Name = "xrTableCell15";
- this.xrTableCell15.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
- this.xrTableCell15.StylePriority.UseBorders = false;
- this.xrTableCell15.StylePriority.UsePadding = false;
- this.xrTableCell15.StylePriority.UseTextAlignment = false;
- this.xrTableCell15.Text = "xrTableCell15";
- this.xrTableCell15.TextAlignment = DevExpress.XtraPrinting.TextAlignment.TopRight;
- this.xrTableCell15.Weight = 0.21685899000901443D;
- //
- // xrTableRow18
- //
- this.xrTableRow18.Cells.AddRange(new DevExpress.XtraReports.UI.XRTableCell[] {
+ this.xrTableCell15.Name = "xrTableCell15";
+ this.xrTableCell15.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
+ this.xrTableCell15.StylePriority.UseBorders = false;
+ this.xrTableCell15.StylePriority.UsePadding = false;
+ this.xrTableCell15.StylePriority.UseTextAlignment = false;
+ this.xrTableCell15.Text = "xrTableCell15";
+ this.xrTableCell15.TextAlignment = DevExpress.XtraPrinting.TextAlignment.TopRight;
+ this.xrTableCell15.Weight = 0.21685899000901443D;
+ //
+ // xrTableRow18
+ //
+ this.xrTableRow18.Cells.AddRange(new DevExpress.XtraReports.UI.XRTableCell[] {
this.xrTableCell25});
- this.xrTableRow18.Name = "xrTableRow18";
- this.xrTableRow18.Weight = 0.085D;
- //
- // xrTableCell25
- //
- this.xrTableCell25.BorderColor = System.Drawing.SystemColors.ControlLight;
- this.xrTableCell25.Borders = ((DevExpress.XtraPrinting.BorderSide)(((DevExpress.XtraPrinting.BorderSide.Left | DevExpress.XtraPrinting.BorderSide.Right)
+ this.xrTableRow18.Name = "xrTableRow18";
+ this.xrTableRow18.Weight = 0.085D;
+ //
+ // xrTableCell25
+ //
+ this.xrTableCell25.BorderColor = System.Drawing.SystemColors.ControlLight;
+ this.xrTableCell25.Borders = ((DevExpress.XtraPrinting.BorderSide)(((DevExpress.XtraPrinting.BorderSide.Left | DevExpress.XtraPrinting.BorderSide.Right)
| DevExpress.XtraPrinting.BorderSide.Bottom)));
- this.xrTableCell25.Name = "xrTableCell25";
- this.xrTableCell25.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
- this.xrTableCell25.StylePriority.UseBorderColor = false;
- this.xrTableCell25.StylePriority.UseBorders = false;
- this.xrTableCell25.Weight = 1D;
- //
- // xrTableRow17
- //
- this.xrTableRow17.Cells.AddRange(new DevExpress.XtraReports.UI.XRTableCell[] {
+ this.xrTableCell25.Name = "xrTableCell25";
+ this.xrTableCell25.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
+ this.xrTableCell25.StylePriority.UseBorderColor = false;
+ this.xrTableCell25.StylePriority.UseBorders = false;
+ this.xrTableCell25.Weight = 1D;
+ //
+ // xrTableRow17
+ //
+ this.xrTableRow17.Cells.AddRange(new DevExpress.XtraReports.UI.XRTableCell[] {
this.xrTableCell28,
this.xrTableCell17});
- this.xrTableRow17.Name = "xrTableRow17";
- this.xrTableRow17.Weight = 0.15D;
- //
- // xrTableCell28
- //
- this.xrTableCell28.BorderColor = System.Drawing.SystemColors.ControlLight;
- this.xrTableCell28.Borders = ((DevExpress.XtraPrinting.BorderSide)((DevExpress.XtraPrinting.BorderSide.Left | DevExpress.XtraPrinting.BorderSide.Bottom)));
- this.xrTableCell28.Name = "xrTableCell28";
- this.xrTableCell28.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
- this.xrTableCell28.StylePriority.UseBorderColor = false;
- this.xrTableCell28.StylePriority.UseBorders = false;
- this.xrTableCell28.StylePriority.UseFont = false;
- this.xrTableCell28.Text = "Restforderung:";
- this.xrTableCell28.Weight = 0.78314100999098568D;
- //
- // xrTableCell17
- //
- this.xrTableCell17.BorderColor = System.Drawing.SystemColors.ControlLight;
- this.xrTableCell17.Borders = ((DevExpress.XtraPrinting.BorderSide)(((DevExpress.XtraPrinting.BorderSide.Left | DevExpress.XtraPrinting.BorderSide.Right)
+ this.xrTableRow17.Name = "xrTableRow17";
+ this.xrTableRow17.Weight = 0.15D;
+ //
+ // xrTableCell28
+ //
+ this.xrTableCell28.BorderColor = System.Drawing.SystemColors.ControlLight;
+ this.xrTableCell28.Borders = ((DevExpress.XtraPrinting.BorderSide)((DevExpress.XtraPrinting.BorderSide.Left | DevExpress.XtraPrinting.BorderSide.Bottom)));
+ this.xrTableCell28.Name = "xrTableCell28";
+ this.xrTableCell28.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
+ this.xrTableCell28.StylePriority.UseBorderColor = false;
+ this.xrTableCell28.StylePriority.UseBorders = false;
+ this.xrTableCell28.StylePriority.UseFont = false;
+ this.xrTableCell28.Text = "Restforderung:";
+ this.xrTableCell28.Weight = 0.78314100999098568D;
+ //
+ // xrTableCell17
+ //
+ this.xrTableCell17.BorderColor = System.Drawing.SystemColors.ControlLight;
+ this.xrTableCell17.Borders = ((DevExpress.XtraPrinting.BorderSide)(((DevExpress.XtraPrinting.BorderSide.Left | DevExpress.XtraPrinting.BorderSide.Right)
| DevExpress.XtraPrinting.BorderSide.Bottom)));
- this.xrTableCell17.Font = new System.Drawing.Font("Arial", 10F, System.Drawing.FontStyle.Bold);
- this.xrTableCell17.Name = "xrTableCell17";
- this.xrTableCell17.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
- this.xrTableCell17.StylePriority.UseBorderColor = false;
- this.xrTableCell17.StylePriority.UseBorders = false;
- this.xrTableCell17.StylePriority.UseFont = false;
- this.xrTableCell17.StylePriority.UseTextAlignment = false;
- this.xrTableCell17.Text = "[Claim]";
- this.xrTableCell17.TextAlignment = DevExpress.XtraPrinting.TextAlignment.TopRight;
- this.xrTableCell17.Weight = 0.21685899000901443D;
- //
- // xrLabel6
- //
- this.xrLabel6.LocationFloat = new DevExpress.Utils.PointFloat(0F, 300.3333F);
- this.xrLabel6.Multiline = true;
- this.xrLabel6.Name = "xrLabel6";
- this.xrLabel6.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
- this.xrLabel6.SizeF = new System.Drawing.SizeF(642F, 67F);
- this.xrLabel6.StylePriority.UseFont = false;
- this.xrLabel6.Text = resources.GetString("xrLabel6.Text");
- //
- // xrLabel5
- //
- this.xrLabel5.LocationFloat = new DevExpress.Utils.PointFloat(0F, 267.3333F);
- this.xrLabel5.Name = "xrLabel5";
- this.xrLabel5.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
- this.xrLabel5.SizeF = new System.Drawing.SizeF(317F, 17F);
- this.xrLabel5.StylePriority.UseFont = false;
- this.xrLabel5.Text = "Sehr geehrte Damen und Herren,";
- //
- // xrLabel4
- //
- this.xrLabel4.BackColor = System.Drawing.Color.Transparent;
- this.xrLabel4.CanShrink = true;
- this.xrLabel4.Font = new System.Drawing.Font("Arial", 10F, System.Drawing.FontStyle.Bold);
- this.xrLabel4.LocationFloat = new DevExpress.Utils.PointFloat(0F, 225F);
- this.xrLabel4.Multiline = true;
- this.xrLabel4.Name = "xrLabel4";
- this.xrLabel4.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
- this.xrLabel4.SizeF = new System.Drawing.SizeF(650F, 17F);
- this.xrLabel4.StylePriority.UseBackColor = false;
- this.xrLabel4.StylePriority.UseFont = false;
- this.xrLabel4.Text = "[CustomerReferenceNumberAndDate]";
- this.xrLabel4.WordWrap = false;
- //
- // xrLabel3
- //
- this.xrLabel3.BackColor = System.Drawing.Color.Transparent;
- this.xrLabel3.CanShrink = true;
- this.xrLabel3.Font = new System.Drawing.Font("Arial", 10F, System.Drawing.FontStyle.Bold);
- this.xrLabel3.LocationFloat = new DevExpress.Utils.PointFloat(0F, 209F);
- this.xrLabel3.Name = "xrLabel3";
- this.xrLabel3.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
- this.xrLabel3.SizeF = new System.Drawing.SizeF(650F, 16F);
- this.xrLabel3.StylePriority.UseBackColor = false;
- this.xrLabel3.StylePriority.UseFont = false;
- this.xrLabel3.Text = "Abrechnung Betreuungsleistungen für [Salutation2] [CustomerName]";
- this.xrLabel3.WordWrap = false;
- //
- // xrLabel2
- //
- this.xrLabel2.BackColor = System.Drawing.Color.Transparent;
- this.xrLabel2.CanShrink = true;
- this.xrLabel2.Font = new System.Drawing.Font("Arial", 10F, System.Drawing.FontStyle.Bold);
- this.xrLabel2.LocationFloat = new DevExpress.Utils.PointFloat(0F, 192F);
- this.xrLabel2.Name = "xrLabel2";
- this.xrLabel2.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
- this.xrLabel2.SizeF = new System.Drawing.SizeF(650F, 17F);
- this.xrLabel2.StylePriority.UseBackColor = false;
- this.xrLabel2.StylePriority.UseFont = false;
- this.xrLabel2.Text = "Rechnung Nr. [InvoiceNumber]";
- this.xrLabel2.WordWrap = false;
- //
- // RecipientPostCodeAndTown
- //
- this.RecipientPostCodeAndTown.CanShrink = true;
- this.RecipientPostCodeAndTown.LocationFloat = new DevExpress.Utils.PointFloat(0F, 68.00003F);
- this.RecipientPostCodeAndTown.Name = "RecipientPostCodeAndTown";
- this.RecipientPostCodeAndTown.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
- this.RecipientPostCodeAndTown.ProcessNullValues = DevExpress.XtraReports.UI.ValueSuppressType.SuppressAndShrink;
- this.RecipientPostCodeAndTown.SizeF = new System.Drawing.SizeF(292F, 17F);
- this.RecipientPostCodeAndTown.StylePriority.UseFont = false;
- this.RecipientPostCodeAndTown.Text = "[RecipientPostCodeAndTown]";
- //
- // xrLabel_RecipientStreet
- //
- this.xrLabel_RecipientStreet.CanShrink = true;
- this.xrLabel_RecipientStreet.LocationFloat = new DevExpress.Utils.PointFloat(0F, 51.00002F);
- this.xrLabel_RecipientStreet.Name = "xrLabel_RecipientStreet";
- this.xrLabel_RecipientStreet.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
- this.xrLabel_RecipientStreet.ProcessNullValues = DevExpress.XtraReports.UI.ValueSuppressType.SuppressAndShrink;
- this.xrLabel_RecipientStreet.SizeF = new System.Drawing.SizeF(292F, 17F);
- this.xrLabel_RecipientStreet.StylePriority.UseFont = false;
- this.xrLabel_RecipientStreet.Text = "[RecipientStreet]";
- //
- // xrLabel_RecipientDivision
- //
- this.xrLabel_RecipientDivision.CanShrink = true;
- this.xrLabel_RecipientDivision.LocationFloat = new DevExpress.Utils.PointFloat(0F, 34.00002F);
- this.xrLabel_RecipientDivision.Name = "xrLabel_RecipientDivision";
- this.xrLabel_RecipientDivision.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
- this.xrLabel_RecipientDivision.ProcessNullValues = DevExpress.XtraReports.UI.ValueSuppressType.SuppressAndShrink;
- this.xrLabel_RecipientDivision.SizeF = new System.Drawing.SizeF(292F, 17F);
- this.xrLabel_RecipientDivision.StylePriority.UseFont = false;
- this.xrLabel_RecipientDivision.Text = "[RecipientDivision]";
- //
- // xrLabel_RecipientContactPerson
- //
- this.xrLabel_RecipientContactPerson.CanShrink = true;
- this.xrLabel_RecipientContactPerson.Font = new System.Drawing.Font("Arial", 8F);
- this.xrLabel_RecipientContactPerson.LocationFloat = new DevExpress.Utils.PointFloat(0F, 17.00001F);
- this.xrLabel_RecipientContactPerson.Name = "xrLabel_RecipientContactPerson";
- this.xrLabel_RecipientContactPerson.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
- this.xrLabel_RecipientContactPerson.ProcessNullValues = DevExpress.XtraReports.UI.ValueSuppressType.SuppressAndShrink;
- this.xrLabel_RecipientContactPerson.SizeF = new System.Drawing.SizeF(292F, 17F);
- this.xrLabel_RecipientContactPerson.StylePriority.UseFont = false;
- this.xrLabel_RecipientContactPerson.Text = "[RecipientContactPerson]";
- //
- // xrLabel1
- //
- this.xrLabel1.CanShrink = true;
- this.xrLabel1.LocationFloat = new DevExpress.Utils.PointFloat(0F, 0F);
- this.xrLabel1.Name = "xrLabel1";
- this.xrLabel1.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
- this.xrLabel1.ProcessNullValues = DevExpress.XtraReports.UI.ValueSuppressType.SuppressAndShrink;
- this.xrLabel1.SizeF = new System.Drawing.SizeF(292F, 17F);
- this.xrLabel1.StylePriority.UseFont = false;
- this.xrLabel1.Text = "[RecipientOrganisation]";
- //
- // ReportFooter
- //
- this.ReportFooter.Controls.AddRange(new DevExpress.XtraReports.UI.XRControl[] {
+ this.xrTableCell17.Font = new System.Drawing.Font("Arial", 10F, System.Drawing.FontStyle.Bold);
+ this.xrTableCell17.Name = "xrTableCell17";
+ this.xrTableCell17.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
+ this.xrTableCell17.StylePriority.UseBorderColor = false;
+ this.xrTableCell17.StylePriority.UseBorders = false;
+ this.xrTableCell17.StylePriority.UseFont = false;
+ this.xrTableCell17.StylePriority.UseTextAlignment = false;
+ this.xrTableCell17.Text = "[Claim]";
+ this.xrTableCell17.TextAlignment = DevExpress.XtraPrinting.TextAlignment.TopRight;
+ this.xrTableCell17.Weight = 0.21685899000901443D;
+ //
+ // xrLabel6
+ //
+ this.xrLabel6.LocationFloat = new DevExpress.Utils.PointFloat(0F, 300.3333F);
+ this.xrLabel6.Multiline = true;
+ this.xrLabel6.Name = "xrLabel6";
+ this.xrLabel6.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
+ this.xrLabel6.SizeF = new System.Drawing.SizeF(642F, 67F);
+ this.xrLabel6.StylePriority.UseFont = false;
+ this.xrLabel6.Text = resources.GetString("xrLabel6.Text");
+ //
+ // xrLabel5
+ //
+ this.xrLabel5.LocationFloat = new DevExpress.Utils.PointFloat(0F, 267.3333F);
+ this.xrLabel5.Name = "xrLabel5";
+ this.xrLabel5.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
+ this.xrLabel5.SizeF = new System.Drawing.SizeF(317F, 17F);
+ this.xrLabel5.StylePriority.UseFont = false;
+ this.xrLabel5.Text = "Sehr geehrte Damen und Herren,";
+ //
+ // xrLabel4
+ //
+ this.xrLabel4.BackColor = System.Drawing.Color.Transparent;
+ this.xrLabel4.CanShrink = true;
+ this.xrLabel4.Font = new System.Drawing.Font("Arial", 10F, System.Drawing.FontStyle.Bold);
+ this.xrLabel4.LocationFloat = new DevExpress.Utils.PointFloat(0F, 225F);
+ this.xrLabel4.Multiline = true;
+ this.xrLabel4.Name = "xrLabel4";
+ this.xrLabel4.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
+ this.xrLabel4.SizeF = new System.Drawing.SizeF(650F, 17F);
+ this.xrLabel4.StylePriority.UseBackColor = false;
+ this.xrLabel4.StylePriority.UseFont = false;
+ this.xrLabel4.Text = "[CustomerReferenceNumberAndDate]";
+ this.xrLabel4.WordWrap = false;
+ //
+ // xrLabel3
+ //
+ this.xrLabel3.BackColor = System.Drawing.Color.Transparent;
+ this.xrLabel3.CanShrink = true;
+ this.xrLabel3.Font = new System.Drawing.Font("Arial", 10F, System.Drawing.FontStyle.Bold);
+ this.xrLabel3.LocationFloat = new DevExpress.Utils.PointFloat(0F, 209F);
+ this.xrLabel3.Name = "xrLabel3";
+ this.xrLabel3.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
+ this.xrLabel3.SizeF = new System.Drawing.SizeF(650F, 16F);
+ this.xrLabel3.StylePriority.UseBackColor = false;
+ this.xrLabel3.StylePriority.UseFont = false;
+ this.xrLabel3.Text = "Abrechnung Betreuungsleistungen für [Salutation2] [CustomerName]";
+ this.xrLabel3.WordWrap = false;
+ //
+ // xrLabel2
+ //
+ this.xrLabel2.BackColor = System.Drawing.Color.Transparent;
+ this.xrLabel2.CanShrink = true;
+ this.xrLabel2.Font = new System.Drawing.Font("Arial", 10F, System.Drawing.FontStyle.Bold);
+ this.xrLabel2.LocationFloat = new DevExpress.Utils.PointFloat(0F, 192F);
+ this.xrLabel2.Name = "xrLabel2";
+ this.xrLabel2.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
+ this.xrLabel2.SizeF = new System.Drawing.SizeF(650F, 17F);
+ this.xrLabel2.StylePriority.UseBackColor = false;
+ this.xrLabel2.StylePriority.UseFont = false;
+ this.xrLabel2.Text = "Rechnung Nr. [InvoiceNumber]";
+ this.xrLabel2.WordWrap = false;
+ //
+ // RecipientPostCodeAndTown
+ //
+ this.RecipientPostCodeAndTown.CanShrink = true;
+ this.RecipientPostCodeAndTown.LocationFloat = new DevExpress.Utils.PointFloat(0F, 68.00003F);
+ this.RecipientPostCodeAndTown.Name = "RecipientPostCodeAndTown";
+ this.RecipientPostCodeAndTown.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
+ this.RecipientPostCodeAndTown.ProcessNullValues = DevExpress.XtraReports.UI.ValueSuppressType.SuppressAndShrink;
+ this.RecipientPostCodeAndTown.SizeF = new System.Drawing.SizeF(292F, 17F);
+ this.RecipientPostCodeAndTown.StylePriority.UseFont = false;
+ this.RecipientPostCodeAndTown.Text = "[RecipientPostCodeAndTown]";
+ //
+ // xrLabel_RecipientStreet
+ //
+ this.xrLabel_RecipientStreet.CanShrink = true;
+ this.xrLabel_RecipientStreet.LocationFloat = new DevExpress.Utils.PointFloat(0F, 51.00002F);
+ this.xrLabel_RecipientStreet.Name = "xrLabel_RecipientStreet";
+ this.xrLabel_RecipientStreet.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
+ this.xrLabel_RecipientStreet.ProcessNullValues = DevExpress.XtraReports.UI.ValueSuppressType.SuppressAndShrink;
+ this.xrLabel_RecipientStreet.SizeF = new System.Drawing.SizeF(292F, 17F);
+ this.xrLabel_RecipientStreet.StylePriority.UseFont = false;
+ this.xrLabel_RecipientStreet.Text = "[RecipientStreet]";
+ //
+ // xrLabel_RecipientDivision
+ //
+ this.xrLabel_RecipientDivision.CanShrink = true;
+ this.xrLabel_RecipientDivision.LocationFloat = new DevExpress.Utils.PointFloat(0F, 34.00002F);
+ this.xrLabel_RecipientDivision.Name = "xrLabel_RecipientDivision";
+ this.xrLabel_RecipientDivision.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
+ this.xrLabel_RecipientDivision.ProcessNullValues = DevExpress.XtraReports.UI.ValueSuppressType.SuppressAndShrink;
+ this.xrLabel_RecipientDivision.SizeF = new System.Drawing.SizeF(292F, 17F);
+ this.xrLabel_RecipientDivision.StylePriority.UseFont = false;
+ this.xrLabel_RecipientDivision.Text = "[RecipientDivision]";
+ //
+ // xrLabel_RecipientContactPerson
+ //
+ this.xrLabel_RecipientContactPerson.CanShrink = true;
+ this.xrLabel_RecipientContactPerson.Font = new System.Drawing.Font("Arial", 8F);
+ this.xrLabel_RecipientContactPerson.LocationFloat = new DevExpress.Utils.PointFloat(0F, 17.00001F);
+ this.xrLabel_RecipientContactPerson.Name = "xrLabel_RecipientContactPerson";
+ this.xrLabel_RecipientContactPerson.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
+ this.xrLabel_RecipientContactPerson.ProcessNullValues = DevExpress.XtraReports.UI.ValueSuppressType.SuppressAndShrink;
+ this.xrLabel_RecipientContactPerson.SizeF = new System.Drawing.SizeF(292F, 17F);
+ this.xrLabel_RecipientContactPerson.StylePriority.UseFont = false;
+ this.xrLabel_RecipientContactPerson.Text = "[RecipientContactPerson]";
+ //
+ // xrLabel1
+ //
+ this.xrLabel1.CanShrink = true;
+ this.xrLabel1.LocationFloat = new DevExpress.Utils.PointFloat(0F, 0F);
+ this.xrLabel1.Name = "xrLabel1";
+ this.xrLabel1.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
+ this.xrLabel1.ProcessNullValues = DevExpress.XtraReports.UI.ValueSuppressType.SuppressAndShrink;
+ this.xrLabel1.SizeF = new System.Drawing.SizeF(292F, 17F);
+ this.xrLabel1.StylePriority.UseFont = false;
+ this.xrLabel1.Text = "[RecipientOrganisation]";
+ //
+ // ReportFooter
+ //
+ this.ReportFooter.Controls.AddRange(new DevExpress.XtraReports.UI.XRControl[] {
this.xrLabel11,
this.xrLabel10,
this.xrTable3,
this.xrLabel12,
- this.xrLabel7});
- this.ReportFooter.Font = new System.Drawing.Font("Arial", 10F);
- this.ReportFooter.HeightF = 230F;
- this.ReportFooter.KeepTogether = true;
- this.ReportFooter.Name = "ReportFooter";
- this.ReportFooter.StylePriority.UseFont = false;
- //
- // xrLabel11
- //
- this.xrLabel11.Font = new System.Drawing.Font("Arial", 8F);
- this.xrLabel11.LocationFloat = new DevExpress.Utils.PointFloat(0F, 195.4583F);
- 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(225F, 34F);
- this.xrLabel11.StylePriority.UseFont = false;
- this.xrLabel11.Text = "Dipl. Sozialarbeiter\r\nGesundheitswissenschaftler";
- //
- // xrLabel10
- //
- this.xrLabel10.LocationFloat = new DevExpress.Utils.PointFloat(0F, 117F);
- this.xrLabel10.Name = "xrLabel10";
- this.xrLabel10.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
- this.xrLabel10.SizeF = new System.Drawing.SizeF(175F, 17F);
- this.xrLabel10.StylePriority.UseFont = false;
- this.xrLabel10.Text = "Mit freundlichen Grüßen";
- //
- // xrTable3
- //
- this.xrTable3.LocationFloat = new DevExpress.Utils.PointFloat(0F, 33F);
- this.xrTable3.Name = "xrTable3";
- this.xrTable3.Rows.AddRange(new DevExpress.XtraReports.UI.XRTableRow[] {
+ this.lblNotice});
+ this.ReportFooter.Font = new System.Drawing.Font("Arial", 10F);
+ this.ReportFooter.HeightF = 230F;
+ this.ReportFooter.KeepTogether = true;
+ this.ReportFooter.Name = "ReportFooter";
+ this.ReportFooter.StylePriority.UseFont = false;
+ //
+ // xrLabel11
+ //
+ this.xrLabel11.Font = new System.Drawing.Font("Arial", 8F);
+ this.xrLabel11.LocationFloat = new DevExpress.Utils.PointFloat(0F, 195.4583F);
+ 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(225F, 34F);
+ this.xrLabel11.StylePriority.UseFont = false;
+ this.xrLabel11.Text = "Dipl. Sozialarbeiter\r\nGesundheitswissenschaftler";
+ //
+ // xrLabel10
+ //
+ this.xrLabel10.LocationFloat = new DevExpress.Utils.PointFloat(0F, 117F);
+ this.xrLabel10.Name = "xrLabel10";
+ this.xrLabel10.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
+ this.xrLabel10.SizeF = new System.Drawing.SizeF(175F, 17F);
+ this.xrLabel10.StylePriority.UseFont = false;
+ this.xrLabel10.Text = "Mit freundlichen Grüßen";
+ //
+ // xrTable3
+ //
+ this.xrTable3.LocationFloat = new DevExpress.Utils.PointFloat(0F, 33F);
+ this.xrTable3.Name = "xrTable3";
+ this.xrTable3.Rows.AddRange(new DevExpress.XtraReports.UI.XRTableRow[] {
this.xrTableRow20,
this.xrTableRow21,
this.xrTableRow22,
this.xrTableRow23,
this.xrTableRow24});
- this.xrTable3.SizeF = new System.Drawing.SizeF(650F, 68F);
- this.xrTable3.StylePriority.UseFont = false;
- //
- // xrTableRow20
- //
- this.xrTableRow20.Cells.AddRange(new DevExpress.XtraReports.UI.XRTableCell[] {
+ this.xrTable3.SizeF = new System.Drawing.SizeF(650F, 68F);
+ this.xrTable3.StylePriority.UseFont = false;
+ //
+ // xrTableRow20
+ //
+ this.xrTableRow20.Cells.AddRange(new DevExpress.XtraReports.UI.XRTableCell[] {
this.xrTableCell16});
- this.xrTableRow20.Name = "xrTableRow20";
- this.xrTableRow20.Weight = 0.38095238095238093D;
- //
- // xrTableCell16
- //
- this.xrTableCell16.DataBindings.AddRange(new DevExpress.XtraReports.UI.XRBinding[] {
+ this.xrTableRow20.Name = "xrTableRow20";
+ this.xrTableRow20.Weight = 0.38095238095238093D;
+ //
+ // xrTableCell16
+ //
+ this.xrTableCell16.DataBindings.AddRange(new DevExpress.XtraReports.UI.XRBinding[] {
new DevExpress.XtraReports.UI.XRBinding("Text", null, "Notice")});
- this.xrTableCell16.Name = "xrTableCell16";
- this.xrTableCell16.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
- this.xrTableCell16.StylePriority.UsePadding = false;
- this.xrTableCell16.Text = "xrTableCell1";
- this.xrTableCell16.Weight = 3D;
- //
- // xrTableRow21
- //
- this.xrTableRow21.Cells.AddRange(new DevExpress.XtraReports.UI.XRTableCell[] {
+ this.xrTableCell16.Name = "xrTableCell16";
+ this.xrTableCell16.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
+ this.xrTableCell16.StylePriority.UsePadding = false;
+ this.xrTableCell16.Text = "xrTableCell1";
+ this.xrTableCell16.Weight = 3D;
+ //
+ // xrTableRow21
+ //
+ this.xrTableRow21.Cells.AddRange(new DevExpress.XtraReports.UI.XRTableCell[] {
this.xrTableCell18});
- this.xrTableRow21.Name = "xrTableRow21";
- this.xrTableRow21.Weight = 0.23809523809523808D;
- //
- // xrTableCell18
- //
- this.xrTableCell18.Name = "xrTableCell18";
- this.xrTableCell18.Weight = 3D;
- //
- // xrTableRow22
- //
- this.xrTableRow22.Cells.AddRange(new DevExpress.XtraReports.UI.XRTableCell[] {
+ this.xrTableRow21.Name = "xrTableRow21";
+ this.xrTableRow21.Weight = 0.23809523809523808D;
+ //
+ // xrTableCell18
+ //
+ this.xrTableCell18.Name = "xrTableCell18";
+ this.xrTableCell18.Weight = 3D;
+ //
+ // xrTableRow22
+ //
+ this.xrTableRow22.Cells.AddRange(new DevExpress.XtraReports.UI.XRTableCell[] {
this.xrTableCell29});
- this.xrTableRow22.Name = "xrTableRow22";
- this.xrTableRow22.Weight = 0.38095238095238088D;
- //
- // xrTableCell29
- //
- this.xrTableCell29.DataBindings.AddRange(new DevExpress.XtraReports.UI.XRBinding[] {
+ this.xrTableRow22.Name = "xrTableRow22";
+ this.xrTableRow22.Weight = 0.38095238095238088D;
+ //
+ // xrTableCell29
+ //
+ this.xrTableCell29.DataBindings.AddRange(new DevExpress.XtraReports.UI.XRBinding[] {
new DevExpress.XtraReports.UI.XRBinding("Text", null, "AbsenceTimes")});
- this.xrTableCell29.Name = "xrTableCell29";
- this.xrTableCell29.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
- this.xrTableCell29.StylePriority.UsePadding = false;
- this.xrTableCell29.Text = "xrTableCell4";
- this.xrTableCell29.Weight = 3D;
- //
- // xrTableRow23
- //
- this.xrTableRow23.Cells.AddRange(new DevExpress.XtraReports.UI.XRTableCell[] {
+ this.xrTableCell29.Name = "xrTableCell29";
+ this.xrTableCell29.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
+ this.xrTableCell29.StylePriority.UsePadding = false;
+ this.xrTableCell29.Text = "xrTableCell4";
+ this.xrTableCell29.Weight = 3D;
+ //
+ // xrTableRow23
+ //
+ this.xrTableRow23.Cells.AddRange(new DevExpress.XtraReports.UI.XRTableCell[] {
this.xrTableCell30});
- this.xrTableRow23.Name = "xrTableRow23";
- this.xrTableRow23.Weight = 0.23809523809523803D;
- //
- // xrTableCell30
- //
- this.xrTableCell30.Name = "xrTableCell30";
- this.xrTableCell30.Weight = 3D;
- //
- // xrTableRow24
- //
- this.xrTableRow24.Cells.AddRange(new DevExpress.XtraReports.UI.XRTableCell[] {
+ this.xrTableRow23.Name = "xrTableRow23";
+ this.xrTableRow23.Weight = 0.23809523809523803D;
+ //
+ // xrTableCell30
+ //
+ this.xrTableCell30.Name = "xrTableCell30";
+ this.xrTableCell30.Weight = 3D;
+ //
+ // xrTableRow24
+ //
+ this.xrTableRow24.Cells.AddRange(new DevExpress.XtraReports.UI.XRTableCell[] {
this.xrTableCell31});
- this.xrTableRow24.Name = "xrTableRow24";
- this.xrTableRow24.Weight = 0.38095238095238093D;
- //
- // xrTableCell31
- //
- this.xrTableCell31.DataBindings.AddRange(new DevExpress.XtraReports.UI.XRBinding[] {
+ this.xrTableRow24.Name = "xrTableRow24";
+ this.xrTableRow24.Weight = 0.38095238095238093D;
+ //
+ // xrTableCell31
+ //
+ this.xrTableCell31.DataBindings.AddRange(new DevExpress.XtraReports.UI.XRBinding[] {
new DevExpress.XtraReports.UI.XRBinding("Text", null, "FinalSentence")});
- this.xrTableCell31.Name = "xrTableCell31";
- this.xrTableCell31.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
- this.xrTableCell31.StylePriority.UsePadding = false;
- this.xrTableCell31.Text = "xrTableCell8";
- this.xrTableCell31.Weight = 3D;
- //
- // xrLabel12
- //
- this.xrLabel12.LocationFloat = new DevExpress.Utils.PointFloat(0F, 178.4584F);
- this.xrLabel12.Name = "xrLabel12";
- this.xrLabel12.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
- this.xrLabel12.SizeF = new System.Drawing.SizeF(225F, 17F);
- this.xrLabel12.StylePriority.UseFont = false;
- this.xrLabel12.Text = "Schürmann; MPH";
- //
- // xrLabel7
- //
- this.xrLabel7.Font = new System.Drawing.Font("Arial", 10F, System.Drawing.FontStyle.Italic);
- this.xrLabel7.LocationFloat = new DevExpress.Utils.PointFloat(0F, 8F);
- this.xrLabel7.Name = "xrLabel7";
- this.xrLabel7.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
- this.xrLabel7.SizeF = new System.Drawing.SizeF(250F, 17F);
- this.xrLabel7.StylePriority.UseFont = false;
- this.xrLabel7.Text = "Abschließende Bemerkungen:";
- //
- // topMarginBand1
- //
- this.topMarginBand1.HeightF = 30F;
- this.topMarginBand1.Name = "topMarginBand1";
- //
- // bottomMarginBand1
- //
- this.bottomMarginBand1.Controls.AddRange(new DevExpress.XtraReports.UI.XRControl[] {
+ this.xrTableCell31.Name = "xrTableCell31";
+ this.xrTableCell31.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
+ this.xrTableCell31.StylePriority.UsePadding = false;
+ this.xrTableCell31.Text = "xrTableCell8";
+ this.xrTableCell31.Weight = 3D;
+ //
+ // xrLabel12
+ //
+ this.xrLabel12.LocationFloat = new DevExpress.Utils.PointFloat(0F, 178.4584F);
+ this.xrLabel12.Name = "xrLabel12";
+ this.xrLabel12.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
+ this.xrLabel12.SizeF = new System.Drawing.SizeF(225F, 17F);
+ this.xrLabel12.StylePriority.UseFont = false;
+ this.xrLabel12.Text = "Schürmann; MPH";
+ //
+ // lblNotice
+ //
+ this.lblNotice.CanShrink = true;
+ this.lblNotice.Font = new System.Drawing.Font("Arial", 10F, System.Drawing.FontStyle.Italic);
+ this.lblNotice.LocationFloat = new DevExpress.Utils.PointFloat(0F, 8F);
+ this.lblNotice.Name = "lblNotice";
+ this.lblNotice.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
+ this.lblNotice.SizeF = new System.Drawing.SizeF(250F, 17F);
+ this.lblNotice.StylePriority.UseFont = false;
+ this.lblNotice.Text = "Abschließende Bemerkungen:";
+ //
+ // topMarginBand1
+ //
+ this.topMarginBand1.HeightF = 30F;
+ this.topMarginBand1.Name = "topMarginBand1";
+ //
+ // bottomMarginBand1
+ //
+ this.bottomMarginBand1.Controls.AddRange(new DevExpress.XtraReports.UI.XRControl[] {
this.xrPictureBox3,
this.xrLabel15,
this.xrLabel14,
this.xrLine2});
- this.bottomMarginBand1.Font = new System.Drawing.Font("Arial", 8F);
- this.bottomMarginBand1.HeightF = 200F;
- this.bottomMarginBand1.Name = "bottomMarginBand1";
- this.bottomMarginBand1.StylePriority.UseFont = false;
- //
- // xrPictureBox3
- //
- this.xrPictureBox3.Image = ((System.Drawing.Image)(resources.GetObject("xrPictureBox3.Image")));
- this.xrPictureBox3.LocationFloat = new DevExpress.Utils.PointFloat(0F, 108.0418F);
- this.xrPictureBox3.Name = "xrPictureBox3";
- this.xrPictureBox3.SizeF = new System.Drawing.SizeF(93.75F, 55.62495F);
- this.xrPictureBox3.Sizing = DevExpress.XtraPrinting.ImageSizeMode.Squeeze;
- //
- // xrLabel15
- //
- this.xrLabel15.CanShrink = true;
- this.xrLabel15.LocationFloat = new DevExpress.Utils.PointFloat(446.9999F, 24.37502F);
- this.xrLabel15.Multiline = true;
- this.xrLabel15.Name = "xrLabel15";
- this.xrLabel15.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
- this.xrLabel15.ProcessNullValues = DevExpress.XtraReports.UI.ValueSuppressType.SuppressAndShrink;
- this.xrLabel15.SizeF = new System.Drawing.SizeF(249.9998F, 139.2916F);
- this.xrLabel15.StylePriority.UseFont = false;
- this.xrLabel15.StylePriority.UseTextAlignment = false;
- this.xrLabel15.Text = "Bankkonto:\r\nSparkasse Krefeld; \r\nIBAN:: DE31 3205 0000 0011448594\r\nBIC: SPKRDE33\r" +
+ this.bottomMarginBand1.Font = new System.Drawing.Font("Arial", 8F);
+ this.bottomMarginBand1.HeightF = 200F;
+ this.bottomMarginBand1.Name = "bottomMarginBand1";
+ this.bottomMarginBand1.StylePriority.UseFont = false;
+ //
+ // xrPictureBox3
+ //
+ this.xrPictureBox3.Image = ((System.Drawing.Image)(resources.GetObject("xrPictureBox3.Image")));
+ this.xrPictureBox3.LocationFloat = new DevExpress.Utils.PointFloat(0F, 108.0418F);
+ this.xrPictureBox3.Name = "xrPictureBox3";
+ this.xrPictureBox3.SizeF = new System.Drawing.SizeF(93.75F, 55.62495F);
+ this.xrPictureBox3.Sizing = DevExpress.XtraPrinting.ImageSizeMode.Squeeze;
+ //
+ // xrLabel15
+ //
+ this.xrLabel15.CanShrink = true;
+ this.xrLabel15.LocationFloat = new DevExpress.Utils.PointFloat(446.9999F, 24.37502F);
+ this.xrLabel15.Multiline = true;
+ this.xrLabel15.Name = "xrLabel15";
+ this.xrLabel15.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
+ this.xrLabel15.ProcessNullValues = DevExpress.XtraReports.UI.ValueSuppressType.SuppressAndShrink;
+ this.xrLabel15.SizeF = new System.Drawing.SizeF(249.9998F, 139.2916F);
+ this.xrLabel15.StylePriority.UseFont = false;
+ this.xrLabel15.StylePriority.UseTextAlignment = false;
+ this.xrLabel15.Text = "Bankkonto:\r\nSparkasse Krefeld; \r\nIBAN:: DE31 3205 0000 0011448594\r\nBIC: SPKRDE33\r" +
"\n\r\n\r\nWir sind anerkannter Leistungserbringer nach \r\n§ 75 SGB 12\r\nSowie\r\n§45.b SG" +
"B 11\r\n\r\n\r\n";
- this.xrLabel15.TextAlignment = DevExpress.XtraPrinting.TextAlignment.TopLeft;
- //
- // xrLabel14
- //
- this.xrLabel14.CanShrink = true;
- this.xrLabel14.LocationFloat = new DevExpress.Utils.PointFloat(0F, 24.37502F);
- this.xrLabel14.Multiline = true;
- this.xrLabel14.Name = "xrLabel14";
- this.xrLabel14.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
- this.xrLabel14.ProcessNullValues = DevExpress.XtraReports.UI.ValueSuppressType.SuppressAndShrink;
- this.xrLabel14.SizeF = new System.Drawing.SizeF(292F, 83.66667F);
- this.xrLabel14.StylePriority.UseFont = false;
- this.xrLabel14.StylePriority.UseTextAlignment = false;
- this.xrLabel14.Text = "Kurfürstenstr. 8\r\n47906 Kempen\r\ne.mail: info@wegweiser-betreuungsdienst.de\r\n\r\nÖff" +
+ this.xrLabel15.TextAlignment = DevExpress.XtraPrinting.TextAlignment.TopLeft;
+ //
+ // xrLabel14
+ //
+ this.xrLabel14.CanShrink = true;
+ this.xrLabel14.LocationFloat = new DevExpress.Utils.PointFloat(0F, 24.37502F);
+ this.xrLabel14.Multiline = true;
+ this.xrLabel14.Name = "xrLabel14";
+ this.xrLabel14.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
+ this.xrLabel14.ProcessNullValues = DevExpress.XtraReports.UI.ValueSuppressType.SuppressAndShrink;
+ this.xrLabel14.SizeF = new System.Drawing.SizeF(292F, 83.66667F);
+ this.xrLabel14.StylePriority.UseFont = false;
+ this.xrLabel14.StylePriority.UseTextAlignment = false;
+ this.xrLabel14.Text = "Kurfürstenstr. 8\r\n47906 Kempen\r\ne.mail: info@wegweiser-betreuungsdienst.de\r\n\r\nÖff" +
"nungszeiten:\r\nMo – Fr : 08.00 – 12.00 Uhr\r\n";
- this.xrLabel14.TextAlignment = DevExpress.XtraPrinting.TextAlignment.TopLeft;
- //
- // xrLine2
- //
- this.xrLine2.LocationFloat = new DevExpress.Utils.PointFloat(0F, 0F);
- this.xrLine2.Name = "xrLine2";
- this.xrLine2.SizeF = new System.Drawing.SizeF(696.9998F, 7.208333F);
- //
- // GroupHeader1
- //
- this.GroupHeader1.Controls.AddRange(new DevExpress.XtraReports.UI.XRControl[] {
+ this.xrLabel14.TextAlignment = DevExpress.XtraPrinting.TextAlignment.TopLeft;
+ //
+ // xrLine2
+ //
+ this.xrLine2.LocationFloat = new DevExpress.Utils.PointFloat(0F, 0F);
+ this.xrLine2.Name = "xrLine2";
+ this.xrLine2.SizeF = new System.Drawing.SizeF(696.9998F, 7.208333F);
+ //
+ // GroupHeader1
+ //
+ this.GroupHeader1.Controls.AddRange(new DevExpress.XtraReports.UI.XRControl[] {
this.xrLabel1,
this.xrLabel_RecipientContactPerson,
this.xrLabel_RecipientDivision,
@@ -991,37 +992,37 @@ namespace BeWo.WegweiserBetreuungsdienstReports
this.xrLabel6,
this.xrTable1,
this.xrLabel8});
- this.GroupHeader1.Font = new System.Drawing.Font("Arial", 10F);
- this.GroupHeader1.HeightF = 626.3333F;
- this.GroupHeader1.Name = "GroupHeader1";
- this.GroupHeader1.StylePriority.UseFont = false;
- //
- // bindingSource1
- //
- this.bindingSource1.DataSource = typeof(BeWo.Report.ReportObjects.SettlementRO);
- //
- // Spitzabrechnung
- //
- this.Bands.AddRange(new DevExpress.XtraReports.UI.Band[] {
+ this.GroupHeader1.Font = new System.Drawing.Font("Arial", 10F);
+ this.GroupHeader1.HeightF = 626.3333F;
+ this.GroupHeader1.Name = "GroupHeader1";
+ this.GroupHeader1.StylePriority.UseFont = false;
+ //
+ // bindingSource1
+ //
+ this.bindingSource1.DataSource = typeof(BeWo.Report.ReportObjects.SettlementRO);
+ //
+ // Spitzabrechnung
+ //
+ this.Bands.AddRange(new DevExpress.XtraReports.UI.Band[] {
this.Detail,
this.ReportHeader,
this.ReportFooter,
this.topMarginBand1,
this.bottomMarginBand1,
this.GroupHeader1});
- this.DataSource = this.bindingSource1;
- this.ExportOptions.PrintPreview.DefaultFileName = "Spitzabrechnung";
- this.FormattingRuleSheet.AddRange(new DevExpress.XtraReports.UI.FormattingRule[] {
+ 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(80, 50, 30, 200);
- this.PageHeight = 1169;
- this.PageWidth = 827;
- this.PaperKind = System.Drawing.Printing.PaperKind.A4;
- this.Version = "13.1";
- ((System.ComponentModel.ISupportInitialize)(this.xrTable1)).EndInit();
- ((System.ComponentModel.ISupportInitialize)(this.xrTable3)).EndInit();
- ((System.ComponentModel.ISupportInitialize)(this.bindingSource1)).EndInit();
- ((System.ComponentModel.ISupportInitialize)(this)).EndInit();
+ this.Margins = new System.Drawing.Printing.Margins(80, 50, 30, 200);
+ this.PageHeight = 1169;
+ this.PageWidth = 827;
+ this.PaperKind = System.Drawing.Printing.PaperKind.A4;
+ this.Version = "13.2";
+ ((System.ComponentModel.ISupportInitialize)(this.xrTable1)).EndInit();
+ ((System.ComponentModel.ISupportInitialize)(this.xrTable3)).EndInit();
+ ((System.ComponentModel.ISupportInitialize)(this.bindingSource1)).EndInit();
+ ((System.ComponentModel.ISupportInitialize)(this)).EndInit();
}
@@ -1041,7 +1042,7 @@ namespace BeWo.WegweiserBetreuungsdienstReports
private DevExpress.XtraReports.UI.XRLabel xrLabel_RecipientContactPerson;
private DevExpress.XtraReports.UI.XRLabel xrLabel1;
private DevExpress.XtraReports.UI.ReportFooterBand ReportFooter;
- private DevExpress.XtraReports.UI.XRLabel xrLabel7;
+ private DevExpress.XtraReports.UI.XRLabel lblNotice;
private DevExpress.XtraReports.UI.XRLabel xrLabel12;
private DevExpress.XtraReports.UI.XRTable xrTable1;
private DevExpress.XtraReports.UI.XRTableRow xrTableRow9;
diff --git a/ReportImp/WegweiserBetreuungsdienstReports/SettlementReport.cs b/ReportImp/WegweiserBetreuungsdienstReports/SettlementReport.cs
index 94bca96ec..8dd46033a 100644
--- a/ReportImp/WegweiserBetreuungsdienstReports/SettlementReport.cs
+++ b/ReportImp/WegweiserBetreuungsdienstReports/SettlementReport.cs
@@ -3,7 +3,7 @@ using DevExpress.XtraReports.UI;
using BeWo.Report.ReportObjects;
using BeWo.Report;
-namespace BeWo.WegweiserBetreuungsdienstReports
+namespace BeWo.WegweiserBetreuungsdienstReports.Alt
{
public partial class Spitzabrechnung : XtraReport, IBeWoReport
{
@@ -14,7 +14,12 @@ namespace BeWo.WegweiserBetreuungsdienstReports
public void SetReportDataSource(SettlementRO pRO)
{
- pRO.InvoiceDate = string.Format("Datum:{0}", pRO.InvoiceDate);
+ if (String.IsNullOrEmpty(pRO.Notice))
+ {
+ lblNotice.Visible = false;
+ }
+
+ pRO.InvoiceDate = string.Format("Datum:{0}", pRO.InvoiceDate);
if (pRO.DifferentHourlyRateCount == 3)
{
diff --git a/ReportImp/WegweiserBetreuungsdienstReports/SettlementReport2.Designer.cs b/ReportImp/WegweiserBetreuungsdienstReports/SettlementReport2.Designer.cs
new file mode 100644
index 000000000..34abeb02f
--- /dev/null
+++ b/ReportImp/WegweiserBetreuungsdienstReports/SettlementReport2.Designer.cs
@@ -0,0 +1,1073 @@
+using BeWo.Report.ReportObjects;
+namespace BeWo.WegweiserBetreuungsdienstReports
+{
+ partial class Spitzabrechnung
+ {
+ ///
+ /// Required designer variable.
+ ///
+ private System.ComponentModel.IContainer components = null;
+
+ ///
+ /// Clean up any resources being used.
+ ///
+ /// true if managed resources should be disposed; otherwise, false.
+ protected override void Dispose(bool disposing)
+ {
+ if (disposing && (components != null))
+ {
+ components.Dispose();
+ }
+ base.Dispose(disposing);
+ }
+
+ #region Designer generated code
+
+ ///
+ /// Required method for Designer support - do not modify
+ /// the contents of this method with the code editor.
+ ///
+ private void InitializeComponent()
+ {
+ this.components = new System.ComponentModel.Container();
+ System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(Spitzabrechnung));
+ this.Detail = new DevExpress.XtraReports.UI.DetailBand();
+ this.ReportHeader = new DevExpress.XtraReports.UI.ReportHeaderBand();
+ this.xrLabel13 = new DevExpress.XtraReports.UI.XRLabel();
+ this.xrLine1 = new DevExpress.XtraReports.UI.XRLine();
+ this.xrPictureBox2 = new DevExpress.XtraReports.UI.XRPictureBox();
+ this.xrLabel9 = new DevExpress.XtraReports.UI.XRLabel();
+ this.xrPictureBox1 = new DevExpress.XtraReports.UI.XRPictureBox();
+ this.xrLabel8 = new DevExpress.XtraReports.UI.XRLabel();
+ this.xrTable1 = new DevExpress.XtraReports.UI.XRTable();
+ this.xrTableRow9 = new DevExpress.XtraReports.UI.XRTableRow();
+ this.xrTableCell19 = new DevExpress.XtraReports.UI.XRTableCell();
+ this.xrTableCell6 = new DevExpress.XtraReports.UI.XRTableCell();
+ this.xrTableRow10 = new DevExpress.XtraReports.UI.XRTableRow();
+ this.cellFactorText = new DevExpress.XtraReports.UI.XRTableCell();
+ this.ruleRateFactorNull = new DevExpress.XtraReports.UI.FormattingRule();
+ this.cellApprovedFlsFactor = new DevExpress.XtraReports.UI.XRTableCell();
+ this.xrTableRow11 = new DevExpress.XtraReports.UI.XRTableRow();
+ this.xrTableCell21 = new DevExpress.XtraReports.UI.XRTableCell();
+ this.rowErbrachteLeistung = new DevExpress.XtraReports.UI.XRTableRow();
+ this.xrTableCell22 = new DevExpress.XtraReports.UI.XRTableCell();
+ this.xrLabel6 = new DevExpress.XtraReports.UI.XRLabel();
+ this.xrLabel5 = new DevExpress.XtraReports.UI.XRLabel();
+ this.xrLabel4 = new DevExpress.XtraReports.UI.XRLabel();
+ this.xrLabel3 = new DevExpress.XtraReports.UI.XRLabel();
+ this.xrLabel2 = new DevExpress.XtraReports.UI.XRLabel();
+ this.RecipientPostCodeAndTown = new DevExpress.XtraReports.UI.XRLabel();
+ this.xrLabel_RecipientStreet = new DevExpress.XtraReports.UI.XRLabel();
+ this.xrLabel_RecipientDivision = new DevExpress.XtraReports.UI.XRLabel();
+ this.xrLabel_RecipientContactPerson = new DevExpress.XtraReports.UI.XRLabel();
+ this.xrLabel1 = new DevExpress.XtraReports.UI.XRLabel();
+ this.ReportFooter = new DevExpress.XtraReports.UI.ReportFooterBand();
+ this.xrLabel11 = new DevExpress.XtraReports.UI.XRLabel();
+ this.xrLabel10 = new DevExpress.XtraReports.UI.XRLabel();
+ this.xrTable3 = new DevExpress.XtraReports.UI.XRTable();
+ this.xrTableRow20 = new DevExpress.XtraReports.UI.XRTableRow();
+ this.xrTableCell16 = new DevExpress.XtraReports.UI.XRTableCell();
+ this.xrTableRow21 = new DevExpress.XtraReports.UI.XRTableRow();
+ this.xrTableCell18 = new DevExpress.XtraReports.UI.XRTableCell();
+ this.xrTableRow22 = new DevExpress.XtraReports.UI.XRTableRow();
+ this.xrTableCell29 = new DevExpress.XtraReports.UI.XRTableCell();
+ this.xrTableRow23 = new DevExpress.XtraReports.UI.XRTableRow();
+ this.xrTableCell30 = new DevExpress.XtraReports.UI.XRTableCell();
+ this.xrTableRow24 = new DevExpress.XtraReports.UI.XRTableRow();
+ this.xrTableCell31 = new DevExpress.XtraReports.UI.XRTableCell();
+ this.xrLabel12 = new DevExpress.XtraReports.UI.XRLabel();
+ this.lblNotice = new DevExpress.XtraReports.UI.XRLabel();
+ this.topMarginBand1 = new DevExpress.XtraReports.UI.TopMarginBand();
+ this.bottomMarginBand1 = new DevExpress.XtraReports.UI.BottomMarginBand();
+ this.xrPictureBox3 = new DevExpress.XtraReports.UI.XRPictureBox();
+ this.xrLabel15 = new DevExpress.XtraReports.UI.XRLabel();
+ this.xrLabel14 = new DevExpress.XtraReports.UI.XRLabel();
+ this.xrLine2 = new DevExpress.XtraReports.UI.XRLine();
+ this.GroupHeader1 = new DevExpress.XtraReports.UI.GroupHeaderBand();
+ this.bindingSource1 = new System.Windows.Forms.BindingSource(this.components);
+ this.DetailReport = new DevExpress.XtraReports.UI.DetailReportBand();
+ this.Detail1 = new DevExpress.XtraReports.UI.DetailBand();
+ this.xrTable2 = new DevExpress.XtraReports.UI.XRTable();
+ this.xrTableRow5 = new DevExpress.XtraReports.UI.XRTableRow();
+ this.xrTableCell13 = new DevExpress.XtraReports.UI.XRTableCell();
+ this.xrTableCell26 = new DevExpress.XtraReports.UI.XRTableCell();
+ this.GroupFooter1 = new DevExpress.XtraReports.UI.GroupFooterBand();
+ this.xrTable4 = new DevExpress.XtraReports.UI.XRTable();
+ this.xrTableRow3 = new DevExpress.XtraReports.UI.XRTableRow();
+ this.xrTableCell3 = new DevExpress.XtraReports.UI.XRTableCell();
+ this.xrTableRow38 = new DevExpress.XtraReports.UI.XRTableRow();
+ this.xrTableCell65 = new DevExpress.XtraReports.UI.XRTableCell();
+ this.xrTableCell66 = new DevExpress.XtraReports.UI.XRTableCell();
+ this.xrTableRow1 = new DevExpress.XtraReports.UI.XRTableRow();
+ this.xrTableCell2 = new DevExpress.XtraReports.UI.XRTableCell();
+ this.xrTableRow40 = new DevExpress.XtraReports.UI.XRTableRow();
+ this.xrTableCell68 = new DevExpress.XtraReports.UI.XRTableCell();
+ this.xrTableCell69 = new DevExpress.XtraReports.UI.XRTableCell();
+ this.xrTableRow41 = new DevExpress.XtraReports.UI.XRTableRow();
+ this.xrTableCell70 = new DevExpress.XtraReports.UI.XRTableCell();
+ this.xrTableCell71 = new DevExpress.XtraReports.UI.XRTableCell();
+ this.xrTableRow2 = new DevExpress.XtraReports.UI.XRTableRow();
+ this.xrTableCell4 = new DevExpress.XtraReports.UI.XRTableCell();
+ this.xrTableRow43 = new DevExpress.XtraReports.UI.XRTableRow();
+ this.xrTableCell73 = new DevExpress.XtraReports.UI.XRTableCell();
+ this.xrTableCell74 = new DevExpress.XtraReports.UI.XRTableCell();
+ ((System.ComponentModel.ISupportInitialize)(this.xrTable1)).BeginInit();
+ ((System.ComponentModel.ISupportInitialize)(this.xrTable3)).BeginInit();
+ ((System.ComponentModel.ISupportInitialize)(this.bindingSource1)).BeginInit();
+ ((System.ComponentModel.ISupportInitialize)(this.xrTable2)).BeginInit();
+ ((System.ComponentModel.ISupportInitialize)(this.xrTable4)).BeginInit();
+ ((System.ComponentModel.ISupportInitialize)(this)).BeginInit();
+ //
+ // Detail
+ //
+ this.Detail.HeightF = 0F;
+ this.Detail.Name = "Detail";
+ this.Detail.Padding = new DevExpress.XtraPrinting.PaddingInfo(0, 0, 0, 0, 100F);
+ this.Detail.TextAlignment = DevExpress.XtraPrinting.TextAlignment.TopLeft;
+ //
+ // ReportHeader
+ //
+ this.ReportHeader.Controls.AddRange(new DevExpress.XtraReports.UI.XRControl[] {
+ this.xrLabel13,
+ this.xrLine1,
+ this.xrPictureBox2,
+ this.xrLabel9,
+ this.xrPictureBox1});
+ this.ReportHeader.Font = new System.Drawing.Font("Arial", 8F);
+ this.ReportHeader.HeightF = 188.75F;
+ this.ReportHeader.Name = "ReportHeader";
+ this.ReportHeader.StylePriority.UseFont = false;
+ //
+ // xrLabel13
+ //
+ this.xrLabel13.Font = new System.Drawing.Font("Arial", 6F);
+ this.xrLabel13.LocationFloat = new DevExpress.Utils.PointFloat(114.9999F, 152.7917F);
+ this.xrLabel13.Name = "xrLabel13";
+ this.xrLabel13.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
+ this.xrLabel13.SizeF = new System.Drawing.SizeF(317F, 17F);
+ this.xrLabel13.StylePriority.UseFont = false;
+ this.xrLabel13.StylePriority.UseTextAlignment = false;
+ this.xrLabel13.Text = "Kurfürstenstr.8, 47906 Kempen";
+ this.xrLabel13.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleLeft;
+ //
+ // xrLine1
+ //
+ this.xrLine1.LocationFloat = new DevExpress.Utils.PointFloat(0F, 169.7917F);
+ this.xrLine1.Name = "xrLine1";
+ this.xrLine1.SizeF = new System.Drawing.SizeF(236.4583F, 2F);
+ //
+ // xrPictureBox2
+ //
+ this.xrPictureBox2.Image = ((System.Drawing.Image)(resources.GetObject("xrPictureBox2.Image")));
+ this.xrPictureBox2.LocationFloat = new DevExpress.Utils.PointFloat(0F, 144.7917F);
+ this.xrPictureBox2.Name = "xrPictureBox2";
+ this.xrPictureBox2.SizeF = new System.Drawing.SizeF(115F, 25F);
+ this.xrPictureBox2.Sizing = DevExpress.XtraPrinting.ImageSizeMode.ZoomImage;
+ //
+ // xrLabel9
+ //
+ this.xrLabel9.CanShrink = true;
+ this.xrLabel9.LocationFloat = new DevExpress.Utils.PointFloat(404.9998F, 50F);
+ this.xrLabel9.Multiline = true;
+ this.xrLabel9.Name = "xrLabel9";
+ this.xrLabel9.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
+ this.xrLabel9.ProcessNullValues = DevExpress.XtraReports.UI.ValueSuppressType.SuppressAndShrink;
+ this.xrLabel9.SizeF = new System.Drawing.SizeF(292F, 68.04167F);
+ this.xrLabel9.StylePriority.UseFont = false;
+ this.xrLabel9.StylePriority.UseTextAlignment = false;
+ this.xrLabel9.Text = "\r\nTel: 02152/558596\r\nFax: 02152/558597";
+ this.xrLabel9.TextAlignment = DevExpress.XtraPrinting.TextAlignment.TopRight;
+ //
+ // xrPictureBox1
+ //
+ this.xrPictureBox1.Image = ((System.Drawing.Image)(resources.GetObject("xrPictureBox1.Image")));
+ this.xrPictureBox1.LocationFloat = new DevExpress.Utils.PointFloat(446.9999F, 0F);
+ this.xrPictureBox1.Name = "xrPictureBox1";
+ this.xrPictureBox1.SizeF = new System.Drawing.SizeF(250F, 50F);
+ this.xrPictureBox1.Sizing = DevExpress.XtraPrinting.ImageSizeMode.ZoomImage;
+ //
+ // xrLabel8
+ //
+ this.xrLabel8.DataBindings.AddRange(new DevExpress.XtraReports.UI.XRBinding[] {
+ new DevExpress.XtraReports.UI.XRBinding("Text", null, "InvoiceDate", "Datum: {0:dd.MM.yyyy}")});
+ this.xrLabel8.Font = new System.Drawing.Font("Arial", 8F);
+ this.xrLabel8.LocationFloat = new DevExpress.Utils.PointFloat(413.9999F, 68.00003F);
+ this.xrLabel8.Name = "xrLabel8";
+ this.xrLabel8.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
+ this.xrLabel8.SizeF = new System.Drawing.SizeF(283F, 23F);
+ this.xrLabel8.StylePriority.UseFont = false;
+ this.xrLabel8.StylePriority.UseTextAlignment = false;
+ this.xrLabel8.TextAlignment = DevExpress.XtraPrinting.TextAlignment.TopRight;
+ //
+ // xrTable1
+ //
+ this.xrTable1.BorderColor = System.Drawing.SystemColors.ControlLight;
+ this.xrTable1.LocationFloat = new DevExpress.Utils.PointFloat(0F, 375.3333F);
+ this.xrTable1.Name = "xrTable1";
+ this.xrTable1.Rows.AddRange(new DevExpress.XtraReports.UI.XRTableRow[] {
+ this.xrTableRow9,
+ this.xrTableRow10,
+ this.xrTableRow11,
+ this.rowErbrachteLeistung});
+ this.xrTable1.SizeF = new System.Drawing.SizeF(650F, 68F);
+ this.xrTable1.StylePriority.UseBorderColor = false;
+ //
+ // xrTableRow9
+ //
+ this.xrTableRow9.Cells.AddRange(new DevExpress.XtraReports.UI.XRTableCell[] {
+ this.xrTableCell19,
+ this.xrTableCell6});
+ this.xrTableRow9.Name = "xrTableRow9";
+ this.xrTableRow9.Weight = 0.085D;
+ //
+ // xrTableCell19
+ //
+ this.xrTableCell19.BorderColor = System.Drawing.SystemColors.ControlLight;
+ this.xrTableCell19.Borders = ((DevExpress.XtraPrinting.BorderSide)(((DevExpress.XtraPrinting.BorderSide.Left | DevExpress.XtraPrinting.BorderSide.Top)
+ | DevExpress.XtraPrinting.BorderSide.Right)));
+ this.xrTableCell19.Name = "xrTableCell19";
+ this.xrTableCell19.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
+ this.xrTableCell19.StylePriority.UseBorderColor = false;
+ this.xrTableCell19.StylePriority.UseBorders = false;
+ this.xrTableCell19.StylePriority.UseFont = false;
+ this.xrTableCell19.Text = "Bewilligte Fachleistungsstunden (FLS) gesamt:";
+ this.xrTableCell19.Weight = 0.78314100999098568D;
+ //
+ // xrTableCell6
+ //
+ this.xrTableCell6.BorderColor = System.Drawing.SystemColors.ControlLight;
+ this.xrTableCell6.Borders = ((DevExpress.XtraPrinting.BorderSide)(((DevExpress.XtraPrinting.BorderSide.Left | DevExpress.XtraPrinting.BorderSide.Top)
+ | DevExpress.XtraPrinting.BorderSide.Right)));
+ this.xrTableCell6.Font = new System.Drawing.Font("Arial", 10F, System.Drawing.FontStyle.Bold);
+ this.xrTableCell6.Name = "xrTableCell6";
+ this.xrTableCell6.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
+ this.xrTableCell6.StylePriority.UseBorderColor = false;
+ this.xrTableCell6.StylePriority.UseBorders = false;
+ this.xrTableCell6.StylePriority.UseFont = false;
+ this.xrTableCell6.StylePriority.UseTextAlignment = false;
+ this.xrTableCell6.Text = "[ApprovedFLS]";
+ this.xrTableCell6.TextAlignment = DevExpress.XtraPrinting.TextAlignment.TopRight;
+ this.xrTableCell6.Weight = 0.21685899000901443D;
+ //
+ // xrTableRow10
+ //
+ this.xrTableRow10.Cells.AddRange(new DevExpress.XtraReports.UI.XRTableCell[] {
+ this.cellFactorText,
+ this.cellApprovedFlsFactor});
+ this.xrTableRow10.FormattingRules.Add(this.ruleRateFactorNull);
+ this.xrTableRow10.Name = "xrTableRow10";
+ this.xrTableRow10.Weight = 0.085D;
+ //
+ // cellFactorText
+ //
+ this.cellFactorText.BorderColor = System.Drawing.SystemColors.ControlLight;
+ this.cellFactorText.Borders = ((DevExpress.XtraPrinting.BorderSide)((DevExpress.XtraPrinting.BorderSide.Left | DevExpress.XtraPrinting.BorderSide.Right)));
+ this.cellFactorText.FormattingRules.Add(this.ruleRateFactorNull);
+ this.cellFactorText.Name = "cellFactorText";
+ this.cellFactorText.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
+ this.cellFactorText.StylePriority.UseBorderColor = false;
+ this.cellFactorText.StylePriority.UseBorders = false;
+ this.cellFactorText.StylePriority.UseFont = false;
+ this.cellFactorText.Weight = 0.78314100999098568D;
+ //
+ // ruleRateFactorNull
+ //
+ this.ruleRateFactorNull.Condition = "[RateFactorText2] == ?";
+ //
+ //
+ //
+ this.ruleRateFactorNull.Formatting.Visible = DevExpress.Utils.DefaultBoolean.False;
+ this.ruleRateFactorNull.Name = "ruleRateFactorNull";
+ //
+ // cellApprovedFlsFactor
+ //
+ this.cellApprovedFlsFactor.BorderColor = System.Drawing.SystemColors.ControlLight;
+ this.cellApprovedFlsFactor.Borders = ((DevExpress.XtraPrinting.BorderSide)((DevExpress.XtraPrinting.BorderSide.Left | DevExpress.XtraPrinting.BorderSide.Right)));
+ this.cellApprovedFlsFactor.Font = new System.Drawing.Font("Arial", 10F, System.Drawing.FontStyle.Bold);
+ this.cellApprovedFlsFactor.FormattingRules.Add(this.ruleRateFactorNull);
+ this.cellApprovedFlsFactor.Name = "cellApprovedFlsFactor";
+ this.cellApprovedFlsFactor.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
+ this.cellApprovedFlsFactor.StylePriority.UseBorderColor = false;
+ this.cellApprovedFlsFactor.StylePriority.UseBorders = false;
+ this.cellApprovedFlsFactor.StylePriority.UseFont = false;
+ this.cellApprovedFlsFactor.StylePriority.UseTextAlignment = false;
+ this.cellApprovedFlsFactor.TextAlignment = DevExpress.XtraPrinting.TextAlignment.TopRight;
+ this.cellApprovedFlsFactor.Weight = 0.21685899000901443D;
+ //
+ // xrTableRow11
+ //
+ this.xrTableRow11.Cells.AddRange(new DevExpress.XtraReports.UI.XRTableCell[] {
+ this.xrTableCell21});
+ this.xrTableRow11.Name = "xrTableRow11";
+ this.xrTableRow11.Weight = 0.085D;
+ //
+ // xrTableCell21
+ //
+ this.xrTableCell21.BorderColor = System.Drawing.SystemColors.ControlLight;
+ this.xrTableCell21.Borders = ((DevExpress.XtraPrinting.BorderSide)(((DevExpress.XtraPrinting.BorderSide.Left | DevExpress.XtraPrinting.BorderSide.Top)
+ | DevExpress.XtraPrinting.BorderSide.Right)));
+ this.xrTableCell21.Name = "xrTableCell21";
+ this.xrTableCell21.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
+ this.xrTableCell21.StylePriority.UseBorderColor = false;
+ this.xrTableCell21.StylePriority.UseBorders = false;
+ this.xrTableCell21.Weight = 1D;
+ //
+ // rowErbrachteLeistung
+ //
+ this.rowErbrachteLeistung.Cells.AddRange(new DevExpress.XtraReports.UI.XRTableCell[] {
+ this.xrTableCell22});
+ this.rowErbrachteLeistung.Name = "rowErbrachteLeistung";
+ this.rowErbrachteLeistung.Weight = 0.085D;
+ //
+ // xrTableCell22
+ //
+ this.xrTableCell22.BorderColor = System.Drawing.SystemColors.ControlLight;
+ this.xrTableCell22.Borders = ((DevExpress.XtraPrinting.BorderSide)(((DevExpress.XtraPrinting.BorderSide.Left | DevExpress.XtraPrinting.BorderSide.Right)
+ | DevExpress.XtraPrinting.BorderSide.Bottom)));
+ this.xrTableCell22.Name = "xrTableCell22";
+ this.xrTableCell22.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
+ this.xrTableCell22.StylePriority.UseBorderColor = false;
+ this.xrTableCell22.StylePriority.UseBorders = false;
+ this.xrTableCell22.StylePriority.UseFont = false;
+ this.xrTableCell22.Text = "Erbrachte Leistungen:";
+ this.xrTableCell22.Weight = 1D;
+ //
+ // xrLabel6
+ //
+ this.xrLabel6.LocationFloat = new DevExpress.Utils.PointFloat(0F, 300.3333F);
+ this.xrLabel6.Multiline = true;
+ this.xrLabel6.Name = "xrLabel6";
+ this.xrLabel6.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
+ this.xrLabel6.SizeF = new System.Drawing.SizeF(642F, 67F);
+ this.xrLabel6.StylePriority.UseFont = false;
+ this.xrLabel6.Text = resources.GetString("xrLabel6.Text");
+ //
+ // xrLabel5
+ //
+ this.xrLabel5.LocationFloat = new DevExpress.Utils.PointFloat(0F, 267.3333F);
+ this.xrLabel5.Name = "xrLabel5";
+ this.xrLabel5.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
+ this.xrLabel5.SizeF = new System.Drawing.SizeF(317F, 17F);
+ this.xrLabel5.StylePriority.UseFont = false;
+ this.xrLabel5.Text = "Sehr geehrte Damen und Herren,";
+ //
+ // xrLabel4
+ //
+ this.xrLabel4.BackColor = System.Drawing.Color.Transparent;
+ this.xrLabel4.CanShrink = true;
+ this.xrLabel4.Font = new System.Drawing.Font("Arial", 10F, System.Drawing.FontStyle.Bold);
+ this.xrLabel4.LocationFloat = new DevExpress.Utils.PointFloat(0F, 225F);
+ this.xrLabel4.Multiline = true;
+ this.xrLabel4.Name = "xrLabel4";
+ this.xrLabel4.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
+ this.xrLabel4.SizeF = new System.Drawing.SizeF(650F, 17F);
+ this.xrLabel4.StylePriority.UseBackColor = false;
+ this.xrLabel4.StylePriority.UseFont = false;
+ this.xrLabel4.Text = "[CustomerReferenceNumberAndDate]";
+ this.xrLabel4.WordWrap = false;
+ //
+ // xrLabel3
+ //
+ this.xrLabel3.BackColor = System.Drawing.Color.Transparent;
+ this.xrLabel3.CanShrink = true;
+ this.xrLabel3.Font = new System.Drawing.Font("Arial", 10F, System.Drawing.FontStyle.Bold);
+ this.xrLabel3.LocationFloat = new DevExpress.Utils.PointFloat(0F, 209F);
+ this.xrLabel3.Name = "xrLabel3";
+ this.xrLabel3.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
+ this.xrLabel3.SizeF = new System.Drawing.SizeF(650F, 16F);
+ this.xrLabel3.StylePriority.UseBackColor = false;
+ this.xrLabel3.StylePriority.UseFont = false;
+ this.xrLabel3.Text = "Abrechnung Betreuungsleistungen für [Salutation2] [CustomerFirstName] [CustomerLa" +
+ "stName]";
+ this.xrLabel3.WordWrap = false;
+ //
+ // xrLabel2
+ //
+ this.xrLabel2.BackColor = System.Drawing.Color.Transparent;
+ this.xrLabel2.CanShrink = true;
+ this.xrLabel2.Font = new System.Drawing.Font("Arial", 10F, System.Drawing.FontStyle.Bold);
+ this.xrLabel2.LocationFloat = new DevExpress.Utils.PointFloat(0F, 192F);
+ this.xrLabel2.Name = "xrLabel2";
+ this.xrLabel2.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
+ this.xrLabel2.SizeF = new System.Drawing.SizeF(650F, 17F);
+ this.xrLabel2.StylePriority.UseBackColor = false;
+ this.xrLabel2.StylePriority.UseFont = false;
+ this.xrLabel2.Text = "Rechnung Nr. [InvoiceNumber]";
+ this.xrLabel2.WordWrap = false;
+ //
+ // RecipientPostCodeAndTown
+ //
+ this.RecipientPostCodeAndTown.CanShrink = true;
+ this.RecipientPostCodeAndTown.LocationFloat = new DevExpress.Utils.PointFloat(0F, 68.00003F);
+ this.RecipientPostCodeAndTown.Name = "RecipientPostCodeAndTown";
+ this.RecipientPostCodeAndTown.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
+ this.RecipientPostCodeAndTown.ProcessNullValues = DevExpress.XtraReports.UI.ValueSuppressType.SuppressAndShrink;
+ this.RecipientPostCodeAndTown.SizeF = new System.Drawing.SizeF(292F, 17F);
+ this.RecipientPostCodeAndTown.StylePriority.UseFont = false;
+ this.RecipientPostCodeAndTown.Text = "[RecipientPostCodeAndTown]";
+ //
+ // xrLabel_RecipientStreet
+ //
+ this.xrLabel_RecipientStreet.CanShrink = true;
+ this.xrLabel_RecipientStreet.LocationFloat = new DevExpress.Utils.PointFloat(0F, 51.00002F);
+ this.xrLabel_RecipientStreet.Name = "xrLabel_RecipientStreet";
+ this.xrLabel_RecipientStreet.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
+ this.xrLabel_RecipientStreet.ProcessNullValues = DevExpress.XtraReports.UI.ValueSuppressType.SuppressAndShrink;
+ this.xrLabel_RecipientStreet.SizeF = new System.Drawing.SizeF(292F, 17F);
+ this.xrLabel_RecipientStreet.StylePriority.UseFont = false;
+ this.xrLabel_RecipientStreet.Text = "[RecipientStreet]";
+ //
+ // xrLabel_RecipientDivision
+ //
+ this.xrLabel_RecipientDivision.CanShrink = true;
+ this.xrLabel_RecipientDivision.LocationFloat = new DevExpress.Utils.PointFloat(0F, 34.00002F);
+ this.xrLabel_RecipientDivision.Name = "xrLabel_RecipientDivision";
+ this.xrLabel_RecipientDivision.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
+ this.xrLabel_RecipientDivision.ProcessNullValues = DevExpress.XtraReports.UI.ValueSuppressType.SuppressAndShrink;
+ this.xrLabel_RecipientDivision.SizeF = new System.Drawing.SizeF(292F, 17F);
+ this.xrLabel_RecipientDivision.StylePriority.UseFont = false;
+ this.xrLabel_RecipientDivision.Text = "[RecipientDivision]";
+ //
+ // xrLabel_RecipientContactPerson
+ //
+ this.xrLabel_RecipientContactPerson.CanShrink = true;
+ this.xrLabel_RecipientContactPerson.Font = new System.Drawing.Font("Arial", 8F);
+ this.xrLabel_RecipientContactPerson.LocationFloat = new DevExpress.Utils.PointFloat(0F, 17.00001F);
+ this.xrLabel_RecipientContactPerson.Name = "xrLabel_RecipientContactPerson";
+ this.xrLabel_RecipientContactPerson.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
+ this.xrLabel_RecipientContactPerson.ProcessNullValues = DevExpress.XtraReports.UI.ValueSuppressType.SuppressAndShrink;
+ this.xrLabel_RecipientContactPerson.SizeF = new System.Drawing.SizeF(292F, 17F);
+ this.xrLabel_RecipientContactPerson.StylePriority.UseFont = false;
+ this.xrLabel_RecipientContactPerson.Text = "[RecipientContactPerson]";
+ //
+ // xrLabel1
+ //
+ this.xrLabel1.CanShrink = true;
+ this.xrLabel1.LocationFloat = new DevExpress.Utils.PointFloat(0F, 0F);
+ this.xrLabel1.Name = "xrLabel1";
+ this.xrLabel1.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
+ this.xrLabel1.ProcessNullValues = DevExpress.XtraReports.UI.ValueSuppressType.SuppressAndShrink;
+ this.xrLabel1.SizeF = new System.Drawing.SizeF(292F, 17F);
+ this.xrLabel1.StylePriority.UseFont = false;
+ this.xrLabel1.Text = "[RecipientOrganisation]";
+ //
+ // ReportFooter
+ //
+ this.ReportFooter.Controls.AddRange(new DevExpress.XtraReports.UI.XRControl[] {
+ this.xrLabel11,
+ this.xrLabel10,
+ this.xrTable3,
+ this.xrLabel12,
+ this.lblNotice});
+ this.ReportFooter.Font = new System.Drawing.Font("Arial", 10F);
+ this.ReportFooter.HeightF = 230F;
+ this.ReportFooter.KeepTogether = true;
+ this.ReportFooter.Name = "ReportFooter";
+ this.ReportFooter.StylePriority.UseFont = false;
+ //
+ // xrLabel11
+ //
+ this.xrLabel11.Font = new System.Drawing.Font("Arial", 8F);
+ this.xrLabel11.LocationFloat = new DevExpress.Utils.PointFloat(0F, 195.4583F);
+ 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(225F, 34F);
+ this.xrLabel11.StylePriority.UseFont = false;
+ this.xrLabel11.Text = "Dipl. Sozialarbeiter\r\nGesundheitswissenschaftler";
+ //
+ // xrLabel10
+ //
+ this.xrLabel10.LocationFloat = new DevExpress.Utils.PointFloat(0F, 117F);
+ this.xrLabel10.Name = "xrLabel10";
+ this.xrLabel10.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
+ this.xrLabel10.SizeF = new System.Drawing.SizeF(175F, 17F);
+ this.xrLabel10.StylePriority.UseFont = false;
+ this.xrLabel10.Text = "Mit freundlichen Grüßen";
+ //
+ // xrTable3
+ //
+ this.xrTable3.LocationFloat = new DevExpress.Utils.PointFloat(0F, 33F);
+ this.xrTable3.Name = "xrTable3";
+ this.xrTable3.Rows.AddRange(new DevExpress.XtraReports.UI.XRTableRow[] {
+ this.xrTableRow20,
+ this.xrTableRow21,
+ this.xrTableRow22,
+ this.xrTableRow23,
+ this.xrTableRow24});
+ this.xrTable3.SizeF = new System.Drawing.SizeF(650F, 68F);
+ this.xrTable3.StylePriority.UseFont = false;
+ //
+ // xrTableRow20
+ //
+ this.xrTableRow20.Cells.AddRange(new DevExpress.XtraReports.UI.XRTableCell[] {
+ this.xrTableCell16});
+ this.xrTableRow20.Name = "xrTableRow20";
+ this.xrTableRow20.Weight = 0.38095238095238093D;
+ //
+ // xrTableCell16
+ //
+ this.xrTableCell16.DataBindings.AddRange(new DevExpress.XtraReports.UI.XRBinding[] {
+ new DevExpress.XtraReports.UI.XRBinding("Text", null, "Notice")});
+ this.xrTableCell16.Name = "xrTableCell16";
+ this.xrTableCell16.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
+ this.xrTableCell16.StylePriority.UsePadding = false;
+ this.xrTableCell16.Text = "xrTableCell1";
+ this.xrTableCell16.Weight = 3D;
+ //
+ // xrTableRow21
+ //
+ this.xrTableRow21.Cells.AddRange(new DevExpress.XtraReports.UI.XRTableCell[] {
+ this.xrTableCell18});
+ this.xrTableRow21.Name = "xrTableRow21";
+ this.xrTableRow21.Weight = 0.23809523809523808D;
+ //
+ // xrTableCell18
+ //
+ this.xrTableCell18.Name = "xrTableCell18";
+ this.xrTableCell18.Weight = 3D;
+ //
+ // xrTableRow22
+ //
+ this.xrTableRow22.Cells.AddRange(new DevExpress.XtraReports.UI.XRTableCell[] {
+ this.xrTableCell29});
+ this.xrTableRow22.Name = "xrTableRow22";
+ this.xrTableRow22.Weight = 0.38095238095238088D;
+ //
+ // xrTableCell29
+ //
+ this.xrTableCell29.DataBindings.AddRange(new DevExpress.XtraReports.UI.XRBinding[] {
+ new DevExpress.XtraReports.UI.XRBinding("Text", null, "AbsenceTimes")});
+ this.xrTableCell29.Name = "xrTableCell29";
+ this.xrTableCell29.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
+ this.xrTableCell29.StylePriority.UsePadding = false;
+ this.xrTableCell29.Text = "xrTableCell4";
+ this.xrTableCell29.Weight = 3D;
+ //
+ // xrTableRow23
+ //
+ this.xrTableRow23.Cells.AddRange(new DevExpress.XtraReports.UI.XRTableCell[] {
+ this.xrTableCell30});
+ this.xrTableRow23.Name = "xrTableRow23";
+ this.xrTableRow23.Weight = 0.23809523809523803D;
+ //
+ // xrTableCell30
+ //
+ this.xrTableCell30.Name = "xrTableCell30";
+ this.xrTableCell30.Weight = 3D;
+ //
+ // xrTableRow24
+ //
+ this.xrTableRow24.Cells.AddRange(new DevExpress.XtraReports.UI.XRTableCell[] {
+ this.xrTableCell31});
+ this.xrTableRow24.Name = "xrTableRow24";
+ this.xrTableRow24.Weight = 0.38095238095238093D;
+ //
+ // xrTableCell31
+ //
+ this.xrTableCell31.DataBindings.AddRange(new DevExpress.XtraReports.UI.XRBinding[] {
+ new DevExpress.XtraReports.UI.XRBinding("Text", null, "FinalSentence")});
+ this.xrTableCell31.Name = "xrTableCell31";
+ this.xrTableCell31.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
+ this.xrTableCell31.StylePriority.UsePadding = false;
+ this.xrTableCell31.Text = "xrTableCell8";
+ this.xrTableCell31.Weight = 3D;
+ //
+ // xrLabel12
+ //
+ this.xrLabel12.LocationFloat = new DevExpress.Utils.PointFloat(0F, 178.4584F);
+ this.xrLabel12.Name = "xrLabel12";
+ this.xrLabel12.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
+ this.xrLabel12.SizeF = new System.Drawing.SizeF(225F, 17F);
+ this.xrLabel12.StylePriority.UseFont = false;
+ this.xrLabel12.Text = "Schürmann; MPH";
+ //
+ // lblNotice
+ //
+ this.lblNotice.CanShrink = true;
+ this.lblNotice.Font = new System.Drawing.Font("Arial", 10F, System.Drawing.FontStyle.Italic);
+ this.lblNotice.LocationFloat = new DevExpress.Utils.PointFloat(0F, 8F);
+ this.lblNotice.Name = "lblNotice";
+ this.lblNotice.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
+ this.lblNotice.SizeF = new System.Drawing.SizeF(250F, 17F);
+ this.lblNotice.StylePriority.UseFont = false;
+ this.lblNotice.Text = "Abschließende Bemerkungen:";
+ //
+ // topMarginBand1
+ //
+ this.topMarginBand1.HeightF = 30F;
+ this.topMarginBand1.Name = "topMarginBand1";
+ //
+ // bottomMarginBand1
+ //
+ this.bottomMarginBand1.Controls.AddRange(new DevExpress.XtraReports.UI.XRControl[] {
+ this.xrPictureBox3,
+ this.xrLabel15,
+ this.xrLabel14,
+ this.xrLine2});
+ this.bottomMarginBand1.Font = new System.Drawing.Font("Arial", 8F);
+ this.bottomMarginBand1.HeightF = 200F;
+ this.bottomMarginBand1.Name = "bottomMarginBand1";
+ this.bottomMarginBand1.StylePriority.UseFont = false;
+ //
+ // xrPictureBox3
+ //
+ this.xrPictureBox3.Image = ((System.Drawing.Image)(resources.GetObject("xrPictureBox3.Image")));
+ this.xrPictureBox3.LocationFloat = new DevExpress.Utils.PointFloat(0F, 108.0418F);
+ this.xrPictureBox3.Name = "xrPictureBox3";
+ this.xrPictureBox3.SizeF = new System.Drawing.SizeF(93.75F, 55.62495F);
+ this.xrPictureBox3.Sizing = DevExpress.XtraPrinting.ImageSizeMode.Squeeze;
+ //
+ // xrLabel15
+ //
+ this.xrLabel15.CanShrink = true;
+ this.xrLabel15.LocationFloat = new DevExpress.Utils.PointFloat(446.9999F, 24.37502F);
+ this.xrLabel15.Multiline = true;
+ this.xrLabel15.Name = "xrLabel15";
+ this.xrLabel15.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
+ this.xrLabel15.ProcessNullValues = DevExpress.XtraReports.UI.ValueSuppressType.SuppressAndShrink;
+ this.xrLabel15.SizeF = new System.Drawing.SizeF(249.9998F, 139.2916F);
+ this.xrLabel15.StylePriority.UseFont = false;
+ this.xrLabel15.StylePriority.UseTextAlignment = false;
+ this.xrLabel15.Text = "Bankkonto:\r\nSparkasse Krefeld; \r\nIBAN:: DE31 3205 0000 0011448594\r\nBIC: SPKRDE33\r" +
+ "\n\r\n\r\nWir sind anerkannter Leistungserbringer nach \r\n§ 75 SGB 12\r\nSowie\r\n§45.b SG" +
+ "B 11\r\n\r\n\r\n";
+ this.xrLabel15.TextAlignment = DevExpress.XtraPrinting.TextAlignment.TopLeft;
+ //
+ // xrLabel14
+ //
+ this.xrLabel14.CanShrink = true;
+ this.xrLabel14.LocationFloat = new DevExpress.Utils.PointFloat(0F, 24.37502F);
+ this.xrLabel14.Multiline = true;
+ this.xrLabel14.Name = "xrLabel14";
+ this.xrLabel14.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
+ this.xrLabel14.ProcessNullValues = DevExpress.XtraReports.UI.ValueSuppressType.SuppressAndShrink;
+ this.xrLabel14.SizeF = new System.Drawing.SizeF(292F, 83.66667F);
+ this.xrLabel14.StylePriority.UseFont = false;
+ this.xrLabel14.StylePriority.UseTextAlignment = false;
+ this.xrLabel14.Text = "Kurfürstenstr. 8\r\n47906 Kempen\r\ne.mail: info@wegweiser-betreuungsdienst.de\r\n\r\nÖff" +
+ "nungszeiten:\r\nMo – Fr : 08.00 – 12.00 Uhr\r\n";
+ this.xrLabel14.TextAlignment = DevExpress.XtraPrinting.TextAlignment.TopLeft;
+ //
+ // xrLine2
+ //
+ this.xrLine2.LocationFloat = new DevExpress.Utils.PointFloat(0F, 0F);
+ this.xrLine2.Name = "xrLine2";
+ this.xrLine2.SizeF = new System.Drawing.SizeF(696.9998F, 7.208333F);
+ //
+ // GroupHeader1
+ //
+ this.GroupHeader1.Controls.AddRange(new DevExpress.XtraReports.UI.XRControl[] {
+ this.xrLabel1,
+ this.xrLabel_RecipientContactPerson,
+ this.xrLabel_RecipientDivision,
+ this.xrLabel_RecipientStreet,
+ this.RecipientPostCodeAndTown,
+ this.xrLabel2,
+ this.xrLabel3,
+ this.xrLabel4,
+ this.xrLabel5,
+ this.xrLabel6,
+ this.xrTable1,
+ this.xrLabel8});
+ this.GroupHeader1.Font = new System.Drawing.Font("Arial", 10F);
+ this.GroupHeader1.HeightF = 443.3333F;
+ this.GroupHeader1.Name = "GroupHeader1";
+ this.GroupHeader1.StylePriority.UseFont = false;
+ //
+ // bindingSource1
+ //
+ this.bindingSource1.DataSource = typeof(BeWo.Report.ReportObjects.Settlement2RO);
+ //
+ // DetailReport
+ //
+ this.DetailReport.Bands.AddRange(new DevExpress.XtraReports.UI.Band[] {
+ this.Detail1,
+ this.GroupFooter1});
+ 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.xrTable2});
+ this.Detail1.Font = new System.Drawing.Font("Arial", 10F);
+ this.Detail1.HeightF = 17F;
+ this.Detail1.Name = "Detail1";
+ this.Detail1.StylePriority.UseFont = false;
+ //
+ // xrTable2
+ //
+ this.xrTable2.BorderColor = System.Drawing.SystemColors.ControlLight;
+ this.xrTable2.LocationFloat = new DevExpress.Utils.PointFloat(0F, 0F);
+ this.xrTable2.Name = "xrTable2";
+ this.xrTable2.Rows.AddRange(new DevExpress.XtraReports.UI.XRTableRow[] {
+ this.xrTableRow5});
+ this.xrTable2.SizeF = new System.Drawing.SizeF(650F, 17F);
+ this.xrTable2.StylePriority.UseBorderColor = false;
+ //
+ // xrTableRow5
+ //
+ this.xrTableRow5.Cells.AddRange(new DevExpress.XtraReports.UI.XRTableCell[] {
+ this.xrTableCell13,
+ this.xrTableCell26});
+ this.xrTableRow5.Name = "xrTableRow5";
+ this.xrTableRow5.Weight = 0.085D;
+ //
+ // xrTableCell13
+ //
+ this.xrTableCell13.BorderColor = System.Drawing.SystemColors.ControlLight;
+ this.xrTableCell13.Borders = ((DevExpress.XtraPrinting.BorderSide)((DevExpress.XtraPrinting.BorderSide.Left | DevExpress.XtraPrinting.BorderSide.Bottom)));
+ this.xrTableCell13.CanShrink = true;
+ this.xrTableCell13.DataBindings.AddRange(new DevExpress.XtraReports.UI.XRBinding[] {
+ new DevExpress.XtraReports.UI.XRBinding("Text", null, "InvoiceItems.AbrechnungsText")});
+ this.xrTableCell13.Name = "xrTableCell13";
+ this.xrTableCell13.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
+ this.xrTableCell13.StylePriority.UseBorderColor = false;
+ this.xrTableCell13.StylePriority.UseBorders = false;
+ this.xrTableCell13.StylePriority.UseFont = false;
+ this.xrTableCell13.StylePriority.UsePadding = false;
+ this.xrTableCell13.Weight = 0.78314100999098546D;
+ //
+ // xrTableCell26
+ //
+ this.xrTableCell26.BorderColor = System.Drawing.SystemColors.ControlLight;
+ this.xrTableCell26.Borders = ((DevExpress.XtraPrinting.BorderSide)(((DevExpress.XtraPrinting.BorderSide.Left | DevExpress.XtraPrinting.BorderSide.Right)
+ | DevExpress.XtraPrinting.BorderSide.Bottom)));
+ this.xrTableCell26.CanShrink = true;
+ this.xrTableCell26.DataBindings.AddRange(new DevExpress.XtraReports.UI.XRBinding[] {
+ new DevExpress.XtraReports.UI.XRBinding("Text", null, "InvoiceItems.GrossAmountTotal", "{0:c}")});
+ this.xrTableCell26.Name = "xrTableCell26";
+ this.xrTableCell26.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
+ this.xrTableCell26.StylePriority.UseBorderColor = false;
+ this.xrTableCell26.StylePriority.UseBorders = false;
+ this.xrTableCell26.StylePriority.UseFont = false;
+ this.xrTableCell26.StylePriority.UsePadding = false;
+ this.xrTableCell26.StylePriority.UseTextAlignment = false;
+ this.xrTableCell26.TextAlignment = DevExpress.XtraPrinting.TextAlignment.TopRight;
+ this.xrTableCell26.Weight = 0.21685899000901443D;
+ //
+ // GroupFooter1
+ //
+ this.GroupFooter1.Controls.AddRange(new DevExpress.XtraReports.UI.XRControl[] {
+ this.xrTable4});
+ this.GroupFooter1.Font = new System.Drawing.Font("Arial", 10F);
+ this.GroupFooter1.HeightF = 132F;
+ this.GroupFooter1.Name = "GroupFooter1";
+ this.GroupFooter1.StylePriority.UseFont = false;
+ //
+ // xrTable4
+ //
+ this.xrTable4.BorderColor = System.Drawing.SystemColors.ControlLight;
+ this.xrTable4.LocationFloat = new DevExpress.Utils.PointFloat(0F, 0F);
+ this.xrTable4.Name = "xrTable4";
+ this.xrTable4.Rows.AddRange(new DevExpress.XtraReports.UI.XRTableRow[] {
+ this.xrTableRow3,
+ this.xrTableRow38,
+ this.xrTableRow1,
+ this.xrTableRow40,
+ this.xrTableRow41,
+ this.xrTableRow2,
+ this.xrTableRow43});
+ this.xrTable4.SizeF = new System.Drawing.SizeF(650F, 132F);
+ this.xrTable4.StylePriority.UseBorderColor = false;
+ //
+ // xrTableRow3
+ //
+ this.xrTableRow3.Cells.AddRange(new DevExpress.XtraReports.UI.XRTableCell[] {
+ this.xrTableCell3});
+ this.xrTableRow3.Name = "xrTableRow3";
+ this.xrTableRow3.Weight = 0.085D;
+ //
+ // xrTableCell3
+ //
+ this.xrTableCell3.Borders = ((DevExpress.XtraPrinting.BorderSide)(((DevExpress.XtraPrinting.BorderSide.Left | DevExpress.XtraPrinting.BorderSide.Right)
+ | DevExpress.XtraPrinting.BorderSide.Bottom)));
+ this.xrTableCell3.Name = "xrTableCell3";
+ this.xrTableCell3.StylePriority.UseBorders = false;
+ this.xrTableCell3.Weight = 0.99999999999999989D;
+ //
+ // xrTableRow38
+ //
+ this.xrTableRow38.Cells.AddRange(new DevExpress.XtraReports.UI.XRTableCell[] {
+ this.xrTableCell65,
+ this.xrTableCell66});
+ this.xrTableRow38.Name = "xrTableRow38";
+ this.xrTableRow38.Weight = 0.085D;
+ //
+ // xrTableCell65
+ //
+ this.xrTableCell65.Borders = ((DevExpress.XtraPrinting.BorderSide)((DevExpress.XtraPrinting.BorderSide.Left | DevExpress.XtraPrinting.BorderSide.Bottom)));
+ this.xrTableCell65.Name = "xrTableCell65";
+ this.xrTableCell65.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
+ this.xrTableCell65.StylePriority.UseBorders = false;
+ this.xrTableCell65.StylePriority.UseFont = false;
+ this.xrTableCell65.StylePriority.UsePadding = false;
+ this.xrTableCell65.Text = "Gesamtforderung:";
+ this.xrTableCell65.Weight = 0.78314100999098546D;
+ //
+ // xrTableCell66
+ //
+ this.xrTableCell66.Borders = ((DevExpress.XtraPrinting.BorderSide)(((DevExpress.XtraPrinting.BorderSide.Left | DevExpress.XtraPrinting.BorderSide.Right)
+ | DevExpress.XtraPrinting.BorderSide.Bottom)));
+ this.xrTableCell66.DataBindings.AddRange(new DevExpress.XtraReports.UI.XRBinding[] {
+ new DevExpress.XtraReports.UI.XRBinding("Text", null, "AmountBillableTotal", "{0:c}")});
+ this.xrTableCell66.Name = "xrTableCell66";
+ this.xrTableCell66.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
+ this.xrTableCell66.StylePriority.UseBorders = false;
+ this.xrTableCell66.StylePriority.UseFont = false;
+ this.xrTableCell66.StylePriority.UsePadding = false;
+ this.xrTableCell66.StylePriority.UseTextAlignment = false;
+ this.xrTableCell66.TextAlignment = DevExpress.XtraPrinting.TextAlignment.TopRight;
+ this.xrTableCell66.Weight = 0.21685899000901443D;
+ //
+ // xrTableRow1
+ //
+ this.xrTableRow1.Cells.AddRange(new DevExpress.XtraReports.UI.XRTableCell[] {
+ this.xrTableCell2});
+ this.xrTableRow1.Name = "xrTableRow1";
+ this.xrTableRow1.Weight = 0.085D;
+ //
+ // xrTableCell2
+ //
+ this.xrTableCell2.Borders = ((DevExpress.XtraPrinting.BorderSide)(((DevExpress.XtraPrinting.BorderSide.Left | DevExpress.XtraPrinting.BorderSide.Right)
+ | DevExpress.XtraPrinting.BorderSide.Bottom)));
+ this.xrTableCell2.Name = "xrTableCell2";
+ this.xrTableCell2.StylePriority.UseBorders = false;
+ this.xrTableCell2.Weight = 0.99999999999999989D;
+ //
+ // xrTableRow40
+ //
+ this.xrTableRow40.Cells.AddRange(new DevExpress.XtraReports.UI.XRTableCell[] {
+ this.xrTableCell68,
+ this.xrTableCell69});
+ this.xrTableRow40.Name = "xrTableRow40";
+ this.xrTableRow40.Weight = 0.085D;
+ //
+ // xrTableCell68
+ //
+ this.xrTableCell68.BorderColor = System.Drawing.SystemColors.ControlLight;
+ this.xrTableCell68.Borders = ((DevExpress.XtraPrinting.BorderSide)((DevExpress.XtraPrinting.BorderSide.Left | DevExpress.XtraPrinting.BorderSide.Bottom)));
+ this.xrTableCell68.Name = "xrTableCell68";
+ this.xrTableCell68.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
+ this.xrTableCell68.StylePriority.UseBorderColor = false;
+ this.xrTableCell68.StylePriority.UseBorders = false;
+ this.xrTableCell68.StylePriority.UseFont = false;
+ this.xrTableCell68.Text = "abzüglich der geleisteten Abschlagszahlung:";
+ this.xrTableCell68.Weight = 0.78314100999098568D;
+ //
+ // xrTableCell69
+ //
+ this.xrTableCell69.BorderColor = System.Drawing.SystemColors.ControlLight;
+ this.xrTableCell69.Borders = ((DevExpress.XtraPrinting.BorderSide)(((DevExpress.XtraPrinting.BorderSide.Left | DevExpress.XtraPrinting.BorderSide.Right)
+ | DevExpress.XtraPrinting.BorderSide.Bottom)));
+ this.xrTableCell69.DataBindings.AddRange(new DevExpress.XtraReports.UI.XRBinding[] {
+ new DevExpress.XtraReports.UI.XRBinding("Text", null, "AmountAdvancedPayments", "{0:c}")});
+ this.xrTableCell69.Name = "xrTableCell69";
+ this.xrTableCell69.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
+ this.xrTableCell69.StylePriority.UseBorderColor = false;
+ this.xrTableCell69.StylePriority.UseBorders = false;
+ this.xrTableCell69.StylePriority.UseFont = false;
+ this.xrTableCell69.StylePriority.UseTextAlignment = false;
+ this.xrTableCell69.TextAlignment = DevExpress.XtraPrinting.TextAlignment.TopRight;
+ this.xrTableCell69.Weight = 0.21685899000901443D;
+ //
+ // xrTableRow41
+ //
+ this.xrTableRow41.Cells.AddRange(new DevExpress.XtraReports.UI.XRTableCell[] {
+ this.xrTableCell70,
+ this.xrTableCell71});
+ this.xrTableRow41.Name = "xrTableRow41";
+ this.xrTableRow41.Weight = 0.085D;
+ //
+ // xrTableCell70
+ //
+ this.xrTableCell70.Borders = ((DevExpress.XtraPrinting.BorderSide)((DevExpress.XtraPrinting.BorderSide.Left | DevExpress.XtraPrinting.BorderSide.Bottom)));
+ this.xrTableCell70.Name = "xrTableCell70";
+ this.xrTableCell70.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
+ this.xrTableCell70.StylePriority.UseBorders = false;
+ this.xrTableCell70.StylePriority.UsePadding = false;
+ this.xrTableCell70.Text = "abzüglich Eigenanteil:";
+ this.xrTableCell70.Weight = 0.78314100999098568D;
+ //
+ // xrTableCell71
+ //
+ this.xrTableCell71.Borders = ((DevExpress.XtraPrinting.BorderSide)(((DevExpress.XtraPrinting.BorderSide.Left | DevExpress.XtraPrinting.BorderSide.Right)
+ | DevExpress.XtraPrinting.BorderSide.Bottom)));
+ this.xrTableCell71.DataBindings.AddRange(new DevExpress.XtraReports.UI.XRBinding[] {
+ new DevExpress.XtraReports.UI.XRBinding("Text", null, "Eigenbeteiligung", "{0:c}")});
+ this.xrTableCell71.Name = "xrTableCell71";
+ this.xrTableCell71.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
+ this.xrTableCell71.StylePriority.UseBorders = false;
+ this.xrTableCell71.StylePriority.UsePadding = false;
+ this.xrTableCell71.StylePriority.UseTextAlignment = false;
+ this.xrTableCell71.Text = "xrTableCell15";
+ this.xrTableCell71.TextAlignment = DevExpress.XtraPrinting.TextAlignment.TopRight;
+ this.xrTableCell71.Weight = 0.21685899000901443D;
+ //
+ // xrTableRow2
+ //
+ this.xrTableRow2.Cells.AddRange(new DevExpress.XtraReports.UI.XRTableCell[] {
+ this.xrTableCell4});
+ this.xrTableRow2.Name = "xrTableRow2";
+ this.xrTableRow2.Weight = 0.085D;
+ //
+ // xrTableCell4
+ //
+ this.xrTableCell4.Borders = ((DevExpress.XtraPrinting.BorderSide)(((DevExpress.XtraPrinting.BorderSide.Left | DevExpress.XtraPrinting.BorderSide.Right)
+ | DevExpress.XtraPrinting.BorderSide.Bottom)));
+ this.xrTableCell4.Name = "xrTableCell4";
+ this.xrTableCell4.StylePriority.UseBorders = false;
+ this.xrTableCell4.Weight = 1D;
+ //
+ // xrTableRow43
+ //
+ this.xrTableRow43.Cells.AddRange(new DevExpress.XtraReports.UI.XRTableCell[] {
+ this.xrTableCell73,
+ this.xrTableCell74});
+ this.xrTableRow43.Name = "xrTableRow43";
+ this.xrTableRow43.Weight = 0.15D;
+ //
+ // xrTableCell73
+ //
+ this.xrTableCell73.BorderColor = System.Drawing.SystemColors.ControlLight;
+ this.xrTableCell73.Borders = ((DevExpress.XtraPrinting.BorderSide)((DevExpress.XtraPrinting.BorderSide.Left | DevExpress.XtraPrinting.BorderSide.Bottom)));
+ this.xrTableCell73.Name = "xrTableCell73";
+ this.xrTableCell73.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
+ this.xrTableCell73.StylePriority.UseBorderColor = false;
+ this.xrTableCell73.StylePriority.UseBorders = false;
+ this.xrTableCell73.StylePriority.UseFont = false;
+ this.xrTableCell73.Text = "Restforderung:";
+ this.xrTableCell73.Weight = 0.78314100999098568D;
+ //
+ // xrTableCell74
+ //
+ this.xrTableCell74.BorderColor = System.Drawing.SystemColors.ControlLight;
+ this.xrTableCell74.Borders = ((DevExpress.XtraPrinting.BorderSide)(((DevExpress.XtraPrinting.BorderSide.Left | DevExpress.XtraPrinting.BorderSide.Right)
+ | DevExpress.XtraPrinting.BorderSide.Bottom)));
+ this.xrTableCell74.DataBindings.AddRange(new DevExpress.XtraReports.UI.XRBinding[] {
+ new DevExpress.XtraReports.UI.XRBinding("Text", null, "Claim", "{0:c}")});
+ this.xrTableCell74.Font = new System.Drawing.Font("Arial", 10F, System.Drawing.FontStyle.Bold);
+ this.xrTableCell74.Name = "xrTableCell74";
+ this.xrTableCell74.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
+ this.xrTableCell74.StylePriority.UseBorderColor = false;
+ this.xrTableCell74.StylePriority.UseBorders = false;
+ this.xrTableCell74.StylePriority.UseFont = false;
+ this.xrTableCell74.StylePriority.UseTextAlignment = false;
+ this.xrTableCell74.TextAlignment = DevExpress.XtraPrinting.TextAlignment.TopRight;
+ this.xrTableCell74.Weight = 0.21685899000901443D;
+ //
+ // Spitzabrechnung
+ //
+ this.Bands.AddRange(new DevExpress.XtraReports.UI.Band[] {
+ this.Detail,
+ this.ReportHeader,
+ this.ReportFooter,
+ this.topMarginBand1,
+ this.bottomMarginBand1,
+ this.GroupHeader1,
+ this.DetailReport});
+ 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(80, 50, 30, 200);
+ this.PageHeight = 1169;
+ this.PageWidth = 827;
+ this.PaperKind = System.Drawing.Printing.PaperKind.A4;
+ this.Version = "13.2";
+ ((System.ComponentModel.ISupportInitialize)(this.xrTable1)).EndInit();
+ ((System.ComponentModel.ISupportInitialize)(this.xrTable3)).EndInit();
+ ((System.ComponentModel.ISupportInitialize)(this.bindingSource1)).EndInit();
+ ((System.ComponentModel.ISupportInitialize)(this.xrTable2)).EndInit();
+ ((System.ComponentModel.ISupportInitialize)(this.xrTable4)).EndInit();
+ ((System.ComponentModel.ISupportInitialize)(this)).EndInit();
+
+ }
+
+ #endregion
+
+ private DevExpress.XtraReports.UI.DetailBand Detail;
+ private System.Windows.Forms.BindingSource bindingSource1;
+ private DevExpress.XtraReports.UI.ReportHeaderBand ReportHeader;
+ private DevExpress.XtraReports.UI.XRLabel xrLabel6;
+ private DevExpress.XtraReports.UI.XRLabel xrLabel5;
+ private DevExpress.XtraReports.UI.XRLabel xrLabel4;
+ private DevExpress.XtraReports.UI.XRLabel xrLabel3;
+ private DevExpress.XtraReports.UI.XRLabel xrLabel2;
+ private DevExpress.XtraReports.UI.XRLabel RecipientPostCodeAndTown;
+ private DevExpress.XtraReports.UI.XRLabel xrLabel_RecipientStreet;
+ private DevExpress.XtraReports.UI.XRLabel xrLabel_RecipientDivision;
+ private DevExpress.XtraReports.UI.XRLabel xrLabel_RecipientContactPerson;
+ private DevExpress.XtraReports.UI.XRLabel xrLabel1;
+ private DevExpress.XtraReports.UI.ReportFooterBand ReportFooter;
+ private DevExpress.XtraReports.UI.XRLabel lblNotice;
+ private DevExpress.XtraReports.UI.XRLabel xrLabel12;
+ private DevExpress.XtraReports.UI.XRTable xrTable1;
+ private DevExpress.XtraReports.UI.XRTableRow xrTableRow9;
+ private DevExpress.XtraReports.UI.XRTableCell xrTableCell19;
+ private DevExpress.XtraReports.UI.XRTableRow xrTableRow10;
+ private DevExpress.XtraReports.UI.XRTableCell cellFactorText;
+ private DevExpress.XtraReports.UI.XRTableCell cellApprovedFlsFactor;
+ private DevExpress.XtraReports.UI.XRTableRow xrTableRow11;
+ private DevExpress.XtraReports.UI.XRTableCell xrTableCell21;
+ private DevExpress.XtraReports.UI.XRTableRow rowErbrachteLeistung;
+ private DevExpress.XtraReports.UI.XRTableCell xrTableCell22;
+ private DevExpress.XtraReports.UI.XRTableCell xrTableCell6;
+ private DevExpress.XtraReports.UI.XRTable xrTable3;
+ private DevExpress.XtraReports.UI.XRTableRow xrTableRow20;
+ private DevExpress.XtraReports.UI.XRTableCell xrTableCell16;
+ private DevExpress.XtraReports.UI.XRTableRow xrTableRow21;
+ private DevExpress.XtraReports.UI.XRTableCell xrTableCell18;
+ private DevExpress.XtraReports.UI.XRTableRow xrTableRow22;
+ private DevExpress.XtraReports.UI.XRTableCell xrTableCell29;
+ private DevExpress.XtraReports.UI.XRTableRow xrTableRow23;
+ private DevExpress.XtraReports.UI.XRTableCell xrTableCell30;
+ private DevExpress.XtraReports.UI.XRTableRow xrTableRow24;
+ private DevExpress.XtraReports.UI.XRTableCell xrTableCell31;
+ private DevExpress.XtraReports.UI.XRLabel xrLabel10;
+ private DevExpress.XtraReports.UI.FormattingRule ruleRateFactorNull;
+ private DevExpress.XtraReports.UI.TopMarginBand topMarginBand1;
+ private DevExpress.XtraReports.UI.BottomMarginBand bottomMarginBand1;
+ private DevExpress.XtraReports.UI.XRLabel xrLabel8;
+ private DevExpress.XtraReports.UI.GroupHeaderBand GroupHeader1;
+ private DevExpress.XtraReports.UI.XRLabel xrLabel11;
+ private DevExpress.XtraReports.UI.XRLabel xrLabel9;
+ private DevExpress.XtraReports.UI.XRPictureBox xrPictureBox1;
+ private DevExpress.XtraReports.UI.XRLabel xrLabel13;
+ private DevExpress.XtraReports.UI.XRLine xrLine1;
+ private DevExpress.XtraReports.UI.XRPictureBox xrPictureBox2;
+ private DevExpress.XtraReports.UI.XRLabel xrLabel15;
+ private DevExpress.XtraReports.UI.XRLabel xrLabel14;
+ private DevExpress.XtraReports.UI.XRLine xrLine2;
+ private DevExpress.XtraReports.UI.XRPictureBox xrPictureBox3;
+ private DevExpress.XtraReports.UI.DetailReportBand DetailReport;
+ private DevExpress.XtraReports.UI.DetailBand Detail1;
+ private DevExpress.XtraReports.UI.XRTable xrTable2;
+ private DevExpress.XtraReports.UI.XRTableRow xrTableRow5;
+ private DevExpress.XtraReports.UI.XRTableCell xrTableCell13;
+ private DevExpress.XtraReports.UI.XRTableCell xrTableCell26;
+ private DevExpress.XtraReports.UI.GroupFooterBand GroupFooter1;
+ private DevExpress.XtraReports.UI.XRTable xrTable4;
+ private DevExpress.XtraReports.UI.XRTableRow xrTableRow38;
+ private DevExpress.XtraReports.UI.XRTableCell xrTableCell65;
+ private DevExpress.XtraReports.UI.XRTableCell xrTableCell66;
+ private DevExpress.XtraReports.UI.XRTableRow xrTableRow40;
+ private DevExpress.XtraReports.UI.XRTableCell xrTableCell68;
+ private DevExpress.XtraReports.UI.XRTableCell xrTableCell69;
+ private DevExpress.XtraReports.UI.XRTableRow xrTableRow41;
+ private DevExpress.XtraReports.UI.XRTableCell xrTableCell70;
+ private DevExpress.XtraReports.UI.XRTableCell xrTableCell71;
+ private DevExpress.XtraReports.UI.XRTableRow xrTableRow43;
+ private DevExpress.XtraReports.UI.XRTableCell xrTableCell73;
+ private DevExpress.XtraReports.UI.XRTableCell xrTableCell74;
+ private DevExpress.XtraReports.UI.XRTableRow xrTableRow1;
+ private DevExpress.XtraReports.UI.XRTableCell xrTableCell2;
+ private DevExpress.XtraReports.UI.XRTableRow xrTableRow2;
+ private DevExpress.XtraReports.UI.XRTableCell xrTableCell4;
+ private DevExpress.XtraReports.UI.XRTableRow xrTableRow3;
+ private DevExpress.XtraReports.UI.XRTableCell xrTableCell3;
+ }
+}
diff --git a/ReportImp/WegweiserBetreuungsdienstReports/SettlementReport2.cs b/ReportImp/WegweiserBetreuungsdienstReports/SettlementReport2.cs
new file mode 100644
index 000000000..8fd8ad740
--- /dev/null
+++ b/ReportImp/WegweiserBetreuungsdienstReports/SettlementReport2.cs
@@ -0,0 +1,39 @@
+using System;
+using DevExpress.XtraReports.UI;
+using BeWo.Report.ReportObjects;
+using BeWo.Report;
+
+namespace BeWo.WegweiserBetreuungsdienstReports
+{
+ public partial class Spitzabrechnung : XtraReport, IBeWoReport
+ {
+ public Spitzabrechnung()
+ {
+ InitializeComponent();
+ }
+
+ public void SetReportDataSource(Settlement2RO pRO)
+ {
+ if (String.IsNullOrEmpty(pRO.Notice))
+ {
+ lblNotice.Visible = false;
+ }
+ decimal rateFactor = 1;
+
+ foreach (var ii in pRO.InvoiceItems)
+ {
+ if (ii.RateFactor.HasValue)
+ {
+ rateFactor = (100 + ii.RateFactor.Value) / 100;
+ }
+ }
+ pRO.RateFactor = (double)rateFactor;
+
+ cellFactorText.Text = String.Format("- zzgl. Faktor {0:0.00}:", pRO.RateFactor);
+
+ cellApprovedFlsFactor.Text = pRO.ApprovedFLSWithFactor;
+
+ this.bindingSource1.DataSource = pRO;
+ }
+ }
+}
diff --git a/ReportImp/WegweiserBetreuungsdienstReports/SettlementReport2.resx b/ReportImp/WegweiserBetreuungsdienstReports/SettlementReport2.resx
new file mode 100644
index 000000000..3b21f6b60
--- /dev/null
+++ b/ReportImp/WegweiserBetreuungsdienstReports/SettlementReport2.resx
@@ -0,0 +1,1161 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ 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
+
+
+
+
+ iVBORw0KGgoAAAANSUhEUgAABiUAAAEGCAMAAAA9umZeAAAABGdBTUEAALGPC/xhBQAAAwBQTFRFHh4c
+ LCwqOjo4Li9/SEhHVlZVZWVjc3NxOzyHSEmPVVaXYmOfcHCnfX2vgYGAjo6NnJybioq3lpe/qqqquLi4
+ o6THsLHPvb7Xx8fGy8vf1dXU2Njn4+Pj5eXv8fHx8vL3////AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
+ AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
+ AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
+ AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
+ AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
+ AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
+ AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
+ AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
+ AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
+ AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
+ AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
+ AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA9v+KdQAAAAlwSFlzAAAO
+ wAAADsABataJCQAAABl0RVh0U29mdHdhcmUAUGFpbnQuTkVUIHYzLjUuND6NzHYAAGHWSURBVHhe7Z3r
+ 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
+ o6THsLHPvb7Xx8fGy8vf1dXU2Njn4+Pj5eXv8fHx8vL3////AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
+ AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
+ AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
+ AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
+ AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
+ AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
+ AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
+ AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
+ AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
+ AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
+ AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
+ AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA9v+KdQAAAAlwSFlzAAAO
+ wQAADsEBuJFr7QAAABl0RVh0U29mdHdhcmUAUGFpbnQuTkVUIHYzLjUuND6NzHYAAGHWSURBVHhe7Z3r
+ YtS6DoWBA5tCYQMFWrq5lPd/yuMky7Isy5adODOZqb8f0HhycTyJli5O5sXfwWAwGFwf/736D39t48Wd
+ zSPW3Z8HHLHAA1bdHbsv91hzMBgMDsd/L1+87CITL27+Z/IR6+7PexyxwHusujt2X043LoPBYNCGE4kX
+ fWTixQeYvALvsO7u/MYBizxh5Z15wuEKjFhiMBgclFkk+sjEi+8weSV+Y+W9ucfxipwo5fSAwxU4kV4N
+ BoNBIxCJLjLx4idMXolT1QI+4nhF7rDyzth9OVnuazAYDJogkeghEy/+VhQmvmDlvXmH4xW5xco7Y/fl
+ RHI1GAwGbTCR6CATL/5WFCZO5DVXlSX+9z+svS8VffmJVQeDweBIRCKxXSZe/K0pTJwmA1/TE8dJJuba
+ JZIbrDkYDAZHQojEZpl48bemMHGaJyYqopqJk2R67LLEmAc7GAwOSCISW2Xixd+awsRpUvAVHZk4SWHC
+ 7suYBzsYDI6HIhIbZcKpRIULfxLDXBPUzGD9Panoy5gHOxgMDscvTSS2yYRTiZqnFLD2rtzhWCYnKBvb
+ JZIxD3YwGByQt9AFwQaZcCpRM7XoFIWJWxzL5Ds22BE7vhrzYAeDwRHpLhPTO2ErHlM4gWH+i0PZfMAG
+ O2KXJcY82MFgcEh6y8SkEhWPPJ/AMD/iUDb7z0G1yxJjHuxgMDgonWViUomKwsQJjOIXHKqC3f14u0Qy
+ 5sEOBoOj0lcmJpWoKUzsn2CpeGu4Z/f8l10iGfNgB4PBYekqE5NK1BQmdreKFW/qJnZ35HGcAmMe7GAw
+ OC49ZWJWiYrCxO6GueJN3cTeP3hhl0jGPNjBYHBkOsrErBIVhYndf4mo6q3hnp1/8MIukZzqLbmDwWCw
+ in4yMatETWFi718iqnpruGfn/JddIjndT4EPBoPBGrrJxKwSNSZ6518iqnxrONg3/2WXSLJTvn78+PZp
+ 4ccPNAn++6HjPvqDPzMs2zt+/fjxdTnI5x+/0BaT25Nf2+3B8wdNeiOWHezKQosjNKIhWs+BRn6YmF/f
+ Pr19M/H20zftXH58/nf++N9P6S5osHPD4GDDjRZ7dNpP5scn6iVa+GgqZPs74Dw93JN3+vv+4VS/mXk1
+ 9JKJRSUq0j0751iqfsyU2Df/ZZdItMdHfr19gy/B8/pf5dt4jQ8l7qNv+FPn5bz51zevsAxe/vM1tcCf
+ 8aHkKz5nPQ0b/4sWhzdiP7Ds+BdNzsiixfEPmv7+QoPvJgjNqkp8exufzKt/49W+/YMPFv5hwisH+9Xb
+ b/gkJqwWOvYVLZLP+JydIFpmQnNs47+qvZQXQ8yneZ1BmdkowPDMWeAxs7CRTjKx3AcVNnrnem3lW8M9
+ u04xsssS2tWq2vg3zLAt4APJG/fRJ/ytM63x96/6ukdhXLMXxwt/cYS9vEKLQzGoTG28wETSQcaOnTw3
+ odQcacfCn89C7yb4xl+Tz0Nn/0ML51XoYgCfOZbxm8iNs/+u2Any/lBzdDJpL1/P7for1zy6pA0i4K3N
+ 78LBE0wj09tIH5lYVKIm37Pv3M/Kt4Z7ds1/2WUJLfTN2J7gg88wCxQxrRb7pJLZIgfnPOKlEKNCwDLB
+ 9kLRgGpQWXgRLismHXRYdvK8K9QcTLTns2ZGFwM780txxt/is1w48Dq59pmahC8i5+bjY34y3JprJ6P1
+ cj5Q5ovyxNHIQAX34ZTe9UngE7wD4sroIhO4NSoKE7vKePVbw8Ge+S9bMtW4Kmfjg2mbyGU7Jj9Y8a0Z
+ s8HKiQxz9SfQKPHmjXn+IfWhGVRmA9HiYNcdxTDs5HkyhbaXGZb/dB0LZ6G+Iz/YbCZfnJfSR2fDHfad
+ cfNJojInQ81Bb75pu5rvv+wXNaOEVoME3G2TT0Zz0/HRoJoeMoG7v6IwsetLUCt/zJTYM/9lp99Ujcra
+ +EgmMuZtMi0sHa4xu5+ZgEV86aWAZUL1/Jl0kEHFsoN5+cHAhwwQO3kWnYRmYb1zWkmqo/+QCj505MIB
+ eSB2pjRAOTefviemYDwGopOh4VFPYxmU7Bc1k4ZWgxTcbVMWw6vEeH1aOx1kAipR8Uzbrr9E1FiW2DX/
+ ZSumFlYVbDy3XIVsR437mU9KMTNeDFgm2F5CRUMxqCy8YFKHFgcZO37yrNKRq/dmrtsgMKpI8D5kwoHk
+ 2teCIbWA5PDFax6JMWEKJ6MMD2OR4vwXNSFDq4EGMk7TVJUnZKRHxmkF22UCN0/N+zGWNfcBh6hnx8KE
+ mX1THZqCjWd2s5QLqnE/C0mpkFEpBSwzYS+6e44WrjZkQvmJkrGLTj4IT2hGw0JOJOgU/uj5qKC2haw/
+ V0uuJsF9z42zUrwunswf/ctYeln4ohwi4hmowHWdb/Wlen0z3te/hs0y4S/5inft7ViYqH9ruGe//Jdd
+ llAdmlDTfTVN4Y/sXDAKuvu5OKAV7mcpKcW0qBCwTLC9sNSHYlCZPQ2ZKVa8pvOKDG9YlZrZYQoi8dKb
+ 5IwdDxY7Fw5MMLXkahKKCblxxsfxNOLCyejnsehu6YtyjOJ1FfcugrjBfMJp4uG7IRLr2CoT/t6oeG/3
+ jm9irf4xU2K//JddIlFnbYcvYrFHvLAZUiWlXFDZ/ZyNH3NzJ0PzX2TwwleOBok3b2wvIfXBDCp1V8vX
+ aI9VxIY3hB3UHEx0fgjCcUWk8OrNm7kjrODB5evHj2/RTcAjN6YmoVeZcaYgJNpbGCBqxsmkvZw9g+Uk
+ ongkgUVwgxJPj8E1fXocGrGajTLhb/+KwsSOOcGKSEaCLftjl0jUR0BD8ABnllnD4Eoz8/Z5eQp3YXKT
+ 56d3J1gc8hpNb97M3ydzc6fF+NsnO8gCln+w/xl/SbBOhChHM6hB6FgeJ0hHMHZR5BQ0kewx8++F/Xz5
+ 9uvUrT8/Pv9DneEJs5efFin679+XbCehD8vQRnUMth5XEzRxN/81BmaGbpjoZII0UTOGhw+97+WPtziJ
+ r/jW3rxhPUPLmzdcNAeDE7BNJrxKVBQm9ptf0PLWcM9u+S/zyQ19fhWG3eHtEbM2aMl45xLtgYSF8F17
+ 4WGOMVln1YNmsCsmpD4Ug8q85fJjFXHwQoqS1ntdG7fnzrqGLNJf+pOt8jp08A9bNZw1DC6XCdZXFuOg
+ JRNJcfDhQohM0OCHh5/I69C10F8QroIwXJU8Pj7cOb4/am7Jz8eEJ7V1ZtqDc8wXxMwPY0/Mg9faPL/v
+ 777c3n65u1c9fv/pw3Ls39hP6AqW/alSX/2pJw1z0zw+dyzgIKir0djRXuQWYQyiwfH9ZDsRLX5DLDr8
+ Nlg8Cptkgu6eCnd+t4ivIpBJ2KswYT+5oc6DZbYHLdzuoiXjnUvYF4oWTzA53h1lByErpHnQnLAXlvpQ
+ DCpTm2BPtccqRHyAVtaMBkeUm2IawGB7e6muwMMBHziwc2ZHC2oShputGSIphigdoTU5GTY4r5h+JWAd
+ R4ixarjl3srNx8ToKPerWyd3F09JUkqlin0pbpG70+mHuFhul9aUN9/Tdzbl451MTf/+wj6dzStlmL1N
+ pmIg9kyFSr8vMhGYtvIQ/1DY7ffIurOBiLpKQyA8PVaLjAbH9zO8N86v6WfPYJHZRuTud3+JditbZILu
+ gorCxG5vUak4dsJehQm7LKF6CSG/RPaI2RG0qMn/lGDFpZSg2eGDBGZSSSWsgAWfOZh7qxhUVW1YIo1S
+ O1G9N6xM24fDRHrCXHAOOyxLHnHYXvw1zl176ixTkzDcTKdUDRJ1E78zOkcMD0uLZXo5w7qqxnU5kvkc
+ t8JHQzNHb52Zrlma4R0bVG22hmsmKxwsZHiQKHLQ3T0TC02cmv4dzSxfEhJ+52RKSQRwcyWKRrqCQycm
+ 4ybSppCdiFSC1EpYD1YXje5u388gKr6j6Ab5lME2YpvjzdndIBNkRyr8+d3exLqiLLFbYcIuS2DFmGA0
+ yB4xA4EWMxe0gDUcQkrYHr3xYk1ki42AhW0SEuTMoFLGhtnTYM+ZDafLS1x/3mpSczgNliDLiQQXucwa
+ rA9oifpAgY9qooMG8zp3QEwj9hvKk9HKMwr57GEZ5dHOyElTZgU6U5adKzht4u8y4eUqN/5kQ0klgpml
+ WyO2gE+0Kog6KiamLDbEqwoZaykCiaL5Y/i0tzymg5uncFJcJcLwiHwAi3UilSD1wzJ11HeDjhN2iIZI
+ nY7Bepmg26yiNrBXEGXPPdXYKf+FvefRnYRgNMhGBUkgO6J65xKW8hCJ86R4raqEFbBo0QDfDx00mHR9
+ li1aorYJrz1kj8lE86CD5r1KwmFZqBMRLvcgg+ysSObU4UaDgxUwGOJk/BDSyWB4sOTI9XKGaQ5a6tDC
+ a259lZDXWclcIDz7wvhbXsDCjE9MJi9ViWAhIkv6lPh4LFZJPpwzNTK/lIpAomhSV7AYwUx/GD5urUNU
+ E9twLpT83MIZk7FBR303aPBI7/y5RWN0EFbLRLh2Kxx6kfvrRcUbaRX2mZib9cYI/bgYcAfZo2CjyI5o
+ 1dQEZu+ElASTQ2ZbCQysgIUZrnB5KAZVCy/UxyrYyc/4D7DI9sjSQvLcAvjckbO/IRwIMsi0VRtukiRN
+ DiPwocfrEBap31hy6LsBQXPUuC6L4itHlkd5QYC7MJXWmcnNpuSI8HKVI01ylKoE3aaRt5iKBFOh5MNF
+ Bcgq07Ox3pmXIuD3RfYaSqBXD8P4hOPy3qDJEdtwnj/gnwRjQAKNjnpBolHy8kbntpOt3MZamQjWqqI4
+ QF9qX3LXdhndp9+K4lkJRE52gdkoskfBlineecFmMCsu3O1gcshsM0nxkmAFLFo0oBlU1Z5qgYqo9/rd
+ hu2X5TiUUMOcGazgyKkEPnYwGUSLgyRUSy5ZKSDxGITvfDhHDA+WHPkzcWAdhx655MDFFvMumB7Fp3P2
+ LefpTZ4NGXlxF7Nsi2fynOlGSPz92E9KzUYIeVIFWbJCtG9/L5H9xsHIPPuDUwN2zr3/ADn0TA+oLYq0
+ IpWIchn8k2AMvCr4HftzDAUZfyrYhlTjWKyUiWAo9IGPYCFdT5TrtIJ9vgfVh+PoaTclu8TMjf8O1Gpq
+ QrDiMnGOZgeZbfa1+6NYAQs+czArrBhUZk/Lj1V4paJIYekJCRgpIqtKZPNNvH/y/AGTL2bo0TKBFtVE
+ swFTu8BOcGE5GWr2fcKioxQk5LOHZchX/nh3x0xtCAPQwNFbZybTR+Y8dnOYQSWm9kQlyJbecDdZyRbT
+ /lORgEJ5351uYRIBKBgpmrfZ1Bukfvzyu++P98zJ9IdmtoypBLMzaFkIYuDgKhFiDL8X31F0g529114Y
+ EHbYQ7FOJoIh0S4Xgf6kwFYKc0+j70+yR2HCHgRdKYvZJWpi5k3NBS1gDYdwP5nJIbMdDC/Jk5HXZ3sJ
+ xWt2UNqIXVBhMpAWqPjgh35Gb+kdrepPgxvggs3EGhOqt6+VZxxomUCLGgzlNXjB93p53tux1G6Sk8Hi
+ hD5ddyafPSxDZm6yyI/ksZKLElQEs/MdzmjdLpA5fI+GaRPv/wjvigz0F+wGT0MkKkGeOK8SszzA7b3r
+ 68/798FI8BzBh3u34++I/33/yJTSwWDmSdG8IJG9xrI/mbkvIWPtoxwW4ARzTWfqQNNCCAgcXCVSWfEd
+ xSJTIz9M2FnQ84OxSibYfZYLVxlYsy+5kpsj3B8KeoFgG3ZApWfdgu3x9kjLbGgmNiHvfjKT4w0TM7w+
+ OmEBC1OBgBYNqAY1hBdsFo+WrvJt//g/ll3Qqn6PLMgphBLsuLrMsZQcd+PRNIEWNbmEBoeeAvK9JpVY
+ BpH67k+GlVj0Hc3ks4dlvDVaZCH4Uf7qy6WPFsjoYnnG30rCy6V1uXl0ULu3d2QeeCwSvCq6GynSYPfS
+ +8ijo43IlOZEgBTN22svQf5klj2QHHkXjpmycLqs+hCNAcYSh+DDsLTM4KSxD789DRI1+ehCNxNHYI1M
+ MJWoKEyIK6kP7NuTFBNAkU/TCXsMsKIg2AxMG2LmIRgRKxc0w6y4eOqLiQxauNH23zIz+OpEflWqtOwS
+ lh3MWGuVFTS8+OTPb1mfVsVhmHwVc/lslPSQK5w03w2aJtCiBUNmCsh/k5/81svJkHT5MWMjr4/zTFgr
+ kz3L4K972J7EDCbOdoTfmsf+lBwRXq400B6pErR9ZGFJCdIqoX/Zt0PcqTK/FKy63zcWaZl0BXuiziwG
+ iXqB9XlGgLrLskNxb5fReo9BYyaOBx/oKqTEfw3MdCHM813hUnowVsgEM1d8UDKIK6wP+XjhXUlBMhWC
+ bZjxlF4zFzWIP/zHkNmTucFL1p3kGWbFRSojmBy/OTPutEe2vfq9M/OGFodiUNV8jTbviU7+sz/0Entg
+ gbxoFgrpPQN8PdUA4yMHFxE0TaAlnGkIhqwUEJ3MJxrHuR1/h+FhQ184neA9FL5xhdhXDsGEt3leB/R7
+ wG/NL1aypMLLlV66R6oE6VIoTjtordQqBj9bunP0CUUYWPbWN1E0Mk2IWGh5EUmpYCEFxUYo9Ce2Y9j4
+ LlUJnuRYtvDy4wMnlpJCV/xR5oWD0i4TzFJka18BEuaOFMoSH6KvNqG/XnMnREdPc3GL+om/rS8eezQ5
+ XuK9bzP4FGi2bSGYHKSS+NuL6DDsGsD+Z8jchm1YvkY5KLOnIabRpIOCnx9kWCdTSl6796JZjFB0rHnM
+ ockECwe4oUfTRNIShpjFeOFNimx06AR/kAxMJ0PiQcPDHIP4S+awlfTIJQOZPW/SyZPCMpZ0pyUxshOp
+ aV5Aa96Ux1600KW8WlEn/vdexjsUGWE5GH05g8mfPtlr2HDfOWSk6LbFcPCCCB2EW3R+F0P+fqYqwXez
+ WD7fUawUmYulDXvZw1D2o1kmuEr4r7wA1uxJQQjuIq8gIfJqukCXZxZdmZj/LuAjz0wsR5jMrPvJTM7i
+ Q3ORCCWISKMC3qCyvbB8DVocdFBmT8M5sBMlCx20gU5wkhVaUOq9ZZMZX8SJTLCUHMv1M23BgKrJJRZJ
+ ceggdDL/6ScTvpNoT8kPbi/ks4dlyGz6y41uTeE8cx0gaGtm8cIesAykgSbotlx2Qr5cfES/19QqBhOb
+ zDKR+aUgAliVju1PX+qKTzFgD3QS6BwXBL9JdGvzgVkE+J2XS/YRTywseuQ7Oi+w404sx8ah9Tkuh6FV
+ JrhKFOy1J/nGt1PQpof4e5D0L0xETohGJsvFU+kRb3jNMkpSBGIxyLufzORMFvoXM+M8LECLxHeESVXI
+ 1zCDSnLDrCBaHOxE6cxoxbCbqedkb3Ea7MBedv7DS7vB0pioqZSJoFRcX9lGGFA1GEKDhG4POsHwRUz9
+ p68ufCdGL2eYqIrsYRnhK7N8z2LEyORxc0fQfcydeG85hT2XBpoQUkN3Ruwm+Zs3mf0YqhLpXYoPgimV
+ IpAomrfX/vbzJwNVIF9ykboQxkzMTV5YsCE7CWz7RVEJtCzMY4mO+rONDOYcx/joor8D25dGmeAqUTTJ
+ C3rCZRPYs8bPcgooY7I3EDkhGhkfgZUhOK9i05H5amIxYFogDA8zOW+iH6FwIhHESBgvD2VK2F5CvoYZ
+ VDoolh1MxsKJBgvtIxrXgr/mLUjEYKLZgX1nRNiD1mSgxDgE+eKTi1KVYCpKJpppcAQ+Difouoi/5t1R
+ 51lIIMISTSbCKjT+VQhfmdmjxYipOkD4rfn9QTeSuIKlgSaESnijL2w+2XMZY5Phjp6umKE9kymVWuMP
+ RqePZZ9RopPBHoSE4diQlrkJyvEee17aZnDsx1Ql0E9awYG//SB40Vj+nVr8ue3gTfelTSa4SpQMNlDz
+ oJsoJXncx+SSaKj3yAZiJ0RDlP48GOOYkOwGwqx44lwEM6biG8sGLNF786yARYsGtOySFl6o0kGpHtfC
+ bGw4W5hodmAlB+WgPYofoZAGOHzI9ZWNG/rLhntpcDAN5qgn4zUsOhn2nfwq9nImrBFOrgbhKycq4c2q
+ 7idpYUNqmheS7I8nVolc8OI7kkQMlK1JQ4k0fMGyXzdRNOoLxoOWlz1Q3AKVgfHGf0vbMoAIydiw4ZZ3
+ QdvyBztBiA00dz708if5yjhJrDG1iJTUgWmSiUgl6DvPQiFwNyiWTpmu3GKXMjZ7NeQAZcGKgoz//lZk
+ GdAsiddixhQtnkzA4o7DRMIMWLRoQDOoakzDTpR2SG3OONN+XI+4kZ1g3ce2YtiYGEljHqKeKBzgzUzo
+ kEnDkiOYaKYlHDo0Pxn6JtwXRCeG9WaiyVjaDca6yk6uAlxt4QIXKuHNouq0kZEljXHQDoSXi9Y0SI5V
+ wnvrMrNEuxXqE/wtGWQo4QvVPGB9E0UjXYEJp+VlkTqB9ReVvEHz4koubbjBmSR6RVFUApYJAjkNtR9Z
+ v86y9B4HmlrxZ6K5B6RFJqLLPnznWdIvfSPkdKRMrgVdUhqZ/M9qigebyIRSGf/9Bf8Rzsg754hcRDCm
+ wv2Mp/4EXsWxCDP4HFoJyw6Wr0GLgw7K7GkwxuxEaYe0ojPO9LfbBH/RHrE4gR2KYeODJaw5fwiPaQtX
+ R3bey+5VE50ZHarQ8PoD9cGdKv4S34m40ZJfI2JdVQKNPGQm6W6jO3M2UGSDw5PXLKymrbkT5bNQws8h
+ Ax2evMaeIpUgb11EImyC4k0kP+RvSVlxeMePPqKVYX3pZP0uyZPEeMSa9dN3DiECRueWGW/EQt6eh/jG
+ n5hbafnD98GBfuIUp537MYmHyB9o0jhskwZQB6RBJiKVoCsjj7xMtkKOj8I07HTFaCiX4Cb85ZYlU5bJ
+ jLeD50SE6+mJDQ/TAuF+Cs8biNJHZIw5PmBhewl9YwaV5j0xe4oWBztRioDI5XbGmWKAT+FElMAB1lQM
+ WxAjh/iMTccKAsKL1/y8l92rwZBIEnno0HRY10I9dmeAv+R3InrJv+0JpnVqIJ9D+MoOCqlnI6bcp8G4
+ hVuGe3SZzJISPcM0RyrhV0uLDKGSd8O6EERJuWPwiQJWSBTNn73PZPiTmY0xiYRXRXT2jqvEsst77DkE
+ WVjXSYBX3nAWaPCn6E4d34tPWGHxDkM19QY9y9iJgyGuXo8iE5FKFL5AT2+VVC5TYvrCysKVXLSbCI5R
+ DhGue0IV9t8fPz6/5aaIOfp8ThIjNjx591O4154o3ZQNWOhrZv57sMrMoJJXHU6CzZ8KJxoiIAp+nG6Q
+ 3LwNJ4LT4EmkpSVbvJ4Rl3BIy4WUHC9es/OGeGgmOheP4WPWJbcJncw/yckQ2V7O5LOHZbyvHEw6qcR8
+ xSuuE7sT/NZRdhht8v5V8r34JFIJb7fT4J3fv8yDJMud3jH5u8w7fUldBcvUgMXJ2j/d0aF853D+D0wl
+ IAH+9YMhyEKD29SfL6kExRAYe/cB9ugzCjjQd2w6dX/5K+zk2FTLRHz50sWYhRV+uuAvaY3p87Ll7luY
+ IBcuR+7kMbqO2fL+YXrAciU8J8KILQuzbZFvHZmcCG4ro4DlMw4wQd87uzBCz5SDMntafqwirDgteW15
+ E1QBh2bH8LKDRcDEaCa+hEMnQkqOu+5M/bCqFgwxDXZ6HsDHrEvTgj+Z12G75P7J9XImmz008L5yMMrk
+ ss9L5GwT/Mr0W/OwgWy+8HLTG95vRVs4O08Bv5JvDsEEkwlKiSl1zLxf6K0vFknRyAbI4vX7W3+uDtI/
+ 7/szlVj+/JgYcb9nd16JSqAeceuV1B0co+VDEZKP5X/33fjzxgqHp1YmYpVQnBRJX/c9usgEy5WPBZ0Q
+ OvYgvfkEmUCK+bFoYSYxmDI0OAo2I+9+Cs87EPm32vRPjhYNaAaV2dPwWAVrpNOitvmkaE9hCOa1oiHB
+ 6bO9TQgLKy9hr2lMvnhBho0bxkMLhhQ5jKAuzZvQPpOTYUS9jF9iqCttBbjcmHOOBtwT6U3DC2Zoihx/
+ coCEl4tWBm2F5cniecPOdcdDJnvC752mRClb5KerSBHwika6gvFQvTm6N2Gp33ljNvVpGbAHLwpkw+Cj
+ TlFAohLY/Is/nDtAiCpmliUnMfg+Hv1OemfC96NSJuLrPvrKdfq67+R0KCxXPvMWUrTLdj1mWSJz7sF/
+ p0y5YozrJryEDaVvjWbH20//csmIVgwGX1TFAT50MKlSDKpqT7XHKsiJnw0hbfbL/+UPw+QLTb8+OUJ/
+ gxh5okvYH5BpC5fBcApoVk20lQKik5kDNDqZ//xf8juZiGI8Lly8q+nJFSDfmdI11DJf8Eotj7lLdA/z
+ EiKF7FgGtN8ABRtYnrbw96B6/XObfYNgg7xNxY3L5ytgfRNFI13BeCg6cxO6Bk2ht/u4vSyi9Y7EC2tS
+ 7Xo650QlKHAIpn/5w0dUfvBo1ftw7IuhTibE3bKcZQnuoWwnH376K6zs4M+rdMKWyEwcFQwgZX+YPfVG
+ Vq2mJmANh3A/mcmZHFZeCtetJVOBAAt7QpDD9ItOQLWnzNLTVUSX2bw/Oskf3vx7RWTxCs8UhatUce65
+ FvqehdQSl0E2uLDkqokOKSDN3rMTnLtIu/jhR0MLCf7wXkYrqEpbAd0UWGYt8z2hXKjMfpOR5SUBb5qF
+ l0s+f4CsJJZdJ7wrl0m48qQx3DZqUsq4+EQBt1eiaKQrcpn4npZlvjOVWGzInW+hQfDDOpl9P6ika1CQ
+ RxJl33WfRcPWbm8UduAPRRsPS5VMCJVIvwBJ32iqpAHL9YqBz0DXdAfKR3LkIpdgAMn+MU/WtzGbIdN+
+ gbz7Ka0j2x1bkxl8bosJJi7B7WUHpY2CPS0/VhEs+WwI6bw/+3W9ImZUIjRHyZoF/tya70a4qrkMsmsd
+ o6GZaDMFRL2ZB4dWp4hHDQn4hIFImlmn0FKH95XD9Ube86wGyoXKCgZq2IAmmTNV9oRPuEp43ckZPy4T
+ yw1JZiS9P/PZAy9CPnIhS+NjfD8eWGTcMpWg9A+s+L0387+9taFxxZFm11+qhO+nG1ns8SdW8ZvjS3GL
+ VMLASPS0SrtTIxPi+jUtZXzxbaaU5Fm+ecXdYfRUbVMhFcdoBuPqCC5jsLLeCWZmEi0KrAgr3E9pHZnF
+ YwksK2BhtjNEIJpBxbKDwgveGKwhGvz+/Hl/8gbe7zGjEmgS01o9rGd+0ILnznbDH9bGeWnBUF6DAT70
+ Ou6P9cmflfhOAL/P0DQTuqpHLjn8hRjCdkq7zmqg6gDhtw4awzJL4n7x62oPy+IjdxB/9EwoHcnEkmwp
+ qATdz/539GhdKQJe0UhX0KCkyViOx69Ndv8OKudWwYn4QfDCMKfmpEqw7BTE5Z52uICOu0Uc88Y3ZQfq
+ kFTIhLBY2jcg6CmUpcPBtSj3iN8KW8Eu86Sz+maY/x784WAUvUE1ckEL7BsTvnXYIaxjegQHM6tqwKJK
+ FTOo/qBaeMGdZhKmsOKy7E+A9rk051Qi7JKJUYANrd8RlhysBsBCJG+QteRSXoMXQm+WZX8y1PelWcKD
+ CTTNoMmhRy45cLmFwgLZycW99lZbv/jxYRQ2UMZK3LzSS+fgo//R0UUcwmEyMVtI/K3dMuSHelPqzbO3
+ vomika7AS6OT4TOc6MTwqTsjMurLam6N+f+wY/R6eQhEqgT6OY04/vQPYPjs3rI0f0sYx6cl6shk5g6L
+ LRPywi859wt+GHvAK18S7x5gMQNW6gBdrTlyX37w39XkDGy47vtLgvspfWs0OxAkBEFgKqGqACPsn20U
+ 9IsMKlOJYE+1dBW1YX/eEHsjTXtkUsRsZtglDzACob84H2aRWTkmSIIfHTbcQX/Y7YCWGOoNeu1Pxo+q
+ Gu84WCSDlglVaSsgTSDLR7fJEl1gQS8RkpHlkS9lrGIvl46k3dP46H909IyTNEMBwSJt+Fu7Pf2adDfR
+ ycH6JopGuoIGv+yE4Iky1jQWaHFn5FViOUt3PH+62I+vNyzqJ1UC+5msED76gAMju8f3hpX9issKl4Mp
+ E/J2oWHP0tN9DxdXiv+6mMOgULp021BmTsTkfCnVXAe7hUZmM6qK18K3ZtYR3x0LG5aGCStgwYeOYKq1
+ yVdqTMIuJgp0qN6LTdlpztBh2B5Z10JrNDuISFQvyAorXrOD+rmoqom2UkB0Mug1DxIm1HjHoWuzFbnk
+ IN8Zy+wWmK92cmf4JCZCDRsS07xAe2LFbwIf3XiTUCxIhheFz7ct/tZUwq9IppTuO1jfRNHISIjlSRjg
+ vadFDHdGOLu7ZYdusPzpYmR0F9WbHeyYnc4tBmL+OEpJeeHC2PtdXA6WTEiVKHn3AGv2AHtU8Vd5Wbdy
+ tYJ2ymrk0G6liWAjgj1irixsomp3JcwsCfeT+fFoYSUItFQELPjQEfbPrBmZalWCtCQOnbxP9GPRQ/l/
+ tkc15OITtQKJ/Q3TrJjWsIjDn5ZqotHg0FNA1smI74QIveTRhiaqNXhfmQwfufyLkadbVPWQyMhieSYx
+ zQvkpbPiN4H74da73KomEbSr2YnE37FUzdAsXjKl3uj72kiiaL7zfjz88twhebo+lHIS41VitvdTWskP
+ HFb1AhODfvl+zje9H4rl3/lzOuO5mzgUup4zFAfGkAmpEuUywEw/9518GQ2sE64/lW7RHV2+WeJoPRD8
+ 9+APM6MOg6RVUxPYZsL9DNbRW2jmLaPFDljUKVBaz8LhQhuTsCBBaAj9ZXZ9gk6DBxnBaNLY6U93pN5/
+ 2L0qc/RYm2aiWRf04jX1xjoZQRI4zoS+5zJVOt5MUuxKlnCxYKoOEH5r7vrnMkveAdOK135Ht/CZ1XUC
+ dAhDJeiWp0+wTNbXG2+/THvGeNDyvAfaH4QOSjCdPVZcqg9T4AFLgjPJGB8Mkf+UTxdYxMLntjA+swGC
+ 8YCaaJp7dMoykZgsr9R5+rnvJQGgq7woJdbFWw/F+Tn8VSth/nvwh5l5gUHSLYmAGWfhW4cdejdYUwkr
+ YGHbkJFlyhEyKqz/aIk6RzsPyoEGvtYEWuNCNClYaNQHJe0blhy0E/7DrnRWmonOa/BCOJoXFjaeE5mQ
+ QJVP3tVcpkrHm0l/n4VszuKneB3QL0h8GLlPdG0Loy0NcoRXCZhItQjCWNbCvvC3EoDQLe9NaVKsxiIt
+ U+exL1qel2hznBqEb+7t8ucyetPh/BlNn0UVdw4O6/s5L1AWb8KfEr6VZX2eiOhmkk5KUSYSlSgneCa6
+ ue/FJA95UuQ76PSKbMhDy5ETx2B5gz/MHefF3NcVr4Nxlr51sITeDdZUwgpYNJVgljDEH4pKsNmmiuGl
+ HBQzxQ7mRbMKM0lC6I8+KKxvy2kz2fBKxZ9qC2/IQIMj6I8WIHEoh0e9Zlk9Ry4kYDcYi+Dy2cMyFNR6
+ k06GFbcElvQ6Gd0t3shO0B7icDjN/nC8TYWUWA7yshbsMyVzEm1JwhcpAolKkDVHD/zJwI3Ekh8t2O55
+ Z8ufM7PN4t5/NneAw+Koi6JECRYYHL/9kl7ikqOr9+EpyURyv9iFCVECW0/ui5oJRrkc3fSKbOjCzpGT
+ o2DJyB79YRYR5pPZZzUXtIA1HMK3ZtbRu8GaSlgBC9vG+7fsyTWmTExuvDVmFjtYPWokd5n11MG8aH4V
+ +nMI+1QHhRladCMtxkSPPtNeNDlk0hfqKhzrZPQxjaSERYBMLvXKfAaKnbEcTNRiJmlZvfLVsCGTWaIj
+ qYl0rxLLf5ZrGKsTNlJsRRK+kILh/qJO+RPwt79PLvh9o0dYwup+cOahwt8T86f4e9GBnJ2DSsCBhcpx
+ E7S0xCmpaG9e3i6NgkwkKhHppo7lVtRCV7RGMMp0yamoHlU7RsRS0MZgUL090gwXy517s5uSdz+ZJfLu
+ sqYSWHbovjmLaLxBY31l2zBJgMlkh9Mya6G/LP8TnQY3pv73esLYYVA+cbX4xnYFPz70Cyb7BxNkZsZV
+ E40Gh1G8Dr3mew/N//JefmW95OqTzx6WEb6yf9s1XenqJCZCDRsymSVaV72hcdvBQFoVWdrX3KsQmItO
+ puEL3d1YJpVAbEGn60XRnwz2gCUcCNZ6uVmXvyfmZX/sZUd+Nx/vFnw/4t2iE8wEebHCCUN4udX0QdHF
+ kZeJRCUM132i1zAUkzxYx1HOBXWKbKLUo0ZWjYKZhT3iZoOyFOwbmF5yF+AWJO9+ButIaQ9mthXheIPd
+ L1AaHp9OvJ4M8y8uaKwrTCUW4/iZnRSzsdQaEv0sWRXn/7nFfbV8EI4+L07rvHz7de7Hn2/RjpBnC22z
+ pP0XXdgvwwloJpppcDw63uZTB8Pgs5iKNb90vfym9ZKrR/ggU5nP4B3/5YILIuF/AaiueM1vi9Q0L/g0
+ iZ5IZ5bRvsvCTwHNi+Fueh8nuaQGBHPjFYzWgBtPMT6kjE4G+oMlLGLwlrFb/p6Yj+b3PK/pPVQ6dy9z
+ yxhF6zINDHYAR/LdXpZmeuXAT0/kEwVe/peqhL9K82QNZiN0ASgwt8cw4H0im0wtK5B1pjCUDmdF/vyg
+ tzkseDPJrXEEPp9htlkEHMHkkL/MJMEfhAUsMTSlJ+rG6zfRIneweeTw4uWbN1z4mJqk9d5YYKJ6b/TB
+ i1dv3rDD46zIkMvr1RccuN/+5o1YiymrZqLjigkDMUIItMIJRn32zTQ40ag4osIF2hyZTFUGLwuzuXoM
+ 94i/AL31pukdEdLoTpDhFdewP5IIMUCkEmp26wO9ZO+BRCJJ+r/H/bn8R5kZb0ppTV/BoIZFFem+9EaH
+ Tgb7xRLsOfqxdFcIrLcj84beylHhJFYJ3895Icp6iJDGb89GCy0Xx59MLDHdjVglkEvYBfTrs5likoe5
+ PXRd6PSJbEqKNRP7RIHIniZQEgfLCVGGnPmlaPEEe0RpD0Ulsl8zufRiBhKHeeLcYqawxBRlkZh95AMS
+ edH8ZUsSKJQlc6VusTyRbqJjlWJAXYLxX5Yn1JPJDiIPJdYWr8ns3T0+3jPbQ4UBb5Bv8BqkCXxkFa99
+ dsUxtaP1f++wFwcrP/AQ3scxEZM9v/1y93h/R+aYnG8uMR/c4W7fLX0koz8vOejmptsYy65b93wAsGM6
+ GR8EYHHZ3id+Fg2ijRdT7rec/qZxIsff92wZOCx5S8dUD/3wLb7bYbR0zT0+UZ484rUSS1QUJnIWs41i
+ jMDdHjRl6BLZmGWJrDJmDdsEaUBWS6IMeTCjwv1k1pEcZkUl7IAl2w8Wb8xEqZYIX1OYIMPL+ssteXwa
+ WWeeDp47qh/HQvejkVRNdJQb4kAetZPh6k7NuWFmpfqoDMPFwyTjE1HmRrtSw8Wphg1KnDzZWO1IzMSx
+ LIt+j2llRb99em8vnyThCx3Fq0AcwxAkXz4I8HvA4mLd4eFCQWhPS9iBYZiTZ/6wYeT8yotKYInOOziR
+ aPCD51UmDAZFJ5fFf5l0k7v5/ih1iYrCRDb70oRy8Qa4EDFXRaFLYcIMoLhvFpH13x1ufEHWQHLbzGbU
+ iOIzs47k8SsqgcUEFrBkrwWhS3l7THGJg6w6d5fZIYQXnZce7BRLEprgmg0HxIix4Q4mOhfK+BhBPRmm
+ CL45nvgUCN/2BOtqfrqCgn4l+p/30W1zMOJkdGl9h3L/TDZWOxK7zLlKqKl2TXxoxcTWL8YTC8GU0k6w
+ nBmAcP7+ZHxPsbgsQ0IgKb4P8eIsL97qh0xarBJYoI8pDe9lxfcSi0y8++Q2Ts2PbKA/eV+KStiFiT5y
+ WUryRKa/KCd9IhvznNX7ZCLroTrfMpiNbJKC29y8+8lMDlo0lchaduZm59aJTZwjd15Rz0gQWEmA6yZv
+ duSD2uVzPg2KgQdAHVmZeRkPmGaic8ad9JFOhu+LnYxvzih+6OVMPntYRp2r4ZP7Dm68PcHW+es4Kkij
+ jTPdwdqRmP/HDkSef4Ry/wYLmWQkZutL4Qv12Bv94NSHhwgZYcdooBYsLvvHplAQb/gRpuDDSVJJaoPt
+ iFTC954CHJIuH9PAJoWRodGgbS6JfJg/+0bKJax7Mxz9qmmkmNmKQlyjQz0iGyt+iu66CAxmykseJmS1
+ BJ/PMNvGxcMRrGNw+ZnVg5dbFbDosU8iEtEvADEia6zVe6McHG+eyMkEyhq6ls6TsRZyKsNWmdFMdEaC
+ QoyAxdj3Z2PqmzMjKM41mz008NaK84E5QtrnwTB5W8XvUC2zNNlYbU8sBGEqobrHyv3L15M5p9n6UiP1
+ GMv8hld0EGbfQSfj3TYszqsI444T9B7nsjSv6MWUlWEilfD9pHGnw/qeQN1Ct8nPxPJFkS9XLve7ohJm
+ jr7PSBRtf3Rdapc5o0NkU1SsiUi1OCwDHvM2srtoTKgsXockDkusoMUBO1cVsKhG7k0iEu7MFJkQLjsF
+ JlGVOgxJ1DzzR48GkNFX02F8INEkEL1yaCY6m62Sxeto8Nn3ixY9c/WvGMF89tAAFxzjXeQGaRE4PmJV
+ 1mBW9RttsrH4k8OdoWCsdRcp2S377ekJIRNzj5JZvGlw4UhyB+xDOiqWKRiZDL7/cPnEHw22xB/K9ZIs
+ HOtxpBLYkmU0loYgb1gMPfPDlS1gHpf85CYfHysqUUwFLfSIqopJnjjBg8YMHb6XomJNqN7UhO6/v/4c
+ G428lmCFmWAkI/FwoNnBwgK0OGCHqgIWxVxGUU/gv8RzfyP8ZdpT7C6jUfeivylS8AqGWvnoDVc4NV32
+ OtEI3URns1U4KQqB4l6TJvhm/mC9542IZaLIRR/dDIm/8j6+9NhsGyLcAGR0+UZaZsk1a54RD0GCSnDJ
+ CYjd3nyRmd+fUbAy78S3UI/T4GIi3vU7/plXENqD3+XUdfztz2I5Az8/y4+N25s/NZ7XjlQCCyzU8GKU
+ 7gz4lqw/eVhKk5uwiqYSRh3AoV83bZSSPMJ78V9RBnl5tuMvkSzZQ3xNTPMbPBbGqcoFsclBkXhE1pEZ
+ zcRhxlKC1Jxfb7k7/EooGuNrdP28FWkwZnhjd5mGRPeiv/4TeeNvPgUT++1tZIJf/Rtb3z+f/omv6Ff/
+ fE7G2qGaaMW4z/iAhxwq82REL1//q/Qhnz0s83T/JfwE2+3H77wKPUE6wAiGiSw797KUi3uyozIlNMHv
+ 66ASsg/g5xfa882He+0OefxIN/mH2Z5iIZhfOki8+W+2YayS/pB0zr5hMhn405/F78cJPxT+UO5Ifuc8
+ C+H3M2+MFdhwiOjCDx4WJ9DCg6KLoDi5CWgqoV0/MdznWIl2uRNMxCcM2dpemMCOspTDlR+MrMU9Fj8+
+ vX0z8SlVtIhfXz/N670Nj2/34L+veOz5W+KE//nxGZ/9yHQNI/3jR7Lt6fgVenkh3/g+PM2GOCMjE+YK
+ OX4+fr+7e4xCjMEOlCc3AU0l7MJEvphbTXBVFIQgGwmhzZFNUbEmNh9hMBgMDocxuQloKlFRmIjrBmtQ
+ 4uCAcCEMK745sikq1sT20x0MBoODYU1uAqpK2IWJzdk3rQoXwEoEmnNgrdUUFcvRIXQaDAaDQ2FPbgKq
+ StiFCVE4aEd7hJRIggOjfL0xe1lWLMflzVsYDAaDIhWTm4CqEnZhIno2eg3a9DwiKQMYwc3GskFRsSay
+ 82AHg8HgIqmZ3ARUlagoTKyYtRBRjA6S2MAoX28sTBQVa2L7VNvBYDA4EFWTm4CuEnZhYqN73VaWMJ+N
+ xmorMfJZPR7bGwwGg+NQN7kJ6CphFyY2puqLB1BCA3ySY9McJLMsMebBDgaDa6JychPQVcIuTGz0r4vB
+ imKVjVlIm6ZcmZI4Hu0ZDAZXRO3kJqCrREVhYluuvrh/xSobpYNNU66s9NqYBzsYDK6H+slNIKMSdmFi
+ 02sxyrEKVuIY05A2GXJLETfP+h0MBoOjkL7G05P+gMBCRiXswsSm93UX5yxpM5asFNiGwoSZXRvzYAeD
+ wbWg/STAQjq5CWRUwqzobpt9WnxruFosLr1B1rGhMGEK4tZJv4PBYHAQ8pOb9Fc4T2RUwpwdum32adHm
+ q8Xioq5smnJlJdfGPNjBYHAlZH+MS53cBHIqYT5ptmXmT/nxB6wUY7yQb8Oz4EaU0ulHvgeDweDc5Cc3
+ lX4aIKcS5lsrtjxFUCxL6MVi6+Xeq9NC5o+Zjnmwg8HgGshPbnpV/LGWnErsWpgoPv2QKTHg0xyrS8zW
+ j5la06fwYzSDwWAQKP+811lon9wEciphFyY2zD7FHnQy05WM/qwuTBgFD3MeLIZ5MBgMAl1/3LELhclN
+ xg8uZlXCLkysnn1azB7lxMfoz+rChFWWsIIUjPNgMBgEDqcSayY3gaxK2IWJ1bNPiwY/57tbE1ZXPgtu
+ /pipVfDAQA8Gg0HgaCqxanITyKqEXZhYneQpJo9y2mM9/LbyWXDrx0zNebAY6cFgMAgcTCXWTW4CWZWw
+ CxNrkzxl/cn67kZqaOWEVevHTM3dYqwHg8EgcCiVWDu5CeRVwi5MrJx9Wsxl5aXHKDOvfPgNW2cx58Fi
+ sAeDwSBwJJVYPbkJ5FXCLkysnH1alJ98GsuasrqqMGGdpD2RC6M9GAwGgQOpxPrJTSCvEnZhYmWSp/gO
+ 1rzyWHXmVYUJK2Cy3weL4R4MBoPAcVRiw+QmkFcJuzCxLslTLkMXIgKskWPVs+DWOdrzuDDeg8FgEDiM
+ SmyZ3AQKKmEXJlYleYpTWkvCYxSa1zwLbsZLdukFAz4YDAaBo6jEpslNoKASdmFiVZKn+A7WUhLLmrSK
+ 1VqwTrFiGheGfDAYDALHUImNk5tAQSXM+T/rkjztbw0Hlklf8Vo+K1yqqLxgzAeDwSBwCJXYOrkJlFTC
+ epZgVZJnxVvDgZUeWqFZ1o+ZVgRLGPTBYDAIHEElNk9uAiWVsFI8q5I8K94a7jFKze2aZf6YKdYrgVEf
+ DAaDwAFUYvvkJlBSCfMdR2uSPMWH48pTiqz8EFarx3o3lD0PdqjEYDBQOL9KdJjcBEoqsUthAlvqlKcU
+ WUa9+SW11o+Z1rzPEOM+GAwGgbOrRI/JTaCoEmZhosbZjinGJ8aUIitB1PySWqssUfMKkh+DweDZk9jk
+ M6tEn8lNoKgSZmGi/ZeIiru03jJrWPVWzbJ+zHT1b1YMBoPnRZLeOa9KdJrcBIoqYRcmmpM8xfDEmlJk
+ ZIhaNct6M9TKN5AMBoPnxrFUotfkJlBUCbsw0ZrkKc9mtZ7l7lyYsH7MdOVPVgwGg+fGoVSi2+QmUFYJ
+ szDR+ktExSfjzKmsVoqoUbOsHzPFaoPBYFDmSCrRb3ITKKuEWZhoTd0XJ7PaRt6w622aZWlOe2l+MBg8
+ Tw6kEh0nN4GyStiFicZfIio+GGcnjIwcUZtmWWWJ5ilTg8HgmXIYleg6uQmUVcIuTLT9ElFxLmuFjbcM
+ e5NmWem0RgEcDAbPlqOoRN/JTcBQCbMw0TYPqFh+rsgXWUmiJs3CNjnGPNjBYFDJQVSi8+QmYKiEWZho
+ +yWi4lTWmilFHQsTVjattTA/GAyeLcdQid6Tm4ChEpbz3vhLRMXH4mr21LEwYQngmAc7GAwqOYRKJJ0g
+ Vk5uAoZKmLNFm4xpsSxR9UpXy7Q3aJb1Y6arfohvMBg8R46gEv0nNwFLJawnz5pe+FcsPlftyEoT1WuW
+ 9WsVa347YzAYPE/OrxJ7TG4ClkpYs4qarGlRcuoenMbKOeqL6dYv3415sIPBoJazq8Quk5uApRJ2YQIr
+ 1lBKX1W+hMmYdFVfTLd+rKL5DVWDweDZcm6V2GdyE7BUwi5M1P8SUVFxKqcUdStMGGWJMQ92MBhUc2aV
+ 2GlyEzBVomNhomjhKx916FWYsMoSYx7sYDCo5rwqkRyd2Da5CZgqYRYm6l93VMwW1T7pjNVz1GqW9XrZ
+ MQ92MBhUc1aV2G1yEzBVwixM1P+qAzZQqS4oGIWJ2mK69WOmYx7sYDCo5owqsePkJmCqhF2YqK3zFpNF
+ 1ZOTrMIEVrMwfvZuzIMdDAb1nE8l9pzcBGyVMAsTtXNGi7OKqjM81gzWumJ695/QHgwGz5izqcSuk5uA
+ rRJmYaK20FucVYR1bKyyc11hovOv3g0Gf38/3t/dfbyd+Xh3d/f4ONKWz4dzqcS+k5uArRJmYaJy0mjR
+ vDdkeIwprHV7MsoSlzYP9unx4e7OGScamxu38OHu7mEYqpPw+/6LXi+7/fi9fqb4yfj9+DhdMDEPQ9W2
+ cCaVSA5LdJncBGyVsAsTddOTiqmihgyP8ThcXTHdKEvUz4P9ObuOm2h7+brkpzNQxW/IMlS/0Y0APmjg
+ HlsSbT87MvEdWxJo96B1C5kA8Qs+9rR+Hw9frCLXXUVomgxhO0bHfz5+v3PnWrxY3t1+OaKsXQDnUYm9
+ JzeBCpUwCxN1JqHovjdkeKzCRM2urLJE/TxY+9f8TNZXyn/emb//Ad5/vM86ionZaDcTSXzXfk5yF3LS
+ G5q3kDkvOYZNff9tScTCuy/WZWnNyqgg1/Hfj3cfy+IgeP/lYYQVjZxDJfaf3AQqVMIsTNQ5X6W7qX42
+ rV2YqAlLrLJE/T1yNpV4uv/YcuM73mcsVeIFtLzAcUb5SvBJNcku5EWF5i30V4nHWpV2vMvr9MSOKoGP
+ 27j9Pn6rsYUzqMSv/Sc3gQqVsBzvumcdintpetLZKEzUPOVnlCUaflrpTCrxYD3vofPuTrn1Ey+guUNK
+ eNcajyS7kDtA8xZ6q0SLRkzc3BV04mgq4fgwHi2t5/QqcYrJTaBCJawkfp3rXXTfm9LYRmGipvJsnFGD
+ M30Olfh9V5Xl0PmQBBTJ9ISWyG5G+UZa4xGpekkf0L6FvirxtEKoCyN7QJWY4h/sYmBxcpX4mhWJjpOb
+ QI1KmLdDjc9R3ElTcGuli+ydWdFRQ5Xk9CrxuC6MINKTSzJXDec/o4hWq/TJXSQRIdq30FUlHhrzfTOF
+ OPeQKuF0ojUofK6cWiU+4zApPSc3gRqVsMxyleNYuqkaMjwOy8bb/o9xQi2+9KlVojXLkaCcXFKYaHym
+ UPtCGuORZBfJl4j2LXRUiTWBhKNwaR5UJZyyjUJ2DSdWifzkpm9Yoyc1KmGZ5Zr7qvjURePcQyPfYhc5
+ jFu8pUpyWpX4vVUj1JNLRLOpTJQR3bZ4JNlFEhCifQv9VOK3URvLcVl1CXAzyhMVnFQl/rzBQRJe9p3c
+ BGpUwi5MYL0CxYlSjZehYeTtyMQ4n5Zk7ClV4sn65aQalLFOvIDGhwrV76MtHpG7SL9DfLCFbirxc022
+ yVGaWHFclVgx6e0ZckqVON3kJlClEmZ4bScviw9dYJ1arAyYFSJbsVFLiH1ClViVCU/AziIS1WybBKmK
+ bv0L5SfkqaXRJT7YQi+VWCsSRffjyCrRGlw+R06oEvnJTf/sIxJ1KmGZ5QrHsXRj1ZpJj2XlrdDEOJ2m
+ KsnJVOLJfLixCtV4J15ASzSVSSY2FSaSXaQGHR9soZNKrBaJovtxaJUYMmFyOpXIT256izW6U6USZmHC
+ dByLxrSxWGpmjKwA2QiNmuLrU6lEn0AiY/8T2WwqFGWSiS2FCbkLRWLwyRb6qMRT8Zt4P78rQy9bFO+S
+ Y6vEkAmLk6nESSc3gSqVMAsTpuNYvAdaJ15aZt4yu8bZNHXnRCpRV5GY3vHnydgy1Z1NvICmcCoT5LTE
+ I3IXij3FJ1vooxK5wvW7L/f8AL8fv8s3ABZH5KQqcTO9CvL+ccatMP33/e5DsSQ/ahNlTqUSp53cBOpU
+ wixMWIlseSdy2l/Aar0zBKtlMCKjtjmcJ1GJp9LwTbz7cPeQ2kB368s3AWbMf6KbLaWZjB61eJ9yF4o9
+ xSdb6KISul6/y7zP4vGOmd7ioJ5QJfLv3oi6KxgznYqcRiVOPbkJ1KmEWZiwHEesptIezFovM8+YA2Cc
+ TFt3EpVAe09+FoMf69Vsvx++hFs/k9xLvIAGk5DTyQbxT75PxYzhE6Kfb9ukEurZFh9R/v0dw19OyyYq
+ gfYOYIdE8fb4/T1ztd20eA7Pj5OoxMknN4E6lTALE4ZpLXrcLakJUEwNW4UOIzBq684JVKJULf1wXzUd
+ 6fc9cjqZtRPhbLDBWSe4qmczchdaxIOPiPOoxJNiQm/MutrP+ZIrX1hHUQnHva4TozRR4hQqcfrJTaBO
+ JczChJHILqbVV/goxnyfstdmnEtbd/ZXiXzdWn13X46nyUfMfU2JF2BnwYhsNqxebuUutOI5PiLOoxKK
+ JL6v+RKe3IblC+tAKuF0Qr3m7O2eMSdQiTNMbgKVKmEWJsq3QKku1lQpBUZholhaMOKixu7srhLZ/Fj7
+ L/08fsjOXUqUE+0VYIOUet8TGxBavgsfEWdRCWV+08dKr+K38XUdSiX0SliD6/D82F8lzjG5CVSqhFmY
+ KF55xZ+EaHw9x4xVmCi5d8apNFqfvVUil6u77evYJV5A9e7zPwpVrbdVY4iPiLOoRBpKdEvDHEsldL+w
+ 7zV3XeyuEmeZ3AQqVcL66Z/yTVv8eblVl55RmCj5bUZY1NidnVUiU5O4aY4jDNYXJqJkYhyS1ObuZD5S
+ TRjiM+IsKpF8G+/b8pMFjqYS2n1SzuQ+b3ZWiTNNbgKVKmH99E85Gi2WJbBOG0ZhouThlcsSbfNg91aJ
+ jEh86WabPEkartogRBdGbFlqJ0rJa0utBuMz4hwqkWjpTUNhyOBwKqHJRL/TvTr2VYlzTW4CtSpRNPQT
+ WE+lJDHr/JM09I8oJDuMskRrd3ZViSd14HZ55b/Uzlq1jIPMeDQqc4lJnKraInxGnEMlEt+k+a0BeY6n
+ Espt2/F8r41dVeJsk5tArUoUk0YThSeWi+mqdRdeYpwFeWfbKEu0pnJ2VQk1Ytrnff+J41j5BHo0nLdx
+ vaiyMCEvLf1BC3xInEMlsALR/jxongOqROpQrZlp8kzYUyXON7kJ1KqEWZgoWPuiYW5+PccCts6RvxGM
+ skRrTL2nSqgB05pifwWJF1Cp3tFwfhRfS52eyTBVP0N8SJxBJdaOURUHVAnlAhwppxw7qsQZJzeBWpUw
+ CxOFUkDJMK91x+StLcjbkPJ5NDtLO6qEGi/1Llt7Ei+gcvJOlKn6Lka3zhzJb0QvZ+BD4gwqkRjNnlHd
+ EVUinfi71+V3+eynEuec3ASqVcIqTBTMfalevHYmoepnB7J3uhETNXvq+6mE9pjvjneptNV18h0nJR6F
+ xa2y5EleA+0CfEicQSXkil2n/BxRJdKbfqdI9grYSyXOO7kJVKuEWZjIOlbFevFas6c62oFs8dU4jfob
+ COynEpos7+jKJYerSi7EyURp6/IZfobMR2ZsLz4lzqAS0rPuWss9pEokzyVVfaPPkp1U4syTm0C1SpiF
+ iey8x2JZYnXQju1z5Mod5ZCodR7sjiqhyeCe8X4in1UHi+rr75PvGmsVkfnIjO3Fp8QZVAKfE80uRYlD
+ qsSWZ/KfGfuoxLknN4FqlTALE9nbtlSWWD9pQt7bgpyNK59Few5hN5VQOtrVd5UkXkBVciFyrz8mw1Fj
+ j6QhysQw+JQ4vUokX3XXUu4xVSJxqnaZYHcN7KISZ5/cBOpVouyFF1ywUllifZ4zuatiMvUOIyJqd9b3
+ UgnlTVVrSziVSFmqEfA4IzGpGP4EFaZc5iNz9RB8TBxAJdDeh2OqRBJhdo2frok9VOL8k5tAvUqYhQms
+ JymWJdZfdEZ3MjbO2KrdO9zJdCivlev3MgidNW5jrGXTlxm7BBVpbCmHOb8BHxNDJarBDomGmy4pTAyV
+ yLCDShxgchOoVwmzMJEpBRTLElhnBVZ3dBtXDohW5L92Mh1ppHSz8sGSahIBrXjBRmxgp5b4QcCKOo98
+ cjB3VHxMDJWoBjskWiw9NiGGSmTorhKHmNwE6lXCLExk0ualssSWuYRGd/TLubzRivzXPqZDCSV2LUpM
+ JLJbYYex5sKsscLY2dImzxTNCfiYOIBKdNXtC1GJ3S/DS6W3ShxjchNoUAmrMJHJm5fKEluuOaM7qhUx
+ ApAVjtI+KpGGEuvL/NVIBbXTRfHJzxorIhLzC5YpjexB8TlxAJXo6lcfVCXkRdFv2K+MzipxkMlNoEEl
+ rMKEXncsliW2eGNGd9R7vbxN+zzYnVRCCSX2zjc5EtlFe554i7n0L75uM1iUZYmsrOBz4gAq0dViHlQl
+ 5ODUvuf32dFXJY4yuQk0qERytUnUUkCpLLH29RwzRlygmvzUR+esyX/tohLpBKed5zfNJBJqWpPY0VxK
+ /7HAmcIryxJZNcTnxAFUYku+NOFCVKJr/HRNdFWJw0xuAi0qIa8YiepnlMoS22yfUZjQ5iuVz2BN/msX
+ lUiTdF2n5mdIZNcaj3gDCIIYYisGwmqevN+AFYjTq0TqJfWcdXZQlZCX4lCJDD1V4jiTm0CLSpQ98cyN
+ WypLbAtfjcKE9uwDPsqwxhTvoRLJPk8SSqSya/nKcfCBtcVFYjyBIk81f6JYgTiDSiR5wPbHa/IcVCWw
+ CXGCzOdl0k8ljjS5CbSoRGq9YrTbq1iW2OaLFafYqhOWyiewKv+1h0qk4dcpQolUdq10Ubw+Ig+RtzL0
+ TdrGvN+AFYgzqEQSiW7KmAqOqRJJfIn2gaSbShxqchNoUYnkcpNgNU7JlG+ct1MUIPVmLwdDq54D30El
+ 0tr1aUKJ9FwMxzEOE7Gy+FYMQyoNb95vwArEGVQivXzW5CgzHFMl5CXRUxevi14qcazJTaBJJRJnSqBY
+ lVJZYuuNXkpmObAWo9z/VfmvHVQiFdZTJYNxOKKcUYn1gAIPoXHFMEi6qlkDfQiVSL7r6/7d6wnZq64F
+ +6uik0ocbHITaFKJsi+uWpWSJd9q/EoK5Eg1K51gysFKbeygEslpncyBk/ayHMPEakb2Q+ykqDRyWlXB
+ N8caxBlUQrl++j3GckyVkGPTMXi6MvqoxNEmN4EmlUidqZjUqpSyQuYsSQujMJFc0clLaSLWuUk7qERi
+ i052a0pLVZanWM2ok2InRaWRlZBCigtrEOdQCcUt6ZYMPKRKJGUJIwf5jOmiEoeb3ASaVCK53gSpZ1Uy
+ 5JujV6MwkdzAyntWGetscX+VSKX4NLVrR3Lo4pFjNSP7IXZS9LbFrKqSKmEV4hwqkX41/WTikCohb99R
+ lsjSQSUOOLkJtKmEvKEkWC1QSgptd5HLhYnEPsknuGLW2eL+KpFM8O2X1TDBEYlSqSaOzEJgKP3PwkQ2
+ uWrJ4mIV4hwqoT6i86HPUxOHVAl5g62a4PE82K4SR5zcBNpUIrmUBcn1V3rybbuLbBQmsBZRLEusdJP6
+ q0SixCe8NeWxS4eOIzMWGArTUlAaWZYoiRJWIc6iEmpo/L5LGuaIKpGc7kg4ZdmsEoec3ATaVEILuTny
+ 1k3ymowO0Ws5hSTvhnKCaqUt7q8S2E+g3vXbjDRVpTAmjsxYYCi0uzCwUuVLXjlWIc6iEqmEz/QoHB1R
+ JWQoURqZ585WlTjm5CbQphKpCYuRpYbk1UCMDgndcjla3rzlYveqebA7qEQqxPjgFCQHL9jtTFki0e6C
+ 0ggrVDRCWIc4j0pk3KT325X8gCqRdKnns+bXxkaVOOjkJtCoErovRcj4oPQSjZVmOaKYQ5I6VM5PYaVW
+ uqtEEh+d1IHDMYm8QYlPnH/xUruzSiODu6JLjnWI86hE9or+uDV/ejyVSC7tUbsusE0ljjq5CTSqRHIt
+ C4RFKJUlehT9yvVo4cWWOrN6wlV3lUi07KQVQ2kx87Y4vhIiQRbanTVKMrgrZr2xDnEmlXjKzpjYqBOH
+ U4mfiQtWG4M8S7aoxHEnN4FGlTByPDJAQKtGl5k7RmECay2UaiTrU8vdVSKJ1k4a5ktblbeYcT+jTopT
+ yNpzIYhlVxUrEWdSCcV4Ept04mgq8ZQ4VScNai+ODSrx57iTm0CjShg5HnHvJiaU0eUuN0Qruh1KNZL1
+ E666qwR2EzjpvJLq0xGaGwWGwuBlrYu4lsqFKqxEnEsliuWtj+vd7YOpxM8kZur4NpJrZL1KHHlyE2hV
+ iXKOR9xhyZXP6BO+lkUrChBKnVmfck3M6mMj2I8nnYiFD04EDkrkvqZYc+PAUI4JmiVS4stBE1YiPmL8
+ asknOBtVojwL4v39ykxqcnmi37UUnAnskKi49R7SG2uUrousVolvR57cBFpVwsjxxG/dkPcfY/PrORbK
+ ohV5p4XObEj+l8KlKrAfT7K/E5cM5SjlMnFxFVcMH1o9GaskL6WyecVKq8mbxlaVMO6Bm4+ror+iE1NB
+ oddYgzBV4kmp0XeYknjVrFWJr1g95QiTm0CrSliFiSgsLXj6m1/PsVC+tyIXF206qydc9VaJxFE1bVZf
+ pAXMfU9x1lrYHWF3M8khofBGoQprraajShhzqtcFFAdSiXvlvj3xZXh5rFSJ/OSmA4lEs0pYhQkel5YU
+ ZW21WGAYaaw1UV5zZZqgv0okxqKTnNYiv7NMzBeXJeRKwhXNWBhxJRmFBqy1mp4qYcqECyhas/hHUYmn
+ 79osrverb5DnwiqV+PMPVk44yOQm0KwSRmGC5x5KkXmvUhh2l4HdD8U0wXpPaXeV6FelrUN6AXr6JDaT
+ xsOUutLIkTPyNFhrNV1VojTTyXNruewxh1CJpwf9oaIhEiZrVKIwuekXVjkGzSpRTspGF2vhMbZu2XZ5
+ i8ewiKWobusjm94qkXTz1CohO6AXLeOvVg6fnHSsCoAwi1ahCqutpq9K/H0qX3gzTTpxdpV4vP+Se6Lo
+ doiEyQqVyE9uenOUyU2gWSWswgRWm8g+gNTxUbHyzcVKboXObJlt2lslEuNzapWQXoBetYxHMwkMhblR
+ RVicqVUdxWqr6awSdWa9QSdOqBLvbxOKd8coXFfQrhKXMLkJNKuEVZgIBrf0GFuP13PMlK10uHWKr/rb
+ ENnsrhItExCxiQ3W15BegDo28Wimq4jChFpbwWce6zyx2mq6q8Tfn8WH+cFtbWr1hCrRxs2YAltDs0rk
+ Jzd9xhrHoV0ljMJEuKZKj7H1C2GxwwxYyXimboOztLtKtGQtsIkN1leRXoD2VcUBRxoYVhQm5MBZVwRW
+ W01/lXDDYFcnXDBYd60fVSWqZe6Z06oSlzG5CbSrhFGYCCajcN3X34gmiVmNoMgm95a2mQ2RzfWphPQC
+ tMGJ10nXqChMiC/EfGEL1lvNHiqhPliQ8K7qKzymSoxAopY2lbiUyU2gXSWMwkS4Wgv2u2OyvXx30UVe
+ FJMNkc31qYT0ArQSUuxDo5Ej8tyKrRHpGvOKwHqr2UUl/v79XZiiQXypuMCOqBI3lXHQoFElLmZyE2hX
+ CaswgbWKF+f6anFCMZUUjA+WVZrMguD6VEJ6AYqXH6+iDZ+wnWlKr2oaFAfrrWYnlajTiYqfszueSrz7
+ PjSinhaVuJzJTWCFShiFCX87FmIOa9ZjC6Uaebh3isZ8yxN+16cSFYWJONzQhk88dpbWt6seqeBgxdXs
+ phJOJ76Y9YkbM6l5NJX40HLhDVpU4oImN4EVKmEUJrzRKDyf2vV54uJME2+ein3eEtnsrhItEoZNbLC+
+ jvQCUnMRd1IbPjmlLCmBioS+PX8AK65mR5Vwrsp9cSrphJXgP5pKvBvZpibqVeKSJjeBFSpRnFQabvhC
+ Ya9rSaxcQMSlXsoKbJgHq6gEXtFZDfbjSVSipYSDTWywvo5U1LQH+GBBDwOswoTQdvuKwIrE+d4Jq/P4
+ 0QgojC8yUQn0u5aCq4MdtjKqEi1Uq8RFTW4CK1Si/IAa5bELPn7XyXXlwgSscKnLmx4aSlQC7Ws5gErI
+ VGFiNeNz1odPyLIsgcs8oW2PsCLRMi5l+qjEFFAkX15EOSpMVALtHcAO27HzZANPpUpc2OQmsEYljHId
+ 1sKSwibnPaFcmFhuzeI6m26F3iqRFH1OrxJJYQLNRGzQ9DBA5BtlCVxIuzkP9hJUwlGuUBQDpiOqhD7B
+ baBRpxKXNrkJrFEJ442Yi/teSNh3vvSKhYnlWIXObJoH218lEmPRYrOwiQ3WzyCVSiYz4gHXA0OZlhSD
+ LNKEFVcE1iQOqRKOUoUiXxs5qkqMVzjVUqUSFze5CaxRCaMwsbjvhXpx5zi2WJhYbvnkFmRsMwrXqBLS
+ CxCpkjgwy4UBwqkWBlIoe8l8AqxJHFUl3PBlE083BZN7QpX4eBfx5fa24GiN18HWUaMSlze5CaxRCaMw
+ sTiGhbRU5+uuHNrMq5Qm724zN71VIjmZllnD2MQG62eQXoCYkhZni3JhgBjyeJRFBrDmHLEqcVyVcCOU
+ u0EKuz6hSmia/PP+S6bT24fjWVChEhc4uQmsUolyYWK5rPLuSe/LrhzazAmRUrZ4yzzY/iqR5sbwwSaw
+ KwLNOYS9EHWkOHbLBYYiloy/dFGWqJkZjVWJI6uEO/vMFZcvTZxZJSZ+6lWVTbM7ng22Slzi5CawSiWM
+ wsS8Dv5W6Hd/g2JoM90SJR3Z+IRfb5VIn0WsyMaYYFcEmnNILyAuPcT6j8YEeSJoXhBJQnse7KWpxN8n
+ PXzN55wOoBKu13eaTtR8Pc8eSyUuc3ITWKUSRmFi8s5Tn5jY5rwrFEObyZqUJstu9JR6q0Sqrj3uUeyK
+ QHMO6QVEXYizRXmTKuxN9K2LQLNmZjRWJQ6uEm4QVcc82+1DqIS7tZWiyk3XmetXiqESFzq5CaxSCaMw
+ MRmVfPF6o/OuUAxtprx5cgcyNhrh7iqRDG3F/B8T7IpAcw7pBURdiEc7/xCAcKb5iqIsUTEP9gJV4u9P
+ 7S7JBhMHUQn1Zuk1ItdMWSUudXITWKcS5cLEZFTyE4+6vp5jphjaTFe44h8RG0vp3VUi6WuVDTXArgg0
+ ZxH2LepC/N3nA0PhJ/CYTcR2VTqIdYnjq8TfJ602l+v3YVRCc7p6ZD2vnKJKXOzkJrBOJcqFibJh3iHL
+ WQptptAlU0qc2GqDu6tE6srhgy1gTwSas0gvAM0z0WAXAkNRmOAlcHGOVTYI6xIXoBKqTOQeKT2OSih3
+ d9/nYK+Skkpc7uQmsE4ljMKEWwN/KeyQ5CyGNk/F3m41Nt1VIq2hdHi8BHsi0JxF2glmV+LBLFV1sIqH
+ fe+xXa5LQWJl4hJU4u+T4r9koq8DqYRyP+3g2l0ZBZW44MlNYJ1KGIWJn4XXhu/hlhSe4JvuiVLxemsp
+ vbtKpJLWoTCBPRFoziI7wUxyLCAl6yGsLxM7tIC6FCRWJi5CJf7+TMPYzNd5JJVIp7GPYMIiqxIXPbkJ
+ rFSJcmHioWCYO9i8hLwmOe6VJA6xuZTeXSVSAe5QmMCeCDTnEZ1ghjz+5ktVHTHswayLMavzU7EycRkq
+ oTgwma/zUCqxz3zsqyanEpc9uQmsVIlyYeKuYJg7v55joVB4cJ2RZoCx+Ymh/iqRCvD2HB12RKA5j+gE
+ E9NIP4oCJoYmGF9xcdSdHlYmLkQllKhbV9ZDqUR6EY5H6wwyKnHhk5vASpUovmTV3Wf5V2JgB30pvYHj
+ tqQhm/Ot/VUiFeD8bNNasCMCzXlkJ8iSx7mocmCIlTxolWa5MlTC2sSlqEQaVetG+lgq8ZTcMxvnAl49
+ ukpc+uQmsFIlCi/gcNzk6xZ9b0FPqTDxvlS83nzt91eJtLvbk8LYEYHmPLITpKaxfJTtjTC/VALCMqhM
+ QWJt4lJUIr0V9J4fSyXSYGLUr8uoKnHxk5vAWpUovoj1f/lQY7tfrFEsTCSGPLA95d9fJRSF3Vpib1cJ
+ 2Qky5bH1QGMGYfi8nRFDVmOzHFibuBiVSMy/nrw5mEokvkr/x5yuC00lLn9yE1irEqV5Q+5Gw/8pmw2e
+ TqkwkY1repiaHVQiFeDNSWHsh0BzAeFLkuWMBtOwHGJs/FmIwA+tFlibuBiVSDwYff8HU4k0iTtSTkVS
+ lbiGyU1grUqUCxNZNs8pylAqTBTYrlk7qIQSGG29Q7EbAs0FpBeA5tjFtAJDrAZ84BZ/V7U+KlYnLkYl
+ Eg/mMlQicQNHyqlIohLfrmFyE1irEuXCRJa9pkok91gVHTRrB5VQUk5bTSJ2Q6C5gPQCYFli22GJrLhG
+ 0BpbzdoUJFYnLkclksAa7TFHU4lE3MYspyKJSmS5pMlNYLVKlAsTOfZySBJjXUWHXOseKpEObelHzmrA
+ bgg0lxAWHsY86ppZVRcnslgnESrVTvPF6sTlqETydaI95nAqIevX48G6ItUqcVGTm8BqlSgXJnJsn/qf
+ Aftvo4Nm7aESyqSsjTYReyHQXELYNniSkXaY3qW4RhaliWdJVdserE9cjkrU2f/DqURyg+92714FtSpx
+ WZObwGqVWFWY2D6nKEcS1tfQ4brfQyW0k9nWVeyEQHMJYSSWby7+0k2RFdfIoiqxj1r9KD7WJ4ZKVIMd
+ EnUqkdzgozBRok4lLm1yE1itEqsKE3u8nmMhuckq6KFZu6iE8mT7tuQYdkKguYQ0EnPOKz5bOw0WXyPL
+ eMdt1Y/iY31iqEQ12CFRpxLJDT4KEyWqVOLiJjeB9SqRZs9tdnk9x0xirSvooVm7qIRSv942dNgHgeYi
+ wkjMpiUyZRUiK66RqUmoz7xaDVifGCpRDXZIVKqE7NF+iYBroEYlLm9yE1ivEmsKE9h0D3CEFirvliL7
+ qERiMjYWsLEPAs1FhIWfrXJkUCtEVlwj05yoeMDqQyRsQFyuSujW9ngqkdzgW+djXzUVKnGBk5vAepVI
+ 8pY2ve8/jrzXbbo8u7GPSqSv0dmWc8IuCDQXEUZiPnzUrQpjI66RKbMdW8P6R/GxAXE5KiGDbn3/x1OJ
+ 5AbfLxNwBdgqcYmTm8B6lVhRmKi3Ce0o7rdBh3mwe6mEejYbRg97INBcRBiJaTJSPPlqWa1MnDqbLHts
+ k+uL8tiAuByVkPvXr7vjqUSS99yvqngFmCpxkZObwAaVaC9M7PR6jpn2BFiXORs7qYQWTGzIkGEHBJrL
+ CC/gSVTVq0Q2ntA02d/oxBrm4GML4nJUArsl9J4fUCXkExO9B+aqMFTiQic3gQ0q0WyX93o9x0x7AqzL
+ /O+dVEJ9y+3NapXFDgg0lxFegLMtUUtVaBPP1nIXQPxMXYN3ii2Ii1GJ5ArREzcHVInkGkT7QKGsEpc6
+ uQlsUInk6rPYdypdawKsz5SNvVRCPZ3VMoHtCTSXEV6AM8uRPa3qi3hA8EnIRkOmG1sQF6MSSciteycH
+ VInkhWLrg9nrp6gSFzu5CWxRCXl7Wez7WE5rAqxPlnU3lUh2PLFWJrA5geYyIjr7EO+mMlkU57YfxbeE
+ lWrAFsTFqITMHWYG7oAqseOYXx8llbjcyU1gi0okF7ZBlxRPltYEWB/HaDeV0FVvpUxgawLNBnE48y72
+ LSsDwzi3/T02yS3zB7AJcSkqkTwhmfFOjqgSO+vnVVFQiQue3AS2qITq7ubZ+amcxsJEpyLJfirxpDxa
+ 57q9ajoiNibQbCB0KjZ4lf2IjeSXuCcts7awCXEhKpF+i5mBO6JK7NinqyOvEpc8uQlsUYnk8iuz90S6
+ tsJEl3mwe6pEToTXmEdsSqDZQERnj5HRqHzEKi5M3Map7pbACJsQF6ISiaHNeSdHVIkkPO8Tf18lOZW4
+ 7MlNYJNKyPurzN6XWFtholORZEeVSA3Hwm37M7DYkkCzBdYG3/nXXR0YxjNfo9CiYR7spapEqvQ5X+mI
+ KpGE5/0G/erIqMSFT24Cm1QiY8YyYKPdSDLARToVSfZUidwv8LVnnbAhgWaL2H5+5Aa/2l7E5xApedOc
+ N2xDnEMlHlr1+Wf62EvuujuiSiTh+ShMZNFV4vVViMQ2lcjkRHQ6pXjyKD/LkKfJjy2wq0o85ZJot41F
+ bGxGoNkitlxRhr3a0sST7iOr2SR22IY4g0o8/e+mLQJVvr/sXXBIlZDP1XW9uq8LVSVeX/rkJrBJJZLr
+ r8Ser+dYUMu9GXoVSXZVib+/U18UfGyKhbARgWaLvBdQX/tPJt0HmjxzbEOcQSWmYPVdg7QpkUTeQh9S
+ JZLwvH7T54amEpc/uQlsUwl5g5VYOdW/gcTzKdCctMmwr0qohgZ8bBhQbEKg2QSrpzQEhtkzaEtfYCPi
+ DCqxJM/e1cYT98qZ55Nsh1SJJDzvN+rXhqISn/DR5bNNJZJLO0+vFE+BlsIENtnMzipRkon/3d6vmmjk
+ QLtJ1gtoCAwzxZXW4BIbEWdQCXz+v3d3FYHcb23sbvIbHlIlkvC8TdmfE6lKXMPkJrBNJfIpiYQT/NJV
+ Q2GiW5Fkb5UoyoQ7D1sonh5SO42PTLJeQEO+S3sj1UxbcImNiNOrBJ8Xao37bz2uLQjjMVViFCZqkSpx
+ HZObwDaVSC7APPu+nmOhvjDRrUiSqMTdGkr37U/jrN5/ecja7N8Pd2o4gI9Ncl5AS2CYK0w0BpfYirjF
+ 0LWBnUXUqoSwmLffszKn6PJMyRNPVAI9bkO9kLBDokElRmGiFqESVzK5CWxUCdUGqbROIlxDfWGiqfZb
+ oiGaKlB0jLMznQI3tx/v7h8fcQs/ub8e7u4+5L+cZb0KsL5k0xxW0BhcYquNYGcRtSqhBHW3dw9SKh6/
+ Z1NsxZ8bbEjeFlAvJHxGNFj6JDzf+9HYiyVWiWuZ3AQ2qkT1tX2SH83NJjck/YokJ1CJtrJ8FdivTUZo
+ mmr/PfZxAJXIftM3t7dfFk/+9rYU95XfwXVMlUjC85Pcx5dIpBJXM7kJbFSJwjzHmJP4IGfozUlUQp0u
+ swXs1iZju5oCwx77OIBKtD3ar1CWxYOqROKgdIvCrwyuEtczuQlsVIn8PEfBafKZtb3pNQ/2VCrx92fb
+ S6ossFcb/fTaHEp9H6UcvQY22wh2FlGpEvVFLx2jMHdQlUhe5XSK+uIlwlTiiiY3ga0qkU3CCrD6zpy+
+ NydSiV5WBGCfFWCDmIrucrBVTOv8AWy2Eewsok4lquNUHfOp7YOqRPIqp91foXChkEpc1eQmsFUlKksB
+ J7q2Tt+bk6mEPgF/JdhlBepBGwNDdR9t82DPrxLbEk7274IcVCWS0dn1Z4kvGK8S1zW5CWxViUoXq9vM
+ 0zKn783pVMIda2vSg8AOK9CMV6uh0PbRPH8A220EO4uoU4lNKb+K1/geVSUSx6tftvaqgEpc2eQmsFUl
+ KksBrZ7jWup607ECd0qV+Pv3vo9ONNQVNN1tDcW0MWp+yBLbbQQ7i6hTiYcNQ1/z9R5VJZK5sCd4PPYS
+ WVTi2iY3gc0qUVUKOMHrORZO3pvTqoTTCTV908K7L02SrehucyiG7TjNHim22wh2FlGnEn+f7mrnRghu
+ q5ySo6pEUrUfKSeVWSWubnIT2KwSVaWAk/kfVfdaz1m5p1YJ591Hv/PQyPs2iXAoutsciinZmuaHLLHd
+ RrCziEqVmHRiRTxR+xLZw6pE0rGRctKYVOL6JjeBzSpRVQo42fS5KqPd8zI/vUo4a3VfO5cr4t3H+xWp
+ ttQLaA/F0spv+8NZ2HAj2FlEtUo4Wkf+ffWVf1iVSFJOY5aTxqernNwENqtEVSmg2XNcDQ5YpGdvzqES
+ jqf7j01+7ftVCjGRegHtgWEy6b79hA+iEs5ofq+vY39ssMeHVYlkfMaDdRqfrnJyE9iuEhXe1Qkf608u
+ 6ZSyFWjkTCox8fv+Y43Buv34vdEsxCReQHsolky6XzGbARtuBDuLaFMJh5No2zW6qXhdL+e4KpFc4qN+
+ rfDjKic3ge0qMTgnjw93H/W3B727/XD3/XH4ffvwsyTRN7fFt/wOBpfFUInr4Ofj8iJYJwwTQxxOwc+H
+ uy+3USgyvfhvDP7gqvj79/9Gy+RgwSmwAQAAAABJRU5ErkJggg==
+
+
+
+ anbei sende ich Ihnen die unterschriebenen Nachweise über die im Rahmen des Betreuten Wohnens für [Salutation2] [CustomerFirstName] [CustomerLastName] erbrachten Leistungen zu. Nach unserer Berechnung ergeben
+sich für den Betreuungszeitraum [AccountingPeriod] hieraus:
+
+
+
+
+ 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
+
+
+
+ 17, 17
+
+
\ No newline at end of file
diff --git a/ReportImp/WegweiserBetreuungsdienstReports/WegweiserBetreuungsdienstReports.csproj b/ReportImp/WegweiserBetreuungsdienstReports/WegweiserBetreuungsdienstReports.csproj
index 074fc460e..41d887f8a 100644
--- a/ReportImp/WegweiserBetreuungsdienstReports/WegweiserBetreuungsdienstReports.csproj
+++ b/ReportImp/WegweiserBetreuungsdienstReports/WegweiserBetreuungsdienstReports.csproj
@@ -84,6 +84,12 @@
ServiceRecordListReport.cs
+
+ Component
+
+
+ SettlementReport2.cs
+
Component
@@ -157,6 +163,10 @@
SettlementReport.cs
+
+ SettlementReport2.cs
+ Designer
+
Teamauslastung.cs
diff --git a/ReportImp/Weitblick-ambulantBeWo/Weitblick-ambulantBeWo.csproj b/ReportImp/Weitblick-ambulantBeWo/Weitblick-ambulantBeWo.csproj
index 484584e32..8ecd03181 100644
--- a/ReportImp/Weitblick-ambulantBeWo/Weitblick-ambulantBeWo.csproj
+++ b/ReportImp/Weitblick-ambulantBeWo/Weitblick-ambulantBeWo.csproj
@@ -16,9 +16,9 @@
true
full
- true
+ false
..\..\Host\bin\
- TRACE
+ DEBUG;TRACE
prompt
4
false
diff --git a/ReportImp/ZukunftWohnenReports/ZukunftWohnenReports.csproj b/ReportImp/ZukunftWohnenReports/ZukunftWohnenReports.csproj
index 046ce27ed..55050a2bb 100644
--- a/ReportImp/ZukunftWohnenReports/ZukunftWohnenReports.csproj
+++ b/ReportImp/ZukunftWohnenReports/ZukunftWohnenReports.csproj
@@ -17,7 +17,7 @@
true
full
false
- bin\Debug\
+ ..\..\Host\bin\
DEBUG;TRACE
prompt
4
diff --git a/ReportImp/skmRheydt/skmRheydt.csproj b/ReportImp/skmRheydt/skmRheydt.csproj
index ba386aa29..d9e613fe8 100644
--- a/ReportImp/skmRheydt/skmRheydt.csproj
+++ b/ReportImp/skmRheydt/skmRheydt.csproj
@@ -17,9 +17,9 @@
true
full
- true
+ false
..\..\Host\bin\
- TRACE
+ DEBUG;TRACE
prompt
4
false
diff --git a/Service/Plugins/ServiceRecordValidator.cs b/Service/Plugins/ServiceRecordValidator.cs
index da2fa5a88..97c05953e 100644
--- a/Service/Plugins/ServiceRecordValidator.cs
+++ b/Service/Plugins/ServiceRecordValidator.cs
@@ -346,7 +346,7 @@ namespace BeWo.Service.Plugins
{
if (!isGroupRecord)
{
- ServiceRecordValidationResultDC resultdc = CheckOverlappingEmployeeServiceRecords(newServiceRecord, start, newServiceRecord.Employee.EmployeeOid, rd);
+ ServiceRecordValidationResultDC resultdc = CheckOverlappingEmployeeServiceRecords(newServiceRecord, start, newServiceRecord.Employee.EmployeeOid, rd);
if (resultdc != null)
result.Add(resultdc);
}
@@ -358,7 +358,6 @@ namespace BeWo.Service.Plugins
if (resultdc == null)
{
resultdc = CheckOverlappingEmployeeServiceRecords(newServiceRecord, start, employeeOid, grd ?? rd);
- resultdc = CheckOverlappingEmployeeServiceRecords(newServiceRecord, start, employeeOid, rd);
if (resultdc != null)
result.Add(resultdc);
}
@@ -505,15 +504,8 @@ namespace BeWo.Service.Plugins
if (totalFLSApproved > 0)
{
- //SupportConceptStatisticsDC stats = statistics;
- //if (stats == null)
- //{
- if (stats == null)
- {
- stats = factory.CreateSupportConceptStatisticsImpl(reldc.CostBearer2SupportConceptOid.Value,
- DateTime.Now, newServiceRecord.ServiceRecordOid);
- }
- //}
+ stats = factory.CreateSupportConceptStatisticsImpl(reldc.CostBearer2SupportConceptOid.Value,
+ DateTime.Now, newServiceRecord.ServiceRecordOid);
decimal flmTotalRounded = 0;
@@ -553,7 +545,6 @@ namespace BeWo.Service.Plugins
}
return null;
}
-
public virtual bool CheckZukunft()
{
return true;
@@ -658,26 +649,81 @@ namespace BeWo.Service.Plugins
return null;
}
- private SupportConceptPeriodStatisticsDC GetStatisticsForServiceRecord(SupportConceptStatisticsDC statistics, ServiceRecordDC newServiceRecord)
- {
- if (statistics != null && statistics.PeriodStatistics.Count > 0)
- {
- foreach (SupportConceptPeriodStatisticsDC pstat in statistics.PeriodStatistics)
- {
- if (BelongsToPeriodStatistic(newServiceRecord, pstat))
- return pstat;
- }
- foreach (SupportConceptPeriodStatisticsDC pstat in statistics.PeriodStatistics)
- {
- if (pstat.SupportConceptApprovalPeriod != null && pstat.SupportConceptApprovalPeriod.ServiceCategory == null)
- return pstat;
- }
- }
+ private SupportConceptPeriodStatisticsDC GetStatisticsForServiceRecord(SupportConceptStatisticsDC statistics, ServiceRecordDC newServiceRecord)
+ {
+ if (statistics != null && statistics.PeriodStatistics.Count > 0)
+ {
+ //Prüfen, ob es Bewilligungen mit Kategorie gibt:
+ if (statistics.PeriodStatistics.Count > 1)
+ {
+ bool mindestensEinerHatKategorie = false;
+ foreach (SupportConceptPeriodStatisticsDC pstat in statistics.PeriodStatistics)
+ {
+ if (pstat.SupportConceptApprovalPeriod != null &&
+ pstat.SupportConceptApprovalPeriod.ServiceCategory != null)
+ {
+ mindestensEinerHatKategorie = true;
+ }
+ }
- return null;
- }
+ if (!mindestensEinerHatKategorie)
+ {
+ return null;
+ }
- public static bool TimeSpanOverlapsWithOtherTimeSpan(DateTime? pStart, DateTime? rStart, decimal pRoundedDuration, decimal rRoundedDuration)
+ //Prüfen, ob es Bewilligungen mit unterschiedlicher Kategorie gibt:
+ bool mindestensZweiHabenUnterschiedlicheKategorie = false;
+ ServiceCategoryDC cat = null;
+ foreach (SupportConceptPeriodStatisticsDC pstat in statistics.PeriodStatistics)
+ {
+ if (pstat.SupportConceptApprovalPeriod != null &&
+ pstat.SupportConceptApprovalPeriod.ServiceCategory != null)
+ {
+ if (cat != null)
+ {
+ if (pstat.SupportConceptApprovalPeriod.ServiceCategory.ServiceCategoryOid !=
+ cat.ServiceCategoryOid)
+ {
+ mindestensZweiHabenUnterschiedlicheKategorie = true;
+ }
+ }
+ else
+ {
+ cat = pstat.SupportConceptApprovalPeriod.ServiceCategory;
+ }
+ }
+ }
+
+ if (!mindestensZweiHabenUnterschiedlicheKategorie)
+ {
+ return null;
+ }
+ }
+ foreach (SupportConceptPeriodStatisticsDC pstat in statistics.PeriodStatistics)
+ {
+ if (BelongsToPeriodStatistic(newServiceRecord, pstat))
+ return pstat;
+ }
+ foreach (SupportConceptPeriodStatisticsDC pstat in statistics.PeriodStatistics)
+ {
+ if (pstat.SupportConceptApprovalPeriod != null && pstat.SupportConceptApprovalPeriod.ServiceCategory == null)
+ {
+ if (pstat.SupportConceptApprovalPeriod.StartDate <= newServiceRecord.Start)
+ {
+ if (!pstat.SupportConceptApprovalPeriod.EndDate.HasValue ||
+ (newServiceRecord.Start.Value.Date <= pstat.SupportConceptApprovalPeriod.EndDate.Value.Date))
+ {
+ return pstat;
+ }
+ }
+ }
+ }
+ }
+
+ return null;
+ }
+
+ public static bool TimeSpanOverlapsWithOtherTimeSpan(DateTime? pStart, DateTime? rStart, decimal pRoundedDuration, decimal rRoundedDuration)
{
DateTime? pEnd = pStart.Value.AddMinutes(Convert.ToDouble(pRoundedDuration));
DateTime? rEnd = rStart.Value.AddMinutes(Convert.ToDouble(rRoundedDuration));
@@ -690,15 +736,25 @@ namespace BeWo.Service.Plugins
return overlaps;
}
- private bool BelongsToPeriodStatistic(ServiceRecordDC newServiceRecord, SupportConceptPeriodStatisticsDC pstat)
- {
- if (pstat.SupportConceptApprovalPeriod != null && pstat.SupportConceptApprovalPeriod.ServiceCategory != null)
- if (pstat.SupportConceptApprovalPeriod.ServiceCategory.ServiceCategoryOid == newServiceRecord.ServiceDescription.Category.ServiceCategoryOid)
- return true;
- return false;
- }
+ private bool BelongsToPeriodStatistic(ServiceRecordDC newServiceRecord, SupportConceptPeriodStatisticsDC pstat)
+ {
+ if (pstat.SupportConceptApprovalPeriod != null && pstat.SupportConceptApprovalPeriod.ServiceCategory != null)
+ if (pstat.SupportConceptApprovalPeriod.ServiceCategory.ServiceCategoryOid ==
+ newServiceRecord.ServiceDescription.Category.ServiceCategoryOid)
+ {
+ if (pstat.SupportConceptApprovalPeriod.StartDate <= newServiceRecord.Start)
+ {
+ if (!pstat.SupportConceptApprovalPeriod.EndDate.HasValue ||
+ (newServiceRecord.Start.Value.Date <= pstat.SupportConceptApprovalPeriod.EndDate.Value.Date))
+ {
+ return true;
+ }
+ }
+ }
+ return false;
+ }
- public List ValidateServiceRecordDeletion(ServiceRecordDC serviceRecord, long employeeOid)
+ public List ValidateServiceRecordDeletion(ServiceRecordDC serviceRecord, long employeeOid)
{
var result = new List();
diff --git a/Service/ServiceImplementations/OperationsServiceImp.cs b/Service/ServiceImplementations/OperationsServiceImp.cs
index 284bf2025..649aab507 100644
--- a/Service/ServiceImplementations/OperationsServiceImp.cs
+++ b/Service/ServiceImplementations/OperationsServiceImp.cs
@@ -29,7 +29,6 @@ using BS.Shared.DataContracts.Compact;
using BS.Shared.DataContracts.Reports;
using BS.Shared.Extensions;
using BS.Shared.Services;
-using DevExpress.XtraCharts.Native;
using Newtonsoft.Json;
using Utils = BeWo.Service.Core.Utils;
@@ -467,12 +466,30 @@ namespace BeWo.Service.ServiceImplementations
try
{
IList list = DAOFactory.GenericDAO.GetAllActive();
+
+ var dcList = MapperFactory.ServiceDescriptionDC_ServiceDescription.MapToNewDCs(list);
+
AppSettings settings = AppSettings.CreateSettings();
if (settings.SortServiceDescriptionAlphabetically)
{
- list = list.OrderBy(sd => sd.Name).ToList();
+ dcList = dcList.OrderBy(sd => sd.Name).ToList();
}
- return MapperFactory.ServiceDescriptionDC_ServiceDescription.MapToNewDCs(list);
+ else
+ {
+ dcList.Sort((a, b) =>
+ {
+ if (a.Position == b.Position)
+ {
+ return a.ServiceDescriptionOid.Value.CompareTo(b.ServiceDescriptionOid.Value);
+ }
+ else
+ {
+ return a.Position.CompareTo(b.Position);
+ }
+ });
+ }
+
+ return dcList;
}
catch (Exception e)
{
@@ -1970,6 +1987,8 @@ namespace BeWo.Service.ServiceImplementations
try
{
Mandator lOriginal = GetMandatorEntity();
+ //var oldDc = MapperFactory.MandatorDC_Mandator.MapToNewDC(lOriginal);
+
MapperFactory.MandatorDC_Mandator.MergeWithEntity(mandator, lOriginal);
DAOFactory.GenericDAO.Update(lOriginal);
return MapperFactory.MandatorDC_Mandator.MapToNewDC(lOriginal);
diff --git a/Service/ServiceImplementations/UserServiceImp.cs b/Service/ServiceImplementations/UserServiceImp.cs
index e2ecdc951..aee1ab717 100644
--- a/Service/ServiceImplementations/UserServiceImp.cs
+++ b/Service/ServiceImplementations/UserServiceImp.cs
@@ -36,7 +36,12 @@ namespace BeWo.Service.ServiceImplementations
ApplicationUser lOriginal = DAOFactory.UserDAO.FindUserByLoginName(pUserName);
MapperFactory.UserDC_User.ConcurrencyCheck(pUserVersion, lOriginal);
- if (DAOFactory.UserDAO.CheckPassword(lOriginal, pOldPassword))
+ var oldHash = lOriginal.BCryptPassword;
+ if (String.IsNullOrWhiteSpace(oldHash))
+ {
+ oldHash = lOriginal.HashedPassword;
+ }
+ if (DAOFactory.UserDAO.CheckPassword(lOriginal, oldHash))
{
lOriginal.ChangePassword(pNewPassword);
var settings = AppSettings.CreateSettings();