account_invoice.py 265 B

12345678910
  1. # -*- coding: utf-8 -*-
  2. from openerp import api, models, fields
  3. class account_invoice(models.Model):
  4. _inherit = "account.invoice"
  5. _name = 'account.invoice'
  6. pedido_por = fields.Char(string='Pedido por')
  7. ficha_nro = fields.Char(string='Ficha Nº')