handle toggling of active

pull/1/head
eric 2016-05-16 17:03:58 -04:00 committed by Raymond Yee
parent bf41bfccc6
commit 30874ad832
1 changed files with 8 additions and 2 deletions

View File

@ -2062,7 +2062,13 @@ class Ebook(models.Model):
def set_free_flag(sender, instance, created, **kwargs):
if created:
if not instance.edition.work.is_free:
if not instance.edition.work.is_free and instance.active:
instance.edition.work.is_free = True
instance.edition.work.save()
elif not instance.active and instance.edition.work.is_free==True and instance.edition.work.ebooks().count()==0:
instance.edition.work.is_free = False
instance.edition.work.save()
elif instance.active and instance.edition.work.is_free==False and instance.edition.work.ebooks().count()>0:
instance.edition.work.is_free = True
instance.edition.work.save()