Skip to content

Commit

Permalink
[FIX] hr_employee_firstname: replace address_home_id field by work_co…
Browse files Browse the repository at this point in the history
…ntact_id for v17

this no longer exists in v17 and replaced by a non-relational field (field.char) named private_street
  • Loading branch information
DorianMAG committed Nov 22, 2024
1 parent 5e65f35 commit 5e7f5b8
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion hr_employee_firstname/models/hr_employee.py
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@

_logger = logging.getLogger(__name__)

UPDATE_PARTNER_FIELDS = ["firstname", "lastname", "user_id", "address_home_id"]
UPDATE_PARTNER_FIELDS = ["firstname", "lastname", "user_id", "private_street"]


class HrEmployee(models.Model):
Expand Down

0 comments on commit 5e7f5b8

Please sign in to comment.