Pedro M. Baeza
d98e1fe2f5
[FIX] web_ir_actions_act_window_message: Proper trailing line in XML
2022-07-21 11:21:24 +05:30
Pedro M. Baeza
bb1e4d0427
[IMP] web_ir_actions_act_window_message: Remove utf-8 comment
2022-07-21 11:21:24 +05:30
OCA-git-bot
90a551f876
[UPD] README.rst
2022-07-21 11:21:24 +05:30
OCA Transbot
21050a817f
Update translation files
...
Updated by "Update PO files to match POT (msgmerge)" hook in Weblate.
Translation: web-12.0/web-12.0-web_ir_actions_act_window_message
Translate-URL: https://translation.odoo-community.org/projects/web-12-0/web-12-0-web_ir_actions_act_window_message/
2022-07-21 11:21:24 +05:30
OCA Transbot
ad2fec7ab1
Update translation files
...
Updated by "Update PO files to match POT (msgmerge)" hook in Weblate.
Translation: web-12.0/web-12.0-web_ir_actions_act_window_message
Translate-URL: https://translation.odoo-community.org/projects/web-12-0/web-12-0-web_ir_actions_act_window_message/
2022-07-21 11:21:24 +05:30
OCA-git-bot
ca29652857
[UPD] README.rst
2022-07-21 11:21:24 +05:30
oca-travis
83e529ad9a
[UPD] Update web_ir_actions_act_window_message.pot
2022-07-21 11:21:24 +05:30
Abraham Anes
e33a382f6f
[12.0][MIG] web_ir_actions_act_window_message: Migration to 12.0
2022-07-21 11:21:24 +05:30
oca-travis
77c3f25766
[UPD] Update web_ir_actions_act_window_message.pot
2022-07-21 11:21:24 +05:30
OCA Transbot
e1cd3fa726
OCA Transbot updated translations from Transifex
2022-07-21 11:21:24 +05:30
Benjamin Willig
c8a72e5fcc
[MIG] web_ir_actions_act_window_message: Migration to 10. Also added HTML handling
2022-07-21 11:21:24 +05:30
Zakaria Makrelouf
4ed7715658
wrap line breaks of the action message
2022-07-21 11:21:24 +05:30
Zakaria Makrelouf
ff4d835f6d
s/oe_link_class/classes s/oe_highlight/btn-default and add it to readme * In v9.0 odoo uses classes for dialog buttons instead of oe_link_class
2022-07-21 11:21:24 +05:30
Zakaria Makrelouf
07e9f67424
Reformat the code to have coherent coding style
2022-07-21 11:21:24 +05:30
Zakaria Makrelouf
511505fe98
web_ir_actions_act_window_message: always refresh view after action
2022-07-21 11:21:24 +05:30
Zakaria Makrelouf
2454873100
web_ir_actions_act_window_message: Migration to V9
...
* Update the module version to 9.0.
* Align file header to the OCA Guidelines.
* Migrate Javascript file to the V9 API.
* Refresh the view before closing the dialog when clicking
on close button
2022-07-21 11:21:24 +05:30
OCA Transbot
42f829b568
OCA Transbot updated translations from Transifex
2022-07-21 11:21:24 +05:30
Holger Brunn
ef052116bd
implement close_button_title
2022-07-21 11:21:24 +05:30
Holger Brunn
208e8d4475
allow to pass a list of buttons
2022-07-21 11:21:24 +05:30
Pedro M. Baeza
2ea4d8bd23
[MIG] Rename manifest files
2022-07-21 11:21:24 +05:30
Pedro M. Baeza
1f42a8f559
[MIG] Make modules uninstallable
2022-07-21 11:21:24 +05:30
Stéphane Bidoul
0353888d95
[UPD] prefix versions with 8.0
2022-07-21 11:21:24 +05:30
Markus Schneider
bf422f48d5
add OCA to author
2022-07-21 11:21:24 +05:30
Yannick Vaucher
20a22f197f
Add bug tracker link on README.rst
2022-07-21 11:21:24 +05:30
Holger Brunn
82298d2ff1
[IMP] better readme, manifest
2022-07-21 11:21:24 +05:30
Holger Brunn
b6661f941f
[ADD] web_ir_actions_act_window_message
2022-07-21 11:21:24 +05:30
OCA-git-bot
bc7096d036
[UPD] addons table in README.md
2022-07-20 11:31:12 +00:00
OCA-git-bot
f8dd21fc53
web_advanced_search 15.0.1.1.0
2022-07-20 11:31:06 +00:00
OCA-git-bot
788acf1435
Merge PR #2258 into 15.0
...
Signed-off-by ivantodorovich
2022-07-20 11:27:46 +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 Transbot
8f156edf36
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/
2022-07-16 13:54:25 +00:00
OCA-git-bot
445313f0f8
[UPD] addons table in README.md
2022-07-16 13:54:12 +00:00
OCA-git-bot
d2fc9fd7eb
web_m2x_options 15.0.1.1.0
2022-07-16 13:54:07 +00:00
OCA-git-bot
98c36a7dbe
[UPD] README.rst
2022-07-16 13:54:07 +00:00
oca-ci
8834c0a4cd
[UPD] Update web_m2x_options.pot
2022-07-16 13:50:52 +00:00
OCA-git-bot
9c22f50428
Merge PR #2174 into 15.0
...
Signed-off-by pedrobaeza
2022-07-16 13:48:59 +00:00
Víctor Martínez
e30237d135
[MIG] web_calendar_slot_duration: Migration to 14.0
2022-07-12 22:43:57 +02:00
Víctor Martínez
4e44864ff9
[IMP] web_calendar_slot_duration: black, isort, prettier
2022-07-12 22:43:57 +02:00
Jairo Llopis
eb87847569
[MIG] web_calendar_slot_duration: migration to 13.0
...
Most normal migration ever.
@Tecnativa TT30987
[UPD] Update web_calendar_slot_duration.pot
[UPD] README.rst
Update translation files
Updated by "Update PO files to match POT (msgmerge)" hook in Weblate.
Translation: web-13.0/web-13.0-web_calendar_slot_duration
Translate-URL: https://translation.odoo-community.org/projects/web-13-0/web-13-0-web_calendar_slot_duration/
2022-07-12 22:43:57 +02:00
Maria Sparenberg
5dd18d60af
Added translation using Weblate (German)
2022-07-12 22:43:56 +02:00
Marcel Savegnago
84d1054b93
Added translation using Weblate (Portuguese (Brazil))
2022-07-12 22:43:56 +02:00
Jairo Llopis
7fa193cf1e
[ADD] web_calendar_slot_duration: customizable calendar slots timespan
...
This module extends the functionality of backend calendars to support custom
slot durations and to allow you to provide more specific UX regarding event
duration and snapping.
@Tecnativa TT28201
[UPD] Update web_calendar_slot_duration.pot
[UPD] README.rst
2022-07-12 22:43:56 +02:00
OCA-git-bot
f3d59726f5
[ADD] setup.py
2022-06-22 10:37:22 +00:00
OCA-git-bot
fa7703fe4d
[UPD] README.rst
2022-06-22 10:37:21 +00:00
OCA-git-bot
62db92b867
[UPD] addons table in README.md
2022-06-22 10:37:17 +00:00
oca-ci
d19d54e953
[UPD] Update web_widget_child_selector.pot
2022-06-22 10:34:55 +00:00
OCA-git-bot
9f1b9c66e5
Merge PR #2216 into 15.0
...
Signed-off-by etobella
2022-06-22 10:32:25 +00:00
OCA-git-bot
a531d74bfe
[ADD] setup.py
2022-06-22 10:30:55 +00:00