From fb758e12115db9aec941811deb6f2a6c7b0cf86c Mon Sep 17 00:00:00 2001 From: gazebo Date: Thu, 28 Nov 2019 13:35:20 +0800 Subject: [PATCH] up --- controllers/act.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/controllers/act.go b/controllers/act.go index 8f94495af..9163a28fb 100644 --- a/controllers/act.go +++ b/controllers/act.go @@ -315,7 +315,7 @@ func (c *ActController) ForceUpdateVendorPrice() { c.callForceUpdateVendorPrice(func(params *tActForceUpdateVendorPriceParams) (retVal interface{}, errCode string, err error) { var actStoreSkuList []*act.ActStoreSkuParam if err = jxutils.Strings2Objs(params.ActStoreSkuList, &actStoreSkuList); err == nil { - act.ForceUpdateVendorPrice(params.Ctx, params.VendorID, params.Type, actStoreSkuList, params.IsAsync) + retVal, err = act.ForceUpdateVendorPrice(params.Ctx, params.VendorID, params.Type, actStoreSkuList, params.IsAsync) } return retVal, "", err })