}
} else if refv.Kind() == reflect.Float32 || refv.Kind() == reflect.Float64 {
vg.Value = fmt.Sprintf("%v", v)
- vg.Value = strings.ReplaceAll(vg.Value, ".", ",")
+ vg.Value = strings.Replace(vg.Value, ".", ",", -1)
/* TODO */
} else if strings.Contains(vg.Validation, "mydate") {
vg.Value = v.(time.Time).Format("02/01/2006")
if elem.DBName != "" {
if 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), ",", ".")
+ campi[elem.DBName] = strings.Replace(elem.Value, ".", "", -1)
+ campi[elem.DBName] = strings.Replace(campi[elem.DBName].(string), ",", ".", -1)
} else if strings.Contains(elem.Validation, "mydate") && elem.Value != "" {
/* metto la data in formato sql */
t, err := time.Parse("02/01/2006", elem.Value)
module saetta.ns0.it/git/zakegg_go.git
-go 1.18
+go 1.11
require (
github.com/feiin/sqlstring v0.3.0
github.com/squeeze69/codicefiscale v1.0.2
)
-require (
- github.com/go-playground/locales v0.14.0 // indirect
- github.com/leodido/go-urn v1.2.1 // indirect
- golang.org/x/crypto v0.0.0-20211215153901-e495a2d5b3d3 // indirect
- golang.org/x/sys v0.0.0-20210806184541-e5e7981a1069 // indirect
- golang.org/x/text v0.3.7 // indirect
-)
+replace github.com/feiin/sqlstring => ../sqlstring