FluxAdmin.php 4.17 KB
Newer Older
1 2 3 4 5 6 7 8 9 10 11 12 13
<?php

namespace App\Admin;

use App\Entity\User;
use Sonata\AdminBundle\Admin\AbstractAdmin;
use Sonata\AdminBundle\Datagrid\DatagridMapper;
use Sonata\AdminBundle\Datagrid\ListMapper;
use Sonata\AdminBundle\Form\FormMapper;
use Sonata\AdminBundle\Form\Type\Filter\ChoiceType;
use Sonata\AdminBundle\Route\RouteCollection;
use Sonata\AdminBundle\Show\ShowMapper;
use Symfony\Component\Form\Extension\Core\Type\ChoiceType as SChoiceType;
14
use Symfony\Component\Security\Core\Security;
15
use Symfony\Component\Translation\TranslatorInterface;
16

17 18 19 20 21 22
/**
 * Administration des Flux
 *
 * LOCO : Outil de gestion de Monnaie Locale Complémentaire
 * @author Julien Jorry <julien.jorry@gmail.com>
 */
23 24
class FluxAdmin extends AbstractAdmin
{
25
    protected $translator;
26
    protected $security;
27 28 29 30 31
    protected $datagridValues = [
        '_sort_order' => 'DESC',
        '_sort_by' => 'createdAt',
    ];

32 33 34 35 36
    public function setTranslator(TranslatorInterface $translator)
    {
        $this->translator = $translator;
    }

37
    public function setSecurity(Security $security)
38
    {
39
        $this->security = $security;
40 41
    }

42 43 44 45 46 47 48 49 50 51 52 53 54 55 56
    /**
    * {@inheritdoc}
    */
    protected function configureRoutes(RouteCollection $collection)
    {
        $collection->clearExcept('list');
    }

    /**
    * {@inheritdoc}
    */
    protected function configureDatagridFilters(DatagridMapper $datagridMapper): void
    {
        $datagridMapper
            ->add('transfert_or_transaction', 'doctrine_orm_callback', array(
57
                'label' => "Type",
58 59 60 61 62 63 64 65 66 67 68 69 70
                'callback' => function ($queryBuilder, $alias, $field, $value) {
                    if (!$value['value']) {
                        return;
                    }
                    $queryBuilder
                        ->where($alias.".parenttype = :type")
                        ->setParameter('type', $value['value']);
                    return true;
                },
                'advanced_filter' => false,
                'show_filter' => true,
                'field_type' => SChoiceType::class,
                'field_options' => array(
71
                    'choices' => array('Transactions' => 'transaction', 'Transferts' => 'transfert', 'Cotisations' => 'cotisation'),
72 73 74 75 76
                    'placeholder' => 'Indifférent',
                    'expanded' => true,
                    'multiple' => false
                )
            ))
77 78 79 80 81
            ->add('type', null, array(
                'label' => 'Type plus précis',
                'advanced_filter' => false,
                'show_filter' => true
            ))
82 83 84 85 86 87 88 89 90 91 92
            ->add('operateur', null, array(
                'label' => 'Operateur',
                'advanced_filter' => false,
                'show_filter' => true
            ))
        ;
    }

    public function getTemplate($name)
    {
        if ($name == 'list') {
93
            return 'block/base_list_with_total.html.twig';
94 95 96 97 98
        }

        return parent::getTemplate($name);
    }

99 100
    public function getTotalLabel()
    {
101
        return $this->translator->trans('Total des flux :');
102 103 104
    }

    public function getTotal()
105 106 107 108
    {
        $datagrid = $this->getDatagrid();
        $datagrid->buildPager();

109
        $query = clone $datagrid->getQuery();
110 111 112 113 114 115 116
        $query
            ->select('SUM( ' . $query->getRootAlias() . '.montant) as total')
            ->setFirstResult(null)
            ->setMaxResults(null);

        $result = $query->execute(array(), \Doctrine\ORM\Query::HYDRATE_SINGLE_SCALAR);

117
        return $result;
118 119 120 121 122 123 124 125 126 127
    }

    /**
    * {@inheritdoc}
    */
    protected function configureListFields(ListMapper $listMapper)
    {
        unset($this->listModes['mosaic']);
        $listMapper
            ->addIdentifier('createdAt', null, array('label' => 'Date'))
128
            ->addIdentifier('type', null, array('label' => 'Type'))
129
            ->addIdentifier('operateur', User::class, array('label' => 'Operateur'))
130
            ->addIdentifier('expediteur', null, array('label' => 'Expediteur'))
131 132 133 134 135 136
            ->addIdentifier('destinataire', null, array('label' => 'Destinataire'))
            ->addIdentifier('montant', null, array('label' => 'Montant'))
            ->addIdentifier('reference', null, array('label' => 'Reference'))
        ;
    }
}