From: Andrea Zagli Date: Thu, 25 Aug 2022 13:28:25 +0000 (+0200) Subject: Form: aggiunto campo DBType. X-Git-Url: https://saetta.ns0.it/gitweb?a=commitdiff_plain;h=2953502358c5734ef865bc6fa7d534b448cfc3ca;p=zakegg_go Form: aggiunto campo DBType. --- diff --git a/form.go b/form.go index 8d33b0a..0e65e6a 100644 --- a/form.go +++ b/form.go @@ -20,6 +20,7 @@ type FormElement struct { Type string Name string DBName string + DBType string Label string Value string Help string @@ -226,10 +227,17 @@ func CreaMapDb (elems map[string]*FormElement) (map[string]interface{}) { campi := make(map[string]interface{}) for _, elem := range elems { if elem.DBName != "" { - if strings.Contains(elem.Validation, "numeric_it") { + if elem.DBType == "int" || elem.DBType == "float" || strings.Contains(elem.Validation, "numeric_it") { /* tolgo la formattazione */ - campi[elem.DBName] = strings.ReplaceAll(elem.Value, ".", "") - campi[elem.DBName] = strings.ReplaceAll(campi[elem.DBName].(string), ",", ".") + 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 + } } else if strings.Contains(elem.Validation, "mydate") { /* metto la data in formato sql */ if elem.Value == "" { @@ -243,7 +251,20 @@ func CreaMapDb (elems map[string]*FormElement) (map[string]interface{}) { } } } else { - campi[elem.DBName] = elem.Value + if elem.DBType == "bool" { + if elem.Value == "on" { + campi[elem.DBName] = true + } else { + b, err := strconv.ParseBool(elem.Value) + if err != nil { + campi[elem.DBName] = b + } else { + fmt.Println(err) + } + } + } else { + campi[elem.DBName] = elem.Value + } } } }