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

53 lines
1.2 KiB
PHP
Raw Normal View History

<?php
2020-07-01 03:06:40 +02:00
/**
* Invoice Ninja (https://invoiceninja.com).
2020-07-01 03:06:40 +02:00
*
* @link https://github.com/invoiceninja/invoiceninja source repository
*
* @copyright Copyright (c) 2020. Invoice Ninja LLC (https://invoiceninja.com)
*
* @license https://opensource.org/licenses/AAL
*/
namespace App\Services\Credit;
use App\Events\Payment\PaymentWasCreated;
use App\Factory\PaymentFactory;
use App\Jobs\Customer\UpdateCustomerBalance;
use App\Jobs\Customer\UpdateCustomerPaidToDate;
use App\Models\Client;
use App\Models\Credit;
use App\Models\Invoice;
use App\Models\Payment;
use App\Services\AbstractService;
use App\Services\Customer\CustomerService;
use App\Services\Payment\PaymentService;
use App\Utils\Traits\GeneratesCounter;
class ApplyNumber extends AbstractService
{
use GeneratesCounter;
2020-02-18 21:56:21 +01:00
private $client;
2020-02-18 21:56:21 +01:00
private $credit;
public function __construct(Client $client, Credit $credit)
{
$this->client = $client;
2020-02-18 21:56:21 +01:00
$this->credit = $credit;
}
2020-02-18 21:56:21 +01:00
public function run()
{
2020-02-18 21:56:21 +01:00
if ($this->credit->number != '') {
return $this->credit;
}
2020-02-18 21:56:21 +01:00
$this->credit->number = $this->getNextCreditNumber($this->client);
2020-02-18 21:56:21 +01:00
return $this->credit;
}
}