- Jan 03, 2022
-
-
Florian Damhaut authored
Step to reproduce: - Inventory > Configuration > Operations Types > Manufacturing (or any other operation type with code 'mrp_operation') - Change 'Type of Operation' to 'Receipt' (or any other but 'manufacturing') - Uncheck box field 'Use Existing Lots/Serial Numbers' - Change 'Type of Operation' back to 'Manufacturing' - Set correct value for 'Default Source Location' (type Receipt changed the value to 'Vendor', need to fix it) - Create a storable product with the route 'Manufacture' selected. - Create a BoM for this product, with a component tracked by lot (Add quantity to component) - Create a MO for the product > Confirm > Check Availability Current Behaviour : Quantity are reserved, but the lot_ids are not visible The behaviour is due to the fact that hidden parameters still have effect when they should act as their default value. To ensure it's the case, they are set back to their original value when the user switch between configuration to avoid ending in a wrongful configuration. Behaviour after PR : Lot ids are shown no matter the hidden configuration of picking type opw-2680370 closes odoo/odoo#81290 Signed-off-by:
Arnold Moyaux <arm@odoo.com>
-
- Jan 02, 2022
-
-
Odoo Translation Bot authored
-
- Dec 26, 2021
-
-
Odoo Translation Bot authored
-
- Dec 19, 2021
-
-
Odoo Translation Bot authored
-
- Dec 12, 2021
-
-
Odoo Translation Bot authored
-
- Dec 05, 2021
-
-
Odoo Translation Bot authored
-
- Nov 30, 2021
-
-
Touati Djamel (otd) authored
Steps to reproduce the bug: - Create a storable product > add a BOM - Create a MO> add the product > confirm > Mark as done - Go to the product form > click on product moves - The move linked to the MO is displayed - Add the "Manufacturing" filter - No move is displayed Solution: Display all "stock.move.line" which are linked to a "stock.move" with a "mrp.production" Bug2: The "Manufacturing" filter should be defined in the MRP module instead of the stock otherwise, users who do not have MRP installed will have access to this filter as well opw-2697254 closes odoo/odoo#80518 X-original-commit: f4ab29a1 Signed-off-by:
William Henrotin (whe) <whe@odoo.com> Signed-off-by:
Djamel Touati (otd) <otd@odoo.com>
-
Touati Djamel (otd) authored
Steps to reproduce the bug: - Create a BOM: - Set the quantity of the finished product and component as more than 1 - Save > Go to BOM Structure & Cost > the quantity in the input is set on 3 - Print Problem: The report generated shows the qty and cost for production of 1 unit of product, regardless of the BOM quantity set in the input The "_onClickPrint" function tries to get the quantity of the bom in the context, but since the value of "this.given_context.searchQty" is null, the function will use the default value of 1. The "searchQty" is only set in the "onchange", so we can manually trigger it when initiating the page so that the "searchQty" is set correctly opw-2691632 closes odoo/odoo#80509 X-original-commit: dcd3de94 Signed-off-by:
William Henrotin (whe) <whe@odoo.com> Signed-off-by:
Djamel Touati (otd) <otd@odoo.com>
-
- Nov 28, 2021
-
-
Odoo Translation Bot authored
-
- Nov 24, 2021
-
-
Olivier Dony authored
This reverts commit 0e6aa2c8. Cfr discussion on #79328
-
- Nov 23, 2021
-
-
roen-odoo authored
Current behavior: When adding a group_by:[opportunity_id] key to the context of the quotations page the delivery smart button crash when there is more than 1 delivery Steps to reproduce: -Add 'group_by':['opportunity_id'] in context of the quotations page -Refresh the page -Create a sale with more than 1 delivery -When you click on the delivery smart button the app crash opw-2658775 closes odoo/odoo#79328 Signed-off-by:
Julien Castiaux <juc@odoo.com>
-
- Nov 21, 2021
-
-
Odoo Translation Bot authored
-
- Nov 19, 2021
-
-
Touati Djamel (otd) authored
Steps to reproduce the bug: - Create a BOM: - set the quantity of the finished product and component as more than 1 - save > print > BOM Structure Problem: The report generated shows the qty and cost for production of 1 unit of product, regardless of the BOM quantity opw-2691632 closes odoo/odoo#80132 X-original-commit: 0700db23 Signed-off-by:
William Henrotin (whe) <whe@odoo.com> Signed-off-by:
Djamel Touati (otd) <otd@odoo.com>
-
- Nov 18, 2021
-
-
roen-odoo authored
Current behavior: When creating a BOM with quantity different than 1 (here 12) with operation duration 1 minute and work center capacity 23 The BoM Structure & Cost report only changes the time for the operation when the quantity is > 276 However, when planning a MO the expected duration changes to 2 minutes when the quantity is > 23 Expected behavior: Expected duration should be the same in the MO and BoM report Steps to reproduce: - BOM with quantity different than 1 (here 12) - operation duration 1 minute - work center capacity 23 - go in BoM report closes odoo/odoo#79241 Signed-off-by:
William Henrotin (whe) <whe@odoo.com>
-
- Nov 16, 2021
-
-
Adrien Widart authored
In multi steps configurations, the additional products of a MO could be missing in the associated picking To reproduce the issue: (Use demo data) 1. In Settings, enable "Multi-Step Routes" 2. Update the current warehouse: - Manufacture: 2 steps 3. Create a MO for product "Table Top" 4. Edit the MO: - Add 1 x Screw in the components 5. Confirm the MO 6. Open the generated Picking Error: The operations only contains one line for "Wood Panel". There should be a second line for the "Screw" When adding the new component, a new stock move is created but the latter does not have any `group_id` defined. This is the reason why the generated picking does not include this stock move. OPW-2671995 closes odoo/odoo#79828 X-original-commit: 57b3364f Signed-off-by:
William Henrotin (whe) <whe@odoo.com> Signed-off-by:
Adrien Widart <awt@odoo.com>
-
- Nov 15, 2021
-
-
Adrien Widart authored
Updating the producing quantity may wrongly change the consumed quantity of tracked products To reproduce the issue: 1. Create two storable products P1, P2: - P2 is tracked by lots 2. Update P2's quantity >= 10 3. Create a BoM: - Product: P1 - Components: 1 x P2 4. Create and confirm a MO for 10 x P1 5. Check availability 6. Edit the MO and set the consumed quantity of P2 to 10 7. Edit the MO and set the producing quantity to 8 Error: The consumed quantity of P2 becomes 1 When saving the MO, it also writes the `lot_ids` on `move_raw_ids` while it shouldn't. As a result, it triggers method `_set_lot_ids` for no reason and lead to an undesirable behavior. OPW-2667412 closes odoo/odoo#79565 Signed-off-by:
William Henrotin (whe) <whe@odoo.com>
-
- Nov 14, 2021
-
-
Odoo Translation Bot authored
-
- Nov 09, 2021
-
-
roen-odoo authored
Current behavior : When a bom is created with uom set as dozens the report operations time is not correct. For exemple if the operation time is 10 minutes. The operation time for a dozen should be 120, but at the moment it's 10 minutes Steps to reproduce: Have a product in units. Create a bill of materials in dozens. Have a operation where the workstation that has a capacity of 1. Look at the Bill of material cost and structure even though it uses a dozen it shows the operation time for one unit. opw-2669899 closes odoo/odoo#79080 Signed-off-by:
William Henrotin (whe) <whe@odoo.com>
-
- Nov 07, 2021
-
-
Odoo Translation Bot authored
-
- Nov 05, 2021
-
-
Aurélien (avd) authored
stock.orderpoint._post_process_scheduler confirms productions after procurements have been run. This was introduced to avoid conflict between procurements, conflicts that can happen e.g. in the purchase_mrp module. However, currently action_confirm might also be called on done or cancelled productions. That can happen if there are already been lots of procurements for the same product/orderpoint, i.e. MO with the same values have been created multiple times. To avoid this, add ('state', '=', 'draft' in the search_domain. opw-2666960 closes odoo/odoo#79403 Signed-off-by:
Arnold Moyaux <arm@odoo.com>
-
- Nov 04, 2021
-
-
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>
-
- Oct 31, 2021
-
-
Odoo Translation Bot authored
-
- Oct 29, 2021
-
-
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>
-
- Oct 28, 2021
-
-
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>
-
- Oct 25, 2021
-
-
Touati Djamel (otd) authored
Steps to reproduce the bug: - install mrp_workorder - Create a new work center which will work every day from 8:00-9:00 - Create a BOM with component and operation, which takes 24 minutes in your work center - Create 4 MO for this bom - Set manually scheduled date > 1 MO should have a different date than others, e.g: - 3 MO → 01/dec/2021 08:00 - 1 MO → 02/dec/2021 08:00 - Plan the MO which has different date than others The ```planned_end_date``` is not calculated correctly Current behavior before PR: MO_1 : 01/dec/2021 08:00 → 01/dec/2021 08:24 MO_2 : 01/dec/2021 08:24 → 01/dec/2021 08:48 MO_3 : 02/dec/2021 08:00 → 02/dec/2021 08:24 MO_4 : 02/dec/2021 08:24 → 02/dec/2021 08:24 Problem The MO_4 should only last 20 minutes, while it lasts 23 hours and 48 minutes. opw-2648065 closes odoo/odoo#78377 Related: odoo/enterprise#21701 Signed-off-by:
Rémy Voet <ryv@odoo.com>
-
- Oct 24, 2021
-
-
Odoo Translation Bot authored
-
- Oct 18, 2021
-
-
Florian Damhaut authored
Current Behaviour : 1. Enable Work Orders 2. Add an operation to a BOM 3. Disable Work Orders 4. Create a manufacturing order for this product and finish the manufacturing. 5. Print the production order What is the current behavior that you observe? The production order has the operations in it even though the work order option has been disabled. This is because disabling the work order option just hides the operations and does not remove it from the BOM. What would be your expected behavior in this case? The printed production should not show the operation. opw-2660545 closes odoo/odoo#78244 Signed-off-by:
William Henrotin <Whenrow@users.noreply.github.com>
-
- Oct 17, 2021
-
-
Odoo Translation Bot authored
-
- Oct 15, 2021
-
-
Guillaume (guva) authored
Steps to reproduce: - Set the Decimal Accuracy at 5 digits for Product UoM - Create a product X - Create a kit BOM for X with a component Y, and qty 0.08600 - Create a Sale Order for 10 product X, confirm and deliver all Issue - On the SO, quantity delevered is 9.00000 instead of 10.00000, same issue occur with the same flow with a Purchase Order. Cause As the quantity per kit was rounded when calling _compute_qty, the calcul of quantity ratio was not well computed. Solution Avoid rounding the quantity per kit, as the quantity ratio is rounded a few steps after. opw-2590126 closes odoo/odoo#78427 X-original-commit: 4289d173 Signed-off-by:
William Henrotin <Whenrow@users.noreply.github.com>
-
- Oct 14, 2021
-
-
Martin Trigaux authored
Not sure why, some translations are missing sometimes. Force a pull to get everything that was missing from the weekly sync closes odoo/odoo#78369 Signed-off-by:
Martin Trigaux (mat) <mat@odoo.com>
-
- Oct 11, 2021
-
-
Nathan Marotte (nama) authored
Issue: When replacing a tracked part while doing a repair, we are changing the tracking number, but when checking for uniqueness, we don't take that change into consideration Steps to reproduce : 1) Manufacture product A with SN "A1" out of product B with SN "B2" 2) Make Repair Order for "A1" to replace "B2" with Product B (SN "B1"). 3) Create Manufacturing Order product A (A2), select product B with SN "B2" as one of the components. 4) Mark as done -> Bug : "The serial number <B2> used for component <B> has already been consumed". Why is that a bug: When checking for uniqueness we should take into consideration the parts being replaced opw-2625687 closes odoo/odoo#75717 Signed-off-by:
William Henrotin <Whenrow@users.noreply.github.com>
-
- Oct 10, 2021
-
-
Odoo Translation Bot authored
-
- Oct 03, 2021
-
-
Odoo Translation Bot authored
-
- Oct 01, 2021
-
-
Florian Damhaut authored
Description of the issue/feature this PR addresses: Variant Product kits where not shown in delivery slips reports. Current behavior before PR: Variant Product kits where not shown in delivery slips reports. Product where linked via their description to the variant name but then compared to the product template name. Desired behavior after PR is merged: Variant Product kits are now shown in delivery slips reports. Solution : Compare to product name if it exist and compare to template name. opw-2603829 closes odoo/odoo#77486 Signed-off-by:
William Henrotin <Whenrow@users.noreply.github.com>
-
Andrea Grazioso (agr-odoo) authored
- Storable product with MTO and manufacture route; - On your warehouse set 3 steps manufacture - Create a SO for this product > Confirm The smart button linking the Manufacturing order does not appear on the MO. opw-2634309 closes odoo/odoo#76485 Signed-off-by:
Rémy Voet <ryv-odoo@users.noreply.github.com> Co-authored-by:
Arnold Moyaux <arm@odoo.com>
-
- Sep 26, 2021
-
-
Odoo Translation Bot authored
-
- Sep 21, 2021
-
-
William Henrotin authored
This commit removes the action_confirm from the run_manufacture to do it only after all the orderpoints have been processed. In case a production, created in run_manufacture, triggers procurements for one of its component. And those procurements have the same parameters than another one still not run because after the manufacture one in the queue. This new procurement will replenish its quantity plus the other procurement's one. That means too much quantity will be replenished. closes odoo/odoo#76549 Signed-off-by:
Arnold Moyaux <amoyaux@users.noreply.github.com>
-
- Sep 20, 2021
-
-
Nathan Marotte (nama) authored
Issue: The button # To Process in mrp/views/stock_picking_views.xml at line 33 uses the domain state confirmed, draft, planned, or progress But the default filter, which is called "to do", show those 4 states + to_close (in mrp/views/mrp_production_views.xml line 309) Side-Note: Issue also present in 14.0, so starting the bug fix from here. 12.0 doesn't seem to have a to_close state but the count and filter domain also do not match Steps to reproduce in 14.0 On Runbot, go to Inventory click on the "# to process" button on a Manufacturing card. - Choose any MO and create a work order. On this work order, click "Start", then "Done". - The MO is now in the "To Close" stage. - Go back to Inventory Overview. The number to process has gone down by one. - Click on the "# to process" button, you will see that the "To Close" MO appears in the list but is not counted by the button. (written by dido) For 13.0 I haven't been able to find steps to reproduce but the button has not changed between the two versions opw-2636447 closes odoo/odoo#76582 X-original-commit: d4a15940 Signed-off-by:
Rémy Voet <ryv-odoo@users.noreply.github.com> Signed-off-by:
William Henrotin <Whenrow@users.noreply.github.com>
-
- Sep 19, 2021
-
-
Odoo Translation Bot authored
-
- Sep 15, 2021
-
-
Adrien Widart authored
It is currently impossible to create a MO from a mobile if there are some work orders To reproduce the issue: 1. In Settings, enable "Work Orders" 2. Create two products P_finished, P_compo 3. Create a BoM: - Product: P_finished - Components: - 1 x P_compo - Operations: - Create a new one 4. Switch to mobile mode 5. Create a MO with P_finished Error: When saving the MO, a Validation Error is raised "The operation cannot be completed: - Create/update: a mandatory field is not set. [...] Model: Work Order (mrp.workorder), Field: Unit of Measure (product_uom_id)" For a work order to be created, the request needs to provide two additional fields: `product_uom_id` and `consumption`. When setting the product P_finished, an onchange is triggered and does not return `consumption`. `product_uom_id` is returned but not included in the save request (because the field is declared as `readonly`) OPW-2557181 closes odoo/odoo#76228 Signed-off-by:
Arnold Moyaux <amoyaux@users.noreply.github.com>
-