新增药品订单详情-wuliu

This commit is contained in:
wucongxing 2023-09-11 15:30:28 +08:00
parent 21812f4e96
commit 71c39e3829

View File

@ -134,7 +134,17 @@ func (r *OrderProductService) GetOrderProductLogistics(orderProductId int64) (u
return nil, nil
}
u = &orderProductLogisticsResponse.OrderProductLogistics{}
u = &orderProductLogisticsResponse.OrderProductLogistics{
LogisticsId: fmt.Sprintf("%d", orderProductLogistics.LogisticsId),
OrderProductId: fmt.Sprintf("%d", orderProductLogistics.OrderProductId),
LogisticsStatus: orderProductLogistics.LogisticsStatus,
LogisticsNo: orderProductLogistics.LogisticsNo,
CompanyName: orderProductLogistics.CompanyName,
CompanyCode: orderProductLogistics.CompanyCode,
LogisticsContent: orderProductLogistics.LogisticsContent,
CreatedAt: orderProductLogistics.CreatedAt,
UpdatedAt: orderProductLogistics.UpdatedAt,
}
return u, nil
}