Skip to content
Snippets Groups Projects
  1. Jun 06, 2018
  2. Jun 05, 2018
  3. Jun 04, 2018
  4. May 30, 2018
  5. May 29, 2018
  6. May 28, 2018
    • Lucas Perais (lpe)'s avatar
      [FIX] web: o2m editable decorated, paged, ordered supports adds/cancel · 9654f6b8
      Lucas Perais (lpe) authored
      Have a decorated (conditional on field) editable list, with a default_order.
      Have more records than the pager allows.
      
      Add an item, and hit escape to cancel addition.
      
      Before this commit, the cancellation crashed because the first record on the other page
      was trying to evaluate the decoration for its row, which is wrong in the first place.
      This was because creating a record increases the limit of the list, to be able to see the record
      being created.
      At cancellation though, that limit was never decreased.
      
      After this commit, the whole flow happens without problem.
      
      OPW 1844495
      closes #24682
      9654f6b8
    • Arnold Moyaux's avatar
      [FIX] stock: Diplay return in tracability report · 575b8f37
      Arnold Moyaux authored
      Since saas-11.2 stock_tracability refactoring do not use
      level on moves orig/dest and filter on return is
      not usefull anymore. It should display all return order
      by date.
      
      This commit remove the codition on the return inside the search
      on move lines.
      575b8f37
    • qsm-odoo's avatar
      [FIX] web_editor: properly save a t-field in a t-ignore environment · ea0fcd52
      qsm-odoo authored
      When a t-field element was in an editable t-ignore environement,
      modifying it was leaving the edit mode style attached to it. This
      was because of:
      1) When the t-field element was changed, it was marked dirty but
         also its parent editable container. Fixing this, only solves
         the case where only the t-field (and not one of its neighbors)
         is changed but it was worth fixing anyway.
      2) Before saving an element, the potential 'o_editable' and
         summernote classes were not removed of its descendant and were
         thus saved.
      
      Bug found with task-38069, merged in stable as it might occur there
      too.
      ea0fcd52
    • Aaron Bohy's avatar
      [ADD] im_support · 2aeb7637
      Aaron Bohy authored
      
      This rev. adds a new module enabling the livechat support from
      the webclient. It allows employee users to communicate with
      livechat operators of another database, assuming that a counterpart
      addon is installed on that database.
      
      Task 26762
      
      Co-authored-by: default avatarAdrien Dieudonne <adr@odoo.com>
      2aeb7637
    • Aaron Bohy's avatar
      [FIX] bus: co-existing instances of bus.bus · 10161f9d
      Aaron Bohy authored
      Before this rev., it was not possible to have co-existing instances
      of bus.bus, each one polling its own server, for several reasons.
      
      First, the Bus class couldn't be overridden or parameterized to
      specify which server and route to call to perform the longpolling.
      
      Second, when several instances of bus.bus coexisted, their use of
      the localStorage (for the CrosstabBus) conflicted, and as a result,
      only one of them actually polled.
      
      This rev. makes it possible, and it was necessary for the new addon
      'im_support'.
      
      Task 26762
      10161f9d
    • Aaron Bohy's avatar
      [FIX] web: Controller: concurrent control panel updates · 5aa0e0bc
      Aaron Bohy authored
      Let's assume the following scenario: in a kanban view with a
      domain, remove that domain and quickly click on a record to open it
      in form view. On a slow network, it may happen that the reload of
      the kanban view (triggered by the domain change) returns after the
      load of the form view.
      
      Before this rev., when this happened, the form view was correctly
      displayed but the control panel contained the buttons, searchview,
      pager... of the kanban view.
      
      Note that this fix is quite ugly, but it won't be necessary anymore
      as soon as the control panel won't be shared between actions and
      controllers, i.e. as soon as each controller will have its own
      control panel.
      5aa0e0bc
  7. May 27, 2018
  8. May 25, 2018
Loading