account_invoice.py 291 B

12345678910
  1. # -*- coding: utf-8 -*-
  2. from openerp import models, fields, api,_
  3. from openerp.exceptions import Warning
  4. class AnalyticAccount(models.Model):
  5. _inherit = 'account.invoice'
  6. # cuotas
  7. cuotas = fields.Char(string="Cuotas")
  8. cuota_total = fields.Integer(string="Total de cuotas")