- May 25, 2023
-
-
Paul Morelle authored
The selection function get_selection_class for the field classname has obviously been thought to be overridable by subclasses in order to add new selection classes if need be. However, before this commit the method was passed directly to the Selection constructor, which used the callable object directly. If it was overridden by a subclass, the Selection object would still use the same non-overridden callable instance. With this commit, we give the name of the method instead of the callable, which makes that the method is resolved after all overrides, and therefore the resulting selection will be the overridden one. closes odoo/odoo#122341 X-original-commit: 91bea596 Signed-off-by:
Romain Derie (rde) <rde@odoo.com> Signed-off-by:
Paul Morelle (pmo) <pmo@odoo.com>
-
- Jul 09, 2020
-
-
Jeremy Kersten authored
Edit in backend now redirect to related apps, and no more in website Apps closes odoo/odoo#54208 Signed-off-by:
Jérémy Kersten (jke) <jke@openerp.com>
-
- Aug 03, 2019
-
-
Romain Derie authored
*website_crm_partner_assign, website_customer Before this commit, some models would create their own `website_published` field rather than using the `website.published.mixin` mixin which should be used instead. That was done to be able to override the default value of the boolean. This commit simply adds the possibility to override the default value of the mixin field. Also, help and string could simply be added on xml views rather than overriding the field.
-
- Sep 21, 2018
-
-
Nimesh Jethva authored
Purpose of this commit is to give description more "business oriented" because those descriptions appears in Odoo Studio which is supposed to be used by end users, not only by developers. Related Task ID : 37311
-
- Jul 12, 2016
-
-
Jérome Maes authored
-
Jérome Maes authored
-
- Aug 31, 2015
-
-
Jeremy Kersten authored
Confusing since b51795e9 todo: merge 2 models?
-
- Jan 28, 2015
-
-
Thibault Delavallée authored
website_slides: use the recently introduced website.published.mixin to replace the website_published and website_url fields defined in various remaining modules. In slides, some templates have been updated because share_url was basically website_url and has been replaced.
-
- Jan 09, 2015
-
-
Jeremy Kersten authored
Change xmlid from ir rule Uses odoo unslug function Rename CamelCase variable / function Replace SQL by ORM search Replace 1 by True for boolean Improve name for ir model access Add missing coding Reindent long line Reindent xml Typo singular/plural
-
- Jan 07, 2015
-
-
Jeremy Kersten authored
[IMP] website_customer: add tags on partners. That allows to sort/filter the customers on website. Old categories [res.partner.category] (named Tags in UI) was confusing with tags and have been renamed into Categories.
-