mirror of https://github.com/OCA/web.git
[11.0][IMP] web_export_view: Linter
parent
cb410c26c8
commit
47c968b250
|
@ -1,5 +1,5 @@
|
||||||
odoo.define('web_export_view', function (require) {
|
odoo.define('web_export_view', function (require) {
|
||||||
"use strict";
|
"use strict";
|
||||||
|
|
||||||
var core = require('web.core');
|
var core = require('web.core');
|
||||||
var Sidebar = require('web.Sidebar');
|
var Sidebar = require('web.Sidebar');
|
||||||
|
@ -15,11 +15,16 @@ odoo.define('web_export_view', function (require) {
|
||||||
_redraw: function () {
|
_redraw: function () {
|
||||||
var self = this;
|
var self = this;
|
||||||
this._super.apply(this, arguments);
|
this._super.apply(this, arguments);
|
||||||
if (self.getParent().renderer.viewType == 'list') {
|
if (self.getParent().renderer.viewType === 'list') {
|
||||||
session.user_has_group('web_export_view.group_disallow_export_view_data_excel').then(function (has_group) {
|
session.user_has_group(
|
||||||
|
'web_export_view.group_disallow_export_view_data_excel')
|
||||||
|
.then(function (has_group) {
|
||||||
if (!has_group) {
|
if (!has_group) {
|
||||||
self.$el.find('.o_dropdown').last().append(QWeb.render('WebExportTreeViewXls', { widget: self }));
|
self.$el.find('.o_dropdown')
|
||||||
self.$el.find('.export_treeview_xls').on('click', self.on_sidebar_export_treeview_xls);
|
.last().append(QWeb.render(
|
||||||
|
'WebExportTreeViewXls', {widget: self}));
|
||||||
|
self.$el.find('.export_treeview_xls').on('click',
|
||||||
|
self.on_sidebar_export_treeview_xls);
|
||||||
}
|
}
|
||||||
});
|
});
|
||||||
}
|
}
|
||||||
|
@ -28,20 +33,19 @@ odoo.define('web_export_view', function (require) {
|
||||||
on_sidebar_export_treeview_xls: function () {
|
on_sidebar_export_treeview_xls: function () {
|
||||||
// Select the first list of the current (form) view
|
// Select the first list of the current (form) view
|
||||||
// or assume the main view is a list view and use that
|
// or assume the main view is a list view and use that
|
||||||
var self = this,
|
var view = this.getParent(),
|
||||||
view = this.getParent(),
|
|
||||||
children = view.getChildren();
|
children = view.getChildren();
|
||||||
var c = crash_manager;
|
var c = crash_manager;
|
||||||
|
|
||||||
if (children) {
|
if (children) {
|
||||||
children.every(function (child) {
|
children.every(function (child) {
|
||||||
if (child.field && child.field.type == 'one2many') {
|
if (child.field && child.field.type === 'one2many') {
|
||||||
view = child.viewmanager.views.list.controller;
|
view = child.viewmanager.views.list.controller;
|
||||||
return false; // break out of the loop
|
return false;
|
||||||
}
|
}
|
||||||
if (child.field && child.field.type == 'many2many') {
|
if (child.field && child.field.type === 'many2many') {
|
||||||
view = child.list_view;
|
view = child.list_view;
|
||||||
return false; // break out of the loop
|
return false;
|
||||||
}
|
}
|
||||||
return true;
|
return true;
|
||||||
});
|
});
|
||||||
|
@ -52,49 +56,57 @@ odoo.define('web_export_view', function (require) {
|
||||||
var column_header_selector = '';
|
var column_header_selector = '';
|
||||||
var isGrouped = view.renderer.state.groupedBy.length > 0;
|
var isGrouped = view.renderer.state.groupedBy.length > 0;
|
||||||
$.each(view.renderer.columns, function () {
|
$.each(view.renderer.columns, function () {
|
||||||
if (this.tag == 'field' && (this.attrs.widget === undefined || this.attrs.widget != 'handle')) {
|
if (this.tag === 'field' &&
|
||||||
// non-fields like `_group` or buttons
|
(this.attrs.widget === undefined ||
|
||||||
|
this.attrs.widget !== 'handle')) {
|
||||||
export_columns_keys.push(column_index);
|
export_columns_keys.push(column_index);
|
||||||
var css_selector_index = isGrouped
|
var css_selector_index = isGrouped
|
||||||
? column_index+1 : column_index;
|
? column_index+1 : column_index;
|
||||||
column_header_selector = '.o_list_view > thead > tr> th:not([class*="o_list_record_selector"]):eq('+css_selector_index+')';
|
column_header_selector = '.o_list_view > thead > tr> ' +
|
||||||
export_columns_names.push(view.$el.find(column_header_selector)[0].textContent);
|
'th:not([class*="o_list_record_selector"]):eq(' +
|
||||||
|
css_selector_index + ')';
|
||||||
|
export_columns_names.push(
|
||||||
|
view.$el.find(column_header_selector)[0].textContent);
|
||||||
}
|
}
|
||||||
++column_index;
|
++column_index;
|
||||||
});
|
});
|
||||||
var export_rows = [];
|
var export_rows = [];
|
||||||
$.blockUI();
|
$.blockUI();
|
||||||
if (children) {
|
if (children) {
|
||||||
// find only rows with data
|
// Find only rows with data
|
||||||
view.$el.find('.o_list_view > tbody > tr.o_data_row:has(.o_list_record_selector input:checkbox:checked)')
|
view.$el.find('.o_list_view > tbody > tr.o_data_row:' +
|
||||||
|
'has(.o_list_record_selector input:checkbox:checked)')
|
||||||
.each(function () {
|
.each(function () {
|
||||||
var $row = $(this);
|
var $row = $(this);
|
||||||
var export_row = [];
|
var export_row = [];
|
||||||
$.each(export_columns_keys, function () {
|
$.each(export_columns_keys, function () {
|
||||||
var $cell = $row.find('td.o_data_cell:eq('+this+')')
|
var $cell = $row.find(
|
||||||
var $cellcheckbox = $cell.find('.o_checkbox input:checkbox');
|
'td.o_data_cell:eq('+this+')');
|
||||||
|
var $cellcheckbox = $cell.find(
|
||||||
|
'.o_checkbox input:checkbox');
|
||||||
if ($cellcheckbox.length) {
|
if ($cellcheckbox.length) {
|
||||||
export_row.push(
|
export_row.push(
|
||||||
$cellcheckbox.is(":checked")
|
$cellcheckbox.is(":checked")
|
||||||
? _t("True") : _t("False")
|
? _t("True") : _t("False")
|
||||||
);
|
);
|
||||||
}
|
} else {
|
||||||
else {
|
|
||||||
var text = $cell.text().trim();
|
var text = $cell.text().trim();
|
||||||
var is_number = (
|
var is_number =
|
||||||
$cell.hasClass('o_list_number') &&
|
$cell.hasClass('o_list_number') &&
|
||||||
!$cell.hasClass('o_float_time_cell')
|
!$cell.hasClass('o_float_time_cell');
|
||||||
);
|
|
||||||
if (is_number) {
|
if (is_number) {
|
||||||
|
var db_params = _t.database.parameters;
|
||||||
export_row.push(parseFloat(
|
export_row.push(parseFloat(
|
||||||
text
|
text
|
||||||
// Remove thousands separator
|
// Remove thousands separator
|
||||||
.split(_t.database.parameters.thousands_sep)
|
.split(db_params.thousands_sep)
|
||||||
.join("")
|
.join("")
|
||||||
// Always use a `.` as decimal separator
|
// Always use a `.` as decimal
|
||||||
.replace(_t.database.parameters.decimal_point, ".")
|
// separator
|
||||||
|
.replace(db_params.decimal_point,
|
||||||
|
".")
|
||||||
// Remove non-numeric characters
|
// Remove non-numeric characters
|
||||||
.replace(/[^\d\.-]/g, "")
|
.replace(/[^\d.-]/g, "")
|
||||||
));
|
));
|
||||||
} else {
|
} else {
|
||||||
export_row.push(text);
|
export_row.push(text);
|
||||||
|
@ -107,15 +119,17 @@ odoo.define('web_export_view', function (require) {
|
||||||
|
|
||||||
session.get_file({
|
session.get_file({
|
||||||
url: '/web/export/xls_view',
|
url: '/web/export/xls_view',
|
||||||
data: {data: JSON.stringify({
|
data: {
|
||||||
|
data: JSON.stringify({
|
||||||
model: view.modelName,
|
model: view.modelName,
|
||||||
headers: export_columns_names,
|
headers: export_columns_names,
|
||||||
rows: export_rows
|
rows: export_rows,
|
||||||
})},
|
}),
|
||||||
|
},
|
||||||
complete: $.unblockUI,
|
complete: $.unblockUI,
|
||||||
error: c.rpc_error.bind(c)
|
error: c.rpc_error.bind(c),
|
||||||
});
|
});
|
||||||
}
|
},
|
||||||
|
|
||||||
});
|
});
|
||||||
});
|
});
|
||||||
|
|
Loading…
Reference in New Issue