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