1
0
mirror of https://github.com/invoiceninja/invoiceninja.git synced 2024-09-21 17:01:33 +02:00
invoiceninja/app/DataMapper/Tax/US/Rule.php

148 lines
3.0 KiB
PHP
Raw Normal View History

2023-03-18 13:06:32 +01: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-03-29 05:23:06 +02:00
namespace App\DataMapper\Tax\US;
2023-03-18 13:06:32 +01:00
2023-03-26 22:46:26 +02:00
use App\Models\Client;
2023-03-24 08:02:34 +01:00
use App\Models\Product;
use App\DataMapper\Tax\RuleInterface;
2023-03-24 08:58:59 +01:00
use App\DataMapper\Tax\ZipTax\Response;
2023-03-24 08:02:34 +01:00
class Rule implements RuleInterface
2023-03-18 13:06:32 +01:00
{
2023-03-24 08:02:34 +01:00
public string $tax_name1 = '';
public float $tax_rate1 = 0;
public string $tax_name2 = '';
public float $tax_rate2 = 0;
public string $tax_name3 = '';
public float $tax_rate3 = 0;
2023-03-26 22:46:26 +02:00
public ?Client $client;
public ?Response $tax_data;
public function __construct()
{
}
2023-03-29 04:13:50 +02:00
public function override()
{
return $this;
}
2023-03-26 22:46:26 +02:00
public function setTaxData(Response $tax_data): self
2023-03-24 08:02:34 +01:00
{
$this->tax_data = $tax_data;
2023-03-26 22:46:26 +02:00
return $this;
}
public function setClient(Client $client):self
{
$this->client = $client;
return $this;
2023-03-24 08:02:34 +01:00
}
2023-03-24 08:58:59 +01:00
public function tax(): self
2023-03-24 08:02:34 +01:00
{
2023-03-26 22:57:29 +02:00
if($this->client->is_tax_exempt)
return $this->taxExempt();
2023-03-24 08:58:59 +01:00
$this->tax_rate1 = $this->tax_data->taxSales * 100;
$this->tax_name1 = "{$this->tax_data->geoState} Sales Tax";
return $this;
2023-03-24 08:02:34 +01:00
}
2023-03-24 08:58:59 +01:00
public function taxByType(?int $product_tax_type): self
2023-03-24 08:02:34 +01:00
{
if(!$product_tax_type)
2023-03-24 08:58:59 +01:00
return $this;
2023-03-24 08:02:34 +01:00
2023-03-26 22:57:29 +02:00
if ($this->client->is_tax_exempt) {
return $this->taxExempt();
}
2023-03-24 08:02:34 +01:00
match($product_tax_type){
2023-03-28 22:53:46 +02:00
Product::PRODUCT_TYPE_EXEMPT => $this->taxExempt(),
2023-03-24 08:02:34 +01:00
Product::PRODUCT_TYPE_DIGITAL => $this->taxDigital(),
Product::PRODUCT_TYPE_SERVICE => $this->taxService(),
Product::PRODUCT_TYPE_SHIPPING => $this->taxShipping(),
Product::PRODUCT_TYPE_PHYSICAL => $this->taxPhysical(),
2023-03-29 04:13:50 +02:00
Product::PRODUCT_TYPE_REDUCED_TAX => $this->taxReduced(),
Product::PRODUCT_TYPE_OVERRIDE_TAX => $this->override(),
2023-03-24 08:02:34 +01:00
default => $this->default(),
};
return $this;
}
2023-03-24 08:58:59 +01:00
public function taxExempt(): self
2023-03-24 08:02:34 +01:00
{
$this->tax_name1 = '';
$this->tax_rate1 = 0;
2023-03-24 08:58:59 +01:00
return $this;
2023-03-24 08:02:34 +01:00
}
2023-03-24 08:58:59 +01:00
public function taxDigital(): self
2023-03-24 08:02:34 +01:00
{
2023-03-24 08:58:59 +01:00
$this->tax();
return $this;
2023-03-24 08:02:34 +01:00
}
2023-03-24 08:58:59 +01:00
public function taxService(): self
2023-03-24 08:02:34 +01:00
{
if($this->tax_data->txbService == 'Y')
2023-03-24 08:58:59 +01:00
$this->tax();
return $this;
2023-03-24 08:02:34 +01:00
}
2023-03-24 08:58:59 +01:00
public function taxShipping(): self
2023-03-24 08:02:34 +01:00
{
2023-03-24 08:58:59 +01:00
if($this->tax_data->txbFreight == 'Y')
$this->tax();
return $this;
2023-03-24 08:02:34 +01:00
}
2023-03-24 08:58:59 +01:00
public function taxPhysical(): self
2023-03-24 08:02:34 +01:00
{
2023-03-24 08:58:59 +01:00
$this->tax();
return $this;
2023-03-24 08:02:34 +01:00
}
2023-03-24 08:58:59 +01:00
public function default(): self
2023-03-24 08:02:34 +01:00
{
2023-03-24 08:58:59 +01:00
2023-03-25 01:02:43 +01:00
$this->tax_name1 = 'Tax Exempt';
2023-03-24 08:02:34 +01:00
$this->tax_rate1 = 0;
2023-03-24 08:58:59 +01:00
return $this;
2023-03-24 08:02:34 +01:00
}
2023-03-26 22:46:26 +02:00
public function taxReduced(): self
{
$this->tax();
return $this;
}
2023-03-18 13:06:32 +01:00
}