更新了商品类别
This commit is contained in:
parent
c008edf059
commit
79f8972538
|
@ -30,6 +30,7 @@ import org.springframework.web.bind.annotation.RequestBody;
|
||||||
import org.springframework.web.bind.annotation.RequestMapping;
|
import org.springframework.web.bind.annotation.RequestMapping;
|
||||||
import org.springframework.web.bind.annotation.RestController;
|
import org.springframework.web.bind.annotation.RestController;
|
||||||
|
|
||||||
|
import java.math.BigDecimal;
|
||||||
import java.util.List;
|
import java.util.List;
|
||||||
|
|
||||||
@RestController
|
@RestController
|
||||||
|
@ -68,12 +69,12 @@ public class CartRecordController {
|
||||||
|
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* 用户更新商品至购物车
|
* 小程序端用户更新购物车中的商品数量
|
||||||
* @param cartRecordUpdateRequestList 购物车记录列表更新请求体
|
* @param cartRecordUpdateRequestList 购物车记录列表更新请求体
|
||||||
* @return 是否更新成功
|
* @return 是否更新成功
|
||||||
*/
|
*/
|
||||||
@PostMapping("/update")
|
@PostMapping("/update")
|
||||||
@Operation(summary = "小程序端用户更新商品至购物车", description = "参数:购物车记录更新请求体,权限:所有人,方法名:updateCartRecord")
|
@Operation(summary = "小程序端用户更新购物车中的商品数量", description = "参数:购物车记录更新请求体,权限:所有人,方法名:updateCartRecord")
|
||||||
public BaseResponse<Boolean> updateCartRecord(@RequestBody List<CartRecordUpdateRequest> cartRecordUpdateRequestList, HttpServletRequest request) {
|
public BaseResponse<Boolean> updateCartRecord(@RequestBody List<CartRecordUpdateRequest> cartRecordUpdateRequestList, HttpServletRequest request) {
|
||||||
if (CollectionUtils.isEmpty(cartRecordUpdateRequestList)) {
|
if (CollectionUtils.isEmpty(cartRecordUpdateRequestList)) {
|
||||||
throw new BusinessException(ErrorCode.PARAMS_ERROR);
|
throw new BusinessException(ErrorCode.PARAMS_ERROR);
|
||||||
|
@ -81,9 +82,17 @@ public class CartRecordController {
|
||||||
User loginUser = userService.getLoginUser(request);
|
User loginUser = userService.getLoginUser(request);
|
||||||
Long userId = loginUser.getId();
|
Long userId = loginUser.getId();
|
||||||
List<CartRecord> cartRecordList = cartRecordUpdateRequestList.stream().map(cartRecordUpdateRequest -> {
|
List<CartRecord> cartRecordList = cartRecordUpdateRequestList.stream().map(cartRecordUpdateRequest -> {
|
||||||
|
Long id = cartRecordUpdateRequest.getId();
|
||||||
|
CartRecord cart = cartRecordService.getById(id);
|
||||||
|
ThrowUtils.throwIf(cart == null, ErrorCode.OPERATION_ERROR, "该项商品已被移除");
|
||||||
CartRecord cartRecord = new CartRecord();
|
CartRecord cartRecord = new CartRecord();
|
||||||
BeanUtils.copyProperties(cartRecordUpdateRequest, cartRecord);
|
BeanUtils.copyProperties(cartRecordUpdateRequest, cartRecord);
|
||||||
|
Long goodId = cart.getGoodId();
|
||||||
|
Good good = goodService.getById(goodId);
|
||||||
|
ThrowUtils.throwIf(good == null || good.getIsShelves() == 0, ErrorCode.OPERATION_ERROR, "购物车商品更新失败");
|
||||||
|
cartRecord.setSubtotal(good.getPrice().multiply(BigDecimal.valueOf(cartRecord.getQuantity())));
|
||||||
cartRecord.setUserId(userId);
|
cartRecord.setUserId(userId);
|
||||||
|
cartRecord.setGoodId(goodId);
|
||||||
// 校验
|
// 校验
|
||||||
cartRecordService.validCart(cartRecord, true);
|
cartRecordService.validCart(cartRecord, true);
|
||||||
return cartRecord;
|
return cartRecord;
|
||||||
|
@ -125,6 +134,9 @@ public class CartRecordController {
|
||||||
QueryWrapper<CartRecord> queryWrapper = new QueryWrapper<>();
|
QueryWrapper<CartRecord> queryWrapper = new QueryWrapper<>();
|
||||||
queryWrapper.eq("userId", userId);
|
queryWrapper.eq("userId", userId);
|
||||||
List<CartRecord> list = cartRecordService.list(queryWrapper);
|
List<CartRecord> list = cartRecordService.list(queryWrapper);
|
||||||
|
// 校验购物车信息的准确性
|
||||||
|
cartRecordService.validIsConsistent(list);
|
||||||
|
// 封装用户购物车中的商品信息
|
||||||
List<CartRecordVO> cartRecordVOList = cartRecordService.transformToCartRecordVOList(list);
|
List<CartRecordVO> cartRecordVOList = cartRecordService.transformToCartRecordVOList(list);
|
||||||
return ResultUtils.success(cartRecordVOList);
|
return ResultUtils.success(cartRecordVOList);
|
||||||
}
|
}
|
||||||
|
|
|
@ -118,12 +118,12 @@ public class UserController {
|
||||||
|
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* 获取当前登录用户
|
* 小程序端(Web端)用户获取登录信息
|
||||||
* @param request http
|
* @param request http
|
||||||
* @return 用户登录信息
|
* @return 用户登录信息
|
||||||
*/
|
*/
|
||||||
@GetMapping("/get/login")
|
@GetMapping("/get/login")
|
||||||
@Operation(summary = "小程序端用户获取登录信息", description = "参数:无,权限:所有人, 方法名:getLoginUser")
|
@Operation(summary = "小程序端(Web端)用户获取登录信息", description = "参数:无,权限:所有人, 方法名:getLoginUser")
|
||||||
public BaseResponse<UserVO> getLoginUser(HttpServletRequest request) {
|
public BaseResponse<UserVO> getLoginUser(HttpServletRequest request) {
|
||||||
User user = userService.getLoginUser(request);
|
User user = userService.getLoginUser(request);
|
||||||
return ResultUtils.success(userService.getUserVO(user));
|
return ResultUtils.success(userService.getUserVO(user));
|
||||||
|
|
|
@ -5,10 +5,9 @@ import lombok.Data;
|
||||||
|
|
||||||
import java.io.Serial;
|
import java.io.Serial;
|
||||||
import java.io.Serializable;
|
import java.io.Serializable;
|
||||||
import java.math.BigDecimal;
|
|
||||||
|
|
||||||
@Data
|
@Data
|
||||||
@Schema(description = "购物车记录添加请求体", requiredProperties = {"userId", "goodId", "quantity", "subtotal"})
|
@Schema(description = "购物车记录添加请求体", requiredProperties = {"goodId", "quantity"})
|
||||||
public class CartRecordAddRequest implements Serializable {
|
public class CartRecordAddRequest implements Serializable {
|
||||||
|
|
||||||
/**
|
/**
|
||||||
|
@ -23,13 +22,6 @@ public class CartRecordAddRequest implements Serializable {
|
||||||
@Schema(description = "商品数量(quantity > 0)", example = "3")
|
@Schema(description = "商品数量(quantity > 0)", example = "3")
|
||||||
private Integer quantity;
|
private Integer quantity;
|
||||||
|
|
||||||
/**
|
|
||||||
* 小计
|
|
||||||
*/
|
|
||||||
@Schema(description = "小计(商品单价 * 数量)", example = "60")
|
|
||||||
private BigDecimal subtotal;
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
@Serial
|
@Serial
|
||||||
private static final long serialVersionUID = 1L;
|
private static final long serialVersionUID = 1L;
|
||||||
|
|
|
@ -5,10 +5,9 @@ import lombok.Data;
|
||||||
|
|
||||||
import java.io.Serial;
|
import java.io.Serial;
|
||||||
import java.io.Serializable;
|
import java.io.Serializable;
|
||||||
import java.math.BigDecimal;
|
|
||||||
|
|
||||||
@Data
|
@Data
|
||||||
@Schema(description = "购物车记录更新请求体", requiredProperties = {"id", "userId", "goodId", "quantity", "subtotal"})
|
@Schema(description = "购物车记录更新请求体", requiredProperties = {"id", "quantity"})
|
||||||
public class CartRecordUpdateRequest implements Serializable {
|
public class CartRecordUpdateRequest implements Serializable {
|
||||||
|
|
||||||
/**
|
/**
|
||||||
|
@ -18,23 +17,12 @@ public class CartRecordUpdateRequest implements Serializable {
|
||||||
private Long id;
|
private Long id;
|
||||||
|
|
||||||
|
|
||||||
/**
|
|
||||||
* 商品id
|
|
||||||
*/
|
|
||||||
@Schema(description = "商品id(id > 0)", example = "20")
|
|
||||||
private Long goodId;
|
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* 数量
|
* 数量
|
||||||
*/
|
*/
|
||||||
@Schema(description = "商品数量(quantity > 0)", example = "3")
|
@Schema(description = "商品数量(quantity > 0)", example = "3")
|
||||||
private Integer quantity;
|
private Integer quantity;
|
||||||
|
|
||||||
/**
|
|
||||||
* 小计
|
|
||||||
*/
|
|
||||||
@Schema(description = "小计(商品单价 * 数量)", example = "60")
|
|
||||||
private BigDecimal subtotal;
|
|
||||||
|
|
||||||
|
|
||||||
@Serial
|
@Serial
|
||||||
|
|
|
@ -26,4 +26,10 @@ public interface CartRecordService extends IService<CartRecord> {
|
||||||
* 校验购物车中的商品信息
|
* 校验购物车中的商品信息
|
||||||
*/
|
*/
|
||||||
void validCart(CartRecord cartRecord, boolean update);
|
void validCart(CartRecord cartRecord, boolean update);
|
||||||
|
|
||||||
|
|
||||||
|
/**
|
||||||
|
* 校验购物车信息的准确性
|
||||||
|
*/
|
||||||
|
void validIsConsistent(List<CartRecord> list);
|
||||||
}
|
}
|
||||||
|
|
|
@ -48,6 +48,8 @@ public class CartRecordServiceImpl extends ServiceImpl<CartRecordMapper, CartRec
|
||||||
User loginUser = userService.getLoginUser(request);
|
User loginUser = userService.getLoginUser(request);
|
||||||
Long userId = loginUser.getId();
|
Long userId = loginUser.getId();
|
||||||
Long goodId = cartRecordAddRequest.getGoodId();
|
Long goodId = cartRecordAddRequest.getGoodId();
|
||||||
|
Good good = goodService.getById(goodId);
|
||||||
|
ThrowUtils.throwIf(good == null || good.getIsShelves() == 0, ErrorCode.OPERATION_ERROR, "商品不存在或者已下架");
|
||||||
QueryWrapper<CartRecord> queryWrapper = new QueryWrapper<>();
|
QueryWrapper<CartRecord> queryWrapper = new QueryWrapper<>();
|
||||||
queryWrapper.eq("userId", userId);
|
queryWrapper.eq("userId", userId);
|
||||||
queryWrapper.eq("goodId", goodId);
|
queryWrapper.eq("goodId", goodId);
|
||||||
|
@ -55,7 +57,7 @@ public class CartRecordServiceImpl extends ServiceImpl<CartRecordMapper, CartRec
|
||||||
if (cartRecord != null) {
|
if (cartRecord != null) {
|
||||||
// 如果购物车中已存在该商品, 就叠加数量
|
// 如果购物车中已存在该商品, 就叠加数量
|
||||||
cartRecord.setQuantity(cartRecord.getQuantity() + cartRecordAddRequest.getQuantity());
|
cartRecord.setQuantity(cartRecord.getQuantity() + cartRecordAddRequest.getQuantity());
|
||||||
cartRecord.setSubtotal(cartRecord.getSubtotal().add(cartRecordAddRequest.getSubtotal()));
|
cartRecord.setSubtotal(good.getPrice().multiply(BigDecimal.valueOf(cartRecord.getQuantity())));
|
||||||
boolean result = this.updateById(cartRecord);
|
boolean result = this.updateById(cartRecord);
|
||||||
ThrowUtils.throwIf(!result, ErrorCode.OPERATION_ERROR, "更新购物车商品数量失败");
|
ThrowUtils.throwIf(!result, ErrorCode.OPERATION_ERROR, "更新购物车商品数量失败");
|
||||||
} else {
|
} else {
|
||||||
|
@ -63,6 +65,7 @@ public class CartRecordServiceImpl extends ServiceImpl<CartRecordMapper, CartRec
|
||||||
CartRecord cartGood = new CartRecord();
|
CartRecord cartGood = new CartRecord();
|
||||||
BeanUtils.copyProperties(cartRecordAddRequest, cartGood);
|
BeanUtils.copyProperties(cartRecordAddRequest, cartGood);
|
||||||
cartGood.setUserId(userId);
|
cartGood.setUserId(userId);
|
||||||
|
cartGood.setSubtotal(good.getPrice().multiply(BigDecimal.valueOf(cartGood.getQuantity())));
|
||||||
// 校验
|
// 校验
|
||||||
this.validCart(cartGood, false);
|
this.validCart(cartGood, false);
|
||||||
boolean result = this.save(cartGood);
|
boolean result = this.save(cartGood);
|
||||||
|
@ -124,4 +127,22 @@ public class CartRecordServiceImpl extends ServiceImpl<CartRecordMapper, CartRec
|
||||||
throw new BusinessException(ErrorCode.PARAMS_ERROR, "价格错误");
|
throw new BusinessException(ErrorCode.PARAMS_ERROR, "价格错误");
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
|
/**
|
||||||
|
* 校验购物车信息的准确性
|
||||||
|
*/
|
||||||
|
@Override
|
||||||
|
public void validIsConsistent(List<CartRecord> list) {
|
||||||
|
for (CartRecord cartRecord : list) {
|
||||||
|
// 校验购物车中的商品是否存在
|
||||||
|
Long goodId = cartRecord.getGoodId();
|
||||||
|
Good good = goodService.getById(goodId);
|
||||||
|
ThrowUtils.throwIf(good == null || good.getIsShelves() == 0, ErrorCode.OPERATION_ERROR, "商品不存在或者已下架");
|
||||||
|
|
||||||
|
// 校验购物车中的商品数量
|
||||||
|
Integer inventory = good.getInventory();
|
||||||
|
Integer quantity = cartRecord.getQuantity();
|
||||||
|
}
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue
Block a user