From a9a82919e745d6c8ccb401f47e4dd7d31b94d7df Mon Sep 17 00:00:00 2001 From: Rohit Waghchaure Date: Wed, 22 May 2019 22:15:01 +0530 Subject: [PATCH 1/2] fix: typo --- erpnext/public/js/controllers/transaction.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/erpnext/public/js/controllers/transaction.js b/erpnext/public/js/controllers/transaction.js index c0d06952af3..1a9ea8288c8 100644 --- a/erpnext/public/js/controllers/transaction.js +++ b/erpnext/public/js/controllers/transaction.js @@ -1121,7 +1121,7 @@ erpnext.TransactionController = erpnext.taxes_and_totals.extend({ return { "items": this._get_item_list(item), "customer": me.frm.doc.customer || me.frm.doc.party_name, - "quotation_to": me.doc.frm.quotation_to, + "quotation_to": me.frm.doc.quotation_to, "customer_group": me.frm.doc.customer_group, "territory": me.frm.doc.territory, "supplier": me.frm.doc.supplier, From 9ff39e2d1bdb2386491c198e316caa1cf43f414c Mon Sep 17 00:00:00 2001 From: Saurabh Date: Wed, 22 May 2019 22:54:17 +0600 Subject: [PATCH 2/2] bumped to version 11.1.33 --- erpnext/__init__.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/erpnext/__init__.py b/erpnext/__init__.py index 659054d24ca..e46bfcdf280 100644 --- a/erpnext/__init__.py +++ b/erpnext/__init__.py @@ -5,7 +5,7 @@ import frappe from erpnext.hooks import regional_overrides from frappe.utils import getdate -__version__ = '11.1.32' +__version__ = '11.1.33' def get_default_company(user=None): '''Get default company for user'''