10 lines
222 B
Python
10 lines
222 B
Python
from odoo import models
|
|
|
|
|
|
class TirerDmsDocument(models.Model):
|
|
_name = "dms.document"
|
|
_inherit = ["dms.document", "tier.validation"]
|
|
_state_field = "state"
|
|
_state_from = ["draft"]
|
|
_state_to = ['done']
|