vote up 1 vote down star

I have a status field which has 3 values: pending, activated and rejected. If I am changing the value of status I want to have a check that activated cannot be changed to pending. I do not want to write stored-procs for this. Can I have the previous value in Django before saving?

Means new and old value.

flag
+1 - I've been wondering the same thing. In my case there's some heavy duty work that gets done in a save method that is only necessary if a field in a particular subset of model's fields have changed, and I've been looking for a way to check whether or not this is the case. Thanks! – Dominic Rodger May 15 at 6:44

3 Answers

vote up 2 vote down

You can do this in an overridden save method. The thing to remember is that Django model instances aren't the actual database objects, they just get their values from there on load. So you can easily go back to the database before saving your current object to get the existing values.

def save(self, *args, **kwargs):
    if self.status == 'pending':
         old_instance = MyClass.objects.get(pk=self.pk)
         if old_instance.status == 'activated':
              raise SomeError
     super(MyModel, self).save(*args, **kwargs)

There is currently no good way of returning an error message to the user other than raising an exception. There is a Google Summer of Code project currently under way to enable 'model validation', but this will not be ready for a few months.

If you want to do something similar in the admin, the best way is to define a custom ModelForm with an overridden clean() method. However, this time since this is a form you already have access to the old values without hitting the db again. Another benefit is that you can return a form validation error to the user.

class MyModelForm(forms.ModelForm):

     class Meta:
          model = MyModel

    def clean_status(self):
        status = self.cleaned_data.get('status', '')
        if status == 'pending':
             if self.instance and self.instance.status == 'activated':
                  raise forms.ValidationError(
                      'You cannot change activated to pending'
                  )
         return status

 class MyModelAdmin(forms.ModelAdmin):
     form = MyModelForm
     model = MyModel
link|flag
that's because you should probably override ModelAdmin.save_model method: docs.djangoproject.com/en/dev/… – ohnoes May 15 at 9:01
I've added an alternative using the admin above. – Daniel Roseman May 15 at 10:32
the if condition should be if self.instance and self.instance.status == 'activated': raise forms.ValidiationError – ha22109 May 15 at 13:27
vote up 0 vote down

Instead of overriding the save method, wouldn't this be a good place to use signals? Intercept the save before commit, check the current value in the database, and either forward the save on, or reject it?

Now I'm not sure if the signal blocks the save request or if it happens asynch, so feel free to downvote this answer if a signal can not be used to prevent the save happening upon validation.

I'm against overriding inbuilt methods if there is another inbuilt tool that works just as well.

link|flag
1  
I think, overwriting save() and delete() can be good practice. I have a the classes Photo and Thumbnail. The Thumb has a item = models.ForeignKey(Photo). photo.delete() is overwritten and will delete all thumbs (for t in self.thumbnail_set.all():t.delete()) before running super(Photo, self).delete() . If the removing of the thumb would be done in a signal, the maintaining of the code would be harder. – vikingosegundo May 16 at 16:25
but init I wolud never overload. I would use signal instead. – vikingosegundo May 16 at 16:26
vote up 4 vote down check
def clean_status(self):
    status = self.cleaned_data.get('status')
    if status == 'pending':
        if self.instance and self.instance.status == 'activated':
            raise forms.ValidationError('You cannot change activated to pending')

    return status
link|flag
hey Dominic Rodger can u help in 'inline-django'.My question in django – ha22109 May 28 at 5:18

Your Answer

Get an OpenID
or

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