diff --git a/ReportImp/Ruhrstern/Reporting/ServiceInvoiceReport.cs b/ReportImp/Ruhrstern/Reporting/ServiceInvoiceReport.cs index 97551e9a3..209a95fd5 100644 --- a/ReportImp/Ruhrstern/Reporting/ServiceInvoiceReport.cs +++ b/ReportImp/Ruhrstern/Reporting/ServiceInvoiceReport.cs @@ -22,6 +22,10 @@ namespace Ruhrstern { sb.AppendLine(pRO.RecipientOrganisation); } + if (!String.IsNullOrEmpty(pRO.RecipientContactPerson) && !String.IsNullOrEmpty(pRO.RecipientContactPerson.Trim())) + { + sb.AppendLine(pRO.RecipientContactPerson); + } if (!String.IsNullOrEmpty(pRO.RecipientDivision) && !String.IsNullOrEmpty(pRO.RecipientDivision.Trim())) { sb.AppendLine(pRO.RecipientDivision);