You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
14 lines
415 B
14 lines
415 B
# Copyright 2020 NextERP Romania SRL
|
|
# License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl.html).
|
|
|
|
from odoo import fields, models
|
|
|
|
|
|
class ResPartner(models.Model):
|
|
_inherit = "res.partner"
|
|
|
|
base_comment_template_ids = fields.Many2many(
|
|
comodel_name="base.comment.template",
|
|
string="Comment Templates",
|
|
help="Specific partner comments that can be included in reports",
|
|
)
|