2019-04-04 06:49:13 +02:00
|
|
|
<?php
|
2019-05-11 05:32:07 +02:00
|
|
|
/**
|
2020-09-06 11:38:10 +02:00
|
|
|
* Invoice Ninja (https://invoiceninja.com).
|
2019-05-11 05:32:07 +02:00
|
|
|
*
|
|
|
|
* @link https://github.com/invoiceninja/invoiceninja source repository
|
|
|
|
*
|
2023-01-28 23:21:40 +01:00
|
|
|
* @copyright Copyright (c) 2023. Invoice Ninja LLC (https://invoiceninja.com)
|
2019-05-11 05:32:07 +02:00
|
|
|
*
|
2021-06-16 08:58:16 +02:00
|
|
|
* @license https://www.elastic.co/licensing/elastic-license
|
2019-05-11 05:32:07 +02:00
|
|
|
*/
|
2019-04-04 06:49:13 +02:00
|
|
|
|
|
|
|
namespace App\Utils\Traits;
|
|
|
|
|
|
|
|
/**
|
2020-09-06 11:38:10 +02:00
|
|
|
* Class NumberFormatter.
|
2019-04-04 06:49:13 +02:00
|
|
|
*/
|
|
|
|
trait NumberFormatter
|
|
|
|
{
|
2019-12-30 22:59:12 +01:00
|
|
|
private function formatValue($value, $precision) : string
|
|
|
|
{
|
2022-01-08 10:16:21 +01:00
|
|
|
/* 08-01-2022 allow increased precision means we need to transform from scientific notation to a regular string */
|
2022-06-21 11:57:17 +02:00
|
|
|
|
|
|
|
return number_format($this->parseFloat(rtrim(sprintf('%f', $value), '0')), $precision, '.', '');
|
2019-12-30 22:59:12 +01:00
|
|
|
}
|
2019-04-04 06:49:13 +02:00
|
|
|
|
2019-12-30 22:59:12 +01:00
|
|
|
/**
|
2020-09-06 11:38:10 +02:00
|
|
|
* Parse a float value that may be delimited with either a comma or decimal point.
|
2019-04-18 07:01:40 +02:00
|
|
|
*
|
|
|
|
* @param string $value The value
|
|
|
|
*
|
|
|
|
* @return float Consumable float value
|
|
|
|
*/
|
|
|
|
private function parseFloat($value) : float
|
2019-04-04 06:49:13 +02:00
|
|
|
{
|
|
|
|
// check for comma as decimal separator
|
|
|
|
if (preg_match('/,[\d]{1,2}$/', $value)) {
|
|
|
|
$value = str_replace(',', '.', $value);
|
|
|
|
}
|
|
|
|
|
|
|
|
$value = preg_replace('/[^0-9\.\-]/', '', $value);
|
|
|
|
|
|
|
|
return floatval($value);
|
|
|
|
}
|
2019-12-30 22:59:12 +01:00
|
|
|
}
|