1
0
mirror of https://github.com/invoiceninja/invoiceninja.git synced 2024-11-10 21:22:58 +01:00
invoiceninja/app/Repositories/PaymentRepository.php
David Bomba ff7b62de51
Fixes for missing company object in job classes. (#3179)
* Fixes for missing company object in events

* Cleanup client balancing code

* Fixes for client balance

* Fixes for missing company variable
2019-12-29 17:28:57 +11:00

78 lines
2.1 KiB
PHP

<?php
/**
* 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
*/
namespace App\Repositories;
use App\Events\Payment\PaymentWasCreated;
use App\Jobs\Company\UpdateCompanyLedgerWithPayment;
use App\Jobs\Invoice\UpdateInvoicePayment;
use App\Jobs\Invoice\ApplyInvoicePayment;
use App\Jobs\Invoice\ApplyClientPayment;
use App\Models\Invoice;
use App\Models\Payment;
use Illuminate\Http\Request;
/**
* PaymentRepository
*/
class PaymentRepository extends BaseRepository
{
public function getClassName()
{
return Payment::class;
}
/**
* Saves
* @param Request $request [description]
* @param Payment $payment [description]
* @return [type] [description]
*/
public function save(Request $request, Payment $payment) : ?Payment
{
//todo this save() only works for new payments... will fail if a Payment is updated and saved through here.
$payment->fill($request->input());
$payment->save();
if($request->input('invoices'))
{
$invoices = Invoice::whereIn('id', array_column($request->input('invoices'),'id'))->company()->get();
$payment->invoices()->saveMany($invoices);
foreach($request->input('invoices') as $paid_invoice)
{
$invoice = Invoice::whereId($paid_invoice['id'])->company()->first();
if($invoice)
ApplyInvoicePayment::dispatchNow($invoice, $payment, $paid_invoice['amount'], $invoice->company);
}
}
else {
//paid is made, but not to any invoice, therefore we are applying the payment to the clients credit
ApplyClientPayment::dispatchNow($payment, $payment->company);
}
event(new PaymentWasCreated($payment, $payment->company));
//UpdateInvoicePayment::dispatchNow($payment);
return $payment->fresh();
}
}