From ea891a6c5e4d383c586e6b3cb620db917a5e1855 Mon Sep 17 00:00:00 2001 From: tnicolas1 <166516439+tnicolas1@users.noreply.github.com> Date: Tue, 7 Jan 2025 11:15:12 +0100 Subject: [PATCH] =?UTF-8?q?Ajout=20du=20num=C3=A9ro=20de=20d=C3=A9cision?= =?UTF-8?q?=20attributive=20dans=20la=20page=20des=20PFMPs=20(#1315)?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- app/views/pfmps/_payment_requests_history.html.haml | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) diff --git a/app/views/pfmps/_payment_requests_history.html.haml b/app/views/pfmps/_payment_requests_history.html.haml index 5a3094ec4..3d3b6175e 100644 --- a/app/views/pfmps/_payment_requests_history.html.haml +++ b/app/views/pfmps/_payment_requests_history.html.haml @@ -6,10 +6,13 @@ - if payment_request.in_state?(:paid) .fr-mt-2w.gray-text Montant réellement versé : - = number_to_currency(payment_request.last_transition.metadata['PAIEMENT']['MTNET'].to_f) + %strong= number_to_currency(payment_request.last_transition.metadata['PAIEMENT']['MTNET'].to_f) .fr-mt-2w.gray-text Coordonnées bancaires utilisées : - = payment_request.rib&.iban || payment_request.reconstructed_iban || payment_request.student.rib(current_establishment)&.iban || "manquantes" + %strong= payment_request.rib&.iban || payment_request.reconstructed_iban || payment_request.student.rib(current_establishment)&.iban || "manquantes" + .fr-mt-2w.gray-text + Numéro de décision attributive : + %strong= payment_request.schooling.attributive_decision_number .fr-mt-2w.gray-text Dernière mise à jour le = l(payment_request.last_transition&.updated_at || payment_request.updated_at, format: :long)