Skip to content

Commit

Permalink
fix CI #3260
Browse files Browse the repository at this point in the history
  • Loading branch information
hmeneuvrier committed Nov 26, 2024
1 parent cc018fb commit 24de20f
Show file tree
Hide file tree
Showing 4 changed files with 9 additions and 6 deletions.
7 changes: 5 additions & 2 deletions src/Service/Mailer/Mail/Suivi/SuiviNewCommentBackMailer.php
Original file line number Diff line number Diff line change
Expand Up @@ -32,14 +32,17 @@ public function getMailerParamsFromNotification(NotificationMail $notificationMa
$signalement = $notificationMail->getSignalement();
$suivi = $notificationMail->getSuivi();
if ($suivi && $suivi->getCreatedBy()) {
$suiviCreator = $suivi->getCreatedBy()->getNom().' ('.$suivi->getCreatedBy()->getPartner()->getNom().')';
$suiviCreator = $suivi->getCreatedBy()->getNomComplet();
if ($suivi->getCreatedBy()->getPartner()) {
$suiviCreator .= ' ('.$suivi->getCreatedBy()->getPartner()->getNom().')';
}
} else {
$suiviCreator = $signalement->getPrenomDeclarant().' '.$signalement->getNomDeclarant();
}

return array_merge($notificationMail->getParams(), [
'signalement_reference' => $signalement->getReference(),
'suivi_createdor' => $suiviCreator,
'suivi_creator' => $suiviCreator ?? 'N/A',
'ref_signalement' => $signalement->getReference(),
'link' => $this->generateLinkSignalementView($signalement->getUuid()),
]);
Expand Down
4 changes: 2 additions & 2 deletions templates/_partials/_modal_reopen_signalement.html.twig
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@
{% if all == '1' %}
Rouvrir le signalement pour tous
{% else %}
Rouvrir pour {{ app.user.partner.nom }}
Rouvrir pour {{ app.user.partner.nom ?? 'N/A' }}
{% endif %}
</h1>
<fieldset class="fr-fieldset" id="radio-hint{% if all == '1' %}-all{% endif %}" aria-labelledby="radio-hint-legend{% if all == '1' %}-all{% endif %} radio-hint-messages">
Expand Down Expand Up @@ -52,7 +52,7 @@
{% if all == '1' %}
Rouvrir le signalement pour tous
{% else %}
Rouvrir le signalement pour {{ app.user.partner.nom }}
Rouvrir le signalement pour {{ app.user.partner.nom ?? 'N/A' }}
{% endif %}
</button>
</li>
Expand Down
2 changes: 1 addition & 1 deletion templates/back/signalement/view/header.html.twig
Original file line number Diff line number Diff line change
Expand Up @@ -221,7 +221,7 @@
{% if signalement.statut is not same as constant('App\\Entity\\Signalement::STATUS_CLOSED') or (is_granted('ROLE_ADMIN_TERRITORY') or isAffected) %}
<button class="fr-btn fr-btn--sm fr-btn--success fr-fi-lock-fill fr-btn--icon-left fr-mt-1v reopen"
aria-controls="reopen-signalement-modal" data-fr-opened="false">
Rouvrir pour {{ app.user.partner.nom }}
Rouvrir pour {{ app.user.partner.nom ?? 'N/A' }}
</button>
{% endif %}

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
<p>Bonjour,
<br>
Un nouveau suivi de
<strong>{{ suiviCreator }}</strong>
<strong>{{ suivi_creator }}</strong>
est disponible pour le signalement <strong>#{{ signalement_reference }}</strong>.
<br>
Rendez-vous sur votre plateforme {{ platform.name }} pour le découvrir.
Expand Down

0 comments on commit 24de20f

Please sign in to comment.