This commit is contained in:
suyl
2021-05-24 14:42:20 +08:00
parent 5fe8987522
commit d986be7cad
4 changed files with 125 additions and 82 deletions

View File

@@ -4,7 +4,6 @@ import (
"bytes"
"context"
"fmt"
"git.rosy.net.cn/jx-callback/globals/api/apimanager"
"regexp"
"strings"
"time"
@@ -1924,87 +1923,6 @@ func UploadJdsImage(ctx *jxcontext.Context) (err error) {
// dao.UpdateEntity(db, v, "ConsigneeMobile2")
// }
//}
type funcType func(mtID, parentID string, catInfo []*mtwmapi.RetailCategoryInfo)
var (
mtStoreID = "11655829"
mtOrgCode = "589"
//mtAccessToken = ""
//jdStoreID = "12116911"
jdOrgCode = "364156"
//db = dao.GetDB()
catMap = make(map[string]string)
LoopCatChild funcType
)
jd := jd.GetAPI(jdOrgCode)
//获取token
mtapi := apimanager.CurAPIManager.GetAPI(model.VendorIDMTWM, mtOrgCode).(*mtwmapi.API)
//if token, err := mtapi.GetAccessToken2(mtStoreID); err == nil && token != nil {
// mtAccessToken = token.AccessToken
//}
//mtapi.SetToken(mtAccessToken)
LoopCatChild = func(mtID, parentID string, catInfo []*mtwmapi.RetailCategoryInfo) {
if len(catInfo) > 0 {
for j := len(catInfo) - 1; j > -1; j-- {
result, _ := jd.AddShopCategory(utils.Str2Int64(parentID), catInfo[j].Name, catInfo[j].Level, catInfo[j].Sequence, "")
if result != "" {
catMap[mtID] = result
}
LoopCatChild(catInfo[j].Code, result, catInfo[j].Children)
}
}
}
task := tasksch.NewParallelTask("美团到京东", tasksch.NewParallelConfig().SetIsContinueWhenError(true).SetParallelCount(1), ctx,
func(task *tasksch.ParallelTask, batchItemList []interface{}, params ...interface{}) (retVal interface{}, err error) {
step := batchItemList[0].(int)
switch step {
case 0:
//建分类
jdCatList, _ := jd.QueryCategoriesByOrgCode()
if len(jdCatList) == 0 {
catList, _ := mtapi.RetailCatList(mtStoreID)
for i := len(catList) - 1; i > -1; i-- {
catID, _ := jd.AddShopCategory(0, catList[i].Name, catList[i].Level, catList[i].Sequence, "")
LoopCatChild(catList[i].Code, catID, catList[i].Children)
//for j := len(catList[i].Children) - 1; j > -1; j-- {
// jd.AddShopCategory(utils.Str2Int64(catID), catList[i].Children[j].Name, catList[i].Children[j].Level, catList[i].Children[j].Sequence, "")
//}
}
}
case 1:
//建商品
//skuList, _ := mtapi.RetailListAll(mtStoreID)
//task2 := tasksch.NewParallelTask("美团到京东, 建商品", tasksch.NewParallelConfig().SetIsContinueWhenError(true).SetParallelCount(1), ctx,
// func(task *tasksch.ParallelTask, batchItemList []interface{}, params ...interface{}) (retVal interface{}, err error) {
// mtSku := batchItemList[0].(*mtwmapi.AppFood)
// catMaps, _ := dao.GetMtJdCategoryMap(db, utils.Int2Str(mtSku.TagID), "")
// param := &jdapi.OpSkuParam{
// TraceID: ctx.GetTrackInfo(),
// OutSkuID: mtSku.AppFoodCode,
// ShopCategories: []int64{},
// CategoryID: utils.Str2Int64(catMaps[0].JdID),
// BrandID: 35247,
// SkuName: mtSku.Name,
// SkuPrice: int(jxutils.StandardPrice2Int(mtSku.Price)),
// Weight: float64(jxutils.IntWeight2Float(utils.Str2Int(mtSku.SkuList[0].Weight))),
// FixedStatus: 1,
// IsSale: -1,
// Upc: mtSku.SkuList[0].Upc,
// }
// if mtSku.SecondaryCategoryCode != "" {
// param.ShopCategories = append(param.ShopCategories, utils.Str2Int64(catMap[mtSku.SecondaryCategoryCode]))
// } else if mtSku.CategoryCode != "" {
// param.ShopCategories = append(param.ShopCategories, utils.Str2Int64(catMap[mtSku.CategoryCode]))
// }
// skuID, _ := jd.AddSku2(param)
// return retVal, err
// }, skuList)
//tasksch.HandleTask(task2, task, true).Run()
//task2.GetResult(0)
}
return retVal, err
}, []int{0, 1, 2, 3})
tasksch.HandleTask(task, nil, true).Run()
task.GetResult(0)
return err
}