]> saetta.ns0.it Git - zakegg_go/commitdiff
Form: aggiunto campo DBType.
authorAndrea Zagli <azagli@libero.it>
Thu, 25 Aug 2022 13:28:25 +0000 (15:28 +0200)
committerAndrea Zagli <azagli@libero.it>
Thu, 25 Aug 2022 13:28:25 +0000 (15:28 +0200)
form.go

diff --git a/form.go b/form.go
index 8d33b0ac2dda0ab0f4335ffd22f3e1edc6c61872..0e65e6ada401aa993694e3a98fa746362534679c 100644 (file)
--- 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
+                               }
                        }
                }
        }