Commit 94cfa847 by Yvon

remove useless koma in string that could lead to problems when using koma separated csv export

parent 2c1beaf3
...@@ -296,7 +296,7 @@ class UserController extends AbstractController ...@@ -296,7 +296,7 @@ class UserController extends AbstractController
$now = (new \Datetime('now'))->format('d/m/Y H:i:s'); $now = (new \Datetime('now'))->format('d/m/Y H:i:s');
$flux->setReference( $flux->setReference(
'Remboursement en Monnaie Solidaire du ' . $now . ', annule ' . $transactionAdherentPrestataire->getReference() 'Remboursement en Monnaie Solidaire du ' . $now . ' annule ' . $transactionAdherentPrestataire->getReference()
); );
$this->em->persist($flux); $this->em->persist($flux);
......
{% extends admin.getTemplate('base_list_field') %}
{% block field %}
<div>
{% if value == 'reversement_cotisation_adherent' %}
Allocation complémentaire de la caisse
{% elseif value == 'prelevement_cotisation_adherent' %}
Réduction de l'allocation
{% elseif value == 'vente_emlc_adherent' or value == 'achat_monnaie_adherent' %}
Achat de MonA via cotisation
{% else %}
{{ value|trans({},'messages')}}
{% endif %}
</div>
{% endblock %}
\ No newline at end of file
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment