+ GetByOrderNoForOaos and CheckSelfPickCode.

This commit is contained in:
gazebo
2019-09-03 18:15:07 +08:00
parent 2c67316c0f
commit 188abb987a
3 changed files with 68 additions and 6 deletions

View File

@@ -10,7 +10,7 @@ import (
)
func TestQuerySingleOrder(t *testing.T) {
retVal, err := api.QuerySingleOrder("918092290000042")
retVal, err := api.QuerySingleOrder("921160248000222")
t.Log(utils.Format4Output(retVal, false))
if err != nil {
t.Error(err)
@@ -236,3 +236,11 @@ func TestOrderQuery2(t *testing.T) {
t.Fatal(err.Error())
}
}
func TestGetByOrderNoForOaos(t *testing.T) {
orderList, err := api.GetByOrderNoForOaos("921160248000222")
t.Log(utils.Format4Output(orderList, false))
if err != nil {
t.Fatal(err.Error())
}
}