mirror of
https://gitlab.com/flectra-community/server-ux.git
synced 2024-11-15 10:42:08 +00:00
24 lines
708 B
Python
24 lines
708 B
Python
|
# Copyright 2018 Eficent Business and IT Consulting Services S.L.
|
||
|
# License AGPL-3.0 or later (https://www.gnu.org/licenses/agpl).
|
||
|
|
||
|
from flectra 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'})
|