finance
黄伟 2 years ago
parent 0aafb46197
commit bed50a561b

@ -145,3 +145,44 @@ func (o *order) Lists(ctx context.Context, args ArgsRetailOrderLists) (reply Rep
err = xClient.Call(ctx, "Lists", args, &reply)
return
}
type OrderInfo struct {
OrderId uint `json:"orderId"`
CustomerId uint `json:"customerId"`
OrderSn uint64 `json:"orderSn"`
ReceiverName string `json:"receiverName"`
ReceiverMobile string `json:"receiverMobile"`
Address string `json:"address"`
FreightFee decimal.Decimal `json:"freightFee"`
OrderFee decimal.Decimal `json:"orderFee"`
PayTime int64 `json:"payTime"`
FinishAt int64 `json:"finishAt"`
Status uint `json:"status"`
Skus []OrderSku `json:"skus"`
Packages []OrderPackage `json:"packages"`
}
type OrderSku struct {
Id uint `json:"id"`
SkuId uint `json:"skuId"`
Name string `json:"name"`
SupplyPrice decimal.Decimal `json:"supplyPrice"`
Rate decimal.Decimal `json:"rate"`
ImgUrl string `json:"imgUrl"`
Quantity uint `json:"quantity"`
}
type OrderPackage struct {
LogisticsName string `json:"logisticsName"`
WaybillCode string `json:"waybillCode"`
}
// Info @Title 订单详情
func (o *order) Info(ctx context.Context, orderSn string) (reply OrderInfo, err error) {
xClient, err := client.GetClient(o)
if err != nil {
return
}
err = xClient.Call(ctx, "Info", orderSn, &reply)
return
}

Loading…
Cancel
Save