[minor] allow any time logs to be batched, fixes #5386

This commit is contained in:
Rushabh Mehta 2016-05-24 12:12:36 +05:30
parent 79ddf67289
commit b574658c93

View File

@ -34,10 +34,6 @@ frappe.listview_settings['Time Log'] = {
// select only billable time logs
for(var i in selected) {
var d = selected[i];
if(!d.billable) {
msgprint(__("Time Log is not billable") + ": " + d.name + " - " + d.title);
return;
}
if(d.status=="Batched for Billing") {
msgprint(__("Time Log has been Batched for Billing") + ": " + d.name + " - " + d.title);
return;