123456789101112131415161718192021222324 |
- # -*- encoding: utf-8 -*-
- from openerp import models, fields, api
- class account_invoice(models.Model):
- _inherit = 'account.invoice'
- contado = fields.Boolean('Contado')
- credito = fields.Boolean('Crédito')
- _defaults = {
- 'contado': True
- }
- @api.one
- @api.onchange('contado')
- def cambiar_estado_contado(self):
- self.credito = not self.contado
- if self.contado == True:
- self.payment_term = False
- @api.one
- @api.onchange('credito')
- def cambiar_estado_credito(self):
- self.contado = not self.credito
|