From 03bc927fdb8469c1417f75c2a25a06a0d6b1ae61 Mon Sep 17 00:00:00 2001
From: puzhibing <393733352@qq.com>
Date: 星期四, 21 三月 2024 14:44:48 +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 aa8c625..d13cbad 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
@@ -173,6 +173,7 @@
             ids.add(worldCupCompetitor.getId());
             //已参赛
             if(0 == worldCupPaymentParticipant.getAlreadyEntered()){
+                worldCupPaymentParticipant.setWorldCupId(null);
                 worldCupPaymentParticipant.setAlreadyEntered(1);
                 worldCupPaymentParticipantService.updateById(worldCupPaymentParticipant);
             }
@@ -183,7 +184,7 @@
         //2、调起开启游戏的接口。
         HashMap<String, String> map = new HashMap<>();
         map.put("sign", "0DB011836143EEE2C2E072967C9F4E4B");
-        map.put("space_id", tGame.getStoreId() + "");
+        map.put("space_id", tGame.getSiteId() + "");
         map.put("red_sutu_id", tGame.getRed());
         map.put("blue_sutu_id", tGame.getBlue());
         map.put("api_url", "http://221.182.45.100:56666/communityWorldCup/base/worldCup/endWorldCupCallback");
@@ -536,7 +537,7 @@
                 worldCupPayment.setUnitPrice(worldCupPayment.getAmount().divide(new BigDecimal(num)));
                 worldCupPaymentService.save(worldCupPayment);
                 return payMoneyUtil.weixinpay("社区世界杯报名", "", worldCupPayment.getCode(),
-                        worldCup.getCash().toString(), "/base/worldCup/wxPayWorldCupCallback", "APP", "");
+                        worldCupPayment.getAmount().toString(), "/base/worldCup/wxPayWorldCupCallback", "APP", "");
             }
             //支付宝
             if(payType == 2){
@@ -544,7 +545,7 @@
                 worldCupPayment.setUnitPrice(worldCupPayment.getAmount().divide(new BigDecimal(num)));
                 worldCupPaymentService.save(worldCupPayment);
                 return payMoneyUtil.alipay("2088330203191220", "社区世界杯报名", "世界杯报名", "", worldCupPayment.getCode(),
-                        worldCup.getCash().toString(), "/base/worldCup/aliPayWorldCupCallback");
+                        worldCupPayment.getAmount().toString(), "/base/worldCup/aliPayWorldCupCallback");
             }
             //玩湃币
             if(payType == 3){
@@ -593,7 +594,7 @@
 
                 List<CoursePackageOrderStudent> coursePackageOrderStudent = coursePackageOrderStudentClient.getCoursePackageOrderUser(paymentWorldCup.getUid());
                 int sum = coursePackageOrderStudent.stream().mapToInt(CoursePackageOrderStudent::getLaveClassHours).sum();
-                if(sum < worldCup.getClassHour()){
+                if(sum < worldCup.getClassHour() * num){
                     return ResultUtil.error("报名失败,课时不足,请续课!");
                 }
 
@@ -840,6 +841,10 @@
             }
 
         }
+
+        WorldCup worldCup = this.getById(id);
+        worldCup.setStatus(4);
+        this.updateById(worldCup);
     }
 
 

--
Gitblit v1.7.1