From ef4fc5bbb0b3f1d94861ac1f05e4e1f5d3943fb9 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E9=82=B9=E5=AE=97=E6=A5=A0?= Date: Wed, 11 Oct 2023 17:30:33 +0800 Subject: [PATCH] 1 --- platformapi/tao_vegetable/order_delivery.go | 5 ----- 1 file changed, 5 deletions(-) diff --git a/platformapi/tao_vegetable/order_delivery.go b/platformapi/tao_vegetable/order_delivery.go index a6807695..6791cebf 100644 --- a/platformapi/tao_vegetable/order_delivery.go +++ b/platformapi/tao_vegetable/order_delivery.go @@ -6,8 +6,6 @@ import ( "git.rosy.net.cn/baseapi/platformapi/tao_vegetable/sdk/ability591" "git.rosy.net.cn/baseapi/platformapi/tao_vegetable/sdk/ability591/domain" request2 "git.rosy.net.cn/baseapi/platformapi/tao_vegetable/sdk/ability591/request" - "git.rosy.net.cn/baseapi/utils" - "git.rosy.net.cn/jx-callback/globals" "io/ioutil" "net/http" ) @@ -29,11 +27,8 @@ func (a *API) ReaderOrderInfo(c *http.Request) (*CallbackOrder, string, error) { // QueryOrderDetail 自配送查询订单详情 func (a *API) QueryOrderDetail(req *request2.AlibabaAelophyOrderGetRequest) (*domain.AlibabaAelophyOrderGetOrderResponse, error) { - globals.SugarLogger.Debugf("req ===== %s", utils.Format4Output(req, false)) - globals.SugarLogger.Debugf("req ===== %s", utils.Format4Output(a, false)) client := ability591.NewAbility591(&a.client) data, _ := client.AlibabaAelophyOrderGet(req, a.token) - globals.SugarLogger.Debugf("requestId[%s],err[%s]", data.RequestId, utils.Format4Output(data, false)) if !*data.ApiResult.Success { return nil, fmt.Errorf(*data.ApiResult.ErrMsg) }