mirror of
				https://github.com/invoiceninja/invoiceninja.git
				synced 2025-11-03 22:27:31 -05:00 
			
		
		
		
	
		
			
				
	
	
		
			91 lines
		
	
	
		
			2.1 KiB
		
	
	
	
		
			PHP
		
	
	
	
	
	
			
		
		
	
	
			91 lines
		
	
	
		
			2.1 KiB
		
	
	
	
		
			PHP
		
	
	
	
	
	
<?php
 | 
						|
/**
 | 
						|
 * Invoice Ninja (https://invoiceninja.com).
 | 
						|
 *
 | 
						|
 * @link https://github.com/invoiceninja/invoiceninja source repository
 | 
						|
 *
 | 
						|
 * @copyright Copyright (c) 2024. Invoice Ninja LLC (https://invoiceninja.com)
 | 
						|
 *
 | 
						|
 * @license https://www.elastic.co/licensing/elastic-license
 | 
						|
 */
 | 
						|
 | 
						|
namespace App\Jobs\Client;
 | 
						|
 | 
						|
use App\DataProviders\USStates;
 | 
						|
use App\Libraries\MultiDB;
 | 
						|
use App\Models\Client;
 | 
						|
use App\Models\Company;
 | 
						|
use App\Utils\Traits\MakesHash;
 | 
						|
use Illuminate\Bus\Queueable;
 | 
						|
use Illuminate\Contracts\Queue\ShouldQueue;
 | 
						|
use Illuminate\Foundation\Bus\Dispatchable;
 | 
						|
use Illuminate\Queue\InteractsWithQueue;
 | 
						|
use Illuminate\Queue\Middleware\WithoutOverlapping;
 | 
						|
use Illuminate\Queue\SerializesModels;
 | 
						|
 | 
						|
class UpdateTaxData implements ShouldQueue
 | 
						|
{
 | 
						|
    use Dispatchable;
 | 
						|
    use InteractsWithQueue;
 | 
						|
    use Queueable;
 | 
						|
    use SerializesModels;
 | 
						|
    use MakesHash;
 | 
						|
 | 
						|
    public $tries = 1;
 | 
						|
 | 
						|
    /**
 | 
						|
     * Create a new job instance.
 | 
						|
     *
 | 
						|
     * @param Client $client
 | 
						|
     * @param Company $company
 | 
						|
     */
 | 
						|
    public function __construct(public Client $client, protected Company $company)
 | 
						|
    {
 | 
						|
    }
 | 
						|
 | 
						|
    /**
 | 
						|
     * Execute the job.
 | 
						|
     *
 | 
						|
     */
 | 
						|
    public function handle()
 | 
						|
    {
 | 
						|
        MultiDB::setDb($this->company->db);
 | 
						|
 | 
						|
        if($this->company->account->isFreeHostedClient() || $this->client->country_id != 840) {
 | 
						|
            return;
 | 
						|
        }
 | 
						|
 | 
						|
        $tax_provider = new \App\Services\Tax\Providers\TaxProvider($this->company, $this->client);
 | 
						|
 | 
						|
        try {
 | 
						|
 | 
						|
            $tax_provider->updateClientTaxData();
 | 
						|
 | 
						|
            if (!$this->client->state && $this->client->postal_code) {
 | 
						|
 | 
						|
                $this->client->update(['state' => USStates::getState($this->client->postal_code)]);
 | 
						|
                // $this->client->saveQuietly();
 | 
						|
 | 
						|
            }
 | 
						|
 | 
						|
 | 
						|
        } catch(\Exception $e) {
 | 
						|
            nlog("problem getting tax data => ".$e->getMessage());
 | 
						|
        }
 | 
						|
 | 
						|
    }
 | 
						|
 | 
						|
    public function middleware()
 | 
						|
    {
 | 
						|
        return [new WithoutOverlapping($this->client->id.$this->company->id)];
 | 
						|
    }
 | 
						|
 | 
						|
    public function failed($exception)
 | 
						|
    {
 | 
						|
        nlog("UpdateTaxData failed => ".$exception->getMessage());
 | 
						|
        config(['queue.failed.driver' => null]);
 | 
						|
 | 
						|
    }
 | 
						|
 | 
						|
}
 |