Fix message
This commit is contained in:
parent
390ff974d7
commit
e04c621a3d
|
|
@ -54,4 +54,4 @@ class Command(BaseCommand):
|
||||||
objects.append(est_empl)
|
objects.append(est_empl)
|
||||||
|
|
||||||
ee = EstablishmentEmployee.objects.bulk_create(objects)
|
ee = EstablishmentEmployee.objects.bulk_create(objects)
|
||||||
self.stdout.write(self.style.WARNING(f'Created establishment employee objects.'))
|
self.stdout.write(self.style.WARNING(f'Created employee position objects.'))
|
||||||
|
|
|
||||||
|
|
@ -6,7 +6,7 @@ from establishment.models import Employee
|
||||||
|
|
||||||
|
|
||||||
class Command(BaseCommand):
|
class Command(BaseCommand):
|
||||||
help = '''Add employee position from old db to new db.
|
help = '''Add award from old db to new db.
|
||||||
Run after command add_award_type!'''
|
Run after command add_award_type!'''
|
||||||
|
|
||||||
def award_sql(self):
|
def award_sql(self):
|
||||||
|
|
@ -30,7 +30,6 @@ class Command(BaseCommand):
|
||||||
type = AwardType.objects.filter(old_id=a.award_type).first()
|
type = AwardType.objects.filter(old_id=a.award_type).first()
|
||||||
state = Award.PUBLISHED if a.state == 'published' else Award.WAITING
|
state = Award.PUBLISHED if a.state == 'published' else Award.WAITING
|
||||||
if profile and type:
|
if profile and type:
|
||||||
print('THIS IS GOOD!')
|
|
||||||
award = Award(award_type=type, vintage_year=a.vintage_year,
|
award = Award(award_type=type, vintage_year=a.vintage_year,
|
||||||
title={"en-GB": a.title}, state=state,
|
title={"en-GB": a.title}, state=state,
|
||||||
content_object=profile, old_id=a.id)
|
content_object=profile, old_id=a.id)
|
||||||
|
|
|
||||||
|
|
@ -6,7 +6,7 @@ from location.models import Country
|
||||||
|
|
||||||
|
|
||||||
class Command(BaseCommand):
|
class Command(BaseCommand):
|
||||||
help = '''Add employee position from old db to new db.
|
help = '''Add award types from old db to new db.
|
||||||
Run after migrate country code!'''
|
Run after migrate country code!'''
|
||||||
|
|
||||||
def award_types_sql(self):
|
def award_types_sql(self):
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue
Block a user