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
|
||||
============
|
||||
|
||||
It was tested on Odoo 8.0 branch.
|
||||
It was tested on Odoo 10.0 branch.
|
||||
|
||||
|
||||
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.
|
||||
|
||||
To contribute to this module, please visit http://odoo-community.org.
|
||||
|
||||
|
|
|
@ -21,7 +21,7 @@
|
|||
|
||||
{
|
||||
'name': 'Tags multiple selection',
|
||||
'version': '9.0.1.1.0',
|
||||
'version': '10.0.1.0.0',
|
||||
'author': 'Akretion, Odoo Community Association (OCA), Jamin Shah',
|
||||
'depends': [
|
||||
'web',
|
||||
|
@ -31,6 +31,6 @@
|
|||
'data': [
|
||||
'views/web_widget_many2many_tags_multi_selection.xml',
|
||||
],
|
||||
'installable': False,
|
||||
'installable': True,
|
||||
'auto_install': False,
|
||||
}
|
||||
|
|
|
@ -1,10 +1,8 @@
|
|||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<openerp>
|
||||
<data>
|
||||
<template id="assets_backend" name="web_widget_many2many_tags_multi_selection" inherit_id="web.assets_backend">
|
||||
<xpath expr="." position="inside">
|
||||
<script type="text/javascript" src="/web_widget_many2many_tags_multi_selection/static/src/js/view_form.js"></script>
|
||||
</xpath>
|
||||
</template>
|
||||
</data>
|
||||
</openerp>
|
||||
<odoo>
|
||||
<template id="assets_backend" name="web_widget_many2many_tags_multi_selection" inherit_id="web.assets_backend">
|
||||
<xpath expr="." position="inside">
|
||||
<script type="text/javascript" src="/web_widget_many2many_tags_multi_selection/static/src/js/view_form.js"></script>
|
||||
</xpath>
|
||||
</template>
|
||||
</odoo>
|
||||
|
|
Loading…
Reference in New Issue