BeWoDarmstadt/Zeitzuschlagsbeleg, HPHBersenbrueck/Rechnungen, SKFLeverkusen/Betreuungsvertrag

This commit is contained in:
2023-03-17 07:59:28 +01:00
parent 5b842a2569
commit 767022a926
13 changed files with 540 additions and 897 deletions

View File

@@ -51,6 +51,7 @@
<Compile Include="CustomMitarbeiterstundenkontoBerechnung.cs" />
<Compile Include="CustomReportCreator.cs" />
<Compile Include="Properties\AssemblyInfo.cs" />
<Compile Include="Service\CustomVacationService.cs" />
<Compile Include="Zeitzuschlagsbeleg.cs">
<SubType>Component</SubType>
</Compile>

View File

@@ -10,7 +10,13 @@ namespace BeWoDarmstadt
{
public class CustomMitarbeiterstundenkontoBerechnung : MitarbeiterstundenkontoBerechnung
{
public override bool ShouldCreateDayDetails()
{
return true;
}
decimal fls;
decimal stundenRz = 0;
// decimal ausgezahlte;
protected override decimal? BerechneUeberstunden(MitarbeiterstundenkontoRO.EmployeeDetail ed, decimal? ueberstundenStd, Contract contract, DateTime start, DateTime ende)
{
@@ -27,5 +33,25 @@ namespace BeWoDarmstadt
// edOrig.Custom6 = ausgezahlte;
return edTotal;
}
public override void BerechneExtraUeberstunden(Employee emp, DateTime start, DateTime ende, out decimal stunden)
{
stunden = 0;
if (emp.Overtimes != null)
{
foreach (var ot in emp.Overtimes)
{
if (ot.Date >= start && ot.Date < ende)
{
if (ot.Auszahlungsart.Name.Contains("FLS"))
stunden += ot.Betrag;
else if (ot.Auszahlungsart.Name.Contains("Rahmenzeit"))
stundenRz += ot.Betrag;
}
}
}
}
}
}

View File

@@ -0,0 +1,26 @@
using BeWo.Service.Plugins;
using BS.Shared.DataContracts;
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace BeWoDarmstadt.Service
{
public class CustomVacationService : VacationService
{
public override string Bundesland { get => "Hessen"; }
public override List<FeiertagDC> GetFeiertage(int year, string bundesland)
{
var list = base.GetFeiertage(year, bundesland);
//var osterSonntag = GetOsterSonntag(year);
//list.Add(new FeiertagDC() {Datum = osterSonntag.AddDays(-48), Name = "Rosenmontag" }); // "Rosenmontag"
list.Add(new FeiertagDC { Datum = new DateTime(year, 12, 31), Name = "Sylvester" });
return list;
}
}
}

View File

@@ -917,41 +917,6 @@ namespace BeWoDarmstadt
this.xrTableCell63 = new DevExpress.XtraReports.UI.XRTableCell();
this.xrTableCell64 = new DevExpress.XtraReports.UI.XRTableCell();
this.xrTableCell69 = new DevExpress.XtraReports.UI.XRTableCell();
this.tableRowUhrzeit1 = new DevExpress.XtraReports.UI.XRTableRow();
this.xrTableCell108 = new DevExpress.XtraReports.UI.XRTableCell();
this.xrTableCell247 = new DevExpress.XtraReports.UI.XRTableCell();
this.xrTableCell249 = new DevExpress.XtraReports.UI.XRTableCell();
this.xrTableCell250 = new DevExpress.XtraReports.UI.XRTableCell();
this.xrTableCell251 = new DevExpress.XtraReports.UI.XRTableCell();
this.xrTableCell252 = new DevExpress.XtraReports.UI.XRTableCell();
this.xrTableCell253 = new DevExpress.XtraReports.UI.XRTableCell();
this.xrTableCell254 = new DevExpress.XtraReports.UI.XRTableCell();
this.xrTableCell255 = new DevExpress.XtraReports.UI.XRTableCell();
this.xrTableCell256 = new DevExpress.XtraReports.UI.XRTableCell();
this.xrTableCell257 = new DevExpress.XtraReports.UI.XRTableCell();
this.xrTableCell258 = new DevExpress.XtraReports.UI.XRTableCell();
this.xrTableCell259 = new DevExpress.XtraReports.UI.XRTableCell();
this.xrTableCell260 = new DevExpress.XtraReports.UI.XRTableCell();
this.xrTableCell261 = new DevExpress.XtraReports.UI.XRTableCell();
this.xrTableCell262 = new DevExpress.XtraReports.UI.XRTableCell();
this.xrTableCell263 = new DevExpress.XtraReports.UI.XRTableCell();
this.xrTableCell264 = new DevExpress.XtraReports.UI.XRTableCell();
this.xrTableCell265 = new DevExpress.XtraReports.UI.XRTableCell();
this.xrTableCell266 = new DevExpress.XtraReports.UI.XRTableCell();
this.xrTableCell267 = new DevExpress.XtraReports.UI.XRTableCell();
this.xrTableCell268 = new DevExpress.XtraReports.UI.XRTableCell();
this.xrTableCell269 = new DevExpress.XtraReports.UI.XRTableCell();
this.xrTableCell270 = new DevExpress.XtraReports.UI.XRTableCell();
this.xrTableCell271 = new DevExpress.XtraReports.UI.XRTableCell();
this.xrTableCell272 = new DevExpress.XtraReports.UI.XRTableCell();
this.xrTableCell273 = new DevExpress.XtraReports.UI.XRTableCell();
this.xrTableCell274 = new DevExpress.XtraReports.UI.XRTableCell();
this.xrTableCell275 = new DevExpress.XtraReports.UI.XRTableCell();
this.xrTableCell276 = new DevExpress.XtraReports.UI.XRTableCell();
this.xrTableCell277 = new DevExpress.XtraReports.UI.XRTableCell();
this.xrTableCell278 = new DevExpress.XtraReports.UI.XRTableCell();
this.xrTableCell279 = new DevExpress.XtraReports.UI.XRTableCell();
this.xrTableCell70 = new DevExpress.XtraReports.UI.XRTableCell();
this.xrTableRow9 = new DevExpress.XtraReports.UI.XRTableRow();
this.xrTableCell143 = new DevExpress.XtraReports.UI.XRTableCell();
this.xrTableCell282 = new DevExpress.XtraReports.UI.XRTableCell();
@@ -1334,7 +1299,7 @@ namespace BeWoDarmstadt
this.tableRahmenzeit,
this.tableFLS,
this.table1});
this.GroupHeader1.HeightF = 649.375F;
this.GroupHeader1.HeightF = 630F;
this.GroupHeader1.Level = 1;
this.GroupHeader1.Name = "GroupHeader1";
this.GroupHeader1.StylePriority.UseFont = false;
@@ -1345,7 +1310,7 @@ namespace BeWoDarmstadt
| DevExpress.XtraPrinting.BorderSide.Right)
| DevExpress.XtraPrinting.BorderSide.Bottom)));
this.tableZeitraum.Font = new System.Drawing.Font("Arial", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
this.tableZeitraum.LocationFloat = new DevExpress.Utils.PointFloat(0.0003089905F, 569.375F);
this.tableZeitraum.LocationFloat = new DevExpress.Utils.PointFloat(0F, 550F);
this.tableZeitraum.Name = "tableZeitraum";
this.tableZeitraum.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 0, 0, 0, 100F);
this.tableZeitraum.Rows.AddRange(new DevExpress.XtraReports.UI.XRTableRow[] {
@@ -9002,13 +8967,12 @@ namespace BeWoDarmstadt
this.row2,
this.row3,
this.xrTableRow1,
this.tableRowUhrzeit1,
this.xrTableRow9,
this.xrTableRow2,
this.xrTableRow3,
this.xrTableRow4,
this.xrTableRow5});
this.table1.SizeF = new System.Drawing.SizeF(994F, 200F);
this.table1.SizeF = new System.Drawing.SizeF(994F, 180F);
this.table1.StylePriority.UseBackColor = false;
this.table1.StylePriority.UseBorders = false;
this.table1.StylePriority.UseFont = false;
@@ -10187,310 +10151,6 @@ namespace BeWoDarmstadt
this.xrTableCell69.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleRight;
this.xrTableCell69.Weight = 0.080272159410495064D;
//
// tableRowUhrzeit1
//
this.tableRowUhrzeit1.BackColor = System.Drawing.Color.Gainsboro;
this.tableRowUhrzeit1.Cells.AddRange(new DevExpress.XtraReports.UI.XRTableCell[] {
this.xrTableCell108,
this.xrTableCell247,
this.xrTableCell249,
this.xrTableCell250,
this.xrTableCell251,
this.xrTableCell252,
this.xrTableCell253,
this.xrTableCell254,
this.xrTableCell255,
this.xrTableCell256,
this.xrTableCell257,
this.xrTableCell258,
this.xrTableCell259,
this.xrTableCell260,
this.xrTableCell261,
this.xrTableCell262,
this.xrTableCell263,
this.xrTableCell264,
this.xrTableCell265,
this.xrTableCell266,
this.xrTableCell267,
this.xrTableCell268,
this.xrTableCell269,
this.xrTableCell270,
this.xrTableCell271,
this.xrTableCell272,
this.xrTableCell273,
this.xrTableCell274,
this.xrTableCell275,
this.xrTableCell276,
this.xrTableCell277,
this.xrTableCell278,
this.xrTableCell279,
this.xrTableCell70});
this.tableRowUhrzeit1.Name = "tableRowUhrzeit1";
this.tableRowUhrzeit1.Padding = new DevExpress.XtraPrinting.PaddingInfo(0, 0, 0, 0, 100F);
this.tableRowUhrzeit1.StylePriority.UseBackColor = false;
this.tableRowUhrzeit1.StylePriority.UseBorderColor = false;
this.tableRowUhrzeit1.StylePriority.UseFont = false;
this.tableRowUhrzeit1.StylePriority.UsePadding = false;
this.tableRowUhrzeit1.StylePriority.UseTextAlignment = false;
this.tableRowUhrzeit1.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleCenter;
this.tableRowUhrzeit1.Weight = 0.37261411879505646D;
//
// xrTableCell108
//
this.xrTableCell108.BackColor = System.Drawing.Color.Gainsboro;
this.xrTableCell108.Borders = ((DevExpress.XtraPrinting.BorderSide)((DevExpress.XtraPrinting.BorderSide.Left | DevExpress.XtraPrinting.BorderSide.Bottom)));
this.xrTableCell108.Name = "xrTableCell108";
this.xrTableCell108.Padding = new DevExpress.XtraPrinting.PaddingInfo(3, 0, 0, 0, 100F);
this.xrTableCell108.StylePriority.UseBackColor = false;
this.xrTableCell108.StylePriority.UseBorders = false;
this.xrTableCell108.StylePriority.UsePadding = false;
this.xrTableCell108.StylePriority.UseTextAlignment = false;
this.xrTableCell108.Text = "Sa v.Os./Pf.";
this.xrTableCell108.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleLeft;
this.xrTableCell108.Weight = 0.067623270519882039D;
//
// xrTableCell247
//
this.xrTableCell247.BackColor = System.Drawing.Color.Gainsboro;
this.xrTableCell247.Borders = ((DevExpress.XtraPrinting.BorderSide)(((DevExpress.XtraPrinting.BorderSide.Top | DevExpress.XtraPrinting.BorderSide.Right)
| DevExpress.XtraPrinting.BorderSide.Bottom)));
this.xrTableCell247.Name = "xrTableCell247";
this.xrTableCell247.Padding = new DevExpress.XtraPrinting.PaddingInfo(3, 0, 0, 0, 100F);
this.xrTableCell247.StylePriority.UseBackColor = false;
this.xrTableCell247.StylePriority.UseBorders = false;
this.xrTableCell247.StylePriority.UseFont = false;
this.xrTableCell247.StylePriority.UsePadding = false;
this.xrTableCell247.StylePriority.UseTextAlignment = false;
this.xrTableCell247.Text = "12-24 h";
this.xrTableCell247.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleLeft;
this.xrTableCell247.Weight = 0.034541096236773206D;
//
// xrTableCell249
//
this.xrTableCell249.Font = new System.Drawing.Font("Arial", 6.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
this.xrTableCell249.Name = "xrTableCell249";
this.xrTableCell249.StylePriority.UseFont = false;
this.xrTableCell249.Weight = 0.017513890118150417D;
//
// xrTableCell250
//
this.xrTableCell250.Font = new System.Drawing.Font("Arial", 6.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
this.xrTableCell250.Name = "xrTableCell250";
this.xrTableCell250.StylePriority.UseFont = false;
this.xrTableCell250.Weight = 0.017513888726271756D;
//
// xrTableCell251
//
this.xrTableCell251.Font = new System.Drawing.Font("Arial", 6.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
this.xrTableCell251.Name = "xrTableCell251";
this.xrTableCell251.StylePriority.UseFont = false;
this.xrTableCell251.Weight = 0.017513887733727751D;
//
// xrTableCell252
//
this.xrTableCell252.Font = new System.Drawing.Font("Arial", 6.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
this.xrTableCell252.Name = "xrTableCell252";
this.xrTableCell252.StylePriority.UseFont = false;
this.xrTableCell252.Weight = 0.017513886341849486D;
//
// xrTableCell253
//
this.xrTableCell253.Font = new System.Drawing.Font("Arial", 6.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
this.xrTableCell253.Name = "xrTableCell253";
this.xrTableCell253.StylePriority.UseFont = false;
this.xrTableCell253.Weight = 0.017513889398250632D;
//
// xrTableCell254
//
this.xrTableCell254.Font = new System.Drawing.Font("Arial", 6.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
this.xrTableCell254.Name = "xrTableCell254";
this.xrTableCell254.StylePriority.UseFont = false;
this.xrTableCell254.Weight = 0.017513892699112077D;
//
// xrTableCell255
//
this.xrTableCell255.Font = new System.Drawing.Font("Arial", 6.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
this.xrTableCell255.Name = "xrTableCell255";
this.xrTableCell255.StylePriority.UseFont = false;
this.xrTableCell255.Weight = 0.017513886494539749D;
//
// xrTableCell256
//
this.xrTableCell256.Font = new System.Drawing.Font("Arial", 6.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
this.xrTableCell256.Name = "xrTableCell256";
this.xrTableCell256.StylePriority.UseFont = false;
this.xrTableCell256.Weight = 0.017513893135406924D;
//
// xrTableCell257
//
this.xrTableCell257.Font = new System.Drawing.Font("Arial", 6.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
this.xrTableCell257.Name = "xrTableCell257";
this.xrTableCell257.StylePriority.UseFont = false;
this.xrTableCell257.Weight = 0.01751388532080865D;
//
// xrTableCell258
//
this.xrTableCell258.Font = new System.Drawing.Font("Arial", 6.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
this.xrTableCell258.Name = "xrTableCell258";
this.xrTableCell258.StylePriority.UseFont = false;
this.xrTableCell258.Weight = 0.017513885589146336D;
//
// xrTableCell259
//
this.xrTableCell259.Font = new System.Drawing.Font("Arial", 6.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
this.xrTableCell259.Name = "xrTableCell259";
this.xrTableCell259.StylePriority.UseFont = false;
this.xrTableCell259.Weight = 0.017513885723315054D;
//
// xrTableCell260
//
this.xrTableCell260.Font = new System.Drawing.Font("Arial", 6.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
this.xrTableCell260.Name = "xrTableCell260";
this.xrTableCell260.StylePriority.UseFont = false;
this.xrTableCell260.Weight = 0.017513885790399558D;
//
// xrTableCell261
//
this.xrTableCell261.Font = new System.Drawing.Font("Arial", 6.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
this.xrTableCell261.Name = "xrTableCell261";
this.xrTableCell261.StylePriority.UseFont = false;
this.xrTableCell261.Weight = 0.0175138913914564D;
//
// xrTableCell262
//
this.xrTableCell262.Font = new System.Drawing.Font("Arial", 6.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
this.xrTableCell262.Name = "xrTableCell262";
this.xrTableCell262.StylePriority.UseFont = false;
this.xrTableCell262.Weight = 0.017513894191986623D;
//
// xrTableCell263
//
this.xrTableCell263.Font = new System.Drawing.Font("Arial", 6.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
this.xrTableCell263.Name = "xrTableCell263";
this.xrTableCell263.StylePriority.UseFont = false;
this.xrTableCell263.Weight = 0.017513884457219797D;
//
// xrTableCell264
//
this.xrTableCell264.Font = new System.Drawing.Font("Arial", 6.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
this.xrTableCell264.Name = "xrTableCell264";
this.xrTableCell264.StylePriority.UseFont = false;
this.xrTableCell264.Weight = 0.017513885157351888D;
//
// xrTableCell265
//
this.xrTableCell265.Font = new System.Drawing.Font("Arial", 6.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
this.xrTableCell265.Name = "xrTableCell265";
this.xrTableCell265.StylePriority.UseFont = false;
this.xrTableCell265.Weight = 0.017513891074932536D;
//
// xrTableCell266
//
this.xrTableCell266.Font = new System.Drawing.Font("Arial", 6.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
this.xrTableCell266.Name = "xrTableCell266";
this.xrTableCell266.StylePriority.UseFont = false;
this.xrTableCell266.Weight = 0.017513888466208244D;
//
// xrTableCell267
//
this.xrTableCell267.Font = new System.Drawing.Font("Arial", 6.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
this.xrTableCell267.Name = "xrTableCell267";
this.xrTableCell267.StylePriority.UseFont = false;
this.xrTableCell267.Weight = 0.017513892729362546D;
//
// xrTableCell268
//
this.xrTableCell268.Font = new System.Drawing.Font("Arial", 6.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
this.xrTableCell268.Name = "xrTableCell268";
this.xrTableCell268.StylePriority.UseFont = false;
this.xrTableCell268.Weight = 0.017513894860938795D;
//
// xrTableCell269
//
this.xrTableCell269.Font = new System.Drawing.Font("Arial", 6.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
this.xrTableCell269.Name = "xrTableCell269";
this.xrTableCell269.StylePriority.UseFont = false;
this.xrTableCell269.Weight = 0.017513893142969611D;
//
// xrTableCell270
//
this.xrTableCell270.Font = new System.Drawing.Font("Arial", 6.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
this.xrTableCell270.Name = "xrTableCell270";
this.xrTableCell270.StylePriority.UseFont = false;
this.xrTableCell270.Weight = 0.017513897851499594D;
//
// xrTableCell271
//
this.xrTableCell271.Font = new System.Drawing.Font("Arial", 6.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
this.xrTableCell271.Name = "xrTableCell271";
this.xrTableCell271.StylePriority.UseFont = false;
this.xrTableCell271.Weight = 0.017513886286976282D;
//
// xrTableCell272
//
this.xrTableCell272.Font = new System.Drawing.Font("Arial", 6.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
this.xrTableCell272.Name = "xrTableCell272";
this.xrTableCell272.StylePriority.UseFont = false;
this.xrTableCell272.Weight = 0.017513886072230117D;
//
// xrTableCell273
//
this.xrTableCell273.Font = new System.Drawing.Font("Arial", 6.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
this.xrTableCell273.Name = "xrTableCell273";
this.xrTableCell273.StylePriority.UseFont = false;
this.xrTableCell273.Weight = 0.017513884572978367D;
//
// xrTableCell274
//
this.xrTableCell274.Font = new System.Drawing.Font("Arial", 6.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
this.xrTableCell274.Name = "xrTableCell274";
this.xrTableCell274.StylePriority.UseFont = false;
this.xrTableCell274.Weight = 0.017513886607109813D;
//
// xrTableCell275
//
this.xrTableCell275.Font = new System.Drawing.Font("Arial", 6.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
this.xrTableCell275.Name = "xrTableCell275";
this.xrTableCell275.StylePriority.UseFont = false;
this.xrTableCell275.Weight = 0.01751388623229691D;
//
// xrTableCell276
//
this.xrTableCell276.Font = new System.Drawing.Font("Arial", 6.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
this.xrTableCell276.Name = "xrTableCell276";
this.xrTableCell276.StylePriority.UseFont = false;
this.xrTableCell276.Weight = 0.017513883261133123D;
//
// xrTableCell277
//
this.xrTableCell277.Font = new System.Drawing.Font("Arial", 6.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
this.xrTableCell277.Name = "xrTableCell277";
this.xrTableCell277.StylePriority.UseFont = false;
this.xrTableCell277.Weight = 0.017513887343065859D;
//
// xrTableCell278
//
this.xrTableCell278.Font = new System.Drawing.Font("Arial", 6.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
this.xrTableCell278.Name = "xrTableCell278";
this.xrTableCell278.StylePriority.UseFont = false;
this.xrTableCell278.Weight = 0.017513886600274919D;
//
// xrTableCell279
//
this.xrTableCell279.Font = new System.Drawing.Font("Arial", 6.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
this.xrTableCell279.Name = "xrTableCell279";
this.xrTableCell279.StylePriority.UseFont = false;
this.xrTableCell279.Weight = 0.017513918091639748D;
//
// xrTableCell70
//
this.xrTableCell70.Name = "xrTableCell70";
this.xrTableCell70.Padding = new DevExpress.XtraPrinting.PaddingInfo(0, 3, 0, 0, 100F);
this.xrTableCell70.StylePriority.UsePadding = false;
this.xrTableCell70.StylePriority.UseTextAlignment = false;
this.xrTableCell70.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleRight;
this.xrTableCell70.Weight = 0.080272159410495064D;
//
// xrTableRow9
//
this.xrTableRow9.BackColor = System.Drawing.Color.Transparent;
@@ -12714,39 +12374,6 @@ namespace BeWoDarmstadt
private DevExpress.XtraReports.UI.XRTableCell xrTableCell242;
private DevExpress.XtraReports.UI.XRTableCell xrTableCell243;
private DevExpress.XtraReports.UI.XRTableCell xrTableCell244;
private DevExpress.XtraReports.UI.XRTableRow tableRowUhrzeit1;
private DevExpress.XtraReports.UI.XRTableCell xrTableCell247;
private DevExpress.XtraReports.UI.XRTableCell xrTableCell249;
private DevExpress.XtraReports.UI.XRTableCell xrTableCell250;
private DevExpress.XtraReports.UI.XRTableCell xrTableCell251;
private DevExpress.XtraReports.UI.XRTableCell xrTableCell252;
private DevExpress.XtraReports.UI.XRTableCell xrTableCell253;
private DevExpress.XtraReports.UI.XRTableCell xrTableCell254;
private DevExpress.XtraReports.UI.XRTableCell xrTableCell255;
private DevExpress.XtraReports.UI.XRTableCell xrTableCell256;
private DevExpress.XtraReports.UI.XRTableCell xrTableCell257;
private DevExpress.XtraReports.UI.XRTableCell xrTableCell258;
private DevExpress.XtraReports.UI.XRTableCell xrTableCell259;
private DevExpress.XtraReports.UI.XRTableCell xrTableCell260;
private DevExpress.XtraReports.UI.XRTableCell xrTableCell261;
private DevExpress.XtraReports.UI.XRTableCell xrTableCell262;
private DevExpress.XtraReports.UI.XRTableCell xrTableCell263;
private DevExpress.XtraReports.UI.XRTableCell xrTableCell264;
private DevExpress.XtraReports.UI.XRTableCell xrTableCell265;
private DevExpress.XtraReports.UI.XRTableCell xrTableCell266;
private DevExpress.XtraReports.UI.XRTableCell xrTableCell267;
private DevExpress.XtraReports.UI.XRTableCell xrTableCell268;
private DevExpress.XtraReports.UI.XRTableCell xrTableCell269;
private DevExpress.XtraReports.UI.XRTableCell xrTableCell270;
private DevExpress.XtraReports.UI.XRTableCell xrTableCell271;
private DevExpress.XtraReports.UI.XRTableCell xrTableCell272;
private DevExpress.XtraReports.UI.XRTableCell xrTableCell273;
private DevExpress.XtraReports.UI.XRTableCell xrTableCell274;
private DevExpress.XtraReports.UI.XRTableCell xrTableCell275;
private DevExpress.XtraReports.UI.XRTableCell xrTableCell276;
private DevExpress.XtraReports.UI.XRTableCell xrTableCell277;
private DevExpress.XtraReports.UI.XRTableCell xrTableCell278;
private DevExpress.XtraReports.UI.XRTableCell xrTableCell279;
private DevExpress.XtraReports.UI.XRTableRow xrTableRow9;
private DevExpress.XtraReports.UI.XRTableCell xrTableCell282;
private DevExpress.XtraReports.UI.XRTableCell xrTableCell284;
@@ -12821,7 +12448,6 @@ namespace BeWoDarmstadt
private DevExpress.XtraReports.UI.XRTableCell xrTableCell63;
private DevExpress.XtraReports.UI.XRTableCell xrTableCell64;
private DevExpress.XtraReports.UI.XRTableCell xrTableCell69;
private DevExpress.XtraReports.UI.XRTableCell xrTableCell70;
private DevExpress.XtraReports.UI.XRTableCell xrTableCell71;
private DevExpress.XtraReports.UI.XRTableRow xrTableRow2;
private DevExpress.XtraReports.UI.XRTableCell xrTableCell72;
@@ -13759,7 +13385,6 @@ namespace BeWoDarmstadt
private DevExpress.XtraReports.UI.XRTableCell xrTableCell33;
private DevExpress.XtraReports.UI.XRTableCell xrTableCell951;
private DevExpress.XtraReports.UI.XRTableCell xrTableCell73;
private DevExpress.XtraReports.UI.XRTableCell xrTableCell108;
private DevExpress.XtraReports.UI.XRTableCell xrTableCell143;
private DevExpress.XtraReports.UI.XRTableCell xrTableCell175;
private DevExpress.XtraReports.UI.XRTableCell xrTableCell209;

View File

@@ -26,7 +26,7 @@ namespace BeWoDarmstadt
private Dictionary<int, double> sonntag2Minuten = new Dictionary<int, double>();
private Dictionary<int, double> feiertag2Minuten = new Dictionary<int, double>();
private Dictionary<int, double> heiligSil2Minuten = new Dictionary<int, double>();
private Dictionary<int, double> OsterSa2Minuten = new Dictionary<int, double>();
//private Dictionary<int, double> OsterSa2Minuten = new Dictionary<int, double>();
private Dictionary<int, double> nacht2Minuten = new Dictionary<int, double>();
private Dictionary<int, double> nachtSa2Minuten = new Dictionary<int, double>();
private Dictionary<int, double> nachtSo2Minuten = new Dictionary<int, double>();
@@ -78,8 +78,23 @@ namespace BeWoDarmstadt
ed.Custom13 = ed.Custom15 + ed.FlsDiff; //ÜberstundenGesamt nur FLS
if (ed.UeberstundenAusbezahlt != 0)
{
var emp = ed.Employee;
if (emp.Overtimes != null)
{
foreach (var ot in emp.Overtimes)
{
if (ot.Date >= start && ot.Date < ende)
{
if (ot.Auszahlungsart.Name.Contains("FLS"))
stunden += ot.Betrag;
else if (ot.Auszahlungsart.Name.Contains("Rahmenzeit"))
stundenRz += ot.Betrag;
}
}
}
ed.Custom12 = ed.UeberstundenAusbezahlt * anteilFLS;
ed.Custom11 = (decimal)ed.UeberstundenAusbezahlt - (decimal)ed.UeberstundenAusbezahlt * anteilFLS;
}
@@ -110,12 +125,14 @@ namespace BeWoDarmstadt
}
AddValueToTableZuschlag(sr);
AddValueToTableLeistungen(sr);
AddValueToTableZeitraum(sr, tableZeitraum, beginn);
// In Absprache wird diese Tabelle zur Zeit von Hand befüllt
//AddValueToTableZeitraum(sr, tableZeitraum, beginn);
}
}
BerechneGesamtsummen();
BerechneSpaltensumme(tableFLS);
BerechneSpaltensumme(tableRahmenzeit);
AddAbwesenheitToTableLeistungen(ed);
lblStelle.Text = String.Format("{0:0.00} Std.", notdienstTotal / 60);
}
@@ -124,12 +141,12 @@ namespace BeWoDarmstadt
BerechneGesamtsumme(table1.Rows[1], samstag2Minuten);
BerechneGesamtsumme(table1.Rows[2], sonntag2Minuten);
BerechneGesamtsumme(table1.Rows[3], heiligSil2Minuten);
BerechneGesamtsumme(table1.Rows[4], OsterSa2Minuten);
BerechneGesamtsumme(table1.Rows[5], feiertag2Minuten);
BerechneGesamtsumme(table1.Rows[6], nacht2Minuten);
BerechneGesamtsumme(table1.Rows[7], nachtSa2Minuten);
BerechneGesamtsumme(table1.Rows[8], nachtSo2Minuten);
BerechneGesamtsumme(table1.Rows[9], nachtFe2Minuten);
//BerechneGesamtsumme(table1.Rows[5], OsterSa2Minuten);
BerechneGesamtsumme(table1.Rows[4], feiertag2Minuten);
BerechneGesamtsumme(table1.Rows[5], nacht2Minuten);
BerechneGesamtsumme(table1.Rows[6], nachtSa2Minuten);
BerechneGesamtsumme(table1.Rows[7], nachtSo2Minuten);
BerechneGesamtsumme(table1.Rows[8], nachtFe2Minuten);
BerechneGesamtsumme(tableFLS.Rows[1], direkteBetr2Minuten);
BerechneGesamtsumme(tableFLS.Rows[2], indirekteBetr2Minuten);
BerechneGesamtsumme(tableFLS.Rows[3], vorArbeiten2Minuten);
@@ -252,41 +269,41 @@ namespace BeWoDarmstadt
{
var zs = BerechneZuschlag(sr);
if (zs.MinutenSamstag13_21 > 0)
{
AddValueToCell(zs.MinutenSamstag13_21, datum, table1.Rows[1], samstag2Minuten);
}
if (zs.MinutenSonntag6_21 > 0)
{
AddValueToCell(zs.MinutenSonntag6_21, datum, table1.Rows[2], sonntag2Minuten);
}
if (zs.MinutenHeiligabendSilvester14_21 > 0)
{
AddValueToCell(zs.MinutenHeiligabendSilvester14_21, datum, table1.Rows[3], heiligSil2Minuten);
}
if (zs.MinutenOsterPfSa12_24 > 0)
else if (zs.MinutenFeiertag6_21 > 0)
{
AddValueToCell(zs.MinutenOsterPfSa12_24, datum, table1.Rows[4], OsterSa2Minuten);
AddValueToCell(zs.MinutenFeiertag6_21, datum, table1.Rows[4], feiertag2Minuten);
}
if (zs.MinutenFeiertag6_21 > 0)
else if (zs.MinutenSamstag13_21 > 0)
{
AddValueToCell(zs.MinutenFeiertag6_21, datum, table1.Rows[5], feiertag2Minuten);
AddValueToCell(zs.MinutenSamstag13_21, datum, table1.Rows[1], samstag2Minuten);
}
else if (zs.MinutenSonntag6_21 > 0)
{
AddValueToCell(zs.MinutenSonntag6_21, datum, table1.Rows[2], sonntag2Minuten);
}
//if (zs.MinutenOsterPfSa12_24 > 0)
//{
// AddValueToCell(zs.MinutenOsterPfSa12_24, datum, table1.Rows[4], OsterSa2Minuten);
//}
if (zs.MinutenNachtFe21_6 > 0)
{
AddValueToCell(zs.MinutenNachtFe21_6, datum, table1.Rows[8], nachtFe2Minuten);
}
if (zs.MinutenNacht21_6 > 0)
{
AddValueToCell(zs.MinutenNacht21_6, datum, table1.Rows[6], nacht2Minuten);
AddValueToCell(zs.MinutenNacht21_6, datum, table1.Rows[5], nacht2Minuten);
}
if (zs.MinutenNachtSa21_6 > 0)
{
AddValueToCell(zs.MinutenNachtSa21_6, datum, table1.Rows[7], nachtSa2Minuten);
AddValueToCell(zs.MinutenNachtSa21_6, datum, table1.Rows[6], nachtSa2Minuten);
}
if (zs.MinutenNachtSo21_6 > 0)
{
AddValueToCell(zs.MinutenNachtSo21_6, datum, table1.Rows[8], nachtSo2Minuten);
}
if (zs.MinutenNachtFe21_6 > 0)
{
AddValueToCell(zs.MinutenNachtFe21_6, datum, table1.Rows[9], nachtFe2Minuten);
AddValueToCell(zs.MinutenNachtSo21_6, datum, table1.Rows[7], nachtSo2Minuten);
}
}
}
@@ -349,6 +366,25 @@ namespace BeWoDarmstadt
cell.Text = String.Format("{0:0.0}", dict[datum.Day] / 60);
}
private void AddAbwesenheitToTableLeistungen(MitarbeiterstundenkontoRO.EmployeeDetail ed)
{
if (ed.Days != null)
foreach (var day in ed.Days)
{
if (day.HoursSick > 0)
AddAbwesenheitToCell(day.Date, "K");
else if (day.HoursInVacation > 0)
AddAbwesenheitToCell(day.Date, "U");
}
}
private void AddAbwesenheitToCell(DateTime datum, string abwesenheit)
{
XRTableRow row = tableRahmenzeit.Rows[1];
XRTableCell cell = row.Cells[datum.Day + 1];
cell.Text = abwesenheit;
}
private decimal GetDuration(ServiceRecord sr)
{
decimal duration = 0;
@@ -405,17 +441,17 @@ namespace BeWoDarmstadt
}
else if (_vs.IstFeiertag(datum))
{
DateTime OsterSo = GetOsterSonntag(datum.Year);
if (datum == OsterSo.AddDays(-1) || datum == OsterSo.AddDays(48))
{
zv.MinutenOsterPfSa12_24 = CheckUhrzeiten(datum, 12, 24, (double)duration);
zv.MinutenNachtFe21_6 = CheckUhrzeiten(datum, 24, 6, (double)duration);
}
else
{
//DateTime OsterSo = GetOsterSonntag(datum.Year);
//if (datum == OsterSo.AddDays(-1) || datum == OsterSo.AddDays(48))
//{
// zv.MinutenOsterPfSa12_24 = CheckUhrzeiten(datum, 12, 24, (double)duration);
// zv.MinutenNachtFe21_6 = CheckUhrzeiten(datum, 24, 6, (double)duration);
//}
//else
//{
zv.MinutenFeiertag6_21 = CheckUhrzeiten(datum, 6, 21, (double)duration);
zv.MinutenNachtFe21_6 = CheckUhrzeiten(datum, nachtStart, 6, (double)duration);
}
//}
}
else if (sr.Start.Value.DayOfWeek == DayOfWeek.Sunday)
{
@@ -482,37 +518,38 @@ namespace BeWoDarmstadt
return 0;
}
protected DateTime GetOsterSonntag(int year)
{
return VacationService.GetOsterSonntag(year);
}
//protected DateTime GetOsterSonntag(int year)
//{
// return VacationService.GetOsterSonntag(year);
//}
private void AddValueToTableZeitraum(ServiceRecord sr, XRTable table, Dictionary<int, DateTime> beginn)
{
DateTime start = sr.Start.Value;
DateTime ende = sr.End.Value;
if (!beginn.ContainsKey(start.Day))
{
beginn[start.Day] = start;
if (start.Hour >= 8 && start.Hour <= 21 && ende.Hour >= 8 && ende.Hour < 21)
table.Rows[1].Cells[start.Day].Text = "X";
else
{
table.Rows[2].Cells[start.Day].Text = String.Format("{0:HH:mm}", start);
table.Rows[3].Cells[ende.Day].Text = String.Format("{0:HH:mm}", ende);
}
}
else
{
if (ende.Hour < 8 && ende.Hour >= 21)
{
table.Rows[1].Cells[start.Day].Text = "";
table.Rows[2].Cells[start.Day].Text = String.Format("{0:HH:mm}", beginn[start.Day]);
table.Rows[3].Cells[ende.Day].Text = String.Format("{0:HH:mm}", ende);
}
else if (beginn[start.Day].Hour >= 8 && beginn[start.Day].Hour <= 21 && ende.Hour >= 8 && ende.Hour < 21)
table.Rows[1].Cells[start.Day].Text = "X";
}
// In Absprache wird diese Tabelle zur Zeit von Hand befüllt
//private void AddValueToTableZeitraum(ServiceRecord sr, XRTable table, Dictionary<int, DateTime> beginn)
//{
// DateTime start = sr.Start.Value;
// DateTime ende = sr.End.Value;
// if (!beginn.ContainsKey(start.Day))
// {
// beginn[start.Day] = start;
// if (start.Hour >= 8 && start.Hour <= 21 && ende.Hour >= 8 && ende.Hour < 21)
// table.Rows[1].Cells[start.Day].Text = "X";
// else
// {
// table.Rows[2].Cells[start.Day].Text = String.Format("{0:HH:mm}", start);
// table.Rows[3].Cells[ende.Day].Text = String.Format("{0:HH:mm}", ende);
// }
// }
// else
// {
// if (ende.Hour < 8 && ende.Hour >= 21)
// {
// table.Rows[1].Cells[start.Day].Text = "";
// table.Rows[2].Cells[start.Day].Text = String.Format("{0:HH:mm}", beginn[start.Day]);
// table.Rows[3].Cells[ende.Day].Text = String.Format("{0:HH:mm}", ende);
// }
// else if (beginn[start.Day].Hour >= 8 && beginn[start.Day].Hour <= 21 && ende.Hour >= 8 && ende.Hour < 21)
// table.Rows[1].Cells[start.Day].Text = "X";
// }
}
}
@@ -522,7 +559,7 @@ namespace BeWoDarmstadt
public double MinutenSonntag6_21 { get; set; }
public double MinutenFeiertag6_21 { get; set; }
public double MinutenHeiligabendSilvester14_21 { get; set; }
public double MinutenOsterPfSa12_24 { get; set; }
//public double MinutenOsterPfSa12_24 { get; set; }
public double MinutenNacht21_6 { get; set; }
public double MinutenNachtSa21_6 { get; set; }
public double MinutenNachtSo21_6 { get; set; }
@@ -530,4 +567,3 @@ namespace BeWoDarmstadt
public double minutenLeistung { get; set; }
}
}

View File

@@ -41,15 +41,14 @@ namespace HPHBersenbrueck
this.xrLabel1 = new DevExpress.XtraReports.UI.XRLabel();
this.bottomMarginBand1 = new DevExpress.XtraReports.UI.BottomMarginBand();
this.Page1 = new DevExpress.XtraReports.UI.GroupHeaderBand();
this.xrLabel15 = new DevExpress.XtraReports.UI.XRLabel();
this.xrLabel7 = new DevExpress.XtraReports.UI.XRLabel();
this.xrLabel6 = new DevExpress.XtraReports.UI.XRLabel();
this.xrLabel3 = new DevExpress.XtraReports.UI.XRLabel();
this.xrLabel8 = new DevExpress.XtraReports.UI.XRLabel();
this.lblAZ = new DevExpress.XtraReports.UI.XRLabel();
this.xrLabel4 = new DevExpress.XtraReports.UI.XRLabel();
this.xrTable3 = new DevExpress.XtraReports.UI.XRTable();
this.xrTableRow14 = new DevExpress.XtraReports.UI.XRTableRow();
this.xrTableCell41 = new DevExpress.XtraReports.UI.XRTableCell();
this.xrTableCell14 = new DevExpress.XtraReports.UI.XRTableCell();
this.xrTableCell16 = new DevExpress.XtraReports.UI.XRTableCell();
this.xrTableCell1 = new DevExpress.XtraReports.UI.XRTableCell();
@@ -76,33 +75,31 @@ namespace HPHBersenbrueck
this.Detail2 = new DevExpress.XtraReports.UI.DetailBand();
this.xrTable4 = new DevExpress.XtraReports.UI.XRTable();
this.xrTableRow10 = new DevExpress.XtraReports.UI.XRTableRow();
this.xrTableCell12 = new DevExpress.XtraReports.UI.XRTableCell();
this.xrTableCell15 = new DevExpress.XtraReports.UI.XRTableCell();
this.xrTableCell17 = new DevExpress.XtraReports.UI.XRTableCell();
this.xrTableCell19 = new DevExpress.XtraReports.UI.XRTableCell();
this.xrTableCell20 = new DevExpress.XtraReports.UI.XRTableCell();
this.xrTableCell3 = new DevExpress.XtraReports.UI.XRTableCell();
this.bindingSource1 = new System.Windows.Forms.BindingSource(this.components);
this.GroupFooter1 = new DevExpress.XtraReports.UI.GroupFooterBand();
this.xrLabel10 = new DevExpress.XtraReports.UI.XRLabel();
this.xrLabel18 = new DevExpress.XtraReports.UI.XRLabel();
this.xrLabel17 = new DevExpress.XtraReports.UI.XRLabel();
this.xrLabel16 = new DevExpress.XtraReports.UI.XRLabel();
this.xrLabel14 = new DevExpress.XtraReports.UI.XRLabel();
this.xrLabel9 = new DevExpress.XtraReports.UI.XRLabel();
this.xrTable1 = new DevExpress.XtraReports.UI.XRTable();
this.xrTableRow15 = new DevExpress.XtraReports.UI.XRTableRow();
this.xrTableCell28 = new DevExpress.XtraReports.UI.XRTableCell();
this.xrTableCell32 = new DevExpress.XtraReports.UI.XRTableCell();
this.xrTableCell4 = new DevExpress.XtraReports.UI.XRTableCell();
this.xrLabel15 = new DevExpress.XtraReports.UI.XRLabel();
this.xrLabel14 = new DevExpress.XtraReports.UI.XRLabel();
this.xrLabel16 = new DevExpress.XtraReports.UI.XRLabel();
this.xrLabel17 = new DevExpress.XtraReports.UI.XRLabel();
this.xrLabel18 = new DevExpress.XtraReports.UI.XRLabel();
this.bindingSource1 = new System.Windows.Forms.BindingSource(this.components);
this.xrLabel10 = new DevExpress.XtraReports.UI.XRLabel();
((System.ComponentModel.ISupportInitialize)(this.xrRichText1)).BeginInit();
((System.ComponentModel.ISupportInitialize)(this.xrRichText2)).BeginInit();
((System.ComponentModel.ISupportInitialize)(this.xrTable3)).BeginInit();
((System.ComponentModel.ISupportInitialize)(this.xrTable2)).BeginInit();
((System.ComponentModel.ISupportInitialize)(this.xrTable4)).BeginInit();
((System.ComponentModel.ISupportInitialize)(this.xrTable1)).BeginInit();
((System.ComponentModel.ISupportInitialize)(this.bindingSource1)).BeginInit();
((System.ComponentModel.ISupportInitialize)(this.xrTable1)).BeginInit();
((System.ComponentModel.ISupportInitialize)(this)).BeginInit();
//
// Detail
@@ -198,7 +195,6 @@ namespace HPHBersenbrueck
this.xrLabel15,
this.xrLabel7,
this.xrLabel6,
this.xrLabel3,
this.xrLabel8,
this.lblAZ,
this.xrLabel4,
@@ -210,6 +206,19 @@ namespace HPHBersenbrueck
this.Page1.Name = "Page1";
this.Page1.StylePriority.UseFont = false;
//
// xrLabel15
//
this.xrLabel15.Borders = ((DevExpress.XtraPrinting.BorderSide)((DevExpress.XtraPrinting.BorderSide.Top | DevExpress.XtraPrinting.BorderSide.Bottom)));
this.xrLabel15.Font = new System.Drawing.Font("Arial", 12F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
this.xrLabel15.LocationFloat = new DevExpress.Utils.PointFloat(0F, 180.3958F);
this.xrLabel15.Name = "xrLabel15";
this.xrLabel15.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
this.xrLabel15.SizeF = new System.Drawing.SizeF(697.0001F, 3F);
this.xrLabel15.StylePriority.UseBorders = false;
this.xrLabel15.StylePriority.UseFont = false;
this.xrLabel15.StylePriority.UseTextAlignment = false;
this.xrLabel15.TextAlignment = DevExpress.XtraPrinting.TextAlignment.TopLeft;
//
// xrLabel7
//
this.xrLabel7.ForeColor = System.Drawing.Color.Black;
@@ -237,28 +246,19 @@ namespace HPHBersenbrueck
this.xrLabel6.Text = "Debitor-Nr. bei Zahlungen bitte unbedingt \r\nangeben!";
this.xrLabel6.TextAlignment = DevExpress.XtraPrinting.TextAlignment.TopCenter;
//
// xrLabel3
//
this.xrLabel3.LocationFloat = new DevExpress.Utils.PointFloat(46.37507F, 26F);
this.xrLabel3.Name = "xrLabel3";
this.xrLabel3.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
this.xrLabel3.SizeF = new System.Drawing.SizeF(68.75F, 15.95834F);
this.xrLabel3.StylePriority.UseFont = false;
this.xrLabel3.Text = "[DebitorNumber]";
//
// xrLabel8
//
this.xrLabel8.Font = new System.Drawing.Font("Arial", 8.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
this.xrLabel8.LocationFloat = new DevExpress.Utils.PointFloat(0F, 65F);
this.xrLabel8.LocationFloat = new DevExpress.Utils.PointFloat(0F, 65.00002F);
this.xrLabel8.Name = "xrLabel8";
this.xrLabel8.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
this.xrLabel8.SizeF = new System.Drawing.SizeF(120.125F, 17F);
this.xrLabel8.SizeF = new System.Drawing.SizeF(42.00007F, 17F);
this.xrLabel8.StylePriority.UseFont = false;
this.xrLabel8.Text = "geb.:";
//
// lblAZ
//
this.lblAZ.LocationFloat = new DevExpress.Utils.PointFloat(120.1251F, 65.00002F);
this.lblAZ.LocationFloat = new DevExpress.Utils.PointFloat(42.00007F, 65.00002F);
this.lblAZ.Multiline = true;
this.lblAZ.Name = "lblAZ";
this.lblAZ.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
@@ -283,18 +283,17 @@ namespace HPHBersenbrueck
// xrTable3
//
this.xrTable3.Font = new System.Drawing.Font("Segoe UI", 8F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
this.xrTable3.LocationFloat = new DevExpress.Utils.PointFloat(0F, 200F);
this.xrTable3.LocationFloat = new DevExpress.Utils.PointFloat(8.392334E-05F, 200F);
this.xrTable3.Name = "xrTable3";
this.xrTable3.Rows.AddRange(new DevExpress.XtraReports.UI.XRTableRow[] {
this.xrTableRow14});
this.xrTable3.SizeF = new System.Drawing.SizeF(696.0415F, 21.16669F);
this.xrTable3.SizeF = new System.Drawing.SizeF(696.0414F, 21.16669F);
this.xrTable3.StylePriority.UseBorderColor = false;
this.xrTable3.StylePriority.UseFont = false;
//
// xrTableRow14
//
this.xrTableRow14.Cells.AddRange(new DevExpress.XtraReports.UI.XRTableCell[] {
this.xrTableCell41,
this.xrTableCell14,
this.xrTableCell16,
this.xrTableCell1,
@@ -304,13 +303,6 @@ namespace HPHBersenbrueck
this.xrTableRow14.StylePriority.UseBackColor = false;
this.xrTableRow14.Weight = 0.085D;
//
// xrTableCell41
//
this.xrTableCell41.Font = new System.Drawing.Font("Arial", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
this.xrTableCell41.Name = "xrTableCell41";
this.xrTableCell41.StylePriority.UseFont = false;
this.xrTableCell41.Weight = 0.1551276624045636D;
//
// xrTableCell14
//
this.xrTableCell14.Font = new System.Drawing.Font("Arial", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
@@ -320,7 +312,7 @@ namespace HPHBersenbrueck
this.xrTableCell14.StylePriority.UseBorderColor = false;
this.xrTableCell14.StylePriority.UseBorders = false;
this.xrTableCell14.StylePriority.UseFont = false;
this.xrTableCell14.Weight = 0.46923067929711676D;
this.xrTableCell14.Weight = 0.624358219846944D;
//
// xrTableCell16
//
@@ -496,7 +488,7 @@ namespace HPHBersenbrueck
//
// xrLabel2
//
this.xrLabel2.LocationFloat = new DevExpress.Utils.PointFloat(120.1251F, 25F);
this.xrLabel2.LocationFloat = new DevExpress.Utils.PointFloat(42.00007F, 25F);
this.xrLabel2.Multiline = true;
this.xrLabel2.Name = "xrLabel2";
this.xrLabel2.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
@@ -587,7 +579,7 @@ namespace HPHBersenbrueck
// xrTable4
//
this.xrTable4.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(242)))), ((int)(((byte)(242)))), ((int)(((byte)(242)))));
this.xrTable4.LocationFloat = new DevExpress.Utils.PointFloat(0F, 0F);
this.xrTable4.LocationFloat = new DevExpress.Utils.PointFloat(1.525879E-05F, 0F);
this.xrTable4.Name = "xrTable4";
this.xrTable4.Rows.AddRange(new DevExpress.XtraReports.UI.XRTableRow[] {
this.xrTableRow10});
@@ -598,7 +590,6 @@ namespace HPHBersenbrueck
// xrTableRow10
//
this.xrTableRow10.Cells.AddRange(new DevExpress.XtraReports.UI.XRTableCell[] {
this.xrTableCell12,
this.xrTableCell15,
this.xrTableCell17,
this.xrTableCell19,
@@ -607,18 +598,6 @@ namespace HPHBersenbrueck
this.xrTableRow10.Name = "xrTableRow10";
this.xrTableRow10.Weight = 0.08500000000000002D;
//
// xrTableCell12
//
this.xrTableCell12.BackColor = System.Drawing.Color.White;
this.xrTableCell12.DataBindings.AddRange(new DevExpress.XtraReports.UI.XRBinding[] {
new DevExpress.XtraReports.UI.XRBinding("Text", null, "ServiceInvoicePeriods.ServiceInvoiceItems.AccountingPeriodStart", "{0:MMMM yyyy}")});
this.xrTableCell12.Name = "xrTableCell12";
this.xrTableCell12.StylePriority.UseBackColor = false;
this.xrTableCell12.StylePriority.UseTextAlignment = false;
this.xrTableCell12.Text = "xrTableCell43";
this.xrTableCell12.TextAlignment = DevExpress.XtraPrinting.TextAlignment.TopRight;
this.xrTableCell12.Weight = 0.15512765737680284D;
//
// xrTableCell15
//
this.xrTableCell15.BackColor = System.Drawing.Color.White;
@@ -633,7 +612,7 @@ namespace HPHBersenbrueck
this.xrTableCell15.StylePriority.UseBorders = false;
this.xrTableCell15.StylePriority.UseFont = false;
this.xrTableCell15.StylePriority.UsePadding = false;
this.xrTableCell15.Weight = 0.46923062170447422D;
this.xrTableCell15.Weight = 0.62435826484303492D;
//
// xrTableCell17
//
@@ -691,6 +670,10 @@ namespace HPHBersenbrueck
this.xrTableCell3.TextAlignment = DevExpress.XtraPrinting.TextAlignment.TopRight;
this.xrTableCell3.Weight = 0.13762761526225861D;
//
// bindingSource1
//
this.bindingSource1.DataSource = typeof(BeWo.Report.ReportObjects.ServiceInvoiceRO);
//
// GroupFooter1
//
this.GroupFooter1.Controls.AddRange(new DevExpress.XtraReports.UI.XRControl[] {
@@ -704,19 +687,57 @@ namespace HPHBersenbrueck
this.GroupFooter1.HeightF = 79.375F;
this.GroupFooter1.Name = "GroupFooter1";
//
// xrLabel10
// xrLabel18
//
this.xrLabel10.Font = new System.Drawing.Font("Arial", 11.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
this.xrLabel10.ForeColor = System.Drawing.Color.Black;
this.xrLabel10.LocationFloat = new DevExpress.Utils.PointFloat(426.4996F, 53.87503F);
this.xrLabel10.Name = "xrLabel10";
this.xrLabel10.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
this.xrLabel10.SizeF = new System.Drawing.SizeF(269.9999F, 19.5F);
this.xrLabel10.StylePriority.UseFont = false;
this.xrLabel10.StylePriority.UseForeColor = false;
this.xrLabel10.StylePriority.UseTextAlignment = false;
this.xrLabel10.Text = "[NetClaim] €";
this.xrLabel10.TextAlignment = DevExpress.XtraPrinting.TextAlignment.TopRight;
this.xrLabel18.Borders = ((DevExpress.XtraPrinting.BorderSide)((DevExpress.XtraPrinting.BorderSide.Top | DevExpress.XtraPrinting.BorderSide.Bottom)));
this.xrLabel18.Font = new System.Drawing.Font("Arial", 12F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
this.xrLabel18.LocationFloat = new DevExpress.Utils.PointFloat(576.9791F, 76.375F);
this.xrLabel18.Name = "xrLabel18";
this.xrLabel18.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
this.xrLabel18.SizeF = new System.Drawing.SizeF(120F, 3F);
this.xrLabel18.StylePriority.UseBorders = false;
this.xrLabel18.StylePriority.UseFont = false;
this.xrLabel18.StylePriority.UseTextAlignment = false;
this.xrLabel18.TextAlignment = DevExpress.XtraPrinting.TextAlignment.TopLeft;
//
// xrLabel17
//
this.xrLabel17.Borders = ((DevExpress.XtraPrinting.BorderSide)((DevExpress.XtraPrinting.BorderSide.Top | DevExpress.XtraPrinting.BorderSide.Bottom)));
this.xrLabel17.Font = new System.Drawing.Font("Arial", 12F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
this.xrLabel17.LocationFloat = new DevExpress.Utils.PointFloat(577.0001F, 47.87502F);
this.xrLabel17.Name = "xrLabel17";
this.xrLabel17.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
this.xrLabel17.SizeF = new System.Drawing.SizeF(120F, 3F);
this.xrLabel17.StylePriority.UseBorders = false;
this.xrLabel17.StylePriority.UseFont = false;
this.xrLabel17.StylePriority.UseTextAlignment = false;
this.xrLabel17.TextAlignment = DevExpress.XtraPrinting.TextAlignment.TopLeft;
//
// xrLabel16
//
this.xrLabel16.Borders = ((DevExpress.XtraPrinting.BorderSide)((DevExpress.XtraPrinting.BorderSide.Top | DevExpress.XtraPrinting.BorderSide.Bottom)));
this.xrLabel16.Font = new System.Drawing.Font("Arial", 12F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
this.xrLabel16.LocationFloat = new DevExpress.Utils.PointFloat(611.0415F, 7.000007F);
this.xrLabel16.Name = "xrLabel16";
this.xrLabel16.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
this.xrLabel16.SizeF = new System.Drawing.SizeF(85F, 3F);
this.xrLabel16.StylePriority.UseBorders = false;
this.xrLabel16.StylePriority.UseFont = false;
this.xrLabel16.StylePriority.UseTextAlignment = false;
this.xrLabel16.TextAlignment = DevExpress.XtraPrinting.TextAlignment.TopLeft;
//
// xrLabel14
//
this.xrLabel14.Borders = ((DevExpress.XtraPrinting.BorderSide)((DevExpress.XtraPrinting.BorderSide.Top | DevExpress.XtraPrinting.BorderSide.Bottom)));
this.xrLabel14.Font = new System.Drawing.Font("Arial", 12F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
this.xrLabel14.LocationFloat = new DevExpress.Utils.PointFloat(522.0416F, 7.000007F);
this.xrLabel14.Name = "xrLabel14";
this.xrLabel14.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
this.xrLabel14.SizeF = new System.Drawing.SizeF(85F, 3F);
this.xrLabel14.StylePriority.UseBorders = false;
this.xrLabel14.StylePriority.UseFont = false;
this.xrLabel14.StylePriority.UseTextAlignment = false;
this.xrLabel14.TextAlignment = DevExpress.XtraPrinting.TextAlignment.TopLeft;
//
// xrLabel9
//
@@ -793,74 +814,19 @@ namespace HPHBersenbrueck
this.xrTableCell4.TextAlignment = DevExpress.XtraPrinting.TextAlignment.TopRight;
this.xrTableCell4.Weight = 0.13557589017427887D;
//
// xrLabel15
// xrLabel10
//
this.xrLabel15.Borders = ((DevExpress.XtraPrinting.BorderSide)((DevExpress.XtraPrinting.BorderSide.Top | DevExpress.XtraPrinting.BorderSide.Bottom)));
this.xrLabel15.Font = new System.Drawing.Font("Arial", 12F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
this.xrLabel15.LocationFloat = new DevExpress.Utils.PointFloat(0F, 180.3958F);
this.xrLabel15.Name = "xrLabel15";
this.xrLabel15.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
this.xrLabel15.SizeF = new System.Drawing.SizeF(697.0001F, 3F);
this.xrLabel15.StylePriority.UseBorders = false;
this.xrLabel15.StylePriority.UseFont = false;
this.xrLabel15.StylePriority.UseTextAlignment = false;
this.xrLabel15.TextAlignment = DevExpress.XtraPrinting.TextAlignment.TopLeft;
//
// xrLabel14
//
this.xrLabel14.Borders = ((DevExpress.XtraPrinting.BorderSide)((DevExpress.XtraPrinting.BorderSide.Top | DevExpress.XtraPrinting.BorderSide.Bottom)));
this.xrLabel14.Font = new System.Drawing.Font("Arial", 12F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
this.xrLabel14.LocationFloat = new DevExpress.Utils.PointFloat(522.0416F, 7.000007F);
this.xrLabel14.Name = "xrLabel14";
this.xrLabel14.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
this.xrLabel14.SizeF = new System.Drawing.SizeF(85F, 3F);
this.xrLabel14.StylePriority.UseBorders = false;
this.xrLabel14.StylePriority.UseFont = false;
this.xrLabel14.StylePriority.UseTextAlignment = false;
this.xrLabel14.TextAlignment = DevExpress.XtraPrinting.TextAlignment.TopLeft;
//
// xrLabel16
//
this.xrLabel16.Borders = ((DevExpress.XtraPrinting.BorderSide)((DevExpress.XtraPrinting.BorderSide.Top | DevExpress.XtraPrinting.BorderSide.Bottom)));
this.xrLabel16.Font = new System.Drawing.Font("Arial", 12F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
this.xrLabel16.LocationFloat = new DevExpress.Utils.PointFloat(611.0415F, 7.000007F);
this.xrLabel16.Name = "xrLabel16";
this.xrLabel16.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
this.xrLabel16.SizeF = new System.Drawing.SizeF(85F, 3F);
this.xrLabel16.StylePriority.UseBorders = false;
this.xrLabel16.StylePriority.UseFont = false;
this.xrLabel16.StylePriority.UseTextAlignment = false;
this.xrLabel16.TextAlignment = DevExpress.XtraPrinting.TextAlignment.TopLeft;
//
// xrLabel17
//
this.xrLabel17.Borders = ((DevExpress.XtraPrinting.BorderSide)((DevExpress.XtraPrinting.BorderSide.Top | DevExpress.XtraPrinting.BorderSide.Bottom)));
this.xrLabel17.Font = new System.Drawing.Font("Arial", 12F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
this.xrLabel17.LocationFloat = new DevExpress.Utils.PointFloat(577.0001F, 47.87502F);
this.xrLabel17.Name = "xrLabel17";
this.xrLabel17.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
this.xrLabel17.SizeF = new System.Drawing.SizeF(120F, 3F);
this.xrLabel17.StylePriority.UseBorders = false;
this.xrLabel17.StylePriority.UseFont = false;
this.xrLabel17.StylePriority.UseTextAlignment = false;
this.xrLabel17.TextAlignment = DevExpress.XtraPrinting.TextAlignment.TopLeft;
//
// xrLabel18
//
this.xrLabel18.Borders = ((DevExpress.XtraPrinting.BorderSide)((DevExpress.XtraPrinting.BorderSide.Top | DevExpress.XtraPrinting.BorderSide.Bottom)));
this.xrLabel18.Font = new System.Drawing.Font("Arial", 12F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
this.xrLabel18.LocationFloat = new DevExpress.Utils.PointFloat(576.9791F, 76.375F);
this.xrLabel18.Name = "xrLabel18";
this.xrLabel18.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
this.xrLabel18.SizeF = new System.Drawing.SizeF(120F, 3F);
this.xrLabel18.StylePriority.UseBorders = false;
this.xrLabel18.StylePriority.UseFont = false;
this.xrLabel18.StylePriority.UseTextAlignment = false;
this.xrLabel18.TextAlignment = DevExpress.XtraPrinting.TextAlignment.TopLeft;
//
// bindingSource1
//
this.bindingSource1.DataSource = typeof(BeWo.Report.ReportObjects.ServiceInvoiceRO);
this.xrLabel10.Font = new System.Drawing.Font("Arial", 11.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
this.xrLabel10.ForeColor = System.Drawing.Color.Black;
this.xrLabel10.LocationFloat = new DevExpress.Utils.PointFloat(426.4996F, 53.87503F);
this.xrLabel10.Name = "xrLabel10";
this.xrLabel10.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
this.xrLabel10.SizeF = new System.Drawing.SizeF(269.9999F, 19.5F);
this.xrLabel10.StylePriority.UseFont = false;
this.xrLabel10.StylePriority.UseForeColor = false;
this.xrLabel10.StylePriority.UseTextAlignment = false;
this.xrLabel10.Text = "[NetClaim] €";
this.xrLabel10.TextAlignment = DevExpress.XtraPrinting.TextAlignment.TopRight;
//
// RechnungLandkreisOsnabrueck
//
@@ -888,8 +854,8 @@ namespace HPHBersenbrueck
((System.ComponentModel.ISupportInitialize)(this.xrTable3)).EndInit();
((System.ComponentModel.ISupportInitialize)(this.xrTable2)).EndInit();
((System.ComponentModel.ISupportInitialize)(this.xrTable4)).EndInit();
((System.ComponentModel.ISupportInitialize)(this.xrTable1)).EndInit();
((System.ComponentModel.ISupportInitialize)(this.bindingSource1)).EndInit();
((System.ComponentModel.ISupportInitialize)(this.xrTable1)).EndInit();
((System.ComponentModel.ISupportInitialize)(this)).EndInit();
}
@@ -920,7 +886,6 @@ namespace HPHBersenbrueck
private DevExpress.XtraReports.UI.XRTableCell xrTableCell16;
private DevExpress.XtraReports.UI.XRTableCell xrTableCell18;
private DevExpress.XtraReports.UI.XRTableCell xrTableCell53;
private DevExpress.XtraReports.UI.XRTableCell xrTableCell41;
private DevExpress.XtraReports.UI.DetailReportBand DetailReport;
private DevExpress.XtraReports.UI.DetailBand Detail1;
private DevExpress.XtraReports.UI.DetailReportBand DetailReport1;
@@ -932,7 +897,6 @@ namespace HPHBersenbrueck
private DevExpress.XtraReports.UI.XRTableCell xrTableCell32;
private DevExpress.XtraReports.UI.XRTable xrTable4;
private DevExpress.XtraReports.UI.XRTableRow xrTableRow10;
private DevExpress.XtraReports.UI.XRTableCell xrTableCell12;
private DevExpress.XtraReports.UI.XRTableCell xrTableCell15;
private DevExpress.XtraReports.UI.XRTableCell xrTableCell17;
private DevExpress.XtraReports.UI.XRTableCell xrTableCell19;
@@ -943,7 +907,6 @@ namespace HPHBersenbrueck
private DevExpress.XtraReports.UI.XRLabel lblAZ;
private DevExpress.XtraReports.UI.XRLabel xrLabel1;
private DevExpress.XtraReports.UI.XRPictureBox xrPictureBox1;
private DevExpress.XtraReports.UI.XRLabel xrLabel3;
private DevExpress.XtraReports.UI.XRTableCell xrTableCell7;
private DevExpress.XtraReports.UI.XRTableCell xrTableCell9;
private DevExpress.XtraReports.UI.XRLabel xrLabel7;

View File

@@ -121,7 +121,7 @@
<value>ewBcAHIAdABmADEAXABhAG4AcwBpAGMAcABnADEAMgA1ADIADQAKAHsADQAKAFwAZgBvAG4AdAB0AGIAbAANAAoAewBcAGYAMAAgAFQAaQBtAGUAcwAgAE4AZQB3ACAAUgBvAG0AYQBuADsAfQANAAoAewBcAGYAMQAgAEEAcgBpAGEAbAA7AH0ADQAKAH0ADQAKAHsADQAKAFwAYwBvAGwAbwByAHQAYgBsAA0ACgA7AA0ACgBcAHIAZQBkADAAXABnAHIAZQBlAG4AMABcAGIAbAB1AGUAMgA1ADUAOwANAAoAXAByAGUAZAAwAFwAZwByAGUAZQBuADAAXABiAGwAdQBlADAAOwANAAoAfQANAAoAXABuAG8AdQBpAGMAbwBtAHAAYQB0AFwAcwBwAGwAeQB0AHcAbgBpAG4AZQBcAGgAdABtAGEAdQB0AHMAcAB7AFwAcABhAHIAZABcAHAAbABhAGkAbgBcAHEAbAB7AFwAZgAxAFwAZgBzADEAMgBcAGMAZgAyACAASABwAEgAIABCAGUAcgBzAGUAbgBiAHIAXAB1ADIANQAyAFwAJwBmAGMAYwBrACAAXAB1ADgAMgAyADYAXAAnADkANQAgAFAAbwBzAHQAZgBhAGMAaAAgADEAMQAwADYAIABcAHUAOAAyADIANgBcACcAOQA1ACAANAA5ADUAOAA3ACAAQgBlAHIAcwBlAG4AYgByAFwAdQAyADUAMgBcACcAZgBjAGMAawB9AFwAZgBzADIANABcAHAAYQByAH0ADQAKAH0ADQAKAA==</value>
</data>
<data name="xrRichText2.SerializableRtfString" xml:space="preserve">
<value>ewBcAHIAdABmADEAXABhAG4AcwBpAGMAcABnADEAMgA1ADIADQAKAHsADQAKAFwAZgBvAG4AdAB0AGIAbAANAAoAewBcAGYAMAAgAFQAaQBtAGUAcwAgAE4AZQB3ACAAUgBvAG0AYQBuADsAfQANAAoAewBcAGYAMQAgAEEAcgBpAGEAbAA7AH0ADQAKAH0ADQAKAHsADQAKAFwAYwBvAGwAbwByAHQAYgBsAA0ACgA7AA0ACgBcAHIAZQBkADAAXABnAHIAZQBlAG4AMABcAGIAbAB1AGUAMgA1ADUAOwANAAoAXAByAGUAZAAwAFwAZwByAGUAZQBuADAAXABiAGwAdQBlADAAOwANAAoAfQANAAoAXABuAG8AdQBpAGMAbwBtAHAAYQB0AFwAcwBwAGwAeQB0AHcAbgBpAG4AZQBcAGgAdABtAGEAdQB0AHMAcAB7AFwAcABhAHIAZABcAHAAbABhAGkAbgBcAHEAbAB7AFwAZgAxAFwAZgBzADEANgBcAGMAZgAyACAARgByAGEAbgB6AC0ASABlAGMAawBlAHIALQBTAHQAcgAuACAAMgAwAH0AXABmADEAXABmAHMAMQA2AFwAcABhAHIAXABwAGEAcgBkAFwAcABsAGEAaQBuAFwAcQBsAHsAXABmADEAXABmAHMAMQA2AFwAYwBmADIAIAA0ADkANQA5ADMAIABCAGUAcgBzAGUAbgBiAHIAXAB1ADIANQAyAFwAJwBmAGMAYwBrAH0AXABmADEAXABmAHMAMQA2AFwAcABhAHIAXABwAGEAcgBkAFwAcABsAGEAaQBuAFwAcQBsAFwAZgAxAFwAZgBzADEANgBcAHAAYQByAFwAcABhAHIAZABcAHAAbABhAGkAbgBcAHEAbABcAGYAMQBcAGYAcwAxADYAXABwAGEAcgBcAHAAYQByAGQAXABwAGwAYQBpAG4AXABxAGwAewBcAGYAMQBcAGYAcwAxADYAXABjAGYAMgAgAEkASwAtAE4AcgAuACAANQAwADAAMwA0ADUAOQA4ADMAfQBcAGYAMQBcAGYAcwAxADYAXABwAGEAcgBcAHAAYQByAGQAXABwAGwAYQBpAG4AXABxAGwAewBcAGYAMQBcAGYAcwAxADYAXABjAGYAMgAgAFQAZQBsAGUAZgBvAG4AIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAwADUANAAzADkALwA2ADAAMgA5ADgAOAA2AH0AXABmADEAXABmAHMAMQA2AFwAcABhAHIAXABwAGEAcgBkAFwAcABsAGEAaQBuAFwAcQBsAFwAZgAxAFwAZgBzADEANgBcAHAAYQByAFwAcABhAHIAZABcAHAAbABhAGkAbgBcAHEAbAB7AFwAZgAxAFwAZgBzADEANgBcAGMAZgAyACAAUwBhAGMAaABiAGUAYQByAGIAZQBpAHQAZQByAC8ALQBpAG4AOgAgAEYAcgBhAHUAIABLAGEAdABoAGEAcgBpAG4AYQAgAEYAdQB1AGcAZQB9AFwAZgAxAFwAZgBzADEANgBcAHAAYQByAFwAcABhAHIAZABcAHAAbABhAGkAbgBcAHEAbAB7AFwAZgAxAFwAZgBzADEANgBcAGMAZgAyACAAVABlAGwAZQBmAG8AbgA6ACAAMAA1ADQAMwA5ACAAOQA0ADQAOQAgAC0ANAA3ADIAfQBcAGYAcwAyADQAXABwAGEAcgB9AA0ACgB9AA0ACgA=</value>
<value>ewBcAHIAdABmADEAXABkAGUAZgBmADAAewBcAGYAbwBuAHQAdABiAGwAewBcAGYAMAAgAEMAYQBsAGkAYgByAGkAOwB9AHsAXABmADEAIABUAGkAbQBlAHMAIABOAGUAdwAgAFIAbwBtAGEAbgA7AH0AewBcAGYAMgAgAEEAcgBpAGEAbAA7AH0AfQB7AFwAYwBvAGwAbwByAHQAYgBsACAAOwBcAHIAZQBkADAAXABnAHIAZQBlAG4AMABcAGIAbAB1AGUAMAAgADsAXAByAGUAZAAwAFwAZwByAGUAZQBuADAAXABiAGwAdQBlADIANQA1ACAAOwB9AHsAXAAqAFwAZABlAGYAYwBoAHAAIABcAGYAMQBcAGYAcwAyADQAfQB7AFwAcwB0AHkAbABlAHMAaABlAGUAdAAgAHsAXABxAGwAXABmADEAXABmAHMAMgA0ACAATgBvAHIAbQBhAGwAOwB9AHsAXAAqAFwAYwBzADEAXABmADEAXABmAHMAMgA0AFwAYwBmADEAIABEAGUAZgBhAHUAbAB0ACAAUABhAHIAYQBnAHIAYQBwAGgAIABGAG8AbgB0ADsAfQB7AFwAKgBcAGMAcwAyAFwAcwBiAGEAcwBlAGQAbwBuADEAXABmADEAXABmAHMAMgA0AFwAYwBmADEAIABMAGkAbgBlACAATgB1AG0AYgBlAHIAOwB9AHsAXAAqAFwAYwBzADMAXAB1AGwAXABmADEAXABmAHMAMgA0AFwAYwBmADIAIABIAHkAcABlAHIAbABpAG4AawA7AH0AewBcACoAXAB0AHMANABcAHQAcwByAG8AdwBkAFwAZgAxAFwAZgBzADIANABcAHEAbABcAHQAcwBjAGUAbABsAHAAYQBkAGQAZgBsADMAXAB0AHMAYwBlAGwAbABwAGEAZABkAGwAMQAwADgAXAB0AHMAYwBlAGwAbABwAGEAZABkAGYAYgAzAFwAdABzAGMAZQBsAGwAcABhAGQAZABmAHIAMwBcAHQAcwBjAGUAbABsAHAAYQBkAGQAcgAxADAAOABcAHQAcwBjAGUAbABsAHAAYQBkAGQAZgB0ADMAXAB0AHMAdgBlAHIAdABhAGwAdABcAGMAbAB0AHgAbAByAHQAYgAgAE4AbwByAG0AYQBsACAAVABhAGIAbABlADsAfQB7AFwAKgBcAHQAcwA1AFwAdABzAHIAbwB3AGQAXABzAGIAYQBzAGUAZABvAG4ANABcAGYAMQBcAGYAcwAyADQAXABxAGwAXAB0AHIAYgByAGQAcgB0AFwAYgByAGQAcgBzAFwAYgByAGQAcgB3ADEAMABcAHQAcgBiAHIAZAByAGwAXABiAHIAZAByAHMAXABiAHIAZAByAHcAMQAwAFwAdAByAGIAcgBkAHIAYgBcAGIAcgBkAHIAcwBcAGIAcgBkAHIAdwAxADAAXAB0AHIAYgByAGQAcgByAFwAYgByAGQAcgBzAFwAYgByAGQAcgB3ADEAMABcAHQAcgBiAHIAZAByAGgAXABiAHIAZAByAHMAXABiAHIAZAByAHcAMQAwAFwAdAByAGIAcgBkAHIAdgBcAGIAcgBkAHIAcwBcAGIAcgBkAHIAdwAxADAAXAB0AHMAYwBlAGwAbABwAGEAZABkAGYAbAAzAFwAdABzAGMAZQBsAGwAcABhAGQAZABsADEAMAA4AFwAdABzAGMAZQBsAGwAcABhAGQAZABmAHIAMwBcAHQAcwBjAGUAbABsAHAAYQBkAGQAcgAxADAAOABcAHQAcwB2AGUAcgB0AGEAbAB0AFwAYwBsAHQAeABsAHIAdABiACAAVABhAGIAbABlACAAUwBpAG0AcABsAGUAIAAxADsAfQB9AHsAXAAqAFwAbABpAHMAdABvAHYAZQByAHIAaQBkAGUAdABhAGIAbABlAH0AXABuAG8AdQBpAGMAbwBtAHAAYQB0AFwAcwBwAGwAeQB0AHcAbgBpAG4AZQBcAGgAdABtAGEAdQB0AHMAcABcAHAAYQByAGQAXABwAGwAYQBpAG4AXABxAGwAewBcAGYAMgBcAGYAcwAxADYAXABjAGYAMQAgAEYAcgBhAG4AegAtAEgAZQBjAGsAZQByAC0AUwB0AHIALgAgADIAMAB9AFwAZgAyAFwAZgBzADEANgBcAGMAZgAxAFwAcABhAHIAXABwAGEAcgBkAFwAcABsAGEAaQBuAFwAcQBsAHsAXABmADIAXABmAHMAMQA2AFwAYwBmADEAIAA0ADkANQA5ADMAIABCAGUAcgBzAGUAbgBiAHIAXAB1ADIANQAyAFwAJwBmAGMAYwBrAH0AXABmADIAXABmAHMAMQA2AFwAYwBmADEAXABwAGEAcgBcAHAAYQByAGQAXABwAGwAYQBpAG4AXABxAGwAXABmADIAXABmAHMAMQA2AFwAYwBmADEAXABwAGEAcgBcAHAAYQByAGQAXABwAGwAYQBpAG4AXABxAGwAXABmADIAXABmAHMAMQA2AFwAYwBmADEAXABwAGEAcgBcAHAAYQByAGQAXABwAGwAYQBpAG4AXABxAGwAewBcAGYAMgBcAGYAcwAxADYAXABjAGYAMQAgAEkASwAtAE4AcgAuACAANQAwADAAMwA0ADUAOQA4ADMAfQBcAGYAMgBcAGYAcwAxADYAXABjAGYAMQBcAHAAYQByAFwAcABhAHIAZABcAHAAbABhAGkAbgBcAHEAbAB7AFwAZgAyAFwAZgBzADEANgBcAGMAZgAxACAAVABlAGwAZQBmAG8AbgAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgADAANQA0ADMAOQAvADYAMAAyADkAOAA4ADYAfQBcAGYAMgBcAGYAcwAxADYAXABjAGYAMQBcAHAAYQByAFwAcABhAHIAZABcAHAAbABhAGkAbgBcAHEAbABcAGYAMgBcAGYAcwAxADYAXABjAGYAMQBcAHAAYQByAFwAcABhAHIAZABcAHAAbABhAGkAbgBcAHEAbAB7AFwAZgAyAFwAZgBzADEANgBcAGMAZgAxACAAUwBhAGMAaABiAGUAYQByAGIAZQBpAHQAZQByAC8ALQBpAG4AOgAgAH0AewBcAGYAMgBcAGYAcwAxADYAXABjAGYAMQAgAFsAUwBlAG4AZABlAHIAQwBvAG4AdABhAGMAdABQAGUAcgBzAG8AbgBdAH0AXABmADIAXABmAHMAMQA2AFwAYwBmADEAXABwAGEAcgBcAHAAYQByAGQAXABwAGwAYQBpAG4AXABxAGwAewBcAGYAMgBcAGYAcwAxADYAXABjAGYAMQAgAFQAZQBsAGUAZgBvAG4AOgB9AHsAXABsAGEAbgBnADEAMAAzADEAXABsAGEAbgBnAGYAZQAxADAAMwAxAFwAZgAyAFwAZgBzADEANgBcAGMAZgAxACAAIAB9AHsAXABmADIAXABmAHMAMQA2AFwAYwBmADEAIABbAFMAZQBuAGQAZQByAEMAbwBuAHQAYQBjAHQAUABlAHIAcwBvAG4AUABoAG8AbgBlAF0AfQBcAGYAMQBcAGYAcwAyADQAXABjAGYAMQBcAHAAYQByAH0A</value>
</data>
<assembly alias="System.Drawing" name="System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" />
<data name="xrPictureBox1.Image" type="System.Drawing.Bitmap, System.Drawing" mimetype="application/x-microsoft.net.object.bytearray.base64">

View File

@@ -32,6 +32,7 @@ namespace HPHBersenbrueck
System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(RechnungSelbstzahler));
this.Detail = new DevExpress.XtraReports.UI.DetailBand();
this.ReportHeader = new DevExpress.XtraReports.UI.ReportHeaderBand();
this.xrRichText3 = new DevExpress.XtraReports.UI.XRRichText();
this.xrRichText1 = new DevExpress.XtraReports.UI.XRRichText();
this.lblAdresse = new DevExpress.XtraReports.UI.XRLabel();
this.xrRichText2 = new DevExpress.XtraReports.UI.XRRichText();
@@ -44,13 +45,12 @@ namespace HPHBersenbrueck
this.xrLabel15 = new DevExpress.XtraReports.UI.XRLabel();
this.xrLabel7 = new DevExpress.XtraReports.UI.XRLabel();
this.xrLabel6 = new DevExpress.XtraReports.UI.XRLabel();
this.xrLabel3 = new DevExpress.XtraReports.UI.XRLabel();
this.xrLabel8 = new DevExpress.XtraReports.UI.XRLabel();
this.lblAZ = new DevExpress.XtraReports.UI.XRLabel();
this.xrLabel4 = new DevExpress.XtraReports.UI.XRLabel();
this.xrTable3 = new DevExpress.XtraReports.UI.XRTable();
this.xrTableRow14 = new DevExpress.XtraReports.UI.XRTableRow();
this.xrTableCell41 = new DevExpress.XtraReports.UI.XRTableCell();
this.xrTableCell6 = new DevExpress.XtraReports.UI.XRTableCell();
this.xrTableCell14 = new DevExpress.XtraReports.UI.XRTableCell();
this.xrTableCell16 = new DevExpress.XtraReports.UI.XRTableCell();
this.xrTableCell1 = new DevExpress.XtraReports.UI.XRTableCell();
@@ -77,7 +77,7 @@ namespace HPHBersenbrueck
this.Detail2 = new DevExpress.XtraReports.UI.DetailBand();
this.xrTable4 = new DevExpress.XtraReports.UI.XRTable();
this.xrTableRow10 = new DevExpress.XtraReports.UI.XRTableRow();
this.xrTableCell12 = new DevExpress.XtraReports.UI.XRTableCell();
this.xrTableCell10 = new DevExpress.XtraReports.UI.XRTableCell();
this.xrTableCell15 = new DevExpress.XtraReports.UI.XRTableCell();
this.xrTableCell17 = new DevExpress.XtraReports.UI.XRTableCell();
this.xrTableCell19 = new DevExpress.XtraReports.UI.XRTableCell();
@@ -95,21 +95,16 @@ namespace HPHBersenbrueck
this.xrTableCell32 = new DevExpress.XtraReports.UI.XRTableCell();
this.xrTableCell4 = new DevExpress.XtraReports.UI.XRTableCell();
this.xrLabel10 = new DevExpress.XtraReports.UI.XRLabel();
this.xrRichText3 = new DevExpress.XtraReports.UI.XRRichText();
this.xrRichText4 = new DevExpress.XtraReports.UI.XRRichText();
this.xrRichText5 = new DevExpress.XtraReports.UI.XRRichText();
this.xrTableCell6 = new DevExpress.XtraReports.UI.XRTableCell();
this.xrTableCell10 = new DevExpress.XtraReports.UI.XRTableCell();
this.lblKvNrText = new DevExpress.XtraReports.UI.XRLabel();
this.lblKvNr = new DevExpress.XtraReports.UI.XRLabel();
this.bindingSource1 = new System.Windows.Forms.BindingSource(this.components);
((System.ComponentModel.ISupportInitialize)(this.xrRichText3)).BeginInit();
((System.ComponentModel.ISupportInitialize)(this.xrRichText1)).BeginInit();
((System.ComponentModel.ISupportInitialize)(this.xrRichText2)).BeginInit();
((System.ComponentModel.ISupportInitialize)(this.xrTable3)).BeginInit();
((System.ComponentModel.ISupportInitialize)(this.xrTable2)).BeginInit();
((System.ComponentModel.ISupportInitialize)(this.xrTable4)).BeginInit();
((System.ComponentModel.ISupportInitialize)(this.xrTable1)).BeginInit();
((System.ComponentModel.ISupportInitialize)(this.xrRichText3)).BeginInit();
((System.ComponentModel.ISupportInitialize)(this.xrRichText4)).BeginInit();
((System.ComponentModel.ISupportInitialize)(this.xrRichText5)).BeginInit();
((System.ComponentModel.ISupportInitialize)(this.bindingSource1)).BeginInit();
((System.ComponentModel.ISupportInitialize)(this)).BeginInit();
//
@@ -131,6 +126,15 @@ namespace HPHBersenbrueck
this.ReportHeader.Name = "ReportHeader";
this.ReportHeader.StylePriority.UseFont = false;
//
// xrRichText3
//
this.xrRichText3.Font = new System.Drawing.Font("Arial", 8.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
this.xrRichText3.LocationFloat = new DevExpress.Utils.PointFloat(454.7917F, 47.99998F);
this.xrRichText3.Name = "xrRichText3";
this.xrRichText3.SerializableRtfString = resources.GetString("xrRichText3.SerializableRtfString");
this.xrRichText3.SizeF = new System.Drawing.SizeF(180.5832F, 14.54172F);
this.xrRichText3.StylePriority.UseFont = false;
//
// xrRichText1
//
this.xrRichText1.Font = new System.Drawing.Font("Arial", 6F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
@@ -204,12 +208,11 @@ namespace HPHBersenbrueck
// Page1
//
this.Page1.Controls.AddRange(new DevExpress.XtraReports.UI.XRControl[] {
this.xrRichText5,
this.xrRichText4,
this.lblKvNrText,
this.lblKvNr,
this.xrLabel15,
this.xrLabel7,
this.xrLabel6,
this.xrLabel3,
this.xrLabel8,
this.lblAZ,
this.xrLabel4,
@@ -261,28 +264,19 @@ namespace HPHBersenbrueck
this.xrLabel6.Text = "Debitor-Nr. bei Zahlungen bitte unbedingt \r\nangeben!";
this.xrLabel6.TextAlignment = DevExpress.XtraPrinting.TextAlignment.TopCenter;
//
// xrLabel3
//
this.xrLabel3.LocationFloat = new DevExpress.Utils.PointFloat(46.37507F, 26F);
this.xrLabel3.Name = "xrLabel3";
this.xrLabel3.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
this.xrLabel3.SizeF = new System.Drawing.SizeF(68.75F, 15.95834F);
this.xrLabel3.StylePriority.UseFont = false;
this.xrLabel3.Text = "[DebitorNumber]";
//
// xrLabel8
//
this.xrLabel8.Font = new System.Drawing.Font("Arial", 8.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
this.xrLabel8.LocationFloat = new DevExpress.Utils.PointFloat(0F, 65F);
this.xrLabel8.LocationFloat = new DevExpress.Utils.PointFloat(0F, 65.00002F);
this.xrLabel8.Name = "xrLabel8";
this.xrLabel8.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
this.xrLabel8.SizeF = new System.Drawing.SizeF(120.125F, 17F);
this.xrLabel8.SizeF = new System.Drawing.SizeF(42.00007F, 17F);
this.xrLabel8.StylePriority.UseFont = false;
this.xrLabel8.Text = "geb.:";
//
// lblAZ
//
this.lblAZ.LocationFloat = new DevExpress.Utils.PointFloat(120.1251F, 65.00002F);
this.lblAZ.LocationFloat = new DevExpress.Utils.PointFloat(42.00007F, 65.00002F);
this.lblAZ.Multiline = true;
this.lblAZ.Name = "lblAZ";
this.lblAZ.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
@@ -307,18 +301,17 @@ namespace HPHBersenbrueck
// xrTable3
//
this.xrTable3.Font = new System.Drawing.Font("Segoe UI", 8F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
this.xrTable3.LocationFloat = new DevExpress.Utils.PointFloat(0F, 200F);
this.xrTable3.LocationFloat = new DevExpress.Utils.PointFloat(9.918213E-05F, 200F);
this.xrTable3.Name = "xrTable3";
this.xrTable3.Rows.AddRange(new DevExpress.XtraReports.UI.XRTableRow[] {
this.xrTableRow14});
this.xrTable3.SizeF = new System.Drawing.SizeF(696.0415F, 21.16669F);
this.xrTable3.SizeF = new System.Drawing.SizeF(696.0414F, 21.16669F);
this.xrTable3.StylePriority.UseBorderColor = false;
this.xrTable3.StylePriority.UseFont = false;
//
// xrTableRow14
//
this.xrTableRow14.Cells.AddRange(new DevExpress.XtraReports.UI.XRTableCell[] {
this.xrTableCell41,
this.xrTableCell6,
this.xrTableCell14,
this.xrTableCell16,
@@ -329,12 +322,14 @@ namespace HPHBersenbrueck
this.xrTableRow14.StylePriority.UseBackColor = false;
this.xrTableRow14.Weight = 0.085D;
//
// xrTableCell41
// xrTableCell6
//
this.xrTableCell41.Font = new System.Drawing.Font("Arial", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
this.xrTableCell41.Name = "xrTableCell41";
this.xrTableCell41.StylePriority.UseFont = false;
this.xrTableCell41.Weight = 0.1551276624045636D;
this.xrTableCell6.Font = new System.Drawing.Font("Arial", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
this.xrTableCell6.Name = "xrTableCell6";
this.xrTableCell6.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
this.xrTableCell6.StylePriority.UseFont = false;
this.xrTableCell6.StylePriority.UsePadding = false;
this.xrTableCell6.Weight = 0.51225113347972628D;
//
// xrTableCell14
//
@@ -346,7 +341,7 @@ namespace HPHBersenbrueck
this.xrTableCell14.StylePriority.UseBorders = false;
this.xrTableCell14.StylePriority.UseFont = false;
this.xrTableCell14.Text = "Zeitraum";
this.xrTableCell14.Weight = 0.076850614035889719D;
this.xrTableCell14.Weight = 0.11210706289216102D;
//
// xrTableCell16
//
@@ -522,7 +517,7 @@ namespace HPHBersenbrueck
//
// xrLabel2
//
this.xrLabel2.LocationFloat = new DevExpress.Utils.PointFloat(120.1251F, 25F);
this.xrLabel2.LocationFloat = new DevExpress.Utils.PointFloat(42.00007F, 25F);
this.xrLabel2.Multiline = true;
this.xrLabel2.Name = "xrLabel2";
this.xrLabel2.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
@@ -613,18 +608,17 @@ namespace HPHBersenbrueck
// xrTable4
//
this.xrTable4.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(242)))), ((int)(((byte)(242)))), ((int)(((byte)(242)))));
this.xrTable4.LocationFloat = new DevExpress.Utils.PointFloat(0F, 0F);
this.xrTable4.LocationFloat = new DevExpress.Utils.PointFloat(0.0002288818F, 0F);
this.xrTable4.Name = "xrTable4";
this.xrTable4.Rows.AddRange(new DevExpress.XtraReports.UI.XRTableRow[] {
this.xrTableRow10});
this.xrTable4.SizeF = new System.Drawing.SizeF(696.4995F, 17F);
this.xrTable4.SizeF = new System.Drawing.SizeF(696.4993F, 17F);
this.xrTable4.StylePriority.UseBackColor = false;
this.xrTable4.StylePriority.UseBorderColor = false;
//
// xrTableRow10
//
this.xrTableRow10.Cells.AddRange(new DevExpress.XtraReports.UI.XRTableCell[] {
this.xrTableCell12,
this.xrTableCell10,
this.xrTableCell15,
this.xrTableCell17,
@@ -634,23 +628,24 @@ namespace HPHBersenbrueck
this.xrTableRow10.Name = "xrTableRow10";
this.xrTableRow10.Weight = 0.08500000000000002D;
//
// xrTableCell12
// xrTableCell10
//
this.xrTableCell12.BackColor = System.Drawing.Color.White;
this.xrTableCell12.DataBindings.AddRange(new DevExpress.XtraReports.UI.XRBinding[] {
new DevExpress.XtraReports.UI.XRBinding("Text", null, "ServiceInvoicePeriods.ServiceInvoiceItems.AccountingPeriodStart", "{0:MMMM yyyy}")});
this.xrTableCell12.Name = "xrTableCell12";
this.xrTableCell12.StylePriority.UseBackColor = false;
this.xrTableCell12.StylePriority.UseTextAlignment = false;
this.xrTableCell12.TextAlignment = DevExpress.XtraPrinting.TextAlignment.TopRight;
this.xrTableCell12.Weight = 0.15512765737680284D;
this.xrTableCell10.BackColor = System.Drawing.Color.White;
this.xrTableCell10.DataBindings.AddRange(new DevExpress.XtraReports.UI.XRBinding[] {
new DevExpress.XtraReports.UI.XRBinding("Text", null, "ServiceInvoicePeriods.ServiceInvoiceItems.ServiceDescription")});
this.xrTableCell10.Name = "xrTableCell10";
this.xrTableCell10.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
this.xrTableCell10.StylePriority.UseBackColor = false;
this.xrTableCell10.StylePriority.UsePadding = false;
this.xrTableCell10.Text = "xrTableCell10";
this.xrTableCell10.Weight = 0.5122508255504884D;
//
// xrTableCell15
//
this.xrTableCell15.BackColor = System.Drawing.Color.White;
this.xrTableCell15.CanShrink = true;
this.xrTableCell15.DataBindings.AddRange(new DevExpress.XtraReports.UI.XRBinding[] {
new DevExpress.XtraReports.UI.XRBinding("Text", null, "AccountingPeriod")});
new DevExpress.XtraReports.UI.XRBinding("Text", null, "AccountingPeriodStart", "{0:MMM.yyyy}")});
this.xrTableCell15.Multiline = true;
this.xrTableCell15.Name = "xrTableCell15";
this.xrTableCell15.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
@@ -659,7 +654,7 @@ namespace HPHBersenbrueck
this.xrTableCell15.StylePriority.UseBorders = false;
this.xrTableCell15.StylePriority.UseFont = false;
this.xrTableCell15.StylePriority.UsePadding = false;
this.xrTableCell15.Weight = 0.076850719271339352D;
this.xrTableCell15.Weight = 0.11210711064173543D;
//
// xrTableCell17
//
@@ -871,53 +866,27 @@ namespace HPHBersenbrueck
this.xrLabel10.Text = "[NetClaim] €";
this.xrLabel10.TextAlignment = DevExpress.XtraPrinting.TextAlignment.TopRight;
//
// xrRichText3
// lblKvNrText
//
this.xrRichText3.Font = new System.Drawing.Font("Arial", 8.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
this.xrRichText3.LocationFloat = new DevExpress.Utils.PointFloat(454.7917F, 47.99998F);
this.xrRichText3.Name = "xrRichText3";
this.xrRichText3.SerializableRtfString = resources.GetString("xrRichText3.SerializableRtfString");
this.xrRichText3.SizeF = new System.Drawing.SizeF(180.5832F, 14.54172F);
this.xrRichText3.StylePriority.UseFont = false;
this.lblKvNrText.Font = new System.Drawing.Font("Arial", 8.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
this.lblKvNrText.LocationFloat = new DevExpress.Utils.PointFloat(0F, 119F);
this.lblKvNrText.Name = "lblKvNrText";
this.lblKvNrText.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
this.lblKvNrText.SizeF = new System.Drawing.SizeF(102.4167F, 17.00001F);
this.lblKvNrText.StylePriority.UseFont = false;
this.lblKvNrText.Text = "Krankenvers.-Nr.:";
this.lblKvNrText.Visible = false;
//
// xrRichText4
// lblKvNr
//
this.xrRichText4.Font = new System.Drawing.Font("Arial", 8.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
this.xrRichText4.LocationFloat = new DevExpress.Utils.PointFloat(0F, 121.4583F);
this.xrRichText4.Name = "xrRichText4";
this.xrRichText4.SerializableRtfString = resources.GetString("xrRichText4.SerializableRtfString");
this.xrRichText4.SizeF = new System.Drawing.SizeF(180.5832F, 14.54172F);
this.xrRichText4.StylePriority.UseFont = false;
//
// xrRichText5
//
this.xrRichText5.Font = new System.Drawing.Font("Arial", 8.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
this.xrRichText5.LocationFloat = new DevExpress.Utils.PointFloat(0F, 150.5F);
this.xrRichText5.Name = "xrRichText5";
this.xrRichText5.SerializableRtfString = resources.GetString("xrRichText5.SerializableRtfString");
this.xrRichText5.SizeF = new System.Drawing.SizeF(180.5832F, 14.54172F);
this.xrRichText5.StylePriority.UseFont = false;
//
// xrTableCell6
//
this.xrTableCell6.Font = new System.Drawing.Font("Arial", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
this.xrTableCell6.Name = "xrTableCell6";
this.xrTableCell6.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
this.xrTableCell6.StylePriority.UseFont = false;
this.xrTableCell6.StylePriority.UsePadding = false;
this.xrTableCell6.Weight = 0.39238006526122704D;
//
// xrTableCell10
//
this.xrTableCell10.BackColor = System.Drawing.Color.White;
this.xrTableCell10.DataBindings.AddRange(new DevExpress.XtraReports.UI.XRBinding[] {
new DevExpress.XtraReports.UI.XRBinding("Text", null, "ServiceInvoicePeriods.ServiceInvoiceItems.ServiceDescription")});
this.xrTableCell10.Name = "xrTableCell10";
this.xrTableCell10.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
this.xrTableCell10.StylePriority.UseBackColor = false;
this.xrTableCell10.StylePriority.UsePadding = false;
this.xrTableCell10.Text = "xrTableCell10";
this.xrTableCell10.Weight = 0.39237990243313486D;
this.lblKvNr.LocationFloat = new DevExpress.Utils.PointFloat(102.4167F, 119F);
this.lblKvNr.Multiline = true;
this.lblKvNr.Name = "lblKvNr";
this.lblKvNr.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
this.lblKvNr.SizeF = new System.Drawing.SizeF(145.1299F, 16.99998F);
this.lblKvNr.StylePriority.UseFont = false;
this.lblKvNr.Text = "[CustomerReferenceNumber]";
this.lblKvNr.Visible = false;
//
// bindingSource1
//
@@ -944,15 +913,13 @@ namespace HPHBersenbrueck
this.PageWidth = 827;
this.PaperKind = System.Drawing.Printing.PaperKind.A4;
this.Version = "17.1";
((System.ComponentModel.ISupportInitialize)(this.xrRichText3)).EndInit();
((System.ComponentModel.ISupportInitialize)(this.xrRichText1)).EndInit();
((System.ComponentModel.ISupportInitialize)(this.xrRichText2)).EndInit();
((System.ComponentModel.ISupportInitialize)(this.xrTable3)).EndInit();
((System.ComponentModel.ISupportInitialize)(this.xrTable2)).EndInit();
((System.ComponentModel.ISupportInitialize)(this.xrTable4)).EndInit();
((System.ComponentModel.ISupportInitialize)(this.xrTable1)).EndInit();
((System.ComponentModel.ISupportInitialize)(this.xrRichText3)).EndInit();
((System.ComponentModel.ISupportInitialize)(this.xrRichText4)).EndInit();
((System.ComponentModel.ISupportInitialize)(this.xrRichText5)).EndInit();
((System.ComponentModel.ISupportInitialize)(this.bindingSource1)).EndInit();
((System.ComponentModel.ISupportInitialize)(this)).EndInit();
@@ -984,7 +951,6 @@ namespace HPHBersenbrueck
private DevExpress.XtraReports.UI.XRTableCell xrTableCell16;
private DevExpress.XtraReports.UI.XRTableCell xrTableCell18;
private DevExpress.XtraReports.UI.XRTableCell xrTableCell53;
private DevExpress.XtraReports.UI.XRTableCell xrTableCell41;
private DevExpress.XtraReports.UI.DetailReportBand DetailReport;
private DevExpress.XtraReports.UI.DetailBand Detail1;
private DevExpress.XtraReports.UI.DetailReportBand DetailReport1;
@@ -996,7 +962,6 @@ namespace HPHBersenbrueck
private DevExpress.XtraReports.UI.XRTableCell xrTableCell32;
private DevExpress.XtraReports.UI.XRTable xrTable4;
private DevExpress.XtraReports.UI.XRTableRow xrTableRow10;
private DevExpress.XtraReports.UI.XRTableCell xrTableCell12;
private DevExpress.XtraReports.UI.XRTableCell xrTableCell15;
private DevExpress.XtraReports.UI.XRTableCell xrTableCell17;
private DevExpress.XtraReports.UI.XRTableCell xrTableCell19;
@@ -1007,7 +972,6 @@ namespace HPHBersenbrueck
private DevExpress.XtraReports.UI.XRLabel lblAZ;
private DevExpress.XtraReports.UI.XRLabel xrLabel1;
private DevExpress.XtraReports.UI.XRPictureBox xrPictureBox1;
private DevExpress.XtraReports.UI.XRLabel xrLabel3;
private DevExpress.XtraReports.UI.XRTableCell xrTableCell7;
private DevExpress.XtraReports.UI.XRTableCell xrTableCell9;
private DevExpress.XtraReports.UI.XRLabel xrLabel7;
@@ -1026,9 +990,9 @@ namespace HPHBersenbrueck
private DevExpress.XtraReports.UI.XRLabel xrLabel16;
private DevExpress.XtraReports.UI.XRLabel xrLabel14;
private DevExpress.XtraReports.UI.XRRichText xrRichText3;
private DevExpress.XtraReports.UI.XRRichText xrRichText5;
private DevExpress.XtraReports.UI.XRRichText xrRichText4;
private DevExpress.XtraReports.UI.XRTableCell xrTableCell6;
private DevExpress.XtraReports.UI.XRTableCell xrTableCell10;
private DevExpress.XtraReports.UI.XRLabel lblKvNrText;
private DevExpress.XtraReports.UI.XRLabel lblKvNr;
}
}

View File

@@ -41,6 +41,12 @@ namespace HPHBersenbrueck
pRO.Notice = "";
pRO.NetClaim = pRO.NetClaim.Replace("€", "").Trim();
if (pRO.CustomerReferenceNumber != null && pRO.CustomerReferenceNumber.Length > 0)
{
lblKvNrText.Visible = true;
lblKvNr.Visible = true;
}
this.bindingSource1.DataSource = pRO;
}

View File

@@ -124,7 +124,7 @@
<value>ewBcAHIAdABmADEAXABhAG4AcwBpAGMAcABnADEAMgA1ADIADQAKAHsADQAKAFwAZgBvAG4AdAB0AGIAbAANAAoAewBcAGYAMAAgAFQAaQBtAGUAcwAgAE4AZQB3ACAAUgBvAG0AYQBuADsAfQANAAoAewBcAGYAMQAgAEEAcgBpAGEAbAA7AH0ADQAKAH0ADQAKAHsADQAKAFwAYwBvAGwAbwByAHQAYgBsAA0ACgA7AA0ACgBcAHIAZQBkADAAXABnAHIAZQBlAG4AMABcAGIAbAB1AGUAMgA1ADUAOwANAAoAXAByAGUAZAAwAFwAZwByAGUAZQBuADAAXABiAGwAdQBlADAAOwANAAoAfQANAAoAXABuAG8AdQBpAGMAbwBtAHAAYQB0AFwAcwBwAGwAeQB0AHcAbgBpAG4AZQBcAGgAdABtAGEAdQB0AHMAcAB7AFwAcABhAHIAZABcAHAAbABhAGkAbgBcAHEAbAB7AFwAZgAxAFwAZgBzADEAMgBcAGMAZgAyACAASABwAEgAIABCAGUAcgBzAGUAbgBiAHIAXAB1ADIANQAyAFwAJwBmAGMAYwBrACAAXAB1ADgAMgAyADYAXAAnADkANQAgAFAAbwBzAHQAZgBhAGMAaAAgADEAMQAwADYAIABcAHUAOAAyADIANgBcACcAOQA1ACAANAA5ADUAOAA3ACAAQgBlAHIAcwBlAG4AYgByAFwAdQAyADUAMgBcACcAZgBjAGMAawB9AFwAZgBzADIANABcAHAAYQByAH0ADQAKAH0ADQAKAA==</value>
</data>
<data name="xrRichText2.SerializableRtfString" xml:space="preserve">
<value>ewBcAHIAdABmADEAXABhAG4AcwBpAGMAcABnADEAMgA1ADIADQAKAHsADQAKAFwAZgBvAG4AdAB0AGIAbAANAAoAewBcAGYAMAAgAFQAaQBtAGUAcwAgAE4AZQB3ACAAUgBvAG0AYQBuADsAfQANAAoAewBcAGYAMQAgAEEAcgBpAGEAbAA7AH0ADQAKAH0ADQAKAHsADQAKAFwAYwBvAGwAbwByAHQAYgBsAA0ACgA7AA0ACgBcAHIAZQBkADAAXABnAHIAZQBlAG4AMABcAGIAbAB1AGUAMgA1ADUAOwANAAoAXAByAGUAZAAwAFwAZwByAGUAZQBuADAAXABiAGwAdQBlADAAOwANAAoAfQANAAoAXABuAG8AdQBpAGMAbwBtAHAAYQB0AFwAcwBwAGwAeQB0AHcAbgBpAG4AZQBcAGgAdABtAGEAdQB0AHMAcAB7AFwAcABhAHIAZABcAHAAbABhAGkAbgBcAHEAbAB7AFwAZgAxAFwAZgBzADEANgBcAGMAZgAyACAARgByAGEAbgB6AC0ASABlAGMAawBlAHIALQBTAHQAcgAuACAAMgAwAH0AXABmADEAXABmAHMAMQA2AFwAcABhAHIAXABwAGEAcgBkAFwAcABsAGEAaQBuAFwAcQBsAHsAXABmADEAXABmAHMAMQA2AFwAYwBmADIAIAA0ADkANQA5ADMAIABCAGUAcgBzAGUAbgBiAHIAXAB1ADIANQAyAFwAJwBmAGMAYwBrAH0AXABmADEAXABmAHMAMQA2AFwAcABhAHIAXABwAGEAcgBkAFwAcABsAGEAaQBuAFwAcQBsAFwAZgAxAFwAZgBzADEANgBcAHAAYQByAFwAcABhAHIAZABcAHAAbABhAGkAbgBcAHEAbABcAGYAMQBcAGYAcwAxADYAXABwAGEAcgBcAHAAYQByAGQAXABwAGwAYQBpAG4AXABxAGwAewBcAGYAMQBcAGYAcwAxADYAXABjAGYAMgAgAEkASwAtAE4AcgAuACAANQAwADAAMwA0ADUAOQA4ADMAfQBcAGYAMQBcAGYAcwAxADYAXABwAGEAcgBcAHAAYQByAGQAXABwAGwAYQBpAG4AXABxAGwAewBcAGYAMQBcAGYAcwAxADYAXABjAGYAMgAgAFQAZQBsAGUAZgBvAG4AIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAwADUANAAzADkALwA2ADAAMgA5ADgAOAA2AH0AXABmADEAXABmAHMAMQA2AFwAcABhAHIAXABwAGEAcgBkAFwAcABsAGEAaQBuAFwAcQBsAFwAZgAxAFwAZgBzADEANgBcAHAAYQByAFwAcABhAHIAZABcAHAAbABhAGkAbgBcAHEAbAB7AFwAZgAxAFwAZgBzADEANgBcAGMAZgAyACAAUwBhAGMAaABiAGUAYQByAGIAZQBpAHQAZQByAC8ALQBpAG4AOgAgAEYAcgBhAHUAIABLAGEAdABoAGEAcgBpAG4AYQAgAEYAdQB1AGcAZQB9AFwAZgAxAFwAZgBzADEANgBcAHAAYQByAFwAcABhAHIAZABcAHAAbABhAGkAbgBcAHEAbAB7AFwAZgAxAFwAZgBzADEANgBcAGMAZgAyACAAVABlAGwAZQBmAG8AbgA6ACAAMAA1ADQAMwA5ACAAOQA0ADQAOQAgAC0ANAA3ADIAfQBcAGYAcwAyADQAXABwAGEAcgB9AA0ACgB9AA0ACgA=</value>
<value>ewBcAHIAdABmADEAXABkAGUAZgBmADAAewBcAGYAbwBuAHQAdABiAGwAewBcAGYAMAAgAEMAYQBsAGkAYgByAGkAOwB9AHsAXABmADEAIABUAGkAbQBlAHMAIABOAGUAdwAgAFIAbwBtAGEAbgA7AH0AewBcAGYAMgAgAEEAcgBpAGEAbAA7AH0AfQB7AFwAYwBvAGwAbwByAHQAYgBsACAAOwBcAHIAZQBkADAAXABnAHIAZQBlAG4AMABcAGIAbAB1AGUAMAAgADsAXAByAGUAZAAwAFwAZwByAGUAZQBuADAAXABiAGwAdQBlADIANQA1ACAAOwB9AHsAXAAqAFwAZABlAGYAYwBoAHAAIABcAGYAMQBcAGYAcwAyADQAfQB7AFwAcwB0AHkAbABlAHMAaABlAGUAdAAgAHsAXABxAGwAXABmADEAXABmAHMAMgA0ACAATgBvAHIAbQBhAGwAOwB9AHsAXAAqAFwAYwBzADEAXABmADEAXABmAHMAMgA0AFwAYwBmADEAIABEAGUAZgBhAHUAbAB0ACAAUABhAHIAYQBnAHIAYQBwAGgAIABGAG8AbgB0ADsAfQB7AFwAKgBcAGMAcwAyAFwAcwBiAGEAcwBlAGQAbwBuADEAXABmADEAXABmAHMAMgA0AFwAYwBmADEAIABMAGkAbgBlACAATgB1AG0AYgBlAHIAOwB9AHsAXAAqAFwAYwBzADMAXAB1AGwAXABmADEAXABmAHMAMgA0AFwAYwBmADIAIABIAHkAcABlAHIAbABpAG4AawA7AH0AewBcACoAXAB0AHMANABcAHQAcwByAG8AdwBkAFwAZgAxAFwAZgBzADIANABcAHEAbABcAHQAcwBjAGUAbABsAHAAYQBkAGQAZgBsADMAXAB0AHMAYwBlAGwAbABwAGEAZABkAGwAMQAwADgAXAB0AHMAYwBlAGwAbABwAGEAZABkAGYAYgAzAFwAdABzAGMAZQBsAGwAcABhAGQAZABmAHIAMwBcAHQAcwBjAGUAbABsAHAAYQBkAGQAcgAxADAAOABcAHQAcwBjAGUAbABsAHAAYQBkAGQAZgB0ADMAXAB0AHMAdgBlAHIAdABhAGwAdABcAGMAbAB0AHgAbAByAHQAYgAgAE4AbwByAG0AYQBsACAAVABhAGIAbABlADsAfQB7AFwAKgBcAHQAcwA1AFwAdABzAHIAbwB3AGQAXABzAGIAYQBzAGUAZABvAG4ANABcAGYAMQBcAGYAcwAyADQAXABxAGwAXAB0AHIAYgByAGQAcgB0AFwAYgByAGQAcgBzAFwAYgByAGQAcgB3ADEAMABcAHQAcgBiAHIAZAByAGwAXABiAHIAZAByAHMAXABiAHIAZAByAHcAMQAwAFwAdAByAGIAcgBkAHIAYgBcAGIAcgBkAHIAcwBcAGIAcgBkAHIAdwAxADAAXAB0AHIAYgByAGQAcgByAFwAYgByAGQAcgBzAFwAYgByAGQAcgB3ADEAMABcAHQAcgBiAHIAZAByAGgAXABiAHIAZAByAHMAXABiAHIAZAByAHcAMQAwAFwAdAByAGIAcgBkAHIAdgBcAGIAcgBkAHIAcwBcAGIAcgBkAHIAdwAxADAAXAB0AHMAYwBlAGwAbABwAGEAZABkAGYAbAAzAFwAdABzAGMAZQBsAGwAcABhAGQAZABsADEAMAA4AFwAdABzAGMAZQBsAGwAcABhAGQAZABmAHIAMwBcAHQAcwBjAGUAbABsAHAAYQBkAGQAcgAxADAAOABcAHQAcwB2AGUAcgB0AGEAbAB0AFwAYwBsAHQAeABsAHIAdABiACAAVABhAGIAbABlACAAUwBpAG0AcABsAGUAIAAxADsAfQB9AHsAXAAqAFwAbABpAHMAdABvAHYAZQByAHIAaQBkAGUAdABhAGIAbABlAH0AXABuAG8AdQBpAGMAbwBtAHAAYQB0AFwAcwBwAGwAeQB0AHcAbgBpAG4AZQBcAGgAdABtAGEAdQB0AHMAcABcAHAAYQByAGQAXABwAGwAYQBpAG4AXABxAGwAewBcAGYAMgBcAGYAcwAxADYAXABjAGYAMQAgAEYAcgBhAG4AegAtAEgAZQBjAGsAZQByAC0AUwB0AHIALgAgADIAMAB9AFwAZgAyAFwAZgBzADEANgBcAGMAZgAxAFwAcABhAHIAXABwAGEAcgBkAFwAcABsAGEAaQBuAFwAcQBsAHsAXABmADIAXABmAHMAMQA2AFwAYwBmADEAIAA0ADkANQA5ADMAIABCAGUAcgBzAGUAbgBiAHIAXAB1ADIANQAyAFwAJwBmAGMAYwBrAH0AXABmADIAXABmAHMAMQA2AFwAYwBmADEAXABwAGEAcgBcAHAAYQByAGQAXABwAGwAYQBpAG4AXABxAGwAXABmADIAXABmAHMAMQA2AFwAYwBmADEAXABwAGEAcgBcAHAAYQByAGQAXABwAGwAYQBpAG4AXABxAGwAXABmADIAXABmAHMAMQA2AFwAYwBmADEAXABwAGEAcgBcAHAAYQByAGQAXABwAGwAYQBpAG4AXABxAGwAewBcAGYAMgBcAGYAcwAxADYAXABjAGYAMQAgAEkASwAtAE4AcgAuACAANQAwADAAMwA0ADUAOQA4ADMAfQBcAGYAMgBcAGYAcwAxADYAXABjAGYAMQBcAHAAYQByAFwAcABhAHIAZABcAHAAbABhAGkAbgBcAHEAbAB7AFwAZgAyAFwAZgBzADEANgBcAGMAZgAxACAAVABlAGwAZQBmAG8AbgAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgADAANQA0ADMAOQAvADYAMAAyADkAOAA4ADYAfQBcAGYAMgBcAGYAcwAxADYAXABjAGYAMQBcAHAAYQByAFwAcABhAHIAZABcAHAAbABhAGkAbgBcAHEAbABcAGYAMgBcAGYAcwAxADYAXABjAGYAMQBcAHAAYQByAFwAcABhAHIAZABcAHAAbABhAGkAbgBcAHEAbAB7AFwAZgAyAFwAZgBzADEANgBcAGMAZgAxACAAUwBhAGMAaABiAGUAYQByAGIAZQBpAHQAZQByAC8ALQBpAG4AOgAgAH0AewBcAGYAMgBcAGYAcwAxADYAXABjAGYAMQAgAFsAUwBlAG4AZABlAHIAQwBvAG4AdABhAGMAdABQAGUAcgBzAG8AbgBdAH0AXABmADIAXABmAHMAMQA2AFwAYwBmADEAXABwAGEAcgBcAHAAYQByAGQAXABwAGwAYQBpAG4AXABxAGwAewBcAGYAMgBcAGYAcwAxADYAXABjAGYAMQAgAFQAZQBsAGUAZgBvAG4AOgAgAH0AewBcAGYAMgBcAGYAcwAxADYAXABjAGYAMQAgAFsAUwBlAG4AZABlAHIAQwBvAG4AdABhAGMAdABQAGUAcgBzAG8AbgBQAGgAbwBuAGUAXQB9AFwAZgAxAFwAZgBzADIANABcAGMAZgAxAFwAcABhAHIAfQA=</value>
</data>
<assembly alias="System.Drawing" name="System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" />
<data name="xrPictureBox1.Image" type="System.Drawing.Bitmap, System.Drawing" mimetype="application/x-microsoft.net.object.bytearray.base64">
@@ -307,12 +307,6 @@
YII=
</value>
</data>
<data name="xrRichText5.SerializableRtfString" xml:space="preserve">
<value>ewBcAHIAdABmADEAXABkAGUAZgBmADAAewBcAGYAbwBuAHQAdABiAGwAewBcAGYAMAAgAEMAYQBsAGkAYgByAGkAOwB9AHsAXABmADEAIABUAGkAbQBlAHMAIABOAGUAdwAgAFIAbwBtAGEAbgA7AH0AewBcAGYAMgAgAEEAcgBpAGEAbAA7AH0AfQB7AFwAYwBvAGwAbwByAHQAYgBsACAAOwBcAHIAZQBkADAAXABnAHIAZQBlAG4AMABcAGIAbAB1AGUAMAAgADsAXAByAGUAZAAwAFwAZwByAGUAZQBuADAAXABiAGwAdQBlADIANQA1ACAAOwB9AHsAXAAqAFwAZABlAGYAYwBoAHAAIABcAGYAMQBcAGYAcwAyADQAfQB7AFwAcwB0AHkAbABlAHMAaABlAGUAdAAgAHsAXABxAGwAXABmADEAXABmAHMAMgA0ACAATgBvAHIAbQBhAGwAOwB9AHsAXAAqAFwAYwBzADEAXABmADEAXABmAHMAMgA0AFwAYwBmADEAIABEAGUAZgBhAHUAbAB0ACAAUABhAHIAYQBnAHIAYQBwAGgAIABGAG8AbgB0ADsAfQB7AFwAKgBcAGMAcwAyAFwAcwBiAGEAcwBlAGQAbwBuADEAXABmADEAXABmAHMAMgA0AFwAYwBmADEAIABMAGkAbgBlACAATgB1AG0AYgBlAHIAOwB9AHsAXAAqAFwAYwBzADMAXAB1AGwAXABmADEAXABmAHMAMgA0AFwAYwBmADIAIABIAHkAcABlAHIAbABpAG4AawA7AH0AewBcACoAXAB0AHMANABcAHQAcwByAG8AdwBkAFwAZgAxAFwAZgBzADIANABcAHEAbABcAHQAcwBjAGUAbABsAHAAYQBkAGQAZgBsADMAXAB0AHMAYwBlAGwAbABwAGEAZABkAGwAMQAwADgAXAB0AHMAYwBlAGwAbABwAGEAZABkAGYAYgAzAFwAdABzAGMAZQBsAGwAcABhAGQAZABmAHIAMwBcAHQAcwBjAGUAbABsAHAAYQBkAGQAcgAxADAAOABcAHQAcwBjAGUAbABsAHAAYQBkAGQAZgB0ADMAXAB0AHMAdgBlAHIAdABhAGwAdABcAGMAbAB0AHgAbAByAHQAYgAgAE4AbwByAG0AYQBsACAAVABhAGIAbABlADsAfQB7AFwAKgBcAHQAcwA1AFwAdABzAHIAbwB3AGQAXABzAGIAYQBzAGUAZABvAG4ANABcAGYAMQBcAGYAcwAyADQAXABxAGwAXAB0AHIAYgByAGQAcgB0AFwAYgByAGQAcgBzAFwAYgByAGQAcgB3ADEAMABcAHQAcgBiAHIAZAByAGwAXABiAHIAZAByAHMAXABiAHIAZAByAHcAMQAwAFwAdAByAGIAcgBkAHIAYgBcAGIAcgBkAHIAcwBcAGIAcgBkAHIAdwAxADAAXAB0AHIAYgByAGQAcgByAFwAYgByAGQAcgBzAFwAYgByAGQAcgB3ADEAMABcAHQAcgBiAHIAZAByAGgAXABiAHIAZAByAHMAXABiAHIAZAByAHcAMQAwAFwAdAByAGIAcgBkAHIAdgBcAGIAcgBkAHIAcwBcAGIAcgBkAHIAdwAxADAAXAB0AHMAYwBlAGwAbABwAGEAZABkAGYAbAAzAFwAdABzAGMAZQBsAGwAcABhAGQAZABsADEAMAA4AFwAdABzAGMAZQBsAGwAcABhAGQAZABmAHIAMwBcAHQAcwBjAGUAbABsAHAAYQBkAGQAcgAxADAAOABcAHQAcwB2AGUAcgB0AGEAbAB0AFwAYwBsAHQAeABsAHIAdABiACAAVABhAGIAbABlACAAUwBpAG0AcABsAGUAIAAxADsAfQB9AHsAXAAqAFwAbABpAHMAdABvAHYAZQByAHIAaQBkAGUAdABhAGIAbABlAH0AXABuAG8AdQBpAGMAbwBtAHAAYQB0AFwAcwBwAGwAeQB0AHcAbgBpAG4AZQBcAGgAdABtAGEAdQB0AHMAcABcAHAAYQByAGQAXABwAGwAYQBpAG4AXABxAGwAewBcAGIAXABmADIAXABmAHMAMQA2AFwAYwBmADEAIABbAEMAdQBzAHQAbwBtAGUAcgBSAGUAZgBlAHIAZQBuAGMAZQBOAHUAbQBiAGUAcgBdAH0AXABmADEAXABmAHMAMgA0AFwAYwBmADEAXABwAGEAcgB9AA==</value>
</data>
<data name="xrRichText4.SerializableRtfString" xml:space="preserve">
<value>ewBcAHIAdABmADEAXABkAGUAZgBmADAAewBcAGYAbwBuAHQAdABiAGwAewBcAGYAMAAgAEMAYQBsAGkAYgByAGkAOwB9AHsAXABmADEAIABUAGkAbQBlAHMAIABOAGUAdwAgAFIAbwBtAGEAbgA7AH0AewBcAGYAMgAgAEEAcgBpAGEAbAA7AH0AfQB7AFwAYwBvAGwAbwByAHQAYgBsACAAOwBcAHIAZQBkADAAXABnAHIAZQBlAG4AMABcAGIAbAB1AGUAMAAgADsAXAByAGUAZAAwAFwAZwByAGUAZQBuADAAXABiAGwAdQBlADIANQA1ACAAOwB9AHsAXAAqAFwAZABlAGYAYwBoAHAAIABcAGYAMQBcAGYAcwAyADQAfQB7AFwAcwB0AHkAbABlAHMAaABlAGUAdAAgAHsAXABxAGwAXABmADEAXABmAHMAMgA0ACAATgBvAHIAbQBhAGwAOwB9AHsAXAAqAFwAYwBzADEAXABmADEAXABmAHMAMgA0AFwAYwBmADEAIABEAGUAZgBhAHUAbAB0ACAAUABhAHIAYQBnAHIAYQBwAGgAIABGAG8AbgB0ADsAfQB7AFwAKgBcAGMAcwAyAFwAcwBiAGEAcwBlAGQAbwBuADEAXABmADEAXABmAHMAMgA0AFwAYwBmADEAIABMAGkAbgBlACAATgB1AG0AYgBlAHIAOwB9AHsAXAAqAFwAYwBzADMAXAB1AGwAXABmADEAXABmAHMAMgA0AFwAYwBmADIAIABIAHkAcABlAHIAbABpAG4AawA7AH0AewBcACoAXAB0AHMANABcAHQAcwByAG8AdwBkAFwAZgAxAFwAZgBzADIANABcAHEAbABcAHQAcwBjAGUAbABsAHAAYQBkAGQAZgBsADMAXAB0AHMAYwBlAGwAbABwAGEAZABkAGwAMQAwADgAXAB0AHMAYwBlAGwAbABwAGEAZABkAGYAYgAzAFwAdABzAGMAZQBsAGwAcABhAGQAZABmAHIAMwBcAHQAcwBjAGUAbABsAHAAYQBkAGQAcgAxADAAOABcAHQAcwBjAGUAbABsAHAAYQBkAGQAZgB0ADMAXAB0AHMAdgBlAHIAdABhAGwAdABcAGMAbAB0AHgAbAByAHQAYgAgAE4AbwByAG0AYQBsACAAVABhAGIAbABlADsAfQB7AFwAKgBcAHQAcwA1AFwAdABzAHIAbwB3AGQAXABzAGIAYQBzAGUAZABvAG4ANABcAGYAMQBcAGYAcwAyADQAXABxAGwAXAB0AHIAYgByAGQAcgB0AFwAYgByAGQAcgBzAFwAYgByAGQAcgB3ADEAMABcAHQAcgBiAHIAZAByAGwAXABiAHIAZAByAHMAXABiAHIAZAByAHcAMQAwAFwAdAByAGIAcgBkAHIAYgBcAGIAcgBkAHIAcwBcAGIAcgBkAHIAdwAxADAAXAB0AHIAYgByAGQAcgByAFwAYgByAGQAcgBzAFwAYgByAGQAcgB3ADEAMABcAHQAcgBiAHIAZAByAGgAXABiAHIAZAByAHMAXABiAHIAZAByAHcAMQAwAFwAdAByAGIAcgBkAHIAdgBcAGIAcgBkAHIAcwBcAGIAcgBkAHIAdwAxADAAXAB0AHMAYwBlAGwAbABwAGEAZABkAGYAbAAzAFwAdABzAGMAZQBsAGwAcABhAGQAZABsADEAMAA4AFwAdABzAGMAZQBsAGwAcABhAGQAZABmAHIAMwBcAHQAcwBjAGUAbABsAHAAYQBkAGQAcgAxADAAOABcAHQAcwB2AGUAcgB0AGEAbAB0AFwAYwBsAHQAeABsAHIAdABiACAAVABhAGIAbABlACAAUwBpAG0AcABsAGUAIAAxADsAfQB9AHsAXAAqAFwAbABpAHMAdABvAHYAZQByAHIAaQBkAGUAdABhAGIAbABlAH0AXABuAG8AdQBpAGMAbwBtAHAAYQB0AFwAcwBwAGwAeQB0AHcAbgBpAG4AZQBcAGgAdABtAGEAdQB0AHMAcABcAHAAYQByAGQAXABwAGwAYQBpAG4AXABxAGwAewBcAGIAXABmADIAXABmAHMAMQA2AFwAYwBmADEAIABLAHIAYQBuAGsAZQBuAHYAZQByAHMALgAtAE4AcgAuADoAfQB7AFwAbABhAG4AZwAxADAAMwAxAFwAbABhAG4AZwBmAGUAMQAwADMAMQBcAGIAXABmADIAXABmAHMAMQA2AFwAYwBmADEAIAAgAD8AfQB7AFwAYgBcAGYAMgBcAGYAcwAxADYAXABjAGYAMQAgACAAfQBcAGYAMQBcAGYAcwAyADQAXABjAGYAMQBcAHAAYQByAH0A</value>
</data>
<metadata name="bindingSource1.TrayLocation" type="System.Drawing.Point, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a">
<value>17, 17</value>
</metadata>

View File

@@ -59,6 +59,12 @@ namespace SKFLeverkusen
this.subBand4 = new DevExpress.XtraReports.UI.SubBand();
this.xrRichText2 = new DevExpress.XtraReports.UI.XRRichText();
this.subBand5 = new DevExpress.XtraReports.UI.SubBand();
this.xrLabel38 = new DevExpress.XtraReports.UI.XRLabel();
this.xrLabel39 = new DevExpress.XtraReports.UI.XRLabel();
this.xrLabel40 = new DevExpress.XtraReports.UI.XRLabel();
this.xrLabel41 = new DevExpress.XtraReports.UI.XRLabel();
this.xrLabel42 = new DevExpress.XtraReports.UI.XRLabel();
this.xrLabel43 = new DevExpress.XtraReports.UI.XRLabel();
this.xrRichText5 = new DevExpress.XtraReports.UI.XRRichText();
this.subBand7 = new DevExpress.XtraReports.UI.SubBand();
this.xrRichText7 = new DevExpress.XtraReports.UI.XRRichText();
@@ -69,46 +75,40 @@ namespace SKFLeverkusen
this.subBand10 = new DevExpress.XtraReports.UI.SubBand();
this.xrRichText11 = new DevExpress.XtraReports.UI.XRRichText();
this.subBand11 = new DevExpress.XtraReports.UI.SubBand();
this.PageFooter = new DevExpress.XtraReports.UI.PageFooterBand();
this.topMarginBand1 = new DevExpress.XtraReports.UI.TopMarginBand();
this.bottomMarginBand1 = new DevExpress.XtraReports.UI.BottomMarginBand();
this.xrRichText12 = new DevExpress.XtraReports.UI.XRRichText();
this.subBand12 = new DevExpress.XtraReports.UI.SubBand();
this.subBand13 = new DevExpress.XtraReports.UI.SubBand();
this.subBand14 = new DevExpress.XtraReports.UI.SubBand();
this.subBand15 = new DevExpress.XtraReports.UI.SubBand();
this.subBand16 = new DevExpress.XtraReports.UI.SubBand();
this.subBand17 = new DevExpress.XtraReports.UI.SubBand();
this.subBand18 = new DevExpress.XtraReports.UI.SubBand();
this.xrRichText13 = new DevExpress.XtraReports.UI.XRRichText();
this.xrLabel23 = new DevExpress.XtraReports.UI.XRLabel();
this.xrLabel24 = new DevExpress.XtraReports.UI.XRLabel();
this.xrLabel25 = new DevExpress.XtraReports.UI.XRLabel();
this.xrRichText14 = new DevExpress.XtraReports.UI.XRRichText();
this.xrRichText13 = new DevExpress.XtraReports.UI.XRRichText();
this.subBand13 = new DevExpress.XtraReports.UI.SubBand();
this.xrLabel26 = new DevExpress.XtraReports.UI.XRLabel();
this.xrLabel27 = new DevExpress.XtraReports.UI.XRLabel();
this.xrLabel28 = new DevExpress.XtraReports.UI.XRLabel();
this.xrRichText14 = new DevExpress.XtraReports.UI.XRRichText();
this.subBand14 = new DevExpress.XtraReports.UI.SubBand();
this.xrRichText15 = new DevExpress.XtraReports.UI.XRRichText();
this.subBand15 = new DevExpress.XtraReports.UI.SubBand();
this.xrRichText16 = new DevExpress.XtraReports.UI.XRRichText();
this.xrRichText17 = new DevExpress.XtraReports.UI.XRRichText();
this.subBand16 = new DevExpress.XtraReports.UI.SubBand();
this.xrLabel29 = new DevExpress.XtraReports.UI.XRLabel();
this.xrLabel30 = new DevExpress.XtraReports.UI.XRLabel();
this.xrLabel31 = new DevExpress.XtraReports.UI.XRLabel();
this.xrRichText17 = new DevExpress.XtraReports.UI.XRRichText();
this.subBand17 = new DevExpress.XtraReports.UI.SubBand();
this.xrRichText19 = new DevExpress.XtraReports.UI.XRRichText();
this.xrRichText18 = new DevExpress.XtraReports.UI.XRRichText();
this.xrLabel32 = new DevExpress.XtraReports.UI.XRLabel();
this.xrLabel33 = new DevExpress.XtraReports.UI.XRLabel();
this.xrLabel34 = new DevExpress.XtraReports.UI.XRLabel();
this.xrRichText19 = new DevExpress.XtraReports.UI.XRRichText();
this.subBand18 = new DevExpress.XtraReports.UI.SubBand();
this.xrRichText20 = new DevExpress.XtraReports.UI.XRRichText();
this.xrLabel35 = new DevExpress.XtraReports.UI.XRLabel();
this.xrLabel36 = new DevExpress.XtraReports.UI.XRLabel();
this.xrLabel37 = new DevExpress.XtraReports.UI.XRLabel();
this.xrLabel38 = new DevExpress.XtraReports.UI.XRLabel();
this.xrLabel39 = new DevExpress.XtraReports.UI.XRLabel();
this.xrLabel40 = new DevExpress.XtraReports.UI.XRLabel();
this.xrLabel41 = new DevExpress.XtraReports.UI.XRLabel();
this.xrLabel42 = new DevExpress.XtraReports.UI.XRLabel();
this.xrLabel43 = new DevExpress.XtraReports.UI.XRLabel();
this.PageFooter = new DevExpress.XtraReports.UI.PageFooterBand();
this.topMarginBand1 = new DevExpress.XtraReports.UI.TopMarginBand();
this.bottomMarginBand1 = new DevExpress.XtraReports.UI.BottomMarginBand();
this.bindingSource1 = new System.Windows.Forms.BindingSource(this.components);
((System.ComponentModel.ISupportInitialize)(this.xrRichText10)).BeginInit();
((System.ComponentModel.ISupportInitialize)(this.xrRichText3)).BeginInit();
@@ -126,8 +126,8 @@ namespace SKFLeverkusen
((System.ComponentModel.ISupportInitialize)(this.xrRichText15)).BeginInit();
((System.ComponentModel.ISupportInitialize)(this.xrRichText16)).BeginInit();
((System.ComponentModel.ISupportInitialize)(this.xrRichText17)).BeginInit();
((System.ComponentModel.ISupportInitialize)(this.xrRichText18)).BeginInit();
((System.ComponentModel.ISupportInitialize)(this.xrRichText19)).BeginInit();
((System.ComponentModel.ISupportInitialize)(this.xrRichText18)).BeginInit();
((System.ComponentModel.ISupportInitialize)(this.xrRichText20)).BeginInit();
((System.ComponentModel.ISupportInitialize)(this.bindingSource1)).BeginInit();
((System.ComponentModel.ISupportInitialize)(this)).BeginInit();
@@ -486,6 +486,82 @@ namespace SKFLeverkusen
this.subBand5.HeightF = 1055.625F;
this.subBand5.Name = "subBand5";
//
// xrLabel38
//
this.xrLabel38.Borders = DevExpress.XtraPrinting.BorderSide.None;
this.xrLabel38.LocationFloat = new DevExpress.Utils.PointFloat(0F, 945.2084F);
this.xrLabel38.Name = "xrLabel38";
this.xrLabel38.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
this.xrLabel38.SizeF = new System.Drawing.SizeF(127.4167F, 16.74994F);
this.xrLabel38.StylePriority.UseBorders = false;
this.xrLabel38.StylePriority.UseFont = false;
this.xrLabel38.StylePriority.UseTextAlignment = false;
this.xrLabel38.Text = "Datum, Ort";
this.xrLabel38.TextAlignment = DevExpress.XtraPrinting.TextAlignment.TopLeft;
//
// xrLabel39
//
this.xrLabel39.Borders = DevExpress.XtraPrinting.BorderSide.None;
this.xrLabel39.LocationFloat = new DevExpress.Utils.PointFloat(0F, 1037.5F);
this.xrLabel39.Name = "xrLabel39";
this.xrLabel39.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
this.xrLabel39.SizeF = new System.Drawing.SizeF(127.4167F, 16.74994F);
this.xrLabel39.StylePriority.UseBorders = false;
this.xrLabel39.StylePriority.UseFont = false;
this.xrLabel39.StylePriority.UseTextAlignment = false;
this.xrLabel39.Text = "Datum, Ort";
this.xrLabel39.TextAlignment = DevExpress.XtraPrinting.TextAlignment.TopLeft;
//
// xrLabel40
//
this.xrLabel40.Borders = DevExpress.XtraPrinting.BorderSide.None;
this.xrLabel40.LocationFloat = new DevExpress.Utils.PointFloat(233.7077F, 945.2083F);
this.xrLabel40.Name = "xrLabel40";
this.xrLabel40.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
this.xrLabel40.SizeF = new System.Drawing.SizeF(451.5415F, 16.74994F);
this.xrLabel40.StylePriority.UseBorders = false;
this.xrLabel40.StylePriority.UseFont = false;
this.xrLabel40.StylePriority.UseTextAlignment = false;
this.xrLabel40.Text = "Klientin/Klient/ggf. vertretungsberechtigte Person";
this.xrLabel40.TextAlignment = DevExpress.XtraPrinting.TextAlignment.TopLeft;
//
// xrLabel41
//
this.xrLabel41.Borders = DevExpress.XtraPrinting.BorderSide.None;
this.xrLabel41.LocationFloat = new DevExpress.Utils.PointFloat(233.7077F, 1037.5F);
this.xrLabel41.Name = "xrLabel41";
this.xrLabel41.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
this.xrLabel41.SizeF = new System.Drawing.SizeF(451.5415F, 16.75F);
this.xrLabel41.StylePriority.UseBorders = false;
this.xrLabel41.StylePriority.UseFont = false;
this.xrLabel41.StylePriority.UseTextAlignment = false;
this.xrLabel41.Text = "Leistungserbringer";
this.xrLabel41.TextAlignment = DevExpress.XtraPrinting.TextAlignment.TopLeft;
//
// xrLabel42
//
this.xrLabel42.Borders = DevExpress.XtraPrinting.BorderSide.Bottom;
this.xrLabel42.LocationFloat = new DevExpress.Utils.PointFloat(0F, 927.4584F);
this.xrLabel42.Name = "xrLabel42";
this.xrLabel42.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
this.xrLabel42.SizeF = new System.Drawing.SizeF(685.2493F, 16.74994F);
this.xrLabel42.StylePriority.UseBorders = false;
this.xrLabel42.StylePriority.UseFont = false;
this.xrLabel42.StylePriority.UseTextAlignment = false;
this.xrLabel42.TextAlignment = DevExpress.XtraPrinting.TextAlignment.TopLeft;
//
// xrLabel43
//
this.xrLabel43.Borders = DevExpress.XtraPrinting.BorderSide.Bottom;
this.xrLabel43.LocationFloat = new DevExpress.Utils.PointFloat(0F, 1020.75F);
this.xrLabel43.Name = "xrLabel43";
this.xrLabel43.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
this.xrLabel43.SizeF = new System.Drawing.SizeF(685.2493F, 16.74994F);
this.xrLabel43.StylePriority.UseBorders = false;
this.xrLabel43.StylePriority.UseFont = false;
this.xrLabel43.StylePriority.UseTextAlignment = false;
this.xrLabel43.TextAlignment = DevExpress.XtraPrinting.TextAlignment.TopLeft;
//
// xrRichText5
//
this.xrRichText5.Font = new System.Drawing.Font("Arial", 10F);
@@ -561,23 +637,6 @@ namespace SKFLeverkusen
this.subBand11.HeightF = 980.625F;
this.subBand11.Name = "subBand11";
//
// PageFooter
//
this.PageFooter.HeightF = 0F;
this.PageFooter.Name = "PageFooter";
this.PageFooter.Padding = new DevExpress.XtraPrinting.PaddingInfo(0, 0, 0, 0, 100F);
this.PageFooter.TextAlignment = DevExpress.XtraPrinting.TextAlignment.TopLeft;
//
// topMarginBand1
//
this.topMarginBand1.HeightF = 48F;
this.topMarginBand1.Name = "topMarginBand1";
//
// bottomMarginBand1
//
this.bottomMarginBand1.HeightF = 41F;
this.bottomMarginBand1.Name = "bottomMarginBand1";
//
// xrRichText12
//
this.xrRichText12.Font = new System.Drawing.Font("Arial", 10F);
@@ -596,69 +655,6 @@ namespace SKFLeverkusen
this.subBand12.HeightF = 980.625F;
this.subBand12.Name = "subBand12";
//
// subBand13
//
this.subBand13.Controls.AddRange(new DevExpress.XtraReports.UI.XRControl[] {
this.xrLabel26,
this.xrLabel27,
this.xrLabel28,
this.xrRichText14});
this.subBand13.HeightF = 980.625F;
this.subBand13.Name = "subBand13";
//
// subBand14
//
this.subBand14.Controls.AddRange(new DevExpress.XtraReports.UI.XRControl[] {
this.xrRichText15});
this.subBand14.HeightF = 980.625F;
this.subBand14.Name = "subBand14";
//
// subBand15
//
this.subBand15.Controls.AddRange(new DevExpress.XtraReports.UI.XRControl[] {
this.xrRichText16});
this.subBand15.HeightF = 980.625F;
this.subBand15.Name = "subBand15";
//
// subBand16
//
this.subBand16.Controls.AddRange(new DevExpress.XtraReports.UI.XRControl[] {
this.xrLabel29,
this.xrLabel30,
this.xrLabel31,
this.xrRichText17});
this.subBand16.HeightF = 980.625F;
this.subBand16.Name = "subBand16";
//
// subBand17
//
this.subBand17.Controls.AddRange(new DevExpress.XtraReports.UI.XRControl[] {
this.xrRichText19,
this.xrRichText18,
this.xrLabel32,
this.xrLabel33,
this.xrLabel34});
this.subBand17.HeightF = 975.2705F;
this.subBand17.Name = "subBand17";
//
// subBand18
//
this.subBand18.Controls.AddRange(new DevExpress.XtraReports.UI.XRControl[] {
this.xrRichText20,
this.xrLabel35,
this.xrLabel36,
this.xrLabel37});
this.subBand18.HeightF = 975.2704F;
this.subBand18.Name = "subBand18";
//
// xrRichText13
//
this.xrRichText13.Font = new System.Drawing.Font("Arial", 10F);
this.xrRichText13.LocationFloat = new DevExpress.Utils.PointFloat(0.4376729F, 0F);
this.xrRichText13.Name = "xrRichText13";
this.xrRichText13.SerializableRtfString = resources.GetString("xrRichText13.SerializableRtfString");
this.xrRichText13.SizeF = new System.Drawing.SizeF(686.1247F, 315F);
//
// xrLabel23
//
this.xrLabel23.Borders = DevExpress.XtraPrinting.BorderSide.Bottom;
@@ -682,7 +678,7 @@ namespace SKFLeverkusen
this.xrLabel24.StylePriority.UseBorders = false;
this.xrLabel24.StylePriority.UseFont = false;
this.xrLabel24.StylePriority.UseTextAlignment = false;
this.xrLabel24.Text = "Ort, Datum";
this.xrLabel24.Text = "Datum, Ort";
this.xrLabel24.TextAlignment = DevExpress.XtraPrinting.TextAlignment.TopLeft;
//
// xrLabel25
@@ -696,16 +692,26 @@ namespace SKFLeverkusen
this.xrLabel25.StylePriority.UseBorders = false;
this.xrLabel25.StylePriority.UseFont = false;
this.xrLabel25.StylePriority.UseTextAlignment = false;
this.xrLabel25.Text = "leistungsberechtigte Person / ggf. vertretungsberechtigte Person";
this.xrLabel25.Text = " Klientin/Klient / ggf. vertretungsberechtigte Person";
this.xrLabel25.TextAlignment = DevExpress.XtraPrinting.TextAlignment.TopRight;
//
// xrRichText14
// xrRichText13
//
this.xrRichText14.Font = new System.Drawing.Font("Arial", 10F);
this.xrRichText14.LocationFloat = new DevExpress.Utils.PointFloat(0.4376729F, 0F);
this.xrRichText14.Name = "xrRichText14";
this.xrRichText14.SerializableRtfString = resources.GetString("xrRichText14.SerializableRtfString");
this.xrRichText14.SizeF = new System.Drawing.SizeF(686.1247F, 471.25F);
this.xrRichText13.Font = new System.Drawing.Font("Arial", 10F);
this.xrRichText13.LocationFloat = new DevExpress.Utils.PointFloat(0.4376729F, 0F);
this.xrRichText13.Name = "xrRichText13";
this.xrRichText13.SerializableRtfString = resources.GetString("xrRichText13.SerializableRtfString");
this.xrRichText13.SizeF = new System.Drawing.SizeF(686.1247F, 315F);
//
// subBand13
//
this.subBand13.Controls.AddRange(new DevExpress.XtraReports.UI.XRControl[] {
this.xrLabel26,
this.xrLabel27,
this.xrLabel28,
this.xrRichText14});
this.subBand13.HeightF = 980.625F;
this.subBand13.Name = "subBand13";
//
// xrLabel26
//
@@ -737,16 +743,32 @@ namespace SKFLeverkusen
//
this.xrLabel28.Borders = DevExpress.XtraPrinting.BorderSide.None;
this.xrLabel28.Font = new System.Drawing.Font("Arial", 9.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
this.xrLabel28.LocationFloat = new DevExpress.Utils.PointFloat(289.9578F, 504.3539F);
this.xrLabel28.LocationFloat = new DevExpress.Utils.PointFloat(395.1661F, 504.3539F);
this.xrLabel28.Name = "xrLabel28";
this.xrLabel28.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
this.xrLabel28.SizeF = new System.Drawing.SizeF(395.7313F, 16.74997F);
this.xrLabel28.SizeF = new System.Drawing.SizeF(290.5229F, 36.5416F);
this.xrLabel28.StylePriority.UseBorders = false;
this.xrLabel28.StylePriority.UseFont = false;
this.xrLabel28.StylePriority.UseTextAlignment = false;
this.xrLabel28.Text = "leistungsberechtigte Person / ggf. vertretungsberechtigte Person";
this.xrLabel28.Text = "Unterschrift der leistungsberechtigten Person / ggf. vertretungsberechtigte Perso" +
"n";
this.xrLabel28.TextAlignment = DevExpress.XtraPrinting.TextAlignment.TopRight;
//
// xrRichText14
//
this.xrRichText14.Font = new System.Drawing.Font("Arial", 10F);
this.xrRichText14.LocationFloat = new DevExpress.Utils.PointFloat(0.4376729F, 0F);
this.xrRichText14.Name = "xrRichText14";
this.xrRichText14.SerializableRtfString = resources.GetString("xrRichText14.SerializableRtfString");
this.xrRichText14.SizeF = new System.Drawing.SizeF(686.1247F, 471.25F);
//
// subBand14
//
this.subBand14.Controls.AddRange(new DevExpress.XtraReports.UI.XRControl[] {
this.xrRichText15});
this.subBand14.HeightF = 980.625F;
this.subBand14.Name = "subBand14";
//
// xrRichText15
//
this.xrRichText15.Font = new System.Drawing.Font("Arial", 10F);
@@ -755,6 +777,13 @@ namespace SKFLeverkusen
this.xrRichText15.SerializableRtfString = resources.GetString("xrRichText15.SerializableRtfString");
this.xrRichText15.SizeF = new System.Drawing.SizeF(686.1247F, 980.625F);
//
// subBand15
//
this.subBand15.Controls.AddRange(new DevExpress.XtraReports.UI.XRControl[] {
this.xrRichText16});
this.subBand15.HeightF = 980.625F;
this.subBand15.Name = "subBand15";
//
// xrRichText16
//
this.xrRichText16.Font = new System.Drawing.Font("Arial", 10F);
@@ -763,26 +792,28 @@ namespace SKFLeverkusen
this.xrRichText16.SerializableRtfString = resources.GetString("xrRichText16.SerializableRtfString");
this.xrRichText16.SizeF = new System.Drawing.SizeF(686.1247F, 980.625F);
//
// xrRichText17
// subBand16
//
this.xrRichText17.Font = new System.Drawing.Font("Arial", 10F);
this.xrRichText17.LocationFloat = new DevExpress.Utils.PointFloat(0.4376729F, 0F);
this.xrRichText17.Name = "xrRichText17";
this.xrRichText17.SerializableRtfString = resources.GetString("xrRichText17.SerializableRtfString");
this.xrRichText17.SizeF = new System.Drawing.SizeF(686.1247F, 899.375F);
this.subBand16.Controls.AddRange(new DevExpress.XtraReports.UI.XRControl[] {
this.xrLabel29,
this.xrLabel30,
this.xrLabel31,
this.xrRichText17});
this.subBand16.HeightF = 994.1667F;
this.subBand16.Name = "subBand16";
//
// xrLabel29
//
this.xrLabel29.Borders = DevExpress.XtraPrinting.BorderSide.None;
this.xrLabel29.Font = new System.Drawing.Font("Arial", 9.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
this.xrLabel29.LocationFloat = new DevExpress.Utils.PointFloat(289.9578F, 958.5205F);
this.xrLabel29.LocationFloat = new DevExpress.Utils.PointFloat(428.4995F, 958.5205F);
this.xrLabel29.Name = "xrLabel29";
this.xrLabel29.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
this.xrLabel29.SizeF = new System.Drawing.SizeF(395.2914F, 16.74994F);
this.xrLabel29.SizeF = new System.Drawing.SizeF(256.7497F, 35.64618F);
this.xrLabel29.StylePriority.UseBorders = false;
this.xrLabel29.StylePriority.UseFont = false;
this.xrLabel29.StylePriority.UseTextAlignment = false;
this.xrLabel29.Text = "leistungsberechtigte Person / ggf. vertretungsberechtigte Person";
this.xrLabel29.Text = "Unterschrift leistungsberechtigte Person / ggf. vertretungsberechtigte Person";
this.xrLabel29.TextAlignment = DevExpress.XtraPrinting.TextAlignment.TopRight;
//
// xrLabel30
@@ -811,6 +842,37 @@ namespace SKFLeverkusen
this.xrLabel31.StylePriority.UseTextAlignment = false;
this.xrLabel31.TextAlignment = DevExpress.XtraPrinting.TextAlignment.TopLeft;
//
// xrRichText17
//
this.xrRichText17.Font = new System.Drawing.Font("Arial", 10F);
this.xrRichText17.LocationFloat = new DevExpress.Utils.PointFloat(0.4376729F, 0F);
this.xrRichText17.Name = "xrRichText17";
this.xrRichText17.SerializableRtfString = resources.GetString("xrRichText17.SerializableRtfString");
this.xrRichText17.SizeF = new System.Drawing.SizeF(686.1247F, 899.375F);
//
// subBand17
//
this.subBand17.Controls.AddRange(new DevExpress.XtraReports.UI.XRControl[] {
this.xrRichText19,
this.xrRichText18,
this.xrLabel32,
this.xrLabel33,
this.xrLabel34});
this.subBand17.HeightF = 996.1039F;
this.subBand17.Name = "subBand17";
//
// xrRichText19
//
this.xrRichText19.Borders = ((DevExpress.XtraPrinting.BorderSide)((((DevExpress.XtraPrinting.BorderSide.Left | DevExpress.XtraPrinting.BorderSide.Top)
| DevExpress.XtraPrinting.BorderSide.Right)
| DevExpress.XtraPrinting.BorderSide.Bottom)));
this.xrRichText19.Font = new System.Drawing.Font("Arial", 10F);
this.xrRichText19.LocationFloat = new DevExpress.Utils.PointFloat(0F, 273.3334F);
this.xrRichText19.Name = "xrRichText19";
this.xrRichText19.SerializableRtfString = resources.GetString("xrRichText19.SerializableRtfString");
this.xrRichText19.SizeF = new System.Drawing.SizeF(686.1247F, 430.625F);
this.xrRichText19.StylePriority.UseBorders = false;
//
// xrRichText18
//
this.xrRichText18.Font = new System.Drawing.Font("Arial", 10F);
@@ -849,27 +911,26 @@ namespace SKFLeverkusen
//
this.xrLabel34.Borders = DevExpress.XtraPrinting.BorderSide.None;
this.xrLabel34.Font = new System.Drawing.Font("Arial", 9.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
this.xrLabel34.LocationFloat = new DevExpress.Utils.PointFloat(289.9578F, 958.5205F);
this.xrLabel34.LocationFloat = new DevExpress.Utils.PointFloat(337.1043F, 958.5205F);
this.xrLabel34.Multiline = true;
this.xrLabel34.Name = "xrLabel34";
this.xrLabel34.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
this.xrLabel34.SizeF = new System.Drawing.SizeF(395.5102F, 16.74994F);
this.xrLabel34.SizeF = new System.Drawing.SizeF(348.3637F, 37.58337F);
this.xrLabel34.StylePriority.UseBorders = false;
this.xrLabel34.StylePriority.UseFont = false;
this.xrLabel34.StylePriority.UseTextAlignment = false;
this.xrLabel34.Text = "leistungsberechtigte Person / ggf. vertretungsberechtigte Person";
this.xrLabel34.Text = "Klientin/Klient / ggf. der vertretungsberechtigten Person";
this.xrLabel34.TextAlignment = DevExpress.XtraPrinting.TextAlignment.TopRight;
//
// xrRichText19
// subBand18
//
this.xrRichText19.Borders = ((DevExpress.XtraPrinting.BorderSide)((((DevExpress.XtraPrinting.BorderSide.Left | DevExpress.XtraPrinting.BorderSide.Top)
| DevExpress.XtraPrinting.BorderSide.Right)
| DevExpress.XtraPrinting.BorderSide.Bottom)));
this.xrRichText19.Font = new System.Drawing.Font("Arial", 10F);
this.xrRichText19.LocationFloat = new DevExpress.Utils.PointFloat(0F, 273.3334F);
this.xrRichText19.Name = "xrRichText19";
this.xrRichText19.SerializableRtfString = resources.GetString("xrRichText19.SerializableRtfString");
this.xrRichText19.SizeF = new System.Drawing.SizeF(686.1247F, 430.625F);
this.xrRichText19.StylePriority.UseBorders = false;
this.subBand18.Controls.AddRange(new DevExpress.XtraReports.UI.XRControl[] {
this.xrRichText20,
this.xrLabel35,
this.xrLabel36,
this.xrLabel37});
this.subBand18.HeightF = 975.2704F;
this.subBand18.Name = "subBand18";
//
// xrRichText20
//
@@ -902,7 +963,7 @@ namespace SKFLeverkusen
this.xrLabel36.StylePriority.UseBorders = false;
this.xrLabel36.StylePriority.UseFont = false;
this.xrLabel36.StylePriority.UseTextAlignment = false;
this.xrLabel36.Text = "leistungsberechtigte Person / ggf. vertretungsberechtigte Person";
this.xrLabel36.Text = "Leistungsberechtigte Person / ggf. vertretungsberechtigte Person";
this.xrLabel36.TextAlignment = DevExpress.XtraPrinting.TextAlignment.TopRight;
//
// xrLabel37
@@ -919,81 +980,22 @@ namespace SKFLeverkusen
this.xrLabel37.Text = "Ort, Datum";
this.xrLabel37.TextAlignment = DevExpress.XtraPrinting.TextAlignment.TopLeft;
//
// xrLabel38
// PageFooter
//
this.xrLabel38.Borders = DevExpress.XtraPrinting.BorderSide.None;
this.xrLabel38.LocationFloat = new DevExpress.Utils.PointFloat(0F, 945.2084F);
this.xrLabel38.Name = "xrLabel38";
this.xrLabel38.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
this.xrLabel38.SizeF = new System.Drawing.SizeF(127.4167F, 16.74994F);
this.xrLabel38.StylePriority.UseBorders = false;
this.xrLabel38.StylePriority.UseFont = false;
this.xrLabel38.StylePriority.UseTextAlignment = false;
this.xrLabel38.Text = "Ort, Datum";
this.xrLabel38.TextAlignment = DevExpress.XtraPrinting.TextAlignment.TopLeft;
this.PageFooter.HeightF = 0F;
this.PageFooter.Name = "PageFooter";
this.PageFooter.Padding = new DevExpress.XtraPrinting.PaddingInfo(0, 0, 0, 0, 100F);
this.PageFooter.TextAlignment = DevExpress.XtraPrinting.TextAlignment.TopLeft;
//
// xrLabel39
// topMarginBand1
//
this.xrLabel39.Borders = DevExpress.XtraPrinting.BorderSide.None;
this.xrLabel39.LocationFloat = new DevExpress.Utils.PointFloat(0F, 1037.5F);
this.xrLabel39.Name = "xrLabel39";
this.xrLabel39.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
this.xrLabel39.SizeF = new System.Drawing.SizeF(127.4167F, 16.74994F);
this.xrLabel39.StylePriority.UseBorders = false;
this.xrLabel39.StylePriority.UseFont = false;
this.xrLabel39.StylePriority.UseTextAlignment = false;
this.xrLabel39.Text = "Ort, Datum";
this.xrLabel39.TextAlignment = DevExpress.XtraPrinting.TextAlignment.TopLeft;
this.topMarginBand1.HeightF = 48F;
this.topMarginBand1.Name = "topMarginBand1";
//
// xrLabel40
// bottomMarginBand1
//
this.xrLabel40.Borders = DevExpress.XtraPrinting.BorderSide.None;
this.xrLabel40.LocationFloat = new DevExpress.Utils.PointFloat(233.7077F, 945.2083F);
this.xrLabel40.Name = "xrLabel40";
this.xrLabel40.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
this.xrLabel40.SizeF = new System.Drawing.SizeF(451.5415F, 16.74994F);
this.xrLabel40.StylePriority.UseBorders = false;
this.xrLabel40.StylePriority.UseFont = false;
this.xrLabel40.StylePriority.UseTextAlignment = false;
this.xrLabel40.Text = "leistungsberechtigte Person / ggf. vertretungsberechtigte Person";
this.xrLabel40.TextAlignment = DevExpress.XtraPrinting.TextAlignment.TopLeft;
//
// xrLabel41
//
this.xrLabel41.Borders = DevExpress.XtraPrinting.BorderSide.None;
this.xrLabel41.LocationFloat = new DevExpress.Utils.PointFloat(233.7077F, 1037.5F);
this.xrLabel41.Name = "xrLabel41";
this.xrLabel41.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
this.xrLabel41.SizeF = new System.Drawing.SizeF(451.5415F, 16.75F);
this.xrLabel41.StylePriority.UseBorders = false;
this.xrLabel41.StylePriority.UseFont = false;
this.xrLabel41.StylePriority.UseTextAlignment = false;
this.xrLabel41.Text = "Leistungserbringer";
this.xrLabel41.TextAlignment = DevExpress.XtraPrinting.TextAlignment.TopLeft;
//
// xrLabel42
//
this.xrLabel42.Borders = DevExpress.XtraPrinting.BorderSide.Bottom;
this.xrLabel42.LocationFloat = new DevExpress.Utils.PointFloat(0F, 927.4584F);
this.xrLabel42.Name = "xrLabel42";
this.xrLabel42.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
this.xrLabel42.SizeF = new System.Drawing.SizeF(685.2493F, 16.74994F);
this.xrLabel42.StylePriority.UseBorders = false;
this.xrLabel42.StylePriority.UseFont = false;
this.xrLabel42.StylePriority.UseTextAlignment = false;
this.xrLabel42.TextAlignment = DevExpress.XtraPrinting.TextAlignment.TopLeft;
//
// xrLabel43
//
this.xrLabel43.Borders = DevExpress.XtraPrinting.BorderSide.Bottom;
this.xrLabel43.LocationFloat = new DevExpress.Utils.PointFloat(0F, 1020.75F);
this.xrLabel43.Name = "xrLabel43";
this.xrLabel43.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
this.xrLabel43.SizeF = new System.Drawing.SizeF(685.2493F, 16.74994F);
this.xrLabel43.StylePriority.UseBorders = false;
this.xrLabel43.StylePriority.UseFont = false;
this.xrLabel43.StylePriority.UseTextAlignment = false;
this.xrLabel43.TextAlignment = DevExpress.XtraPrinting.TextAlignment.TopLeft;
this.bottomMarginBand1.HeightF = 41F;
this.bottomMarginBand1.Name = "bottomMarginBand1";
//
// bindingSource1
//
@@ -1029,8 +1031,8 @@ namespace SKFLeverkusen
((System.ComponentModel.ISupportInitialize)(this.xrRichText15)).EndInit();
((System.ComponentModel.ISupportInitialize)(this.xrRichText16)).EndInit();
((System.ComponentModel.ISupportInitialize)(this.xrRichText17)).EndInit();
((System.ComponentModel.ISupportInitialize)(this.xrRichText18)).EndInit();
((System.ComponentModel.ISupportInitialize)(this.xrRichText19)).EndInit();
((System.ComponentModel.ISupportInitialize)(this.xrRichText18)).EndInit();
((System.ComponentModel.ISupportInitialize)(this.xrRichText20)).EndInit();
((System.ComponentModel.ISupportInitialize)(this.bindingSource1)).EndInit();
((System.ComponentModel.ISupportInitialize)(this)).EndInit();

View File

@@ -11,7 +11,7 @@ using DevExpress.XtraReports.UI;
namespace SKFLeverkusen
{
public partial class Betreuungsvertrag : DevExpress.XtraReports.UI.XtraReport, IBeWoReport<CustomerDataRO>
public partial class Betreuungsvertrag : DevExpress.XtraReports.UI.XtraReport//, IBeWoReport<CustomerDataRO>
{
public Betreuungsvertrag()
{

File diff suppressed because one or more lines are too long