From d73ed65a093113acf6eb38bc79be2160a496f7e2 Mon Sep 17 00:00:00 2001 From: Andrea Zagli Date: Tue, 30 Aug 2022 14:46:25 +0200 Subject: [PATCH] =?utf8?q?ParseInt=20da=20errore=20se=20la=20stringa=20?= =?utf8?q?=C3=A8=20un=20float=20corretto.?= MIME-Version: 1.0 Content-Type: text/plain; charset=utf8 Content-Transfer-Encoding: 8bit --- form.go | 9 +++------ 1 file changed, 3 insertions(+), 6 deletions(-) diff --git a/form.go b/form.go index 0e65e6a..de746a8 100644 --- a/form.go +++ b/form.go @@ -231,12 +231,9 @@ func CreaMapDb (elems map[string]*FormElement) (map[string]interface{}) { /* tolgo la formattazione */ str := strings.ReplaceAll(elem.Value, ".", "") str = strings.ReplaceAll(str, ",", ".") - if elem.DBType == "float" || strings.Contains(elem.Validation, "numeric_it=float") { - v, _ := strconv.ParseFloat(str, 64) - campi[elem.DBName] = v - } else { - v, _ := strconv.ParseInt(str, 10, 0) - campi[elem.DBName] = v + v, _ := strconv.ParseFloat(str, 64) + if elem.DBType == "int" || strings.Contains(elem.Validation, "numeric_it=int") { + campi[elem.DBName] = int(v) } } else if strings.Contains(elem.Validation, "mydate") { /* metto la data in formato sql */ -- 2.49.0