Public release from ruodoo-project: 19.0 - 2026-05-10 21:19:01 UTC
This commit is contained in:
11
mklab_dms_document/models/tier_definition.py
Normal file
11
mklab_dms_document/models/tier_definition.py
Normal file
@ -0,0 +1,11 @@
|
||||
from odoo import api, models
|
||||
|
||||
|
||||
class TierDefinition(models.Model):
|
||||
_inherit = "tier.definition"
|
||||
|
||||
@api.model
|
||||
def _get_tier_validation_model_names(self):
|
||||
res = super()._get_tier_validation_model_names()
|
||||
res.append("dms.document")
|
||||
return res
|
||||
Reference in New Issue
Block a user