f828d853e3
* fix(org chart): multiple root nodes not expanding on clicking Expand All * fix: unstable filter inserts duplicate nodes
24 lines
702 B
JavaScript
24 lines
702 B
JavaScript
frappe.pages['organizational-chart'].on_page_load = function(wrapper) {
|
|
frappe.ui.make_app_page({
|
|
parent: wrapper,
|
|
title: __('Organizational Chart'),
|
|
single_column: true
|
|
});
|
|
|
|
$(wrapper).bind('show', () => {
|
|
frappe.require('hierarchy-chart.bundle.js', () => {
|
|
let organizational_chart = undefined;
|
|
let method = 'erpnext.hr.page.organizational_chart.organizational_chart.get_children';
|
|
|
|
if (frappe.is_mobile()) {
|
|
organizational_chart = new erpnext.HierarchyChartMobile('Employee', wrapper, method);
|
|
} else {
|
|
organizational_chart = new erpnext.HierarchyChart('Employee', wrapper, method);
|
|
}
|
|
|
|
frappe.breadcrumbs.add('HR');
|
|
organizational_chart.show();
|
|
});
|
|
});
|
|
};
|