Skip to content
Snippets Groups Projects
  1. Jan 03, 2022
    • Florian Damhaut's avatar
      [FIX] mrp: Context irrelevant of hidden parameters for stock_mrp · eddda890
      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: default avatarArnold Moyaux <arm@odoo.com>
      eddda890
  2. Jan 02, 2022
  3. Dec 26, 2021
  4. Dec 19, 2021
  5. Dec 12, 2021
  6. Dec 05, 2021
  7. Nov 30, 2021
    • Touati Djamel (otd)'s avatar
      [FIX] stock, mrp: fix the manufacturing product moves filter · 75dbe662
      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: default avatarWilliam Henrotin (whe) <whe@odoo.com>
      Signed-off-by: default avatarDjamel Touati (otd) <otd@odoo.com>
      75dbe662
    • Touati Djamel (otd)'s avatar
      [FIX] mrp: fix the qty in the BOM report · 6ff32f4d
      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: default avatarWilliam Henrotin (whe) <whe@odoo.com>
      Signed-off-by: default avatarDjamel Touati (otd) <otd@odoo.com>
      6ff32f4d
  8. Nov 28, 2021
  9. Nov 24, 2021
  10. Nov 23, 2021
    • roen-odoo's avatar
      [FIX] *: Bad context keys in smart button · 0e6aa2c8
      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: default avatarJulien Castiaux <juc@odoo.com>
      0e6aa2c8
  11. Nov 21, 2021
  12. Nov 19, 2021
  13. Nov 18, 2021
    • roen-odoo's avatar
      [FIX] mrp : BoM report · d113cb1e
      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: default avatarWilliam Henrotin (whe) <whe@odoo.com>
      d113cb1e
  14. Nov 16, 2021
    • Adrien Widart's avatar
      [FIX] mrp: configure in and out moves of draft MO · a023d7fd
      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: default avatarWilliam Henrotin (whe) <whe@odoo.com>
      Signed-off-by: default avatarAdrien Widart <awt@odoo.com>
      a023d7fd
  15. Nov 15, 2021
    • Adrien Widart's avatar
      [FIX] mrp: set component's lot as readonly in MO · 66a1e96f
      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: default avatarWilliam Henrotin (whe) <whe@odoo.com>
      66a1e96f
  16. Nov 14, 2021
  17. Nov 09, 2021
    • roen-odoo's avatar
      [FIX] mrp : bom report duration for dozens · e6644fa2
      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: default avatarWilliam Henrotin (whe) <whe@odoo.com>
      e6644fa2
  18. Nov 07, 2021
  19. Nov 05, 2021
    • Aurélien (avd)'s avatar
      [FIX] mrp: restrict _post_process_scheduler search domain · 11c7b92f
      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: default avatarArnold Moyaux <arm@odoo.com>
      11c7b92f
  20. Nov 04, 2021
  21. Oct 31, 2021
  22. Oct 29, 2021
  23. Oct 28, 2021
    • Tiffany Chang (tic)'s avatar
      [FIX] mrp: allow backorder immediate production for SN product · 58cd10eb
      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: default avatarArnold Moyaux <arm@odoo.com>
      58cd10eb
  24. Oct 25, 2021
    • Touati Djamel (otd)'s avatar
      [FIX] mrp_workorder: calculate correctly the WO scheduled end date · b02cdbbe
      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: default avatarRémy Voet <ryv@odoo.com>
      b02cdbbe
  25. Oct 24, 2021
  26. Oct 18, 2021
    • Florian Damhaut's avatar
      [FIX] mrp : Remove operations from production template when the module is disabled · d73752c5
      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: default avatarWilliam Henrotin <Whenrow@users.noreply.github.com>
      d73752c5
  27. Oct 17, 2021
  28. Oct 15, 2021
    • Guillaume (guva)'s avatar
      [FIX] mrp: Delivered quantity with kit · 84029946
      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: default avatarWilliam Henrotin <Whenrow@users.noreply.github.com>
      84029946
  29. Oct 14, 2021
  30. Oct 11, 2021
    • Nathan Marotte (nama)'s avatar
      [FIX] mrp : replacing tracked part in repair fails uniqueness · 1d977b49
      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: default avatarWilliam Henrotin <Whenrow@users.noreply.github.com>
      1d977b49
  31. Oct 10, 2021
  32. Oct 03, 2021
  33. Oct 01, 2021
  34. Sep 26, 2021
  35. Sep 21, 2021
    • William Henrotin's avatar
      [FIX] mrp: confirm production order at the end · 5fd6c725
      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: default avatarArnold Moyaux <amoyaux@users.noreply.github.com>
      5fd6c725
  36. Sep 20, 2021
    • Nathan Marotte (nama)'s avatar
      [FIX] mrp stock_picking : count to do and filter not matching · 3d250a94
      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: default avatarRémy Voet <ryv-odoo@users.noreply.github.com>
      Signed-off-by: default avatarWilliam Henrotin <Whenrow@users.noreply.github.com>
      3d250a94
  37. Sep 19, 2021
  38. Sep 15, 2021
    • Adrien Widart's avatar
      [FIX] mrp: create MO from a mobile · a2f5fc97
      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: default avatarArnold Moyaux <amoyaux@users.noreply.github.com>
      a2f5fc97
Loading