Merge pull request #14315 from snipe/fixes/rb-3565

Only send notification if the item is assigned to a person
This commit is contained in:
snipe 2024-02-22 12:05:59 +00:00 committed by GitHub
commit eb61f5aa9e
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -1156,6 +1156,9 @@ class ReportsController extends Controller
$logItem = $logItem_res[0]; $logItem = $logItem_res[0];
} }
// Only send notification if assigned
if ($assetItem->assignedTo) {
if (!$assetItem->assignedTo->locale) { if (!$assetItem->assignedTo->locale) {
Notification::locale(Setting::getSettings()->locale)->send( Notification::locale(Setting::getSettings()->locale)->send(
$assetItem->assignedTo, $assetItem->assignedTo,
@ -1167,6 +1170,7 @@ class ReportsController extends Controller
new CheckoutAssetNotification($assetItem, $assetItem->assignedTo, $logItem->user, $acceptance, $logItem->note) new CheckoutAssetNotification($assetItem, $assetItem->assignedTo, $logItem->user, $acceptance, $logItem->note)
); );
} }
}
return redirect()->route('reports/unaccepted_assets')->with('success', trans('admin/reports/general.reminder_sent')); return redirect()->route('reports/unaccepted_assets')->with('success', trans('admin/reports/general.reminder_sent'));
} }