Skip to content
Snippets Groups Projects
  1. Oct 11, 2022
  2. Oct 10, 2022
  3. Oct 09, 2022
  4. Oct 08, 2022
    • mafo-odoo's avatar
      [FIX] payment_stripe: add idempotency key to prevent multiple payments · f0d75ba8
      mafo-odoo authored
      Video 1 (Issue): https://drive.google.com/file/d/1oXYcDJgaT9gmhkjE08yJlXwIL1qPwS1Y/view?usp=sharing
      
      
      
      Issue:
      When using the register payment with a token with any of the payment acquirers,
      if there is a concurrent access error during the reconciliation process,
      the payment intent is sent multiple times to the acquirer, making the card charged multiple times.
      
      Steps to reproduce:
      
      -Have a V14 database (only tested this version) with sale_mmanagement, payment_stripe and invoicing
      -Configure Stripe with your public and secret key (2FA is now enforced for Stripe accounts, therefore,
       we don't have a generic test account anymore. You have to create your own.It is quite fast and easy to do)
      -Have a portal user PU with an already registered payment token PT
      -Go to Invoicing
      -Create a new invoice I:
      -Customer PU
      -Add anything in invoice lines
      -Confirm I
      -Register a payment for I:
      -Journal: Stripe
      -Saved Payment token: PT
      AT THIS STEP, YOU MUST ENSURE A CONCURRENT ACCESS ERROR WILL RAISE DURING THE RECONCILIATION
      -Create Payment
      
      Log analysis:
      A first payment intent is sent to Stripe. The card is charged and Stripe answers that all went as expected.
      We try to process the payment, but a concurrent access error occurs.
      A retry is done.
      A payment intent is sent again to Stripe, The card is charged AGAIN and Stripe answers that all went as expected.
      We try to process the payment, but a concurrent access error occurs.
      
      For each retry, the intent is sent and the card is charged.
      
      If the first retry succeeds, then Odoo can finish the process. There will be only 1 payment transaction on Odoo's side
      (others have been rollbacked) but there will be 3 on Stripe's side and the card will be charged 3 times.
      
      This PR mitigate this behaviour.
      It doesn't address the root cause but by adding the idempotency key to the headers with the hash of the transaction
      reference and the database UUID, we prevent mutliple payments to happen.
      
      OPW-2662964
      
      closes odoo/odoo#101243
      
      Signed-off-by: default avatarAntoine Vandevenne (anv) <anv@odoo.com>
      f0d75ba8
    • mafo-odoo's avatar
      [FIX] payment_stripe: allow payment for client without mail · beb580c2
      mafo-odoo authored
      
      Problem: If you have a customer assigned to an invoice/quotation
      without an e-mail address and then share a payment link with
      the customer. If the customer clicks on 'Pay', he won't be
      redirected to Stripe's checkout page. He'll get instead 'Invalid
      e-mail address: False' (see the image attached).
      
      Explanation:
      When there is no e-mail address defined, Odoo sends 'False' to
      Stripe but Stripe sees it as the e-mail address which is indeed
      Invalid. To solve the issue we replace False by None for the email
      value of a customer without email address.
      
      opw-3007866
      
      closes odoo/odoo#102324
      
      Signed-off-by: default avatarAntoine Vandevenne (anv) <anv@odoo.com>
      beb580c2
  5. Oct 07, 2022
  6. Oct 06, 2022
    • Hoang Tran's avatar
      [FIX] mail: process first 100 mail failures only · 062fb69f
      Hoang Tran authored
      Processing failed mails is quite consuming operation that leads to browser
      slowness or even crash. It's especially painful, because user doesn't see the
      reason for it.
      
      Bypass the problem by processing first 100 notifications only.
      
      Back-port of https://github.com/odoo/odoo/pull/90138
      
      
      
      closes odoo/odoo#102076
      
      Signed-off-by: default avatarSébastien Theys (seb) <seb@odoo.com>
      062fb69f
    • Julien Van Roy's avatar
      [FIX] l10n_fr: clean Tax Groups, CoA, Taxes, Fiscal Positions, Tax report · 85a634c7
      Julien Van Roy authored
      
      This commit cleans the tax groups:
      - it removes the negative tax groups
      - it makes sure that there is only one tax group per tax rate
      - all the taxes with the same rates are attached to a single tax group
      
      This commit splits the taxes to make the distinction between the goods and services.
      In addition, the fiscal positions are also updated accordingly (make sure to map to another
      one having the same scope: goods/services and type: sale/purchase).
      
      These changes are based on the reliable feedback of LPDE (Didier Six). No tax were removed
      from the old version. Only some were split, the others were kept (but modified).
      
      In addition, the tax report is updated to the 2022 version and the new tax report lines
      are linked to the taxes.
      
      task-2674047
      
      closes odoo/odoo#84918
      
      Signed-off-by: default avatarOlivier Colson (oco) <oco@odoo.com>
      85a634c7
  7. Oct 05, 2022
  8. Oct 04, 2022
    • Laurent Desausoi (lade)'s avatar
      [FIX] point_of_sale: adapt logo for multi companies customer display · 120ca080
      Laurent Desausoi (lade) authored
      
      Customer display does not show the appropriate logo when multi-company is
      enabled. The logo shown is always the logo of the default company.
      
      Step to reproduce the issue:
      1) Install Point of Sale and set up a second company
      2) Put a logo on both companies (different ones)
      3) Create a POS session on the newest company (not the default one)
      4) In this session, activate Customer Display
      5) Launch the session and open the Customer Display
      The logo shown is the logo of the default company.
      
      Solution: The issue is that when fetching the logo, we don't include
      information about the current company. Thus, we include the logo of the default
      company (at url /logo). We can easily specifiy which logo we need via the url
      /logo?company={company_id}. As dynamic information cannot be included into a
      CSS, we include this into the XML as it is done with other images rendered.
      In our case, we don't need to retrieve the logo and map it to base 64 (for
      ressources requiring to be logged in) because the logo is a resource available
      to anyone.
      
      opw-2745014
      
      closes odoo/odoo#102098
      
      X-original-commit: 7a41e93f
      Signed-off-by: default avatarTrinh Jacky (trj) <trj@odoo.com>
      Signed-off-by: default avatarDesausoi Laurent (lade) <lade@odoo.com>
      120ca080
    • Adrien Widart's avatar
      [FIX] base, barcodes: convert barcode type if incorrect encoding · 89d2c42b
      Adrien Widart authored
      **(adapted) backport of 4c9c848f**
      
      To reproduce the issue:
      (Need stock_barcode)
      1. Create a product:
          - Barcode: 1234567890123
      2. Print the label
      3. Try to scan the barcode and check the value read.
      
      Error: The value is 1234567890128, the last digit is incorrect (8
      instead of 3)
      
      When printing a barcode, we use the library 'report-lab' to generate a
      barcode image from a value and a barcode type. In case of EAN-13, if the
      value contains a non-digit character, it will raise an error. We then
      catch the error and retry to generate the barcode according to the
      barcode type Code128:
      https://github.com/odoo/odoo/blob/87698d90f02bfe93c6e643f4876a5ccd74788eff/odoo/addons/base/models/ir_actions_report.py#L569-L575
      However, if the value contains only digits, the method will use the 12
      first digits:
      https://github.com/mattjmorrison/ReportLab/blob/dade0f303cb6fcdbe535c4cc92e6102c2417b699/src/reportlab/graphics/barcode/eanbc.py#L187-L188
      
      
      and will then add the last one, the check digit, which is computed by
      the library. This explains why, in the above use case, the barcode value
      returned by the scanner is not the same than the expected one.
      
      Note: Similar behavior with type EAN-8
      
      OPW-2980717
      
      closes odoo/odoo#100231
      
      Signed-off-by: default avatarSteve Van Essche <svs@odoo.com>
      89d2c42b
    • Renaud Thiry's avatar
      [FIX] web_editor: onAttachmentChange only composer · 07eea72d
      Renaud Thiry authored
      
      Due to a previous fix, attachments uploaded through media dialog would appear in the attachments of mail marketting.
      That fix prevents attachments from 'dangling' and being garbage collected later.
      
      That fix is now limited to the mail composer in this commit as attachments are only garbage collected for that model, for now.
      
      related commit: c112361b
      
      task 3003939
      
      closes odoo/odoo#101858
      
      Signed-off-by: default avatarThibault Delavallee (tde) <tde@openerp.com>
      07eea72d
    • MerlinGuillaume's avatar
      [FIX] web: show decimal part of floats in exported xlsx · 753bed93
      MerlinGuillaume authored
      If the decimal separator of the currently selected language is a comma,
      exporting data in an xlsx would use a wrong float format
      
      Steps to reproduce:
      1. Install Invoicing
      2. Go to Settings > Languages, add 'French / Français' language and
         switch to it
      3. Go to Facturation > Fournisseurs > Factures
      4. Export the data (there should be at least one amount with a decimal
         part)
      5. The decimal part of the amounts is not displayed
      
      Solution:
      Always use the same decimal separator to print in the xlsx as we can
      only use a dot as a decimal separator (the comma is used as the thousand
      separator). The value will then be displayed to the user according to
      his OS regional settings (see https://xlsxwriter.readthedocs.io/format.html#number-formats-in-different-locales
      
      )
      
      Problem:
      When using a comma for the float format, we actually specify the format
      of the integral part of the number (the thousands) without displaying
      the decimal part (which is represented with the dot)
      
      opw-2965984
      
      closes odoo/odoo#99286
      
      Signed-off-by: default avatarJulien Castiaux <juc@odoo.com>
      753bed93
    • Omar (Comunitea)'s avatar
      [IMP] l10n_es: Add taxes for 'ISP Bienes de Inversión' · 28e233e1
      Omar (Comunitea) authored
      
      closes odoo/odoo#101863
      
      X-original-commit: a8333b81
      Signed-off-by: default avatarJosse Colpaert <jco@odoo.com>
      28e233e1
    • Omar (Comunitea)'s avatar
      [CLA] Comunitea · bb4a0301
      Omar (Comunitea) authored
      X-original-commit: 1757a853
      Part-of: odoo/odoo#101863
      bb4a0301
    • Nicolas Lempereur's avatar
      [FIX] mail: outlook 365 warning not hiding mail · ed7280ce
      Nicolas Lempereur authored
      It seems that there is a rather frequent warning that can be added to
      mail received by outlook 365 and that has the form:
      
      ```
      <table border="0" cellspacing="0" cellpadding="0" align="left" width="100%" style="width:100.0%">
      ...Caution: This is an external email and has a suspicious subject or content...
      </table>
      ```
      
      The combination of `align="left" width="100%"` means that a div after
      this alert will probably have a width of 0 (because the previous content
      is floating to the left, and taking 100% of width so there is 0 pixel of
      width remaining).
      
      This is not an issue in general, but in Odoo this conflicts with a code
      that adds scrollbar if a message content overflows (but here since width
      is 0 pixel the content is just hidden).
      
      With this commit, if we detect the code that is used in all our received
      report (width=100% and float=left), we ignore the float to prevent this
      issue from happening.
      
      An alternative is to avoid Outlook 365 adding this structure in a
      message (see [1]), but this is only possible if we can change the
      configuration where this structure is added (eg. we can't if it is
      a customer that is forwarding a mail already broken).
      
      [1]: https://learn.microsoft.com/en-us/microsoft-365/security/office-365-security/set-up-anti-phishing-policies?view=o365-worldwide#first-contact-safety-tip
      
      
      
      opw-2887342
      opw-2925222
      opw-2946587
      
      closes odoo/odoo#101295
      
      Signed-off-by: default avatarAlexandre Kühn (aku) <aku@odoo.com>
      ed7280ce
  9. Oct 03, 2022
    • Pierre Verkest's avatar
      [FIX] account: account move report date label · 1b80454f
      Pierre Verkest authored
      
      Change 'Invoice date' label on report according move_type
      
      closes odoo/odoo#101242
      
      X-original-commit: 706db8a7
      Signed-off-by: default avatarWilliam André (wan) <wan@odoo.com>
      Co-authored-by: default avatarwan <wan@odoo.com>
      1b80454f
    • mafo-odoo's avatar
      [FIX] hr: same view when opeing employee from messaging · cf19e314
      mafo-odoo authored
      
      Steps to reproduce:
      - set demo to receive notifs in Odoo
      - go to employees
      - click "launch plan" for demo user
      - login as demo user
      - Click on the link for the activity that is sent in discuss
      
      Issue:
      There is no chatter in the view
      
      Explanation:
      the view of en employee coming from messaging is always
      hr.employee.public that does not contain the chatter.
      
      opw-2990577
      
      closes odoo/odoo#100959
      
      Signed-off-by: default avatarKevin Baptiste <kba@odoo.com>
      cf19e314
    • Nshimiyimana Séna's avatar
      [FIX] payment_alipay: format Alipay API parameter total_fee correctly · 7ecaae93
      Nshimiyimana Séna authored
      
      Steps to reproduce:
      * setup Alipay in test mode (note that Alipay's test node only support
        one currency: the USD)
      * create an invoice. Make sure the invoice's total has decimal places
      * generate a payment link for that invoice
      * go to the generated link
      * select Alipay as the payment method and click pay.
      
      You should be met with an INVALID_PARAMETER message.
      
      Cause:
      Alipay's doc states that the parameter 'total_fee' can only have two
      decimal places. Currently, this requirement is not always respected
      
      opw-2996278
      
      closes odoo/odoo#101798
      
      Signed-off-by: default avatarAntoine Vandevenne (anv) <anv@odoo.com>
      7ecaae93
    • MerlinGuillaume's avatar
      [FIX] resource: show planning resource in its timezone · eaf7bb52
      MerlinGuillaume authored
      
      Work hours in a planning do not respect the timezone
      
      Steps to reproduce:
      1. Set your computer timezone to 'America/New_York'
      2. Install Manufacturing
      3. Go to Settings > Manufacturing > Operations and enable Work Orders
      4. Go to Settings > Technical > Resource > Working Times and open
         'Standard 40 hours/week' (San Francisco)
      5. Edit the timezone to 'America/New_York'
      6. Go to Manufacturing > Planning > Planning by Workcenter and trigger
         the day view
      7. The work hours are not correct as they do not respect the timezone
      
      Solution:
      Add the timezone of the resource's calendar when computing
      unavailabilities
      
      opw-2903591
      
      closes odoo/odoo#100538
      
      Related: odoo/enterprise#31913
      Signed-off-by: default avatarLaurent Stukkens (ltu) <ltu@odoo.com>
      eaf7bb52
    • Adrien Widart's avatar
      [FIX] mrp_account: generate analytic lines only once · 90f3da01
      Adrien Widart authored
      
      When the analytic account feature is enabled, if a user marks a MO as
      done and if it displays a wizard (consumption warning, backorder...),
      the analytic lines will be generated twice.
      
      To reproduce the issue:
      (Need mrp_workorder, account_accountant)
      1. In Settings, enable "Analytic Accounting"
      2. Create a work center WC:
          - Cost per hour: 100
          - Analytic Account: a new analytic account AA
      3. Create two products P_finished and P_compo
          - P_finished is storable
          - P_compo is consumable
      4. Create a BoM:
          - Product: P_finished
          - Components: 1 x P_compo
          - Operations: add a new one:
              - Work Center: WC
      5. Create and confirm a MO with 1 x P_finished
      6. Start the WO for few seconds then mark it as done
      7. Set the consumed qty of P_compo to 2
      8. Mark the MO as done
          - there is a consumption warning, confirm it
      9. Open the account analytic lines related to AA
      
      Error: there are two same lines for the MO, there should be only one
      
      Step 8, when the user marks the MO as done, we call `button_mark_done`.
      Because there is a consumption issue, this method returns an action (the
      wizard with the consumption warning). However, in
      `/mrp_account.button_mark_done`, we still generate the costs (this is
      where the analytic lines will be generated). That is not correct since
      the MO is not yet done. As a result, when confirming the consumption
      warning, it leads again to `button_mark_done`, so we will generate the
      cost a second time.
      
      Note: this issue will happen each time the call of `button_mark_done`
      does not mark the MO as done (for instance, in case of a backorder)
      
      OPW-2972407
      
      closes odoo/odoo#101528
      
      Signed-off-by: default avatarTiffany Chang <tic@odoo.com>
      90f3da01
  10. Oct 02, 2022
  11. Sep 30, 2022
Loading