flef / Incipio

ERP - Incipio Administration Tool for Junior-Entreprise
http://incipio.fr
GNU Affero General Public License v3.0
3 stars 28 forks source link

Indicateur mise en place de la structure #27

Closed flef closed 11 years ago

flef commented 11 years ago

Mise en place d'un template de chargement ajax des indicateurs

flef commented 11 years ago

Structure :

Référencement d'un nouvel indicateur :

$chiffreAffaires = new Indicateur();
        $chiffreAffaires->setTitre('Evolution du Chiffre d\'Affaires')
                        ->setMethode('getCA');

        $indicateursSuivi[] = $chiffreAffaires;

Ici indicateur Evolution du chiffre d'éffaires créé.

     /**
     * @Secure(roles="ROLE_CA")
     */    
    public function getCA()
    {
        //...

        $ob->chart->renderTo('getMachin');  // The #id of the div where to render the chart

        // ...

        return $this->render('mgateStatBundle:Indicateurs:indicateur.html.twig', array(    
            'chart' => $ob
        ));
    }

Voilà...