2020-10-05 23:46:47 +02:00
|
|
|
<?php
|
|
|
|
/**
|
|
|
|
* Invoice Ninja (https://invoiceninja.com).
|
|
|
|
*
|
|
|
|
* @link https://github.com/invoiceninja/invoiceninja source repository
|
|
|
|
*
|
2023-01-28 23:21:40 +01:00
|
|
|
* @copyright Copyright (c) 2023. Invoice Ninja LLC (https://invoiceninja.com)
|
2020-10-05 23:46:47 +02:00
|
|
|
*
|
2021-06-16 08:58:16 +02:00
|
|
|
* @license https://www.elastic.co/licensing/elastic-license
|
2020-10-05 23:46:47 +02:00
|
|
|
*/
|
|
|
|
|
|
|
|
namespace App\Services\Recurring;
|
|
|
|
|
|
|
|
use App\Models\Client;
|
|
|
|
use App\Services\AbstractService;
|
|
|
|
use App\Utils\Traits\GeneratesCounter;
|
2022-04-07 09:40:59 +02:00
|
|
|
use Illuminate\Database\QueryException;
|
2020-10-05 23:46:47 +02:00
|
|
|
|
|
|
|
class ApplyNumber extends AbstractService
|
|
|
|
{
|
|
|
|
use GeneratesCounter;
|
|
|
|
|
|
|
|
private $client;
|
|
|
|
|
|
|
|
private $recurring_entity;
|
|
|
|
|
2022-04-07 09:40:59 +02:00
|
|
|
private bool $completed = true;
|
|
|
|
|
2020-10-05 23:46:47 +02:00
|
|
|
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()
|
|
|
|
{
|
2022-06-21 11:57:17 +02:00
|
|
|
if ($this->recurring_entity->number != '') {
|
2020-10-05 23:46:47 +02:00
|
|
|
return $this->recurring_entity;
|
2022-06-21 11:57:17 +02:00
|
|
|
}
|
2020-10-05 23:46:47 +02:00
|
|
|
|
2022-04-07 09:40:59 +02:00
|
|
|
$this->trySaving();
|
|
|
|
//$this->recurring_entity->number = $this->getNextRecurringInvoiceNumber($this->client, $this->recurring_entity);
|
2020-10-06 06:11:48 +02:00
|
|
|
|
2020-10-05 23:46:47 +02:00
|
|
|
return $this->recurring_entity;
|
|
|
|
}
|
2022-04-07 09:40:59 +02:00
|
|
|
|
|
|
|
private function trySaving()
|
|
|
|
{
|
2022-06-21 11:57:17 +02:00
|
|
|
$x = 1;
|
2022-04-07 09:40:59 +02:00
|
|
|
|
2022-06-21 11:57:17 +02:00
|
|
|
do {
|
|
|
|
try {
|
2022-04-07 09:40:59 +02:00
|
|
|
$this->recurring_entity->number = $this->getNextRecurringInvoiceNumber($this->client, $this->recurring_entity);
|
|
|
|
$this->recurring_entity->saveQuietly();
|
|
|
|
|
|
|
|
$this->completed = false;
|
2022-06-21 11:57:17 +02:00
|
|
|
} catch (QueryException $e) {
|
2022-04-07 09:40:59 +02:00
|
|
|
$x++;
|
|
|
|
|
2022-06-21 11:57:17 +02:00
|
|
|
if ($x > 10) {
|
2022-04-07 09:40:59 +02:00
|
|
|
$this->completed = false;
|
2022-06-21 11:57:17 +02:00
|
|
|
}
|
2022-04-07 09:40:59 +02:00
|
|
|
}
|
2022-06-21 11:57:17 +02:00
|
|
|
} while ($this->completed);
|
2022-04-07 09:40:59 +02:00
|
|
|
}
|
2020-10-05 23:46:47 +02:00
|
|
|
}
|