- Jun 02, 2016
-
-
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!
-
Raphael Collet authored
opw:678921
-
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.)
-
- Jun 01, 2016
-
-
Odoo Translation Bot authored
-
- May 31, 2016
-
-
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
-
- May 29, 2016
-
-
Odoo Translation Bot authored
-
Odoo Translation Bot authored
-
- May 26, 2016
-
-
Martin Trigaux authored
This reverts commit 44e8b92b. The condition is wrong as a view starting with DOCTYPE as top element will be excluded, including its child (the whole page them). Re-add the translatable title that was excluded by the condition.
-
Christophe Simonis authored
[FIX] *: replace uses of `except_osv` with `UserError` that have been forgotten during previous forward-ports
-
Ondřej Kuzník authored
This is a fix for f04f4099, which only prevented the workers from being spawned in Prefork mode, while the socket was still being bound to - this is a problem when starting a worker-only server as it cannot coexist with the XMLRPC server on the same machine. Closes #1828
-
Christophe Matthieu authored
-
- May 23, 2016
-
-
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
-
- May 22, 2016
-
-
Odoo Translation Bot authored
-
Odoo Translation Bot authored
-
- May 17, 2016
-
-
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
-
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
-
- May 15, 2016
-
-
Odoo Translation Bot authored
-
Odoo Translation Bot authored
-
- May 13, 2016
-
-
Christophe Simonis authored
-
Christophe Simonis authored
-
- May 12, 2016
-
-
Nicolas Seinlet authored
When recomputing stored function fields, the `write` may trigger a cache invalidation which lead to a recompute of all the recordset values, even the ones already saved in database.
-
- May 11, 2016
-
-
Martin Trigaux authored
-
Andreas Stauder authored
Closes #4722
-
Olivier Dony authored
Backport of 8423a0df Clear the cache/environment in addition to rolling back the cursor, in order to retry the transaction with fresh data, not partially stale data.
-
- May 10, 2016
-
-
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
-
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
-
- May 09, 2016
-
-
Raphael Collet authored
Invalidate the cache of a x2many field when any of the fields appearing in its domain is modified. Use the invalidation triggers mechanism for that purpose.
-
- May 08, 2016
-
-
Odoo Translation Bot authored
-
Odoo Translation Bot authored
-
- May 05, 2016
-
-
Olivier Dony authored
Backport of 7d732b10 Fixes #979
-
- May 04, 2016
-
-
Goffin Simon authored
When a company contact is changed in a company, this contact will not be displayed as a company contact. opw:673715
-
- May 02, 2016
-
-
Alexandre Fayolle authored
Since 3d8f7c2f, res.config support selection fields to set groups and install modules using a selection field instead of boolean. While the `module_*` fields are correctly casted from boolean to integers, it was not the case with `group_*` fields. This commit forces the conversion to get the expected field format value. Closes #10373
-
Martin Trigaux authored
Had a timeout on last sync
-
- May 01, 2016
-
-
Odoo Translation Bot authored
-
Odoo Translation Bot authored
-
Odoo Translation Bot authored
-
- Apr 29, 2016
-
-
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`.
-
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`.
-
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.
-
- Apr 28, 2016
-
-
Raphael Collet authored
When traversing relational fields as superuser, you end up with a recordset for which only a subset is accessible to the current user. An earlier fix to this issue completely dropped the `related_sudo` feature; change its implementation to keep the feature.
-