mirror of
https://github.com/bringout/oca-ocb-sale.git
synced 2026-04-25 15:32:07 +02:00
Initial commit: Sale packages
This commit is contained in:
commit
14e3d26998
6469 changed files with 2479670 additions and 0 deletions
|
|
@ -0,0 +1,4 @@
|
|||
# -*- coding: utf-8 -*-
|
||||
# Part of Odoo. See LICENSE file for full copyright and licensing details.
|
||||
|
||||
from . import main
|
||||
|
|
@ -0,0 +1,16 @@
|
|||
# -*- coding: utf-8 -*-
|
||||
# Part of Odoo. See LICENSE file for full copyright and licensing details.
|
||||
|
||||
from odoo.http import Controller, request, route
|
||||
from odoo.addons.http_routing.models.ir_http import unslug
|
||||
|
||||
|
||||
class QuotationBuilderController(Controller):
|
||||
|
||||
@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,
|
||||
)
|
||||
return request.render('sale_quotation_builder.so_template', {'template': template})
|
||||
Loading…
Add table
Add a link
Reference in a new issue