Skip to content

Commit

Permalink
TA#66297 [FIX] Access issue on some functionalities (on read)
Browse files Browse the repository at this point in the history
  • Loading branch information
lanto-razafindrabe committed Jun 6, 2024
1 parent 007e73c commit 24ecef2
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion hr_employee_type/__manifest__.py
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@

{
"name": "HR Employee Type",
"version": "14.0.1.0.0",
"version": "14.0.1.0.1",
"author": "Numigi",
"maintainer": "Numigi",
"website": "https://www.numigi.com",
Expand Down
2 changes: 1 addition & 1 deletion hr_employee_type/models/__init__.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# © 2020 - today Numigi (tm) and all its contributors (https://bit.ly/numigiens)
# License LGPL-3.0 or later (http://www.gnu.org/licenses/lgpl).

from . import hr_employee
from . import hr_employee_base
Original file line number Diff line number Diff line change
Expand Up @@ -3,8 +3,8 @@
from odoo import models, fields


class HrEmployeeType(models.Model):
_inherit = "hr.employee"
class HrEmployeeBase(models.AbstractModel):
_inherit = "hr.employee.base"
ttype = fields.Selection(
[("internal", "Internal"), ("external", "External")],
"Type",
Expand Down

0 comments on commit 24ecef2

Please sign in to comment.