[cleanup] removed Trash Control, SMS Receiver, Profile Control, GL Mapper, GL Mapper Detail

This commit is contained in:
Rushabh Mehta
2013-06-11 10:43:00 +05:30
parent 8c5a038d3b
commit a40c60ea3e
81 changed files with 5 additions and 1120 deletions

View File

@@ -1,4 +1,7 @@
def execute():
import webnotes
for mapper in webnotes.conn.sql("""select name from `tabGL Mapper`"""):
webnotes.delete_doc("GL Mapper", mapper[0])
try:
for mapper in webnotes.conn.sql("""select name from `tabGL Mapper`"""):
webnotes.delete_doc("GL Mapper", mapper[0])
except Exception, e:
pass