Merge pull request #6879 from SaiFi0102/Fix-Report-Int-Format
fix(Query Report): Do not preformat before frappe.format
This commit is contained in:
commit
e19bb40031
1 changed files with 1 additions and 1 deletions
|
|
@ -639,7 +639,7 @@ frappe.views.QueryReport = class QueryReport extends frappe.views.BaseList {
|
|||
}
|
||||
|
||||
const format_cell = (value, row, column, data) => {
|
||||
return frappe.format(value == null ? '' : value, column,
|
||||
return frappe.format(value, column,
|
||||
{for_print: false, always_show_decimals: true}, data);
|
||||
};
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue