You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardexpand all lines: yudao-framework/yudao-spring-boot-starter-biz-tenant/src/main/java/cn/iocoder/yudao/framework/tenant/core/job/TenantJobAspect.java
Copy file name to clipboardexpand all lines: yudao-module-infra/yudao-module-infra-biz/src/main/java/cn/iocoder/yudao/module/infra/framework/file/core/client/s3/S3FileClient.java
Copy file name to clipboardexpand all lines: yudao-module-infra/yudao-module-infra-biz/src/main/java/cn/iocoder/yudao/module/infra/framework/file/core/client/s3/S3FileClientConfig.java
+4-1
Original file line number
Diff line number
Diff line change
@@ -28,7 +28,8 @@ public class S3FileClientConfig implements FileClientConfig {
Copy file name to clipboardexpand all lines: yudao-module-mall/yudao-module-promotion-biz/src/main/java/cn/iocoder/yudao/module/promotion/controller/admin/discount/vo/DiscountActivityBaseVO.java
Copy file name to clipboardexpand all lines: yudao-module-mall/yudao-module-promotion-biz/src/main/java/cn/iocoder/yudao/module/promotion/dal/dataobject/coupon/CouponTemplateDO.java
Copy file name to clipboardexpand all lines: yudao-module-mall/yudao-module-promotion-biz/src/main/java/cn/iocoder/yudao/module/promotion/service/combination/CombinationRecordServiceImpl.java
+1-1
Original file line number
Diff line number
Diff line change
@@ -131,7 +131,7 @@ public KeyValue<CombinationActivityDO, CombinationProductDO> validateCombination
Copy file name to clipboardexpand all lines: yudao-module-mall/yudao-module-promotion-biz/src/main/java/cn/iocoder/yudao/module/promotion/service/coupon/CouponServiceImpl.java
Copy file name to clipboardexpand all lines: yudao-module-mall/yudao-module-promotion-biz/src/main/java/cn/iocoder/yudao/module/promotion/service/coupon/CouponTemplateServiceImpl.java
Copy file name to clipboardexpand all lines: yudao-module-mall/yudao-module-promotion-biz/src/main/java/cn/iocoder/yudao/module/promotion/service/point/PointActivityServiceImpl.java
+1-1
Original file line number
Diff line number
Diff line change
@@ -300,7 +300,7 @@ public PointValidateJoinRespDTO validateJoinPointActivity(Long activityId, Long
Copy file name to clipboardexpand all lines: yudao-module-mall/yudao-module-promotion-biz/src/main/java/cn/iocoder/yudao/module/promotion/service/seckill/SeckillActivityServiceImpl.java
+1-1
Original file line number
Diff line number
Diff line change
@@ -317,7 +317,7 @@ public SeckillValidateJoinRespDTO validateJoinSeckill(Long activityId, Long skuI
Copy file name to clipboardexpand all lines: yudao-module-mall/yudao-module-trade-biz/src/main/java/cn/iocoder/yudao/module/trade/service/order/TradeOrderUpdateServiceImpl.java
+5-3
Original file line number
Diff line number
Diff line change
@@ -4,6 +4,7 @@
4
4
importcn.hutool.core.date.LocalDateTimeUtil;
5
5
importcn.hutool.core.lang.Assert;
6
6
importcn.hutool.core.map.MapUtil;
7
+
importcn.hutool.core.net.NetUtil;
7
8
importcn.hutool.core.util.ObjUtil;
8
9
importcn.hutool.core.util.ObjectUtil;
9
10
importcn.hutool.core.util.RandomUtil;
@@ -888,16 +889,17 @@ public void cancelPaidOrder(Long userId, Long orderId, Integer cancelType) {
888
889
if (!order.getPayStatus()) {
889
890
throwexception(ORDER_CANCEL_PAID_FAIL, "已支付");
890
891
}
891
-
// 1.3 校验订单是否已退款
892
-
if (ObjUtil.equal(TradeOrderRefundStatusEnum.NONE.getStatus(), order.getRefundStatus())) {
892
+
// 1.3 校验订单是否未退款
893
+
if (ObjUtil.notEqual(TradeOrderRefundStatusEnum.NONE.getStatus(), order.getRefundStatus())) {
Copy file name to clipboardexpand all lines: yudao-module-pay/yudao-spring-boot-starter-biz-pay/src/main/java/cn/iocoder/yudao/framework/pay/core/client/impl/weixin/AbstractWxPayClient.java
+1
Original file line number
Diff line number
Diff line change
@@ -88,6 +88,7 @@ protected PayOrderRespDTO doUnifiedOrder(PayOrderUnifiedReqDTO reqDTO) throws Ex
88
88
thrownewIllegalArgumentException(String.format("未知的 API 版本(%s)", config.getApiVersion()));
0 commit comments