mirror of
https://github.com/snipe/snipe-it.git
synced 2024-11-09 23:24:06 -08:00
One more try on #4001
This commit is contained in:
parent
abc2f7e789
commit
4b9bfc178d
|
@ -94,7 +94,7 @@ class CheckoutNotification extends Notification
|
||||||
'item_tag' => $item->asset_tag,
|
'item_tag' => $item->asset_tag,
|
||||||
'note' => $this->params['note'],
|
'note' => $this->params['note'],
|
||||||
'item_serial' => $item->serial,
|
'item_serial' => $item->serial,
|
||||||
'require_acceptance' => $item->requireAcceptance(),
|
'require_acceptance' => method_exists($item, 'requireAcceptance') ? $item->requireAcceptance() : '',
|
||||||
'log_id' => $this->params['log_id'],
|
'log_id' => $this->params['log_id'],
|
||||||
];
|
];
|
||||||
return (new MailMessage)
|
return (new MailMessage)
|
||||||
|
|
Loading…
Reference in a new issue