mirror of
https://github.com/frappe/erpnext.git
synced 2026-05-31 18:59:08 +00:00
7 lines
255 B
Python
7 lines
255 B
Python
import webnotes
|
|
|
|
def execute():
|
|
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,'')=''""") |