Merge pull request #26389 from Anurag810/training_v13_fix

fix: Query for Training Event
This commit is contained in:
Anurag Mishra 2021-07-09 12:20:57 +05:30 committed by GitHub
commit 6949114569
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"
}
};
});