fix:购物车下单
This commit is contained in:
parent
359e67e281
commit
e8958599ac
|
@ -115,7 +115,7 @@ type OrderProduct struct {
|
||||||
ProductName string `json:"product_name"` // 商品名称
|
ProductName string `json:"product_name"` // 商品名称
|
||||||
ItemPrice AmountInfo `json:"product_price"` // 商品单价
|
ItemPrice AmountInfo `json:"product_price"` // 商品单价
|
||||||
ProductSnapshot map[string]interface{} `json:"product_snapshot"` // 商品快照
|
ProductSnapshot map[string]interface{} `json:"product_snapshot"` // 商品快照
|
||||||
ShoppingCartSnapshot FsShoppingCart `json:"shopping_cart_snapshot"` // 购物车快照
|
ShoppingCartSnapshot *FsShoppingCart `json:"shopping_cart_snapshot"` // 购物车快照
|
||||||
DiyInformation UserDiyInformation `json:"diy_information"`
|
DiyInformation UserDiyInformation `json:"diy_information"`
|
||||||
FittingInfo FittingInfo `json:"fitting_info"`
|
FittingInfo FittingInfo `json:"fitting_info"`
|
||||||
ProductCover string `json:"product_cover"` // 商品封面
|
ProductCover string `json:"product_cover"` // 商品封面
|
||||||
|
|
|
@ -280,7 +280,7 @@ func (d *defaultOrder) Create(ctx context.Context, in *CreateReq) (res *CreateRe
|
||||||
OriginalCurrency: in.OriginalCurrency,
|
OriginalCurrency: in.OriginalCurrency,
|
||||||
}),
|
}),
|
||||||
ProductSnapshot: productSnapshot,
|
ProductSnapshot: productSnapshot,
|
||||||
ShoppingCartSnapshot: shoppingCart.FsShoppingCart,
|
ShoppingCartSnapshot: &shoppingCart.FsShoppingCart,
|
||||||
ProductSn: *shoppingCart.ShoppingCartProduct.Sn,
|
ProductSn: *shoppingCart.ShoppingCartProduct.Sn,
|
||||||
DiyInformation: shoppingCartSnapshot.UserDiyInformation,
|
DiyInformation: shoppingCartSnapshot.UserDiyInformation,
|
||||||
FittingInfo: shoppingCartSnapshot.FittingInfo,
|
FittingInfo: shoppingCartSnapshot.FittingInfo,
|
||||||
|
|
Loading…
Reference in New Issue
Block a user