Skip to content
Snippets Groups Projects
  1. Nov 04, 2021
    • remi-filament's avatar
      [I18N] l10n_fr_pos_cert: translate the module · 73b076df
      remi-filament authored
      Fixes odoo/odoo#78932
      Closes odoo/odoo#79273
      
      Part-of: odoo/odoo#79360
      73b076df
    • roen-odoo's avatar
      [FIX] sale,sale_project : Avoid sending multiple email on upsell · e73e2019
      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: default avatarLaurent Stukkens (ltu) <ltu@odoo.com>
      e73e2019
    • Adrien Widart's avatar
      [FIX] stock: display 'Order Once' if qty > 0 · 81b26776
      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: default avatarArnold Moyaux <arm@odoo.com>
      81b26776
    • roen-odoo's avatar
      [FIX] purchase_requisition : PO Agreements wrong qty ordered · e9179006
      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: default avatarWilliam Henrotin (whe) <whe@odoo.com>
      Signed-off-by: default avatarEngels Robin (roen) <roen@odoo.com>
      e9179006
    • Adrien Widart's avatar
      [FIX] website_sale_stock: include WH in SO's context · 2beb6b1b
      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: default avatarRomain Derie (rde) <rde@odoo.com>
      2beb6b1b
    • Touati Djamel (otd)'s avatar
      [FIX] mrp_workorder: fix the WO planned date · b8201b7a
      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: default avatarSteve Van Essche <svs@odoo.com>
      b8201b7a
    • Adrien Widart's avatar
      [FIX] sale_stock_margin: use data of SOL's company · 975a27cd
      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: default avatarSteve Van Essche <svs@odoo.com>
      975a27cd
  2. Nov 03, 2021
  3. Nov 02, 2021
  4. Oct 31, 2021
  5. Oct 29, 2021
  6. Oct 28, 2021
  7. Oct 27, 2021
    • JF Aubert's avatar
      [FIX] mrp_subcontracting: Allow to create backorder for tracked products · 0ef9583b
      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: default avatarTiffany Chang <tic@odoo.com>
      0ef9583b
    • Rémy Voet (ryv)'s avatar
      [FIX] base: fix batched version of get_metadata · 657748dc
      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: default avatarRémy Voet <ryv@odoo.com>
      657748dc
    • Adrien Widart's avatar
      [FIX] mrp_account, sale_mrp: check if BoM line is correct · acd35564
      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: default avatarWilliam Henrotin (whe) <whe@odoo.com>
      acd35564
    • Bruno Zanotti's avatar
      [FIX] l10n_ar: doc types active field no updatable · 0f900ba5
      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: default avatarJosse Colpaert <jco@openerp.com>
      0f900ba5
    • Tiffany Chang (tic)'s avatar
      [FIX] stock: always show draft outs in forecasted report · c7647097
      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: default avatarArnold Moyaux <arm@odoo.com>
      c7647097
  8. Oct 26, 2021
Loading