客户建议发送内容修改

This commit is contained in:
苏尹岚
2020-05-21 14:57:16 +08:00
parent 13825af092
commit 18128e9433
2 changed files with 12 additions and 8 deletions

View File

@@ -1101,7 +1101,7 @@ func (v *VendorSync) SyncJdsStoresSkus(ctx *jxcontext.Context, storeIDs []int, v
func(task *tasksch.ParallelTask, batchItemList []interface{}, params ...interface{}) (retVal interface{}, err error) {
storeMap := batchItemList[0].(*model.StoreMap)
if storeMap.Status > model.StoreStatusDisabled && storeMap.StoreID != model.JdShopMainStoreID && storeMap.SyncRule != 0 {
err = syncJdsStoresSkus(ctx, db, storeMap)
err = syncJdsStoresSkus(ctx, db, task, storeMap)
}
return nil, err
}, loopMapInfo.StoreMapList)
@@ -1113,7 +1113,7 @@ func (v *VendorSync) SyncJdsStoresSkus(ctx *jxcontext.Context, storeIDs []int, v
return hint, err
}
func syncJdsStoresSkus(ctx *jxcontext.Context, db *dao.DaoDB, storeMap *model.StoreMap) (err error) {
func syncJdsStoresSkus(ctx *jxcontext.Context, db *dao.DaoDB, parentTask tasksch.ITask, storeMap *model.StoreMap) (err error) {
var (
mainSkusMap = make(map[int]*model.StoreSkuBind)
)
@@ -1126,10 +1126,11 @@ func syncJdsStoresSkus(ctx *jxcontext.Context, db *dao.DaoDB, storeMap *model.St
if mainSkusMap[v.SkuID] != nil {
} else {
if storeMap.SyncRule == 1 {
if storeMap.SyncRule == 2 {
}
}
}
return err
}