2020-04-08 12:48:31 +02:00
|
|
|
<?php
|
|
|
|
/**
|
2020-09-06 11:38:10 +02:00
|
|
|
* Invoice Ninja (https://invoiceninja.com).
|
2020-04-08 12:48:31 +02:00
|
|
|
*
|
|
|
|
* @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)
|
2020-04-08 12:48:31 +02:00
|
|
|
*
|
2021-06-16 08:58:16 +02:00
|
|
|
* @license https://www.elastic.co/licensing/elastic-license
|
2020-04-08 12:48:31 +02:00
|
|
|
*/
|
|
|
|
|
|
|
|
namespace App\Services\Invoice;
|
|
|
|
|
2020-04-09 01:35:40 +02:00
|
|
|
use App\Events\Invoice\InvoiceWasReversed;
|
2020-04-08 12:48:31 +02:00
|
|
|
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;
|
2020-04-08 12:48:31 +02:00
|
|
|
use App\Utils\Traits\GeneratesCounter;
|
|
|
|
|
|
|
|
class HandleReversal extends AbstractService
|
|
|
|
{
|
|
|
|
use GeneratesCounter;
|
|
|
|
|
|
|
|
private $invoice;
|
|
|
|
|
|
|
|
public function __construct(Invoice $invoice)
|
2020-04-15 02:30:52 +02:00
|
|
|
{
|
2020-04-08 12:48:31 +02:00
|
|
|
$this->invoice = $invoice;
|
|
|
|
}
|
|
|
|
|
|
|
|
public function run()
|
|
|
|
{
|
|
|
|
/* Check again!! */
|
2022-06-21 11:57:17 +02:00
|
|
|
if (! $this->invoice->invoiceReversable($this->invoice)) {
|
2020-04-08 12:48:31 +02:00
|
|
|
return $this->invoice;
|
2022-06-21 11:57:17 +02:00
|
|
|
}
|
2020-04-08 12:48:31 +02:00
|
|
|
|
2020-07-16 05:54:26 +02:00
|
|
|
/* If the invoice has been cancelled - we need to unwind the cancellation before reversing*/
|
2022-06-21 11:57:17 +02:00
|
|
|
if ($this->invoice->status_id == Invoice::STATUS_CANCELLED) {
|
2020-06-15 08:06:32 +02:00
|
|
|
$this->invoice = $this->invoice->service()->reverseCancellation()->save();
|
2022-06-21 11:57:17 +02:00
|
|
|
}
|
2020-06-15 01:34:18 +02:00
|
|
|
|
2020-04-08 12:48:31 +02:00
|
|
|
$balance_remaining = $this->invoice->balance;
|
|
|
|
|
|
|
|
$total_paid = $this->invoice->amount - $this->invoice->balance;
|
|
|
|
|
|
|
|
/*Adjust payment applied and the paymentables to the correct amount */
|
2020-09-22 05:09:42 +02:00
|
|
|
$paymentables = Paymentable::wherePaymentableType('invoices')
|
2020-04-08 12:48:31 +02:00
|
|
|
->wherePaymentableId($this->invoice->id)
|
|
|
|
->get();
|
|
|
|
|
2020-04-15 02:30:52 +02:00
|
|
|
$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);
|
2022-06-21 11:57:17 +02:00
|
|
|
|
2021-01-24 10:08:57 +01:00
|
|
|
$reversable_amount = $paymentable->amount - $paymentable->refunded;
|
2020-04-08 12:48:31 +02:00
|
|
|
$total_paid -= $reversable_amount;
|
2021-11-06 07:07:00 +01:00
|
|
|
|
|
|
|
$payment->applied -= $reversable_amount;
|
|
|
|
$payment->save();
|
|
|
|
|
2020-04-08 12:48:31 +02:00
|
|
|
$paymentable->amount = $paymentable->refunded;
|
|
|
|
$paymentable->save();
|
|
|
|
});
|
|
|
|
|
|
|
|
/* Generate a credit for the $total_paid amount */
|
2020-09-06 11:38:10 +02:00
|
|
|
$notes = 'Credit for reversal of '.$this->invoice->number;
|
2020-09-22 05:09:42 +02:00
|
|
|
|
2020-04-08 12:48:31 +02:00
|
|
|
/* Set invoice balance to 0 */
|
2020-09-06 11:38:10 +02:00
|
|
|
if ($this->invoice->balance != 0) {
|
|
|
|
$this->invoice->ledger()->updateInvoiceBalance($balance_remaining * -1, $notes)->save();
|
|
|
|
}
|
2020-04-08 12:48:31 +02:00
|
|
|
|
2020-09-06 11:38:10 +02:00
|
|
|
$this->invoice->balance = 0;
|
2021-01-24 10:08:57 +01:00
|
|
|
$this->invoice->paid_to_date = 0;
|
2022-06-21 11:57:17 +02:00
|
|
|
|
2020-04-08 12:48:31 +02:00
|
|
|
/* 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()
|
2020-09-06 11:38:10 +02:00
|
|
|
->updateBalance($balance_remaining * -1)
|
2020-04-08 12:48:31 +02:00
|
|
|
->save();
|
|
|
|
|
2020-07-08 14:02:16 +02:00
|
|
|
event(new InvoiceWasReversed($this->invoice, $this->invoice->company, Ninja::eventVars()));
|
2020-09-06 11:38:10 +02:00
|
|
|
|
2020-04-08 12:48:31 +02:00
|
|
|
return $this->invoice;
|
2023-04-26 14:31:53 +02:00
|
|
|
|
2020-04-08 12:48:31 +02:00
|
|
|
}
|
|
|
|
}
|