[IMP] rma: public tags

Now we can decide which tags are visible for the customer. This way, we
can use them as pseudo-states

TT29594
This commit is contained in:
david
2021-05-25 12:01:54 +02:00
committed by Nikolaus Weingartmair
parent 5eb8e8443e
commit 43277a23ab
3 changed files with 18 additions and 0 deletions

View File

@@ -18,6 +18,10 @@ class RmaTag(models.Model):
translate=True,
copy=False,
)
is_public = fields.Boolean(
string="Public Tag",
help="The tag is visible in the portal view",
)
color = fields.Integer(string="Color Index")
rma_ids = fields.Many2many(comodel_name="rma")