From 7cd3dea07f5b7cefad9dea9fd7daf992449aaac8 Mon Sep 17 00:00:00 2001
From: puzhibing <393733352@qq.com>
Date: 星期二, 12 三月 2024 18:24:38 +0800
Subject: [PATCH] 修改bug

---
 cloud-server-communityWorldCup/src/main/java/com/dsh/communityWorldCup/service/impl/WorldCupServiceImpl.java |   13 +++++++++----
 1 files changed, 9 insertions(+), 4 deletions(-)

diff --git a/cloud-server-communityWorldCup/src/main/java/com/dsh/communityWorldCup/service/impl/WorldCupServiceImpl.java b/cloud-server-communityWorldCup/src/main/java/com/dsh/communityWorldCup/service/impl/WorldCupServiceImpl.java
index 1348a56..dfb6c24 100644
--- a/cloud-server-communityWorldCup/src/main/java/com/dsh/communityWorldCup/service/impl/WorldCupServiceImpl.java
+++ b/cloud-server-communityWorldCup/src/main/java/com/dsh/communityWorldCup/service/impl/WorldCupServiceImpl.java
@@ -132,6 +132,9 @@
 
         String people = startWorldCup.getPeople();
         JSONArray jsonArray = JSON.parseArray(people);
+        if(jsonArray.size() != 6){
+            return ResultUtil.error("参赛人数只能是6人");
+        }
         String timeStr = UUIDUtil.getTimeStr() + UUIDUtil.getNumberRandom(3);
         List<Long> ids = new ArrayList<>();
         for (int i = 0; i < jsonArray.size(); i++) {
@@ -394,9 +397,6 @@
 
         String cupIds = paymentWorldCup.getIds();
         JSONArray jsonArray = JSON.parseArray(cupIds);
-        if(jsonArray.size() != 6){
-            return ResultUtil.error("参赛人数只能是6人");
-        }
         List<WorldCupPayment> payments = worldCupPaymentService.list(new QueryWrapper<WorldCupPayment>().eq("worldCupId", worldCup.getId())
                 .eq("payStatus", 2).eq("state", 1));
         List<Long> ids = payments.stream().map(WorldCupPayment::getId).collect(Collectors.toList());
@@ -522,6 +522,7 @@
 
                 appUser.setPlayPaiCoins(appUser.getPlayPaiCoins() - multiply.intValue());
                 appUserClient.updateAppUser(appUser);
+                //
 
                 //添加报名明细
                 String ids = paymentWorldCup.getIds();
@@ -743,6 +744,7 @@
             BigDecimal multiply = worldCupPayment.getUnitPrice().multiply(new BigDecimal(list1.size()));
             //免费
             if(worldCupPayment.getPayType() == 0){
+                worldCupPayment.setWorldCupId(null);
                 worldCupPayment.setRefundOrderNo("");
                 worldCupPayment.setRefundTime(new Date());
                 worldCupPayment.setPayStatus(3);
@@ -767,6 +769,7 @@
                 }
                 if("10000".equals(map.get("code"))){
                     String trade_no = map.get("trade_no");
+                    worldCupPayment.setWorldCupId(null);
                     worldCupPayment.setRefundTime(new Date());
                     worldCupPayment.setRefundOrderNo(trade_no);
                     worldCupPayment.setPayStatus(3);
@@ -779,6 +782,7 @@
                 AppUser appUser = appUserClient.getAppUser(appUserId);
                 appUser.setPlayPaiCoins(appUser.getPlayPaiCoins() + multiply.intValue());
                 appUserClient.updateAppUser(appUser);
+                worldCupPayment.setWorldCupId(null);
                 worldCupPayment.setRefundTime(new Date());
                 worldCupPayment.setRefundOrderNo("");
                 worldCupPayment.setPayStatus(3);
@@ -791,6 +795,7 @@
                     DeductionClassHourList deductionClassHourList = JSON.parseObject(content, DeductionClassHourList.class);
                     coursePackageOrderStudentClient.backspaceClassHour(deductionClassHourList);
                 }
+                worldCupPayment.setWorldCupId(null);
                 worldCupPayment.setRefundTime(new Date());
                 worldCupPayment.setRefundOrderNo("");
                 worldCupPayment.setPayStatus(3);
@@ -833,7 +838,7 @@
         List<Map<String, Object>> mapList = this.baseMapper.worldCupGameStatistics(worldCupGameStatistics);
         for (Map<String, Object> stringObjectMap : mapList) {
             Integer id = Integer.valueOf(stringObjectMap.get("id").toString());
-            int count = worldCupCompetitorService.count(new QueryWrapper<WorldCupCompetitor>().eq("worldCupId", id));
+            int count = worldCupCompetitorService.getMatchTime(id);
             stringObjectMap.put("matchTime", count);
 
             List<WorldCupPayment> list = worldCupPaymentService.list(new QueryWrapper<WorldCupPayment>().eq("worldCupId", id)

--
Gitblit v1.7.1