forked from Mapan/odoo17e
9 lines
312 B
Python
9 lines
312 B
Python
# Part of Odoo. See LICENSE file for full copyright and licensing details.
|
|
from odoo import models, fields
|
|
|
|
|
|
class ResConfigSettings(models.TransientModel):
|
|
_inherit = 'res.config.settings'
|
|
|
|
l10n_de_datev_account_length = fields.Integer(related='company_id.l10n_de_datev_account_length', readonly=False)
|