forked from Mapan/odoo17e
23 lines
786 B
Python
23 lines
786 B
Python
# -*- coding: utf-8 -*-
|
|
# Part of Odoo. See LICENSE file for full copyright and licensing details.
|
|
|
|
from odoo import models, fields
|
|
|
|
N_FACET_COLORS = 11
|
|
|
|
|
|
class TagsCategories(models.Model):
|
|
_name = "documents.facet"
|
|
_description = "Category"
|
|
_order = "sequence, name"
|
|
|
|
folder_id = fields.Many2one('documents.folder', string="Workspace", ondelete="cascade")
|
|
name = fields.Char(required=True, translate=True)
|
|
tag_ids = fields.One2many('documents.tag', 'facet_id', copy=True)
|
|
tooltip = fields.Char(help="Text shown when hovering on this tag category or its tags", string="Tooltip")
|
|
sequence = fields.Integer('Sequence', default=10)
|
|
|
|
_sql_constraints = [
|
|
('name_unique', 'unique (folder_id, name)', "Facet already exists in this folder"),
|
|
]
|