mirror of
https://github.com/OCA/web.git
synced 2025-02-22 13:21:25 +02:00
[FIX][web_export_view] Correctly export negative monetary numbers
This commit is contained in:
@@ -76,8 +76,8 @@ Sidebar.include({
|
||||
var $cell = $row.find('td[data-field="' + this + '"]');
|
||||
var text = $cell.text();
|
||||
if ($cell.hasClass("oe_list_field_monetary")) {
|
||||
// Remove all but digits, dots and commas
|
||||
text = text.replace(/[^\d\.,]/g, "");
|
||||
// Remove all but digits, minus, dots and commas
|
||||
text = text.replace(/[^\d\.,-]/g, "");
|
||||
export_row.push(
|
||||
formats.parse_value(text, {"type": "monetary"})
|
||||
);
|
||||
|
||||
Reference in New Issue
Block a user