Merge branch 'master' into datagrid-plus-changes
This commit is contained in:
commit
bf953fed22
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
|
|
@ -1,4 +1,4 @@
|
|||
{
|
||||
"/js/admin.js": "/js/admin.js?id=68621909141b010f749f",
|
||||
"/css/admin.css": "/css/admin.css?id=0597ed69210c620608a4"
|
||||
"/js/admin.js": "/js/admin.js?id=1dddbb0d655216b79be5",
|
||||
"/css/admin.css": "/css/admin.css?id=e2f2c3ed8cc1f33c8d60"
|
||||
}
|
||||
|
|
|
|||
|
|
@ -341,6 +341,9 @@ body {
|
|||
font-weight: 200;
|
||||
display: inline-block;
|
||||
color: $black;
|
||||
width: 115px;
|
||||
word-break: break-all;
|
||||
vertical-align: middle;
|
||||
}
|
||||
|
||||
.arrow-icon {
|
||||
|
|
|
|||
|
|
@ -135,7 +135,7 @@ trait Mails
|
|||
public function sendNewShipmentMail($shipment)
|
||||
{
|
||||
$customerLocale = $this->getLocale($shipment);
|
||||
|
||||
|
||||
try {
|
||||
if ($shipment->email_sent) {
|
||||
return;
|
||||
|
|
@ -248,7 +248,15 @@ trait Mails
|
|||
|
||||
app()->setLocale($locale);
|
||||
|
||||
Mail::queue($notification);
|
||||
try {
|
||||
Mail::queue($notification);
|
||||
} catch(\Exception $e) {
|
||||
app()->setLocale($previousLocale);
|
||||
|
||||
\Log::error(
|
||||
'prepareMail' . $e->getMessage()
|
||||
);
|
||||
}
|
||||
|
||||
app()->setLocale($previousLocale);
|
||||
}
|
||||
|
|
|
|||
Loading…
Reference in New Issue