This commit is contained in:
邹宗楠
2022-12-15 10:57:52 +08:00
parent 9b0b4adf01
commit 5c37797848

View File

@@ -179,15 +179,18 @@ func (p *PurchaseHandler) UpdateStoreSkusPrice(ctx *jxcontext.Context, vendorOrg
if len(failedList) > 0 {
return failedList, err
}
//更新子品
err = api.EditPrice(&sku_editPrice_request.SkuEditPriceParam{
price := &sku_editPrice_request.SkuEditPriceParam{
Price: v.VendorPrice,
SkuId: tiktokSkuId,
ProductId: utils.Str2Int64(v.VendorSkuID),
})
if err != nil {
}
//更新子品
if err = api.EditPrice(price); err != nil {
failedList = append(failedList, putils.GetErrMsg2FailedSingleList(v, err, storeID, model.VendorChineseNames[model.VendorIDDD], "更新价格异常")...)
}
globals.SugarLogger.Debugf("看看走这儿了没,是不是更新 参数 %s", utils.Format4Output(price, false))
globals.SugarLogger.Debugf("看看走这儿了没,是不是更新 返回值 %s", utils.Format4Output(failedList, false))
globals.SugarLogger.Debugf("看看走这儿了没,是不是更新 结构体 %s", utils.Format4Output(v, false))
}
return failedList, err
}