[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
[Noalyss-commit] [noalyss] 48/162: Protect function nb , return the stri
From: |
Dany De Bontridder |
Subject: |
[Noalyss-commit] [noalyss] 48/162: Protect function nb , return the string if the parameter is not a float |
Date: |
Sat, 11 Jul 2020 13:23:32 -0400 (EDT) |
sparkyx pushed a commit to annotated tag E-4
in repository noalyss.
commit 2051243c6541ce89244c62167e9fa64b83934743
Author: Dany De Bontridder <danydb@noalyss.eu>
AuthorDate: Fri Apr 20 19:25:25 2018 +0200
Protect function nb , return the string if the parameter is not a float
---
include/lib/noalyss_csv.class.php | 6 +++++-
1 file changed, 5 insertions(+), 1 deletion(-)
diff --git a/include/lib/noalyss_csv.class.php
b/include/lib/noalyss_csv.class.php
index 11df760..4eefce8 100644
--- a/include/lib/noalyss_csv.class.php
+++ b/include/lib/noalyss_csv.class.php
@@ -170,7 +170,11 @@ class Noalyss_Csv
{
$p_number=trim($p_number);
if ($p_number=="") {return $p_number;}
- $r=number_format($p_number, 4, $this->sep_dec,'');
+ if ( isNumber($p_number) == 1 ) {
+ $r=number_format($p_number, 4, $this->sep_dec,'');
+ } else {
+ $r=$p_number;
+ }
return $r;
}
private function encode($str)
- [Noalyss-commit] [noalyss] 31/162: task #448 : currency always used and remove parameter 'use_currency' from parameters, add SQL script, (continued)
- [Noalyss-commit] [noalyss] 31/162: task #448 : currency always used and remove parameter 'use_currency' from parameters, add SQL script, Dany De Bontridder, 2020/07/11
- [Noalyss-commit] [noalyss] 35/162: Task #448 : correct bug when saving into quant_purchase, Dany De Bontridder, 2020/07/11
- [Noalyss-commit] [noalyss] 36/162: Bug in QUANT_PURCHASE , dp_dep_priv is not saved, Dany De Bontridder, 2020/07/11
- [Noalyss-commit] [noalyss] 21/162: Task #448 : issue with reconciliation amount, Dany De Bontridder, 2020/07/11
- [Noalyss-commit] [noalyss] 33/162: Task #448 : correct bug if VAT Rate = 0 , amount was reset, Dany De Bontridder, 2020/07/11
- [Noalyss-commit] [noalyss] 41/162: Fix bug quant_purchase , private fee not saved, Dany De Bontridder, 2020/07/11
- [Noalyss-commit] [noalyss] 42/162: remove debug, Dany De Bontridder, 2020/07/11
- [Noalyss-commit] [noalyss] 43/162: Missing ob_start, Dany De Bontridder, 2020/07/11
- [Noalyss-commit] [noalyss] 45/162: typo, Dany De Bontridder, 2020/07/11
- [Noalyss-commit] [noalyss] 39/162: integrate fix for bug in insert_quant_purchase which cannot save private fee, Dany De Bontridder, 2020/07/11
- [Noalyss-commit] [noalyss] 48/162: Protect function nb , return the string if the parameter is not a float,
Dany De Bontridder <=
- [Noalyss-commit] [noalyss] 34/162: Task #448 : Currency : purchase, fix bug for autoreverse VAT, Dany De Bontridder, 2020/07/11
- [Noalyss-commit] [noalyss] 37/162: comment, Dany De Bontridder, 2020/07/11
- [Noalyss-commit] [noalyss] 46/162: Task #448 : add currency to card -> history + export CSV, Dany De Bontridder, 2020/07/11
- [Noalyss-commit] [noalyss] 50/162: Create invoice : New version of libreoffice use the numeric in another way, Dany De Bontridder, 2020/07/11
- [Noalyss-commit] [noalyss] 55/162: Security : direct injection, Dany De Bontridder, 2020/07/11
- [Noalyss-commit] [noalyss] 52/162: Bug 1600 : alphanumeric accounting must be case insensitive, Dany De Bontridder, 2020/07/11
- [Noalyss-commit] [noalyss] 56/162: Fix : security fixes see rapport exakat (Damien Seguy), Dany De Bontridder, 2020/07/11
- [Noalyss-commit] [noalyss] 57/162: Security fix : f_id is a number, Dany De Bontridder, 2020/07/11
- [Noalyss-commit] [noalyss] 62/162: Merge master, Dany De Bontridder, 2020/07/11
- [Noalyss-commit] [noalyss] 38/162: Task #448 : currency improve detail of operation, Dany De Bontridder, 2020/07/11