7 lines
246 B
Python
7 lines
246 B
Python
|
def execute():
|
||
|
import webnotes
|
||
|
webnotes.conn.sql("""delete from `tabSearch Criteria` \
|
||
|
where name = 'customer_address_contact'""")
|
||
|
|
||
|
from webnotes.modules import reload_doc
|
||
|
reload_doc('selling', 'report', 'customer_addresses_and_contacts')
|