This commit is contained in:
邹宗楠
2022-12-12 09:33:24 +08:00
parent cec915fda9
commit 632c96f059
14 changed files with 432 additions and 89 deletions

View File

@@ -289,6 +289,13 @@ func (v *OrderStatus) TableIndex() [][]string {
}
}
// 更新物料订单物流信息
type UpdateMaterialLogistic struct {
OrderId string `json:"orderId"` // 订单id
LogisticId string `json:"logisticId"` // 物料订单id
LogisticFee int64 `json:"logisticFee"` // 物流价格 分
}
func Order2Status(order *GoodsOrder) (retVal *OrderStatus) {
retVal = &OrderStatus{
VendorOrderID: order.VendorOrderID,