fix: Mark totals row correctly for print (#25629)
This commit is contained in:
parent
54776f796b
commit
8ee28507f4
1 changed files with 2 additions and 1 deletions
|
|
@ -1471,7 +1471,8 @@ frappe.views.ReportView = class ReportView extends frappe.views.ListView {
|
|||
if (this.add_totals_row) {
|
||||
const total_data = this.get_columns_totals(this.data);
|
||||
|
||||
total_data["name"] = __("Totals").bold();
|
||||
total_data["name"] = __("Total");
|
||||
total_data.is_total_row = true;
|
||||
rows_in_order.push(total_data);
|
||||
}
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue