Skip to content
Snippets Groups Projects
  1. Jan 14, 2020
  2. Jan 31, 2020
  3. Jan 27, 2020
  4. Jan 07, 2020
  5. Jan 06, 2020
  6. Jan 30, 2020
    • Thibault Francois's avatar
      [FIX] payment: don't show unwanted payment token · 9edad5d9
      Thibault Francois authored
      
      The access right on payment_token is based on the partner_id
      linked with the user
      
      If there is token link with the public user,
      they are shown for every request were the partner_id is not defined
      If you are logged with an internal user with sales access right,
      you'll see all the payment_token linked with the acquirer
      
      We should avoid both situation and show only the payment_token
      from the legit partner_id
      the one of the current user or the one given as parameter
      
      closes odoo/odoo#44319
      
      Signed-off-by: default avatarDamien Bouvy (dbo) <dbo@odoo.com>
      Co-authored-by: default avatarDamien Bouvy <dbo@odoo.com>
      9edad5d9
    • Andrea Grazioso (agr-odoo)'s avatar
      [FIX] point_of_sale: send receipt ticket as attachment · 443b81b2
      Andrea Grazioso (agr-odoo) authored
      
      Open POS, make an order, on the payment screen select email, select a
      customer, pay and validate.
      
      The receipt will be not an attachment, but a code image. The side effect
      is the visualization dependant on the viewer (email client, webmail,
      etc.)
      
      opw-2179303
      
      closes odoo/odoo#44316
      
      Signed-off-by: default avatarNicolas Martinelli (nim) <nim@odoo.com>
      443b81b2
    • Xavier Morel's avatar
      [IMP] core: only show JS stacktrace for exceptions & console.trace · 34500853
      Xavier Morel authored
      
      When revamping the message fetching from the headless browser, since
      stacktraces are available (by default) on console.error and
      console.warning events I assumed it could / would be useful to show
      them in the Python-level log. And they *were* quite useful during the
      original fixing stage.
      
      However they turn out not to be very useful day-to-day:
      
      * they add a lot of noise and lead to the error message itself being
        lost in a big block of red / logging.error
      * when a tour fails (which is the vast majority of the failures) the
        JS stacktrace always points to the same location in the tour
        manager (the one which goes "this step never succeeded") which is
        completely useless
      * aside from being bundled, normal JS code (where the stacktrace could
        be useful) doesn't generally use console.warn or console.error, it's
        going to straight blow up with an exception in which case we always
        get a stacktrace
      
      Leave the stacktrace formatting for console.trace as that's pretty
      much the only point of using this instead of console.log.
      
      closes odoo/odoo#44311
      
      Signed-off-by: default avatarXavier Morel (xmo) <xmo@odoo.com>
      34500853
    • Alexandre Kühn's avatar
      [FIX] web: update search view menu on click IME suggestion menu · 4dffbbbc
      Alexandre Kühn authored
      
      Before this commit, when typing something in the search view in
      Japanese, and then clicking on a suggestion from the IME dropdown
      menu, the search view menu did not update with selection.
      
      Steps to reproduce:
      
      - Enable Japanese IME in hiragana mode;
      - Type "test" in search view;
      - Soft-select another suggestion item, e.g. "テスト";
      - Double-click on suggestion item "test";
      
      => The search view menu still detects "テスト".
      
      As a result, clicking on any of these search view suggested filters
      picks "テスト" instead of "test".
      
      This commit fixes the issue by updating search menu when clicking
      in a suggestion in the IME menu.
      
      opw-2061590
      
      closes odoo/odoo#44304
      
      X-original-commit: 0bca4c0883f2b58842da6a8c1a4e26bf2444d5f3
      Signed-off-by: default avatarAlexandre Kühn (aku) <aku@odoo.com>
      4dffbbbc
  7. Jan 29, 2020
  8. Jan 30, 2020
    • Andrea Grazioso (agr-odoo)'s avatar
      [FIX] sale_timesheet_purchase: show only Vendor Bills in smart button · 5a476fb4
      Andrea Grazioso (agr-odoo) authored
      
      Under Projects, click on Overview, click on the smart button "Vendor
      Bills".
      
      The list will display account moves based only on the analytic account
      and not the actual type of the move
      
      opw-2180598
      
      closes odoo/odoo#44302
      
      Signed-off-by: default avatarNicolas Martinelli (nim) <nim@odoo.com>
      5a476fb4
    • Alexandre Kühn's avatar
      [FIX] mail: no traceback on click channel mention from chat window · 710fda06
      Alexandre Kühn authored
      
      Before this commit, when clicking on a channel mention from a chat
      window, it crashed with the following error:
      
      `TypeError: channel.detach is not a function`
      
      This happens due to `MailService.joinChannel()` returning a promise
      that is resolved with channel ID, instead of a channel object.
      `channel.detach()` becomes `<Number>.detach()`, which is treated
      like `undefined()`, hence crash.
      
      closes odoo/odoo#44293
      
      X-original-commit: 80650eb360caff76181c0d919a3c62e602375931
      Signed-off-by: default avatarAlexandre Kühn (aku) <aku@odoo.com>
      710fda06
    • Nicolas Martinelli's avatar
      [FIX] account: do not call action_invoice_paid · 97b00da9
      Nicolas Martinelli authored
      
      `action_invoice_paid` should be called when the computed field
      `invoice_payment_state` is set. However, the recomputation doesn't go
      through `create` or `write` (since the field is protected).
      
      A workaround  is to call it at reconciliation. Indeed, an invoice can
      only be paid when it is reconciled. For invoices with an amount of zero,
      we call the method at posting.
      
      closes odoo/odoo#44259
      
      Signed-off-by: default avatarNicolas Martinelli (nim) <nim@odoo.com>
      97b00da9
    • Andrea Grazioso (agr-odoo)'s avatar
      [FIX] sale: propagate bank account infos to invoice · 5f1f60c1
      Andrea Grazioso (agr-odoo) authored
      
      Fill bank account information for the current company
      Create an Invoice by hand, under "Other info" tab the Bank Account
      section is filled.
      Now create a Sale order, confirm it and create the invoice.
      
      The invoice created from the sale order is missing the Bank Account
      section, this in turn disable the QR code generation. Adding th
      erequired information when creating the invoice from the sale
      order fix the issue
      
      opw-2181580
      
      closes odoo/odoo#44245
      
      Signed-off-by: default avatarNicolas Martinelli (nim) <nim@odoo.com>
      5f1f60c1
    • Pedro M. Baeza's avatar
      [FIX] account: Perform B2B/B2C overlapping check per user · 375b33f0
      Pedro M. Baeza authored
      
      Steps to reproduce the problem:
      
      - Have user A with B2B group.
      - Have user B with B2C group.
      - Add simultaneously on both - via write - another group (or call `_check_one_user_type`).
      
      Expected result:
      
      - No problem
      
      Got result:
      
      - Error "A user cannot have both Tax B2B and Tax B2C..."
      
      That's because the check is performed for more than one user each time, while it has
      to be record per record. The implementation of `_has_multiple_groups` actually
      checks if the passed recordset is only one record, and if not, it looks directly for all
      existing users, so also the case of both users A and B being in the same B2x group, but
      having a 3rd user in the other group will fail.
      
      Revisiting the query in `_has_multiple_groups`, there's a hidden error when you use it
      for only one ID because a missing space.
      
      closes odoo/odoo#44282
      
      X-original-commit: 83f104b2
      Signed-off-by: default avatarNicolas Martinelli (nim) <nim@odoo.com>
      375b33f0
    • Nicolas Martinelli's avatar
      [FIX] base_vat: cache VIES result · 0ff378f3
      Nicolas Martinelli authored
      
      - Activate the VIES online check
      - Create a partner of type Company and add several contacts
      - Set the VAT number, save
      
      A call to VIES is done for each contact.
      
      The field VAT is propagated from the parent company to the children,
      triggering the check on all partners. This is not problematic for local
      checks since those are fast. However, online checks take time which can
      lead to a timeout of the request if there are many contacts.
      
      Since the check is triggered through a constraint (`check_vat`), only
      one record at a time is checked. Therefore, it is not possible to build
      a local list of the VAT numbers to avoid duplicated verifications inside
      a single transaction.
      
      The solution is to store the result in cache. Since the call to the
      external API may fail (e.g. timeout), we extract the check to store only
      the successful calls.
      
      Closes #43939
      opw-2181744
      
      closes odoo/odoo#44281
      
      X-original-commit: 0c7a3e95
      Signed-off-by: default avatarNicolas Martinelli (nim) <nim@odoo.com>
      0ff378f3
    • Maulik Raval's avatar
      b08f6587
    • Xavier Morel's avatar
      [IMP] core, web: test failure reporting · 78121b68
      Xavier Morel authored
      
      * remove misleading documentation about a "test failed" message, in
        13.0 any uncaught exception or console.error will cause the current
        test to be interpreted as failed
      * fix tour manager to console.error its step and not add a second
        useless error message
      * fix menu tester to try and display the failure cause on failure
      * improve qunit's test reporter to print the number of tests failed in
        case of test suite failure
      
      Should make test failures in tours a bit clearer.
      
      closes odoo/odoo#44264
      
      Signed-off-by: default avatarXavier Morel (xmo) <xmo@odoo.com>
      78121b68
    • Raphael Collet's avatar
      [FIX] base: avoid systematic invalidation of web.report_assets_common · b1ddd9c9
      Raphael Collet authored
      
      The issue is: the user wants to send an invoice to a customer, changes
      the email template, and after the onchange, the field "Template" of the
      wizard is empty.
      
      Here is what happens.  The onchange on the template renders a PDF file
      with the corresponding invoice document.  The rendering builds some
      assets to convert the invoice to a PDF document, and former assets are
      deleted.  The deletion of former assets (`ir.attachment` records)
      invalidates the whole record cache, which implicitly clears all the
      fields of the record of the onchange.
      
      The problem is that the asset is systematically invalidated by the
      rendering of the report itself.  This hack changes the CSS assets to
      introduce company-specific colors for the rendering of reports.  This
      implementation is actually not consistent with the fact that assets are
      kept in cache by the server.
      
      This patch does not fix the root cause of the problem, but it reduces
      the sides effects of it, and makes the issue above less frequent.  It
      simply consists in not updating the asset's attachment when its value is
      already correct.
      
      OPW 2168623
      OPW 2171040
      
      closes odoo/odoo#44225
      
      Signed-off-by: default avatarOlivier Dony (odo) <odo@openerp.com>
      b1ddd9c9
    • wan's avatar
      [FIX] l10n_fr_fec: CompAuxNum changes · 955eec23
      wan authored
      
      opw-2122776
      * CompAuxNum should be the code of the account concatenated with the id
      of the client
      * It should be popuated only if it is a receivable/payable
      
      The problem is the export of the partner ID in the column G
      "CompAuxNum". We only export the ID of the linked customer/vendor. When
      they import the FEC into their software to make tax declarations and
      annual accounts. The system will notice if an account is filled in in
      the column G and will override the account in column E with the ID of
      the partner. As the ID is not a real account, they cannot use the FEC to
      import correctly.
      
      closes odoo/odoo#43985
      
      Signed-off-by: default avatarQuentin De Paoli (qdp) <qdp@openerp.com>
      955eec23
  9. Jan 29, 2020
  10. Jan 28, 2020
  11. Jan 29, 2020
  12. Jan 28, 2020
    • Mathieu Duckerts-Antoine's avatar
      [FIX] web: fix date filters · 096fdc7d
      Mathieu Duckerts-Antoine authored
      
      Issue
      
          If month - 1 or month - 2 are in the previous year, the filter is
          incorrect.
      
          ex: Date = Jan. 2020, Filter = Dec. 2019
              => last_year__last_month = 2018-12 instead 2019-12
      
      Cause
      
          If date is 2020-01-20
      
          Selecting December => adding param "last_month"
          Selecting 2019 => adding param "last_year"
      
          Applying "last_month" => date become 2019-12-01
          Applying "last_year" => date become 2018-12-01
      
      Solution
      
          Detect the right year to activate by default
          when a month is selected and no year is selected.
          With that solution it is not possible to get records in Jan. 2020
          or in Dec. 2019 only for instance but the global functioning
          of date filters stays the same as before.
      
      OPW-2169528
      
      closes odoo/odoo#44092
      
      Signed-off-by: default avatarNicolas Lempereur (nle) <nle@odoo.com>
      Co-authored-by: default avatarJason Van Malder <jvm@odoo.com>
      096fdc7d
  13. Jan 29, 2020
  14. Jan 28, 2020
    • Nicolas Lempereur's avatar
      [FIX] base: search user by name negatively · 6fd4fb6a
      Nicolas Lempereur authored
      
      When we name_search a res.user, we have a special hack so we will
      firstly perform an exact search on the res.users login, if none is found
      we will search over res.users name.
      
      This is intended but in the case of negative search since 660cebb4,
      for example operator='not ilike' and name='test' would probably just
      return all user that do not have a login that is exactly test.
      
      This is not the intended behavior, in this instance we should just
      return user that do not have "test" in their names.
      
      Without fix, added test would fail on:
      
      - .name_search('vlad', operator='not ilike') => finding everyone but
        user with exactly login vlad instead of user not containing vlad in
        their name
      
      - .name_search('', operator='not ilike') => find all users instead of
        finding no user
      
      - .name_search('lad', operator='not ilike') => find all users instead of
        just finding "Nothing similar"
      
      opw-2170517
      closes #44040
      
      closes odoo/odoo#44148
      
      X-original-commit: 2378fb63
      Signed-off-by: default avatarNicolas Lempereur (nle) <nle@odoo.com>
      6fd4fb6a
  15. Jan 29, 2020
  16. Jan 28, 2020
Loading