- Nov 04, 2021
-
-
remi-filament authored
Fixes odoo/odoo#78932 Closes odoo/odoo#79273 Part-of: odoo/odoo#79360
-
roen-odoo authored
Expected behaviour: When you create a sale order with a project associated. When the sale order change state from non upsell to upsell sales person should receive one email. Current behaviour: The sales person receive an email for every entry in the timesheet after the sale order goes from non upsell to upsell. Step to reproduce: Create a sale order setup to create a project and task and the invoicing policy is ordered quantities. Add a timesheet entry which takes it past the ordered quantity. Create the invoice for the order. The state of the line and order goes to upsell, and the upsell email is sent to the salesperson. Add another line in the timesheet and the email is sent again to the salesperson opw-2581428 closes odoo/odoo#79287 Signed-off-by:
Laurent Stukkens (ltu) <ltu@odoo.com>
-
Adrien Widart authored
If the multiple quantity of a RR is less than 1.0, the buttons 'Order Once' and 'Automate Orders' may remain invisible (Need sale_management,purchase_stock) 1. Create a product P - Type: Storable - Add a vendor - Routes: Buy - Reordering rule: - Trigger: Manual - Min Quantity: 0 - Max Quantity: 0 - Multiple Quantity: 0.01 2. Create and confirm a sale order with 0.50 x P 3. Inventory > Operations > Replenishment Error: P is present, its qty to order is 0.50, however the button 'Order Once' is not displayed OPW-2612472 closes odoo/odoo#79266 Signed-off-by:
Arnold Moyaux <arm@odoo.com>
-
roen-odoo authored
Current behavior: If you have 2 time the same product in the agreement and you confirm an order with just one line of this item the 2 lines in the agreement will have the quantity. Expected behavior: Only the ordered item should have the quantity applied. In this case the products are compared with the price and product ID. If you modify the price in the PO the first line of the agreement will have the quantity by default. Steps to reproduce: 1. Create a new Purchase Agreement -Add two lines with the same product - First line has a scheduled date and price that are different from the second line 2. Generate RFQ and confirm PO with only the first product line and a set quantity 3. Once the PO has been confirmed, going back to the Purchase Agreement, the ordered quantities on both lines will be the same, although the PO was generated for only the first line. opw-2627898 closes odoo/odoo#79306 X-original-commit: c09a16fb Signed-off-by:
William Henrotin (whe) <whe@odoo.com> Signed-off-by:
Engels Robin (roen) <roen@odoo.com>
-
Adrien Widart authored
In a multi-warehouses environment, editing the quantities of the cart products can lead to incorrect behaviors. To reproduce the issue: (Let WH01 be the default company's warehouse) 1. Create a second warehouse WH02 2. In Settings > Website > Products: - Inventory > Warehouse: WH01 3. Create a product P: - Type: Storable - Availability: Show inventory on website and prevent sales if not enough stock - Available on eShop 4. Update P's quantity: - Location: WH01/Stock, Qty: 10 5. Create a sale order SO: - Lines: - 100 x P - Warehouse: WH02 6. Confirm SO 7. Go on eShop 8. Add P to the cart 9. On cart page, increase the quantity of P Error: The quantity becomes -90 (then the product is automatically removed from the cart) The quantity maximum that the user can select is defined thanks to: https://github.com/odoo/odoo/blob/8d2fd05382705d4b3987ebac4c842d8507ede9cf/addons/website_sale_stock/views/website_sale_stock_templates.xml#L12 When computing all the quantities (in `_compute_quantities_dict`), if there isn't any warehouse in the context, the quantities will be calculated on the basis of all warehouses: https://github.com/odoo/odoo/blob/48698838dd47442145395d3d4396b64b6901dba1/addons/stock/models/product.py#L238-L248 As a result, in the above case, `virtual_available` will be equal to `10 - 100 = -90`. However, a SO is linked to a specific warehouse, so the computations should be based on this warehouse. That way, `virtual_available` will be 10 and, when editing the quantities in the cart, the maximum value will be correctly computed. OPW-2667470 closes odoo/odoo#78823 Signed-off-by:
Romain Derie (rde) <rde@odoo.com>
-
Touati Djamel (otd) authored
we recently fixed this issue via this commit: https://github.com/odoo/odoo/pull/78377/commits/f3bb0dcc013960d6a43b9182b7daa5d33cab5aaa But we forgot to add a “break” in the loop in order to go to the next available interval when the current interval duration has been used the test has been modified to better cover the use case closes odoo/odoo#79317 Related: odoo/enterprise#22071 Signed-off-by:
Steve Van Essche <svs@odoo.com>
-
Adrien Widart authored
In a multi-company and multi-currency environment, the computation of the purchase price may be based on the incorrect company (and thus lead to incorrect results) To reproduce the issue: (Use demo data) 1. In Settings: - Enable "Multi-Currencies" 2. Update "My Company (Chicago)": - Currency: EUR 3. Edit currencies' rate for all companies(!): - USD: 1.0 - EUR: 3.0 4. Create a product category PC: - Costing Method: FIFO 5. Create a product P: - Type: Storable - Category: PC 6. Switch to "My Company (Chicago)" - Note that in this company, the costing method of PC is "Standard Price" 7. Edit P: - Cost: 10 8. Create a sale order SO: - Pricelist: EUR - Lines (add Cost columns): - 1 x P (Note that cost is 10€) 9. Confirm SO Error: The sale order line is incorrect, the cost is now 30€. A rate conversion has been applied on the amount In `_compute_purchase_price`, several fields/methods depend on the SOL's company: `property_cost_method`, `_compute_average_price`, `cost_currency_id`. Therefore, we should include this specific company in the environment of the product OPW-2659265 closes odoo/odoo#78743 Signed-off-by:
Steve Van Essche <svs@odoo.com>
-
- Nov 03, 2021
-
-
Géry Debongnie authored
Release notes: https://github.com/odoo/owl/releases/tag/v1.4.8 closes odoo/odoo#79324 Signed-off-by:
Aaron Bohy (aab) <aab@odoo.com>
-
Nathan Marotte (nama) authored
Issue: When test sending a mail in Marketing Automation Mailings, there is a traceback because we try to set the state of the mail to done, even though there is no done in mail_mail.state Steps to reproduce : 1) Install Marketing Automation 2) Create/select a campaign 3) Access the templates of that campaign 4) Create/select a template 5) Click Test 6) Send Sample Email -> Traceback opw-2568210 closes odoo/odoo#79048 X-original-commit: 65cdb43b Signed-off-by:
Thibault Delavallee (tde) <tde@openerp.com>
-
- Nov 02, 2021
-
-
Andreas Perhab authored
For status images closes odoo/odoo#79268 X-original-commit: da6cd70e Signed-off-by:
Martin Trigaux (mat) <mat@odoo.com>
-
Laurent Stukkens (LTU) authored
This reverts commit f95356a7. Revert unwanted r+ Original PR:#78457 closes odoo/odoo#79275 Signed-off-by:
Kevin Baptiste <kba@odoo.com>
-
Florian Damhaut authored
Issue : 'Value Price Extra' cannot have the N-digit Decimal Accuracy configuration but 'Product Price' can. Solve : Added field_digits to views opw-2674006 closes odoo/odoo#79014 Signed-off-by:
Victor Feyens (vfe) <vfe@odoo.com>
-
roen-odoo authored
Expected behaviour: When you create a sale order with a project associated. When the sale order change state from non upsell to upsell sales person should receive one email. Current behaviour: The sales person receive an email for every entry in the timesheet after the sale order goes from non upsell to upsell. Step to reproduce: Create a sale order setup to create a project and task and the invoicing policy is ordered quantities. Add a timesheet entry which takes it past the ordered quantity. Create the invoice for the order. The state of the line and order goes to upsell, and the upsell email is sent to the salesperson. Add another line in the timesheet and the email is sent again to the salesperson closes odoo/odoo#78457 Signed-off-by:
Laurent Stukkens (ltu) <ltu@odoo.com>
-
Jérôme Vanhaudenard authored
Before this fix, if the country is not set on the company the loading of the session may stall at some point. A check is added and will prevent to start a session if the country is not set. opw-2557989 closes odoo/odoo#79212 Signed-off-by:
Joseph Caburnay (jcb) <jcb@odoo.com>
-
Laurent Smet authored
When exporting, the delivery address is put inside the xml. This field is added by the 'sale' module and is not supposed to be displayed for vendor bill. However, even if this field isn't displayed, the factur-x module was setting the wrong delivery address on it. closes odoo/odoo#79194 Issue: 2668902 X-original-commit: 75b23371 Signed-off-by:
Josse Colpaert <jco@openerp.com> Signed-off-by:
Laurent Smet <las@openerp.com>
-
Hubert Van de Walle (huvw) authored
Steps to follow Edit the account.move view (with studio for example) Set the lines readonly property to [["partner_id","=",False]] Create a new move Add a partner Add a product Remove the partner -> A traceback appears: widget.$el is undefined Cause of the issue widget.$el is used after the widget has been destroyed The fix was already present in 14.0 (3fd7b200) but we still need to keep the test opw-2557142 closes odoo/odoo#79066 X-original-commit: 0bfc05c2 Signed-off-by:
Lucas Perais (lpe) <lpe@odoo.com> Signed-off-by:
Hubert Van De Walle <huvw@odoo.com>
-
William Henrotin authored
The constrains on orderpoint location being related to the warehouse view location was too restrictive especially in a complex subcontracting flow with dropship. This commit change the constrains to only be triggered if the two location to be compared have both a warehouse. closes odoo/odoo#79126 Signed-off-by:
Arnold Moyaux <arm@odoo.com>
-
Nasreddin Boulif (bon) authored
Steps to reproduce: - Install eLearning module - Go to eLearning, open course Basics of Gardening and edit it - Click on `How to Grow and Harvest The Best Strawberries | Basics` - Upload an encrypted PDF as Attachement Issue: Traceback is raised : utils.PdfReadError("File has not been decrypted") Cause: When trying to calculate `completion_time` to read pages, we try to get the number of pages of the pdf but an error will be raised if the pdf is encrypted. Solution: If not possible to get number of pages, we dont set/update the completion_time. opw-2612529 closes odoo/odoo#78997 X-original-commit: 8eac4109 Signed-off-by:
Nicolas Lempereur (nle) <nle@odoo.com> Signed-off-by:
Nasreddin Boulif (bon) <bon@odoo.com>
-
- Oct 31, 2021
-
-
Odoo Translation Bot authored
-
- Oct 29, 2021
-
-
qsm-odoo authored
This allows to avoid tens of thousands of instructions being done at each click in the editor. At multiple places, the editor is asked to close all its widgets (for example, when clicking on another snippet to edit). The original cost of that action was to remove a class on each widget, which is a very primitive action. But in the end we had to do more to close a widget: we trigger_up an event and ask to close all sub widgets. When we ask the editor to close all widgets... it makes sense not letting every sub button of every select trigger_up an event. closes odoo/odoo#79217 Signed-off-by:
Romain Derie (rde) <rde@odoo.com>
-
Anh Thao Pham (pta) authored
- Go to Email Marketing - Create a new mailing with template having social media links - Save - Click on one of the social links An error is triggered: "Error: Blocked a frame with origin xxx from accessing a cross-origin frame." The traceback occurs because we try to change the content of something we don't have access to, as these sites prevent display in an iframe. opw-2599540 closes odoo/odoo#79188 X-original-commit: 9702e541 Signed-off-by:
Nicolas Lempereur (nle) <nle@odoo.com>
-
Nasreddin Boulif (bon) authored
Steps to reproduce: - Go to any chatter - Click on "Send message" - Open the Full Composer - Click directly on the "Link" button of the composer - Add label and url then save Issue: Link not added to composer. Solution: Restore the "old range" only when selection is cancelled by focus. Related fixes: https://github.com/odoo/odoo/commit/da14e4449e5e318eb72e1b9f268fb797adb0c6a6 https://github.com/odoo/odoo/commit/d2f3c9e7975188753fa17c06db3fc5c73c773944 opw-2544149 closes odoo/odoo#79204 X-original-commit: 92588032 Signed-off-by:
Nasreddin Boulif (bon) <bon@odoo.com>
-
Paolo (pgi) authored
When a submodule overrides an old UNIQUE constraint with a new one, records in that module may respect the new one and not the old one. As the old module is updated, it would fail giving an ERROR message, and therefore blocking the Odoo.sh deployment pipeline. i.e. website_sale (old): res_users_login_key -> ['login', 'website_id'] base (new): res_users_login_key -> ['login'] With this patch, the error level is changed from ERROR to WARNING, leaving Odoo.sh free to continue the build deployment, as the error was not a blocking one. closes odoo/odoo#79178 X-original-commit: 8ed3641f Signed-off-by:
Olivier Dony (odo) <odo@openerp.com> Signed-off-by:
Paolo Gatti (pgi) <pgi@odoo.com>
-
Florent de Labarre authored
- Open session with cash control - Set 300 € - Close session - Add Cash 50€ - Close session - Set end Cash at 350 € --> It raise an error closes odoo/odoo#78780 Signed-off-by:
Masereel Pierre <pim@odoo.com>
-
yhu-odoo authored
Stock.location is ordered by "complete_name" which is possible to be the same (i.e. default production locations for different companies). This may result non-deterministic order. Add "id" to avoid it. closes odoo/odoo#79169 X-original-commit: 94a8ad3f Signed-off-by:
William Henrotin (whe) <whe@odoo.com>
-
Touati Djamel (otd) authored
If a work center is used in any routing, a warning will be displayed when it will be archived opw-2658596 closes odoo/odoo#79087 Signed-off-by:
Arnold Moyaux <arm@odoo.com>
-
Florent de Labarre authored
In case you use products with variants or internal references, display_name is more specific than name. closes odoo/odoo#79130 Signed-off-by:
Tiffany Chang <tic@odoo.com>
-
- Oct 28, 2021
-
-
mreficent authored
In last added migration script in https://github.com/odoo/odoo/commit/b40216a8ae8fefd03311b2884e7b83644baac0a1 , the code assumes the chart of account of l10n_es is installed. But happens that you may have installed several l10n_* modules, including l10n_es, but not having the chart of l10n_es installed (you have installed the chart of another module). In this case, then the update crashes because tax_ids is None and tuple(tax_ids) crashes! closes odoo/odoo#79024 X-original-commit: f5b21797 Signed-off-by:
Olivier Colson <oco@odoo.com>
-
Carlos Lopez authored
closes odoo/odoo#74896 closes odoo/odoo#78468 Signed-off-by:
Victor Feyens (vfe) <vfe@odoo.com>
-
Tiffany Chang (tic) authored
Steps to reproduce: 1. Create Manufacturing Order with quantity >1 of Serial Tracked product 2. Press Mark done. (One Product will be immediated produced with a new SN auto-created) 3. Create Backorder 4. Press Mark done on the backorder Expected Result: Backorder will also be able to immediate produce and auto-create a new SN Actual Result: Usererror because env is still referring to original MO and tries to produce the same SN again. closes odoo/odoo#79123 Fixes: odoo/odoo#78134 Signed-off-by:
Arnold Moyaux <arm@odoo.com>
-
Hardik Prajapati authored
Currently, hovering on the tooltip displays some content out of the viewport. It happens because tooltip content div requires 270px width to display the text and the distance between the tour indicator and viewport is less than 270px so this commit fixes the issue by changing the position of the tooltip indicator from left to the top so that the tooltip indicator displays top of the element and hovering on it displays the full content TaskID-2667140 closes odoo/odoo#78529 Related: odoo/enterprise#21914 Signed-off-by:
Laurent Smet <las@openerp.com>
-
- Oct 27, 2021
-
-
JF Aubert authored
This commit fixes the 'You need to supply a Lot/Serial Number...' message when validating a receipt with backorder for subcontracted tracked products. closes odoo/odoo#78062 Task: 2604664 Signed-off-by:
Tiffany Chang <tic@odoo.com>
-
Rémy Voet (ryv) authored
- The batch version of get_metadata won't work correctly for the xmlid returns due to the limit=1 (cause by 718b0f8b ). Fix the previous issue by reversing the order and without limit. - The read should be read with the correct user. closes odoo/odoo#79076 X-original-commit: 29a53f19 Signed-off-by:
Rémy Voet <ryv@odoo.com>
-
Adrien Widart authored
Suppose an automated AVCO product category. When confirming an invoice, if the associated product was a kit and if its BoM has changed during the process, a traceback can occur. To reproduce the issue: (Need sale_management) 1. Create a product category PC: - Costing Method: AVCO - Inventory Valuation: Automated 2. Create 3 products P1, P2, P3: - Product Type: Storable - Category: PC 3. Update P3's quantity > 0 4. Create two bills of materials: - BOM01: - Product: P1 - BoM Type: Kit - Components: 1 x P2 - BOM02: - Product: P2 - BoM Type: Kit - Components: 1 x P3 5. Create a sale order SO with 1 x P1 6. Confirm SO and process the delivery 7. Edit BOM02: - BoM Type: Manufacture 8. On SO, create the invoice INV 9. Confirm INV Error: an Odoo Server Error is displayed with a traceback: "[...] in _compute_average_price, bom_line_data = bom_lines[bom_line] [...] KeyError: mrp.bom.line(19,)" On step 7, when changing the BoM type, a new BoM line is created. Therefore, in `_compute_average_price`, the BoM associated to the move (i.e., `bom_line`) is not one of the lines in `bom_lines` (i.e., the new BoM lines). There is already a check in case the line has been deleted, but not if it has been changed. OPW-2610685 closes odoo/odoo#78917 Signed-off-by:
William Henrotin (whe) <whe@odoo.com>
-
Bruno Zanotti authored
We create the document types data with a csv file, but the active field should be not updatable so the users could active or inactive records. closes odoo/odoo#78576 X-original-commit: a7ea6f21 Signed-off-by:
Josse Colpaert <jco@openerp.com>
-
Tiffany Chang (tic) authored
Fix a small logic bug which made it so draft outs would only show only if there were also draft ins. closes odoo/odoo#79037 Fixes: odoo/odoo#78872 Signed-off-by:
Arnold Moyaux <arm@odoo.com>
-
- Oct 26, 2021
-
-
Arnold Moyaux authored
commit 96b56ea3 fix the link between SO <-> MO in manufacture 3 steps but break it on other configuration It happens because without `store after manufacturing` the procurement group is not copied and used on the MO. And the stat button search on procurement group with a MO and a SO on it. Before it was searching on `stock_move.created_production_id` and thus was able to find the MO. This commit do a mix of the 2 solutions. It search for procurement group linked to SO and MO + created_production_id to be sure to find all the MO related to a SO opw-2645042 closes odoo/odoo#79015 Signed-off-by:
William Henrotin (whe) <whe@odoo.com>
-
william-andre authored
The number that was there before was a TFN, not an ABN because of confusion between those two tax numbers. See https://github.com/arthurdejong/python-stdnum/commit/cc3a970e893ebe6635982bcd49c48e6549cb5ac3 https://github.com/odoo/odoo/commit/a72f7222c9f5987a20461be9c837e3de73801ff7 closes odoo/odoo#78894 Signed-off-by:
Laurent Smet <las@openerp.com>
-
Harald Panten authored
closes odoo/odoo#78883 X-original-commit: 83bb18e4 Signed-off-by:
Olivier Colson <oco@odoo.com>
-
oco-odoo authored
Fix https://github.com/odoo/odoo/commit/b40216a8ae8fefd03311b2884e7b83644baac0a1 was merged though partially ready. closes odoo/odoo#79005 X-original-commit: 880c32f9 Signed-off-by:
Josse Colpaert <jco@openerp.com> Signed-off-by:
Olivier Colson <oco@odoo.com>
-