Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[MIG] sale_order_product_recommendation: Migration to 18.0 #3419

Open
wants to merge 94 commits into
base: 18.0
Choose a base branch
from

Commits on Nov 20, 2024

  1. [ADD] sale_order_product_recommendation: SO product wizard

    This wizard that you can see now in your quotations will let you add products quickly based on the customer's recent purchase history.
    yajo authored and BT-mchechlacz committed Nov 20, 2024
    Configuration menu
    Copy the full SHA
    987bc5b View commit details
    Browse the repository at this point in the history
  2. [FIX] sale_order_product_recommendation: Limit after populating results

    We can't limit results on read_group, because we can't set the same
    criteria to order results, and thus the N groups populated might be
    not the top ones looked for.
    pedrobaeza authored and BT-mchechlacz committed Nov 20, 2024
    Configuration menu
    Copy the full SHA
    b5b3a84 View commit details
    Browse the repository at this point in the history
  3. Configuration menu
    Copy the full SHA
    139ed51 View commit details
    Browse the repository at this point in the history
  4. Configuration menu
    Copy the full SHA
    c14e1fb View commit details
    Browse the repository at this point in the history
  5. Configuration menu
    Copy the full SHA
    dcb6de3 View commit details
    Browse the repository at this point in the history
  6. Configuration menu
    Copy the full SHA
    80f8fca View commit details
    Browse the repository at this point in the history
  7. [IMP] sale_order_product_recommendation: button visibility

    - When a SO is confirmed the button is still visible so the wizard can
    be used to add or remove lines and products. The same restrictions that
    exist editing the order manually apply to the wizard.
    chienandalu authored and BT-mchechlacz committed Nov 20, 2024
    Configuration menu
    Copy the full SHA
    56160c2 View commit details
    Browse the repository at this point in the history
  8. [FIX] sale_order_product_recommendation: Save product_id value

    Using force_save option in views
    pedrobaeza authored and BT-mchechlacz committed Nov 20, 2024
    Configuration menu
    Copy the full SHA
    b7dddb7 View commit details
    Browse the repository at this point in the history
  9. Configuration menu
    Copy the full SHA
    4b92589 View commit details
    Browse the repository at this point in the history
  10. [IMP] sale_order_product_recommendation: slipt tests

    - Improve test declaration inherability
    chienandalu authored and BT-mchechlacz committed Nov 20, 2024
    Configuration menu
    Copy the full SHA
    cc9ab51 View commit details
    Browse the repository at this point in the history
  11. Configuration menu
    Copy the full SHA
    ccac3c1 View commit details
    Browse the repository at this point in the history
  12. Configuration menu
    Copy the full SHA
    f57286d View commit details
    Browse the repository at this point in the history
  13. [IMP] sale_order_product_recommendation: Display only active or sale …

    …ok products in recommendation wizard
    
    BTW I fixed a bug that counted products in the active SO as delivered, when it was impossible in most cases. Fixed the test to reflect the new logic.
    
    Co-Authored-By: Jairo Llopis <[email protected]>
    2 people authored and BT-mchechlacz committed Nov 20, 2024
    Configuration menu
    Copy the full SHA
    23eb442 View commit details
    Browse the repository at this point in the history
  14. [IMP] sale_order_product_recommendation: Mobile views

    Add kanban + form for proper mobile usage.
    pedrobaeza authored and BT-mchechlacz committed Nov 20, 2024
    Configuration menu
    Copy the full SHA
    c53fe62 View commit details
    Browse the repository at this point in the history
  15. [IMP] sale_order_product_recommendation: Remove useless flag `is_modi…

    …fied`
    
    It's better to simply check the flag condition than to keep that field.
    pedrobaeza authored and BT-mchechlacz committed Nov 20, 2024
    Configuration menu
    Copy the full SHA
    6d9fc55 View commit details
    Browse the repository at this point in the history
  16. [FIX] sale_order_recommendation_secondary_unit: Don't tie second. uni…

    …t to product default one
    
    Having a related field to default sale secondary UoM makes this recommendator to not fit
    possible different secondary UoM to be used.
    
    This commit fixes this behavior. A refactoring on the main module having a prepare
    method hook has been needed.
    pedrobaeza authored and BT-mchechlacz committed Nov 20, 2024
    Configuration menu
    Copy the full SHA
    5d7f234 View commit details
    Browse the repository at this point in the history
  17. [IMP] sale_order_product_recommendation*: Use Form for populating onc…

    …hanges
    
    Previous code was not very resilient to possible extra adaptations or require
    specific code to be added to the old hook `_trigger_so_line_onchanges`.
    
    With this, we make sure all onchanges are executed thanks to the odoo.tests.Form
    class.
    
    We lose a bit of performance, but it's better than to have issues with data not
    correctly synchronized.
    pedrobaeza authored and BT-mchechlacz committed Nov 20, 2024
    Configuration menu
    Copy the full SHA
    8b5b926 View commit details
    Browse the repository at this point in the history
  18. [FIX] sale_order_product_recommendation: Use odoo.tests.Form as sudo

    For avoiding errors like accessing mail.tracking.value when changing values.
    pedrobaeza authored and BT-mchechlacz committed Nov 20, 2024
    Configuration menu
    Copy the full SHA
    dd8104f View commit details
    Browse the repository at this point in the history
  19. [FIX] sale_order_product_recommendation: Get product image form produ…

    …ct.product model instead of product.template in wizard kanban view.
    
    TT26749
    sergio-teruel authored and BT-mchechlacz committed Nov 20, 2024
    Configuration menu
    Copy the full SHA
    04f258d View commit details
    Browse the repository at this point in the history
  20. [IMP] sale_order_product_recommendation: Allow to display price unit …

    …from listprice or from last sale order.
    
    TT26727
    sergio-teruel authored and BT-mchechlacz committed Nov 20, 2024
    Configuration menu
    Copy the full SHA
    4b0d043 View commit details
    Browse the repository at this point in the history
  21. [IMP] sale_order_product_recommendation: Allow to display price unit …

    …from listprice or from last sale order. Computed with ORM instead of sql queries
    
    TT26727
    sergio-teruel authored and BT-mchechlacz committed Nov 20, 2024
    Configuration menu
    Copy the full SHA
    7936dd0 View commit details
    Browse the repository at this point in the history
  22. [IMP] sale_order_product_recommendation: Allow to create a sale order…

    … line with last_sale_order price unit from recommendation line
    
    TT27183
    sergio-teruel authored and BT-mchechlacz committed Nov 20, 2024
    Configuration menu
    Copy the full SHA
    892c201 View commit details
    Browse the repository at this point in the history
  23. [IMP] sale_order_product_recommendation: When user opens the product …

    …recommendation wizard always sort by times delivered desc (even if the sale order already has any line)
    victoralmau authored and BT-mchechlacz committed Nov 20, 2024
    Configuration menu
    Copy the full SHA
    f6a1847 View commit details
    Browse the repository at this point in the history
  24. Configuration menu
    Copy the full SHA
    3b1d076 View commit details
    Browse the repository at this point in the history
  25. Configuration menu
    Copy the full SHA
    1355870 View commit details
    Browse the repository at this point in the history
  26. Configuration menu
    Copy the full SHA
    1a2bbe0 View commit details
    Browse the repository at this point in the history

Commits on Nov 21, 2024

  1. [FIX] Update deprecated unit tests

    Christopher Rogos authored and BT-mchechlacz committed Nov 21, 2024
    Configuration menu
    Copy the full SHA
    89d42ba View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    ebf4342 View commit details
    Browse the repository at this point in the history
  3. Configuration menu
    Copy the full SHA
    c6715fe View commit details
    Browse the repository at this point in the history
  4. [IMP] sale_order_product_recommendation: Added option to filter sale_…

    …orders by delivery address
    CarlosRoca13 authored and BT-mchechlacz committed Nov 21, 2024
    Configuration menu
    Copy the full SHA
    4a4c5d0 View commit details
    Browse the repository at this point in the history
  5. [FIX] sale_order_product_recommendation: commercial_partner_id on del…

    …ivery_address
    
    On delivery address we want to take into account just this field and not
    the commercial_partner_id.
    
    And fixed 1 term to make it impersonal.
    
    cc @Tecnativa TT29597
    CarlosRoca13 authored and BT-mchechlacz committed Nov 21, 2024
    Configuration menu
    Copy the full SHA
    9e4cfb3 View commit details
    Browse the repository at this point in the history
  6. [IMP] sale_order_product_recommendation: Get sale orders with sudo to…

    … get orders from other salesperson
    
    TT30453
    sergio-teruel authored and BT-mchechlacz committed Nov 21, 2024
    Configuration menu
    Copy the full SHA
    dae4640 View commit details
    Browse the repository at this point in the history
  7. [FIX] sale_order_product_recommendation: Fix tests. Not order recomme…

    …ndations found due to date data
    sergio-teruel authored and BT-mchechlacz committed Nov 21, 2024
    Configuration menu
    Copy the full SHA
    1f8a47f View commit details
    Browse the repository at this point in the history
  8. [IMP] sale_order_product_recommendation: Allow set recommendations nu…

    …mber and backward months by settings
    
    TT33165
    sergio-teruel authored and BT-mchechlacz committed Nov 21, 2024
    Configuration menu
    Copy the full SHA
    c7d82be View commit details
    Browse the repository at this point in the history
  9. [IMP] sale_order_product_recommendation: Exclude delivery carrier pro…

    …ducts from recommendations
    
    TT35965
    sergio-teruel authored and BT-mchechlacz committed Nov 21, 2024
    Configuration menu
    Copy the full SHA
    063165e View commit details
    Browse the repository at this point in the history
  10. Configuration menu
    Copy the full SHA
    09ccca3 View commit details
    Browse the repository at this point in the history
  11. Configuration menu
    Copy the full SHA
    8340469 View commit details
    Browse the repository at this point in the history
  12. Configuration menu
    Copy the full SHA
    47f6566 View commit details
    Browse the repository at this point in the history
  13. Configuration menu
    Copy the full SHA
    5532087 View commit details
    Browse the repository at this point in the history
  14. [UPD] Update sale_order_product_recommendation.pot

    oca-ci authored and BT-mchechlacz committed Nov 21, 2024
    Configuration menu
    Copy the full SHA
    31be022 View commit details
    Browse the repository at this point in the history
  15. [UPD] README.rst

    OCA-git-bot authored and BT-mchechlacz committed Nov 21, 2024
    Configuration menu
    Copy the full SHA
    a2b217d View commit details
    Browse the repository at this point in the history
  16. Translated using Weblate (Portuguese (Brazil))

    Currently translated at 72.5% (37 of 51 strings)
    
    Translation: sale-workflow-16.0/sale-workflow-16.0-sale_order_product_recommendation
    Translate-URL: https://translation.odoo-community.org/projects/sale-workflow-16-0/sale-workflow-16-0-sale_order_product_recommendation/pt_BR/
    adrianojprado authored and BT-mchechlacz committed Nov 21, 2024
    Configuration menu
    Copy the full SHA
    3d46935 View commit details
    Browse the repository at this point in the history
  17. Translated using Weblate (Spanish)

    Currently translated at 100.0% (51 of 51 strings)
    
    Translation: sale-workflow-16.0/sale-workflow-16.0-sale_order_product_recommendation
    Translate-URL: https://translation.odoo-community.org/projects/sale-workflow-16-0/sale-workflow-16-0-sale_order_product_recommendation/es/
    Ivorra78 authored and BT-mchechlacz committed Nov 21, 2024
    Configuration menu
    Copy the full SHA
    1e2365b View commit details
    Browse the repository at this point in the history
  18. Translated using Weblate (Portuguese (Brazil))

    Currently translated at 74.5% (38 of 51 strings)
    
    Translation: sale-workflow-16.0/sale-workflow-16.0-sale_order_product_recommendation
    Translate-URL: https://translation.odoo-community.org/projects/sale-workflow-16-0/sale-workflow-16-0-sale_order_product_recommendation/pt_BR/
    adrianojprado authored and BT-mchechlacz committed Nov 21, 2024
    Configuration menu
    Copy the full SHA
    22d2612 View commit details
    Browse the repository at this point in the history
  19. Translated using Weblate (Portuguese (Brazil))

    Currently translated at 100.0% (51 of 51 strings)
    
    Translation: sale-workflow-16.0/sale-workflow-16.0-sale_order_product_recommendation
    Translate-URL: https://translation.odoo-community.org/projects/sale-workflow-16-0/sale-workflow-16-0-sale_order_product_recommendation/pt_BR/
    adrianojprado authored and BT-mchechlacz committed Nov 21, 2024
    Configuration menu
    Copy the full SHA
    fea6013 View commit details
    Browse the repository at this point in the history
  20. Configuration menu
    Copy the full SHA
    db81d77 View commit details
    Browse the repository at this point in the history
  21. Configuration menu
    Copy the full SHA
    7d667d3 View commit details
    Browse the repository at this point in the history
  22. [UPD] Update sale_order_product_recommendation.pot

    oca-ci authored and BT-mchechlacz committed Nov 21, 2024
    Configuration menu
    Copy the full SHA
    a4491b9 View commit details
    Browse the repository at this point in the history
  23. [BOT] post-merge updates

    OCA-git-bot authored and BT-mchechlacz committed Nov 21, 2024
    Configuration menu
    Copy the full SHA
    d04c6ec View commit details
    Browse the repository at this point in the history
  24. Translated using Weblate (Spanish)

    Currently translated at 100.0% (59 of 59 strings)
    
    Translation: sale-workflow-16.0/sale-workflow-16.0-sale_order_product_recommendation
    Translate-URL: https://translation.odoo-community.org/projects/sale-workflow-16-0/sale-workflow-16-0-sale_order_product_recommendation/es/
    Ivorra78 authored and BT-mchechlacz committed Nov 21, 2024
    Configuration menu
    Copy the full SHA
    40b9ee1 View commit details
    Browse the repository at this point in the history
  25. [FIX] sale_order_product_recommendation: remove flaky create & new bu…

    …tton from mobile view
    
    Before this patch, mobile view displayed a "Save & New" button. Clicking on it didn't make sense (you couldn't add new lines in desktop view FWIW) and produced an exception.
    
    Now, the wizard lines are emptied when altering the form. The user must regenerate recommendations manually with a new button. [This makes the widget understand that it cannot create lines][1]. Thus, that "Save & New" button doesn't appear anymore, and the user can just edit the recommendator lines.
    
    [1]: https://github.com/odoo/odoo/blob/23f01c533512cbfb33e90509e22cd3c3c4f99d40/addons/web/static/src/views/fields/relational_utils.js#L464
    
    @moduon MT-4393
    
    Co-authored-by: Rafael Blasco <[email protected]>
    2 people authored and BT-mchechlacz committed Nov 21, 2024
    Configuration menu
    Copy the full SHA
    e031790 View commit details
    Browse the repository at this point in the history
  26. Configuration menu
    Copy the full SHA
    f0ec4b1 View commit details
    Browse the repository at this point in the history
  27. Configuration menu
    Copy the full SHA
    823d741 View commit details
    Browse the repository at this point in the history
  28. [UPD] Update sale_order_product_recommendation.pot

    oca-ci authored and BT-mchechlacz committed Nov 21, 2024
    Configuration menu
    Copy the full SHA
    84fd6e9 View commit details
    Browse the repository at this point in the history
  29. [FIX] sale_order_product_recommendation: lower test permissions

    Tests now are more trustable because they don't run as admin.
    
    @moduon MT-4472
    yajo authored and BT-mchechlacz committed Nov 21, 2024
    Configuration menu
    Copy the full SHA
    7a853cc View commit details
    Browse the repository at this point in the history
  30. Translated using Weblate (Spanish)

    Currently translated at 100.0% (60 of 60 strings)
    
    Translation: sale-workflow-16.0/sale-workflow-16.0-sale_order_product_recommendation
    Translate-URL: https://translation.odoo-community.org/projects/sale-workflow-16-0/sale-workflow-16-0-sale_order_product_recommendation/es/
    Ivorra78 authored and BT-mchechlacz committed Nov 21, 2024
    Configuration menu
    Copy the full SHA
    bf6121e View commit details
    Browse the repository at this point in the history
  31. [IMP] sale_order_product_recommendation: better ordering

    New shiny feature: you can un/favorite products, and those will appear first in the list of recommendations.
    
    New not-so-shiny feature: recommendations will be sortable by product category in desktop view.
    
    While testing the module in the field, it turned out that salespeople often use recommendations based on the product category. Other than that, the favorites option still helps.
    
    @moduon MT-4472
    yajo authored and BT-mchechlacz committed Nov 21, 2024
    Configuration menu
    Copy the full SHA
    3a8066f View commit details
    Browse the repository at this point in the history
  32. Translated using Weblate (Italian)

    Currently translated at 100.0% (60 of 60 strings)
    
    Translation: sale-workflow-16.0/sale-workflow-16.0-sale_order_product_recommendation
    Translate-URL: https://translation.odoo-community.org/projects/sale-workflow-16-0/sale-workflow-16-0-sale_order_product_recommendation/it/
    mymage authored and BT-mchechlacz committed Nov 21, 2024
    Configuration menu
    Copy the full SHA
    c98de39 View commit details
    Browse the repository at this point in the history
  33. [UPD] Update sale_order_product_recommendation.pot

    oca-ci authored and BT-mchechlacz committed Nov 21, 2024
    Configuration menu
    Copy the full SHA
    f0e9fbb View commit details
    Browse the repository at this point in the history
  34. Update translation files

    Updated by "Update PO files to match POT (msgmerge)" hook in Weblate.
    
    Translation: sale-workflow-16.0/sale-workflow-16.0-sale_order_product_recommendation
    Translate-URL: https://translation.odoo-community.org/projects/sale-workflow-16-0/sale-workflow-16-0-sale_order_product_recommendation/
    weblate authored and BT-mchechlacz committed Nov 21, 2024
    Configuration menu
    Copy the full SHA
    63cc0a7 View commit details
    Browse the repository at this point in the history
  35. Translated using Weblate (Spanish)

    Currently translated at 100.0% (62 of 62 strings)
    
    Translation: sale-workflow-16.0/sale-workflow-16.0-sale_order_product_recommendation
    Translate-URL: https://translation.odoo-community.org/projects/sale-workflow-16-0/sale-workflow-16-0-sale_order_product_recommendation/es/
    Ivorra78 authored and BT-mchechlacz committed Nov 21, 2024
    Configuration menu
    Copy the full SHA
    a3996bd View commit details
    Browse the repository at this point in the history
  36. [FIX] sale_order_product_recommendation: smaller heading on wizard

    Before this patch, the wizard header had too much height on desktop computers.
    
    Besides, the +/- buttons that appear when `web_numeric_step` is installed were too far apart on tablets.
    
    @moduon MT-4472
    yajo authored and BT-mchechlacz committed Nov 21, 2024
    Configuration menu
    Copy the full SHA
    6fbe927 View commit details
    Browse the repository at this point in the history
  37. Translated using Weblate (Italian)

    Currently translated at 100.0% (62 of 62 strings)
    
    Translation: sale-workflow-16.0/sale-workflow-16.0-sale_order_product_recommendation
    Translate-URL: https://translation.odoo-community.org/projects/sale-workflow-16-0/sale-workflow-16-0-sale_order_product_recommendation/it/
    mymage authored and BT-mchechlacz committed Nov 21, 2024
    Configuration menu
    Copy the full SHA
    24d8471 View commit details
    Browse the repository at this point in the history
  38. Translated using Weblate (Portuguese (Brazil))

    Currently translated at 100.0% (62 of 62 strings)
    
    Translation: sale-workflow-16.0/sale-workflow-16.0-sale_order_product_recommendation
    Translate-URL: https://translation.odoo-community.org/projects/sale-workflow-16-0/sale-workflow-16-0-sale_order_product_recommendation/pt_BR/
    adrianojprado authored and BT-mchechlacz committed Nov 21, 2024
    Configuration menu
    Copy the full SHA
    00e69a2 View commit details
    Browse the repository at this point in the history
  39. [FIX] sale_order_product_recommendation: don't destroy choices when c…

    …riteria changes
    
    Before this patch:
    1. Open the recommendations wizard.
    2. Generate recommendations.
    3. Use those recommendation lines to add some products to the SO.
    4. Change some filter parameter.
    5. 💣 All changes you made are lost.
    
    Now, to change filter criteria, you have to click on a button that will warn you about changes being lost. Then, you can choose to not do that, and instead save before opening a new recommendations wizard.
    
    @moduon MT-4472
    yajo authored and BT-mchechlacz committed Nov 21, 2024
    Configuration menu
    Copy the full SHA
    37b7001 View commit details
    Browse the repository at this point in the history
  40. [UPD] Update sale_order_product_recommendation.pot

    oca-ci authored and BT-mchechlacz committed Nov 21, 2024
    Configuration menu
    Copy the full SHA
    9518f98 View commit details
    Browse the repository at this point in the history
  41. [IMP] sale_order_product_recommendation: choose order on mobile

    Before, recommendations on mobile screens couldn't be sorted because they are using the kanban widget, which doesn't allow it.
    
    Recommendation lines order is particularly important to improve salesperson efficiency, so a special feature is added here so that it can be done while using the module in mobile.
    
    The previous default behavior is respected.
    
    @moduon MT-4472
    yajo authored and BT-mchechlacz committed Nov 21, 2024
    Configuration menu
    Copy the full SHA
    6cf48b7 View commit details
    Browse the repository at this point in the history
  42. [UPD] Update sale_order_product_recommendation.pot

    oca-ci authored and BT-mchechlacz committed Nov 21, 2024
    Configuration menu
    Copy the full SHA
    00235d5 View commit details
    Browse the repository at this point in the history
  43. [IMP] sale_order_product_recommendation: sort separately by product n…

    …ame or code
    
    Before this patch, only one column was displayed for product. Thus, sorting by its name was giving unexpected results if some had code and others didn't.
    
    Now that column is hidden by default, and product name and code are split in 2 columns that can be sorted separately in list view.
    
    As the amount of list columns grows, I added `optional="show"` to more of them.
    
    For mobile kanban, product code order is added to the settings before generating recommendations.
    
    @moduon MT-4472
    yajo authored and BT-mchechlacz committed Nov 21, 2024
    Configuration menu
    Copy the full SHA
    51e43d1 View commit details
    Browse the repository at this point in the history
  44. [UPD] Update sale_order_product_recommendation.pot

    oca-ci authored and BT-mchechlacz committed Nov 21, 2024
    Configuration menu
    Copy the full SHA
    6261308 View commit details
    Browse the repository at this point in the history
  45. Translated using Weblate (Italian)

    Currently translated at 100.0% (71 of 71 strings)
    
    Translation: sale-workflow-16.0/sale-workflow-16.0-sale_order_product_recommendation
    Translate-URL: https://translation.odoo-community.org/projects/sale-workflow-16-0/sale-workflow-16-0-sale_order_product_recommendation/it/
    mymage authored and BT-mchechlacz committed Nov 21, 2024
    Configuration menu
    Copy the full SHA
    d0b58c0 View commit details
    Browse the repository at this point in the history
  46. Translated using Weblate (Spanish)

    Currently translated at 100.0% (71 of 71 strings)
    
    Translation: sale-workflow-16.0/sale-workflow-16.0-sale_order_product_recommendation
    Translate-URL: https://translation.odoo-community.org/projects/sale-workflow-16-0/sale-workflow-16-0-sale_order_product_recommendation/es/
    Ivorra78 authored and BT-mchechlacz committed Nov 21, 2024
    Configuration menu
    Copy the full SHA
    deb9cce View commit details
    Browse the repository at this point in the history
  47. [FIX] sale_order_product_recommendation: AccessError when getting rec…

    …ommendations
    
    A simple salesperson couldn't access recommendations after OCA#2913 was merged.
    
    It turns out that these tests were not using the testing user they created, although it seemed like so.
    
    Now I'm reducing the permissions for the user that runs the tests, and thus can fix the issue and get it tested.
    
    @moduon MT-4941
    yajo authored and BT-mchechlacz committed Nov 21, 2024
    Configuration menu
    Copy the full SHA
    43211c2 View commit details
    Browse the repository at this point in the history
  48. [FIX] sale_order_product_recommendation: feedback when nothing is found

    As OCA#2936 (comment) shows, when there's nothing found and there's no user feedback, the wizard looked like stuck.
    
    Now there's a visual feedback indicating the user what's happening and what to do.
    
    @moduon MT-4941
    yajo authored and BT-mchechlacz committed Nov 21, 2024
    Configuration menu
    Copy the full SHA
    30767c7 View commit details
    Browse the repository at this point in the history
  49. [UPD] Update sale_order_product_recommendation.pot

    oca-ci authored and BT-mchechlacz committed Nov 21, 2024
    Configuration menu
    Copy the full SHA
    a86ca55 View commit details
    Browse the repository at this point in the history
  50. Translated using Weblate (Italian)

    Currently translated at 100.0% (72 of 72 strings)
    
    Translation: sale-workflow-16.0/sale-workflow-16.0-sale_order_product_recommendation
    Translate-URL: https://translation.odoo-community.org/projects/sale-workflow-16-0/sale-workflow-16-0-sale_order_product_recommendation/it/
    mymage authored and BT-mchechlacz committed Nov 21, 2024
    Configuration menu
    Copy the full SHA
    b3cc67f View commit details
    Browse the repository at this point in the history
  51. Translated using Weblate (Spanish)

    Currently translated at 100.0% (72 of 72 strings)
    
    Translation: sale-workflow-16.0/sale-workflow-16.0-sale_order_product_recommendation
    Translate-URL: https://translation.odoo-community.org/projects/sale-workflow-16-0/sale-workflow-16-0-sale_order_product_recommendation/es/
    Ivorra78 authored and BT-mchechlacz committed Nov 21, 2024
    Configuration menu
    Copy the full SHA
    34e2c6b View commit details
    Browse the repository at this point in the history
  52. [FIX] sale_order_product_recommendation: make UoM work

    Before this patch, UoM wasn't being properly inherited into generated lines when those lines didn't exist previously in the SO.
    
    Also, changing it manually didn't work as expected in that same case.
    
    This is because the UoM was related to the SOL UoM. But if there was no SOL, it did nothing.
    
    Now it's properly computed. UoM comes from the product if there's no SOL or it can't provide it. The user can change it to other UoM of the same category. The change is propagated when applying the wizard, both when creating lines and updating them. Tests added.
    
    @moduon MT-4472
    yajo authored and BT-mchechlacz committed Nov 21, 2024
    Configuration menu
    Copy the full SHA
    6d6d2c4 View commit details
    Browse the repository at this point in the history
  53. [UPD] Update sale_order_product_recommendation.pot

    oca-ci authored and BT-mchechlacz committed Nov 21, 2024
    Configuration menu
    Copy the full SHA
    87b372c View commit details
    Browse the repository at this point in the history
  54. Update translation files

    Updated by "Update PO files to match POT (msgmerge)" hook in Weblate.
    
    Translation: sale-workflow-16.0/sale-workflow-16.0-sale_order_product_recommendation
    Translate-URL: https://translation.odoo-community.org/projects/sale-workflow-16-0/sale-workflow-16-0-sale_order_product_recommendation/
    weblate authored and BT-mchechlacz committed Nov 21, 2024
    Configuration menu
    Copy the full SHA
    b3fe827 View commit details
    Browse the repository at this point in the history
  55. Translated using Weblate (Spanish)

    Currently translated at 100.0% (75 of 75 strings)
    
    Translation: sale-workflow-16.0/sale-workflow-16.0-sale_order_product_recommendation
    Translate-URL: https://translation.odoo-community.org/projects/sale-workflow-16-0/sale-workflow-16-0-sale_order_product_recommendation/es/
    Ivorra78 authored and BT-mchechlacz committed Nov 21, 2024
    Configuration menu
    Copy the full SHA
    73886b2 View commit details
    Browse the repository at this point in the history
  56. Translated using Weblate (Italian)

    Currently translated at 100.0% (75 of 75 strings)
    
    Translation: sale-workflow-16.0/sale-workflow-16.0-sale_order_product_recommendation
    Translate-URL: https://translation.odoo-community.org/projects/sale-workflow-16-0/sale-workflow-16-0-sale_order_product_recommendation/it/
    mymage authored and BT-mchechlacz committed Nov 21, 2024
    Configuration menu
    Copy the full SHA
    c4e5135 View commit details
    Browse the repository at this point in the history
  57. [FIX] sale_order_product_recommendation: product category field string

    Product category was labeled as "Complete name" due to a typo in field definition, which didn't make any sense.
    
    @moduon MT-5404
    yajo authored and BT-mchechlacz committed Nov 21, 2024
    Configuration menu
    Copy the full SHA
    71fac70 View commit details
    Browse the repository at this point in the history
  58. [UPD] Update sale_order_product_recommendation.pot

    oca-ci authored and BT-mchechlacz committed Nov 21, 2024
    Configuration menu
    Copy the full SHA
    e3a393c View commit details
    Browse the repository at this point in the history
  59. [BOT] post-merge updates

    OCA-git-bot authored and BT-mchechlacz committed Nov 21, 2024
    Configuration menu
    Copy the full SHA
    ec1bc0b View commit details
    Browse the repository at this point in the history
  60. Update translation files

    Updated by "Update PO files to match POT (msgmerge)" hook in Weblate.
    
    Translation: sale-workflow-16.0/sale-workflow-16.0-sale_order_product_recommendation
    Translate-URL: https://translation.odoo-community.org/projects/sale-workflow-16-0/sale-workflow-16-0-sale_order_product_recommendation/
    weblate authored and BT-mchechlacz committed Nov 21, 2024
    Configuration menu
    Copy the full SHA
    ab94d54 View commit details
    Browse the repository at this point in the history
  61. [IMP] sale_order_product_recommendation: improve performance of propa…

    …gating recommendations to sale order
    trisdoan authored and BT-mchechlacz committed Nov 21, 2024
    Configuration menu
    Copy the full SHA
    d2bfe7f View commit details
    Browse the repository at this point in the history
  62. [UPD] Update sale_order_product_recommendation.pot

    oca-ci authored and BT-mchechlacz committed Nov 21, 2024
    Configuration menu
    Copy the full SHA
    2c40583 View commit details
    Browse the repository at this point in the history
  63. Translated using Weblate (Portuguese (Brazil))

    Currently translated at 100.0% (73 of 73 strings)
    
    Translation: sale-workflow-16.0/sale-workflow-16.0-sale_order_product_recommendation
    Translate-URL: https://translation.odoo-community.org/projects/sale-workflow-16-0/sale-workflow-16-0-sale_order_product_recommendation/pt_BR/
    Rodrigo Macedo authored and BT-mchechlacz committed Nov 21, 2024
    Configuration menu
    Copy the full SHA
    5b02e0f View commit details
    Browse the repository at this point in the history
  64. Configuration menu
    Copy the full SHA
    68c01ad View commit details
    Browse the repository at this point in the history
  65. Configuration menu
    Copy the full SHA
    c387595 View commit details
    Browse the repository at this point in the history
  66. [UPD] Update sale_order_product_recommendation.pot

    oca-ci authored and BT-mchechlacz committed Nov 21, 2024
    Configuration menu
    Copy the full SHA
    c75907f View commit details
    Browse the repository at this point in the history
  67. Configuration menu
    Copy the full SHA
    607886e View commit details
    Browse the repository at this point in the history

Commits on Nov 25, 2024

  1. Configuration menu
    Copy the full SHA
    6585d51 View commit details
    Browse the repository at this point in the history