1
0
mirror of https://github.com/invoiceninja/invoiceninja.git synced 2024-09-22 01:11:34 +02:00
invoiceninja/app/Services/Payment/UpdateInvoicePayment.php

133 lines
4.3 KiB
PHP
Raw Normal View History

<?php
2020-07-01 03:06:40 +02:00
/**
* Invoice Ninja (https://invoiceninja.com).
2020-07-01 03:06:40 +02:00
*
* @link https://github.com/invoiceninja/invoiceninja source repository
*
2022-04-27 05:20:41 +02:00
* @copyright Copyright (c) 2022. Invoice Ninja LLC (https://invoiceninja.com)
2020-07-01 03:06:40 +02:00
*
2021-06-16 08:58:16 +02:00
* @license https://www.elastic.co/licensing/elastic-license
2020-07-01 03:06:40 +02:00
*/
namespace App\Services\Payment;
use App\Events\Invoice\InvoiceWasUpdated;
2021-04-02 13:44:44 +02:00
use App\Jobs\Invoice\InvoiceWorkflowSettings;
2022-03-10 01:32:04 +01:00
use App\Jobs\Ninja\TransactionLog;
use App\Models\Invoice;
2020-09-19 03:20:14 +02:00
use App\Models\Payment;
use App\Models\PaymentHash;
2022-03-10 01:32:04 +01:00
use App\Models\TransactionEvent;
use App\Utils\Ninja;
use App\Utils\Traits\MakesHash;
class UpdateInvoicePayment
{
use MakesHash;
public $payment;
public $payment_hash;
2020-09-19 03:20:14 +02:00
public function __construct(Payment $payment, PaymentHash $payment_hash)
{
$this->payment = $payment;
$this->payment_hash = $payment_hash;
}
public function run()
{
$paid_invoices = $this->payment_hash->invoices();
2021-06-20 00:14:56 +02:00
$invoices = Invoice::whereIn('id', $this->transformKeys(array_column($paid_invoices, 'invoice_id')))->withTrashed()->get();
2022-03-28 07:36:00 +02:00
$client = $this->payment->client;
2022-03-28 07:36:00 +02:00
if($client->trashed())
$client->restore();
2021-01-06 06:14:20 +01:00
2022-03-28 07:36:00 +02:00
collect($paid_invoices)->each(function ($paid_invoice) use ($invoices, $client) {
2022-03-26 03:58:49 +01:00
2022-03-28 07:36:00 +02:00
$client = $client->fresh();
2022-03-04 23:21:17 +01:00
$invoice = $invoices->first(function ($inv) use ($paid_invoice) {
2020-08-31 06:27:47 +02:00
return $paid_invoice->invoice_id == $inv->hashed_id;
});
2022-03-26 03:58:49 +01:00
if($invoice->trashed())
$invoice->restore();
if ($invoice->id == $this->payment_hash->fee_invoice_id) {
2020-08-31 06:27:47 +02:00
$paid_amount = $paid_invoice->amount + $this->payment_hash->fee_total;
} else {
2020-08-31 06:27:47 +02:00
$paid_amount = $paid_invoice->amount;
}
2020-08-31 06:27:47 +02:00
2022-03-28 07:36:00 +02:00
$client->paid_to_date += $paid_amount;
$client->balance -= $paid_amount;
$client->save();
2021-01-06 06:14:20 +01:00
/* Need to determine here is we have an OVER payment - if YES only apply the max invoice amount */
2021-12-17 12:11:36 +01:00
if($paid_amount > $invoice->partial && $paid_amount > $invoice->balance)
$paid_amount = $invoice->balance;
2021-01-06 06:14:20 +01:00
/*Improve performance here - 26-01-2022 - also change the order of events for invoice first*/
2022-03-28 07:36:00 +02:00
//caution what if we amount paid was less than partial - we wipe it!
2022-04-04 21:23:39 +02:00
$invoice->balance -= $paid_amount;
$invoice->paid_to_date += $paid_amount;
$invoice->save();
2022-03-28 07:36:00 +02:00
$invoice = $invoice->service()
->clearPartial()
2022-04-02 07:13:31 +02:00
// ->updateBalance($paid_amount * -1)
// ->updatePaidToDate($paid_amount)
2022-03-28 07:36:00 +02:00
->updateStatus()
->touchPdf()
->save();
2022-04-02 07:13:31 +02:00
$invoice->service()
->workFlow()
->save();
2021-01-06 06:14:20 +01:00
/* Updates the company ledger */
$this->payment
->ledger()
->updatePaymentBalance($paid_amount * -1);
$pivot_invoice = $this->payment->invoices->first(function ($inv) use ($paid_invoice) {
return $inv->hashed_id == $paid_invoice->invoice_id;
2020-09-01 01:28:37 +02:00
});
/*update paymentable record*/
$pivot_invoice->pivot->amount = $paid_amount;
2020-09-19 03:20:14 +02:00
$pivot_invoice->pivot->save();
$this->payment->applied += $paid_amount;
2022-03-10 01:32:04 +01:00
$transaction = [
2022-03-10 03:05:01 +01:00
'invoice' => $invoice->transaction_event(),
2022-03-10 01:32:04 +01:00
'payment' => $this->payment->transaction_event(),
'client' => $client->transaction_event(),
'credit' => [],
'metadata' => [],
];
2022-03-10 03:05:01 +01:00
TransactionLog::dispatch(TransactionEvent::GATEWAY_PAYMENT_MADE, $transaction, $invoice->company->db);
2022-03-10 01:32:04 +01:00
});
/* Remove the event updater from within the loop to prevent race conditions */
2021-12-17 12:11:36 +01:00
$this->payment->saveQuietly();
$invoices->each(function ($invoice) {
2022-03-04 23:21:17 +01:00
event(new InvoiceWasUpdated($invoice, $invoice->company, Ninja::eventVars(auth()->user() ? auth()->user()->id : null)));
2021-12-17 12:11:36 +01:00
});
2022-03-04 23:21:17 +01:00
return $this->payment->fresh();
}
}