Browse Source

Printing issue fixed in grid reports (#3244)

version-14
Nabin Hait 8 years ago
committed by Rushabh Mehta
parent
commit
07dc6caacf
1 changed files with 4 additions and 1 deletions
  1. +4
    -1
      frappe/public/js/frappe/views/reports/grid_report.js

+ 4
- 1
frappe/public/js/frappe/views/reports/grid_report.js View File

@@ -174,7 +174,10 @@ frappe.views.GridReport = Class.extend({
}

this.page.add_menu_item(__("Print"), function() {
frappe.render_grid({grid: me.grid, title: me.page.title })
frappe.ui.get_print_settings(false, function(print_settings) {
frappe.render_grid({grid: me.grid, title: me.page.title, print_settings: print_settings });
});
}, true);

// range


Loading…
Cancel
Save