[FIX] unfuck broken funcall

bzr revid: xmo@openerp.com-20131213100919-34mbfd2hc7bnga0v
This commit is contained in:
Xavier Morel 2013-12-13 11:09:19 +01:00
parent d9343e2d27
commit f0a3a6136d
1 changed files with 1 additions and 1 deletions

View File

@ -76,7 +76,7 @@ class WebsiteCustomer(http.Controller):
@website.route(['/customers/<model("res.partner"):partner>/'], type='http', auth="public", multilang=True)
def customer(self, partner, **post):
values = website_partner.get_partner_template_value(partner, ["commercial_partner_id", "assigned_partner_id", "implemented_partner_ids"])
values = website_partner.get_partner_template_value(partner)
if not values:
return self.customers(**post)