mirror of
https://github.com/invoiceninja/invoiceninja.git
synced 2024-11-10 21:22:58 +01:00
Merge pull request #7222 from turbo124/v5-develop
Fixes for unit cost precision
This commit is contained in:
commit
374ba354bc
@ -1 +1 @@
|
||||
5.3.60
|
||||
5.3.61
|
@ -80,7 +80,6 @@ class BaseImport
|
||||
|
||||
public function getCsvData($entity_type)
|
||||
{
|
||||
nlog("get csv data = entity name = " . $entity_type);
|
||||
|
||||
$base64_encoded_csv = Cache::pull($this->hash . '-' . $entity_type);
|
||||
if (empty($base64_encoded_csv)) {
|
||||
|
@ -200,10 +200,13 @@ class Number
|
||||
|
||||
/* 08-01-2022 allow increased precision for unit price*/
|
||||
$v = rtrim(sprintf('%f', $value),"0");
|
||||
// $precision = strlen(substr(strrchr($v, $decimal), 1));
|
||||
$precision = strlen(substr(strrchr($v, $decimal), 1));
|
||||
|
||||
if($v<1)
|
||||
$precision = strlen($v) - strrpos($v, '.') - 1;
|
||||
// if($v<1)
|
||||
// $precision = strlen($v) - strrpos($v, '.') - 1;
|
||||
|
||||
if($precision == 1)
|
||||
$precision = 2;
|
||||
|
||||
$value = number_format($v, $precision, $decimal, $thousand);
|
||||
$symbol = $currency->symbol;
|
||||
|
@ -14,8 +14,8 @@ return [
|
||||
'require_https' => env('REQUIRE_HTTPS', true),
|
||||
'app_url' => rtrim(env('APP_URL', ''), '/'),
|
||||
'app_domain' => env('APP_DOMAIN', 'invoicing.co'),
|
||||
'app_version' => '5.3.60',
|
||||
'app_tag' => '5.3.60',
|
||||
'app_version' => '5.3.61',
|
||||
'app_tag' => '5.3.61',
|
||||
'minimum_client_version' => '5.0.16',
|
||||
'terms_version' => '1.0.1',
|
||||
'api_secret' => env('API_SECRET', ''),
|
||||
|
Loading…
Reference in New Issue
Block a user