mirror of
				https://github.com/invoiceninja/invoiceninja.git
				synced 2025-10-31 03:47:32 -04:00 
			
		
		
		
	
		
			
				
	
	
		
			75 lines
		
	
	
		
			1.5 KiB
		
	
	
	
		
			PHP
		
	
	
	
	
	
			
		
		
	
	
			75 lines
		
	
	
		
			1.5 KiB
		
	
	
	
		
			PHP
		
	
	
	
	
	
| <?php
 | |
| /**
 | |
|  * Payment Ninja (https://paymentninja.com).
 | |
|  *
 | |
|  * @link https://github.com/paymentninja/paymentninja source repository
 | |
|  *
 | |
|  * @copyright Copyright (c) 2022. Payment Ninja LLC (https://paymentninja.com)
 | |
|  *
 | |
|  * @license https://www.elastic.co/licensing/elastic-license
 | |
|  */
 | |
| 
 | |
| namespace App\Services\Payment;
 | |
| 
 | |
| use App\Models\Payment;
 | |
| use App\Services\AbstractService;
 | |
| use App\Utils\Traits\GeneratesCounter;
 | |
| use Illuminate\Database\QueryException;
 | |
| 
 | |
| class ApplyNumber extends AbstractService
 | |
| {
 | |
|     use GeneratesCounter;
 | |
| 
 | |
|     private $payment;
 | |
| 
 | |
|     private bool $completed = true;
 | |
| 
 | |
|     public function __construct(Payment $payment)
 | |
|     {
 | |
|         $this->client = $payment->client;
 | |
| 
 | |
|         $this->payment = $payment;
 | |
|     }
 | |
| 
 | |
|     public function run()
 | |
|     {
 | |
|         if ($this->payment->number != '') {
 | |
|             return $this->payment;
 | |
|         }
 | |
| 
 | |
|         $this->trySaving();
 | |
|         // $this->payment->number = $this->getNextPaymentNumber($this->client, $this->payment);
 | |
| 
 | |
|         return $this->payment;
 | |
|     }
 | |
| 
 | |
|     private function trySaving()
 | |
|     {
 | |
| 
 | |
|         $x=1;
 | |
| 
 | |
|         do{
 | |
| 
 | |
|             try{
 | |
| 
 | |
|                 $this->payment->number = $this->getNextPaymentNumber($this->client, $this->payment);
 | |
|                 $this->payment->saveQuietly();
 | |
| 
 | |
|                 $this->completed = false;
 | |
|                 
 | |
| 
 | |
|             }
 | |
|             catch(QueryException $e){
 | |
| 
 | |
|                 $x++;
 | |
| 
 | |
|                 if($x>10)
 | |
|                     $this->completed = false;
 | |
|             }
 | |
|         
 | |
|         }
 | |
|         while($this->completed);
 | |
| 
 | |
|     }
 | |
| }
 |