diff --git a/ReportImp/LebenszentrumKönigsborn/SettlementReport2.cs b/ReportImp/LebenszentrumKönigsborn/SettlementReport2.cs index 9e15fe484..ecc6d382d 100644 --- a/ReportImp/LebenszentrumKönigsborn/SettlementReport2.cs +++ b/ReportImp/LebenszentrumKönigsborn/SettlementReport2.cs @@ -19,11 +19,6 @@ namespace BeWo.Report.DefaultReports public void SetReportDataSource(Settlement2RO pRO) { - if (String.IsNullOrEmpty(pRO.Notice)) - { - lblNotice.Visible = false; - } - decimal rateFactor = 1; foreach (var ii in pRO.InvoiceItems) @@ -50,10 +45,6 @@ namespace BeWo.Report.DefaultReports } pRO.RateFactor = (double)rateFactor; - if (pRO.Salutation1.IsNullOrEmpty() && pRO.Salutation2.IsNullOrEmpty()) - { - lblAnrede.Text = "Guten Tag " + pRO.CustomerFirstName + " " + pRO.CustomerLastName + ","; - } this.bindingSource1.DataSource = pRO; }