mirror of
https://gitlab.com/flectra-community/server-ux.git
synced 2024-11-14 18:22:05 +00:00
14 lines
408 B
Python
14 lines
408 B
Python
# Copyright 2019 Brainbean Apps (https://brainbeanapps.com)
|
|
# License AGPL-3.0 or later (https://www.gnu.org/licenses/agpl.html).
|
|
|
|
from flectra import models
|
|
|
|
|
|
class MultiStepWizardTest(models.TransientModel):
|
|
_name = "multi.step.wizard.test"
|
|
_description = "Multi Step Wizard Test"
|
|
_inherit = "multi.step.wizard.mixin"
|
|
|
|
def state_previous_final(self):
|
|
self.write({"state": "start"})
|