mirror of
https://github.com/invoiceninja/invoiceninja.git
synced 2024-11-05 18:52:44 +01:00
update invoice PDF when a payment is applied
This commit is contained in:
parent
2c74b5a3ba
commit
6b45317bf3
@ -12,11 +12,13 @@
|
||||
|
||||
namespace App\Services\Payment;
|
||||
|
||||
use App\Events\Invoice\InvoiceWasUpdated;
|
||||
use App\Helpers\Email\PaymentEmail;
|
||||
use App\Jobs\Payment\EmailPayment;
|
||||
use App\Jobs\Util\SystemLogger;
|
||||
use App\Models\Invoice;
|
||||
use App\Models\SystemLog;
|
||||
use App\Utils\Ninja;
|
||||
use App\Utils\Traits\MakesHash;
|
||||
|
||||
class UpdateInvoicePayment
|
||||
@ -38,7 +40,9 @@ class UpdateInvoicePayment
|
||||
|
||||
public function run()
|
||||
{
|
||||
|
||||
$paid_invoices = $this->payment_hash->invoices();
|
||||
|
||||
$invoices = Invoice::whereIn('id', $this->transformKeys(array_column($paid_invoices, 'invoice_id')))->get();
|
||||
|
||||
collect($paid_invoices)->each(function ($paid_invoice) use($invoices) {
|
||||
@ -71,12 +75,13 @@ class UpdateInvoicePayment
|
||||
$pivot_invoice->pivot->amount = $paid_amount;
|
||||
$pivot_invoice->save();
|
||||
|
||||
|
||||
$invoice->service() //caution what if we amount paid was less than partial - we wipe it!
|
||||
->clearPartial()
|
||||
->updateBalance($paid_amount*-1)
|
||||
->save();
|
||||
|
||||
event(new InvoiceWasUpdated($invoice, $invoice->company, Ninja::eventVars()));
|
||||
|
||||
});
|
||||
|
||||
// } else {
|
||||
|
Loading…
Reference in New Issue
Block a user