这是models.py
class StoreProduct(models.Model):
product = models.ForeignKey('products.Product')
category = models.ForeignKey('products.Category')
store = models.ForeignKey('Store')
price = models.IntegerField(null=True , blank=True)
quantity = models.IntegerField(null=True , blank=True)
discount = models.IntegerField(null=True , blank=True)
size = models.CharField(max_length=50 , null=True , blank=True)
color = models.CharField(max_length=50 , null=True , blank=True)
timestamp = models.DateTimeField(auto_now_add=True,auto_now=False)
objects = StoreProductManager()
def __unicode__(self):
return self.product.title
这是views.py
if discount:
max_discount = StoreProduct.objects.filter(product=item).values_list('discount' , flat=True).annotate(Max('discount'))
min_price_store = StoreProduct.objects.filter(product=item , discount=max_discount).values_list('store__StoreName' , flat=True)
print max_discount, min_price_store
if discount > max_discount:
item.discount = discount
item.save()
annotate查询返回像这样的结果
[30L, 20L, 40L]
我想要的是它应该返回最大折扣..但它会抛出多个结果,如20L,30L,40L。
我该怎么做才能获得折扣的最大价值?
谢谢。
答案 0 :(得分:2)
您应该使用aggregate
,因为annotate
只会在查询中添加对象
storeproduct = StoreProduct.objects.filter(product=item).aggregate(max_discount=Max('discount'))
storeproduct['max_discount']
将返回最大折扣值,可以在您的下一个查询中使用,如下所示:
min_price_store = StoreProduct.objects.filter(product=item , discount=storeproduct['max_discount']).values_list('store__StoreName' , flat=True)