correct logic about locationgroup save
This commit is contained in:
parent
b20c94b6c6
commit
b8b21b775e
1 changed files with 3 additions and 4 deletions
|
@ -308,8 +308,7 @@ class LocationGroup(Location, models.Model):
|
||||||
return (1, self.category.priority, self.priority)
|
return (1, self.category.priority, self.priority)
|
||||||
|
|
||||||
def save(self, *args, **kwargs):
|
def save(self, *args, **kwargs):
|
||||||
if (self.pk and
|
if self.pk and (self.orig_color != self.color or
|
||||||
self.orig_color != self.color or
|
|
||||||
self.priority != self.orig_priority or
|
self.priority != self.orig_priority or
|
||||||
self.category_id != self.orig_category_id):
|
self.category_id != self.orig_category_id):
|
||||||
self.register_changed_geometries()
|
self.register_changed_geometries()
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue