mirror of
https://github.com/frappe/erpnext.git
synced 2026-03-16 00:37:15 +00:00
fix: lead create opp from connection not working
(cherry picked from commit 0dc518b1c3)
This commit is contained in:
@@ -7,9 +7,9 @@ cur_frm.email_field = "email_id";
|
|||||||
erpnext.LeadController = class LeadController extends frappe.ui.form.Controller {
|
erpnext.LeadController = class LeadController extends frappe.ui.form.Controller {
|
||||||
setup() {
|
setup() {
|
||||||
this.frm.make_methods = {
|
this.frm.make_methods = {
|
||||||
Customer: this.make_customer,
|
Customer: this.make_customer.bind(this),
|
||||||
Quotation: this.make_quotation,
|
Quotation: this.make_quotation.bind(this),
|
||||||
Opportunity: this.make_opportunity,
|
Opportunity: this.make_opportunity.bind(this),
|
||||||
};
|
};
|
||||||
|
|
||||||
// For avoiding integration issues.
|
// For avoiding integration issues.
|
||||||
|
|||||||
Reference in New Issue
Block a user