Files
Odoo-18.0-20251222/account_financial_report/models/account.py
Jordi Ballester 554ad61027 [MIG] account_financial_report_qweb: Migration to 11.0
* dynamize general ledger
2024-11-29 15:38:40 +07:00

15 lines
450 B
Python

# ?? 2011 Guewen Baconnier (Camptocamp)
# License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl.html).-
from odoo import models, fields
class AccountAccount(models.Model):
_inherit = 'account.account'
centralized = fields.Boolean(
'Centralized',
help="If flagged, no details will be displayed in "
"the General Ledger report (the webkit one only), "
"only centralized amounts per period.")