Skip to content

Commit

Permalink
[FIX] l10n_jp_hr_employee: access right error (#269)
Browse files Browse the repository at this point in the history
  • Loading branch information
AungKoKoLin1997 committed Jul 10, 2024
1 parent b4872cf commit d291da3
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion l10n_jp_hr_employee/models/hr_qualification.py
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ class HrQualification(models.Model):
qualification_type_id = fields.Many2one(
"hr.qualification.type", required=True, string="Qualification Type")
needs_description = fields.Boolean(
related="qualification_type_id.needs_description")
related="qualification_type_id.needs_description", readonly=True)
description = fields.Char()

@api.onchange("qualification_type_id")
Expand Down

0 comments on commit d291da3

Please sign in to comment.