This commit is contained in:
邹宗楠
2024-08-16 16:22:21 +08:00
parent 91bf920443
commit 48e9a22edd
2 changed files with 4 additions and 2 deletions

View File

@@ -262,3 +262,7 @@ func TestOrderStatusAndPsInfo(t *testing.T) {
"logistics_provider_code": "10017",
})
}
func Test22(t *testing.T) {
fmt.Println((57 & 8) != 0)
}

View File

@@ -47,11 +47,9 @@ func (a *API) AddStoreSku(param *request.AlibabaWdkSkuAddRequest) (*[]VegetableR
// UpdateStoreSku 更新门店商品
func (a *API) UpdateStoreSku(param *request.AlibabaWdkSkuUpdateRequest) (*[]VegetableResultList, error) {
globals.SugarLogger.Debugf("============param := %s", utils.Format4Output(param, false))
client := ability585.NewAbility585(&a.client)
data, _ := client.AlibabaWdkSkuUpdate(param, a.token)
globals.SugarLogger.Debugf("============data := %s", utils.Format4Output(data, false))
if !*data.Result.Success {
return nil, fmt.Errorf(*data.Result.ErrMsg)
}