2020-10-05 23:46:47 +02:00
|
|
|
<?php
|
|
|
|
/**
|
|
|
|
* Invoice Ninja (https://invoiceninja.com).
|
|
|
|
*
|
|
|
|
* @link https://github.com/invoiceninja/invoiceninja source repository
|
|
|
|
*
|
2021-01-03 22:54:54 +01:00
|
|
|
* @copyright Copyright (c) 2021. Invoice Ninja LLC (https://invoiceninja.com)
|
2020-10-05 23:46:47 +02:00
|
|
|
*
|
|
|
|
* @license https://opensource.org/licenses/AAL
|
|
|
|
*/
|
|
|
|
|
|
|
|
namespace App\Services\Recurring;
|
|
|
|
|
|
|
|
use App\Models\Client;
|
|
|
|
use App\Services\AbstractService;
|
|
|
|
use App\Utils\Traits\GeneratesCounter;
|
|
|
|
|
|
|
|
class ApplyNumber extends AbstractService
|
|
|
|
{
|
|
|
|
use GeneratesCounter;
|
|
|
|
|
|
|
|
private $client;
|
|
|
|
|
|
|
|
private $recurring_entity;
|
|
|
|
|
|
|
|
public function __construct(Client $client, $recurring_entity)
|
|
|
|
{
|
|
|
|
$this->client = $client;
|
|
|
|
|
|
|
|
$this->recurring_entity = $recurring_entity;
|
|
|
|
}
|
|
|
|
|
2020-10-06 06:11:48 +02:00
|
|
|
/* Recurring numbers are set when saved */
|
2020-10-05 23:46:47 +02:00
|
|
|
public function run()
|
|
|
|
{
|
|
|
|
if ($this->recurring_entity->number != '') {
|
|
|
|
return $this->recurring_entity;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2020-10-06 06:11:48 +02:00
|
|
|
$this->recurring_entity->number = $this->getNextRecurringInvoiceNumber($this->client);
|
|
|
|
|
|
|
|
|
|
|
|
// switch ($this->client->getSetting('counter_number_applied')) {
|
|
|
|
// case 'when_saved':
|
|
|
|
// $this->recurring_entity->number = $this->getNextRecurringInvoiceNumber($this->client);
|
|
|
|
// break;
|
|
|
|
// case 'when_sent':
|
|
|
|
// break;
|
|
|
|
|
|
|
|
// default:
|
|
|
|
// $this->recurring_entity->number = $this->getNextRecurringInvoiceNumber($this->client);
|
|
|
|
// break;
|
|
|
|
// }
|
2020-10-05 23:46:47 +02:00
|
|
|
|
|
|
|
return $this->recurring_entity;
|
|
|
|
}
|
|
|
|
}
|