Skip to content
Snippets Groups Projects
  1. Apr 18, 2023
  2. Apr 17, 2023
    • Maruan Aguerdouh (magm)'s avatar
      [FIX] account: show suggestion only after second line and don't apply taxes from suggestions · 927890d0
      Maruan Aguerdouh (magm) authored
      
      Steps to reproduce:
      
      - Go to accounting > journal entries > create a new journal entry.
      - Add a line with an account.
      - Add a second line.
      
      Previous behavior:
      
      We are going to get in the second line a suggestion of the first line
      introduced, also even if we don't select the suggestion the taxes of
      the suggestion will be applied.
      
      Current behavior:
      
      As discussed with the PO, we only want to get suggestions when we used 2
      accounts in a row, so the 3rd line will be the one getting the
      suggestion. And we also avoid seting the taxes of the suggestion if we
      don't select it.
      
      Related to #39784
      
      opw-3098361
      
      closes odoo/odoo#110821
      
      Related: odoo/enterprise#39784
      Signed-off-by: default avatarWilliam André (wan) <wan@odoo.com>
      927890d0
    • niyasraphy's avatar
      [FIX] web: traceback on accessing home page · 900303c1
      niyasraphy authored
      
      before this commit, after running an older version,
       lets say odoo 14 and trying to access 16 in the
       same browser return traceback without redirecting
        to db selector page
      
       and this happens due to the missing env in request,
       which returns as None.
      
       after this commit, no traceback wont be shown and
       will open the db selector page
      
      closes odoo/odoo#116351
      
      Signed-off-by: default avatarJulien Castiaux (juc) <juc@odoo.com>
      900303c1
    • Thomas Lefebvre (thle)'s avatar
      [FIX] hr: add private contact to employee's followers · f53d4a28
      Thomas Lefebvre (thle) authored
      
      When creating an employee with a private contact,
      the contact will not be automatically added to the employee's followers.
      
      The desired behavior is that the contact is added
      to the followers even if it has a private address.
      Commit: 8760a4d0
      
      However, this behavior will not be possible because
      adding a contact with a private address is forbidden.
      Commit: 20536e1b
      
      Solution:
      The solution is to use the private method `_message_subscribe`.
      This is not a problem in the business case.
      Indeed, the people who have access to the employee's file
      also have access to the private contacts.
      Moreover, the access rights of the public method `message_subscribe`
      do not concern this business case.
      
      opw-3249646
      
      closes odoo/odoo#118779
      
      X-original-commit: b06857afa371d2164f1f5ec402a6074a237d8230
      Signed-off-by: default avatarKevin Baptiste <kba@odoo.com>
      f53d4a28
    • Guillaume (gdi)'s avatar
      [FIX] website: remove the margin above the mega menus · b41c76bd
      Guillaume (gdi) authored
      Since the upgrade to Bootstrap 5 and especially since this [BS5 commit],
      there is a gap between the mega menu and the navbar when the user opens
      a mega menu. This commit removes that gap.
      
      Steps to reproduce the bug fixed by this commit:
      - Have a mega menu on your website.
      - Drop a block of a dark color at the top of the page (it helps to see
      the problem).
      
      => When you open the mega menu, you can see a small piece of the block
      of dark color between the navbar and the mega menu.
      
      Technical explanation:
      This [BS5 commit] introduces a new css rule that adds a
      `margin-top: 0.125rem;` on the `.dropdown-menu[data-bs-popper]`. However
      when [mega menus were introduced], another css rule prevents having a
      gap between the nav and the mega menu (`margin-top: 0;` on
      `.o_mega_menu`). This commit makes sure that it will be a `margin-top`
      of 0 by making the property more important.
      
      [BS5 commit]: https://github.com/odoo/odoo/commit/c48f57ea2538ad51e00ac27d58f8e191781444f3
      [mega menus were introduced]: https://github.com/odoo/odoo/commit/1345702258adbfbee0d780dc22e552395e6d1df7
      
      
      
      task-3133137
      opw-3226013
      
      closes odoo/odoo#117070
      
      Signed-off-by: default avatarloco-odoo <loco@odoo.com>
      b41c76bd
    • Guillaume (gdi)'s avatar
      [FIX] website: enable opening of dropdowns after a scroll · 9b1de9e2
      Guillaume (gdi) authored
      This commit allows to reopen submenus and mega menus if one of them was
      opened when scrolling on a page of a website.
      
      Steps to reproduce the bug fixed by this commit.
      - Have a submenu or a mega menu in the navbar
      - Open a dropdown of the navbar
      - Scroll down
      
      => It is no longer possible to open the dropdown.
      
      This commit fixes this issue and adds a test for this flow.
      
      task-3133137
      opw-3226013
      
      Part-of: odoo/odoo#117070
      9b1de9e2
    • lejeune quentin's avatar
      [FIX] pos_stripe: Fix loading stripe ressource · b43e0042
      lejeune quentin authored
      
      Currently the POS does not load if a Stripe payment method is configured and there is no internet connection.
      This commit fixes the loading of Stripe resources
      to allow the opening of the POS and the display of related errors
      
      task 3177045
      
      closes odoo/odoo#114421
      
      Signed-off-by: default avatarJoseph Caburnay (jcb) <jcb@odoo.com>
      b43e0042
    • pedrambiria's avatar
      [FIX] pos_loyalty: use `float_compare` to compare points · 48013733
      pedrambiria authored
      
      After this commit, we will be using float_compare function to compare
      points. This will ensure that any floating point errors are properly
      handled and that we receive correct responses from the
      `validate_coupon_programs` function.
      
      opw-3264681
      
      closes odoo/odoo#118740
      
      Signed-off-by: default avatarHeinz Robin (rhe) <rhe@odoo.com>
      48013733
    • MerlinGuillaume's avatar
      [FIX] web: datepicker locale, warning and hide behaviour · eeae6c92
      MerlinGuillaume authored
      
      An error is raised when trying to set the date of a note in the
      activities
      
      Steps to reproduce:
      1. Install Notes
      2. Click on the activities icon (top right of the screen)
      3. Click on 'Add new note'
      4. Set a date to the note
      5. An error is raised
      
      Solution:
      Use the eventDate only if the input is set, get the locale from the
      getOptions function and set the datepicker warning regardless of where
      we get the date from
      
      Problem:
      `this.date` can be undefined
      
      closes odoo/odoo#118630
      
      Signed-off-by: default avatarJulien Mougenot (jum) <jum@odoo.com>
      eeae6c92
    • Pratik Awasthi's avatar
      [FIX] planning: fix project onboarding tour steps · 255fa624
      Pratik Awasthi authored
      
      Before this commit, the project onboarding tour: the step to create a new stage
      get validated if the user clicks on the 'add' button without actually creating a
      new stage
      
      After this commit, it will point first to the text area for the name and then
      add tooltip will be highlighted so tour does not consumed without adding the
      stage.
      
      task-3049636
      
      closes odoo/odoo#104844
      
      Signed-off-by: default avatarXavier Bol (xbo) <xbo@odoo.com>
      255fa624
    • Pratik Awasthi's avatar
      [FIX] base: display `Other` category in warning message if debug=false · 9998ec50
      Pratik Awasthi authored
      Before this commit, when the user changes the access rights of another
      user, he will see a warning message the other access rights will change
      with his changes. In that warning message, `Other` category could be
      displayed and that category is only displayed in the user form view if
      the user is in debug mode since it is a Technical category.
      
      This commit hides the `Other` category in the warning message when the
      user is not in debug mode to be consistent with the visibility of that
      category in the form view.
      
      task-3049636
      
      Part-of: odoo/odoo#104844
      9998ec50
    • Géry Debongnie's avatar
      [IMP] web: update owl from 2.0.9 to 2.1.1 · a57cd7b2
      Géry Debongnie authored
      This update contains the following commits:
      
      [FIX] components: solve missing update (concurrency issue)
      [DOC] remove old references to comp for useRef hook
      [FIX] devtools: Fix build commands for windows users
      [FIX] devtools: Fix devtools in detached window
      [IMP] devtools: Add a button to navigate to the doc
      [IMP] devtools: Add devtools documentation
      [IMP] Allow app to be mounted in shadow DOM
      [IMP] playground: allow sharing playground links
      [IMP] runtime: allow validating object values using a type description
      [FIX] devtools: Increase vertical padding of the search bar
      [FIX] devtools: Hide the collapse all button
      [FIX] devtools: Fix bad computation of highlight boxes on the page
      [FIX] package: Auto-update package-lock.json
      
      closes odoo/odoo#118722
      
      Notes: https://github.com/odoo/owl/releases/tag/v2.1.1
      
      
      Signed-off-by: default avatarAaron Bohy (aab) <aab@odoo.com>
      a57cd7b2
    • Victor Feyens's avatar
      [FIX] account_payment: show payment link action to accounting users · 8cf2aebe
      Victor Feyens authored
      
      The 'Generate payment link' action on account move records was only
      shown to the users of the group 'Show Full Accounting Feature'
      (and to salesman when sale is installed).
      
      This means that if you only have invoicing app (`account` module) installed,
      you don't see the action.
      
      This commit makes sure the action is visible to all accounting users, like
      the refund wizard.
      
      closes odoo/odoo#118671
      
      X-original-commit: 8d2253b4
      Signed-off-by: default avatarAntoine Vandevenne (anv) <anv@odoo.com>
      Signed-off-by: default avatarVictor Feyens (vfe) <vfe@odoo.com>
      8cf2aebe
    • paso-odoo's avatar
      [FIX] resource: external id not found in the system base.user_admin · 6575fd38
      paso-odoo authored
      If applied, this commit will solve the external id issue of the base admin user.
      
      Before this commit:
      ==========================
      When we delete the admin user (base.admin_user) and try to login with a new user
      or try to write in a new user, this error will come.
      
      After this commit:
      ===========================
      The issue will be resolved after this commit and authorize new users without
      any errors.
      
      sentry - 3973828005
      see - https://tinyurl.com/2jm772jm
      
      
      
      closes odoo/odoo#118666
      
      X-original-commit: 567027b4d4e3efdbbabab3a7a3c5e090df51dbf8
      Signed-off-by: default avatarYannick Tivisse (yti) <yti@odoo.com>
      6575fd38
    • Hubert Van de Walle (huvw)'s avatar
      [FIX] mass_mailing: unregister ResizeObserver on unmount · d5f6bc2b
      Hubert Van de Walle (huvw) authored
      
      Steps to reproduce
      ==================
      
      This only seem to happen on Firefox
      
      - Go to Email Marketing
      - Open a campaign
      - Go back to the homepage by using the topleft square button
      
      -> `$(...).offset() is undefined`
      
      Cause of the issue
      ==================
      
      The ResizeObserver used in MassMailingFullWidthViewController is still
      triggered, even though it shoudln't.
      
      Solution
      ========
      
      Disconnect the observer when the component is unmounted.
      
      opw-3271101
      
      closes odoo/odoo#118345
      
      Signed-off-by: default avatarHubert Van De Walle <huvw@odoo.com>
      d5f6bc2b
    • Mahdi cheikh rouhou (macr)'s avatar
      [FIX] account : forbid recipient bank update on posted bill · 7e7ca950
      Mahdi cheikh rouhou (macr) authored
      
      When updating the recipient bank on a posted vendor bill the chnages
      will not be saved.
      
      Steps to reproduce the error:
      1-Go to accounting
      2-Create a vendor bill and confirm it
      3-Change the bank recipient and click manual save
      4-Reload and you can see the changes disappeared
      
      The error was happening because the recipient bank was not displayed as
      readonly on a posted state of the account move.
      
      opw-3247282
      
      closes odoo/odoo#118294
      
      Signed-off-by: default avatarQuentin De Paoli <qdp@odoo.com>
      7e7ca950
    • Louis Baudoux's avatar
      [FIX] partner_autocomplete: fix search by VAT number on `Many2one` fields · 6229674b
      Louis Baudoux authored
      
      Since the Owl conversion of the partner autocomplete widgets, the search
      by VAT number on a `Many2one` field of `res.partner` wasn't working
      anymore.
      
      closes odoo/odoo#118071
      
      Signed-off-by: default avatarFlorian Daloze (fda) <fda@odoo.com>
      6229674b
    • Mahamadasif Ansari's avatar
      [FIX] account: assign current date in due_date if date_ref not available · 7ec8b25e
      Mahamadasif Ansari authored
      
      Unsupported operand type(s) for +: 'NoneType' and 'relativedelta'
      occur when we create payment terms without a preview date (date_ref).
      This is because date_ref has no value.
      
      This commit solves the issue by adding a condition if date_ref is not
      available, so it adds current date instead of it.
      
      sentry-4068322613
      
      closes odoo/odoo#118027
      
      Signed-off-by: default avatarWilliam André (wan) <wan@odoo.com>
      7ec8b25e
    • luvi's avatar
      [FIX] web: improve search in ExportDialog · 83e58a0e
      luvi authored
      
      This commits aims to improve the search feature in the export dialog.
      Now, the search isn't resetted when a field is added to the export list
      anymore. It is also possible to search in the list of fields using the
      technical name of the field.
      
      A test has been added for the search feature in debug mode, and another
      one has been adapted to verify that the search input still contains the
      string previously entered.
      
      task-3266632
      
      closes odoo/odoo#118398
      
      Signed-off-by: default avatarAaron Bohy (aab) <aab@odoo.com>
      83e58a0e
    • luvi's avatar
      [FIX] web: improve export dialog fields search · cd581aa4
      luvi authored
      This commit fixes the search feature of the export dialog. Before this
      commit, it was impossible to display subfields that would match the
      search pattern, since the filter was only applied to look for fields
      at the 'root' of the available fields.
      
      Now, it is possible to search and find subfields that matches the
      pattern, and they are displayed inside their expanded parent(s).
      
      A test has been added and verify the search feature.
      
      task-3245492
      
      Part-of: odoo/odoo#118398
      cd581aa4
    • Xavier-Do's avatar
      [FIX] profiling, base: non default in session · eb3bf03b
      Xavier-Do authored
      
      The current profiler will add default value in the user session
      using disk space without valid reason.
      
      This commit makes those parameters optional in the session.
      
      closes odoo/odoo#118295
      
      Signed-off-by: default avatarJérémy Kersten <jke@odoo.com>
      eb3bf03b
    • Hubert Van de Walle (huvw)'s avatar
      [FIX] web: pressing tab quickly with slow network responses · af5cedf0
      Hubert Van de Walle (huvw) authored
      
      Steps to reproduce
      ==================
      
      - With the Chrome devtools, add a network delay of 1 second
      - Go to Purchase
      - Create RFQ
      - Add vendor
      - Add products and navigate by using the 'TAB' key
      - Add another product line
      - Repeat process quickly
      
      `this.list.editedRecord is null`
      
      Cause of the issue
      ==================
      
      Order of events:
      - First tab pressed
      - onchange_1 triggered
      - Second tab pressed
      - onchange_2 triggered
      - onchange_1 resolves
      - The editedRecord is switched to readonly
      - onchange_2 resolves
      - There is no more editedRecord
      
      opw-3115650
      
      closes odoo/odoo#117938
      
      Signed-off-by: default avatarAaron Bohy (aab) <aab@odoo.com>
      Co-authored-by: default avatarFrancoisGe <fge@odoo.com>
      af5cedf0
    • niyasraphy's avatar
      [FIX] base: alignment of ir.actions.act_window.view form · 369a8cfc
      niyasraphy authored
      
      before this commit, the form view of
      ir.actions.act_window.view was not properly aligned.
      
      * open any menu linked with type ir.actions.act_window
      * click on Edit Action from debugger button
      * click on Add a line from the View one2many field
      
      after this commit, the view will be
      aligned properly.
      
      closes odoo/odoo#117066
      
      Signed-off-by: default avatarJulien Castiaux (juc) <juc@odoo.com>
      369a8cfc
    • Lois Rilo's avatar
      [IMP] mrp: hook method to control auto confirmation of MOs · 3c5c00c6
      Lois Rilo authored
      There is a bit of a dance on the lambda function to filter the MOs
      that should be autoconfirmed out of a procurement. To the point
      that the logic is different in v14 and v15/16.
      
      Refs:
      
      - v14: https://github.com/odoo/odoo/commit/5fd6c7251331de2600eaee76114b76f535652fec
      - v16: https://github.com/odoo/odoo/commit/2ab878aecb67930a9a7cd35901cb6c4b98c7e442
      - v16 previous: https://github.com/odoo/odoo/commit/2b003b8d3917b45772b5f16edf21292446e96601
      
      
      
      It would be great for partners to be able to extend it and be able
      to control the logic used even if the default behavior gets changed
      again.
      
      closes odoo/odoo#112831
      
      X-original-commit: 82e8ece7
      Signed-off-by: default avatarArnold Moyaux (arm) <arm@odoo.com>
      3c5c00c6
    • Adrien Widart (awt)'s avatar
      [FIX] stock: check `allow_new_product` with packages · ad74102e
      Adrien Widart (awt) authored
      
      To reproduce the issue:
      1. In Settings, enable:
         - Multi-Step Routes
         - Storage Categories
         - Packages
      2. Create a Storage Category SC:
         - Allow New Product: same
         - Max Weight: 100 kg
         - Capacity by Package:
           - 2 x Pallet
      3. Create two locations L1, L2:
         - Parent: WH/Stock
         - Type: Internal
         - Storage Category: SC
      4. Create a putaway rule:
         - When in: WH/Stock
         - Package type: Pallet
         - Store to: WH/Stock
         - Having Category: SC
      5. Edit the warehouse:
         - Incoming Shipments: 2 steps
      6. Create a product P:
         - Type: Storable
         - Weight: 1 kg
      7. Update L1:
         - There is 1 x P in a pallet
      8. Create a planned receipt R:
         - To: WH/Input
         - Operations:
           - 2 x P
      9. Mark R as Todo
      10. Create two packages:
          - 1 x P in PK01 (! PK01 must be a Pallet)
          - 1 x P in PK02 (! PK02 must be a Pallet)
      11. Validate R
      12. Open the related internal transfer T
      
      Error: Both packages are redirected to L2 but one of them should be
      redirected to L1
      
      When checking L1, we ensure that the policy 'all same products' is
      respected. To do so, we compare the products of the quants of L1
      with the given product. Here is the issue: when moving a package, we
      don't provide any `product` value to the methods used in the putaway
      rules process.
      
      Note: There was also another issue with the 'all same products'
      policy. Suppose L1 is empty, and we move a pallet with two different
      products, the move line is redirected to L1, which breaks the 'all
      same products' condition.
      
      OPW-3204924
      
      closes odoo/odoo#118656
      
      X-original-commit: 3a6d82de77e0ab477b3f22985f6d41995e25f652
      Signed-off-by: default avatarWilliam Henrotin (whe) <whe@odoo.com>
      Signed-off-by: default avatarAdrien Widart <awt@odoo.com>
      ad74102e
    • niyasraphy's avatar
      [FIX] transifex: update transifex project url · 6f5b23dc
      niyasraphy authored
      
      from april 3, the transifex has changed domain
      from www.transifex.com to app.transifex.com
      
      after this commit, the transifex project url
      in the system parameter will be updated to
      the new domain
      
      closes odoo/odoo#118634
      
      X-original-commit: c79164f6
      Signed-off-by: default avatarMartin Trigaux (mat) <mat@odoo.com>
      6f5b23dc
    • Sanket Brahmbhatt's avatar
      [FIX] point_of_sale: prevent trackback when changing journal in report.pos.order · f5315b8e
      Sanket Brahmbhatt authored
      
      This issue occurs when the user changes the Journal 'journal_id' in this
      'report.pos.order' model then traceback will be generated.
      
      Step to Produce:-
      - In POS, Click on Reporting Menu > Order.
      - Click on graph > Open any One record.
      - Try To Change the Journal('journal_id').
      - Trace-back will be generated.
      
      sentry:- 3929247828
      
      closes odoo/odoo#118632
      
      X-original-commit: 87ed00e6
      Signed-off-by: default avatarJoseph Caburnay (jcb) <jcb@odoo.com>
      f5315b8e
    • Hubert Van de Walle (huvw)'s avatar
      [FIX] web: allow to unregister multiple listener from the same target · 345dd30f
      Hubert Van de Walle (huvw) authored
      
      Steps to reproduce
      ==================
      
      - Register two events listener on the same target
      - Unregister them
      
      Only the first one is unregistered
      
      Cause of the issue
      ==================
      
      `cbs` is used instead of `listeners`. This means that after any `.off`
      call, the target is removed from the Map and it is not possible anymore
      to unregister any events for it
      
      closes odoo/odoo#118218
      
      Signed-off-by: default avatarSamuel Degueldre <sad@odoo.com>
      345dd30f
    • niyasraphy's avatar
      [FIX] gamification: copy False for user karma · 3f868e91
      niyasraphy authored
      
      before this commit, while duplicating an user,
      karma points is also getting copied to newly
      created user
      
      after this commit, the copying of karma on
      duplicating an user will be stopped.
      
      closes odoo/odoo#118173
      
      X-original-commit: b1be3262
      Signed-off-by: default avatarThibault Delavallee (tde) <tde@openerp.com>
      3f868e91
    • Julien Carion (juca)'s avatar
      [FIX] mail: fix tags disappearing on message sent · ad0236cf
      Julien Carion (juca) authored
      
      This commit is a small fix to avoid reloading several form views
      (like crm leads or helpdesk tickets) when a message is posted in
      the chatter. This is linked to an old issue where relational fields
      like the tags do not keep changes properly in the base model,
      therefore dropping the changes on reload in this case. Do note that
      it will still reload (and keep the bug) when a recipient is linked
      to the message and perform the initial purpose of the reload (like
      updating the customer field) as it was done before.
      
      opw-3245717
      
      closes odoo/odoo#117500
      
      Signed-off-by: default avatarAaron Bohy (aab) <aab@odoo.com>
      ad0236cf
    • Denis Ledoux's avatar
      [FIX] *: `session.modified` has been renamed `is_dirty` · b6f4a27f
      Denis Ledoux authored
      
      Since odoo/odoo@04e972660b3f38c8dfa42111b1fe88adbcff4699
      The session `modified` flag has been renamed `is_dirty`.
      
      However, it has not been renamed correctly in these
      three different places.
      
      The goal to set `modified` at this three places
      is to force the session to be saved,
      for instance because a mutable (a list or a dict)
      contained in the session was modified,
      but not the dict of the session itself,
      therefore `modified` is not flagged automatically.
      
      As the flag `modified` has not been renamed to `is_dirty`,
      a key/value `modified: True` was actually assigned to the
      session dict, and saved in file. The behavior
      to save the session in these three places was kept,
      as one key/value of the session has been changed,
      but by the way to assign a new value in the session file,
      which is not ideal.
      
      It's better to assign the correct flag to avoid
      setting a new key/value in the session for no reason.
      
      closes odoo/odoo#118321
      
      Signed-off-by: default avatarJulien Castiaux (juc) <juc@odoo.com>
      b6f4a27f
  3. Apr 16, 2023
  4. Apr 14, 2023
Loading