14 lines
		
	
	
		
			612 B
		
	
	
	
		
			Python
		
	
	
	
	
	
			
		
		
	
	
			14 lines
		
	
	
		
			612 B
		
	
	
	
		
			Python
		
	
	
	
	
	
| from __future__ import unicode_literals
 | |
| import frappe
 | |
| 
 | |
| def execute():
 | |
| 	frappe.reload_doc('projects', 'doctype', 'timesheet_detail')
 | |
| 	frappe.reload_doc('accounts', 'doctype', 'sales_invoice_timesheet')
 | |
| 
 | |
| 	frappe.db.sql("""update tabTimesheet set total_billable_hours=total_hours 
 | |
| 		where total_billable_amount>0 and docstatus = 1""")
 | |
| 
 | |
| 	frappe.db.sql("""update `tabTimesheet Detail` set billing_hours=hours where docstatus < 2""")
 | |
| 
 | |
| 	frappe.db.sql(""" update `tabSales Invoice Timesheet` set billing_hours = (select total_billable_hours from `tabTimesheet`
 | |
| 		where name = time_sheet) where time_sheet is not null""") |