mirror of
https://github.com/invoiceninja/invoiceninja.git
synced 2025-06-01 09:54:35 -04:00
38 lines
722 B
PHP
38 lines
722 B
PHP
<?php
|
|
|
|
namespace App\Repositories;
|
|
|
|
use App\Helpers\Invoice\InvoiceCalc;
|
|
use App\Models\Invoice;
|
|
use Illuminate\Http\Request;
|
|
|
|
/**
|
|
* InvoiceRepository
|
|
*/
|
|
class InvoiceRepository extends BaseRepository
|
|
{
|
|
|
|
|
|
public function getClassName()
|
|
{
|
|
return Invoice::class;
|
|
}
|
|
|
|
public function save(Request $request, Invoice $invoice) : ?Invoice
|
|
{
|
|
$invoice->fill($request->input());
|
|
|
|
$invoice->save();
|
|
|
|
|
|
$invoice_calc = new InvoiceCalc($invoice, $invoice->settings);
|
|
|
|
$invoice = $invoice_calc->build()->getInvoice();
|
|
|
|
//fire events here that cascading from the saving of an invoice
|
|
//ie. client balance update...
|
|
|
|
return $invoice;
|
|
}
|
|
|
|
} |