fix: set query for training events (#26303)
* fix: set query * fix: remove whitespace between function and params Co-authored-by: Rucha Mahabal <ruchamahabal2@gmail.com>
This commit is contained in:
parent
c0817838d9
commit
73db919c99
@ -20,11 +20,10 @@ frappe.ui.form.on('Training Event', {
|
||||
frappe.set_route("List", "Training Feedback");
|
||||
});
|
||||
}
|
||||
}
|
||||
});
|
||||
frm.events.set_employee_query(frm);
|
||||
},
|
||||
|
||||
frappe.ui.form.on("Training Event Employee", {
|
||||
employee: function (frm) {
|
||||
set_employee_query: function(frm) {
|
||||
let emp = [];
|
||||
for (let d in frm.doc.employees) {
|
||||
if (frm.doc.employees[d].employee) {
|
||||
@ -40,3 +39,10 @@ frappe.ui.form.on("Training Event Employee", {
|
||||
});
|
||||
}
|
||||
});
|
||||
|
||||
frappe.ui.form.on("Training Event Employee", {
|
||||
employee: function(frm) {
|
||||
frm.events.set_employee_query(frm);
|
||||
}
|
||||
});
|
||||
|
||||
|
@ -19,6 +19,7 @@
|
||||
"fieldtype": "Link",
|
||||
"in_list_view": 1,
|
||||
"label": "Employee",
|
||||
"no_copy": 1,
|
||||
"options": "Employee"
|
||||
},
|
||||
{
|
||||
@ -68,7 +69,7 @@
|
||||
"index_web_pages_for_search": 1,
|
||||
"istable": 1,
|
||||
"links": [],
|
||||
"modified": "2021-05-21 12:41:59.336237",
|
||||
"modified": "2021-07-02 17:20:27.630176",
|
||||
"modified_by": "Administrator",
|
||||
"module": "HR",
|
||||
"name": "Training Event Employee",
|
||||
|
Loading…
Reference in New Issue
Block a user