123456789101112 |
- # -*- coding: utf-8 -*-
- ##############################################################################
- # For copyright and license notices, see __openerp__.py file in module root
- # directory
- ##############################################################################
- from openerp import models, fields
- class AccountJournal(models.Model):
- _name = 'account.journal'
- _inherit = 'account.journal'
- tipo_set = fields.Integer('Tipo de Pago (SET)', size=2)
|