更新了商品管理模块
This commit is contained in:
parent
6fa130e59d
commit
42a5e98f7a
|
@ -1,6 +1,7 @@
|
||||||
package com.cultural.heritage.controller.book;
|
package com.cultural.heritage.controller.book;
|
||||||
|
|
||||||
|
|
||||||
|
import com.baomidou.mybatisplus.core.conditions.update.UpdateWrapper;
|
||||||
import com.cultural.heritage.annotation.AuthCheck;
|
import com.cultural.heritage.annotation.AuthCheck;
|
||||||
import com.cultural.heritage.common.BaseResponse;
|
import com.cultural.heritage.common.BaseResponse;
|
||||||
import com.cultural.heritage.common.ErrorCode;
|
import com.cultural.heritage.common.ErrorCode;
|
||||||
|
@ -12,12 +13,15 @@ import com.cultural.heritage.model.dto.CommonRequest;
|
||||||
import com.cultural.heritage.model.dto.clothesgrade.ClothesGradeAddRequest;
|
import com.cultural.heritage.model.dto.clothesgrade.ClothesGradeAddRequest;
|
||||||
import com.cultural.heritage.model.dto.clothesgrade.ClothesGradeUpdateRequest;
|
import com.cultural.heritage.model.dto.clothesgrade.ClothesGradeUpdateRequest;
|
||||||
import com.cultural.heritage.model.entity.ClothesGrade;
|
import com.cultural.heritage.model.entity.ClothesGrade;
|
||||||
|
import com.cultural.heritage.model.entity.ClothesInfo;
|
||||||
import com.cultural.heritage.model.vo.clothesgrade.ClothesGradeVO;
|
import com.cultural.heritage.model.vo.clothesgrade.ClothesGradeVO;
|
||||||
import com.cultural.heritage.service.book.ClothesGradeService;
|
import com.cultural.heritage.service.book.ClothesGradeService;
|
||||||
|
import com.cultural.heritage.service.book.ClothesInfoService;
|
||||||
import io.swagger.v3.oas.annotations.Operation;
|
import io.swagger.v3.oas.annotations.Operation;
|
||||||
import io.swagger.v3.oas.annotations.tags.Tag;
|
import io.swagger.v3.oas.annotations.tags.Tag;
|
||||||
import jakarta.annotation.Resource;
|
import jakarta.annotation.Resource;
|
||||||
import lombok.extern.slf4j.Slf4j;
|
import lombok.extern.slf4j.Slf4j;
|
||||||
|
import org.apache.commons.lang3.StringUtils;
|
||||||
import org.springframework.beans.BeanUtils;
|
import org.springframework.beans.BeanUtils;
|
||||||
import org.springframework.web.bind.annotation.PostMapping;
|
import org.springframework.web.bind.annotation.PostMapping;
|
||||||
import org.springframework.web.bind.annotation.RequestBody;
|
import org.springframework.web.bind.annotation.RequestBody;
|
||||||
|
@ -37,6 +41,10 @@ public class ClothesGradeController {
|
||||||
private ClothesGradeService clothesGradeService;
|
private ClothesGradeService clothesGradeService;
|
||||||
|
|
||||||
|
|
||||||
|
@Resource
|
||||||
|
private ClothesInfoService clothesInfoService;
|
||||||
|
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Web端管理员添加服装等级
|
* Web端管理员添加服装等级
|
||||||
* @param clothesGradeAddRequest 服装等级添加请求体
|
* @param clothesGradeAddRequest 服装等级添加请求体
|
||||||
|
@ -51,6 +59,7 @@ public class ClothesGradeController {
|
||||||
}
|
}
|
||||||
ClothesGrade clothesGrade = new ClothesGrade();
|
ClothesGrade clothesGrade = new ClothesGrade();
|
||||||
BeanUtils.copyProperties(clothesGradeAddRequest, clothesGrade);
|
BeanUtils.copyProperties(clothesGradeAddRequest, clothesGrade);
|
||||||
|
// 校验
|
||||||
clothesGradeService.validClothesGrade(clothesGrade, false);
|
clothesGradeService.validClothesGrade(clothesGrade, false);
|
||||||
boolean save = clothesGradeService.save(clothesGrade);
|
boolean save = clothesGradeService.save(clothesGrade);
|
||||||
ThrowUtils.throwIf(!save, ErrorCode.OPERATION_ERROR);
|
ThrowUtils.throwIf(!save, ErrorCode.OPERATION_ERROR);
|
||||||
|
@ -71,11 +80,30 @@ public class ClothesGradeController {
|
||||||
if (clothesGradeUpdateRequest == null || clothesGradeUpdateRequest.getId() <= 0) {
|
if (clothesGradeUpdateRequest == null || clothesGradeUpdateRequest.getId() <= 0) {
|
||||||
throw new BusinessException(ErrorCode.PARAMS_ERROR);
|
throw new BusinessException(ErrorCode.PARAMS_ERROR);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
// 获取原有服装等级名称
|
||||||
|
Long id = clothesGradeUpdateRequest.getId();
|
||||||
|
ClothesGrade originClothesGrade = clothesGradeService.getById(id);
|
||||||
|
String originClothesType = originClothesGrade.getClothesType();
|
||||||
|
// 获取目标服装等级名称
|
||||||
|
String targetClothesType = clothesGradeUpdateRequest.getClothesType();
|
||||||
|
// 判空
|
||||||
|
if (StringUtils.isAnyBlank(originClothesType, targetClothesType)) {
|
||||||
|
throw new BusinessException(ErrorCode.PARAMS_ERROR, "服装等级参数为空");
|
||||||
|
}
|
||||||
|
// 更新原有服装等级下所有服装的等级
|
||||||
|
UpdateWrapper<ClothesInfo> updateWrapper = new UpdateWrapper<>();
|
||||||
|
updateWrapper.eq("clothesType", originClothesType).set("clothesType", targetClothesType);
|
||||||
|
boolean update = clothesInfoService.update(updateWrapper);
|
||||||
|
ThrowUtils.throwIf(!update, ErrorCode.OPERATION_ERROR, "服装等级名称更新失败");
|
||||||
|
// 更新服装等级信息
|
||||||
ClothesGrade clothesGrade = new ClothesGrade();
|
ClothesGrade clothesGrade = new ClothesGrade();
|
||||||
BeanUtils.copyProperties(clothesGradeUpdateRequest, clothesGrade);
|
BeanUtils.copyProperties(clothesGradeUpdateRequest, clothesGrade);
|
||||||
|
// 校验
|
||||||
clothesGradeService.validClothesGrade(clothesGrade, true);
|
clothesGradeService.validClothesGrade(clothesGrade, true);
|
||||||
boolean result = clothesGradeService.updateById(clothesGrade);
|
boolean result = clothesGradeService.updateById(clothesGrade);
|
||||||
ThrowUtils.throwIf(!result, ErrorCode.OPERATION_ERROR);
|
ThrowUtils.throwIf(!result, ErrorCode.OPERATION_ERROR, "服装等级信息更新失败");
|
||||||
|
|
||||||
return ResultUtils.success(true);
|
return ResultUtils.success(true);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
@ -120,7 +120,7 @@ public class GoodController {
|
||||||
good.setType("服务类");
|
good.setType("服务类");
|
||||||
good.setIsGoodType(0);
|
good.setIsGoodType(0);
|
||||||
good.setInventory(1);
|
good.setInventory(1);
|
||||||
good.setFestivalOrder(0);
|
good.setFestivalName("无");
|
||||||
// 校验
|
// 校验
|
||||||
goodService.validGood(good, false);
|
goodService.validGood(good, false);
|
||||||
boolean save = goodService.save(good);
|
boolean save = goodService.save(good);
|
||||||
|
@ -371,7 +371,7 @@ public class GoodController {
|
||||||
long pageSize = serviceGoodQueryRequest.getPageSize();
|
long pageSize = serviceGoodQueryRequest.getPageSize();
|
||||||
GoodQueryRequest goodQueryRequest = new GoodQueryRequest();
|
GoodQueryRequest goodQueryRequest = new GoodQueryRequest();
|
||||||
BeanUtils.copyProperties(serviceGoodQueryRequest, goodQueryRequest);
|
BeanUtils.copyProperties(serviceGoodQueryRequest, goodQueryRequest);
|
||||||
goodQueryRequest.setFestivalOrder(0);
|
goodQueryRequest.setFestivalName("无");
|
||||||
goodQueryRequest.setType("服务类");
|
goodQueryRequest.setType("服务类");
|
||||||
QueryWrapper<Good> goodQueryWrapper = goodService.getGoodQueryWrapper(goodQueryRequest, true);
|
QueryWrapper<Good> goodQueryWrapper = goodService.getGoodQueryWrapper(goodQueryRequest, true);
|
||||||
Page<Good> page = goodService.page(new Page<>(current, pageSize), goodQueryWrapper);
|
Page<Good> page = goodService.page(new Page<>(current, pageSize), goodQueryWrapper);
|
||||||
|
@ -547,7 +547,7 @@ public class GoodController {
|
||||||
good.setType("服务类");
|
good.setType("服务类");
|
||||||
good.setIsGoodType(0);
|
good.setIsGoodType(0);
|
||||||
good.setInventory(1);
|
good.setInventory(1);
|
||||||
good.setFestivalOrder(0);
|
good.setFestivalName("无");
|
||||||
// 校验
|
// 校验
|
||||||
goodService.validGood(good, true);
|
goodService.validGood(good, true);
|
||||||
boolean result = goodService.updateById(good);
|
boolean result = goodService.updateById(good);
|
||||||
|
@ -670,7 +670,7 @@ public class GoodController {
|
||||||
good.setType("服务类");
|
good.setType("服务类");
|
||||||
good.setIsGoodType(0);
|
good.setIsGoodType(0);
|
||||||
good.setInventory(1);
|
good.setInventory(1);
|
||||||
good.setFestivalOrder(0);
|
good.setFestivalName("无");
|
||||||
// 校验
|
// 校验
|
||||||
goodService.validGood(good, true);
|
goodService.validGood(good, true);
|
||||||
boolean result = goodService.updateById(good);
|
boolean result = goodService.updateById(good);
|
||||||
|
|
|
@ -9,7 +9,7 @@ import java.math.BigDecimal;
|
||||||
|
|
||||||
@Data
|
@Data
|
||||||
@Schema(description = "商品添加请求体", requiredProperties = {"name", "type", "price", "goodImg", "intro",
|
@Schema(description = "商品添加请求体", requiredProperties = {"name", "type", "price", "goodImg", "intro",
|
||||||
"introDetail", "detailImg", "label", "inventory", "festivalOrder"})
|
"introDetail", "detailImg", "label", "inventory", "festivalName"})
|
||||||
public class GoodAddRequest implements Serializable {
|
public class GoodAddRequest implements Serializable {
|
||||||
|
|
||||||
|
|
||||||
|
@ -68,10 +68,10 @@ public class GoodAddRequest implements Serializable {
|
||||||
private Integer inventory;
|
private Integer inventory;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* 节日限定序号
|
* 限定节日名称
|
||||||
*/
|
*/
|
||||||
@Schema(description = "节日序号(1代表端午节,2代表中秋节...)", example = "2")
|
@Schema(description = "节日名称(端午节,中秋节)", example = "元旦节")
|
||||||
private Integer festivalOrder;
|
private String festivalName;
|
||||||
|
|
||||||
|
|
||||||
@TableField(exist = false)
|
@TableField(exist = false)
|
||||||
|
|
|
@ -30,10 +30,10 @@ public class GoodQueryRequest extends PageRequest implements Serializable {
|
||||||
private String type;
|
private String type;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* 节日限定序号
|
* 限定节日名称
|
||||||
*/
|
*/
|
||||||
@Schema(description = "节日序号(1代表端午节,2代表中秋节...)", example = "2")
|
@Schema(description = "节日名称(端午节,中秋节)", example = "元旦节")
|
||||||
private Integer festivalOrder;
|
private String festivalName;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* 是否上架
|
* 是否上架
|
||||||
|
|
|
@ -9,7 +9,7 @@ import java.math.BigDecimal;
|
||||||
|
|
||||||
@Data
|
@Data
|
||||||
@Schema(description = "商品更新请求体", requiredProperties = {"id", "name", "type", "price", "goodImg", "intro",
|
@Schema(description = "商品更新请求体", requiredProperties = {"id", "name", "type", "price", "goodImg", "intro",
|
||||||
"introDetail", "detailImg", "label", "inventory", "festivalOrder", "isShelves"})
|
"introDetail", "detailImg", "label", "inventory", "festivalName", "isShelves"})
|
||||||
public class GoodUpdateRequest implements Serializable {
|
public class GoodUpdateRequest implements Serializable {
|
||||||
|
|
||||||
/**
|
/**
|
||||||
|
@ -73,10 +73,10 @@ public class GoodUpdateRequest implements Serializable {
|
||||||
private Integer inventory;
|
private Integer inventory;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* 节日限定序号
|
* 限定节日名称
|
||||||
*/
|
*/
|
||||||
@Schema(description = "节日序号(1代表端午节,2代表中秋节...)", example = "2")
|
@Schema(description = "节日名称(端午节,中秋节)", example = "元旦节")
|
||||||
private Integer festivalOrder;
|
private String festivalName;
|
||||||
|
|
||||||
|
|
||||||
/**
|
/**
|
||||||
|
|
|
@ -8,7 +8,7 @@ import java.io.Serializable;
|
||||||
import java.math.BigDecimal;
|
import java.math.BigDecimal;
|
||||||
|
|
||||||
@Data
|
@Data
|
||||||
@Schema(description = "订单商品信息", requiredProperties = {"name", "type", "price", "goodImg", "festivalOrder", "reserveDate"})
|
@Schema(description = "订单商品信息", requiredProperties = {"name", "type", "price", "goodImg", "festivalName", "reserveDate"})
|
||||||
public class GoodSnapshot implements Serializable {
|
public class GoodSnapshot implements Serializable {
|
||||||
|
|
||||||
|
|
||||||
|
@ -38,10 +38,10 @@ public class GoodSnapshot implements Serializable {
|
||||||
|
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* 节日限定序号
|
* 限定节日名称
|
||||||
*/
|
*/
|
||||||
@Schema(description = "节日序号(1代表端午节,2代表中秋节...)", example = "2")
|
@Schema(description = "节日名称(端午节,中秋节)", example = "元旦节")
|
||||||
private Integer festivalOrder;
|
private String festivalName;
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
|
@ -77,9 +77,9 @@ public class Good implements Serializable {
|
||||||
private Integer isGoodType;
|
private Integer isGoodType;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* 节日限定序号
|
* 限定节日名称
|
||||||
*/
|
*/
|
||||||
private Integer festivalOrder;
|
private String festivalName;
|
||||||
|
|
||||||
|
|
||||||
/**
|
/**
|
||||||
|
|
|
@ -65,9 +65,9 @@ public class GoodPageVO implements Serializable {
|
||||||
private Integer isGoodType;
|
private Integer isGoodType;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* 节日限定序号
|
* 限定节日名称
|
||||||
*/
|
*/
|
||||||
private Integer festivalOrder;
|
private String festivalName;
|
||||||
|
|
||||||
|
|
||||||
/**
|
/**
|
||||||
|
|
|
@ -55,11 +55,15 @@ public class ClothesGradeServiceImpl extends ServiceImpl<ClothesGradeMapper, Clo
|
||||||
if (StringUtils.isAnyBlank(clothesType, image, brief)) {
|
if (StringUtils.isAnyBlank(clothesType, image, brief)) {
|
||||||
throw new BusinessException(ErrorCode.PARAMS_ERROR);
|
throw new BusinessException(ErrorCode.PARAMS_ERROR);
|
||||||
}
|
}
|
||||||
|
QueryWrapper<ClothesGrade> queryWrapper = new QueryWrapper<>();
|
||||||
|
queryWrapper.eq("clothesType", clothesType);
|
||||||
if (update) {
|
if (update) {
|
||||||
QueryWrapper<ClothesGrade> queryWrapper = new QueryWrapper<>();
|
queryWrapper.ne("id", id);
|
||||||
queryWrapper.ne("id", id).eq("clothesType", clothesType);
|
|
||||||
Long count = this.baseMapper.selectCount(queryWrapper);
|
Long count = this.baseMapper.selectCount(queryWrapper);
|
||||||
ThrowUtils.throwIf(count > 0, ErrorCode.OPERATION_ERROR, "");
|
ThrowUtils.throwIf(count > 0, ErrorCode.OPERATION_ERROR, "当前服装等级已存在");
|
||||||
|
} else {
|
||||||
|
Long count = this.baseMapper.selectCount(queryWrapper);
|
||||||
|
ThrowUtils.throwIf(count > 0, ErrorCode.OPERATION_ERROR, "不能重复添加服装等级");
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
@ -33,7 +33,7 @@ public class GoodServiceImpl extends ServiceImpl<GoodMapper, Good> implements Go
|
||||||
Long id = goodQueryRequest.getId();
|
Long id = goodQueryRequest.getId();
|
||||||
String name = goodQueryRequest.getName();
|
String name = goodQueryRequest.getName();
|
||||||
String type = goodQueryRequest.getType();
|
String type = goodQueryRequest.getType();
|
||||||
Integer festivalOrder = goodQueryRequest.getFestivalOrder();
|
String festivalName = goodQueryRequest.getFestivalName();
|
||||||
Integer isShelves = goodQueryRequest.getIsShelves();
|
Integer isShelves = goodQueryRequest.getIsShelves();
|
||||||
String sortField = goodQueryRequest.getSortField();
|
String sortField = goodQueryRequest.getSortField();
|
||||||
String sortOrder = goodQueryRequest.getSortOrder();
|
String sortOrder = goodQueryRequest.getSortOrder();
|
||||||
|
@ -45,7 +45,7 @@ public class GoodServiceImpl extends ServiceImpl<GoodMapper, Good> implements Go
|
||||||
if (!isServiceGood){
|
if (!isServiceGood){
|
||||||
isGoodType = 1;
|
isGoodType = 1;
|
||||||
queryWrapper.like(StringUtils.isNotBlank(type), "type", type);
|
queryWrapper.like(StringUtils.isNotBlank(type), "type", type);
|
||||||
queryWrapper.eq(ObjectUtils.isNotEmpty(festivalOrder), "festivalOrder", festivalOrder);
|
queryWrapper.eq(StringUtils.isNotBlank(festivalName), "festivalOrder", festivalName);
|
||||||
}
|
}
|
||||||
queryWrapper.eq(ObjectUtils.isNotEmpty(isShelves), "isShelves", isShelves);
|
queryWrapper.eq(ObjectUtils.isNotEmpty(isShelves), "isShelves", isShelves);
|
||||||
queryWrapper.eq(ObjectUtils.isNotEmpty(isGoodType), "isGoodType", isGoodType);
|
queryWrapper.eq(ObjectUtils.isNotEmpty(isGoodType), "isGoodType", isGoodType);
|
||||||
|
@ -84,7 +84,7 @@ public class GoodServiceImpl extends ServiceImpl<GoodMapper, Good> implements Go
|
||||||
String detailImg = good.getDetailImg();
|
String detailImg = good.getDetailImg();
|
||||||
String label = good.getLabel();
|
String label = good.getLabel();
|
||||||
Integer inventory = good.getInventory();
|
Integer inventory = good.getInventory();
|
||||||
Integer festivalOrder = good.getFestivalOrder();
|
String festivalName = good.getFestivalName();
|
||||||
BigDecimal price = good.getPrice();
|
BigDecimal price = good.getPrice();
|
||||||
|
|
||||||
if (update) {
|
if (update) {
|
||||||
|
@ -92,15 +92,12 @@ public class GoodServiceImpl extends ServiceImpl<GoodMapper, Good> implements Go
|
||||||
throw new BusinessException(ErrorCode.PARAMS_ERROR, "参数id错误");
|
throw new BusinessException(ErrorCode.PARAMS_ERROR, "参数id错误");
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
if (StringUtils.isAnyBlank(type, goodImg, intro, introDetail, detailImg, label, name)) {
|
if (StringUtils.isAnyBlank(type, goodImg, intro, introDetail, detailImg, label, name, festivalName)) {
|
||||||
throw new BusinessException(ErrorCode.PARAMS_ERROR, "存在参数为空");
|
throw new BusinessException(ErrorCode.PARAMS_ERROR, "存在参数为空");
|
||||||
}
|
}
|
||||||
if (ObjectUtils.isEmpty(inventory) || inventory < 1) {
|
if (ObjectUtils.isEmpty(inventory) || inventory < 1) {
|
||||||
throw new BusinessException(ErrorCode.PARAMS_ERROR, "库存量不能小于1");
|
throw new BusinessException(ErrorCode.PARAMS_ERROR, "库存量不能小于1");
|
||||||
}
|
}
|
||||||
if (ObjectUtils.isEmpty(festivalOrder) || festivalOrder < 0) {
|
|
||||||
throw new BusinessException(ErrorCode.PARAMS_ERROR, "节日参数错误");
|
|
||||||
}
|
|
||||||
if (ObjectUtils.isEmpty(price) || price.compareTo(BigDecimal.ZERO) < 0) {
|
if (ObjectUtils.isEmpty(price) || price.compareTo(BigDecimal.ZERO) < 0) {
|
||||||
throw new BusinessException(ErrorCode.PARAMS_ERROR, "商品价格不能小于等于0");
|
throw new BusinessException(ErrorCode.PARAMS_ERROR, "商品价格不能小于等于0");
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue
Block a user