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.

10 lines
477 B

  1. # -*- coding: utf-8 -*-
  2. from odoo import models, fields
  3. class AccountAccount(models.Model):
  4. _inherit = 'account.account'
  5. compacted = fields.Boolean('Compacte reconciled entries.', help='If flagged, no details will be displayed in the Standard report, only compacted amounts per period.', default=False)
  6. type_third_parties = fields.Selection([('no', 'No'), ('supplier', 'Supplier'), ('customer', 'Customer')], string='Third Partie', required=True, default='no')