Skip to content
Snippets Groups Projects
  1. Jan 27, 2021
  2. Aug 05, 2021
  3. Jun 21, 2021
  4. May 04, 2021
  5. Dec 23, 2021
    • Nasreddin Boulif (bon)'s avatar
      [FIX] sale,website_sale: Display extra prices with taxes included · 83c927f3
      Nasreddin Boulif (bon) authored
      
      Steps to reproduce the issue:
      
        - Install eCommerce and Inventory module
        - Go to Settings
        - Ensure `Product Prices` is set to 'Tax included'
        - Ensure `Variant Grid Entry` is activated
        - Create a new Product as storable
        - Set `Sales Price` to $1.0
        - Set `Customer Taxes` to 10.00 %
        - Under `Variants` tab, set 'Sales Variant Selection' to 'Order Grid Entry'
        - Under `Variants` tab add an Attribute with 2 values
        - Set "Price Extra" to $2.0 to one of the variants
        - Go to the Shop and select the product
      
      Issue:
      
        The extra price badge does not include the taxes
        ($2.0 instead of $2.2), however the final price does.
      
      Cause:
      
        The price_extra field from ptav (used in the badge) does not include
        the taxes.
        However, when calculating the final price, we do first the sum of all
        prices (including the extra prices) and then apply the taxes.
      
      Solution:
      
        In the template, for each 'variants', we call `_get_combination_info`
        to get the variant.price_extra with taxes included/excluded
        depending the `Product Prices` setting.
      
      opw-2669871
      
      closes odoo/odoo#80460
      
      Signed-off-by: default avatarYannick Tivisse (yti) <yti@odoo.com>
      83c927f3
  6. Dec 22, 2021
    • John (jol)'s avatar
      [FIX] account: fix fiscal position with delivery address · ca0fc6cd
      John (jol) authored
      
      The goal is to ensure that 2 conditions are met for a fiscal position to
      be applied (within the EU):
      
      - The customer must have a valid VAT number from another EU Member State
      - The goods must leave the country of origin
      
      closes odoo/odoo#75033
      
      Task: 2596204
      Signed-off-by: default avatarQuentin De Paoli <qdp@odoo.com>
      ca0fc6cd
    • Merlin (megu)'s avatar
      [FIX] stock: correctly compare inventory adjustements difference · d60c3ed6
      Merlin (megu) authored
      
      The filter 'Difference different than zero' is not correct
      
      Steps to reproduce:
      1. Install the Inventory app
      2. Go to Inventory -> Operations -> Inventory Adjustments
      3. Create a new Inventory Adjustments and start it
      4. Change the number of Drawer counted so that the absolute difference is <= 0,498
      5. Apply the filter 'Difference different than zero'
      6. The line disappears although the difference is not null
      
      Solution:
      Specify the argument name 'precision_rounding' for the function 'float_is_zero()'
      
      OPW-2699771
      
      closes odoo/odoo#81681
      
      Signed-off-by: default avatarNicolas Lempereur (nle) <nle@odoo.com>
      d60c3ed6
  7. Dec 21, 2021
  8. Dec 20, 2021
  9. Dec 17, 2021
    • Federico (fega)'s avatar
      [FIX] hr_recruitment, web: the sidepanel doesn't show users correctly · 7ee5cd3d
      Federico (fega) authored
      
      How to replicate:
      - Create a user and assign the current company to its
      related contact.
      - Go to Recruitment -> create a job with the user
      created before as Responsible.
      
      Result:
      - The user doesn't display in the sidepanel.
      
      Expected:
      - The panel should display the user and the other
      users that are responsible of at least one job.
      
      Additionally, if the user's contact has no company
      assigned, it will display in the panel whether or not
      the user is set as responsible in at least one job.
      
      I overwrote the 'search_panel_select_range' to
      display only the users that respect the rules listed
      above.
      I also changed the original search_panel_select_range
      and now I don't set parent_field if the parent_field
      model is different than the current model
      
      opw-2654573
      
      closes odoo/odoo#80333
      
      Signed-off-by: default avatarNicolas Lempereur (nle) <nle@odoo.com>
      7ee5cd3d
    • Benjamin Vray's avatar
      [FIX] web_editor: prevent dropping popup inside a substructure · e5041cc2
      Benjamin Vray authored
      
      Before this commit, it was possible to drag and drop a popup inside an
      oe_structure which was itself inside an other oe_structure (e.g. snippet
      parallax). It didn't make sense and moreover created bugs.
      
      After this commit, it is no longer possible to drag and drop the popup
      snippet or the newsletter popup snippet in a substructure.
      
      task-2491976
      
      closes odoo/odoo#80836
      
      Signed-off-by: default avatarQuentin Smetz (qsm) <qsm@odoo.com>
      Co-authored-by: default avatarqsm-odoo <qsm@odoo.com>
      e5041cc2
    • Arnold Moyaux's avatar
      [FIX] sale_mrp: quantity invoiced in cogs is different than qty delivered · e916526a
      Arnold Moyaux authored
      
      When a kit is exploded to `stock.move` the quantity is rounded half-up
      for every move. But during the invoice. The quantity to invoice on
      kit is rounded up so it could result in differences between the
      inventory valuation and the cost of the product
      
      closes odoo/odoo#81355
      
      Signed-off-by: default avatarArnold Moyaux <arm@odoo.com>
      e916526a
    • nni-odoo's avatar
      [FIX] sale_mrp: unit price calculation BoM in different UoM · 85f227b1
      nni-odoo authored
      Fix for task 2620026.
      
      _get_bom_component_qty function is only referred to once in the whole odoo app,
      which is on addons/sale_mrp/models/account_move.py#22.
      
      The result returned from this function is used as a multiplier to quantity
      to convert into the expected UoM. However, the quantity being referred to on
      _stock_account_get_anglo_saxon_price_unit (qty_invoiced, qty_to_invoice), are
      already converted into the SO Line's product's default UoM. In this function,
      it however tries to convert 1 from SO Line's UoM to BoM's UOM.
      
      With this, if Product UoM=x, SO Line UoM=y, BOM UoM=x, in the function _stock_account_get_anglo_saxon_price_unit,
      the quantities will be multiplied by the same factor twice, resulting to the incorrect computation of price_unit to follow.
      
      Part-of: odoo/odoo#81355
      85f227b1
  10. Dec 15, 2021
    • Nicolas Martinelli's avatar
      [FIX] fetchmail: do not loop endlessly · 72cd8d07
      Nicolas Martinelli authored
      
      - Set up a POP account
      - On the POP account, receive emails addressed to various recipients,
        e.g. `my_alias_1` and `my_alias_2`. Receive more than 50 emails to
        `my_alias_2`.
      - In Odoo, create a mail alias for `my_alias_1`
      - Run the fetchmail cron
      
      The cron runs endlessly until it is killed. In the logs, inconsistent
      messages are shown:
      
      ```
      ...
      Fetched 3507 email(s) on pop server xxx; -16493 succeeded, 20000 failed.
      Fetched 3507 email(s) on pop server xxx; -16543 succeeded, 20050 failed.
      ...
      ```
      
      First the message count is incorrect in the log. We fetched at most 50
      emails, not the total number of emails. Then, the endless loop is due
      to the fact that
      - we do not delete failed messages (= messages addressed to
        `my_alias_2`)
      - we always fetch messages from `num=1`
      
      If the first 50 messages fail, we fetch them endlessly until the cron is
      killed.
      
      To avoid this, we compare the number of failed messages with the number
      of messages retrieved. If all messages retrieved have failed, we stop
      the loop.
      
      After the fix, consistent messages are show in the logs and the process
      stops after the first complete failure:
      
      ```
      start checking for new emails on pop server xxx
      Fetched 50 email(s) on pop server xxx; 0 succeeded, 50 failed.
      ```
      
      Note that it doesn't solve the core of the issue; we just fail faster. A
      proper way would probably be to use an offset so we don't always start
      at `num=1`. On the other hand, it is just a matter of time before the
      cron times out: if the mailbox is full of messages which canot be
      treated, we will just spend more and more time trying to find the ones
      which can be treated.
      
      closes odoo/odoo#81115
      
      Signed-off-by: default avatarNicolas Martinelli (nim) <nim@odoo.com>
      72cd8d07
    • Brice bib Bartoletti's avatar
      [FIX] stock_account:make cogs multi_company safe · 17465e2b
      Brice bib Bartoletti authored
      
      Goal:
      The aim of this commit is to make the cogs generation multi-company
      safe.
      
      Context:
      
      Considering the situation in which company A has set a product P with
      a real time valuation and company B didn't set the real time valuation
      or has set it to manual;
      Considering the user has selected both company in the switcher;
      The user post an invoice for the product P.
      
      Before this commit:
      There isn't any cogs created for the invoice which is wrong.
      
      After this commit:
      Whatever the selected companies are, the cost selected will always be from
      the company that created the invoice.
      
      closes odoo/odoo#81348
      
      Task: #2713607
      Signed-off-by: default avatarLaurent Smet <las@odoo.com>
      17465e2b
    • nurefexc's avatar
      [FIX] web: missing context during resequence · 9b665ba8
      nurefexc authored
      
      Problem 1: The context was not passed when calling the resequence function.
      Problem 2: Also, the subsequent read operation did not pass the full
      context, but only the context of the user, not the context of the action.
      A test has been added for the basic model to check that the context is properly
      given after a resequence.
      
      closes odoo/odoo#81393
      
      Signed-off-by: default avatarAaron Bohy (aab) <aab@odoo.com>
      9b665ba8
  11. Dec 13, 2021
    • rhe-odoo's avatar
      [FIX] pos_cash_rounding: Fix value under rounding · 76ccaaf0
      rhe-odoo authored
      
      It should be allowed to pay amount that are not rounded if the value is less than the rounding value.
      Ex:
      Rounding value: 0.05
      Amount to pay: 0.04
      The amount to pay should remain 0.04 and not be rounded to 0.05.
      
      This fix allows the user to pay for values under the rounding value without applying the rounding.
      
      closes odoo/odoo#81302
      
      Signed-off-by: default avatarMasereel Pierre <pim@odoo.com>
      76ccaaf0
    • anhe-odoo's avatar
      [FIX] sale_coupon: fix the unexpired_promotions filter · d2c58a9d
      anhe-odoo authored
      
      Expected behaviour
      
      When having multiple promotions with, for example, a promotion of X% for the
      first order and a promotion of Y% (Y<X), we should apply the first promotion
      on the first order and then don't get this promotion into account to choose
      the best promotion for a future order, so that we have:
      1. A promotion of X% on the first order
      2. A promotion of Y% on every other order
      
      Observed behaviour
      
      When trying to apply promotion on other order, nothing seems to happen, as
      Odoo take the already-used X% promotion into account, being the most
      interesting promotion, select it as the best promotion to apply and then
      apply it to finally get a result of a 0% discount as the promotion has
      already been used.
      
      Problem Root Cause
      
      As it can be seen in the commit, the error comes from the fact we filtered
      the available promotion with a non-strict inequality.
      
      Validation
      
      A test has been added in test_program_numbers.py to validate our fix
      
      Related issue
      
      - opw-2674681
      
      closes odoo/odoo#80192
      
      Signed-off-by: default avatarRomain Derie (rde) <rde@odoo.com>
      d2c58a9d
    • std-odoo's avatar
      [FIX] event: allow internal users to read registrations · 0cd54df5
      std-odoo authored
      
      Bug
      ===
      Since 85053a8b we limited the access
      of the registration to the event users. But now we want to limit the
      access to the internal users.
      
      So only the portal users and the public users will be concerned by this
      restriction.
      
      Task-2666823
      
      closes odoo/odoo#78235
      
      Signed-off-by: default avatarThibault Delavallee (tde) <tde@openerp.com>
      0cd54df5
    • tranngocson1996's avatar
      [IMP] hr_expense: Add hook method for inherit · d7563d25
      tranngocson1996 authored
      
      After paying the expense report, the lines are reconciled right away but
      with this old code I can't inherit the custom reconciliation lines. So I
      provide a hook method to be able to inherit and customize the lines that
      want to be reconciled.
      
      closes odoo/odoo#81267
      
      Signed-off-by: default avatarKevin Baptiste <kba@odoo.com>
      d7563d25
  12. Dec 12, 2021
  13. Dec 10, 2021
    • Brice bib Bartoletti's avatar
      [FIX] stock_account:make cogs multi_company safe · 3f777d43
      Brice bib Bartoletti authored
      
      The aim of this commit is to make the cogs generation multi-company
      safe.
      
      Before this commit:
      When posting an invoice from company B with both company A and B
      selected and A being selected as "main", the cost from company A could
      be selected instead of cost from company A to create the anglosaxon
      lines.
      
      After this commit:
      Whatever the selected companies are, the cost selected will always be from
      the company that created the invoice.
      
      closes odoo/odoo#79674
      
      Task: #2686104
      Signed-off-by: default avatarLaurent Smet <las@odoo.com>
      3f777d43
    • Raf Geens's avatar
      [FIX] base_address_city: Inherit city_id from parent contact · e4345c81
      Raf Geens authored
      
      If you create an individual contact that has a company contact as the
      parent, it will inherit certain fields from that parent, which are
      defined by `_address_fields` in `res.partner`.
      
      `base_address_city` allows enforcing picking a city from a pre-defined
      list, which gets stored in `city_id` instead of the standard free-text
      `city` field on `res.partner`. If you change `city_id`, an `onchange`
      will update `city`.
      
      `city_id` was not being inherited from the parent, which means the
      contact ends up in an inconsistent state: `city` will be set, but
      `city_id` will not.
      
      In the Colombian accounting localization, which uses the enforced city
      feature, a municipality code which is part of the record behind
      `city_id` is mandatory in certain electronic invoice XML fields that get
      sent to Carvajal. This value will incorrectly be 0 if `city_id` is not
      set on the contact due to the above issue, causing the invoice to be
      rejected.
      
      This fix lets a contact inherit the `city_id` from its parent if
      `base_address_city` is installed.
      
      opw-2638687
      
      closes odoo/odoo#81230
      
      Signed-off-by: default avatarQuentin De Paoli <qdp@odoo.com>
      e4345c81
    • Leo Tran's avatar
      [CLA] Viindoo updates Odoo's CLA · ad12b854
      Leo Tran authored
      
      closes odoo/odoo#81194
      
      Signed-off-by: default avatarMartin Trigaux (mat) <mat@odoo.com>
      ad12b854
  14. Dec 09, 2021
    • Raphael Collet's avatar
      [FIX] core: computed inversed fields partly assigned · fb4d6ee4
      Raphael Collet authored
      
      This fixes inconsistencies when dealing with fields that are computed
      and inversed by the same methods.
      
      Consider two fields F1, F2 with the same compute and inverse methods.
      Consider a record where we wrote on a dependency of the common compute
      method.  At this point, both fields F1 and F2 are marked to be computed.
      
      Now let us write on F1 only.  Here is what happens:
       - the write discards the computation of F1, but not F2
       - the inverse method of F1 is called:
          - the method accesses F2
             -> this calls the compute method, which assigns both F1 and F2
          - the method accesses F1
             -> the value of F1 has been replaced by the computation above
      
      The issue comes from a combination of factors:
       - the value of F2 must be determined by the computation;
       - the computation assigns both F1 and F2;
       - the computation is done while inversing F1 (and F2).
      
      The solution is to force the computation before actually writing on the
      fields and calling their inverse methods.  Note that this is necessary
      only when part of the fields computed by a common method are updated.
      When all fields computed by a common method are updated, the computation
      will automatically be cancelled.
      
      closes odoo/odoo#81105
      
      Signed-off-by: default avatarRaphael Collet <rco@odoo.com>
      fb4d6ee4
    • William Braeckman's avatar
      [FIX] hr_org_chart: fix employee deletion · 3ec9dcc5
      William Braeckman authored
      
      How to reproduce:
      1: create two employees (A B)  and two departments (C D)
      2: Assign A as manager of C and B as manager of D
      3: Assign C as A's department and A as A's manager
      4: Change A's department to D -> A is deleted
      
      This is due to `parent_id` being both a computed field and the source
      field for a One2many. By changing the `department_id` the `parent_id`
      also changed which results in it being report in the `onchange` method.
      For some reason however the command sent by the orm is not `UNLINK` but
      `DELETE` which results in the `active_id` being deleted.
      
      TaskId-2711428
      
      closes odoo/odoo#81122
      
      Signed-off-by: default avatarYannick Tivisse (yti) <yti@odoo.com>
      3ec9dcc5
    • Arnold Moyaux's avatar
      [FIX] stock: add an automated way to fix unreserve issue · d99e173b
      Arnold Moyaux authored
      
      It happens that the `stock.quant.reserved_quantity` and `stock.move.line.product_qty`
      for the same parameters are not equals (due to some bugs in the past)
      
      It could implies that it doesn't exist enough reserved quantity on the
      quant when a user try to unreserve a stock.move.line resulting in the
      UserError 'It is not possible to unreserve more products of %s than you
      have in stock'
      
      However on current stable version (13.0 and 14.0) a lot of PR already
      fixed a lot of issue as:
      odoo/odoo#69377
      odoo/odoo#66347
      odoo/odoo#61758
      odoo/odoo#54355
      odoo/odoo#43180
      odoo/odoo#70975
      for example (there is more than that)
      
      So the idea is to provide a way to unlock the database manually for
      stable but not in the new version to be able to analyse them and find
      possible bugs responssible for the desynchronization.
      
      The server action check all the quants and their relative move line
      to check if match correctly. If not it will remove the reservation
      from both. It could remove the reservation from some `pickings` and
      `stock.move`
      
      related to odoo/odoo#62139
      
      closes odoo/odoo#79180
      
      Signed-off-by: default avatarWilliam Henrotin (whe) <whe@odoo.com>
      d99e173b
    • Adrien Widart's avatar
      [FIX] stock: correctly compare float · 7f30ef42
      Adrien Widart authored
      
      Due to floating point representation, some floats may have some
      insignificant decimals. Therefore, `float_compare` should be used when
      comparing such numbers
      
      OPW-2699576
      
      closes odoo/odoo#80983
      
      Signed-off-by: default avatarWilliam Henrotin (whe) <whe@odoo.com>
      7f30ef42
  15. Dec 08, 2021
  16. Dec 07, 2021
    • Adrien Widart's avatar
      [FIX] sale_mrp: not include consu components in kit's COGS · 5de45100
      Adrien Widart authored
      
      When selling a storable kits, the consumable components should be
      ignored in account lines
      
      To reproduce the issue:
      (Need account_accountant,sale_management,mrp)
      1. Create a product category PC:
          - Costing Method: FIFO
          - Inventory Valuation: Automated
      2. Create 3 products P_kit, P_compo01, P_compo02
          - P_kit:
              - Type: Storable
              - Category: PC
          - P_compo01
              - Type: Storable
              - Category: PC
              - Cost: 5
          - P_compo02:
              - Type: Consumable
              - Category: PC
              - Cost: 6
      3. Update P_compo02's on hand qty: 1
      4. Create a bill of materials:
          - Product: P_kit
          - Type: Kit
          - Components:
              - 1 x P_compo01
              - 1 x P_compo02
      5. Create & Confirm a sale order SO with 1 x P_kit
      6. Process the related delivery
      7. Create & Post the related invoice
      
      Error: The journal items of the invoice are incorrect, the value of
      Expenses and Stock Interim (Delivered) are $11 instead of $5. The
      consumable components should be excluded from this value
      
      OPW-2604084
      
      closes odoo/odoo#80850
      
      Signed-off-by: default avatarWilliam Henrotin (whe) <whe@odoo.com>
      5de45100
    • Leo Tran's avatar
      [CLA] Viindoo signs Odoo's CLA · 567a8380
      Leo Tran authored
      
      closes odoo/odoo#80976
      
      Signed-off-by: default avatarMartin Trigaux (mat) <mat@odoo.com>
      567a8380
    • Adrien Widart's avatar
      [FIX] purchase: compute the average of the delays in report · 80e71545
      Adrien Widart authored
      
      When consulting the Purchase Analysis, the measure "Days to Confirm" may
      not be easily understandable
      
      To reproduce the issue:
      1. Create a purchase order PO:
          - Order Deadline: <today + 10 days>
          - Add 2 products
      2. Confirm PO
      3. Purchase > Reporting:
          - Measures: Days to Confirm
          - Group By: Order
      
      Error: For PO, the value of "Days to Confirm" is -20, it should be -10
      
      The report computes the sum of the delay (i.e., "Days to Confirm") of
      each purchase order line. Computing an average seems more relevant
      
      A similar flow could be reproduce with the measure "Days to Receive"
      (i.e., the difference between the Order Deadline and the Receipt Date)
      
      OPW-2678673
      
      closes odoo/odoo#80671
      
      Signed-off-by: default avatarArnold Moyaux <arm@odoo.com>
      80e71545
    • Víctor Martínez's avatar
      [FIX] stock_landed_costs: Allow to use LC without real_time · 81ad4d6a
      Víctor Martínez authored
      
      The requirement of having real_time valuation in product categories to use LC is not needed
      at all, as the information is taken from stock.valuation.layer, but it was previously
      enforced due to the leftovers of the previous algorithm.
      
      We remove such requirement in this commit, and also not creating the LC journal entry in
      such cases.
      
      TT32954
      
      closes odoo/odoo#80200
      
      Signed-off-by: default avatarWilliam Henrotin (whe) <whe@odoo.com>
      81ad4d6a
    • Raphael Collet's avatar
      [FIX] base: fix search on company depend fields · 9b339afa
      Raphael Collet authored
      
      This is a bunch of fixes (65 corner cases) for the search on
      company-dependent fields:
      
      Without a default value:
      - `char` fields:
          - operators `not like`/`not ilike` don't return records with unset value
          - `(..., '=', False)` doesn't return records with unset value
          - `(..., '!=', '<string>')` doesn't return records with unset value
          - `(..., 'in', [..., False])` doesn't return records with unset value
          - `(..., 'not in', value)` without `False` inside `value` doesn't return records with unset value
      - `date` and `datetime` fields:
          - `(..., '!=', <Date/datetime>)` doesn't return records with unset value
          - `(..., '=', False)` doesn't return records with unset value
      - `many2one` fields:
          - operators `not like`/`not ilike` don't return records with unset value
          - `(..., 'in', [..., False])` doesn't return records with unset value
          - `(..., 'not in', value)` without `False` inside `value` doesn't return records with unset value
      - `boolean` fields:
          - `(..., '=', False)` and `(..., '!=', True)` don't return records with unset and `False` values
      - `integer`/`float` fields:
          - `(..., '!=', <number>)` doesn't return records with unset value
      
      With a truthy default value:
      - `many2one` fields:
          - operators `not like`/`not ilike` don't return records with unset value
          - `(..., '=', False)` returns the record with the default value (which isn't `False`)
      - `boolean` fields:
          - `(..., '=', False)` doesn't return records with unset and `False` value
          - `(..., '!=', False)` returns records with unset and `False` value
      - `integer`/`float` fields:
          - all `(..., operator, value)` which include value 0, return all records with unset value, even if the default value does not satisfy the domain
      
      closes odoo/odoo#80082
      
      Signed-off-by: default avatarRaphael Collet <rco@odoo.com>
      9b339afa
  17. Dec 06, 2021
    • BVE's avatar
      [FIX] account: update default value in alias on journal type change · 9bdf129a
      BVE authored
      
      Steps to reproduce the bug:
      - Go to settings and enable “External Email Servers” option
      - Go to accounting > Configuration > journals
      - Create a new journal, Choose "purchase" type
      - save
      - Go to advanced settings tab > click on email alias
      - Note that default value = `in_invoice`
      - Create another journal, choose "Miscellaneous" type > save
      - Change the type to "purchase"
      
      Problem:
      the default value = "out_invoice", because it is not updated in the write function after changing the journal type
      In the case of type == 'purchase', the default value should be 'in_invoice', and in any other case, it should be 'out_invoice'.
      
      opw-2618357
      
      closes odoo/odoo#75358
      
      X-original-commit: 3da57964aeee99c8314195c763fe521c28fbc734
      Signed-off-by: default avatarWilliam André (wan) <wan@odoo.com>
      9bdf129a
Loading