You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
43 lines
990 B
43 lines
990 B
2 years ago
|
package wholesale
|
||
|
|
||
|
import (
|
||
|
"context"
|
||
|
"git.oa00.com/supply-chain/service/client"
|
||
|
"github.com/shopspring/decimal"
|
||
|
)
|
||
|
|
||
|
const (
|
||
|
OrderCancelStatusSuccess = 1 // 取消成功
|
||
|
OrderCancelStatusFail = 2 // 取消失败
|
||
|
)
|
||
|
|
||
|
type order struct {
|
||
|
}
|
||
|
type ArgsOrderSplit struct {
|
||
|
Source source // 商品来源
|
||
|
ParentSourceOrderSn string // 上级订单号
|
||
|
OrderSubs []OrderSub // 子订单
|
||
|
}
|
||
|
type OrderSub struct {
|
||
|
SourceOrderSn string // 供应商订单号
|
||
|
FreightFee decimal.Decimal // 运费
|
||
|
OrderFee decimal.Decimal // 订单金额
|
||
|
Skus []OrderSplitSkuItem // 拆分订单sku
|
||
|
}
|
||
|
type OrderSplitSkuItem struct {
|
||
|
SourceSkuId string
|
||
|
Quantity uint
|
||
|
SupplyPrice decimal.Decimal
|
||
|
}
|
||
|
|
||
|
// Split @Title 拆单
|
||
|
func (o *order) Split(ctx context.Context, args ArgsOrderSplit) (err error) {
|
||
|
xClient, err := client.GetClient(o)
|
||
|
if err != nil {
|
||
|
return
|
||
|
}
|
||
|
reply := 0
|
||
|
err = xClient.Call(ctx, "Split", args, &reply)
|
||
|
return
|
||
|
}
|