# -*- coding: utf-8 -*- # Part of Odoo. See LICENSE file for full copyright and licensing details. from odoo import http from odoo.http import request from odoo.addons.http_routing.models.ir_http import unslug from odoo.addons.portal.controllers.portal import CustomerPortal class CustomerPortal(CustomerPortal): @http.route(["/sale_quotation_builder/template/"], type='http', auth="user", website=True) def sale_quotation_builder_template_view(self, template_id, **post): template_id = unslug(template_id)[-1] template = request.env['sale.order.template'].browse(template_id).with_context( allowed_company_ids=request.env.user.company_ids.ids, ) values = {'template': template} return request.render('sale_quotation_builder.so_template', values)