- Jul 10, 2020
-
-
Romain Tartière authored
X-original-commit: 05d616d9
-
- Jul 02, 2020
-
-
Aaron Bohy authored
Before this commit, when the same field occurred multiple times in a form view, all occurrences were associated with the same id, and all occurrences of the corresponding label (if any) had the same 'for' attribute. As a consequence, besides the fact that there were warnings in the chrome console, clicking on any occurrence of the duplicated label focuses the first occurrence of the field. This commit generates a unique id for each pair label/field, when possible. However, there is a case that can't be handled automatically: when the label isn't automatically generated (field located outside a group, or with nolabel attribute set to "1"). Typically, in this case, there is a <label> node with "for" attribute referencing the associated field. In this situation, the id must be defined in the arch, and used in the "for" attribute: <form> <label for="phone"/><field name="phone"/> <label for="phone_2"/><field name="phone" id="phone_2"/> </form> Task 2261697
-
- Jul 01, 2020
-
-
Julien Mougenot authored
closes odoo/odoo#53923 X-original-commit: b22e7109 Signed-off-by:
Aaron Bohy (aab) <aab@odoo.com> Signed-off-by:
Julien Mougenot (jum) <jum@odoo.com>
-
Mathieu Duckerts-Antoine authored
The page with the documentation on all js docstrings is regularly broken. We remove here the link referencing it. closes odoo/odoo#53911 Signed-off-by:
Aaron Bohy (aab) <aab@odoo.com>
-
- Jun 30, 2020
-
-
Leo Tran authored
Done at odoo/odoo#53561 closes odoo/odoo#53852 X-original-commit: e4bef56c Signed-off-by:
Martin Trigaux (mat) <mat@odoo.com>
-
- Apr 17, 2020
-
-
Xavier Morel authored
The translator defined a `meta` attribute, however: * it was static so couldn't be expanded using the `meta` directive, move to instance attribute, and create an `add_meta` method which adds some indentation (for a cleaner HTML output) * the `meta` directive itself was not supported by the translator * turns out HTMLWriter just removes the first to entries of `meta` as "cleanup", which explains why we had to duplicate it in the template - therefore pad the `meta` list and remove entries from template - move front to linktags, that seems more relevant closes odoo/odoo#49699 Signed-off-by:
Xavier Morel (xmo) <xmo@odoo.com>
-
- Jun 22, 2020
-
-
Jérémy Hennecart authored
With this commit, it is now possible to display sample (fake) data in empty views, in the hope of easing user onboarding. This can be enabled (in list and kanban views) with attribute sample="1" on the arch root element. In this case, if there is no data to display, sample data will be generated based on heuristics (depending on field types and names). This can be used in addition to the no content helper. Task 2232801 X-original-commit: 7c8e627ff5029cb539d702705e5ce53d658c76ed Co-authored-by:
Aaron Bohy <aab@odoo.com> Co-authored-by:
Mathieu Duckerts-Antoine <dam@odoo.com> Co-authored-by:
Jérémy Hennecart <jeh@odoo.com> Co-authored-by:
Julien Mougenot <jum@odoo.com>
-
- Jun 18, 2020
-
-
crece365 authored
Done at odoo/odoo#53103 closes odoo/odoo#53274 X-original-commit: b6bce16b Signed-off-by:
Martin Trigaux (mat) <mat@odoo.com>
-
Martin Trigaux authored
Mimic the syntax of logging to use placeholders in translatable message. The main advantage is to be able to fallback on the source term if the translation can not be formatted properly. It is very common to have errors in translations with missing placeholders or badly translated (ie. the source "%(subject)s" -> "%(sujet)s"). Instead of blocking the execution of the code, fallback on source string. Task-id: 1853119
-
- Jun 12, 2020
-
-
Mathieu Duckerts-Antoine authored
This commit introduces a new attribute 'limit' for search panel fields that allows to avoid performance issues. That integer attribute (with default 200) allows to fix a maximal number of values to display for the fields. When the number of field values to display reaches the limit, no values will be displayed. Instead, a warning message will be shown in the corresponding search panel section. Note it is possible to have no limit using limit="0" on a field. This commit reintroduces in a better way the principle brought by the fix 8d57153b. Task ID: 2154749
-
Mathieu Duckerts-Antoine authored
The commit introduces two new attributes for search panel fields: - hierarchize: boolean attribute (default True) available for many2one fields with select="one". It allows to choose whether to hierarchize the field values using the _parent_name (if set) on the field comodel. Note that a sanitization of the parent hierarchy takes place. Basically, it ensures that parent chains are completely in the domain (on comodel) accessible by the user. See _search_panel_sanitized_parent_hierarchy documentation for more information. - expand: boolean attribute (default False) available for many2one and many2many fields. If set to true, all field values are fetched and displayed in the search panel. If set to false, only the values that have at least one corresponding value in the field model (and in some domain) are fetched. An exception in the case of an hierarchized field (hierarchize=True and _parent_name set): more/less values can be displayed in order to have a good representation of the parent hierarchy. That means we complete and sanitize the set of initial field image values. Note that the fix 8d57153b bringing the notion of limit in search panel has been reverted in the present commit. An upcomming commit will reintroduce the limit principle in a better way. Task ID: 2154749 Co-authored-by:
Mathieu Duckerts-Antoine <dam@odoo.com> Co-authored-by:
Julien Mougenot <jum@odoo.com>
-
Julien Mougenot authored
In the search panel, the attribute disable_counters with default False has been changed to enable_counters with default False.
-
- Jun 09, 2020
-
-
Antony Lesuisse authored
Odoo cloc is a tool to count the number of relevant lines written in Python, Javascript or XML. This can be used as rough metric for pricing maintenance of customizations. It has two modes of operation, either by providing a path: odoo-bin cloc -p module_path Or by providing the name of a database: odoo-bin cloc --addons-path=dirs -d database In the latter mode, only the custom code is accounted for. Both modes can be used simultaneously. Files that cannot be parsed are shown at the end of the report. Parsing can fail due to syntax errors or excessive file size. closes odoo/odoo#52635 X-original-commit: ae858c3ac66267b4726db459032b91a6be1cc1d6 Related: odoo/enterprise#11018 Signed-off-by:
Olivier Dony (odo) <odo@openerp.com> Co-authored-by:
Thibault Francois <tfr@odoo.com> Co-authored-by:
Antoine Vandevenne (anv) <anv@odoo.com>
-
- Jun 04, 2020
-
-
Michael Mattiello (mcm) authored
This commit adds the support of nolabel attribute on fields in list view. This attribute can be used to empty the column header. Example of use: <record id="module_example_tree_view" model="ir.ui.view"> <field name="name">module.example.tree.opportunity</field> <field name="model">module.example</field> <field name="arch" type="xml"> <tree> <field name="name"/> <field name="tag_ids" widget="many2many_tags" nolabel="1"/> </tree> </field> </record> Result: This will create a tree view with 2 columns. The second column will have an empty header and won't be sortable. Name | --------+-------------- Record1 | [tag1] Record2 | [tag1][tag2] Record3 | [tag2] closes odoo/odoo#52302 Task: 2269315 Signed-off-by:
Aaron Bohy (aab) <aab@odoo.com>
-
- May 20, 2020
-
-
Ignacio Ibeas - Acysos S.L authored
closes odoo/odoo#51600 X-original-commit: 343d888c Signed-off-by:
Josse Colpaert <jco@openerp.com>
-
- May 19, 2020
-
-
Julien Castiaux authored
The ir.autovacuum model purpose is to run several garbage collecting operations like removing files from the filestore when no attachment references them anymore. The precedent strategy to register new garbage collection tasks was to override the `power_on` method and to imperatively execute a vacuum cleaning method on a given model. All calls were executed in a single SQL transaction without any error handling, meaning a single fail during any call resulted in a complete failure of the entire vacuum cleaning chain. We introduce a new `@autovacuum` api decorator, its purpose it to register garbage collecting methods that will be safely executed in their own transaction by the vacuum cleaner. In order to ensure this new strategy is used, we deprecate `power_on` extensions. By the way, garbage-collecting methods can be quite heavy and we don't want users to directly call them. We now ensure they are private. closes odoo/odoo#47842 Task: 2154079 Signed-off-by:
Raphael Collet (rco) <rco@openerp.com> Co-authored-by:
Raphael Collet <rco@odoo.com> Co-authored-by:
Olivier Dony <odo@odoo.com>
-
Priyanka Kakadiya authored
PURPOSE Currently, reporting views such as the bar and line charts have their x-axis sorted either alphabetically or according to a sequence. When reporting, the user would be interested in sorting the x-axis values by their measure. SPECIFICATIONS Add 'ascending' and 'descending' options in graph view for bar and line charts Task 2070103 closes odoo/odoo#49970 Signed-off-by:
Aaron Bohy (aab) <aab@odoo.com> Co-authored-by:
Mohammed Shekha <msh@odoo.com>
-
- May 18, 2020
-
-
David Alonso authored
X-original-commit: 8a598a60
-
- May 13, 2020
-
-
Antoine Prieels authored
Add documentation for development of new Interfaces for the IoT Box. closes odoo/odoo#39759 Taskid: 2092878 Related: odoo/enterprise#6552 Signed-off-by:
Quentin Lejeune (qle) <qle@odoo.com>
-
Victor Feyens authored
* Cmdline interface: how to trigger database population * Testing: how to implement database population on a given model. * autodocumentation of the population methods + improve population methods docstrings. closes odoo/odoo#50596 Signed-off-by:
Victor Feyens (vfe) <vfe@odoo.com>
-
Victor Feyens authored
* crashing patch for howto "Build a module" * javascript_reference: "Bullet list ends without a blank line; unexpected unindent."
-
- May 11, 2020
-
-
Johan Tötterman authored
Add Johan as a contributor for SprintIT closes odoo/odoo#51063 X-original-commit: f96a17c6 Signed-off-by:
Martin Trigaux (mat) <mat@odoo.com>
-
- May 08, 2020
-
-
Kristina Seregina authored
closes odoo/odoo#50962 X-original-commit: c280a248 Signed-off-by:
Martin Trigaux (mat) <mat@odoo.com>
-
John Touba authored
closes odoo/odoo#50961 X-original-commit: cdf3b380 Signed-off-by:
Martin Trigaux (mat) <mat@odoo.com>
-
Yannick Tivisse authored
Purpose ======= Even if the routes are correctly updated and the existing data is correctly updated, the emails that were already sent to the customers will be problematic, as we will provide a value which is not handled anymore (10 for example). To provide a retrocompatibility, deprecated the old route and introduce a new one. closes odoo/odoo#46296 Taskid: 2083096 Related: odoo/upgrade#889 Related: odoo/enterprise#10312 Signed-off-by:
Yannick Tivisse (yti) <yti@odoo.com>
-
Benjamin Frantzen (bfr) authored
- Rename the 'Use Rating on Project' feature into 'Customer Ratings' - Rename the 'Set Email Template to Stages' link to 'Set a Rating Email Template on Stages' - Add an optional list view for the Stages menu - display warning if the rating_template_id field is set and if one of the selected project_ids doesn't have the rating_status field set to true - Project form view revamp - rename the '% on tasks' stat button into 'Customer Satisfaction' - Remove the 'no option' for the rating frequency field because it is required - project form : Add a 'Go to Website' stat button - Project dashboard: remove the 'Customer Ratings' menu item in more - Ratings page: the 'Last 30 days' filter include ratings from today - remove the Appointment / Helpdesk Customer Satisfaction / Live Support menu items TASK ID : 1251
-
- May 07, 2020
-
-
Victor Feyens authored
Closes #37036 Forward-port of #50831 closes odoo/odoo#50872 X-original-commit: 27f67bfc Signed-off-by:
Victor Feyens (vfe) <vfe@odoo.com>
-
Martin Trigaux authored
The ampersand (&) needs to be html encoded to be evaluated correctly Cherry-picked from odoo/odoo#46526 Courtesy of Olaf Closes odoo/odoo#46526 closes odoo/odoo#50852 X-original-commit: 28b977d4 Signed-off-by:
Martin Trigaux (mat) <mat@odoo.com>
-
- May 05, 2020
-
-
Mathieu Duckerts-Antoine authored
This commit introduces several changes in the search panel with respect to record counts: - the record counts are now also available for the fields with select="one" attribute (if not disabled explicitely). - the record counts are better computed using the idea that selected values within a group should not impact the counts for the group values but only the counts for the other group values. On the way we have changed two keys in the values returned by the server: - 'count' becomes '__count'. It has been done to avoid a possible clash in case a model would have a field named 'count' and that the field values would be wanted for some reason. - 'name' (multi case) becomes 'display_name'. It has been done in order to make the select one and multi cases more similar and factorize some code. TASK-ID: 2166814 Co-authored-by:
Raphaël Collet <rco@openerp.com> Co-authored-by:
Mathieu Duckerts-Antoine <dam@odoo.com> Co-authored-by:
Alexis Lacroix <laa@odoo.com> Co-authored-by:
Julien Mougenot <jum@odoo.com>
-
Osiris Roman authored
The currency of Ecuador is USD, ECS is archived. Add states of Ecuador Signs CLA Modificando la moneda oficial de Ecuador de sucre a dolar. La moneda oficial del Ecuador cambió de sucre a dolar en el año 2000. introducing Ecuadorian states Correcting previous commit according to mart-e especifications State codes follow the ISO 3166-2. Each code is compound by two parts separated by a hyphen "-". First part is "EC" (The ISO ecuadorian code), and the second part is the ISO state code. Correcting res.country.state file according to mart-e especifications Adding the states directly in the l10n_ec file closes odoo/odoo#50653 X-original-commit: 1a6b70c6 Signed-off-by:
Martin Trigaux (mat) <mat@odoo.com>
-
Aaron Bohy authored
This widget is a variant of the Many2OneAvatarUser widget, designed for many2one fields pointing to 'hr.employee'. Part of task 2195254
-
Aaron Bohy authored
This widget is an extension of Many2OneAvatar, designed for many2one fields pointing to the 'res.users' model, or a model having itself a many2one field pointing to 'res.partner'. With this widget, when the avatar is clicked, we open a DM chat window with the corresponding partner. If the user clicked on itself, we open a blank chat window for the sake of consistency. In kanban views, this widget only displays the avatar. Part of task 2195254
-
Aaron Bohy authored
In readonly, this widget displays the image of the related record next to its display_name. In edit, it behaves exactly like the regular many2one. Part of task 2195254
-
Aaron Bohy authored
This widget can be used on date and datetime fields. In readonly, it displays the delta (in days) between the value of the field and today. In edit, it behaves like a regular date(time) widget. Part of task 2195254
-
Aaron Bohy authored
This new field component displays the field's value inside a bootstrap pill badge. Supported field types are 'char', 'selection' and 'many2one'. The background color of the badge can be customized by using the decoration-xxx mechanism, e.g. <field name="state" decoration-danger="state == 'cancel'" widget="badge"/> Part of task 2195254
-
Aaron Bohy authored
In list views, one can specify decoration-XXX attributes on the arch root node. Those decorations are evaluated for each record, and the corresponding style is applied on rows for which the condition is true. This commit allows to specify those decoration-XXX attributes on field nodes as well. In this case, when the condition is met by a record, only the field on which the attribute is set will be impacted. Part of task 2195254
-
- May 04, 2020
-
-
Alen Uglik authored
X-original-commit: 8de457e8
-
- Apr 29, 2020
-
-
Olivier Dony authored
In some situations it is important to protect the Odoo service from direct access from the internet, or to protect internal network resources from the Odoo server itself. This is heavily dependent on deployment requirements, and for standard installations on a public cloud system, this may not be necessary. Yet it seems useful to mention it in the deployment recommendations, as it may not be obvious to our users. Our thanks to Ameya Darshan for raising this concern! closes odoo/odoo#50422 X-original-commit: da0d9ef4 Signed-off-by:
Paul Morelle <madprog@users.noreply.github.com>
-
- Apr 30, 2020
-
-
Mihai Fekete authored
closes odoo/odoo#50462 X-original-commit: 9040ed92 Signed-off-by:
Martin Trigaux (mat) <mat@odoo.com>
-
- Apr 27, 2020
-
-
Commandant Custo authored
X-original-commit: b9d6b548
-