Browse Source

[FIX] Add context propagation to base_location

pull/2/head
Sandy Carter 11 years ago
parent
commit
de58ee7734
  1. 2
      base_location/better_zip.py

2
base_location/better_zip.py

@ -42,7 +42,7 @@ class BetterZip(orm.Model):
def name_get(self, cursor, uid, ids, context=None):
res = []
for bzip in self.browse(cursor, uid, ids):
for bzip in self.browse(cursor, uid, ids, context=context):
if bzip.name:
name = [bzip.name, bzip.city]
else:

Loading…
Cancel
Save