Skip to content
Snippets Groups Projects
  1. Dec 06, 2019
  2. Dec 05, 2019
    • wan's avatar
      [FIX] l10n_ch: use OCRB font · 8f4a390c
      wan authored
      
      OPW 2151580
      There is a needed font for the swiss IRS report: OCR-B. This commit
      ensures it is used.
      
      closes odoo/odoo#41428
      
      Signed-off-by: default avatarNicolas Martinelli (nim) <nim@odoo.com>
      8f4a390c
    • Nicolas Lempereur's avatar
      [FIX] account: reconcilation partial amount nice locale · b2594678
      Nicolas Lempereur authored
      
      If you reconcile for example a bank statement of 200,00€ with a
      customer invoice of 300,00€, you get a pen icon next to the 300,00€
      and if you click on it you have an editing cell with:
      
      200.00
      
      But if you validate this, this will be parse in the current language
      number formatting so if you have . as thousands separator, this number
      will become 20000 which is not expected (higher than original invoice).
      
      With this changeset, we display the number in the current lang format.
      
      note: with this fix, number of decimals can be different than 2
      
      opw-2150396
      closes #41410
      
      closes odoo/odoo#41431
      
      X-original-commit: 0fa0acca963075176bd8195ec66581653940ca7f
      Signed-off-by: default avatarNicolas Lempereur (nle) <nle@odoo.com>
      b2594678
  3. Dec 02, 2019
  4. Dec 05, 2019
  5. Dec 04, 2019
    • Nicolas Lempereur's avatar
      [FIX] pad: no deadlock on pad readonly modification · b6325ae4
      Nicolas Lempereur authored
      
      When the adapation without jQuery promise was done for 12.3 (in
      bfed5742) the hack for always saving a pad URL was added in
      the deferrence of the start method.
      
      This caused that in the following conditions:
      
      - pad URL is set
      - form is in edit mode
      - a change in the form change the readonly status of the pad
      
      => we would have a mutex lock (of the form change) waiting for the pad
      that is being rerendered to finish its start but that can only be done
      once the mutex is unlocked (because setValue of the pad is protected by
      the same mutex) => so we have deadlock and interface does not allow to
      save or do any other change.
      
      This happened for example if we had a project.project A without
      collaborative pad, project.project B with collaborative pad, and if we
      moved a task from project B to project A then back to project B.
      
      With this change, we get back to the behavior before bfed5742 of not
      waiting for the fake "setValue" in `start` of Pad.
      
      Without the change, added test fails with:
          Expected 1 assertions, but 0 were run
      
      because interface is deadlocked so write does not happen.
      
      opw-2150827
      closes #41346
      
      closes odoo/odoo#41363
      
      X-original-commit: cc73abb218e17756b21824a192f4461eb8537c0e
      Signed-off-by: default avatarNicolas Lempereur (nle) <nle@odoo.com>
      b6325ae4
  6. Dec 05, 2019
  7. Dec 04, 2019
  8. Dec 05, 2019
    • Nicolas Martinelli's avatar
      [FIX] account: sequence of AML · f4571e2f
      Nicolas Martinelli authored
      
      When printing an invoice, the order of the lines not always match the
      order in the interface.
      
      It occurs because `account.move.line` contains a `sequence` field which
      is taken into account in the UI but not used in the report. Note that
      commit 0a5955bf explicitly removed from the `_order`.
      
      opw-2145878
      opw-2147922
      
      closes odoo/odoo#41380
      
      Signed-off-by: default avatarNicolas Martinelli (nim) <nim@odoo.com>
      f4571e2f
    • Damien Bouvy's avatar
      [FIX] payment_stripe_sca: better error handling · cad30c5b
      Damien Bouvy authored
      In some cases, Stripe will return the result of a transaction with
      a faulty HTTP Status (e.g. 4XX statuses) - not because the request
      was malformed, but because the payment failed. It is a bit unfortunate
      that Stripe would not differentiate between payment status and request
      validity, but that's the state of things.
      
      This commit ensures that such a response will be logged correctly, by
      making the call to `raise_for_status` conditionnal on the response object's
      status code and internal structure, forwarding the response's json to the
      validation flow if the status is in the 4XX range and a `code` key is
      found in the response, as described in https://stripe.com/docs/error-codes
      
      
      
      While testing this fix, it became apparent that some error message
      processing in the frontend was not correctly handled as well - instead
      of purely rejecting the promise, a failed payment should still send its
      payload to the backend, to allow the server to put the transaction in
      the correct state according to the response.
      
      closes odoo/odoo#41377
      
      Signed-off-by: default avatarDamien Bouvy (dbo) <dbo@odoo.com>
      cad30c5b
    • jev-odoo's avatar
      [FIX] payment: No error logged if no real error in transaction · 4f53d8ad
      jev-odoo authored
      Before this commit, trying to put a transaction in a state
      where it was already in was causing an error.
      
      For example: Putting a transaction in'Done' when it was
      already in'Done' caused an error
      'Only draft/authorized transaction can be posted.'
      
      Now, we just log a note that the transaction is
      already in the good state and pass over.
      4f53d8ad
  9. Dec 04, 2019
    • Alexandre Kühn's avatar
      [FIX] bus, mail: navigate from tests with mocked bus services · 4ef337a0
      Alexandre Kühn authored
      
      Before this commit, when navigating from test environment (e.g.
      page reload), it crashed with following error:
      
      `TypeError: Cannot convert undefined or null to object`
      
      This error comes from mocked bus services in tests: even when they
      have been destroyed, they handle the window event 'unload'. They
      no longer have a parented parent, so `this.call()` returns
      `undefined`, hence the crash.
      
      This commit prevents mocked bus services to listen on window 'unload'
      event. Tests must always simulate this window event by explicitly
      calling the handler.
      
      closes odoo/odoo#41374
      
      X-original-commit: fd08d04f
      Signed-off-by: default avatarAlexandre Kühn (aku) <aku@odoo.com>
      4ef337a0
    • Nicolas Martinelli's avatar
      [FIX] account: display reconciliation model · 87775ba3
      Nicolas Martinelli authored
      
      - Create a Reconciliation Model and set 'Journals', e.g. Bank
      - Create a payment in the Bank journal
      - Open the Payment Matching
      
      The model created is not available.
      
      In the case of the Payment Matching, `state.st_line.journal_id` is
      `undefined`, so it is always filtered out.
      
      Since the filtering should only apply on the Bank Statement Matching, we
      do not filter out them in Payment Matching.
      
      opw-2149154
      
      closes odoo/odoo#41338
      
      X-original-commit: 74a26acb
      Signed-off-by: default avatarNicolas Martinelli (nim) <nim@odoo.com>
      87775ba3
  10. Dec 03, 2019
    • Nicolas Martinelli's avatar
      [FIX] stock_picking_batch: set as done · eeeef3a0
      Nicolas Martinelli authored
      
      - Create a batch picking with all available products
      - Click on 'Done'
      - On the 'Immediate Transfer' wizard, choose 'Cancel'
      
      The picking is set to done anyway.
      
      This is because we set the picking as done whatever the action on the
      wizard.
      
      If there is a wizard, we don't set the batch as done. This avoids
      unwanted change of status, but requires the user to click twice on the
      'Done' button.
      
      opw-2147944
      
      closes odoo/odoo#41366
      
      X-original-commit: 0f9f3ded
      Signed-off-by: default avatarNicolas Martinelli (nim) <nim@odoo.com>
      eeeef3a0
  11. Dec 04, 2019
  12. Dec 03, 2019
  13. Dec 04, 2019
  14. Dec 03, 2019
  15. Nov 29, 2019
  16. Dec 03, 2019
Loading