Переглянути джерело

[feature] print only what is expanded in reports (#2038)

ie balance report will print like is visable not all items
version-14
RobertSchouten 8 роки тому
committed by Rushabh Mehta
джерело
коміт
ac63c720b8
1 змінених файлів з 1 додано та 1 видалено
  1. +1
    -1
      frappe/public/js/frappe/views/reports/query_report.js

+ 1
- 1
frappe/public/js/frappe/views/reports/query_report.js Переглянути файл

@@ -163,7 +163,7 @@ frappe.views.QueryReport = Class.extend({

if(this.html_format) {
var content = frappe.render(this.html_format,
{data: this.dataView.getItems(), filters:this.get_values(), report:this});
{data: frappe.slickgrid_tools.get_filtered_items(this.dataView), filters:this.get_values(), report:this});

frappe.render_grid({content:content, title:__(this.report_name)});
} else {


Завантаження…
Відмінити
Зберегти