Use ints for years

This commit is contained in:
Ludovic Stephan 2020-11-21 17:45:26 +01:00
parent 975c37afe4
commit 7289e4f1dc
3 changed files with 8 additions and 8 deletions

View file

@ -73,7 +73,7 @@ class ClipperLDAP(LDAP):
raise ValueError("Invalid home directory")
# Ça casse en 2100, mais le système de naming de sas aussi...
promo = "20" + promo
promo = 2000 + int(promo)
return promo, self.verbose_depts.get(dept, None)

View file

@ -16,7 +16,7 @@ class Command(BaseCommand):
group.add_argument(
"--all", action="store_true", help="Importe l'intégralité des promotions"
)
group.add_argument("--promo", help="Spécifie la promotion à importer")
group.add_argument("--promo", type=int, help="Spécifie la promotion à importer")
def get_current_promo(self):
today = date.today()
@ -24,15 +24,15 @@ class Command(BaseCommand):
if today.month < 9:
year -= 1
return str(year)
return year
def handle(self, *args, **options):
if options["all"]:
promo = None
elif options["promo"] is not None:
promo = options["promo"]
if len(promo) == 2:
promo = "20" + promo
if promo < 100:
promo = 2000 + promo
else:
promo = self.get_current_promo()

View file

@ -20,7 +20,7 @@ class Command(BaseCommand):
group.add_argument(
"--all", action="store_true", help="Importe l'intégralité des promotions"
)
group.add_argument("--promo", help="Spécifie la promotion à importer")
group.add_argument("--promo", type=int, help="Spécifie la promotion à importer")
def get_current_promo(self):
today = date.today()
@ -35,8 +35,8 @@ class Command(BaseCommand):
promo = None
elif options["promo"] is not None:
promo = options["promo"]
if len(promo) == 2:
promo = "20" + promo
if promo < 100:
promo = 2000 + promo
else:
promo = self.get_current_promo()