Skip to content
Snippets Groups Projects
Commit bad5f0ab authored by Husen Daudi's avatar Husen Daudi
Browse files

bugfix

lp bug: https://launchpad.net/bugs/338240 fixed

bzr revid: hda@hda-20090309133504-ljtd7nqbex4hvi4c
parent 54022191
Branches
Tags
No related merge requests found
......@@ -95,6 +95,8 @@ class product_pricelist(osv.osv):
def name_get(self, cr, uid, ids, context={}):
result= []
if not all(ids):
return result
for pl in self.browse(cr, uid, ids, context):
name = pl.name + ' ('+ pl.currency_id.name + ')'
result.append((pl.id,name))
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment