Skip to content
Snippets Groups Projects
  1. Nov 12, 2019
  2. Oct 03, 2019
  3. Nov 12, 2019
  4. Nov 08, 2019
  5. Nov 06, 2019
  6. Nov 08, 2019
  7. Nov 10, 2019
  8. Nov 12, 2019
    • Andrea Grazioso (agr-odoo)'s avatar
      [FIX] google_calendar: exclusions not propagating (from OE) · 0f17a0ea
      Andrea Grazioso (agr-odoo) authored
      Activate Google Synchronization, create on OE a recurrent event,
      synchronize the calendar, then delete an event of the recursion on GC,
      sync again on OE.
      
      The event will be deleted from GC but not from OE after sync.
      
      This appens because of this "rewrite" rule
      https://github.com/odoo/odoo/blob/12.0/addons/calendar/models/calendar.py#L918
      
      
      that occur on event creation from OE, altering the event parameters when
      is marked "allday".
      
      When an "allday" event is deleted from GC the unlink is triggered in OE with the
      default time "00:00:00". During the creation of the exclusion '
      _inverse_dates' will be called altering start and stop datetime but not
      recurrent_id_date, so the new record will not match the event generating
      the recursion and the exclusion will not occur. The problem require
      particular carefulness because when a recurrent event is fetched from
      google the '_inverse_dates' is not called, so in that case the default
      time is fine.
      
      opw-2060526
      
      closes odoo/odoo#39662
      
      Signed-off-by: default avatarNicolas Martinelli (nim) <nim@odoo.com>
      0f17a0ea
  9. Nov 08, 2019
  10. Nov 07, 2019
    • qsm-odoo's avatar
      [FIX] website: restore parallax previews in edit mode · 68b0f9cb
      qsm-odoo authored
      
      When the user changed the parallax option, it was only updated on save.
      So, the user was not able to have a preview of what he chose.
      
      Note: this commit is made in saas-12.3 but does not fully solve the
      problem there... and unfortunately I don't know why. It fully solves
      the problem in 13.0 though and this is more important.
      
      closes odoo/odoo#39995
      
      X-original-commit: 4b633949cd4fd1cae807b95d233879ac4adc01ce
      Signed-off-by: default avatarQuentin Smetz (qsm) <qsm@odoo.com>
      68b0f9cb
  11. Nov 08, 2019
  12. Nov 06, 2019
  13. Nov 08, 2019
    • Nicolas Martinelli's avatar
      [FIX] website: access website in multi-company · 194627a2
      Nicolas Martinelli authored
      
      - Create 2 companies A & B
      - Create a website A
      - Create a user U with access to company B only
      - Connect as U and go to the website
      
      An internal server error is raised.
      
      This is due to 7bfcb53d which verifies if the user isn't
      granted access to companies he is not supposed to access.
      
      This is exactly what was done before this commit: the website is in a
      company not allowed to the user.
      
      opw-2116539
      
      closes odoo/odoo#40004
      
      X-original-commit: debc516c
      Signed-off-by: default avatarNicolas Martinelli (nim) <nim@odoo.com>
      194627a2
Loading