br_account/models/account.py
# -*- coding: utf-8 -*-
# © 2016 Danimar Ribeiro, Trustcode
# License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl.html).
from odoo import fields, models
class AccountPaymentTerm(models.Model):
_inherit = 'account.payment.term'
indPag = fields.Selection(
[('0', u'Pagamento à Vista'), ('1', u'Pagamento à Prazo')],
default='0')