whoami7 - Manager
:
/
home
/
qbizpnmr
/
arif.umairtax.com
/
app
/
Jobs
/
Client
/
Upload File:
files >> /home/qbizpnmr/arif.umairtax.com/app/Jobs/Client/UpdateTaxData.php
<?php /** * Invoice Ninja (https://invoiceninja.com). * * @link https://github.com/invoiceninja/invoiceninja source repository * * @copyright Copyright (c) 2025. 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 { if (!$this->client->state && $this->client->postal_code) { $this->client->update(['state' => USStates::getState($this->client->postal_code)]); $this->client->refresh(); } $tax_provider->setBillingAddress($this->getBillingAddress()) ->setShippingAddress($this->getShippingAddress()) ->updateClientTaxData(); } catch (\Exception $e) { nlog("Exception:: UpdateTaxData::" . $e->getMessage()); nlog("problem getting tax data => ".$e->getMessage()); } } private function getBillingAddress(): array { return [ 'address2' => $this->client->address2, 'address1' => $this->client->address1, 'city' => $this->client->city, 'state' => $this->client->state, 'postal_code' => $this->client->postal_code, 'country' => $this->client->country->name, ]; } private function getShippingAddress(): array { if (strlen($this->client->shipping_address1 ?? '') < 3) { return $this->getBillingAddress(); } return [ 'address2' => $this->client->shipping_address2, 'address1' => $this->client->shipping_address1, 'city' => $this->client->shipping_city, 'state' => $this->client->shipping_state, 'postal_code' => $this->client->shipping_postal_code, 'country' => $this->client->shipping_country()->exists() ? $this->client->shipping_country->name : $this->client->country->name, ]; } public function middleware() { return [(new WithoutOverlapping($this->client->id.$this->company->company_key))->releaseAfter(60)]; } public function failed($exception) { nlog("UpdateTaxData failed => ".$exception->getMessage()); config(['queue.failed.driver' => null]); } }
Copyright ©2021 || Defacer Indonesia