Merge pull request #26388 from Anurag810/training_fix_v13

fix: Query for Training Event
This commit is contained in:
Anurag Mishra 2021-07-09 12:21:17 +05:30 committed by GitHub
commit afafe406c8
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -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"
}
};
});