forked from Techsystech/web
Merge pull request #590 from Tecnativa/9.0-web_export_view-declare_var
[FIX][web_export_view] Make it usable when int fields are present9.0
commit
ad8bcf76a6
|
@ -47,11 +47,12 @@ Credits
|
||||||
Contributors
|
Contributors
|
||||||
------------
|
------------
|
||||||
|
|
||||||
* Simone Orsi <simone.orsi@camptocamp.com>
|
* Simone Orsi <simone.orsi@camptocamp.com>
|
||||||
* Lorenzo Battistini <lorenzo.battistini@agilebg.com>
|
* Lorenzo Battistini <lorenzo.battistini@agilebg.com>
|
||||||
* Stefan Rijnhart <stefan@therp.nl>
|
* Stefan Rijnhart <stefan@therp.nl>
|
||||||
* Leonardo Pistone <leonardo.pistone@camptocamp.com>
|
* Leonardo Pistone <leonardo.pistone@camptocamp.com>
|
||||||
* Rodney Vargas <rodney.vargas@clearcorp.cr>
|
* Rodney Vargas <rodney.vargas@clearcorp.cr>
|
||||||
|
* Jairo Llopis <jairo.llopis@tecnativa.com>
|
||||||
|
|
||||||
Maintainer
|
Maintainer
|
||||||
----------
|
----------
|
||||||
|
|
|
@ -5,7 +5,7 @@
|
||||||
|
|
||||||
{
|
{
|
||||||
'name': 'Export Current View',
|
'name': 'Export Current View',
|
||||||
'version': '9.0.1.0.1',
|
'version': '9.0.1.0.2',
|
||||||
'category': 'Web',
|
'category': 'Web',
|
||||||
'author': "Agile Business Group,Odoo Community Association (OCA)",
|
'author': "Agile Business Group,Odoo Community Association (OCA)",
|
||||||
'website': 'http://www.agilebg.com',
|
'website': 'http://www.agilebg.com',
|
||||||
|
|
|
@ -1,7 +1,7 @@
|
||||||
//# -*- coding: utf-8 -*-
|
// -*- coding: utf-8 -*-
|
||||||
//# © 2012 Agile Business Group
|
// © 2012 Agile Business Group
|
||||||
//# © 2012 Therp BV
|
// © 2012 Therp BV
|
||||||
//# License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl.html).
|
// License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl.html).
|
||||||
|
|
||||||
odoo.define('web_export_view.Sidebar', function (require) {
|
odoo.define('web_export_view.Sidebar', function (require) {
|
||||||
"use strict";
|
"use strict";
|
||||||
|
@ -90,7 +90,7 @@ Sidebar.include({
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
else if (cell.classList.contains("oe_list_field_integer")) {
|
else if (cell.classList.contains("oe_list_field_integer")) {
|
||||||
var tmp2 = text;
|
var tmp, tmp2 = text;
|
||||||
do {
|
do {
|
||||||
tmp = tmp2;
|
tmp = tmp2;
|
||||||
tmp2 = tmp.replace(
|
tmp2 = tmp.replace(
|
||||||
|
|
Loading…
Reference in New Issue