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

# -*- coding: utf-8 -*-
from odoo import models, fields
class AccountAccount(models.Model):
_inherit = 'account.account'
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)
type_third_parties = fields.Selection([('no', 'No'), ('supplier', 'Supplier'), ('customer', 'Customer')], string='Third Partie', required=True, default='no')