This commit is contained in:
苏尹岚
2021-02-08 14:40:47 +08:00
parent 9c2c0930fd
commit f258539de6

View File

@@ -324,11 +324,10 @@ func (a *API) AddByStoreAndSkus(stationNo int64, skuIDs []int64) (err error) {
// 删除门店商品会员价接口
// https://openo2o.jddj.com/staticnew/widgets/resources.html?groupid=205&apiid=73116e2b9f374814880f1272ba301fdf
func (a *API) DelVipPrice(outStationNo string, skuIds []*SkuIdEntity, userPin string) (err error) {
func (a *API) DelVipPrice(outStationNo string, skuIds []*SkuIdEntity) (err error) {
jdParams := map[string]interface{}{
"outStationNo": outStationNo,
"skuPriceInfoList": skuIds,
"source": utils.GetAPIOperator(userPin),
}
_, err = a.AccessAPINoPage("vender/delVipPrice", jdParams, nil, nil, genNoPageResultParser("code", "msg", "", "0"))
return err