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

78 lines
2.1 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;
2020-08-12 03:45:40 +02:00
use App\Events\Invoice\InvoiceWasUpdated;
2020-07-23 05:55:11 +02:00
use App\Models\Client;
use App\Models\Invoice;
use App\Services\AbstractService;
2020-07-08 14:02:16 +02:00
use App\Utils\Ninja;
class MarkSent extends AbstractService
{
2020-07-23 05:55:11 +02:00
public $client;
2020-07-23 05:55:11 +02:00
public $invoice;
2020-07-23 05:55:11 +02:00
public function __construct(Client $client, Invoice $invoice)
{
$this->client = $client;
$this->invoice = $invoice;
}
2022-12-08 01:17:18 +01:00
public function run($fire_webhook = false)
{
/* Return immediately if status is not draft or invoice has been deleted */
if ($this->invoice && ($this->invoice->fresh()->status_id != Invoice::STATUS_DRAFT || $this->invoice->is_deleted)) {
return $this->invoice;
}
2021-11-10 06:41:33 +01:00
$adjustment = $this->invoice->amount;
/*Set status*/
$this->invoice
->service()
->setStatus(Invoice::STATUS_SENT)
2021-11-10 06:41:33 +01:00
->updateBalance($adjustment, true)
->save();
/*Update ledger*/
$this->invoice
->ledger()
2021-11-10 06:41:33 +01:00
->updateInvoiceBalance($adjustment, "Invoice {$this->invoice->number} marked as sent.");
/* Perform additional actions on invoice */
$this->invoice
->service()
->applyNumber()
->setDueDate()
->touchPdf()
2021-11-10 06:41:33 +01:00
->setReminder()
->save();
2022-03-29 10:57:14 +02:00
/*Adjust client balance*/
2022-09-05 09:18:08 +02:00
$this->invoice->client->service()->updateBalance($adjustment)->save();
2022-03-29 10:57:14 +02:00
2021-11-10 06:41:33 +01:00
$this->invoice->markInvitationsSent();
event(new InvoiceWasUpdated($this->invoice, $this->invoice->company, Ninja::eventVars(auth()->user() ? auth()->user()->id : null)));
2022-12-08 01:17:18 +01:00
if($fire_webhook)
event('eloquent.updated: App\Models\Invoice', $this->invoice);
2020-06-06 03:07:31 +02:00
return $this->invoice->fresh();
}
}