Browse Source

Update better_zip.py

Bugfixing => name_get, cast to str.
pull/58/head
cesar-andres 10 years ago
parent
commit
8157ecab15
  1. 2
      base_location/better_zip.py

2
base_location/better_zip.py

@ -4,6 +4,7 @@
# Author: Nicolas Bessi. Copyright Camptocamp SA
# Contributor: Pedro Manuel Baeza <pedro.baeza@serviciosbaeza.com>
# Ignacio Ibeas <ignacio@acysos.com>
# Cesar Andres <cesar-andres.sanchez@brain-tec.ch>
#
# This program is free software: you can redistribute it and/or modify
# it under the terms of the GNU Affero General Public License as
@ -52,6 +53,7 @@ class BetterZip(orm.Model):
name.append(bzip.state_id.name)
if bzip.country_id:
name.append(bzip.country_id.name)
name = [str(x) for x in name if x]
res.append((bzip.id, ", ".join(name)))
return res

Loading…
Cancel
Save