Ruhrstern/Reporting/ServiceInvoiceReport - Empfängeradresse nachgeschärft

This commit is contained in:
2026-02-09 13:43:18 +01:00
parent fd0a71cc9d
commit 4b0a32a0b2

View File

@@ -18,10 +18,6 @@ namespace Ruhrstern
public void SetReportDataSource(ServiceInvoiceRO pRO)
{
StringBuilder sb = new StringBuilder();
if (!String.IsNullOrEmpty(pRO.RecipientOrganisation) && pRO.RecipientOrganisation.ToLower() != "selbstzahler")
{
sb.AppendLine(pRO.RecipientOrganisation);
}
if (!String.IsNullOrEmpty(pRO.RecipientOrganisation) && !String.IsNullOrEmpty(pRO.RecipientOrganisation.Trim()) && pRO.RecipientOrganisation.ToLower() != "selbstzahler")
{
sb.AppendLine(pRO.RecipientOrganisation);