Skip to content
Snippets Groups Projects
  1. Jun 02, 2016
    • Olivier Dony's avatar
      [FIX] res.partner: performance of name_get() · af1a8758
      Olivier Dony authored
      Rev. 93e9a4dc tried to speed up
      the 9.0 name_get() of res.partner by only calling fields_get()
      once for the whole name_get, instead of calling it lazily.
      
      This may have worked for name_get calls on multiple unnamed
      addresses (name is NULL), but this is a rare occurrence
      in practice - while now every single name_get() call would
      incur the full cost of the fields_get() call.
      
      That fields_get() call is O(n) in the number of fields,
      and there can be quite a few for res.partner.
      Calling it only for the specific 'type' field can easily be
      about 40x faster than without it.
      
      And since name_get() is called for each Many2One field
      of each record being read (due to convert_to_read()), reading
      a batch of records with partner fields had become quite
      a bit slower!
      
      Avoiding this cost entirely with lazy fields_get() calls
      saves quite a lot of time for the common cases. And now
      that fields_get() specifies a single field, it is cheap
      enough to be called within the loop.
      
      Non-scientific benchmark: account.invoice.search_read() in
      the list view of invoices took 500ms for 25 invoices
      _before_ this fix, and 90ms after!
      Unverified
      af1a8758
    • Raphael Collet's avatar
    • Olivier Dony's avatar
      [FIX] ir.translation: avoid duplicating translations · 011ce1e8
      Olivier Dony authored
      Rev. 253437f8 meant to
      avoid the creation of duplicate entries during translation
      import, caused by existing translations created with an
      empty `module` field.
      
      But the fix was over-zealous and caused an extra side-effect:
      the creation of missing translations (the blue flag icon)
      now creates duplicate translations if other translations
      exist with different `module` values.
      (This could happen because translations are provided by
      several modules, or due to manual translation entries with
      no module value, etc.)
      Unverified
      011ce1e8
  2. Jun 01, 2016
  3. May 31, 2016
    • Jeremy Kersten's avatar
      [FIX] openerp: force Odoo to serve svg with mimetype image/svg+xml · f413d155
      Jeremy Kersten authored
      Odoo serves files based on the mimetype imported with python module Mimetype.
      In some case, mimetype on windows for svg is undefined or misconfigured and
      the svg is returned as text/plain (and so xml and not img).
      
      This commit overrides the default mimetype to render .svg file with mimetype
      'image/svg+xml'.
      
      It is similar to add/override the key from windows registry with:
      ```
      [HKEY_CLASSES_ROOT\.svg]
      @="svgfile"
      "Content Type"="image/svg+xml"
      ```
      The advantage to override it in Odoo, is to be sure that even if this key has
      been updated or deleted by a cleaner software or malware, Odoo continue to work
      
      This closes odoo/odoo#12150, closes odoo/odoo#9061, closes odoo/odoo#9118
      f413d155
  4. May 29, 2016
  5. May 26, 2016
  6. May 23, 2016
    • Martin Trigaux's avatar
      Revert "[FIX] res.currency: allow duplication" · 0af32f3f
      Martin Trigaux authored
      This reverts commit d780f947.
      
      Did not work due to the size=3 on name field that strips the code to the first
      three letters only (removing the " (copy)" part).
      Copying a currency has a few business cases as the rates are not copied.
      As can not increase the size of a field in stable, remove the method that had no
      effect.
      
      Fixes #11036
      Unverified
      0af32f3f
  7. May 22, 2016
  8. May 17, 2016
    • Damien Bouvy's avatar
      [IMP] web/database manager: admin login & country · 903733a3
      Damien Bouvy authored
      Add inputs e-mail address and country
      when creating a newdatabase
      
      This will provide the installation of the correct
      chart of accounts at the installation of Accounting
      
      Use the provided login as the admin login,
      and set the email on the partner
      if the login set is an email
      
      Set the country on the company (and its partner)
      The countries are parsed from XML country list
      
      We take the opportunity to repair the `label for`
      which bind the label with the input only if
      the `id` attribute of the input is set with
      what is set in the `for` attribute of the label
      903733a3
    • Sylvain GARANCHER's avatar
      [FIX] base: Add missing return values · f4cb884c
      Sylvain GARANCHER authored
      The _auto_init method was overriden without keeping the return value of
      the super on some models.
      This break the new stored computed fields computation at field creation.
      
      Closes #11985
      opw-677232
      f4cb884c
  9. May 15, 2016
  10. May 13, 2016
  11. May 12, 2016
  12. May 11, 2016
  13. May 10, 2016
    • Nicolas Martinelli's avatar
      [FIX] base: no-break space in qweb · 34f09a0e
      Nicolas Martinelli authored
      A non-breaking space is used between the amount and the currency.
      However, if a space is used as a separator, there is a possibility that
      the amount will be split into several lines.
      
      opw-674535
      34f09a0e
    • Martin Trigaux's avatar
      [FIX] tools: keep comment in CSV export · 59982a04
      Martin Trigaux authored
      The comments field was ignored (because reasons) when exporting terms in CSV.
      This was an issue when using the wizard 'Synchronize Terms' as it first export
      the terms of every module in CSV.
      
      opw-673853
      Unverified
      59982a04
  14. May 09, 2016
  15. May 08, 2016
  16. May 05, 2016
  17. May 04, 2016
  18. May 02, 2016
  19. May 01, 2016
  20. Apr 29, 2016
    • Raphael Collet's avatar
      [FIX] expression: fix missing results in direct search on many2many fields · ba5f5614
      Raphael Collet authored
      This case corresponds to searches like `[(field, 'ilike', name)]` where `field`
      is a many2many field.  The domain processing performs a `name_search` on the
      field's comodel, then makes the relation match the returned record ids.
      
      Problem: the call to `name_search` uses the default limit (100), and this makes
      the search return less results than expected.  Make the search complete by
      forcing `limit=None`.
      ba5f5614
    • Raphael Collet's avatar
      [FIX] expression: fix missing results in direct search on many2many fields · c7baab67
      Raphael Collet authored
      This case corresponds to searches like `[(field, 'ilike', name)]` where `field`
      is a many2many field.  The domain processing performs a `name_search` on the
      field's comodel, then makes the relation match the returned record ids.
      
      Problem: the call to `name_search` uses the default limit (100), and this makes
      the search return less results than expected.  Make the search complete by
      forcing `limit=None`.
      c7baab67
    • Raphael Collet's avatar
      [FIX] fields: delay recomputations when setting a binary field in attachment · 39a0ae01
      Raphael Collet authored
      Setting a binary field stored in attachment may trigger recomputations on the
      main record before all fields are set on that record.  This may cause access
      errors if the record does not satisfy some access rule because of the fields
      that are not set yet.
      39a0ae01
  21. Apr 28, 2016
Loading