2013-11-20 07:29:58 +00:00
|
|
|
# Copyright (c) 2013, Web Notes Technologies Pvt. Ltd. and Contributors
|
2013-08-05 09:29:54 +00:00
|
|
|
# License: GNU General Public License v3. See license.txt
|
|
|
|
|
2013-02-28 11:15:37 +00:00
|
|
|
import webnotes
|
|
|
|
|
|
|
|
def execute():
|
|
|
|
for w in webnotes.conn.sql("""select name from `tabWarehouse` where docstatus=2"""):
|
|
|
|
try:
|
|
|
|
webnotes.delete_doc("Warehouse", w[0])
|
|
|
|
except webnotes.ValidationError:
|
|
|
|
pass
|
|
|
|
|