Last active
June 30, 2018 14:05
odoo sale checkout controller
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
from odoo import http, tools, _ | |
class WebsiteSale(http.Controller): | |
@http.route(['/shop/checkout'], type='http', auth="public", website=True) | |
def checkout(self, **post): | |
# we have base code in here |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment