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

56 lines
1.1 KiB
PHP
Raw Normal View History

2019-05-03 10:32:30 +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-05-03 10:32:30 +02:00
namespace App\Repositories;
use App\Events\Payment\PaymentWasCreated;
use App\Jobs\Company\UpdateCompanyLedgerWithPayment;
use App\Jobs\Invoice\UpdateInvoicePayment;
use App\Models\Invoice;
2019-05-03 10:32:30 +02:00
use App\Models\Payment;
use Illuminate\Http\Request;
/**
* PaymentRepository
*/
class PaymentRepository extends BaseRepository
{
public function getClassName()
{
return Payment::class;
}
public function save(Request $request, Payment $payment) : ?Payment
{
2019-05-03 10:32:30 +02:00
$payment->fill($request->input());
$payment->save();
2019-05-03 10:32:30 +02:00
if($request->input('invoices'))
{
$invoices = Invoice::whereIn('id', $request->input('invoices'))->get();
$payment->invoices()->saveMany($invoices);
}
event(new PaymentWasCreated($payment));
UpdateInvoicePayment::dispatchNow($payment);
2019-05-03 10:32:30 +02:00
return $payment;
2019-05-03 10:32:30 +02:00
}
}