Opened 14 years ago

Closed 14 years ago

#14113 closed (invalid)

Access to extra fields in M2M relations

Reported by: jprafael Owned by: nobody
Component: Database layer (models, ORM) Version: 1.2
Severity: Keywords: Many2ManyField intermediary fields
Cc: Triage Stage: Unreviewed
Has patch: no Needs documentation: no
Needs tests: no Patch needs improvement: no
Easy pickings: no UI/UX: no

Description

I'm using a model similar to

class Recipe(models.Model):
        name = models.CharField(max_length = 32, unique=True)
        products = models.ManyToManyField(Product, through="RecipeProduct")

class Product(models.Model):
        name = models.CharField(max_length = 32, unique=True)

        amound = models.IntegerField() # in stock

class RecipeProduct(models.Model):
        recipe = models.ForeignKey(Recipe)
        product = models.ForeignKey(Product)

        amount  = models.IntegerField()

And need to list all my recipes, along with their products' amounts.

Recipe.objects.select_related().all()

Gives access to the list of products in each recipe, but not access to the amount field in the intermediary table.

Perhaps recipe.products.all() should merge the extra fields into the Product objects by means of another parameter in the ManyToManyField definition where the user can choose the fields to select (and the names they would be accessible by) like:

products = models.ManyToManyField(Product, through="RecipeProduct", extra_fields={'amount': 'recipe_amount'})

This would allow direct usage like:

{% for recipe in recipes %}
        {% for product in recipe.products.all() %}
                product: {{ product.name }} ({{ product.amount }} in stock)
                amount: {{ product.recipe_amound }}
        {% endfor}
{% endfor %}

while avoiding name colision problems

Change History (1)

comment:1 by Russell Keith-Magee, 14 years ago

Resolution: invalid
Status: newclosed

This is already possible -- you just need to think about your data model in a slightly different way, and look at the intermediate model as a fully-fledged model with a foreign key:

{% for recipe in recipes %}
    {% for rp in recipe.recipeproduct_set.all %}
		product: {{ rp.product.name }} ({{ rp.product.amount }} in stock)
		amount: {{ rp.amount }}
    {% endfor %}
{% endfor %}

Merging the attributes of the intermediate class onto the m2m objects was considered at the time the m2m-intermediate feature was under development, and was rejected. Search the archives and ticket #6095 for reasoning.

Note: See TracTickets for help on using tickets.
Back to Top