mirror of
https://gitlab.com/flectra-community/reporting-engine.git
synced 2024-11-15 10:42:07 +00:00
49 lines
1.2 KiB
Python
49 lines
1.2 KiB
Python
|
# Copyright 2014 Guewen Baconnier (Camptocamp SA)
|
||
|
# Copyright 2013-2014 Nicolas Bessi (Camptocamp SA)
|
||
|
# License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl.html).
|
||
|
|
||
|
from flectra import fields, models
|
||
|
|
||
|
|
||
|
class BaseCommentTemplate(models.Model):
|
||
|
_name = "base.comment.template"
|
||
|
_description = "Base comment template"
|
||
|
|
||
|
active = fields.Boolean(default=True)
|
||
|
|
||
|
name = fields.Char(
|
||
|
string="Comment summary",
|
||
|
required=True,
|
||
|
)
|
||
|
|
||
|
position = fields.Selection(
|
||
|
selection=[
|
||
|
("before_lines", "Before lines"),
|
||
|
("after_lines", "After lines"),
|
||
|
],
|
||
|
required=True,
|
||
|
default="before_lines",
|
||
|
help="Position on document",
|
||
|
)
|
||
|
|
||
|
text = fields.Html(
|
||
|
string="Comment",
|
||
|
translate=True,
|
||
|
required=True,
|
||
|
)
|
||
|
|
||
|
company_id = fields.Many2one(
|
||
|
"res.company",
|
||
|
string="Company",
|
||
|
help="If set, it'll only be available for this company",
|
||
|
ondelete="cascade",
|
||
|
index=True,
|
||
|
)
|
||
|
|
||
|
def get_value(self, partner_id=False):
|
||
|
self.ensure_one()
|
||
|
lang = None
|
||
|
if partner_id:
|
||
|
lang = self.env["res.partner"].browse(partner_id).lang
|
||
|
return self.with_context(lang=lang).text
|