新增查询京东商场结算价

This commit is contained in:
苏尹岚
2020-05-08 11:02:34 +08:00
parent c13dfba758
commit c638575d8b
3 changed files with 141 additions and 0 deletions

View File

@@ -264,3 +264,11 @@ func TestUpdateClosetStatus(t *testing.T) {
err := api.UpdateClosetStatus(801246, 1)
fmt.Println("test1", err)
}
func TestGetJdShopOrders(t *testing.T) {
result, err := api.GetJdShopOrders("20200506", "20200508", "320406", "jd_jxcs1223")
if err != nil {
t.Fatal(err)
}
t.Log(utils.Format4Output(result, false))
}