更新了写真预约产品的删除校验
This commit is contained in:
parent
fc96fd4d3e
commit
691b4e362c
|
@ -5,11 +5,6 @@ public interface FileConstant {
|
||||||
/**
|
/**
|
||||||
* 服务器访问地址
|
* 服务器访问地址
|
||||||
*/
|
*/
|
||||||
String SERVER_HOST = "/static/img";
|
String SERVER_HOST = "http://123.249.108.160:8888/api/file/downloadFile?objectKey=";
|
||||||
|
|
||||||
|
|
||||||
/**
|
|
||||||
* 服务器上传路径
|
|
||||||
*/
|
|
||||||
String SERVER_UPLOAD_DIR = "D:\\匠承非遗文件上传\\img";
|
|
||||||
}
|
}
|
||||||
|
|
|
@ -10,6 +10,7 @@ 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;
|
||||||
import com.cultural.heritage.common.ResultUtils;
|
import com.cultural.heritage.common.ResultUtils;
|
||||||
|
import com.cultural.heritage.constant.FileConstant;
|
||||||
import com.cultural.heritage.constant.OrderStatusConstant;
|
import com.cultural.heritage.constant.OrderStatusConstant;
|
||||||
import com.cultural.heritage.constant.UserConstant;
|
import com.cultural.heritage.constant.UserConstant;
|
||||||
import com.cultural.heritage.exception.BusinessException;
|
import com.cultural.heritage.exception.BusinessException;
|
||||||
|
@ -287,6 +288,8 @@ public class PhotoProductsController {
|
||||||
|
|
||||||
PhotoProductsVO photoProductsVO = new PhotoProductsVO();
|
PhotoProductsVO photoProductsVO = new PhotoProductsVO();
|
||||||
BeanUtils.copyProperties(photoProducts, photoProductsVO);
|
BeanUtils.copyProperties(photoProducts, photoProductsVO);
|
||||||
|
// TODO
|
||||||
|
photoProductsVO.setIntroImg(FileConstant.SERVER_HOST + photoProducts.getIntroImg());
|
||||||
photoProductsVO.setBookingDateVOList(bookingDateVOList);
|
photoProductsVO.setBookingDateVOList(bookingDateVOList);
|
||||||
photoProductsVOList.add(photoProductsVO);
|
photoProductsVOList.add(photoProductsVO);
|
||||||
}
|
}
|
||||||
|
@ -396,6 +399,8 @@ public class PhotoProductsController {
|
||||||
// 封装成BookingPhotoProductsVO列表
|
// 封装成BookingPhotoProductsVO列表
|
||||||
PhotoProductsVO photoProductsVO = new PhotoProductsVO();
|
PhotoProductsVO photoProductsVO = new PhotoProductsVO();
|
||||||
BeanUtils.copyProperties(photoProducts, photoProductsVO);
|
BeanUtils.copyProperties(photoProducts, photoProductsVO);
|
||||||
|
// TODO
|
||||||
|
photoProductsVO.setIntroImg(FileConstant.SERVER_HOST + photoProductsVO.getIntroImg());
|
||||||
photoProductsVO.setBookingDateVOList(bookingDateVOList);
|
photoProductsVO.setBookingDateVOList(bookingDateVOList);
|
||||||
|
|
||||||
return ResultUtils.success(photoProductsVO);
|
return ResultUtils.success(photoProductsVO);
|
||||||
|
|
|
@ -36,114 +36,7 @@ public class FileController {
|
||||||
@Resource
|
@Resource
|
||||||
private IHweiYunOBSService iHweiYunOBSService;
|
private IHweiYunOBSService iHweiYunOBSService;
|
||||||
|
|
||||||
//
|
|
||||||
// /**
|
|
||||||
// * 未登录的情况下的文件上传
|
|
||||||
// *
|
|
||||||
// * @param multipartFile 文件上传参数
|
|
||||||
// * @param uploadFileRequest 文件业务类型请求体
|
|
||||||
// * @return 图片可访问地址
|
|
||||||
// */
|
|
||||||
// @PostMapping("/upload/server/not_login")
|
|
||||||
// @Operation(summary = "(未使用)未登录情况下的文件上传", description = "参数:(文档上是false,但biz是必传的),文件对象(multipartFile), 业务类型(biz),权限:所有人,方法名:uploadServerFileNotLogin")
|
|
||||||
// private BaseResponse<String> uploadServerFileNotLogin(@RequestPart("file") MultipartFile multipartFile, UploadFileRequest uploadFileRequest) {
|
|
||||||
// // 获取业务名称
|
|
||||||
// String biz = uploadFileRequest.getBiz();
|
|
||||||
// FileUploadBizEnum fileUploadBizEnum = FileUploadBizEnum.getEnumByValue(biz);
|
|
||||||
// if (fileUploadBizEnum == null) {
|
|
||||||
// throw new BusinessException(ErrorCode.PARAMS_ERROR, "业务名称错误");
|
|
||||||
// }
|
|
||||||
// // 校验文件
|
|
||||||
// validFile(multipartFile, fileUploadBizEnum);
|
|
||||||
// // 文件目录:根据业务、用户来划分
|
|
||||||
// String uuid = RandomStringUtils.randomAlphabetic(8);
|
|
||||||
// String filename = uuid + "-" + multipartFile.getOriginalFilename();
|
|
||||||
// String filepath = String.format("/%s/%s/%s", fileUploadBizEnum.getValue(), 0, filename);
|
|
||||||
//
|
|
||||||
// // 判断目录是否存在
|
|
||||||
// File file = new File(FileConstant.SERVER_UPLOAD_DIR, filepath);
|
|
||||||
// if (!file.exists()) {
|
|
||||||
// // 创建目录
|
|
||||||
// boolean mkdirs = file.mkdirs();
|
|
||||||
// if (!mkdirs) {
|
|
||||||
// throw new BusinessException(ErrorCode.SYSTEM_ERROR, "创建目录失败");
|
|
||||||
// }
|
|
||||||
// }
|
|
||||||
// // 返回可访问地址
|
|
||||||
// String url = iHweiYunOBSService.fileUpload(multipartFile, "feiyi" + filepath);
|
|
||||||
// return ResultUtils.success(url);
|
|
||||||
// }
|
|
||||||
//
|
|
||||||
//
|
|
||||||
// @PostMapping("/upload/server")
|
|
||||||
// @Operation(summary = "已登录情况下的文件上传", description = "参数:(文档上是false,但biz是必传的),文件对象(multipartFile), 业务类型(biz),权限:所有人,方法名:uploadServerFile")
|
|
||||||
// public BaseResponse<String> uploadServerFile(@RequestPart("file") MultipartFile multipartFile, UploadFileRequest uploadFileRequest, HttpServletRequest request) {
|
|
||||||
// // 获取业务名称
|
|
||||||
// String biz = uploadFileRequest.getBiz();
|
|
||||||
// FileUploadBizEnum fileUploadBizEnum = FileUploadBizEnum.getEnumByValue(biz);
|
|
||||||
// if (fileUploadBizEnum == null) {
|
|
||||||
// throw new BusinessException(ErrorCode.PARAMS_ERROR, "业务名称错误");
|
|
||||||
// }
|
|
||||||
// // 校验文件
|
|
||||||
// validFile(multipartFile, fileUploadBizEnum);
|
|
||||||
// // 校验用户是否登录
|
|
||||||
// User loginUser = userService.getLoginUser(request);
|
|
||||||
// if (loginUser == null) {
|
|
||||||
// throw new BusinessException(ErrorCode.NOT_LOGIN_ERROR, "未登录");
|
|
||||||
// }
|
|
||||||
// // 文件目录:根据业务、用户来划分
|
|
||||||
// String uuid = RandomStringUtils.randomAlphabetic(8);
|
|
||||||
// String filename = uuid + "-" + multipartFile.getOriginalFilename();
|
|
||||||
// String filepath = String.format("/%s/%s/%s", fileUploadBizEnum.getValue(), loginUser.getId(), filename);
|
|
||||||
//
|
|
||||||
// // 判断目录是否存在
|
|
||||||
// File file = new File(FileConstant.SERVER_UPLOAD_DIR, filepath);
|
|
||||||
// if (!file.exists()) {
|
|
||||||
// // 创建目录
|
|
||||||
// boolean mkdirs = file.mkdirs();
|
|
||||||
// if (!mkdirs) {
|
|
||||||
// throw new BusinessException(ErrorCode.SYSTEM_ERROR, "创建目录失败");
|
|
||||||
// }
|
|
||||||
// }
|
|
||||||
// // 返回可访问地址
|
|
||||||
// String url = iHweiYunOBSService.fileUpload(multipartFile, "feiyi" + filepath);
|
|
||||||
// return ResultUtils.success(url);
|
|
||||||
// }
|
|
||||||
//
|
|
||||||
//
|
|
||||||
// @PostMapping("/upload/single")
|
|
||||||
// @Operation(summary = "单独文件上传", description = "参数:file,文件对象(multipartFile),权限:所有人,方法名:uploadServerFile")
|
|
||||||
// public Object uploadSingleServerFile(@RequestPart("file") MultipartFile multipartFile, HttpServletRequest request) {
|
|
||||||
////
|
|
||||||
// // 校验文件
|
|
||||||
// validFile(multipartFile, null);
|
|
||||||
// // 文件目录:根据业务、用户来划分
|
|
||||||
// String uuid = RandomStringUtils.randomAlphabetic(8);
|
|
||||||
// String filename = uuid + "-" + multipartFile.getOriginalFilename();
|
|
||||||
// String filepath = String.format("/%s/%s/%s", "single", "yt", filename);
|
|
||||||
//
|
|
||||||
// // 判断目录是否存在
|
|
||||||
// File file = new File(FileConstant.SERVER_UPLOAD_DIR, filepath);
|
|
||||||
// if (!file.exists()) {
|
|
||||||
// // 创建目录
|
|
||||||
// boolean mkdirs = file.mkdirs();
|
|
||||||
// if (!mkdirs) {
|
|
||||||
// throw new BusinessException(ErrorCode.SYSTEM_ERROR, "创建目录失败");
|
|
||||||
// }
|
|
||||||
// }
|
|
||||||
// // 返回可访问地址
|
|
||||||
// String url = iHweiYunOBSService.fileUpload(multipartFile, "feiyi" + filepath);
|
|
||||||
//
|
|
||||||
// Map<String, String> data = new HashMap<>();
|
|
||||||
// data.put("url", url);
|
|
||||||
//
|
|
||||||
// // 创建最终地响应对象
|
|
||||||
// Map<String, Object> response = new HashMap<>();
|
|
||||||
// response.put("errno", 0);
|
|
||||||
// response.put("data", data);
|
|
||||||
// Gson gson = new Gson();
|
|
||||||
// return gson.fromJson(gson.toJson(response), Object.class);
|
|
||||||
// }
|
|
||||||
|
|
||||||
|
|
||||||
/**
|
/**
|
||||||
|
@ -153,7 +46,7 @@ public class FileController {
|
||||||
* @return PutObjectResult
|
* @return PutObjectResult
|
||||||
*/
|
*/
|
||||||
@PostMapping("/uploadFile")
|
@PostMapping("/uploadFile")
|
||||||
@Operation(summary = "Web端文件上传", description = "参数:文件对象(multipartFile), 业务类型(biz),权限:所有人,方法名:uploadFile")
|
@Operation(summary = "Web端文件上传", description = "参数:文件对象(multipartFile), 业务类型(biz),权限:管理员,方法名:uploadFile")
|
||||||
public BaseResponse<String> uploadFile(@RequestPart("file") MultipartFile multipartFile, UploadFileRequest uploadFileRequest, HttpServletRequest request) {
|
public BaseResponse<String> uploadFile(@RequestPart("file") MultipartFile multipartFile, UploadFileRequest uploadFileRequest, HttpServletRequest request) {
|
||||||
// 校验用户是否登录
|
// 校验用户是否登录
|
||||||
User loginUser = userService.getLoginUser(request);
|
User loginUser = userService.getLoginUser(request);
|
||||||
|
@ -164,7 +57,7 @@ public class FileController {
|
||||||
|
|
||||||
iHweiYunOBSService.fileUpload(multipartFile, filePath);
|
iHweiYunOBSService.fileUpload(multipartFile, filePath);
|
||||||
|
|
||||||
return ResultUtils.success(filePath, "上传成功,返回给前端filePath,前端需存储");
|
return ResultUtils.success(filePath, "上传成功");
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
|
@ -174,6 +67,7 @@ public class FileController {
|
||||||
* @param objectKey 具体的文件名(含存储路径)
|
* @param objectKey 具体的文件名(含存储路径)
|
||||||
*/
|
*/
|
||||||
@GetMapping("downloadFile")
|
@GetMapping("downloadFile")
|
||||||
|
@Operation(summary = "文件下载", description = "参数:文件对象(具体的文件名(含存储路径)),权限:所有人,方法名:downloadFile")
|
||||||
public void downloadFile(@RequestParam String objectKey, HttpServletResponse response) {
|
public void downloadFile(@RequestParam String objectKey, HttpServletResponse response) {
|
||||||
iHweiYunOBSService.downloadFile(objectKey, response);
|
iHweiYunOBSService.downloadFile(objectKey, response);
|
||||||
}
|
}
|
||||||
|
@ -232,6 +126,6 @@ public class FileController {
|
||||||
// 文件目录:根据业务、用户来划分
|
// 文件目录:根据业务、用户来划分
|
||||||
String uuid = RandomStringUtils.randomAlphabetic(8);
|
String uuid = RandomStringUtils.randomAlphabetic(8);
|
||||||
String filename = uuid + "-" + multipartFile.getOriginalFilename();
|
String filename = uuid + "-" + multipartFile.getOriginalFilename();
|
||||||
return String.format("/%s/%s", fileUploadBizEnum.getValue(), filename);
|
return String.format("%s/%s", fileUploadBizEnum.getValue(), filename);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
|
@ -7,6 +7,7 @@ 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;
|
||||||
import com.cultural.heritage.common.ResultUtils;
|
import com.cultural.heritage.common.ResultUtils;
|
||||||
|
import com.cultural.heritage.constant.FileConstant;
|
||||||
import com.cultural.heritage.constant.UserConstant;
|
import com.cultural.heritage.constant.UserConstant;
|
||||||
import com.cultural.heritage.exception.BusinessException;
|
import com.cultural.heritage.exception.BusinessException;
|
||||||
import com.cultural.heritage.exception.ThrowUtils;
|
import com.cultural.heritage.exception.ThrowUtils;
|
||||||
|
@ -192,6 +193,10 @@ public class CategoryController {
|
||||||
public BaseResponse<List<Category>> listCategoryOnWeb(HttpServletRequest request) {
|
public BaseResponse<List<Category>> listCategoryOnWeb(HttpServletRequest request) {
|
||||||
userService.getLoginUser(request);
|
userService.getLoginUser(request);
|
||||||
List<Category> list = categoryService.list();
|
List<Category> list = categoryService.list();
|
||||||
|
// TODO
|
||||||
|
for (Category category : list) {
|
||||||
|
category.setTypeUrl(FileConstant.SERVER_HOST + category.getTypeUrl());
|
||||||
|
}
|
||||||
return ResultUtils.success(list);
|
return ResultUtils.success(list);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -210,6 +215,10 @@ public class CategoryController {
|
||||||
List<Good> goodList = commonService.findByFieldEqTargetField("isShelves", 1, goodService);
|
List<Good> goodList = commonService.findByFieldEqTargetField("isShelves", 1, goodService);
|
||||||
// 获取所有存在上架商品的商品类别
|
// 获取所有存在上架商品的商品类别
|
||||||
List<Category> categoryList = commonService.findByFieldInTargetField(goodList, categoryService, Good::getType, "typeName");
|
List<Category> categoryList = commonService.findByFieldInTargetField(goodList, categoryService, Good::getType, "typeName");
|
||||||
|
// TODO
|
||||||
|
for (Category category : categoryList) {
|
||||||
|
category.setTypeUrl(FileConstant.SERVER_HOST + category.getTypeUrl());
|
||||||
|
}
|
||||||
return ResultUtils.success(categoryList);
|
return ResultUtils.success(categoryList);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -238,6 +247,10 @@ public class CategoryController {
|
||||||
queryWrapper.eq("isShelves", 1);
|
queryWrapper.eq("isShelves", 1);
|
||||||
queryWrapper.orderByDesc("id");
|
queryWrapper.orderByDesc("id");
|
||||||
List<Good> goodList = goodService.list(queryWrapper);
|
List<Good> goodList = goodService.list(queryWrapper);
|
||||||
|
// TODO
|
||||||
|
for (Good good : goodList) {
|
||||||
|
good.setGoodImg(FileConstant.SERVER_HOST + good.getGoodImg());
|
||||||
|
}
|
||||||
Map<Long, List<Good>> map = new HashMap<>();
|
Map<Long, List<Good>> map = new HashMap<>();
|
||||||
map.put(id, goodList);
|
map.put(id, goodList);
|
||||||
return ResultUtils.success(map);
|
return ResultUtils.success(map);
|
||||||
|
|
|
@ -5,6 +5,7 @@ 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;
|
||||||
import com.cultural.heritage.common.ResultUtils;
|
import com.cultural.heritage.common.ResultUtils;
|
||||||
|
import com.cultural.heritage.constant.FileConstant;
|
||||||
import com.cultural.heritage.constant.UserConstant;
|
import com.cultural.heritage.constant.UserConstant;
|
||||||
import com.cultural.heritage.exception.BusinessException;
|
import com.cultural.heritage.exception.BusinessException;
|
||||||
import com.cultural.heritage.model.entity.Festival;
|
import com.cultural.heritage.model.entity.Festival;
|
||||||
|
@ -72,7 +73,9 @@ public class FestivalController {
|
||||||
// 遍历查找匹配的节日
|
// 遍历查找匹配的节日
|
||||||
for (Festival festival : festivalList) {
|
for (Festival festival : festivalList) {
|
||||||
if (festival.getName().equals(festivalName)) {
|
if (festival.getName().equals(festivalName)) {
|
||||||
return ResultUtils.success(festival.getUrl()); // 返回对应的 URL
|
// TODO
|
||||||
|
String wholeFilePath = FileConstant.SERVER_HOST + festival.getUrl();
|
||||||
|
return ResultUtils.success(wholeFilePath); // 返回对应的 URL
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
throw new BusinessException(ErrorCode.OPERATION_ERROR, "该节日项不存在");
|
throw new BusinessException(ErrorCode.OPERATION_ERROR, "该节日项不存在");
|
||||||
|
@ -89,6 +92,10 @@ public class FestivalController {
|
||||||
@AuthCheck(mustRole = UserConstant.ADMIN_ROLE)
|
@AuthCheck(mustRole = UserConstant.ADMIN_ROLE)
|
||||||
public BaseResponse<List<Festival>> getFestivalList() {
|
public BaseResponse<List<Festival>> getFestivalList() {
|
||||||
List<Festival> festivalList = redisTemplate.opsForList().range(FESTIVAL_KEY, 0, -1);
|
List<Festival> festivalList = redisTemplate.opsForList().range(FESTIVAL_KEY, 0, -1);
|
||||||
|
// TODO
|
||||||
|
for (Festival festival : festivalList) {
|
||||||
|
festival.setUrl(FileConstant.SERVER_HOST + festival.getUrl());
|
||||||
|
}
|
||||||
return ResultUtils.success(festivalList);
|
return ResultUtils.success(festivalList);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
@ -12,6 +12,7 @@ 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;
|
||||||
import com.cultural.heritage.common.ResultUtils;
|
import com.cultural.heritage.common.ResultUtils;
|
||||||
|
import com.cultural.heritage.constant.FileConstant;
|
||||||
import com.cultural.heritage.constant.UserConstant;
|
import com.cultural.heritage.constant.UserConstant;
|
||||||
import com.cultural.heritage.exception.BusinessException;
|
import com.cultural.heritage.exception.BusinessException;
|
||||||
import com.cultural.heritage.exception.ThrowUtils;
|
import com.cultural.heritage.exception.ThrowUtils;
|
||||||
|
@ -409,6 +410,15 @@ public class GoodController {
|
||||||
QueryWrapper<Good> goodQueryWrapper = goodService.getGoodQueryWrapper(goodQueryRequest, false);
|
QueryWrapper<Good> goodQueryWrapper = goodService.getGoodQueryWrapper(goodQueryRequest, false);
|
||||||
Page<Good> page = goodService.page(new Page<>(current, pageSize), goodQueryWrapper);
|
Page<Good> page = goodService.page(new Page<>(current, pageSize), goodQueryWrapper);
|
||||||
List<Good> records = page.getRecords();
|
List<Good> records = page.getRecords();
|
||||||
|
// TODO
|
||||||
|
for (Good good : records) {
|
||||||
|
String[] goodImgArr = good.getGoodImg().split(";");
|
||||||
|
for (int i = 0; i < goodImgArr.length; i++) {
|
||||||
|
goodImgArr[i] = FileConstant.SERVER_HOST + goodImgArr[i];
|
||||||
|
}
|
||||||
|
String joinImg = String.join(";", goodImgArr);
|
||||||
|
good.setGoodImg(joinImg);
|
||||||
|
}
|
||||||
List<GoodPageVO> goodPageVOS = commonService.convertList(records, GoodPageVO.class);
|
List<GoodPageVO> goodPageVOS = commonService.convertList(records, GoodPageVO.class);
|
||||||
Page<GoodPageVO> goodPageVOPage = new Page<>();
|
Page<GoodPageVO> goodPageVOPage = new Page<>();
|
||||||
goodPageVOPage.setRecords(goodPageVOS);
|
goodPageVOPage.setRecords(goodPageVOS);
|
||||||
|
@ -459,8 +469,15 @@ public class GoodController {
|
||||||
Long id = getByIdRequest.getId();
|
Long id = getByIdRequest.getId();
|
||||||
Good good = goodService.getById(id);
|
Good good = goodService.getById(id);
|
||||||
ThrowUtils.throwIf(good == null, ErrorCode.OPERATION_ERROR, "商品不存在");
|
ThrowUtils.throwIf(good == null, ErrorCode.OPERATION_ERROR, "商品不存在");
|
||||||
|
// TODO
|
||||||
|
String[] goodImgArr = good.getGoodImg().split(";");
|
||||||
|
for (int i = 0; i < goodImgArr.length; i++) {
|
||||||
|
goodImgArr[i] = FileConstant.SERVER_HOST + goodImgArr[i];
|
||||||
|
}
|
||||||
|
String joinImg = String.join(";", goodImgArr);
|
||||||
|
good.setGoodImg(joinImg);
|
||||||
|
|
||||||
good.setRichText(DecoderUtils.decodeText(good.getRichText()));
|
good.setRichText(DecoderUtils.decodeText(good.getRichText()));
|
||||||
System.out.println(good.getRichText());
|
|
||||||
GoodPageVO goodPageVO = new GoodPageVO();
|
GoodPageVO goodPageVO = new GoodPageVO();
|
||||||
BeanUtils.copyProperties(good, goodPageVO);
|
BeanUtils.copyProperties(good, goodPageVO);
|
||||||
return ResultUtils.success(goodPageVO);
|
return ResultUtils.success(goodPageVO);
|
||||||
|
@ -489,6 +506,10 @@ public class GoodController {
|
||||||
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);
|
||||||
List<Good> records = page.getRecords();
|
List<Good> records = page.getRecords();
|
||||||
|
// TODO
|
||||||
|
for (Good good : records) {
|
||||||
|
good.setGoodImg(FileConstant.SERVER_HOST + good.getGoodImg());
|
||||||
|
}
|
||||||
|
|
||||||
// 获取联表(预约日期表, 预约时间段表)查询结果
|
// 获取联表(预约日期表, 预约时间段表)查询结果
|
||||||
List<AppointmentDateTimePeriodVO> appointmentDateTimePeriodVOS = appointmentDateService.queryAppointmentDateDetail();
|
List<AppointmentDateTimePeriodVO> appointmentDateTimePeriodVOS = appointmentDateService.queryAppointmentDateDetail();
|
||||||
|
@ -583,6 +604,8 @@ public class GoodController {
|
||||||
Long id = commonRequest.getId();
|
Long id = commonRequest.getId();
|
||||||
Good good = goodService.getById(id);
|
Good good = goodService.getById(id);
|
||||||
ThrowUtils.throwIf(good == null, ErrorCode.NOT_FOUND_ERROR, "商品不存在");
|
ThrowUtils.throwIf(good == null, ErrorCode.NOT_FOUND_ERROR, "商品不存在");
|
||||||
|
// TODO
|
||||||
|
good.setGoodImg(FileConstant.SERVER_HOST + good.getGoodImg());
|
||||||
ServiceGoodVO serviceGoodVO = new ServiceGoodVO();
|
ServiceGoodVO serviceGoodVO = new ServiceGoodVO();
|
||||||
BeanUtils.copyProperties(good, serviceGoodVO);
|
BeanUtils.copyProperties(good, serviceGoodVO);
|
||||||
Long goodVOId = serviceGoodVO.getId();
|
Long goodVOId = serviceGoodVO.getId();
|
||||||
|
@ -683,6 +706,10 @@ public class GoodController {
|
||||||
conditionMap.put("isGoodType", 0);
|
conditionMap.put("isGoodType", 0);
|
||||||
List<Good> goodList = commonService.findByFieldEqTargetFields(conditionMap, goodService);
|
List<Good> goodList = commonService.findByFieldEqTargetFields(conditionMap, goodService);
|
||||||
goodList = goodList.stream().filter(good -> good.getName().contains(keyword)).toList();
|
goodList = goodList.stream().filter(good -> good.getName().contains(keyword)).toList();
|
||||||
|
// TODO
|
||||||
|
for (Good good : goodList) {
|
||||||
|
good.setGoodImg(FileConstant.SERVER_HOST + good.getGoodImg());
|
||||||
|
}
|
||||||
List<ServiceGoodCardVO> serviceGoodCardVOS = commonService.convertList(goodList, ServiceGoodCardVO.class);
|
List<ServiceGoodCardVO> serviceGoodCardVOS = commonService.convertList(goodList, ServiceGoodCardVO.class);
|
||||||
return ResultUtils.success(serviceGoodCardVOS);
|
return ResultUtils.success(serviceGoodCardVOS);
|
||||||
}
|
}
|
||||||
|
@ -718,6 +745,15 @@ public class GoodController {
|
||||||
}
|
}
|
||||||
return false;
|
return false;
|
||||||
}).toList();
|
}).toList();
|
||||||
|
for (Good good : goodList) {
|
||||||
|
// TODO
|
||||||
|
String[] goodImgArr = good.getGoodImg().split(";");
|
||||||
|
for (int i = 0; i < goodImgArr.length; i++) {
|
||||||
|
goodImgArr[i] = FileConstant.SERVER_HOST + goodImgArr[i];
|
||||||
|
}
|
||||||
|
String joinImg = String.join(";", goodImgArr);
|
||||||
|
good.setGoodImg(joinImg);
|
||||||
|
}
|
||||||
List<ServiceGoodCardVO> serviceGoodCardVOS = commonService.convertList(goodList, ServiceGoodCardVO.class);
|
List<ServiceGoodCardVO> serviceGoodCardVOS = commonService.convertList(goodList, ServiceGoodCardVO.class);
|
||||||
return ResultUtils.success(serviceGoodCardVOS);
|
return ResultUtils.success(serviceGoodCardVOS);
|
||||||
}
|
}
|
||||||
|
@ -740,6 +776,10 @@ public class GoodController {
|
||||||
map.put("isGoodType", 0);
|
map.put("isGoodType", 0);
|
||||||
map.put("isShelves", 1);
|
map.put("isShelves", 1);
|
||||||
List<Good> goodList = commonService.findByFieldEqTargetFields(map, goodService);
|
List<Good> goodList = commonService.findByFieldEqTargetFields(map, goodService);
|
||||||
|
// TODO
|
||||||
|
for (Good good : goodList) {
|
||||||
|
good.setGoodImg(FileConstant.SERVER_HOST + good.getGoodImg());
|
||||||
|
}
|
||||||
List<ServiceGoodCardVO> serviceGoodCardVOS = commonService.convertList(goodList, ServiceGoodCardVO.class);
|
List<ServiceGoodCardVO> serviceGoodCardVOS = commonService.convertList(goodList, ServiceGoodCardVO.class);
|
||||||
return ResultUtils.success(serviceGoodCardVOS);
|
return ResultUtils.success(serviceGoodCardVOS);
|
||||||
}
|
}
|
||||||
|
|
|
@ -9,6 +9,7 @@ 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;
|
||||||
import com.cultural.heritage.common.ResultUtils;
|
import com.cultural.heritage.common.ResultUtils;
|
||||||
|
import com.cultural.heritage.constant.FileConstant;
|
||||||
import com.cultural.heritage.constant.OrderStatusConstant;
|
import com.cultural.heritage.constant.OrderStatusConstant;
|
||||||
import com.cultural.heritage.constant.UserConstant;
|
import com.cultural.heritage.constant.UserConstant;
|
||||||
import com.cultural.heritage.exception.BusinessException;
|
import com.cultural.heritage.exception.BusinessException;
|
||||||
|
@ -211,6 +212,12 @@ public class AdvanceOrderController {
|
||||||
// 封装成写真预约订单VO
|
// 封装成写真预约订单VO
|
||||||
List<AdvanceOrder> records = page.getRecords();
|
List<AdvanceOrder> records = page.getRecords();
|
||||||
List<AdvanceOrderVO> advanceOrderVOS = commonService.convertList(records, AdvanceOrderVO.class);
|
List<AdvanceOrderVO> advanceOrderVOS = commonService.convertList(records, AdvanceOrderVO.class);
|
||||||
|
// TODO
|
||||||
|
for (AdvanceOrderVO advanceOrderVO : advanceOrderVOS) {
|
||||||
|
PhotoProductsSnapshot photoProductsSnapshot = advanceOrderVO.getPhotoProductsSnapshot();
|
||||||
|
photoProductsSnapshot.setIntroImg(FileConstant.SERVER_HOST + photoProductsSnapshot.getIntroImg());
|
||||||
|
advanceOrderVO.setPhotoProductsSnapshot(photoProductsSnapshot);
|
||||||
|
}
|
||||||
Page<AdvanceOrderVO> voPage = new Page<>();
|
Page<AdvanceOrderVO> voPage = new Page<>();
|
||||||
voPage.setRecords(advanceOrderVOS);
|
voPage.setRecords(advanceOrderVOS);
|
||||||
voPage.setTotal(page.getTotal());
|
voPage.setTotal(page.getTotal());
|
||||||
|
@ -235,6 +242,12 @@ public class AdvanceOrderController {
|
||||||
QueryWrapper<AdvanceOrder> queryWrapper = new QueryWrapper<>();
|
QueryWrapper<AdvanceOrder> queryWrapper = new QueryWrapper<>();
|
||||||
queryWrapper.eq("userId", userId);
|
queryWrapper.eq("userId", userId);
|
||||||
List<AdvanceOrder> advanceOrderList = advanceOrderService.list(queryWrapper);
|
List<AdvanceOrder> advanceOrderList = advanceOrderService.list(queryWrapper);
|
||||||
|
// TODO
|
||||||
|
for (AdvanceOrder advanceOrder : advanceOrderList) {
|
||||||
|
PhotoProductsSnapshot photoProductsSnapshot = advanceOrder.getPhotoProductsSnapshot();
|
||||||
|
photoProductsSnapshot.setIntroImg(FileConstant.SERVER_HOST + photoProductsSnapshot.getIntroImg());
|
||||||
|
advanceOrder.setPhotoProductsSnapshot(photoProductsSnapshot);
|
||||||
|
}
|
||||||
// 封装成写真预约订单VO
|
// 封装成写真预约订单VO
|
||||||
List<AdvanceOrderVO> advanceOrderVOS = commonService.convertList(advanceOrderList, AdvanceOrderVO.class);
|
List<AdvanceOrderVO> advanceOrderVOS = commonService.convertList(advanceOrderList, AdvanceOrderVO.class);
|
||||||
Collections.reverse(advanceOrderVOS);
|
Collections.reverse(advanceOrderVOS);
|
||||||
|
|
|
@ -7,6 +7,7 @@ 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;
|
||||||
import com.cultural.heritage.common.ResultUtils;
|
import com.cultural.heritage.common.ResultUtils;
|
||||||
|
import com.cultural.heritage.constant.FileConstant;
|
||||||
import com.cultural.heritage.constant.OrderStatusConstant;
|
import com.cultural.heritage.constant.OrderStatusConstant;
|
||||||
import com.cultural.heritage.constant.UserConstant;
|
import com.cultural.heritage.constant.UserConstant;
|
||||||
import com.cultural.heritage.exception.BusinessException;
|
import com.cultural.heritage.exception.BusinessException;
|
||||||
|
@ -255,6 +256,28 @@ public class OrderController {
|
||||||
orderVO.setOrderItemList(orderItemsTempList);
|
orderVO.setOrderItemList(orderItemsTempList);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
// TODO
|
||||||
|
for (OrderVO orderVO : orderVOS) {
|
||||||
|
boolean isGeneral = orderService.isGeneralGood(orderVO.getOrderType());
|
||||||
|
List<OrderItems> orderItemList = orderVO.getOrderItemList();
|
||||||
|
for (OrderItems orderItems : orderItemList) {
|
||||||
|
GoodSnapshot goodSnapshot = orderItems.getGoodSnapshot();
|
||||||
|
String goodImg = goodSnapshot.getGoodImg();
|
||||||
|
if (isGeneral) {
|
||||||
|
String[] goodImgArr = goodImg.split(";");
|
||||||
|
for (int i = 0; i < goodImgArr.length; i++) {
|
||||||
|
goodImgArr[i] = FileConstant.SERVER_HOST + goodImgArr[i];
|
||||||
|
}
|
||||||
|
String joinImg = String.join(";", goodImgArr);
|
||||||
|
goodSnapshot.setGoodImg(joinImg);
|
||||||
|
} else {
|
||||||
|
goodSnapshot.setGoodImg(FileConstant.SERVER_HOST + goodSnapshot.getGoodImg());
|
||||||
|
}
|
||||||
|
orderItems.setGoodSnapshot(goodSnapshot);
|
||||||
|
}
|
||||||
|
orderVO.setOrderItemList(orderItemList);
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
Page<OrderVO> orderVOPage = new Page<>();
|
Page<OrderVO> orderVOPage = new Page<>();
|
||||||
orderVOPage.setRecords(orderVOS);
|
orderVOPage.setRecords(orderVOS);
|
||||||
|
@ -309,6 +332,28 @@ public class OrderController {
|
||||||
orderVO.setOrderItemList(orderItemsList);
|
orderVO.setOrderItemList(orderItemsList);
|
||||||
return orderVO;
|
return orderVO;
|
||||||
}).toList();
|
}).toList();
|
||||||
|
|
||||||
|
// TODO
|
||||||
|
for (OrderVO orderVO : orderVOS) {
|
||||||
|
boolean isGeneral = orderService.isGeneralGood(orderVO.getOrderType());
|
||||||
|
List<OrderItems> orderItemList = orderVO.getOrderItemList();
|
||||||
|
for (OrderItems orderItems : orderItemList) {
|
||||||
|
GoodSnapshot goodSnapshot = orderItems.getGoodSnapshot();
|
||||||
|
String goodImg = goodSnapshot.getGoodImg();
|
||||||
|
if (isGeneral) {
|
||||||
|
String[] goodImgArr = goodImg.split(";");
|
||||||
|
for (int i = 0; i < goodImgArr.length; i++) {
|
||||||
|
goodImgArr[i] = FileConstant.SERVER_HOST + goodImgArr[i];
|
||||||
|
}
|
||||||
|
String joinImg = String.join(";", goodImgArr);
|
||||||
|
goodSnapshot.setGoodImg(joinImg);
|
||||||
|
} else {
|
||||||
|
goodSnapshot.setGoodImg(FileConstant.SERVER_HOST + goodSnapshot.getGoodImg());
|
||||||
|
}
|
||||||
|
orderItems.setGoodSnapshot(goodSnapshot);
|
||||||
|
}
|
||||||
|
orderVO.setOrderItemList(orderItemList);
|
||||||
|
}
|
||||||
return ResultUtils.success(orderVOS);
|
return ResultUtils.success(orderVOS);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -356,6 +401,26 @@ public class OrderController {
|
||||||
BeanUtils.copyProperties(order, orderVO);
|
BeanUtils.copyProperties(order, orderVO);
|
||||||
List<OrderItems> orderItemsList = commonService.findByFieldEqTargetField("orderId", orderId, orderItemService);
|
List<OrderItems> orderItemsList = commonService.findByFieldEqTargetField("orderId", orderId, orderItemService);
|
||||||
orderVO.setOrderItemList(orderItemsList);
|
orderVO.setOrderItemList(orderItemsList);
|
||||||
|
// TODO
|
||||||
|
boolean isGeneral = orderService.isGeneralGood(orderVO.getOrderType());
|
||||||
|
List<OrderItems> orderItemList = orderVO.getOrderItemList();
|
||||||
|
for (OrderItems orderItems : orderItemList) {
|
||||||
|
GoodSnapshot goodSnapshot = orderItems.getGoodSnapshot();
|
||||||
|
String goodImg = goodSnapshot.getGoodImg();
|
||||||
|
if (isGeneral) {
|
||||||
|
String[] goodImgArr = goodImg.split(";");
|
||||||
|
for (int i = 0; i < goodImgArr.length; i++) {
|
||||||
|
goodImgArr[i] = FileConstant.SERVER_HOST + goodImgArr[i];
|
||||||
|
}
|
||||||
|
String joinImg = String.join(";", goodImgArr);
|
||||||
|
goodSnapshot.setGoodImg(joinImg);
|
||||||
|
} else {
|
||||||
|
goodSnapshot.setGoodImg(FileConstant.SERVER_HOST + goodSnapshot.getGoodImg());
|
||||||
|
}
|
||||||
|
orderItems.setGoodSnapshot(goodSnapshot);
|
||||||
|
}
|
||||||
|
orderVO.setOrderItemList(orderItemList);
|
||||||
|
|
||||||
return ResultUtils.success(orderVO);
|
return ResultUtils.success(orderVO);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
@ -7,6 +7,7 @@ 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;
|
||||||
import com.cultural.heritage.common.ResultUtils;
|
import com.cultural.heritage.common.ResultUtils;
|
||||||
|
import com.cultural.heritage.constant.FileConstant;
|
||||||
import com.cultural.heritage.constant.OrderStatusConstant;
|
import com.cultural.heritage.constant.OrderStatusConstant;
|
||||||
import com.cultural.heritage.constant.UserConstant;
|
import com.cultural.heritage.constant.UserConstant;
|
||||||
import com.cultural.heritage.exception.BusinessException;
|
import com.cultural.heritage.exception.BusinessException;
|
||||||
|
@ -79,7 +80,6 @@ public class PendingServiceGoodController {
|
||||||
List<PendingServiceGood> pendingServiceGoodList = pendingServiceGoodService.list(queryWrapper);
|
List<PendingServiceGood> pendingServiceGoodList = pendingServiceGoodService.list(queryWrapper);
|
||||||
// 获取服务类待处理订单
|
// 获取服务类待处理订单
|
||||||
List<PendingServiceOrder> pendingServiceOrderList = commonService.findByFieldInTargetField(pendingServiceGoodList, pendingServiceOrderService, PendingServiceGood::getId, "pendingId");
|
List<PendingServiceOrder> pendingServiceOrderList = commonService.findByFieldInTargetField(pendingServiceGoodList, pendingServiceOrderService, PendingServiceGood::getId, "pendingId");
|
||||||
|
|
||||||
// 封装成服务类待处理订单VO
|
// 封装成服务类待处理订单VO
|
||||||
List<PendingServiceOrderVO> pendingServiceOrderVOS = commonService.convertList(pendingServiceOrderList, PendingServiceOrderVO.class);
|
List<PendingServiceOrderVO> pendingServiceOrderVOS = commonService.convertList(pendingServiceOrderList, PendingServiceOrderVO.class);
|
||||||
// 封装map集合(键:服务类商品待处理id,值:待处理服务类订单列表)
|
// 封装map集合(键:服务类商品待处理id,值:待处理服务类订单列表)
|
||||||
|
@ -96,6 +96,8 @@ public class PendingServiceGoodController {
|
||||||
|
|
||||||
List<PendingServiceGoodVO> pendingServiceGoodVOList = new ArrayList<>();
|
List<PendingServiceGoodVO> pendingServiceGoodVOList = new ArrayList<>();
|
||||||
for (PendingServiceGood pendingServiceGood : pendingServiceGoodList) {
|
for (PendingServiceGood pendingServiceGood : pendingServiceGoodList) {
|
||||||
|
// TODO
|
||||||
|
pendingServiceGood.setGoodImg(FileConstant.SERVER_HOST + pendingServiceGood.getGoodImg());
|
||||||
PendingServiceGoodVO pendingServiceGoodVO = new PendingServiceGoodVO();
|
PendingServiceGoodVO pendingServiceGoodVO = new PendingServiceGoodVO();
|
||||||
BeanUtils.copyProperties(pendingServiceGood, pendingServiceGoodVO);
|
BeanUtils.copyProperties(pendingServiceGood, pendingServiceGoodVO);
|
||||||
Long goodId = pendingServiceGood.getId();
|
Long goodId = pendingServiceGood.getId();
|
||||||
|
|
|
@ -10,6 +10,7 @@ import com.cultural.heritage.common.BaseResponse;
|
||||||
import com.cultural.heritage.common.ErrorCode;
|
import com.cultural.heritage.common.ErrorCode;
|
||||||
import com.cultural.heritage.common.ResultUtils;
|
import com.cultural.heritage.common.ResultUtils;
|
||||||
import com.cultural.heritage.config.WxOpenConfig;
|
import com.cultural.heritage.config.WxOpenConfig;
|
||||||
|
import com.cultural.heritage.constant.FileConstant;
|
||||||
import com.cultural.heritage.constant.UserConstant;
|
import com.cultural.heritage.constant.UserConstant;
|
||||||
import com.cultural.heritage.exception.BusinessException;
|
import com.cultural.heritage.exception.BusinessException;
|
||||||
import com.cultural.heritage.exception.ThrowUtils;
|
import com.cultural.heritage.exception.ThrowUtils;
|
||||||
|
@ -263,24 +264,6 @@ public class UserController {
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
/**
|
|
||||||
* 根据 id 获取用户
|
|
||||||
* @param id
|
|
||||||
* @return 用户信息
|
|
||||||
*/
|
|
||||||
@GetMapping("/get")
|
|
||||||
@Operation(summary = "(未使用)Web端管理员根据id获取用户信息", description = "参数:用户id, 权限:管理员(admin, boss), 方法名:getUserById")
|
|
||||||
@AuthCheck(mustRole = UserConstant.ADMIN_ROLE)
|
|
||||||
public BaseResponse<User> getUserById(long id) {
|
|
||||||
if (id <= 0) {
|
|
||||||
throw new BusinessException(ErrorCode.PARAMS_ERROR);
|
|
||||||
}
|
|
||||||
User user = userService.getById(id);
|
|
||||||
ThrowUtils.throwIf(user == null, ErrorCode.NOT_FOUND_ERROR);
|
|
||||||
return ResultUtils.success(user);
|
|
||||||
}
|
|
||||||
|
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* 获取用户数量
|
* 获取用户数量
|
||||||
*/
|
*/
|
||||||
|
@ -309,6 +292,12 @@ public class UserController {
|
||||||
long pageSize = userQueryRequest.getPageSize();
|
long pageSize = userQueryRequest.getPageSize();
|
||||||
QueryWrapper<User> queryWrapper = userService.getQueryWrapper(userQueryRequest);
|
QueryWrapper<User> queryWrapper = userService.getQueryWrapper(userQueryRequest);
|
||||||
Page<User> page = userService.page(new Page<>(current, pageSize), queryWrapper);
|
Page<User> page = userService.page(new Page<>(current, pageSize), queryWrapper);
|
||||||
|
List<User> userList = page.getRecords();
|
||||||
|
// TODO
|
||||||
|
for (User user : userList) {
|
||||||
|
user.setUserAvatar(FileConstant.SERVER_HOST + user.getUserAvatar());
|
||||||
|
}
|
||||||
|
page.setRecords(userList);
|
||||||
return ResultUtils.success(page);
|
return ResultUtils.success(page);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -329,14 +318,16 @@ public class UserController {
|
||||||
}
|
}
|
||||||
long current = userQueryRequest.getCurrent();
|
long current = userQueryRequest.getCurrent();
|
||||||
long pageSize = userQueryRequest.getPageSize();
|
long pageSize = userQueryRequest.getPageSize();
|
||||||
// ThrowUtils.throwIf(size > 20, ErrorCode.PARAMS_ERROR);
|
|
||||||
QueryWrapper<User> queryWrapper = userService.getQueryWrapper(userQueryRequest);
|
QueryWrapper<User> queryWrapper = userService.getQueryWrapper(userQueryRequest);
|
||||||
Page<User> userPage = userService.page(new Page<>(current, pageSize), queryWrapper);
|
Page<User> userPage = userService.page(new Page<>(current, pageSize), queryWrapper);
|
||||||
|
|
||||||
Page<UserVO> userVOPage = new Page<>(current, pageSize, userPage.getTotal());
|
Page<UserVO> userVOPage = new Page<>(current, pageSize, userPage.getTotal());
|
||||||
List<UserVO> userVO = userService.getUserVO(userPage.getRecords());
|
List<UserVO> userVOS = userService.getUserVO(userPage.getRecords());
|
||||||
|
// TODO
|
||||||
userVOPage.setRecords(userVO);
|
for (UserVO userVO : userVOS) {
|
||||||
|
userVO.setUserAvatar(FileConstant.SERVER_HOST + userVO);
|
||||||
|
}
|
||||||
|
userVOPage.setRecords(userVOS);
|
||||||
return ResultUtils.success(userVOPage);
|
return ResultUtils.success(userVOPage);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
@ -4,6 +4,7 @@ import cn.hutool.core.date.DateUtil;
|
||||||
import com.baomidou.mybatisplus.core.conditions.query.QueryWrapper;
|
import com.baomidou.mybatisplus.core.conditions.query.QueryWrapper;
|
||||||
import com.baomidou.mybatisplus.extension.service.impl.ServiceImpl;
|
import com.baomidou.mybatisplus.extension.service.impl.ServiceImpl;
|
||||||
import com.cultural.heritage.common.ErrorCode;
|
import com.cultural.heritage.common.ErrorCode;
|
||||||
|
import com.cultural.heritage.constant.FileConstant;
|
||||||
import com.cultural.heritage.exception.BusinessException;
|
import com.cultural.heritage.exception.BusinessException;
|
||||||
import com.cultural.heritage.exception.ThrowUtils;
|
import com.cultural.heritage.exception.ThrowUtils;
|
||||||
import com.cultural.heritage.mapper.CartExperienceMapper;
|
import com.cultural.heritage.mapper.CartExperienceMapper;
|
||||||
|
@ -134,6 +135,8 @@ public class CartExperienceServiceImpl extends ServiceImpl<CartExperienceMapper,
|
||||||
BeanUtils.copyProperties(good, cartExperienceGoodVO);
|
BeanUtils.copyProperties(good, cartExperienceGoodVO);
|
||||||
|
|
||||||
cartExperienceVO.setCartExperienceGoodVO(cartExperienceGoodVO);
|
cartExperienceVO.setCartExperienceGoodVO(cartExperienceGoodVO);
|
||||||
|
// TODO
|
||||||
|
cartExperienceGoodVO.setGoodImg(FileConstant.SERVER_HOST + cartExperienceGoodVO.getGoodImg());
|
||||||
return cartExperienceVO;
|
return cartExperienceVO;
|
||||||
}).toList();
|
}).toList();
|
||||||
}
|
}
|
||||||
|
|
|
@ -3,6 +3,7 @@ package com.cultural.heritage.service.good.impl;
|
||||||
import com.baomidou.mybatisplus.core.conditions.query.QueryWrapper;
|
import com.baomidou.mybatisplus.core.conditions.query.QueryWrapper;
|
||||||
import com.baomidou.mybatisplus.extension.service.impl.ServiceImpl;
|
import com.baomidou.mybatisplus.extension.service.impl.ServiceImpl;
|
||||||
import com.cultural.heritage.common.ErrorCode;
|
import com.cultural.heritage.common.ErrorCode;
|
||||||
|
import com.cultural.heritage.constant.FileConstant;
|
||||||
import com.cultural.heritage.exception.BusinessException;
|
import com.cultural.heritage.exception.BusinessException;
|
||||||
import com.cultural.heritage.exception.ThrowUtils;
|
import com.cultural.heritage.exception.ThrowUtils;
|
||||||
import com.cultural.heritage.mapper.CartRecordMapper;
|
import com.cultural.heritage.mapper.CartRecordMapper;
|
||||||
|
@ -113,6 +114,8 @@ public class CartRecordServiceImpl extends ServiceImpl<CartRecordMapper, CartRec
|
||||||
Good good = map.get(goodId);
|
Good good = map.get(goodId);
|
||||||
CartGoodVO goodVO = new CartGoodVO();
|
CartGoodVO goodVO = new CartGoodVO();
|
||||||
BeanUtils.copyProperties(good, goodVO);
|
BeanUtils.copyProperties(good, goodVO);
|
||||||
|
// TODO
|
||||||
|
goodVO.setGoodImg(FileConstant.SERVER_HOST + goodVO.getGoodImg());
|
||||||
cartRecordVO.setCartGoodVO(goodVO);
|
cartRecordVO.setCartGoodVO(goodVO);
|
||||||
return cartRecordVO;
|
return cartRecordVO;
|
||||||
}).toList();
|
}).toList();
|
||||||
|
|
Loading…
Reference in New Issue
Block a user