Commit 40de98055bb1a50f5a3d87a804d5eb3ab93702cd

Authored by Thibaud Ajas
1 parent 4846c8c5

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,7 +285,12 @@ class AppController extends Controller {
285 case 'delete' : 285 case 'delete' :
286 $subject = "Suppression d'un matériel"; 286 $subject = "Suppression d'un matériel";
287 $msg = "$acteur a supprimé le matériel \"$nom_materiel\"."; 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 break; 294 break;
290 case 'statusValidated' : 295 case 'statusValidated' :
291 $subject = "Validation d'un matériel"; 296 $subject = "Validation d'un matériel";