Skip to content
Snippets Groups Projects
  1. Jul 02, 2023
  2. Jun 26, 2023
    • Wolfgang Taferner's avatar
      [FIX] hr_*: unusual days + public holidays independent of employee · d80a3965
      Wolfgang Taferner authored
      
      In case we use multi company and a user does not have an employee
      in every company which is quite normal (mostly you are employed with
      exactly one company), the calendar is skipping the provision of the
      unusual days like public holidays or the working schedule.
      
      To be able to access and see the calendar in such a case we fallback
      to the company calendar and fixed a domain for the public holiday
      retrieval whereas the public holidays are not assigned to an employee
      but the company or the companies chosen to be displayed.
      
      closes odoo/odoo#126289
      
      Signed-off-by: default avatarKevin Baptiste <kba@odoo.com>
      d80a3965
  3. Jun 25, 2023
  4. Jun 22, 2023
    • Benoit Socias's avatar
      [FIX] *: adapt front-end HTML field sanitization · 2d1066ff
      Benoit Socias authored
      
      *: account, event_booth, gamification, hr, project,
         website_event_track, website_hr_recruitment, website_slides
      
      HTML fields that appear in the front-end can be modified using the
      website editor. Some of them are sanitized in a way that breaks the
      behavior of snippets that can be dropped within them.
      
      This commit adapts the sanitization of those HTML fields so that the
      snippets behave as expected.
      
      opw-3267589
      
      closes odoo/odoo#125650
      
      X-original-commit: 477cd32c7924ce79e8f29cf567fbbc625f24534f
      Related: odoo/enterprise#42802
      Signed-off-by: default avatarRomain Derie (rde) <rde@odoo.com>
      2d1066ff
  5. Jun 21, 2023
  6. Jun 18, 2023
  7. Jun 16, 2023
  8. Jun 12, 2023
    • Victor Piryns (pivi)'s avatar
      [FIX] hr, hr_timesheet: correct empl. access w/ no rights · 41eaff0f
      Victor Piryns (pivi) authored
      
      Current behaviour:
      In mobile view, if an user that doesn't have any rights over
      "Employees", clicking on any of the Many2One `employee_id` (for ex:
      when adding a timesheet on a task and clicking on the employee field),
      for either the dropdown, or to the form view with the `external` button,
      we get a stacktrace.
      
      Expected behaviour:
      We shouldn't be met with a stacktrace, if we don't have rights, we
      should be redirected to the corresponding view for the `hr.employee.
      public` model.
      
      Steps to reproduce:
      - Install Timesheets
      - Set Marc Demo's Employee's right to `none/empty`, login as Marc
      - In mobile view, go to Project > a task > open the timesheet sheet
      - Click on Add or any of the present timesheets
      - Click on employee field, either on it (redirect to the mobile
        kanban view of all employees) or to the right edge of it (redirect
        to the form view for the currently selected employee).
      - Instead of being redirected, you are met with a stacktrace.
      
      Reason for the problem:
      Since the migration to Owl, there is an implicit consistency
      expected between what is the requested model for said view, and the
      model we get back from the server for said view. In general (for
      example when in desktop view), usually we pass by an override of
      `get_formview_action` which changes the model we are loading
      front-end side depending on the access to the employee model. If
      access, we load `hr.employee`, if no access, `hr.employee.public`.
      But for mobile, we don't pass by an action, we just load a dialog,
      and the `resModel` used for the dialog is based on the `relation` of
      the `Many2OneField`, which is `hr.employee`. In that case when
      `get_views` is being called, we receive a view with the model key
      being `hr.employee.public`, which is inconsistent with what the
      front-end requested (which is `hr.employee`) and we have a
      stacktrace in owl.
      
      Fix:
      Override the `relation` property to the correct model in the
      corresponding widget set on the template of the field, based on
      available group. This relation is used to set the `resModel` when
      opening the dialog.
      
      Affected versions:
      - 16.0
      - saas-16.1
      - saas-16.2
      - saas-16.3
      - master
      
      opw-3269817
      
      closes odoo/odoo#123217
      
      Signed-off-by: default avatarKevin Baptiste <kba@odoo.com>
      41eaff0f
  9. Jun 11, 2023
  10. Jun 07, 2023
  11. Jun 06, 2023
    • Thomas Lefebvre (thle)'s avatar
      [FIX] hr_employee: synchronise if user is removed · 85ab51c7
      Thomas Lefebvre (thle) authored
      
      Steps to reproduce:
      -------------------
      - create two employees (A and B);
      - create a user;
      - add the user in Related User of employee A;
      - remove the user;
      - add the user in Related User of employee B;
      - change the Work Email of the employee B.
      
      Issue:
      ------
      The Work Email of the employee A is also updated.
      
      Cause:
      ------
      When we add a `user_id` to an employee,
      we update the `work_contact_id` field.
      Fields `mobile_phone` and `work_email` are inverse fields.
      When we modify them, the `_inverse_work_contact_details`
      method is called.
      We update the `work_contact_id` linked to the employee.
      
      When we delete an employee's `user_id`,
      we don't update the `work_contact_id`.
      Therefore, when we update an employee's `work_contact_id`,
      we call the `_compute_work_contact_details` method
      method for all employees who have the same `work_contact_id`.
      
      The result is that we modify the `mobile_phone` and `ẁork_email`
      fields for all employees linked to the `work_contact_id`.
      
      Solution:
      ---------
      Differentiate the case where the `user_id` is `False` (>< `None`)
      when it is modified and does not contain
      a value to "synchronise" the `work_contact_id`.
      
      opw-3338188
      
      closes odoo/odoo#123830
      
      Signed-off-by: default avatarKevin Baptiste <kba@odoo.com>
      85ab51c7
  12. Jun 04, 2023
  13. Jun 02, 2023
    • Prakash Prajapati's avatar
      [FIX] hr: remove the `quick create` on the many2one_avatar_employee and... · a07c6c55
      Prakash Prajapati authored
      [FIX] hr: remove the `quick create` on the many2one_avatar_employee and many2many_avatar_employee widget
      
       In this commit we have removed quick create option from many2one_avatar_employee and many2many_avatar_employee
       widget. because of There are too many faulty employees records coming from a
       quick Enter press on a list. 
      
      Example:
          According to my attention when we do quick create then partner is not created.
      
      task-3343117
      
      closes odoo/odoo#123006
      
      Signed-off-by: default avatarKevin Baptiste <kba@odoo.com>
      a07c6c55
  14. May 31, 2023
  15. May 30, 2023
  16. May 28, 2023
  17. May 23, 2023
  18. May 21, 2023
  19. May 14, 2023
  20. May 09, 2023
  21. May 07, 2023
  22. Apr 26, 2023
  23. Apr 17, 2023
    • Thomas Lefebvre (thle)'s avatar
      [FIX] hr: add private contact to employee's followers · f53d4a28
      Thomas Lefebvre (thle) authored
      
      When creating an employee with a private contact,
      the contact will not be automatically added to the employee's followers.
      
      The desired behavior is that the contact is added
      to the followers even if it has a private address.
      Commit: 8760a4d0
      
      However, this behavior will not be possible because
      adding a contact with a private address is forbidden.
      Commit: 20536e1b
      
      Solution:
      The solution is to use the private method `_message_subscribe`.
      This is not a problem in the business case.
      Indeed, the people who have access to the employee's file
      also have access to the private contacts.
      Moreover, the access rights of the public method `message_subscribe`
      do not concern this business case.
      
      opw-3249646
      
      closes odoo/odoo#118779
      
      X-original-commit: b06857afa371d2164f1f5ec402a6074a237d8230
      Signed-off-by: default avatarKevin Baptiste <kba@odoo.com>
      f53d4a28
  24. Apr 16, 2023
  25. Apr 14, 2023
  26. Apr 09, 2023
  27. Apr 02, 2023
  28. Mar 29, 2023
  29. Mar 28, 2023
  30. Mar 26, 2023
  31. Mar 20, 2023
    • Rohitkumar (roku)'s avatar
      [FIX] hr: fix the on/off boarding warning in employee · 421c2381
      Rohitkumar (roku) authored
      
      Steps to reproduce:
       - Install Employees App Configuration
       - Got to the Employees > Configuration > Activity Planning > Set the  On/Offboarding Plans
       - Create Test Employee With No Catch
       - Click on Launch Plan action
       - Check the Warning in Launch Plan Wizard
      
      When employee's coach or manager empty then warning is appeared coach's/manager's
      user is not set.In this commit we have shown in the warning that the coach/manager
      is not set.
      
      task-3193218
      
      closes odoo/odoo#112980
      
      Signed-off-by: default avatarKevin Baptiste <kba@odoo.com>
      421c2381
    • Martin Trigaux's avatar
      [I18N] *: remove nl_BE files · d04c8b7e
      Martin Trigaux authored
      
      They dates from < 2027 and are quite outdated. Favour the nl
      translation instead.
      n_BE is not on Transifex so it was not possible to correct bad
      translations.
      
      closes odoo/odoo#115798
      
      Signed-off-by: default avatarMartin Trigaux (mat) <mat@odoo.com>
      d04c8b7e
  32. Mar 19, 2023
  33. Mar 14, 2023
    • Roy Le's avatar
      [FIX] hr: cannot create a new employee on the application · 516343da
      Roy Le authored
      
      Steps:
      1. Create Employee A that related with user A / partner A in Sales
      department
      2. Create a channel Sales, set Auto Subscribe Departments as Sales
      department
      3. Archive Employee A / user A / partner A
      4. Create a application B in Sales department and click button Create
      Employee
      5. An error occurred: duplicate key value violates unique constraint
      "mail_channel_partner_partner_unique"
      
      closes odoo/odoo#115164
      
      X-original-commit: e5e2cc8e
      Signed-off-by: default avatarYannick Tivisse (yti) <yti@odoo.com>
      516343da
  34. Mar 12, 2023
  35. Mar 10, 2023
    • niyasraphy's avatar
      [FIX] hr, hr_holidays: traceback field used in domain missing in view · 70ece4c8
      niyasraphy authored
      
      before this commit, enabling the mass editing for the
      various tree view using the studio throws exception
      saying field used in domain is missing in the view
      
      * install studio, hr, hr_holidays
      * open department tree
      * enable mass editing for the tree using studio app
      * exception will be raised
      
      similarly for the hr.job, hr.plan, hr.work.location and hr.leave tree views.
      
      after this commit, on enabling mass editing on this tree view, exception will not be shown.
      
      closes odoo/odoo#114889
      
      Signed-off-by: default avatarKevin Baptiste <kba@odoo.com>
      70ece4c8
  36. Mar 08, 2023
  37. Mar 05, 2023
  38. Feb 28, 2023
    • Hansun (hale)'s avatar
      [FIX] hr: random border appearance on employee badge · 0b78509b
      Hansun (hale) authored
      
      To reproduce the issue:
      1. Install [Employees] app
      2. Add some employee records if not there by default
      3. Click on Print icon and [Print Badge]
      4. pdf version will show borders
      
      Issue: with the introduction of bootstrap5, setting the class became a necessity
      Desired behavior: Make the borders invisible
      
      Impacted versions: 16.0 up to master
      
      opw-3126185
      
      closes odoo/odoo#113738
      
      Signed-off-by: default avatarKevin Baptiste <kba@odoo.com>
      0b78509b
Loading