diff --git a/business/jxstore/tempop/tempop.go b/business/jxstore/tempop/tempop.go index 8ac5a9fcc..1c9075e26 100644 --- a/business/jxstore/tempop/tempop.go +++ b/business/jxstore/tempop/tempop.go @@ -1633,6 +1633,12 @@ func UploadJdsImage(ctx *jxcontext.Context) (err error) { if strings.Contains(storeName, "-") { storeName = storeName[0:strings.Index(storeName, "-")] + storeName[strings.Index(storeName, "-")+1:len(storeName)] } + if strings.Contains(storeName, " ") { + storeName = storeName[0:strings.Index(storeName, " ")] + storeName[strings.Index(storeName, " ")+1:len(storeName)] + } + if len(storeName) > 30 { + storeName = storeName[:30] + } param := &jdshopapi.UpdateBasicParam{ StoreName: "京西菜市" + strings.ReplaceAll(storeName, "店", "") + "生鲜店", CategoryID2: 4,