mirror of https://github.com/OCA/web.git
[MIG] web_widget_many2many_tags_multi_selection (#623)
parent
4e3b640b05
commit
946b7aeab7
|
@ -8,7 +8,7 @@ This module adds a checkbox to this list so multiple entries can be selected at
|
||||||
Installation
|
Installation
|
||||||
============
|
============
|
||||||
|
|
||||||
It was tested on Odoo 8.0 branch.
|
It was tested on Odoo 10.0 branch.
|
||||||
|
|
||||||
|
|
||||||
Bug Tracker
|
Bug Tracker
|
||||||
|
@ -43,4 +43,3 @@ This module is maintained by the OCA.
|
||||||
OCA, or the Odoo Community Association, is a nonprofit organization whose mission is to support the collaborative development of Odoo features and promote its widespread use.
|
OCA, or the Odoo Community Association, is a nonprofit organization whose mission is to support the collaborative development of Odoo features and promote its widespread use.
|
||||||
|
|
||||||
To contribute to this module, please visit http://odoo-community.org.
|
To contribute to this module, please visit http://odoo-community.org.
|
||||||
|
|
||||||
|
|
|
@ -21,7 +21,7 @@
|
||||||
|
|
||||||
{
|
{
|
||||||
'name': 'Tags multiple selection',
|
'name': 'Tags multiple selection',
|
||||||
'version': '9.0.1.1.0',
|
'version': '10.0.1.0.0',
|
||||||
'author': 'Akretion, Odoo Community Association (OCA), Jamin Shah',
|
'author': 'Akretion, Odoo Community Association (OCA), Jamin Shah',
|
||||||
'depends': [
|
'depends': [
|
||||||
'web',
|
'web',
|
||||||
|
@ -31,6 +31,6 @@
|
||||||
'data': [
|
'data': [
|
||||||
'views/web_widget_many2many_tags_multi_selection.xml',
|
'views/web_widget_many2many_tags_multi_selection.xml',
|
||||||
],
|
],
|
||||||
'installable': False,
|
'installable': True,
|
||||||
'auto_install': False,
|
'auto_install': False,
|
||||||
}
|
}
|
||||||
|
|
|
@ -1,10 +1,8 @@
|
||||||
<?xml version="1.0" encoding="utf-8"?>
|
<?xml version="1.0" encoding="utf-8"?>
|
||||||
<openerp>
|
<odoo>
|
||||||
<data>
|
|
||||||
<template id="assets_backend" name="web_widget_many2many_tags_multi_selection" inherit_id="web.assets_backend">
|
<template id="assets_backend" name="web_widget_many2many_tags_multi_selection" inherit_id="web.assets_backend">
|
||||||
<xpath expr="." position="inside">
|
<xpath expr="." position="inside">
|
||||||
<script type="text/javascript" src="/web_widget_many2many_tags_multi_selection/static/src/js/view_form.js"></script>
|
<script type="text/javascript" src="/web_widget_many2many_tags_multi_selection/static/src/js/view_form.js"></script>
|
||||||
</xpath>
|
</xpath>
|
||||||
</template>
|
</template>
|
||||||
</data>
|
</odoo>
|
||||||
</openerp>
|
|
||||||
|
|
Loading…
Reference in New Issue