2013-11-20 07:29:58 +00:00
|
|
|
# Copyright (c) 2013, Web Notes Technologies Pvt. Ltd. and Contributors
|
2013-08-05 09:29:54 +00:00
|
|
|
# License: GNU General Public License v3. See license.txt
|
|
|
|
|
2012-11-27 13:11:42 +00:00
|
|
|
import webnotes
|
|
|
|
|
|
|
|
def execute():
|
2012-11-30 15:09:55 +00:00
|
|
|
webnotes.reload_doc("core", "doctype", "communication")
|
2012-11-27 13:11:42 +00:00
|
|
|
webnotes.conn.sql("""update tabCommunication set sender=email_address
|
|
|
|
where ifnull(support_ticket,'') != ''""")
|
|
|
|
webnotes.conn.sql("""update tabCommunication set recipients=email_address where
|
|
|
|
ifnull(sender,'')=''""")
|