소스 검색

[minor] fixed pdf export issue for the reports (#3391)

version-14
Makarand Bauskar 8 년 전
committed by Nabin Hait
부모
커밋
edeee39122
1개의 변경된 파일6개의 추가작업 그리고 2개의 파일을 삭제
  1. +6
    -2
      frappe/public/js/frappe/views/reports/query_report.js

+ 6
- 2
frappe/public/js/frappe/views/reports/query_report.js 파일 보기

@@ -215,6 +215,8 @@ frappe.views.QueryReport = Class.extend({
return false;
}

var orientation = this.print_settings.orientation;
var landscape = orientation == "Landscape" ? true: false
if(this.html_format) {
var content = frappe.render(this.html_format,
{data: frappe.slickgrid_tools.get_filtered_items(this.dataView), filters:this.get_values(), report:this});
@@ -225,7 +227,8 @@ frappe.views.QueryReport = Class.extend({
title:__(this.report_name),
base_url: base_url,
print_css: print_css,
print_settings: this.print_settings
print_settings: this.print_settings,
landscape: landscape
});
} else {
// rows filtered by inline_filter of slickgrid
@@ -249,7 +252,8 @@ frappe.views.QueryReport = Class.extend({
title:__(this.report_name),
base_url: base_url,
print_css: print_css,
print_settings: this.print_settings
print_settings: this.print_settings,
landscape: landscape
});
}



불러오는 중...
취소
저장