[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
committed by clementmbr
parent 646833ca66
commit 5e4d1b3c8d
12 changed files with 80 additions and 108 deletions

View File

@@ -0,0 +1,13 @@
# Copyright 2017-2021 Akretion (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 CrmLead(models.Model):
_inherit = 'crm.lead'
probability = fields.Float(tracking=100)
date_deadline = fields.Date(tracking=110)
name = fields.Char(tracking=1)