This commit is contained in:
laodaming 2023-09-14 18:40:37 +08:00
parent 9c178b2add
commit 440dd1cefc

View File

@ -118,7 +118,10 @@ func (l *GetCartsLogic) GetCarts(req *types.GetCartsReq, userinfo *auth.UserInfo
logx.Error("VerifyShoppingCartSnapshotDataChange err:", err.Error()) logx.Error("VerifyShoppingCartSnapshotDataChange err:", err.Error())
return resp.SetStatusWithMessage(basic.CodeServiceErr, "system err:failed to check shopping cart change data") return resp.SetStatusWithMessage(basic.CodeServiceErr, "system err:failed to check shopping cart change data")
} }
//for index /*list := make([]types.CartItem, 0, lenCarts)
for index := range carts {
}*/
return resp.SetStatus(basic.CodeOK) return resp.SetStatus(basic.CodeOK)
} }