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.
23 lines
705 B
23 lines
705 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()
|
|
user_id = fields.Many2one(string="Assigned to:",
|
|
comodel_name="res.users")
|
|
|
|
@api.multi
|
|
def action_confirm(self):
|
|
self.write({'state': 'confirmed'})
|