mirror of
https://github.com/invoiceninja/invoiceninja.git
synced 2025-07-09 03:14:30 -04:00
Fix for taxes test
This commit is contained in:
parent
ed48fb1a3f
commit
be922725cd
@ -29,7 +29,9 @@ class TaxRatesCest
|
|||||||
$total = $itemCost;
|
$total = $itemCost;
|
||||||
$total += round($itemCost * $itemTaxRate / 100, 2);
|
$total += round($itemCost * $itemTaxRate / 100, 2);
|
||||||
$total += round($itemCost * $invoiceTaxRate / 100, 2);
|
$total += round($itemCost * $invoiceTaxRate / 100, 2);
|
||||||
|
|
||||||
$itemTaxRate = number_format($itemTaxRate, 2);
|
$itemTaxRate = number_format($itemTaxRate, 2);
|
||||||
|
$invoiceTaxRate = number_format($invoiceTaxRate, 2);
|
||||||
|
|
||||||
// create tax rates
|
// create tax rates
|
||||||
$I->amOnPage('/tax_rates/create');
|
$I->amOnPage('/tax_rates/create');
|
||||||
|
Loading…
x
Reference in New Issue
Block a user