mirror of
https://gitlab2.federez.net/re2o/re2o
synced 2024-11-08 10:56:27 +00:00
Merge branch 'fix_switchs_display' into 'dev'
Affichage de la réference commerciale par default See merge request federez/re2o!339
This commit is contained in:
commit
5a86826979
1 changed files with 4 additions and 1 deletions
|
@ -411,7 +411,10 @@ class ModelSwitch(AclMixin, RevMixin, models.Model):
|
|||
verbose_name_plural = _("switch models")
|
||||
|
||||
def __str__(self):
|
||||
return str(self.constructor) + ' ' + self.reference
|
||||
if self.commercial_name:
|
||||
return str(self.constructor) + ' ' + str(self.commercial_name)
|
||||
else:
|
||||
return str(self.constructor) + ' ' + self.reference
|
||||
|
||||
|
||||
class ConstructorSwitch(AclMixin, RevMixin, models.Model):
|
||||
|
|
Loading…
Reference in a new issue