blob: 3b2d52ee18749804b2ea477681ab44dd74ac5cc8 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
|
# -*- 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/<string:template_id>"], 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)
|