This commit is contained in:
邹宗楠
2026-01-21 14:14:26 +08:00
parent abaf8aa75e
commit ab96fc6343
11 changed files with 147 additions and 31 deletions

View File

@@ -31,7 +31,7 @@ func getTimeFromTimestamp(timeStamp int64) time.Time {
}
func TestOrderGetOrderDetail(t *testing.T) {
result, err := api.OrderGetOrderDetail(4001715692418465050, false)
result, err := api.OrderGetOrderDetail(301957391218748322, false)
if err != nil {
t.Fatal(err)
}
@@ -461,3 +461,9 @@ func BatchInitSkuMT2MT(fromSku []*AppFood, toApi *API, vendorStoreID string, off
return errList, nil
}
func TestGetOrderAddress(t *testing.T) {
address, err := api.GetOrderAddress(301957513500953108, 3)
fmt.Println(address)
fmt.Println(err)
}