mirror of
https://github.com/frappe/erpnext.git
synced 2026-05-21 22:19:18 +00:00
Lead Status in List, minor fix in Make Email Accounts patch
This commit is contained in:
@@ -64,7 +64,7 @@
|
|||||||
"fieldname": "status",
|
"fieldname": "status",
|
||||||
"fieldtype": "Select",
|
"fieldtype": "Select",
|
||||||
"in_filter": 1,
|
"in_filter": 1,
|
||||||
"in_list_view": 0,
|
"in_list_view": 1,
|
||||||
"label": "Status",
|
"label": "Status",
|
||||||
"no_copy": 1,
|
"no_copy": 1,
|
||||||
"oldfieldname": "status",
|
"oldfieldname": "status",
|
||||||
@@ -332,7 +332,7 @@
|
|||||||
],
|
],
|
||||||
"icon": "icon-user",
|
"icon": "icon-user",
|
||||||
"idx": 1,
|
"idx": 1,
|
||||||
"modified": "2015-03-18 07:06:34.330943",
|
"modified": "2015-03-30 21:50:08.852355",
|
||||||
"modified_by": "Administrator",
|
"modified_by": "Administrator",
|
||||||
"module": "CRM",
|
"module": "CRM",
|
||||||
"name": "Lead",
|
"name": "Lead",
|
||||||
@@ -343,7 +343,6 @@
|
|||||||
"cancel": 0,
|
"cancel": 0,
|
||||||
"create": 0,
|
"create": 0,
|
||||||
"delete": 0,
|
"delete": 0,
|
||||||
"match": "",
|
|
||||||
"permlevel": 1,
|
"permlevel": 1,
|
||||||
"read": 1,
|
"read": 1,
|
||||||
"report": 1,
|
"report": 1,
|
||||||
@@ -401,7 +400,6 @@
|
|||||||
"cancel": 0,
|
"cancel": 0,
|
||||||
"create": 0,
|
"create": 0,
|
||||||
"delete": 0,
|
"delete": 0,
|
||||||
"match": "",
|
|
||||||
"permlevel": 1,
|
"permlevel": 1,
|
||||||
"read": 1,
|
"read": 1,
|
||||||
"report": 1,
|
"report": 1,
|
||||||
@@ -414,7 +412,6 @@
|
|||||||
"cancel": 0,
|
"cancel": 0,
|
||||||
"create": 0,
|
"create": 0,
|
||||||
"delete": 0,
|
"delete": 0,
|
||||||
"match": "",
|
|
||||||
"permlevel": 1,
|
"permlevel": 1,
|
||||||
"read": 1,
|
"read": 1,
|
||||||
"report": 1,
|
"report": 1,
|
||||||
|
|||||||
@@ -21,7 +21,6 @@ def execute():
|
|||||||
|
|
||||||
account.enable_outgoing = 1
|
account.enable_outgoing = 1
|
||||||
account.enable_incoming = 0
|
account.enable_incoming = 0
|
||||||
account.is_global = 1
|
|
||||||
|
|
||||||
account.insert()
|
account.insert()
|
||||||
|
|
||||||
@@ -44,7 +43,7 @@ def execute():
|
|||||||
account.set(target_fieldname, support.get(source_fieldname))
|
account.set(target_fieldname, support.get(source_fieldname))
|
||||||
|
|
||||||
account.enable_outgoing = 0
|
account.enable_outgoing = 0
|
||||||
account.is_global = 1
|
account.append_to = "Issue"
|
||||||
|
|
||||||
account.insert()
|
account.insert()
|
||||||
|
|
||||||
@@ -65,7 +64,6 @@ def execute():
|
|||||||
account.set(target_fieldname, source.get(source_fieldname))
|
account.set(target_fieldname, source.get(source_fieldname))
|
||||||
|
|
||||||
account.enable_outgoing = 0
|
account.enable_outgoing = 0
|
||||||
account.is_global = 1
|
|
||||||
account.append_to = "Lead" if doctype=="Sales Email Settings" else "Job Applicant"
|
account.append_to = "Lead" if doctype=="Sales Email Settings" else "Job Applicant"
|
||||||
|
|
||||||
account.insert()
|
account.insert()
|
||||||
|
|||||||
Reference in New Issue
Block a user