2019-10-16 11:28:52 +02:00
|
|
|
<?php
|
|
|
|
/**
|
|
|
|
* Invoice Ninja (https://invoiceninja.com)
|
|
|
|
*
|
|
|
|
* @link https://github.com/invoiceninja/invoiceninja source repository
|
|
|
|
*
|
2020-01-07 01:13:47 +01:00
|
|
|
* @copyright Copyright (c) 2020. Invoice Ninja LLC (https://invoiceninja.com)
|
2019-10-16 11:28:52 +02:00
|
|
|
*
|
|
|
|
* @license https://opensource.org/licenses/AAL
|
|
|
|
*/
|
|
|
|
|
|
|
|
namespace App\Helpers\Invoice;
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Class for tax calculations
|
|
|
|
*/
|
|
|
|
trait Taxer
|
|
|
|
{
|
2019-12-30 22:59:12 +01:00
|
|
|
public function taxer($amount, $tax_rate)
|
|
|
|
{
|
|
|
|
return round($amount * (($tax_rate ? $tax_rate : 0) / 100), 2);
|
|
|
|
}
|
2019-10-16 11:28:52 +02:00
|
|
|
|
2019-12-30 22:59:12 +01:00
|
|
|
public function calcAmountLineTax($tax_rate, $amount)
|
|
|
|
{
|
|
|
|
return $this->formatValue(($amount * $tax_rate/100), 2);
|
|
|
|
}
|
2019-10-22 04:07:00 +02:00
|
|
|
|
2019-12-30 22:59:12 +01:00
|
|
|
public function calcInclusiveLineTax($tax_rate, $amount)
|
|
|
|
{
|
|
|
|
return $this->formatValue($amount - ($amount / (1 + ($tax_rate/100))), 2);
|
|
|
|
}
|
2019-10-16 11:28:52 +02:00
|
|
|
}
|