diff --git a/modules/interventi/actions.php b/modules/interventi/actions.php index 02cb7d8aa..c9b72950a 100644 --- a/modules/interventi/actions.php +++ b/modules/interventi/actions.php @@ -120,6 +120,7 @@ switch (post('op')) { $mail = Mail::build(auth()->getUser(), $template, $intervento->id); $mail->addReceiver($tecnico['email']); $mail->save(); + flash()->info(tr('Notifica al tecnico aggiunta correttamente.')); } } } @@ -143,6 +144,7 @@ switch (post('op')) { $mail = Mail::build(auth()->getUser(), $template, $intervento->id); $mail->addReceiver($tecnico['email']); $mail->save(); + flash()->info(tr('Notifica al tecnico aggiunta correttamente.')); } } } @@ -331,6 +333,7 @@ switch (post('op')) { $mail = Mail::build(auth()->getUser(), $template, $intervento->id); $mail->addReceiver($tecnico['email']); $mail->save(); + flash()->info(tr('Notifica al tecnico aggiunta correttamente.')); } } } @@ -785,8 +788,11 @@ switch (post('op')) { $mail = Mail::build(auth()->getUser(), $template, $id_record); $mail->addReceiver($mail_tecnico['email']); $mail->save(); + flash()->info(tr('Notifica al tecnico aggiunta correttamente.')); } } + + } } } else { @@ -960,6 +966,7 @@ switch (post('op')) { $mail = Mail::build(auth()->getUser(), $template, $id_record); $mail->addReceiver($tecnico['email']); $mail->save(); + flash()->info(tr('Notifica al tecnico aggiunta correttamente.')); } } } diff --git a/modules/interventi/modutil.php b/modules/interventi/modutil.php index 67d81b02c..b526b59fd 100755 --- a/modules/interventi/modutil.php +++ b/modules/interventi/modutil.php @@ -113,6 +113,7 @@ if (!function_exists('add_tecnico')) { $mail = Mail::build(auth()->getUser(), $template, $id_intervento); $mail->addReceiver($anagrafica['email']); $mail->save(); + flash()->info(tr('Notifica al tecnico aggiunta correttamente.')); } } }