commit | 4902f7b2a05d4a54a6089f40f8b31af5e4877795 | [log] [tgz] |
---|---|---|
author | Deepesh Garg <42651287+deepeshgarg007@users.noreply.github.com> | Thu Feb 14 17:32:52 2019 +0530 |
committer | Faris Ansari <netchampfaris@users.noreply.github.com> | Thu Feb 14 17:32:52 2019 +0530 |
tree | 629e2d53e60f44a6275ed22aa91ec06c334b3105 | |
parent | 4d1bc0ca853030bdbcaec5a6ca4fcd4063fe399e [diff] |
fix: Show tasks in timesheet with status as Closed (#16660)
diff --git a/erpnext/projects/doctype/timesheet/timesheet.js b/erpnext/projects/doctype/timesheet/timesheet.js index e890bef..8811ab9 100644 --- a/erpnext/projects/doctype/timesheet/timesheet.js +++ b/erpnext/projects/doctype/timesheet/timesheet.js
@@ -18,7 +18,7 @@ return{ filters: { 'project': child.project, - 'status': ["!=", "Closed"] + 'status': ["!=", "Cancelled"] } } }