cb
This commit is contained in:
@@ -1191,7 +1191,7 @@ namespace BeWo
|
|||||||
};
|
};
|
||||||
var phoneLabel = new Label
|
var phoneLabel = new Label
|
||||||
{
|
{
|
||||||
Content = "PIN für Support-Anruf erhalten",
|
Content = "PIN für Support erhalten",
|
||||||
FontWeight = FontWeights.Bold,
|
FontWeight = FontWeights.Bold,
|
||||||
Margin = new Thickness(5),
|
Margin = new Thickness(5),
|
||||||
HorizontalContentAlignment = HorizontalAlignment.Center,
|
HorizontalContentAlignment = HorizontalAlignment.Center,
|
||||||
|
|||||||
@@ -1738,7 +1738,7 @@ namespace BeWo.View
|
|||||||
{
|
{
|
||||||
if (!String.IsNullOrEmpty(rssItem.Link))
|
if (!String.IsNullOrEmpty(rssItem.Link))
|
||||||
{
|
{
|
||||||
rssItem.Link += String.Format("&k={0}&s={1}", BeWoApp.Tenant, BeWoApp.ServerName);
|
//rssItem.Link += String.Format("&k={0}&s={1}", BeWoApp.Tenant, BeWoApp.ServerName);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -3,7 +3,7 @@
|
|||||||
<PropertyGroup>
|
<PropertyGroup>
|
||||||
<NameOfLastUsedPublishProfile>BeWo2.0</NameOfLastUsedPublishProfile>
|
<NameOfLastUsedPublishProfile>BeWo2.0</NameOfLastUsedPublishProfile>
|
||||||
<UseIISExpress>true</UseIISExpress>
|
<UseIISExpress>true</UseIISExpress>
|
||||||
<LastActiveSolutionConfig>Release|Any CPU</LastActiveSolutionConfig>
|
<LastActiveSolutionConfig>Debug|Any CPU</LastActiveSolutionConfig>
|
||||||
<Use64BitIISExpress>false</Use64BitIISExpress>
|
<Use64BitIISExpress>false</Use64BitIISExpress>
|
||||||
<IISExpressSSLPort />
|
<IISExpressSSLPort />
|
||||||
<IISExpressAnonymousAuthentication />
|
<IISExpressAnonymousAuthentication />
|
||||||
|
|||||||
@@ -80,7 +80,7 @@ namespace AidshilfeEssen
|
|||||||
|
|
||||||
lblAbrechnungszeitraum.Text =
|
lblAbrechnungszeitraum.Text =
|
||||||
String.Format(
|
String.Format(
|
||||||
"Im Zeitraum vom {0:dd.MM.yyyy} bis {1:dd.MM.yyyy} wurden {2:0.00} Fachleistungsstunden des Ambulant Betreuten Wohnens erbracht.",
|
"Im Zeitraum vom {0:dd.MM.yyyy} bis {1:dd.MM.yyyy} wurden {2:0.00} Dienstleistungsstunden des Ambulant Betreuten Wohnens erbracht.",
|
||||||
pRO.AccountingPeriodStart, pRO.AccountingPeriodEnd, hours);
|
pRO.AccountingPeriodStart, pRO.AccountingPeriodEnd, hours);
|
||||||
this.bindingSource1.DataSource = pRO;
|
this.bindingSource1.DataSource = pRO;
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -160,8 +160,29 @@ namespace BetreuWoReports
|
|||||||
|
|
||||||
return null;
|
return null;
|
||||||
}
|
}
|
||||||
|
|
||||||
protected override void CalculateEmployeeSalary(MitarbeiterstundenkontoRO.EmployeeDetail empDetail, DateTime start, DateTime ende)
|
public override decimal BerechneSollProWoche(Contract c, MitarbeiterstundenkontoRO.EmployeeDetail ed)
|
||||||
|
{
|
||||||
|
if (c != null)
|
||||||
|
{
|
||||||
|
if (c.MonthlyTotalHours.HasValue && c.MonthlyTotalHours.Value > 0)
|
||||||
|
{
|
||||||
|
if (ed.ArbeitstageImBerichtszeitraum > 0)
|
||||||
|
{
|
||||||
|
if (c.WeeklyTotalHours.HasValue && c.WeeklyTotalHours.Value > 0)
|
||||||
|
{
|
||||||
|
//return (c.WeeklyTotalHours.Value / c.WeeklyDays.Value) * 5;
|
||||||
|
|
||||||
|
//var test = ed.Employee.Person.LastNameFirstName;
|
||||||
|
return c.WeeklyTotalHours.Value;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
return base.BerechneSollProWoche(c, ed);
|
||||||
|
}
|
||||||
|
|
||||||
|
protected override void CalculateEmployeeSalary(MitarbeiterstundenkontoRO.EmployeeDetail empDetail, DateTime start, DateTime ende)
|
||||||
{
|
{
|
||||||
base.CalculateEmployeeSalary(empDetail, start, ende);
|
base.CalculateEmployeeSalary(empDetail, start, ende);
|
||||||
|
|
||||||
|
|||||||
@@ -0,0 +1,20 @@
|
|||||||
|
using System;
|
||||||
|
using System.Collections.Generic;
|
||||||
|
using System.Linq;
|
||||||
|
using BeWo.Data.Entities;
|
||||||
|
using BeWo.Service.DCEntityMapper;
|
||||||
|
using BeWo.Service.Invoicing;
|
||||||
|
using BeWo.Service.Plugins;
|
||||||
|
using BS.Shared.Core;
|
||||||
|
using BS.Shared.DataContracts;
|
||||||
|
using BS.Shared.DataContracts.Compact;
|
||||||
|
using BS.Shared.Extensions;
|
||||||
|
using BS.Shared.Services;
|
||||||
|
|
||||||
|
namespace HphBersenbrueckFreizeitUndReisen.Abrechnung
|
||||||
|
{
|
||||||
|
public class CustomInvoiceCreation : InvoiceCreation
|
||||||
|
{
|
||||||
|
|
||||||
|
}
|
||||||
|
}
|
||||||
@@ -0,0 +1,21 @@
|
|||||||
|
using System;
|
||||||
|
using System.Collections.Generic;
|
||||||
|
using BeWo.Data.Entities;
|
||||||
|
using BeWo.Service.Invoicing;
|
||||||
|
using BS.Shared.DataContracts;
|
||||||
|
using BS.Shared.DataContracts.Compact;
|
||||||
|
|
||||||
|
namespace HphBersenbrueckFreizeitUndReisen.Abrechnung
|
||||||
|
{
|
||||||
|
public class CustomInvoiceFactory : InvoiceFactory
|
||||||
|
{
|
||||||
|
|
||||||
|
public override InvoiceCreation CreateInvoiceCreator(string specificId, string tenant, Dictionary<CompactSupportConceptDC, List<ServiceRecordDC>> supportConcepts2ServiceRecords)
|
||||||
|
{
|
||||||
|
|
||||||
|
return new CustomInvoiceCreation();
|
||||||
|
|
||||||
|
}
|
||||||
|
|
||||||
|
}
|
||||||
|
}
|
||||||
@@ -70,6 +70,8 @@
|
|||||||
<DependentUpon>AbrechnungsbogenFuD.cs</DependentUpon>
|
<DependentUpon>AbrechnungsbogenFuD.cs</DependentUpon>
|
||||||
</Compile>
|
</Compile>
|
||||||
<Compile Include="Abrechnung\AbrechnungsInfo.cs" />
|
<Compile Include="Abrechnung\AbrechnungsInfo.cs" />
|
||||||
|
<Compile Include="Abrechnung\CustomInvoiceCreation.cs" />
|
||||||
|
<Compile Include="Abrechnung\CustomInvoiceFactory.cs" />
|
||||||
<Compile Include="Abtretungserklärung.cs">
|
<Compile Include="Abtretungserklärung.cs">
|
||||||
<SubType>Component</SubType>
|
<SubType>Component</SubType>
|
||||||
</Compile>
|
</Compile>
|
||||||
@@ -137,7 +139,13 @@
|
|||||||
<Compile Include="AbrechnungsbogenReisen.Designer.cs">
|
<Compile Include="AbrechnungsbogenReisen.Designer.cs">
|
||||||
<DependentUpon>AbrechnungsbogenReisen.cs</DependentUpon>
|
<DependentUpon>AbrechnungsbogenReisen.cs</DependentUpon>
|
||||||
</Compile>
|
</Compile>
|
||||||
<Compile Include="ServiceRecordListReport.cs">
|
<Compile Include="Rechnung.cs">
|
||||||
|
<SubType>Component</SubType>
|
||||||
|
</Compile>
|
||||||
|
<Compile Include="Rechnung.Designer.cs">
|
||||||
|
<DependentUpon>Rechnung.cs</DependentUpon>
|
||||||
|
</Compile>
|
||||||
|
<Compile Include="ServiceRecordListReport.cs">
|
||||||
<SubType>Component</SubType>
|
<SubType>Component</SubType>
|
||||||
</Compile>
|
</Compile>
|
||||||
<Compile Include="ServiceRecordListReport.Designer.cs">
|
<Compile Include="ServiceRecordListReport.Designer.cs">
|
||||||
@@ -209,6 +217,9 @@
|
|||||||
<EmbeddedResource Include="AbrechnungsbogenReisen.resx">
|
<EmbeddedResource Include="AbrechnungsbogenReisen.resx">
|
||||||
<DependentUpon>AbrechnungsbogenReisen.cs</DependentUpon>
|
<DependentUpon>AbrechnungsbogenReisen.cs</DependentUpon>
|
||||||
</EmbeddedResource>
|
</EmbeddedResource>
|
||||||
|
<EmbeddedResource Include="Rechnung.resx">
|
||||||
|
<DependentUpon>Rechnung.cs</DependentUpon>
|
||||||
|
</EmbeddedResource>
|
||||||
<EmbeddedResource Include="ServiceRecordListReport.resx">
|
<EmbeddedResource Include="ServiceRecordListReport.resx">
|
||||||
<DependentUpon>ServiceRecordListReport.cs</DependentUpon>
|
<DependentUpon>ServiceRecordListReport.cs</DependentUpon>
|
||||||
<SubType>Designer</SubType>
|
<SubType>Designer</SubType>
|
||||||
|
|||||||
812
ReportImp/HphBersenbrueckFreizeitUndReisen/Rechnung.Designer.cs
generated
Normal file
812
ReportImp/HphBersenbrueckFreizeitUndReisen/Rechnung.Designer.cs
generated
Normal file
@@ -0,0 +1,812 @@
|
|||||||
|
using BeWo.Report.ReportObjects;
|
||||||
|
namespace HphBersenbrueckFreizeitUndReisen
|
||||||
|
{
|
||||||
|
partial class Rechnung
|
||||||
|
{
|
||||||
|
/// <summary>
|
||||||
|
/// Required designer variable.
|
||||||
|
/// </summary>
|
||||||
|
private System.ComponentModel.IContainer components = null;
|
||||||
|
|
||||||
|
/// <summary>
|
||||||
|
/// Clean up any resources being used.
|
||||||
|
/// </summary>
|
||||||
|
/// <param name="disposing">true if managed resources should be disposed; otherwise, false.</param>
|
||||||
|
protected override void Dispose(bool disposing)
|
||||||
|
{
|
||||||
|
if (disposing && (components != null))
|
||||||
|
{
|
||||||
|
components.Dispose();
|
||||||
|
}
|
||||||
|
base.Dispose(disposing);
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
|
/// <summary>
|
||||||
|
/// Required method for Designer support - do not modify
|
||||||
|
/// the contents of this method with the code editor.
|
||||||
|
/// </summary>
|
||||||
|
private void InitializeComponent()
|
||||||
|
{
|
||||||
|
this.components = new System.ComponentModel.Container();
|
||||||
|
System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(Rechnung));
|
||||||
|
this.Detail = new DevExpress.XtraReports.UI.DetailBand();
|
||||||
|
this.ReportHeader = new DevExpress.XtraReports.UI.ReportHeaderBand();
|
||||||
|
this.xrLabel13 = new DevExpress.XtraReports.UI.XRLabel();
|
||||||
|
this.xrLabel11 = new DevExpress.XtraReports.UI.XRLabel();
|
||||||
|
this.xrLabel8 = new DevExpress.XtraReports.UI.XRLabel();
|
||||||
|
this.xrLabel7 = new DevExpress.XtraReports.UI.XRLabel();
|
||||||
|
this.xrLabel4 = new DevExpress.XtraReports.UI.XRLabel();
|
||||||
|
this.xrPictureBox2 = new DevExpress.XtraReports.UI.XRPictureBox();
|
||||||
|
this.xrTable2 = new DevExpress.XtraReports.UI.XRTable();
|
||||||
|
this.xrTableRow1 = new DevExpress.XtraReports.UI.XRTableRow();
|
||||||
|
this.xrTableCell1 = new DevExpress.XtraReports.UI.XRTableCell();
|
||||||
|
this.xrTableCell3 = new DevExpress.XtraReports.UI.XRTableCell();
|
||||||
|
this.xrTableCell8 = new DevExpress.XtraReports.UI.XRTableCell();
|
||||||
|
this.xrTableRow2 = new DevExpress.XtraReports.UI.XRTableRow();
|
||||||
|
this.xrTableCell2 = new DevExpress.XtraReports.UI.XRTableCell();
|
||||||
|
this.xrTableCell5 = new DevExpress.XtraReports.UI.XRTableCell();
|
||||||
|
this.xrTableCell13 = new DevExpress.XtraReports.UI.XRTableCell();
|
||||||
|
this.lblAdresse = new DevExpress.XtraReports.UI.XRLabel();
|
||||||
|
this.xrLabel18 = new DevExpress.XtraReports.UI.XRLabel();
|
||||||
|
this.ruleRateFactorNull = new DevExpress.XtraReports.UI.FormattingRule();
|
||||||
|
this.topMarginBand1 = new DevExpress.XtraReports.UI.TopMarginBand();
|
||||||
|
this.bottomMarginBand1 = new DevExpress.XtraReports.UI.BottomMarginBand();
|
||||||
|
this.xrLabel1 = new DevExpress.XtraReports.UI.XRLabel();
|
||||||
|
this.GroupFooter = new DevExpress.XtraReports.UI.GroupFooterBand();
|
||||||
|
this.Page1 = new DevExpress.XtraReports.UI.GroupHeaderBand();
|
||||||
|
this.xrTable3 = new DevExpress.XtraReports.UI.XRTable();
|
||||||
|
this.xrTableRow10 = new DevExpress.XtraReports.UI.XRTableRow();
|
||||||
|
this.xrTableCell15 = new DevExpress.XtraReports.UI.XRTableCell();
|
||||||
|
this.xrTableCell16 = new DevExpress.XtraReports.UI.XRTableCell();
|
||||||
|
this.xrTableCell17 = new DevExpress.XtraReports.UI.XRTableCell();
|
||||||
|
this.xrTableCell18 = new DevExpress.XtraReports.UI.XRTableCell();
|
||||||
|
this.xrTableCell19 = new DevExpress.XtraReports.UI.XRTableCell();
|
||||||
|
this.xrTableCell20 = new DevExpress.XtraReports.UI.XRTableCell();
|
||||||
|
this.xrTable1 = new DevExpress.XtraReports.UI.XRTable();
|
||||||
|
this.xrTableRow9 = new DevExpress.XtraReports.UI.XRTableRow();
|
||||||
|
this.xrTableCell6 = new DevExpress.XtraReports.UI.XRTableCell();
|
||||||
|
this.xrTableCell7 = new DevExpress.XtraReports.UI.XRTableCell();
|
||||||
|
this.xrTableCell9 = new DevExpress.XtraReports.UI.XRTableCell();
|
||||||
|
this.lblSatz = new DevExpress.XtraReports.UI.XRTableCell();
|
||||||
|
this.lblAnzahl = new DevExpress.XtraReports.UI.XRTableCell();
|
||||||
|
this.lblBetrag = new DevExpress.XtraReports.UI.XRTableCell();
|
||||||
|
this.ReportFooter = new DevExpress.XtraReports.UI.ReportFooterBand();
|
||||||
|
this.xrTable4 = new DevExpress.XtraReports.UI.XRTable();
|
||||||
|
this.xrTableRow11 = new DevExpress.XtraReports.UI.XRTableRow();
|
||||||
|
this.xrTableCell23 = new DevExpress.XtraReports.UI.XRTableCell();
|
||||||
|
this.bindingSource1 = new System.Windows.Forms.BindingSource(this.components);
|
||||||
|
this.xrLabel14 = new DevExpress.XtraReports.UI.XRLabel();
|
||||||
|
this.xrLabel15 = new DevExpress.XtraReports.UI.XRLabel();
|
||||||
|
this.xrLabel16 = new DevExpress.XtraReports.UI.XRLabel();
|
||||||
|
this.xrLabel17 = new DevExpress.XtraReports.UI.XRLabel();
|
||||||
|
this.xrLabel2 = new DevExpress.XtraReports.UI.XRLabel();
|
||||||
|
this.xrLabel3 = new DevExpress.XtraReports.UI.XRLabel();
|
||||||
|
((System.ComponentModel.ISupportInitialize)(this.xrTable2)).BeginInit();
|
||||||
|
((System.ComponentModel.ISupportInitialize)(this.xrTable3)).BeginInit();
|
||||||
|
((System.ComponentModel.ISupportInitialize)(this.xrTable1)).BeginInit();
|
||||||
|
((System.ComponentModel.ISupportInitialize)(this.xrTable4)).BeginInit();
|
||||||
|
((System.ComponentModel.ISupportInitialize)(this.bindingSource1)).BeginInit();
|
||||||
|
((System.ComponentModel.ISupportInitialize)(this)).BeginInit();
|
||||||
|
//
|
||||||
|
// Detail
|
||||||
|
//
|
||||||
|
this.Detail.HeightF = 0F;
|
||||||
|
this.Detail.Name = "Detail";
|
||||||
|
this.Detail.Padding = new DevExpress.XtraPrinting.PaddingInfo(0, 0, 0, 0, 100F);
|
||||||
|
this.Detail.TextAlignment = DevExpress.XtraPrinting.TextAlignment.TopLeft;
|
||||||
|
//
|
||||||
|
// ReportHeader
|
||||||
|
//
|
||||||
|
this.ReportHeader.Controls.AddRange(new DevExpress.XtraReports.UI.XRControl[] {
|
||||||
|
this.xrLabel17,
|
||||||
|
this.xrLabel16,
|
||||||
|
this.xrLabel15,
|
||||||
|
this.xrLabel14,
|
||||||
|
this.xrLabel13,
|
||||||
|
this.xrLabel11,
|
||||||
|
this.xrLabel8,
|
||||||
|
this.xrLabel7,
|
||||||
|
this.xrLabel4,
|
||||||
|
this.xrPictureBox2,
|
||||||
|
this.xrTable2,
|
||||||
|
this.lblAdresse,
|
||||||
|
this.xrLabel18});
|
||||||
|
this.ReportHeader.Font = new System.Drawing.Font("Arial", 9F);
|
||||||
|
this.ReportHeader.HeightF = 503.3333F;
|
||||||
|
this.ReportHeader.Name = "ReportHeader";
|
||||||
|
this.ReportHeader.StylePriority.UseFont = false;
|
||||||
|
//
|
||||||
|
// xrLabel13
|
||||||
|
//
|
||||||
|
this.xrLabel13.Font = new System.Drawing.Font("Arial", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
|
||||||
|
this.xrLabel13.LocationFloat = new DevExpress.Utils.PointFloat(359.7083F, 262.6666F);
|
||||||
|
this.xrLabel13.Multiline = true;
|
||||||
|
this.xrLabel13.Name = "xrLabel13";
|
||||||
|
this.xrLabel13.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
|
||||||
|
this.xrLabel13.SizeF = new System.Drawing.SizeF(247.6493F, 36.99997F);
|
||||||
|
this.xrLabel13.StylePriority.UseFont = false;
|
||||||
|
this.xrLabel13.StylePriority.UseForeColor = false;
|
||||||
|
this.xrLabel13.Text = "Sachbearbeiter/in: Herr Robin Timmermann\r\nTelefon: 05439 9449-471";
|
||||||
|
//
|
||||||
|
// xrLabel11
|
||||||
|
//
|
||||||
|
this.xrLabel11.Font = new System.Drawing.Font("Arial", 7F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
|
||||||
|
this.xrLabel11.LocationFloat = new DevExpress.Utils.PointFloat(359.7083F, 225.6667F);
|
||||||
|
this.xrLabel11.Multiline = true;
|
||||||
|
this.xrLabel11.Name = "xrLabel11";
|
||||||
|
this.xrLabel11.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
|
||||||
|
this.xrLabel11.SizeF = new System.Drawing.SizeF(247.6493F, 36.99997F);
|
||||||
|
this.xrLabel11.StylePriority.UseFont = false;
|
||||||
|
this.xrLabel11.StylePriority.UseForeColor = false;
|
||||||
|
this.xrLabel11.Text = "IK: 500346007";
|
||||||
|
//
|
||||||
|
// xrLabel8
|
||||||
|
//
|
||||||
|
this.xrLabel8.Font = new System.Drawing.Font("Arial", 7F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
|
||||||
|
this.xrLabel8.LocationFloat = new DevExpress.Utils.PointFloat(359.7083F, 175.9999F);
|
||||||
|
this.xrLabel8.Multiline = true;
|
||||||
|
this.xrLabel8.Name = "xrLabel8";
|
||||||
|
this.xrLabel8.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
|
||||||
|
this.xrLabel8.SizeF = new System.Drawing.SizeF(247.6493F, 36.99997F);
|
||||||
|
this.xrLabel8.StylePriority.UseFont = false;
|
||||||
|
this.xrLabel8.StylePriority.UseForeColor = false;
|
||||||
|
this.xrLabel8.Text = "Franz-Hecker-Straße 20\r\n49593 Bersenbrück";
|
||||||
|
//
|
||||||
|
// xrLabel7
|
||||||
|
//
|
||||||
|
this.xrLabel7.Font = new System.Drawing.Font("Arial", 7F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
|
||||||
|
this.xrLabel7.LocationFloat = new DevExpress.Utils.PointFloat(359.7083F, 159F);
|
||||||
|
this.xrLabel7.Name = "xrLabel7";
|
||||||
|
this.xrLabel7.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
|
||||||
|
this.xrLabel7.SizeF = new System.Drawing.SizeF(247.6493F, 16.99998F);
|
||||||
|
this.xrLabel7.StylePriority.UseFont = false;
|
||||||
|
this.xrLabel7.StylePriority.UseForeColor = false;
|
||||||
|
this.xrLabel7.StylePriority.UseTextAlignment = false;
|
||||||
|
this.xrLabel7.Text = "Familienunterstützender Dienst";
|
||||||
|
this.xrLabel7.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleLeft;
|
||||||
|
//
|
||||||
|
// xrLabel4
|
||||||
|
//
|
||||||
|
this.xrLabel4.Font = new System.Drawing.Font("Arial", 12F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
|
||||||
|
this.xrLabel4.LocationFloat = new DevExpress.Utils.PointFloat(0F, 88.87492F);
|
||||||
|
this.xrLabel4.Multiline = true;
|
||||||
|
this.xrLabel4.Name = "xrLabel4";
|
||||||
|
this.xrLabel4.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
|
||||||
|
this.xrLabel4.SizeF = new System.Drawing.SizeF(384.2915F, 25F);
|
||||||
|
this.xrLabel4.StylePriority.UseFont = false;
|
||||||
|
this.xrLabel4.StylePriority.UseTextAlignment = false;
|
||||||
|
this.xrLabel4.Text = "Heilpädagogische Hilfe Bersenbrück gGmbH";
|
||||||
|
this.xrLabel4.TextAlignment = DevExpress.XtraPrinting.TextAlignment.BottomLeft;
|
||||||
|
//
|
||||||
|
// xrPictureBox2
|
||||||
|
//
|
||||||
|
this.xrPictureBox2.Image = ((System.Drawing.Image)(resources.GetObject("xrPictureBox2.Image")));
|
||||||
|
this.xrPictureBox2.LocationFloat = new DevExpress.Utils.PointFloat(540F, 0F);
|
||||||
|
this.xrPictureBox2.Name = "xrPictureBox2";
|
||||||
|
this.xrPictureBox2.SizeF = new System.Drawing.SizeF(161.9999F, 130.8749F);
|
||||||
|
this.xrPictureBox2.Sizing = DevExpress.XtraPrinting.ImageSizeMode.ZoomImage;
|
||||||
|
//
|
||||||
|
// xrTable2
|
||||||
|
//
|
||||||
|
this.xrTable2.Font = new System.Drawing.Font("Arial", 7F);
|
||||||
|
this.xrTable2.LocationFloat = new DevExpress.Utils.PointFloat(359.7083F, 380.8333F);
|
||||||
|
this.xrTable2.Name = "xrTable2";
|
||||||
|
this.xrTable2.Rows.AddRange(new DevExpress.XtraReports.UI.XRTableRow[] {
|
||||||
|
this.xrTableRow1,
|
||||||
|
this.xrTableRow2});
|
||||||
|
this.xrTable2.SizeF = new System.Drawing.SizeF(340F, 34F);
|
||||||
|
this.xrTable2.StylePriority.UseFont = false;
|
||||||
|
this.xrTable2.StylePriority.UseForeColor = false;
|
||||||
|
this.xrTable2.StylePriority.UseTextAlignment = false;
|
||||||
|
this.xrTable2.TextAlignment = DevExpress.XtraPrinting.TextAlignment.TopCenter;
|
||||||
|
//
|
||||||
|
// xrTableRow1
|
||||||
|
//
|
||||||
|
this.xrTableRow1.Borders = ((DevExpress.XtraPrinting.BorderSide)(((DevExpress.XtraPrinting.BorderSide.Left | DevExpress.XtraPrinting.BorderSide.Top)
|
||||||
|
| DevExpress.XtraPrinting.BorderSide.Right)));
|
||||||
|
this.xrTableRow1.Cells.AddRange(new DevExpress.XtraReports.UI.XRTableCell[] {
|
||||||
|
this.xrTableCell1,
|
||||||
|
this.xrTableCell3,
|
||||||
|
this.xrTableCell8});
|
||||||
|
this.xrTableRow1.Font = new System.Drawing.Font("Arial", 7F, System.Drawing.FontStyle.Bold);
|
||||||
|
this.xrTableRow1.Name = "xrTableRow1";
|
||||||
|
this.xrTableRow1.StylePriority.UseBorders = false;
|
||||||
|
this.xrTableRow1.StylePriority.UseFont = false;
|
||||||
|
this.xrTableRow1.Weight = 0.67999999999999994D;
|
||||||
|
//
|
||||||
|
// xrTableCell1
|
||||||
|
//
|
||||||
|
this.xrTableCell1.BorderColor = System.Drawing.Color.MidnightBlue;
|
||||||
|
this.xrTableCell1.Name = "xrTableCell1";
|
||||||
|
this.xrTableCell1.Padding = new DevExpress.XtraPrinting.PaddingInfo(5, 0, 0, 0, 100F);
|
||||||
|
this.xrTableCell1.StylePriority.UseBorderColor = false;
|
||||||
|
this.xrTableCell1.StylePriority.UseBorders = false;
|
||||||
|
this.xrTableCell1.StylePriority.UsePadding = false;
|
||||||
|
this.xrTableCell1.StylePriority.UseTextAlignment = false;
|
||||||
|
this.xrTableCell1.Text = "Rechnungs-Nr.";
|
||||||
|
this.xrTableCell1.Weight = 1.165066092200836D;
|
||||||
|
//
|
||||||
|
// xrTableCell3
|
||||||
|
//
|
||||||
|
this.xrTableCell3.BorderColor = System.Drawing.Color.MidnightBlue;
|
||||||
|
this.xrTableCell3.Name = "xrTableCell3";
|
||||||
|
this.xrTableCell3.Padding = new DevExpress.XtraPrinting.PaddingInfo(5, 0, 0, 0, 100F);
|
||||||
|
this.xrTableCell3.StylePriority.UseBorderColor = false;
|
||||||
|
this.xrTableCell3.StylePriority.UseBorders = false;
|
||||||
|
this.xrTableCell3.StylePriority.UsePadding = false;
|
||||||
|
this.xrTableCell3.StylePriority.UseTextAlignment = false;
|
||||||
|
this.xrTableCell3.Text = "Debitor-Nr.";
|
||||||
|
this.xrTableCell3.Weight = 0.970888492659078D;
|
||||||
|
//
|
||||||
|
// xrTableCell8
|
||||||
|
//
|
||||||
|
this.xrTableCell8.BorderColor = System.Drawing.Color.MidnightBlue;
|
||||||
|
this.xrTableCell8.Name = "xrTableCell8";
|
||||||
|
this.xrTableCell8.Padding = new DevExpress.XtraPrinting.PaddingInfo(5, 0, 0, 0, 100F);
|
||||||
|
this.xrTableCell8.StylePriority.UseBorderColor = false;
|
||||||
|
this.xrTableCell8.StylePriority.UseBorders = false;
|
||||||
|
this.xrTableCell8.StylePriority.UsePadding = false;
|
||||||
|
this.xrTableCell8.StylePriority.UseTextAlignment = false;
|
||||||
|
this.xrTableCell8.Text = "Rechnungsdatum";
|
||||||
|
this.xrTableCell8.Weight = 1.165066248991665D;
|
||||||
|
//
|
||||||
|
// xrTableRow2
|
||||||
|
//
|
||||||
|
this.xrTableRow2.Borders = ((DevExpress.XtraPrinting.BorderSide)(((DevExpress.XtraPrinting.BorderSide.Left | DevExpress.XtraPrinting.BorderSide.Right)
|
||||||
|
| DevExpress.XtraPrinting.BorderSide.Bottom)));
|
||||||
|
this.xrTableRow2.Cells.AddRange(new DevExpress.XtraReports.UI.XRTableCell[] {
|
||||||
|
this.xrTableCell2,
|
||||||
|
this.xrTableCell5,
|
||||||
|
this.xrTableCell13});
|
||||||
|
this.xrTableRow2.Name = "xrTableRow2";
|
||||||
|
this.xrTableRow2.StylePriority.UseBorders = false;
|
||||||
|
this.xrTableRow2.Weight = 0.68D;
|
||||||
|
//
|
||||||
|
// xrTableCell2
|
||||||
|
//
|
||||||
|
this.xrTableCell2.DataBindings.AddRange(new DevExpress.XtraReports.UI.XRBinding[] {
|
||||||
|
new DevExpress.XtraReports.UI.XRBinding("Text", null, "InvoiceNumber")});
|
||||||
|
this.xrTableCell2.ForeColor = System.Drawing.Color.Black;
|
||||||
|
this.xrTableCell2.Name = "xrTableCell2";
|
||||||
|
this.xrTableCell2.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 0, 0, 0, 100F);
|
||||||
|
this.xrTableCell2.StylePriority.UseFont = false;
|
||||||
|
this.xrTableCell2.StylePriority.UseForeColor = false;
|
||||||
|
this.xrTableCell2.StylePriority.UsePadding = false;
|
||||||
|
this.xrTableCell2.StylePriority.UseTextAlignment = false;
|
||||||
|
this.xrTableCell2.Weight = 1.165066092200836D;
|
||||||
|
//
|
||||||
|
// xrTableCell5
|
||||||
|
//
|
||||||
|
this.xrTableCell5.DataBindings.AddRange(new DevExpress.XtraReports.UI.XRBinding[] {
|
||||||
|
new DevExpress.XtraReports.UI.XRBinding("Text", null, "DebitorNumber")});
|
||||||
|
this.xrTableCell5.ForeColor = System.Drawing.Color.Black;
|
||||||
|
this.xrTableCell5.Name = "xrTableCell5";
|
||||||
|
this.xrTableCell5.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 0, 0, 0, 100F);
|
||||||
|
this.xrTableCell5.StylePriority.UseFont = false;
|
||||||
|
this.xrTableCell5.StylePriority.UseForeColor = false;
|
||||||
|
this.xrTableCell5.StylePriority.UsePadding = false;
|
||||||
|
this.xrTableCell5.StylePriority.UseTextAlignment = false;
|
||||||
|
this.xrTableCell5.Weight = 0.970888492659078D;
|
||||||
|
//
|
||||||
|
// xrTableCell13
|
||||||
|
//
|
||||||
|
this.xrTableCell13.DataBindings.AddRange(new DevExpress.XtraReports.UI.XRBinding[] {
|
||||||
|
new DevExpress.XtraReports.UI.XRBinding("Text", null, "InvoiceDate")});
|
||||||
|
this.xrTableCell13.ForeColor = System.Drawing.Color.Black;
|
||||||
|
this.xrTableCell13.Name = "xrTableCell13";
|
||||||
|
this.xrTableCell13.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 0, 0, 0, 100F);
|
||||||
|
this.xrTableCell13.StylePriority.UseFont = false;
|
||||||
|
this.xrTableCell13.StylePriority.UseForeColor = false;
|
||||||
|
this.xrTableCell13.StylePriority.UsePadding = false;
|
||||||
|
this.xrTableCell13.StylePriority.UseTextAlignment = false;
|
||||||
|
this.xrTableCell13.Text = "xrTableCell11";
|
||||||
|
this.xrTableCell13.Weight = 1.1650662489916654D;
|
||||||
|
//
|
||||||
|
// lblAdresse
|
||||||
|
//
|
||||||
|
this.lblAdresse.LocationFloat = new DevExpress.Utils.PointFloat(0F, 147.9167F);
|
||||||
|
this.lblAdresse.Multiline = true;
|
||||||
|
this.lblAdresse.Name = "lblAdresse";
|
||||||
|
this.lblAdresse.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
|
||||||
|
this.lblAdresse.SizeF = new System.Drawing.SizeF(359.7083F, 144.1665F);
|
||||||
|
this.lblAdresse.StylePriority.UseFont = false;
|
||||||
|
//
|
||||||
|
// xrLabel18
|
||||||
|
//
|
||||||
|
this.xrLabel18.Font = new System.Drawing.Font("Arial", 6.5F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
|
||||||
|
this.xrLabel18.LocationFloat = new DevExpress.Utils.PointFloat(0F, 113.8749F);
|
||||||
|
this.xrLabel18.Name = "xrLabel18";
|
||||||
|
this.xrLabel18.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
|
||||||
|
this.xrLabel18.SizeF = new System.Drawing.SizeF(345.9827F, 16.99999F);
|
||||||
|
this.xrLabel18.StylePriority.UseFont = false;
|
||||||
|
this.xrLabel18.StylePriority.UseForeColor = false;
|
||||||
|
this.xrLabel18.Text = "HpH Bersenbrück • Postfach 1106 • 49587 Bersenbrück";
|
||||||
|
//
|
||||||
|
// ruleRateFactorNull
|
||||||
|
//
|
||||||
|
this.ruleRateFactorNull.Condition = "[RateFactorText2] == ?";
|
||||||
|
this.ruleRateFactorNull.Formatting.Visible = DevExpress.Utils.DefaultBoolean.False;
|
||||||
|
this.ruleRateFactorNull.Name = "ruleRateFactorNull";
|
||||||
|
//
|
||||||
|
// topMarginBand1
|
||||||
|
//
|
||||||
|
this.topMarginBand1.HeightF = 30F;
|
||||||
|
this.topMarginBand1.Name = "topMarginBand1";
|
||||||
|
//
|
||||||
|
// bottomMarginBand1
|
||||||
|
//
|
||||||
|
this.bottomMarginBand1.Controls.AddRange(new DevExpress.XtraReports.UI.XRControl[] {
|
||||||
|
this.xrLabel3,
|
||||||
|
this.xrLabel2,
|
||||||
|
this.xrLabel1});
|
||||||
|
this.bottomMarginBand1.HeightF = 129.0417F;
|
||||||
|
this.bottomMarginBand1.Name = "bottomMarginBand1";
|
||||||
|
//
|
||||||
|
// xrLabel1
|
||||||
|
//
|
||||||
|
this.xrLabel1.BorderColor = System.Drawing.Color.MidnightBlue;
|
||||||
|
this.xrLabel1.Borders = DevExpress.XtraPrinting.BorderSide.Top;
|
||||||
|
this.xrLabel1.Font = new System.Drawing.Font("Arial", 9F, System.Drawing.FontStyle.Italic, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
|
||||||
|
this.xrLabel1.LocationFloat = new DevExpress.Utils.PointFloat(0F, 40F);
|
||||||
|
this.xrLabel1.Name = "xrLabel1";
|
||||||
|
this.xrLabel1.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
|
||||||
|
this.xrLabel1.SizeF = new System.Drawing.SizeF(686.9999F, 2.000002F);
|
||||||
|
this.xrLabel1.StylePriority.UseBorderColor = false;
|
||||||
|
this.xrLabel1.StylePriority.UseBorders = false;
|
||||||
|
this.xrLabel1.StylePriority.UseFont = false;
|
||||||
|
//
|
||||||
|
// GroupFooter
|
||||||
|
//
|
||||||
|
this.GroupFooter.HeightF = 0F;
|
||||||
|
this.GroupFooter.Name = "GroupFooter";
|
||||||
|
//
|
||||||
|
// Page1
|
||||||
|
//
|
||||||
|
this.Page1.Controls.AddRange(new DevExpress.XtraReports.UI.XRControl[] {
|
||||||
|
this.xrTable3,
|
||||||
|
this.xrTable1});
|
||||||
|
this.Page1.Font = new System.Drawing.Font("Arial", 9F);
|
||||||
|
this.Page1.HeightF = 50F;
|
||||||
|
this.Page1.Name = "Page1";
|
||||||
|
this.Page1.StylePriority.UseFont = false;
|
||||||
|
//
|
||||||
|
// xrTable3
|
||||||
|
//
|
||||||
|
this.xrTable3.Font = new System.Drawing.Font("Arial", 9F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
|
||||||
|
this.xrTable3.LocationFloat = new DevExpress.Utils.PointFloat(0.0002034505F, 0F);
|
||||||
|
this.xrTable3.Name = "xrTable3";
|
||||||
|
this.xrTable3.Rows.AddRange(new DevExpress.XtraReports.UI.XRTableRow[] {
|
||||||
|
this.xrTableRow10});
|
||||||
|
this.xrTable3.SizeF = new System.Drawing.SizeF(656.9999F, 25F);
|
||||||
|
this.xrTable3.StylePriority.UseFont = false;
|
||||||
|
//
|
||||||
|
// xrTableRow10
|
||||||
|
//
|
||||||
|
this.xrTableRow10.Cells.AddRange(new DevExpress.XtraReports.UI.XRTableCell[] {
|
||||||
|
this.xrTableCell15,
|
||||||
|
this.xrTableCell16,
|
||||||
|
this.xrTableCell17,
|
||||||
|
this.xrTableCell18,
|
||||||
|
this.xrTableCell19,
|
||||||
|
this.xrTableCell20});
|
||||||
|
this.xrTableRow10.Name = "xrTableRow10";
|
||||||
|
this.xrTableRow10.Weight = 1D;
|
||||||
|
//
|
||||||
|
// xrTableCell15
|
||||||
|
//
|
||||||
|
this.xrTableCell15.Borders = ((DevExpress.XtraPrinting.BorderSide)((((DevExpress.XtraPrinting.BorderSide.Left | DevExpress.XtraPrinting.BorderSide.Top)
|
||||||
|
| DevExpress.XtraPrinting.BorderSide.Right)
|
||||||
|
| DevExpress.XtraPrinting.BorderSide.Bottom)));
|
||||||
|
this.xrTableCell15.Name = "xrTableCell15";
|
||||||
|
this.xrTableCell15.Padding = new DevExpress.XtraPrinting.PaddingInfo(5, 0, 0, 0, 100F);
|
||||||
|
this.xrTableCell15.StylePriority.UseBorders = false;
|
||||||
|
this.xrTableCell15.StylePriority.UsePadding = false;
|
||||||
|
this.xrTableCell15.StylePriority.UseTextAlignment = false;
|
||||||
|
this.xrTableCell15.Text = "Von";
|
||||||
|
this.xrTableCell15.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleLeft;
|
||||||
|
this.xrTableCell15.Weight = 1D;
|
||||||
|
//
|
||||||
|
// xrTableCell16
|
||||||
|
//
|
||||||
|
this.xrTableCell16.Borders = ((DevExpress.XtraPrinting.BorderSide)((((DevExpress.XtraPrinting.BorderSide.Left | DevExpress.XtraPrinting.BorderSide.Top)
|
||||||
|
| DevExpress.XtraPrinting.BorderSide.Right)
|
||||||
|
| DevExpress.XtraPrinting.BorderSide.Bottom)));
|
||||||
|
this.xrTableCell16.Name = "xrTableCell16";
|
||||||
|
this.xrTableCell16.Padding = new DevExpress.XtraPrinting.PaddingInfo(5, 0, 0, 0, 100F);
|
||||||
|
this.xrTableCell16.StylePriority.UseBorders = false;
|
||||||
|
this.xrTableCell16.StylePriority.UsePadding = false;
|
||||||
|
this.xrTableCell16.StylePriority.UseTextAlignment = false;
|
||||||
|
this.xrTableCell16.Text = "Bis";
|
||||||
|
this.xrTableCell16.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleLeft;
|
||||||
|
this.xrTableCell16.Weight = 1D;
|
||||||
|
//
|
||||||
|
// xrTableCell17
|
||||||
|
//
|
||||||
|
this.xrTableCell17.Borders = ((DevExpress.XtraPrinting.BorderSide)((((DevExpress.XtraPrinting.BorderSide.Left | DevExpress.XtraPrinting.BorderSide.Top)
|
||||||
|
| DevExpress.XtraPrinting.BorderSide.Right)
|
||||||
|
| DevExpress.XtraPrinting.BorderSide.Bottom)));
|
||||||
|
this.xrTableCell17.Name = "xrTableCell17";
|
||||||
|
this.xrTableCell17.Padding = new DevExpress.XtraPrinting.PaddingInfo(5, 0, 0, 0, 100F);
|
||||||
|
this.xrTableCell17.StylePriority.UseBorders = false;
|
||||||
|
this.xrTableCell17.StylePriority.UsePadding = false;
|
||||||
|
this.xrTableCell17.StylePriority.UseTextAlignment = false;
|
||||||
|
this.xrTableCell17.Text = "Posten";
|
||||||
|
this.xrTableCell17.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleLeft;
|
||||||
|
this.xrTableCell17.Weight = 2.4035382732502888D;
|
||||||
|
//
|
||||||
|
// xrTableCell18
|
||||||
|
//
|
||||||
|
this.xrTableCell18.Borders = ((DevExpress.XtraPrinting.BorderSide)((((DevExpress.XtraPrinting.BorderSide.Left | DevExpress.XtraPrinting.BorderSide.Top)
|
||||||
|
| DevExpress.XtraPrinting.BorderSide.Right)
|
||||||
|
| DevExpress.XtraPrinting.BorderSide.Bottom)));
|
||||||
|
this.xrTableCell18.Name = "xrTableCell18";
|
||||||
|
this.xrTableCell18.Padding = new DevExpress.XtraPrinting.PaddingInfo(5, 0, 0, 0, 100F);
|
||||||
|
this.xrTableCell18.StylePriority.UseBorders = false;
|
||||||
|
this.xrTableCell18.StylePriority.UsePadding = false;
|
||||||
|
this.xrTableCell18.StylePriority.UseTextAlignment = false;
|
||||||
|
this.xrTableCell18.Text = "Satz";
|
||||||
|
this.xrTableCell18.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleLeft;
|
||||||
|
this.xrTableCell18.Weight = 0.83099597349857446D;
|
||||||
|
//
|
||||||
|
// xrTableCell19
|
||||||
|
//
|
||||||
|
this.xrTableCell19.Borders = ((DevExpress.XtraPrinting.BorderSide)((((DevExpress.XtraPrinting.BorderSide.Left | DevExpress.XtraPrinting.BorderSide.Top)
|
||||||
|
| DevExpress.XtraPrinting.BorderSide.Right)
|
||||||
|
| DevExpress.XtraPrinting.BorderSide.Bottom)));
|
||||||
|
this.xrTableCell19.Name = "xrTableCell19";
|
||||||
|
this.xrTableCell19.Padding = new DevExpress.XtraPrinting.PaddingInfo(5, 0, 0, 0, 100F);
|
||||||
|
this.xrTableCell19.StylePriority.UseBorders = false;
|
||||||
|
this.xrTableCell19.StylePriority.UsePadding = false;
|
||||||
|
this.xrTableCell19.StylePriority.UseTextAlignment = false;
|
||||||
|
this.xrTableCell19.Text = "Anzahl";
|
||||||
|
this.xrTableCell19.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleLeft;
|
||||||
|
this.xrTableCell19.Weight = 0.56661576319449147D;
|
||||||
|
//
|
||||||
|
// xrTableCell20
|
||||||
|
//
|
||||||
|
this.xrTableCell20.Borders = ((DevExpress.XtraPrinting.BorderSide)((((DevExpress.XtraPrinting.BorderSide.Left | DevExpress.XtraPrinting.BorderSide.Top)
|
||||||
|
| DevExpress.XtraPrinting.BorderSide.Right)
|
||||||
|
| DevExpress.XtraPrinting.BorderSide.Bottom)));
|
||||||
|
this.xrTableCell20.Name = "xrTableCell20";
|
||||||
|
this.xrTableCell20.Padding = new DevExpress.XtraPrinting.PaddingInfo(5, 0, 0, 0, 100F);
|
||||||
|
this.xrTableCell20.StylePriority.UseBorders = false;
|
||||||
|
this.xrTableCell20.StylePriority.UsePadding = false;
|
||||||
|
this.xrTableCell20.StylePriority.UseTextAlignment = false;
|
||||||
|
this.xrTableCell20.Text = "Betrag";
|
||||||
|
this.xrTableCell20.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleLeft;
|
||||||
|
this.xrTableCell20.Weight = 0.868849379705082D;
|
||||||
|
//
|
||||||
|
// xrTable1
|
||||||
|
//
|
||||||
|
this.xrTable1.LocationFloat = new DevExpress.Utils.PointFloat(0.0002034505F, 25F);
|
||||||
|
this.xrTable1.Name = "xrTable1";
|
||||||
|
this.xrTable1.Rows.AddRange(new DevExpress.XtraReports.UI.XRTableRow[] {
|
||||||
|
this.xrTableRow9});
|
||||||
|
this.xrTable1.SizeF = new System.Drawing.SizeF(656.9999F, 25F);
|
||||||
|
this.xrTable1.StylePriority.UseFont = false;
|
||||||
|
//
|
||||||
|
// xrTableRow9
|
||||||
|
//
|
||||||
|
this.xrTableRow9.Cells.AddRange(new DevExpress.XtraReports.UI.XRTableCell[] {
|
||||||
|
this.xrTableCell6,
|
||||||
|
this.xrTableCell7,
|
||||||
|
this.xrTableCell9,
|
||||||
|
this.lblSatz,
|
||||||
|
this.lblAnzahl,
|
||||||
|
this.lblBetrag});
|
||||||
|
this.xrTableRow9.Name = "xrTableRow9";
|
||||||
|
this.xrTableRow9.Weight = 1D;
|
||||||
|
//
|
||||||
|
// xrTableCell6
|
||||||
|
//
|
||||||
|
this.xrTableCell6.Borders = ((DevExpress.XtraPrinting.BorderSide)(((DevExpress.XtraPrinting.BorderSide.Left | DevExpress.XtraPrinting.BorderSide.Right)
|
||||||
|
| DevExpress.XtraPrinting.BorderSide.Bottom)));
|
||||||
|
this.xrTableCell6.DataBindings.AddRange(new DevExpress.XtraReports.UI.XRBinding[] {
|
||||||
|
new DevExpress.XtraReports.UI.XRBinding("Text", null, "AccountingPeriodStart", "{0:dd.MM.yyyy}")});
|
||||||
|
this.xrTableCell6.Name = "xrTableCell6";
|
||||||
|
this.xrTableCell6.Padding = new DevExpress.XtraPrinting.PaddingInfo(5, 0, 0, 0, 100F);
|
||||||
|
this.xrTableCell6.StylePriority.UseBorders = false;
|
||||||
|
this.xrTableCell6.StylePriority.UsePadding = false;
|
||||||
|
this.xrTableCell6.StylePriority.UseTextAlignment = false;
|
||||||
|
this.xrTableCell6.Text = "xrTableCell6";
|
||||||
|
this.xrTableCell6.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleLeft;
|
||||||
|
this.xrTableCell6.Weight = 1D;
|
||||||
|
//
|
||||||
|
// xrTableCell7
|
||||||
|
//
|
||||||
|
this.xrTableCell7.Borders = ((DevExpress.XtraPrinting.BorderSide)(((DevExpress.XtraPrinting.BorderSide.Left | DevExpress.XtraPrinting.BorderSide.Right)
|
||||||
|
| DevExpress.XtraPrinting.BorderSide.Bottom)));
|
||||||
|
this.xrTableCell7.DataBindings.AddRange(new DevExpress.XtraReports.UI.XRBinding[] {
|
||||||
|
new DevExpress.XtraReports.UI.XRBinding("Text", null, "AccountingPeriodEnd", "{0:dd.MM.yyyy}")});
|
||||||
|
this.xrTableCell7.Name = "xrTableCell7";
|
||||||
|
this.xrTableCell7.Padding = new DevExpress.XtraPrinting.PaddingInfo(5, 0, 0, 0, 100F);
|
||||||
|
this.xrTableCell7.StylePriority.UseBorders = false;
|
||||||
|
this.xrTableCell7.StylePriority.UsePadding = false;
|
||||||
|
this.xrTableCell7.StylePriority.UseTextAlignment = false;
|
||||||
|
this.xrTableCell7.Text = "xrTableCell7";
|
||||||
|
this.xrTableCell7.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleLeft;
|
||||||
|
this.xrTableCell7.Weight = 1D;
|
||||||
|
//
|
||||||
|
// xrTableCell9
|
||||||
|
//
|
||||||
|
this.xrTableCell9.Borders = ((DevExpress.XtraPrinting.BorderSide)(((DevExpress.XtraPrinting.BorderSide.Left | DevExpress.XtraPrinting.BorderSide.Right)
|
||||||
|
| DevExpress.XtraPrinting.BorderSide.Bottom)));
|
||||||
|
this.xrTableCell9.Name = "xrTableCell9";
|
||||||
|
this.xrTableCell9.Padding = new DevExpress.XtraPrinting.PaddingInfo(5, 0, 0, 0, 100F);
|
||||||
|
this.xrTableCell9.StylePriority.UseBorders = false;
|
||||||
|
this.xrTableCell9.StylePriority.UsePadding = false;
|
||||||
|
this.xrTableCell9.StylePriority.UseTextAlignment = false;
|
||||||
|
this.xrTableCell9.Text = "Fachleistungsstunden";
|
||||||
|
this.xrTableCell9.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleLeft;
|
||||||
|
this.xrTableCell9.Weight = 2.4035392027126012D;
|
||||||
|
//
|
||||||
|
// lblSatz
|
||||||
|
//
|
||||||
|
this.lblSatz.Borders = ((DevExpress.XtraPrinting.BorderSide)(((DevExpress.XtraPrinting.BorderSide.Left | DevExpress.XtraPrinting.BorderSide.Right)
|
||||||
|
| DevExpress.XtraPrinting.BorderSide.Bottom)));
|
||||||
|
this.lblSatz.Name = "lblSatz";
|
||||||
|
this.lblSatz.Padding = new DevExpress.XtraPrinting.PaddingInfo(5, 0, 0, 0, 100F);
|
||||||
|
this.lblSatz.StylePriority.UseBorders = false;
|
||||||
|
this.lblSatz.StylePriority.UsePadding = false;
|
||||||
|
this.lblSatz.StylePriority.UseTextAlignment = false;
|
||||||
|
this.lblSatz.Text = "lblSatz";
|
||||||
|
this.lblSatz.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleLeft;
|
||||||
|
this.lblSatz.Weight = 0.83099566367780386D;
|
||||||
|
//
|
||||||
|
// lblAnzahl
|
||||||
|
//
|
||||||
|
this.lblAnzahl.Borders = ((DevExpress.XtraPrinting.BorderSide)(((DevExpress.XtraPrinting.BorderSide.Left | DevExpress.XtraPrinting.BorderSide.Right)
|
||||||
|
| DevExpress.XtraPrinting.BorderSide.Bottom)));
|
||||||
|
this.lblAnzahl.Name = "lblAnzahl";
|
||||||
|
this.lblAnzahl.Padding = new DevExpress.XtraPrinting.PaddingInfo(5, 0, 0, 0, 100F);
|
||||||
|
this.lblAnzahl.StylePriority.UseBorders = false;
|
||||||
|
this.lblAnzahl.StylePriority.UsePadding = false;
|
||||||
|
this.lblAnzahl.StylePriority.UseTextAlignment = false;
|
||||||
|
this.lblAnzahl.Text = "lblAnzahl";
|
||||||
|
this.lblAnzahl.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleLeft;
|
||||||
|
this.lblAnzahl.Weight = 0.56661514355294984D;
|
||||||
|
//
|
||||||
|
// lblBetrag
|
||||||
|
//
|
||||||
|
this.lblBetrag.Borders = ((DevExpress.XtraPrinting.BorderSide)(((DevExpress.XtraPrinting.BorderSide.Left | DevExpress.XtraPrinting.BorderSide.Right)
|
||||||
|
| DevExpress.XtraPrinting.BorderSide.Bottom)));
|
||||||
|
this.lblBetrag.Name = "lblBetrag";
|
||||||
|
this.lblBetrag.Padding = new DevExpress.XtraPrinting.PaddingInfo(5, 0, 0, 0, 100F);
|
||||||
|
this.lblBetrag.StylePriority.UseBorders = false;
|
||||||
|
this.lblBetrag.StylePriority.UsePadding = false;
|
||||||
|
this.lblBetrag.StylePriority.UseTextAlignment = false;
|
||||||
|
this.lblBetrag.Text = "lblBetrag";
|
||||||
|
this.lblBetrag.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleLeft;
|
||||||
|
this.lblBetrag.Weight = 0.868849379705082D;
|
||||||
|
//
|
||||||
|
// ReportFooter
|
||||||
|
//
|
||||||
|
this.ReportFooter.Controls.AddRange(new DevExpress.XtraReports.UI.XRControl[] {
|
||||||
|
this.xrTable4});
|
||||||
|
this.ReportFooter.Font = new System.Drawing.Font("Arial", 9F);
|
||||||
|
this.ReportFooter.HeightF = 233.7083F;
|
||||||
|
this.ReportFooter.Name = "ReportFooter";
|
||||||
|
this.ReportFooter.StylePriority.UseFont = false;
|
||||||
|
//
|
||||||
|
// xrTable4
|
||||||
|
//
|
||||||
|
this.xrTable4.LocationFloat = new DevExpress.Utils.PointFloat(571F, 0F);
|
||||||
|
this.xrTable4.Name = "xrTable4";
|
||||||
|
this.xrTable4.Rows.AddRange(new DevExpress.XtraReports.UI.XRTableRow[] {
|
||||||
|
this.xrTableRow11});
|
||||||
|
this.xrTable4.SizeF = new System.Drawing.SizeF(86F, 25F);
|
||||||
|
//
|
||||||
|
// xrTableRow11
|
||||||
|
//
|
||||||
|
this.xrTableRow11.Cells.AddRange(new DevExpress.XtraReports.UI.XRTableCell[] {
|
||||||
|
this.xrTableCell23});
|
||||||
|
this.xrTableRow11.Name = "xrTableRow11";
|
||||||
|
this.xrTableRow11.Weight = 1D;
|
||||||
|
//
|
||||||
|
// xrTableCell23
|
||||||
|
//
|
||||||
|
this.xrTableCell23.Borders = ((DevExpress.XtraPrinting.BorderSide)((((DevExpress.XtraPrinting.BorderSide.Left | DevExpress.XtraPrinting.BorderSide.Top)
|
||||||
|
| DevExpress.XtraPrinting.BorderSide.Right)
|
||||||
|
| DevExpress.XtraPrinting.BorderSide.Bottom)));
|
||||||
|
this.xrTableCell23.BorderWidth = 2F;
|
||||||
|
this.xrTableCell23.DataBindings.AddRange(new DevExpress.XtraReports.UI.XRBinding[] {
|
||||||
|
new DevExpress.XtraReports.UI.XRBinding("Text", null, "GrossClaim")});
|
||||||
|
this.xrTableCell23.Font = new System.Drawing.Font("Arial", 9F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
|
||||||
|
this.xrTableCell23.Name = "xrTableCell23";
|
||||||
|
this.xrTableCell23.Padding = new DevExpress.XtraPrinting.PaddingInfo(5, 0, 0, 0, 100F);
|
||||||
|
this.xrTableCell23.StylePriority.UseBorders = false;
|
||||||
|
this.xrTableCell23.StylePriority.UseBorderWidth = false;
|
||||||
|
this.xrTableCell23.StylePriority.UseFont = false;
|
||||||
|
this.xrTableCell23.StylePriority.UsePadding = false;
|
||||||
|
this.xrTableCell23.StylePriority.UseTextAlignment = false;
|
||||||
|
this.xrTableCell23.Text = "[TotalClaim]";
|
||||||
|
this.xrTableCell23.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleLeft;
|
||||||
|
this.xrTableCell23.Weight = 3D;
|
||||||
|
//
|
||||||
|
// bindingSource1
|
||||||
|
//
|
||||||
|
this.bindingSource1.DataSource = typeof(BeWo.Report.ReportObjects.ServiceInvoiceRO);
|
||||||
|
//
|
||||||
|
// xrLabel14
|
||||||
|
//
|
||||||
|
this.xrLabel14.BackColor = System.Drawing.Color.Transparent;
|
||||||
|
this.xrLabel14.CanShrink = true;
|
||||||
|
this.xrLabel14.Font = new System.Drawing.Font("Arial", 14.5F, System.Drawing.FontStyle.Bold);
|
||||||
|
this.xrLabel14.LocationFloat = new DevExpress.Utils.PointFloat(359.7083F, 334F);
|
||||||
|
this.xrLabel14.Name = "xrLabel14";
|
||||||
|
this.xrLabel14.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
|
||||||
|
this.xrLabel14.SizeF = new System.Drawing.SizeF(280F, 33.66669F);
|
||||||
|
this.xrLabel14.StylePriority.UseBackColor = false;
|
||||||
|
this.xrLabel14.StylePriority.UseFont = false;
|
||||||
|
this.xrLabel14.Text = "Rechnung";
|
||||||
|
this.xrLabel14.WordWrap = false;
|
||||||
|
//
|
||||||
|
// xrLabel15
|
||||||
|
//
|
||||||
|
this.xrLabel15.BackColor = System.Drawing.Color.Transparent;
|
||||||
|
this.xrLabel15.CanShrink = true;
|
||||||
|
this.xrLabel15.Font = new System.Drawing.Font("Arial", 8F, System.Drawing.FontStyle.Bold);
|
||||||
|
this.xrLabel15.LocationFloat = new DevExpress.Utils.PointFloat(359.7083F, 414.8333F);
|
||||||
|
this.xrLabel15.Multiline = true;
|
||||||
|
this.xrLabel15.Name = "xrLabel15";
|
||||||
|
this.xrLabel15.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
|
||||||
|
this.xrLabel15.SizeF = new System.Drawing.SizeF(340F, 32.83337F);
|
||||||
|
this.xrLabel15.StylePriority.UseBackColor = false;
|
||||||
|
this.xrLabel15.StylePriority.UseFont = false;
|
||||||
|
this.xrLabel15.StylePriority.UseTextAlignment = false;
|
||||||
|
this.xrLabel15.Text = "Debitoren-Nr. bitte bei Zahlungen unbedingt\r\nangeben!";
|
||||||
|
this.xrLabel15.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleCenter;
|
||||||
|
this.xrLabel15.WordWrap = false;
|
||||||
|
//
|
||||||
|
// xrLabel16
|
||||||
|
//
|
||||||
|
this.xrLabel16.BackColor = System.Drawing.Color.Transparent;
|
||||||
|
this.xrLabel16.CanShrink = true;
|
||||||
|
this.xrLabel16.Font = new System.Drawing.Font("Arial", 8F);
|
||||||
|
this.xrLabel16.LocationFloat = new DevExpress.Utils.PointFloat(359.7083F, 458.5833F);
|
||||||
|
this.xrLabel16.Multiline = true;
|
||||||
|
this.xrLabel16.Name = "xrLabel16";
|
||||||
|
this.xrLabel16.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
|
||||||
|
this.xrLabel16.SizeF = new System.Drawing.SizeF(340F, 27.00003F);
|
||||||
|
this.xrLabel16.StylePriority.UseBackColor = false;
|
||||||
|
this.xrLabel16.StylePriority.UseFont = false;
|
||||||
|
this.xrLabel16.StylePriority.UseTextAlignment = false;
|
||||||
|
this.xrLabel16.Text = "Abrechnungszeitraum: [AccountingPeriod]";
|
||||||
|
this.xrLabel16.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleCenter;
|
||||||
|
this.xrLabel16.WordWrap = false;
|
||||||
|
//
|
||||||
|
// xrLabel17
|
||||||
|
//
|
||||||
|
this.xrLabel17.BackColor = System.Drawing.Color.Transparent;
|
||||||
|
this.xrLabel17.CanShrink = true;
|
||||||
|
this.xrLabel17.Font = new System.Drawing.Font("Arial", 8F);
|
||||||
|
this.xrLabel17.LocationFloat = new DevExpress.Utils.PointFloat(0F, 397.8333F);
|
||||||
|
this.xrLabel17.Multiline = true;
|
||||||
|
this.xrLabel17.Name = "xrLabel17";
|
||||||
|
this.xrLabel17.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
|
||||||
|
this.xrLabel17.SizeF = new System.Drawing.SizeF(340F, 87.75F);
|
||||||
|
this.xrLabel17.StylePriority.UseBackColor = false;
|
||||||
|
this.xrLabel17.StylePriority.UseFont = false;
|
||||||
|
this.xrLabel17.StylePriority.UseTextAlignment = false;
|
||||||
|
this.xrLabel17.Text = "Freizeit & Reisen\r\nFamilienunterstützender Dienst\r\nFranz-Hecker-Straße 20\r\n49593 " +
|
||||||
|
"Bersenbrück";
|
||||||
|
this.xrLabel17.WordWrap = false;
|
||||||
|
//
|
||||||
|
// xrLabel2
|
||||||
|
//
|
||||||
|
this.xrLabel2.BackColor = System.Drawing.Color.Transparent;
|
||||||
|
this.xrLabel2.CanShrink = true;
|
||||||
|
this.xrLabel2.Font = new System.Drawing.Font("Arial", 9F, System.Drawing.FontStyle.Bold);
|
||||||
|
this.xrLabel2.LocationFloat = new DevExpress.Utils.PointFloat(165.1666F, 0F);
|
||||||
|
this.xrLabel2.Multiline = true;
|
||||||
|
this.xrLabel2.Name = "xrLabel2";
|
||||||
|
this.xrLabel2.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
|
||||||
|
this.xrLabel2.SizeF = new System.Drawing.SizeF(340F, 32.83337F);
|
||||||
|
this.xrLabel2.StylePriority.UseBackColor = false;
|
||||||
|
this.xrLabel2.StylePriority.UseFont = false;
|
||||||
|
this.xrLabel2.StylePriority.UseTextAlignment = false;
|
||||||
|
this.xrLabel2.Text = "Der Rechnungsbetrag ist sofort fällig.";
|
||||||
|
this.xrLabel2.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleCenter;
|
||||||
|
this.xrLabel2.WordWrap = false;
|
||||||
|
//
|
||||||
|
// xrLabel3
|
||||||
|
//
|
||||||
|
this.xrLabel3.BackColor = System.Drawing.Color.Transparent;
|
||||||
|
this.xrLabel3.CanShrink = true;
|
||||||
|
this.xrLabel3.Font = new System.Drawing.Font("Arial", 8F);
|
||||||
|
this.xrLabel3.LocationFloat = new DevExpress.Utils.PointFloat(0.0002034505F, 52.83335F);
|
||||||
|
this.xrLabel3.Multiline = true;
|
||||||
|
this.xrLabel3.Name = "xrLabel3";
|
||||||
|
this.xrLabel3.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
|
||||||
|
this.xrLabel3.SizeF = new System.Drawing.SizeF(340F, 74.91669F);
|
||||||
|
this.xrLabel3.StylePriority.UseBackColor = false;
|
||||||
|
this.xrLabel3.StylePriority.UseFont = false;
|
||||||
|
this.xrLabel3.StylePriority.UseTextAlignment = false;
|
||||||
|
this.xrLabel3.Text = "OSNABRUECKER VOLKSBANK\r\nIBAN: DE63 2659 0025 0202 0300 00\r\nBIC: GENODEF1OSV";
|
||||||
|
this.xrLabel3.WordWrap = false;
|
||||||
|
//
|
||||||
|
// Rechnung
|
||||||
|
//
|
||||||
|
this.Bands.AddRange(new DevExpress.XtraReports.UI.Band[] {
|
||||||
|
this.Detail,
|
||||||
|
this.ReportHeader,
|
||||||
|
this.topMarginBand1,
|
||||||
|
this.bottomMarginBand1,
|
||||||
|
this.GroupFooter,
|
||||||
|
this.Page1,
|
||||||
|
this.ReportFooter});
|
||||||
|
this.DataSource = this.bindingSource1;
|
||||||
|
this.ExportOptions.PrintPreview.DefaultFileName = "Spitzabrechnung";
|
||||||
|
this.Font = new System.Drawing.Font("Verdana", 10F);
|
||||||
|
this.FormattingRuleSheet.AddRange(new DevExpress.XtraReports.UI.FormattingRule[] {
|
||||||
|
this.ruleRateFactorNull});
|
||||||
|
this.Margins = new System.Drawing.Printing.Margins(75, 50, 30, 129);
|
||||||
|
this.PageHeight = 1169;
|
||||||
|
this.PageWidth = 827;
|
||||||
|
this.PaperKind = System.Drawing.Printing.PaperKind.A4;
|
||||||
|
this.Version = "17.1";
|
||||||
|
((System.ComponentModel.ISupportInitialize)(this.xrTable2)).EndInit();
|
||||||
|
((System.ComponentModel.ISupportInitialize)(this.xrTable3)).EndInit();
|
||||||
|
((System.ComponentModel.ISupportInitialize)(this.xrTable1)).EndInit();
|
||||||
|
((System.ComponentModel.ISupportInitialize)(this.xrTable4)).EndInit();
|
||||||
|
((System.ComponentModel.ISupportInitialize)(this.bindingSource1)).EndInit();
|
||||||
|
((System.ComponentModel.ISupportInitialize)(this)).EndInit();
|
||||||
|
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
|
private DevExpress.XtraReports.UI.DetailBand Detail;
|
||||||
|
private System.Windows.Forms.BindingSource bindingSource1;
|
||||||
|
private DevExpress.XtraReports.UI.ReportHeaderBand ReportHeader;
|
||||||
|
private DevExpress.XtraReports.UI.FormattingRule ruleRateFactorNull;
|
||||||
|
private DevExpress.XtraReports.UI.TopMarginBand topMarginBand1;
|
||||||
|
private DevExpress.XtraReports.UI.BottomMarginBand bottomMarginBand1;
|
||||||
|
private DevExpress.XtraReports.UI.GroupFooterBand GroupFooter;
|
||||||
|
private DevExpress.XtraReports.UI.GroupHeaderBand Page1;
|
||||||
|
private DevExpress.XtraReports.UI.ReportFooterBand ReportFooter;
|
||||||
|
private DevExpress.XtraReports.UI.XRTable xrTable3;
|
||||||
|
private DevExpress.XtraReports.UI.XRTableRow xrTableRow10;
|
||||||
|
private DevExpress.XtraReports.UI.XRTableCell xrTableCell15;
|
||||||
|
private DevExpress.XtraReports.UI.XRTableCell xrTableCell16;
|
||||||
|
private DevExpress.XtraReports.UI.XRTableCell xrTableCell17;
|
||||||
|
private DevExpress.XtraReports.UI.XRTableCell xrTableCell18;
|
||||||
|
private DevExpress.XtraReports.UI.XRTableCell xrTableCell19;
|
||||||
|
private DevExpress.XtraReports.UI.XRTableCell xrTableCell20;
|
||||||
|
private DevExpress.XtraReports.UI.XRTable xrTable1;
|
||||||
|
private DevExpress.XtraReports.UI.XRTableRow xrTableRow9;
|
||||||
|
private DevExpress.XtraReports.UI.XRTableCell xrTableCell6;
|
||||||
|
private DevExpress.XtraReports.UI.XRTableCell xrTableCell7;
|
||||||
|
private DevExpress.XtraReports.UI.XRTableCell xrTableCell9;
|
||||||
|
private DevExpress.XtraReports.UI.XRTableCell lblSatz;
|
||||||
|
private DevExpress.XtraReports.UI.XRTableCell lblAnzahl;
|
||||||
|
private DevExpress.XtraReports.UI.XRTableCell lblBetrag;
|
||||||
|
private DevExpress.XtraReports.UI.XRTable xrTable4;
|
||||||
|
private DevExpress.XtraReports.UI.XRTableRow xrTableRow11;
|
||||||
|
private DevExpress.XtraReports.UI.XRTableCell xrTableCell23;
|
||||||
|
private DevExpress.XtraReports.UI.XRLabel lblAdresse;
|
||||||
|
private DevExpress.XtraReports.UI.XRLabel xrLabel18;
|
||||||
|
private DevExpress.XtraReports.UI.XRTable xrTable2;
|
||||||
|
private DevExpress.XtraReports.UI.XRTableRow xrTableRow1;
|
||||||
|
private DevExpress.XtraReports.UI.XRTableCell xrTableCell1;
|
||||||
|
private DevExpress.XtraReports.UI.XRTableCell xrTableCell3;
|
||||||
|
private DevExpress.XtraReports.UI.XRTableCell xrTableCell8;
|
||||||
|
private DevExpress.XtraReports.UI.XRTableRow xrTableRow2;
|
||||||
|
private DevExpress.XtraReports.UI.XRTableCell xrTableCell2;
|
||||||
|
private DevExpress.XtraReports.UI.XRTableCell xrTableCell5;
|
||||||
|
private DevExpress.XtraReports.UI.XRTableCell xrTableCell13;
|
||||||
|
private DevExpress.XtraReports.UI.XRLabel xrLabel1;
|
||||||
|
private DevExpress.XtraReports.UI.XRPictureBox xrPictureBox2;
|
||||||
|
private DevExpress.XtraReports.UI.XRLabel xrLabel4;
|
||||||
|
private DevExpress.XtraReports.UI.XRLabel xrLabel7;
|
||||||
|
private DevExpress.XtraReports.UI.XRLabel xrLabel8;
|
||||||
|
private DevExpress.XtraReports.UI.XRLabel xrLabel11;
|
||||||
|
private DevExpress.XtraReports.UI.XRLabel xrLabel13;
|
||||||
|
private DevExpress.XtraReports.UI.XRLabel xrLabel14;
|
||||||
|
private DevExpress.XtraReports.UI.XRLabel xrLabel15;
|
||||||
|
private DevExpress.XtraReports.UI.XRLabel xrLabel17;
|
||||||
|
private DevExpress.XtraReports.UI.XRLabel xrLabel16;
|
||||||
|
private DevExpress.XtraReports.UI.XRLabel xrLabel3;
|
||||||
|
private DevExpress.XtraReports.UI.XRLabel xrLabel2;
|
||||||
|
}
|
||||||
|
}
|
||||||
102
ReportImp/HphBersenbrueckFreizeitUndReisen/Rechnung.cs
Normal file
102
ReportImp/HphBersenbrueckFreizeitUndReisen/Rechnung.cs
Normal file
@@ -0,0 +1,102 @@
|
|||||||
|
using System;
|
||||||
|
using System.Text;
|
||||||
|
using BeWo.Report;
|
||||||
|
using BeWo.Report.ReportObjects;
|
||||||
|
|
||||||
|
using DevExpress.XtraReports.UI;
|
||||||
|
|
||||||
|
namespace HphBersenbrueckFreizeitUndReisen
|
||||||
|
{
|
||||||
|
public partial class Rechnung : XtraReport, IBeWoReport<ServiceInvoiceRO>
|
||||||
|
{
|
||||||
|
public Rechnung()
|
||||||
|
{
|
||||||
|
this.InitializeComponent();
|
||||||
|
}
|
||||||
|
|
||||||
|
public void SetReportDataSource(ServiceInvoiceRO pRO)
|
||||||
|
{
|
||||||
|
decimal hourlyRate = 0;
|
||||||
|
decimal rateFactor = 1;
|
||||||
|
decimal hours = 0;
|
||||||
|
|
||||||
|
StringBuilder sb = new StringBuilder();
|
||||||
|
|
||||||
|
if (!String.IsNullOrEmpty(pRO.RecipientOrganisation))
|
||||||
|
{
|
||||||
|
sb.AppendLine(pRO.RecipientOrganisation);
|
||||||
|
}
|
||||||
|
if (!String.IsNullOrEmpty(pRO.RecipientContactPerson))
|
||||||
|
{
|
||||||
|
sb.AppendLine(pRO.RecipientContactPerson);
|
||||||
|
}
|
||||||
|
if (!String.IsNullOrEmpty(pRO.RecipientDivision))
|
||||||
|
{
|
||||||
|
sb.AppendLine(pRO.RecipientDivision);
|
||||||
|
}
|
||||||
|
if (!String.IsNullOrEmpty(pRO.RecipientStreet))
|
||||||
|
{
|
||||||
|
sb.AppendLine(pRO.RecipientStreet);
|
||||||
|
}
|
||||||
|
if (!String.IsNullOrEmpty(pRO.RecipientPostCodeAndTown))
|
||||||
|
{
|
||||||
|
sb.AppendLine(pRO.RecipientPostCodeAndTown);
|
||||||
|
}
|
||||||
|
lblAdresse.Text = sb.ToString();
|
||||||
|
|
||||||
|
if (pRO.ServiceInvoicePeriods != null && pRO.ServiceInvoicePeriods.Count > 0)
|
||||||
|
{
|
||||||
|
foreach (var p in pRO.ServiceInvoicePeriods)
|
||||||
|
{
|
||||||
|
|
||||||
|
if (p.ServiceInvoiceItems != null && p.ServiceInvoiceItems.Count > 0)
|
||||||
|
{
|
||||||
|
|
||||||
|
foreach (var i in p.ServiceInvoiceItems)
|
||||||
|
{
|
||||||
|
if (i.HourlyRate.HasValue)
|
||||||
|
{
|
||||||
|
hourlyRate = i.HourlyRate.Value;
|
||||||
|
|
||||||
|
if (!String.IsNullOrEmpty(i.RateFactor))
|
||||||
|
{
|
||||||
|
var rfStr = i.RateFactor.Replace("%", "").Replace(",00", "").Trim();
|
||||||
|
int rfInt = 0;
|
||||||
|
Int32.TryParse(rfStr, out rfInt);
|
||||||
|
|
||||||
|
rateFactor = (100m + rfInt) / 100m;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
if (i.Hours.HasValue)
|
||||||
|
hours += i.Hours.Value;
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
}
|
||||||
|
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
}
|
||||||
|
hours *= rateFactor;
|
||||||
|
|
||||||
|
lblSatz.Text = String.Format("{0:c}", hourlyRate);
|
||||||
|
lblAnzahl.Text = String.Format("{0:0.##}", hours);
|
||||||
|
lblBetrag.Text = String.Format("{0}", pRO.NetClaim);
|
||||||
|
|
||||||
|
//if (!String.IsNullOrEmpty(pRO.CustomerSalutation))
|
||||||
|
//{
|
||||||
|
// if (pRO.CustomerSalutation.ToLower() == "frau")
|
||||||
|
// {
|
||||||
|
// lblAnrede.Text = String.Format("Sehr geehrte Frau {0}", pRO.CustomerLastName);
|
||||||
|
// }
|
||||||
|
// else
|
||||||
|
// {
|
||||||
|
// lblAnrede.Text = String.Format("Sehr geehrter Herr {0}", pRO.CustomerLastName);
|
||||||
|
// }
|
||||||
|
//}
|
||||||
|
this.bindingSource1.DataSource = pRO;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
304
ReportImp/HphBersenbrueckFreizeitUndReisen/Rechnung.resx
Normal file
304
ReportImp/HphBersenbrueckFreizeitUndReisen/Rechnung.resx
Normal file
@@ -0,0 +1,304 @@
|
|||||||
|
<?xml version="1.0" encoding="utf-8"?>
|
||||||
|
<root>
|
||||||
|
<!--
|
||||||
|
Microsoft ResX Schema
|
||||||
|
|
||||||
|
Version 2.0
|
||||||
|
|
||||||
|
The primary goals of this format is to allow a simple XML format
|
||||||
|
that is mostly human readable. The generation and parsing of the
|
||||||
|
various data types are done through the TypeConverter classes
|
||||||
|
associated with the data types.
|
||||||
|
|
||||||
|
Example:
|
||||||
|
|
||||||
|
... ado.net/XML headers & schema ...
|
||||||
|
<resheader name="resmimetype">text/microsoft-resx</resheader>
|
||||||
|
<resheader name="version">2.0</resheader>
|
||||||
|
<resheader name="reader">System.Resources.ResXResourceReader, System.Windows.Forms, ...</resheader>
|
||||||
|
<resheader name="writer">System.Resources.ResXResourceWriter, System.Windows.Forms, ...</resheader>
|
||||||
|
<data name="Name1"><value>this is my long string</value><comment>this is a comment</comment></data>
|
||||||
|
<data name="Color1" type="System.Drawing.Color, System.Drawing">Blue</data>
|
||||||
|
<data name="Bitmap1" mimetype="application/x-microsoft.net.object.binary.base64">
|
||||||
|
<value>[base64 mime encoded serialized .NET Framework object]</value>
|
||||||
|
</data>
|
||||||
|
<data name="Icon1" type="System.Drawing.Icon, System.Drawing" mimetype="application/x-microsoft.net.object.bytearray.base64">
|
||||||
|
<value>[base64 mime encoded string representing a byte array form of the .NET Framework object]</value>
|
||||||
|
<comment>This is a comment</comment>
|
||||||
|
</data>
|
||||||
|
|
||||||
|
There are any number of "resheader" rows that contain simple
|
||||||
|
name/value pairs.
|
||||||
|
|
||||||
|
Each data row contains a name, and value. The row also contains a
|
||||||
|
type or mimetype. Type corresponds to a .NET class that support
|
||||||
|
text/value conversion through the TypeConverter architecture.
|
||||||
|
Classes that don't support this are serialized and stored with the
|
||||||
|
mimetype set.
|
||||||
|
|
||||||
|
The mimetype is used for serialized objects, and tells the
|
||||||
|
ResXResourceReader how to depersist the object. This is currently not
|
||||||
|
extensible. For a given mimetype the value must be set accordingly:
|
||||||
|
|
||||||
|
Note - application/x-microsoft.net.object.binary.base64 is the format
|
||||||
|
that the ResXResourceWriter will generate, however the reader can
|
||||||
|
read any of the formats listed below.
|
||||||
|
|
||||||
|
mimetype: application/x-microsoft.net.object.binary.base64
|
||||||
|
value : The object must be serialized with
|
||||||
|
: System.Runtime.Serialization.Formatters.Binary.BinaryFormatter
|
||||||
|
: and then encoded with base64 encoding.
|
||||||
|
|
||||||
|
mimetype: application/x-microsoft.net.object.soap.base64
|
||||||
|
value : The object must be serialized with
|
||||||
|
: System.Runtime.Serialization.Formatters.Soap.SoapFormatter
|
||||||
|
: and then encoded with base64 encoding.
|
||||||
|
|
||||||
|
mimetype: application/x-microsoft.net.object.bytearray.base64
|
||||||
|
value : The object must be serialized into a byte array
|
||||||
|
: using a System.ComponentModel.TypeConverter
|
||||||
|
: and then encoded with base64 encoding.
|
||||||
|
-->
|
||||||
|
<xsd:schema id="root" xmlns="" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:msdata="urn:schemas-microsoft-com:xml-msdata">
|
||||||
|
<xsd:import namespace="http://www.w3.org/XML/1998/namespace" />
|
||||||
|
<xsd:element name="root" msdata:IsDataSet="true">
|
||||||
|
<xsd:complexType>
|
||||||
|
<xsd:choice maxOccurs="unbounded">
|
||||||
|
<xsd:element name="metadata">
|
||||||
|
<xsd:complexType>
|
||||||
|
<xsd:sequence>
|
||||||
|
<xsd:element name="value" type="xsd:string" minOccurs="0" />
|
||||||
|
</xsd:sequence>
|
||||||
|
<xsd:attribute name="name" use="required" type="xsd:string" />
|
||||||
|
<xsd:attribute name="type" type="xsd:string" />
|
||||||
|
<xsd:attribute name="mimetype" type="xsd:string" />
|
||||||
|
<xsd:attribute ref="xml:space" />
|
||||||
|
</xsd:complexType>
|
||||||
|
</xsd:element>
|
||||||
|
<xsd:element name="assembly">
|
||||||
|
<xsd:complexType>
|
||||||
|
<xsd:attribute name="alias" type="xsd:string" />
|
||||||
|
<xsd:attribute name="name" type="xsd:string" />
|
||||||
|
</xsd:complexType>
|
||||||
|
</xsd:element>
|
||||||
|
<xsd:element name="data">
|
||||||
|
<xsd:complexType>
|
||||||
|
<xsd:sequence>
|
||||||
|
<xsd:element name="value" type="xsd:string" minOccurs="0" msdata:Ordinal="1" />
|
||||||
|
<xsd:element name="comment" type="xsd:string" minOccurs="0" msdata:Ordinal="2" />
|
||||||
|
</xsd:sequence>
|
||||||
|
<xsd:attribute name="name" type="xsd:string" use="required" msdata:Ordinal="1" />
|
||||||
|
<xsd:attribute name="type" type="xsd:string" msdata:Ordinal="3" />
|
||||||
|
<xsd:attribute name="mimetype" type="xsd:string" msdata:Ordinal="4" />
|
||||||
|
<xsd:attribute ref="xml:space" />
|
||||||
|
</xsd:complexType>
|
||||||
|
</xsd:element>
|
||||||
|
<xsd:element name="resheader">
|
||||||
|
<xsd:complexType>
|
||||||
|
<xsd:sequence>
|
||||||
|
<xsd:element name="value" type="xsd:string" minOccurs="0" msdata:Ordinal="1" />
|
||||||
|
</xsd:sequence>
|
||||||
|
<xsd:attribute name="name" type="xsd:string" use="required" />
|
||||||
|
</xsd:complexType>
|
||||||
|
</xsd:element>
|
||||||
|
</xsd:choice>
|
||||||
|
</xsd:complexType>
|
||||||
|
</xsd:element>
|
||||||
|
</xsd:schema>
|
||||||
|
<resheader name="resmimetype">
|
||||||
|
<value>text/microsoft-resx</value>
|
||||||
|
</resheader>
|
||||||
|
<resheader name="version">
|
||||||
|
<value>2.0</value>
|
||||||
|
</resheader>
|
||||||
|
<resheader name="reader">
|
||||||
|
<value>System.Resources.ResXResourceReader, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089</value>
|
||||||
|
</resheader>
|
||||||
|
<resheader name="writer">
|
||||||
|
<value>System.Resources.ResXResourceWriter, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089</value>
|
||||||
|
</resheader>
|
||||||
|
<assembly alias="System.Drawing" name="System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" />
|
||||||
|
<data name="xrPictureBox2.Image" type="System.Drawing.Bitmap, System.Drawing" mimetype="application/x-microsoft.net.object.bytearray.base64">
|
||||||
|
<value>
|
||||||
|
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
|
||||||
|
YII=
|
||||||
|
</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>
|
||||||
|
</root>
|
||||||
@@ -41,6 +41,9 @@ namespace InputFamilienhilfe
|
|||||||
this.xrTableCell10 = new DevExpress.XtraReports.UI.XRTableCell();
|
this.xrTableCell10 = new DevExpress.XtraReports.UI.XRTableCell();
|
||||||
this.xrTableCell12 = new DevExpress.XtraReports.UI.XRTableCell();
|
this.xrTableCell12 = new DevExpress.XtraReports.UI.XRTableCell();
|
||||||
this.ReportHeader = new DevExpress.XtraReports.UI.ReportHeaderBand();
|
this.ReportHeader = new DevExpress.XtraReports.UI.ReportHeaderBand();
|
||||||
|
this.xrRichText3 = new DevExpress.XtraReports.UI.XRRichText();
|
||||||
|
this.xrPictureBox1 = new DevExpress.XtraReports.UI.XRPictureBox();
|
||||||
|
this.xrRichText1 = new DevExpress.XtraReports.UI.XRRichText();
|
||||||
this.lblAddress = new DevExpress.XtraReports.UI.XRLabel();
|
this.lblAddress = new DevExpress.XtraReports.UI.XRLabel();
|
||||||
this.xrTable3 = new DevExpress.XtraReports.UI.XRTable();
|
this.xrTable3 = new DevExpress.XtraReports.UI.XRTable();
|
||||||
this.xrTableRow10 = new DevExpress.XtraReports.UI.XRTableRow();
|
this.xrTableRow10 = new DevExpress.XtraReports.UI.XRTableRow();
|
||||||
@@ -53,10 +56,13 @@ namespace InputFamilienhilfe
|
|||||||
this.xrLabel6 = new DevExpress.XtraReports.UI.XRLabel();
|
this.xrLabel6 = new DevExpress.XtraReports.UI.XRLabel();
|
||||||
this.xrLabel5 = new DevExpress.XtraReports.UI.XRLabel();
|
this.xrLabel5 = new DevExpress.XtraReports.UI.XRLabel();
|
||||||
this.xrLabel4 = new DevExpress.XtraReports.UI.XRLabel();
|
this.xrLabel4 = new DevExpress.XtraReports.UI.XRLabel();
|
||||||
this.xrLabel3 = new DevExpress.XtraReports.UI.XRLabel();
|
|
||||||
this.xrLabel2 = new DevExpress.XtraReports.UI.XRLabel();
|
this.xrLabel2 = new DevExpress.XtraReports.UI.XRLabel();
|
||||||
this.ruleRateFactorNull = new DevExpress.XtraReports.UI.FormattingRule();
|
this.ruleRateFactorNull = new DevExpress.XtraReports.UI.FormattingRule();
|
||||||
this.ReportFooter = new DevExpress.XtraReports.UI.ReportFooterBand();
|
this.ReportFooter = new DevExpress.XtraReports.UI.ReportFooterBand();
|
||||||
|
this.xrLabel10 = new DevExpress.XtraReports.UI.XRLabel();
|
||||||
|
this.xrPictureBox2 = new DevExpress.XtraReports.UI.XRPictureBox();
|
||||||
|
this.xrRichText2 = new DevExpress.XtraReports.UI.XRRichText();
|
||||||
|
this.xrLabel1 = new DevExpress.XtraReports.UI.XRLabel();
|
||||||
this.xrTable4 = new DevExpress.XtraReports.UI.XRTable();
|
this.xrTable4 = new DevExpress.XtraReports.UI.XRTable();
|
||||||
this.xrTableRow11 = new DevExpress.XtraReports.UI.XRTableRow();
|
this.xrTableRow11 = new DevExpress.XtraReports.UI.XRTableRow();
|
||||||
this.xrTableCell23 = new DevExpress.XtraReports.UI.XRTableCell();
|
this.xrTableCell23 = new DevExpress.XtraReports.UI.XRTableCell();
|
||||||
@@ -64,22 +70,15 @@ namespace InputFamilienhilfe
|
|||||||
this.bottomMarginBand1 = new DevExpress.XtraReports.UI.BottomMarginBand();
|
this.bottomMarginBand1 = new DevExpress.XtraReports.UI.BottomMarginBand();
|
||||||
this.DetailReport = new DevExpress.XtraReports.UI.DetailReportBand();
|
this.DetailReport = new DevExpress.XtraReports.UI.DetailReportBand();
|
||||||
this.Detail1 = new DevExpress.XtraReports.UI.DetailBand();
|
this.Detail1 = new DevExpress.XtraReports.UI.DetailBand();
|
||||||
this.bindingSource1 = new System.Windows.Forms.BindingSource(this.components);
|
|
||||||
this.xrRichText3 = new DevExpress.XtraReports.UI.XRRichText();
|
|
||||||
this.xrPictureBox1 = new DevExpress.XtraReports.UI.XRPictureBox();
|
|
||||||
this.xrRichText1 = new DevExpress.XtraReports.UI.XRRichText();
|
|
||||||
this.xrLabel10 = new DevExpress.XtraReports.UI.XRLabel();
|
|
||||||
this.xrPictureBox2 = new DevExpress.XtraReports.UI.XRPictureBox();
|
|
||||||
this.xrRichText2 = new DevExpress.XtraReports.UI.XRRichText();
|
|
||||||
this.xrLabel1 = new DevExpress.XtraReports.UI.XRLabel();
|
|
||||||
this.GroupFooter1 = new DevExpress.XtraReports.UI.GroupFooterBand();
|
this.GroupFooter1 = new DevExpress.XtraReports.UI.GroupFooterBand();
|
||||||
|
this.bindingSource1 = new System.Windows.Forms.BindingSource(this.components);
|
||||||
((System.ComponentModel.ISupportInitialize)(this.xrTable1)).BeginInit();
|
((System.ComponentModel.ISupportInitialize)(this.xrTable1)).BeginInit();
|
||||||
((System.ComponentModel.ISupportInitialize)(this.xrTable3)).BeginInit();
|
|
||||||
((System.ComponentModel.ISupportInitialize)(this.xrTable4)).BeginInit();
|
|
||||||
((System.ComponentModel.ISupportInitialize)(this.bindingSource1)).BeginInit();
|
|
||||||
((System.ComponentModel.ISupportInitialize)(this.xrRichText3)).BeginInit();
|
((System.ComponentModel.ISupportInitialize)(this.xrRichText3)).BeginInit();
|
||||||
((System.ComponentModel.ISupportInitialize)(this.xrRichText1)).BeginInit();
|
((System.ComponentModel.ISupportInitialize)(this.xrRichText1)).BeginInit();
|
||||||
|
((System.ComponentModel.ISupportInitialize)(this.xrTable3)).BeginInit();
|
||||||
((System.ComponentModel.ISupportInitialize)(this.xrRichText2)).BeginInit();
|
((System.ComponentModel.ISupportInitialize)(this.xrRichText2)).BeginInit();
|
||||||
|
((System.ComponentModel.ISupportInitialize)(this.xrTable4)).BeginInit();
|
||||||
|
((System.ComponentModel.ISupportInitialize)(this.bindingSource1)).BeginInit();
|
||||||
((System.ComponentModel.ISupportInitialize)(this)).BeginInit();
|
((System.ComponentModel.ISupportInitialize)(this)).BeginInit();
|
||||||
//
|
//
|
||||||
// Detail
|
// Detail
|
||||||
@@ -211,12 +210,33 @@ namespace InputFamilienhilfe
|
|||||||
this.xrLabel6,
|
this.xrLabel6,
|
||||||
this.xrLabel5,
|
this.xrLabel5,
|
||||||
this.xrLabel4,
|
this.xrLabel4,
|
||||||
this.xrLabel3,
|
|
||||||
this.xrLabel2});
|
this.xrLabel2});
|
||||||
this.ReportHeader.HeightF = 582.1598F;
|
this.ReportHeader.HeightF = 582.1598F;
|
||||||
this.ReportHeader.Name = "ReportHeader";
|
this.ReportHeader.Name = "ReportHeader";
|
||||||
this.ReportHeader.StylePriority.UseFont = false;
|
this.ReportHeader.StylePriority.UseFont = false;
|
||||||
//
|
//
|
||||||
|
// xrRichText3
|
||||||
|
//
|
||||||
|
this.xrRichText3.LocationFloat = new DevExpress.Utils.PointFloat(0F, 162.5001F);
|
||||||
|
this.xrRichText3.Name = "xrRichText3";
|
||||||
|
this.xrRichText3.SerializableRtfString = resources.GetString("xrRichText3.SerializableRtfString");
|
||||||
|
this.xrRichText3.SizeF = new System.Drawing.SizeF(469.7848F, 19.72234F);
|
||||||
|
//
|
||||||
|
// xrPictureBox1
|
||||||
|
//
|
||||||
|
this.xrPictureBox1.Image = ((System.Drawing.Image)(resources.GetObject("xrPictureBox1.Image")));
|
||||||
|
this.xrPictureBox1.LocationFloat = new DevExpress.Utils.PointFloat(412.5F, 0F);
|
||||||
|
this.xrPictureBox1.Name = "xrPictureBox1";
|
||||||
|
this.xrPictureBox1.SizeF = new System.Drawing.SizeF(214.4996F, 162.5001F);
|
||||||
|
this.xrPictureBox1.Sizing = DevExpress.XtraPrinting.ImageSizeMode.ZoomImage;
|
||||||
|
//
|
||||||
|
// xrRichText1
|
||||||
|
//
|
||||||
|
this.xrRichText1.LocationFloat = new DevExpress.Utils.PointFloat(522F, 162.5F);
|
||||||
|
this.xrRichText1.Name = "xrRichText1";
|
||||||
|
this.xrRichText1.SerializableRtfString = resources.GetString("xrRichText1.SerializableRtfString");
|
||||||
|
this.xrRichText1.SizeF = new System.Drawing.SizeF(185F, 332.8983F);
|
||||||
|
//
|
||||||
// lblAddress
|
// lblAddress
|
||||||
//
|
//
|
||||||
this.lblAddress.LocationFloat = new DevExpress.Utils.PointFloat(0F, 193.16F);
|
this.lblAddress.LocationFloat = new DevExpress.Utils.PointFloat(0F, 193.16F);
|
||||||
@@ -341,7 +361,7 @@ namespace InputFamilienhilfe
|
|||||||
this.xrLabel6.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
|
this.xrLabel6.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
|
||||||
this.xrLabel6.SizeF = new System.Drawing.SizeF(666.9999F, 23.25F);
|
this.xrLabel6.SizeF = new System.Drawing.SizeF(666.9999F, 23.25F);
|
||||||
this.xrLabel6.StylePriority.UseFont = false;
|
this.xrLabel6.StylePriority.UseFont = false;
|
||||||
this.xrLabel6.Text = "für den Betreuungszeitraum [AccountingPeriod] berechnen wir folgende Leistungen:";
|
this.xrLabel6.Text = "für den Zeitraum [AccountingPeriod] berechnen wir folgende Leistungen:";
|
||||||
//
|
//
|
||||||
// xrLabel5
|
// xrLabel5
|
||||||
//
|
//
|
||||||
@@ -368,26 +388,12 @@ namespace InputFamilienhilfe
|
|||||||
this.xrLabel4.Text = "[CustomerReferenceNumber]";
|
this.xrLabel4.Text = "[CustomerReferenceNumber]";
|
||||||
this.xrLabel4.WordWrap = false;
|
this.xrLabel4.WordWrap = false;
|
||||||
//
|
//
|
||||||
// xrLabel3
|
|
||||||
//
|
|
||||||
this.xrLabel3.BackColor = System.Drawing.Color.Transparent;
|
|
||||||
this.xrLabel3.CanShrink = true;
|
|
||||||
this.xrLabel3.Font = new System.Drawing.Font("Arial", 12F, System.Drawing.FontStyle.Bold);
|
|
||||||
this.xrLabel3.LocationFloat = new DevExpress.Utils.PointFloat(0F, 410.1599F);
|
|
||||||
this.xrLabel3.Name = "xrLabel3";
|
|
||||||
this.xrLabel3.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
|
|
||||||
this.xrLabel3.SizeF = new System.Drawing.SizeF(427.0014F, 16F);
|
|
||||||
this.xrLabel3.StylePriority.UseBackColor = false;
|
|
||||||
this.xrLabel3.StylePriority.UseFont = false;
|
|
||||||
this.xrLabel3.Text = "Abrechnung über Betreuungsleistungen";
|
|
||||||
this.xrLabel3.WordWrap = false;
|
|
||||||
//
|
|
||||||
// xrLabel2
|
// xrLabel2
|
||||||
//
|
//
|
||||||
this.xrLabel2.BackColor = System.Drawing.Color.Transparent;
|
this.xrLabel2.BackColor = System.Drawing.Color.Transparent;
|
||||||
this.xrLabel2.CanShrink = true;
|
this.xrLabel2.CanShrink = true;
|
||||||
this.xrLabel2.Font = new System.Drawing.Font("Arial", 12F, System.Drawing.FontStyle.Bold);
|
this.xrLabel2.Font = new System.Drawing.Font("Arial", 12F, System.Drawing.FontStyle.Bold);
|
||||||
this.xrLabel2.LocationFloat = new DevExpress.Utils.PointFloat(0F, 393.1599F);
|
this.xrLabel2.LocationFloat = new DevExpress.Utils.PointFloat(0.4162598F, 410.16F);
|
||||||
this.xrLabel2.Name = "xrLabel2";
|
this.xrLabel2.Name = "xrLabel2";
|
||||||
this.xrLabel2.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
|
this.xrLabel2.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
|
||||||
this.xrLabel2.SizeF = new System.Drawing.SizeF(427.0014F, 17F);
|
this.xrLabel2.SizeF = new System.Drawing.SizeF(427.0014F, 17F);
|
||||||
@@ -415,6 +421,39 @@ namespace InputFamilienhilfe
|
|||||||
this.ReportFooter.PrintAtBottom = true;
|
this.ReportFooter.PrintAtBottom = true;
|
||||||
this.ReportFooter.StylePriority.UseFont = false;
|
this.ReportFooter.StylePriority.UseFont = false;
|
||||||
//
|
//
|
||||||
|
// xrLabel10
|
||||||
|
//
|
||||||
|
this.xrLabel10.LocationFloat = new DevExpress.Utils.PointFloat(0F, 0F);
|
||||||
|
this.xrLabel10.Name = "xrLabel10";
|
||||||
|
this.xrLabel10.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
|
||||||
|
this.xrLabel10.SizeF = new System.Drawing.SizeF(277.0833F, 17F);
|
||||||
|
this.xrLabel10.StylePriority.UseFont = false;
|
||||||
|
this.xrLabel10.Text = "Mit freundlichen Grüßen";
|
||||||
|
//
|
||||||
|
// xrPictureBox2
|
||||||
|
//
|
||||||
|
this.xrPictureBox2.Image = ((System.Drawing.Image)(resources.GetObject("xrPictureBox2.Image")));
|
||||||
|
this.xrPictureBox2.LocationFloat = new DevExpress.Utils.PointFloat(0F, 37.83334F);
|
||||||
|
this.xrPictureBox2.Name = "xrPictureBox2";
|
||||||
|
this.xrPictureBox2.SizeF = new System.Drawing.SizeF(178.75F, 65.55557F);
|
||||||
|
this.xrPictureBox2.Sizing = DevExpress.XtraPrinting.ImageSizeMode.ZoomImage;
|
||||||
|
//
|
||||||
|
// xrRichText2
|
||||||
|
//
|
||||||
|
this.xrRichText2.LocationFloat = new DevExpress.Utils.PointFloat(522.0001F, 0F);
|
||||||
|
this.xrRichText2.Name = "xrRichText2";
|
||||||
|
this.xrRichText2.SerializableRtfString = resources.GetString("xrRichText2.SerializableRtfString");
|
||||||
|
this.xrRichText2.SizeF = new System.Drawing.SizeF(185F, 200F);
|
||||||
|
//
|
||||||
|
// xrLabel1
|
||||||
|
//
|
||||||
|
this.xrLabel1.LocationFloat = new DevExpress.Utils.PointFloat(0.4163106F, 103.3889F);
|
||||||
|
this.xrLabel1.Name = "xrLabel1";
|
||||||
|
this.xrLabel1.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
|
||||||
|
this.xrLabel1.SizeF = new System.Drawing.SizeF(277.0833F, 17F);
|
||||||
|
this.xrLabel1.StylePriority.UseFont = false;
|
||||||
|
this.xrLabel1.Text = "Thomas Droese";
|
||||||
|
//
|
||||||
// xrTable4
|
// xrTable4
|
||||||
//
|
//
|
||||||
this.xrTable4.LocationFloat = new DevExpress.Utils.PointFloat(571.4177F, 0F);
|
this.xrTable4.LocationFloat = new DevExpress.Utils.PointFloat(571.4177F, 0F);
|
||||||
@@ -477,65 +516,6 @@ namespace InputFamilienhilfe
|
|||||||
this.Detail1.Name = "Detail1";
|
this.Detail1.Name = "Detail1";
|
||||||
this.Detail1.StylePriority.UseFont = false;
|
this.Detail1.StylePriority.UseFont = false;
|
||||||
//
|
//
|
||||||
// bindingSource1
|
|
||||||
//
|
|
||||||
this.bindingSource1.DataSource = typeof(BeWo.Report.ReportObjects.InvoiceCustomerRO);
|
|
||||||
//
|
|
||||||
// xrRichText3
|
|
||||||
//
|
|
||||||
this.xrRichText3.LocationFloat = new DevExpress.Utils.PointFloat(0F, 162.5001F);
|
|
||||||
this.xrRichText3.Name = "xrRichText3";
|
|
||||||
this.xrRichText3.SerializableRtfString = resources.GetString("xrRichText3.SerializableRtfString");
|
|
||||||
this.xrRichText3.SizeF = new System.Drawing.SizeF(469.7848F, 19.72234F);
|
|
||||||
//
|
|
||||||
// xrPictureBox1
|
|
||||||
//
|
|
||||||
this.xrPictureBox1.Image = ((System.Drawing.Image)(resources.GetObject("xrPictureBox1.Image")));
|
|
||||||
this.xrPictureBox1.LocationFloat = new DevExpress.Utils.PointFloat(412.5F, 0F);
|
|
||||||
this.xrPictureBox1.Name = "xrPictureBox1";
|
|
||||||
this.xrPictureBox1.SizeF = new System.Drawing.SizeF(214.4996F, 162.5001F);
|
|
||||||
this.xrPictureBox1.Sizing = DevExpress.XtraPrinting.ImageSizeMode.ZoomImage;
|
|
||||||
//
|
|
||||||
// xrRichText1
|
|
||||||
//
|
|
||||||
this.xrRichText1.LocationFloat = new DevExpress.Utils.PointFloat(522F, 162.5F);
|
|
||||||
this.xrRichText1.Name = "xrRichText1";
|
|
||||||
this.xrRichText1.SerializableRtfString = resources.GetString("xrRichText1.SerializableRtfString");
|
|
||||||
this.xrRichText1.SizeF = new System.Drawing.SizeF(185F, 332.8983F);
|
|
||||||
//
|
|
||||||
// xrLabel10
|
|
||||||
//
|
|
||||||
this.xrLabel10.LocationFloat = new DevExpress.Utils.PointFloat(0F, 0F);
|
|
||||||
this.xrLabel10.Name = "xrLabel10";
|
|
||||||
this.xrLabel10.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
|
|
||||||
this.xrLabel10.SizeF = new System.Drawing.SizeF(277.0833F, 17F);
|
|
||||||
this.xrLabel10.StylePriority.UseFont = false;
|
|
||||||
this.xrLabel10.Text = "Mit freundlichen Grüßen";
|
|
||||||
//
|
|
||||||
// xrPictureBox2
|
|
||||||
//
|
|
||||||
this.xrPictureBox2.Image = ((System.Drawing.Image)(resources.GetObject("xrPictureBox2.Image")));
|
|
||||||
this.xrPictureBox2.LocationFloat = new DevExpress.Utils.PointFloat(0F, 37.83334F);
|
|
||||||
this.xrPictureBox2.Name = "xrPictureBox2";
|
|
||||||
this.xrPictureBox2.SizeF = new System.Drawing.SizeF(178.75F, 65.55557F);
|
|
||||||
this.xrPictureBox2.Sizing = DevExpress.XtraPrinting.ImageSizeMode.ZoomImage;
|
|
||||||
//
|
|
||||||
// xrRichText2
|
|
||||||
//
|
|
||||||
this.xrRichText2.LocationFloat = new DevExpress.Utils.PointFloat(522.0001F, 0F);
|
|
||||||
this.xrRichText2.Name = "xrRichText2";
|
|
||||||
this.xrRichText2.SerializableRtfString = resources.GetString("xrRichText2.SerializableRtfString");
|
|
||||||
this.xrRichText2.SizeF = new System.Drawing.SizeF(185F, 200F);
|
|
||||||
//
|
|
||||||
// xrLabel1
|
|
||||||
//
|
|
||||||
this.xrLabel1.LocationFloat = new DevExpress.Utils.PointFloat(0.4163106F, 103.3889F);
|
|
||||||
this.xrLabel1.Name = "xrLabel1";
|
|
||||||
this.xrLabel1.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
|
|
||||||
this.xrLabel1.SizeF = new System.Drawing.SizeF(277.0833F, 17F);
|
|
||||||
this.xrLabel1.StylePriority.UseFont = false;
|
|
||||||
this.xrLabel1.Text = "Thomas Droese";
|
|
||||||
//
|
|
||||||
// GroupFooter1
|
// GroupFooter1
|
||||||
//
|
//
|
||||||
this.GroupFooter1.Controls.AddRange(new DevExpress.XtraReports.UI.XRControl[] {
|
this.GroupFooter1.Controls.AddRange(new DevExpress.XtraReports.UI.XRControl[] {
|
||||||
@@ -543,6 +523,10 @@ namespace InputFamilienhilfe
|
|||||||
this.GroupFooter1.HeightF = 25F;
|
this.GroupFooter1.HeightF = 25F;
|
||||||
this.GroupFooter1.Name = "GroupFooter1";
|
this.GroupFooter1.Name = "GroupFooter1";
|
||||||
//
|
//
|
||||||
|
// bindingSource1
|
||||||
|
//
|
||||||
|
this.bindingSource1.DataSource = typeof(BeWo.Report.ReportObjects.InvoiceCustomerRO);
|
||||||
|
//
|
||||||
// InvoiceCustomerReport
|
// InvoiceCustomerReport
|
||||||
//
|
//
|
||||||
this.Bands.AddRange(new DevExpress.XtraReports.UI.Band[] {
|
this.Bands.AddRange(new DevExpress.XtraReports.UI.Band[] {
|
||||||
@@ -563,12 +547,12 @@ namespace InputFamilienhilfe
|
|||||||
this.PaperKind = System.Drawing.Printing.PaperKind.A4;
|
this.PaperKind = System.Drawing.Printing.PaperKind.A4;
|
||||||
this.Version = "17.1";
|
this.Version = "17.1";
|
||||||
((System.ComponentModel.ISupportInitialize)(this.xrTable1)).EndInit();
|
((System.ComponentModel.ISupportInitialize)(this.xrTable1)).EndInit();
|
||||||
((System.ComponentModel.ISupportInitialize)(this.xrTable3)).EndInit();
|
|
||||||
((System.ComponentModel.ISupportInitialize)(this.xrTable4)).EndInit();
|
|
||||||
((System.ComponentModel.ISupportInitialize)(this.bindingSource1)).EndInit();
|
|
||||||
((System.ComponentModel.ISupportInitialize)(this.xrRichText3)).EndInit();
|
((System.ComponentModel.ISupportInitialize)(this.xrRichText3)).EndInit();
|
||||||
((System.ComponentModel.ISupportInitialize)(this.xrRichText1)).EndInit();
|
((System.ComponentModel.ISupportInitialize)(this.xrRichText1)).EndInit();
|
||||||
|
((System.ComponentModel.ISupportInitialize)(this.xrTable3)).EndInit();
|
||||||
((System.ComponentModel.ISupportInitialize)(this.xrRichText2)).EndInit();
|
((System.ComponentModel.ISupportInitialize)(this.xrRichText2)).EndInit();
|
||||||
|
((System.ComponentModel.ISupportInitialize)(this.xrTable4)).EndInit();
|
||||||
|
((System.ComponentModel.ISupportInitialize)(this.bindingSource1)).EndInit();
|
||||||
((System.ComponentModel.ISupportInitialize)(this)).EndInit();
|
((System.ComponentModel.ISupportInitialize)(this)).EndInit();
|
||||||
|
|
||||||
}
|
}
|
||||||
@@ -581,7 +565,6 @@ namespace InputFamilienhilfe
|
|||||||
private DevExpress.XtraReports.UI.XRLabel xrLabel6;
|
private DevExpress.XtraReports.UI.XRLabel xrLabel6;
|
||||||
private DevExpress.XtraReports.UI.XRLabel xrLabel5;
|
private DevExpress.XtraReports.UI.XRLabel xrLabel5;
|
||||||
private DevExpress.XtraReports.UI.XRLabel xrLabel4;
|
private DevExpress.XtraReports.UI.XRLabel xrLabel4;
|
||||||
private DevExpress.XtraReports.UI.XRLabel xrLabel3;
|
|
||||||
private DevExpress.XtraReports.UI.XRLabel xrLabel2;
|
private DevExpress.XtraReports.UI.XRLabel xrLabel2;
|
||||||
private DevExpress.XtraReports.UI.ReportFooterBand ReportFooter;
|
private DevExpress.XtraReports.UI.ReportFooterBand ReportFooter;
|
||||||
private DevExpress.XtraReports.UI.FormattingRule ruleRateFactorNull;
|
private DevExpress.XtraReports.UI.FormattingRule ruleRateFactorNull;
|
||||||
|
|||||||
@@ -78,6 +78,9 @@ namespace PflegedienstWessel
|
|||||||
this.fieldFLS = new DevExpress.XtraReports.UI.CalculatedField();
|
this.fieldFLS = new DevExpress.XtraReports.UI.CalculatedField();
|
||||||
this.topMarginBand1 = new DevExpress.XtraReports.UI.TopMarginBand();
|
this.topMarginBand1 = new DevExpress.XtraReports.UI.TopMarginBand();
|
||||||
this.bottomMarginBand1 = new DevExpress.XtraReports.UI.BottomMarginBand();
|
this.bottomMarginBand1 = new DevExpress.XtraReports.UI.BottomMarginBand();
|
||||||
|
this.xrTableCell1 = new DevExpress.XtraReports.UI.XRTableCell();
|
||||||
|
this.xrTableCell2 = new DevExpress.XtraReports.UI.XRTableCell();
|
||||||
|
this.xrTableCell6 = new DevExpress.XtraReports.UI.XRTableCell();
|
||||||
((System.ComponentModel.ISupportInitialize)(this.xrTableDetail)).BeginInit();
|
((System.ComponentModel.ISupportInitialize)(this.xrTableDetail)).BeginInit();
|
||||||
((System.ComponentModel.ISupportInitialize)(this.xrTableHeader)).BeginInit();
|
((System.ComponentModel.ISupportInitialize)(this.xrTableHeader)).BeginInit();
|
||||||
((System.ComponentModel.ISupportInitialize)(this.xrTable1)).BeginInit();
|
((System.ComponentModel.ISupportInitialize)(this.xrTable1)).BeginInit();
|
||||||
@@ -110,7 +113,7 @@ namespace PflegedienstWessel
|
|||||||
this.xrTableDetail.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
|
this.xrTableDetail.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
|
||||||
this.xrTableDetail.Rows.AddRange(new DevExpress.XtraReports.UI.XRTableRow[] {
|
this.xrTableDetail.Rows.AddRange(new DevExpress.XtraReports.UI.XRTableRow[] {
|
||||||
this.xrTableRowDetail});
|
this.xrTableRowDetail});
|
||||||
this.xrTableDetail.SizeF = new System.Drawing.SizeF(679.9999F, 25F);
|
this.xrTableDetail.SizeF = new System.Drawing.SizeF(705F, 25F);
|
||||||
this.xrTableDetail.StylePriority.UseBorders = false;
|
this.xrTableDetail.StylePriority.UseBorders = false;
|
||||||
this.xrTableDetail.StylePriority.UseFont = false;
|
this.xrTableDetail.StylePriority.UseFont = false;
|
||||||
this.xrTableDetail.StylePriority.UsePadding = false;
|
this.xrTableDetail.StylePriority.UsePadding = false;
|
||||||
@@ -127,6 +130,7 @@ namespace PflegedienstWessel
|
|||||||
this.xrTableCell23,
|
this.xrTableCell23,
|
||||||
this.xrTableCell25,
|
this.xrTableCell25,
|
||||||
this.xrTableCell24,
|
this.xrTableCell24,
|
||||||
|
this.xrTableCell2,
|
||||||
this.xrTableCell26});
|
this.xrTableCell26});
|
||||||
this.xrTableRowDetail.Name = "xrTableRowDetail";
|
this.xrTableRowDetail.Name = "xrTableRowDetail";
|
||||||
this.xrTableRowDetail.Weight = 1D;
|
this.xrTableRowDetail.Weight = 1D;
|
||||||
@@ -142,7 +146,7 @@ namespace PflegedienstWessel
|
|||||||
this.xrTableCell3.StylePriority.UseTextAlignment = false;
|
this.xrTableCell3.StylePriority.UseTextAlignment = false;
|
||||||
this.xrTableCell3.Text = "xrTableCell3";
|
this.xrTableCell3.Text = "xrTableCell3";
|
||||||
this.xrTableCell3.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleLeft;
|
this.xrTableCell3.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleLeft;
|
||||||
this.xrTableCell3.Weight = 0.15329125338142471D;
|
this.xrTableCell3.Weight = 0.1307484332316193D;
|
||||||
//
|
//
|
||||||
// xrTableCell19
|
// xrTableCell19
|
||||||
//
|
//
|
||||||
@@ -150,7 +154,7 @@ namespace PflegedienstWessel
|
|||||||
new DevExpress.XtraReports.UI.XRBinding("Text", null, "EmployeeDetailList.StundenSollMax", "{0:0.00}")});
|
new DevExpress.XtraReports.UI.XRBinding("Text", null, "EmployeeDetailList.StundenSollMax", "{0:0.00}")});
|
||||||
this.xrTableCell19.Name = "xrTableCell19";
|
this.xrTableCell19.Name = "xrTableCell19";
|
||||||
this.xrTableCell19.Text = "xrTableCell19";
|
this.xrTableCell19.Text = "xrTableCell19";
|
||||||
this.xrTableCell19.Weight = 0.081154151689479551D;
|
this.xrTableCell19.Weight = 0.063119932719080757D;
|
||||||
//
|
//
|
||||||
// xrTableCell16
|
// xrTableCell16
|
||||||
//
|
//
|
||||||
@@ -158,7 +162,7 @@ namespace PflegedienstWessel
|
|||||||
new DevExpress.XtraReports.UI.XRBinding("Text", null, "EmployeeDetailList.FlsSoll", "{0:0.00}")});
|
new DevExpress.XtraReports.UI.XRBinding("Text", null, "EmployeeDetailList.FlsSoll", "{0:0.00}")});
|
||||||
this.xrTableCell16.Name = "xrTableCell16";
|
this.xrTableCell16.Name = "xrTableCell16";
|
||||||
this.xrTableCell16.Text = "xrTableCell16";
|
this.xrTableCell16.Text = "xrTableCell16";
|
||||||
this.xrTableCell16.Weight = 0.063119927862939587D;
|
this.xrTableCell16.Weight = 0.063119934742466535D;
|
||||||
//
|
//
|
||||||
// xrTableCell27
|
// xrTableCell27
|
||||||
//
|
//
|
||||||
@@ -166,7 +170,7 @@ namespace PflegedienstWessel
|
|||||||
new DevExpress.XtraReports.UI.XRBinding("Text", null, "EmployeeDetailList.FlsIst", "{0:0.00}")});
|
new DevExpress.XtraReports.UI.XRBinding("Text", null, "EmployeeDetailList.FlsIst", "{0:0.00}")});
|
||||||
this.xrTableCell27.Name = "xrTableCell27";
|
this.xrTableCell27.Name = "xrTableCell27";
|
||||||
this.xrTableCell27.Text = "xrTableCell27";
|
this.xrTableCell27.Text = "xrTableCell27";
|
||||||
this.xrTableCell27.Weight = 0.063119927862939615D;
|
this.xrTableCell27.Weight = 0.063119934742466563D;
|
||||||
//
|
//
|
||||||
// xrTableCell23
|
// xrTableCell23
|
||||||
//
|
//
|
||||||
@@ -174,7 +178,7 @@ namespace PflegedienstWessel
|
|||||||
new DevExpress.XtraReports.UI.XRBinding("Text", null, "EmployeeDetailList.StundenGesamtIst", "{0:0.00}")});
|
new DevExpress.XtraReports.UI.XRBinding("Text", null, "EmployeeDetailList.StundenGesamtIst", "{0:0.00}")});
|
||||||
this.xrTableCell23.Name = "xrTableCell23";
|
this.xrTableCell23.Name = "xrTableCell23";
|
||||||
this.xrTableCell23.Text = "xrTableCell23";
|
this.xrTableCell23.Text = "xrTableCell23";
|
||||||
this.xrTableCell23.Weight = 0.063119927862939559D;
|
this.xrTableCell23.Weight = 0.063119934742466507D;
|
||||||
//
|
//
|
||||||
// xrTableCell25
|
// xrTableCell25
|
||||||
//
|
//
|
||||||
@@ -182,7 +186,7 @@ namespace PflegedienstWessel
|
|||||||
new DevExpress.XtraReports.UI.XRBinding("Text", null, "EmployeeDetailList.Ueberstunden", "{0:0.00}")});
|
new DevExpress.XtraReports.UI.XRBinding("Text", null, "EmployeeDetailList.Ueberstunden", "{0:0.00}")});
|
||||||
this.xrTableCell25.Name = "xrTableCell25";
|
this.xrTableCell25.Name = "xrTableCell25";
|
||||||
this.xrTableCell25.Text = "xrTableCell25";
|
this.xrTableCell25.Text = "xrTableCell25";
|
||||||
this.xrTableCell25.Weight = 0.063119927862939587D;
|
this.xrTableCell25.Weight = 0.063119934742466535D;
|
||||||
//
|
//
|
||||||
// xrTableCell24
|
// xrTableCell24
|
||||||
//
|
//
|
||||||
@@ -190,7 +194,7 @@ namespace PflegedienstWessel
|
|||||||
new DevExpress.XtraReports.UI.XRBinding("Text", null, "EmployeeDetailList.UeberstundenVormonat", "{0:0.00}")});
|
new DevExpress.XtraReports.UI.XRBinding("Text", null, "EmployeeDetailList.UeberstundenVormonat", "{0:0.00}")});
|
||||||
this.xrTableCell24.Name = "xrTableCell24";
|
this.xrTableCell24.Name = "xrTableCell24";
|
||||||
this.xrTableCell24.Text = "xrTableCell24";
|
this.xrTableCell24.Text = "xrTableCell24";
|
||||||
this.xrTableCell24.Weight = 0.0631199278629396D;
|
this.xrTableCell24.Weight = 0.063119934742466549D;
|
||||||
//
|
//
|
||||||
// xrTableCell26
|
// xrTableCell26
|
||||||
//
|
//
|
||||||
@@ -198,7 +202,7 @@ namespace PflegedienstWessel
|
|||||||
new DevExpress.XtraReports.UI.XRBinding("Text", null, "EmployeeDetailList.UeberstundenGesamt", "{0:0.00}")});
|
new DevExpress.XtraReports.UI.XRBinding("Text", null, "EmployeeDetailList.UeberstundenGesamt", "{0:0.00}")});
|
||||||
this.xrTableCell26.Name = "xrTableCell26";
|
this.xrTableCell26.Name = "xrTableCell26";
|
||||||
this.xrTableCell26.Text = "xrTableCell26";
|
this.xrTableCell26.Text = "xrTableCell26";
|
||||||
this.xrTableCell26.Weight = 0.063119927862939573D;
|
this.xrTableCell26.Weight = 0.063119941723163236D;
|
||||||
//
|
//
|
||||||
// DetailReport
|
// DetailReport
|
||||||
//
|
//
|
||||||
@@ -230,7 +234,7 @@ namespace PflegedienstWessel
|
|||||||
this.xrTableHeader.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
|
this.xrTableHeader.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
|
||||||
this.xrTableHeader.Rows.AddRange(new DevExpress.XtraReports.UI.XRTableRow[] {
|
this.xrTableHeader.Rows.AddRange(new DevExpress.XtraReports.UI.XRTableRow[] {
|
||||||
this.xrTableRowHeader});
|
this.xrTableRowHeader});
|
||||||
this.xrTableHeader.SizeF = new System.Drawing.SizeF(680F, 70F);
|
this.xrTableHeader.SizeF = new System.Drawing.SizeF(705F, 70F);
|
||||||
this.xrTableHeader.StylePriority.UseBorders = false;
|
this.xrTableHeader.StylePriority.UseBorders = false;
|
||||||
this.xrTableHeader.StylePriority.UseFont = false;
|
this.xrTableHeader.StylePriority.UseFont = false;
|
||||||
this.xrTableHeader.StylePriority.UsePadding = false;
|
this.xrTableHeader.StylePriority.UsePadding = false;
|
||||||
@@ -247,6 +251,7 @@ namespace PflegedienstWessel
|
|||||||
this.xrTableCell11,
|
this.xrTableCell11,
|
||||||
this.xrTableCell13,
|
this.xrTableCell13,
|
||||||
this.xrTableCell14,
|
this.xrTableCell14,
|
||||||
|
this.xrTableCell1,
|
||||||
this.xrTableCell15});
|
this.xrTableCell15});
|
||||||
this.xrTableRowHeader.Name = "xrTableRowHeader";
|
this.xrTableRowHeader.Name = "xrTableRowHeader";
|
||||||
this.xrTableRowHeader.Weight = 2.8D;
|
this.xrTableRowHeader.Weight = 2.8D;
|
||||||
@@ -259,13 +264,13 @@ namespace PflegedienstWessel
|
|||||||
this.xrTableCell5.StylePriority.UseTextAlignment = false;
|
this.xrTableCell5.StylePriority.UseTextAlignment = false;
|
||||||
this.xrTableCell5.Text = "Name";
|
this.xrTableCell5.Text = "Name";
|
||||||
this.xrTableCell5.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleLeft;
|
this.xrTableCell5.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleLeft;
|
||||||
this.xrTableCell5.Weight = 0.15329125016467182D;
|
this.xrTableCell5.Weight = 0.13074841913487043D;
|
||||||
//
|
//
|
||||||
// xrTableCell4
|
// xrTableCell4
|
||||||
//
|
//
|
||||||
this.xrTableCell4.Name = "xrTableCell4";
|
this.xrTableCell4.Name = "xrTableCell4";
|
||||||
this.xrTableCell4.Text = "Reguläre SOLL Stunden";
|
this.xrTableCell4.Text = "Reguläre SOLL Stunden";
|
||||||
this.xrTableCell4.Weight = 0.081154192324637608D;
|
this.xrTableCell4.Weight = 0.063119927500796508D;
|
||||||
//
|
//
|
||||||
// xrTableCell8
|
// xrTableCell8
|
||||||
//
|
//
|
||||||
@@ -278,7 +283,7 @@ namespace PflegedienstWessel
|
|||||||
this.xrTableCell10.Name = "xrTableCell10";
|
this.xrTableCell10.Name = "xrTableCell10";
|
||||||
this.xrTableCell10.StylePriority.UseBackColor = false;
|
this.xrTableCell10.StylePriority.UseBackColor = false;
|
||||||
this.xrTableCell10.Text = "FLS IST lfd. Monat";
|
this.xrTableCell10.Text = "FLS IST lfd. Monat";
|
||||||
this.xrTableCell10.Weight = 0.063119927721024D;
|
this.xrTableCell10.Weight = 0.063119927721023983D;
|
||||||
//
|
//
|
||||||
// xrTableCell11
|
// xrTableCell11
|
||||||
//
|
//
|
||||||
@@ -292,20 +297,20 @@ namespace PflegedienstWessel
|
|||||||
//
|
//
|
||||||
this.xrTableCell13.Name = "xrTableCell13";
|
this.xrTableCell13.Name = "xrTableCell13";
|
||||||
this.xrTableCell13.Text = "Überstd. neu";
|
this.xrTableCell13.Text = "Überstd. neu";
|
||||||
this.xrTableCell13.Weight = 0.063119928687401447D;
|
this.xrTableCell13.Weight = 0.063119928687401433D;
|
||||||
//
|
//
|
||||||
// xrTableCell14
|
// xrTableCell14
|
||||||
//
|
//
|
||||||
this.xrTableCell14.Name = "xrTableCell14";
|
this.xrTableCell14.Name = "xrTableCell14";
|
||||||
this.xrTableCell14.StylePriority.UseBackColor = false;
|
this.xrTableCell14.StylePriority.UseBackColor = false;
|
||||||
this.xrTableCell14.Text = "Überstd. Vormonat";
|
this.xrTableCell14.Text = "Überstd. Vormonat";
|
||||||
this.xrTableCell14.Weight = 0.063119928275170531D;
|
this.xrTableCell14.Weight = 0.063119928275170517D;
|
||||||
//
|
//
|
||||||
// xrTableCell15
|
// xrTableCell15
|
||||||
//
|
//
|
||||||
this.xrTableCell15.Name = "xrTableCell15";
|
this.xrTableCell15.Name = "xrTableCell15";
|
||||||
this.xrTableCell15.Text = "Überstd. Gesamt";
|
this.xrTableCell15.Text = "Überstd. Gesamt";
|
||||||
this.xrTableCell15.Weight = 0.0631199213956443D;
|
this.xrTableCell15.Weight = 0.063119920699781049D;
|
||||||
//
|
//
|
||||||
// GroupFooter1
|
// GroupFooter1
|
||||||
//
|
//
|
||||||
@@ -324,7 +329,7 @@ namespace PflegedienstWessel
|
|||||||
this.xrTable1.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
|
this.xrTable1.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
|
||||||
this.xrTable1.Rows.AddRange(new DevExpress.XtraReports.UI.XRTableRow[] {
|
this.xrTable1.Rows.AddRange(new DevExpress.XtraReports.UI.XRTableRow[] {
|
||||||
this.xrTableRow1});
|
this.xrTableRow1});
|
||||||
this.xrTable1.SizeF = new System.Drawing.SizeF(680F, 25F);
|
this.xrTable1.SizeF = new System.Drawing.SizeF(705.0001F, 25F);
|
||||||
this.xrTable1.StylePriority.UseBorders = false;
|
this.xrTable1.StylePriority.UseBorders = false;
|
||||||
this.xrTable1.StylePriority.UseFont = false;
|
this.xrTable1.StylePriority.UseFont = false;
|
||||||
this.xrTable1.StylePriority.UsePadding = false;
|
this.xrTable1.StylePriority.UsePadding = false;
|
||||||
@@ -341,6 +346,7 @@ namespace PflegedienstWessel
|
|||||||
this.cellGesamtGesamt,
|
this.cellGesamtGesamt,
|
||||||
this.xrTableCell47,
|
this.xrTableCell47,
|
||||||
this.xrTableCell48,
|
this.xrTableCell48,
|
||||||
|
this.xrTableCell6,
|
||||||
this.xrTableCell51});
|
this.xrTableCell51});
|
||||||
this.xrTableRow1.Name = "xrTableRow1";
|
this.xrTableRow1.Name = "xrTableRow1";
|
||||||
this.xrTableRow1.Weight = 1D;
|
this.xrTableRow1.Weight = 1D;
|
||||||
@@ -354,12 +360,12 @@ namespace PflegedienstWessel
|
|||||||
this.xrTableCell35.StylePriority.UseTextAlignment = false;
|
this.xrTableCell35.StylePriority.UseTextAlignment = false;
|
||||||
this.xrTableCell35.Text = "Gesamt";
|
this.xrTableCell35.Text = "Gesamt";
|
||||||
this.xrTableCell35.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleLeft;
|
this.xrTableCell35.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleLeft;
|
||||||
this.xrTableCell35.Weight = 0.15329126714047708D;
|
this.xrTableCell35.Weight = 0.13074840925444736D;
|
||||||
//
|
//
|
||||||
// xrTableCell37
|
// xrTableCell37
|
||||||
//
|
//
|
||||||
this.xrTableCell37.Name = "xrTableCell37";
|
this.xrTableCell37.Name = "xrTableCell37";
|
||||||
this.xrTableCell37.Weight = 0.081154151689479551D;
|
this.xrTableCell37.Weight = 0.063119921792767889D;
|
||||||
//
|
//
|
||||||
// cellFLSSollGesamt
|
// cellFLSSollGesamt
|
||||||
//
|
//
|
||||||
@@ -367,7 +373,7 @@ namespace PflegedienstWessel
|
|||||||
new DevExpress.XtraReports.UI.XRBinding("Text", null, "FlsSollGesamt", "{0:0.00}")});
|
new DevExpress.XtraReports.UI.XRBinding("Text", null, "FlsSollGesamt", "{0:0.00}")});
|
||||||
this.cellFLSSollGesamt.Name = "cellFLSSollGesamt";
|
this.cellFLSSollGesamt.Name = "cellFLSSollGesamt";
|
||||||
this.cellFLSSollGesamt.Text = "cellFLSSollGesamt";
|
this.cellFLSSollGesamt.Text = "cellFLSSollGesamt";
|
||||||
this.cellFLSSollGesamt.Weight = 0.063119927862939587D;
|
this.cellFLSSollGesamt.Weight = 0.06311998289914654D;
|
||||||
//
|
//
|
||||||
// cellFLSIstGesamt
|
// cellFLSIstGesamt
|
||||||
//
|
//
|
||||||
@@ -375,7 +381,7 @@ namespace PflegedienstWessel
|
|||||||
new DevExpress.XtraReports.UI.XRBinding("Text", null, "FlsIstGesamt", "{0:0.00}")});
|
new DevExpress.XtraReports.UI.XRBinding("Text", null, "FlsIstGesamt", "{0:0.00}")});
|
||||||
this.cellFLSIstGesamt.Name = "cellFLSIstGesamt";
|
this.cellFLSIstGesamt.Name = "cellFLSIstGesamt";
|
||||||
this.cellFLSIstGesamt.Text = "cellFLSIstGesamt";
|
this.cellFLSIstGesamt.Text = "cellFLSIstGesamt";
|
||||||
this.cellFLSIstGesamt.Weight = 0.063119927862939615D;
|
this.cellFLSIstGesamt.Weight = 0.063119982899146568D;
|
||||||
//
|
//
|
||||||
// cellGesamtGesamt
|
// cellGesamtGesamt
|
||||||
//
|
//
|
||||||
@@ -383,22 +389,22 @@ namespace PflegedienstWessel
|
|||||||
new DevExpress.XtraReports.UI.XRBinding("Text", null, "StundenGesamt", "{0:0.00}")});
|
new DevExpress.XtraReports.UI.XRBinding("Text", null, "StundenGesamt", "{0:0.00}")});
|
||||||
this.cellGesamtGesamt.Name = "cellGesamtGesamt";
|
this.cellGesamtGesamt.Name = "cellGesamtGesamt";
|
||||||
this.cellGesamtGesamt.Text = "cellGesamtGesamt";
|
this.cellGesamtGesamt.Text = "cellGesamtGesamt";
|
||||||
this.cellGesamtGesamt.Weight = 0.063119927862939573D;
|
this.cellGesamtGesamt.Weight = 0.063119900344836111D;
|
||||||
//
|
//
|
||||||
// xrTableCell47
|
// xrTableCell47
|
||||||
//
|
//
|
||||||
this.xrTableCell47.Name = "xrTableCell47";
|
this.xrTableCell47.Name = "xrTableCell47";
|
||||||
this.xrTableCell47.Weight = 0.063119927862939587D;
|
this.xrTableCell47.Weight = 0.063119927862939573D;
|
||||||
//
|
//
|
||||||
// xrTableCell48
|
// xrTableCell48
|
||||||
//
|
//
|
||||||
this.xrTableCell48.Name = "xrTableCell48";
|
this.xrTableCell48.Name = "xrTableCell48";
|
||||||
this.xrTableCell48.Weight = 0.063119927862939587D;
|
this.xrTableCell48.Weight = 0.0631199278629396D;
|
||||||
//
|
//
|
||||||
// xrTableCell51
|
// xrTableCell51
|
||||||
//
|
//
|
||||||
this.xrTableCell51.Name = "xrTableCell51";
|
this.xrTableCell51.Name = "xrTableCell51";
|
||||||
this.xrTableCell51.Weight = 0.063119927862939573D;
|
this.xrTableCell51.Weight = 0.063119947085144151D;
|
||||||
//
|
//
|
||||||
// bindingSource1
|
// bindingSource1
|
||||||
//
|
//
|
||||||
@@ -436,9 +442,9 @@ namespace PflegedienstWessel
|
|||||||
//
|
//
|
||||||
this.xrPageInfo2.Font = new System.Drawing.Font("Arial", 8F);
|
this.xrPageInfo2.Font = new System.Drawing.Font("Arial", 8F);
|
||||||
this.xrPageInfo2.Format = "Seite {0} von {1}";
|
this.xrPageInfo2.Format = "Seite {0} von {1}";
|
||||||
this.xrPageInfo2.LocationFloat = new DevExpress.Utils.PointFloat(539.9999F, 25F);
|
this.xrPageInfo2.LocationFloat = new DevExpress.Utils.PointFloat(565F, 25F);
|
||||||
this.xrPageInfo2.Name = "xrPageInfo2";
|
this.xrPageInfo2.Name = "xrPageInfo2";
|
||||||
this.xrPageInfo2.SizeF = new System.Drawing.SizeF(140.0001F, 23F);
|
this.xrPageInfo2.SizeF = new System.Drawing.SizeF(140F, 23F);
|
||||||
this.xrPageInfo2.StyleName = "PageInfo";
|
this.xrPageInfo2.StyleName = "PageInfo";
|
||||||
this.xrPageInfo2.StylePriority.UseFont = false;
|
this.xrPageInfo2.StylePriority.UseFont = false;
|
||||||
this.xrPageInfo2.TextAlignment = DevExpress.XtraPrinting.TextAlignment.TopRight;
|
this.xrPageInfo2.TextAlignment = DevExpress.XtraPrinting.TextAlignment.TopRight;
|
||||||
@@ -446,10 +452,10 @@ namespace PflegedienstWessel
|
|||||||
// xrPageInfo1
|
// xrPageInfo1
|
||||||
//
|
//
|
||||||
this.xrPageInfo1.Font = new System.Drawing.Font("Arial", 8F);
|
this.xrPageInfo1.Font = new System.Drawing.Font("Arial", 8F);
|
||||||
this.xrPageInfo1.LocationFloat = new DevExpress.Utils.PointFloat(8.000003F, 25F);
|
this.xrPageInfo1.LocationFloat = new DevExpress.Utils.PointFloat(8.000081F, 25F);
|
||||||
this.xrPageInfo1.Name = "xrPageInfo1";
|
this.xrPageInfo1.Name = "xrPageInfo1";
|
||||||
this.xrPageInfo1.PageInfo = DevExpress.XtraPrinting.PageInfo.DateTime;
|
this.xrPageInfo1.PageInfo = DevExpress.XtraPrinting.PageInfo.DateTime;
|
||||||
this.xrPageInfo1.SizeF = new System.Drawing.SizeF(251.9999F, 23F);
|
this.xrPageInfo1.SizeF = new System.Drawing.SizeF(206.9999F, 23F);
|
||||||
this.xrPageInfo1.StyleName = "PageInfo";
|
this.xrPageInfo1.StyleName = "PageInfo";
|
||||||
this.xrPageInfo1.StylePriority.UseFont = false;
|
this.xrPageInfo1.StylePriority.UseFont = false;
|
||||||
//
|
//
|
||||||
@@ -510,6 +516,24 @@ namespace PflegedienstWessel
|
|||||||
this.bottomMarginBand1.HeightF = 30F;
|
this.bottomMarginBand1.HeightF = 30F;
|
||||||
this.bottomMarginBand1.Name = "bottomMarginBand1";
|
this.bottomMarginBand1.Name = "bottomMarginBand1";
|
||||||
//
|
//
|
||||||
|
// xrTableCell1
|
||||||
|
//
|
||||||
|
this.xrTableCell1.Multiline = true;
|
||||||
|
this.xrTableCell1.Name = "xrTableCell1";
|
||||||
|
this.xrTableCell1.Text = "MA\r\nStd. Konto";
|
||||||
|
this.xrTableCell1.Weight = 0.063119927579307122D;
|
||||||
|
//
|
||||||
|
// xrTableCell2
|
||||||
|
//
|
||||||
|
this.xrTableCell2.Name = "xrTableCell2";
|
||||||
|
this.xrTableCell2.Text = "xrTableCell2";
|
||||||
|
this.xrTableCell2.Weight = 0.063119934843636288D;
|
||||||
|
//
|
||||||
|
// xrTableCell6
|
||||||
|
//
|
||||||
|
this.xrTableCell6.Name = "xrTableCell6";
|
||||||
|
this.xrTableCell6.Weight = 0.063119926446566554D;
|
||||||
|
//
|
||||||
// Mitarbeiterstundenkonto
|
// Mitarbeiterstundenkonto
|
||||||
//
|
//
|
||||||
this.Bands.AddRange(new DevExpress.XtraReports.UI.Band[] {
|
this.Bands.AddRange(new DevExpress.XtraReports.UI.Band[] {
|
||||||
@@ -522,7 +546,7 @@ namespace PflegedienstWessel
|
|||||||
this.CalculatedFields.AddRange(new DevExpress.XtraReports.UI.CalculatedField[] {
|
this.CalculatedFields.AddRange(new DevExpress.XtraReports.UI.CalculatedField[] {
|
||||||
this.fieldFLS});
|
this.fieldFLS});
|
||||||
this.DataSource = this.bindingSource1;
|
this.DataSource = this.bindingSource1;
|
||||||
this.Margins = new System.Drawing.Printing.Margins(70, 75, 50, 30);
|
this.Margins = new System.Drawing.Printing.Margins(60, 60, 50, 30);
|
||||||
this.PageHeight = 1169;
|
this.PageHeight = 1169;
|
||||||
this.PageWidth = 827;
|
this.PageWidth = 827;
|
||||||
this.PaperKind = System.Drawing.Printing.PaperKind.A4;
|
this.PaperKind = System.Drawing.Printing.PaperKind.A4;
|
||||||
@@ -590,5 +614,8 @@ namespace PflegedienstWessel
|
|||||||
private DevExpress.XtraReports.UI.XRTableCell xrTableCell10;
|
private DevExpress.XtraReports.UI.XRTableCell xrTableCell10;
|
||||||
private DevExpress.XtraReports.UI.XRTableCell cellFLSSollGesamt;
|
private DevExpress.XtraReports.UI.XRTableCell cellFLSSollGesamt;
|
||||||
private DevExpress.XtraReports.UI.XRTableCell cellFLSIstGesamt;
|
private DevExpress.XtraReports.UI.XRTableCell cellFLSIstGesamt;
|
||||||
|
private DevExpress.XtraReports.UI.XRTableCell xrTableCell1;
|
||||||
|
private DevExpress.XtraReports.UI.XRTableCell xrTableCell2;
|
||||||
|
private DevExpress.XtraReports.UI.XRTableCell xrTableCell6;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -82,8 +82,11 @@ namespace PflegedienstWessel
|
|||||||
this.GroupHeader3 = new DevExpress.XtraReports.UI.GroupHeaderBand();
|
this.GroupHeader3 = new DevExpress.XtraReports.UI.GroupHeaderBand();
|
||||||
this.xrLabel1 = new DevExpress.XtraReports.UI.XRLabel();
|
this.xrLabel1 = new DevExpress.XtraReports.UI.XRLabel();
|
||||||
this.GroupFooter2 = new DevExpress.XtraReports.UI.GroupFooterBand();
|
this.GroupFooter2 = new DevExpress.XtraReports.UI.GroupFooterBand();
|
||||||
this.fieldRelationGesamt = new DevExpress.XtraReports.UI.CalculatedField();
|
|
||||||
this.bindingSource1 = new System.Windows.Forms.BindingSource(this.components);
|
this.bindingSource1 = new System.Windows.Forms.BindingSource(this.components);
|
||||||
|
this.fieldRelationGesamt = new DevExpress.XtraReports.UI.CalculatedField();
|
||||||
|
this.xrTableCell1 = new DevExpress.XtraReports.UI.XRTableCell();
|
||||||
|
this.xrTableCell2 = new DevExpress.XtraReports.UI.XRTableCell();
|
||||||
|
this.xrTableCell6 = new DevExpress.XtraReports.UI.XRTableCell();
|
||||||
((System.ComponentModel.ISupportInitialize)(this.xrTableDetail)).BeginInit();
|
((System.ComponentModel.ISupportInitialize)(this.xrTableDetail)).BeginInit();
|
||||||
((System.ComponentModel.ISupportInitialize)(this.xrTableHeader)).BeginInit();
|
((System.ComponentModel.ISupportInitialize)(this.xrTableHeader)).BeginInit();
|
||||||
((System.ComponentModel.ISupportInitialize)(this.xrTable1)).BeginInit();
|
((System.ComponentModel.ISupportInitialize)(this.xrTable1)).BeginInit();
|
||||||
@@ -107,7 +110,7 @@ namespace PflegedienstWessel
|
|||||||
this.xrTableDetail.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
|
this.xrTableDetail.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
|
||||||
this.xrTableDetail.Rows.AddRange(new DevExpress.XtraReports.UI.XRTableRow[] {
|
this.xrTableDetail.Rows.AddRange(new DevExpress.XtraReports.UI.XRTableRow[] {
|
||||||
this.xrTableRowDetail});
|
this.xrTableRowDetail});
|
||||||
this.xrTableDetail.SizeF = new System.Drawing.SizeF(679.9999F, 25F);
|
this.xrTableDetail.SizeF = new System.Drawing.SizeF(705F, 25F);
|
||||||
this.xrTableDetail.StylePriority.UseBorders = false;
|
this.xrTableDetail.StylePriority.UseBorders = false;
|
||||||
this.xrTableDetail.StylePriority.UseFont = false;
|
this.xrTableDetail.StylePriority.UseFont = false;
|
||||||
this.xrTableDetail.StylePriority.UsePadding = false;
|
this.xrTableDetail.StylePriority.UsePadding = false;
|
||||||
@@ -124,6 +127,7 @@ namespace PflegedienstWessel
|
|||||||
this.xrTableCell23,
|
this.xrTableCell23,
|
||||||
this.xrTableCell25,
|
this.xrTableCell25,
|
||||||
this.xrTableCell24,
|
this.xrTableCell24,
|
||||||
|
this.xrTableCell2,
|
||||||
this.xrTableCell26});
|
this.xrTableCell26});
|
||||||
this.xrTableRowDetail.Name = "xrTableRowDetail";
|
this.xrTableRowDetail.Name = "xrTableRowDetail";
|
||||||
this.xrTableRowDetail.Weight = 1D;
|
this.xrTableRowDetail.Weight = 1D;
|
||||||
@@ -138,7 +142,7 @@ namespace PflegedienstWessel
|
|||||||
this.xrTableCell3.StylePriority.UsePadding = false;
|
this.xrTableCell3.StylePriority.UsePadding = false;
|
||||||
this.xrTableCell3.StylePriority.UseTextAlignment = false;
|
this.xrTableCell3.StylePriority.UseTextAlignment = false;
|
||||||
this.xrTableCell3.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleLeft;
|
this.xrTableCell3.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleLeft;
|
||||||
this.xrTableCell3.Weight = 0.15329125338142471D;
|
this.xrTableCell3.Weight = 0.13074844539219646D;
|
||||||
//
|
//
|
||||||
// xrTableCell19
|
// xrTableCell19
|
||||||
//
|
//
|
||||||
@@ -146,7 +150,7 @@ namespace PflegedienstWessel
|
|||||||
new DevExpress.XtraReports.UI.XRBinding("Text", null, "EmployeeInfoList.EmployeeDetails.EmployeeDetail.StundenSollMax", "{0:0.00}")});
|
new DevExpress.XtraReports.UI.XRBinding("Text", null, "EmployeeInfoList.EmployeeDetails.EmployeeDetail.StundenSollMax", "{0:0.00}")});
|
||||||
this.xrTableCell19.Name = "xrTableCell19";
|
this.xrTableCell19.Name = "xrTableCell19";
|
||||||
this.xrTableCell19.Text = "xrTableCell19";
|
this.xrTableCell19.Text = "xrTableCell19";
|
||||||
this.xrTableCell19.Weight = 0.081154151689479551D;
|
this.xrTableCell19.Weight = 0.06311993831982865D;
|
||||||
//
|
//
|
||||||
// xrTableCell16
|
// xrTableCell16
|
||||||
//
|
//
|
||||||
@@ -154,7 +158,7 @@ namespace PflegedienstWessel
|
|||||||
new DevExpress.XtraReports.UI.XRBinding("Text", null, "EmployeeInfoList.EmployeeDetails.EmployeeDetail.FlsSoll", "{0:0.00}")});
|
new DevExpress.XtraReports.UI.XRBinding("Text", null, "EmployeeInfoList.EmployeeDetails.EmployeeDetail.FlsSoll", "{0:0.00}")});
|
||||||
this.xrTableCell16.Name = "xrTableCell16";
|
this.xrTableCell16.Name = "xrTableCell16";
|
||||||
this.xrTableCell16.Text = "xrTableCell16";
|
this.xrTableCell16.Text = "xrTableCell16";
|
||||||
this.xrTableCell16.Weight = 0.063119927862939587D;
|
this.xrTableCell16.Weight = 0.063119941621994455D;
|
||||||
//
|
//
|
||||||
// xrTableCell27
|
// xrTableCell27
|
||||||
//
|
//
|
||||||
@@ -162,7 +166,7 @@ namespace PflegedienstWessel
|
|||||||
new DevExpress.XtraReports.UI.XRBinding("Text", null, "EmployeeInfoList.EmployeeDetails.EmployeeDetail.FlsIst", "{0:0.00}")});
|
new DevExpress.XtraReports.UI.XRBinding("Text", null, "EmployeeInfoList.EmployeeDetails.EmployeeDetail.FlsIst", "{0:0.00}")});
|
||||||
this.xrTableCell27.Name = "xrTableCell27";
|
this.xrTableCell27.Name = "xrTableCell27";
|
||||||
this.xrTableCell27.Text = "xrTableCell27";
|
this.xrTableCell27.Text = "xrTableCell27";
|
||||||
this.xrTableCell27.Weight = 0.063119927862939615D;
|
this.xrTableCell27.Weight = 0.063119748995226238D;
|
||||||
//
|
//
|
||||||
// xrTableCell23
|
// xrTableCell23
|
||||||
//
|
//
|
||||||
@@ -170,7 +174,7 @@ namespace PflegedienstWessel
|
|||||||
new DevExpress.XtraReports.UI.XRBinding("Text", null, "EmployeeInfoList.EmployeeDetails.EmployeeDetail.StundenGesamtIst", "{0:0.00}")});
|
new DevExpress.XtraReports.UI.XRBinding("Text", null, "EmployeeInfoList.EmployeeDetails.EmployeeDetail.StundenGesamtIst", "{0:0.00}")});
|
||||||
this.xrTableCell23.Name = "xrTableCell23";
|
this.xrTableCell23.Name = "xrTableCell23";
|
||||||
this.xrTableCell23.Text = "xrTableCell23";
|
this.xrTableCell23.Text = "xrTableCell23";
|
||||||
this.xrTableCell23.Weight = 0.063119927862939559D;
|
this.xrTableCell23.Weight = 0.063120134248762685D;
|
||||||
//
|
//
|
||||||
// xrTableCell25
|
// xrTableCell25
|
||||||
//
|
//
|
||||||
@@ -178,7 +182,7 @@ namespace PflegedienstWessel
|
|||||||
new DevExpress.XtraReports.UI.XRBinding("Text", null, "EmployeeInfoList.EmployeeDetails.EmployeeDetail.Ueberstunden", "{0:0.00}")});
|
new DevExpress.XtraReports.UI.XRBinding("Text", null, "EmployeeInfoList.EmployeeDetails.EmployeeDetail.Ueberstunden", "{0:0.00}")});
|
||||||
this.xrTableCell25.Name = "xrTableCell25";
|
this.xrTableCell25.Name = "xrTableCell25";
|
||||||
this.xrTableCell25.Text = "xrTableCell25";
|
this.xrTableCell25.Text = "xrTableCell25";
|
||||||
this.xrTableCell25.Weight = 0.063119927862939587D;
|
this.xrTableCell25.Weight = 0.063119941621994469D;
|
||||||
//
|
//
|
||||||
// xrTableCell24
|
// xrTableCell24
|
||||||
//
|
//
|
||||||
@@ -186,7 +190,7 @@ namespace PflegedienstWessel
|
|||||||
new DevExpress.XtraReports.UI.XRBinding("Text", null, "EmployeeInfoList.EmployeeDetails.LaufendeGesamtsumme", "{0:0.00}")});
|
new DevExpress.XtraReports.UI.XRBinding("Text", null, "EmployeeInfoList.EmployeeDetails.LaufendeGesamtsumme", "{0:0.00}")});
|
||||||
this.xrTableCell24.Name = "xrTableCell24";
|
this.xrTableCell24.Name = "xrTableCell24";
|
||||||
this.xrTableCell24.Text = "xrTableCell24";
|
this.xrTableCell24.Text = "xrTableCell24";
|
||||||
this.xrTableCell24.Weight = 0.0631199278629396D;
|
this.xrTableCell24.Weight = 0.063119941621994483D;
|
||||||
//
|
//
|
||||||
// xrTableCell26
|
// xrTableCell26
|
||||||
//
|
//
|
||||||
@@ -207,7 +211,7 @@ namespace PflegedienstWessel
|
|||||||
this.xrTableHeader.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
|
this.xrTableHeader.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
|
||||||
this.xrTableHeader.Rows.AddRange(new DevExpress.XtraReports.UI.XRTableRow[] {
|
this.xrTableHeader.Rows.AddRange(new DevExpress.XtraReports.UI.XRTableRow[] {
|
||||||
this.xrTableRowHeader});
|
this.xrTableRowHeader});
|
||||||
this.xrTableHeader.SizeF = new System.Drawing.SizeF(680F, 70F);
|
this.xrTableHeader.SizeF = new System.Drawing.SizeF(705F, 70F);
|
||||||
this.xrTableHeader.StylePriority.UseBorders = false;
|
this.xrTableHeader.StylePriority.UseBorders = false;
|
||||||
this.xrTableHeader.StylePriority.UseFont = false;
|
this.xrTableHeader.StylePriority.UseFont = false;
|
||||||
this.xrTableHeader.StylePriority.UsePadding = false;
|
this.xrTableHeader.StylePriority.UsePadding = false;
|
||||||
@@ -224,6 +228,7 @@ namespace PflegedienstWessel
|
|||||||
this.xrTableCell11,
|
this.xrTableCell11,
|
||||||
this.xrTableCell13,
|
this.xrTableCell13,
|
||||||
this.xrTableCell14,
|
this.xrTableCell14,
|
||||||
|
this.xrTableCell1,
|
||||||
this.xrTableCell15});
|
this.xrTableCell15});
|
||||||
this.xrTableRowHeader.Name = "xrTableRowHeader";
|
this.xrTableRowHeader.Name = "xrTableRowHeader";
|
||||||
this.xrTableRowHeader.Weight = 2.8D;
|
this.xrTableRowHeader.Weight = 2.8D;
|
||||||
@@ -236,13 +241,13 @@ namespace PflegedienstWessel
|
|||||||
this.xrTableCell5.StylePriority.UseTextAlignment = false;
|
this.xrTableCell5.StylePriority.UseTextAlignment = false;
|
||||||
this.xrTableCell5.Text = "Monat";
|
this.xrTableCell5.Text = "Monat";
|
||||||
this.xrTableCell5.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleLeft;
|
this.xrTableCell5.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleLeft;
|
||||||
this.xrTableCell5.Weight = 0.15329125016467182D;
|
this.xrTableCell5.Weight = 0.1307484193177971D;
|
||||||
//
|
//
|
||||||
// xrTableCell4
|
// xrTableCell4
|
||||||
//
|
//
|
||||||
this.xrTableCell4.Name = "xrTableCell4";
|
this.xrTableCell4.Name = "xrTableCell4";
|
||||||
this.xrTableCell4.Text = "Reguläre SOLL Stunden";
|
this.xrTableCell4.Text = "Reguläre SOLL Stunden";
|
||||||
this.xrTableCell4.Weight = 0.081154192324637608D;
|
this.xrTableCell4.Weight = 0.06311992764713778D;
|
||||||
//
|
//
|
||||||
// xrTableCell8
|
// xrTableCell8
|
||||||
//
|
//
|
||||||
@@ -277,14 +282,14 @@ namespace PflegedienstWessel
|
|||||||
this.xrTableCell14.Name = "xrTableCell14";
|
this.xrTableCell14.Name = "xrTableCell14";
|
||||||
this.xrTableCell14.StylePriority.UseBackColor = false;
|
this.xrTableCell14.StylePriority.UseBackColor = false;
|
||||||
this.xrTableCell14.Text = "Überstd.\r\ndieses Jahr";
|
this.xrTableCell14.Text = "Überstd.\r\ndieses Jahr";
|
||||||
this.xrTableCell14.Weight = 0.063119928275170531D;
|
this.xrTableCell14.Weight = 0.063119928275170545D;
|
||||||
//
|
//
|
||||||
// xrTableCell15
|
// xrTableCell15
|
||||||
//
|
//
|
||||||
this.xrTableCell15.Multiline = true;
|
this.xrTableCell15.Multiline = true;
|
||||||
this.xrTableCell15.Name = "xrTableCell15";
|
this.xrTableCell15.Name = "xrTableCell15";
|
||||||
this.xrTableCell15.Text = "Überstd. Gesamt";
|
this.xrTableCell15.Text = "Überstd. Gesamt";
|
||||||
this.xrTableCell15.Weight = 0.0631199213956443D;
|
this.xrTableCell15.Weight = 0.063119916235999787D;
|
||||||
//
|
//
|
||||||
// xrTable1
|
// xrTable1
|
||||||
//
|
//
|
||||||
@@ -294,7 +299,7 @@ namespace PflegedienstWessel
|
|||||||
this.xrTable1.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
|
this.xrTable1.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
|
||||||
this.xrTable1.Rows.AddRange(new DevExpress.XtraReports.UI.XRTableRow[] {
|
this.xrTable1.Rows.AddRange(new DevExpress.XtraReports.UI.XRTableRow[] {
|
||||||
this.xrTableRow1});
|
this.xrTableRow1});
|
||||||
this.xrTable1.SizeF = new System.Drawing.SizeF(680F, 25F);
|
this.xrTable1.SizeF = new System.Drawing.SizeF(705.0002F, 25F);
|
||||||
this.xrTable1.StylePriority.UseBorders = false;
|
this.xrTable1.StylePriority.UseBorders = false;
|
||||||
this.xrTable1.StylePriority.UseFont = false;
|
this.xrTable1.StylePriority.UseFont = false;
|
||||||
this.xrTable1.StylePriority.UsePadding = false;
|
this.xrTable1.StylePriority.UsePadding = false;
|
||||||
@@ -311,6 +316,7 @@ namespace PflegedienstWessel
|
|||||||
this.cellGesamtGesamt,
|
this.cellGesamtGesamt,
|
||||||
this.xrTableCell47,
|
this.xrTableCell47,
|
||||||
this.xrTableCell48,
|
this.xrTableCell48,
|
||||||
|
this.xrTableCell6,
|
||||||
this.xrTableCell51});
|
this.xrTableCell51});
|
||||||
this.xrTableRow1.Name = "xrTableRow1";
|
this.xrTableRow1.Name = "xrTableRow1";
|
||||||
this.xrTableRow1.Weight = 1D;
|
this.xrTableRow1.Weight = 1D;
|
||||||
@@ -324,12 +330,12 @@ namespace PflegedienstWessel
|
|||||||
this.xrTableCell35.StylePriority.UseTextAlignment = false;
|
this.xrTableCell35.StylePriority.UseTextAlignment = false;
|
||||||
this.xrTableCell35.Text = "Gesamt";
|
this.xrTableCell35.Text = "Gesamt";
|
||||||
this.xrTableCell35.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleLeft;
|
this.xrTableCell35.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleLeft;
|
||||||
this.xrTableCell35.Weight = 0.15329126714047708D;
|
this.xrTableCell35.Weight = 0.13074845043717775D;
|
||||||
//
|
//
|
||||||
// xrTableCell37
|
// xrTableCell37
|
||||||
//
|
//
|
||||||
this.xrTableCell37.Name = "xrTableCell37";
|
this.xrTableCell37.Name = "xrTableCell37";
|
||||||
this.xrTableCell37.Weight = 0.081154151689479551D;
|
this.xrTableCell37.Weight = 0.063119969873909429D;
|
||||||
//
|
//
|
||||||
// cellFLSSollGesamt
|
// cellFLSSollGesamt
|
||||||
//
|
//
|
||||||
@@ -339,7 +345,7 @@ namespace PflegedienstWessel
|
|||||||
xrSummary1.FormatString = "{0:0.00}";
|
xrSummary1.FormatString = "{0:0.00}";
|
||||||
xrSummary1.Running = DevExpress.XtraReports.UI.SummaryRunning.Group;
|
xrSummary1.Running = DevExpress.XtraReports.UI.SummaryRunning.Group;
|
||||||
this.cellFLSSollGesamt.Summary = xrSummary1;
|
this.cellFLSSollGesamt.Summary = xrSummary1;
|
||||||
this.cellFLSSollGesamt.Weight = 0.063119927862939587D;
|
this.cellFLSSollGesamt.Weight = 0.063119955381043175D;
|
||||||
//
|
//
|
||||||
// cellFLSIstGesamt
|
// cellFLSIstGesamt
|
||||||
//
|
//
|
||||||
@@ -349,7 +355,7 @@ namespace PflegedienstWessel
|
|||||||
xrSummary2.FormatString = "{0:0.00}";
|
xrSummary2.FormatString = "{0:0.00}";
|
||||||
xrSummary2.Running = DevExpress.XtraReports.UI.SummaryRunning.Group;
|
xrSummary2.Running = DevExpress.XtraReports.UI.SummaryRunning.Group;
|
||||||
this.cellFLSIstGesamt.Summary = xrSummary2;
|
this.cellFLSIstGesamt.Summary = xrSummary2;
|
||||||
this.cellFLSIstGesamt.Weight = 0.063119927862939615D;
|
this.cellFLSIstGesamt.Weight = 0.063119735236214475D;
|
||||||
//
|
//
|
||||||
// cellGesamtGesamt
|
// cellGesamtGesamt
|
||||||
//
|
//
|
||||||
@@ -369,12 +375,12 @@ namespace PflegedienstWessel
|
|||||||
// xrTableCell48
|
// xrTableCell48
|
||||||
//
|
//
|
||||||
this.xrTableCell48.Name = "xrTableCell48";
|
this.xrTableCell48.Name = "xrTableCell48";
|
||||||
this.xrTableCell48.Weight = 0.063119927862939587D;
|
this.xrTableCell48.Weight = 0.0631202030439755D;
|
||||||
//
|
//
|
||||||
// xrTableCell51
|
// xrTableCell51
|
||||||
//
|
//
|
||||||
this.xrTableCell51.Name = "xrTableCell51";
|
this.xrTableCell51.Name = "xrTableCell51";
|
||||||
this.xrTableCell51.Weight = 0.063119927862939573D;
|
this.xrTableCell51.Weight = 0.063119941621991374D;
|
||||||
//
|
//
|
||||||
// pageFooterBand1
|
// pageFooterBand1
|
||||||
//
|
//
|
||||||
@@ -388,9 +394,9 @@ namespace PflegedienstWessel
|
|||||||
//
|
//
|
||||||
this.xrPageInfo2.Font = new System.Drawing.Font("Arial", 8F);
|
this.xrPageInfo2.Font = new System.Drawing.Font("Arial", 8F);
|
||||||
this.xrPageInfo2.Format = "Seite {0} von {1}";
|
this.xrPageInfo2.Format = "Seite {0} von {1}";
|
||||||
this.xrPageInfo2.LocationFloat = new DevExpress.Utils.PointFloat(539.9999F, 25F);
|
this.xrPageInfo2.LocationFloat = new DevExpress.Utils.PointFloat(565.0002F, 25F);
|
||||||
this.xrPageInfo2.Name = "xrPageInfo2";
|
this.xrPageInfo2.Name = "xrPageInfo2";
|
||||||
this.xrPageInfo2.SizeF = new System.Drawing.SizeF(139.9999F, 23F);
|
this.xrPageInfo2.SizeF = new System.Drawing.SizeF(139.9998F, 23F);
|
||||||
this.xrPageInfo2.StyleName = "PageInfo";
|
this.xrPageInfo2.StyleName = "PageInfo";
|
||||||
this.xrPageInfo2.StylePriority.UseFont = false;
|
this.xrPageInfo2.StylePriority.UseFont = false;
|
||||||
this.xrPageInfo2.TextAlignment = DevExpress.XtraPrinting.TextAlignment.TopRight;
|
this.xrPageInfo2.TextAlignment = DevExpress.XtraPrinting.TextAlignment.TopRight;
|
||||||
@@ -401,7 +407,7 @@ namespace PflegedienstWessel
|
|||||||
this.xrPageInfo1.LocationFloat = new DevExpress.Utils.PointFloat(0F, 25F);
|
this.xrPageInfo1.LocationFloat = new DevExpress.Utils.PointFloat(0F, 25F);
|
||||||
this.xrPageInfo1.Name = "xrPageInfo1";
|
this.xrPageInfo1.Name = "xrPageInfo1";
|
||||||
this.xrPageInfo1.PageInfo = DevExpress.XtraPrinting.PageInfo.DateTime;
|
this.xrPageInfo1.PageInfo = DevExpress.XtraPrinting.PageInfo.DateTime;
|
||||||
this.xrPageInfo1.SizeF = new System.Drawing.SizeF(260.0001F, 23F);
|
this.xrPageInfo1.SizeF = new System.Drawing.SizeF(215F, 23F);
|
||||||
this.xrPageInfo1.StyleName = "PageInfo";
|
this.xrPageInfo1.StyleName = "PageInfo";
|
||||||
this.xrPageInfo1.StylePriority.UseFont = false;
|
this.xrPageInfo1.StylePriority.UseFont = false;
|
||||||
//
|
//
|
||||||
@@ -533,6 +539,10 @@ namespace PflegedienstWessel
|
|||||||
this.GroupFooter2.HeightF = 25F;
|
this.GroupFooter2.HeightF = 25F;
|
||||||
this.GroupFooter2.Name = "GroupFooter2";
|
this.GroupFooter2.Name = "GroupFooter2";
|
||||||
//
|
//
|
||||||
|
// bindingSource1
|
||||||
|
//
|
||||||
|
this.bindingSource1.DataSource = typeof(BeWo.Report.ReportObjects.MitarbeiterstundenkontoMonateRO);
|
||||||
|
//
|
||||||
// fieldRelationGesamt
|
// fieldRelationGesamt
|
||||||
//
|
//
|
||||||
this.fieldRelationGesamt.DataMember = "EmployeeInfoList.EmployeeDetails";
|
this.fieldRelationGesamt.DataMember = "EmployeeInfoList.EmployeeDetails";
|
||||||
@@ -540,9 +550,24 @@ namespace PflegedienstWessel
|
|||||||
this.fieldRelationGesamt.FieldType = DevExpress.XtraReports.UI.FieldType.Decimal;
|
this.fieldRelationGesamt.FieldType = DevExpress.XtraReports.UI.FieldType.Decimal;
|
||||||
this.fieldRelationGesamt.Name = "fieldRelationGesamt";
|
this.fieldRelationGesamt.Name = "fieldRelationGesamt";
|
||||||
//
|
//
|
||||||
// bindingSource1
|
// xrTableCell1
|
||||||
//
|
//
|
||||||
this.bindingSource1.DataSource = typeof(BeWo.Report.ReportObjects.MitarbeiterstundenkontoMonateRO);
|
this.xrTableCell1.Multiline = true;
|
||||||
|
this.xrTableCell1.Name = "xrTableCell1";
|
||||||
|
this.xrTableCell1.Text = "MA\r\nStd. Konto";
|
||||||
|
this.xrTableCell1.Weight = 0.063119926555288808D;
|
||||||
|
//
|
||||||
|
// xrTableCell2
|
||||||
|
//
|
||||||
|
this.xrTableCell2.DataBindings.AddRange(new DevExpress.XtraReports.UI.XRBinding[] {
|
||||||
|
new DevExpress.XtraReports.UI.XRBinding("Text", null, "EmployeeInfoList.EmployeeDetails.EmployeeDetail.UeberstundenAusbezahlt", "{0:0.00}")});
|
||||||
|
this.xrTableCell2.Name = "xrTableCell2";
|
||||||
|
this.xrTableCell2.Weight = 0.063119941621994441D;
|
||||||
|
//
|
||||||
|
// xrTableCell6
|
||||||
|
//
|
||||||
|
this.xrTableCell6.Name = "xrTableCell6";
|
||||||
|
this.xrTableCell6.Weight = 0.063119872826732384D;
|
||||||
//
|
//
|
||||||
// MitarbeiterstundenkontoJahr
|
// MitarbeiterstundenkontoJahr
|
||||||
//
|
//
|
||||||
@@ -557,7 +582,7 @@ namespace PflegedienstWessel
|
|||||||
this.fieldRelationGesamt});
|
this.fieldRelationGesamt});
|
||||||
this.DataSource = this.bindingSource1;
|
this.DataSource = this.bindingSource1;
|
||||||
this.DisplayName = "Mitarbeiterstundenkonto";
|
this.DisplayName = "Mitarbeiterstundenkonto";
|
||||||
this.Margins = new System.Drawing.Printing.Margins(70, 75, 50, 30);
|
this.Margins = new System.Drawing.Printing.Margins(60, 60, 50, 30);
|
||||||
this.PageHeight = 1169;
|
this.PageHeight = 1169;
|
||||||
this.PageWidth = 827;
|
this.PageWidth = 827;
|
||||||
this.PaperKind = System.Drawing.Printing.PaperKind.A4;
|
this.PaperKind = System.Drawing.Printing.PaperKind.A4;
|
||||||
@@ -628,5 +653,8 @@ namespace PflegedienstWessel
|
|||||||
private DevExpress.XtraReports.UI.XRLabel xrLabel1;
|
private DevExpress.XtraReports.UI.XRLabel xrLabel1;
|
||||||
private DevExpress.XtraReports.UI.GroupFooterBand GroupFooter2;
|
private DevExpress.XtraReports.UI.GroupFooterBand GroupFooter2;
|
||||||
private DevExpress.XtraReports.UI.CalculatedField fieldRelationGesamt;
|
private DevExpress.XtraReports.UI.CalculatedField fieldRelationGesamt;
|
||||||
|
private DevExpress.XtraReports.UI.XRTableCell xrTableCell2;
|
||||||
|
private DevExpress.XtraReports.UI.XRTableCell xrTableCell1;
|
||||||
|
private DevExpress.XtraReports.UI.XRTableCell xrTableCell6;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -160,7 +160,7 @@ namespace SozialeDiensteNiederrhein.Alt
|
|||||||
// xrTable1
|
// xrTable1
|
||||||
//
|
//
|
||||||
this.xrTable1.BorderColor = System.Drawing.SystemColors.ControlLight;
|
this.xrTable1.BorderColor = System.Drawing.SystemColors.ControlLight;
|
||||||
this.xrTable1.LocationFloat = new DevExpress.Utils.PointFloat(0F, 483.0416F);
|
this.xrTable1.LocationFloat = new DevExpress.Utils.PointFloat(0F, 459.7083F);
|
||||||
this.xrTable1.Name = "xrTable1";
|
this.xrTable1.Name = "xrTable1";
|
||||||
this.xrTable1.Rows.AddRange(new DevExpress.XtraReports.UI.XRTableRow[] {
|
this.xrTable1.Rows.AddRange(new DevExpress.XtraReports.UI.XRTableRow[] {
|
||||||
this.xrTableRow9,
|
this.xrTableRow9,
|
||||||
@@ -298,7 +298,7 @@ namespace SozialeDiensteNiederrhein.Alt
|
|||||||
this.lblAnrede.LocationFloat = new DevExpress.Utils.PointFloat(0F, 338.1667F);
|
this.lblAnrede.LocationFloat = new DevExpress.Utils.PointFloat(0F, 338.1667F);
|
||||||
this.lblAnrede.Name = "lblAnrede";
|
this.lblAnrede.Name = "lblAnrede";
|
||||||
this.lblAnrede.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
|
this.lblAnrede.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
|
||||||
this.lblAnrede.SizeF = new System.Drawing.SizeF(317F, 17F);
|
this.lblAnrede.SizeF = new System.Drawing.SizeF(548.6666F, 16.99997F);
|
||||||
this.lblAnrede.StylePriority.UseFont = false;
|
this.lblAnrede.StylePriority.UseFont = false;
|
||||||
this.lblAnrede.Text = "Sehr geehrte Damen und Herren,";
|
this.lblAnrede.Text = "Sehr geehrte Damen und Herren,";
|
||||||
//
|
//
|
||||||
@@ -407,7 +407,7 @@ namespace SozialeDiensteNiederrhein.Alt
|
|||||||
this.xrLabel12,
|
this.xrLabel12,
|
||||||
this.lblNotice});
|
this.lblNotice});
|
||||||
this.ReportFooter.Font = new System.Drawing.Font("Verdana", 10F);
|
this.ReportFooter.Font = new System.Drawing.Font("Verdana", 10F);
|
||||||
this.ReportFooter.HeightF = 283.7083F;
|
this.ReportFooter.HeightF = 255.3751F;
|
||||||
this.ReportFooter.KeepTogether = true;
|
this.ReportFooter.KeepTogether = true;
|
||||||
this.ReportFooter.Name = "ReportFooter";
|
this.ReportFooter.Name = "ReportFooter";
|
||||||
this.ReportFooter.StylePriority.UseFont = false;
|
this.ReportFooter.StylePriority.UseFont = false;
|
||||||
@@ -415,7 +415,7 @@ namespace SozialeDiensteNiederrhein.Alt
|
|||||||
// xrLabel14
|
// xrLabel14
|
||||||
//
|
//
|
||||||
this.xrLabel14.Font = new System.Drawing.Font("Calibri", 8F);
|
this.xrLabel14.Font = new System.Drawing.Font("Calibri", 8F);
|
||||||
this.xrLabel14.LocationFloat = new DevExpress.Utils.PointFloat(0F, 266.7083F);
|
this.xrLabel14.LocationFloat = new DevExpress.Utils.PointFloat(0F, 238.375F);
|
||||||
this.xrLabel14.Name = "xrLabel14";
|
this.xrLabel14.Name = "xrLabel14";
|
||||||
this.xrLabel14.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
|
this.xrLabel14.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
|
||||||
this.xrLabel14.SizeF = new System.Drawing.SizeF(225F, 17.00002F);
|
this.xrLabel14.SizeF = new System.Drawing.SizeF(225F, 17.00002F);
|
||||||
@@ -599,7 +599,7 @@ namespace SozialeDiensteNiederrhein.Alt
|
|||||||
//
|
//
|
||||||
this.xrLabel12.Borders = DevExpress.XtraPrinting.BorderSide.None;
|
this.xrLabel12.Borders = DevExpress.XtraPrinting.BorderSide.None;
|
||||||
this.xrLabel12.Font = new System.Drawing.Font("Calibri", 11F);
|
this.xrLabel12.Font = new System.Drawing.Font("Calibri", 11F);
|
||||||
this.xrLabel12.LocationFloat = new DevExpress.Utils.PointFloat(0F, 249.7083F);
|
this.xrLabel12.LocationFloat = new DevExpress.Utils.PointFloat(0F, 221.3749F);
|
||||||
this.xrLabel12.Name = "xrLabel12";
|
this.xrLabel12.Name = "xrLabel12";
|
||||||
this.xrLabel12.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
|
this.xrLabel12.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
|
||||||
this.xrLabel12.SizeF = new System.Drawing.SizeF(225F, 17F);
|
this.xrLabel12.SizeF = new System.Drawing.SizeF(225F, 17F);
|
||||||
@@ -644,14 +644,14 @@ namespace SozialeDiensteNiederrhein.Alt
|
|||||||
this.xrTable1,
|
this.xrTable1,
|
||||||
this.xrLabel8});
|
this.xrLabel8});
|
||||||
this.GroupHeader1.Font = new System.Drawing.Font("Verdana", 10F);
|
this.GroupHeader1.Font = new System.Drawing.Font("Verdana", 10F);
|
||||||
this.GroupHeader1.HeightF = 551.0416F;
|
this.GroupHeader1.HeightF = 527.7083F;
|
||||||
this.GroupHeader1.Name = "GroupHeader1";
|
this.GroupHeader1.Name = "GroupHeader1";
|
||||||
this.GroupHeader1.StylePriority.UseFont = false;
|
this.GroupHeader1.StylePriority.UseFont = false;
|
||||||
//
|
//
|
||||||
// xrRichText1
|
// xrRichText1
|
||||||
//
|
//
|
||||||
this.xrRichText1.Font = new System.Drawing.Font("Calibri", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
|
this.xrRichText1.Font = new System.Drawing.Font("Calibri", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
|
||||||
this.xrRichText1.LocationFloat = new DevExpress.Utils.PointFloat(6.357829E-05F, 399.9999F);
|
this.xrRichText1.LocationFloat = new DevExpress.Utils.PointFloat(0F, 376.6666F);
|
||||||
this.xrRichText1.Name = "xrRichText1";
|
this.xrRichText1.Name = "xrRichText1";
|
||||||
this.xrRichText1.SerializableRtfString = resources.GetString("xrRichText1.SerializableRtfString");
|
this.xrRichText1.SerializableRtfString = resources.GetString("xrRichText1.SerializableRtfString");
|
||||||
this.xrRichText1.SizeF = new System.Drawing.SizeF(520.1251F, 61.79166F);
|
this.xrRichText1.SizeF = new System.Drawing.SizeF(520.1251F, 61.79166F);
|
||||||
|
|||||||
@@ -89,7 +89,7 @@ namespace SozialeDiensteNiederrhein.Alt
|
|||||||
}
|
}
|
||||||
|
|
||||||
var cb2sc = DAOFactory.GenericDAO.LoadByID<CostBearer2SupportConcept>(pRO.CostBearer2SupportConceptOid);
|
var cb2sc = DAOFactory.GenericDAO.LoadByID<CostBearer2SupportConcept>(pRO.CostBearer2SupportConceptOid);
|
||||||
if (!String.IsNullOrEmpty(pRO.RecipientContactPerson) && cb2sc.CostBearerContactPerson.Sex.HasValue)
|
if (cb2sc.CostBearerContactPerson != null && cb2sc.CostBearerContactPerson.Sex.HasValue)
|
||||||
{
|
{
|
||||||
if (cb2sc.CostBearerContactPerson.Sex.Value == Sex.Female)
|
if (cb2sc.CostBearerContactPerson.Sex.Value == Sex.Female)
|
||||||
lblAnrede.Text = "Sehr geehrte Frau " + cb2sc.CostBearerContactPerson.LastName.Trim() + ",";
|
lblAnrede.Text = "Sehr geehrte Frau " + cb2sc.CostBearerContactPerson.LastName.Trim() + ",";
|
||||||
|
|||||||
@@ -70,6 +70,7 @@ namespace SozialeDiensteNiederrhein
|
|||||||
this.topMarginBand1 = new DevExpress.XtraReports.UI.TopMarginBand();
|
this.topMarginBand1 = new DevExpress.XtraReports.UI.TopMarginBand();
|
||||||
this.bottomMarginBand1 = new DevExpress.XtraReports.UI.BottomMarginBand();
|
this.bottomMarginBand1 = new DevExpress.XtraReports.UI.BottomMarginBand();
|
||||||
this.GroupHeader1 = new DevExpress.XtraReports.UI.GroupHeaderBand();
|
this.GroupHeader1 = new DevExpress.XtraReports.UI.GroupHeaderBand();
|
||||||
|
this.xrRichText1 = new DevExpress.XtraReports.UI.XRRichText();
|
||||||
this.xrLabel7 = new DevExpress.XtraReports.UI.XRLabel();
|
this.xrLabel7 = new DevExpress.XtraReports.UI.XRLabel();
|
||||||
this.xrRichText5 = new DevExpress.XtraReports.UI.XRRichText();
|
this.xrRichText5 = new DevExpress.XtraReports.UI.XRRichText();
|
||||||
this.fieldApprovedFLSWithFactor = new DevExpress.XtraReports.UI.CalculatedField();
|
this.fieldApprovedFLSWithFactor = new DevExpress.XtraReports.UI.CalculatedField();
|
||||||
@@ -79,6 +80,7 @@ namespace SozialeDiensteNiederrhein
|
|||||||
this.xrTableRow33 = new DevExpress.XtraReports.UI.XRTableRow();
|
this.xrTableRow33 = new DevExpress.XtraReports.UI.XRTableRow();
|
||||||
this.xrTableCell52 = new DevExpress.XtraReports.UI.XRTableCell();
|
this.xrTableCell52 = new DevExpress.XtraReports.UI.XRTableCell();
|
||||||
this.xrTableCell53 = new DevExpress.XtraReports.UI.XRTableCell();
|
this.xrTableCell53 = new DevExpress.XtraReports.UI.XRTableCell();
|
||||||
|
this.bindingSource1 = new System.Windows.Forms.BindingSource(this.components);
|
||||||
this.GroupFooter1 = new DevExpress.XtraReports.UI.GroupFooterBand();
|
this.GroupFooter1 = new DevExpress.XtraReports.UI.GroupFooterBand();
|
||||||
this.xrTable5 = new DevExpress.XtraReports.UI.XRTable();
|
this.xrTable5 = new DevExpress.XtraReports.UI.XRTable();
|
||||||
this.xrTableRow30 = new DevExpress.XtraReports.UI.XRTableRow();
|
this.xrTableRow30 = new DevExpress.XtraReports.UI.XRTableRow();
|
||||||
@@ -99,15 +101,13 @@ namespace SozialeDiensteNiederrhein
|
|||||||
this.xrTableRow37 = new DevExpress.XtraReports.UI.XRTableRow();
|
this.xrTableRow37 = new DevExpress.XtraReports.UI.XRTableRow();
|
||||||
this.xrTableCell59 = new DevExpress.XtraReports.UI.XRTableCell();
|
this.xrTableCell59 = new DevExpress.XtraReports.UI.XRTableCell();
|
||||||
this.xrTableCell60 = new DevExpress.XtraReports.UI.XRTableCell();
|
this.xrTableCell60 = new DevExpress.XtraReports.UI.XRTableCell();
|
||||||
this.xrRichText1 = new DevExpress.XtraReports.UI.XRRichText();
|
|
||||||
this.bindingSource1 = new System.Windows.Forms.BindingSource(this.components);
|
|
||||||
((System.ComponentModel.ISupportInitialize)(this.xrTable1)).BeginInit();
|
((System.ComponentModel.ISupportInitialize)(this.xrTable1)).BeginInit();
|
||||||
((System.ComponentModel.ISupportInitialize)(this.xrTable3)).BeginInit();
|
((System.ComponentModel.ISupportInitialize)(this.xrTable3)).BeginInit();
|
||||||
|
((System.ComponentModel.ISupportInitialize)(this.xrRichText1)).BeginInit();
|
||||||
((System.ComponentModel.ISupportInitialize)(this.xrRichText5)).BeginInit();
|
((System.ComponentModel.ISupportInitialize)(this.xrRichText5)).BeginInit();
|
||||||
((System.ComponentModel.ISupportInitialize)(this.xrTable4)).BeginInit();
|
((System.ComponentModel.ISupportInitialize)(this.xrTable4)).BeginInit();
|
||||||
((System.ComponentModel.ISupportInitialize)(this.xrTable5)).BeginInit();
|
|
||||||
((System.ComponentModel.ISupportInitialize)(this.xrRichText1)).BeginInit();
|
|
||||||
((System.ComponentModel.ISupportInitialize)(this.bindingSource1)).BeginInit();
|
((System.ComponentModel.ISupportInitialize)(this.bindingSource1)).BeginInit();
|
||||||
|
((System.ComponentModel.ISupportInitialize)(this.xrTable5)).BeginInit();
|
||||||
((System.ComponentModel.ISupportInitialize)(this)).BeginInit();
|
((System.ComponentModel.ISupportInitialize)(this)).BeginInit();
|
||||||
//
|
//
|
||||||
// Detail
|
// Detail
|
||||||
@@ -154,7 +154,7 @@ namespace SozialeDiensteNiederrhein
|
|||||||
// xrTable1
|
// xrTable1
|
||||||
//
|
//
|
||||||
this.xrTable1.BorderColor = System.Drawing.SystemColors.ControlLight;
|
this.xrTable1.BorderColor = System.Drawing.SystemColors.ControlLight;
|
||||||
this.xrTable1.LocationFloat = new DevExpress.Utils.PointFloat(0F, 482F);
|
this.xrTable1.LocationFloat = new DevExpress.Utils.PointFloat(0F, 443.6667F);
|
||||||
this.xrTable1.Name = "xrTable1";
|
this.xrTable1.Name = "xrTable1";
|
||||||
this.xrTable1.Rows.AddRange(new DevExpress.XtraReports.UI.XRTableRow[] {
|
this.xrTable1.Rows.AddRange(new DevExpress.XtraReports.UI.XRTableRow[] {
|
||||||
this.rowErbrachteLeistung});
|
this.rowErbrachteLeistung});
|
||||||
@@ -195,7 +195,7 @@ namespace SozialeDiensteNiederrhein
|
|||||||
this.lblAnrede.LocationFloat = new DevExpress.Utils.PointFloat(0F, 331.9167F);
|
this.lblAnrede.LocationFloat = new DevExpress.Utils.PointFloat(0F, 331.9167F);
|
||||||
this.lblAnrede.Name = "lblAnrede";
|
this.lblAnrede.Name = "lblAnrede";
|
||||||
this.lblAnrede.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
|
this.lblAnrede.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
|
||||||
this.lblAnrede.SizeF = new System.Drawing.SizeF(317F, 17F);
|
this.lblAnrede.SizeF = new System.Drawing.SizeF(569.4999F, 16.99997F);
|
||||||
this.lblAnrede.StylePriority.UseFont = false;
|
this.lblAnrede.StylePriority.UseFont = false;
|
||||||
this.lblAnrede.Text = "Sehr geehrte Damen und Herren,";
|
this.lblAnrede.Text = "Sehr geehrte Damen und Herren,";
|
||||||
//
|
//
|
||||||
@@ -290,7 +290,7 @@ namespace SozialeDiensteNiederrhein
|
|||||||
this.xrTable3,
|
this.xrTable3,
|
||||||
this.lblNotice});
|
this.lblNotice});
|
||||||
this.ReportFooter.Font = new System.Drawing.Font("Verdana", 10F);
|
this.ReportFooter.Font = new System.Drawing.Font("Verdana", 10F);
|
||||||
this.ReportFooter.HeightF = 276.7083F;
|
this.ReportFooter.HeightF = 248.375F;
|
||||||
this.ReportFooter.KeepTogether = true;
|
this.ReportFooter.KeepTogether = true;
|
||||||
this.ReportFooter.Name = "ReportFooter";
|
this.ReportFooter.Name = "ReportFooter";
|
||||||
this.ReportFooter.StylePriority.UseFont = false;
|
this.ReportFooter.StylePriority.UseFont = false;
|
||||||
@@ -368,7 +368,7 @@ namespace SozialeDiensteNiederrhein
|
|||||||
//
|
//
|
||||||
this.xrLabel4.Borders = DevExpress.XtraPrinting.BorderSide.None;
|
this.xrLabel4.Borders = DevExpress.XtraPrinting.BorderSide.None;
|
||||||
this.xrLabel4.Font = new System.Drawing.Font("Calibri", 11F);
|
this.xrLabel4.Font = new System.Drawing.Font("Calibri", 11F);
|
||||||
this.xrLabel4.LocationFloat = new DevExpress.Utils.PointFloat(0F, 238.5417F);
|
this.xrLabel4.LocationFloat = new DevExpress.Utils.PointFloat(0F, 214.375F);
|
||||||
this.xrLabel4.Name = "xrLabel4";
|
this.xrLabel4.Name = "xrLabel4";
|
||||||
this.xrLabel4.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
|
this.xrLabel4.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
|
||||||
this.xrLabel4.SizeF = new System.Drawing.SizeF(225F, 17F);
|
this.xrLabel4.SizeF = new System.Drawing.SizeF(225F, 17F);
|
||||||
@@ -379,7 +379,7 @@ namespace SozialeDiensteNiederrhein
|
|||||||
// xrLabel14
|
// xrLabel14
|
||||||
//
|
//
|
||||||
this.xrLabel14.Font = new System.Drawing.Font("Calibri", 8F);
|
this.xrLabel14.Font = new System.Drawing.Font("Calibri", 8F);
|
||||||
this.xrLabel14.LocationFloat = new DevExpress.Utils.PointFloat(0F, 255.5417F);
|
this.xrLabel14.LocationFloat = new DevExpress.Utils.PointFloat(0F, 231.375F);
|
||||||
this.xrLabel14.Name = "xrLabel14";
|
this.xrLabel14.Name = "xrLabel14";
|
||||||
this.xrLabel14.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
|
this.xrLabel14.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
|
||||||
this.xrLabel14.SizeF = new System.Drawing.SizeF(225F, 17.00002F);
|
this.xrLabel14.SizeF = new System.Drawing.SizeF(225F, 17.00002F);
|
||||||
@@ -510,7 +510,7 @@ namespace SozialeDiensteNiederrhein
|
|||||||
//
|
//
|
||||||
// bottomMarginBand1
|
// bottomMarginBand1
|
||||||
//
|
//
|
||||||
this.bottomMarginBand1.HeightF = 100F;
|
this.bottomMarginBand1.HeightF = 60F;
|
||||||
this.bottomMarginBand1.Name = "bottomMarginBand1";
|
this.bottomMarginBand1.Name = "bottomMarginBand1";
|
||||||
//
|
//
|
||||||
// GroupHeader1
|
// GroupHeader1
|
||||||
@@ -529,10 +529,20 @@ namespace SozialeDiensteNiederrhein
|
|||||||
this.xrTable1,
|
this.xrTable1,
|
||||||
this.xrLabel8});
|
this.xrLabel8});
|
||||||
this.GroupHeader1.Font = new System.Drawing.Font("Verdana", 10F);
|
this.GroupHeader1.Font = new System.Drawing.Font("Verdana", 10F);
|
||||||
this.GroupHeader1.HeightF = 499F;
|
this.GroupHeader1.HeightF = 460.6667F;
|
||||||
this.GroupHeader1.Name = "GroupHeader1";
|
this.GroupHeader1.Name = "GroupHeader1";
|
||||||
this.GroupHeader1.StylePriority.UseFont = false;
|
this.GroupHeader1.StylePriority.UseFont = false;
|
||||||
//
|
//
|
||||||
|
// xrRichText1
|
||||||
|
//
|
||||||
|
this.xrRichText1.Font = new System.Drawing.Font("Calibri", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
|
||||||
|
this.xrRichText1.LocationFloat = new DevExpress.Utils.PointFloat(0F, 371.375F);
|
||||||
|
this.xrRichText1.Name = "xrRichText1";
|
||||||
|
this.xrRichText1.SerializableRtfString = resources.GetString("xrRichText1.SerializableRtfString");
|
||||||
|
this.xrRichText1.SizeF = new System.Drawing.SizeF(509.0417F, 61.79169F);
|
||||||
|
this.xrRichText1.StylePriority.UseBackColor = false;
|
||||||
|
this.xrRichText1.StylePriority.UseFont = false;
|
||||||
|
//
|
||||||
// xrLabel7
|
// xrLabel7
|
||||||
//
|
//
|
||||||
this.xrLabel7.BackColor = System.Drawing.Color.Transparent;
|
this.xrLabel7.BackColor = System.Drawing.Color.Transparent;
|
||||||
@@ -633,6 +643,10 @@ namespace SozialeDiensteNiederrhein
|
|||||||
this.xrTableCell53.TextAlignment = DevExpress.XtraPrinting.TextAlignment.TopRight;
|
this.xrTableCell53.TextAlignment = DevExpress.XtraPrinting.TextAlignment.TopRight;
|
||||||
this.xrTableCell53.Weight = 0.25702143742487976D;
|
this.xrTableCell53.Weight = 0.25702143742487976D;
|
||||||
//
|
//
|
||||||
|
// bindingSource1
|
||||||
|
//
|
||||||
|
this.bindingSource1.DataSource = typeof(BeWo.Report.ReportObjects.Settlement2RO);
|
||||||
|
//
|
||||||
// GroupFooter1
|
// GroupFooter1
|
||||||
//
|
//
|
||||||
this.GroupFooter1.Controls.AddRange(new DevExpress.XtraReports.UI.XRControl[] {
|
this.GroupFooter1.Controls.AddRange(new DevExpress.XtraReports.UI.XRControl[] {
|
||||||
@@ -860,20 +874,6 @@ namespace SozialeDiensteNiederrhein
|
|||||||
this.xrTableCell60.TextAlignment = DevExpress.XtraPrinting.TextAlignment.TopRight;
|
this.xrTableCell60.TextAlignment = DevExpress.XtraPrinting.TextAlignment.TopRight;
|
||||||
this.xrTableCell60.Weight = 0.25702143742487982D;
|
this.xrTableCell60.Weight = 0.25702143742487982D;
|
||||||
//
|
//
|
||||||
// xrRichText1
|
|
||||||
//
|
|
||||||
this.xrRichText1.Font = new System.Drawing.Font("Calibri", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
|
|
||||||
this.xrRichText1.LocationFloat = new DevExpress.Utils.PointFloat(0F, 409.7083F);
|
|
||||||
this.xrRichText1.Name = "xrRichText1";
|
|
||||||
this.xrRichText1.SerializableRtfString = resources.GetString("xrRichText1.SerializableRtfString");
|
|
||||||
this.xrRichText1.SizeF = new System.Drawing.SizeF(509.0417F, 61.79169F);
|
|
||||||
this.xrRichText1.StylePriority.UseBackColor = false;
|
|
||||||
this.xrRichText1.StylePriority.UseFont = false;
|
|
||||||
//
|
|
||||||
// bindingSource1
|
|
||||||
//
|
|
||||||
this.bindingSource1.DataSource = typeof(BeWo.Report.ReportObjects.Settlement2RO);
|
|
||||||
//
|
|
||||||
// Spitzabrechnung
|
// Spitzabrechnung
|
||||||
//
|
//
|
||||||
this.Bands.AddRange(new DevExpress.XtraReports.UI.Band[] {
|
this.Bands.AddRange(new DevExpress.XtraReports.UI.Band[] {
|
||||||
@@ -891,7 +891,7 @@ namespace SozialeDiensteNiederrhein
|
|||||||
this.ExportOptions.PrintPreview.DefaultFileName = "Spitzabrechnung";
|
this.ExportOptions.PrintPreview.DefaultFileName = "Spitzabrechnung";
|
||||||
this.FormattingRuleSheet.AddRange(new DevExpress.XtraReports.UI.FormattingRule[] {
|
this.FormattingRuleSheet.AddRange(new DevExpress.XtraReports.UI.FormattingRule[] {
|
||||||
this.ruleRateFactorNull});
|
this.ruleRateFactorNull});
|
||||||
this.Margins = new System.Drawing.Printing.Margins(75, 74, 100, 100);
|
this.Margins = new System.Drawing.Printing.Margins(75, 74, 100, 60);
|
||||||
this.PageHeight = 1169;
|
this.PageHeight = 1169;
|
||||||
this.PageWidth = 827;
|
this.PageWidth = 827;
|
||||||
this.PaperKind = System.Drawing.Printing.PaperKind.A4;
|
this.PaperKind = System.Drawing.Printing.PaperKind.A4;
|
||||||
@@ -900,11 +900,11 @@ namespace SozialeDiensteNiederrhein
|
|||||||
this.Watermark.PageRange = "1";
|
this.Watermark.PageRange = "1";
|
||||||
((System.ComponentModel.ISupportInitialize)(this.xrTable1)).EndInit();
|
((System.ComponentModel.ISupportInitialize)(this.xrTable1)).EndInit();
|
||||||
((System.ComponentModel.ISupportInitialize)(this.xrTable3)).EndInit();
|
((System.ComponentModel.ISupportInitialize)(this.xrTable3)).EndInit();
|
||||||
|
((System.ComponentModel.ISupportInitialize)(this.xrRichText1)).EndInit();
|
||||||
((System.ComponentModel.ISupportInitialize)(this.xrRichText5)).EndInit();
|
((System.ComponentModel.ISupportInitialize)(this.xrRichText5)).EndInit();
|
||||||
((System.ComponentModel.ISupportInitialize)(this.xrTable4)).EndInit();
|
((System.ComponentModel.ISupportInitialize)(this.xrTable4)).EndInit();
|
||||||
((System.ComponentModel.ISupportInitialize)(this.xrTable5)).EndInit();
|
|
||||||
((System.ComponentModel.ISupportInitialize)(this.xrRichText1)).EndInit();
|
|
||||||
((System.ComponentModel.ISupportInitialize)(this.bindingSource1)).EndInit();
|
((System.ComponentModel.ISupportInitialize)(this.bindingSource1)).EndInit();
|
||||||
|
((System.ComponentModel.ISupportInitialize)(this.xrTable5)).EndInit();
|
||||||
((System.ComponentModel.ISupportInitialize)(this)).EndInit();
|
((System.ComponentModel.ISupportInitialize)(this)).EndInit();
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -133,7 +133,7 @@ namespace BeWo.Service.Plugins
|
|||||||
//t = "3227700467"; // Psychosozialer Trägerverein
|
//t = "3227700467"; // Psychosozialer Trägerverein
|
||||||
//t = "4378753169"; // Die Wohnhelfer Köln
|
//t = "4378753169"; // Die Wohnhelfer Köln
|
||||||
//t = "2214258555"; // Betreuungsbüro Baak
|
//t = "2214258555"; // Betreuungsbüro Baak
|
||||||
//t = "4525013596"; // Hph Bersenbrück Freizeit und Reisen
|
t = "4525013596"; // Hph Bersenbrück Freizeit und Reisen
|
||||||
//t = "1609455614"; // Hph Bersenbrück Aph
|
//t = "1609455614"; // Hph Bersenbrück Aph
|
||||||
//t = "7852961459"; // B&B Betreutes Wohnen
|
//t = "7852961459"; // B&B Betreutes Wohnen
|
||||||
//t = "8719930557"; // Lebenshilfe Rhein-Sieg
|
//t = "8719930557"; // Lebenshilfe Rhein-Sieg
|
||||||
@@ -298,7 +298,7 @@ namespace BeWo.Service.Plugins
|
|||||||
//t = "3640152169"; // Claudia Charisius
|
//t = "3640152169"; // Claudia Charisius
|
||||||
//t = "3884496709"; // Wahl e.V.
|
//t = "3884496709"; // Wahl e.V.
|
||||||
//t = "3536079480"; // Behindertenhilfe Menden
|
//t = "3536079480"; // Behindertenhilfe Menden
|
||||||
t = "5427523619"; // ChristopherusHausFamilienhilfe
|
//t = "5427523619"; // ChristopherusHausFamilienhilfe
|
||||||
//t = "8251343124"; // Rat Plus Tat
|
//t = "8251343124"; // Rat Plus Tat
|
||||||
//t = "6819347851"; // Awo Kreisverband Plön
|
//t = "6819347851"; // Awo Kreisverband Plön
|
||||||
//t = "2385915144"; // AKGG GmbHd
|
//t = "2385915144"; // AKGG GmbHd
|
||||||
|
|||||||
@@ -171,7 +171,10 @@ namespace BeWo.Service.SBD
|
|||||||
var schools = MapperFactory.CustomerOrganisationRelationDC_Customer2Organisation.MapToNewDCs(customer.Customer2OrganisationList.Where(customer2Organisation => customer2Organisation.ValueList.Any(b => b.Entry.Type == ValueListEntryType.EnvironmentOrganisationType && b.Entry.Value.Equals("Schule"))));
|
var schools = MapperFactory.CustomerOrganisationRelationDC_Customer2Organisation.MapToNewDCs(customer.Customer2OrganisationList.Where(customer2Organisation => customer2Organisation.ValueList.Any(b => b.Entry.Type == ValueListEntryType.EnvironmentOrganisationType && b.Entry.Value.Equals("Schule"))));
|
||||||
var schoolAssistanceTimes = GetSchoolAssistanceTimes(customer, start, end, absenceTime);
|
var schoolAssistanceTimes = GetSchoolAssistanceTimes(customer, start, end, absenceTime);
|
||||||
var hauptbetreuer = customer.Employee2CustomerList.FirstOrDefault(f => f.IsActive == ActivationTypeId.Active && f.ValueList.Any(b => b.Entry.Type.Equals(ValueListEntryType.StaffRoleType) && b.Entry.Value.ToLower().Equals("hauptbetreuung")))?.Employee;
|
var hauptbetreuer = customer.Employee2CustomerList.FirstOrDefault(f => f.IsActive == ActivationTypeId.Active && f.ValueList.Any(b => b.Entry.Type.Equals(ValueListEntryType.StaffRoleType) && b.Entry.Value.ToLower().Equals("hauptbetreuung")))?.Employee;
|
||||||
|
if (hauptbetreuer == null)
|
||||||
|
{
|
||||||
|
hauptbetreuer = customer.Employee2CustomerList.FirstOrDefault()?.Employee;
|
||||||
|
}
|
||||||
MigriereSubstitutionStatus(customer);
|
MigriereSubstitutionStatus(customer);
|
||||||
|
|
||||||
var assistingEmployees = new List<Employee>();
|
var assistingEmployees = new List<Employee>();
|
||||||
|
|||||||
@@ -825,14 +825,16 @@ namespace BeWo.Service.ServiceImplementations
|
|||||||
{
|
{
|
||||||
try
|
try
|
||||||
{
|
{
|
||||||
var urlneu = ConfigurationManager.AppSettings.Get("RssFeedUrl");
|
//var urlneu = ConfigurationManager.AppSettings.Get("RssFeedUrl");
|
||||||
|
var urlneu = "http://bsnewsmaster.beyondsoft.de/news_rss.php?ClientOID=236180486&CategoryOID=2002858128";
|
||||||
|
|
||||||
|
|
||||||
if (string.IsNullOrEmpty(urlneu))
|
if (string.IsNullOrEmpty(urlneu))
|
||||||
{
|
{
|
||||||
urlneu = "http://bsnewsmaster.beyondsoft.de/news_rss.php?ClientOID=236180486&CategoryOID=2002858128";
|
//urlneu = "http://bsnewsmaster.beyondsoft.de/news_rss.php?ClientOID=236180486&CategoryOID=2002858128";
|
||||||
|
urlneu = "http://apps.ownsoft.de/news/rss?evplaner[base_cat]=55";
|
||||||
|
|
||||||
}
|
}
|
||||||
RssFeed feed = new RssFeed();
|
RssFeed feed = new RssFeed();
|
||||||
|
|
||||||
RssManager mgr = new RssManager(urlneu);
|
RssManager mgr = new RssManager(urlneu);
|
||||||
|
|||||||
Reference in New Issue
Block a user