commit | afafe406c854e5e6004eb903941b7da3fc96bd3b | [log] [tgz] |
---|---|---|
author | Anurag Mishra <32095923+Anurag810@users.noreply.github.com> | Fri Jul 09 12:21:17 2021 +0530 |
committer | GitHub <noreply@github.com> | Fri Jul 09 12:21:17 2021 +0530 |
tree | 7ad111f3aa8036d6683f43f5928d8d8415653180 | |
parent | 8f3c7ab4029dafb1d5e1c3384eb48d02b50f18a1 [diff] | |
parent | a82e9e42e1746d42ecf32b6ff4ee7e3fb7823d62 [diff] |
Merge pull request #26388 from Anurag810/training_fix_v13 fix: Query for Training Event
diff --git a/erpnext/hr/doctype/training_event/training_event.js b/erpnext/hr/doctype/training_event/training_event.js index 064dfb2..d5f6e5f 100644 --- a/erpnext/hr/doctype/training_event/training_event.js +++ b/erpnext/hr/doctype/training_event/training_event.js
@@ -33,7 +33,8 @@ frm.set_query("employee", "employees", function () { return { filters: { - name: ["NOT IN", emp] + name: ["NOT IN", emp], + status: "Active" } }; });