this is 4.2 update

This commit is contained in:
chen-xin-zhi 2025-04-03 16:45:13 +08:00
parent 34cefe5442
commit 30702deba7
12 changed files with 123 additions and 26 deletions

View File

@ -89,12 +89,15 @@ public class GlobalController {
private RedisTemplate<String, Object> redisTemplate; private RedisTemplate<String, Object> redisTemplate;
// 节日集合的键 // 优惠价格的键
private static final String COUPON_PRICER_KEY = "couponPrice"; private static final String COUPON_PRICER_KEY = "couponPrice";
// 预约须知的键 // 预约须知的键
private static final String NOTICE_KEY = "noticeKey"; private static final String NOTICE_KEY = "noticeKey";
// 邮费价格的键
private static final String POSTAGE_PRICER_KEY = "postagePrice";
/** /**
@ -279,6 +282,7 @@ public class GlobalController {
conditions.put("isShelves", 1); conditions.put("isShelves", 1);
List<Good> goodList = commonService.findByFieldEqTargetFields(conditions, goodService); List<Good> goodList = commonService.findByFieldEqTargetFields(conditions, goodService);
List<GoodLabelVO> goodLabelVOS = commonService.convertList(goodList, GoodLabelVO.class); List<GoodLabelVO> goodLabelVOS = commonService.convertList(goodList, GoodLabelVO.class);
Collections.reverse(goodLabelVOS);
Map<String, GoodTypeVO> map = new HashMap<>(); Map<String, GoodTypeVO> map = new HashMap<>();
for (GoodLabelVO goodLabelVO : goodLabelVOS) { for (GoodLabelVO goodLabelVO : goodLabelVOS) {
@ -308,7 +312,7 @@ public class GlobalController {
/** /**
* web端管理员修改商品优惠价格参数 * web端管理员修改商品优惠价格参数
* @return 当前类别的商品列表 * @return 优惠价格
*/ */
@GetMapping("/update/coupon/price") @GetMapping("/update/coupon/price")
@Operation(summary = "web端管理员修改商品优惠价格参数", description = "参数方法名updateCouponPrice") @Operation(summary = "web端管理员修改商品优惠价格参数", description = "参数方法名updateCouponPrice")
@ -325,7 +329,7 @@ public class GlobalController {
/** /**
* web端小程序端查看商品优惠价格参数 * web端小程序端查看商品优惠价格参数
* @return 当前类别的商品列表 * @return 优惠价格
*/ */
@GetMapping("/query/coupon/price") @GetMapping("/query/coupon/price")
@Operation(summary = "web端小程序端查看商品优惠价格参数", description = "参数方法名queryCouponPrice") @Operation(summary = "web端小程序端查看商品优惠价格参数", description = "参数方法名queryCouponPrice")
@ -342,7 +346,7 @@ public class GlobalController {
/** /**
* web端更新预约须知 * web端更新预约须知
* @return 当前类别的商品列表 * @return 预约须知
*/ */
@GetMapping("/update/notice") @GetMapping("/update/notice")
@Operation(summary = "web端更新预约须知", description = "参数方法名updateNotice") @Operation(summary = "web端更新预约须知", description = "参数方法名updateNotice")
@ -359,7 +363,7 @@ public class GlobalController {
/** /**
* 小程序端预约须知 * 小程序端预约须知
* @return 当前类别的商品列表 * @return 预约须知
*/ */
@GetMapping("/query/notice") @GetMapping("/query/notice")
@Operation(summary = "web端更新预约须知", description = "参数方法名queryNotice") @Operation(summary = "web端更新预约须知", description = "参数方法名queryNotice")
@ -378,4 +382,39 @@ public class GlobalController {
/**
* web端管理员修改邮费参数
* @return 邮费价格
*/
@GetMapping("/update/postage/price")
@Operation(summary = "web端管理员修改邮费参数", description = "参数方法名updatePostagePrice")
@AuthCheck(mustRole = UserConstant.ADMIN_ROLE)
public BaseResponse<Boolean> updatePostagePrice(@RequestParam BigDecimal bigDecimal) {
redisTemplate.opsForValue().set(POSTAGE_PRICER_KEY, bigDecimal.toString());
return ResultUtils.success(true);
}
/**
* web端小程序端查看邮费价格参数
* @return 邮费价格
*/
@GetMapping("/query/postage/price")
@Operation(summary = "web端小程序端查看邮费价格参数", description = "参数方法名queryPostagePrice")
public BaseResponse<Object> queryPostagePrice() {
String postagePrice = (String) redisTemplate.opsForValue().get(POSTAGE_PRICER_KEY);
ThrowUtils.throwIf(postagePrice == null, ErrorCode.OPERATION_ERROR, "参数不存在");
return ResultUtils.success(new BigDecimal(postagePrice).setScale(2, RoundingMode.HALF_UP));
}
} }

View File

@ -128,8 +128,7 @@ public class OrderController {
orderService.validSingleGoodOrder(generalGoodSingleBuyAddRequest, isGeneral); orderService.validSingleGoodOrder(generalGoodSingleBuyAddRequest, isGeneral);
// 封装成订单主要信息请求体 // 封装成订单主要信息请求体
OrderMainInfoAddRequest orderMainInfoAddRequest = new OrderMainInfoAddRequest(); OrderMainInfoAddRequest orderMainInfoAddRequest = commonService.copyProperties(generalGoodSingleBuyAddRequest, OrderMainInfoAddRequest.class);
BeanUtils.copyProperties(generalGoodSingleBuyAddRequest, orderMainInfoAddRequest);
// 计算单个商品购买的总金额 // 计算单个商品购买的总金额
BigDecimal totalAmount = orderService.calculateTotalAmount(orderMainInfoAddRequest); BigDecimal totalAmount = orderService.calculateTotalAmount(orderMainInfoAddRequest);

View File

@ -9,7 +9,7 @@ import java.util.List;
@Data @Data
@Schema(description = "购物车订单创建请求体", requiredProperties = {"orderType", "userName", "addressId", @Schema(description = "购物车订单创建请求体", requiredProperties = {"orderType", "userName", "addressId",
"couponId", "totalAmount", "note", "cartPayRequestList"}) "couponId", "totalAmount", "note", "cartPayRequestList", "isPostage"})
public class CartOrderAddRequest implements Serializable { public class CartOrderAddRequest implements Serializable {
@ -41,6 +41,12 @@ public class CartOrderAddRequest implements Serializable {
private Long couponId; private Long couponId;
/**
* 是否有邮费
*/
@Schema(description = "是否有邮费", example = "true")
private Boolean isPostage;
/** /**
* 订单备注 * 订单备注

View File

@ -58,6 +58,14 @@ public class OrderAddRequest implements Serializable {
@Schema(description = "订单总金额", example = "500") @Schema(description = "订单总金额", example = "500")
private BigDecimal totalAmount; private BigDecimal totalAmount;
/**
* 邮费
*/
@Schema(description = "邮费", example = "50")
private BigDecimal postage;
/** /**
* 订单状态 * 订单状态
*/ */

View File

@ -10,7 +10,7 @@ import java.util.List;
@Data @Data
@Schema(description = "常规类商品单独购买创建请求体", requiredProperties = {"userId", "userName", "orderNumber", "addressId", "contactsId", @Schema(description = "常规类商品单独购买创建请求体", requiredProperties = {"userId", "userName", "orderNumber", "addressId", "contactsId",
"couponId", "orderStatus", "note", "orderItemMainInfoAddRequestList"}) "couponId", "orderStatus", "isPostage", "note", "orderItemMainInfoAddRequestList"})
public class GeneralGoodSingleBuyAddRequest implements Serializable { public class GeneralGoodSingleBuyAddRequest implements Serializable {
@ -49,6 +49,13 @@ public class GeneralGoodSingleBuyAddRequest implements Serializable {
private Long couponId; private Long couponId;
/**
* 是否有邮费
*/
@Schema(description = "是否有邮费", example = "true")
private Boolean isPostage;
/** /**
* 订单备注 * 订单备注
*/ */

View File

@ -10,7 +10,7 @@ import java.util.List;
@Data @Data
@Schema(description = "订单主要信息请求体", requiredProperties = {"userName", "addressId", "contactsId", @Schema(description = "订单主要信息请求体", requiredProperties = {"userName", "addressId", "contactsId",
"couponId", "totalAmount", "orderStatus", "note", "orderItemMainInfoAddRequestList"}) "couponId", "totalAmount", "orderStatus", "note", "orderItemMainInfoAddRequestList", "isPostage"})
public class OrderMainInfoAddRequest implements Serializable { public class OrderMainInfoAddRequest implements Serializable {
@ -56,6 +56,13 @@ public class OrderMainInfoAddRequest implements Serializable {
private BigDecimal totalAmount; private BigDecimal totalAmount;
/**
* 是否有邮费
*/
@Schema(description = "是否有邮费", example = "true")
private Boolean isPostage;
/** /**
* 订单备注 * 订单备注
*/ */

View File

@ -100,6 +100,13 @@ public class Order implements Serializable {
*/ */
private String trackingNumber; private String trackingNumber;
/**
* 邮费
*/
private BigDecimal postage;
/** /**
* 创建时间 * 创建时间
*/ */

View File

@ -82,6 +82,10 @@ public class OrderVO implements Serializable {
*/ */
private String trackingNumber; private String trackingNumber;
/**
* 邮费
*/
private BigDecimal postage;
/** /**
* 订单明细信息 * 订单明细信息

View File

@ -37,16 +37,20 @@ import com.cultural.heritage.utils.MultiDelayMessage;
import com.cultural.heritage.utils.OrderNumberUtils; import com.cultural.heritage.utils.OrderNumberUtils;
import com.cultural.heritage.utils.SqlUtils; import com.cultural.heritage.utils.SqlUtils;
import jakarta.annotation.Resource; import jakarta.annotation.Resource;
import lombok.extern.slf4j.Slf4j;
import org.apache.commons.lang3.ObjectUtils; import org.apache.commons.lang3.ObjectUtils;
import org.apache.commons.lang3.StringUtils; import org.apache.commons.lang3.StringUtils;
import org.springframework.amqp.rabbit.core.RabbitTemplate; import org.springframework.amqp.rabbit.core.RabbitTemplate;
import org.springframework.beans.BeanUtils; import org.springframework.beans.BeanUtils;
import org.springframework.data.redis.core.RedisTemplate;
import org.springframework.stereotype.Service; import org.springframework.stereotype.Service;
import java.math.BigDecimal; import java.math.BigDecimal;
import java.math.RoundingMode;
import java.util.*; import java.util.*;
@Service @Service
@Slf4j
public class OrderServiceImpl extends ServiceImpl<OrderMapper, Order> implements OrderService { public class OrderServiceImpl extends ServiceImpl<OrderMapper, Order> implements OrderService {
@ -102,6 +106,15 @@ public class OrderServiceImpl extends ServiceImpl<OrderMapper, Order> implements
private PendingServiceOrderService pendingServiceOrderService; private PendingServiceOrderService pendingServiceOrderService;
@Resource
private RedisTemplate<String, Object> redisTemplate;
// 邮费价格的键
private static final String POSTAGE_PRICER_KEY = "postagePrice";
/** /**
* 获取查询条件 * 获取查询条件
*/ */
@ -149,9 +162,9 @@ public class OrderServiceImpl extends ServiceImpl<OrderMapper, Order> implements
String orderType = orderMainInfoAddRequest.getOrderType(); String orderType = orderMainInfoAddRequest.getOrderType();
String note = orderMainInfoAddRequest.getNote(); String note = orderMainInfoAddRequest.getNote();
BigDecimal totalAmount = orderMainInfoAddRequest.getTotalAmount(); BigDecimal totalAmount = orderMainInfoAddRequest.getTotalAmount();
Boolean isPostage = orderMainInfoAddRequest.getIsPostage();
List<OrderItemMainInfoAddRequest> orderItemMainInfoAddRequestList = orderMainInfoAddRequest.getOrderItemMainInfoAddRequestList(); List<OrderItemMainInfoAddRequest> orderItemMainInfoAddRequestList = orderMainInfoAddRequest.getOrderItemMainInfoAddRequestList();
GoodTypeEnum orderTypeEnum = GoodTypeEnum.getEnumByValue(orderType); GoodTypeEnum orderTypeEnum = GoodTypeEnum.getEnumByValue(orderType);
ThrowUtils.throwIf(orderTypeEnum == null, ErrorCode.PARAMS_ERROR); ThrowUtils.throwIf(orderTypeEnum == null, ErrorCode.PARAMS_ERROR);
AddressSnapshot addressSnapshot = null; AddressSnapshot addressSnapshot = null;
@ -175,6 +188,20 @@ public class OrderServiceImpl extends ServiceImpl<OrderMapper, Order> implements
BeanUtils.copyProperties(couponVO, couponSnapshot); BeanUtils.copyProperties(couponVO, couponSnapshot);
couponSnapshot.setId(couponId); couponSnapshot.setId(couponId);
} }
// 获取邮费
BigDecimal postage = new BigDecimal("0.00");
try {
// 判断是否有邮费
if (isPostage) {
String postagePrice = (String) redisTemplate.opsForValue().get(POSTAGE_PRICER_KEY);
ThrowUtils.throwIf(postagePrice == null, ErrorCode.OPERATION_ERROR, "参数不存在");
postage = new BigDecimal(postagePrice).setScale(2, RoundingMode.HALF_UP);
}
} catch (Exception e) {
log.info("邮费参数不存在");
}
// 封装订单明细信息 // 封装订单明细信息
List<OrderItemAddRequest> orderItemAddRequestList = orderItemMainInfoAddRequestList.stream().map(orderItemMainInfoAddRequest -> { List<OrderItemAddRequest> orderItemAddRequestList = orderItemMainInfoAddRequestList.stream().map(orderItemMainInfoAddRequest -> {
Long goodId = orderItemMainInfoAddRequest.getGoodId(); Long goodId = orderItemMainInfoAddRequest.getGoodId();
@ -200,6 +227,7 @@ public class OrderServiceImpl extends ServiceImpl<OrderMapper, Order> implements
orderAddRequest.setOrderType(orderType); orderAddRequest.setOrderType(orderType);
orderAddRequest.setNote(note); orderAddRequest.setNote(note);
orderAddRequest.setTotalAmount(totalAmount); orderAddRequest.setTotalAmount(totalAmount);
orderAddRequest.setPostage(postage);
orderAddRequest.setAddressSnapshot(addressSnapshot); orderAddRequest.setAddressSnapshot(addressSnapshot);
orderAddRequest.setContactsSnapshot(contactsSnapshot); orderAddRequest.setContactsSnapshot(contactsSnapshot);
orderAddRequest.setCouponSnapshot(couponSnapshot); orderAddRequest.setCouponSnapshot(couponSnapshot);

View File

@ -1,21 +1,13 @@
spring: spring:
datasource: datasource:
driver-class-name: com.mysql.cj.jdbc.Driver driver-class-name: com.mysql.cj.jdbc.Driver
url: jdbc:mysql://154.8.193.216:3306/feiyi?serverTimezone=Asia/Shanghai url: jdbc:mysql://1.94.237.210:3306/feiyi-dev?serverTimezone=Asia/Shanghai
username: feiyi username: feiyi
password: 123456asd password: Cxzyt331
hikari: hikari:
maximum-pool-size: 20 maximum-pool-size: 20
max-lifetime: 120000 max-lifetime: 120000
# driver-class-name: com.mysql.cj.jdbc.Driver
# url: jdbc:mysql://123.249.108.160:3306/feiyi-sc?serverTimezone=Asia/Shanghai
# username: feiyi-sc
# password: 123456asd
# hikari:
# maximum-pool-size: 20
# max-lifetime: 120000
rabbitmq: rabbitmq:
host: 123.249.108.160 host: 123.249.108.160
@ -47,7 +39,7 @@ springdoc:
server: server:
port: 9092 port: 9090
servlet: servlet:
context-path: /api context-path: /api

View File

@ -2,9 +2,9 @@ spring:
datasource: datasource:
driver-class-name: com.mysql.cj.jdbc.Driver driver-class-name: com.mysql.cj.jdbc.Driver
url: jdbc:mysql://123.249.108.160:3306/feiyi-sc?serverTimezone=Asia/Shanghai url: jdbc:mysql://1.94.237.210:3306/feiyi-prod?serverTimezone=Asia/Shanghai
username: feiyi-sc username: feiyi-prod
password: 123456asd password: Jcfyllsyg
hikari: hikari:
maximum-pool-size: 20 maximum-pool-size: 20
max-lifetime: 120000 max-lifetime: 120000

View File

@ -1,6 +1,6 @@
spring: spring:
profiles: profiles:
active: prod active: dev