mirror of
https://github.com/OCA/web.git
synced 2025-02-22 13:21:25 +02:00
* [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.
19 lines
380 B
Python
19 lines
380 B
Python
# -*- coding: utf-8 -*-
|
|
|
|
{
|
|
"name": 'web_m2x_options',
|
|
"version": "9.0.1.1.0",
|
|
"depends": [
|
|
'base',
|
|
'web',
|
|
],
|
|
'qweb': [
|
|
'static/src/xml/base.xml',
|
|
],
|
|
'license': 'AGPL-3',
|
|
'data': ['views/view.xml'],
|
|
"author": "ACSONE SA/NV, 0k.io, Tecnativa, "
|
|
"Odoo Community Association (OCA)",
|
|
'installable': True,
|
|
}
|