Source code for journals.management.commands.create_volumes

__copyright__ = "Copyright © Stichting SciPost (SciPost Foundation)"
__license__ = "AGPL v3"


from django.core.management.base import BaseCommand

from journals import factories


[docs]class Command(BaseCommand): help = 'Create Volume objects using the factories.'
[docs] def add_arguments(self, parser): parser.add_argument( 'number', action='store', default=0, type=int, help='Number of Volumes to add')
[docs] def handle(self, *args, **kwargs): self.create_volumes(kwargs['number'])
[docs] def create_volumes(self, n): factories.VolumeFactory.create_batch(n) self.stdout.write(self.style.SUCCESS('Successfully created {n} Volumes.'.format(n=n)))