Browse Source

Merge pull request #26389 from Anurag810/training_v13_fix

fix: Query for Training Event
develop
Anurag Mishra 3 years ago
committed by GitHub
parent
commit
6949114569
No known key found for this signature in database GPG Key ID: 4AEE18F83AFDEB23
  1. 3
      erpnext/hr/doctype/training_event/training_event.js

3
erpnext/hr/doctype/training_event/training_event.js

@ -33,7 +33,8 @@ frappe.ui.form.on('Training Event', {
frm.set_query("employee", "employees", function () {
return {
filters: {
name: ["NOT IN", emp]
name: ["NOT IN", emp],
status: "Active"
}
};
});

Loading…
Cancel
Save