mirror of
https://github.com/invoiceninja/invoiceninja.git
synced 2025-07-09 03:14:30 -04:00
Fixes for payment failure mailer
This commit is contained in:
parent
0caba1fdf6
commit
ca37cd268e
@ -79,7 +79,8 @@ class PaymentFailedMailer implements ShouldQueue
|
|||||||
$invoice = false;
|
$invoice = false;
|
||||||
|
|
||||||
if ($this->payment_hash) {
|
if ($this->payment_hash) {
|
||||||
$amount = array_sum(array_column($this->payment_hash->invoices(), 'amount')) + $this->payment_hash->fee_total;
|
// $amount = array_sum(array_column($this->payment_hash->invoices(), 'amount')) + $this->payment_hash->fee_total;
|
||||||
|
$amount =$this->payment_hash?->amount_with_fee() ?: 0;
|
||||||
$invoice = Invoice::whereIn('id', $this->transformKeys(array_column($this->payment_hash->invoices(), 'invoice_id')))->withTrashed()->first();
|
$invoice = Invoice::whereIn('id', $this->transformKeys(array_column($this->payment_hash->invoices(), 'invoice_id')))->withTrashed()->first();
|
||||||
}
|
}
|
||||||
|
|
||||||
|
Loading…
x
Reference in New Issue
Block a user