mirror of https://github.com/OCA/web.git
[MIG] web_widget_dropdown_dynamic: Migration to 15.0
parent
2788bb6aa1
commit
696ee9f353
|
@ -97,6 +97,8 @@ Contributors
|
||||||
|
|
||||||
* Ronald Portier <ronald@therp.nl>
|
* Ronald Portier <ronald@therp.nl>
|
||||||
|
|
||||||
|
* Thanakrit Pintana <thanakrit.p39@gmail.com>
|
||||||
|
|
||||||
Maintainers
|
Maintainers
|
||||||
~~~~~~~~~~~
|
~~~~~~~~~~~
|
||||||
|
|
||||||
|
|
|
@ -5,11 +5,19 @@
|
||||||
"name": "Dynamic Dropdown Widget",
|
"name": "Dynamic Dropdown Widget",
|
||||||
"summary": "This module adds support for dynamic dropdown widget",
|
"summary": "This module adds support for dynamic dropdown widget",
|
||||||
"category": "Web",
|
"category": "Web",
|
||||||
"version": "14.0.1.0.0",
|
"version": "15.0.1.0.0",
|
||||||
"license": "AGPL-3",
|
"license": "AGPL-3",
|
||||||
"author": "CorporateHub, Odoo Community Association (OCA)",
|
"author": "CorporateHub, Odoo Community Association (OCA)",
|
||||||
"website": "https://github.com/OCA/web",
|
"website": "https://github.com/OCA/web",
|
||||||
"depends": ["web"],
|
"depends": ["web"],
|
||||||
"data": ["templates/assets.xml"],
|
|
||||||
"installable": True,
|
"installable": True,
|
||||||
|
"assets": {
|
||||||
|
"web.assets_backend": [
|
||||||
|
"web_widget_dropdown_dynamic/static/src/js/basic_model.js",
|
||||||
|
"web_widget_dropdown_dynamic/static/src/js/field_dynamic_dropdown.js",
|
||||||
|
],
|
||||||
|
"web.qunit_suite_tests": [
|
||||||
|
"web_widget_dropdown_dynamic/static/tests/web_widget_dropdown_dynamic_tests.js"
|
||||||
|
],
|
||||||
|
},
|
||||||
}
|
}
|
||||||
|
|
|
@ -5,3 +5,5 @@
|
||||||
* `Therp BV <https://therp.nl/>`__
|
* `Therp BV <https://therp.nl/>`__
|
||||||
|
|
||||||
* Ronald Portier <ronald@therp.nl>
|
* Ronald Portier <ronald@therp.nl>
|
||||||
|
|
||||||
|
* Thanakrit Pintana <thanakrit.p39@gmail.com>
|
||||||
|
|
|
@ -1,35 +0,0 @@
|
||||||
<?xml version="1.0" encoding="utf-8" ?>
|
|
||||||
<!--
|
|
||||||
Copyright 2019 Brainbean Apps (https://brainbeanapps.com)
|
|
||||||
License AGPL-3.0 or later (https://www.gnu.org/licenses/agpl.html).
|
|
||||||
-->
|
|
||||||
<odoo>
|
|
||||||
<template
|
|
||||||
id="assets_backend"
|
|
||||||
name="web_widget_dropdown_dynamic assets"
|
|
||||||
inherit_id="web.assets_backend"
|
|
||||||
>
|
|
||||||
<xpath expr="." position="inside">
|
|
||||||
<script
|
|
||||||
type="text/javascript"
|
|
||||||
src="/web_widget_dropdown_dynamic/static/src/js/basic_model.js"
|
|
||||||
/>
|
|
||||||
<script
|
|
||||||
type="text/javascript"
|
|
||||||
src="/web_widget_dropdown_dynamic/static/src/js/field_dynamic_dropdown.js"
|
|
||||||
/>
|
|
||||||
</xpath>
|
|
||||||
</template>
|
|
||||||
<template
|
|
||||||
id="qunit_suite"
|
|
||||||
name="web_widget_dropdown_dynamic tests"
|
|
||||||
inherit_id="web.qunit_suite"
|
|
||||||
>
|
|
||||||
<xpath expr="//t[@t-set='head']" position="inside">
|
|
||||||
<script
|
|
||||||
type="text/javascript"
|
|
||||||
src="/web_widget_dropdown_dynamic/static/tests/web_widget_dropdown_dynamic_tests.js"
|
|
||||||
/>
|
|
||||||
</xpath>
|
|
||||||
</template>
|
|
||||||
</odoo>
|
|
Loading…
Reference in New Issue