feat: bill all hours by default
diff --git a/erpnext/projects/doctype/timesheet/timesheet.js b/erpnext/projects/doctype/timesheet/timesheet.js
index 3eea390..bd48e55 100644
--- a/erpnext/projects/doctype/timesheet/timesheet.js
+++ b/erpnext/projects/doctype/timesheet/timesheet.js
@@ -206,6 +206,9 @@
update_billing_hours(frm, cdt, cdn);
update_time_rates(frm, cdt, cdn);
calculate_billing_costing_amount(frm, cdt, cdn);
+
+ // bill all `hours` by default
+ frappe.model.set_value(cdt, cdn, "billing_hours", locals[cdt][cdn].hours);
},
activity_type: function(frm, cdt, cdn) {