mirror of
https://github.com/frappe/erpnext.git
synced 2026-06-08 23:52:57 +00:00
fix: wrong source fieldname in lead details report
This commit is contained in:
@@ -37,7 +37,7 @@ def get_columns():
|
|||||||
"options": "Territory",
|
"options": "Territory",
|
||||||
"width": 100,
|
"width": 100,
|
||||||
},
|
},
|
||||||
{"label": _("Source"), "fieldname": "source", "fieldtype": "Data", "width": 120},
|
{"label": _("Source"), "fieldname": "utm_source", "fieldtype": "Data", "width": 120},
|
||||||
{"label": _("Email"), "fieldname": "email_id", "fieldtype": "Data", "width": 120},
|
{"label": _("Email"), "fieldname": "email_id", "fieldtype": "Data", "width": 120},
|
||||||
{"label": _("Mobile"), "fieldname": "mobile_no", "fieldtype": "Data", "width": 120},
|
{"label": _("Mobile"), "fieldname": "mobile_no", "fieldtype": "Data", "width": 120},
|
||||||
{"label": _("Phone"), "fieldname": "phone", "fieldtype": "Data", "width": 120},
|
{"label": _("Phone"), "fieldname": "phone", "fieldtype": "Data", "width": 120},
|
||||||
@@ -87,7 +87,7 @@ def get_data(filters):
|
|||||||
lead.status,
|
lead.status,
|
||||||
lead.lead_owner,
|
lead.lead_owner,
|
||||||
lead.territory,
|
lead.territory,
|
||||||
lead.source,
|
lead.utm_source,
|
||||||
lead.email_id,
|
lead.email_id,
|
||||||
lead.mobile_no,
|
lead.mobile_no,
|
||||||
lead.phone,
|
lead.phone,
|
||||||
|
|||||||
Reference in New Issue
Block a user