- Nov 27, 2022
-
-
Odoo Translation Bot authored
-
- Nov 24, 2022
-
-
Odoo Translation Bot authored
-
- Nov 20, 2022
-
-
Odoo Translation Bot authored
-
- Nov 13, 2022
-
-
Odoo Translation Bot authored
-
- Oct 30, 2022
-
-
Odoo Translation Bot authored
-
- Oct 23, 2022
-
-
Odoo Translation Bot authored
-
- Oct 16, 2022
-
-
Odoo Translation Bot authored
-
- Oct 09, 2022
-
-
Odoo Translation Bot authored
-
- Oct 02, 2022
-
-
Odoo Translation Bot authored
-
- Sep 25, 2022
-
-
Odoo Translation Bot authored
-
- Sep 24, 2022
-
-
Martin Trigaux authored
closes odoo/odoo#100958 Related: odoo/enterprise#31696 Signed-off-by:
Martin Trigaux (mat) <mat@odoo.com>
-
- Aug 02, 2022
-
-
Fabien Pinckaers authored
This commit aims at removing unuseful help message to: 1/ reduce translators work, to focus on more useful translations 2/ not sending unuseful information in load_views 3/ reduce help message to useful messages, so that we can mark fields having a tooltip in the future UI. 4/ some cleanup of existing messages too The main use cases: - REMOVED: help redundant with the field name, providing no extra info - MOVED TO COMMENT: technical help messages, that should not be in UX closes odoo/odoo#97279 Signed-off-by:
Fabien Pinckaers <fp@odoo.com>
-
- Jun 20, 2022
-
-
Ricardo Gomes Rodrigues (rigr) authored
This commit: - adds a fiduciary mode which allows fast encoding of invoices. This is an Accounting setting which must be activated. This fiduciary mode allows one to edit directly the invoice sequence and enter the total amount of the invoice (by creating a single line which contains the base price, the tax amount, and the most frequent account) such that we match this 'quick total amount'. - adds a new test for this feature - adds a 'quick edit total amount' in the tax computation which verifies that the 'quick edit total amount' correctly matches sum of the base and the tax (in case of fiduciary mode) - sorts and filters the accounts suggestions in an invoice line. The most frequent accounts for a particular partner rank higher while filtering on the type of account suggested (this is disabled if the user searches itself for the account) - selects by default the most frequent account for a particular partner when creating a new invoice line - adds the option to hide some columns (label & quantity) - moves the car column after the account column in case the Fleet app is installed Task-id: 2857253 Community PR: odoo#91938 Enterprise PR: odoo/enterprise#27605 Part-of: odoo/odoo#91938
-
- May 03, 2022
-
-
Victor Feyens authored
Remove most values uselessly specified because giving the same value as the default one (see _DEFAULT_MANIFEST in odoo/modules/module.py) * auto_install is Falsy by default * author is Odoo SA by default * summary & description are empty strings by default * application is False by default * test, demo, depends and data are empty lists by default This will reduce noise/inconsistencies between manifests specifications, simplify analysis of manifests content, ... closes odoo/odoo#90209 Related: odoo/enterprise#26807 Signed-off-by:
Victor Feyens (vfe) <vfe@odoo.com>
-
- Apr 23, 2022
-
-
Martin Trigaux authored
closes odoo/odoo#89225 X-original-commit: 5925a83d87fa4702f4c0f22346304dc2da47c728 Related: odoo/enterprise#26435 Signed-off-by:
Martin Trigaux (mat) <mat@odoo.com>
-
- Mar 31, 2022
-
-
Victor Feyens authored
* Enforce html escaping of record title * Avoid translating html content as much as possible, to reduce translation errors. * Uniformize/Factorize link generation, easing future tasks, code maintenance, ... Enterprise PR: https://github.com/odoo/enterprise/pull/25357 closes odoo/odoo#84866 Related: odoo/enterprise#25357 Signed-off-by:
Victor Feyens (vfe) <vfe@odoo.com>
-
- Mar 02, 2022
-
-
Vincent Schippefilt authored
This commit modifies most of the usages of read_group and uses _read_group instead. _read_group doesn't join automatically on the many2one fields when no order_by is specified, making it more performant when the "name" of the many2one is not relevant, which is the case for most back-end cases closes odoo/odoo#84908 Task-id: 2479334 Related: odoo/enterprise#24877 Signed-off-by:
Raphael Collet <rco@odoo.com>
-
- Jan 28, 2022
-
-
Raphael Collet authored
The possible index names have been renamed "btree", "btree_not_null" (instead of "not null") and "trigram" (instead of "gin"). Task 2742526 Part-of: odoo/odoo#83274
-
- Jan 25, 2022
-
-
John Laterre (jol) authored
The goal is to improve the way Disallowed Expenses (DNA - Dépenses Non Admises) and Assets (vehicles in particular) work. This should help integrate the Accounting and Fleet modules. closes odoo/odoo#76684 Task: 2641494 Related: odoo/upgrade#3067 Related: odoo/enterprise#20950 Signed-off-by:
William André (wan) <wan@odoo.com>
-
- Jan 19, 2022
-
-
Fabien Pinckaers authored
Three supported types: - btree (default for index=True) - btree not null (when >90% of the data are null) - gin trigram search (for char fields) Review of indexes on all objects. closes odoo/odoo#83015 Signed-off-by:
Fabien Pinckaers <fp@odoo.com>
-
- Dec 02, 2021
-
-
Nicolas (vin) authored
Performances issues have been noticed in account_fleet when computing the move_ids of vehicles. This change has been made in order to fix this issue. Task id #2700407 closes odoo/odoo#80755 X-original-commit: 2860051b Signed-off-by:
William André (wan) <wan@odoo.com>
-
- Sep 16, 2021
-
-
Martin Trigaux authored
closes odoo/odoo#76542 X-original-commit: 63e68074 Related: odoo/enterprise#20882 Signed-off-by:
Martin Trigaux (mat) <mat@odoo.com>
-
- Aug 27, 2021
-
-
Philippe Wauthy authored
When the bills linked to a vehicle are displayed, the creation date is not always relevant. Sometimes, the Invoice/Bill Date is more interesting. To avoid confusion, "Date" is renamed "Creation Date" and the column "Invoice/Bill Date" is added between "Creation Date" and the "Number" (bill number) columns. Summary of the changes: On the bills tree view for a specific car: - "Date" is renamed in "Creation Date" - "Invoice/Bill Date" is added between the "Creation Date" and the "Number" columns, the default is optional:show task-2629316 closes odoo/odoo#75582 Signed-off-by:
Yannick Tivisse (yti) <yti@odoo.com>
-
- Aug 26, 2021
-
-
Nicolas Lempereur authored
The compute field for fleet_vehicle().account_move_ids can be using self.id where self might be a recordset with more than one record. opw-2630226 closes odoo/odoo#75541 X-original-commit: c5e14bee Signed-off-by:
Nicolas Lempereur (nle) <nle@odoo.com>
-
- Jul 26, 2021
-
-
Xavier-Do authored
The license is missing in most enterprise manifest so the decision was taken to make it explicit in all cases. When not defined, a warning will be triggered starting from 14.0 when falling back on the default LGPL-3. closes odoo/odoo#74245 Related: odoo/design-themes#48 Related: odoo/enterprise#19862 Signed-off-by:
Xavier Dollé (xdo) <xdo@odoo.com>
-
- Jul 12, 2021
-
-
Martin Trigaux authored
Without demo data closes odoo/odoo#73560 X-original-commit: 802e46541117573e028b711ea33dad9df9075a39 Related: odoo/enterprise#19602 Signed-off-by:
Martin Trigaux (mat) <mat@odoo.com>
-
- Mar 04, 2021
-
-
Goffin Simon authored
The fleet vehicle_id must be visible on vendor refund opw:2471784 closes odoo/odoo#67280 X-original-commit: 7144321c Signed-off-by:
William André (wan) <wan@odoo.com> Signed-off-by:
Simon Goffin (sig) <sig@openerp.com>
-
Florian Gilbert authored
Field vehicle_id is missing on the account.move.line view of refunds. This fix updates the domain to make visible the field in in_refund. Task ID: #2466914 closes odoo/odoo#67269 X-original-commit: 97fb335e Signed-off-by:
Quentin De Paoli (qdp) <qdp@openerp.com>
-
- Nov 10, 2020
-
-
Martin Trigaux authored
The open_action_with_context was not using _for_xml_id, producing an error when reading the action content. In open_action, the action_name was taken from the context and needs sanity checks. Ensure only actions from the account module can be read and only if the user has access to the target model. This is a limitation of the previous behaviour but, at the moment, all known calls are made refering to an action from the account module. Limit the scope of this method while the 14.0 is still early to avoid having a door open to ready any action, and difficult to close later. Remove old action fetching from the context in create_move that is no longer used. closes odoo/odoo#61602 X-original-commit: a39e94f7 Related: odoo/enterprise#14695 Signed-off-by:
Martin Trigaux (mat) <mat@odoo.com> Co-authored-by:
Xavier Morel <xmo@odoo.com>
-
- Sep 01, 2020
-
-
Martin Trigaux authored
Without demo data closes odoo/odoo#56869 X-original-commit: 33f251b6 Related: odoo/enterprise#12836 Signed-off-by:
Martin Trigaux (mat) <mat@odoo.com>
-
- Aug 19, 2020
-
-
william authored
Task: 2186429 Add a vehicle on account.move.line to help create reports. When a vehicle is set, log a service log on the vehicle. closes odoo/odoo#49675 Related: odoo/upgrade#1357 Related: odoo/enterprise#8480 Signed-off-by:
Quentin De Paoli (qdp) <qdp@openerp.com>
-