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

69 lines
1.7 KiB
PHP
Raw Normal View History

2020-10-05 23:46:47 +02:00
<?php
/**
* Invoice Ninja (https://invoiceninja.com).
*
* @link https://github.com/invoiceninja/invoiceninja source repository
*
2022-04-27 05:20:41 +02:00
* @copyright Copyright (c) 2022. 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;
use Illuminate\Database\QueryException;
2020-10-05 23:46:47 +02:00
class ApplyNumber extends AbstractService
{
use GeneratesCounter;
private $client;
private $recurring_entity;
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()
{
if ($this->recurring_entity->number != '') {
2020-10-05 23:46:47 +02:00
return $this->recurring_entity;
}
2020-10-05 23:46:47 +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;
}
private function trySaving()
{
$x = 1;
do {
try {
$this->recurring_entity->number = $this->getNextRecurringInvoiceNumber($this->client, $this->recurring_entity);
$this->recurring_entity->saveQuietly();
$this->completed = false;
} catch (QueryException $e) {
$x++;
if ($x > 10) {
$this->completed = false;
}
}
} while ($this->completed);
}
2020-10-05 23:46:47 +02:00
}