MH: SamanthaRiegerIntegrationspraxis

This commit is contained in:
2026-06-08 12:31:04 +02:00
parent 598caf34e5
commit 8a9cd25674
2 changed files with 6 additions and 4 deletions

View File

@@ -25,8 +25,8 @@ namespace HalteStelle.Alt
if (pRO.RecipientOrganisation.IsNotNullOrEmpty())
adresse.AppendLine(pRO.RecipientOrganisation);
if (pRO.RecipientContactPerson.IsNotNullOrEmpty())
adresse.AppendLine(pRO.RecipientContactPerson);
//if (pRO.RecipientContactPerson.IsNotNullOrEmpty())
adresse.AppendLine("Frau Kiefer");
if (pRO.RecipientStreet.IsNotNullOrEmpty())
adresse.AppendLine(pRO.RecipientStreet);
if (pRO.RecipientPostCodeAndTown.IsNotNullOrEmpty())

View File

@@ -25,13 +25,15 @@ namespace HalteStelle
if (pRO.RecipientOrganisation.IsNotNullOrEmpty())
adresse.AppendLine(pRO.RecipientOrganisation);
if (pRO.RecipientContactPerson.IsNotNullOrEmpty())
adresse.AppendLine(pRO.RecipientContactPerson);
//if (pRO.RecipientContactPerson.IsNotNullOrEmpty())
adresse.AppendLine("Frau Kiefer");
if (pRO.RecipientStreet.IsNotNullOrEmpty())
adresse.AppendLine(pRO.RecipientStreet);
if (pRO.RecipientPostCodeAndTown.IsNotNullOrEmpty())
adresse.AppendLine(pRO.RecipientPostCodeAndTown);
lblAdresse.Text = adresse.ToString();
if (!String.IsNullOrEmpty(pRO.SenderContactPersonPhone))
{
pRO.SenderContactPersonPhone = pRO.SenderContactPersonPhone.Replace("Tel.:", "").Trim();