2013-10-03 11:56:33 +00:00
|
|
|
# Copyright (c) 2013, Web Notes Technologies Pvt. Ltd.
|
|
|
|
# License: GNU General Public License v3. See license.txt
|
|
|
|
|
|
|
|
from __future__ import unicode_literals
|
|
|
|
import webnotes
|
|
|
|
|
|
|
|
def execute():
|
2013-10-03 14:02:23 +00:00
|
|
|
webnotes.reload_doc("core", "doctype", "communication")
|
|
|
|
|
2013-10-03 11:56:33 +00:00
|
|
|
webnotes.conn.sql("""update tabCommunication
|
|
|
|
set sent_or_received= if(ifnull(recipients, '')='', "Received", "Sent")""")
|