Skip to content
Snippets Groups Projects
  1. Jul 05, 2022
  2. Jul 04, 2022
  3. Jul 03, 2022
  4. Jul 01, 2022
  5. Jun 30, 2022
    • MerlinGuillaume's avatar
      [FIX] l10n_es_edi_sii: allow any user to send invoices to the SII · 81dffddc
      MerlinGuillaume authored
      
      Only users with admin rights are able to confirm and send an invoice to
      the SII
      
      Steps to reproduce:
      1. Install l10n_es_edi_sii module
      2. Switch to company 'ES Company'
      3. Go to Settings > Invoicing > Spain Localization > Registro de Libros
         connection SII and select 'Hacienda Foral de Gipuzkoa'
      4. Go to Invoicing > Configuration > Accounting > Journals and open
         'Customer Invoices'. In the 'Advanced Settings' tab, enable EDI
         functionality 'SII IVA Llevanza de libros registro (ES)'
      5. Go to Invoicing > Configuration > Spain > Certificate (ES) and import
         the certificate (file named sello_entidad_act.p12 in
         l10n_es_edi_sii/demo/certificates/) with password "IZDesa2021"
      6. Connect as demo in 'ES Company'
      7. Create an invoice with any customer and product and confirm it
      8. Click on 'Send now', an access error is raised
      
      Solution:
      Call `_decode_certificate` with sudo to allow any user to send invoices
      to the SII
      
      opw-2767288
      
      closes odoo/odoo#94835
      
      Signed-off-by: default avatarGuillaume Merlin (megu) <megu@odoo.com>
      81dffddc
    • roen-odoo's avatar
      [FIX] sale_mrp: show correct MO count on smart button · 50015ed4
      roen-odoo authored
      
      Current behavior:
      When creating a backorder for a MO the smart buttons showing
      the MO counts had the wrong value
      
      Steps to reproduce:
      - Have a product that has MTO and Manufacture in his routes
      - Create a quotation for 5 of this product
      - Validate the order and click the manufacturing smart button
      - Set the quantity to 3 and validate
      - Create backorder
      - Go back to the sale order, the manufacturing count is still 1
        but should be 2
      
      Solution:
      Backport of saas-15.2: b3fffea6
      
      opw-2877348
      
      closes odoo/odoo#94091
      
      Signed-off-by: default avatarNicolas Lempereur (nle) <nle@odoo.com>
      50015ed4
    • Pierre Verkest's avatar
      [FIX] base: discard clear_cache on method res_users.has_group · 202c98c9
      Pierre Verkest authored
      
      Overriding method has_group() in some extension of model 'res.users' is
      not possible because of code invoking model.has_group.clear_cache().
      
      As clear_cache() is no longer invoked on ormcached methods, we can
      simply replace the code by a global cache invalidation.  In this case,
      it is not even necessary, since method call_cache_clearing_methods()
      does it already.
      
      closes odoo/odoo#94907
      
      Signed-off-by: default avatarRaphael Collet <rco@odoo.com>
      202c98c9
    • Adrien Widart's avatar
      [FIX] mrp: replan workorders · b74fcb1e
      Adrien Widart authored
      In some cases, replanning a work order does not change anything.
      
      To reproduce the issue:
      (Use demo data):
      1. In Settings, enable "Work Orders"
      2. Create two manufacturing orders (MO01, MO02) with 1 x [FURN_8522]
      Table Top
      3. Confirm MO01 and MO02
      4. Set the same Scheduled Start Date (SSD) on the WO of each MO
          - A warning should be displayed on the work order line because of
      the conflict
      5. Open the warning and click on "Replan"
      
      Error: Nothing happens, the warning is still displayed and the scheduled
      start date does not change.
      
      For the warning symbol to be displayed, we check (through
      `_compute_json_popover`) if two work orders are in conflict:
      https://github.com/odoo/odoo/blob/8cb5aad6126e3f63ee4ef91115c8b4a6be571828/addons/mrp/models/mrp_workorder.py#L719-L722
      So, we base this information on the `mrp.workorder`
      
      However, the planning logic is based on another model:
      `resource.calendar.leaves`. When planning a WO, we create a
      `resource.calendar.leaves` and we link this slot to the WO thanks to the
      field `leave_id`:
      https://github.com/odoo/odoo/blob/4870606b00a758e63713e6e82c0cba9b1e7dd4aa/addons/mrp/models/mrp_production.py#L1238-L1248
      Therefore, when replanning a WO, we ensure that the new slot does not
      overlap any existing slot in the same workcenter. But, here is the
      issue: when writing the start date (step 4), we try to replan the WO of
      the MO only if this MO is already planned:
      https://github.com/odoo/odoo/blob/4870606b00a758e63713e6e82c0cba9b1e7dd4aa/addons/mrp/models/mrp_production.py#L723-L724
      
      
      Wich is not the case in the above steps. So, we don't (re)plan anything
      => we don't create any slot.
      
      As a result: the warnings are displayed, which is correct, but when
      trying to replan one of the WO (step 5, viathanks to
      `_plan_workorders`): There isn't any slot starting from WO's start date
      (there isn't any slot at all!), so we can create a new slot -> the start
      time of the WO does not change -> considering their start times, there
      is still a conflict between both WOs.
      
      Comment: if after the step 5, the user tries to replan the other WO, it
      will work: the first replanning fails but a slot has still been created.
      Therefore, when replanning the second WO, the newly-created slot will be
      detected, a second slot will be created after the first one and the
      start date of the second WO will be postpone (according to the second
      slot).
      
      (!) Note that nothing creates any slot if we directly define the start
      time of the WO during the MO creation (step 2). So this use case will
      fail too.
      
      We should ensure a perfect coherence between both models
      `resource.calendar.leaves` and `mrp.workorder`.
      
      OPW-2887413
      
      closes odoo/odoo#94765
      
      Signed-off-by: default avatarWilliam Henrotin (whe) <whe@odoo.com>
      b74fcb1e
    • Romain Derie's avatar
      [IMP] tests: allow standalone tests to use `~` in addons-path · e633092a
      Romain Derie authored
      
      Using `./odoo-bin` to start Odoo, the addons path can contain a `~`, eg
      `~/Documents/whatever`.
      Those `~` are accepted and work both with the `--addons-path` passed as
      the command argument, or in the `.odoorc` config file.
      
      The `@standalone` tests (launched with `./test_module_operations.py`)
      however did not work with that `~` as the path was not "normalized".
      Neither a `~` in the config file or in the `--addons-path` argument were
      working.
      
      While it is not very critical, it is a nice to have to have the same
      behavior as the `./odoo-bin` as this made me lose quite some time
      figuring why I couldn't use my usual `design-themes` repo addons path.
      
      closes odoo/odoo#92995
      
      Signed-off-by: default avatarXavier Dollé (xdo) <xdo@odoo.com>
      Co-authored-by: default avatarXavier-Do <xdo@odoo.com>
      e633092a
    • alt-odoo's avatar
      [FIX] mrp: correct logging of quantity exception note on pickings · 1c65d8a7
      alt-odoo authored
      
      It could happen that there are other objects than stock.move linked to
      the manufacture order. This is currently creating an error when
      concatenating the objects. As we are only keeping stock.move objects to
      log the exception on those, we should filter them before the concatenate
      operation to avoid the error.
      
      closes odoo/odoo#94849
      
      X-original-commit: 1cdb6821
      Signed-off-by: default avatarArnold Moyaux (arm) <arm@odoo.com>
      Signed-off-by: default avatarAlex Thuyls (alt) <alt@odoo.com>
      Co-authored-by: default avatarvancleeff <mvw@odoo.com>
      1c65d8a7
  6. Jun 29, 2022
    • Romain Derie's avatar
      [FIX] website_forum: fix tag click event not found records · 4ff52d0b
      Romain Derie authored
      
      A forum tag is always linked to a forum.
      But some flows are not considering that part and are returning/using
      tags from other forum too.
      
      Step to reproduce, having 2 forum `Cats` and `Dogs`:
      - Create a `Food` tag on the `Dogs` forum
      - On the `Cats` forum, type `Food` in the tag input
      - First error: the `Food` from `Dogs` incorrectly shows up
        It means that the user can't create a new one from the `Cats` forum
        but will actually have to select (without know it) the one from the
        `Dogs` forum.
      - Select that tag anyway
      - Second error: The tags displayed on the post is redirecting to the
        wrong other forum, ultimately not showing the post from all forums
        (and the one you just came from).
      - Third error: The /tags page won't list the `Food` tag on the `Cats`
        forum.
      
      Note that there is probably some access traceback involved in a multi
      website and/or multi company setup.
      
      After this commit:
      - only the tags from the current forum will show up and be selectable
        when creating a post.
      - it will be possible to create a new tag for a forum is another forum
        already has a tag of that name
      - the tag on the post (next to its title) will not redirect to the
        incorrect (and possibly not accessible) forum
      
      Note that the method was already reading multiple properties of `self`,
      it was already not an `api.model` method anymore.
      
      closes odoo/odoo#94905
      
      X-original-commit: 53e57771
      Signed-off-by: default avatarRomain Derie (rde) <rde@odoo.com>
      Co-authored-by: default avatarhoangtiendung <hoangtiendung070797@gmail.com>
      4ff52d0b
    • Thibault Francois's avatar
      [FIX] cloc: fix count of studio field + exclude sa · ecff2d13
      Thibault Francois authored
      This commit fix 3 problem
      
      Don't count studio field
      ------------------------
      
      the commit https://github.com/odoo/odoo/commit/75b8c4eb1ed6e44f427886eea06ad216995e16c8
      was supposed to stop counting count field generate by addins a smart
      button with studio.
      
      It works fine when base import module is not installed which is never
      the case.
      
      When base_import_module the field is counted as a field that belong
      to a imported module installed : studio_customization
      
      studio_customization should not be counted as an imported module
      installed
      
      Count Field with standard xml_id
      --------------------------------
      
      With https://github.com/odoo/odoo/commit/9afce4805fc8bac45fdba817488aa867fddff69b
      
      
      Each manual can end up with an xml_id from a standard module:
      the original module of the model
      
      A standard module should never create a manual field so we can consider
      they should be counted unless they match the criteria of the first
      problem
      
      If a field has a standard module xml_id and no other the module
      should be odoo/studio and not the name of the standard module
      
      Make possible to exclude some db record from cloc
      -------------------------------------------------
      It's possible to exclude some file in python module
      but it's not possible to exclude some field or SA in
      the database from the count
      
      Make it possible if they are link to an xml_id
      from the module __cloc_exclude__
      
      The exclude record will be shown in cloc report with
      the verbose mode
      
      closes odoo/odoo#94803
      
      X-original-commit: 58c3b45c
      Related: odoo/enterprise#28947
      Signed-off-by: default avatarChristophe Simonis <chs@odoo.com>
      Signed-off-by: default avatarThibault Francois <tfr@odoo.com>
      ecff2d13
    • Raphael Collet's avatar
      [FIX] core: update inverse of many2many in order · ae7accc9
      Raphael Collet authored
      
      Consider two models A and B, a many2many field F from A to B and its
      inverse relation G from B to A.  When F is modified, G is updated
      accordingly in cache.  The statement
      
          records.write({F: [(4, b.id)]})    # link b to records
      
      is expected to add b.id to records.F, and add records.ids to b.G.  In
      order to avoid nondeterminism, the additions should be done at the end
      of the recordset, and in order.  In other words, if none of "records"
      are in b.G, then after the statement above, b.G should be updated as
      
          b.G = b.G + records
      
      This patch ensures that "records" are added in order.
      
      closes odoo/odoo#94782
      
      Signed-off-by: default avatarVincent Schippefilt (vsc) <vsc@odoo.com>
      ae7accc9
    • Valentin Chevalier's avatar
      [ADD] payment_adyen_paybylink: migrate from HPP to Pay by Link · 1f2af8ab
      Valentin Chevalier authored
      
      Adyen announced the deprecation of their Hosted Payment Page (HPP)
      solution for the year 2022. They plan on stopping providing support on
      July 1st and on disabling the API on October 1st.
      
      This commit adds a new `payment_adyen_paybylink` module to migrate the
      current implementation of Adyen from the HPP API to the equivalent (with
      redirection) Pay by Link API.
      
      task-2607397
      
      closes odoo/odoo#94651
      
      X-original-commit: a3236517
      Signed-off-by: default avatarAntoine Vandevenne (anv) <anv@odoo.com>
      1f2af8ab
    • mafo-odoo's avatar
      [FIX] portal: allow words to be broken in portal messages · 7f84d50c
      mafo-odoo authored
      
      Steps to reproduce:
      - Create a sale order
      - Set a very long message in the chatter
      - Clink on the customer preview
      
      Current behavior:
      There is a empty space in the top right corner
      
      Expected behavior:
      The preview is a usual
      
      Explanation:
      The very long word in the chatter created at the
      bottom of the page a very long message that increased
      the page width, modifying the usual view. To fix that
      we allow long words to broken to keep the same width.
      
      opw-2880050
      
      closes odoo/odoo#94763
      
      X-original-commit: 775290e1
      Signed-off-by: default avatarSébastien Theys (seb) <seb@odoo.com>
      Signed-off-by: default avatarFockedey Martin (mafo) <mafo@odoo.com>
      7f84d50c
    • roen-odoo's avatar
      [FIX] stock_account: correctly compute price_unit for return · 33b7e1b8
      roen-odoo authored
      
      Current behavior:
      When returning a delivery that had a quanity lower than 1
      the inventory valuation showed a value of 0 for the return
      
      Steps to reproduce:
      - Create a product that use "m" (meters) as UoM
      - Change the configuration of the product Category
        and set Costing method to FIFO and Inventory valuation to Automated
      - Create a SO for this product with a quantity of 0.15
      - Validate the order and validate the delivery with full quantity
      - Now click on return and make a return for the delivery
      - Validate the return and go in the inventory valuation
      - Show the inventory valuation for the created product
      - The return has a value of 0 when it should have the same value
        as the delivery
      
      opw-2880153
      
      closes odoo/odoo#94797
      
      X-original-commit: 9bc3d5eb
      Signed-off-by: default avatarAdrien Widart <awt@odoo.com>
      Signed-off-by: default avatarAnh Thao PHAM <pta@odoo.com>
      33b7e1b8
  7. Jun 28, 2022
    • Vincent Larcin's avatar
      [FIX] portal: filter empty messages in the chatter · 10d2a3e0
      Vincent Larcin authored
      
      In some cases, empty messages can be displayed in the portal chatter.
      
      For instance, if a customer sends a message with no body and just
      an attachment, and the attachment then gets deleted, it will still
      be displayed as an empty message in the portal chatter.
      
      To solve this, this commit filters out empty messages from the portal chatter.
      
      Task-2833919
      
      closes odoo/odoo#89742
      
      Signed-off-by: default avatarWarnon Aurélien (awa) <awa@odoo.com>
      10d2a3e0
    • Benoit Socias's avatar
      [FIX] website: avoid opening media dialog twice · ecb0f46f
      Benoit Socias authored
      
      When the user clicks on "Add Images" at a specific timing after dropping
      the "Images Wall" block but before the media dialog opens automatically,
      the media dialog gets opened twice.
      
      This commit prevents the media dialog from opening until it has been
      closed.
      
      task-2818919
      
      closes odoo/odoo#94048
      
      Signed-off-by: default avatarRomain Derie (rde) <rde@odoo.com>
      ecb0f46f
Loading