本文整理汇总了Golang中go2o/src/core/domain/interface/shopping.ICart.GetDomainId方法的典型用法代码示例。如果您正苦于以下问题:Golang ICart.GetDomainId方法的具体用法?Golang ICart.GetDomainId怎么用?Golang ICart.GetDomainId使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类go2o/src/core/domain/interface/shopping.ICart
的用法示例。
在下文中一共展示了ICart.GetDomainId方法的2个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Golang代码示例。
示例1: parseDtoCart
func (this *shoppingService) parseDtoCart(c shopping.ICart) *dto.ShoppingCart {
var cart = new(dto.ShoppingCart)
v := c.GetValue()
cart.Id = c.GetDomainId()
cart.BuyerId = v.BuyerId
cart.CartKey = v.CartKey
cart.UpdateTime = v.UpdateTime
t, f := c.GetFee()
cart.TotalFee = t
cart.OrderFee = f
cart.Summary = c.GetSummary()
cart.IsBought = v.IsBought
if v.Items != nil {
if l := len(v.Items); l != 0 {
cart.Items = make([]*dto.CartItem, l)
for i, v := range v.Items {
cart.Items[i] = &dto.CartItem{
GoodsId: v.GoodsId,
GoodsName: v.Name,
GoodsNo: v.GoodsNo,
SmallTitle: v.SmallTitle,
GoodsImage: v.Image,
Num: v.Num,
Price: v.Price,
SalePrice: v.SalePrice,
}
}
}
}
return cart
}
示例2: Combine
// 合并购物车,并返回新的购物车
func (this *Cart) Combine(c shopping.ICart) (shopping.ICart, error) {
if c.GetDomainId() != this.GetDomainId() {
for _, v := range c.GetValue().Items {
this.AddItem(v.GoodsId, v.Num)
}
}
return this, nil
}