[cleanup] [minor] fetch lead details in opportunity
This commit is contained in:
parent
1ec5109a1a
commit
16ec981bfd
@ -34,15 +34,6 @@ erpnext.LeadController = wn.ui.form.Controller.extend({
|
|||||||
erpnext.hide_naming_series();
|
erpnext.hide_naming_series();
|
||||||
this.frm.clear_custom_buttons();
|
this.frm.clear_custom_buttons();
|
||||||
|
|
||||||
this.frm.dashboard.reset(doc);
|
|
||||||
if(!doc.__islocal) {
|
|
||||||
if(doc.status=="Converted") {
|
|
||||||
this.frm.dashboard.set_headline_alert(wn._("Converted"), "alert-success", "icon-ok-sign");
|
|
||||||
} else {
|
|
||||||
this.frm.dashboard.set_headline_alert(wn._(doc.status), "alert-info", "icon-exclamation-sign");
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
this.frm.__is_customer = this.frm.__is_customer || this.frm.doc.__is_customer;
|
this.frm.__is_customer = this.frm.__is_customer || this.frm.doc.__is_customer;
|
||||||
if(!this.frm.doc.__islocal && !this.frm.__is_customer) {
|
if(!this.frm.doc.__islocal && !this.frm.__is_customer) {
|
||||||
this.frm.add_custom_button("Create Customer", this.create_customer);
|
this.frm.add_custom_button("Create Customer", this.create_customer);
|
||||||
|
@ -126,6 +126,10 @@ def make_opportunity(source_name, target_doclist=None):
|
|||||||
"campaign_name": "campaign",
|
"campaign_name": "campaign",
|
||||||
"doctype": "enquiry_from",
|
"doctype": "enquiry_from",
|
||||||
"name": "lead",
|
"name": "lead",
|
||||||
|
"lead_name": "contact_display",
|
||||||
|
"company_name": "customer_name",
|
||||||
|
"email_id": "contact_email",
|
||||||
|
"mobile_no": "contact_mobile"
|
||||||
}
|
}
|
||||||
}}, target_doclist)
|
}}, target_doclist)
|
||||||
|
|
||||||
|
@ -53,6 +53,11 @@ erpnext.selling.Opportunity = wn.ui.form.Controller.extend({
|
|||||||
this.frm.set_query("contact_by", erpnext.queries.profile);
|
this.frm.set_query("contact_by", erpnext.queries.profile);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
this.frm.set_query("customer_address", function() {
|
||||||
|
if(me.frm.doc.lead) return {filters: { lead: me.frm.doc.lead } };
|
||||||
|
else if(me.frm.doc.customer) return {filters: { customer: me.frm.doc.customer } };
|
||||||
|
});
|
||||||
|
|
||||||
this.frm.set_query("item_code", "enquiry_details", function() {
|
this.frm.set_query("item_code", "enquiry_details", function() {
|
||||||
return {
|
return {
|
||||||
query: "controllers.queries.item_query",
|
query: "controllers.queries.item_query",
|
||||||
@ -63,7 +68,6 @@ erpnext.selling.Opportunity = wn.ui.form.Controller.extend({
|
|||||||
|
|
||||||
$.each([["lead", "lead"],
|
$.each([["lead", "lead"],
|
||||||
["customer", "customer"],
|
["customer", "customer"],
|
||||||
["customer_address", "customer_filter"],
|
|
||||||
["contact_person", "customer_filter"],
|
["contact_person", "customer_filter"],
|
||||||
["territory", "not_a_group_filter"]], function(i, opts) {
|
["territory", "not_a_group_filter"]], function(i, opts) {
|
||||||
me.frm.set_query(opts[0], erpnext.queries[opts[1]]);
|
me.frm.set_query(opts[0], erpnext.queries[opts[1]]);
|
||||||
@ -151,8 +155,14 @@ cur_frm.cscript.lead_cust_show = function(doc,cdt,cdn){
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
cur_frm.cscript.customer_address = cur_frm.cscript.contact_person = function(doc,dt,dn) {
|
cur_frm.cscript.customer_address = cur_frm.cscript.contact_person = function(doc, dt, dn) {
|
||||||
if(doc.customer) return get_server_fields('get_customer_address', JSON.stringify({customer: doc.customer, address: doc.customer_address, contact: doc.contact_person}),'', doc, dt, dn, 1);
|
args = {
|
||||||
|
address: doc.customer_address,
|
||||||
|
contact: doc.contact_person
|
||||||
|
}
|
||||||
|
if(doc.customer) args.update({customer: doc.customer});
|
||||||
|
|
||||||
|
return get_server_fields('get_customer_address', JSON.stringify(args),'', doc, dt, dn, 1);
|
||||||
}
|
}
|
||||||
|
|
||||||
cur_frm.cscript.lead = function(doc, cdt, cdn) {
|
cur_frm.cscript.lead = function(doc, cdt, cdn) {
|
||||||
@ -163,7 +173,7 @@ cur_frm.cscript.lead = function(doc, cdt, cdn) {
|
|||||||
source_name: cur_frm.doc.lead
|
source_name: cur_frm.doc.lead
|
||||||
})
|
})
|
||||||
|
|
||||||
unhide_field(['customer_name', 'address_display','contact_mobile',
|
unhide_field(['customer_name', 'address_display','contact_mobile', 'customer_address',
|
||||||
'contact_email', 'territory']);
|
'contact_email', 'territory']);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -2,7 +2,7 @@
|
|||||||
{
|
{
|
||||||
"creation": "2013-03-07 18:50:30",
|
"creation": "2013-03-07 18:50:30",
|
||||||
"docstatus": 0,
|
"docstatus": 0,
|
||||||
"modified": "2013-09-10 10:52:49",
|
"modified": "2013-09-25 19:32:29",
|
||||||
"modified_by": "Administrator",
|
"modified_by": "Administrator",
|
||||||
"owner": "Administrator"
|
"owner": "Administrator"
|
||||||
},
|
},
|
||||||
@ -190,34 +190,16 @@
|
|||||||
"options": "icon-bullhorn",
|
"options": "icon-bullhorn",
|
||||||
"read_only": 0
|
"read_only": 0
|
||||||
},
|
},
|
||||||
{
|
|
||||||
"doctype": "DocField",
|
|
||||||
"fieldname": "contact_person",
|
|
||||||
"fieldtype": "Link",
|
|
||||||
"in_filter": 1,
|
|
||||||
"label": "Contact Person",
|
|
||||||
"options": "Contact",
|
|
||||||
"print_hide": 1,
|
|
||||||
"read_only": 0
|
|
||||||
},
|
|
||||||
{
|
{
|
||||||
"doctype": "DocField",
|
"doctype": "DocField",
|
||||||
"fieldname": "customer_address",
|
"fieldname": "customer_address",
|
||||||
"fieldtype": "Link",
|
"fieldtype": "Link",
|
||||||
"in_filter": 1,
|
"in_filter": 1,
|
||||||
"label": "Customer Address",
|
"label": "Customer / Lead Address",
|
||||||
"options": "Address",
|
"options": "Address",
|
||||||
"print_hide": 1,
|
"print_hide": 1,
|
||||||
"read_only": 0
|
"read_only": 0
|
||||||
},
|
},
|
||||||
{
|
|
||||||
"doctype": "DocField",
|
|
||||||
"fieldname": "customer_name",
|
|
||||||
"fieldtype": "Data",
|
|
||||||
"label": "Customer Name",
|
|
||||||
"print_hide": 0,
|
|
||||||
"read_only": 1
|
|
||||||
},
|
|
||||||
{
|
{
|
||||||
"doctype": "DocField",
|
"doctype": "DocField",
|
||||||
"fieldname": "address_display",
|
"fieldname": "address_display",
|
||||||
@ -228,12 +210,60 @@
|
|||||||
"oldfieldtype": "Small Text",
|
"oldfieldtype": "Small Text",
|
||||||
"read_only": 1
|
"read_only": 1
|
||||||
},
|
},
|
||||||
|
{
|
||||||
|
"description": "<a href=\"#Sales Browser/Territory\">To manage Territory, click here</a>",
|
||||||
|
"doctype": "DocField",
|
||||||
|
"fieldname": "territory",
|
||||||
|
"fieldtype": "Link",
|
||||||
|
"in_filter": 1,
|
||||||
|
"label": "Territory",
|
||||||
|
"options": "Territory",
|
||||||
|
"print_hide": 1,
|
||||||
|
"read_only": 0,
|
||||||
|
"reqd": 0,
|
||||||
|
"search_index": 1
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"depends_on": "eval:doc.enquiry_from==\"Customer\"",
|
||||||
|
"description": "<a href=\"#Sales Browser/Customer Group\">To manage Territory, click here</a>",
|
||||||
|
"doctype": "DocField",
|
||||||
|
"fieldname": "customer_group",
|
||||||
|
"fieldtype": "Link",
|
||||||
|
"hidden": 0,
|
||||||
|
"in_filter": 1,
|
||||||
|
"label": "Customer Group",
|
||||||
|
"oldfieldname": "customer_group",
|
||||||
|
"oldfieldtype": "Link",
|
||||||
|
"options": "Customer Group",
|
||||||
|
"print_hide": 1,
|
||||||
|
"read_only": 0,
|
||||||
|
"reqd": 0,
|
||||||
|
"search_index": 1
|
||||||
|
},
|
||||||
{
|
{
|
||||||
"doctype": "DocField",
|
"doctype": "DocField",
|
||||||
"fieldname": "column_break3",
|
"fieldname": "column_break3",
|
||||||
"fieldtype": "Column Break",
|
"fieldtype": "Column Break",
|
||||||
"read_only": 0
|
"read_only": 0
|
||||||
},
|
},
|
||||||
|
{
|
||||||
|
"doctype": "DocField",
|
||||||
|
"fieldname": "customer_name",
|
||||||
|
"fieldtype": "Data",
|
||||||
|
"label": "Customer Name",
|
||||||
|
"print_hide": 0,
|
||||||
|
"read_only": 1
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"doctype": "DocField",
|
||||||
|
"fieldname": "contact_person",
|
||||||
|
"fieldtype": "Link",
|
||||||
|
"in_filter": 1,
|
||||||
|
"label": "Contact Person",
|
||||||
|
"options": "Contact",
|
||||||
|
"print_hide": 1,
|
||||||
|
"read_only": 0
|
||||||
|
},
|
||||||
{
|
{
|
||||||
"doctype": "DocField",
|
"doctype": "DocField",
|
||||||
"fieldname": "contact_display",
|
"fieldname": "contact_display",
|
||||||
@ -255,36 +285,6 @@
|
|||||||
"label": "Contact Mobile No",
|
"label": "Contact Mobile No",
|
||||||
"read_only": 1
|
"read_only": 1
|
||||||
},
|
},
|
||||||
{
|
|
||||||
"depends_on": "eval:doc.enquiry_from==\"Customer\"",
|
|
||||||
"description": "<a href=\"#Sales Browser/Customer Group\">To manage Territory, click here</a>",
|
|
||||||
"doctype": "DocField",
|
|
||||||
"fieldname": "customer_group",
|
|
||||||
"fieldtype": "Link",
|
|
||||||
"hidden": 0,
|
|
||||||
"in_filter": 1,
|
|
||||||
"label": "Customer Group",
|
|
||||||
"oldfieldname": "customer_group",
|
|
||||||
"oldfieldtype": "Link",
|
|
||||||
"options": "Customer Group",
|
|
||||||
"print_hide": 1,
|
|
||||||
"read_only": 0,
|
|
||||||
"reqd": 0,
|
|
||||||
"search_index": 1
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"description": "<a href=\"#Sales Browser/Territory\">To manage Territory, click here</a>",
|
|
||||||
"doctype": "DocField",
|
|
||||||
"fieldname": "territory",
|
|
||||||
"fieldtype": "Link",
|
|
||||||
"in_filter": 1,
|
|
||||||
"label": "Territory",
|
|
||||||
"options": "Territory",
|
|
||||||
"print_hide": 1,
|
|
||||||
"read_only": 0,
|
|
||||||
"reqd": 0,
|
|
||||||
"search_index": 1
|
|
||||||
},
|
|
||||||
{
|
{
|
||||||
"description": "Filing in Additional Information about the Opportunity will help you analyze your data better.",
|
"description": "Filing in Additional Information about the Opportunity will help you analyze your data better.",
|
||||||
"doctype": "DocField",
|
"doctype": "DocField",
|
||||||
|
Loading…
x
Reference in New Issue
Block a user