account.py 446 B

12345678910111213
  1. # -*- coding: utf-8 -*-
  2. ##############################################################################
  3. # For copyright and license notices, see __openerp__.py file in module root
  4. # directory
  5. ##############################################################################
  6. from openerp import fields, models
  7. class account_payment_term(models.Model):
  8. _inherit = 'account.payment.term'
  9. sequence = fields.Integer(
  10. string='Sequence')