2
1
Fork 1

BUGFIX: more wrong names in surveymails

Esse commit está contido em:
Benni Bärmann 2021-03-17 13:54:11 +01:00
commit d39fb2c87a
1 arquivos alterados com 2 adições e 2 exclusões

Ver arquivo

@ -104,7 +104,7 @@ class Command(BaseCommand):
supported = HonoraryCertificate.objects.filter(granted=True)\
.filter(granted_date__lt = date.today() - timedelta(days=14))\
.exclude(survey_mail_send=True)
self.surveymails_to_object(supported, type='HON', name='request_url')
self.surveymails_to_object(supported, type='HON', name='project')
def surveymails_to_ifg(self):
'''get all IFG objects which where granted two weeks ago'''
@ -127,7 +127,7 @@ class Command(BaseCommand):
supported = Project.objects.filter(granted=True)\
.filter(end__lt = date.today() - timedelta(days=28))\
.exclude(survey_mail_send=True)
self.surveymails_to_object(supported, type='PRO', name='realname')
self.surveymails_to_object(supported, type='PRO', name='name')
def surveymails_to_travel(self):
'''send survey link 3 weeks after end of project reached'''