mirror of
https://github.com/itsdave-de/msp.git
synced 2025-05-06 15:35:12 +02:00
11 lines
377 B
JavaScript
11 lines
377 B
JavaScript
frappe.ui.form.on('Location', {
|
|
refresh(frm) {
|
|
frm.add_custom_button('Show IT Objects in Location', () => {
|
|
frm.call('get_all_child_locations_from_location',{})
|
|
.then((response) => {
|
|
frappe.set_route('List', 'IT Object', { location: ['in', `${response.message.toString()}`] })
|
|
})
|
|
})
|
|
}
|
|
});
|