- add param nameIDs to UploadWeimobImg4SkuName

This commit is contained in:
gazebo
2019-01-24 10:52:24 +08:00
parent 55385ab563
commit 3cc9433b46
4 changed files with 16 additions and 8 deletions

View File

@@ -445,9 +445,9 @@ func Change2JDSPU4Store(ctx *jxcontext.Context, storeIDs []int, step int, isAsyn
return hint, err
}
func UploadWeimobImg4SkuName(ctx *jxcontext.Context, isAsync, isContinueWhenError bool) (hint string, err error) {
func UploadWeimobImg4SkuName(ctx *jxcontext.Context, nameIDs []int, isAsync, isContinueWhenError bool) (hint string, err error) {
db := dao.GetDB()
skuNameList, err := dao.GetSkuNames(db)
skuNameList, err := dao.GetSkuNames(db, nameIDs)
if err != nil {
return "", err
}