forked from Mapan/odoo17e
10 lines
276 B
Python
10 lines
276 B
Python
# Part of Odoo. See LICENSE file for full copyright and licensing details.
|
|
|
|
from odoo import fields, models
|
|
|
|
|
|
class ResCompany(models.Model):
|
|
_inherit = 'res.company'
|
|
|
|
l10n_my_description = fields.Html(string='Statement of Account report description', translate=True)
|