Я перемоделирую свои объекты, используя отношения ManyToMany, используя "через", как указано здесь:
текст ссылки
class Receipt(models.Model):
name = models.CharField(max_length=128)
(...)
components = models.ManyToManyField(Product, through='ReceiptComponent')
class Admin:
pass
def __unicode__(self):
return self.name
def url(self):
return self.id
class ReceiptComponent(models.Model):
product = models.ForeignKey(Product)
receipt = models.ForeignKey(Receipt)
quantity = models.FloatField(max_length=9)
unit = models.ForeignKey(Unit)
class Admin:
pass
def __unicode__(self):
return unicode(self.quantity!=0 and self.quantity or '') + ' ' + unicode(self.unit) + ' ' + self.product.genitive
Это выглядит нормально, но у меня есть 2 проблемы с ним:
1) В панели управления администратора нет простой связи с квитанцией = Если мне нужно добавить новый компонент - я должен перейти к компонентам и сделать компонент подключенным к квитанции - возможно, это единственное решение - но это будет более интуитивно понятно в поступления
2) Я не могу распечатать его с помощью шаблонов:
views.py:
(...)
def detail(request, receipt_id):
receipt = get_object_or_404(Receipt, pk=receipt_id)
components = receipt.components.all()
return render_to_response('receipt.html',{'receipt' : receipt, 'components' : components,}
(...)
receipt.html:
<h1>{{ receipt.name }}</h1>
{% for component in components.all %}
<div class='component'>{{ component }}</div>
{% endfor %}