Skip to content
Snippets Groups Projects
  1. Jan 06, 2022
  2. Jan 02, 2022
  3. Dec 30, 2021
  4. Dec 26, 2021
  5. Dec 21, 2021
  6. Oct 02, 2021
  7. Dec 10, 2020
  8. Dec 19, 2021
  9. Dec 12, 2021
  10. Dec 07, 2021
  11. Dec 05, 2021
  12. Dec 02, 2021
  13. Nov 28, 2021
  14. Nov 26, 2021
    • fja-odoo's avatar
      [FIX] web: fix chineese calendar format · 7cc502a6
      fja-odoo authored
      
      Issue:
      The way we generate the dayNamesMin is not compatible with the chineese
      translation provided by "moment.js".
      This is because the dayNamesShort contains an extra character in front
      週 (week). Because of that the names of the days on the
      small calendar are all the character 週 (week).
      
      Solution:
      There is a variable (weekdaysMin) which is unused and contain a shorter
      version of the days this variable is consitent in the other languages so
      it should have no side effect and will fix the chinese translation as it
      only contains one character.
      
      Introduced by: 1fc33a63
      
      task-2692910
      
      closes odoo/odoo#80363
      
      Signed-off-by: default avatarSamuel Degueldre <sad@odoo.com>
      7cc502a6
  15. Nov 23, 2021
    • Mathieu Duckerts-Antoine's avatar
      [FIX] web: pivot: keep subTrees in comparison mode · 0d8d276c
      Mathieu Duckerts-Antoine authored
      
      Before this commit, when comparing a period P of reference to another one,
      some rows with only data comming from P would not always be presented
      in the table. The problem used to manifest only when loading at least to
      level at the same time (starting from Total or any header via expand all).
      
      The reason is the following:
      - the data comming from P are processed first: starting from somewhere
        in the trees of headers, some nodes linked to the data comming from P
        are progressively created with no children at first, then the children
        (if any) are added later and so on progressively.
      - the data comming from the other period is processed and nodes are
        created with no children and so on in the same way, clearing possibly
        all the node children comming from P.
      
      For example, with
        a row groupby = [field_a, field_b],
        a group [v, v1] from P
        a group [v, v2] from the other period,
      a node corresponding to v would be added, then a node child for v1.
      Then the node for v would be recreated with no children, then a node child
      for v2 would be created. leading to a tree of row headers of the form
      Total > v > v2.
      
      Note that it was not affecting the measure values for the displayed rows
      since those measures are stored separately from the tree and are linked
      to the nodes via some ids.
      
      We fix the problem by avoiding the recreation of a node if it already
      exists.
      
      opw-2635113
      
      closes odoo/odoo#79630
      
      X-original-commit: 21eb4d1a
      Signed-off-by: default avatarAaron Bohy (aab) <aab@odoo.com>
      Signed-off-by: default avatarMathieu Duckerts-Antoine <dam@odoo.com>
      Co-authored-by: default avatarMathieu Duckerts-Antoine <dam@odoo.com>
      Co-authored-by: default avatarAndrea Grazioso <agr@odoo.com>
      0d8d276c
  16. Nov 21, 2021
  17. Nov 14, 2021
  18. Nov 08, 2021
    • luvi's avatar
      [FIX] web: title missing on reload · 1723c52d
      luvi authored
      
      This commit fixes an issue of the webclient where the tab
      was missing the name of the action in the title after a
      fresh load of the page.
      e.g. after a reload or when duplicating a tab in sales, the
      title was 'Odoo' instead of 'S00001 - Odoo'.
      
      closes odoo/odoo#79518
      
      X-original-commit: 842ffc41
      Signed-off-by: default avatarAaron Bohy (aab) <aab@odoo.com>
      1723c52d
    • Lucas Perais (lpe)'s avatar
      [FIX] web: list_editable in FieldOne2Many: onSuccess at the right time · d14c1d25
      Lucas Perais (lpe) authored
      
      When changing a value for a o2m (list) within a form, the _setValue
      returned a Promise that did not take into account the real rendering of
      the list renderer.
      
      The use case at hand is:
      - enable product configurator
      - have a product with options
      - add that product in a SO
      - add the option as well through the product configurator
      - confirm the configurator
      
      The configurator triggers an add_record event, with an onSuccess callback
      
      Before this commit, the onSuccess callback was called too early, when the previous
      rendering operations were not finished yet.
      
      After this commit, the onSuccess is executed when the list renderer is really ready
      
      opw-2580044
      
      closes odoo/odoo#79441
      
      Signed-off-by: default avatarLucas Perais (lpe) <lpe@odoo.com>
      d14c1d25
  19. Nov 07, 2021
  20. Nov 03, 2021
  21. Nov 02, 2021
  22. Oct 31, 2021
  23. Oct 26, 2021
    • Audric Onockx (auon)'s avatar
      [FIX] web : Fixed datetime filter search based on wrong hours · 454a367a
      Audric Onockx (auon) authored
      
      Reproduce :
      (With timezone GMT+3)
      - Create any record R1 with previous day's date and time after 21:00.
      - Create any record R2 with today's date and time after 21:00.
      - Create a filter to show all todays records (Date is between "<TODAY'S DATE> 00:00:00 and <TODAY'S DATE> 23:59:59".
      
      Result :
        Even though R1 is in yesterday's date, it will show in the list.
        R2 will not show in this list.
      
      Explanation :
        This behaviour has been observed in several modules, for any timezone but UTC & only with custom filters default datetime values.
        The search was applied on [datetime(UTC) + 2 * offset] because the timezone wasn't correctly set.
      
      Solution :
        Timezone is now correctly set on default datetime values.
      
      closes odoo/odoo#75663
      
      Signed-off-by: default avatarNicolas Lempereur (nle) <nle@odoo.com>
      454a367a
  24. Oct 24, 2021
  25. Oct 22, 2021
    • Mohammed Shekha's avatar
      [FIX] web: support readonly attribute on toggle_button widget · a4cdcf9a
      Mohammed Shekha authored
      
      before this commit: applying readonly attribute on toggle_button doesn't work,
      toggle_button still clickable and value is still changed even though widget is
      readonly, there is no effect of readonly attribute on toggle_button widget.
      
      after this commit: if toggle_button widget has readonly attribute then it will
      not be clickable, button of toggle_button will be disabled so that user can
      easily understand that element is not clickable.
      
      task-2339995
      
      closes odoo/odoo#78793
      
      X-original-commit: b153ded9
      Signed-off-by: default avatarAaron Bohy (aab) <aab@odoo.com>
      a4cdcf9a
  26. Oct 19, 2021
  27. Oct 18, 2021
  28. Oct 17, 2021
  29. Oct 11, 2021
  30. Oct 10, 2021
  31. Oct 05, 2021
    • Xavier Morel's avatar
      [FIX] web: more reliably avoid downloads on new file · 609b6503
      Xavier Morel authored
      
      51955505 mitigated an issue of being
      able to try and download files which don't exist yet, make the fix
      more reliable by clearing out the field completely and hiding the
      content if the (readonly) field has no value *or the record is not
      saved yet*.
      
      Also clean up the code:
      
      * an old-style forward port created a duplicate fixprovement
        (a8d01cbf) which seems less correct
        as it applies conditionally
      * and the code is branchier than necessary, we can make it simpler by
        judiciously leveraging jquery's API
      
      closes odoo/odoo#77756
      
      X-original-commit: 05db9be15d75dc0794095aad75c80d0c2e540808
      Signed-off-by: default avatarXavier Morel (xmo) <xmo@odoo.com>
      609b6503
  32. Oct 04, 2021
  33. Oct 03, 2021
  34. Oct 01, 2021
Loading