16 lines
604 B
Python
16 lines
604 B
Python
|
from django.core.management.base import BaseCommand
|
||
|
from django.db import connections
|
||
|
|
||
|
from symposion.reviews.models import ProposalResult, promote_proposal
|
||
|
|
||
|
|
||
|
class Command(BaseCommand):
|
||
|
|
||
|
def handle(self, *args, **options):
|
||
|
accepted_proposals = ProposalResult.objects.filter(accepted=True)
|
||
|
accepted_proposals = accepted_proposals.order_by("proposal")
|
||
|
|
||
|
for result in accepted_proposals:
|
||
|
promote_proposal(result.proposal)
|
||
|
connections["default"].cursor().execute("SELECT setval('schedule_session_id_seq', (SELECT max(id) FROM schedule_session))")
|