diff --git a/src/Controller/AppController.php b/src/Controller/AppController.php index c8ca65f..3ad5e9b 100755 --- a/src/Controller/AppController.php +++ b/src/Controller/AppController.php @@ -285,7 +285,12 @@ class AppController extends Controller { case 'delete' : $subject = "Suppression d'un matériel"; $msg = "$acteur a supprimé le matériel \"$nom_materiel\"."; -// if ($materiel->description != "") $msg .= "\n\nDescription :\n\n". $materiel->description; + + if ($materiel-> sur_categorie_id != "") $msg .= "\n\nDomaine : ". $materiel->description; + if ($materiel-> categorie_id != "") $msg .= "\n\nCatégorie : ". $materiel->description; + if ($materiel-> sous_categorie_id != "") $msg .= "\n\nSous-catégorie : ". $materiel->description; + if ($materiel->description != "") $msg .= "\n\nDescription :\n\n". $materiel->description; + break; case 'statusValidated' : $subject = "Validation d'un matériel"; -- libgit2 0.21.2