2018-01-16 06:58:15 +01:00
|
|
|
# -*- coding: utf-8 -*-
|
2018-01-16 11:34:37 +01:00
|
|
|
# Part of Odoo, Flectra. See LICENSE file for full copyright and licensing details.
|
2018-01-16 06:58:15 +01:00
|
|
|
|
2018-01-16 11:34:37 +01:00
|
|
|
from flectra import fields, models
|
|
|
|
from flectra.tools.translate import html_translate
|
2018-01-16 06:58:15 +01:00
|
|
|
|
|
|
|
|
|
|
|
class ProductTemplate(models.Model):
|
|
|
|
_inherit = "product.template"
|
|
|
|
|
|
|
|
website_description = fields.Html('Description for the website', sanitize_attributes=False) # hack, if website_sale is not installed
|
|
|
|
quote_description = fields.Html('Description for the quote', sanitize_attributes=False, translate=html_translate)
|