valor.py 971 Bytes
# -*- coding: utf-8 -*-
###############################################################################
#    License, author and contributors information in:                         #
#    __manifest__.py file at the root folder of this module.                  #
###############################################################################

from odoo import models, fields, api, _
from odoo.exceptions import UserError, ValidationError


class asw_valores(models.Model):
    _inherit = 'asw.valores'

    val_estado_cheque = fields.Selection(
        string='Estado cheque',
        selection=[
            ('b', 'Borrador'),
            ('en_mano', 'En mano'),
            ('reservado', 'Reservado'),
            ('entregado', 'Entregado'),
            ('depositado', 'Depositado'),
            ('devuelto', 'Devuelto'),
            ('cambiado', 'Cambiado'),
            ('r', 'Rechazado')
        ],
        related='val_cheque.che_estado',
        store=True
    )