On Mon, Apr 27, 2009 at 1:24 PM, Adam Olsen <arol...@gmail.com> wrote:

>
> I've got two models, something like this:
>
> class Category(models.Model):
>    name = models.CharField(max_length=60)
>
> class Product(models.Model):
>    sku = models.CharField(max_length=20)
>    categories = models.ManyToManyField(Category)
>
> I want to overload the save method to automatically add certain
> products to certain categories in special cases:
>
> def save(self, *args):
>   models.Model(save, *args)
>   category = Category.objects.all()[0]
>   self.categories.add(category)
>
> This does not work, I'm sure it's saving ManyToMany relationships
> later on in the save process.  Is there a way to make this work?
>
> --
> Adam Olsen
> SendOutCards.com
> http://www.vimtips.org
> http://last.fm/user/synic
>
> >
>
The issues if the method, it's nonsensical and doesn't correspond to
anything(you are instantiating models.Model with save as the first
argument), in Python the correct way to call the parent class's method is:

super(MyClass, self).save(*args, **kwargs)

Alex

-- 
"I disapprove of what you say, but I will defend to the death your right to
say it." --Voltaire
"The people's good is the highest law."--Cicero

--~--~---------~--~----~------------~-------~--~----~
You received this message because you are subscribed to the Google Groups 
"Django users" group.
To post to this group, send email to django-users@googlegroups.com
To unsubscribe from this group, send email to 
django-users+unsubscr...@googlegroups.com
For more options, visit this group at 
http://groups.google.com/group/django-users?hl=en
-~----------~----~----~----~------~----~------~--~---

Reply via email to