Skip to content
Snippets Groups Projects
account_invoice.py 307 B
Newer Older
  • Learn to ignore specific revisions
  • # © 2020 Le Filament (<http://www.le-filament.com>)
    # License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl.html).
    
    from odoo import fields, models
    
    
    class AccountInvoiceOnline(models.Model):
        _inherit = 'account.invoice'
    
        is_payment_online = fields.Boolean("Paiement en ligne", default=True)