Merge branch 'master' of ssh://float.ownsoft.de/git/beyondSoft/BeWo
This commit is contained in:
@@ -17,63 +17,63 @@ namespace AlzeyTeilhabe.Invoicing
|
||||
{
|
||||
public class DefaultInvoiceCreation : InvoiceCreation
|
||||
{
|
||||
//public override List<ServiceInvoiceDC> GenerateServiceInvoices(long costBearerOid,
|
||||
// DateTimeSpan invoicePeriod,
|
||||
// Dictionary<CompactSupportConceptDC, List<ServiceRecordDC>> supportConcepts2ServiceRecords)
|
||||
//{
|
||||
// var invoiceList = new List<ServiceInvoice>();
|
||||
public override List<ServiceInvoiceDC> GenerateServiceInvoices(long costBearerOid,
|
||||
DateTimeSpan invoicePeriod,
|
||||
Dictionary<CompactSupportConceptDC, List<ServiceRecordDC>> supportConcepts2ServiceRecords)
|
||||
{
|
||||
var invoiceList = new List<ServiceInvoice>();
|
||||
|
||||
// var invoiceCounter = 0;
|
||||
var invoiceCounter = 0;
|
||||
|
||||
|
||||
// foreach (var sc in supportConcepts2ServiceRecords.Keys)
|
||||
// {
|
||||
// var alleServiceRecords = supportConcepts2ServiceRecords[sc];
|
||||
foreach (var sc in supportConcepts2ServiceRecords.Keys)
|
||||
{
|
||||
var alleServiceRecords = supportConcepts2ServiceRecords[sc];
|
||||
|
||||
// //Jede Kategorie in einer einzelnen Rechnung
|
||||
// Dictionary<ServiceCategoryDC, List<ServiceRecordDC>> cat2srDict = new Dictionary<ServiceCategoryDC, List<ServiceRecordDC>>();
|
||||
//Jede Kategorie in einer einzelnen Rechnung
|
||||
Dictionary<ServiceCategoryDC, List<ServiceRecordDC>> cat2srDict = new Dictionary<ServiceCategoryDC, List<ServiceRecordDC>>();
|
||||
|
||||
// foreach (var item in alleServiceRecords)
|
||||
// {
|
||||
// if (!cat2srDict.ContainsKey(item.ServiceDescription.Category))
|
||||
// cat2srDict.Add(item.ServiceDescription.Category, new List<ServiceRecordDC>());
|
||||
foreach (var item in alleServiceRecords)
|
||||
{
|
||||
if (!cat2srDict.ContainsKey(item.ServiceDescription.Category))
|
||||
cat2srDict.Add(item.ServiceDescription.Category, new List<ServiceRecordDC>());
|
||||
|
||||
// cat2srDict[item.ServiceDescription.Category].Add(item);
|
||||
// }
|
||||
cat2srDict[item.ServiceDescription.Category].Add(item);
|
||||
}
|
||||
|
||||
// ServiceInvoice invoice;
|
||||
// var costBearer = DAOFactory.GenericDAO.LoadByID<CostBearer>(costBearerOid);
|
||||
ServiceInvoice invoice;
|
||||
var costBearer = DAOFactory.GenericDAO.LoadByID<CostBearer>(costBearerOid);
|
||||
|
||||
// if (costBearer.IsSingleInvoicePerCustomer)
|
||||
// {
|
||||
// invoice = CreateCollectiveBilling(costBearer, invoicePeriod, supportConcepts2ServiceRecords);
|
||||
// if (invoice != null)
|
||||
// {
|
||||
// invoiceList.Add(invoice);
|
||||
// }
|
||||
// }
|
||||
// else
|
||||
// {
|
||||
// foreach (var item in cat2srDict)
|
||||
// {
|
||||
// var dict = new Dictionary<CompactSupportConceptDC, List<ServiceRecordDC>>();
|
||||
// dict.Add(sc, item.Value);
|
||||
if (costBearer.IsSingleInvoicePerCustomer)
|
||||
{
|
||||
invoice = CreateCollectiveBilling(costBearer, invoicePeriod, supportConcepts2ServiceRecords);
|
||||
if (invoice != null)
|
||||
{
|
||||
invoiceList.Add(invoice);
|
||||
}
|
||||
}
|
||||
else
|
||||
{
|
||||
foreach (var item in cat2srDict)
|
||||
{
|
||||
var dict = new Dictionary<CompactSupportConceptDC, List<ServiceRecordDC>>();
|
||||
dict.Add(sc, item.Value);
|
||||
|
||||
// invoice = CreateSingleInvoice(invoiceCounter, costBearer, invoicePeriod, sc, item.Value);
|
||||
// if (invoice != null)
|
||||
// {
|
||||
// invoiceList.Add(invoice);
|
||||
// invoiceCounter++;
|
||||
// }
|
||||
invoice = CreateSingleInvoice(invoiceCounter, costBearer, invoicePeriod, sc, item.Value);
|
||||
if (invoice != null)
|
||||
{
|
||||
invoiceList.Add(invoice);
|
||||
invoiceCounter++;
|
||||
}
|
||||
|
||||
// }
|
||||
// }
|
||||
// }
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
// var result = invoiceList.Select(item => MapperFactory.ServiceInvoiceDC_ServiceInvoice.MapToNewDC(item)).ToList();
|
||||
var result = invoiceList.Select(item => MapperFactory.ServiceInvoiceDC_ServiceInvoice.MapToNewDC(item)).ToList();
|
||||
|
||||
// return result.Count > 1 ? result.OrderBy(i => i.InvoiceBase.CustomerLastName).ToList() : result;
|
||||
//}
|
||||
return result.Count > 1 ? result.OrderBy(i => i.InvoiceBase.CustomerLastName).ToList() : result;
|
||||
}
|
||||
|
||||
public override ServiceInvoice CreateSingleInvoice(int invoiceCounter, CostBearer costBearer, DateTimeSpan invoicePeriod,
|
||||
CompactSupportConceptDC supportConcept, List<ServiceRecordDC> serviceRecords)
|
||||
|
||||
12
ReportImp/AlzeyTeilhabe/RechnungPa.Designer.cs
generated
12
ReportImp/AlzeyTeilhabe/RechnungPa.Designer.cs
generated
@@ -87,11 +87,11 @@ namespace AlzeyTeilhabe
|
||||
this.xrTableCell45 = new DevExpress.XtraReports.UI.XRTableCell();
|
||||
this.xrTableCell47 = new DevExpress.XtraReports.UI.XRTableCell();
|
||||
this.GroupFooter1 = new DevExpress.XtraReports.UI.GroupFooterBand();
|
||||
this.bindingSource1 = new System.Windows.Forms.BindingSource(this.components);
|
||||
this.xrLabel10 = new DevExpress.XtraReports.UI.XRLabel();
|
||||
this.xrLabel6 = new DevExpress.XtraReports.UI.XRLabel();
|
||||
this.xrLabel1 = new DevExpress.XtraReports.UI.XRLabel();
|
||||
this.ReportFooter = new DevExpress.XtraReports.UI.ReportFooterBand();
|
||||
this.bindingSource1 = new System.Windows.Forms.BindingSource(this.components);
|
||||
((System.ComponentModel.ISupportInitialize)(this.xrTable2)).BeginInit();
|
||||
((System.ComponentModel.ISupportInitialize)(this.xrRichText2)).BeginInit();
|
||||
((System.ComponentModel.ISupportInitialize)(this.xrTable5)).BeginInit();
|
||||
@@ -569,7 +569,7 @@ namespace AlzeyTeilhabe
|
||||
// lblAdresse
|
||||
//
|
||||
this.lblAdresse.Font = new System.Drawing.Font("Arial", 10F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
|
||||
this.lblAdresse.LocationFloat = new DevExpress.Utils.PointFloat(0F, 172.6059F);
|
||||
this.lblAdresse.LocationFloat = new DevExpress.Utils.PointFloat(0F, 166.6059F);
|
||||
this.lblAdresse.Multiline = true;
|
||||
this.lblAdresse.Name = "lblAdresse";
|
||||
this.lblAdresse.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
|
||||
@@ -693,6 +693,10 @@ namespace AlzeyTeilhabe
|
||||
this.GroupFooter1.Name = "GroupFooter1";
|
||||
this.GroupFooter1.StylePriority.UseFont = false;
|
||||
//
|
||||
// bindingSource1
|
||||
//
|
||||
this.bindingSource1.DataSource = typeof(BeWo.Report.ReportObjects.ServiceInvoiceRO);
|
||||
//
|
||||
// xrLabel10
|
||||
//
|
||||
this.xrLabel10.LocationFloat = new DevExpress.Utils.PointFloat(0.00111262F, 46.4584F);
|
||||
@@ -753,10 +757,6 @@ namespace AlzeyTeilhabe
|
||||
this.ReportFooter.HeightF = 142.7083F;
|
||||
this.ReportFooter.Name = "ReportFooter";
|
||||
//
|
||||
// bindingSource1
|
||||
//
|
||||
this.bindingSource1.DataSource = typeof(BeWo.Report.ReportObjects.ServiceInvoiceRO);
|
||||
//
|
||||
// RechnungPa
|
||||
//
|
||||
this.Bands.AddRange(new DevExpress.XtraReports.UI.Band[] {
|
||||
|
||||
@@ -20,6 +20,8 @@ namespace AlzeyTeilhabe
|
||||
|
||||
if (!String.IsNullOrEmpty(pRO.RecipientOrganisation))
|
||||
{
|
||||
if (pRO.RecipientOrganisation.ToLower().Contains("ikk südwest"))
|
||||
pRO.RecipientOrganisation = pRO.RecipientAddressLine1;
|
||||
sb.AppendLine(pRO.RecipientOrganisation);
|
||||
}
|
||||
if (!String.IsNullOrEmpty(pRO.RecipientContactPerson))
|
||||
|
||||
@@ -13,7 +13,15 @@ namespace AlzeyTeilhabe.Service
|
||||
public override void BeforeSaveServiceRecord(ServiceRecord sr)
|
||||
{
|
||||
if (sr.ServiceDescription.ServiceCategory.Name.ToLower().Contains("soziotherapie"))
|
||||
sr.DistanceInMeter = sr.Customer.DistanceInMeter;
|
||||
{
|
||||
if (sr.ServiceDescription.Name.ToLower().Contains("fahrtkosten") && sr.Customer.DistanceInMeter != null)
|
||||
sr.DistanceInMeter = sr.Customer.DistanceInMeter * 2;
|
||||
else
|
||||
sr.DistanceInMeter = null;
|
||||
|
||||
}
|
||||
else
|
||||
sr.DistanceInMeter = null;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
@@ -21,6 +21,8 @@ namespace KirschbaumManz
|
||||
}
|
||||
|
||||
public override MitarbeiterstundenkontoRO.DayDetail CreateDayDetail(DateTime date, MitarbeiterstundenkontoRO.EmployeeDetail ed)
|
||||
{
|
||||
if (date.Date >= new DateTime(2023, 11, 01))
|
||||
{
|
||||
var dd = base.CreateDayDetail(date, ed);
|
||||
dd.MaxHoursUntilBreak = 6;
|
||||
@@ -30,8 +32,13 @@ namespace KirschbaumManz
|
||||
|
||||
return dd;
|
||||
}
|
||||
else
|
||||
return base.CreateDayDetail(date, ed);
|
||||
}
|
||||
|
||||
public override bool AddServiceRecordToDuration(ServiceRecord item)
|
||||
{
|
||||
if (item.Start.HasValue && item.Start.Value.Date >= new DateTime(2023, 11, 01))
|
||||
{
|
||||
if (item.ServiceDescription != null && item.ServiceDescription.ServiceCategory != null)
|
||||
{
|
||||
@@ -44,9 +51,14 @@ namespace KirschbaumManz
|
||||
}
|
||||
return false;
|
||||
}
|
||||
else
|
||||
return base.AddServiceRecordToDuration(item);
|
||||
}
|
||||
|
||||
protected override ServiceRecordSummary BerechneStunden(MitarbeiterstundenkontoRO.EmployeeDetail empDetail, IList<ServiceRecord> groupFilteredRecords, DateTime berichtsAnfang,
|
||||
DateTime berichtsEnde)
|
||||
{
|
||||
if (berichtsAnfang.Date >= new DateTime(2023, 11, 01))
|
||||
{
|
||||
decimal flsGesamt = 0;
|
||||
decimal arbeitszeit = 0;
|
||||
@@ -99,5 +111,8 @@ namespace KirschbaumManz
|
||||
|
||||
return sum;
|
||||
}
|
||||
else
|
||||
return base.BerechneStunden(empDetail, groupFilteredRecords, berichtsAnfang, berichtsEnde);
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
631
ReportImp/PetraWagnerMatthes/BeWoRechnung.Designer.cs
generated
631
ReportImp/PetraWagnerMatthes/BeWoRechnung.Designer.cs
generated
@@ -58,34 +58,6 @@ namespace PetraWagnerMatthes
|
||||
this.xrRichText2 = new DevExpress.XtraReports.UI.XRRichText();
|
||||
this.lblAdresse = new DevExpress.XtraReports.UI.XRLabel();
|
||||
this.ReportFooter = new DevExpress.XtraReports.UI.ReportFooterBand();
|
||||
this.DetailReport = new DevExpress.XtraReports.UI.DetailReportBand();
|
||||
this.Detail1 = new DevExpress.XtraReports.UI.DetailBand();
|
||||
this.DetailReport1 = new DevExpress.XtraReports.UI.DetailReportBand();
|
||||
this.Detail2 = new DevExpress.XtraReports.UI.DetailBand();
|
||||
this.GroupHeader1 = new DevExpress.XtraReports.UI.GroupHeaderBand();
|
||||
this.xrTable5 = new DevExpress.XtraReports.UI.XRTable();
|
||||
this.xrTableRow23 = new DevExpress.XtraReports.UI.XRTableRow();
|
||||
this.xrTableCell32 = new DevExpress.XtraReports.UI.XRTableCell();
|
||||
this.xrTableCell37 = new DevExpress.XtraReports.UI.XRTableCell();
|
||||
this.xrTableCell35 = new DevExpress.XtraReports.UI.XRTableCell();
|
||||
this.xrTableCell33 = new DevExpress.XtraReports.UI.XRTableCell();
|
||||
this.xrTableCell36 = new DevExpress.XtraReports.UI.XRTableCell();
|
||||
this.xrTableCell38 = new DevExpress.XtraReports.UI.XRTableCell();
|
||||
this.xrTableCell34 = new DevExpress.XtraReports.UI.XRTableCell();
|
||||
this.GroupFooter1 = new DevExpress.XtraReports.UI.GroupFooterBand();
|
||||
this.xrTable1 = new DevExpress.XtraReports.UI.XRTable();
|
||||
this.xrTableRow1 = new DevExpress.XtraReports.UI.XRTableRow();
|
||||
this.xrTableCell1 = new DevExpress.XtraReports.UI.XRTableCell();
|
||||
this.xrTableCell5 = new DevExpress.XtraReports.UI.XRTableCell();
|
||||
this.xrTable6 = new DevExpress.XtraReports.UI.XRTable();
|
||||
this.xrTableRow25 = new DevExpress.XtraReports.UI.XRTableRow();
|
||||
this.xrTableCell40 = new DevExpress.XtraReports.UI.XRTableCell();
|
||||
this.xrTableCell42 = new DevExpress.XtraReports.UI.XRTableCell();
|
||||
this.xrTableCell43 = new DevExpress.XtraReports.UI.XRTableCell();
|
||||
this.xrTableCell44 = new DevExpress.XtraReports.UI.XRTableCell();
|
||||
this.xrTableCell45 = new DevExpress.XtraReports.UI.XRTableCell();
|
||||
this.xrTableCell46 = new DevExpress.XtraReports.UI.XRTableCell();
|
||||
this.xrTableCell47 = new DevExpress.XtraReports.UI.XRTableCell();
|
||||
this.xrLabel15 = new DevExpress.XtraReports.UI.XRLabel();
|
||||
this.xrLabel14 = new DevExpress.XtraReports.UI.XRLabel();
|
||||
this.xrTable4 = new DevExpress.XtraReports.UI.XRTable();
|
||||
@@ -94,13 +66,40 @@ namespace PetraWagnerMatthes
|
||||
this.xrTableRow14 = new DevExpress.XtraReports.UI.XRTableRow();
|
||||
this.xrTableCell7 = new DevExpress.XtraReports.UI.XRTableCell();
|
||||
this.xrLabel3 = new DevExpress.XtraReports.UI.XRLabel();
|
||||
this.DetailReport = new DevExpress.XtraReports.UI.DetailReportBand();
|
||||
this.Detail1 = new DevExpress.XtraReports.UI.DetailBand();
|
||||
this.DetailReport1 = new DevExpress.XtraReports.UI.DetailReportBand();
|
||||
this.Detail2 = new DevExpress.XtraReports.UI.DetailBand();
|
||||
this.xrTable6 = new DevExpress.XtraReports.UI.XRTable();
|
||||
this.xrTableRow25 = new DevExpress.XtraReports.UI.XRTableRow();
|
||||
this.xrTableCell40 = new DevExpress.XtraReports.UI.XRTableCell();
|
||||
this.xrTableCell42 = new DevExpress.XtraReports.UI.XRTableCell();
|
||||
this.xrTableCell43 = new DevExpress.XtraReports.UI.XRTableCell();
|
||||
this.xrTableCell44 = new DevExpress.XtraReports.UI.XRTableCell();
|
||||
this.xrTableCell45 = new DevExpress.XtraReports.UI.XRTableCell();
|
||||
this.xrTableCell47 = new DevExpress.XtraReports.UI.XRTableCell();
|
||||
this.GroupHeader1 = new DevExpress.XtraReports.UI.GroupHeaderBand();
|
||||
this.xrTable5 = new DevExpress.XtraReports.UI.XRTable();
|
||||
this.xrTableRow23 = new DevExpress.XtraReports.UI.XRTableRow();
|
||||
this.xrTableCell32 = new DevExpress.XtraReports.UI.XRTableCell();
|
||||
this.xrTableCell37 = new DevExpress.XtraReports.UI.XRTableCell();
|
||||
this.xrTableCell35 = new DevExpress.XtraReports.UI.XRTableCell();
|
||||
this.xrTableCell33 = new DevExpress.XtraReports.UI.XRTableCell();
|
||||
this.xrTableCell36 = new DevExpress.XtraReports.UI.XRTableCell();
|
||||
this.xrTableCell34 = new DevExpress.XtraReports.UI.XRTableCell();
|
||||
this.GroupFooter1 = new DevExpress.XtraReports.UI.GroupFooterBand();
|
||||
this.xrTable1 = new DevExpress.XtraReports.UI.XRTable();
|
||||
this.xrTableRow1 = new DevExpress.XtraReports.UI.XRTableRow();
|
||||
this.xrTableCell1 = new DevExpress.XtraReports.UI.XRTableCell();
|
||||
this.xrTableCell5 = new DevExpress.XtraReports.UI.XRTableCell();
|
||||
this.xrPictureBox1 = new DevExpress.XtraReports.UI.XRPictureBox();
|
||||
this.bindingSource1 = new System.Windows.Forms.BindingSource(this.components);
|
||||
((System.ComponentModel.ISupportInitialize)(this.xrTable2)).BeginInit();
|
||||
((System.ComponentModel.ISupportInitialize)(this.xrRichText2)).BeginInit();
|
||||
((System.ComponentModel.ISupportInitialize)(this.xrTable4)).BeginInit();
|
||||
((System.ComponentModel.ISupportInitialize)(this.xrTable6)).BeginInit();
|
||||
((System.ComponentModel.ISupportInitialize)(this.xrTable5)).BeginInit();
|
||||
((System.ComponentModel.ISupportInitialize)(this.xrTable1)).BeginInit();
|
||||
((System.ComponentModel.ISupportInitialize)(this.xrTable6)).BeginInit();
|
||||
((System.ComponentModel.ISupportInitialize)(this.xrTable4)).BeginInit();
|
||||
((System.ComponentModel.ISupportInitialize)(this.bindingSource1)).BeginInit();
|
||||
((System.ComponentModel.ISupportInitialize)(this)).BeginInit();
|
||||
//
|
||||
@@ -167,7 +166,8 @@ namespace PetraWagnerMatthes
|
||||
this.xrLabel21.StylePriority.UseBackColor = false;
|
||||
this.xrLabel21.StylePriority.UseFont = false;
|
||||
this.xrLabel21.StylePriority.UseForeColor = false;
|
||||
this.xrLabel21.Text = "Geschäftsführer\r\nPetra Wagner-Matthes";
|
||||
this.xrLabel21.Text = "Geschäftsführer\r\nPetra Wagner-Matthes\r\nSteuernummer 107/51583244 Finanzamt Duisbu" +
|
||||
"rg-Hamborn";
|
||||
//
|
||||
// xrLabel19
|
||||
//
|
||||
@@ -334,7 +334,7 @@ namespace PetraWagnerMatthes
|
||||
this.xrTableCell8.StylePriority.UseBorderWidth = false;
|
||||
this.xrTableCell8.StylePriority.UsePadding = false;
|
||||
this.xrTableCell8.StylePriority.UseTextAlignment = false;
|
||||
this.xrTableCell8.Text = "Aktenzeichen";
|
||||
this.xrTableCell8.Text = "Versicherungsnummer";
|
||||
this.xrTableCell8.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleLeft;
|
||||
this.xrTableCell8.Weight = 0.53122486267026214D;
|
||||
//
|
||||
@@ -374,14 +374,15 @@ namespace PetraWagnerMatthes
|
||||
// xrLabel1
|
||||
//
|
||||
this.xrLabel1.Font = new System.Drawing.Font("Arial", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
|
||||
this.xrLabel1.LocationFloat = new DevExpress.Utils.PointFloat(436.7917F, 21.95832F);
|
||||
this.xrLabel1.LocationFloat = new DevExpress.Utils.PointFloat(413.8751F, 21.95832F);
|
||||
this.xrLabel1.Multiline = true;
|
||||
this.xrLabel1.Name = "xrLabel1";
|
||||
this.xrLabel1.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
|
||||
this.xrLabel1.SizeF = new System.Drawing.SizeF(239.2083F, 138.5833F);
|
||||
this.xrLabel1.SizeF = new System.Drawing.SizeF(262.125F, 147.9583F);
|
||||
this.xrLabel1.StylePriority.UseFont = false;
|
||||
this.xrLabel1.Text = "Soziotherapie Petra Wagner-Matthes\r\n\r\nDuisburger Straße 77\r\n47166 Duisburg\r\n\r\nTel" +
|
||||
"efon:\t0203-36928901\r\nFax:\t0203-36928903\r\nsoziotherapie-petra-wagner-matthes.de";
|
||||
"efon:\t0203-36928901\r\nFax:\t0203-36928903\r\nMail:\tinfo@alltagsmeister-duisburg.de\r\n" +
|
||||
"\r\nsoziotherapie-petra-wagner-matthes.de";
|
||||
//
|
||||
// xrLabel9
|
||||
//
|
||||
@@ -445,15 +446,88 @@ namespace PetraWagnerMatthes
|
||||
// ReportFooter
|
||||
//
|
||||
this.ReportFooter.Controls.AddRange(new DevExpress.XtraReports.UI.XRControl[] {
|
||||
this.xrPictureBox1,
|
||||
this.xrLabel15,
|
||||
this.xrLabel14,
|
||||
this.xrTable4,
|
||||
this.xrLabel3});
|
||||
this.ReportFooter.Font = new System.Drawing.Font("Arial", 9F);
|
||||
this.ReportFooter.HeightF = 174.8754F;
|
||||
this.ReportFooter.HeightF = 204.5833F;
|
||||
this.ReportFooter.Name = "ReportFooter";
|
||||
this.ReportFooter.StylePriority.UseFont = false;
|
||||
//
|
||||
// xrLabel15
|
||||
//
|
||||
this.xrLabel15.Font = new System.Drawing.Font("Arial", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
|
||||
this.xrLabel15.LocationFloat = new DevExpress.Utils.PointFloat(0F, 70.83327F);
|
||||
this.xrLabel15.Name = "xrLabel15";
|
||||
this.xrLabel15.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
|
||||
this.xrLabel15.SizeF = new System.Drawing.SizeF(175F, 17F);
|
||||
this.xrLabel15.StylePriority.UseFont = false;
|
||||
this.xrLabel15.Text = "Mit freundlichen Grüßen";
|
||||
//
|
||||
// xrLabel14
|
||||
//
|
||||
this.xrLabel14.DataBindings.AddRange(new DevExpress.XtraReports.UI.XRBinding[] {
|
||||
new DevExpress.XtraReports.UI.XRBinding("Text", null, "CreatorName")});
|
||||
this.xrLabel14.Font = new System.Drawing.Font("Arial", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
|
||||
this.xrLabel14.LocationFloat = new DevExpress.Utils.PointFloat(0F, 145.8333F);
|
||||
this.xrLabel14.Name = "xrLabel14";
|
||||
this.xrLabel14.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
|
||||
this.xrLabel14.SizeF = new System.Drawing.SizeF(225F, 17F);
|
||||
this.xrLabel14.StylePriority.UseFont = false;
|
||||
this.xrLabel14.Text = "[CreatorName]";
|
||||
//
|
||||
// xrTable4
|
||||
//
|
||||
this.xrTable4.Font = new System.Drawing.Font("Arial", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
|
||||
this.xrTable4.LocationFloat = new DevExpress.Utils.PointFloat(0F, 24.99994F);
|
||||
this.xrTable4.Name = "xrTable4";
|
||||
this.xrTable4.Rows.AddRange(new DevExpress.XtraReports.UI.XRTableRow[] {
|
||||
this.xrTableRow10,
|
||||
this.xrTableRow14});
|
||||
this.xrTable4.SizeF = new System.Drawing.SizeF(650F, 26F);
|
||||
this.xrTable4.StylePriority.UseFont = false;
|
||||
//
|
||||
// xrTableRow10
|
||||
//
|
||||
this.xrTableRow10.Cells.AddRange(new DevExpress.XtraReports.UI.XRTableCell[] {
|
||||
this.xrTableCell6});
|
||||
this.xrTableRow10.Name = "xrTableRow10";
|
||||
this.xrTableRow10.Weight = 0.38095238095238093D;
|
||||
//
|
||||
// xrTableCell6
|
||||
//
|
||||
this.xrTableCell6.DataBindings.AddRange(new DevExpress.XtraReports.UI.XRBinding[] {
|
||||
new DevExpress.XtraReports.UI.XRBinding("Text", null, "Notice")});
|
||||
this.xrTableCell6.Name = "xrTableCell6";
|
||||
this.xrTableCell6.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
|
||||
this.xrTableCell6.StylePriority.UsePadding = false;
|
||||
this.xrTableCell6.Text = "xrTableCell1";
|
||||
this.xrTableCell6.Weight = 3D;
|
||||
//
|
||||
// xrTableRow14
|
||||
//
|
||||
this.xrTableRow14.Cells.AddRange(new DevExpress.XtraReports.UI.XRTableCell[] {
|
||||
this.xrTableCell7});
|
||||
this.xrTableRow14.Name = "xrTableRow14";
|
||||
this.xrTableRow14.Weight = 0.23809523809523808D;
|
||||
//
|
||||
// xrTableCell7
|
||||
//
|
||||
this.xrTableCell7.Name = "xrTableCell7";
|
||||
this.xrTableCell7.Weight = 3D;
|
||||
//
|
||||
// xrLabel3
|
||||
//
|
||||
this.xrLabel3.Font = new System.Drawing.Font("Arial", 9F, System.Drawing.FontStyle.Italic, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
|
||||
this.xrLabel3.LocationFloat = new DevExpress.Utils.PointFloat(0F, 0F);
|
||||
this.xrLabel3.Name = "xrLabel3";
|
||||
this.xrLabel3.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
|
||||
this.xrLabel3.SizeF = new System.Drawing.SizeF(250F, 17F);
|
||||
this.xrLabel3.StylePriority.UseFont = false;
|
||||
this.xrLabel3.Text = "Abschließende Bemerkungen:";
|
||||
//
|
||||
// DetailReport
|
||||
//
|
||||
this.DetailReport.Bands.AddRange(new DevExpress.XtraReports.UI.Band[] {
|
||||
@@ -489,220 +563,6 @@ namespace PetraWagnerMatthes
|
||||
this.Detail2.Name = "Detail2";
|
||||
this.Detail2.StylePriority.UseFont = false;
|
||||
//
|
||||
// GroupHeader1
|
||||
//
|
||||
this.GroupHeader1.Controls.AddRange(new DevExpress.XtraReports.UI.XRControl[] {
|
||||
this.xrTable5});
|
||||
this.GroupHeader1.Font = new System.Drawing.Font("Arial", 9F);
|
||||
this.GroupHeader1.HeightF = 25F;
|
||||
this.GroupHeader1.Name = "GroupHeader1";
|
||||
this.GroupHeader1.StylePriority.UseFont = false;
|
||||
//
|
||||
// xrTable5
|
||||
//
|
||||
this.xrTable5.LocationFloat = new DevExpress.Utils.PointFloat(0F, 0F);
|
||||
this.xrTable5.Name = "xrTable5";
|
||||
this.xrTable5.Rows.AddRange(new DevExpress.XtraReports.UI.XRTableRow[] {
|
||||
this.xrTableRow23});
|
||||
this.xrTable5.SizeF = new System.Drawing.SizeF(677F, 25F);
|
||||
//
|
||||
// xrTableRow23
|
||||
//
|
||||
this.xrTableRow23.Cells.AddRange(new DevExpress.XtraReports.UI.XRTableCell[] {
|
||||
this.xrTableCell32,
|
||||
this.xrTableCell37,
|
||||
this.xrTableCell35,
|
||||
this.xrTableCell33,
|
||||
this.xrTableCell36,
|
||||
this.xrTableCell38,
|
||||
this.xrTableCell34});
|
||||
this.xrTableRow23.Name = "xrTableRow23";
|
||||
this.xrTableRow23.Weight = 1D;
|
||||
//
|
||||
// xrTableCell32
|
||||
//
|
||||
this.xrTableCell32.BackColor = System.Drawing.Color.Gainsboro;
|
||||
this.xrTableCell32.BorderColor = System.Drawing.Color.DarkGray;
|
||||
this.xrTableCell32.Borders = ((DevExpress.XtraPrinting.BorderSide)((((DevExpress.XtraPrinting.BorderSide.Left | DevExpress.XtraPrinting.BorderSide.Top)
|
||||
| DevExpress.XtraPrinting.BorderSide.Right)
|
||||
| DevExpress.XtraPrinting.BorderSide.Bottom)));
|
||||
this.xrTableCell32.Name = "xrTableCell32";
|
||||
this.xrTableCell32.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 2, 2, 100F);
|
||||
this.xrTableCell32.StylePriority.UseBackColor = false;
|
||||
this.xrTableCell32.StylePriority.UseBorderColor = false;
|
||||
this.xrTableCell32.StylePriority.UseBorders = false;
|
||||
this.xrTableCell32.StylePriority.UsePadding = false;
|
||||
this.xrTableCell32.StylePriority.UseTextAlignment = false;
|
||||
this.xrTableCell32.Text = "Zeitraum";
|
||||
this.xrTableCell32.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleLeft;
|
||||
this.xrTableCell32.Weight = 0.62463077449375981D;
|
||||
//
|
||||
// xrTableCell37
|
||||
//
|
||||
this.xrTableCell37.BackColor = System.Drawing.Color.Gainsboro;
|
||||
this.xrTableCell37.BorderColor = System.Drawing.Color.DarkGray;
|
||||
this.xrTableCell37.Borders = ((DevExpress.XtraPrinting.BorderSide)((((DevExpress.XtraPrinting.BorderSide.Left | DevExpress.XtraPrinting.BorderSide.Top)
|
||||
| DevExpress.XtraPrinting.BorderSide.Right)
|
||||
| DevExpress.XtraPrinting.BorderSide.Bottom)));
|
||||
this.xrTableCell37.Name = "xrTableCell37";
|
||||
this.xrTableCell37.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 2, 2, 100F);
|
||||
this.xrTableCell37.StylePriority.UseBackColor = false;
|
||||
this.xrTableCell37.StylePriority.UseBorderColor = false;
|
||||
this.xrTableCell37.StylePriority.UseBorders = false;
|
||||
this.xrTableCell37.StylePriority.UsePadding = false;
|
||||
this.xrTableCell37.StylePriority.UseTextAlignment = false;
|
||||
this.xrTableCell37.Text = "Leistung";
|
||||
this.xrTableCell37.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleLeft;
|
||||
this.xrTableCell37.Weight = 0.85081236260328186D;
|
||||
//
|
||||
// xrTableCell35
|
||||
//
|
||||
this.xrTableCell35.BackColor = System.Drawing.Color.Gainsboro;
|
||||
this.xrTableCell35.BorderColor = System.Drawing.Color.DarkGray;
|
||||
this.xrTableCell35.Borders = ((DevExpress.XtraPrinting.BorderSide)((((DevExpress.XtraPrinting.BorderSide.Left | DevExpress.XtraPrinting.BorderSide.Top)
|
||||
| DevExpress.XtraPrinting.BorderSide.Right)
|
||||
| DevExpress.XtraPrinting.BorderSide.Bottom)));
|
||||
this.xrTableCell35.Name = "xrTableCell35";
|
||||
this.xrTableCell35.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 2, 2, 100F);
|
||||
this.xrTableCell35.StylePriority.UseBackColor = false;
|
||||
this.xrTableCell35.StylePriority.UseBorderColor = false;
|
||||
this.xrTableCell35.StylePriority.UseBorders = false;
|
||||
this.xrTableCell35.StylePriority.UsePadding = false;
|
||||
this.xrTableCell35.StylePriority.UseTextAlignment = false;
|
||||
this.xrTableCell35.Text = "Satz";
|
||||
this.xrTableCell35.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleRight;
|
||||
this.xrTableCell35.Weight = 0.23245943032832414D;
|
||||
//
|
||||
// xrTableCell33
|
||||
//
|
||||
this.xrTableCell33.BackColor = System.Drawing.Color.Gainsboro;
|
||||
this.xrTableCell33.BorderColor = System.Drawing.Color.DarkGray;
|
||||
this.xrTableCell33.Borders = ((DevExpress.XtraPrinting.BorderSide)((((DevExpress.XtraPrinting.BorderSide.Left | DevExpress.XtraPrinting.BorderSide.Top)
|
||||
| DevExpress.XtraPrinting.BorderSide.Right)
|
||||
| DevExpress.XtraPrinting.BorderSide.Bottom)));
|
||||
this.xrTableCell33.Name = "xrTableCell33";
|
||||
this.xrTableCell33.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 2, 2, 100F);
|
||||
this.xrTableCell33.StylePriority.UseBackColor = false;
|
||||
this.xrTableCell33.StylePriority.UseBorderColor = false;
|
||||
this.xrTableCell33.StylePriority.UseBorders = false;
|
||||
this.xrTableCell33.StylePriority.UsePadding = false;
|
||||
this.xrTableCell33.StylePriority.UseTextAlignment = false;
|
||||
this.xrTableCell33.Text = "Stunden";
|
||||
this.xrTableCell33.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleRight;
|
||||
this.xrTableCell33.Weight = 0.2893277257020575D;
|
||||
//
|
||||
// xrTableCell36
|
||||
//
|
||||
this.xrTableCell36.BackColor = System.Drawing.Color.Gainsboro;
|
||||
this.xrTableCell36.BorderColor = System.Drawing.Color.DarkGray;
|
||||
this.xrTableCell36.Borders = ((DevExpress.XtraPrinting.BorderSide)((((DevExpress.XtraPrinting.BorderSide.Left | DevExpress.XtraPrinting.BorderSide.Top)
|
||||
| DevExpress.XtraPrinting.BorderSide.Right)
|
||||
| DevExpress.XtraPrinting.BorderSide.Bottom)));
|
||||
this.xrTableCell36.Name = "xrTableCell36";
|
||||
this.xrTableCell36.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 2, 2, 100F);
|
||||
this.xrTableCell36.StylePriority.UseBackColor = false;
|
||||
this.xrTableCell36.StylePriority.UseBorderColor = false;
|
||||
this.xrTableCell36.StylePriority.UseBorders = false;
|
||||
this.xrTableCell36.StylePriority.UsePadding = false;
|
||||
this.xrTableCell36.StylePriority.UseTextAlignment = false;
|
||||
this.xrTableCell36.Text = "Betrag";
|
||||
this.xrTableCell36.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleRight;
|
||||
this.xrTableCell36.Weight = 0.26310971709438763D;
|
||||
//
|
||||
// xrTableCell38
|
||||
//
|
||||
this.xrTableCell38.BackColor = System.Drawing.Color.Gainsboro;
|
||||
this.xrTableCell38.BorderColor = System.Drawing.Color.DarkGray;
|
||||
this.xrTableCell38.Borders = ((DevExpress.XtraPrinting.BorderSide)((((DevExpress.XtraPrinting.BorderSide.Left | DevExpress.XtraPrinting.BorderSide.Top)
|
||||
| DevExpress.XtraPrinting.BorderSide.Right)
|
||||
| DevExpress.XtraPrinting.BorderSide.Bottom)));
|
||||
this.xrTableCell38.Name = "xrTableCell38";
|
||||
this.xrTableCell38.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 2, 2, 100F);
|
||||
this.xrTableCell38.StylePriority.UseBackColor = false;
|
||||
this.xrTableCell38.StylePriority.UseBorderColor = false;
|
||||
this.xrTableCell38.StylePriority.UseBorders = false;
|
||||
this.xrTableCell38.StylePriority.UsePadding = false;
|
||||
this.xrTableCell38.StylePriority.UseTextAlignment = false;
|
||||
this.xrTableCell38.Text = "pausch Fakt.";
|
||||
this.xrTableCell38.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleRight;
|
||||
this.xrTableCell38.Weight = 0.42042083402151886D;
|
||||
//
|
||||
// xrTableCell34
|
||||
//
|
||||
this.xrTableCell34.BackColor = System.Drawing.Color.Gainsboro;
|
||||
this.xrTableCell34.BorderColor = System.Drawing.Color.DarkGray;
|
||||
this.xrTableCell34.Borders = ((DevExpress.XtraPrinting.BorderSide)((((DevExpress.XtraPrinting.BorderSide.Left | DevExpress.XtraPrinting.BorderSide.Top)
|
||||
| DevExpress.XtraPrinting.BorderSide.Right)
|
||||
| DevExpress.XtraPrinting.BorderSide.Bottom)));
|
||||
this.xrTableCell34.Name = "xrTableCell34";
|
||||
this.xrTableCell34.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 2, 2, 100F);
|
||||
this.xrTableCell34.StylePriority.UseBackColor = false;
|
||||
this.xrTableCell34.StylePriority.UseBorderColor = false;
|
||||
this.xrTableCell34.StylePriority.UseBorders = false;
|
||||
this.xrTableCell34.StylePriority.UsePadding = false;
|
||||
this.xrTableCell34.StylePriority.UseTextAlignment = false;
|
||||
this.xrTableCell34.Text = "Gesamt";
|
||||
this.xrTableCell34.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleRight;
|
||||
this.xrTableCell34.Weight = 0.31923915575667006D;
|
||||
//
|
||||
// GroupFooter1
|
||||
//
|
||||
this.GroupFooter1.Controls.AddRange(new DevExpress.XtraReports.UI.XRControl[] {
|
||||
this.xrTable1});
|
||||
this.GroupFooter1.HeightF = 47.91667F;
|
||||
this.GroupFooter1.Name = "GroupFooter1";
|
||||
//
|
||||
// xrTable1
|
||||
//
|
||||
this.xrTable1.Font = new System.Drawing.Font("Arial", 11F);
|
||||
this.xrTable1.LocationFloat = new DevExpress.Utils.PointFloat(0F, 0F);
|
||||
this.xrTable1.Name = "xrTable1";
|
||||
this.xrTable1.Rows.AddRange(new DevExpress.XtraReports.UI.XRTableRow[] {
|
||||
this.xrTableRow1});
|
||||
this.xrTable1.SizeF = new System.Drawing.SizeF(677F, 25F);
|
||||
this.xrTable1.StylePriority.UseFont = false;
|
||||
//
|
||||
// xrTableRow1
|
||||
//
|
||||
this.xrTableRow1.Cells.AddRange(new DevExpress.XtraReports.UI.XRTableCell[] {
|
||||
this.xrTableCell1,
|
||||
this.xrTableCell5});
|
||||
this.xrTableRow1.Name = "xrTableRow1";
|
||||
this.xrTableRow1.Weight = 1D;
|
||||
//
|
||||
// xrTableCell1
|
||||
//
|
||||
this.xrTableCell1.BorderColor = System.Drawing.Color.DarkGray;
|
||||
this.xrTableCell1.Borders = ((DevExpress.XtraPrinting.BorderSide)((DevExpress.XtraPrinting.BorderSide.Left | DevExpress.XtraPrinting.BorderSide.Bottom)));
|
||||
this.xrTableCell1.Font = new System.Drawing.Font("Arial", 11.25F, System.Drawing.FontStyle.Bold);
|
||||
this.xrTableCell1.Name = "xrTableCell1";
|
||||
this.xrTableCell1.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 2, 2, 100F);
|
||||
this.xrTableCell1.StylePriority.UseBorderColor = false;
|
||||
this.xrTableCell1.StylePriority.UseBorders = false;
|
||||
this.xrTableCell1.StylePriority.UseFont = false;
|
||||
this.xrTableCell1.StylePriority.UsePadding = false;
|
||||
this.xrTableCell1.StylePriority.UseTextAlignment = false;
|
||||
this.xrTableCell1.Text = "Rechnungsbetrag";
|
||||
this.xrTableCell1.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleLeft;
|
||||
this.xrTableCell1.Weight = 0.62463084211025488D;
|
||||
//
|
||||
// xrTableCell5
|
||||
//
|
||||
this.xrTableCell5.BorderColor = System.Drawing.Color.DarkGray;
|
||||
this.xrTableCell5.Borders = ((DevExpress.XtraPrinting.BorderSide)((DevExpress.XtraPrinting.BorderSide.Right | DevExpress.XtraPrinting.BorderSide.Bottom)));
|
||||
this.xrTableCell5.DataBindings.AddRange(new DevExpress.XtraReports.UI.XRBinding[] {
|
||||
new DevExpress.XtraReports.UI.XRBinding("Text", null, "GrossClaim")});
|
||||
this.xrTableCell5.Font = new System.Drawing.Font("Arial", 11.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
|
||||
this.xrTableCell5.Name = "xrTableCell5";
|
||||
this.xrTableCell5.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 2, 2, 100F);
|
||||
this.xrTableCell5.StylePriority.UseBorderColor = false;
|
||||
this.xrTableCell5.StylePriority.UseBorders = false;
|
||||
this.xrTableCell5.StylePriority.UseFont = false;
|
||||
this.xrTableCell5.StylePriority.UsePadding = false;
|
||||
this.xrTableCell5.StylePriority.UseTextAlignment = false;
|
||||
this.xrTableCell5.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleRight;
|
||||
this.xrTableCell5.Weight = 2.3753687029222492D;
|
||||
//
|
||||
// xrTable6
|
||||
//
|
||||
this.xrTable6.Font = new System.Drawing.Font("Verdana", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
|
||||
@@ -710,7 +570,7 @@ namespace PetraWagnerMatthes
|
||||
this.xrTable6.Name = "xrTable6";
|
||||
this.xrTable6.Rows.AddRange(new DevExpress.XtraReports.UI.XRTableRow[] {
|
||||
this.xrTableRow25});
|
||||
this.xrTable6.SizeF = new System.Drawing.SizeF(677F, 25F);
|
||||
this.xrTable6.SizeF = new System.Drawing.SizeF(582.125F, 25F);
|
||||
this.xrTable6.StylePriority.UseFont = false;
|
||||
//
|
||||
// xrTableRow25
|
||||
@@ -721,7 +581,6 @@ namespace PetraWagnerMatthes
|
||||
this.xrTableCell43,
|
||||
this.xrTableCell44,
|
||||
this.xrTableCell45,
|
||||
this.xrTableCell46,
|
||||
this.xrTableCell47});
|
||||
this.xrTableRow25.Name = "xrTableRow25";
|
||||
this.xrTableRow25.Weight = 1D;
|
||||
@@ -819,24 +678,6 @@ namespace PetraWagnerMatthes
|
||||
this.xrTableCell45.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleRight;
|
||||
this.xrTableCell45.Weight = 0.26310971709438763D;
|
||||
//
|
||||
// xrTableCell46
|
||||
//
|
||||
this.xrTableCell46.BorderColor = System.Drawing.Color.DarkGray;
|
||||
this.xrTableCell46.Borders = ((DevExpress.XtraPrinting.BorderSide)(((DevExpress.XtraPrinting.BorderSide.Left | DevExpress.XtraPrinting.BorderSide.Right)
|
||||
| DevExpress.XtraPrinting.BorderSide.Bottom)));
|
||||
this.xrTableCell46.DataBindings.AddRange(new DevExpress.XtraReports.UI.XRBinding[] {
|
||||
new DevExpress.XtraReports.UI.XRBinding("Text", null, "ServiceInvoicePeriods.ServiceInvoiceItems.RateFactor")});
|
||||
this.xrTableCell46.Font = new System.Drawing.Font("Arial", 9F);
|
||||
this.xrTableCell46.Name = "xrTableCell46";
|
||||
this.xrTableCell46.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 2, 2, 100F);
|
||||
this.xrTableCell46.StylePriority.UseBorderColor = false;
|
||||
this.xrTableCell46.StylePriority.UseBorders = false;
|
||||
this.xrTableCell46.StylePriority.UseFont = false;
|
||||
this.xrTableCell46.StylePriority.UsePadding = false;
|
||||
this.xrTableCell46.StylePriority.UseTextAlignment = false;
|
||||
this.xrTableCell46.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleRight;
|
||||
this.xrTableCell46.Weight = 0.42042083402151886D;
|
||||
//
|
||||
// xrTableCell47
|
||||
//
|
||||
this.xrTableCell47.BorderColor = System.Drawing.Color.DarkGray;
|
||||
@@ -855,77 +696,208 @@ namespace PetraWagnerMatthes
|
||||
this.xrTableCell47.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleRight;
|
||||
this.xrTableCell47.Weight = 0.31923915575667006D;
|
||||
//
|
||||
// xrLabel15
|
||||
// GroupHeader1
|
||||
//
|
||||
this.xrLabel15.Font = new System.Drawing.Font("Arial", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
|
||||
this.xrLabel15.LocationFloat = new DevExpress.Utils.PointFloat(0F, 70.83327F);
|
||||
this.xrLabel15.Name = "xrLabel15";
|
||||
this.xrLabel15.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
|
||||
this.xrLabel15.SizeF = new System.Drawing.SizeF(175F, 17F);
|
||||
this.xrLabel15.StylePriority.UseFont = false;
|
||||
this.xrLabel15.Text = "Mit freundlichen Grüßen";
|
||||
this.GroupHeader1.Controls.AddRange(new DevExpress.XtraReports.UI.XRControl[] {
|
||||
this.xrTable5});
|
||||
this.GroupHeader1.Font = new System.Drawing.Font("Arial", 9F);
|
||||
this.GroupHeader1.HeightF = 25F;
|
||||
this.GroupHeader1.Name = "GroupHeader1";
|
||||
this.GroupHeader1.StylePriority.UseFont = false;
|
||||
//
|
||||
// xrLabel14
|
||||
// xrTable5
|
||||
//
|
||||
this.xrLabel14.DataBindings.AddRange(new DevExpress.XtraReports.UI.XRBinding[] {
|
||||
new DevExpress.XtraReports.UI.XRBinding("Text", null, "CreatorName")});
|
||||
this.xrLabel14.Font = new System.Drawing.Font("Arial", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
|
||||
this.xrLabel14.LocationFloat = new DevExpress.Utils.PointFloat(0F, 145.8333F);
|
||||
this.xrLabel14.Name = "xrLabel14";
|
||||
this.xrLabel14.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
|
||||
this.xrLabel14.SizeF = new System.Drawing.SizeF(225F, 17F);
|
||||
this.xrLabel14.StylePriority.UseFont = false;
|
||||
this.xrLabel14.Text = "[CreatorName]";
|
||||
this.xrTable5.LocationFloat = new DevExpress.Utils.PointFloat(0F, 0F);
|
||||
this.xrTable5.Name = "xrTable5";
|
||||
this.xrTable5.Rows.AddRange(new DevExpress.XtraReports.UI.XRTableRow[] {
|
||||
this.xrTableRow23});
|
||||
this.xrTable5.SizeF = new System.Drawing.SizeF(582.125F, 25F);
|
||||
//
|
||||
// xrTable4
|
||||
// xrTableRow23
|
||||
//
|
||||
this.xrTable4.Font = new System.Drawing.Font("Arial", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
|
||||
this.xrTable4.LocationFloat = new DevExpress.Utils.PointFloat(0F, 24.99994F);
|
||||
this.xrTable4.Name = "xrTable4";
|
||||
this.xrTable4.Rows.AddRange(new DevExpress.XtraReports.UI.XRTableRow[] {
|
||||
this.xrTableRow10,
|
||||
this.xrTableRow14});
|
||||
this.xrTable4.SizeF = new System.Drawing.SizeF(650F, 26F);
|
||||
this.xrTable4.StylePriority.UseFont = false;
|
||||
this.xrTableRow23.Cells.AddRange(new DevExpress.XtraReports.UI.XRTableCell[] {
|
||||
this.xrTableCell32,
|
||||
this.xrTableCell37,
|
||||
this.xrTableCell35,
|
||||
this.xrTableCell33,
|
||||
this.xrTableCell36,
|
||||
this.xrTableCell34});
|
||||
this.xrTableRow23.Name = "xrTableRow23";
|
||||
this.xrTableRow23.Weight = 1D;
|
||||
//
|
||||
// xrTableRow10
|
||||
// xrTableCell32
|
||||
//
|
||||
this.xrTableRow10.Cells.AddRange(new DevExpress.XtraReports.UI.XRTableCell[] {
|
||||
this.xrTableCell6});
|
||||
this.xrTableRow10.Name = "xrTableRow10";
|
||||
this.xrTableRow10.Weight = 0.38095238095238093D;
|
||||
this.xrTableCell32.BackColor = System.Drawing.Color.Gainsboro;
|
||||
this.xrTableCell32.BorderColor = System.Drawing.Color.DarkGray;
|
||||
this.xrTableCell32.Borders = ((DevExpress.XtraPrinting.BorderSide)((((DevExpress.XtraPrinting.BorderSide.Left | DevExpress.XtraPrinting.BorderSide.Top)
|
||||
| DevExpress.XtraPrinting.BorderSide.Right)
|
||||
| DevExpress.XtraPrinting.BorderSide.Bottom)));
|
||||
this.xrTableCell32.Name = "xrTableCell32";
|
||||
this.xrTableCell32.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 2, 2, 100F);
|
||||
this.xrTableCell32.StylePriority.UseBackColor = false;
|
||||
this.xrTableCell32.StylePriority.UseBorderColor = false;
|
||||
this.xrTableCell32.StylePriority.UseBorders = false;
|
||||
this.xrTableCell32.StylePriority.UsePadding = false;
|
||||
this.xrTableCell32.StylePriority.UseTextAlignment = false;
|
||||
this.xrTableCell32.Text = "Zeitraum";
|
||||
this.xrTableCell32.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleLeft;
|
||||
this.xrTableCell32.Weight = 0.62463077449375981D;
|
||||
//
|
||||
// xrTableCell6
|
||||
// xrTableCell37
|
||||
//
|
||||
this.xrTableCell6.DataBindings.AddRange(new DevExpress.XtraReports.UI.XRBinding[] {
|
||||
new DevExpress.XtraReports.UI.XRBinding("Text", null, "Notice")});
|
||||
this.xrTableCell6.Name = "xrTableCell6";
|
||||
this.xrTableCell6.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
|
||||
this.xrTableCell6.StylePriority.UsePadding = false;
|
||||
this.xrTableCell6.Text = "xrTableCell1";
|
||||
this.xrTableCell6.Weight = 3D;
|
||||
this.xrTableCell37.BackColor = System.Drawing.Color.Gainsboro;
|
||||
this.xrTableCell37.BorderColor = System.Drawing.Color.DarkGray;
|
||||
this.xrTableCell37.Borders = ((DevExpress.XtraPrinting.BorderSide)((((DevExpress.XtraPrinting.BorderSide.Left | DevExpress.XtraPrinting.BorderSide.Top)
|
||||
| DevExpress.XtraPrinting.BorderSide.Right)
|
||||
| DevExpress.XtraPrinting.BorderSide.Bottom)));
|
||||
this.xrTableCell37.Name = "xrTableCell37";
|
||||
this.xrTableCell37.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 2, 2, 100F);
|
||||
this.xrTableCell37.StylePriority.UseBackColor = false;
|
||||
this.xrTableCell37.StylePriority.UseBorderColor = false;
|
||||
this.xrTableCell37.StylePriority.UseBorders = false;
|
||||
this.xrTableCell37.StylePriority.UsePadding = false;
|
||||
this.xrTableCell37.StylePriority.UseTextAlignment = false;
|
||||
this.xrTableCell37.Text = "Leistung";
|
||||
this.xrTableCell37.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleLeft;
|
||||
this.xrTableCell37.Weight = 0.85081236260328186D;
|
||||
//
|
||||
// xrTableRow14
|
||||
// xrTableCell35
|
||||
//
|
||||
this.xrTableRow14.Cells.AddRange(new DevExpress.XtraReports.UI.XRTableCell[] {
|
||||
this.xrTableCell7});
|
||||
this.xrTableRow14.Name = "xrTableRow14";
|
||||
this.xrTableRow14.Weight = 0.23809523809523808D;
|
||||
this.xrTableCell35.BackColor = System.Drawing.Color.Gainsboro;
|
||||
this.xrTableCell35.BorderColor = System.Drawing.Color.DarkGray;
|
||||
this.xrTableCell35.Borders = ((DevExpress.XtraPrinting.BorderSide)((((DevExpress.XtraPrinting.BorderSide.Left | DevExpress.XtraPrinting.BorderSide.Top)
|
||||
| DevExpress.XtraPrinting.BorderSide.Right)
|
||||
| DevExpress.XtraPrinting.BorderSide.Bottom)));
|
||||
this.xrTableCell35.Name = "xrTableCell35";
|
||||
this.xrTableCell35.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 2, 2, 100F);
|
||||
this.xrTableCell35.StylePriority.UseBackColor = false;
|
||||
this.xrTableCell35.StylePriority.UseBorderColor = false;
|
||||
this.xrTableCell35.StylePriority.UseBorders = false;
|
||||
this.xrTableCell35.StylePriority.UsePadding = false;
|
||||
this.xrTableCell35.StylePriority.UseTextAlignment = false;
|
||||
this.xrTableCell35.Text = "Satz";
|
||||
this.xrTableCell35.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleRight;
|
||||
this.xrTableCell35.Weight = 0.23245943032832414D;
|
||||
//
|
||||
// xrTableCell7
|
||||
// xrTableCell33
|
||||
//
|
||||
this.xrTableCell7.Name = "xrTableCell7";
|
||||
this.xrTableCell7.Weight = 3D;
|
||||
this.xrTableCell33.BackColor = System.Drawing.Color.Gainsboro;
|
||||
this.xrTableCell33.BorderColor = System.Drawing.Color.DarkGray;
|
||||
this.xrTableCell33.Borders = ((DevExpress.XtraPrinting.BorderSide)((((DevExpress.XtraPrinting.BorderSide.Left | DevExpress.XtraPrinting.BorderSide.Top)
|
||||
| DevExpress.XtraPrinting.BorderSide.Right)
|
||||
| DevExpress.XtraPrinting.BorderSide.Bottom)));
|
||||
this.xrTableCell33.Name = "xrTableCell33";
|
||||
this.xrTableCell33.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 2, 2, 100F);
|
||||
this.xrTableCell33.StylePriority.UseBackColor = false;
|
||||
this.xrTableCell33.StylePriority.UseBorderColor = false;
|
||||
this.xrTableCell33.StylePriority.UseBorders = false;
|
||||
this.xrTableCell33.StylePriority.UsePadding = false;
|
||||
this.xrTableCell33.StylePriority.UseTextAlignment = false;
|
||||
this.xrTableCell33.Text = "Stunden";
|
||||
this.xrTableCell33.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleRight;
|
||||
this.xrTableCell33.Weight = 0.2893277257020575D;
|
||||
//
|
||||
// xrLabel3
|
||||
// xrTableCell36
|
||||
//
|
||||
this.xrLabel3.Font = new System.Drawing.Font("Arial", 9F, System.Drawing.FontStyle.Italic, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
|
||||
this.xrLabel3.LocationFloat = new DevExpress.Utils.PointFloat(0F, 0F);
|
||||
this.xrLabel3.Name = "xrLabel3";
|
||||
this.xrLabel3.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
|
||||
this.xrLabel3.SizeF = new System.Drawing.SizeF(250F, 17F);
|
||||
this.xrLabel3.StylePriority.UseFont = false;
|
||||
this.xrLabel3.Text = "Abschließende Bemerkungen:";
|
||||
this.xrTableCell36.BackColor = System.Drawing.Color.Gainsboro;
|
||||
this.xrTableCell36.BorderColor = System.Drawing.Color.DarkGray;
|
||||
this.xrTableCell36.Borders = ((DevExpress.XtraPrinting.BorderSide)((((DevExpress.XtraPrinting.BorderSide.Left | DevExpress.XtraPrinting.BorderSide.Top)
|
||||
| DevExpress.XtraPrinting.BorderSide.Right)
|
||||
| DevExpress.XtraPrinting.BorderSide.Bottom)));
|
||||
this.xrTableCell36.Name = "xrTableCell36";
|
||||
this.xrTableCell36.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 2, 2, 100F);
|
||||
this.xrTableCell36.StylePriority.UseBackColor = false;
|
||||
this.xrTableCell36.StylePriority.UseBorderColor = false;
|
||||
this.xrTableCell36.StylePriority.UseBorders = false;
|
||||
this.xrTableCell36.StylePriority.UsePadding = false;
|
||||
this.xrTableCell36.StylePriority.UseTextAlignment = false;
|
||||
this.xrTableCell36.Text = "Betrag";
|
||||
this.xrTableCell36.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleRight;
|
||||
this.xrTableCell36.Weight = 0.26310971709438763D;
|
||||
//
|
||||
// xrTableCell34
|
||||
//
|
||||
this.xrTableCell34.BackColor = System.Drawing.Color.Gainsboro;
|
||||
this.xrTableCell34.BorderColor = System.Drawing.Color.DarkGray;
|
||||
this.xrTableCell34.Borders = ((DevExpress.XtraPrinting.BorderSide)((((DevExpress.XtraPrinting.BorderSide.Left | DevExpress.XtraPrinting.BorderSide.Top)
|
||||
| DevExpress.XtraPrinting.BorderSide.Right)
|
||||
| DevExpress.XtraPrinting.BorderSide.Bottom)));
|
||||
this.xrTableCell34.Name = "xrTableCell34";
|
||||
this.xrTableCell34.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 2, 2, 100F);
|
||||
this.xrTableCell34.StylePriority.UseBackColor = false;
|
||||
this.xrTableCell34.StylePriority.UseBorderColor = false;
|
||||
this.xrTableCell34.StylePriority.UseBorders = false;
|
||||
this.xrTableCell34.StylePriority.UsePadding = false;
|
||||
this.xrTableCell34.StylePriority.UseTextAlignment = false;
|
||||
this.xrTableCell34.Text = "Gesamt";
|
||||
this.xrTableCell34.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleRight;
|
||||
this.xrTableCell34.Weight = 0.31923915575667006D;
|
||||
//
|
||||
// GroupFooter1
|
||||
//
|
||||
this.GroupFooter1.Controls.AddRange(new DevExpress.XtraReports.UI.XRControl[] {
|
||||
this.xrTable1});
|
||||
this.GroupFooter1.HeightF = 47.91667F;
|
||||
this.GroupFooter1.Name = "GroupFooter1";
|
||||
//
|
||||
// xrTable1
|
||||
//
|
||||
this.xrTable1.Font = new System.Drawing.Font("Arial", 11F);
|
||||
this.xrTable1.LocationFloat = new DevExpress.Utils.PointFloat(0F, 0F);
|
||||
this.xrTable1.Name = "xrTable1";
|
||||
this.xrTable1.Rows.AddRange(new DevExpress.XtraReports.UI.XRTableRow[] {
|
||||
this.xrTableRow1});
|
||||
this.xrTable1.SizeF = new System.Drawing.SizeF(582.1249F, 25F);
|
||||
this.xrTable1.StylePriority.UseFont = false;
|
||||
//
|
||||
// xrTableRow1
|
||||
//
|
||||
this.xrTableRow1.Cells.AddRange(new DevExpress.XtraReports.UI.XRTableCell[] {
|
||||
this.xrTableCell1,
|
||||
this.xrTableCell5});
|
||||
this.xrTableRow1.Name = "xrTableRow1";
|
||||
this.xrTableRow1.Weight = 1D;
|
||||
//
|
||||
// xrTableCell1
|
||||
//
|
||||
this.xrTableCell1.BorderColor = System.Drawing.Color.DarkGray;
|
||||
this.xrTableCell1.Borders = ((DevExpress.XtraPrinting.BorderSide)((DevExpress.XtraPrinting.BorderSide.Left | DevExpress.XtraPrinting.BorderSide.Bottom)));
|
||||
this.xrTableCell1.Font = new System.Drawing.Font("Arial", 11.25F, System.Drawing.FontStyle.Bold);
|
||||
this.xrTableCell1.Name = "xrTableCell1";
|
||||
this.xrTableCell1.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 2, 2, 100F);
|
||||
this.xrTableCell1.StylePriority.UseBorderColor = false;
|
||||
this.xrTableCell1.StylePriority.UseBorders = false;
|
||||
this.xrTableCell1.StylePriority.UseFont = false;
|
||||
this.xrTableCell1.StylePriority.UsePadding = false;
|
||||
this.xrTableCell1.StylePriority.UseTextAlignment = false;
|
||||
this.xrTableCell1.Text = "Rechnungsbetrag";
|
||||
this.xrTableCell1.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleLeft;
|
||||
this.xrTableCell1.Weight = 0.62463084211025488D;
|
||||
//
|
||||
// xrTableCell5
|
||||
//
|
||||
this.xrTableCell5.BorderColor = System.Drawing.Color.DarkGray;
|
||||
this.xrTableCell5.Borders = ((DevExpress.XtraPrinting.BorderSide)((DevExpress.XtraPrinting.BorderSide.Right | DevExpress.XtraPrinting.BorderSide.Bottom)));
|
||||
this.xrTableCell5.DataBindings.AddRange(new DevExpress.XtraReports.UI.XRBinding[] {
|
||||
new DevExpress.XtraReports.UI.XRBinding("Text", null, "GrossClaim")});
|
||||
this.xrTableCell5.Font = new System.Drawing.Font("Arial", 11.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
|
||||
this.xrTableCell5.Name = "xrTableCell5";
|
||||
this.xrTableCell5.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 2, 2, 100F);
|
||||
this.xrTableCell5.StylePriority.UseBorderColor = false;
|
||||
this.xrTableCell5.StylePriority.UseBorders = false;
|
||||
this.xrTableCell5.StylePriority.UseFont = false;
|
||||
this.xrTableCell5.StylePriority.UsePadding = false;
|
||||
this.xrTableCell5.StylePriority.UseTextAlignment = false;
|
||||
this.xrTableCell5.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleRight;
|
||||
this.xrTableCell5.Weight = 1.9549473860934157D;
|
||||
//
|
||||
// xrPictureBox1
|
||||
//
|
||||
this.xrPictureBox1.Image = ((System.Drawing.Image)(resources.GetObject("xrPictureBox1.Image")));
|
||||
this.xrPictureBox1.LocationFloat = new DevExpress.Utils.PointFloat(0F, 112.0833F);
|
||||
this.xrPictureBox1.Name = "xrPictureBox1";
|
||||
this.xrPictureBox1.SizeF = new System.Drawing.SizeF(192.3493F, 33.74997F);
|
||||
this.xrPictureBox1.Sizing = DevExpress.XtraPrinting.ImageSizeMode.ZoomImage;
|
||||
//
|
||||
// bindingSource1
|
||||
//
|
||||
@@ -953,10 +925,10 @@ namespace PetraWagnerMatthes
|
||||
this.Version = "17.1";
|
||||
((System.ComponentModel.ISupportInitialize)(this.xrTable2)).EndInit();
|
||||
((System.ComponentModel.ISupportInitialize)(this.xrRichText2)).EndInit();
|
||||
((System.ComponentModel.ISupportInitialize)(this.xrTable4)).EndInit();
|
||||
((System.ComponentModel.ISupportInitialize)(this.xrTable6)).EndInit();
|
||||
((System.ComponentModel.ISupportInitialize)(this.xrTable5)).EndInit();
|
||||
((System.ComponentModel.ISupportInitialize)(this.xrTable1)).EndInit();
|
||||
((System.ComponentModel.ISupportInitialize)(this.xrTable6)).EndInit();
|
||||
((System.ComponentModel.ISupportInitialize)(this.xrTable4)).EndInit();
|
||||
((System.ComponentModel.ISupportInitialize)(this.bindingSource1)).EndInit();
|
||||
((System.ComponentModel.ISupportInitialize)(this)).EndInit();
|
||||
|
||||
@@ -1009,7 +981,6 @@ namespace PetraWagnerMatthes
|
||||
private DevExpress.XtraReports.UI.XRTableCell xrTableCell35;
|
||||
private DevExpress.XtraReports.UI.XRTableCell xrTableCell33;
|
||||
private DevExpress.XtraReports.UI.XRTableCell xrTableCell36;
|
||||
private DevExpress.XtraReports.UI.XRTableCell xrTableCell38;
|
||||
private DevExpress.XtraReports.UI.XRTableCell xrTableCell34;
|
||||
private DevExpress.XtraReports.UI.XRTable xrTable6;
|
||||
private DevExpress.XtraReports.UI.XRTableRow xrTableRow25;
|
||||
@@ -1018,7 +989,6 @@ namespace PetraWagnerMatthes
|
||||
private DevExpress.XtraReports.UI.XRTableCell xrTableCell43;
|
||||
private DevExpress.XtraReports.UI.XRTableCell xrTableCell44;
|
||||
private DevExpress.XtraReports.UI.XRTableCell xrTableCell45;
|
||||
private DevExpress.XtraReports.UI.XRTableCell xrTableCell46;
|
||||
private DevExpress.XtraReports.UI.XRTableCell xrTableCell47;
|
||||
private DevExpress.XtraReports.UI.XRLabel xrLabel15;
|
||||
private DevExpress.XtraReports.UI.XRLabel xrLabel14;
|
||||
@@ -1028,5 +998,6 @@ namespace PetraWagnerMatthes
|
||||
private DevExpress.XtraReports.UI.XRTableRow xrTableRow14;
|
||||
private DevExpress.XtraReports.UI.XRTableCell xrTableCell7;
|
||||
private DevExpress.XtraReports.UI.XRLabel xrLabel3;
|
||||
private DevExpress.XtraReports.UI.XRPictureBox xrPictureBox1;
|
||||
}
|
||||
}
|
||||
|
||||
@@ -58,6 +58,10 @@ namespace PetraWagnerMatthes
|
||||
lblAbrechnungszeitraum.Text = String.Format("hiermit berechnen wir für den Zeitraum {0:MMMM yyyy} - {1:MMMM yyyy} folgende erbrachte Tätigkeiten:", start, end);
|
||||
}
|
||||
|
||||
if (pRO.CreatorName == null || !pRO.CreatorName.StartsWith("Petra Wagner"))
|
||||
{
|
||||
xrPictureBox1.Visible = false;
|
||||
}
|
||||
|
||||
// decimal hours = 0;
|
||||
//if (pRO.ServiceInvoicePeriods != null)
|
||||
|
||||
@@ -120,6 +120,412 @@
|
||||
<data name="xrRichText2.SerializableRtfString" xml:space="preserve">
|
||||
<value>ewBcAHIAdABmADEAXABkAGUAZgBmADAAewBcAGYAbwBuAHQAdABiAGwAewBcAGYAMAAgAEMAYQBsAGkAYgByAGkAOwB9AHsAXABmADEAIABUAGkAbQBlAHMAIABOAGUAdwAgAFIAbwBtAGEAbgA7AH0AewBcAGYAMgAgAEEAcgBpAGEAbAA7AH0AfQB7AFwAYwBvAGwAbwByAHQAYgBsACAAOwBcAHIAZQBkADAAXABnAHIAZQBlAG4AMABcAGIAbAB1AGUAMAAgADsAXAByAGUAZAAwAFwAZwByAGUAZQBuADAAXABiAGwAdQBlADIANQA1ACAAOwB9AHsAXAAqAFwAZABlAGYAYwBoAHAAIABcAGYAMQBcAGYAcwAyADQAfQB7AFwAcwB0AHkAbABlAHMAaABlAGUAdAAgAHsAXABxAGwAXABmADEAXABmAHMAMgA0ACAATgBvAHIAbQBhAGwAOwB9AHsAXAAqAFwAYwBzADEAXABmADEAXABmAHMAMgA0AFwAYwBmADEAIABEAGUAZgBhAHUAbAB0ACAAUABhAHIAYQBnAHIAYQBwAGgAIABGAG8AbgB0ADsAfQB7AFwAKgBcAGMAcwAyAFwAcwBiAGEAcwBlAGQAbwBuADEAXABmADEAXABmAHMAMgA0AFwAYwBmADEAIABMAGkAbgBlACAATgB1AG0AYgBlAHIAOwB9AHsAXAAqAFwAYwBzADMAXAB1AGwAXABmADEAXABmAHMAMgA0AFwAYwBmADIAIABIAHkAcABlAHIAbABpAG4AawA7AH0AewBcACoAXAB0AHMANABcAHQAcwByAG8AdwBkAFwAZgAxAFwAZgBzADIANABcAHEAbABcAHQAcwBjAGUAbABsAHAAYQBkAGQAZgBsADMAXAB0AHMAYwBlAGwAbABwAGEAZABkAGwAMQAwADgAXAB0AHMAYwBlAGwAbABwAGEAZABkAGYAYgAzAFwAdABzAGMAZQBsAGwAcABhAGQAZABmAHIAMwBcAHQAcwBjAGUAbABsAHAAYQBkAGQAcgAxADAAOABcAHQAcwBjAGUAbABsAHAAYQBkAGQAZgB0ADMAXAB0AHMAdgBlAHIAdABhAGwAdABcAGMAbAB0AHgAbAByAHQAYgAgAE4AbwByAG0AYQBsACAAVABhAGIAbABlADsAfQB7AFwAKgBcAHQAcwA1AFwAdABzAHIAbwB3AGQAXABzAGIAYQBzAGUAZABvAG4ANABcAGYAMQBcAGYAcwAyADQAXABxAGwAXAB0AHIAYgByAGQAcgB0AFwAYgByAGQAcgBzAFwAYgByAGQAcgB3ADEAMABcAHQAcgBiAHIAZAByAGwAXABiAHIAZAByAHMAXABiAHIAZAByAHcAMQAwAFwAdAByAGIAcgBkAHIAYgBcAGIAcgBkAHIAcwBcAGIAcgBkAHIAdwAxADAAXAB0AHIAYgByAGQAcgByAFwAYgByAGQAcgBzAFwAYgByAGQAcgB3ADEAMABcAHQAcgBiAHIAZAByAGgAXABiAHIAZAByAHMAXABiAHIAZAByAHcAMQAwAFwAdAByAGIAcgBkAHIAdgBcAGIAcgBkAHIAcwBcAGIAcgBkAHIAdwAxADAAXAB0AHMAYwBlAGwAbABwAGEAZABkAGYAbAAzAFwAdABzAGMAZQBsAGwAcABhAGQAZABsADEAMAA4AFwAdABzAGMAZQBsAGwAcABhAGQAZABmAHIAMwBcAHQAcwBjAGUAbABsAHAAYQBkAGQAcgAxADAAOABcAHQAcwB2AGUAcgB0AGEAbAB0AFwAYwBsAHQAeABsAHIAdABiACAAVABhAGIAbABlACAAUwBpAG0AcABsAGUAIAAxADsAfQB9AHsAXAAqAFwAbABpAHMAdABvAHYAZQByAHIAaQBkAGUAdABhAGIAbABlAH0AXABuAG8AdQBpAGMAbwBtAHAAYQB0AFwAcwBwAGwAeQB0AHcAbgBpAG4AZQBcAGgAdABtAGEAdQB0AHMAcABcAHAAYQByAGQAXABwAGwAYQBpAG4AXABxAGwAXABzAGwAMwA2ADAAXABzAGwAbQB1AGwAdAAxAHsAXABsAGEAbgBnADEAMAAzADEAXABsAGEAbgBnAGYAZQAxADAAMwAxAFwAZgAyAFwAZgBzADEANgBcAGMAZgAxACAAUABlAHQAcgBhACAAVwBhAGcAbgBlAHIALQBNAGEAdAB0AGgAZQBzACAALQAgACAARAB1AGkAcwBiAHUAcgBnAGUAcgAgAFMAfQB7AFwAbABhAG4AZwAxADAAMwAxAFwAbABhAG4AZwBmAGUAMQAwADMAMQBcAGYAMgBcAGYAcwAxADYAXABjAGYAMQAgAHQAcgAuACAANwA3ACAALQAgADQANwAxADYANgAgAEQAdQBpAHMAYgB1AHIAZwB9AFwAbABhAG4AZwAxADAAMwAxAFwAbABhAG4AZwBmAGUAMQAwADMAMQBcAGYAMQBcAGYAcwAyADQAXABjAGYAMQBcAHAAYQByAH0A</value>
|
||||
</data>
|
||||
<assembly alias="System.Drawing" name="System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" />
|
||||
<data name="xrPictureBox1.Image" type="System.Drawing.Bitmap, System.Drawing" mimetype="application/x-microsoft.net.object.bytearray.base64">
|
||||
<value>
|
||||
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
|
||||
</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>
|
||||
|
||||
@@ -457,20 +457,20 @@ namespace PetraWagnerMatthes
|
||||
// xrLabel12
|
||||
//
|
||||
this.xrLabel12.Font = new System.Drawing.Font("Arial", 9.75F, System.Drawing.FontStyle.Bold);
|
||||
this.xrLabel12.LocationFloat = new DevExpress.Utils.PointFloat(0F, 57.54169F);
|
||||
this.xrLabel12.LocationFloat = new DevExpress.Utils.PointFloat(0F, 68.54169F);
|
||||
this.xrLabel12.Name = "xrLabel12";
|
||||
this.xrLabel12.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
|
||||
this.xrLabel12.SizeF = new System.Drawing.SizeF(119.7922F, 20F);
|
||||
this.xrLabel12.SizeF = new System.Drawing.SizeF(115F, 20F);
|
||||
this.xrLabel12.StylePriority.UseFont = false;
|
||||
this.xrLabel12.Text = "Klient/-in:";
|
||||
//
|
||||
// xrLabel23
|
||||
//
|
||||
this.xrLabel23.Font = new System.Drawing.Font("Arial", 10F);
|
||||
this.xrLabel23.LocationFloat = new DevExpress.Utils.PointFloat(119.7922F, 57.54169F);
|
||||
this.xrLabel23.LocationFloat = new DevExpress.Utils.PointFloat(115F, 68.54169F);
|
||||
this.xrLabel23.Name = "xrLabel23";
|
||||
this.xrLabel23.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
|
||||
this.xrLabel23.SizeF = new System.Drawing.SizeF(358.2291F, 20F);
|
||||
this.xrLabel23.SizeF = new System.Drawing.SizeF(328.1972F, 20F);
|
||||
this.xrLabel23.StylePriority.UseBorders = false;
|
||||
this.xrLabel23.StylePriority.UseFont = false;
|
||||
this.xrLabel23.Text = "[CustomerFirstName] [CustomerLastName] (*[CustomerBirthday!dd.MM.yyyy])";
|
||||
@@ -499,30 +499,30 @@ namespace PetraWagnerMatthes
|
||||
this.xrLabel3.DataBindings.AddRange(new DevExpress.XtraReports.UI.XRBinding[] {
|
||||
new DevExpress.XtraReports.UI.XRBinding("Text", null, "CostBearer2SupportConceptList.SupportConcept.Customer.InsuranceNumber")});
|
||||
this.xrLabel3.Font = new System.Drawing.Font("Arial", 10F);
|
||||
this.xrLabel3.LocationFloat = new DevExpress.Utils.PointFloat(598.1255F, 82.54169F);
|
||||
this.xrLabel3.LocationFloat = new DevExpress.Utils.PointFloat(601.1973F, 91.54167F);
|
||||
this.xrLabel3.Name = "xrLabel3";
|
||||
this.xrLabel3.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
|
||||
this.xrLabel3.SizeF = new System.Drawing.SizeF(191.041F, 19.99998F);
|
||||
this.xrLabel3.SizeF = new System.Drawing.SizeF(210.1088F, 19.99998F);
|
||||
this.xrLabel3.StylePriority.UseFont = false;
|
||||
this.xrLabel3.Text = "xrLabel3";
|
||||
//
|
||||
// xrLabel15
|
||||
//
|
||||
this.xrLabel15.Font = new System.Drawing.Font("Arial", 10F);
|
||||
this.xrLabel15.LocationFloat = new DevExpress.Utils.PointFloat(857.6878F, 57.54169F);
|
||||
this.xrLabel15.LocationFloat = new DevExpress.Utils.PointFloat(843.4924F, 68.54167F);
|
||||
this.xrLabel15.Name = "xrLabel15";
|
||||
this.xrLabel15.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
|
||||
this.xrLabel15.SizeF = new System.Drawing.SizeF(192.3121F, 25F);
|
||||
this.xrLabel15.SizeF = new System.Drawing.SizeF(192.3121F, 19.99998F);
|
||||
this.xrLabel15.StylePriority.UseFont = false;
|
||||
this.xrLabel15.Text = "490506307";
|
||||
//
|
||||
// xrLabel5
|
||||
//
|
||||
this.xrLabel5.Font = new System.Drawing.Font("Arial", 10F);
|
||||
this.xrLabel5.LocationFloat = new DevExpress.Utils.PointFloat(598.1255F, 57.54169F);
|
||||
this.xrLabel5.LocationFloat = new DevExpress.Utils.PointFloat(601.1973F, 68.54167F);
|
||||
this.xrLabel5.Name = "xrLabel5";
|
||||
this.xrLabel5.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
|
||||
this.xrLabel5.SizeF = new System.Drawing.SizeF(191.041F, 25F);
|
||||
this.xrLabel5.SizeF = new System.Drawing.SizeF(210.1088F, 20F);
|
||||
this.xrLabel5.StylePriority.UseBorders = false;
|
||||
this.xrLabel5.StylePriority.UseFont = false;
|
||||
this.xrLabel5.Text = "[StartDate!dd.MM.yyyy] - [EndDate!dd.MM.yyyy]";
|
||||
@@ -530,30 +530,30 @@ namespace PetraWagnerMatthes
|
||||
// xrLabel2
|
||||
//
|
||||
this.xrLabel2.Font = new System.Drawing.Font("Arial", 9.75F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
|
||||
this.xrLabel2.LocationFloat = new DevExpress.Utils.PointFloat(494.1876F, 82.54169F);
|
||||
this.xrLabel2.LocationFloat = new DevExpress.Utils.PointFloat(443.1973F, 91.54169F);
|
||||
this.xrLabel2.Name = "xrLabel2";
|
||||
this.xrLabel2.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
|
||||
this.xrLabel2.SizeF = new System.Drawing.SizeF(103.9379F, 20F);
|
||||
this.xrLabel2.SizeF = new System.Drawing.SizeF(158.0001F, 20F);
|
||||
this.xrLabel2.StylePriority.UseFont = false;
|
||||
this.xrLabel2.Text = "Aktenzeichen:";
|
||||
this.xrLabel2.Text = "Versicherungsnummer:";
|
||||
//
|
||||
// xrLabel16
|
||||
//
|
||||
this.xrLabel16.Font = new System.Drawing.Font("Arial", 9.75F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
|
||||
this.xrLabel16.LocationFloat = new DevExpress.Utils.PointFloat(494.1876F, 57.54169F);
|
||||
this.xrLabel16.LocationFloat = new DevExpress.Utils.PointFloat(443.1973F, 68.54169F);
|
||||
this.xrLabel16.Name = "xrLabel16";
|
||||
this.xrLabel16.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
|
||||
this.xrLabel16.SizeF = new System.Drawing.SizeF(103.9379F, 25F);
|
||||
this.xrLabel16.SizeF = new System.Drawing.SizeF(158F, 20F);
|
||||
this.xrLabel16.StylePriority.UseFont = false;
|
||||
this.xrLabel16.Text = "Zeitraum:";
|
||||
//
|
||||
// xrLabel13
|
||||
//
|
||||
this.xrLabel13.Font = new System.Drawing.Font("Arial", 9.75F, System.Drawing.FontStyle.Bold);
|
||||
this.xrLabel13.LocationFloat = new DevExpress.Utils.PointFloat(0.0005086263F, 77.5417F);
|
||||
this.xrLabel13.LocationFloat = new DevExpress.Utils.PointFloat(0.0004849191F, 91.54169F);
|
||||
this.xrLabel13.Name = "xrLabel13";
|
||||
this.xrLabel13.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
|
||||
this.xrLabel13.SizeF = new System.Drawing.SizeF(119.7917F, 25F);
|
||||
this.xrLabel13.SizeF = new System.Drawing.SizeF(114.9995F, 20.00001F);
|
||||
this.xrLabel13.StylePriority.UseFont = false;
|
||||
this.xrLabel13.Text = "Leistungsträger:";
|
||||
//
|
||||
@@ -562,27 +562,27 @@ namespace PetraWagnerMatthes
|
||||
this.xrLabel14.DataBindings.AddRange(new DevExpress.XtraReports.UI.XRBinding[] {
|
||||
new DevExpress.XtraReports.UI.XRBinding("Text", null, "Services.CostBearer")});
|
||||
this.xrLabel14.Font = new System.Drawing.Font("Arial", 10F);
|
||||
this.xrLabel14.LocationFloat = new DevExpress.Utils.PointFloat(119.7922F, 77.5417F);
|
||||
this.xrLabel14.LocationFloat = new DevExpress.Utils.PointFloat(115F, 91.54169F);
|
||||
this.xrLabel14.Name = "xrLabel14";
|
||||
this.xrLabel14.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
|
||||
this.xrLabel14.SizeF = new System.Drawing.SizeF(358.2291F, 25F);
|
||||
this.xrLabel14.SizeF = new System.Drawing.SizeF(328.1972F, 19.99998F);
|
||||
this.xrLabel14.StylePriority.UseBorders = false;
|
||||
this.xrLabel14.StylePriority.UseFont = false;
|
||||
//
|
||||
// lblIkNr
|
||||
//
|
||||
this.lblIkNr.Font = new System.Drawing.Font("Arial", 9.75F, System.Drawing.FontStyle.Bold);
|
||||
this.lblIkNr.LocationFloat = new DevExpress.Utils.PointFloat(801.6666F, 57.54169F);
|
||||
this.lblIkNr.LocationFloat = new DevExpress.Utils.PointFloat(811.3061F, 68.54167F);
|
||||
this.lblIkNr.Name = "lblIkNr";
|
||||
this.lblIkNr.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
|
||||
this.lblIkNr.SizeF = new System.Drawing.SizeF(56.02124F, 25F);
|
||||
this.lblIkNr.SizeF = new System.Drawing.SizeF(32.18628F, 20F);
|
||||
this.lblIkNr.StylePriority.UseFont = false;
|
||||
this.lblIkNr.Text = "IK: ";
|
||||
//
|
||||
// xrLabel1
|
||||
//
|
||||
this.xrLabel1.Font = new System.Drawing.Font("Arial", 14F, System.Drawing.FontStyle.Bold);
|
||||
this.xrLabel1.LocationFloat = new DevExpress.Utils.PointFloat(0.0005086263F, 37.54168F);
|
||||
this.xrLabel1.LocationFloat = new DevExpress.Utils.PointFloat(0.0005086263F, 33.54168F);
|
||||
this.xrLabel1.Name = "xrLabel1";
|
||||
this.xrLabel1.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
|
||||
this.xrLabel1.SizeF = new System.Drawing.SizeF(199.9995F, 20F);
|
||||
|
||||
@@ -28,7 +28,6 @@ namespace PetraWagnerMatthes
|
||||
/// </summary>
|
||||
private void InitializeComponent()
|
||||
{
|
||||
this.components = new System.ComponentModel.Container();
|
||||
System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(SoziotherapieRechnung));
|
||||
this.Detail = new DevExpress.XtraReports.UI.DetailBand();
|
||||
this.ReportHeader = new DevExpress.XtraReports.UI.ReportHeaderBand();
|
||||
@@ -93,7 +92,7 @@ namespace PetraWagnerMatthes
|
||||
this.xrTableCell3 = new DevExpress.XtraReports.UI.XRTableCell();
|
||||
this.xrTableCell4 = new DevExpress.XtraReports.UI.XRTableCell();
|
||||
this.xrTableCell5 = new DevExpress.XtraReports.UI.XRTableCell();
|
||||
this.bindingSource1 = new System.Windows.Forms.BindingSource(this.components);
|
||||
this.bindingSource1 = new System.Windows.Forms.BindingSource();
|
||||
((System.ComponentModel.ISupportInitialize)(this.xrTable2)).BeginInit();
|
||||
((System.ComponentModel.ISupportInitialize)(this.xrRichText2)).BeginInit();
|
||||
((System.ComponentModel.ISupportInitialize)(this.xrTable6)).BeginInit();
|
||||
@@ -165,7 +164,8 @@ namespace PetraWagnerMatthes
|
||||
this.xrLabel21.StylePriority.UseBackColor = false;
|
||||
this.xrLabel21.StylePriority.UseFont = false;
|
||||
this.xrLabel21.StylePriority.UseForeColor = false;
|
||||
this.xrLabel21.Text = "Geschäftsführer\r\nPetra Wagner-Matthes";
|
||||
this.xrLabel21.Text = "Geschäftsführer\r\nPetra Wagner-Matthes\r\nSteuernummer 107/51583244 Finanzamt Duisbu" +
|
||||
"rg-Hamborn";
|
||||
//
|
||||
// xrLabel19
|
||||
//
|
||||
@@ -472,7 +472,7 @@ namespace PetraWagnerMatthes
|
||||
this.xrLabel1.Multiline = true;
|
||||
this.xrLabel1.Name = "xrLabel1";
|
||||
this.xrLabel1.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
|
||||
this.xrLabel1.SizeF = new System.Drawing.SizeF(267.7083F, 138.5833F);
|
||||
this.xrLabel1.SizeF = new System.Drawing.SizeF(267.7083F, 150.0417F);
|
||||
this.xrLabel1.StylePriority.UseFont = false;
|
||||
this.xrLabel1.Text = "Soziotherapie Petra Wagner-Matthes\r\n\r\nDuisburger Straße 77\r\n47166 Duisburg\r\n\r\nTel" +
|
||||
"efon:\t0203-36928901\r\nFax:\t0203-36928903\r\nMail:\tinfo@alltagsmeister-duisburg.de";
|
||||
|
||||
@@ -36,6 +36,8 @@ namespace SPZRatingen
|
||||
this.ruleRateFactorNull = new DevExpress.XtraReports.UI.FormattingRule();
|
||||
this.topMarginBand1 = new DevExpress.XtraReports.UI.TopMarginBand();
|
||||
this.bottomMarginBand1 = new DevExpress.XtraReports.UI.BottomMarginBand();
|
||||
this.xrLabel17 = new DevExpress.XtraReports.UI.XRLabel();
|
||||
this.xrLabel21 = new DevExpress.XtraReports.UI.XRLabel();
|
||||
this.xrLabel23 = new DevExpress.XtraReports.UI.XRLabel();
|
||||
this.xrLabel22 = new DevExpress.XtraReports.UI.XRLabel();
|
||||
this.xrLabel19 = new DevExpress.XtraReports.UI.XRLabel();
|
||||
@@ -73,8 +75,6 @@ namespace SPZRatingen
|
||||
this.xrLabel28 = new DevExpress.XtraReports.UI.XRLabel();
|
||||
this.lblSum = new DevExpress.XtraReports.UI.XRLabel();
|
||||
this.bindingSource1 = new System.Windows.Forms.BindingSource(this.components);
|
||||
this.xrLabel17 = new DevExpress.XtraReports.UI.XRLabel();
|
||||
this.xrLabel21 = new DevExpress.XtraReports.UI.XRLabel();
|
||||
((System.ComponentModel.ISupportInitialize)(this.xrRichText2)).BeginInit();
|
||||
((System.ComponentModel.ISupportInitialize)(this.xrRichText1)).BeginInit();
|
||||
((System.ComponentModel.ISupportInitialize)(this.bindingSource1)).BeginInit();
|
||||
@@ -114,33 +114,62 @@ namespace SPZRatingen
|
||||
this.xrLabel22,
|
||||
this.xrLabel19});
|
||||
this.bottomMarginBand1.Font = new System.Drawing.Font("Arial", 7F);
|
||||
this.bottomMarginBand1.HeightF = 78.12488F;
|
||||
this.bottomMarginBand1.HeightF = 74.53239F;
|
||||
this.bottomMarginBand1.Name = "bottomMarginBand1";
|
||||
this.bottomMarginBand1.StylePriority.UseFont = false;
|
||||
//
|
||||
// xrLabel17
|
||||
//
|
||||
this.xrLabel17.BackColor = System.Drawing.Color.Transparent;
|
||||
this.xrLabel17.ForeColor = System.Drawing.Color.Gray;
|
||||
this.xrLabel17.LocationFloat = new DevExpress.Utils.PointFloat(0F, 0F);
|
||||
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(182F, 56.25F);
|
||||
this.xrLabel17.StylePriority.UseBackColor = false;
|
||||
this.xrLabel17.StylePriority.UseFont = false;
|
||||
this.xrLabel17.StylePriority.UseForeColor = false;
|
||||
this.xrLabel17.Text = "Sozialpsychiatrisches Zentrum Ratingen\r\ngemeinnützige GmbH\r\nDüsseldorfer Straße 3" +
|
||||
"6 c\r\n40878 Ratingen";
|
||||
//
|
||||
// xrLabel21
|
||||
//
|
||||
this.xrLabel21.BackColor = System.Drawing.Color.Transparent;
|
||||
this.xrLabel21.ForeColor = System.Drawing.Color.Gray;
|
||||
this.xrLabel21.LocationFloat = new DevExpress.Utils.PointFloat(182F, 0F);
|
||||
this.xrLabel21.Multiline = true;
|
||||
this.xrLabel21.Name = "xrLabel21";
|
||||
this.xrLabel21.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
|
||||
this.xrLabel21.SizeF = new System.Drawing.SizeF(98.49803F, 56.24988F);
|
||||
this.xrLabel21.StylePriority.UseBackColor = false;
|
||||
this.xrLabel21.StylePriority.UseFont = false;
|
||||
this.xrLabel21.StylePriority.UseForeColor = false;
|
||||
this.xrLabel21.Text = "Geschäftsführerin\r\nHendrikje Rannoch";
|
||||
//
|
||||
// xrLabel23
|
||||
//
|
||||
this.xrLabel23.BackColor = System.Drawing.Color.Transparent;
|
||||
this.xrLabel23.ForeColor = System.Drawing.Color.Gray;
|
||||
this.xrLabel23.LocationFloat = new DevExpress.Utils.PointFloat(386.373F, 0F);
|
||||
this.xrLabel23.LocationFloat = new DevExpress.Utils.PointFloat(370.498F, 0F);
|
||||
this.xrLabel23.Multiline = true;
|
||||
this.xrLabel23.Name = "xrLabel23";
|
||||
this.xrLabel23.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
|
||||
this.xrLabel23.SizeF = new System.Drawing.SizeF(99F, 77F);
|
||||
this.xrLabel23.SizeF = new System.Drawing.SizeF(98.99997F, 56.25002F);
|
||||
this.xrLabel23.StylePriority.UseBackColor = false;
|
||||
this.xrLabel23.StylePriority.UseFont = false;
|
||||
this.xrLabel23.StylePriority.UseForeColor = false;
|
||||
this.xrLabel23.Text = "Steuernummer\r\n147/5755/0391\r\nFinanzamt\r\nDüsseldorf-\r\nMettmann";
|
||||
this.xrLabel23.Text = "Steuernummer\r\n147/5755/0391\r\nFinanzamt\r\nDüsseldorf-Mettmann";
|
||||
//
|
||||
// xrLabel22
|
||||
//
|
||||
this.xrLabel22.BackColor = System.Drawing.Color.Transparent;
|
||||
this.xrLabel22.ForeColor = System.Drawing.Color.Gray;
|
||||
this.xrLabel22.LocationFloat = new DevExpress.Utils.PointFloat(289.498F, 0F);
|
||||
this.xrLabel22.LocationFloat = new DevExpress.Utils.PointFloat(280.498F, 0F);
|
||||
this.xrLabel22.Multiline = true;
|
||||
this.xrLabel22.Name = "xrLabel22";
|
||||
this.xrLabel22.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
|
||||
this.xrLabel22.SizeF = new System.Drawing.SizeF(96.87509F, 56.24988F);
|
||||
this.xrLabel22.SizeF = new System.Drawing.SizeF(90F, 56.25F);
|
||||
this.xrLabel22.StylePriority.UseBackColor = false;
|
||||
this.xrLabel22.StylePriority.UseFont = false;
|
||||
this.xrLabel22.StylePriority.UseForeColor = false;
|
||||
@@ -150,11 +179,11 @@ namespace SPZRatingen
|
||||
//
|
||||
this.xrLabel19.BackColor = System.Drawing.Color.Transparent;
|
||||
this.xrLabel19.ForeColor = System.Drawing.Color.Gray;
|
||||
this.xrLabel19.LocationFloat = new DevExpress.Utils.PointFloat(486.3725F, 0F);
|
||||
this.xrLabel19.LocationFloat = new DevExpress.Utils.PointFloat(469.4979F, 0F);
|
||||
this.xrLabel19.Multiline = true;
|
||||
this.xrLabel19.Name = "xrLabel19";
|
||||
this.xrLabel19.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
|
||||
this.xrLabel19.SizeF = new System.Drawing.SizeF(189.6275F, 78.12488F);
|
||||
this.xrLabel19.SizeF = new System.Drawing.SizeF(180F, 56.25F);
|
||||
this.xrLabel19.StylePriority.UseBackColor = false;
|
||||
this.xrLabel19.StylePriority.UseFont = false;
|
||||
this.xrLabel19.StylePriority.UseForeColor = false;
|
||||
@@ -338,7 +367,7 @@ namespace SPZRatingen
|
||||
//
|
||||
this.xrLabel24.BackColor = System.Drawing.Color.Transparent;
|
||||
this.xrLabel24.Font = new System.Drawing.Font("Arial", 9.75F, System.Drawing.FontStyle.Bold);
|
||||
this.xrLabel24.LocationFloat = new DevExpress.Utils.PointFloat(245.8333F, 82.29173F);
|
||||
this.xrLabel24.LocationFloat = new DevExpress.Utils.PointFloat(245.8333F, 73.29173F);
|
||||
this.xrLabel24.Multiline = true;
|
||||
this.xrLabel24.Name = "xrLabel24";
|
||||
this.xrLabel24.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
|
||||
@@ -580,35 +609,6 @@ namespace SPZRatingen
|
||||
//
|
||||
this.bindingSource1.DataSource = typeof(BeWo.Report.ReportObjects.ServiceInvoiceRO);
|
||||
//
|
||||
// xrLabel17
|
||||
//
|
||||
this.xrLabel17.BackColor = System.Drawing.Color.Transparent;
|
||||
this.xrLabel17.ForeColor = System.Drawing.Color.Gray;
|
||||
this.xrLabel17.LocationFloat = new DevExpress.Utils.PointFloat(0F, 0F);
|
||||
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(190F, 56.25F);
|
||||
this.xrLabel17.StylePriority.UseBackColor = false;
|
||||
this.xrLabel17.StylePriority.UseFont = false;
|
||||
this.xrLabel17.StylePriority.UseForeColor = false;
|
||||
this.xrLabel17.Text = "Sozialpsychiatrisches Zentrum Ratingen\r\ngemeinnützige GmbH\r\nDüsseldorfer Straße 3" +
|
||||
"6 c\r\n40878 Ratingen";
|
||||
//
|
||||
// xrLabel21
|
||||
//
|
||||
this.xrLabel21.BackColor = System.Drawing.Color.Transparent;
|
||||
this.xrLabel21.ForeColor = System.Drawing.Color.Gray;
|
||||
this.xrLabel21.LocationFloat = new DevExpress.Utils.PointFloat(189.9999F, 0F);
|
||||
this.xrLabel21.Multiline = true;
|
||||
this.xrLabel21.Name = "xrLabel21";
|
||||
this.xrLabel21.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
|
||||
this.xrLabel21.SizeF = new System.Drawing.SizeF(98.49803F, 56.24988F);
|
||||
this.xrLabel21.StylePriority.UseBackColor = false;
|
||||
this.xrLabel21.StylePriority.UseFont = false;
|
||||
this.xrLabel21.StylePriority.UseForeColor = false;
|
||||
this.xrLabel21.Text = "Geschäftsführerin\r\nHendrikje Rannoch";
|
||||
//
|
||||
// ServiceInvoiceReport
|
||||
//
|
||||
this.Bands.AddRange(new DevExpress.XtraReports.UI.Band[] {
|
||||
@@ -625,7 +625,7 @@ namespace SPZRatingen
|
||||
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(100, 50, 185, 78);
|
||||
this.Margins = new System.Drawing.Printing.Margins(100, 50, 185, 75);
|
||||
this.PageHeight = 1169;
|
||||
this.PageWidth = 827;
|
||||
this.PaperKind = System.Drawing.Printing.PaperKind.A4;
|
||||
|
||||
226
ReportImp/SPZRatingen/SettlementReport.Designer.cs
generated
226
ReportImp/SPZRatingen/SettlementReport.Designer.cs
generated
@@ -77,11 +77,6 @@ namespace SPZRatingen.Alt
|
||||
this.ruleRateFactorNull = new DevExpress.XtraReports.UI.FormattingRule();
|
||||
this.topMarginBand1 = new DevExpress.XtraReports.UI.TopMarginBand();
|
||||
this.bottomMarginBand1 = new DevExpress.XtraReports.UI.BottomMarginBand();
|
||||
this.xrLabel17 = new DevExpress.XtraReports.UI.XRLabel();
|
||||
this.xrLabel21 = new DevExpress.XtraReports.UI.XRLabel();
|
||||
this.xrLabel19 = new DevExpress.XtraReports.UI.XRLabel();
|
||||
this.xrLabel22 = new DevExpress.XtraReports.UI.XRLabel();
|
||||
this.xrLabel23 = new DevExpress.XtraReports.UI.XRLabel();
|
||||
this.GroupHeader1 = new DevExpress.XtraReports.UI.GroupHeaderBand();
|
||||
this.xrLabel9 = new DevExpress.XtraReports.UI.XRLabel();
|
||||
this.xrShape1 = new DevExpress.XtraReports.UI.XRShape();
|
||||
@@ -96,6 +91,11 @@ namespace SPZRatingen.Alt
|
||||
this.ReportFooter = new DevExpress.XtraReports.UI.ReportFooterBand();
|
||||
this.GroupFooter1 = new DevExpress.XtraReports.UI.GroupFooterBand();
|
||||
this.bindingSource1 = new System.Windows.Forms.BindingSource(this.components);
|
||||
this.xrLabel17 = new DevExpress.XtraReports.UI.XRLabel();
|
||||
this.xrLabel22 = new DevExpress.XtraReports.UI.XRLabel();
|
||||
this.xrLabel23 = new DevExpress.XtraReports.UI.XRLabel();
|
||||
this.xrLabel21 = new DevExpress.XtraReports.UI.XRLabel();
|
||||
this.xrLabel19 = new DevExpress.XtraReports.UI.XRLabel();
|
||||
((System.ComponentModel.ISupportInitialize)(this.xrRichText1)).BeginInit();
|
||||
((System.ComponentModel.ISupportInitialize)(this.xrRichText2)).BeginInit();
|
||||
((System.ComponentModel.ISupportInitialize)(this.bindingSource1)).BeginInit();
|
||||
@@ -219,7 +219,7 @@ namespace SPZRatingen.Alt
|
||||
//
|
||||
// BetragZwischensumme3Text
|
||||
//
|
||||
this.BetragZwischensumme3Text.BorderColor = System.Drawing.Color.Silver;
|
||||
this.BetragZwischensumme3Text.BorderColor = System.Drawing.Color.Black;
|
||||
this.BetragZwischensumme3Text.Borders = DevExpress.XtraPrinting.BorderSide.Top;
|
||||
this.BetragZwischensumme3Text.CanShrink = true;
|
||||
this.BetragZwischensumme3Text.Font = new System.Drawing.Font("Arial", 11F);
|
||||
@@ -235,7 +235,7 @@ namespace SPZRatingen.Alt
|
||||
//
|
||||
// Stundensatz3Text
|
||||
//
|
||||
this.Stundensatz3Text.BorderColor = System.Drawing.Color.Silver;
|
||||
this.Stundensatz3Text.BorderColor = System.Drawing.Color.Black;
|
||||
this.Stundensatz3Text.Borders = DevExpress.XtraPrinting.BorderSide.Top;
|
||||
this.Stundensatz3Text.CanShrink = true;
|
||||
this.Stundensatz3Text.Font = new System.Drawing.Font("Arial", 11F);
|
||||
@@ -251,7 +251,7 @@ namespace SPZRatingen.Alt
|
||||
//
|
||||
// gelStundenZwischensumme3Text
|
||||
//
|
||||
this.gelStundenZwischensumme3Text.BorderColor = System.Drawing.Color.Silver;
|
||||
this.gelStundenZwischensumme3Text.BorderColor = System.Drawing.Color.Black;
|
||||
this.gelStundenZwischensumme3Text.Borders = DevExpress.XtraPrinting.BorderSide.Top;
|
||||
this.gelStundenZwischensumme3Text.CanShrink = true;
|
||||
this.gelStundenZwischensumme3Text.Font = new System.Drawing.Font("Arial", 11F, System.Drawing.FontStyle.Bold);
|
||||
@@ -267,7 +267,7 @@ namespace SPZRatingen.Alt
|
||||
//
|
||||
// Zwischensumme3Text
|
||||
//
|
||||
this.Zwischensumme3Text.BorderColor = System.Drawing.Color.Silver;
|
||||
this.Zwischensumme3Text.BorderColor = System.Drawing.Color.Black;
|
||||
this.Zwischensumme3Text.Borders = DevExpress.XtraPrinting.BorderSide.Top;
|
||||
this.Zwischensumme3Text.CanShrink = true;
|
||||
this.Zwischensumme3Text.Font = new System.Drawing.Font("Arial", 11F);
|
||||
@@ -283,7 +283,7 @@ namespace SPZRatingen.Alt
|
||||
//
|
||||
// Zwischensumme2Text
|
||||
//
|
||||
this.Zwischensumme2Text.BorderColor = System.Drawing.Color.Silver;
|
||||
this.Zwischensumme2Text.BorderColor = System.Drawing.Color.Black;
|
||||
this.Zwischensumme2Text.Borders = DevExpress.XtraPrinting.BorderSide.Top;
|
||||
this.Zwischensumme2Text.CanShrink = true;
|
||||
this.Zwischensumme2Text.Font = new System.Drawing.Font("Arial", 11F);
|
||||
@@ -299,7 +299,7 @@ namespace SPZRatingen.Alt
|
||||
//
|
||||
// gelStundenZwischensumme2Text
|
||||
//
|
||||
this.gelStundenZwischensumme2Text.BorderColor = System.Drawing.Color.Silver;
|
||||
this.gelStundenZwischensumme2Text.BorderColor = System.Drawing.Color.Black;
|
||||
this.gelStundenZwischensumme2Text.Borders = DevExpress.XtraPrinting.BorderSide.Top;
|
||||
this.gelStundenZwischensumme2Text.CanShrink = true;
|
||||
this.gelStundenZwischensumme2Text.Font = new System.Drawing.Font("Arial", 11F, System.Drawing.FontStyle.Bold);
|
||||
@@ -315,7 +315,7 @@ namespace SPZRatingen.Alt
|
||||
//
|
||||
// Stundensatz2Text
|
||||
//
|
||||
this.Stundensatz2Text.BorderColor = System.Drawing.Color.Silver;
|
||||
this.Stundensatz2Text.BorderColor = System.Drawing.Color.Black;
|
||||
this.Stundensatz2Text.Borders = DevExpress.XtraPrinting.BorderSide.Top;
|
||||
this.Stundensatz2Text.CanShrink = true;
|
||||
this.Stundensatz2Text.Font = new System.Drawing.Font("Arial", 11F);
|
||||
@@ -331,7 +331,7 @@ namespace SPZRatingen.Alt
|
||||
//
|
||||
// BetragZwischensumme2Text
|
||||
//
|
||||
this.BetragZwischensumme2Text.BorderColor = System.Drawing.Color.Silver;
|
||||
this.BetragZwischensumme2Text.BorderColor = System.Drawing.Color.Black;
|
||||
this.BetragZwischensumme2Text.Borders = DevExpress.XtraPrinting.BorderSide.Top;
|
||||
this.BetragZwischensumme2Text.CanShrink = true;
|
||||
this.BetragZwischensumme2Text.Font = new System.Drawing.Font("Arial", 11F);
|
||||
@@ -347,7 +347,7 @@ namespace SPZRatingen.Alt
|
||||
//
|
||||
// BetragZwischensumme1Text
|
||||
//
|
||||
this.BetragZwischensumme1Text.BorderColor = System.Drawing.Color.Silver;
|
||||
this.BetragZwischensumme1Text.BorderColor = System.Drawing.Color.Black;
|
||||
this.BetragZwischensumme1Text.Borders = DevExpress.XtraPrinting.BorderSide.Top;
|
||||
this.BetragZwischensumme1Text.CanShrink = true;
|
||||
this.BetragZwischensumme1Text.Font = new System.Drawing.Font("Arial", 11F);
|
||||
@@ -363,7 +363,7 @@ namespace SPZRatingen.Alt
|
||||
//
|
||||
// Stundensatz1Text
|
||||
//
|
||||
this.Stundensatz1Text.BorderColor = System.Drawing.Color.Silver;
|
||||
this.Stundensatz1Text.BorderColor = System.Drawing.Color.Black;
|
||||
this.Stundensatz1Text.Borders = DevExpress.XtraPrinting.BorderSide.Top;
|
||||
this.Stundensatz1Text.CanShrink = true;
|
||||
this.Stundensatz1Text.Font = new System.Drawing.Font("Arial", 11F);
|
||||
@@ -379,7 +379,7 @@ namespace SPZRatingen.Alt
|
||||
//
|
||||
// gelStundenZwischensumme1Text
|
||||
//
|
||||
this.gelStundenZwischensumme1Text.BorderColor = System.Drawing.Color.Silver;
|
||||
this.gelStundenZwischensumme1Text.BorderColor = System.Drawing.Color.Black;
|
||||
this.gelStundenZwischensumme1Text.Borders = DevExpress.XtraPrinting.BorderSide.Top;
|
||||
this.gelStundenZwischensumme1Text.CanShrink = true;
|
||||
this.gelStundenZwischensumme1Text.Font = new System.Drawing.Font("Arial", 11F, System.Drawing.FontStyle.Bold);
|
||||
@@ -395,7 +395,7 @@ namespace SPZRatingen.Alt
|
||||
//
|
||||
// Zwischensumme1Text
|
||||
//
|
||||
this.Zwischensumme1Text.BorderColor = System.Drawing.Color.Silver;
|
||||
this.Zwischensumme1Text.BorderColor = System.Drawing.Color.Black;
|
||||
this.Zwischensumme1Text.Borders = DevExpress.XtraPrinting.BorderSide.Top;
|
||||
this.Zwischensumme1Text.CanShrink = true;
|
||||
this.Zwischensumme1Text.Font = new System.Drawing.Font("Arial", 11F);
|
||||
@@ -683,7 +683,7 @@ namespace SPZRatingen.Alt
|
||||
//
|
||||
this.xrLabel10.BackColor = System.Drawing.Color.Transparent;
|
||||
this.xrLabel10.Font = new System.Drawing.Font("Arial", 11F);
|
||||
this.xrLabel10.LocationFloat = new DevExpress.Utils.PointFloat(0F, 327.1659F);
|
||||
this.xrLabel10.LocationFloat = new DevExpress.Utils.PointFloat(7.838419E-05F, 313.4752F);
|
||||
this.xrLabel10.Multiline = true;
|
||||
this.xrLabel10.Name = "xrLabel10";
|
||||
this.xrLabel10.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
|
||||
@@ -699,7 +699,7 @@ namespace SPZRatingen.Alt
|
||||
this.xrLabel7.BackColor = System.Drawing.Color.Transparent;
|
||||
this.xrLabel7.CanShrink = true;
|
||||
this.xrLabel7.Font = new System.Drawing.Font("Arial", 11F, System.Drawing.FontStyle.Bold);
|
||||
this.xrLabel7.LocationFloat = new DevExpress.Utils.PointFloat(0F, 296.6665F);
|
||||
this.xrLabel7.LocationFloat = new DevExpress.Utils.PointFloat(7.838419E-05F, 282.9758F);
|
||||
this.xrLabel7.Multiline = true;
|
||||
this.xrLabel7.Name = "xrLabel7";
|
||||
this.xrLabel7.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
|
||||
@@ -714,7 +714,7 @@ namespace SPZRatingen.Alt
|
||||
this.xrLabel14.BackColor = System.Drawing.Color.Transparent;
|
||||
this.xrLabel14.CanShrink = true;
|
||||
this.xrLabel14.Font = new System.Drawing.Font("Arial", 11F, System.Drawing.FontStyle.Bold);
|
||||
this.xrLabel14.LocationFloat = new DevExpress.Utils.PointFloat(0F, 276.6664F);
|
||||
this.xrLabel14.LocationFloat = new DevExpress.Utils.PointFloat(7.838419E-05F, 262.9757F);
|
||||
this.xrLabel14.Multiline = true;
|
||||
this.xrLabel14.Name = "xrLabel14";
|
||||
this.xrLabel14.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
|
||||
@@ -729,7 +729,7 @@ namespace SPZRatingen.Alt
|
||||
this.xrLabel15.BackColor = System.Drawing.Color.Transparent;
|
||||
this.xrLabel15.CanShrink = true;
|
||||
this.xrLabel15.Font = new System.Drawing.Font("Arial", 11F, System.Drawing.FontStyle.Bold);
|
||||
this.xrLabel15.LocationFloat = new DevExpress.Utils.PointFloat(0F, 256.6664F);
|
||||
this.xrLabel15.LocationFloat = new DevExpress.Utils.PointFloat(7.838419E-05F, 242.9757F);
|
||||
this.xrLabel15.Name = "xrLabel15";
|
||||
this.xrLabel15.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
|
||||
this.xrLabel15.SizeF = new System.Drawing.SizeF(362.0442F, 20.00003F);
|
||||
@@ -753,86 +753,15 @@ namespace SPZRatingen.Alt
|
||||
//
|
||||
this.bottomMarginBand1.Controls.AddRange(new DevExpress.XtraReports.UI.XRControl[] {
|
||||
this.xrLabel17,
|
||||
this.xrLabel21,
|
||||
this.xrLabel19,
|
||||
this.xrLabel22,
|
||||
this.xrLabel23});
|
||||
this.xrLabel23,
|
||||
this.xrLabel21,
|
||||
this.xrLabel19});
|
||||
this.bottomMarginBand1.Font = new System.Drawing.Font("Arial", 7F);
|
||||
this.bottomMarginBand1.HeightF = 56.25F;
|
||||
this.bottomMarginBand1.HeightF = 65.90057F;
|
||||
this.bottomMarginBand1.Name = "bottomMarginBand1";
|
||||
this.bottomMarginBand1.StylePriority.UseFont = false;
|
||||
//
|
||||
// xrLabel17
|
||||
//
|
||||
this.xrLabel17.BackColor = System.Drawing.Color.Transparent;
|
||||
this.xrLabel17.ForeColor = System.Drawing.Color.Gray;
|
||||
this.xrLabel17.LocationFloat = new DevExpress.Utils.PointFloat(0F, 0F);
|
||||
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(190F, 56.25F);
|
||||
this.xrLabel17.StylePriority.UseBackColor = false;
|
||||
this.xrLabel17.StylePriority.UseFont = false;
|
||||
this.xrLabel17.StylePriority.UseForeColor = false;
|
||||
this.xrLabel17.Text = "Sozialpsychiatrisches Zentrum Ratingen\r\ngemeinnützige GmbH\r\nDüsseldorfer Straße 3" +
|
||||
"6 c\r\n40878 Ratingen";
|
||||
//
|
||||
// xrLabel21
|
||||
//
|
||||
this.xrLabel21.BackColor = System.Drawing.Color.Transparent;
|
||||
this.xrLabel21.ForeColor = System.Drawing.Color.Gray;
|
||||
this.xrLabel21.LocationFloat = new DevExpress.Utils.PointFloat(189.9999F, 0F);
|
||||
this.xrLabel21.Multiline = true;
|
||||
this.xrLabel21.Name = "xrLabel21";
|
||||
this.xrLabel21.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
|
||||
this.xrLabel21.SizeF = new System.Drawing.SizeF(98.49803F, 56.24988F);
|
||||
this.xrLabel21.StylePriority.UseBackColor = false;
|
||||
this.xrLabel21.StylePriority.UseFont = false;
|
||||
this.xrLabel21.StylePriority.UseForeColor = false;
|
||||
this.xrLabel21.Text = "Geschäftsführerin\r\nHendrikje Rannoch";
|
||||
//
|
||||
// xrLabel19
|
||||
//
|
||||
this.xrLabel19.BackColor = System.Drawing.Color.Transparent;
|
||||
this.xrLabel19.ForeColor = System.Drawing.Color.Gray;
|
||||
this.xrLabel19.LocationFloat = new DevExpress.Utils.PointFloat(495.7891F, 0F);
|
||||
this.xrLabel19.Multiline = true;
|
||||
this.xrLabel19.Name = "xrLabel19";
|
||||
this.xrLabel19.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
|
||||
this.xrLabel19.SizeF = new System.Drawing.SizeF(179.2108F, 56.24987F);
|
||||
this.xrLabel19.StylePriority.UseBackColor = false;
|
||||
this.xrLabel19.StylePriority.UseFont = false;
|
||||
this.xrLabel19.StylePriority.UseForeColor = false;
|
||||
this.xrLabel19.Text = "KD Bank Duisburg\r\nIBAN DE11 3506 0190 1014 4160 10\r\nBIC GENODED1DKD\r\n";
|
||||
//
|
||||
// xrLabel22
|
||||
//
|
||||
this.xrLabel22.BackColor = System.Drawing.Color.Transparent;
|
||||
this.xrLabel22.ForeColor = System.Drawing.Color.Gray;
|
||||
this.xrLabel22.LocationFloat = new DevExpress.Utils.PointFloat(288.4979F, 0F);
|
||||
this.xrLabel22.Multiline = true;
|
||||
this.xrLabel22.Name = "xrLabel22";
|
||||
this.xrLabel22.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
|
||||
this.xrLabel22.SizeF = new System.Drawing.SizeF(96.87509F, 56.24988F);
|
||||
this.xrLabel22.StylePriority.UseBackColor = false;
|
||||
this.xrLabel22.StylePriority.UseFont = false;
|
||||
this.xrLabel22.StylePriority.UseForeColor = false;
|
||||
this.xrLabel22.Text = "Sitz: Ratingen\r\nRegistergericht\r\nAG Düsseldorf\r\nHRB 67049\r\n";
|
||||
//
|
||||
// xrLabel23
|
||||
//
|
||||
this.xrLabel23.BackColor = System.Drawing.Color.Transparent;
|
||||
this.xrLabel23.ForeColor = System.Drawing.Color.Gray;
|
||||
this.xrLabel23.LocationFloat = new DevExpress.Utils.PointFloat(385.3729F, 0F);
|
||||
this.xrLabel23.Multiline = true;
|
||||
this.xrLabel23.Name = "xrLabel23";
|
||||
this.xrLabel23.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
|
||||
this.xrLabel23.SizeF = new System.Drawing.SizeF(110.4162F, 56.25F);
|
||||
this.xrLabel23.StylePriority.UseBackColor = false;
|
||||
this.xrLabel23.StylePriority.UseFont = false;
|
||||
this.xrLabel23.StylePriority.UseForeColor = false;
|
||||
this.xrLabel23.Text = "Steuernummer\r\n147/5755/0391\r\nFinanzamt\r\nDüsseldorf-Mettmann";
|
||||
//
|
||||
// GroupHeader1
|
||||
//
|
||||
this.GroupHeader1.Controls.AddRange(new DevExpress.XtraReports.UI.XRControl[] {
|
||||
@@ -849,7 +778,7 @@ namespace SPZRatingen.Alt
|
||||
this.xrRichText1,
|
||||
this.xrRichText2});
|
||||
this.GroupHeader1.Font = new System.Drawing.Font("Arial", 10F);
|
||||
this.GroupHeader1.HeightF = 369.1248F;
|
||||
this.GroupHeader1.HeightF = 355.4341F;
|
||||
this.GroupHeader1.Name = "GroupHeader1";
|
||||
this.GroupHeader1.StylePriority.UseFont = false;
|
||||
//
|
||||
@@ -867,11 +796,11 @@ namespace SPZRatingen.Alt
|
||||
// xrShape1
|
||||
//
|
||||
this.xrShape1.ForeColor = System.Drawing.Color.DimGray;
|
||||
this.xrShape1.LocationFloat = new DevExpress.Utils.PointFloat(424.9999F, 196.6665F);
|
||||
this.xrShape1.LocationFloat = new DevExpress.Utils.PointFloat(413.5804F, 193.101F);
|
||||
this.xrShape1.Name = "xrShape1";
|
||||
shapeRectangle1.Fillet = 45;
|
||||
this.xrShape1.Shape = shapeRectangle1;
|
||||
this.xrShape1.SizeF = new System.Drawing.SizeF(200F, 80F);
|
||||
this.xrShape1.SizeF = new System.Drawing.SizeF(211.4196F, 80F);
|
||||
this.xrShape1.StylePriority.UseForeColor = false;
|
||||
//
|
||||
// xrLabel4
|
||||
@@ -880,7 +809,7 @@ namespace SPZRatingen.Alt
|
||||
this.xrLabel4.Borders = DevExpress.XtraPrinting.BorderSide.None;
|
||||
this.xrLabel4.CanShrink = true;
|
||||
this.xrLabel4.Font = new System.Drawing.Font("Arial", 10F);
|
||||
this.xrLabel4.LocationFloat = new DevExpress.Utils.PointFloat(420.7944F, 205.3986F);
|
||||
this.xrLabel4.LocationFloat = new DevExpress.Utils.PointFloat(409.375F, 201.8332F);
|
||||
this.xrLabel4.Name = "xrLabel4";
|
||||
this.xrLabel4.Padding = new DevExpress.XtraPrinting.PaddingInfo(12, 2, 0, 0, 100F);
|
||||
this.xrLabel4.SizeF = new System.Drawing.SizeF(193.4793F, 15.95831F);
|
||||
@@ -896,7 +825,7 @@ namespace SPZRatingen.Alt
|
||||
this.xrLabel5.BackColor = System.Drawing.Color.Transparent;
|
||||
this.xrLabel5.CanShrink = true;
|
||||
this.xrLabel5.Font = new System.Drawing.Font("Arial", 12F, System.Drawing.FontStyle.Bold);
|
||||
this.xrLabel5.LocationFloat = new DevExpress.Utils.PointFloat(420.7946F, 221.3568F);
|
||||
this.xrLabel5.LocationFloat = new DevExpress.Utils.PointFloat(409.3752F, 217.7913F);
|
||||
this.xrLabel5.Name = "xrLabel5";
|
||||
this.xrLabel5.Padding = new DevExpress.XtraPrinting.PaddingInfo(12, 2, 0, 0, 100F);
|
||||
this.xrLabel5.SizeF = new System.Drawing.SizeF(193.4793F, 23.24998F);
|
||||
@@ -911,7 +840,7 @@ namespace SPZRatingen.Alt
|
||||
this.xrLabel6.BackColor = System.Drawing.Color.Transparent;
|
||||
this.xrLabel6.CanShrink = true;
|
||||
this.xrLabel6.Font = new System.Drawing.Font("Arial", 10F);
|
||||
this.xrLabel6.LocationFloat = new DevExpress.Utils.PointFloat(420.7946F, 244.6068F);
|
||||
this.xrLabel6.LocationFloat = new DevExpress.Utils.PointFloat(409.3752F, 241.0413F);
|
||||
this.xrLabel6.Name = "xrLabel6";
|
||||
this.xrLabel6.Padding = new DevExpress.XtraPrinting.PaddingInfo(12, 2, 0, 0, 100F);
|
||||
this.xrLabel6.SizeF = new System.Drawing.SizeF(202.4433F, 21.9344F);
|
||||
@@ -941,7 +870,7 @@ namespace SPZRatingen.Alt
|
||||
//
|
||||
this.xrLabel24.BackColor = System.Drawing.Color.Transparent;
|
||||
this.xrLabel24.Font = new System.Drawing.Font("Arial", 9.75F, System.Drawing.FontStyle.Bold);
|
||||
this.xrLabel24.LocationFloat = new DevExpress.Utils.PointFloat(245.8333F, 82.29179F);
|
||||
this.xrLabel24.LocationFloat = new DevExpress.Utils.PointFloat(245.8333F, 73.29179F);
|
||||
this.xrLabel24.Multiline = true;
|
||||
this.xrLabel24.Name = "xrLabel24";
|
||||
this.xrLabel24.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
|
||||
@@ -957,7 +886,7 @@ namespace SPZRatingen.Alt
|
||||
//
|
||||
this.xrLabel25.BackColor = System.Drawing.Color.Transparent;
|
||||
this.xrLabel25.Font = new System.Drawing.Font("Arial", 9.75F);
|
||||
this.xrLabel25.LocationFloat = new DevExpress.Utils.PointFloat(0F, 149.7086F);
|
||||
this.xrLabel25.LocationFloat = new DevExpress.Utils.PointFloat(0F, 144.7086F);
|
||||
this.xrLabel25.Multiline = true;
|
||||
this.xrLabel25.Name = "xrLabel25";
|
||||
this.xrLabel25.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
|
||||
@@ -970,7 +899,7 @@ namespace SPZRatingen.Alt
|
||||
//
|
||||
this.xrLabel26.BackColor = System.Drawing.Color.Transparent;
|
||||
this.xrLabel26.Font = new System.Drawing.Font("Arial", 9.75F);
|
||||
this.xrLabel26.LocationFloat = new DevExpress.Utils.PointFloat(0F, 208.7919F);
|
||||
this.xrLabel26.LocationFloat = new DevExpress.Utils.PointFloat(0F, 201.7919F);
|
||||
this.xrLabel26.Multiline = true;
|
||||
this.xrLabel26.Name = "xrLabel26";
|
||||
this.xrLabel26.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
|
||||
@@ -988,18 +917,89 @@ namespace SPZRatingen.Alt
|
||||
this.xrLabel24,
|
||||
this.xrLabel25,
|
||||
this.xrLabel26});
|
||||
this.ReportFooter.HeightF = 243.292F;
|
||||
this.ReportFooter.HeightF = 236.292F;
|
||||
this.ReportFooter.Name = "ReportFooter";
|
||||
//
|
||||
// GroupFooter1
|
||||
//
|
||||
this.GroupFooter1.HeightF = 57.8125F;
|
||||
this.GroupFooter1.HeightF = 51.39126F;
|
||||
this.GroupFooter1.Name = "GroupFooter1";
|
||||
//
|
||||
// bindingSource1
|
||||
//
|
||||
this.bindingSource1.DataSource = typeof(BeWo.Report.ReportObjects.SettlementRO);
|
||||
//
|
||||
// xrLabel17
|
||||
//
|
||||
this.xrLabel17.BackColor = System.Drawing.Color.Transparent;
|
||||
this.xrLabel17.ForeColor = System.Drawing.Color.Gray;
|
||||
this.xrLabel17.LocationFloat = new DevExpress.Utils.PointFloat(0F, 1.959605E-05F);
|
||||
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(182F, 56.25F);
|
||||
this.xrLabel17.StylePriority.UseBackColor = false;
|
||||
this.xrLabel17.StylePriority.UseFont = false;
|
||||
this.xrLabel17.StylePriority.UseForeColor = false;
|
||||
this.xrLabel17.Text = "Sozialpsychiatrisches Zentrum Ratingen\r\ngemeinnützige GmbH\r\nDüsseldorfer Straße 3" +
|
||||
"6 c\r\n40878 Ratingen";
|
||||
//
|
||||
// xrLabel22
|
||||
//
|
||||
this.xrLabel22.BackColor = System.Drawing.Color.Transparent;
|
||||
this.xrLabel22.ForeColor = System.Drawing.Color.Gray;
|
||||
this.xrLabel22.LocationFloat = new DevExpress.Utils.PointFloat(280.498F, 1.959605E-05F);
|
||||
this.xrLabel22.Multiline = true;
|
||||
this.xrLabel22.Name = "xrLabel22";
|
||||
this.xrLabel22.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
|
||||
this.xrLabel22.SizeF = new System.Drawing.SizeF(90F, 56.25F);
|
||||
this.xrLabel22.StylePriority.UseBackColor = false;
|
||||
this.xrLabel22.StylePriority.UseFont = false;
|
||||
this.xrLabel22.StylePriority.UseForeColor = false;
|
||||
this.xrLabel22.Text = "Sitz: Ratingen\r\nRegistergericht\r\nAG Düsseldorf\r\nHRB 67049\r\n";
|
||||
//
|
||||
// xrLabel23
|
||||
//
|
||||
this.xrLabel23.BackColor = System.Drawing.Color.Transparent;
|
||||
this.xrLabel23.ForeColor = System.Drawing.Color.Gray;
|
||||
this.xrLabel23.LocationFloat = new DevExpress.Utils.PointFloat(370.498F, 1.959605E-05F);
|
||||
this.xrLabel23.Multiline = true;
|
||||
this.xrLabel23.Name = "xrLabel23";
|
||||
this.xrLabel23.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
|
||||
this.xrLabel23.SizeF = new System.Drawing.SizeF(98.99997F, 56.25002F);
|
||||
this.xrLabel23.StylePriority.UseBackColor = false;
|
||||
this.xrLabel23.StylePriority.UseFont = false;
|
||||
this.xrLabel23.StylePriority.UseForeColor = false;
|
||||
this.xrLabel23.Text = "Steuernummer\r\n147/5755/0391\r\nFinanzamt\r\nDüsseldorf-Mettmann";
|
||||
//
|
||||
// xrLabel21
|
||||
//
|
||||
this.xrLabel21.BackColor = System.Drawing.Color.Transparent;
|
||||
this.xrLabel21.ForeColor = System.Drawing.Color.Gray;
|
||||
this.xrLabel21.LocationFloat = new DevExpress.Utils.PointFloat(182F, 1.959605E-05F);
|
||||
this.xrLabel21.Multiline = true;
|
||||
this.xrLabel21.Name = "xrLabel21";
|
||||
this.xrLabel21.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
|
||||
this.xrLabel21.SizeF = new System.Drawing.SizeF(98.49803F, 56.24988F);
|
||||
this.xrLabel21.StylePriority.UseBackColor = false;
|
||||
this.xrLabel21.StylePriority.UseFont = false;
|
||||
this.xrLabel21.StylePriority.UseForeColor = false;
|
||||
this.xrLabel21.Text = "Geschäftsführerin\r\nHendrikje Rannoch";
|
||||
//
|
||||
// xrLabel19
|
||||
//
|
||||
this.xrLabel19.BackColor = System.Drawing.Color.Transparent;
|
||||
this.xrLabel19.ForeColor = System.Drawing.Color.Gray;
|
||||
this.xrLabel19.LocationFloat = new DevExpress.Utils.PointFloat(469.4979F, 1.959605E-05F);
|
||||
this.xrLabel19.Multiline = true;
|
||||
this.xrLabel19.Name = "xrLabel19";
|
||||
this.xrLabel19.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
|
||||
this.xrLabel19.SizeF = new System.Drawing.SizeF(180F, 56.25F);
|
||||
this.xrLabel19.StylePriority.UseBackColor = false;
|
||||
this.xrLabel19.StylePriority.UseFont = false;
|
||||
this.xrLabel19.StylePriority.UseForeColor = false;
|
||||
this.xrLabel19.Text = "KD Bank Duisburg\r\nIBAN DE11 3506 0190 1014 4160 10\r\nBIC GENODED1DKD\r\n";
|
||||
//
|
||||
// Spitzabrechnung
|
||||
//
|
||||
this.Bands.AddRange(new DevExpress.XtraReports.UI.Band[] {
|
||||
@@ -1013,7 +1013,7 @@ namespace SPZRatingen.Alt
|
||||
this.ExportOptions.PrintPreview.DefaultFileName = "Spitzabrechnung";
|
||||
this.FormattingRuleSheet.AddRange(new DevExpress.XtraReports.UI.FormattingRule[] {
|
||||
this.ruleRateFactorNull});
|
||||
this.Margins = new System.Drawing.Printing.Margins(100, 52, 185, 56);
|
||||
this.Margins = new System.Drawing.Printing.Margins(100, 52, 185, 66);
|
||||
this.PageHeight = 1169;
|
||||
this.PageWidth = 827;
|
||||
this.PaperKind = System.Drawing.Printing.PaperKind.A4;
|
||||
@@ -1044,8 +1044,6 @@ namespace SPZRatingen.Alt
|
||||
private DevExpress.XtraReports.UI.XRLabel xrLabel5;
|
||||
private DevExpress.XtraReports.UI.XRLabel xrLabel4;
|
||||
private DevExpress.XtraReports.UI.XRShape xrShape1;
|
||||
private DevExpress.XtraReports.UI.XRLabel xrLabel22;
|
||||
private DevExpress.XtraReports.UI.XRLabel xrLabel23;
|
||||
private DevExpress.XtraReports.UI.XRLabel xrLabel24;
|
||||
private DevExpress.XtraReports.UI.XRLabel xrLabel25;
|
||||
private DevExpress.XtraReports.UI.XRLabel xrLabel26;
|
||||
@@ -1088,9 +1086,11 @@ namespace SPZRatingen.Alt
|
||||
private DevExpress.XtraReports.UI.XRLabel MittelbareLeistungStd2;
|
||||
private DevExpress.XtraReports.UI.XRLabel MittelbareLeistung3;
|
||||
private DevExpress.XtraReports.UI.XRLabel MittelbareLeistungStd3;
|
||||
private DevExpress.XtraReports.UI.XRLabel xrLabel19;
|
||||
private DevExpress.XtraReports.UI.XRLabel xrLabel17;
|
||||
private DevExpress.XtraReports.UI.XRLabel xrLabel21;
|
||||
private DevExpress.XtraReports.UI.GroupFooterBand GroupFooter1;
|
||||
private DevExpress.XtraReports.UI.XRLabel xrLabel17;
|
||||
private DevExpress.XtraReports.UI.XRLabel xrLabel22;
|
||||
private DevExpress.XtraReports.UI.XRLabel xrLabel23;
|
||||
private DevExpress.XtraReports.UI.XRLabel xrLabel21;
|
||||
private DevExpress.XtraReports.UI.XRLabel xrLabel19;
|
||||
}
|
||||
}
|
||||
|
||||
228
ReportImp/SPZRatingen/SettlementReport2.Designer.cs
generated
228
ReportImp/SPZRatingen/SettlementReport2.Designer.cs
generated
@@ -47,11 +47,6 @@ namespace SPZRatingen
|
||||
this.xrLabel12 = new DevExpress.XtraReports.UI.XRLabel();
|
||||
this.topMarginBand1 = new DevExpress.XtraReports.UI.TopMarginBand();
|
||||
this.bottomMarginBand1 = new DevExpress.XtraReports.UI.BottomMarginBand();
|
||||
this.xrLabel23 = new DevExpress.XtraReports.UI.XRLabel();
|
||||
this.xrLabel22 = new DevExpress.XtraReports.UI.XRLabel();
|
||||
this.xrLabel21 = new DevExpress.XtraReports.UI.XRLabel();
|
||||
this.xrLabel3 = new DevExpress.XtraReports.UI.XRLabel();
|
||||
this.xrLabel19 = new DevExpress.XtraReports.UI.XRLabel();
|
||||
this.GroupHeader1 = new DevExpress.XtraReports.UI.GroupHeaderBand();
|
||||
this.xrLabel2 = new DevExpress.XtraReports.UI.XRLabel();
|
||||
this.xrLabel8 = new DevExpress.XtraReports.UI.XRLabel();
|
||||
@@ -87,6 +82,11 @@ namespace SPZRatingen
|
||||
this.xrLabel7 = new DevExpress.XtraReports.UI.XRLabel();
|
||||
this.bindingSource1 = new System.Windows.Forms.BindingSource(this.components);
|
||||
this.GroupFooter1 = new DevExpress.XtraReports.UI.GroupFooterBand();
|
||||
this.xrLabel3 = new DevExpress.XtraReports.UI.XRLabel();
|
||||
this.xrLabel21 = new DevExpress.XtraReports.UI.XRLabel();
|
||||
this.xrLabel23 = new DevExpress.XtraReports.UI.XRLabel();
|
||||
this.xrLabel22 = new DevExpress.XtraReports.UI.XRLabel();
|
||||
this.xrLabel19 = new DevExpress.XtraReports.UI.XRLabel();
|
||||
((System.ComponentModel.ISupportInitialize)(this.xrRichText2)).BeginInit();
|
||||
((System.ComponentModel.ISupportInitialize)(this.xrRichText1)).BeginInit();
|
||||
((System.ComponentModel.ISupportInitialize)(this.bindingSource1)).BeginInit();
|
||||
@@ -169,7 +169,7 @@ namespace SPZRatingen
|
||||
this.xrLabel24,
|
||||
this.xrLabel12});
|
||||
this.ReportFooter.Font = new System.Drawing.Font("Verdana", 10F);
|
||||
this.ReportFooter.HeightF = 270.3752F;
|
||||
this.ReportFooter.HeightF = 260.3752F;
|
||||
this.ReportFooter.KeepTogether = true;
|
||||
this.ReportFooter.Name = "ReportFooter";
|
||||
this.ReportFooter.StylePriority.UseFont = false;
|
||||
@@ -183,7 +183,7 @@ namespace SPZRatingen
|
||||
this.xrLabel10.Multiline = true;
|
||||
this.xrLabel10.Name = "xrLabel10";
|
||||
this.xrLabel10.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
|
||||
this.xrLabel10.SizeF = new System.Drawing.SizeF(664.9999F, 31.5417F);
|
||||
this.xrLabel10.SizeF = new System.Drawing.SizeF(664.9999F, 26.13302F);
|
||||
this.xrLabel10.StylePriority.UseBackColor = false;
|
||||
this.xrLabel10.StylePriority.UseFont = false;
|
||||
this.xrLabel10.Text = "[FehlkontakteString]\r\n";
|
||||
@@ -192,7 +192,7 @@ namespace SPZRatingen
|
||||
//
|
||||
this.xrLabel26.BackColor = System.Drawing.Color.Transparent;
|
||||
this.xrLabel26.Font = new System.Drawing.Font("Arial", 9.75F);
|
||||
this.xrLabel26.LocationFloat = new DevExpress.Utils.PointFloat(0.0005086263F, 235.8752F);
|
||||
this.xrLabel26.LocationFloat = new DevExpress.Utils.PointFloat(0.0005086263F, 225.8752F);
|
||||
this.xrLabel26.Multiline = true;
|
||||
this.xrLabel26.Name = "xrLabel26";
|
||||
this.xrLabel26.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
|
||||
@@ -207,11 +207,11 @@ namespace SPZRatingen
|
||||
//
|
||||
this.xrLabel25.BackColor = System.Drawing.Color.Transparent;
|
||||
this.xrLabel25.Font = new System.Drawing.Font("Arial", 9.75F);
|
||||
this.xrLabel25.LocationFloat = new DevExpress.Utils.PointFloat(0.0006357829F, 176.792F);
|
||||
this.xrLabel25.LocationFloat = new DevExpress.Utils.PointFloat(0.0006602361F, 170.7921F);
|
||||
this.xrLabel25.Multiline = true;
|
||||
this.xrLabel25.Name = "xrLabel25";
|
||||
this.xrLabel25.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
|
||||
this.xrLabel25.SizeF = new System.Drawing.SizeF(624.9999F, 44.50006F);
|
||||
this.xrLabel25.SizeF = new System.Drawing.SizeF(624.9998F, 31.87988F);
|
||||
this.xrLabel25.StylePriority.UseBackColor = false;
|
||||
this.xrLabel25.StylePriority.UseFont = false;
|
||||
this.xrLabel25.Text = "Mit freundlichen Grüßen\r\n";
|
||||
@@ -220,7 +220,7 @@ namespace SPZRatingen
|
||||
//
|
||||
this.xrLabel24.BackColor = System.Drawing.Color.Transparent;
|
||||
this.xrLabel24.Font = new System.Drawing.Font("Arial", 9.75F, System.Drawing.FontStyle.Bold);
|
||||
this.xrLabel24.LocationFloat = new DevExpress.Utils.PointFloat(245.8338F, 109.3751F);
|
||||
this.xrLabel24.LocationFloat = new DevExpress.Utils.PointFloat(245.8338F, 102.3751F);
|
||||
this.xrLabel24.Multiline = true;
|
||||
this.xrLabel24.Name = "xrLabel24";
|
||||
this.xrLabel24.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
|
||||
@@ -236,7 +236,7 @@ namespace SPZRatingen
|
||||
//
|
||||
this.xrLabel12.BackColor = System.Drawing.Color.Transparent;
|
||||
this.xrLabel12.Font = new System.Drawing.Font("Arial", 9.75F);
|
||||
this.xrLabel12.LocationFloat = new DevExpress.Utils.PointFloat(0.0005086263F, 41.95836F);
|
||||
this.xrLabel12.LocationFloat = new DevExpress.Utils.PointFloat(0.0005086263F, 31.95836F);
|
||||
this.xrLabel12.Multiline = true;
|
||||
this.xrLabel12.Name = "xrLabel12";
|
||||
this.xrLabel12.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
|
||||
@@ -253,87 +253,16 @@ namespace SPZRatingen
|
||||
// bottomMarginBand1
|
||||
//
|
||||
this.bottomMarginBand1.Controls.AddRange(new DevExpress.XtraReports.UI.XRControl[] {
|
||||
this.xrLabel3,
|
||||
this.xrLabel21,
|
||||
this.xrLabel23,
|
||||
this.xrLabel22,
|
||||
this.xrLabel21,
|
||||
this.xrLabel3,
|
||||
this.xrLabel19});
|
||||
this.bottomMarginBand1.Font = new System.Drawing.Font("Arial", 7F);
|
||||
this.bottomMarginBand1.HeightF = 56.25F;
|
||||
this.bottomMarginBand1.HeightF = 68.11039F;
|
||||
this.bottomMarginBand1.Name = "bottomMarginBand1";
|
||||
this.bottomMarginBand1.StylePriority.UseFont = false;
|
||||
//
|
||||
// xrLabel23
|
||||
//
|
||||
this.xrLabel23.BackColor = System.Drawing.Color.Transparent;
|
||||
this.xrLabel23.ForeColor = System.Drawing.Color.Gray;
|
||||
this.xrLabel23.LocationFloat = new DevExpress.Utils.PointFloat(385.3729F, 0F);
|
||||
this.xrLabel23.Multiline = true;
|
||||
this.xrLabel23.Name = "xrLabel23";
|
||||
this.xrLabel23.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
|
||||
this.xrLabel23.SizeF = new System.Drawing.SizeF(105.2079F, 56.25F);
|
||||
this.xrLabel23.StylePriority.UseBackColor = false;
|
||||
this.xrLabel23.StylePriority.UseFont = false;
|
||||
this.xrLabel23.StylePriority.UseForeColor = false;
|
||||
this.xrLabel23.Text = "Steuernummer\r\n147/5755/0391\r\nFinanzamt\r\nDüsseldorf-Mettmann";
|
||||
//
|
||||
// xrLabel22
|
||||
//
|
||||
this.xrLabel22.BackColor = System.Drawing.Color.Transparent;
|
||||
this.xrLabel22.ForeColor = System.Drawing.Color.Gray;
|
||||
this.xrLabel22.LocationFloat = new DevExpress.Utils.PointFloat(288.498F, 0F);
|
||||
this.xrLabel22.Multiline = true;
|
||||
this.xrLabel22.Name = "xrLabel22";
|
||||
this.xrLabel22.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
|
||||
this.xrLabel22.SizeF = new System.Drawing.SizeF(96.87509F, 56.24988F);
|
||||
this.xrLabel22.StylePriority.UseBackColor = false;
|
||||
this.xrLabel22.StylePriority.UseFont = false;
|
||||
this.xrLabel22.StylePriority.UseForeColor = false;
|
||||
this.xrLabel22.Text = "Sitz: Ratingen\r\nRegistergericht\r\nAG Düsseldorf\r\nHRB 67049\r\n";
|
||||
//
|
||||
// xrLabel21
|
||||
//
|
||||
this.xrLabel21.BackColor = System.Drawing.Color.Transparent;
|
||||
this.xrLabel21.ForeColor = System.Drawing.Color.Gray;
|
||||
this.xrLabel21.LocationFloat = new DevExpress.Utils.PointFloat(189.9999F, 0F);
|
||||
this.xrLabel21.Multiline = true;
|
||||
this.xrLabel21.Name = "xrLabel21";
|
||||
this.xrLabel21.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
|
||||
this.xrLabel21.SizeF = new System.Drawing.SizeF(98.49803F, 56.24988F);
|
||||
this.xrLabel21.StylePriority.UseBackColor = false;
|
||||
this.xrLabel21.StylePriority.UseFont = false;
|
||||
this.xrLabel21.StylePriority.UseForeColor = false;
|
||||
this.xrLabel21.Text = "Geschäftsführerin\r\nHendrikje Rannoch";
|
||||
//
|
||||
// xrLabel3
|
||||
//
|
||||
this.xrLabel3.BackColor = System.Drawing.Color.Transparent;
|
||||
this.xrLabel3.ForeColor = System.Drawing.Color.Gray;
|
||||
this.xrLabel3.LocationFloat = new DevExpress.Utils.PointFloat(6.103516E-05F, 0F);
|
||||
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(190F, 56.25F);
|
||||
this.xrLabel3.StylePriority.UseBackColor = false;
|
||||
this.xrLabel3.StylePriority.UseFont = false;
|
||||
this.xrLabel3.StylePriority.UseForeColor = false;
|
||||
this.xrLabel3.Text = "Sozialpsychiatrisches Zentrum Ratingen\r\ngemeinnützige GmbH\r\nDüsseldorfer Straße 3" +
|
||||
"6 c\r\n40878 Ratingen";
|
||||
//
|
||||
// xrLabel19
|
||||
//
|
||||
this.xrLabel19.BackColor = System.Drawing.Color.Transparent;
|
||||
this.xrLabel19.ForeColor = System.Drawing.Color.Gray;
|
||||
this.xrLabel19.LocationFloat = new DevExpress.Utils.PointFloat(490.5809F, 0F);
|
||||
this.xrLabel19.Multiline = true;
|
||||
this.xrLabel19.Name = "xrLabel19";
|
||||
this.xrLabel19.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
|
||||
this.xrLabel19.SizeF = new System.Drawing.SizeF(184.4191F, 56.25F);
|
||||
this.xrLabel19.StylePriority.UseBackColor = false;
|
||||
this.xrLabel19.StylePriority.UseFont = false;
|
||||
this.xrLabel19.StylePriority.UseForeColor = false;
|
||||
this.xrLabel19.Text = "KD Bank Duisburg\r\nIBAN DE11 3506 0190 1014 4160 10\r\nBIC GENODED1DKD\r\n";
|
||||
//
|
||||
// GroupHeader1
|
||||
//
|
||||
this.GroupHeader1.Controls.AddRange(new DevExpress.XtraReports.UI.XRControl[] {
|
||||
@@ -354,7 +283,7 @@ namespace SPZRatingen
|
||||
this.xrLabel_RecipientStreet,
|
||||
this.RecipientPostCodeAndTown});
|
||||
this.GroupHeader1.Font = new System.Drawing.Font("Arial", 10F);
|
||||
this.GroupHeader1.HeightF = 398.4791F;
|
||||
this.GroupHeader1.HeightF = 387.726F;
|
||||
this.GroupHeader1.Name = "GroupHeader1";
|
||||
this.GroupHeader1.StylePriority.UseFont = false;
|
||||
//
|
||||
@@ -363,7 +292,7 @@ namespace SPZRatingen
|
||||
this.xrLabel2.BackColor = System.Drawing.Color.Transparent;
|
||||
this.xrLabel2.CanShrink = true;
|
||||
this.xrLabel2.Font = new System.Drawing.Font("Arial", 10F);
|
||||
this.xrLabel2.LocationFloat = new DevExpress.Utils.PointFloat(420.7946F, 273.9612F);
|
||||
this.xrLabel2.LocationFloat = new DevExpress.Utils.PointFloat(409.375F, 263.2083F);
|
||||
this.xrLabel2.Name = "xrLabel2";
|
||||
this.xrLabel2.Padding = new DevExpress.XtraPrinting.PaddingInfo(12, 2, 0, 0, 100F);
|
||||
this.xrLabel2.SizeF = new System.Drawing.SizeF(202.4433F, 21.9344F);
|
||||
@@ -378,7 +307,7 @@ namespace SPZRatingen
|
||||
this.xrLabel8.BackColor = System.Drawing.Color.Transparent;
|
||||
this.xrLabel8.CanShrink = true;
|
||||
this.xrLabel8.Font = new System.Drawing.Font("Arial", 12F, System.Drawing.FontStyle.Bold);
|
||||
this.xrLabel8.LocationFloat = new DevExpress.Utils.PointFloat(420.7946F, 250.7112F);
|
||||
this.xrLabel8.LocationFloat = new DevExpress.Utils.PointFloat(409.375F, 239.9583F);
|
||||
this.xrLabel8.Name = "xrLabel8";
|
||||
this.xrLabel8.Padding = new DevExpress.XtraPrinting.PaddingInfo(12, 2, 0, 0, 100F);
|
||||
this.xrLabel8.SizeF = new System.Drawing.SizeF(193.4793F, 23.24998F);
|
||||
@@ -394,7 +323,7 @@ namespace SPZRatingen
|
||||
this.xrLabel9.Borders = DevExpress.XtraPrinting.BorderSide.None;
|
||||
this.xrLabel9.CanShrink = true;
|
||||
this.xrLabel9.Font = new System.Drawing.Font("Arial", 10F);
|
||||
this.xrLabel9.LocationFloat = new DevExpress.Utils.PointFloat(420.7946F, 234.7529F);
|
||||
this.xrLabel9.LocationFloat = new DevExpress.Utils.PointFloat(409.375F, 224F);
|
||||
this.xrLabel9.Name = "xrLabel9";
|
||||
this.xrLabel9.Padding = new DevExpress.XtraPrinting.PaddingInfo(12, 2, 0, 0, 100F);
|
||||
this.xrLabel9.SizeF = new System.Drawing.SizeF(193.4793F, 15.95831F);
|
||||
@@ -408,18 +337,18 @@ namespace SPZRatingen
|
||||
// xrShape1
|
||||
//
|
||||
this.xrShape1.ForeColor = System.Drawing.Color.DimGray;
|
||||
this.xrShape1.LocationFloat = new DevExpress.Utils.PointFloat(424.9999F, 226.0208F);
|
||||
this.xrShape1.LocationFloat = new DevExpress.Utils.PointFloat(413.5802F, 215.2679F);
|
||||
this.xrShape1.Name = "xrShape1";
|
||||
shapeRectangle1.Fillet = 45;
|
||||
this.xrShape1.Shape = shapeRectangle1;
|
||||
this.xrShape1.SizeF = new System.Drawing.SizeF(200F, 80F);
|
||||
this.xrShape1.SizeF = new System.Drawing.SizeF(211.4203F, 79.99998F);
|
||||
this.xrShape1.StylePriority.UseForeColor = false;
|
||||
//
|
||||
// xrLabel13
|
||||
//
|
||||
this.xrLabel13.BackColor = System.Drawing.Color.Transparent;
|
||||
this.xrLabel13.Font = new System.Drawing.Font("Arial", 11F);
|
||||
this.xrLabel13.LocationFloat = new DevExpress.Utils.PointFloat(0F, 356.5202F);
|
||||
this.xrLabel13.LocationFloat = new DevExpress.Utils.PointFloat(0.0006602361F, 345.7672F);
|
||||
this.xrLabel13.Multiline = true;
|
||||
this.xrLabel13.Name = "xrLabel13";
|
||||
this.xrLabel13.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
|
||||
@@ -435,7 +364,7 @@ namespace SPZRatingen
|
||||
this.xrLabel14.BackColor = System.Drawing.Color.Transparent;
|
||||
this.xrLabel14.CanShrink = true;
|
||||
this.xrLabel14.Font = new System.Drawing.Font("Arial", 11F, System.Drawing.FontStyle.Bold);
|
||||
this.xrLabel14.LocationFloat = new DevExpress.Utils.PointFloat(0F, 326.0208F);
|
||||
this.xrLabel14.LocationFloat = new DevExpress.Utils.PointFloat(0.0006602361F, 315.2678F);
|
||||
this.xrLabel14.Multiline = true;
|
||||
this.xrLabel14.Name = "xrLabel14";
|
||||
this.xrLabel14.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
|
||||
@@ -450,7 +379,7 @@ namespace SPZRatingen
|
||||
this.xrLabel15.BackColor = System.Drawing.Color.Transparent;
|
||||
this.xrLabel15.CanShrink = true;
|
||||
this.xrLabel15.Font = new System.Drawing.Font("Arial", 11F, System.Drawing.FontStyle.Bold);
|
||||
this.xrLabel15.LocationFloat = new DevExpress.Utils.PointFloat(0F, 306.0209F);
|
||||
this.xrLabel15.LocationFloat = new DevExpress.Utils.PointFloat(0.0006602361F, 295.2679F);
|
||||
this.xrLabel15.Multiline = true;
|
||||
this.xrLabel15.Name = "xrLabel15";
|
||||
this.xrLabel15.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
|
||||
@@ -465,7 +394,7 @@ namespace SPZRatingen
|
||||
this.xrLabel17.BackColor = System.Drawing.Color.Transparent;
|
||||
this.xrLabel17.CanShrink = true;
|
||||
this.xrLabel17.Font = new System.Drawing.Font("Arial", 11F, System.Drawing.FontStyle.Bold);
|
||||
this.xrLabel17.LocationFloat = new DevExpress.Utils.PointFloat(0F, 286.0209F);
|
||||
this.xrLabel17.LocationFloat = new DevExpress.Utils.PointFloat(0.0006602361F, 275.2679F);
|
||||
this.xrLabel17.Name = "xrLabel17";
|
||||
this.xrLabel17.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
|
||||
this.xrLabel17.SizeF = new System.Drawing.SizeF(362.0442F, 20.00003F);
|
||||
@@ -541,7 +470,7 @@ namespace SPZRatingen
|
||||
//
|
||||
// Stundensatz1Text
|
||||
//
|
||||
this.Stundensatz1Text.BorderColor = System.Drawing.Color.Silver;
|
||||
this.Stundensatz1Text.BorderColor = System.Drawing.Color.Black;
|
||||
this.Stundensatz1Text.Borders = DevExpress.XtraPrinting.BorderSide.Top;
|
||||
this.Stundensatz1Text.CanShrink = true;
|
||||
this.Stundensatz1Text.DataBindings.AddRange(new DevExpress.XtraReports.UI.XRBinding[] {
|
||||
@@ -560,7 +489,7 @@ namespace SPZRatingen
|
||||
//
|
||||
// BetragZwischensumme1Text
|
||||
//
|
||||
this.BetragZwischensumme1Text.BorderColor = System.Drawing.Color.Silver;
|
||||
this.BetragZwischensumme1Text.BorderColor = System.Drawing.Color.Black;
|
||||
this.BetragZwischensumme1Text.Borders = DevExpress.XtraPrinting.BorderSide.Top;
|
||||
this.BetragZwischensumme1Text.CanShrink = true;
|
||||
this.BetragZwischensumme1Text.DataBindings.AddRange(new DevExpress.XtraReports.UI.XRBinding[] {
|
||||
@@ -579,7 +508,7 @@ namespace SPZRatingen
|
||||
//
|
||||
// gelStundenZwischensumme1Text
|
||||
//
|
||||
this.gelStundenZwischensumme1Text.BorderColor = System.Drawing.Color.Silver;
|
||||
this.gelStundenZwischensumme1Text.BorderColor = System.Drawing.Color.Black;
|
||||
this.gelStundenZwischensumme1Text.Borders = DevExpress.XtraPrinting.BorderSide.Top;
|
||||
this.gelStundenZwischensumme1Text.CanShrink = true;
|
||||
this.gelStundenZwischensumme1Text.DataBindings.AddRange(new DevExpress.XtraReports.UI.XRBinding[] {
|
||||
@@ -624,7 +553,7 @@ namespace SPZRatingen
|
||||
//
|
||||
// Zwischensumme1Text
|
||||
//
|
||||
this.Zwischensumme1Text.BorderColor = System.Drawing.Color.Silver;
|
||||
this.Zwischensumme1Text.BorderColor = System.Drawing.Color.Black;
|
||||
this.Zwischensumme1Text.Borders = DevExpress.XtraPrinting.BorderSide.Top;
|
||||
this.Zwischensumme1Text.CanShrink = true;
|
||||
this.Zwischensumme1Text.Font = new System.Drawing.Font("Arial", 11F);
|
||||
@@ -641,7 +570,7 @@ namespace SPZRatingen
|
||||
//
|
||||
// xrLabel11
|
||||
//
|
||||
this.xrLabel11.Borders = DevExpress.XtraPrinting.BorderSide.Top;
|
||||
this.xrLabel11.Borders = DevExpress.XtraPrinting.BorderSide.None;
|
||||
this.xrLabel11.CanShrink = true;
|
||||
this.xrLabel11.Font = new System.Drawing.Font("Arial", 11F);
|
||||
this.xrLabel11.LocationFloat = new DevExpress.Utils.PointFloat(0.0001271566F, 0F);
|
||||
@@ -656,7 +585,7 @@ namespace SPZRatingen
|
||||
//
|
||||
// gelStunden1
|
||||
//
|
||||
this.gelStunden1.Borders = DevExpress.XtraPrinting.BorderSide.Top;
|
||||
this.gelStunden1.Borders = DevExpress.XtraPrinting.BorderSide.None;
|
||||
this.gelStunden1.CanShrink = true;
|
||||
this.gelStunden1.DataBindings.AddRange(new DevExpress.XtraReports.UI.XRBinding[] {
|
||||
new DevExpress.XtraReports.UI.XRBinding("Text", null, "InvoiceItems.UnitCount", "{0:0.00}")});
|
||||
@@ -673,7 +602,7 @@ namespace SPZRatingen
|
||||
//
|
||||
// xrLabel20
|
||||
//
|
||||
this.xrLabel20.Borders = DevExpress.XtraPrinting.BorderSide.Top;
|
||||
this.xrLabel20.Borders = DevExpress.XtraPrinting.BorderSide.None;
|
||||
this.xrLabel20.CanShrink = true;
|
||||
this.xrLabel20.Font = new System.Drawing.Font("Arial", 11F);
|
||||
this.xrLabel20.LocationFloat = new DevExpress.Utils.PointFloat(428.7501F, 0F);
|
||||
@@ -687,7 +616,7 @@ namespace SPZRatingen
|
||||
//
|
||||
// xrLabel27
|
||||
//
|
||||
this.xrLabel27.Borders = DevExpress.XtraPrinting.BorderSide.Top;
|
||||
this.xrLabel27.Borders = DevExpress.XtraPrinting.BorderSide.None;
|
||||
this.xrLabel27.CanShrink = true;
|
||||
this.xrLabel27.Font = new System.Drawing.Font("Arial", 11F);
|
||||
this.xrLabel27.LocationFloat = new DevExpress.Utils.PointFloat(528.7501F, 6.357829E-05F);
|
||||
@@ -747,7 +676,7 @@ namespace SPZRatingen
|
||||
//
|
||||
// xrLabel4
|
||||
//
|
||||
this.xrLabel4.Borders = DevExpress.XtraPrinting.BorderSide.None;
|
||||
this.xrLabel4.Borders = DevExpress.XtraPrinting.BorderSide.Bottom;
|
||||
this.xrLabel4.Font = new System.Drawing.Font("Arial", 11F);
|
||||
this.xrLabel4.LocationFloat = new DevExpress.Utils.PointFloat(328.7501F, 0F);
|
||||
this.xrLabel4.Name = "xrLabel4";
|
||||
@@ -761,7 +690,7 @@ namespace SPZRatingen
|
||||
//
|
||||
// xrLabel6
|
||||
//
|
||||
this.xrLabel6.Borders = DevExpress.XtraPrinting.BorderSide.None;
|
||||
this.xrLabel6.Borders = DevExpress.XtraPrinting.BorderSide.Bottom;
|
||||
this.xrLabel6.Font = new System.Drawing.Font("Arial", 11F);
|
||||
this.xrLabel6.LocationFloat = new DevExpress.Utils.PointFloat(0.0001271566F, 0F);
|
||||
this.xrLabel6.Name = "xrLabel6";
|
||||
@@ -774,7 +703,7 @@ namespace SPZRatingen
|
||||
//
|
||||
// xrLabel5
|
||||
//
|
||||
this.xrLabel5.Borders = DevExpress.XtraPrinting.BorderSide.None;
|
||||
this.xrLabel5.Borders = DevExpress.XtraPrinting.BorderSide.Bottom;
|
||||
this.xrLabel5.Font = new System.Drawing.Font("Arial", 11F);
|
||||
this.xrLabel5.LocationFloat = new DevExpress.Utils.PointFloat(528.7501F, 0F);
|
||||
this.xrLabel5.Name = "xrLabel5";
|
||||
@@ -788,7 +717,7 @@ namespace SPZRatingen
|
||||
//
|
||||
// xrLabel7
|
||||
//
|
||||
this.xrLabel7.Borders = DevExpress.XtraPrinting.BorderSide.None;
|
||||
this.xrLabel7.Borders = DevExpress.XtraPrinting.BorderSide.Bottom;
|
||||
this.xrLabel7.Font = new System.Drawing.Font("Arial", 11F);
|
||||
this.xrLabel7.LocationFloat = new DevExpress.Utils.PointFloat(428.7501F, 0F);
|
||||
this.xrLabel7.Name = "xrLabel7";
|
||||
@@ -810,6 +739,77 @@ namespace SPZRatingen
|
||||
this.GroupFooter1.Name = "GroupFooter1";
|
||||
this.GroupFooter1.StylePriority.UseFont = false;
|
||||
//
|
||||
// xrLabel3
|
||||
//
|
||||
this.xrLabel3.BackColor = System.Drawing.Color.Transparent;
|
||||
this.xrLabel3.ForeColor = System.Drawing.Color.Gray;
|
||||
this.xrLabel3.LocationFloat = new DevExpress.Utils.PointFloat(0F, 0F);
|
||||
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(182F, 56.25F);
|
||||
this.xrLabel3.StylePriority.UseBackColor = false;
|
||||
this.xrLabel3.StylePriority.UseFont = false;
|
||||
this.xrLabel3.StylePriority.UseForeColor = false;
|
||||
this.xrLabel3.Text = "Sozialpsychiatrisches Zentrum Ratingen\r\ngemeinnützige GmbH\r\nDüsseldorfer Straße 3" +
|
||||
"6 c\r\n40878 Ratingen";
|
||||
//
|
||||
// xrLabel21
|
||||
//
|
||||
this.xrLabel21.BackColor = System.Drawing.Color.Transparent;
|
||||
this.xrLabel21.ForeColor = System.Drawing.Color.Gray;
|
||||
this.xrLabel21.LocationFloat = new DevExpress.Utils.PointFloat(182F, 0F);
|
||||
this.xrLabel21.Multiline = true;
|
||||
this.xrLabel21.Name = "xrLabel21";
|
||||
this.xrLabel21.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
|
||||
this.xrLabel21.SizeF = new System.Drawing.SizeF(98.49803F, 56.24988F);
|
||||
this.xrLabel21.StylePriority.UseBackColor = false;
|
||||
this.xrLabel21.StylePriority.UseFont = false;
|
||||
this.xrLabel21.StylePriority.UseForeColor = false;
|
||||
this.xrLabel21.Text = "Geschäftsführerin\r\nHendrikje Rannoch";
|
||||
//
|
||||
// xrLabel23
|
||||
//
|
||||
this.xrLabel23.BackColor = System.Drawing.Color.Transparent;
|
||||
this.xrLabel23.ForeColor = System.Drawing.Color.Gray;
|
||||
this.xrLabel23.LocationFloat = new DevExpress.Utils.PointFloat(370.498F, 0F);
|
||||
this.xrLabel23.Multiline = true;
|
||||
this.xrLabel23.Name = "xrLabel23";
|
||||
this.xrLabel23.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
|
||||
this.xrLabel23.SizeF = new System.Drawing.SizeF(98.99997F, 56.25002F);
|
||||
this.xrLabel23.StylePriority.UseBackColor = false;
|
||||
this.xrLabel23.StylePriority.UseFont = false;
|
||||
this.xrLabel23.StylePriority.UseForeColor = false;
|
||||
this.xrLabel23.Text = "Steuernummer\r\n147/5755/0391\r\nFinanzamt\r\nDüsseldorf-Mettmann";
|
||||
//
|
||||
// xrLabel22
|
||||
//
|
||||
this.xrLabel22.BackColor = System.Drawing.Color.Transparent;
|
||||
this.xrLabel22.ForeColor = System.Drawing.Color.Gray;
|
||||
this.xrLabel22.LocationFloat = new DevExpress.Utils.PointFloat(280.498F, 0F);
|
||||
this.xrLabel22.Multiline = true;
|
||||
this.xrLabel22.Name = "xrLabel22";
|
||||
this.xrLabel22.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
|
||||
this.xrLabel22.SizeF = new System.Drawing.SizeF(90F, 56.25F);
|
||||
this.xrLabel22.StylePriority.UseBackColor = false;
|
||||
this.xrLabel22.StylePriority.UseFont = false;
|
||||
this.xrLabel22.StylePriority.UseForeColor = false;
|
||||
this.xrLabel22.Text = "Sitz: Ratingen\r\nRegistergericht\r\nAG Düsseldorf\r\nHRB 67049\r\n";
|
||||
//
|
||||
// xrLabel19
|
||||
//
|
||||
this.xrLabel19.BackColor = System.Drawing.Color.Transparent;
|
||||
this.xrLabel19.ForeColor = System.Drawing.Color.Gray;
|
||||
this.xrLabel19.LocationFloat = new DevExpress.Utils.PointFloat(469.4979F, 0F);
|
||||
this.xrLabel19.Multiline = true;
|
||||
this.xrLabel19.Name = "xrLabel19";
|
||||
this.xrLabel19.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
|
||||
this.xrLabel19.SizeF = new System.Drawing.SizeF(180F, 56.25F);
|
||||
this.xrLabel19.StylePriority.UseBackColor = false;
|
||||
this.xrLabel19.StylePriority.UseFont = false;
|
||||
this.xrLabel19.StylePriority.UseForeColor = false;
|
||||
this.xrLabel19.Text = "KD Bank Duisburg\r\nIBAN DE11 3506 0190 1014 4160 10\r\nBIC GENODED1DKD\r\n";
|
||||
//
|
||||
// Spitzabrechnung
|
||||
//
|
||||
this.Bands.AddRange(new DevExpress.XtraReports.UI.Band[] {
|
||||
@@ -826,7 +826,7 @@ namespace SPZRatingen
|
||||
this.ExportOptions.PrintPreview.DefaultFileName = "Spitzabrechnung";
|
||||
this.FormattingRuleSheet.AddRange(new DevExpress.XtraReports.UI.FormattingRule[] {
|
||||
this.ruleRateFactorNull});
|
||||
this.Margins = new System.Drawing.Printing.Margins(100, 52, 185, 56);
|
||||
this.Margins = new System.Drawing.Printing.Margins(100, 52, 185, 68);
|
||||
this.PageHeight = 1169;
|
||||
this.PageWidth = 827;
|
||||
this.PaperKind = System.Drawing.Printing.PaperKind.A4;
|
||||
@@ -871,11 +871,6 @@ namespace SPZRatingen
|
||||
private DevExpress.XtraReports.UI.XRLabel xrLabel25;
|
||||
private DevExpress.XtraReports.UI.XRLabel xrLabel24;
|
||||
private DevExpress.XtraReports.UI.XRLabel xrLabel12;
|
||||
private DevExpress.XtraReports.UI.XRLabel xrLabel23;
|
||||
private DevExpress.XtraReports.UI.XRLabel xrLabel22;
|
||||
private DevExpress.XtraReports.UI.XRLabel xrLabel21;
|
||||
private DevExpress.XtraReports.UI.XRLabel xrLabel3;
|
||||
private DevExpress.XtraReports.UI.XRLabel xrLabel19;
|
||||
private DevExpress.XtraReports.UI.XRLabel xrLabel4;
|
||||
private DevExpress.XtraReports.UI.XRLabel Stundensatz1Text;
|
||||
private DevExpress.XtraReports.UI.XRLabel BetragZwischensumme1Text;
|
||||
@@ -895,5 +890,10 @@ namespace SPZRatingen
|
||||
private DevExpress.XtraReports.UI.GroupFooterBand GroupFooter2;
|
||||
private DevExpress.XtraReports.UI.GroupHeaderBand GroupHeader2;
|
||||
private DevExpress.XtraReports.UI.XRLabel xrLabel10;
|
||||
private DevExpress.XtraReports.UI.XRLabel xrLabel3;
|
||||
private DevExpress.XtraReports.UI.XRLabel xrLabel21;
|
||||
private DevExpress.XtraReports.UI.XRLabel xrLabel23;
|
||||
private DevExpress.XtraReports.UI.XRLabel xrLabel22;
|
||||
private DevExpress.XtraReports.UI.XRLabel xrLabel19;
|
||||
}
|
||||
}
|
||||
|
||||
@@ -39,6 +39,7 @@ namespace UebergangshilfeUnnaEV
|
||||
this.xrTableCell2 = new DevExpress.XtraReports.UI.XRTableCell();
|
||||
this.xrTableCell3 = new DevExpress.XtraReports.UI.XRTableCell();
|
||||
this.xrTableCell4 = new DevExpress.XtraReports.UI.XRTableCell();
|
||||
this.xrTableCell9 = new DevExpress.XtraReports.UI.XRTableCell();
|
||||
this.xrTableCell5 = new DevExpress.XtraReports.UI.XRTableCell();
|
||||
this.xrTableCell7 = new DevExpress.XtraReports.UI.XRTableCell();
|
||||
this.xrTableCell6 = new DevExpress.XtraReports.UI.XRTableCell();
|
||||
@@ -48,10 +49,10 @@ namespace UebergangshilfeUnnaEV
|
||||
this.xrTableCell32 = new DevExpress.XtraReports.UI.XRTableCell();
|
||||
this.xrTableCell33 = new DevExpress.XtraReports.UI.XRTableCell();
|
||||
this.xrTableCell34 = new DevExpress.XtraReports.UI.XRTableCell();
|
||||
this.xrTableCell8 = new DevExpress.XtraReports.UI.XRTableCell();
|
||||
this.xrTableCell35 = new DevExpress.XtraReports.UI.XRTableCell();
|
||||
this.xrTableCell1 = new DevExpress.XtraReports.UI.XRTableCell();
|
||||
this.xrTableCell36 = new DevExpress.XtraReports.UI.XRTableCell();
|
||||
this.bindingSource1 = new System.Windows.Forms.BindingSource(this.components);
|
||||
this.formattingRuleStartDate = new DevExpress.XtraReports.UI.FormattingRule();
|
||||
this.ReportHeader = new DevExpress.XtraReports.UI.ReportHeaderBand();
|
||||
this.xrLabel27 = new DevExpress.XtraReports.UI.XRLabel();
|
||||
@@ -79,11 +80,13 @@ namespace UebergangshilfeUnnaEV
|
||||
this.topMarginBand1 = new DevExpress.XtraReports.UI.TopMarginBand();
|
||||
this.bottomMarginBand1 = new DevExpress.XtraReports.UI.BottomMarginBand();
|
||||
this.GroupFooter1 = new DevExpress.XtraReports.UI.GroupFooterBand();
|
||||
this.xrLabel32 = new DevExpress.XtraReports.UI.XRLabel();
|
||||
this.xrLabel9 = new DevExpress.XtraReports.UI.XRLabel();
|
||||
this.xrLabel30 = new DevExpress.XtraReports.UI.XRLabel();
|
||||
this.xrLabel18 = new DevExpress.XtraReports.UI.XRLabel();
|
||||
this.xrLabel17 = new DevExpress.XtraReports.UI.XRLabel();
|
||||
this.xrLabel1 = new DevExpress.XtraReports.UI.XRLabel();
|
||||
this.xrLabel9 = new DevExpress.XtraReports.UI.XRLabel();
|
||||
this.xrLabel31 = new DevExpress.XtraReports.UI.XRLabel();
|
||||
this.lblFehlkontakt = new DevExpress.XtraReports.UI.XRLabel();
|
||||
this.xrLabel28 = new DevExpress.XtraReports.UI.XRLabel();
|
||||
this.xrLabel29 = new DevExpress.XtraReports.UI.XRLabel();
|
||||
this.xrLabel13 = new DevExpress.XtraReports.UI.XRLabel();
|
||||
@@ -93,6 +96,7 @@ namespace UebergangshilfeUnnaEV
|
||||
this.fieldKontaktArt = new DevExpress.XtraReports.UI.CalculatedField();
|
||||
this.PageFooter = new DevExpress.XtraReports.UI.PageFooterBand();
|
||||
this.xrLabel15 = new DevExpress.XtraReports.UI.XRLabel();
|
||||
this.bindingSource1 = new System.Windows.Forms.BindingSource(this.components);
|
||||
((System.ComponentModel.ISupportInitialize)(this.xrTable2)).BeginInit();
|
||||
((System.ComponentModel.ISupportInitialize)(this.xrTable1)).BeginInit();
|
||||
((System.ComponentModel.ISupportInitialize)(this.bindingSource1)).BeginInit();
|
||||
@@ -138,7 +142,7 @@ namespace UebergangshilfeUnnaEV
|
||||
this.xrTable2.Padding = new DevExpress.XtraPrinting.PaddingInfo(0, 0, 0, 0, 100F);
|
||||
this.xrTable2.Rows.AddRange(new DevExpress.XtraReports.UI.XRTableRow[] {
|
||||
this.xrTableRow1});
|
||||
this.xrTable2.SizeF = new System.Drawing.SizeF(746.9988F, 34.40971F);
|
||||
this.xrTable2.SizeF = new System.Drawing.SizeF(747F, 34.40971F);
|
||||
this.xrTable2.TextAlignment = DevExpress.XtraPrinting.TextAlignment.TopLeft;
|
||||
//
|
||||
// xrTableRow1
|
||||
@@ -147,6 +151,7 @@ namespace UebergangshilfeUnnaEV
|
||||
this.xrTableCell2,
|
||||
this.xrTableCell3,
|
||||
this.xrTableCell4,
|
||||
this.xrTableCell9,
|
||||
this.xrTableCell5,
|
||||
this.xrTableCell7,
|
||||
this.xrTableCell6});
|
||||
@@ -158,8 +163,7 @@ namespace UebergangshilfeUnnaEV
|
||||
// xrTableCell2
|
||||
//
|
||||
this.xrTableCell2.BackColor = System.Drawing.Color.Transparent;
|
||||
this.xrTableCell2.Borders = ((DevExpress.XtraPrinting.BorderSide)(((DevExpress.XtraPrinting.BorderSide.Left | DevExpress.XtraPrinting.BorderSide.Top)
|
||||
| DevExpress.XtraPrinting.BorderSide.Right)));
|
||||
this.xrTableCell2.Borders = ((DevExpress.XtraPrinting.BorderSide)((DevExpress.XtraPrinting.BorderSide.Left | DevExpress.XtraPrinting.BorderSide.Bottom)));
|
||||
this.xrTableCell2.DataBindings.AddRange(new DevExpress.XtraReports.UI.XRBinding[] {
|
||||
new DevExpress.XtraReports.UI.XRBinding("Text", null, "Services.StartDate", "{0:dd.MM.yyyy}")});
|
||||
this.xrTableCell2.Font = new System.Drawing.Font("Arial", 11F);
|
||||
@@ -170,13 +174,12 @@ namespace UebergangshilfeUnnaEV
|
||||
this.xrTableCell2.StylePriority.UseFont = false;
|
||||
this.xrTableCell2.StylePriority.UseTextAlignment = false;
|
||||
this.xrTableCell2.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleCenter;
|
||||
this.xrTableCell2.Weight = 0.16479944308390851D;
|
||||
this.xrTableCell2.Weight = 0.15513212905145413D;
|
||||
//
|
||||
// xrTableCell3
|
||||
//
|
||||
this.xrTableCell3.BackColor = System.Drawing.Color.Transparent;
|
||||
this.xrTableCell3.Borders = ((DevExpress.XtraPrinting.BorderSide)(((DevExpress.XtraPrinting.BorderSide.Left | DevExpress.XtraPrinting.BorderSide.Top)
|
||||
| DevExpress.XtraPrinting.BorderSide.Right)));
|
||||
this.xrTableCell3.Borders = ((DevExpress.XtraPrinting.BorderSide)((DevExpress.XtraPrinting.BorderSide.Left | DevExpress.XtraPrinting.BorderSide.Bottom)));
|
||||
this.xrTableCell3.DataBindings.AddRange(new DevExpress.XtraReports.UI.XRBinding[] {
|
||||
new DevExpress.XtraReports.UI.XRBinding("Text", null, "Services.StartDate", "{0:HH:mm}")});
|
||||
this.xrTableCell3.Font = new System.Drawing.Font("Arial", 11F);
|
||||
@@ -187,13 +190,12 @@ namespace UebergangshilfeUnnaEV
|
||||
this.xrTableCell3.StylePriority.UseFont = false;
|
||||
this.xrTableCell3.StylePriority.UseTextAlignment = false;
|
||||
this.xrTableCell3.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleCenter;
|
||||
this.xrTableCell3.Weight = 0.08864692045958121D;
|
||||
this.xrTableCell3.Weight = 0.088646852827372946D;
|
||||
//
|
||||
// xrTableCell4
|
||||
//
|
||||
this.xrTableCell4.BackColor = System.Drawing.Color.Transparent;
|
||||
this.xrTableCell4.Borders = ((DevExpress.XtraPrinting.BorderSide)(((DevExpress.XtraPrinting.BorderSide.Left | DevExpress.XtraPrinting.BorderSide.Top)
|
||||
| DevExpress.XtraPrinting.BorderSide.Right)));
|
||||
this.xrTableCell4.Borders = ((DevExpress.XtraPrinting.BorderSide)((DevExpress.XtraPrinting.BorderSide.Left | DevExpress.XtraPrinting.BorderSide.Bottom)));
|
||||
this.xrTableCell4.DataBindings.AddRange(new DevExpress.XtraReports.UI.XRBinding[] {
|
||||
new DevExpress.XtraReports.UI.XRBinding("Text", null, "Services.EndDate", "{0:HH:mm}")});
|
||||
this.xrTableCell4.Font = new System.Drawing.Font("Arial", 11F);
|
||||
@@ -205,13 +207,30 @@ namespace UebergangshilfeUnnaEV
|
||||
this.xrTableCell4.StylePriority.UseFont = false;
|
||||
this.xrTableCell4.StylePriority.UseTextAlignment = false;
|
||||
this.xrTableCell4.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleCenter;
|
||||
this.xrTableCell4.Weight = 0.088646883380889413D;
|
||||
this.xrTableCell4.Weight = 0.088646838292750579D;
|
||||
//
|
||||
// xrTableCell9
|
||||
//
|
||||
this.xrTableCell9.BackColor = System.Drawing.Color.Transparent;
|
||||
this.xrTableCell9.Borders = ((DevExpress.XtraPrinting.BorderSide)((DevExpress.XtraPrinting.BorderSide.Left | DevExpress.XtraPrinting.BorderSide.Bottom)));
|
||||
this.xrTableCell9.DataBindings.AddRange(new DevExpress.XtraReports.UI.XRBinding[] {
|
||||
new DevExpress.XtraReports.UI.XRBinding("Text", null, "Services.Notice5")});
|
||||
this.xrTableCell9.Font = new System.Drawing.Font("Arial", 11F);
|
||||
this.xrTableCell9.Name = "xrTableCell9";
|
||||
this.xrTableCell9.Padding = new DevExpress.XtraPrinting.PaddingInfo(5, 2, 0, 0, 100F);
|
||||
this.xrTableCell9.StylePriority.UseBackColor = false;
|
||||
this.xrTableCell9.StylePriority.UseBorders = false;
|
||||
this.xrTableCell9.StylePriority.UseFont = false;
|
||||
this.xrTableCell9.StylePriority.UsePadding = false;
|
||||
this.xrTableCell9.StylePriority.UseTextAlignment = false;
|
||||
this.xrTableCell9.Text = "xrTableCell9";
|
||||
this.xrTableCell9.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleCenter;
|
||||
this.xrTableCell9.Weight = 0.073872402045990632D;
|
||||
//
|
||||
// xrTableCell5
|
||||
//
|
||||
this.xrTableCell5.BackColor = System.Drawing.Color.Transparent;
|
||||
this.xrTableCell5.Borders = ((DevExpress.XtraPrinting.BorderSide)(((DevExpress.XtraPrinting.BorderSide.Left | DevExpress.XtraPrinting.BorderSide.Top)
|
||||
| DevExpress.XtraPrinting.BorderSide.Right)));
|
||||
this.xrTableCell5.Borders = ((DevExpress.XtraPrinting.BorderSide)((DevExpress.XtraPrinting.BorderSide.Left | DevExpress.XtraPrinting.BorderSide.Bottom)));
|
||||
this.xrTableCell5.DataBindings.AddRange(new DevExpress.XtraReports.UI.XRBinding[] {
|
||||
new DevExpress.XtraReports.UI.XRBinding("Text", null, "Services.Minutes", "{0:0.00}")});
|
||||
this.xrTableCell5.Font = new System.Drawing.Font("Arial", 11F);
|
||||
@@ -223,13 +242,12 @@ namespace UebergangshilfeUnnaEV
|
||||
this.xrTableCell5.StylePriority.UseFont = false;
|
||||
this.xrTableCell5.StylePriority.UseTextAlignment = false;
|
||||
this.xrTableCell5.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleCenter;
|
||||
this.xrTableCell5.Weight = 0.17870731282163985D;
|
||||
this.xrTableCell5.Weight = 0.11819593068960264D;
|
||||
//
|
||||
// xrTableCell7
|
||||
//
|
||||
this.xrTableCell7.BackColor = System.Drawing.Color.Transparent;
|
||||
this.xrTableCell7.Borders = ((DevExpress.XtraPrinting.BorderSide)(((DevExpress.XtraPrinting.BorderSide.Left | DevExpress.XtraPrinting.BorderSide.Top)
|
||||
| DevExpress.XtraPrinting.BorderSide.Right)));
|
||||
this.xrTableCell7.Borders = ((DevExpress.XtraPrinting.BorderSide)((DevExpress.XtraPrinting.BorderSide.Left | DevExpress.XtraPrinting.BorderSide.Bottom)));
|
||||
this.xrTableCell7.DataBindings.AddRange(new DevExpress.XtraReports.UI.XRBinding[] {
|
||||
new DevExpress.XtraReports.UI.XRBinding("Text", null, "Services.EmployeeAbbr")});
|
||||
this.xrTableCell7.Font = new System.Drawing.Font("Arial", 11F);
|
||||
@@ -241,13 +259,13 @@ namespace UebergangshilfeUnnaEV
|
||||
this.xrTableCell7.StylePriority.UsePadding = false;
|
||||
this.xrTableCell7.StylePriority.UseTextAlignment = false;
|
||||
this.xrTableCell7.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleCenter;
|
||||
this.xrTableCell7.Weight = 0.14573362272074236D;
|
||||
this.xrTableCell7.Weight = 0.14774482424181323D;
|
||||
//
|
||||
// xrTableCell6
|
||||
//
|
||||
this.xrTableCell6.BackColor = System.Drawing.Color.Transparent;
|
||||
this.xrTableCell6.Borders = ((DevExpress.XtraPrinting.BorderSide)(((DevExpress.XtraPrinting.BorderSide.Left | DevExpress.XtraPrinting.BorderSide.Top)
|
||||
| DevExpress.XtraPrinting.BorderSide.Right)));
|
||||
this.xrTableCell6.Borders = ((DevExpress.XtraPrinting.BorderSide)(((DevExpress.XtraPrinting.BorderSide.Left | DevExpress.XtraPrinting.BorderSide.Right)
|
||||
| DevExpress.XtraPrinting.BorderSide.Bottom)));
|
||||
this.xrTableCell6.Font = new System.Drawing.Font("Arial", 11F);
|
||||
this.xrTableCell6.Multiline = true;
|
||||
this.xrTableCell6.Name = "xrTableCell6";
|
||||
@@ -257,7 +275,7 @@ namespace UebergangshilfeUnnaEV
|
||||
this.xrTableCell6.StylePriority.UseFont = false;
|
||||
this.xrTableCell6.StylePriority.UseTextAlignment = false;
|
||||
this.xrTableCell6.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleCenter;
|
||||
this.xrTableCell6.Weight = 0.43711777435312782D;
|
||||
this.xrTableCell6.Weight = 0.43141477856795529D;
|
||||
//
|
||||
// GroupHeader1
|
||||
//
|
||||
@@ -278,7 +296,7 @@ namespace UebergangshilfeUnnaEV
|
||||
this.xrTable1.Padding = new DevExpress.XtraPrinting.PaddingInfo(0, 0, 0, 0, 100F);
|
||||
this.xrTable1.Rows.AddRange(new DevExpress.XtraReports.UI.XRTableRow[] {
|
||||
this.xrTableRow9});
|
||||
this.xrTable1.SizeF = new System.Drawing.SizeF(747F, 40.65971F);
|
||||
this.xrTable1.SizeF = new System.Drawing.SizeF(746.9999F, 40.65971F);
|
||||
this.xrTable1.TextAlignment = DevExpress.XtraPrinting.TextAlignment.TopLeft;
|
||||
//
|
||||
// xrTableRow9
|
||||
@@ -287,6 +305,7 @@ namespace UebergangshilfeUnnaEV
|
||||
this.xrTableCell32,
|
||||
this.xrTableCell33,
|
||||
this.xrTableCell34,
|
||||
this.xrTableCell8,
|
||||
this.xrTableCell35,
|
||||
this.xrTableCell1,
|
||||
this.xrTableCell36});
|
||||
@@ -299,7 +318,7 @@ namespace UebergangshilfeUnnaEV
|
||||
//
|
||||
this.xrTableCell32.BackColor = System.Drawing.Color.Transparent;
|
||||
this.xrTableCell32.Borders = ((DevExpress.XtraPrinting.BorderSide)(((DevExpress.XtraPrinting.BorderSide.Left | DevExpress.XtraPrinting.BorderSide.Top)
|
||||
| DevExpress.XtraPrinting.BorderSide.Right)));
|
||||
| DevExpress.XtraPrinting.BorderSide.Bottom)));
|
||||
this.xrTableCell32.Font = new System.Drawing.Font("Arial", 11F);
|
||||
this.xrTableCell32.Name = "xrTableCell32";
|
||||
this.xrTableCell32.Padding = new DevExpress.XtraPrinting.PaddingInfo(5, 2, 0, 0, 100F);
|
||||
@@ -309,13 +328,13 @@ namespace UebergangshilfeUnnaEV
|
||||
this.xrTableCell32.StylePriority.UseTextAlignment = false;
|
||||
this.xrTableCell32.Text = "Datum";
|
||||
this.xrTableCell32.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleCenter;
|
||||
this.xrTableCell32.Weight = 0.16479948817204865D;
|
||||
this.xrTableCell32.Weight = 0.15513207185819497D;
|
||||
//
|
||||
// xrTableCell33
|
||||
//
|
||||
this.xrTableCell33.BackColor = System.Drawing.Color.Transparent;
|
||||
this.xrTableCell33.Borders = ((DevExpress.XtraPrinting.BorderSide)(((DevExpress.XtraPrinting.BorderSide.Left | DevExpress.XtraPrinting.BorderSide.Top)
|
||||
| DevExpress.XtraPrinting.BorderSide.Right)));
|
||||
| DevExpress.XtraPrinting.BorderSide.Bottom)));
|
||||
this.xrTableCell33.Font = new System.Drawing.Font("Arial", 11F);
|
||||
this.xrTableCell33.Name = "xrTableCell33";
|
||||
this.xrTableCell33.Padding = new DevExpress.XtraPrinting.PaddingInfo(5, 2, 0, 0, 100F);
|
||||
@@ -331,7 +350,7 @@ namespace UebergangshilfeUnnaEV
|
||||
//
|
||||
this.xrTableCell34.BackColor = System.Drawing.Color.Transparent;
|
||||
this.xrTableCell34.Borders = ((DevExpress.XtraPrinting.BorderSide)(((DevExpress.XtraPrinting.BorderSide.Left | DevExpress.XtraPrinting.BorderSide.Top)
|
||||
| DevExpress.XtraPrinting.BorderSide.Right)));
|
||||
| DevExpress.XtraPrinting.BorderSide.Bottom)));
|
||||
this.xrTableCell34.Font = new System.Drawing.Font("Arial", 11F);
|
||||
this.xrTableCell34.Multiline = true;
|
||||
this.xrTableCell34.Name = "xrTableCell34";
|
||||
@@ -342,13 +361,30 @@ namespace UebergangshilfeUnnaEV
|
||||
this.xrTableCell34.StylePriority.UseTextAlignment = false;
|
||||
this.xrTableCell34.Text = "bis";
|
||||
this.xrTableCell34.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleCenter;
|
||||
this.xrTableCell34.Weight = 0.088646888960887266D;
|
||||
this.xrTableCell34.Weight = 0.088646900232922946D;
|
||||
//
|
||||
// xrTableCell8
|
||||
//
|
||||
this.xrTableCell8.BackColor = System.Drawing.Color.Transparent;
|
||||
this.xrTableCell8.Borders = ((DevExpress.XtraPrinting.BorderSide)(((DevExpress.XtraPrinting.BorderSide.Left | DevExpress.XtraPrinting.BorderSide.Top)
|
||||
| DevExpress.XtraPrinting.BorderSide.Bottom)));
|
||||
this.xrTableCell8.Font = new System.Drawing.Font("Arial", 11F);
|
||||
this.xrTableCell8.Name = "xrTableCell8";
|
||||
this.xrTableCell8.Padding = new DevExpress.XtraPrinting.PaddingInfo(5, 2, 0, 0, 100F);
|
||||
this.xrTableCell8.StylePriority.UseBackColor = false;
|
||||
this.xrTableCell8.StylePriority.UseBorders = false;
|
||||
this.xrTableCell8.StylePriority.UseFont = false;
|
||||
this.xrTableCell8.StylePriority.UsePadding = false;
|
||||
this.xrTableCell8.StylePriority.UseTextAlignment = false;
|
||||
this.xrTableCell8.Text = "Art";
|
||||
this.xrTableCell8.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleCenter;
|
||||
this.xrTableCell8.Weight = 0.0738724119320113D;
|
||||
//
|
||||
// xrTableCell35
|
||||
//
|
||||
this.xrTableCell35.BackColor = System.Drawing.Color.Transparent;
|
||||
this.xrTableCell35.Borders = ((DevExpress.XtraPrinting.BorderSide)(((DevExpress.XtraPrinting.BorderSide.Left | DevExpress.XtraPrinting.BorderSide.Top)
|
||||
| DevExpress.XtraPrinting.BorderSide.Right)));
|
||||
| DevExpress.XtraPrinting.BorderSide.Bottom)));
|
||||
this.xrTableCell35.Font = new System.Drawing.Font("Arial", 11F);
|
||||
this.xrTableCell35.Multiline = true;
|
||||
this.xrTableCell35.Name = "xrTableCell35";
|
||||
@@ -357,15 +393,15 @@ namespace UebergangshilfeUnnaEV
|
||||
this.xrTableCell35.StylePriority.UseBorders = false;
|
||||
this.xrTableCell35.StylePriority.UseFont = false;
|
||||
this.xrTableCell35.StylePriority.UseTextAlignment = false;
|
||||
this.xrTableCell35.Text = "Anzahl Minuten";
|
||||
this.xrTableCell35.Text = "Minuten";
|
||||
this.xrTableCell35.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleCenter;
|
||||
this.xrTableCell35.Weight = 0.1787072226453596D;
|
||||
this.xrTableCell35.Weight = 0.11819586320902145D;
|
||||
//
|
||||
// xrTableCell1
|
||||
//
|
||||
this.xrTableCell1.BackColor = System.Drawing.Color.Transparent;
|
||||
this.xrTableCell1.Borders = ((DevExpress.XtraPrinting.BorderSide)(((DevExpress.XtraPrinting.BorderSide.Left | DevExpress.XtraPrinting.BorderSide.Top)
|
||||
| DevExpress.XtraPrinting.BorderSide.Right)));
|
||||
| DevExpress.XtraPrinting.BorderSide.Bottom)));
|
||||
this.xrTableCell1.Font = new System.Drawing.Font("Arial", 11F);
|
||||
this.xrTableCell1.Name = "xrTableCell1";
|
||||
this.xrTableCell1.Padding = new DevExpress.XtraPrinting.PaddingInfo(5, 2, 0, 0, 100F);
|
||||
@@ -376,13 +412,14 @@ namespace UebergangshilfeUnnaEV
|
||||
this.xrTableCell1.StylePriority.UseTextAlignment = false;
|
||||
this.xrTableCell1.Text = "HDZ";
|
||||
this.xrTableCell1.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleCenter;
|
||||
this.xrTableCell1.Weight = 0.14573366645277031D;
|
||||
this.xrTableCell1.Weight = 0.14774482306674608D;
|
||||
//
|
||||
// xrTableCell36
|
||||
//
|
||||
this.xrTableCell36.BackColor = System.Drawing.Color.Transparent;
|
||||
this.xrTableCell36.Borders = ((DevExpress.XtraPrinting.BorderSide)(((DevExpress.XtraPrinting.BorderSide.Left | DevExpress.XtraPrinting.BorderSide.Top)
|
||||
| DevExpress.XtraPrinting.BorderSide.Right)));
|
||||
this.xrTableCell36.Borders = ((DevExpress.XtraPrinting.BorderSide)((((DevExpress.XtraPrinting.BorderSide.Left | DevExpress.XtraPrinting.BorderSide.Top)
|
||||
| DevExpress.XtraPrinting.BorderSide.Right)
|
||||
| DevExpress.XtraPrinting.BorderSide.Bottom)));
|
||||
this.xrTableCell36.Font = new System.Drawing.Font("Arial", 11F);
|
||||
this.xrTableCell36.Multiline = true;
|
||||
this.xrTableCell36.Name = "xrTableCell36";
|
||||
@@ -393,11 +430,7 @@ namespace UebergangshilfeUnnaEV
|
||||
this.xrTableCell36.StylePriority.UseTextAlignment = false;
|
||||
this.xrTableCell36.Text = "Unterschrift Klient/in";
|
||||
this.xrTableCell36.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleCenter;
|
||||
this.xrTableCell36.Weight = 0.437119692257426D;
|
||||
//
|
||||
// bindingSource1
|
||||
//
|
||||
this.bindingSource1.DataSource = typeof(BeWo.Report.ReportObjects.ServicesOverviewRO);
|
||||
this.xrTableCell36.Weight = 0.43141480225686946D;
|
||||
//
|
||||
// formattingRuleStartDate
|
||||
//
|
||||
@@ -751,31 +784,73 @@ namespace UebergangshilfeUnnaEV
|
||||
// GroupFooter1
|
||||
//
|
||||
this.GroupFooter1.Controls.AddRange(new DevExpress.XtraReports.UI.XRControl[] {
|
||||
this.xrLabel32,
|
||||
this.xrLabel9,
|
||||
this.xrLabel30,
|
||||
this.xrLabel18,
|
||||
this.xrLabel17,
|
||||
this.xrLabel1,
|
||||
this.xrLabel9,
|
||||
this.xrLabel31,
|
||||
this.lblFehlkontakt,
|
||||
this.xrLabel28,
|
||||
this.xrLabel29,
|
||||
this.xrLabel13,
|
||||
this.xrLabel12,
|
||||
this.xrLabel11,
|
||||
this.xrLabel10});
|
||||
this.GroupFooter1.HeightF = 270F;
|
||||
this.GroupFooter1.HeightF = 187.3729F;
|
||||
this.GroupFooter1.KeepTogether = true;
|
||||
this.GroupFooter1.Name = "GroupFooter1";
|
||||
//
|
||||
// xrLabel32
|
||||
//
|
||||
this.xrLabel32.Font = new System.Drawing.Font("Arial", 11F);
|
||||
this.xrLabel32.LocationFloat = new DevExpress.Utils.PointFloat(523.5971F, 0F);
|
||||
this.xrLabel32.Name = "xrLabel32";
|
||||
this.xrLabel32.Padding = new DevExpress.XtraPrinting.PaddingInfo(3, 2, 0, 0, 100F);
|
||||
this.xrLabel32.SizeF = new System.Drawing.SizeF(222.9028F, 20F);
|
||||
this.xrLabel32.StylePriority.UseBackColor = false;
|
||||
this.xrLabel32.StylePriority.UseBorders = false;
|
||||
this.xrLabel32.StylePriority.UseFont = false;
|
||||
this.xrLabel32.StylePriority.UsePadding = false;
|
||||
this.xrLabel32.StylePriority.UseTextAlignment = false;
|
||||
this.xrLabel32.Text = "E = ear to ear, face to face";
|
||||
this.xrLabel32.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleLeft;
|
||||
//
|
||||
// xrLabel9
|
||||
//
|
||||
this.xrLabel9.BackColor = System.Drawing.Color.Transparent;
|
||||
this.xrLabel9.Borders = ((DevExpress.XtraPrinting.BorderSide)((((DevExpress.XtraPrinting.BorderSide.Left | DevExpress.XtraPrinting.BorderSide.Top)
|
||||
| DevExpress.XtraPrinting.BorderSide.Right)
|
||||
| DevExpress.XtraPrinting.BorderSide.Bottom)));
|
||||
this.xrLabel9.BorderWidth = 2F;
|
||||
this.xrLabel9.DataBindings.AddRange(new DevExpress.XtraReports.UI.XRBinding[] {
|
||||
new DevExpress.XtraReports.UI.XRBinding("Text", null, "TotalFLMoFehlkontakte", "{0:0.##}")});
|
||||
this.xrLabel9.Font = new System.Drawing.Font("Arial", 11F);
|
||||
this.xrLabel9.LocationFloat = new DevExpress.Utils.PointFloat(275F, 0F);
|
||||
this.xrLabel9.Name = "xrLabel9";
|
||||
this.xrLabel9.Padding = new DevExpress.XtraPrinting.PaddingInfo(3, 2, 0, 0, 100F);
|
||||
this.xrLabel9.SizeF = new System.Drawing.SizeF(81F, 20F);
|
||||
this.xrLabel9.StylePriority.UseBackColor = false;
|
||||
this.xrLabel9.StylePriority.UseBorders = false;
|
||||
this.xrLabel9.StylePriority.UseBorderWidth = false;
|
||||
this.xrLabel9.StylePriority.UseFont = false;
|
||||
this.xrLabel9.StylePriority.UsePadding = false;
|
||||
this.xrLabel9.StylePriority.UseTextAlignment = false;
|
||||
this.xrLabel9.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleCenter;
|
||||
//
|
||||
// xrLabel30
|
||||
//
|
||||
this.xrLabel30.BackColor = System.Drawing.Color.Transparent;
|
||||
this.xrLabel30.Borders = DevExpress.XtraPrinting.BorderSide.Top;
|
||||
this.xrLabel30.Borders = ((DevExpress.XtraPrinting.BorderSide)(((DevExpress.XtraPrinting.BorderSide.Left | DevExpress.XtraPrinting.BorderSide.Right)
|
||||
| DevExpress.XtraPrinting.BorderSide.Bottom)));
|
||||
this.xrLabel30.BorderWidth = 1F;
|
||||
this.xrLabel30.DataBindings.AddRange(new DevExpress.XtraReports.UI.XRBinding[] {
|
||||
new DevExpress.XtraReports.UI.XRBinding("Text", null, "TotalFLMFehlkontakte", "{0:0.##}")});
|
||||
this.xrLabel30.Font = new System.Drawing.Font("Arial", 11F);
|
||||
this.xrLabel30.LocationFloat = new DevExpress.Utils.PointFloat(0F, 0F);
|
||||
this.xrLabel30.LocationFloat = new DevExpress.Utils.PointFloat(275F, 20.00001F);
|
||||
this.xrLabel30.Name = "xrLabel30";
|
||||
this.xrLabel30.Padding = new DevExpress.XtraPrinting.PaddingInfo(3, 2, 0, 0, 100F);
|
||||
this.xrLabel30.SizeF = new System.Drawing.SizeF(111.5433F, 20F);
|
||||
this.xrLabel30.SizeF = new System.Drawing.SizeF(81F, 20F);
|
||||
this.xrLabel30.StylePriority.UseBackColor = false;
|
||||
this.xrLabel30.StylePriority.UseBorders = false;
|
||||
this.xrLabel30.StylePriority.UseBorderWidth = false;
|
||||
@@ -787,96 +862,85 @@ namespace UebergangshilfeUnnaEV
|
||||
// xrLabel18
|
||||
//
|
||||
this.xrLabel18.BackColor = System.Drawing.Color.Transparent;
|
||||
this.xrLabel18.Borders = DevExpress.XtraPrinting.BorderSide.Top;
|
||||
this.xrLabel18.BorderWidth = 1F;
|
||||
this.xrLabel18.Font = new System.Drawing.Font("Arial", 11F);
|
||||
this.xrLabel18.LocationFloat = new DevExpress.Utils.PointFloat(451.1388F, 0F);
|
||||
this.xrLabel18.Borders = DevExpress.XtraPrinting.BorderSide.None;
|
||||
this.xrLabel18.Font = new System.Drawing.Font("Arial", 11.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
|
||||
this.xrLabel18.LocationFloat = new DevExpress.Utils.PointFloat(0.4999516F, 21.00001F);
|
||||
this.xrLabel18.Name = "xrLabel18";
|
||||
this.xrLabel18.Padding = new DevExpress.XtraPrinting.PaddingInfo(3, 2, 0, 0, 100F);
|
||||
this.xrLabel18.SizeF = new System.Drawing.SizeF(295.86F, 20F);
|
||||
this.xrLabel18.SizeF = new System.Drawing.SizeF(274.5F, 20.00001F);
|
||||
this.xrLabel18.StylePriority.UseBackColor = false;
|
||||
this.xrLabel18.StylePriority.UseBorders = false;
|
||||
this.xrLabel18.StylePriority.UseBorderWidth = false;
|
||||
this.xrLabel18.StylePriority.UseFont = false;
|
||||
this.xrLabel18.StylePriority.UsePadding = false;
|
||||
this.xrLabel18.StylePriority.UseTextAlignment = false;
|
||||
this.xrLabel18.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleCenter;
|
||||
//
|
||||
// xrLabel17
|
||||
//
|
||||
this.xrLabel17.BackColor = System.Drawing.Color.Transparent;
|
||||
this.xrLabel17.Borders = DevExpress.XtraPrinting.BorderSide.Top;
|
||||
this.xrLabel17.BorderWidth = 1F;
|
||||
this.xrLabel17.Font = new System.Drawing.Font("Arial", 11F);
|
||||
this.xrLabel17.LocationFloat = new DevExpress.Utils.PointFloat(352.5001F, 0F);
|
||||
this.xrLabel17.Name = "xrLabel17";
|
||||
this.xrLabel17.Padding = new DevExpress.XtraPrinting.PaddingInfo(3, 2, 0, 0, 100F);
|
||||
this.xrLabel17.SizeF = new System.Drawing.SizeF(98.6387F, 20F);
|
||||
this.xrLabel17.StylePriority.UseBackColor = false;
|
||||
this.xrLabel17.StylePriority.UseBorders = false;
|
||||
this.xrLabel17.StylePriority.UseBorderWidth = false;
|
||||
this.xrLabel17.StylePriority.UseFont = false;
|
||||
this.xrLabel17.StylePriority.UsePadding = false;
|
||||
this.xrLabel17.StylePriority.UseTextAlignment = false;
|
||||
this.xrLabel17.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleCenter;
|
||||
this.xrLabel18.Text = "Summe Fehlkontakte:";
|
||||
this.xrLabel18.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleRight;
|
||||
//
|
||||
// xrLabel1
|
||||
//
|
||||
this.xrLabel1.BackColor = System.Drawing.Color.Transparent;
|
||||
this.xrLabel1.Borders = DevExpress.XtraPrinting.BorderSide.Top;
|
||||
this.xrLabel1.Borders = DevExpress.XtraPrinting.BorderSide.None;
|
||||
this.xrLabel1.Font = new System.Drawing.Font("Arial", 11F, System.Drawing.FontStyle.Bold);
|
||||
this.xrLabel1.LocationFloat = new DevExpress.Utils.PointFloat(111.5433F, 0F);
|
||||
this.xrLabel1.LocationFloat = new DevExpress.Utils.PointFloat(0F, 0F);
|
||||
this.xrLabel1.Name = "xrLabel1";
|
||||
this.xrLabel1.Padding = new DevExpress.XtraPrinting.PaddingInfo(3, 7, 0, 0, 100F);
|
||||
this.xrLabel1.SizeF = new System.Drawing.SizeF(119.2066F, 20F);
|
||||
this.xrLabel1.Padding = new DevExpress.XtraPrinting.PaddingInfo(3, 2, 0, 0, 100F);
|
||||
this.xrLabel1.SizeF = new System.Drawing.SizeF(274.4999F, 21.00001F);
|
||||
this.xrLabel1.StylePriority.UseBackColor = false;
|
||||
this.xrLabel1.StylePriority.UseBorders = false;
|
||||
this.xrLabel1.StylePriority.UseFont = false;
|
||||
this.xrLabel1.StylePriority.UsePadding = false;
|
||||
this.xrLabel1.StylePriority.UseTextAlignment = false;
|
||||
this.xrLabel1.Text = "Summe";
|
||||
this.xrLabel1.Text = "Summe Fachleistungen:";
|
||||
this.xrLabel1.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleRight;
|
||||
//
|
||||
// xrLabel9
|
||||
// xrLabel31
|
||||
//
|
||||
this.xrLabel9.BackColor = System.Drawing.Color.Transparent;
|
||||
this.xrLabel9.Borders = ((DevExpress.XtraPrinting.BorderSide)((((DevExpress.XtraPrinting.BorderSide.Left | DevExpress.XtraPrinting.BorderSide.Top)
|
||||
| DevExpress.XtraPrinting.BorderSide.Right)
|
||||
| DevExpress.XtraPrinting.BorderSide.Bottom)));
|
||||
this.xrLabel9.BorderWidth = 1F;
|
||||
this.xrLabel9.DataBindings.AddRange(new DevExpress.XtraReports.UI.XRBinding[] {
|
||||
new DevExpress.XtraReports.UI.XRBinding("Text", null, "TotalFLMBillable", "{0:0.##}")});
|
||||
this.xrLabel9.Font = new System.Drawing.Font("Arial", 11F);
|
||||
this.xrLabel9.LocationFloat = new DevExpress.Utils.PointFloat(230.7499F, 0F);
|
||||
this.xrLabel9.Name = "xrLabel9";
|
||||
this.xrLabel9.Padding = new DevExpress.XtraPrinting.PaddingInfo(3, 2, 0, 0, 100F);
|
||||
this.xrLabel9.SizeF = new System.Drawing.SizeF(121.7501F, 20F);
|
||||
this.xrLabel9.StylePriority.UseBackColor = false;
|
||||
this.xrLabel9.StylePriority.UseBorders = false;
|
||||
this.xrLabel9.StylePriority.UseBorderWidth = false;
|
||||
this.xrLabel9.StylePriority.UseFont = false;
|
||||
this.xrLabel9.StylePriority.UsePadding = false;
|
||||
this.xrLabel9.StylePriority.UseTextAlignment = false;
|
||||
this.xrLabel9.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleCenter;
|
||||
this.xrLabel31.Font = new System.Drawing.Font("Arial", 11F);
|
||||
this.xrLabel31.LocationFloat = new DevExpress.Utils.PointFloat(523.5971F, 20.00001F);
|
||||
this.xrLabel31.Name = "xrLabel31";
|
||||
this.xrLabel31.Padding = new DevExpress.XtraPrinting.PaddingInfo(3, 2, 0, 0, 100F);
|
||||
this.xrLabel31.SizeF = new System.Drawing.SizeF(222.9028F, 20F);
|
||||
this.xrLabel31.StylePriority.UseBackColor = false;
|
||||
this.xrLabel31.StylePriority.UseBorders = false;
|
||||
this.xrLabel31.StylePriority.UseFont = false;
|
||||
this.xrLabel31.StylePriority.UsePadding = false;
|
||||
this.xrLabel31.StylePriority.UseTextAlignment = false;
|
||||
this.xrLabel31.Text = "G = Gruppenangebot";
|
||||
this.xrLabel31.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleLeft;
|
||||
//
|
||||
// lblFehlkontakt
|
||||
//
|
||||
this.lblFehlkontakt.Font = new System.Drawing.Font("Arial", 11F);
|
||||
this.lblFehlkontakt.LocationFloat = new DevExpress.Utils.PointFloat(523.5971F, 40.00003F);
|
||||
this.lblFehlkontakt.Name = "lblFehlkontakt";
|
||||
this.lblFehlkontakt.Padding = new DevExpress.XtraPrinting.PaddingInfo(3, 2, 0, 0, 100F);
|
||||
this.lblFehlkontakt.SizeF = new System.Drawing.SizeF(222.9028F, 20F);
|
||||
this.lblFehlkontakt.StylePriority.UseBackColor = false;
|
||||
this.lblFehlkontakt.StylePriority.UseBorders = false;
|
||||
this.lblFehlkontakt.StylePriority.UseFont = false;
|
||||
this.lblFehlkontakt.StylePriority.UsePadding = false;
|
||||
this.lblFehlkontakt.StylePriority.UseTextAlignment = false;
|
||||
this.lblFehlkontakt.Text = "F = Fehlkontakt";
|
||||
this.lblFehlkontakt.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleLeft;
|
||||
//
|
||||
// xrLabel28
|
||||
//
|
||||
this.xrLabel28.Borders = DevExpress.XtraPrinting.BorderSide.Bottom;
|
||||
this.xrLabel28.LocationFloat = new DevExpress.Utils.PointFloat(524.0961F, 74.04169F);
|
||||
this.xrLabel28.LocationFloat = new DevExpress.Utils.PointFloat(521.5527F, 98.67091F);
|
||||
this.xrLabel28.Name = "xrLabel28";
|
||||
this.xrLabel28.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
|
||||
this.xrLabel28.SizeF = new System.Drawing.SizeF(222.9027F, 25F);
|
||||
this.xrLabel28.SizeF = new System.Drawing.SizeF(224.9472F, 25.00001F);
|
||||
this.xrLabel28.TextAlignment = DevExpress.XtraPrinting.TextAlignment.TopLeft;
|
||||
//
|
||||
// xrLabel29
|
||||
//
|
||||
this.xrLabel29.Borders = DevExpress.XtraPrinting.BorderSide.None;
|
||||
this.xrLabel29.Font = new System.Drawing.Font("Arial", 10F);
|
||||
this.xrLabel29.LocationFloat = new DevExpress.Utils.PointFloat(524.0961F, 99.04169F);
|
||||
this.xrLabel29.LocationFloat = new DevExpress.Utils.PointFloat(521.5527F, 123.6709F);
|
||||
this.xrLabel29.Multiline = true;
|
||||
this.xrLabel29.Name = "xrLabel29";
|
||||
this.xrLabel29.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
|
||||
this.xrLabel29.SizeF = new System.Drawing.SizeF(222.9027F, 24F);
|
||||
this.xrLabel29.SizeF = new System.Drawing.SizeF(224.9472F, 24F);
|
||||
this.xrLabel29.StylePriority.UseBorders = false;
|
||||
this.xrLabel29.StylePriority.UseFont = false;
|
||||
this.xrLabel29.StylePriority.UseTextAlignment = false;
|
||||
@@ -886,7 +950,7 @@ namespace UebergangshilfeUnnaEV
|
||||
// xrLabel13
|
||||
//
|
||||
this.xrLabel13.Borders = DevExpress.XtraPrinting.BorderSide.Bottom;
|
||||
this.xrLabel13.LocationFloat = new DevExpress.Utils.PointFloat(239.9987F, 74.04169F);
|
||||
this.xrLabel13.LocationFloat = new DevExpress.Utils.PointFloat(237.4553F, 98.67091F);
|
||||
this.xrLabel13.Name = "xrLabel13";
|
||||
this.xrLabel13.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
|
||||
this.xrLabel13.SizeF = new System.Drawing.SizeF(222.9027F, 25F);
|
||||
@@ -896,7 +960,7 @@ namespace UebergangshilfeUnnaEV
|
||||
//
|
||||
this.xrLabel12.Borders = DevExpress.XtraPrinting.BorderSide.None;
|
||||
this.xrLabel12.Font = new System.Drawing.Font("Arial", 10F);
|
||||
this.xrLabel12.LocationFloat = new DevExpress.Utils.PointFloat(239.9987F, 99.04169F);
|
||||
this.xrLabel12.LocationFloat = new DevExpress.Utils.PointFloat(237.4553F, 123.6709F);
|
||||
this.xrLabel12.Multiline = true;
|
||||
this.xrLabel12.Name = "xrLabel12";
|
||||
this.xrLabel12.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
|
||||
@@ -911,7 +975,7 @@ namespace UebergangshilfeUnnaEV
|
||||
//
|
||||
this.xrLabel11.Borders = DevExpress.XtraPrinting.BorderSide.None;
|
||||
this.xrLabel11.Font = new System.Drawing.Font("Arial", 10F);
|
||||
this.xrLabel11.LocationFloat = new DevExpress.Utils.PointFloat(3.043334F, 99.04169F);
|
||||
this.xrLabel11.LocationFloat = new DevExpress.Utils.PointFloat(0.4999516F, 123.6709F);
|
||||
this.xrLabel11.Multiline = true;
|
||||
this.xrLabel11.Name = "xrLabel11";
|
||||
this.xrLabel11.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
|
||||
@@ -925,7 +989,7 @@ namespace UebergangshilfeUnnaEV
|
||||
// xrLabel10
|
||||
//
|
||||
this.xrLabel10.Borders = DevExpress.XtraPrinting.BorderSide.Bottom;
|
||||
this.xrLabel10.LocationFloat = new DevExpress.Utils.PointFloat(3.043334F, 74.04169F);
|
||||
this.xrLabel10.LocationFloat = new DevExpress.Utils.PointFloat(0.4999516F, 98.67091F);
|
||||
this.xrLabel10.Name = "xrLabel10";
|
||||
this.xrLabel10.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
|
||||
this.xrLabel10.SizeF = new System.Drawing.SizeF(125F, 25F);
|
||||
@@ -961,6 +1025,10 @@ namespace UebergangshilfeUnnaEV
|
||||
"t am Ende des Monats quittiert werden.";
|
||||
this.xrLabel15.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleLeft;
|
||||
//
|
||||
// bindingSource1
|
||||
//
|
||||
this.bindingSource1.DataSource = typeof(BeWo.Report.ReportObjects.ServicesOverviewRO);
|
||||
//
|
||||
// QuittierungMitUnterschriften
|
||||
//
|
||||
this.Bands.AddRange(new DevExpress.XtraReports.UI.Band[] {
|
||||
@@ -1045,16 +1113,20 @@ namespace UebergangshilfeUnnaEV
|
||||
private DevExpress.XtraReports.UI.XRTableCell xrTableCell7;
|
||||
private DevExpress.XtraReports.UI.PageFooterBand PageFooter;
|
||||
private DevExpress.XtraReports.UI.XRLabel xrLabel15;
|
||||
private DevExpress.XtraReports.UI.XRLabel xrLabel1;
|
||||
private DevExpress.XtraReports.UI.XRLabel xrLabel9;
|
||||
private DevExpress.XtraReports.UI.XRLabel xrLabel28;
|
||||
private DevExpress.XtraReports.UI.XRLabel xrLabel29;
|
||||
private DevExpress.XtraReports.UI.XRLabel xrLabel13;
|
||||
private DevExpress.XtraReports.UI.XRLabel xrLabel12;
|
||||
private DevExpress.XtraReports.UI.XRLabel xrLabel11;
|
||||
private DevExpress.XtraReports.UI.XRLabel xrLabel10;
|
||||
private DevExpress.XtraReports.UI.XRTableCell xrTableCell8;
|
||||
private DevExpress.XtraReports.UI.XRTableCell xrTableCell9;
|
||||
private DevExpress.XtraReports.UI.XRLabel xrLabel32;
|
||||
private DevExpress.XtraReports.UI.XRLabel xrLabel9;
|
||||
private DevExpress.XtraReports.UI.XRLabel xrLabel30;
|
||||
private DevExpress.XtraReports.UI.XRLabel xrLabel18;
|
||||
private DevExpress.XtraReports.UI.XRLabel xrLabel17;
|
||||
private DevExpress.XtraReports.UI.XRLabel xrLabel1;
|
||||
private DevExpress.XtraReports.UI.XRLabel xrLabel31;
|
||||
private DevExpress.XtraReports.UI.XRLabel lblFehlkontakt;
|
||||
}
|
||||
}
|
||||
|
||||
@@ -35,14 +35,19 @@ namespace UebergangshilfeUnnaEV
|
||||
|
||||
foreach (var sd in pRO.Services)
|
||||
{
|
||||
if (sd.IsBillable)
|
||||
if (sd.IsBillable || sd.ServiceDescription.ToLower().Contains("fehlkontakt") || sd.ServiceCategory.ToLower().Contains("fehlkontakt"))
|
||||
{
|
||||
ServicesOverviewRO.CreateSignatureString(sd);
|
||||
sd.Notice5 = "E";
|
||||
if (sd.IsGroup)
|
||||
{
|
||||
//sd.Notice5 = String.Format("{0} Teilnehmer", sd.CustomerCount);
|
||||
sd.Notice5 = "G";
|
||||
hatGruppen = true;
|
||||
}
|
||||
if (sd.ServiceDescription.ToLower().Contains("fehlkontakt") || sd.ServiceCategory.ToLower().Contains("fehlkontakt"))
|
||||
{
|
||||
sd.Notice5 = "F";
|
||||
}
|
||||
servicesBillable.Add(sd);
|
||||
}
|
||||
}
|
||||
|
||||
@@ -39,6 +39,7 @@ namespace UebergangshilfeUnnaEV
|
||||
this.xrTableCell1 = new DevExpress.XtraReports.UI.XRTableCell();
|
||||
this.xrTableCell3 = new DevExpress.XtraReports.UI.XRTableCell();
|
||||
this.xrTableCell4 = new DevExpress.XtraReports.UI.XRTableCell();
|
||||
this.xrTableCell7 = new DevExpress.XtraReports.UI.XRTableCell();
|
||||
this.xrTableCell5 = new DevExpress.XtraReports.UI.XRTableCell();
|
||||
this.xrTableCell6 = new DevExpress.XtraReports.UI.XRTableCell();
|
||||
this.GroupHeader1 = new DevExpress.XtraReports.UI.GroupHeaderBand();
|
||||
@@ -47,6 +48,7 @@ namespace UebergangshilfeUnnaEV
|
||||
this.xrTableCell32 = new DevExpress.XtraReports.UI.XRTableCell();
|
||||
this.xrTableCell33 = new DevExpress.XtraReports.UI.XRTableCell();
|
||||
this.xrTableCell34 = new DevExpress.XtraReports.UI.XRTableCell();
|
||||
this.xrTableCell2 = new DevExpress.XtraReports.UI.XRTableCell();
|
||||
this.xrTableCell35 = new DevExpress.XtraReports.UI.XRTableCell();
|
||||
this.xrTableCell36 = new DevExpress.XtraReports.UI.XRTableCell();
|
||||
this.bindingSource1 = new System.Windows.Forms.BindingSource(this.components);
|
||||
@@ -77,9 +79,11 @@ namespace UebergangshilfeUnnaEV
|
||||
this.topMarginBand1 = new DevExpress.XtraReports.UI.TopMarginBand();
|
||||
this.bottomMarginBand1 = new DevExpress.XtraReports.UI.BottomMarginBand();
|
||||
this.GroupFooter1 = new DevExpress.XtraReports.UI.GroupFooterBand();
|
||||
this.xrLabel30 = new DevExpress.XtraReports.UI.XRLabel();
|
||||
this.lblFehlkontakt = new DevExpress.XtraReports.UI.XRLabel();
|
||||
this.xrLabel31 = new DevExpress.XtraReports.UI.XRLabel();
|
||||
this.xrLabel32 = new DevExpress.XtraReports.UI.XRLabel();
|
||||
this.xrLabel18 = new DevExpress.XtraReports.UI.XRLabel();
|
||||
this.xrLabel17 = new DevExpress.XtraReports.UI.XRLabel();
|
||||
this.xrLabel30 = new DevExpress.XtraReports.UI.XRLabel();
|
||||
this.xrLabel10 = new DevExpress.XtraReports.UI.XRLabel();
|
||||
this.xrLabel11 = new DevExpress.XtraReports.UI.XRLabel();
|
||||
this.xrLabel12 = new DevExpress.XtraReports.UI.XRLabel();
|
||||
@@ -145,6 +149,7 @@ namespace UebergangshilfeUnnaEV
|
||||
this.xrTableCell1,
|
||||
this.xrTableCell3,
|
||||
this.xrTableCell4,
|
||||
this.xrTableCell7,
|
||||
this.xrTableCell5,
|
||||
this.xrTableCell6});
|
||||
this.xrTableRow1.Name = "xrTableRow1";
|
||||
@@ -155,8 +160,7 @@ namespace UebergangshilfeUnnaEV
|
||||
// xrTableCell1
|
||||
//
|
||||
this.xrTableCell1.BackColor = System.Drawing.Color.Transparent;
|
||||
this.xrTableCell1.Borders = ((DevExpress.XtraPrinting.BorderSide)(((DevExpress.XtraPrinting.BorderSide.Left | DevExpress.XtraPrinting.BorderSide.Top)
|
||||
| DevExpress.XtraPrinting.BorderSide.Right)));
|
||||
this.xrTableCell1.Borders = ((DevExpress.XtraPrinting.BorderSide)((DevExpress.XtraPrinting.BorderSide.Left | DevExpress.XtraPrinting.BorderSide.Bottom)));
|
||||
this.xrTableCell1.DataBindings.AddRange(new DevExpress.XtraReports.UI.XRBinding[] {
|
||||
new DevExpress.XtraReports.UI.XRBinding("Text", null, "Services.StartDate", "{0:dd.MM.yyyy}")});
|
||||
this.xrTableCell1.Font = new System.Drawing.Font("Arial", 11F);
|
||||
@@ -167,13 +171,12 @@ namespace UebergangshilfeUnnaEV
|
||||
this.xrTableCell1.StylePriority.UseFont = false;
|
||||
this.xrTableCell1.StylePriority.UseTextAlignment = false;
|
||||
this.xrTableCell1.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleCenter;
|
||||
this.xrTableCell1.Weight = 0.19865768305304904D;
|
||||
this.xrTableCell1.Weight = 0.18394229922024388D;
|
||||
//
|
||||
// xrTableCell3
|
||||
//
|
||||
this.xrTableCell3.BackColor = System.Drawing.Color.Transparent;
|
||||
this.xrTableCell3.Borders = ((DevExpress.XtraPrinting.BorderSide)(((DevExpress.XtraPrinting.BorderSide.Left | DevExpress.XtraPrinting.BorderSide.Top)
|
||||
| DevExpress.XtraPrinting.BorderSide.Right)));
|
||||
this.xrTableCell3.Borders = ((DevExpress.XtraPrinting.BorderSide)((DevExpress.XtraPrinting.BorderSide.Left | DevExpress.XtraPrinting.BorderSide.Bottom)));
|
||||
this.xrTableCell3.DataBindings.AddRange(new DevExpress.XtraReports.UI.XRBinding[] {
|
||||
new DevExpress.XtraReports.UI.XRBinding("Text", null, "Services.StartDate", "{0:HH:mm}")});
|
||||
this.xrTableCell3.Font = new System.Drawing.Font("Arial", 11F);
|
||||
@@ -184,13 +187,12 @@ namespace UebergangshilfeUnnaEV
|
||||
this.xrTableCell3.StylePriority.UseFont = false;
|
||||
this.xrTableCell3.StylePriority.UseTextAlignment = false;
|
||||
this.xrTableCell3.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleCenter;
|
||||
this.xrTableCell3.Weight = 0.13243845536992965D;
|
||||
this.xrTableCell3.Weight = 0.13243850027771725D;
|
||||
//
|
||||
// xrTableCell4
|
||||
//
|
||||
this.xrTableCell4.BackColor = System.Drawing.Color.Transparent;
|
||||
this.xrTableCell4.Borders = ((DevExpress.XtraPrinting.BorderSide)(((DevExpress.XtraPrinting.BorderSide.Left | DevExpress.XtraPrinting.BorderSide.Top)
|
||||
| DevExpress.XtraPrinting.BorderSide.Right)));
|
||||
this.xrTableCell4.Borders = ((DevExpress.XtraPrinting.BorderSide)((DevExpress.XtraPrinting.BorderSide.Left | DevExpress.XtraPrinting.BorderSide.Bottom)));
|
||||
this.xrTableCell4.DataBindings.AddRange(new DevExpress.XtraReports.UI.XRBinding[] {
|
||||
new DevExpress.XtraReports.UI.XRBinding("Text", null, "Services.EndDate", "{0:HH:mm}")});
|
||||
this.xrTableCell4.Font = new System.Drawing.Font("Arial", 11F);
|
||||
@@ -202,13 +204,28 @@ namespace UebergangshilfeUnnaEV
|
||||
this.xrTableCell4.StylePriority.UseFont = false;
|
||||
this.xrTableCell4.StylePriority.UseTextAlignment = false;
|
||||
this.xrTableCell4.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleCenter;
|
||||
this.xrTableCell4.Weight = 0.1324384519953036D;
|
||||
this.xrTableCell4.Weight = 0.13243849690309117D;
|
||||
//
|
||||
// xrTableCell7
|
||||
//
|
||||
this.xrTableCell7.BackColor = System.Drawing.Color.Transparent;
|
||||
this.xrTableCell7.Borders = ((DevExpress.XtraPrinting.BorderSide)((DevExpress.XtraPrinting.BorderSide.Left | DevExpress.XtraPrinting.BorderSide.Bottom)));
|
||||
this.xrTableCell7.Font = new System.Drawing.Font("Arial", 11F);
|
||||
this.xrTableCell7.Name = "xrTableCell7";
|
||||
this.xrTableCell7.Padding = new DevExpress.XtraPrinting.PaddingInfo(5, 2, 0, 0, 100F);
|
||||
this.xrTableCell7.StylePriority.UseBackColor = false;
|
||||
this.xrTableCell7.StylePriority.UseBorders = false;
|
||||
this.xrTableCell7.StylePriority.UseFont = false;
|
||||
this.xrTableCell7.StylePriority.UsePadding = false;
|
||||
this.xrTableCell7.StylePriority.UseTextAlignment = false;
|
||||
this.xrTableCell7.Text = "[Notice5]";
|
||||
this.xrTableCell7.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleCenter;
|
||||
this.xrTableCell7.Weight = 0.073576925871607579D;
|
||||
//
|
||||
// xrTableCell5
|
||||
//
|
||||
this.xrTableCell5.BackColor = System.Drawing.Color.Transparent;
|
||||
this.xrTableCell5.Borders = ((DevExpress.XtraPrinting.BorderSide)(((DevExpress.XtraPrinting.BorderSide.Left | DevExpress.XtraPrinting.BorderSide.Top)
|
||||
| DevExpress.XtraPrinting.BorderSide.Right)));
|
||||
this.xrTableCell5.Borders = ((DevExpress.XtraPrinting.BorderSide)((DevExpress.XtraPrinting.BorderSide.Left | DevExpress.XtraPrinting.BorderSide.Bottom)));
|
||||
this.xrTableCell5.DataBindings.AddRange(new DevExpress.XtraReports.UI.XRBinding[] {
|
||||
new DevExpress.XtraReports.UI.XRBinding("Text", null, "Services.Minutes", "{0:0.00}")});
|
||||
this.xrTableCell5.Font = new System.Drawing.Font("Arial", 11F);
|
||||
@@ -220,13 +237,13 @@ namespace UebergangshilfeUnnaEV
|
||||
this.xrTableCell5.StylePriority.UseFont = false;
|
||||
this.xrTableCell5.StylePriority.UseTextAlignment = false;
|
||||
this.xrTableCell5.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleCenter;
|
||||
this.xrTableCell5.Weight = 0.17658460827216563D;
|
||||
this.xrTableCell5.Weight = 0.11772294692025162D;
|
||||
//
|
||||
// xrTableCell6
|
||||
//
|
||||
this.xrTableCell6.BackColor = System.Drawing.Color.Transparent;
|
||||
this.xrTableCell6.Borders = ((DevExpress.XtraPrinting.BorderSide)(((DevExpress.XtraPrinting.BorderSide.Left | DevExpress.XtraPrinting.BorderSide.Top)
|
||||
| DevExpress.XtraPrinting.BorderSide.Right)));
|
||||
this.xrTableCell6.Borders = ((DevExpress.XtraPrinting.BorderSide)(((DevExpress.XtraPrinting.BorderSide.Left | DevExpress.XtraPrinting.BorderSide.Right)
|
||||
| DevExpress.XtraPrinting.BorderSide.Bottom)));
|
||||
this.xrTableCell6.Font = new System.Drawing.Font("Arial", 11F);
|
||||
this.xrTableCell6.Multiline = true;
|
||||
this.xrTableCell6.Name = "xrTableCell6";
|
||||
@@ -236,7 +253,7 @@ namespace UebergangshilfeUnnaEV
|
||||
this.xrTableCell6.StylePriority.UseFont = false;
|
||||
this.xrTableCell6.StylePriority.UseTextAlignment = false;
|
||||
this.xrTableCell6.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleCenter;
|
||||
this.xrTableCell6.Weight = 0.46353458876993792D;
|
||||
this.xrTableCell6.Weight = 0.46353461122383244D;
|
||||
//
|
||||
// GroupHeader1
|
||||
//
|
||||
@@ -266,6 +283,7 @@ namespace UebergangshilfeUnnaEV
|
||||
this.xrTableCell32,
|
||||
this.xrTableCell33,
|
||||
this.xrTableCell34,
|
||||
this.xrTableCell2,
|
||||
this.xrTableCell35,
|
||||
this.xrTableCell36});
|
||||
this.xrTableRow9.Name = "xrTableRow9";
|
||||
@@ -277,7 +295,7 @@ namespace UebergangshilfeUnnaEV
|
||||
//
|
||||
this.xrTableCell32.BackColor = System.Drawing.Color.Transparent;
|
||||
this.xrTableCell32.Borders = ((DevExpress.XtraPrinting.BorderSide)(((DevExpress.XtraPrinting.BorderSide.Left | DevExpress.XtraPrinting.BorderSide.Top)
|
||||
| DevExpress.XtraPrinting.BorderSide.Right)));
|
||||
| DevExpress.XtraPrinting.BorderSide.Bottom)));
|
||||
this.xrTableCell32.Font = new System.Drawing.Font("Arial", 11F);
|
||||
this.xrTableCell32.Name = "xrTableCell32";
|
||||
this.xrTableCell32.Padding = new DevExpress.XtraPrinting.PaddingInfo(5, 2, 0, 0, 100F);
|
||||
@@ -287,13 +305,13 @@ namespace UebergangshilfeUnnaEV
|
||||
this.xrTableCell32.StylePriority.UseTextAlignment = false;
|
||||
this.xrTableCell32.Text = "Datum";
|
||||
this.xrTableCell32.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleCenter;
|
||||
this.xrTableCell32.Weight = 0.19865768305304904D;
|
||||
this.xrTableCell32.Weight = 0.18394229922024388D;
|
||||
//
|
||||
// xrTableCell33
|
||||
//
|
||||
this.xrTableCell33.BackColor = System.Drawing.Color.Transparent;
|
||||
this.xrTableCell33.Borders = ((DevExpress.XtraPrinting.BorderSide)(((DevExpress.XtraPrinting.BorderSide.Left | DevExpress.XtraPrinting.BorderSide.Top)
|
||||
| DevExpress.XtraPrinting.BorderSide.Right)));
|
||||
| DevExpress.XtraPrinting.BorderSide.Bottom)));
|
||||
this.xrTableCell33.Font = new System.Drawing.Font("Arial", 11F);
|
||||
this.xrTableCell33.Name = "xrTableCell33";
|
||||
this.xrTableCell33.Padding = new DevExpress.XtraPrinting.PaddingInfo(5, 2, 0, 0, 100F);
|
||||
@@ -309,7 +327,7 @@ namespace UebergangshilfeUnnaEV
|
||||
//
|
||||
this.xrTableCell34.BackColor = System.Drawing.Color.Transparent;
|
||||
this.xrTableCell34.Borders = ((DevExpress.XtraPrinting.BorderSide)(((DevExpress.XtraPrinting.BorderSide.Left | DevExpress.XtraPrinting.BorderSide.Top)
|
||||
| DevExpress.XtraPrinting.BorderSide.Right)));
|
||||
| DevExpress.XtraPrinting.BorderSide.Bottom)));
|
||||
this.xrTableCell34.Font = new System.Drawing.Font("Arial", 11F);
|
||||
this.xrTableCell34.Multiline = true;
|
||||
this.xrTableCell34.Name = "xrTableCell34";
|
||||
@@ -322,11 +340,28 @@ namespace UebergangshilfeUnnaEV
|
||||
this.xrTableCell34.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleCenter;
|
||||
this.xrTableCell34.Weight = 0.1324384519953036D;
|
||||
//
|
||||
// xrTableCell2
|
||||
//
|
||||
this.xrTableCell2.BackColor = System.Drawing.Color.Transparent;
|
||||
this.xrTableCell2.Borders = ((DevExpress.XtraPrinting.BorderSide)(((DevExpress.XtraPrinting.BorderSide.Left | DevExpress.XtraPrinting.BorderSide.Top)
|
||||
| DevExpress.XtraPrinting.BorderSide.Bottom)));
|
||||
this.xrTableCell2.Font = new System.Drawing.Font("Arial", 11F);
|
||||
this.xrTableCell2.Name = "xrTableCell2";
|
||||
this.xrTableCell2.Padding = new DevExpress.XtraPrinting.PaddingInfo(5, 2, 0, 0, 100F);
|
||||
this.xrTableCell2.StylePriority.UseBackColor = false;
|
||||
this.xrTableCell2.StylePriority.UseBorders = false;
|
||||
this.xrTableCell2.StylePriority.UseFont = false;
|
||||
this.xrTableCell2.StylePriority.UsePadding = false;
|
||||
this.xrTableCell2.StylePriority.UseTextAlignment = false;
|
||||
this.xrTableCell2.Text = "Art";
|
||||
this.xrTableCell2.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleCenter;
|
||||
this.xrTableCell2.Weight = 0.07357691678312793D;
|
||||
//
|
||||
// xrTableCell35
|
||||
//
|
||||
this.xrTableCell35.BackColor = System.Drawing.Color.Transparent;
|
||||
this.xrTableCell35.Borders = ((DevExpress.XtraPrinting.BorderSide)(((DevExpress.XtraPrinting.BorderSide.Left | DevExpress.XtraPrinting.BorderSide.Top)
|
||||
| DevExpress.XtraPrinting.BorderSide.Right)));
|
||||
| DevExpress.XtraPrinting.BorderSide.Bottom)));
|
||||
this.xrTableCell35.Font = new System.Drawing.Font("Arial", 11F);
|
||||
this.xrTableCell35.Multiline = true;
|
||||
this.xrTableCell35.Name = "xrTableCell35";
|
||||
@@ -335,15 +370,16 @@ namespace UebergangshilfeUnnaEV
|
||||
this.xrTableCell35.StylePriority.UseBorders = false;
|
||||
this.xrTableCell35.StylePriority.UseFont = false;
|
||||
this.xrTableCell35.StylePriority.UseTextAlignment = false;
|
||||
this.xrTableCell35.Text = "Anzahl Minuten";
|
||||
this.xrTableCell35.Text = "Minuten";
|
||||
this.xrTableCell35.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleCenter;
|
||||
this.xrTableCell35.Weight = 0.17658460827216563D;
|
||||
this.xrTableCell35.Weight = 0.11772307308975119D;
|
||||
//
|
||||
// xrTableCell36
|
||||
//
|
||||
this.xrTableCell36.BackColor = System.Drawing.Color.Transparent;
|
||||
this.xrTableCell36.Borders = ((DevExpress.XtraPrinting.BorderSide)(((DevExpress.XtraPrinting.BorderSide.Left | DevExpress.XtraPrinting.BorderSide.Top)
|
||||
| DevExpress.XtraPrinting.BorderSide.Right)));
|
||||
this.xrTableCell36.Borders = ((DevExpress.XtraPrinting.BorderSide)((((DevExpress.XtraPrinting.BorderSide.Left | DevExpress.XtraPrinting.BorderSide.Top)
|
||||
| DevExpress.XtraPrinting.BorderSide.Right)
|
||||
| DevExpress.XtraPrinting.BorderSide.Bottom)));
|
||||
this.xrTableCell36.Font = new System.Drawing.Font("Arial", 11F);
|
||||
this.xrTableCell36.Multiline = true;
|
||||
this.xrTableCell36.Name = "xrTableCell36";
|
||||
@@ -712,9 +748,11 @@ namespace UebergangshilfeUnnaEV
|
||||
// GroupFooter1
|
||||
//
|
||||
this.GroupFooter1.Controls.AddRange(new DevExpress.XtraReports.UI.XRControl[] {
|
||||
this.xrLabel30,
|
||||
this.lblFehlkontakt,
|
||||
this.xrLabel31,
|
||||
this.xrLabel32,
|
||||
this.xrLabel18,
|
||||
this.xrLabel17,
|
||||
this.xrLabel30,
|
||||
this.xrLabel10,
|
||||
this.xrLabel11,
|
||||
this.xrLabel12,
|
||||
@@ -723,20 +761,85 @@ namespace UebergangshilfeUnnaEV
|
||||
this.xrLabel28,
|
||||
this.xrLabel9,
|
||||
this.xrLabel1});
|
||||
this.GroupFooter1.HeightF = 160.625F;
|
||||
this.GroupFooter1.HeightF = 171.7479F;
|
||||
this.GroupFooter1.KeepTogether = true;
|
||||
this.GroupFooter1.Name = "GroupFooter1";
|
||||
//
|
||||
// lblFehlkontakt
|
||||
//
|
||||
this.lblFehlkontakt.Font = new System.Drawing.Font("Arial", 11F);
|
||||
this.lblFehlkontakt.LocationFloat = new DevExpress.Utils.PointFloat(527.0972F, 40.00003F);
|
||||
this.lblFehlkontakt.Name = "lblFehlkontakt";
|
||||
this.lblFehlkontakt.Padding = new DevExpress.XtraPrinting.PaddingInfo(3, 2, 0, 0, 100F);
|
||||
this.lblFehlkontakt.SizeF = new System.Drawing.SizeF(222.9028F, 20F);
|
||||
this.lblFehlkontakt.StylePriority.UseBackColor = false;
|
||||
this.lblFehlkontakt.StylePriority.UseBorders = false;
|
||||
this.lblFehlkontakt.StylePriority.UseFont = false;
|
||||
this.lblFehlkontakt.StylePriority.UsePadding = false;
|
||||
this.lblFehlkontakt.StylePriority.UseTextAlignment = false;
|
||||
this.lblFehlkontakt.Text = "F = Fehlkontakt";
|
||||
this.lblFehlkontakt.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleLeft;
|
||||
//
|
||||
// xrLabel31
|
||||
//
|
||||
this.xrLabel31.Font = new System.Drawing.Font("Arial", 11F);
|
||||
this.xrLabel31.LocationFloat = new DevExpress.Utils.PointFloat(527.0972F, 20.00002F);
|
||||
this.xrLabel31.Name = "xrLabel31";
|
||||
this.xrLabel31.Padding = new DevExpress.XtraPrinting.PaddingInfo(3, 2, 0, 0, 100F);
|
||||
this.xrLabel31.SizeF = new System.Drawing.SizeF(222.9028F, 20F);
|
||||
this.xrLabel31.StylePriority.UseBackColor = false;
|
||||
this.xrLabel31.StylePriority.UseBorders = false;
|
||||
this.xrLabel31.StylePriority.UseFont = false;
|
||||
this.xrLabel31.StylePriority.UsePadding = false;
|
||||
this.xrLabel31.StylePriority.UseTextAlignment = false;
|
||||
this.xrLabel31.Text = "G = Gruppenangebot";
|
||||
this.xrLabel31.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleLeft;
|
||||
//
|
||||
// xrLabel32
|
||||
//
|
||||
this.xrLabel32.Font = new System.Drawing.Font("Arial", 11F);
|
||||
this.xrLabel32.LocationFloat = new DevExpress.Utils.PointFloat(527.0972F, 0F);
|
||||
this.xrLabel32.Name = "xrLabel32";
|
||||
this.xrLabel32.Padding = new DevExpress.XtraPrinting.PaddingInfo(3, 2, 0, 0, 100F);
|
||||
this.xrLabel32.SizeF = new System.Drawing.SizeF(222.9028F, 20F);
|
||||
this.xrLabel32.StylePriority.UseBackColor = false;
|
||||
this.xrLabel32.StylePriority.UseBorders = false;
|
||||
this.xrLabel32.StylePriority.UseFont = false;
|
||||
this.xrLabel32.StylePriority.UsePadding = false;
|
||||
this.xrLabel32.StylePriority.UseTextAlignment = false;
|
||||
this.xrLabel32.Text = "E = ear to ear, face to face";
|
||||
this.xrLabel32.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleLeft;
|
||||
//
|
||||
// xrLabel18
|
||||
//
|
||||
this.xrLabel18.BackColor = System.Drawing.Color.Transparent;
|
||||
this.xrLabel18.Borders = DevExpress.XtraPrinting.BorderSide.None;
|
||||
this.xrLabel18.Font = new System.Drawing.Font("Arial", 11.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
|
||||
this.xrLabel18.LocationFloat = new DevExpress.Utils.PointFloat(0F, 20.00001F);
|
||||
this.xrLabel18.Name = "xrLabel18";
|
||||
this.xrLabel18.Padding = new DevExpress.XtraPrinting.PaddingInfo(3, 2, 0, 0, 100F);
|
||||
this.xrLabel18.SizeF = new System.Drawing.SizeF(355.0001F, 20F);
|
||||
this.xrLabel18.StylePriority.UseBackColor = false;
|
||||
this.xrLabel18.StylePriority.UseBorders = false;
|
||||
this.xrLabel18.StylePriority.UseFont = false;
|
||||
this.xrLabel18.StylePriority.UsePadding = false;
|
||||
this.xrLabel18.StylePriority.UseTextAlignment = false;
|
||||
this.xrLabel18.Text = "Summe Fehlkontakte:";
|
||||
this.xrLabel18.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleRight;
|
||||
//
|
||||
// xrLabel30
|
||||
//
|
||||
this.xrLabel30.BackColor = System.Drawing.Color.Transparent;
|
||||
this.xrLabel30.Borders = DevExpress.XtraPrinting.BorderSide.Top;
|
||||
this.xrLabel30.Borders = ((DevExpress.XtraPrinting.BorderSide)(((DevExpress.XtraPrinting.BorderSide.Left | DevExpress.XtraPrinting.BorderSide.Right)
|
||||
| DevExpress.XtraPrinting.BorderSide.Bottom)));
|
||||
this.xrLabel30.BorderWidth = 1F;
|
||||
this.xrLabel30.DataBindings.AddRange(new DevExpress.XtraReports.UI.XRBinding[] {
|
||||
new DevExpress.XtraReports.UI.XRBinding("Text", null, "TotalFLMFehlkontakte", "{0:0.##}")});
|
||||
this.xrLabel30.Font = new System.Drawing.Font("Arial", 11F);
|
||||
this.xrLabel30.LocationFloat = new DevExpress.Utils.PointFloat(135F, 0F);
|
||||
this.xrLabel30.LocationFloat = new DevExpress.Utils.PointFloat(355.0001F, 20.00001F);
|
||||
this.xrLabel30.Name = "xrLabel30";
|
||||
this.xrLabel30.Padding = new DevExpress.XtraPrinting.PaddingInfo(3, 2, 0, 0, 100F);
|
||||
this.xrLabel30.SizeF = new System.Drawing.SizeF(95F, 20F);
|
||||
this.xrLabel30.SizeF = new System.Drawing.SizeF(81F, 20F);
|
||||
this.xrLabel30.StylePriority.UseBackColor = false;
|
||||
this.xrLabel30.StylePriority.UseBorders = false;
|
||||
this.xrLabel30.StylePriority.UseBorderWidth = false;
|
||||
@@ -745,46 +848,10 @@ namespace UebergangshilfeUnnaEV
|
||||
this.xrLabel30.StylePriority.UseTextAlignment = false;
|
||||
this.xrLabel30.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleCenter;
|
||||
//
|
||||
// xrLabel18
|
||||
//
|
||||
this.xrLabel18.BackColor = System.Drawing.Color.Transparent;
|
||||
this.xrLabel18.Borders = DevExpress.XtraPrinting.BorderSide.Top;
|
||||
this.xrLabel18.BorderWidth = 1F;
|
||||
this.xrLabel18.Font = new System.Drawing.Font("Arial", 11F);
|
||||
this.xrLabel18.LocationFloat = new DevExpress.Utils.PointFloat(0F, 0F);
|
||||
this.xrLabel18.Name = "xrLabel18";
|
||||
this.xrLabel18.Padding = new DevExpress.XtraPrinting.PaddingInfo(3, 2, 0, 0, 100F);
|
||||
this.xrLabel18.SizeF = new System.Drawing.SizeF(135F, 20F);
|
||||
this.xrLabel18.StylePriority.UseBackColor = false;
|
||||
this.xrLabel18.StylePriority.UseBorders = false;
|
||||
this.xrLabel18.StylePriority.UseBorderWidth = false;
|
||||
this.xrLabel18.StylePriority.UseFont = false;
|
||||
this.xrLabel18.StylePriority.UsePadding = false;
|
||||
this.xrLabel18.StylePriority.UseTextAlignment = false;
|
||||
this.xrLabel18.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleCenter;
|
||||
//
|
||||
// xrLabel17
|
||||
//
|
||||
this.xrLabel17.BackColor = System.Drawing.Color.Transparent;
|
||||
this.xrLabel17.Borders = DevExpress.XtraPrinting.BorderSide.Top;
|
||||
this.xrLabel17.BorderWidth = 1F;
|
||||
this.xrLabel17.Font = new System.Drawing.Font("Arial", 11F);
|
||||
this.xrLabel17.LocationFloat = new DevExpress.Utils.PointFloat(435F, 0F);
|
||||
this.xrLabel17.Name = "xrLabel17";
|
||||
this.xrLabel17.Padding = new DevExpress.XtraPrinting.PaddingInfo(3, 2, 0, 0, 100F);
|
||||
this.xrLabel17.SizeF = new System.Drawing.SizeF(315F, 20F);
|
||||
this.xrLabel17.StylePriority.UseBackColor = false;
|
||||
this.xrLabel17.StylePriority.UseBorders = false;
|
||||
this.xrLabel17.StylePriority.UseBorderWidth = false;
|
||||
this.xrLabel17.StylePriority.UseFont = false;
|
||||
this.xrLabel17.StylePriority.UsePadding = false;
|
||||
this.xrLabel17.StylePriority.UseTextAlignment = false;
|
||||
this.xrLabel17.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleCenter;
|
||||
//
|
||||
// xrLabel10
|
||||
//
|
||||
this.xrLabel10.Borders = DevExpress.XtraPrinting.BorderSide.Bottom;
|
||||
this.xrLabel10.LocationFloat = new DevExpress.Utils.PointFloat(0F, 74.04169F);
|
||||
this.xrLabel10.LocationFloat = new DevExpress.Utils.PointFloat(0F, 99.4654F);
|
||||
this.xrLabel10.Name = "xrLabel10";
|
||||
this.xrLabel10.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
|
||||
this.xrLabel10.SizeF = new System.Drawing.SizeF(125F, 25F);
|
||||
@@ -794,7 +861,7 @@ namespace UebergangshilfeUnnaEV
|
||||
//
|
||||
this.xrLabel11.Borders = DevExpress.XtraPrinting.BorderSide.None;
|
||||
this.xrLabel11.Font = new System.Drawing.Font("Arial", 10F);
|
||||
this.xrLabel11.LocationFloat = new DevExpress.Utils.PointFloat(0F, 99.04169F);
|
||||
this.xrLabel11.LocationFloat = new DevExpress.Utils.PointFloat(0F, 124.4654F);
|
||||
this.xrLabel11.Multiline = true;
|
||||
this.xrLabel11.Name = "xrLabel11";
|
||||
this.xrLabel11.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
|
||||
@@ -809,7 +876,7 @@ namespace UebergangshilfeUnnaEV
|
||||
//
|
||||
this.xrLabel12.Borders = DevExpress.XtraPrinting.BorderSide.None;
|
||||
this.xrLabel12.Font = new System.Drawing.Font("Arial", 10F);
|
||||
this.xrLabel12.LocationFloat = new DevExpress.Utils.PointFloat(242.9999F, 99.04169F);
|
||||
this.xrLabel12.LocationFloat = new DevExpress.Utils.PointFloat(242.9999F, 124.4654F);
|
||||
this.xrLabel12.Multiline = true;
|
||||
this.xrLabel12.Name = "xrLabel12";
|
||||
this.xrLabel12.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
|
||||
@@ -823,7 +890,7 @@ namespace UebergangshilfeUnnaEV
|
||||
// xrLabel13
|
||||
//
|
||||
this.xrLabel13.Borders = DevExpress.XtraPrinting.BorderSide.Bottom;
|
||||
this.xrLabel13.LocationFloat = new DevExpress.Utils.PointFloat(242.9999F, 74.04169F);
|
||||
this.xrLabel13.LocationFloat = new DevExpress.Utils.PointFloat(242.9999F, 99.4654F);
|
||||
this.xrLabel13.Name = "xrLabel13";
|
||||
this.xrLabel13.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
|
||||
this.xrLabel13.SizeF = new System.Drawing.SizeF(222.9027F, 25F);
|
||||
@@ -833,7 +900,7 @@ namespace UebergangshilfeUnnaEV
|
||||
//
|
||||
this.xrLabel29.Borders = DevExpress.XtraPrinting.BorderSide.None;
|
||||
this.xrLabel29.Font = new System.Drawing.Font("Arial", 10F);
|
||||
this.xrLabel29.LocationFloat = new DevExpress.Utils.PointFloat(527.0973F, 99.04169F);
|
||||
this.xrLabel29.LocationFloat = new DevExpress.Utils.PointFloat(527.0973F, 124.4654F);
|
||||
this.xrLabel29.Multiline = true;
|
||||
this.xrLabel29.Name = "xrLabel29";
|
||||
this.xrLabel29.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
|
||||
@@ -847,7 +914,7 @@ namespace UebergangshilfeUnnaEV
|
||||
// xrLabel28
|
||||
//
|
||||
this.xrLabel28.Borders = DevExpress.XtraPrinting.BorderSide.Bottom;
|
||||
this.xrLabel28.LocationFloat = new DevExpress.Utils.PointFloat(527.0973F, 74.04169F);
|
||||
this.xrLabel28.LocationFloat = new DevExpress.Utils.PointFloat(527.0973F, 99.4654F);
|
||||
this.xrLabel28.Name = "xrLabel28";
|
||||
this.xrLabel28.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
|
||||
this.xrLabel28.SizeF = new System.Drawing.SizeF(222.9027F, 25F);
|
||||
@@ -861,12 +928,12 @@ namespace UebergangshilfeUnnaEV
|
||||
| DevExpress.XtraPrinting.BorderSide.Bottom)));
|
||||
this.xrLabel9.BorderWidth = 2F;
|
||||
this.xrLabel9.DataBindings.AddRange(new DevExpress.XtraReports.UI.XRBinding[] {
|
||||
new DevExpress.XtraReports.UI.XRBinding("Text", null, "TotalFLMBillable", "{0:0.##}")});
|
||||
new DevExpress.XtraReports.UI.XRBinding("Text", null, "TotalFLMoFehlkontakte", "{0:0.##}")});
|
||||
this.xrLabel9.Font = new System.Drawing.Font("Arial", 11F);
|
||||
this.xrLabel9.LocationFloat = new DevExpress.Utils.PointFloat(314F, 0F);
|
||||
this.xrLabel9.LocationFloat = new DevExpress.Utils.PointFloat(355F, 0F);
|
||||
this.xrLabel9.Name = "xrLabel9";
|
||||
this.xrLabel9.Padding = new DevExpress.XtraPrinting.PaddingInfo(3, 2, 0, 0, 100F);
|
||||
this.xrLabel9.SizeF = new System.Drawing.SizeF(121F, 20F);
|
||||
this.xrLabel9.SizeF = new System.Drawing.SizeF(81F, 20F);
|
||||
this.xrLabel9.StylePriority.UseBackColor = false;
|
||||
this.xrLabel9.StylePriority.UseBorders = false;
|
||||
this.xrLabel9.StylePriority.UseBorderWidth = false;
|
||||
@@ -878,19 +945,19 @@ namespace UebergangshilfeUnnaEV
|
||||
// xrLabel1
|
||||
//
|
||||
this.xrLabel1.BackColor = System.Drawing.Color.Transparent;
|
||||
this.xrLabel1.Borders = DevExpress.XtraPrinting.BorderSide.Top;
|
||||
this.xrLabel1.Borders = DevExpress.XtraPrinting.BorderSide.None;
|
||||
this.xrLabel1.Font = new System.Drawing.Font("Arial", 11F, System.Drawing.FontStyle.Bold);
|
||||
this.xrLabel1.LocationFloat = new DevExpress.Utils.PointFloat(230F, 0F);
|
||||
this.xrLabel1.LocationFloat = new DevExpress.Utils.PointFloat(0F, 0F);
|
||||
this.xrLabel1.Name = "xrLabel1";
|
||||
this.xrLabel1.Padding = new DevExpress.XtraPrinting.PaddingInfo(3, 2, 0, 0, 100F);
|
||||
this.xrLabel1.SizeF = new System.Drawing.SizeF(84.00002F, 20F);
|
||||
this.xrLabel1.SizeF = new System.Drawing.SizeF(355F, 20F);
|
||||
this.xrLabel1.StylePriority.UseBackColor = false;
|
||||
this.xrLabel1.StylePriority.UseBorders = false;
|
||||
this.xrLabel1.StylePriority.UseFont = false;
|
||||
this.xrLabel1.StylePriority.UsePadding = false;
|
||||
this.xrLabel1.StylePriority.UseTextAlignment = false;
|
||||
this.xrLabel1.Text = "Summe";
|
||||
this.xrLabel1.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleLeft;
|
||||
this.xrLabel1.Text = "Summe Fachleistungen:";
|
||||
this.xrLabel1.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleRight;
|
||||
//
|
||||
// fieldKontaktArt
|
||||
//
|
||||
@@ -1012,8 +1079,12 @@ namespace UebergangshilfeUnnaEV
|
||||
private DevExpress.XtraReports.UI.XRLabel xrLabel28;
|
||||
private DevExpress.XtraReports.UI.PageFooterBand PageFooter;
|
||||
private DevExpress.XtraReports.UI.XRLabel xrLabel15;
|
||||
private DevExpress.XtraReports.UI.XRLabel xrLabel30;
|
||||
private DevExpress.XtraReports.UI.XRTableCell xrTableCell7;
|
||||
private DevExpress.XtraReports.UI.XRTableCell xrTableCell2;
|
||||
private DevExpress.XtraReports.UI.XRLabel xrLabel18;
|
||||
private DevExpress.XtraReports.UI.XRLabel xrLabel17;
|
||||
private DevExpress.XtraReports.UI.XRLabel xrLabel30;
|
||||
private DevExpress.XtraReports.UI.XRLabel lblFehlkontakt;
|
||||
private DevExpress.XtraReports.UI.XRLabel xrLabel31;
|
||||
private DevExpress.XtraReports.UI.XRLabel xrLabel32;
|
||||
}
|
||||
}
|
||||
|
||||
@@ -35,14 +35,19 @@ namespace UebergangshilfeUnnaEV
|
||||
|
||||
foreach (var sd in pRO.Services)
|
||||
{
|
||||
if (sd.IsBillable)
|
||||
if (sd.IsBillable || sd.ServiceDescription.ToLower().Contains("fehlkontakt") || sd.ServiceCategory.ToLower().Contains("fehlkontakt"))
|
||||
{
|
||||
ServicesOverviewRO.CreateSignatureString(sd);
|
||||
sd.Notice5 = "E";
|
||||
if (sd.IsGroup)
|
||||
{
|
||||
//sd.Notice5 = String.Format("{0} Teilnehmer", sd.CustomerCount);
|
||||
sd.Notice5 = "G";
|
||||
hatGruppen = true;
|
||||
}
|
||||
if (sd.ServiceDescription.ToLower().Contains("fehlkontakt") || sd.ServiceCategory.ToLower().Contains("fehlkontakt"))
|
||||
{
|
||||
sd.Notice5 = "F";
|
||||
}
|
||||
servicesBillable.Add(sd);
|
||||
}
|
||||
}
|
||||
|
||||
@@ -30,6 +30,7 @@ namespace BeWo.Report.DefaultReports.Alt
|
||||
{
|
||||
this.components = new System.ComponentModel.Container();
|
||||
System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(Spitzabrechnung));
|
||||
DevExpress.XtraReports.UI.XRSummary xrSummary1 = new DevExpress.XtraReports.UI.XRSummary();
|
||||
this.Detail = new DevExpress.XtraReports.UI.DetailBand();
|
||||
this.ReportHeader = new DevExpress.XtraReports.UI.ReportHeaderBand();
|
||||
this.xrLabel7 = new DevExpress.XtraReports.UI.XRLabel();
|
||||
@@ -99,7 +100,6 @@ namespace BeWo.Report.DefaultReports.Alt
|
||||
this.xrTableRow15 = new DevExpress.XtraReports.UI.XRTableRow();
|
||||
this.xrTableCell17 = new DevExpress.XtraReports.UI.XRTableCell();
|
||||
this.xrTableCell23 = new DevExpress.XtraReports.UI.XRTableCell();
|
||||
this.bindingSource1 = new System.Windows.Forms.BindingSource(this.components);
|
||||
this.GroupFooter1 = new DevExpress.XtraReports.UI.GroupFooterBand();
|
||||
this.xrTable4 = new DevExpress.XtraReports.UI.XRTable();
|
||||
this.xrTableRow30 = new DevExpress.XtraReports.UI.XRTableRow();
|
||||
@@ -117,11 +117,21 @@ namespace BeWo.Report.DefaultReports.Alt
|
||||
this.xrTableRow36 = new DevExpress.XtraReports.UI.XRTableRow();
|
||||
this.xrTableCell57 = new DevExpress.XtraReports.UI.XRTableCell();
|
||||
this.xrTableCell58 = new DevExpress.XtraReports.UI.XRTableCell();
|
||||
this.GroupHeader2 = new DevExpress.XtraReports.UI.GroupHeaderBand();
|
||||
this.Zwischensumme = new DevExpress.XtraReports.UI.GroupFooterBand();
|
||||
this.xrTable6 = new DevExpress.XtraReports.UI.XRTable();
|
||||
this.xrTableRow12 = new DevExpress.XtraReports.UI.XRTableRow();
|
||||
this.xrTableCell9 = new DevExpress.XtraReports.UI.XRTableCell();
|
||||
this.xrTableCell10 = new DevExpress.XtraReports.UI.XRTableCell();
|
||||
this.xrTableRow1 = new DevExpress.XtraReports.UI.XRTableRow();
|
||||
this.xrTableCell1 = new DevExpress.XtraReports.UI.XRTableCell();
|
||||
this.bindingSource1 = new System.Windows.Forms.BindingSource(this.components);
|
||||
((System.ComponentModel.ISupportInitialize)(this.xrTable1)).BeginInit();
|
||||
((System.ComponentModel.ISupportInitialize)(this.xrTable3)).BeginInit();
|
||||
((System.ComponentModel.ISupportInitialize)(this.xrTable5)).BeginInit();
|
||||
((System.ComponentModel.ISupportInitialize)(this.bindingSource1)).BeginInit();
|
||||
((System.ComponentModel.ISupportInitialize)(this.xrTable4)).BeginInit();
|
||||
((System.ComponentModel.ISupportInitialize)(this.xrTable6)).BeginInit();
|
||||
((System.ComponentModel.ISupportInitialize)(this.bindingSource1)).BeginInit();
|
||||
((System.ComponentModel.ISupportInitialize)(this)).BeginInit();
|
||||
//
|
||||
// Detail
|
||||
@@ -601,13 +611,13 @@ namespace BeWo.Report.DefaultReports.Alt
|
||||
//
|
||||
this.bottomMarginBand1.Controls.AddRange(new DevExpress.XtraReports.UI.XRControl[] {
|
||||
this.xrLabel25});
|
||||
this.bottomMarginBand1.HeightF = 82.66653F;
|
||||
this.bottomMarginBand1.HeightF = 76.67665F;
|
||||
this.bottomMarginBand1.Name = "bottomMarginBand1";
|
||||
//
|
||||
// xrLabel25
|
||||
//
|
||||
this.xrLabel25.Font = new System.Drawing.Font("Verdana", 9.75F);
|
||||
this.xrLabel25.LocationFloat = new DevExpress.Utils.PointFloat(0F, 20.12494F);
|
||||
this.xrLabel25.LocationFloat = new DevExpress.Utils.PointFloat(0F, 13.12494F);
|
||||
this.xrLabel25.Name = "xrLabel25";
|
||||
this.xrLabel25.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
|
||||
this.xrLabel25.SizeF = new System.Drawing.SizeF(727.0001F, 52.16668F);
|
||||
@@ -821,7 +831,9 @@ namespace BeWo.Report.DefaultReports.Alt
|
||||
// DetailReport
|
||||
//
|
||||
this.DetailReport.Bands.AddRange(new DevExpress.XtraReports.UI.Band[] {
|
||||
this.Detail1});
|
||||
this.Detail1,
|
||||
this.GroupHeader2,
|
||||
this.Zwischensumme});
|
||||
this.DetailReport.DataMember = "InvoiceItems";
|
||||
this.DetailReport.DataSource = this.bindingSource1;
|
||||
this.DetailReport.Level = 0;
|
||||
@@ -834,6 +846,8 @@ namespace BeWo.Report.DefaultReports.Alt
|
||||
this.Detail1.Font = new System.Drawing.Font("Verdana", 10F);
|
||||
this.Detail1.HeightF = 17F;
|
||||
this.Detail1.Name = "Detail1";
|
||||
this.Detail1.SortFields.AddRange(new DevExpress.XtraReports.UI.GroupField[] {
|
||||
new DevExpress.XtraReports.UI.GroupField("ItemPeriodStart", DevExpress.XtraReports.UI.XRColumnSortOrder.Ascending)});
|
||||
this.Detail1.StylePriority.UseFont = false;
|
||||
//
|
||||
// xrTable5
|
||||
@@ -888,16 +902,12 @@ namespace BeWo.Report.DefaultReports.Alt
|
||||
this.xrTableCell23.TextAlignment = DevExpress.XtraPrinting.TextAlignment.TopRight;
|
||||
this.xrTableCell23.Weight = 0.21685899000901443D;
|
||||
//
|
||||
// bindingSource1
|
||||
//
|
||||
this.bindingSource1.DataSource = typeof(BeWo.Report.ReportObjects.SettlementRO);
|
||||
//
|
||||
// GroupFooter1
|
||||
//
|
||||
this.GroupFooter1.Controls.AddRange(new DevExpress.XtraReports.UI.XRControl[] {
|
||||
this.xrTable4});
|
||||
this.GroupFooter1.Font = new System.Drawing.Font("Verdana", 10F);
|
||||
this.GroupFooter1.HeightF = 115F;
|
||||
this.GroupFooter1.HeightF = 111F;
|
||||
this.GroupFooter1.Name = "GroupFooter1";
|
||||
this.GroupFooter1.StylePriority.UseFont = false;
|
||||
//
|
||||
@@ -913,7 +923,7 @@ namespace BeWo.Report.DefaultReports.Alt
|
||||
this.xrTableRow33,
|
||||
this.xrTableRow35,
|
||||
this.xrTableRow36});
|
||||
this.xrTable4.SizeF = new System.Drawing.SizeF(726.9998F, 115F);
|
||||
this.xrTable4.SizeF = new System.Drawing.SizeF(726.9998F, 111F);
|
||||
this.xrTable4.StylePriority.UseBorderColor = false;
|
||||
//
|
||||
// xrTableRow30
|
||||
@@ -1043,7 +1053,7 @@ namespace BeWo.Report.DefaultReports.Alt
|
||||
this.xrTableCell57,
|
||||
this.xrTableCell58});
|
||||
this.xrTableRow36.Name = "xrTableRow36";
|
||||
this.xrTableRow36.Weight = 0.15D;
|
||||
this.xrTableRow36.Weight = 0.13D;
|
||||
//
|
||||
// xrTableCell57
|
||||
//
|
||||
@@ -1073,6 +1083,100 @@ namespace BeWo.Report.DefaultReports.Alt
|
||||
this.xrTableCell58.TextAlignment = DevExpress.XtraPrinting.TextAlignment.TopRight;
|
||||
this.xrTableCell58.Weight = 0.21685899000901443D;
|
||||
//
|
||||
// GroupHeader2
|
||||
//
|
||||
this.GroupHeader2.GroupFields.AddRange(new DevExpress.XtraReports.UI.GroupField[] {
|
||||
new DevExpress.XtraReports.UI.GroupField("RateFactor", DevExpress.XtraReports.UI.XRColumnSortOrder.Descending)});
|
||||
this.GroupHeader2.HeightF = 0F;
|
||||
this.GroupHeader2.Name = "GroupHeader2";
|
||||
//
|
||||
// Zwischensumme
|
||||
//
|
||||
this.Zwischensumme.Controls.AddRange(new DevExpress.XtraReports.UI.XRControl[] {
|
||||
this.xrTable6});
|
||||
this.Zwischensumme.HeightF = 25.35417F;
|
||||
this.Zwischensumme.Name = "Zwischensumme";
|
||||
this.Zwischensumme.Visible = false;
|
||||
//
|
||||
// xrTable6
|
||||
//
|
||||
this.xrTable6.Font = new System.Drawing.Font("Verdana", 9.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
|
||||
this.xrTable6.LocationFloat = new DevExpress.Utils.PointFloat(0F, 0F);
|
||||
this.xrTable6.Name = "xrTable6";
|
||||
this.xrTable6.Rows.AddRange(new DevExpress.XtraReports.UI.XRTableRow[] {
|
||||
this.xrTableRow12,
|
||||
this.xrTableRow1});
|
||||
this.xrTable6.SizeF = new System.Drawing.SizeF(726.9995F, 25.35417F);
|
||||
this.xrTable6.StylePriority.UseFont = false;
|
||||
//
|
||||
// xrTableRow12
|
||||
//
|
||||
this.xrTableRow12.Cells.AddRange(new DevExpress.XtraReports.UI.XRTableCell[] {
|
||||
this.xrTableCell9,
|
||||
this.xrTableCell10});
|
||||
this.xrTableRow12.Name = "xrTableRow12";
|
||||
this.xrTableRow12.Weight = 0.40476190476190466D;
|
||||
//
|
||||
// xrTableCell9
|
||||
//
|
||||
this.xrTableCell9.BorderColor = System.Drawing.SystemColors.ControlLight;
|
||||
this.xrTableCell9.Borders = ((DevExpress.XtraPrinting.BorderSide)((DevExpress.XtraPrinting.BorderSide.Left | DevExpress.XtraPrinting.BorderSide.Bottom)));
|
||||
this.xrTableCell9.Font = new System.Drawing.Font("Verdana", 10F);
|
||||
this.xrTableCell9.Name = "xrTableCell9";
|
||||
this.xrTableCell9.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
|
||||
this.xrTableCell9.StylePriority.UseBorderColor = false;
|
||||
this.xrTableCell9.StylePriority.UseBorders = false;
|
||||
this.xrTableCell9.StylePriority.UseFont = false;
|
||||
this.xrTableCell9.StylePriority.UsePadding = false;
|
||||
this.xrTableCell9.Text = "Zwischensumme [UnitDescription]:";
|
||||
this.xrTableCell9.Weight = 2.349424475724216D;
|
||||
//
|
||||
// xrTableCell10
|
||||
//
|
||||
this.xrTableCell10.BorderColor = System.Drawing.SystemColors.ControlLight;
|
||||
this.xrTableCell10.Borders = ((DevExpress.XtraPrinting.BorderSide)(((DevExpress.XtraPrinting.BorderSide.Left | DevExpress.XtraPrinting.BorderSide.Right)
|
||||
| DevExpress.XtraPrinting.BorderSide.Bottom)));
|
||||
this.xrTableCell10.DataBindings.AddRange(new DevExpress.XtraReports.UI.XRBinding[] {
|
||||
new DevExpress.XtraReports.UI.XRBinding("Text", null, "InvoiceItems.GrossAmountTotal")});
|
||||
this.xrTableCell10.Font = new System.Drawing.Font("Verdana", 10F);
|
||||
this.xrTableCell10.Name = "xrTableCell10";
|
||||
this.xrTableCell10.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
|
||||
this.xrTableCell10.StylePriority.UseBorderColor = false;
|
||||
this.xrTableCell10.StylePriority.UseBorders = false;
|
||||
this.xrTableCell10.StylePriority.UseFont = false;
|
||||
this.xrTableCell10.StylePriority.UsePadding = false;
|
||||
this.xrTableCell10.StylePriority.UseTextAlignment = false;
|
||||
xrSummary1.FormatString = "{0:c}";
|
||||
xrSummary1.Running = DevExpress.XtraReports.UI.SummaryRunning.Group;
|
||||
this.xrTableCell10.Summary = xrSummary1;
|
||||
this.xrTableCell10.TextAlignment = DevExpress.XtraPrinting.TextAlignment.TopRight;
|
||||
this.xrTableCell10.Weight = 0.65057552427578424D;
|
||||
//
|
||||
// xrTableRow1
|
||||
//
|
||||
this.xrTableRow1.Cells.AddRange(new DevExpress.XtraReports.UI.XRTableCell[] {
|
||||
this.xrTableCell1});
|
||||
this.xrTableRow1.Name = "xrTableRow1";
|
||||
this.xrTableRow1.Weight = 0.22274785742951114D;
|
||||
//
|
||||
// xrTableCell1
|
||||
//
|
||||
this.xrTableCell1.BorderColor = System.Drawing.SystemColors.ControlLight;
|
||||
this.xrTableCell1.Borders = ((DevExpress.XtraPrinting.BorderSide)(((DevExpress.XtraPrinting.BorderSide.Left | DevExpress.XtraPrinting.BorderSide.Right)
|
||||
| DevExpress.XtraPrinting.BorderSide.Bottom)));
|
||||
this.xrTableCell1.Font = new System.Drawing.Font("Verdana", 10F);
|
||||
this.xrTableCell1.Name = "xrTableCell1";
|
||||
this.xrTableCell1.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
|
||||
this.xrTableCell1.StylePriority.UseBorderColor = false;
|
||||
this.xrTableCell1.StylePriority.UseBorders = false;
|
||||
this.xrTableCell1.StylePriority.UseFont = false;
|
||||
this.xrTableCell1.StylePriority.UsePadding = false;
|
||||
this.xrTableCell1.Weight = 3D;
|
||||
//
|
||||
// bindingSource1
|
||||
//
|
||||
this.bindingSource1.DataSource = typeof(BeWo.Report.ReportObjects.SettlementRO);
|
||||
//
|
||||
// Spitzabrechnung
|
||||
//
|
||||
this.Bands.AddRange(new DevExpress.XtraReports.UI.Band[] {
|
||||
@@ -1088,7 +1192,7 @@ namespace BeWo.Report.DefaultReports.Alt
|
||||
this.ExportOptions.PrintPreview.DefaultFileName = "Spitzabrechnung";
|
||||
this.FormattingRuleSheet.AddRange(new DevExpress.XtraReports.UI.FormattingRule[] {
|
||||
this.ruleRateFactorNull});
|
||||
this.Margins = new System.Drawing.Printing.Margins(54, 46, 28, 83);
|
||||
this.Margins = new System.Drawing.Printing.Margins(54, 46, 28, 77);
|
||||
this.PageHeight = 1169;
|
||||
this.PageWidth = 827;
|
||||
this.PaperKind = System.Drawing.Printing.PaperKind.A4;
|
||||
@@ -1096,8 +1200,9 @@ namespace BeWo.Report.DefaultReports.Alt
|
||||
((System.ComponentModel.ISupportInitialize)(this.xrTable1)).EndInit();
|
||||
((System.ComponentModel.ISupportInitialize)(this.xrTable3)).EndInit();
|
||||
((System.ComponentModel.ISupportInitialize)(this.xrTable5)).EndInit();
|
||||
((System.ComponentModel.ISupportInitialize)(this.bindingSource1)).EndInit();
|
||||
((System.ComponentModel.ISupportInitialize)(this.xrTable4)).EndInit();
|
||||
((System.ComponentModel.ISupportInitialize)(this.xrTable6)).EndInit();
|
||||
((System.ComponentModel.ISupportInitialize)(this.bindingSource1)).EndInit();
|
||||
((System.ComponentModel.ISupportInitialize)(this)).EndInit();
|
||||
|
||||
}
|
||||
@@ -1191,5 +1296,13 @@ namespace BeWo.Report.DefaultReports.Alt
|
||||
private DevExpress.XtraReports.UI.XRLabel xrLabel11;
|
||||
private DevExpress.XtraReports.UI.XRLabel xrLabel29;
|
||||
private DevExpress.XtraReports.UI.XRLabel xrLabel30;
|
||||
private DevExpress.XtraReports.UI.GroupHeaderBand GroupHeader2;
|
||||
private DevExpress.XtraReports.UI.GroupFooterBand Zwischensumme;
|
||||
private DevExpress.XtraReports.UI.XRTable xrTable6;
|
||||
private DevExpress.XtraReports.UI.XRTableRow xrTableRow12;
|
||||
private DevExpress.XtraReports.UI.XRTableCell xrTableCell9;
|
||||
private DevExpress.XtraReports.UI.XRTableCell xrTableCell10;
|
||||
private DevExpress.XtraReports.UI.XRTableRow xrTableRow1;
|
||||
private DevExpress.XtraReports.UI.XRTableCell xrTableCell1;
|
||||
}
|
||||
}
|
||||
|
||||
@@ -5,6 +5,7 @@ using BeWo.Data.Entities;
|
||||
using BeWo.Report;
|
||||
using BeWo.Report.ReportObjects;
|
||||
using BS.Shared.DataContracts;
|
||||
using BS.Shared.Extensions;
|
||||
|
||||
namespace BeWo.Report.DefaultReports.Alt
|
||||
{
|
||||
@@ -60,6 +61,17 @@ namespace BeWo.Report.DefaultReports.Alt
|
||||
{
|
||||
ii.ItemDescription = String.Format("{0:dd.MM.yyyy} bis {1:dd.MM.yyyy}: {2:0.##} FLS x {3:c}",
|
||||
ii.ItemPeriodStart, ii.ItemPeriodEnd, ii.UnitCount, ii.AmountPerUnit);
|
||||
|
||||
if (!pRO.FehlkontakteString.IsNullOrEmpty() && ii.RateFactor == 0)
|
||||
{
|
||||
Zwischensumme.Visible = true;
|
||||
ii.ItemDescription = ii.ItemDescription.Replace("FLS", "h");
|
||||
ii.UnitDescription = "Fehlkontakte";
|
||||
}
|
||||
else if (ii.UnitDescription.IsNullOrEmpty())
|
||||
{
|
||||
ii.UnitDescription = "Fachleistungsstunden";
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
@@ -73,6 +85,17 @@ namespace BeWo.Report.DefaultReports.Alt
|
||||
ii.ItemPeriodStart, ii.ItemPeriodEnd,
|
||||
ii.UnitCount, ii.RateFactor == 0 ? "" : "x " + pRO.RateFactorText2 + " ",
|
||||
ii.AmountPerUnit);
|
||||
|
||||
if (!pRO.FehlkontakteString.IsNullOrEmpty() && ii.RateFactor == 0)
|
||||
{
|
||||
Zwischensumme.Visible = true;
|
||||
ii.ItemDescription = ii.ItemDescription.Replace("FLS", "h");
|
||||
ii.UnitDescription = "Fehlkontakte";
|
||||
}
|
||||
else if (ii.UnitDescription.IsNullOrEmpty())
|
||||
{
|
||||
ii.UnitDescription = "Fachleistungsstunden";
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
@@ -230,7 +230,8 @@ namespace VaroSozialagentur.Invoicing
|
||||
public override InvoiceItem CreateInvoiceItem(ServiceRecordDC iServiceRecord, SupportConceptApprovalPeriod scap, Calculations calc)
|
||||
{
|
||||
var invoiceItem = base.CreateInvoiceItem(iServiceRecord, scap, calc);
|
||||
if (iServiceRecord.CostBearer.Name.Contains("Hannover") || iServiceRecord.CostBearer.Name.Contains("Landkreis Hildesheim") || iServiceRecord.CostBearer.Name.Contains("Stadt Hildesheim"))
|
||||
if (iServiceRecord.CostBearer.Name.Contains("Hannover") || iServiceRecord.CostBearer.Name.Contains("Landkreis Hildesheim") || iServiceRecord.CostBearer.Name.Contains("Stadt Hildesheim")
|
||||
|| iServiceRecord.CostBearer.Name.Contains("Landkreis Northeim"))
|
||||
{
|
||||
invoiceItem.UnitCount = 120 * invoiceItem.UnitCount / 100;
|
||||
invoiceItem.GrossAmountTotal = 120 * invoiceItem.GrossAmountTotal / 100;
|
||||
|
||||
@@ -101,10 +101,10 @@ namespace BeWo.Service.Plugins
|
||||
foreach (ServiceRecord sr in serviceRecords)
|
||||
{
|
||||
bool cont = true;
|
||||
if (sr.Employee != null && sr.Employee.IsActive == ActivationTypeId.Deleted)
|
||||
{
|
||||
cont = false;
|
||||
}
|
||||
//if (sr.Employee != null && sr.Employee.IsActive == ActivationTypeId.Deleted)
|
||||
//{
|
||||
// cont = false;
|
||||
//}
|
||||
|
||||
if (cont && sr.SupportConcept != null && sr.SupportConcept.IsActive == ActivationTypeId.Deleted)
|
||||
{
|
||||
|
||||
Reference in New Issue
Block a user