discount.is_active() で、discount__value によって注文されたすべてのサービスを取得するにはどうすればよいですか?
models.py
class Service(models.Model):
name = models.CharField(max_length=50)
length = models.IntegerField()
description = models.CharField(max_length=150, null=True, blank=True)
long_description = models.TextField(null=True, blank=True)
price = models.DecimalField(max_digits=5, decimal_places=2, null=True, blank=True)
provider = models.ForeignKey(settings.AUTH_USER_MODEL)
categories = models.ManyToManyField(Category)
active_from = models.DateField(null=True, blank=True)
active_to = models.DateField(null=True, blank=True)
rating = models.FloatField(null=True, blank=True)
review_number = models.IntegerField(null=True, blank=True)
discount = models.ManyToManyField(Discounts, null=True, blank=True)
class Discounts(models.Model):
value = models.IntegerField(blank=True, default=0)
active_from = models.DateField(null=True, blank=True)
active_to = models.DateField(null=True, blank=True)
def is_active(self):
return (self.active_from is None or self.active_from <= date.today()) and \
(self.active_to is None or self.active_to >= date.today())
私の見解では、
filtered_services = Service.objects.filter(not important)
services = filtered_services.annotate(highest_discount=Max('discount__value')).order_by('-highest_discount')
したがって、サービスでは、すべてのサービスをすべての割引 (各サービスに関連する) の最大割引で注文していますが、すべてのサービスを discount__value で注文したいのですが、discount.is_active()?
では、discount.is_active() の場合、discount__value で注文されたすべてのサービスを取得するにはどうすればよいでしょうか?
どんな助けでも大歓迎です:)