[minor] Added 'Invite User' in Contact

This commit is contained in:
Rushabh Mehta
2015-10-07 11:07:43 +05:30
parent 80d2a55342
commit 73e73795f1
5 changed files with 85 additions and 39 deletions

View File

@@ -0,0 +1,5 @@
import frappe
def execute():
frappe.db.sql("""update tabContact, tabUser set tabContact.user = tabUser.name
where tabContact.email_id = tabUser.email""")