Commit ae9b905c by Eric Estrayer

Correction pour que les champs visibles à l'écran soient exportés :…

Correction pour que les champs visibles à l'écran soient exportés : https://redmine.cooperatic.fr/issues/62
parent 0d403933
......@@ -195,4 +195,18 @@ class CotisationAdmin extends AbstractAdmin
])
;
}
//Surcharge pour que tous les champs visibles à l'écran soient présent dans l'export
public function getExportFields()
{
return [
'Année' => 'cotisationInfos.annee',
'Montant' => 'montant',
'Moyen de règlement' => 'moyen',
'Créer le' => 'cotisationInfos.debut',
'Expire le' => 'cotisationInfos.fin',
'Reçu ? (1=oui)' => 'cotisationInfos.recu',
'Opérateur' => 'operateurAndRole'
];
}
}
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