53 lines
1.2 KiB
Go
53 lines
1.2 KiB
Go
package mtwmapi
|
|
|
|
import (
|
|
"testing"
|
|
|
|
"git.rosy.net.cn/baseapi"
|
|
"git.rosy.net.cn/baseapi/utils"
|
|
)
|
|
|
|
func TestOrderAddTips(t *testing.T) {
|
|
err := api.OrderModityTips("69761763472881638", "6976176", 0.2)
|
|
if err != nil {
|
|
t.Fatal(err)
|
|
}
|
|
}
|
|
|
|
func TestGetDistributeOrderDetail(t *testing.T) {
|
|
result, err := api.GetDistributeOrderDetail("69761763472881638", "6976176")
|
|
if err != nil {
|
|
t.Fatal(err)
|
|
}
|
|
baseapi.SugarLogger.Debug(utils.Format4Output(result, false))
|
|
}
|
|
|
|
func TestCancelReason(t *testing.T) {
|
|
result, err := api.GetCancelDeliveryReason(128752442052682640, "12875244")
|
|
if err != nil {
|
|
t.Fatal(err)
|
|
}
|
|
baseapi.SugarLogger.Debug(utils.Format4Output(result, false))
|
|
}
|
|
|
|
func TestGetRecommendSku(t *testing.T) {
|
|
param := &RecommendSkuGet{
|
|
WmPoiId: 17056471,
|
|
PageNum: 1,
|
|
PageSize: 100,
|
|
NeedTag: 1,
|
|
Name: "",
|
|
BrandId: 0,
|
|
TagId: 0,
|
|
SearchWord: "",
|
|
State: 0,
|
|
LabelIds: 1,
|
|
SaleStatus: 0,
|
|
LimitSale: 0,
|
|
NeedCombinationSpu: 2,
|
|
NoStockAutoClear: -1,
|
|
MedicareType: 1,
|
|
}
|
|
api.GetRecommendSku(param, "")
|
|
}
|