This commit is contained in:
邹宗楠
2024-11-21 14:15:59 +08:00
parent 668c848572
commit 32c4b67da3
5 changed files with 16 additions and 2 deletions

View File

@@ -650,6 +650,8 @@ func GetSkuNames(ctx *jxcontext.Context, keyword string, isBySku, isQueryMidPric
t1.jds_stock_switch,
t1.preparation_time,
t1.best_seller,
t1.sell_point,
t1.sell_point_times,
t1.tiktok_attribute,
t1.mt_attribute
`

View File

@@ -6509,6 +6509,7 @@ func GetVendorStoreSkus(ctx *jxcontext.Context, storeID, vendorID int) (err erro
return err
}
// CopyMtToJd 复制美团到京东
func CopyMtToJd(ctx *jxcontext.Context, mtStoreID, mtOrgCode, jdStoreID, jdOrgCode string) (err error) {
type funcType func(mtID, parentID string, catInfo []*mtwmapi.RetailCategoryInfo)
var (
@@ -6616,6 +6617,7 @@ func CopyMtToJd(ctx *jxcontext.Context, mtStoreID, mtOrgCode, jdStoreID, jdOrgCo
return err
}
// UpdateMtCatToJd 修改美团分类到京东
func UpdateMtCatToJd(ctx *jxcontext.Context, mtCatID, jdCatID string) (err error) {
var (
db = dao.GetDB()