From 1483a60b90e9286875d803a3182996217ced57ed Mon Sep 17 00:00:00 2001 From: Faris Ansari Date: Wed, 19 May 2021 12:30:11 +0530 Subject: [PATCH] fix: super call syntax error --- erpnext/selling/doctype/quotation/quotation.js | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/erpnext/selling/doctype/quotation/quotation.js b/erpnext/selling/doctype/quotation/quotation.js index 10606bf81e..7fecd4bc34 100644 --- a/erpnext/selling/doctype/quotation/quotation.js +++ b/erpnext/selling/doctype/quotation/quotation.js @@ -39,8 +39,7 @@ frappe.ui.form.on('Quotation', { erpnext.selling.QuotationController = class QuotationController extends erpnext.selling.SellingController { onload(doc, dt, dn) { var me = this; - super.(doc, dt, dn); - + super.onload(doc, dt, dn); } party_name() { var me = this;