1
0
mirror of https://github.com/invoiceninja/invoiceninja.git synced 2024-09-21 17:01:33 +02:00
invoiceninja/app/Services/Invoice/HandleReversal.php

92 lines
2.9 KiB
PHP
Raw Normal View History

<?php
/**
* Invoice Ninja (https://invoiceninja.com).
*
* @link https://github.com/invoiceninja/invoiceninja source repository
*
2023-01-28 23:21:40 +01:00
* @copyright Copyright (c) 2023. Invoice Ninja LLC (https://invoiceninja.com)
*
2021-06-16 08:58:16 +02:00
* @license https://www.elastic.co/licensing/elastic-license
*/
namespace App\Services\Invoice;
use App\Events\Invoice\InvoiceWasReversed;
use App\Models\Invoice;
use App\Models\Payment;
use App\Models\Paymentable;
use App\Services\AbstractService;
2020-07-08 14:02:16 +02:00
use App\Utils\Ninja;
use App\Utils\Traits\GeneratesCounter;
class HandleReversal extends AbstractService
{
use GeneratesCounter;
2023-06-03 14:49:48 +02:00
public function __construct(private Invoice $invoice)
{
}
public function run()
{
/* Check again!! */
if (! $this->invoice->invoiceReversable($this->invoice)) {
return $this->invoice;
}
/* If the invoice has been cancelled - we need to unwind the cancellation before reversing*/
if ($this->invoice->status_id == Invoice::STATUS_CANCELLED) {
2020-06-15 08:06:32 +02:00
$this->invoice = $this->invoice->service()->reverseCancellation()->save();
}
$balance_remaining = $this->invoice->balance;
$total_paid = $this->invoice->amount - $this->invoice->balance;
/*Adjust payment applied and the paymentables to the correct amount */
2023-08-06 09:35:19 +02:00
$paymentables = Paymentable::query()->wherePaymentableType('invoices')
->wherePaymentableId($this->invoice->id)
->get();
$paymentables->each(function ($paymentable) use ($total_paid) {
2021-11-06 07:07:00 +01:00
//new concept - when reversing, we unwind the payments
2021-11-11 05:01:24 +01:00
$payment = Payment::withTrashed()->find($paymentable->payment_id);
2021-01-24 10:08:57 +01:00
$reversable_amount = $paymentable->amount - $paymentable->refunded;
$total_paid -= $reversable_amount;
2021-11-06 07:07:00 +01:00
$payment->applied -= $reversable_amount;
$payment->save();
$paymentable->amount = $paymentable->refunded;
$paymentable->save();
});
/* Generate a credit for the $total_paid amount */
$notes = 'Credit for reversal of '.$this->invoice->number;
/* Set invoice balance to 0 */
if ($this->invoice->balance != 0) {
$this->invoice->ledger()->updateInvoiceBalance($balance_remaining * -1, $notes)->save();
}
$this->invoice->balance = 0;
2021-01-24 10:08:57 +01:00
$this->invoice->paid_to_date = 0;
/* Set invoice status to reversed... somehow*/
$this->invoice->service()->setStatus(Invoice::STATUS_REVERSED)->save();
/* Reduce client.paid_to_date by $total_paid amount */
/* Reduce the client balance by $balance_remaining */
$this->invoice->client->service()
->updateBalance($balance_remaining * -1)
->save();
2020-07-08 14:02:16 +02:00
event(new InvoiceWasReversed($this->invoice, $this->invoice->company, Ninja::eventVars()));
return $this->invoice;
2023-04-26 14:31:53 +02:00
}
}