This commit is contained in:
邹宗楠
2022-11-09 18:58:07 +08:00
parent 64ee09a388
commit 68090f2eff
4 changed files with 24 additions and 10 deletions

View File

@@ -487,8 +487,6 @@ func (c *DeliveryHandler) GetRidderPosition(ctx *jxcontext.Context, vendorOrgCod
// 获取骑手信息(订单详情)
func (c *DeliveryHandler) GetRiderInfo(orderId string, deliveryId int64, mtPeisongId string) (rider *mtpsapi.RiderInfo, err error) {
order, err := api.DadaAPI.QueryOrderInfo(orderId)
globals.SugarLogger.Debugf("order111111111111 := %s", utils.Format4Output(order, false))
globals.SugarLogger.Debugf("order111111111111 := %s", utils.Format4Output(err, false))
if err != nil {
return nil, err
}
@@ -540,8 +538,5 @@ func (c *DeliveryHandler) GetRiderInfo(orderId string, deliveryId int64, mtPeiso
result.LogisticsStatus = 0
result.LogisticsContext = model.RiderGetOrderDeliverOther
}
globals.SugarLogger.Debugf("dadaresult_order := %s", utils.Format4Output(order, false))
globals.SugarLogger.Debugf("result_result := %s", utils.Format4Output(result, false))
return result, nil
}