CB, Storno und Reports

This commit is contained in:
Christian
2021-12-05 19:21:17 +01:00
parent e0609b94cd
commit be6732e5e8
28 changed files with 437 additions and 87 deletions

View File

@@ -52,8 +52,6 @@ namespace BellaDonna.Invoicing
serviceInvoice.InvoiceBase.RecipientPersonFirstName = cust.Person.FirstName;
serviceInvoice.InvoiceBase.RecipientPersonLastName = cust.Person.LastName;
}
}
}

View File

@@ -39,7 +39,7 @@ namespace BellaDonna
this.Page1 = new DevExpress.XtraReports.UI.GroupHeaderBand();
this.xrRichText1 = new DevExpress.XtraReports.UI.XRRichText();
this.lblAdresse = new DevExpress.XtraReports.UI.XRLabel();
this.xrLabel3 = new DevExpress.XtraReports.UI.XRLabel();
this.lblBetreff = new DevExpress.XtraReports.UI.XRLabel();
this.xrLabel2 = new DevExpress.XtraReports.UI.XRLabel();
this.xrLabel8 = new DevExpress.XtraReports.UI.XRLabel();
this.lblAbrechnungszeitraum = new DevExpress.XtraReports.UI.XRLabel();
@@ -104,7 +104,7 @@ namespace BellaDonna
this.Page1.Controls.AddRange(new DevExpress.XtraReports.UI.XRControl[] {
this.xrRichText1,
this.lblAdresse,
this.xrLabel3,
this.lblBetreff,
this.xrLabel2,
this.xrLabel8,
this.lblAbrechnungszeitraum});
@@ -130,19 +130,18 @@ namespace BellaDonna
this.lblAdresse.SizeF = new System.Drawing.SizeF(380F, 144.1389F);
this.lblAdresse.StylePriority.UseFont = false;
//
// xrLabel3
// lblBetreff
//
this.xrLabel3.BackColor = System.Drawing.Color.Transparent;
this.xrLabel3.CanShrink = true;
this.xrLabel3.LocationFloat = new DevExpress.Utils.PointFloat(0F, 282.3611F);
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(650F, 49.86108F);
this.xrLabel3.StylePriority.UseBackColor = false;
this.xrLabel3.StylePriority.UseFont = false;
this.xrLabel3.Text = "Ambulant Betreutes Wohnen für [CustomerSalutation] [CustomerName], geb. [Customer" +
"Birthdate!dd.MM.yyyy]\r\nAktenzeichen: [CustomerReferenceNumber]";
this.lblBetreff.BackColor = System.Drawing.Color.Transparent;
this.lblBetreff.LocationFloat = new DevExpress.Utils.PointFloat(0F, 282.3611F);
this.lblBetreff.Multiline = true;
this.lblBetreff.Name = "lblBetreff";
this.lblBetreff.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
this.lblBetreff.SizeF = new System.Drawing.SizeF(650F, 49.86108F);
this.lblBetreff.StylePriority.UseBackColor = false;
this.lblBetreff.StylePriority.UseFont = false;
this.lblBetreff.Text = "##### für [CustomerSalutation] [CustomerName], geb. [CustomerBirthdate!dd.MM.yyyy" +
"]\r\nAktenzeichen: [CustomerReferenceNumber]";
//
// xrLabel2
//
@@ -300,7 +299,7 @@ namespace BellaDonna
private DevExpress.XtraReports.UI.TopMarginBand topMarginBand1;
private DevExpress.XtraReports.UI.BottomMarginBand bottomMarginBand1;
private DevExpress.XtraReports.UI.GroupHeaderBand Page1;
private DevExpress.XtraReports.UI.XRLabel xrLabel3;
private DevExpress.XtraReports.UI.XRLabel lblBetreff;
private DevExpress.XtraReports.UI.XRLabel xrLabel2;
private DevExpress.XtraReports.UI.XRLabel xrLabel8;
private DevExpress.XtraReports.UI.XRLabel lblAbrechnungszeitraum;

View File

@@ -35,6 +35,8 @@ namespace BellaDonna
}
lblAbrechnungszeitraum.Text = lblAbrechnungszeitraum.Text.Replace("#####", text);
lblBetreff.Text = lblBetreff.Text.Replace("#####", "Ambulant Betreutes Wohnen");
this.bindingSource1.DataSource = pRO;
}