account-financial-reporting/account_financial_report/models/account.py

15 lines
448 B
Python
Raw Permalink Normal View History

2021-03-12 16:20:48 +00:00
# © 2011 Guewen Baconnier (Camptocamp)
# License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl.html).-
from flectra import fields, models
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.",
)