2023-05-15 23:43:26 +02:00
|
|
|
<?php
|
|
|
|
/**
|
|
|
|
* Invoice Ninja (https://invoiceninja.com).
|
|
|
|
*
|
|
|
|
* @link https://github.com/invoiceninja/invoiceninja source repository
|
|
|
|
*
|
|
|
|
* @copyright Copyright (c) 2023. Invoice Ninja LLC (https://invoiceninja.com)
|
|
|
|
*
|
|
|
|
* @license https://www.elastic.co/licensing/elastic-license
|
|
|
|
*/
|
|
|
|
|
2023-05-15 23:53:29 +02:00
|
|
|
namespace App\Jobs\Client;
|
2023-05-15 23:43:26 +02:00
|
|
|
|
2023-06-02 07:53:33 +02:00
|
|
|
use App\DataMapper\Tax\ZipTax\Response;
|
2023-05-15 23:43:26 +02:00
|
|
|
use App\Models\Client;
|
|
|
|
use App\Models\Company;
|
|
|
|
use App\Libraries\MultiDB;
|
|
|
|
use Illuminate\Bus\Queueable;
|
2023-05-24 14:40:40 +02:00
|
|
|
use App\DataProviders\USStates;
|
2023-05-15 23:43:26 +02:00
|
|
|
use App\Utils\Traits\MakesHash;
|
|
|
|
use Illuminate\Queue\SerializesModels;
|
|
|
|
use Illuminate\Queue\InteractsWithQueue;
|
|
|
|
use Illuminate\Contracts\Queue\ShouldQueue;
|
|
|
|
use Illuminate\Foundation\Bus\Dispatchable;
|
2023-05-24 14:40:40 +02:00
|
|
|
use Illuminate\Queue\Middleware\WithoutOverlapping;
|
2023-05-15 23:43:26 +02:00
|
|
|
|
|
|
|
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);
|
|
|
|
|
2023-06-02 07:53:33 +02:00
|
|
|
if($this->company->account->isFreeHostedClient())
|
2023-05-15 23:43:26 +02:00
|
|
|
return;
|
2023-06-02 07:53:33 +02:00
|
|
|
|
2023-05-15 23:43:26 +02:00
|
|
|
$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->state = USStates::getState($this->client->postal_code);
|
2023-06-02 07:53:33 +02:00
|
|
|
$this->client->saveQuietly();
|
2023-05-15 23:43:26 +02:00
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
}catch(\Exception $e){
|
|
|
|
nlog("problem getting tax data => ".$e->getMessage());
|
|
|
|
}
|
|
|
|
|
2023-06-02 07:53:33 +02:00
|
|
|
/** Set static tax information */
|
|
|
|
if(!$tax_provider->updatedTaxStatus() && $this->client->country_id == 840){
|
|
|
|
|
|
|
|
$calculated_state = false;
|
|
|
|
|
|
|
|
/** State must be calculated else default to the company state for taxes */
|
|
|
|
if(array_key_exists($this->client->shipping_state, USStates::get())) {
|
|
|
|
$calculated_state = $this->client->shipping_state;
|
|
|
|
$calculated_postal_code = $this->client->shipping_postal_code;
|
|
|
|
$calculated_city = $this->client->shipping_city;
|
|
|
|
}
|
|
|
|
elseif(array_key_exists($this->client->state, USStates::get())){
|
|
|
|
$calculated_state = $this->client->state;
|
|
|
|
$calculated_postal_code = $this->client->postal_code;
|
|
|
|
$calculated_city = $this->client->city;
|
|
|
|
}
|
|
|
|
else {
|
|
|
|
|
|
|
|
try{
|
|
|
|
$calculated_state = USStates::getState($this->client->shipping_postal_code);
|
|
|
|
$calculated_postal_code = $this->client->shipping_postal_code;
|
|
|
|
$calculated_city = $this->client->shipping_city;
|
|
|
|
}
|
|
|
|
catch(\Exception $e){
|
|
|
|
nlog("could not calculate state from postal code => {$this->client->shipping_postal_code} or from state {$this->client->shipping_state}");
|
|
|
|
}
|
|
|
|
|
|
|
|
if(!$calculated_state) {
|
|
|
|
try {
|
|
|
|
$calculated_state = USStates::getState($this->client->postal_code);
|
|
|
|
$calculated_postal_code = $this->client->postal_code;
|
|
|
|
$calculated_city = $this->client->city;
|
|
|
|
} catch(\Exception $e) {
|
|
|
|
nlog("could not calculate state from postal code => {$this->client->postal_code} or from state {$this->client->state}");
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
if($this->company->tax_data?->seller_subregion)
|
|
|
|
$calculated_state = $this->company->tax_data?->seller_subregion;
|
|
|
|
|
|
|
|
nlog("i am trying");
|
|
|
|
|
|
|
|
if(!$calculated_state) {
|
|
|
|
nlog("could not determine state");
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
$data = [
|
|
|
|
'seller_subregion' => $this->company->origin_tax_data?->seller_subregion ?: '',
|
|
|
|
'geoPostalCode' => $this->client->postal_code ?? '',
|
|
|
|
'geoCity' => $this->client->city ?? '',
|
|
|
|
'geoState' => $calculated_state,
|
|
|
|
'taxSales' => $this->company->tax_data->regions->US->subregions?->{$calculated_state}?->taxSales ?? 0,
|
|
|
|
];
|
|
|
|
|
|
|
|
$tax_data = new Response($data);
|
|
|
|
|
|
|
|
$this->client->tax_data = $tax_data;
|
|
|
|
$this->client->saveQuietly();
|
|
|
|
|
|
|
|
}
|
|
|
|
|
2023-05-15 23:43:26 +02:00
|
|
|
}
|
2023-05-24 14:40:40 +02:00
|
|
|
|
|
|
|
public function middleware()
|
|
|
|
{
|
2023-06-02 07:53:33 +02:00
|
|
|
return [new WithoutOverlapping($this->client->id.$this->company->id)];
|
|
|
|
}
|
|
|
|
|
|
|
|
public function failed($exception)
|
|
|
|
{
|
|
|
|
nlog("UpdateTaxData failed => ".$exception->getMessage());
|
2023-05-24 14:40:40 +02:00
|
|
|
}
|
|
|
|
|
2023-05-15 23:43:26 +02:00
|
|
|
}
|