You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
13 lines
449 B
13 lines
449 B
# © 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.")
|