[MIG] crm_usability from v10 to v14

New module sales_team_usability (remove translation on crm.tag, which
was in crm_usability in v10)
This commit is contained in:
Alexis de Lattre
2021-11-18 10:43:53 +01:00
parent 600acd2f26
commit 878db1d0a1
12 changed files with 80 additions and 108 deletions

View File

@@ -0,0 +1 @@
from . import crm_tag

View File

@@ -0,0 +1,11 @@
# Copyright 2021 Akretion France (http://www.akretion.com)
# License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl).
# @author Alexis de Lattre <alexis.delattre@akretion.com>
from odoo import fields, models
class CrmTag(models.Model):
_inherit = "crm.tag"
name = fields.Char(translate=False)