|
|
|
@ -9,12 +9,15 @@ import (
|
|
|
|
|
type order struct {
|
|
|
|
|
}
|
|
|
|
|
type ArgsOrderSplit struct {
|
|
|
|
|
SourceOrderSn string // 供应商订单号
|
|
|
|
|
Source source // 商品来源
|
|
|
|
|
ParentSourceOrderSn string // 上级订单号
|
|
|
|
|
FreightFee decimal.Decimal // 运费
|
|
|
|
|
OrderFee decimal.Decimal // 订单金额
|
|
|
|
|
Skus []OrderSplitSkuItem // 拆分订单sku
|
|
|
|
|
SourceOrderSn string // 供应商订单号
|
|
|
|
|
Source source // 商品来源
|
|
|
|
|
ParentSourceOrderSn string // 上级订单号
|
|
|
|
|
OrderSubs []OrderSub // 子订单
|
|
|
|
|
}
|
|
|
|
|
type OrderSub struct {
|
|
|
|
|
FreightFee decimal.Decimal // 运费
|
|
|
|
|
OrderFee decimal.Decimal // 订单金额
|
|
|
|
|
Skus []OrderSplitSkuItem // 拆分订单sku
|
|
|
|
|
}
|
|
|
|
|
type OrderSplitSkuItem struct {
|
|
|
|
|
SourceSkuId string
|
|
|
|
|