Skip to content
Snippets Groups Projects
Commit 651614db authored by Christophe Simonis's avatar Christophe Simonis
Browse files

[MERGE] forward port of branch saas-5 up to revid 285e1d5c

parents f8714aca 285e1d5c
Branches
Tags
No related merge requests found
......@@ -210,7 +210,7 @@ class website_sale(http.Controller):
context['pricelist'] = int(self.get_pricelist())
product = request.registry.get('product.template').browse(request.cr, request.uid, int(product), context=context)
variants = [(p.id, map(int, p.attribute_value_ids), p.price) for p in product.product_variant_ids]
variants = [[p.id, map(int, p.attribute_value_ids), p.price] for p in product.product_variant_ids]
values = {
'search': search,
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment