mirror of
https://gitlab.com/flectra-community/account-financial-reporting.git
synced 2024-11-15 10:12:05 +00:00
14 lines
452 B
Python
14 lines
452 B
Python
|
# © 2011 Guewen Baconnier (Camptocamp)
|
||
|
# License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl.html).-
|
||
|
from flectra 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.")
|