2012-11-30 12:41:46 +05:30
|
|
|
import webnotes
|
|
|
|
|
|
|
|
def execute():
|
2013-03-06 11:30:09 +05:30
|
|
|
webnotes.reload_doc("core", "doctype", "doctype")
|
2012-11-30 12:41:46 +05:30
|
|
|
webnotes.clear_perms("Leave Application")
|
|
|
|
webnotes.reload_doc("hr", "doctype", "leave_application")
|
|
|
|
webnotes.conn.sql("""update `tabLeave Application` set status='Approved'
|
|
|
|
where docstatus=1""")
|
|
|
|
webnotes.conn.sql("""update `tabLeave Application` set status='Open'
|
|
|
|
where docstatus=0""")
|