mirror of https://github.com/OCA/web.git
[15.0][MIG] web_widget_x2many_2d_matrix
parent
8fcf4e8531
commit
11b5349535
|
@ -23,7 +23,7 @@
|
||||||
:target: https://runbot.odoo-community.org/runbot/162/14.0
|
:target: https://runbot.odoo-community.org/runbot/162/14.0
|
||||||
:alt: Try me on Runbot
|
:alt: Try me on Runbot
|
||||||
|
|
||||||
|badge1| |badge2| |badge3| |badge4| |badge5|
|
|badge1| |badge2| |badge3| |badge4| |badge5|
|
||||||
|
|
||||||
This module allows to show an x2many field with 3-tuples
|
This module allows to show an x2many field with 3-tuples
|
||||||
($x_value, $y_value, $value) in a table
|
($x_value, $y_value, $value) in a table
|
||||||
|
@ -221,6 +221,7 @@ Contributors
|
||||||
* Alexey Pelykh <alexey.pelykh@corphub.eu>
|
* Alexey Pelykh <alexey.pelykh@corphub.eu>
|
||||||
|
|
||||||
* Adrià Gil Sorribes <adria.gil@forgeflow.com>
|
* Adrià Gil Sorribes <adria.gil@forgeflow.com>
|
||||||
|
* Christopher Ormaza <chris.ormaza@forgeflow.com>
|
||||||
|
|
||||||
Maintainers
|
Maintainers
|
||||||
~~~~~~~~~~~
|
~~~~~~~~~~~
|
||||||
|
|
|
@ -5,7 +5,7 @@
|
||||||
# License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl).
|
# License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl).
|
||||||
{
|
{
|
||||||
"name": "2D matrix for x2many fields",
|
"name": "2D matrix for x2many fields",
|
||||||
"version": "14.0.1.0.1",
|
"version": "15.0.1.0.0",
|
||||||
"author": (
|
"author": (
|
||||||
"Therp BV, "
|
"Therp BV, "
|
||||||
"Tecnativa, "
|
"Tecnativa, "
|
||||||
|
@ -18,6 +18,15 @@
|
||||||
"category": "Hidden/Dependency",
|
"category": "Hidden/Dependency",
|
||||||
"summary": "Show list fields as a matrix",
|
"summary": "Show list fields as a matrix",
|
||||||
"depends": ["web"],
|
"depends": ["web"],
|
||||||
"data": ["views/assets.xml"],
|
"data": [],
|
||||||
"installable": True,
|
"installable": True,
|
||||||
|
"assets": {
|
||||||
|
"web.assets_backend": [
|
||||||
|
"web_widget_x2many_2d_matrix/static/src/scss/web_widget_x2many_2d_matrix.scss",
|
||||||
|
"web_widget_x2many_2d_matrix/static/src/js/2d_matrix_renderer.js",
|
||||||
|
"web_widget_x2many_2d_matrix/static/src/js/2d_matrix_view.js",
|
||||||
|
"web_widget_x2many_2d_matrix/static/src/js/abstract_view_matrix_limit_extend.js",
|
||||||
|
"web_widget_x2many_2d_matrix/static/src/js/widget_x2many_2d_matrix.js",
|
||||||
|
],
|
||||||
|
},
|
||||||
}
|
}
|
||||||
|
|
|
@ -10,3 +10,4 @@
|
||||||
* Alexey Pelykh <alexey.pelykh@corphub.eu>
|
* Alexey Pelykh <alexey.pelykh@corphub.eu>
|
||||||
|
|
||||||
* Adrià Gil Sorribes <adria.gil@forgeflow.com>
|
* Adrià Gil Sorribes <adria.gil@forgeflow.com>
|
||||||
|
* Christopher Ormaza <chris.ormaza@forgeflow.com>
|
||||||
|
|
|
@ -1,34 +0,0 @@
|
||||||
<?xml version="1.0" encoding="UTF-8" ?>
|
|
||||||
<odoo>
|
|
||||||
<!--
|
|
||||||
License AGPL-3.0 or later (https://www.gnu.org/licenses/agpl).
|
|
||||||
-->
|
|
||||||
<template
|
|
||||||
id="assets_backend"
|
|
||||||
name="web_widget_x2many_2d_matrix assets"
|
|
||||||
inherit_id="web.assets_backend"
|
|
||||||
>
|
|
||||||
<xpath expr="." position="inside">
|
|
||||||
<script
|
|
||||||
type="text/javascript"
|
|
||||||
src="/web_widget_x2many_2d_matrix/static/src/js/2d_matrix_view.js"
|
|
||||||
/>
|
|
||||||
<script
|
|
||||||
type="text/javascript"
|
|
||||||
src="/web_widget_x2many_2d_matrix/static/src/js/2d_matrix_renderer.js"
|
|
||||||
/>
|
|
||||||
<script
|
|
||||||
type="text/javascript"
|
|
||||||
src="/web_widget_x2many_2d_matrix/static/src/js/widget_x2many_2d_matrix.js"
|
|
||||||
/>
|
|
||||||
<script
|
|
||||||
type="text/javascript"
|
|
||||||
src="/web_widget_x2many_2d_matrix/static/src/js/abstract_view_matrix_limit_extend.js"
|
|
||||||
/>
|
|
||||||
<link
|
|
||||||
rel="stylesheet"
|
|
||||||
href="/web_widget_x2many_2d_matrix/static/src/scss/web_widget_x2many_2d_matrix.scss"
|
|
||||||
/>
|
|
||||||
</xpath>
|
|
||||||
</template>
|
|
||||||
</odoo>
|
|
Loading…
Reference in New Issue