You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 

21 lines
596 B

# Copyright 2018 Eficent Business and IT Consulting Services S.L.
# License AGPL-3.0 or later (https://www.gnu.org/licenses/agpl).
from odoo import api, fields, models
class TierValidationTester(models.Model):
_name = 'tier.validation.tester'
_inherit = ['tier.validation']
state = fields.Selection(
selection=[('draft', 'Draft'),
('confirmed', 'Confirmed'),
('cancel', 'Cancel')],
default='draft',
)
test_field = fields.Float()
@api.multi
def action_confirm(self):
self.write({'state': 'confirmed'})