That question might look similar to this one, but its not...

I have a model structure like :

class Customer(models.Model):
    ....

class CustomerCompany(models.Model):
    customer = models.ForeignKey(Customer)
    type = models.SmallIntegerField(....)

I am using InlineModels, and have two types of CustomerCampany.type. So I define two diffrent inline for the CustomerCompany and ov override InlineModelAdmin.queryset

class CustomerAdmin(admin.ModelAdmin):
    inlines=[CustomerCompanyType1Inline, CustomerCompanyType2Inline]


class CustomerCompanyType1Inline(admin.TabularInline):
    model = CustomerCompany
    def queryset(self, request):
        return super(CustomerCompanyType1Inline, self).queryset(request).filter(type=1)

class CustomerCompanyType2Inline(admin.TabularInline):
    model = CustomerCompany
    def queryset(self, request):
        return super(CustomerCompanyType2Inline, self).queryset(request).filter(type=2)

All is nice and good up to here, But for adding new records for InlineModelAdmin, i still need to display type field of CustomerCompany on the AdminForm, since i can not override save method of an InlineModelAdmin like:

class CustomerCompanyType2Inline(admin.TabularInline):
    model = CustomerCompany
    def queryset(self, request):
        return super(CustomerCompanyType2Inline, self).queryset(request).filter(type=2)
    #Following override do not work
    def save_model(self, request, obj, form, change):
        obj.type=2
        obj.save()

Using a signal is also not a solution since my signal sender will be the same Model, so i can not detect which InlineModelAdmin send it and what the type must be...

Is there a way that will let me set type field before save?

link|improve this question

feedback

2 Answers

up vote 3 down vote accepted

Alasdair's answer isn't wrong, but it has a few sore points that could cause problems. First, by looping through the formset using form as the variable name, you actually override the value passed into the method for form. It's not a huge deal, but since you can do the save without commit right from the formset, it's better to do it that way. Second, the all important formset.save_m2m() was left out of the answer. The actual Django docs recommend the following:

def save_formset(self, request, form, formset, change):
    instances = formset.save(commit=False)
    for instance in instances:
        # Do something with `instance`
        instance.save()
    formset.save_m2m()

The problem you're going to run into is that the save_formset method must go on the parent ModelAdmin rather than the inlines, and from there, there's no way to know which inline is actually being utilized. If you have an obj with two "types" and all the fields are the same, then you should be using proxy models and you can actually override the save method of each to set the appropriate type automatically.

class CustomerCompanyType1(CustomerCompany):
    class Meta:
       proxy = True

    def save(self, *args, **kwargs):
        self.type = 1
        super(CustomerCompanyType1, self).save(*args, **kwargs)

class CustomerCompanyType2(CustomerCompany):
    class Meta:
       proxy = True

    def save(self, *args, **kwargs):
        self.type = 2
        super(CustomerCompanyType2, self).save(*args, **kwargs)

Then, you don't need to do anything special at all with your inlines. Just change your existing inline admin classes to use their appropriate proxy model, and everything will sort itself out.

link|improve this answer
+1 good approach to use proxy models. I updated my answer to fix the most obvious mistakes you mentioned. That still leaves the problem of working out which inline the formset represents. – Alasdair Nov 28 '11 at 18:20
Actually, the proxy model approach removes the need for overriding save_formset. The proxies themselves have overridden save methods that know how to save as the right type. So, you then just use the inlines without worrying about it. – Chris Pratt Nov 28 '11 at 19:07
My comment wasn't clear -- I was agreeing that even after fixing the issues in save_formset (save_m2m etc), there was still the issue of which inline you're saving. I understood that the proxy model approach avoids that :) – Alasdair Nov 28 '11 at 19:24
Thank you, somehow i totally forgot ProxyModel, and the fact that its usage will solve my problem... I will try it in a short time... Thanks alot – FallenAngel Dec 1 '11 at 8:50
I'd recommend against using Proxy models if you are planning to use permissions. As of today, there is a terrible unfixed bug with permissions that transforms the proxy approach to an unbelievable pain. – Ivan Kharlamov Jan 11 at 7:50
show 1 more comment
feedback

There's a save_formset method which you could override. You'd have to work out which inline the formset represents somehow.

def save_formset(self, request, form, formset, change):
    instances = formset.save(commit=False)
    for instance in instances:
        # Do something with `instance`
        instance.save()
    formset.save_m2m()
link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.