fix: Do not Allow Assignment Rule on Todo

This commit is contained in:
hasnain2808@gmail.com 2021-01-27 10:50:49 +05:30
parent 33f8ed9677
commit 0d265bca05

View file

@ -9,6 +9,16 @@ frappe.ui.form.on('Assignment Rule', {
frm.events.rule(frm);
},
setup: function(frm) {
frm.set_query("document_type", () => {
return {
filters: {
name: ["!=", "ToDo"]
}
};
});
},
document_type: function(frm) {
frm.trigger('set_options');
},