Fix the drawing resume for the final

Signed-off-by: Emmy D'Anello <emmy.danello@animath.fr>
This commit is contained in:
Emmy D'Anello 2023-05-11 18:00:32 +02:00
parent b38302449c
commit 9bc0e99d6d
Signed by: ynerant
GPG Key ID: 3A75C55819C8CF85
2 changed files with 47 additions and 40 deletions

View File

@ -988,8 +988,7 @@ class DrawConsumer(AsyncJsonWebsocketConsumer):
async for participation in self.tournament.participations.filter(valid=True).prefetch_related('team').all(): async for participation in self.tournament.participations.filter(valid=True).prefetch_related('team').all():
notes[participation] = sum([await pool.aaverage(participation) notes[participation] = sum([await pool.aaverage(participation)
async for pool in self.tournament.pools.filter(participations=participation) async for pool in self.tournament.pools.filter(participations=participation)
.prefetch_related('passages').prefetch_related('tweaks') .prefetch_related('passages')])
if pool.results_available])
# Sort notes in a decreasing order # Sort notes in a decreasing order
ordered_participations = sorted(notes.keys(), key=lambda x: -notes[x]) ordered_participations = sorted(notes.keys(), key=lambda x: -notes[x])
# Define pools and passage orders from the ranking of the first round # Define pools and passage orders from the ranking of the first round
@ -1368,7 +1367,7 @@ class DrawConsumer(AsyncJsonWebsocketConsumer):
else: else:
# Don't continue the final tournament # Don't continue the final tournament
r1 = await self.tournament.draw.round_set \ r1 = await self.tournament.draw.round_set \
.prefetch_related('current_pool__current__team__participation__team').aget(number=1) .prefetch_related('current_pool__current_team__participation__team').aget(number=1)
self.tournament.draw.current_round = r1 self.tournament.draw.current_round = r1
await self.tournament.draw.asave() await self.tournament.draw.asave()
@ -1378,6 +1377,19 @@ class DrawConsumer(AsyncJsonWebsocketConsumer):
td.choice_dice = None td.choice_dice = None
await td.asave() await td.asave()
await self.channel_layer.group_send(f"tournament-{self.tournament.id}",
{
'tid': self.tournament_id,
'type': 'draw.send_poules',
'round': 2, 'poules': [
{
'letter': pool.get_letter_display(),
'teams': [],
}
async for pool in r.pool_set.order_by('letter').all()
]
})
async for td in r1.team_draws.prefetch_related('participation__team').all(): async for td in r1.team_draws.prefetch_related('participation__team').all():
await self.channel_layer.group_send( await self.channel_layer.group_send(
f"tournament-{self.tournament.id}", {'tid': self.tournament_id, 'type': 'draw.dice', f"tournament-{self.tournament.id}", {'tid': self.tournament_id, 'type': 'draw.dice',

View File

@ -323,9 +323,8 @@ document.addEventListener('DOMContentLoaded', () => {
li.append(title, teamList) li.append(title, teamList)
poolList.append(li) poolList.append(li)
} }
teamList.innerHTML = ""
if (poule.teams.length > 0) {
// The pool is initialized
for (let team of poule.teams) { for (let team of poule.teams) {
// Reorder dices // Reorder dices
let diceDiv = document.getElementById(`dice-${tid}-${team}`) let diceDiv = document.getElementById(`dice-${tid}-${team}`)
@ -333,17 +332,14 @@ document.addEventListener('DOMContentLoaded', () => {
c += 1 c += 1
let teamLiId = `recap-${tid}-round-${round}-team-${team}` let teamLiId = `recap-${tid}-round-${round}-team-${team}`
let teamLi = document.getElementById(teamLiId)
if (teamLi === null) {
// Add a line for the team in the recap // Add a line for the team in the recap
teamLi = document.createElement('li') let teamLi = document.createElement('li')
teamLi.id = teamLiId teamLi.id = teamLiId
teamLi.classList.add('list-group-item') teamLi.classList.add('list-group-item')
teamLi.setAttribute('data-tournament', tid) teamLi.setAttribute('data-tournament', tid)
teamList.append(teamLi) teamList.append(teamLi)
}
// Add the accepted problem div (empty for now) // Add the accepted problem div (empty for now)
let acceptedDivId = `recap-${tid}-round-${round}-team-${team}-accepted` let acceptedDivId = `recap-${tid}-round-${round}-team-${team}-accepted`
@ -367,7 +363,6 @@ document.addEventListener('DOMContentLoaded', () => {
teamLi.append(rejectedDiv) teamLi.append(rejectedDiv)
} }
} }
}
// Draw tables // Draw tables
let tablesDiv = document.getElementById(`tables-${tid}`) let tablesDiv = document.getElementById(`tables-${tid}`)