mirror of
https://github.com/invoiceninja/invoiceninja.git
synced 2026-01-06 13:50:49 -05:00
* clean up invoice calculations - exclusive taxes * Fixes for tests * Clean up and fixes for tests
31 lines
591 B
PHP
31 lines
591 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), 4);
|
|
}
|
|
|
|
}
|