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.

14 lines
473 B

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