fix: ignore user permission for membership

This commit is contained in:
pateljannat
2021-05-24 19:26:01 +05:30
committed by Anand Chitipothu
parent 82fa0fa4d7
commit 18f074d8ac

View File

@@ -2,7 +2,13 @@
// For license information, please see license.txt
frappe.ui.form.on('LMS Batch Membership', {
// refresh: function(frm) {
// }
onload: function(frm) {
frm.set_query('member', function(doc) {
return {
filters: {
"ignore_user_type": 1,
}
};
});
},
});