fix: check page obj before adding menu

This commit is contained in:
Gursheen Anand 2024-01-27 23:30:17 +05:30
parent 8fdc244e16
commit 2486b646a1

View File

@ -74,6 +74,7 @@ erpnext.financial_statements = {
}); });
}); });
if (report.page){
const views_menu = report.page.add_custom_button_group(__('Financial Statements')); const views_menu = report.page.add_custom_button_group(__('Financial Statements'));
report.page.add_custom_menu_item(views_menu, __("Balance Sheet"), function() { report.page.add_custom_menu_item(views_menu, __("Balance Sheet"), function() {
@ -91,6 +92,7 @@ erpnext.financial_statements = {
frappe.set_route('query-report', 'Cash Flow', {company: filters.company}); frappe.set_route('query-report', 'Cash Flow', {company: filters.company});
}); });
} }
}
}; };
function get_filters() { function get_filters() {