2013-08-05 14:59:54 +05:30
|
|
|
# Copyright (c) 2013, Web Notes Technologies Pvt. Ltd.
|
|
|
|
# License: GNU General Public License v3. See license.txt
|
2012-02-23 12:35:32 +05:30
|
|
|
|
2012-07-19 13:40:31 +05:30
|
|
|
from __future__ import unicode_literals
|
2013-06-24 14:31:56 +05:30
|
|
|
import webnotes
|
|
|
|
|
|
|
|
def execute():
|
2013-06-24 15:47:02 +05:30
|
|
|
try:
|
|
|
|
webnotes.conn.sql("""delete from `tabSearch Criteria` where ifnull(standard, 'No') = 'Yes'""")
|
|
|
|
except Exception, e:
|
|
|
|
pass
|