Skip to content
Snippets Groups Projects
  1. Feb 17, 2016
    • Denis Ledoux's avatar
      [FIX] crm: merge of partners twice in the action menu · 876634b1
      Denis Ledoux authored
      The link to open the merging partners wizard was duplicated
      in the action menu:
       - Once as "Deduplicate Contact",
       - Once as "Merge selected contacts".
      
      This is due to the revision 30a7ef80,
      converting the
      `<record model="ir.actions.act_window"...`
      to an
      `<act_window`
      which creates an action binding automatically.
      
      No action binding must be created for this window
      action, as there is already another one,
      the link to this wizard is already in the
      partners action menu, thanks to the `act_window`
      `action_partner_merge`.
      
      Besides, the `'default_state': 'option'` seems useless,
      as this is the default value set in the model directly.
      On the opposite, removing the `active_test` (as done in
      the revision mentioned above) could be armful. We
      therefore re-set it.
      
      opw-669688
      876634b1
    • Kevin Chappell's avatar
      [FIX] remove --auto-reload from Documentation · 9187dc15
      Kevin Chappell authored
      Option --auto-reload was removed (and the corresponding feature bound to
      --dev), don't document an option which doesn't exist anymore.
      
      closes #10697
      9187dc15
    • Xavier Morel's avatar
      [IMP] provide pg connection information as keywords · 26a8b438
      Xavier Morel authored
      When the database_or_uri is not a URI, rather than generate a dsn string
      just collect the various psycopg2.connect keyword arguments in a
      dictionary, and return that. This way psycopg2/libpq is the one doing
      any necessary processing on the various parameters.
      
      Fixes #3865 and fixes #6958 in a more resilient manner than manually
      escaping dsn-injected values so database names or passwords containing
      spaces or non-ascii characters work correctly.
      
      In case a URI is provided to the dsn() function, return it as the `dsn`
      keyword to get the same behaviour as previously.
      
      Since we're checking dsns by equality, a dict should work just as well
      as a string.
      26a8b438
    • Olivier Dony's avatar
      [FIX] analytic: name_search with negative operators · 1e729c7c
      Olivier Dony authored
      The algorithm for matching analytic accounts based
      on search term is only meant to be used for
      simple, positive operators.
      In other cases the results will not be what the user
      expects. Falling back to the default name_search
      behavior will be more useful.
      1e729c7c
    • Goffin Simon's avatar
      [FIX] account : tax details in invoice report · 598856e1
      Goffin Simon authored
      When a tax with an amount of 0 percent was linked to an invoice line,
      this tax didn't appear in the tax details in the bottom of the invoice
      report.
      
      opw669162
      598856e1
  2. Feb 16, 2016
  3. Feb 15, 2016
  4. Feb 14, 2016
  5. Feb 12, 2016
    • Goffin Simon's avatar
      [FIX] sale: Ordered Qty=0 in a SO line · 1f081bed
      Goffin Simon authored
      A SO line with an ordered qty less or equal to the sum of all the quantity
      linked to its procurement must be ignored. In this way, when a SO line has
      an Ordered Qty equal to 0 in a SO, all the other lines can be processed like
      in 8.0
      
      opw:669200
      1f081bed
Loading