fix: user type filter on assignment submission
This commit is contained in:
@@ -2,6 +2,13 @@
|
|||||||
// For license information, please see license.txt
|
// For license information, please see license.txt
|
||||||
|
|
||||||
frappe.ui.form.on("LMS Assignment Submission", {
|
frappe.ui.form.on("LMS Assignment Submission", {
|
||||||
// refresh: function(frm) {
|
onload: function (frm) {
|
||||||
// }
|
frm.set_query("member", function (doc) {
|
||||||
|
return {
|
||||||
|
filters: {
|
||||||
|
ignore_user_type: 1,
|
||||||
|
},
|
||||||
|
};
|
||||||
|
});
|
||||||
|
},
|
||||||
});
|
});
|
||||||
|
|||||||
@@ -43,7 +43,7 @@ class LMSAssignmentSubmission(Document):
|
|||||||
}
|
}
|
||||||
|
|
||||||
moderators = frappe.get_all("Has Role", {"role": "Moderator"}, pluck="parent")
|
moderators = frappe.get_all("Has Role", {"role": "Moderator"}, pluck="parent")
|
||||||
print(moderators)
|
|
||||||
if custom_template:
|
if custom_template:
|
||||||
email_template = get_email_template(custom_template, args)
|
email_template = get_email_template(custom_template, args)
|
||||||
subject = email_template.get("subject")
|
subject = email_template.get("subject")
|
||||||
|
|||||||
Reference in New Issue
Block a user