mirror of
https://gitlab.com/flectra-community/account-financial-reporting.git
synced 2024-11-15 10:12:05 +00:00
15 lines
446 B
Python
15 lines
446 B
Python
|
# Copyright 2023 Tecnativa - Carolina Fernandez
|
||
|
# License LGPL-3.0 or later (http://www.gnu.org/licenses/lgpl.html).
|
||
|
|
||
|
from flectra import fields, models
|
||
|
|
||
|
|
||
|
class ResConfigSettings(models.TransientModel):
|
||
|
_inherit = "res.config.settings"
|
||
|
|
||
|
default_age_partner_config_id = fields.Many2one(
|
||
|
"account.age.report.configuration",
|
||
|
string="Intervals configuration",
|
||
|
default_model="aged.partner.balance.report.wizard",
|
||
|
)
|