Skip to content
Snippets Groups Projects
account_move.py 304 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):
    
    
        is_payment_online = fields.Boolean("Paiement en ligne", default=True)