3
0
Fork 0
Commit Graph

91 Commits (52505f427212be0686353a12209c56ff5abdaf23)

Author SHA1 Message Date
Ivorra78 546e68fba4 Translated using Weblate (Spanish)
Currently translated at 100.0% (6 of 6 strings)

Translation: web-15.0/web-15.0-web_advanced_search
Translate-URL: https://translation.odoo-community.org/projects/web-15-0/web-15-0-web_advanced_search/es/
2023-11-18 17:33:27 +00:00
Weblate 1dc4e2e09b Update translation files
Updated by "Update PO files to match POT (msgmerge)" hook in Weblate.

Translation: web-15.0/web-15.0-web_advanced_search
Translate-URL: https://translation.odoo-community.org/projects/web-15-0/web-15-0-web_advanced_search/
2023-10-28 13:00:14 +00:00
OCA-git-bot c375a6f8b0 [BOT] post-merge updates 2023-10-19 08:58:16 +00:00
oca-ci 30b726672c [UPD] Update web_advanced_search.pot 2023-10-19 08:54:43 +00:00
OCA-git-bot 4387caf0f5 Merge PR #2625 into 15.0
Signed-off-by pedrobaeza
2023-10-19 08:51:51 +00:00
Phillip Witte c3b1e87815 [FIX] web_advanced_search: Fixed changes from code editor not propagated 2023-10-12 11:44:35 +02:00
OCA-git-bot 9733e6633f [BOT] post-merge updates 2023-10-10 09:09:02 +00:00
OCA-git-bot 580473c759 Merge PR #2638 into 15.0
Signed-off-by pedrobaeza
2023-10-10 09:05:39 +00:00
David e302482a2f [FIX] web_advanced_search: search more filters
TT44025
2023-10-10 10:29:40 +02:00
Weblate 435adb7b4e Update translation files
Updated by "Update PO files to match POT (msgmerge)" hook in Weblate.

Translation: web-15.0/web-15.0-web_advanced_search
Translate-URL: https://translation.odoo-community.org/projects/web-15-0/web-15-0-web_advanced_search/
2023-10-09 19:49:30 +00:00
OCA-git-bot 779de6d33e [UPD] README.rst 2023-09-04 12:28:33 +00:00
OCA-git-bot 9b050fc0fc web_advanced_search 15.0.1.1.3 2023-09-04 12:28:27 +00:00
OCA-git-bot 4b348e02fe Merge PR #2604 into 15.0
Signed-off-by pedrobaeza
2023-09-04 12:25:00 +00:00
OCA-git-bot 55183d2487 [UPD] README.rst 2023-09-03 17:56:09 +00:00
David 7220ef4709 [FIX] web_advanced_search: recover support for m2m and o2m custom filter
TT44862
2023-09-01 12:19:29 +02:00
OCA-git-bot add090c656 web_advanced_search 15.0.1.1.2 2023-04-19 15:58:00 +00:00
Ivàn Todorovich 66b4dd2dd8
[FIX] `web_advanced_search`: Exception raised with "Search more..."
Steps to reproduce:

1. Go to Contacts (for example).
2. Filters > Add Custom Filter.
3. Select "Company" field.
4. Select "is equal to" operator.
5. Click on "Search more..." button.
6. Select a record.

Result:

An exception is raised

```
UncaughtPromiseError > TypeError
Uncaught Promise > parent._trigger_up is not a function
```

Expected:

It should open the search more dialog, and let the user select a record.
2023-04-18 11:56:54 -03:00
OCA-git-bot f3833e4da8 web_advanced_search 15.0.1.1.1 2022-09-13 14:55:14 +00:00
Víctor Martínez fcd83da94e [FIX] web_advanced_search: Prevent error in many2one fields 2022-09-13 15:25:01 +02:00
Jacek Michalski 0ce1d1c98e Translated using Weblate (Polish)
Currently translated at 100.0% (4 of 4 strings)

Translation: web-15.0/web-15.0-web_advanced_search
Translate-URL: https://translation.odoo-community.org/projects/web-15-0/web-15-0-web_advanced_search/pl/
2022-08-11 13:07:04 +00:00
Jacek Michalski 9167465b96 Added translation using Weblate (Polish) 2022-08-11 10:44:20 +00:00
OCA-git-bot f8dd21fc53 web_advanced_search 15.0.1.1.0 2022-07-20 11:31:06 +00:00
Ivàn Todorovich fbb9387d2a
[FIX] web_advanced_search: Implement 'Add Advanced Filter' for owl widgets (pivot, graph)
Steps to reproduce:

1. Go to any Pivot or Graph view.
2. Open the filter menu.

Result:

'Add Advanced Filter' option is not there
2022-07-19 16:04:28 -03:00
Ivàn Todorovich 7de75a9600
[FIX] web_advanced_search: Implement 'Add Custom Filter' for owl widgets (pivot, graph)
Steps to reproduce:

1. Go to any Pivot or Graph view.
2. Add a custom filter, for example, Company.
3. Use the "is equal to" operator.

Result:

Uncaught Promise > Cannot find the definition of component "RecordPicker"

---

This happens because in Odoo 15.0 there are two versions of the FilterMenu and
CustomFilterItem widgets: one implemented in the legacy widget framework [^1]
and another implemented in Owl [^2].

The legacy version is used for `tree` views, for example; whilst the Owl version
is used for `pivot` and `graph` views.

Confusing as it is, before this commit only the legacy version was being overriden,
making it work for `tree` views (most common case), but not for `pivot` views.

Since both versions share the same QWeb template, though, not only it wasn't
working for `pivot`, but it also raised an Exception.

[^1]: https://github.com/odoo/odoo/blob/21a2dfd90/addons/web/static/src/legacy/js/control_panel/custom_filter_item.js#L45
[^2]: https://github.com/odoo/odoo/blob/21a2dfd90/addons/web/static/src/search/filter_menu/custom_filter_item.js#L107
2022-07-19 16:04:24 -03:00
Ivàn Todorovich 2728187b2b
[IMP] web_advanced_search: Move legacy widget overrides to specific folder 2022-07-19 16:02:27 -03:00
OCA-git-bot 71fd104bc6 [UPD] README.rst 2022-03-07 13:21:15 +00:00
oca-ci ec6af32b05 [UPD] Update web_advanced_search.pot 2022-03-07 13:18:40 +00:00
Ivàn Todorovich f3999c21a8
[MIG] web_advanced_search: Migration to 15.0 2022-02-22 09:42:59 -03:00
Ivàn Todorovich 386072b61b
[IMP] web_advanced_search: pre-commit execution 2022-02-21 17:41:15 -03:00
Alessandro Fiorino 53e031d676
Translated using Weblate (Italian)
Currently translated at 100.0% (1 of 1 strings)

Translation: web-14.0/web-14.0-web_advanced_search
Translate-URL: https://translation.odoo-community.org/projects/web-14-0/web-14-0-web_advanced_search/it/
2022-02-21 17:41:01 -03:00
Alessandro Fiorino 02dd73140f
Added translation using Weblate (Italian) 2022-02-21 17:41:01 -03:00
OCA-git-bot c5f8dcb6f5
web_advanced_search 14.0.1.0.1 2022-02-21 17:41:00 -03:00
Jeroen Evens f564058b19
[FIX] fix issue with company-dependent m2x fields when strings are used in domain instead of ids
re-add copyright
2022-02-21 17:41:00 -03:00
Raf Ven fa2d0ef54c
[14.0] [FIX] web_advanced_search: Many2one selection on Filters missing 2022-02-21 17:41:00 -03:00
oca-travis d043e62ae7
[UPD] Update web_advanced_search.pot 2022-02-21 17:40:59 -03:00
Raf Ven b2eb3dbac7
[MIG] web_advanced_search: Migration to 14.0 2022-02-21 17:40:59 -03:00
Raf Ven 1eca71d2b2
[IMP] web_advanced_search: black, isort 2022-02-21 17:40:58 -03:00
Dennis Sluijk bc009c1d5f
Translated using Weblate (Dutch)
Currently translated at 100.0% (1 of 1 strings)

Translation: web-13.0/web-13.0-web_advanced_search
Translate-URL: https://translation.odoo-community.org/projects/web-13-0/web-13-0-web_advanced_search/nl_NL/
2022-02-21 17:40:58 -03:00
Dennis Sluijk 619a17d3f3
Translated using Weblate (Dutch)
Currently translated at 100.0% (1 of 1 strings)

Translation: web-13.0/web-13.0-web_advanced_search
Translate-URL: https://translation.odoo-community.org/projects/web-13-0/web-13-0-web_advanced_search/nl/
2022-02-21 17:40:58 -03:00
OCA-git-bot fd55287b9a
web_advanced_search 13.0.1.0.3 2022-02-21 17:40:57 -03:00
Alexandre D. Díaz 6c8c0c9ec5
[IMP] web_advanced_search: Don't block modal filter menu 2022-02-21 17:40:57 -03:00
Alexandre D. Díaz 7cc6c1ff2c
[IMP] web_advanced_search: Prevent the menu from closing when using a relational field 2022-02-21 17:40:56 -03:00
c2cdidier 9f56ad7548
Translated using Weblate (German)
Currently translated at 100.0% (1 of 1 strings)

Translation: web-13.0/web-13.0-web_advanced_search
Translate-URL: https://translation.odoo-community.org/projects/web-13-0/web-13-0-web_advanced_search/de/
2022-02-21 17:40:56 -03:00
OCA-git-bot f4e974ec95
[UPD] README.rst 2022-02-21 17:40:56 -03:00
OCA-git-bot 511d2a3d51
[UPD] README.rst 2022-02-21 17:40:55 -03:00
OCA-git-bot abaa049e41
web_advanced_search 13.0.1.0.2 2022-02-21 17:40:55 -03:00
Alexandre Díaz f267c15a0a
[FIX] web_advanced_search: Change management of relational fields 2022-02-21 17:40:54 -03:00
OCA-git-bot 871d8db881
web_advanced_search 13.0.1.0.1 2022-02-21 17:40:54 -03:00
Alexandre Díaz 18fde36cc4
[IMP] web_advanced_search: Restore debug mode 2022-02-21 17:40:53 -03:00
OCA Transbot 9e16690090
Update translation files
Updated by "Update PO files to match POT (msgmerge)" hook in Weblate.

Translation: web-13.0/web-13.0-web_advanced_search
Translate-URL: https://translation.odoo-community.org/projects/web-13-0/web-13-0-web_advanced_search/
2022-02-21 17:40:53 -03:00