13 lines
		
	
	
		
			509 B
		
	
	
	
		
			Python
		
	
	
	
	
	
			
		
		
	
	
			13 lines
		
	
	
		
			509 B
		
	
	
	
		
			Python
		
	
	
	
	
	
| # Copyright (c) 2013, Web Notes Technologies Pvt. Ltd. and Contributors
 | |
| # License: GNU General Public License v3. See license.txt
 | |
| 
 | |
| import webnotes
 | |
| 
 | |
| def execute():
 | |
| 	webnotes.reload_doc("core", "doctype", "doctype")
 | |
| 	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""")		 |