Commit 40de98055bb1a50f5a3d87a804d5eb3ab93702cd
1 parent
4846c8c5
Exists in
master
and in
3 other branches
MATERIEL - delete - email plus clair lors de la suppression d'un matériel
Showing
1 changed file
with
6 additions
and
1 deletions
Show diff stats
src/Controller/AppController.php
... | ... | @@ -285,7 +285,12 @@ class AppController extends Controller { |
285 | 285 | case 'delete' : |
286 | 286 | $subject = "Suppression d'un matériel"; |
287 | 287 | $msg = "$acteur a supprimé le matériel \"$nom_materiel\"."; |
288 | -// if ($materiel->description != "") $msg .= "\n\nDescription :\n\n". $materiel->description; | |
288 | + | |
289 | + if ($materiel-> sur_categorie_id != "") $msg .= "\n\nDomaine : ". $materiel->description; | |
290 | + if ($materiel-> categorie_id != "") $msg .= "\n\nCatégorie : ". $materiel->description; | |
291 | + if ($materiel-> sous_categorie_id != "") $msg .= "\n\nSous-catégorie : ". $materiel->description; | |
292 | + if ($materiel->description != "") $msg .= "\n\nDescription :\n\n". $materiel->description; | |
293 | + | |
289 | 294 | break; |
290 | 295 | case 'statusValidated' : |
291 | 296 | $subject = "Validation d'un matériel"; | ... | ... |