diff --git a/controllers/yonghui.go b/controllers/yonghui.go index 321139471..64e43583f 100644 --- a/controllers/yonghui.go +++ b/controllers/yonghui.go @@ -57,7 +57,7 @@ func (c *YongHuiController) UpdateJxPriceByWeimob() { c.callUpdateJxPriceByWeimob(func(params *tYonghuiUpdateJxPriceByWeimobParams) (retVal interface{}, errCode string, err error) { var storeIDList []int if err = jxutils.Strings2Objs(params.StoreIDs, &storeIDList); err == nil { - retVal, err = yonghui.UpdateJxPriceByWeimob(params.Ctx, storeIDList, isAsync, isContinueWhenError) + retVal, err = yonghui.UpdateJxPriceByWeimob(params.Ctx, storeIDList, params.IsAsync, params.IsContinueWhenError) } return retVal, "", err })