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

[17.0][MIG] web_m2x_options Migration to 17.0 #2848

Closed
wants to merge 91 commits into from
Closed

Commits on Jun 18, 2024

  1. - Rename web_m2o_enhanced to web_m2x_options

    - Add static/description/index.html
    
    fix: use include instead of extend in js function inheritance.
    
    fix: not overwriting the existing object references with the result of the include
    
    fix: update name according to new module name.
    
    fix: error when displaying many2many field without options defined.
    Nicolas JEUDY authored and mohs8421 committed Jun 18, 2024
    Configuration menu
    Copy the full SHA
    1756736 View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    8c14ddf View commit details
    Browse the repository at this point in the history
  3. fix: obscur wrong path on last commit. recreate portage from scratch.

    Nicolas JEUDY authored and mohs8421 committed Jun 18, 2024
    Configuration menu
    Copy the full SHA
    e5640aa View commit details
    Browse the repository at this point in the history
  4. support 'open' on many2many_tags

    [ADD] support 'no_open_edit' on many2one
    [FIX] typos
    hbrunn authored and mohs8421 committed Jun 18, 2024
    Configuration menu
    Copy the full SHA
    47c031e View commit details
    Browse the repository at this point in the history
  5. Configuration menu
    Copy the full SHA
    52dc190 View commit details
    Browse the repository at this point in the history
  6. Configuration menu
    Copy the full SHA
    1ea2edf View commit details
    Browse the repository at this point in the history
  7. Configuration menu
    Copy the full SHA
    f6c868f View commit details
    Browse the repository at this point in the history
  8. Migration of module web_m2x_options. Adapt JS file to the new JS API …

    …and make the module installable [MIG] adapt form.js to the new API. [FIX] Fix bug mentioned in pull OCA#262. [MIG] Make the module installable.
    zakiuu authored and mohs8421 committed Jun 18, 2024
    Configuration menu
    Copy the full SHA
    972aa47 View commit details
    Browse the repository at this point in the history
  9. Configuration menu
    Copy the full SHA
    872d812 View commit details
    Browse the repository at this point in the history
  10. web_m2x_options: s/ev.handleObj.selector/currentTarget * many2many wi…

    …th `options={'open': True}` it always open the first element with this fix it will open the right one
    zakiuu authored and mohs8421 committed Jun 18, 2024
    Configuration menu
    Copy the full SHA
    331276c View commit details
    Browse the repository at this point in the history
  11. Fix Qweb templates. (OCA#561)

    * [FIX][web_m2x_options] Fix Qweb templates.
    
    They were trying to replace non-existing elements, and this was being logged to console:
    
        Can't find "a.oe_m2o_cm_button" when extending template FieldMany2One
        Can't find "span.badge" when extending template FieldMany2ManyTag
    
    * Raise version correctly.
    
    * [FIX] Make many2many_tags tag deletion work again
    
    * Correct replacement of event
    
    Instead of overwriting all events from upstream widget, better just overwrite the one you need and inherit the rest.
    yajo authored and mohs8421 committed Jun 18, 2024
    Configuration menu
    Copy the full SHA
    27fb233 View commit details
    Browse the repository at this point in the history
  12. Configuration menu
    Copy the full SHA
    1fa709f View commit details
    Browse the repository at this point in the history
  13. Configuration menu
    Copy the full SHA
    a734143 View commit details
    Browse the repository at this point in the history
  14. [IMP] web_m2x_options: Perf issue OCA#615

    * fix unecessary calls
    
    Do check_access_rights and disable_quick_create calls only once per field.
    jesusVMayor authored and mohs8421 committed Jun 18, 2024
    Configuration menu
    Copy the full SHA
    9359b99 View commit details
    Browse the repository at this point in the history
  15. web_m2x_options: Hide the create/create and edit... button when the u…

    …ser does not have creation permission.
    jesusVMayor authored and mohs8421 committed Jun 18, 2024
    Configuration menu
    Copy the full SHA
    9186ab0 View commit details
    Browse the repository at this point in the history
  16. Configuration menu
    Copy the full SHA
    e548b19 View commit details
    Browse the repository at this point in the history
  17. [FIX] web_m2x_options: Compatibilize with web_advanced_search_x2x

    `web_m2x_options` is supposed to render fields in the context of a form or tree view, where domains can safely be applied because there's a main record that includes a context.
    
    However, when installing along with `web_advanced_search_x2x`, they produce an incompatibility when a x2x field's domain is defined and depends on the current record's context, because a search view has no notion of a *current record*.
    
    The fix is simple: try to do as usual, and if it fails, try without the field's domain.
    
    Without this patch, an exception like this would be raised, i.e. when both addons are installed and you are trying to search project tasks by stage:
    
    ``` Error: NameError: name 'project_id' is not defined
    http://localhost/web/static/lib/py.js/lib/py.js:370# Traceback:# Changes to be committed:
    PY_ensurepy@http://localhost/web/static/lib/py.js/lib/py.js:370:19# modified: static/src/js/form.js
    py.evaluate@http://localhost/web/static/lib/py.js/lib/py.js:1340:20#
    py.evaluate@http://localhost/web/static/lib/py.js/lib/py.js:1397:35
    py.evaluate@http://localhost/web/static/lib/py.js/lib/py.js:1409:34
    py.eval@http://localhost/web/static/lib/py.js/lib/py.js:1453:16
    eval_domains/<@http://localhost/web/static/src/js/framework/pyeval.js:869:39
    _.forEach@http://localhost/web/static/lib/underscore/underscore.js:145:9
    _.mixin/</_.prototype[name]@http://localhost/web/static/lib/underscore/underscore.js:1484:29
    eval_domains@http://localhost/web/static/src/js/framework/pyeval.js:860:5
    eval_domains/<@http://localhost/web/static/src/js/framework/pyeval.js:873:39
    _.forEach@http://localhost/web/static/lib/underscore/underscore.js:145:9
    _.mixin/</_.prototype[name]@http://localhost/web/static/lib/underscore/underscore.js:1484:29
    eval_domains@http://localhost/web/static/src/js/framework/pyeval.js:860:5
    eval_domains/<@http://localhost/web/static/src/js/framework/pyeval.js:873:39
    _.forEach@http://localhost/web/static/lib/underscore/underscore.js:145:9
    _.mixin/</_.prototype[name]@http://localhost/web/static/lib/underscore/underscore.js:1484:29
    eval_domains@http://localhost/web/static/src/js/framework/pyeval.js:860:5
    pyeval@http://localhost/web/static/src/js/framework/pyeval.js:977:16
    eval_arg@http://localhost/web/static/src/js/framework/pyeval.js:988:16
    ensure_evaluated@http://localhost/web/static/src/js/framework/pyeval.js:1011:21
    call@http://localhost/web/static/src/js/framework/data_model.js:56:9
    name_search@http://localhost/web/static/src/js/framework/data.js:537:16
    get_search_result@http://localhost/web_m2x_options/static/src/js/form.js:130:50
    OdooClass.extend/Class.include/</prototype[name]</<@http://localhost/web/static/src/js/framework/class.js:122:35
    source@http://localhost/web/static/src/js/views/form_relational_widgets.js:271:17
    _search@http://localhost/web/static/lib/jquery.ui/jquery-ui.js:6823:3
    $.widget/</proxiedPrototype[prop]</<@http://localhost/web/static/lib/jquery.ui/jquery-ui.js:415:19
    search@http://localhost/web/static/lib/jquery.ui/jquery-ui.js:6815:10
    $.widget/</proxiedPrototype[prop]</<@http://localhost/web/static/lib/jquery.ui/jquery-ui.js:415:19
    $.widget.bridge/$.fn[name]/<@http://localhost/web/static/lib/jquery.ui/jquery-ui.js:508:19
    each@http://localhost/web/static/lib/jquery/jquery.js:383:49
    each@http://localhost/web/static/lib/jquery/jquery.js:136:24
    $.widget.bridge/$.fn[name]@http://localhost/web/static/lib/jquery.ui/jquery-ui.js:494:4
    render_editable/<@http://localhost/web/static/src/js/views/form_relational_widgets.js:189:21
    dispatch@http://localhost/web/static/lib/jquery/jquery.js:4640:50
    add/elemData.handle@http://localhost/web/static/lib/jquery/jquery.js:4309:41
    ```
    yajo authored and mohs8421 committed Jun 18, 2024
    Configuration menu
    Copy the full SHA
    3a92502 View commit details
    Browse the repository at this point in the history
  18. [MIG] web_m2x_options: Migration to 11.0

    web_m2x_options: Fix usage for non-admins
    
    web_m2x_options: Reduce rpc calls
    
    web_m2x_options: Update manifest and readme
    ernestotejeda authored and mohs8421 committed Jun 18, 2024
    Configuration menu
    Copy the full SHA
    bb2cc46 View commit details
    Browse the repository at this point in the history
  19. [UPD] Update web_m2x_options.pot

    oca-travis authored and mohs8421 committed Jun 18, 2024
    Configuration menu
    Copy the full SHA
    4faeeb5 View commit details
    Browse the repository at this point in the history
  20. Translated using Weblate (Portuguese (Brazil))

    Currently translated at 91.7% (11 of 12 strings)
    
    Translation: web-11.0/web-11.0-web_m2x_options
    Translate-URL: https://translation.odoo-community.org/projects/web-11-0/web-11-0-web_m2x_options/pt_BR/
    Rodrigo Macedo authored and mohs8421 committed Jun 18, 2024
    Configuration menu
    Copy the full SHA
    0792ead View commit details
    Browse the repository at this point in the history
  21. [FIX] open option on many2many_tags

    PCatinean authored and mohs8421 committed Jun 18, 2024
    Configuration menu
    Copy the full SHA
    7efce45 View commit details
    Browse the repository at this point in the history
  22. [FIX] web_m2x_options: Fix error in tree views with many2many_tags

    The method `_onOpenColorPicker` is defined on `FormFieldMany2ManyTags`, not in `FieldMany2ManyTags`, so it can only be called on its descendants.
    
    Otherwise, clicking on a `many2many_tags` tag when found in a tree view produces an error such as:
    
        TypeError: self._onOpenColorPicker is not a function
    
        http://localhost/web_m2x_options/static/src/js/form.js:354
        Rastreo de error:
        _onOpenBadge@http://localhost/web_m2x_options/static/src/js/form.js:354:17
        proxy/<@http://localhost/web/static/src/js/core/mixins.js:279:20
        dispatch@http://localhost/web/static/lib/jquery/jquery.js:4640:50
        add/elemData.handle@http://localhost/web/static/lib/jquery/jquery.js:4309:41
    
    (cherry picked from commit ddbbe81)
    yajo authored and mohs8421 committed Jun 18, 2024
    Configuration menu
    Copy the full SHA
    d1f2200 View commit details
    Browse the repository at this point in the history
  23. Configuration menu
    Copy the full SHA
    e57b9a5 View commit details
    Browse the repository at this point in the history
  24. [UPD] Update web_m2x_options.pot

    oca-travis authored and mohs8421 committed Jun 18, 2024
    Configuration menu
    Copy the full SHA
    fc243eb View commit details
    Browse the repository at this point in the history
  25. Update translation files

    Updated by "Update PO files to match POT (msgmerge)" hook in Weblate.
    
    Translation: web-12.0/web-12.0-web_m2x_options
    Translate-URL: https://translation.odoo-community.org/projects/web-12-0/web-12-0-web_m2x_options/
    oca-transbot authored and mohs8421 committed Jun 18, 2024
    Configuration menu
    Copy the full SHA
    a22e72f View commit details
    Browse the repository at this point in the history
  26. Translated using Weblate (French)

    Currently translated at 91.7% (11 of 12 strings)
    
    Translation: web-12.0/web-12.0-web_m2x_options
    Translate-URL: https://translation.odoo-community.org/projects/web-12-0/web-12-0-web_m2x_options/fr/
    Kévin Allard authored and mohs8421 committed Jun 18, 2024
    Configuration menu
    Copy the full SHA
    c479d6a View commit details
    Browse the repository at this point in the history
  27. Translated using Weblate (French)

    Currently translated at 100.0% (12 of 12 strings)
    
    Translation: web-12.0/web-12.0-web_m2x_options
    Translate-URL: https://translation.odoo-community.org/projects/web-12-0/web-12-0-web_m2x_options/fr/
    Nicolas JEUDY authored and mohs8421 committed Jun 18, 2024
    Configuration menu
    Copy the full SHA
    bd2992d View commit details
    Browse the repository at this point in the history
  28. Translated using Weblate (Portuguese (Brazil))

    Currently translated at 100.0% (12 of 12 strings)
    
    Translation: web-12.0/web-12.0-web_m2x_options
    Translate-URL: https://translation.odoo-community.org/projects/web-12-0/web-12-0-web_m2x_options/pt_BR/
    Rodrigo Macedo authored and mohs8421 committed Jun 18, 2024
    Configuration menu
    Copy the full SHA
    dd6e3b7 View commit details
    Browse the repository at this point in the history
  29. Configuration menu
    Copy the full SHA
    93f4eec View commit details
    Browse the repository at this point in the history
  30. Translated using Weblate (Chinese (Simplified))

    Currently translated at 100.0% (12 of 12 strings)
    
    Translation: web-12.0/web-12.0-web_m2x_options
    Translate-URL: https://translation.odoo-community.org/projects/web-12-0/web-12-0-web_m2x_options/zh_CN/
    liweijie0812 authored and mohs8421 committed Jun 18, 2024
    Configuration menu
    Copy the full SHA
    9656ab4 View commit details
    Browse the repository at this point in the history
  31. [MIG] web_m2x_options: Migration to 13.0

    Jeroen Evens authored and mohs8421 committed Jun 18, 2024
    Configuration menu
    Copy the full SHA
    77aa6b4 View commit details
    Browse the repository at this point in the history
  32. Configuration menu
    Copy the full SHA
    1008dfb View commit details
    Browse the repository at this point in the history
  33. Configuration menu
    Copy the full SHA
    fa2ca64 View commit details
    Browse the repository at this point in the history
  34. [REF] web_m2x_options: eslint fix

    andres-pcg authored and mohs8421 committed Jun 18, 2024
    Configuration menu
    Copy the full SHA
    40caeb8 View commit details
    Browse the repository at this point in the history
  35. Configuration menu
    Copy the full SHA
    2ef32cb View commit details
    Browse the repository at this point in the history
  36. [IMP] web_m2x_options: black, isort

    andres-pcg authored and mohs8421 committed Jun 18, 2024
    Configuration menu
    Copy the full SHA
    107e6cc View commit details
    Browse the repository at this point in the history
  37. [13.0][FIX] issue of field dropdown

    Bhavesh Odedra authored and mohs8421 committed Jun 18, 2024
    Configuration menu
    Copy the full SHA
    b2bb2b1 View commit details
    Browse the repository at this point in the history
  38. [FIX] pre-commit

    Bhavesh Odedra authored and mohs8421 committed Jun 18, 2024
    Configuration menu
    Copy the full SHA
    21d6c56 View commit details
    Browse the repository at this point in the history
  39. [UPD] Update web_m2x_options.pot

    oca-travis authored and mohs8421 committed Jun 18, 2024
    Configuration menu
    Copy the full SHA
    69d8b2f View commit details
    Browse the repository at this point in the history
  40. [UPD] README.rst

    OCA-git-bot authored and mohs8421 committed Jun 18, 2024
    Configuration menu
    Copy the full SHA
    a7ecca6 View commit details
    Browse the repository at this point in the history
  41. Update translation files

    Updated by "Update PO files to match POT (msgmerge)" hook in Weblate.
    
    Translation: web-13.0/web-13.0-web_m2x_options
    Translate-URL: https://translation.odoo-community.org/projects/web-13-0/web-13-0-web_m2x_options/
    oca-transbot authored and mohs8421 committed Jun 18, 2024
    Configuration menu
    Copy the full SHA
    a819b7b View commit details
    Browse the repository at this point in the history
  42. [FIX] web_m2x_options: quick search filter only if search value

    Before this commit, an empty filter was applied when opening the search more if nothing in the quick search.
    ThomasBinsfeld authored and mohs8421 committed Jun 18, 2024
    Configuration menu
    Copy the full SHA
    4b73238 View commit details
    Browse the repository at this point in the history
  43. web_m2x_options 13.0.1.0.1

    OCA-git-bot authored and mohs8421 committed Jun 18, 2024
    Configuration menu
    Copy the full SHA
    7845b58 View commit details
    Browse the repository at this point in the history
  44. Translated using Weblate (Chinese (Simplified))

    Currently translated at 100.0% (13 of 13 strings)
    
    Translation: web-13.0/web-13.0-web_m2x_options
    Translate-URL: https://translation.odoo-community.org/projects/web-13-0/web-13-0-web_m2x_options/zh_CN/
    liweijie0812 authored and mohs8421 committed Jun 18, 2024
    Configuration menu
    Copy the full SHA
    70e530f View commit details
    Browse the repository at this point in the history
  45. [UPD] README.rst

    OCA-git-bot authored and mohs8421 committed Jun 18, 2024
    Configuration menu
    Copy the full SHA
    144ce66 View commit details
    Browse the repository at this point in the history
  46. [UPD] README.rst

    OCA-git-bot authored and mohs8421 committed Jun 18, 2024
    Configuration menu
    Copy the full SHA
    90f5b18 View commit details
    Browse the repository at this point in the history
  47. Translated using Weblate (German)

    Currently translated at 92.3% (12 of 13 strings)
    
    Translation: web-13.0/web-13.0-web_m2x_options
    Translate-URL: https://translation.odoo-community.org/projects/web-13-0/web-13-0-web_m2x_options/de/
    didierdonze authored and mohs8421 committed Jun 18, 2024
    Configuration menu
    Copy the full SHA
    633ca1c View commit details
    Browse the repository at this point in the history
  48. Translated using Weblate (French)

    Currently translated at 100.0% (13 of 13 strings)
    
    Translation: web-13.0/web-13.0-web_m2x_options
    Translate-URL: https://translation.odoo-community.org/projects/web-13-0/web-13-0-web_m2x_options/fr/
    didierdonze authored and mohs8421 committed Jun 18, 2024
    Configuration menu
    Copy the full SHA
    69a25e5 View commit details
    Browse the repository at this point in the history
  49. Fix mobile enterprise version

    cormaza authored and mohs8421 committed Jun 18, 2024
    Configuration menu
    Copy the full SHA
    21e1397 View commit details
    Browse the repository at this point in the history
  50. web_m2x_options 13.0.1.0.2

    OCA-git-bot authored and mohs8421 committed Jun 18, 2024
    Configuration menu
    Copy the full SHA
    c130512 View commit details
    Browse the repository at this point in the history
  51. Configuration menu
    Copy the full SHA
    4e697cd View commit details
    Browse the repository at this point in the history
  52. Configuration menu
    Copy the full SHA
    12ff18f View commit details
    Browse the repository at this point in the history
  53. [UPD] Update web_m2x_options.pot

    oca-travis authored and mohs8421 committed Jun 18, 2024
    Configuration menu
    Copy the full SHA
    c6e4900 View commit details
    Browse the repository at this point in the history
  54. [UPD] README.rst

    OCA-git-bot authored and mohs8421 committed Jun 18, 2024
    Configuration menu
    Copy the full SHA
    929d0a5 View commit details
    Browse the repository at this point in the history
  55. Added translation using Weblate (Dutch)

    bosd authored and mohs8421 committed Jun 18, 2024
    Configuration menu
    Copy the full SHA
    bd19927 View commit details
    Browse the repository at this point in the history
  56. Translated using Weblate (Dutch)

    Currently translated at 93.7% (15 of 16 strings)
    
    Translation: web-14.0/web-14.0-web_m2x_options
    Translate-URL: https://translation.odoo-community.org/projects/web-14-0/web-14-0-web_m2x_options/nl/
    bosd authored and mohs8421 committed Jun 18, 2024
    Configuration menu
    Copy the full SHA
    3dd3696 View commit details
    Browse the repository at this point in the history
  57. Translated using Weblate (German)

    Currently translated at 100.0% (13 of 13 strings)
    
    Translation: web-14.0/web-14.0-web_m2x_options
    Translate-URL: https://translation.odoo-community.org/projects/web-14-0/web-14-0-web_m2x_options/de/
    Corneliuus authored and mohs8421 committed Jun 18, 2024
    Configuration menu
    Copy the full SHA
    b248342 View commit details
    Browse the repository at this point in the history
  58. [MIG] web_m2x_options: Migration to 15.0

    [FIX] web_m2x_options:  External ID not found in the system web.assets_backend
    Germana authored and mohs8421 committed Jun 18, 2024
    Configuration menu
    Copy the full SHA
    cc69dd6 View commit details
    Browse the repository at this point in the history
  59. [UPD] Update web_m2x_options.pot

    oca-ci authored and mohs8421 committed Jun 18, 2024
    Configuration menu
    Copy the full SHA
    c666827 View commit details
    Browse the repository at this point in the history
  60. [UPD] README.rst

    OCA-git-bot authored and mohs8421 committed Jun 18, 2024
    Configuration menu
    Copy the full SHA
    99adf33 View commit details
    Browse the repository at this point in the history
  61. Configuration menu
    Copy the full SHA
    2088699 View commit details
    Browse the repository at this point in the history
  62. [FIX] web_m2x_options: fix search_more behaviour

    In README.rst it is said that ``search_more`` key is "[u]sed to force disable/enable search more button".
    However, it only applies on fields where the records returned by the name_search are more than the node's limit.
    
    This commit fixes this behaviour, forcing the "Search More..." option to be *always* disabled/enabled if ``search_more`` key is set either locally (in the node's options) or globally (via the ir.config_parameter record).
    Moreover, it establishes a clear line of priority for checking whether "Search More..." should be displayed/hidden (local node has the highest priority, global config mid priority, limit check as fallback).
    SilvioC2C authored and mohs8421 committed Jun 18, 2024
    Configuration menu
    Copy the full SHA
    90fc6c6 View commit details
    Browse the repository at this point in the history
  63. Configuration menu
    Copy the full SHA
    05d2a5b View commit details
    Browse the repository at this point in the history
  64. [ADD] Option open for One2Many fields

    With 'open' option, clicking on a row of a o2m field will open the view for the record in fullscreen rather than in a popup
    qgroulard authored and mohs8421 committed Jun 18, 2024
    Configuration menu
    Copy the full SHA
    9a1c118 View commit details
    Browse the repository at this point in the history
  65. [IMP] web_m2x_options: Efficiency

    Improved the efficiency of code: With this improvement we achieve to just do an rpc call when the js file is called instead of do the call for each field.
    CarlosRoca13 authored and mohs8421 committed Jun 18, 2024
    Configuration menu
    Copy the full SHA
    72dcf6a View commit details
    Browse the repository at this point in the history
  66. [IMP] web_m2x_options: Added limit for o2m field entries

    Added the system parameter "web_m2x_options.field_limit_entries" to set the limit of entries that can be displayed.
    CarlosRoca13 authored and mohs8421 committed Jun 18, 2024
    Configuration menu
    Copy the full SHA
    34fc4b2 View commit details
    Browse the repository at this point in the history
  67. [FIX] web_m2x_options: fix test_ir_config_parameter

    nguyenhk authored and mohs8421 committed Jun 18, 2024
    Configuration menu
    Copy the full SHA
    1d8952a View commit details
    Browse the repository at this point in the history
  68. [UPD] Update web_m2x_options.pot

    oca-ci authored and mohs8421 committed Jun 18, 2024
    Configuration menu
    Copy the full SHA
    1fbcbb7 View commit details
    Browse the repository at this point in the history
  69. [UPD] README.rst

    OCA-git-bot authored and mohs8421 committed Jun 18, 2024
    Configuration menu
    Copy the full SHA
    70a230d View commit details
    Browse the repository at this point in the history
  70. web_m2x_options 15.0.1.1.0

    OCA-git-bot authored and mohs8421 committed Jun 18, 2024
    Configuration menu
    Copy the full SHA
    84176ff View commit details
    Browse the repository at this point in the history
  71. Update translation files

    Updated by "Update PO files to match POT (msgmerge)" hook in Weblate.
    
    Translation: web-15.0/web-15.0-web_m2x_options
    Translate-URL: https://translation.odoo-community.org/projects/web-15-0/web-15-0-web_m2x_options/
    oca-transbot authored and mohs8421 committed Jun 18, 2024
    Configuration menu
    Copy the full SHA
    c9fef5a View commit details
    Browse the repository at this point in the history
  72. [15.0][FIX] Remove tests from init

    CRogos authored and mohs8421 committed Jun 18, 2024
    Configuration menu
    Copy the full SHA
    8bd98da View commit details
    Browse the repository at this point in the history
  73. Configuration menu
    Copy the full SHA
    82a06a3 View commit details
    Browse the repository at this point in the history
  74. [UPD] Update web_m2x_options.pot

    oca-ci authored and mohs8421 committed Jun 18, 2024
    Configuration menu
    Copy the full SHA
    0a7af4a View commit details
    Browse the repository at this point in the history
  75. [UPD] README.rst

    OCA-git-bot authored and mohs8421 committed Jun 18, 2024
    Configuration menu
    Copy the full SHA
    3192822 View commit details
    Browse the repository at this point in the history
  76. Update translation files

    Updated by "Update PO files to match POT (msgmerge)" hook in Weblate.
    
    Translation: web-16.0/web-16.0-web_m2x_options
    Translate-URL: https://translation.odoo-community.org/projects/web-16-0/web-16-0-web_m2x_options/
    weblate authored and mohs8421 committed Jun 18, 2024
    Configuration menu
    Copy the full SHA
    e81474a View commit details
    Browse the repository at this point in the history
  77. Configuration menu
    Copy the full SHA
    44a9e05 View commit details
    Browse the repository at this point in the history
  78. Translated using Weblate (German)

    Currently translated at 100.0% (14 of 14 strings)
    
    Translation: web-16.0/web-16.0-web_m2x_options
    Translate-URL: https://translation.odoo-community.org/projects/web-16-0/web-16-0-web_m2x_options/de/
    NICO-SOLUTIONS authored and mohs8421 committed Jun 18, 2024
    Configuration menu
    Copy the full SHA
    9c350ee View commit details
    Browse the repository at this point in the history
  79. [FIX] web_m2x_options: Avoid constant RPC calls

    Instead of calling interactively to the server to get the options, they are stored at the beginning of the session.
    nguyenminhchien authored and mohs8421 committed Jun 18, 2024
    Configuration menu
    Copy the full SHA
    ccb8fb2 View commit details
    Browse the repository at this point in the history
  80. [UPD] Update web_m2x_options.pot

    oca-ci authored and mohs8421 committed Jun 18, 2024
    Configuration menu
    Copy the full SHA
    8dfdaed View commit details
    Browse the repository at this point in the history
  81. web_m2x_options 16.0.1.1.1

    OCA-git-bot authored and mohs8421 committed Jun 18, 2024
    Configuration menu
    Copy the full SHA
    b4b5a67 View commit details
    Browse the repository at this point in the history
  82. Update translation files

    Updated by "Update PO files to match POT (msgmerge)" hook in Weblate.
    
    Translation: web-16.0/web-16.0-web_m2x_options
    Translate-URL: https://translation.odoo-community.org/projects/web-16-0/web-16-0-web_m2x_options/
    weblate authored and mohs8421 committed Jun 18, 2024
    Configuration menu
    Copy the full SHA
    43fc3f4 View commit details
    Browse the repository at this point in the history
  83. Configuration menu
    Copy the full SHA
    00df9ef View commit details
    Browse the repository at this point in the history
  84. Configuration menu
    Copy the full SHA
    ec8e472 View commit details
    Browse the repository at this point in the history
  85. Translated using Weblate (Portuguese (Brazil))

    Currently translated at 100.0% (15 of 15 strings)
    
    Translation: web-16.0/web-16.0-web_m2x_options
    Translate-URL: https://translation.odoo-community.org/projects/web-16-0/web-16-0-web_m2x_options/pt_BR/
    Rodrigo Macedo authored and mohs8421 committed Jun 18, 2024
    Configuration menu
    Copy the full SHA
    93d3fdd View commit details
    Browse the repository at this point in the history
  86. Configuration menu
    Copy the full SHA
    f0a9eba View commit details
    Browse the repository at this point in the history
  87. Configuration menu
    Copy the full SHA
    0e231b5 View commit details
    Browse the repository at this point in the history
  88. Configuration menu
    Copy the full SHA
    3717b05 View commit details
    Browse the repository at this point in the history
  89. [MIG] web_m2x_options Migration to 17.0

    Adding all files from 16.0
    Modifications:
     - Updated version to refer to Odoo 17.0
     - Updated calls to patch(…) in js files to be compatible with Odoo 17.0
     - modified super.. calls
     - resolved a few import issues
    mohs8421 committed Jun 18, 2024
    Configuration menu
    Copy the full SHA
    60fa84b View commit details
    Browse the repository at this point in the history
  90. [REF] Restructuring rolational_utils main functionality

    Adding web_m2x_options to README.md again
    Refactoring relational_utils.esm.js to match with function complexity constraints
    mohs8421 committed Jun 18, 2024
    Configuration menu
    Copy the full SHA
    8eb54f7 View commit details
    Browse the repository at this point in the history
  91. [MIG] web_m2x_options Migration to 17.0

    Extracting connecting module for mass_mailing code to replace conditional client side manipulation
    mohs8421 committed Jun 18, 2024
    Configuration menu
    Copy the full SHA
    be5d7be View commit details
    Browse the repository at this point in the history