1
0
mirror of https://github.com/invoiceninja/invoiceninja.git synced 2024-11-06 03:02:34 +01:00
invoiceninja/app/Services/Credit/ApplyNumber.php

45 lines
960 B
PHP
Raw Normal View History

<?php
namespace App\Services\Credit;
use App\Models\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\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;
}
}