更新了商品管理模块

This commit is contained in:
chen-xin-zhi 2024-12-09 19:25:09 +08:00
parent 6fa130e59d
commit 42a5e98f7a
10 changed files with 63 additions and 34 deletions

View File

@ -1,6 +1,7 @@
package com.cultural.heritage.controller.book;
import com.baomidou.mybatisplus.core.conditions.update.UpdateWrapper;
import com.cultural.heritage.annotation.AuthCheck;
import com.cultural.heritage.common.BaseResponse;
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.ClothesGradeUpdateRequest;
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.service.book.ClothesGradeService;
import com.cultural.heritage.service.book.ClothesInfoService;
import io.swagger.v3.oas.annotations.Operation;
import io.swagger.v3.oas.annotations.tags.Tag;
import jakarta.annotation.Resource;
import lombok.extern.slf4j.Slf4j;
import org.apache.commons.lang3.StringUtils;
import org.springframework.beans.BeanUtils;
import org.springframework.web.bind.annotation.PostMapping;
import org.springframework.web.bind.annotation.RequestBody;
@ -37,6 +41,10 @@ public class ClothesGradeController {
private ClothesGradeService clothesGradeService;
@Resource
private ClothesInfoService clothesInfoService;
/**
* Web端管理员添加服装等级
* @param clothesGradeAddRequest 服装等级添加请求体
@ -51,6 +59,7 @@ public class ClothesGradeController {
}
ClothesGrade clothesGrade = new ClothesGrade();
BeanUtils.copyProperties(clothesGradeAddRequest, clothesGrade);
// 校验
clothesGradeService.validClothesGrade(clothesGrade, false);
boolean save = clothesGradeService.save(clothesGrade);
ThrowUtils.throwIf(!save, ErrorCode.OPERATION_ERROR);
@ -71,11 +80,30 @@ public class ClothesGradeController {
if (clothesGradeUpdateRequest == null || clothesGradeUpdateRequest.getId() <= 0) {
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();
BeanUtils.copyProperties(clothesGradeUpdateRequest, clothesGrade);
// 校验
clothesGradeService.validClothesGrade(clothesGrade, true);
boolean result = clothesGradeService.updateById(clothesGrade);
ThrowUtils.throwIf(!result, ErrorCode.OPERATION_ERROR);
ThrowUtils.throwIf(!result, ErrorCode.OPERATION_ERROR, "服装等级信息更新失败");
return ResultUtils.success(true);
}

View File

@ -120,7 +120,7 @@ public class GoodController {
good.setType("服务类");
good.setIsGoodType(0);
good.setInventory(1);
good.setFestivalOrder(0);
good.setFestivalName("");
// 校验
goodService.validGood(good, false);
boolean save = goodService.save(good);
@ -371,7 +371,7 @@ public class GoodController {
long pageSize = serviceGoodQueryRequest.getPageSize();
GoodQueryRequest goodQueryRequest = new GoodQueryRequest();
BeanUtils.copyProperties(serviceGoodQueryRequest, goodQueryRequest);
goodQueryRequest.setFestivalOrder(0);
goodQueryRequest.setFestivalName("");
goodQueryRequest.setType("服务类");
QueryWrapper<Good> goodQueryWrapper = goodService.getGoodQueryWrapper(goodQueryRequest, true);
Page<Good> page = goodService.page(new Page<>(current, pageSize), goodQueryWrapper);
@ -547,7 +547,7 @@ public class GoodController {
good.setType("服务类");
good.setIsGoodType(0);
good.setInventory(1);
good.setFestivalOrder(0);
good.setFestivalName("");
// 校验
goodService.validGood(good, true);
boolean result = goodService.updateById(good);
@ -670,7 +670,7 @@ public class GoodController {
good.setType("服务类");
good.setIsGoodType(0);
good.setInventory(1);
good.setFestivalOrder(0);
good.setFestivalName("");
// 校验
goodService.validGood(good, true);
boolean result = goodService.updateById(good);

View File

@ -9,7 +9,7 @@ import java.math.BigDecimal;
@Data
@Schema(description = "商品添加请求体", requiredProperties = {"name", "type", "price", "goodImg", "intro",
"introDetail", "detailImg", "label", "inventory", "festivalOrder"})
"introDetail", "detailImg", "label", "inventory", "festivalName"})
public class GoodAddRequest implements Serializable {
@ -68,10 +68,10 @@ public class GoodAddRequest implements Serializable {
private Integer inventory;
/**
* 节日限定序号
* 限定节日名称
*/
@Schema(description = "节日序号(1代表端午节2代表中秋节...)", example = "2")
private Integer festivalOrder;
@Schema(description = "节日名称(端午节,中秋节)", example = "元旦节")
private String festivalName;
@TableField(exist = false)

View File

@ -30,10 +30,10 @@ public class GoodQueryRequest extends PageRequest implements Serializable {
private String type;
/**
* 节日限定序号
* 限定节日名称
*/
@Schema(description = "节日序号(1代表端午节2代表中秋节...)", example = "2")
private Integer festivalOrder;
@Schema(description = "节日名称(端午节,中秋节)", example = "元旦节")
private String festivalName;
/**
* 是否上架

View File

@ -9,7 +9,7 @@ import java.math.BigDecimal;
@Data
@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 {
/**
@ -73,10 +73,10 @@ public class GoodUpdateRequest implements Serializable {
private Integer inventory;
/**
* 节日限定序号
* 限定节日名称
*/
@Schema(description = "节日序号(1代表端午节2代表中秋节...)", example = "2")
private Integer festivalOrder;
@Schema(description = "节日名称(端午节,中秋节)", example = "元旦节")
private String festivalName;
/**

View File

@ -8,7 +8,7 @@ import java.io.Serializable;
import java.math.BigDecimal;
@Data
@Schema(description = "订单商品信息", requiredProperties = {"name", "type", "price", "goodImg", "festivalOrder", "reserveDate"})
@Schema(description = "订单商品信息", requiredProperties = {"name", "type", "price", "goodImg", "festivalName", "reserveDate"})
public class GoodSnapshot implements Serializable {
@ -38,10 +38,10 @@ public class GoodSnapshot implements Serializable {
/**
* 节日限定序号
* 限定节日名称
*/
@Schema(description = "节日序号(1代表端午节2代表中秋节...)", example = "2")
private Integer festivalOrder;
@Schema(description = "节日名称(端午节,中秋节)", example = "元旦节")
private String festivalName;

View File

@ -77,9 +77,9 @@ public class Good implements Serializable {
private Integer isGoodType;
/**
* 节日限定序号
* 限定节日名称
*/
private Integer festivalOrder;
private String festivalName;
/**

View File

@ -65,9 +65,9 @@ public class GoodPageVO implements Serializable {
private Integer isGoodType;
/**
* 节日限定序号
* 限定节日名称
*/
private Integer festivalOrder;
private String festivalName;
/**

View File

@ -55,11 +55,15 @@ public class ClothesGradeServiceImpl extends ServiceImpl<ClothesGradeMapper, Clo
if (StringUtils.isAnyBlank(clothesType, image, brief)) {
throw new BusinessException(ErrorCode.PARAMS_ERROR);
}
QueryWrapper<ClothesGrade> queryWrapper = new QueryWrapper<>();
queryWrapper.eq("clothesType", clothesType);
if (update) {
QueryWrapper<ClothesGrade> queryWrapper = new QueryWrapper<>();
queryWrapper.ne("id", id).eq("clothesType", clothesType);
queryWrapper.ne("id", id);
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, "不能重复添加服装等级");
}
}

View File

@ -33,7 +33,7 @@ public class GoodServiceImpl extends ServiceImpl<GoodMapper, Good> implements Go
Long id = goodQueryRequest.getId();
String name = goodQueryRequest.getName();
String type = goodQueryRequest.getType();
Integer festivalOrder = goodQueryRequest.getFestivalOrder();
String festivalName = goodQueryRequest.getFestivalName();
Integer isShelves = goodQueryRequest.getIsShelves();
String sortField = goodQueryRequest.getSortField();
String sortOrder = goodQueryRequest.getSortOrder();
@ -45,7 +45,7 @@ public class GoodServiceImpl extends ServiceImpl<GoodMapper, Good> implements Go
if (!isServiceGood){
isGoodType = 1;
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(isGoodType), "isGoodType", isGoodType);
@ -84,7 +84,7 @@ public class GoodServiceImpl extends ServiceImpl<GoodMapper, Good> implements Go
String detailImg = good.getDetailImg();
String label = good.getLabel();
Integer inventory = good.getInventory();
Integer festivalOrder = good.getFestivalOrder();
String festivalName = good.getFestivalName();
BigDecimal price = good.getPrice();
if (update) {
@ -92,15 +92,12 @@ public class GoodServiceImpl extends ServiceImpl<GoodMapper, Good> implements Go
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, "存在参数为空");
}
if (ObjectUtils.isEmpty(inventory) || inventory < 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) {
throw new BusinessException(ErrorCode.PARAMS_ERROR, "商品价格不能小于等于0");
}