Time Log now down to seconds

according to request of @anadpdoshi
new branch new commit new PR
This commit is contained in:
partzsch 2015-12-21 17:51:42 +01:00
parent 381cec7b87
commit 55ad42cfd0

View File

@ -46,7 +46,7 @@ frappe.ui.form.on("Time Log", "before_save", function(frm) {
frappe.ui.form.on("Time Log", "to_time", function(frm) {
if(frm._setting_hours) return;
frm.set_value("hours", moment(cur_frm.doc.to_time).diff(moment(cur_frm.doc.from_time),
"minutes") / 60);
"seconds") / 3600);
});