forked from Mapan/odoo17e
14 lines
373 B
Python
14 lines
373 B
Python
# Part of Odoo. See LICENSE file for full copyright and licensing details.
|
|
|
|
from odoo import fields, models
|
|
|
|
|
|
class ResConfigSettings(models.TransientModel):
|
|
_inherit = 'res.config.settings'
|
|
|
|
l10n_my_description = fields.Html(
|
|
related='company_id.l10n_my_description',
|
|
string="Statement of Account report description",
|
|
readonly=False,
|
|
)
|