|
|
@ -139,20 +139,28 @@ type RetailOrderSearch struct {
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
type RetailOrderItem struct {
|
|
|
|
type RetailOrderItem struct {
|
|
|
|
Id uint `json:"id"`
|
|
|
|
Id uint `json:"id"`
|
|
|
|
OrderSn string `json:"orderSn"` // 原始订单号
|
|
|
|
OrderSn string `json:"orderSn"` // 原始订单号
|
|
|
|
OrderSubSn string `json:"orderSubSn"` // 订单号
|
|
|
|
OrderSubSn string `json:"orderSubSn"` // 订单号
|
|
|
|
SourceOrderSn string `json:"sourceOrderSn"` // 供应商订单号
|
|
|
|
SourceOrderSn string `json:"sourceOrderSn"` // 供应商订单号
|
|
|
|
SourceName string `json:"sourceName"` // 供应商名称
|
|
|
|
SourceName string `json:"sourceName"` // 供应商名称
|
|
|
|
CustomerName string `json:"customerName"` // 客户名称
|
|
|
|
CustomerName string `json:"customerName"` // 客户名称
|
|
|
|
OrderStatus uint `json:"orderStatus"` // 订单状态
|
|
|
|
OrderStatus uint `json:"orderStatus"` // 订单状态
|
|
|
|
OrderFee decimal.Decimal `json:"orderFee"` // 订单金额
|
|
|
|
OrderFee decimal.Decimal `json:"orderFee"` // 订单金额
|
|
|
|
FreightFee decimal.Decimal `json:"freightFee"` // 运费
|
|
|
|
FreightFee decimal.Decimal `json:"freightFee"` // 运费
|
|
|
|
SupplyOrderFee decimal.Decimal `json:"supplyOrderFee"` // 供应商订单金额
|
|
|
|
SupplyOrderFee decimal.Decimal `json:"supplyOrderFee"` // 供应商订单金额
|
|
|
|
PayTime int64 `json:"payTime"` // 支付时间
|
|
|
|
PayTime int64 `json:"payTime"` // 支付时间
|
|
|
|
FinishAt int64 `json:"finishAt"` // 完成时间
|
|
|
|
FinishAt int64 `json:"finishAt"` // 完成时间
|
|
|
|
CloseAt int64 `json:"closeAt"` // 关闭时间
|
|
|
|
CloseAt int64 `json:"closeAt"` // 关闭时间
|
|
|
|
StockOutAt int64 `json:"stockOutAt"` // 发货时间
|
|
|
|
StockOutAt int64 `json:"stockOutAt"` // 发货时间
|
|
|
|
|
|
|
|
SkuIds []RetailOrderSubSkuItem `json:"skuIds"` // 商品id
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
type RetailOrderSubSkuItem struct {
|
|
|
|
|
|
|
|
SkuId uint `json:"skuId"` // skuId
|
|
|
|
|
|
|
|
SourceSkuId uint `json:"sourceSkuId"` // 供应商skuId
|
|
|
|
|
|
|
|
Quality uint `json:"quality"` // 数量
|
|
|
|
|
|
|
|
SupplyPrice decimal.Decimal `json:"supplyPrice"` // 采购价
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
type ReplyRetailOrderLists struct {
|
|
|
|
type ReplyRetailOrderLists struct {
|
|
|
|