mirror of
https://github.com/invoiceninja/invoiceninja.git
synced 2024-11-10 13:12:50 +01:00
d29f37ef8b
* Fixes for test * Invoice Items Inclusive Tax Calculator * Inclusive taxes * Invoice Inclusive Tax Tests * More tests * clean up * fixes for inclusive tests
37 lines
735 B
PHP
37 lines
735 B
PHP
<?php
|
|
/**
|
|
* Invoice Ninja (https://invoiceninja.com)
|
|
*
|
|
* @link https://github.com/invoiceninja/invoiceninja source repository
|
|
*
|
|
* @copyright Copyright (c) 2019. Invoice Ninja LLC (https://invoiceninja.com)
|
|
*
|
|
* @license https://opensource.org/licenses/AAL
|
|
*/
|
|
|
|
namespace App\Helpers\Invoice;
|
|
|
|
/**
|
|
* Class for tax calculations
|
|
*/
|
|
trait Taxer
|
|
{
|
|
|
|
public function taxer($amount, $tax_rate)
|
|
{
|
|
return round($amount * (($tax_rate ? $tax_rate : 0) / 100), 2);
|
|
}
|
|
|
|
public function calcAmountLineTax($tax_rate, $amount)
|
|
{
|
|
return $this->formatValue(($amount * $tax_rate/100), 2);
|
|
}
|
|
|
|
public function calcInclusiveLineTax($tax_rate, $amount)
|
|
{
|
|
return $this->formatValue($amount - ($amount / (1 + ($tax_rate/100))), 2);
|
|
}
|
|
|
|
|
|
}
|