Skip to content
Snippets Groups Projects
  1. Nov 08, 2017
    • Thibault Delavallée's avatar
      [FIX] mail: followers alias check on models not inheriting from alias mixin · 20d80250
      Thibault Delavallée authored
      You could try to check followers on a model not inheriting from mail alias
      mixin. In that case current code would check followers on a void mail
      alias mixin record, meaning no followers found. Instead we now
      differentiate the class method from the method checking record properties.
      20d80250
    • Thibault Delavallée's avatar
      [FIX] mail: correctly return and log error message when checking aliases · d6a5c126
      Thibault Delavallée authored
      Mesage should be message otherwise it is not displayed in the logs.
      d6a5c126
    • Géry Debongnie's avatar
      [FIX] web: prevent useless discard dialog from showing up · 9e97ad8d
      Géry Debongnie authored
      Here is a scenario that could cause an issue:
      - open a form view with a many2one
      - click on edit button
      - click on small external button for many2one. this opens a modal form
        view
      - click on save in the modal (without changing anything)
      - click on save in the main record
      - exit form view. this opens a discard dialog
      
      There were two issues here:
      - saving the modal dialog automatically marks the many2one field as changed.
        This was necessary to force reloading the data, because editing a sub value
        in the modal form view could have changed the display_name of the manyone
        field.  However, this is not necessary when no change was done.
      - when saving a record, the _isDirty flag was reset to false only if an
        actual rpc was done.  However, it may happen that the flag is set to
        dirty (for example, when modifying a value inside a many2one), but the
        main record has no changed fields.
      
      In this commit, we also remove the on_save handler in the
      formviewdialog.  This is a small refactoring in a stable version, but no code
      currently use it, and I believe that it will make the code much easier
      to maintain (the previous code was really awkward), so I think that the
      tradeoff is acceptable.
      9e97ad8d
    • Lucas Perais (lpe)'s avatar
      [FIX] web: fields set in fieldDependencies should have their "options" set · 324d4bfb
      Lucas Perais (lpe) authored
      Bug brought by f45edfbe
      
      Before this commit, the debug manager crashed when clicking on "set defaults" on a view fetching a fieldDependency.
      This was because the "options" key on the field was not set when the field originated from the fieldDependency of a widget.
      
      After this commit, the data_manager ensures that key is present
      
      OPW 780071
      
      closes #20730
      324d4bfb
  2. Nov 07, 2017
  3. Nov 06, 2017
    • Christophe Simonis's avatar
      928a284b
    • Nicolas Martinelli's avatar
      [FIX] sale_expense: fields consistency · 08ab28a6
      Nicolas Martinelli authored
      Use case to reproduce:
      - Set a product to be expensed
      - Set the expense_policy to something else than no
      - Do a delivery order with a picking
      - Validate the picking
      -> Delivered quantity to 0 and impossible to create an invoice
      if the invoice_policy is delivered_quantity
      
      It happens due to this commit 48ea59d4
      What does it do:
      - The move could be generated by an expense.
      - If the move has 'no' as expense policy thus we won't add it in the invoice
      Problem we can't guess if the move come from an expense or not (limitation).
      
      This commit add an onchange on can_be_expense is order to set the expense
      policy back to 'no' when the user uncheck it.
      
      Courtesy of amoyaux
      
      opw-777139
      08ab28a6
    • Christophe Simonis's avatar
      88c641e6
  4. Nov 05, 2017
  5. Nov 03, 2017
  6. Nov 02, 2017
  7. Nov 01, 2017
  8. Oct 31, 2017
  9. Oct 30, 2017
Loading