Skip to content
Snippets Groups Projects
  1. Aug 20, 2023
  2. Jul 16, 2023
  3. Jul 09, 2023
  4. Jun 11, 2023
  5. May 14, 2023
  6. Apr 30, 2023
  7. Apr 23, 2023
  8. Apr 11, 2023
    • Xavier-Do's avatar
      [FIX] tests: check test tags *_install · c4e6f090
      Xavier-Do authored
      
      Making a test post_install using @tagged should always remove the
      at_install tag.
      
      The main reason for that is that runbot split config select if an
      at_install or post_install tests should be executed is using negation:
      `--test-tags -post_install`. The reason for that is that giving a positive tag will
      replace the "standard" tag and non standard tag could be executed if
      giving `--test-tags at_install` (without negation)
      
      Since runbot tests in parallel builds, one of them using
      `--test-tags -post_install` and the other `--test-tags -at_install`,
      a test that is both post install and at install wont be executed at all.
      
      Also, a tests with both tags will be executed twice
      in a normal flow, usually not intended.
      
      The correct way to make a test post_install is to use
      
      @tagged('post_install', '-at_install')
      
      closes odoo/odoo#118042
      
      Signed-off-by: default avatarChristophe Monniez (moc) <moc@odoo.com>
      c4e6f090
  9. Apr 09, 2023
  10. Mar 19, 2023
  11. Feb 26, 2023
  12. Feb 13, 2023
  13. Feb 05, 2023
  14. Jan 30, 2023
  15. Jan 22, 2023
  16. Jan 08, 2023
  17. Dec 08, 2022
  18. Dec 04, 2022
  19. Oct 02, 2022
  20. Sep 11, 2022
  21. Jul 24, 2022
  22. Apr 24, 2022
  23. Apr 17, 2022
  24. Apr 03, 2022
  25. Jan 09, 2022
  26. Dec 09, 2021
    • William Braeckman's avatar
      [FIX] hr_org_chart: fix employee deletion · 00b5cf2d
      William Braeckman authored
      
      How to reproduce:
      1: create two employees (A B)  and two departments (C D)
      2: Assign A as manager of C and B as manager of D
      3: Assign C as A's department and A as A's manager
      4: Change A's department to D -> A is deleted
      
      This is due to `parent_id` being both a computed field and the source
      field for a One2many. By changing the `department_id` the `parent_id`
      also changed which results in it being report in the `onchange` method.
      For some reason however the command sent by the orm is not `UNLINK` but
      `DELETE` which results in the `active_id` being deleted.
      
      TaskId-2711428
      
      closes odoo/odoo#81135
      
      X-original-commit: 3ec9dcc5
      Signed-off-by: default avatarYannick Tivisse (yti) <yti@odoo.com>
      Signed-off-by: default avatarWilliam Braeckman (wbr) <wbr@odoo.com>
      00b5cf2d
  27. Nov 28, 2021
  28. Nov 21, 2021
  29. Nov 14, 2021
  30. Nov 07, 2021
  31. Oct 31, 2021
  32. Oct 24, 2021
  33. Oct 17, 2021
  34. Oct 10, 2021
  35. Oct 03, 2021
  36. Sep 26, 2021
  37. Sep 21, 2021
    • William Braeckman's avatar
      [FIX] hr_org_chart: remove res_id from the widget's action · 2fe87bcf
      William Braeckman authored
      
      On the employee view there is a possibility to open a list of all the
      employees managed by the current employee however the action contains
      the key 'res_id' which makes both create and open action invalid. (the
      manager is opened either way instead of the right action)
      
      The action now also has a proper name instead of displaying `unnamed`,
      aswell as containing the context necessary to default the manager as
      expected. and the triple dots displayed when there are too many
      employees has been replaced with `See All`.
      
      TaskId-2648133
      
      closes odoo/odoo#76843
      
      X-original-commit: 62be05dc
      Signed-off-by: default avatarKevin Baptiste <kba@odoo.com>
      2fe87bcf
  38. Sep 05, 2021
  39. Aug 08, 2021
  40. Jul 26, 2021
    • Xavier-Do's avatar
      [FIX] *: add explicit license to all manifest · 4f683968
      Xavier-Do authored
      
      The license is missing in most enterprise manifest so
      the decision was taken to make it explicit in all cases.
      When not defined, a warning will be triggered starting from
      14.0 when falling back on the default LGPL-3.
      
      closes odoo/odoo#74231
      
      Related: odoo/enterprise#19850
      Related: odoo/design-themes#43
      Signed-off-by: default avatarXavier Dollé (xdo) <xdo@odoo.com>
      4f683968
Loading