- Sep 27, 2016
-
-
Michael Brown authored
Signed-off-by:
Michael Brown <mbrown@fensystems.co.uk> Closes #13070
-
Fabrice Henrion authored
-
- Sep 26, 2016
-
-
bfotop authored
-
Cesar Lage authored
Courtesy of Cesar Lage. Thanks for the contribution
-
- Sep 22, 2016
-
-
Martin Trigaux authored
It is used in the version switcher
-
- Sep 21, 2016
-
-
Olivier Laurent authored
-
- Sep 15, 2016
-
-
xmo-odoo authored
-
- Sep 12, 2016
-
-
Ryan Cole authored
Closes #13387
-
- Sep 09, 2016
-
-
Fabien Meghazi authored
A new preprocess method is added to the template engine in order to do preprocessing/sanitization of the templates before compilation. This method can be overloaded in order to add new features such as translation, ...
-
Olivier Dony authored
Received PDF signature by email on 2016-09-06, from Aleš Ferlan <alefer89@protonmail.com>. See opw-687914 for original PDF signature.
-
- Sep 07, 2016
-
-
Raphael Collet authored
-
- Sep 06, 2016
-
-
Denis Vermylen (dve) authored
This reverts commit b4d7b7e6. Odoo always uses term eCommerce
-
- Sep 05, 2016
-
-
Olivier Dony authored
- As of v10, manifest files should be named `__manifest__.py` - For backwards-compatibility, __openerp__.py manifest files will still be supported for the time being - Limited refactoring, to add support for the 2 different naming conventions - All textual references to __openerp_.py updated in documentation and examples
-
- Sep 02, 2016
-
-
Denis Vermylen (dve) authored
-
Hpar authored
+ hparfr
-
- Aug 31, 2016
-
-
Olivier Laurent authored
And correct a few errors. Closes #13350
-
- Aug 23, 2016
-
-
Freeman Helmuth authored
Closes #13144
-
- Aug 11, 2016
-
-
Stefano Rigano authored
These pages were indexed by google but did not have any layout defined.
-
Martin Trigaux authored
The POSBox do not work over HTTPS, the pos must be in HTTP. See #3156 for details
-
- Aug 10, 2016
-
-
Nicolas Martinelli authored
The `consolidation_label` attribute is replaced by `string`. This way, the label is taken into account by the translation tools. This is the modification of the documentation regarding the Enterprise improvement. opw-683601
-
Kim Huysmans authored
Closes #13072
-
Yannick Tivisse authored
In the 'get_html' method, the report is using a custom model to render its html, we should use its own 'render_html' method to generate the report. During the module migration, we replaced 'report_model.render_html(cr, uid, ids, data=data, context=context)' by 'report_model.render_html(data=data)' The new API signature of 'get_html' is @api.model def get_html(self, docids, report_name, data=None): That way, 'render_html' doesn't receive docids anymore when called. We should do instead if report_model is not None: return report_model.browse(docids).render_html(data=data) As render_html is an api.multi method, this is all wrong too, because we'll send a browse record with the custom report model to the render_html method, to use the ids with 'self.ids' that are absolutely not corresponding to the report model but to to the record model we want to print (an invoice for example). In old API style we were sending a list of ids, but it's not correct to keep the same behavior by sending a browse record with only the ids relevant. We have also to change render_html method decorator to @api.model with a new signature @api.model def render_html(self, docids, data=None): And replace the call to render_html by if report_model is not None: return report_model.render_html(docids, data=data) In the case the report is printed from a wizard, this is sufficient because the ids are taken from the active_ids in context, or in data. In the case the report is printed from a simple action, we should replace the occurence of 'self.ids' (which doesn't mean anything) to 'docids' This fix doesn't solve the printing issues for the custom accounting reports, because the method get_pdf has been reimplemented in the module account_reports.
-
- Aug 03, 2016
-
-
Bruno PLANCHER authored
Closes #12986
-
- Aug 01, 2016
-
-
Christophe authored
Done at #11662
-
- Jul 29, 2016
-
-
mva authored
The hardware limit should be higher than the soft, otherwise it is killed before reaching the limit. Closes #12957
-
Martin Trigaux authored
-
- Jul 27, 2016
-
-
Gourav Chawla authored
Closes #12738
-
- Jul 26, 2016
-
-
Martin Trigaux authored
-
Martin Trigaux authored
Mo is French. Courtesy of Erwin van der Ploeg.
-
Nicolas Seinlet authored
To give concrete example of NGINX configuration and HTTPS setup. Closes #12912
-
Martin Trigaux authored
This attribute has been removed from the web framework since b4c28050 and should not keep example of code with it. Related to #5987
-
- Jul 25, 2016
-
-
Martin Trigaux authored
To avoid confusion such as in #12884
-
Martin Trigaux authored
Otherwise the text is considered as a quote
-
- Jul 22, 2016
-
-
rgeleta authored
Closes #12865
-
Flavio Corpa authored
Closes #12866
-
Stéphane Bidoul authored
Closes #12810
-
- Jul 05, 2016
-
-
Christophe Matthieu authored
t-options instead of t-field-options
-
- Jun 29, 2016
-
-
Nicolas Martinelli authored
The instructions to install Enterprise version on RHEL-based distributions are not correct. opw-681767
-
- Jun 24, 2016
-
-
Aaron Bohy authored
Allows to open a client action in a dialog, fullscreen, or in the current window with a cleared breadcrumb
-
Stéphane Bidoul authored
Closes #12570
-