在Django中,字段过滤器有关系吗?

时间:2009-12-31 11:20:35

标签: python django django-models django-orm

我在Django中有这些模型:

class Customer(models.Model):
    def __unicode__(self):
        return self.name
    name = models.CharField(max_length=200)

class Sale(models.Model):
    def __unicode__(self):
        return "Sale %s (%i)" % (self.type, self.id)
    customer = models.ForeignKey(Customer)
    total = models.DecimalField(max_digits=15, decimal_places=3)
    notes = models.TextField(blank=True, null=True)

class Unitary_Sale(models.Model):
    book = models.ForeignKey(Book)
    quantity = models.IntegerField()
    unit_price = models.DecimalField(max_digits=15, decimal_places=3)
    sale = models.ForeignKey(Sale)

如何过滤以获取客户销售的所有图书?

我试过了:

units=Unitary_Sale.objects.all()
>>> units=Unitary_Sale.objects.all()
>>> for unit in units:
...    print unit.sale.customer
...    print unit.book,unit.sale.total
...
Sok nara
Khmer Empire (H001) 38.4
Sok nara
killing field (H001) 16

San ta
khmer krom (H001) 20
San ta
Khmer Empire (H001) 20
>>>

我想要的是什么:

  sok nora:56.4 (38.4+18)
  san ta:40 (20+20)

或者字典:

{sok nora:156.4, san ta:40}

>>> store_resulte = {}
>>> for unit in units:
...    store_resulte[unit.sale.customer] = unit.sale.total
...
>>> print store_resulte

    {<Customer: Sok nara>: Decimal("16"), <Customer: san ta>: Decimal("20")}

应该是:

{<Customer: Sok nara>: Decimal("56.4"), <Customer: san ta>: Decimal("40")}

1 个答案:

答案 0 :(得分:1)

查看aggregation documentation

我相信这应该可以解决问题(仅适用于版本1.1或开发版):

Customer.objects.annotate(total=Sum('sale__total'))

编辑:您还可以为班级定义自定义方法:

class Customer(models.Model):
    def __unicode__(self):
        return self.name
    name = models.CharField(max_length=200)

    def total_sale(self):
        total = 0
        for s in self.sale_set:
           total += s.total
        return total