Merge pull request #18042 from rohitwaghchaure/closed_job_opening_disaplying_in_job_applicant

fix: Closed job opening disaplying in job applicant
This commit is contained in:
rohitwaghchaure 2019-06-25 16:51:03 +05:30 committed by GitHub
commit 2b6cb6160f
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -25,5 +25,13 @@ frappe.ui.form.on("Job Applicant", {
}
}
frm.set_query("job_title", function() {
return {
filters: {
'status': 'Open'
}
};
});
}
});