Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Django: limit_choices_to (Is this correct)

Is this correct?

class Customer(models.Model):
    account = models.ForeignKey(Account)


class Order(models.Model):
    account = models.ForeignKey(Account)
    customer = models.ForeignKey(Customer, limit_choices_to={'account': 'self.account'})

I'm trying to make sure that an Order form will only display customer choices that belong to the same account as the Order.

If I'm overlooking some glaring bad-design fallacy, let me know.

The main thing I'm concerned with is:

limit_choices_to={'account': 'self.account'}
like image 715
orokusaki Avatar asked Sep 09 '25 20:09

orokusaki


1 Answers

The only answer to 'is it correct' is 'does it work when you run it?' The answer to that of course is no, so I don't know why you're asking here.

There's no way to use limit_choices_to dynamically to limit based on the value of another field in the current model. The best way to do this is by customising the form. Define a ModelForm subclass, and override the __init__ method:

class MyOrderForm(forms.ModelForm):
    def __init__(self, *args, **kwargs):
        super(MyOrderForm, self).__init__(*args, **kwargs)
        if 'initial' in kwargs:
             self.fields['customer'].queryset = Customer.objects.filter(account=initial.account)
like image 87
Daniel Roseman Avatar answered Sep 12 '25 19:09

Daniel Roseman