[FIX] Remove double return

bzr revid: jke@openerp.com-20140410114048-hw26q9x0dm11wbqc
This commit is contained in:
Kersten Jeremy 2014-04-10 13:40:48 +02:00
parent 986b445fed
commit a3016b4d95
1 changed files with 1 additions and 3 deletions

View File

@ -414,9 +414,7 @@ class Ecommerce(http.Controller):
order = self.get_order()
return [quantity,
order.get_number_of_products()]
return quantity
@http.route(['/shop/checkout/'], type='http', auth="public", website=True, multilang=True)
def checkout(self, **post):
cr, uid, context, registry = request.cr, request.uid, request.context, request.registry