Browse Source

[FIX] more Pythonic method

pull/2/head
Matthieu Dietrich 11 years ago
parent
commit
c3e1a8ff86
  1. 6
      firstname_display_name_trigger/res_partner.py

6
firstname_display_name_trigger/res_partner.py

@ -37,10 +37,8 @@ class ResPartner(orm.Model):
ids = [ids]
res = []
for record in self.browse(cr, uid, ids, context=context):
name = '%s%s%s' % (record.lastname if record.lastname else u"",
u" " if record.firstname and record.lastname
else u"",
record.firstname if record.firstname else u"")
names = (record.lastname, record.firstname)
name = u" ".join([s for s in names if s])
if record.parent_id and not record.is_company:
name = "%s, %s" % (record.parent_id.name, name)
if context.get('show_address'):

Loading…
Cancel
Save