Skip to content

Commit

Permalink
Merge PR #384 into 12.0
Browse files Browse the repository at this point in the history
Signed-off-by legalsylvain
  • Loading branch information
github-grap-bot committed Oct 7, 2024
2 parents cd4be87 + ad5db34 commit c42ae81
Show file tree
Hide file tree
Showing 3 changed files with 13 additions and 0 deletions.
1 change: 1 addition & 0 deletions grap_change_translation/__manifest__.py
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,7 @@
"depends": [
"account",
"base",
"crm",
"calendar",
"delivery",
"mail",
Expand Down
1 change: 1 addition & 0 deletions grap_change_translation/models/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,7 @@
from . import account_product_fiscal_classification_template
from . import account_tax_group
from . import calendar_alarm
from . import crm_lead
from . import delivery_carrier
from . import ir_actions_todo
from . import mail_activity_type
Expand Down
11 changes: 11 additions & 0 deletions grap_change_translation/models/crm_lead.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,11 @@
# Copyright (C) 2024 - Today: GRAP (http://www.grap.coop)
# @author: Quentin DUPONT
# License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl.html).

from odoo import fields, models


class Tag(models.Model):
_inherit = "crm.lead.tag"

name = fields.Char(translate=False)

0 comments on commit c42ae81

Please sign in to comment.