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

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