[FIX] website_sale: search category with int for saas updating without -u

bzr revid: chm@openerp.com-20140212141713-j9cagak2z2j4s20x
This commit is contained in:
Christophe Matthieu 2014-02-12 15:17:13 +01:00
parent 2223ba5600
commit 5a134745e8
1 changed files with 2 additions and 2 deletions

View File

@ -259,7 +259,7 @@ class Ecommerce(http.Controller):
'range': range,
'search': {
'search': search,
'category': category,
'category': category and int(category),
'filters': filters,
},
'pager': pager,
@ -286,7 +286,7 @@ class Ecommerce(http.Controller):
'category': category,
'search': {
'search': search,
'category': category,
'category': category and int(category),
'filters': filters,
}
}