Ajout champ note à la fiche client

This commit is contained in:
Jean-Christophe Engel 2025-03-22 18:21:00 +01:00
parent 4ee3f65d0a
commit 950a6b8b2c
8 changed files with 86 additions and 35 deletions

View file

@ -17,7 +17,8 @@ class Client
'ville',
'siret',
'telephone',
'email'
'email',
'note'
];
private $config = [
@ -136,6 +137,9 @@ class Client
'email' => [
'label' => 'E-Mail',
],
'note' => [
'label' => 'Note',
],
'nb_documents' => [
'label' => 'Nombre de documents',
'select' => '(SELECT COUNT(*) FROM plugin_facturation_factures WHERE receveur_id = c.id)',