| | |
| | | ids.add(worldCupCompetitor.getId()); |
| | | //已参赛 |
| | | if(0 == worldCupPaymentParticipant.getAlreadyEntered()){ |
| | | worldCupPaymentParticipant.setWorldCupId(null); |
| | | worldCupPaymentParticipant.setAlreadyEntered(1); |
| | | worldCupPaymentParticipantService.updateById(worldCupPaymentParticipant); |
| | | } |
| | |
| | | //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"); |
| | |
| | | |
| | | 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("报名失败,课时不足,请续课!"); |
| | | } |
| | | |
| | |
| | | } |
| | | |
| | | } |
| | | |
| | | WorldCup worldCup = this.getById(id); |
| | | worldCup.setStatus(4); |
| | | this.updateById(worldCup); |
| | | } |
| | | |
| | | |