Commit e0a2d79a by Julien Jorry

Fix : Groupe's balance in admin interface is always null

parent 99e59a04
...@@ -163,7 +163,7 @@ class GroupeAdmin extends AbstractAdmin ...@@ -163,7 +163,7 @@ class GroupeAdmin extends AbstractAdmin
->addIdentifier('name', null, ['label' => 'Nom du groupe']) ->addIdentifier('name', null, ['label' => 'Nom du groupe'])
->add('gestionnaires', null, ['label' => 'Gestionnaires']) ->add('gestionnaires', null, ['label' => 'Gestionnaires'])
->add('content', 'html', ['truncate' => ['length' => 80], 'label' => 'Description']) ->add('content', 'html', ['truncate' => ['length' => 80], 'label' => 'Description'])
->add('compte', null, ['label' => 'Solde']) ->add('balance', null, ['label' => 'Solde', 'template' => '@kohinos/block/balance.html.twig', 'currency' => 'mlc'])
->add( ->add(
'getPrestatairesCount', 'getPrestatairesCount',
null, null,
......
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