Skip to content
Snippets Groups Projects
  1. Aug 08, 2019
  2. Aug 07, 2019
    • Nicolas Martinelli's avatar
      [FIX] tools: epsilon magnitude · fde3b696
      Nicolas Martinelli authored
      The following rounding is incorrect:
      ```
      >>> float_round(6.6 * 0.175, precision_digits=2)
      1.15
      ```
      
      Indeed, 6.6 * 0.175 = 1.155 ≈ 1.16.
      
      In this specific case, the `epsilon` computed is not sufficient. A
      precision of 53 gives:
      normalized_value = 115.49999999999997
      epsilon = 1.2823075934420547e-14
      => new normalized_value = 115.49999999999999
      
      Bad luck, this is just not enough to tip the value in the right
      direction.
      
      However, a precision of 52 is sufficient:
      normalized_value = 115.49999999999997
      epsilon = 2.5646151868841094e-14
      => new normalized_value = 115.5
      
      The value of 53 was chosen from the `binary64` number format precision.
      In case of Python, the corresponding machine epsilon is 2^-52 [1].
      Therefore, using 52 instead of 53 does make sense.
      
      It is worth noting that the value of the machine epsilon
      2^-52 = 2.2204460492503131e-16, which is still 2 orders of magnitude
      below our dynamic estimation.
      
      [1] https://en.wikipedia.org/wiki/Machine_epsilon
      
      
      [2] `numpy.finfo(float).eps = 2.2204460492503131e-16`
      
      opw-2047368
      
      closes odoo/odoo#35521
      
      Signed-off-by: default avatarNicolas Martinelli (nim) <nim@odoo.com>
      fde3b696
  3. Dec 04, 2018
    • Nicolas Seinlet's avatar
      [IMP] mail: message route speed · 71af1a71
      Nicolas Seinlet authored
      
      When using limit=1, PostgreSQL sometimes use sub-optimal plan like
      "Index Scan Backward using xxx". To avoid this, adding a fake sort
      will make PostgreSQL to use the same plan as without limit, and in
      this particular case, the index on message_id
      
      closes odoo/odoo#29278
      
      Signed-off-by: default avatarXavier Dollé (xdo) <xdo@odoo.com>
      71af1a71
  4. Aug 08, 2019
    • Goffin Simon's avatar
      [FIX] mrp: Work Order planned date filed not calculated · 16e7a4b4
      Goffin Simon authored
      
      The field "date_planned_finished" was not computed when changing the fields
      "date_planned_start" or "duration_expected".
      
      opw:2048416
      
      closes odoo/odoo#35537
      
      Signed-off-by: default avatarSimon Goffin (sig) <sig@openerp.com>
      16e7a4b4
    • Nicolas Martinelli's avatar
      [FIX] web: quick create in RTL · 868bad02
      Nicolas Martinelli authored
      
      - Set a language using RTL (e.g. Arabic)
      - Activate mobile mode (through debug mode or on a mobile device)
      - Go to the CRM kanban view (make sure no record exist so the no_content
      message is displayed)
      - Add a new record
      - Fill in the name, click outside of the field
      
      The no_content message is displayed over the form view and it is impossible
      to save the record.
      
      The root cause is the incorrect structure of the kanban view page in RTL,
      leading the user to the wrong element and triggering the wrong event.
      
      We make the structure of the view aware of the RTL configuration.
      
      opw-2046231
      
      closes odoo/odoo#35509
      
      Signed-off-by: default avatarNicolas Martinelli (nim) <nim@odoo.com>
      
      
      Co-authored-by: default avatarMohammed Shekha <msh@openerp.com>
      868bad02
    • Nicolas Martinelli's avatar
      [FIX] web: kanban swipe in RTL · 625e2f06
      Nicolas Martinelli authored
      - Set a language using RTL (e.g. Arabic)
      - Activate mobile mode (through debug mode or on a mobile device)
      - Go to a grouped kanban view (e.g. CRM pipeline)
      - Swipe to the left
      
      The column to the left if shown instead of the column to the right.
      
      In RTL, the kanban groups order are inverted. Therefore, we also need to
      invert the swipe direction.
      625e2f06
    • Jorge Pinna Puissant's avatar
      [FIX] base_import: import with user date parsing pattern · 32c2666d
      Jorge Pinna Puissant authored
      
      Before this commit, when a user imports an Excel file, with date as
      strings. The _try_match_date_time function will try to find the best
      date parsing to use in the import without taking into account the
      language of the user.
      
      Now, the function will take into account the language of the user when
      trying to find the best date parsing pattern for the import.
      
      opw-2046217
      
      closes odoo/odoo#35540
      
      Signed-off-by: default avatarJorge Pinna Puissant (jpp) <jpp@odoo.com>
      32c2666d
  5. Aug 07, 2019
  6. Aug 06, 2019
  7. Aug 05, 2019
  8. Aug 02, 2019
  9. Aug 04, 2019
  10. Aug 02, 2019
  11. Aug 01, 2019
  12. Jul 31, 2019
  13. Aug 02, 2019
  14. Jul 31, 2019
  15. Aug 03, 2019
  16. Aug 04, 2019
Loading