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

80 lines
1.9 KiB
PHP
Raw Normal View History

2022-06-05 05:56:08 +02:00
<?php
2022-06-05 11:41:19 +02:00
/**
* Invoice Ninja (https://invoiceninja.com).
*
* @link https://github.com/invoiceninja/invoiceninja source repository
*
* @copyright Copyright (c) 2022. Invoice Ninja LLC (https://invoiceninja.com)
*
* @license https://www.elastic.co/licensing/elastic-license
*/
2022-06-05 05:56:08 +02:00
namespace App\Services\PurchaseOrder;
2022-06-05 11:41:19 +02:00
use App\Models\Vendor;
2022-06-05 05:56:08 +02:00
use App\Models\PurchaseOrder;
use App\Services\AbstractService;
use App\Utils\Traits\GeneratesCounter;
use Illuminate\Database\QueryException;
class ApplyNumber extends AbstractService
{
use GeneratesCounter;
2022-06-05 11:41:19 +02:00
public Vendor $vendor;
2022-06-05 05:56:08 +02:00
private PurchaseOrder $purchase_order;
private bool $completed = true;
2022-06-05 11:41:19 +02:00
public function __construct(Vendor $vendor, PurchaseOrder $purchase_order)
2022-06-05 05:56:08 +02:00
{
2022-06-05 11:41:19 +02:00
$this->vendor = $vendor;
2022-06-05 05:56:08 +02:00
$this->purchase_order = $purchase_order;
}
public function run()
{
if ($this->purchase_order->number != '') {
return $this->purchase_order;
}
switch ($this->vendor->company->getSetting('counter_number_applied')) {
case 'when_saved':
$this->trySaving();
break;
case 'when_sent':
if ($this->invoice->status_id == PurchaseOrder::STATUS_SENT) {
$this->trySaving();
}
break;
default:
break;
}
2022-06-05 05:56:08 +02:00
return $this->purchase_order;
}
private function trySaving()
{
$x=1;
do{
try{
2022-06-05 11:41:19 +02:00
$this->purchase_order->number = $this->getNextPurchaseOrderNumber($this->purchase_order);
2022-06-05 05:56:08 +02:00
$this->purchase_order->saveQuietly();
$this->completed = false;
}
catch(QueryException $e){
$x++;
if($x>10)
$this->completed = false;
}
}
while($this->completed);
}
}