字段打错了yybid

This commit is contained in:
苏尹岚
2020-03-25 14:32:32 +08:00
parent a2dd19a585
commit dadeb3b996
2 changed files with 6 additions and 2 deletions

View File

@@ -187,7 +187,11 @@ func (p *PurchaseHandler) CreateStoreCategory(ctx *jxcontext.Context, storeID in
func (p *PurchaseHandler) UpdateStoreCategory(ctx *jxcontext.Context, storeID int, vendorStoreID string, storeCat *dao.SkuStoreCatInfo) (err error) {
if globals.EnableYbStoreWrite {
vendorOrgCode, err := buildYbConfigs(storeID)
if err != nil {
return err
}
err = api.YinBaoAPI.UpdateCategory(vendorOrgCode, storeCat.VendorCatID, storeCat.Name, storeCat.ParentCatName)
}
return err
}