Skip to content
Snippets Groups Projects
Commit 8f21148e authored by Nicolas Martinelli's avatar Nicolas Martinelli
Browse files

[FIX] hr_contract: contract type name


Make the contract type name translatable.

opw-2003957

closes odoo/odoo#33781

Signed-off-by: default avatarNicolas Martinelli (nim) <nim@odoo.com>
parent 29762514
Branches
Tags
No related merge requests found
......@@ -39,7 +39,7 @@ class ContractType(models.Model):
_description = 'Contract Type'
_order = 'sequence, id'
name = fields.Char(string='Contract Type', required=True)
name = fields.Char(string='Contract Type', required=True, translate=True)
sequence = fields.Integer(help="Gives the sequence when displaying a list of Contract.", default=10)
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment