Skip to content
Snippets Groups Projects
  1. Jan 13, 2021
    • Raphael Collet's avatar
      [FIX] core: compute editable field with a default should not recompute · 2ccc7352
      Raphael Collet authored
      Consider a model with a field F and a computed editable field G that
      depends on F.  Assume we open a form view, and both F and G have a
      default value.  The first onchange should return F and G with their
      respective default values.  In other words, the field G should not be
      recomputed even if its dependency F was assigned a default value.
      
      The use-case that showed the issue is batch payments.  When adding a new
      payment in the one2many field of a batch, the new payment should use the
      batch's payment method by default.  The default value for the payment's
      method is assigned by context on the one2many field in the view.  Before
      this patch, the new payment's method was given by the computation of the
      field, and its default value was ignored.
      
      Side note: another test was fixed, but that's because the test was not
      consistent with the way Odoo 14.0 manages defaults and onchanges.
      2ccc7352
  2. Jan 12, 2021
  3. Jan 13, 2021
    • nie's avatar
      [FIX] payment_authorize: Show UserError to user · 2636b9f5
      nie authored
      Steps:
      - Install website_sale and payment_authorize
      - Set up a tunnel (e.g. ngrok)
      - Log in to Authorize.Net backend
      - Go to Account > Response/Receipt URLs > Add Url
      - Enter the tunnel URL
      - In Odoo, go to Website > Configuration > eCommerce > Payment Acquirers
      - Edit "Authorize.Net"
        - Credentials tab:
          - State: Test Mode
          - API Login Id, Transaction and Signature key
          - Save, then Generate Client Key
        - Configuration tab:
          - Payment Flow: Payment from Odoo
      - Stop the server
      - Replace https://github.com/odoo/odoo/blob/1b9b99dc2643910c1412b564affccf02ba1e55d9/addons/payment_authorize/models/authorize_request.py#L46 with `resp = {'messages': {'resultCode': 'Error', 'message': [{'code': 'E00027', 'text': 'An error occurred during processing. Call Merchant Service Provider.'}]}}`
      - Restart the server
      - Go to "Website" > "Go to Website" > Shop
      - Add a product to the basket
      - Check out the basket
      - Choose "Credit Card (powered by Authorize) Test Mode"
      - Pay Now
      - Enter any card data (e.g. 4111 1111 1111 1111 - 01/22 - 900)
      
      Bug:
      When the Pay Now process is done, the customer is redirected to
      `/shop?error=invalid_token_id`. No errors are shown.
      
      Explanation:
      The patch simulates an error from Authorize.Net happening during their
      process. Using the special card numbers won't trigger the wanted
      behavior.
      
      When getting an error from Authorize.net, a `UserError` is raised. This
      error is then caught in the controller to return a formatted message.
      However, returning a dict in this part of the code embeds it inside
      `{'result': [...]}`. The error message is, thus, not blocking the form's
      redirection and the user gets redirected to the form action, i.e.
      `/shop/payment/token`. This route requires `pm_id`, but, in this
      scenario, it's an empty string. This leads to another redirection to
      `/shop/?error=invalid_token_id` as seen here:
      https://github.com/odoo/odoo/blob/1b9b99dc2643910c1412b564affccf02ba1e55d9/addons/website_sale/controllers/main.py#L938-L941
      
      
      
      Letting the error bubble up forces the backend to return a blocking
      error response. This makes the fronted display the Authorize.Net error
      underneath the provider selection, and prevents it from redirecting.
      
      opw:2419260
      
      closes odoo/odoo#64462
      
      X-original-commit: c7a387b9
      Signed-off-by: default avatarbackspac <backspac@users.noreply.github.com>
      2636b9f5
    • Xavier Dubuc's avatar
      [FIX] mail: fix click event handling when renaming DM · b850a4ee
      Xavier Dubuc authored
      
      task-2414811
      
      closes odoo/odoo#63785
      
      Signed-off-by: default avatarSébastien Theys (seb) <seb@odoo.com>
      b850a4ee
  4. Jan 12, 2021
  5. Jan 11, 2021
  6. Dec 22, 2020
    • mir-odoo's avatar
      [IMP] hr_holidays: Fix the filter collapse issue. · 7cdd881f
      mir-odoo authored
      
      Currently, When go to time off > Managers menu > open 'Time off' menu,
      now switch view to calendar view and try to collapse "Time off Type "
      filter . it does not collapse due to extra white sapce in the title
      and due to that data-target does not set properly.
      
      so in this commit, replace the title's white space with '_' and set the
      data-target properly so it works good.
      
      closes odoo/odoo#63636
      
      Taskid: 2413877
      Signed-off-by: default avatarYannick Tivisse (yti) <yti@odoo.com>
      7cdd881f
  7. Jan 12, 2021
  8. Jan 05, 2021
  9. Jan 12, 2021
  10. Jan 11, 2021
    • Jeremy Kersten's avatar
      [FIX] website: handle MissingRecord in slug_matching · abb1d35c
      Jeremy Kersten authored
      In case of record doesn't exit, raise a 404 instead of crash in slug function with
      odoo.exceptions.MissingError: Record does not exist or has been deleted.
      
      slug_matching() -> build() -> to_url() -> slug()
      
      How to reproduce:
         Add a 308 from /shop/<product>  to /mag/<product>
         Try to access /shop/<product>-unexisting_ID will crash with:
            odoo.exceptions.MissingError
      abb1d35c
    • Jeremy Kersten's avatar
      [FIX] website: fix slug_matching RequestUID · 10c8ce2e
      Jeremy Kersten authored
      Before this commit, try to access original route that has been configured
      with a redirect 308 will crash with an exception:
         psycopg2.ProgrammingError: can't adapt type 'RequestUID'
      
      sudo() from PR v10 has been converted to new with_user system without check.
      When we replace during review sudo by with_user, we don't reproduce it
      because we always try to access /mag/<product> instead of /shop/<product>
      
      How to reproduce:
         Add a 308 from /shop/<product>  to /mag/<product>
         Try to access /shop/<product> will crash with:
            psycopg2.ProgrammingError: can't adapt type 'RequestUID'
      10c8ce2e
    • Jeremy Kersten's avatar
      [FIX] website: fix url_for when no qs · 16d3427f
      Jeremy Kersten authored
      Before this commit, old url was not rewrited in case you don't have any query
      string.
      16d3427f
  11. Jan 08, 2021
  12. Jan 11, 2021
    • Romain Derie's avatar
      [FIX] web_editor, website: prevent multiple click on save · 80592abd
      Romain Derie authored
      
      Clicking on save on html editor is taking quite some time. The user might think
      something is not happening and need to click again.
      If he does click again, 2 write RPC will be sent, making the COW business code
      being triggered twice, ultimately leading to create 2 COW.
      
      Instead of
        A
       / \
      B   B'
      
      It will be
          A
        / | \
      B   B' B'
      With as many B' than there is click on save.
      
      This commit adds a generic helper to make a button load/spin.
      
      closes odoo/odoo#63417
      
      Signed-off-by: default avatarQuentin Smetz (qsm) <qsm@odoo.com>
      80592abd
  13. Jan 08, 2021
  14. Jan 11, 2021
  15. Jan 08, 2021
  16. Jan 11, 2021
    • Arnold Moyaux's avatar
      [FIX] stock: Add index for free reservation · 74ea87d0
      Arnold Moyaux authored
      
      Free reservation is called each time an extra quantity is
      used on a move (and for each immediate transfer). It means
      that the function is called many times on a database with an
      inventoy activity. Also _free_reservation method do a search
      on fields that are not indexed, and is slow on large database.
      
      This index is specific to _free_reservation.
      On a live database with an important stock, the queries dropped from 265ms
      to 1.5ms.
      
      closes odoo/odoo#64311
      
      Signed-off-by: default avatarArnold Moyaux <amoyaux@users.noreply.github.com>
      74ea87d0
    • Adrien Widart's avatar
      [FIX] mrp: reordering rules for BoM product · 609e2f44
      Adrien Widart authored
      
      When running the scheduler, if one of the concerned product  is a
      kit, it will always generate a RfQ for the components, even if there
      are already enough of them.
      
      To reproduce the error:
      (Need purchase)
      1. Create 2 products P and P_compo
      	- Both must be storable products
      	- P_compo must have at least one vendor
      2. Go on P-product page
      3. Add a reordering rule (e.g., min: 5 and max: 10)
      4. Add a BoM
      	- Must be a Kit
      	- Add P_compo to components
      5. Inventory > Operations > Run Scheduler
      6. Go to Purchase, find the generated RfQ
      7. Confirm the order, Receive Products, Validate
      8. Go on P-product's page
      	- As you can see, you have enough P-products on hand
      9. Repeat steps 5-6
      
      => You should not find any RfQ since you already have enough P-products.
      
      When checking the P-product's page, you can see the correct quantity on
      hand because it uses the `_compute_quantities` method and this one has been
      overridden in the mrp-module so a kit will be correctly computed.
      
      However, when running the scheduler, it uses another method to get the
      current quantities: `_compute_quantities_dict`. Since this method has
      not been overridden in mrp-module, it will use the basic implementation
      and this one does not consider the possibility for a product to be a
      kit.
      
      This fix creates an override of `_compute_quantities_dict` so it can
      compute the correct quantities of products with 'phantom' as BoM type.
      Moreover, for the code to be simpler and clearer, thix fix also merges
      `_compute_quantities` and the new `_compute_quantities_dict`.
      
      OPW-2421841
      
      closes odoo/odoo#64277
      
      X-original-commit: de40662a
      Signed-off-by: default avatarNicolas Lempereur (nle) <nle@odoo.com>
      609e2f44
  17. Jan 07, 2021
    • Samuel Degueldre's avatar
      [FIX] web_editor: fix icons losing classes when modifying them · 6c199562
      Samuel Degueldre authored
      
      Previously, when double clicking and image, video, icon, or document in
      the web-editor and replacing it with a different media type, it would
      lose its custom classes. This means among other things, that it would
      lose margins and paddings from bootstrap classes, or in the case of the
      three columns snippet, that the new media would not be properly rounded
      in its top corner, or not show up at all in the case of the video. The
      only exception was when changing any media type to an icon, but in that
      case it would also keep some of the media-specific classes that are
      supposed to be removed (eg img-fluid or media_iframe_video).
      
      This commit fixes that as well as some _clear behaviour that didn't
      remove all classes that had to be removed, eg some fa-classes would
      linger depending on their order, and the o_image class from documents
      would always remain
      
      Part of: odoo/odoo#60450
      Linked to: #60432 #60443
      task-2282542
      
      closes odoo/odoo#64230
      
      X-original-commit: 99531f5d
      Signed-off-by: default avatarQuentin Smetz (qsm) <qsm@odoo.com>
      6c199562
    • Samuel Degueldre's avatar
      [FIX] web_editor: fix replacing media leaving unexpected elements · f23806e1
      Samuel Degueldre authored
      Previously, changing a media from a video/icon/document to a different
      type would leave empty elements in the DOM, this is because summernote's
      range API `range.insertNode` function deletes the content but not the
      structure (HTML elements).
      
      This commit fixes that by using jQuery's replaceWith method instead of
      summernote's insertNode when a media was found, and only using
      summernote in case no media was found (eg. a text range).
      
      Part of: odoo/odoo#60450
      
      X-original-commit: 63f80995
      f23806e1
  18. Jan 11, 2021
  19. Jan 10, 2021
Loading