- Dec 15, 2014
-
-
Xavier Morel authored
* Odoo installation from packages or source * Deployment instructions for production environments * dbfilter Add missing support for disabling xmlrpc(/http), useful for WSGI deployments which require running cron-only Odoo instances.
-
Raphael Collet authored
This simple optimization in load_marked_modules() avoids unnecessary calls to load_module_graph(). This provides a small speedup, and avoids confusing log: some module updates were making it look like the registry was loaded 5 times instead of once.
-
- Dec 12, 2014
-
-
Christophe Simonis authored
-
Christophe Simonis authored
-
David Monjoie authored
-
senthilnathang authored
Default Currency for Malaysia is MYR (Malaysian ringgit), not MXN (Mexican peso) Fixes #4193
-
- Dec 11, 2014
-
-
Kit Sunde authored
closes #4169 closes #4170
-
Raphael Collet authored
Non-setup fields could cause problems in two places: - when traversing the chain of fields in related fields; - when adding recomputation triggers on inverse fields Both issues are fixed by this patch.
-
Kit Sunde authored
closes #4163
-
- Dec 10, 2014
-
-
Jairo Llopis authored
The double % was not understood by some browsers (e.g. Firefox). No need for escaping in this block. Fixes #4142
-
- Dec 09, 2014
-
-
Christophe Simonis authored
-
Christophe Simonis authored
[IMP] models.py: increase logging level for columns that can't be casted automatically when upgrading a module.
-
- Dec 05, 2014
-
-
Xavier Morel authored
User-provided addons paths are checked for existence (and rejected), but default addons paths are not checked, and blow up when trying to listdir them (e.g. when http.py tries to load modules). This is an issue when using Odoo from the distributed tarballs, because the packaging currently moves all modules to openerp/addons and removes the root ("main") addons directory.
-
- Dec 04, 2014
-
-
Cecile Tonglet authored
During a migration of database, it is possible that some custom field ("x_", state is 'manual') are relational to model from a module that is not provided. Note: this used to work in Odoo 7.0 but crashed in 8.0. Closes #3877
-
Sandy Carter authored
Check if id is valid by searching record columns when a key error is raised If the record has the column, the key error is actually an error on a missing or inaccessible id. Signed-off-by:
Sandy Carter <sandy.carter@savoirfairelinux.com> Closes #3658
-
Denis Ledoux authored
Before, all isolated (between xml/html tags) two chars words coming from views were not translated (by choice). But, for some words, allowing them is useful. For instance, the word 'or' located between two buttons. opw-616716
-
Arthur Maniet authored
[FIX] res.currency: correctly compute the number of decimal places for currencies formatting in 'get_format_currencies_js_function'.
-
- Dec 03, 2014
-
-
Christophe Simonis authored
-
Raphael Collet authored
-
Raphael Collet authored
-
- Dec 02, 2014
-
-
Mack authored
Rebase and close #3618
-
Christophe Simonis authored
-
Raphael Collet authored
-
Raphael Collet authored
-
Raphael Collet authored
-
Xavier Morel authored
-
Xavier Morel authored
-
Xavier Morel authored
Used to be the first line was the CSV headers, the slice was left over after these were removed from the source data. It probably didn't hurt (only issue would be if the first module — alphabetically — has a single translatable term), but it's just as clean not to have that. Also removed now-unused variable (probably leftover of the CSV thing as well)
-
Xavier Morel authored
-
Xavier Morel authored
also fix a pair of docstrings
-
Xavier Morel authored
was already done when exporting to tgz, but not for po
-
Xavier Morel authored
* move stuff around * call write() from browse, correctly pass context to browse * remove useless default to file name * use contextlib with stringio
-
- Nov 28, 2014
-
-
Sebastien Versaille authored
-
Goffin Simon authored
QWeb monetary widget uses the precision of the currency to know the number of digits to display on a price. The number of digits is based on log10(rounding). For currency with rounding different than 10^x (e.g. in Switzerland 0.05 to allow 5 cents coins only), the number of displayed digits should be rounded up. e.g. log10(0.05) is -1.3, rounded up to 2 digits. Fixes #3233
-
Andrius Preimantas authored
When deleting a partner with some contacts, if the contacts had selected the "use parent address" checkbox, the address of the contacts was stucked in readonly mode (no checkbox to disable it). Disable use_parent_address for orphan partners. Fixes #3611 #3613
-
Denis Ledoux authored
-
Antony Lesuisse authored
Closes #3902
-
Xavier Morel authored
fixes #3102
-
- Nov 27, 2014
-
-
Denis Ledoux authored
For instance, when a context was passed to a method, but no lang was defined in the context, it did not tried to fallback to other places where we could have find the user language.
-
Christophe Simonis authored
-