1
0
mirror of https://github.com/invoiceninja/invoiceninja.git synced 2024-09-21 00:41:34 +02:00
invoiceninja/app/Repositories/InvoiceRepository.php

91 lines
2.3 KiB
PHP
Raw Normal View History

2019-04-04 01:17:15 +02:00
<?php
2019-05-11 05:32:07 +02:00
/**
* Invoice Ninja (https://invoiceninja.com)
*
* @link https://github.com/invoiceninja/invoiceninja source repository
*
* @copyright Copyright (c) 2019. Invoice Ninja LLC (https://invoiceninja.com)
*
* @license https://opensource.org/licenses/AAL
*/
2019-04-04 01:17:15 +02:00
namespace App\Repositories;
2019-05-15 07:03:18 +02:00
use App\Events\Invoice\InvoiceWasCreated;
use App\Events\Invoice\InvoiceWasUpdated;
use App\Helpers\Invoice\InvoiceCalc;
2019-05-15 06:47:07 +02:00
use App\Jobs\Company\UpdateCompanyLedgerWithInvoice;
2019-04-04 01:17:15 +02:00
use App\Models\Invoice;
use Illuminate\Http\Request;
/**
* InvoiceRepository
2019-04-04 01:17:15 +02:00
*/
class InvoiceRepository extends BaseRepository
{
2019-05-09 00:47:38 +02:00
/**
* Gets the class name.
*
2019-05-10 08:08:33 +02:00
* @return string The class name.
2019-05-09 00:47:38 +02:00
*/
2019-04-04 01:17:15 +02:00
public function getClassName()
{
return Invoice::class;
}
2019-05-09 00:47:38 +02:00
/**
* Saves the invoices
*
* @param array. $data The invoice data
* @param InvoiceCalc|\App\Models\Invoice $invoice The invoice
*
* @return Invoice|InvoiceCalc|\App\Models\Invoice|null Returns the invoice object
*/
public function save($data, Invoice $invoice) : ?Invoice
2019-04-04 01:17:15 +02:00
{
2019-05-15 07:03:18 +02:00
2019-05-15 06:47:07 +02:00
/* Always carry forward the initial invoice amount this is important for tracking client balance changes later......*/
$starting_amount = $invoice->amount;
2019-05-09 07:29:31 +02:00
2019-05-06 07:34:59 +02:00
$invoice->fill($data);
2019-04-16 07:28:30 +02:00
2019-04-04 01:17:15 +02:00
$invoice->save();
2019-04-24 12:01:40 +02:00
$invoice_calc = new InvoiceCalc($invoice, $invoice->settings);
2019-04-16 07:28:30 +02:00
$invoice = $invoice_calc->build()->getInvoice();
2019-05-09 07:29:31 +02:00
$invoice->save();
2019-05-15 06:47:07 +02:00
$finished_amount = $invoice->amount;
if($finished_amount != $starting_amount)
2019-05-16 00:26:21 +02:00
UpdateCompanyLedgerWithInvoice::dispatchNow($invoice, ($finished_amount - $starting_amount));
2019-05-15 07:03:18 +02:00
2019-04-04 01:17:15 +02:00
return $invoice;
2019-05-09 23:50:21 +02:00
2019-04-04 01:17:15 +02:00
}
2019-05-09 00:47:38 +02:00
/**
* Mark the invoice as sent.
*
* @param \App\Models\Invoice $invoice The invoice
*
* @return Invoice|\App\Models\Invoice|null Return the invoice object
*/
public function markSent(Invoice $invoice) : ?Invoice
{
2019-05-13 08:18:46 +02:00
/* Return immediately if status is not draft*/
if($invoice->status_id != Invoice::STATUS_DRAFT)
2019-05-09 23:50:21 +02:00
return $invoice;
2019-05-09 00:47:38 +02:00
$invoice->status_id = Invoice::STATUS_SENT;
2019-05-10 08:08:33 +02:00
2019-05-09 00:47:38 +02:00
$invoice->save();
return $invoice;
}
2019-04-04 01:17:15 +02:00
}