This commit is contained in:
laodaming 2023-09-21 14:41:20 +08:00
parent bdc5b6edb7
commit affd0dc9bb
3 changed files with 6 additions and 25 deletions

View File

@ -44,23 +44,7 @@ func (l *GetCartsLogic) GetCarts(req *types.GetCartsReq, userinfo *auth.UserInfo
if req.CurrentPage <= 0 {
req.CurrentPage = constants.DEFAULT_PAGE
}
//获取全部购物车id
allCratIds, count, err := l.svcCtx.AllModels.FsShoppingCart.GetAllCartsByParam(l.ctx, gmodel.GetAllCartsByParamReq{
UserId: userinfo.UserId,
Fields: "id",
Sort: "id DESC",
Page: 1,
Limit: 1000,
})
if err != nil {
logx.Error(err)
return resp.SetStatusWithMessage(basic.CodeDbSqlErr, "system err:failed to get your shopping carts")
}
ids := make([]int64, 0, count)
for _, v := range allCratIds {
ids = append(ids, v.Id)
}
limit := 10
limit := 300
//获取用户购物车列表
carts, total, err := l.svcCtx.AllModels.FsShoppingCart.GetAllCartsByParam(l.ctx, gmodel.GetAllCartsByParamReq{
UserId: userinfo.UserId,
@ -224,7 +208,6 @@ func (l *GetCartsLogic) GetCarts(req *types.GetCartsReq, userinfo *auth.UserInfo
CurrentPage: req.CurrentPage,
PerPage: limit,
},
AllCartIdArray: ids,
CartList: list,
})
}

View File

@ -35,7 +35,6 @@ type GetCartsReq struct {
type GetCartsRsp struct {
Meta Meta `json:"meta"` //分页信息
AllCartIdArray []int64 `json:"all_cartId_array"` //全部购物车id不分页
CartList []CartItem `json:"cart_list"`
}

View File

@ -53,7 +53,6 @@ type GetCartsReq {
}
type GetCartsRsp {
Meta Meta `json:"meta"` //分页信息
AllCartIdArray []int64 `json:"all_cartId_array"` //全部购物车id不分页
CartList []CartItem `json:"cart_list"`
}
type CartItem {