1
0
mirror of https://github.com/invoiceninja/invoiceninja.git synced 2024-09-20 16:31:33 +02:00
invoiceninja/app/Services/Invoice/HandleCancellation.php

124 lines
3.8 KiB
PHP
Raw Normal View History

<?php
/**
* Invoice Ninja (https://invoiceninja.com).
*
* @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)
*
2021-06-16 08:58:16 +02:00
* @license https://www.elastic.co/licensing/elastic-license
*/
namespace App\Services\Invoice;
use App\Events\Invoice\InvoiceWasCancelled;
2022-03-10 01:32:04 +01:00
use App\Jobs\Ninja\TransactionLog;
use App\Models\Client;
use App\Models\Invoice;
2022-03-10 01:32:04 +01:00
use App\Models\TransactionEvent;
use App\Services\AbstractService;
2020-07-08 14:02:16 +02:00
use App\Utils\Ninja;
use App\Utils\Traits\GeneratesCounter;
2020-10-28 11:10:49 +01:00
use stdClass;
class HandleCancellation extends AbstractService
{
use GeneratesCounter;
private $invoice;
public function __construct(Invoice $invoice)
{
$this->invoice = $invoice;
}
public function run()
{
/* Check again!! */
if (! $this->invoice->invoiceCancellable($this->invoice)) {
return $this->invoice;
}
$adjustment = $this->invoice->balance * -1;
$this->backupCancellation($adjustment);
//set invoice balance to 0
2021-01-21 05:42:30 +01:00
$this->invoice->ledger()->updateInvoiceBalance($adjustment, "Invoice {$this->invoice->number} cancellation");
$this->invoice->balance = 0;
$this->invoice = $this->invoice->service()->setStatus(Invoice::STATUS_CANCELLED)->save();
//adjust client balance
$this->invoice->client->service()->updateBalance($adjustment)->save();
2022-05-27 01:51:54 +02:00
$this->invoice->fresh();
$this->invoice->service()->workFlow()->save();
event(new InvoiceWasCancelled($this->invoice, $this->invoice->company, Ninja::eventVars(auth()->user() ? auth()->user()->id : null)));
2022-03-10 01:32:04 +01:00
$transaction = [
'invoice' => $this->invoice->transaction_event(),
'payment' => [],
'client' => $this->invoice->client->transaction_event(),
'credit' => [],
'metadata' => [],
];
TransactionLog::dispatch(TransactionEvent::INVOICE_CANCELLED, $transaction, $this->invoice->company->db);
return $this->invoice;
}
public function reverse()
{
2021-01-21 02:33:39 +01:00
/* The stored cancelled object - contains the adjustment and status*/
2020-06-15 01:53:57 +02:00
$cancellation = $this->invoice->backup->cancellation;
2021-01-21 02:33:39 +01:00
/* Will turn the negative cancellation amount to a positive adjustment*/
$adjustment = $cancellation->adjustment * -1;
2021-01-21 05:42:30 +01:00
$this->invoice->ledger()->updateInvoiceBalance($adjustment, "Invoice {$this->invoice->number} reversal");
2022-05-27 01:51:54 +02:00
$this->invoice->fresh();
/* Reverse the invoice status and balance */
$this->invoice->balance += $adjustment;
$this->invoice->status_id = $cancellation->status_id;
$this->invoice->client->service()->updateBalance($adjustment)->save();
/* Pop the cancellation out of the backup*/
$backup = $this->invoice->backup;
unset($backup->cancellation);
$this->invoice->backup = $backup;
2021-10-14 08:54:38 +02:00
$this->invoice->saveQuietly();
2022-05-27 01:51:54 +02:00
$this->invoice->fresh();
return $this->invoice;
}
/**
* Backup the cancellation in case we ever need to reverse it.
*
* @param float $adjustment The amount the balance has been reduced by to cancel the invoice
* @return void
*/
private function backupCancellation($adjustment)
{
if (! is_object($this->invoice->backup)) {
2020-10-28 11:10:49 +01:00
$backup = new stdClass;
$this->invoice->backup = $backup;
}
2020-10-28 11:10:49 +01:00
$cancellation = new stdClass;
$cancellation->adjustment = $adjustment;
$cancellation->status_id = $this->invoice->status_id;
$invoice_backup = $this->invoice->backup;
$invoice_backup->cancellation = $cancellation;
$this->invoice->backup = $invoice_backup;
2021-10-14 08:54:38 +02:00
$this->invoice->saveQuietly();
}
}