Delete old awards, add new awards

This commit is contained in:
Виктор Гладких 2019-11-14 16:36:55 +03:00
parent e08bd8508a
commit acd30fb457

View File

@ -26,6 +26,7 @@ class Command(BaseCommand):
def handle(self, *args, **kwargs):
objects =[]
Award.objects.all().delete()
for a in tqdm(self.award_sql(), desc='Add award to profile'):
profiles = Employee.objects.filter(old_id=a.profile_id)
type = AwardType.objects.filter(old_id=a.award_type)