Skip to content
Snippets Groups Projects
  1. Jun 11, 2023
  2. Jun 07, 2023
  3. 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
  4. Jun 04, 2023
  5. 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
  6. May 31, 2023
  7. May 30, 2023
  8. May 28, 2023
  9. May 23, 2023
  10. May 21, 2023
  11. May 14, 2023
  12. May 09, 2023
  13. May 07, 2023
  14. Apr 26, 2023
  15. 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
  16. Apr 16, 2023
  17. Apr 14, 2023
  18. Apr 09, 2023
  19. Apr 02, 2023
  20. Mar 29, 2023
  21. Mar 28, 2023
  22. Mar 26, 2023
  23. 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
  24. Mar 19, 2023
  25. 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
  26. Mar 12, 2023
  27. 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
  28. Mar 08, 2023
  29. Mar 05, 2023
  30. Feb 28, 2023
  31. Feb 26, 2023
  32. Feb 22, 2023
  33. Feb 20, 2023
  34. Feb 14, 2023
  35. Feb 13, 2023
  36. Feb 07, 2023
Loading