[Fix] Timesheet patch
diff --git a/erpnext/patches/v7_0/calculate_total_costing_amount.py b/erpnext/patches/v7_0/calculate_total_costing_amount.py
index f426904..3163517 100644
--- a/erpnext/patches/v7_0/calculate_total_costing_amount.py
+++ b/erpnext/patches/v7_0/calculate_total_costing_amount.py
@@ -10,5 +10,6 @@
 			ts = frappe.get_doc('Timesheet', data.name)
 			ts.update_cost()
 			ts.calculate_total_amounts()
+			ts.flags.ignore_validate = True
 			ts.flags.ignore_validate_update_after_submit = True
 			ts.save()