From c1c7e325595b3e874f2753d4940275edd38b29c6 Mon Sep 17 00:00:00 2001 From: Nabin Hait Date: Thu, 4 May 2017 15:41:29 +0530 Subject: [PATCH 1/2] printing fix --- frappe/public/js/frappe/form/print.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/frappe/public/js/frappe/form/print.js b/frappe/public/js/frappe/form/print.js index 6cce95fe25..555c85c9d9 100644 --- a/frappe/public/js/frappe/form/print.js +++ b/frappe/public/js/frappe/form/print.js @@ -143,7 +143,7 @@ frappe.ui.form.PrintPreview = Class.extend({ }, get_print_html: function(callback) { frappe.call({ - method: "frappe.www.print.get_html_and_style", + method: "frappe.www.printview.get_html_and_style", args: { doc: this.frm.doc, print_format: this.selected_format(), From 54e404a4f91a5051716d7579eb0901f7b3727485 Mon Sep 17 00:00:00 2001 From: Nabin Hait Date: Thu, 4 May 2017 16:18:30 +0600 Subject: [PATCH 2/2] bumped to version 8.0.35 --- frappe/__init__.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/frappe/__init__.py b/frappe/__init__.py index 96a624aaf7..70b7d56bbd 100644 --- a/frappe/__init__.py +++ b/frappe/__init__.py @@ -13,7 +13,7 @@ import os, sys, importlib, inspect, json from .exceptions import * from .utils.jinja import get_jenv, get_template, render_template -__version__ = '8.0.34' +__version__ = '8.0.35' __title__ = "Frappe Framework" local = Local()