diff --git a/erpnext/stock/doctype/item/item_list.js b/erpnext/stock/doctype/item/item_list.js index 2fee589a3c..40319e506c 100644 --- a/erpnext/stock/doctype/item/item_list.js +++ b/erpnext/stock/doctype/item/item_list.js @@ -15,7 +15,28 @@ frappe.listview_settings['Item'] = { } else if (doc.variant_of) { return [__("Variant"), "green", "variant_of,=," + doc.variant_of]; } - } + }, + + reports: [ + { + name: 'Stock Summary', + report_type: 'Page', + route: 'stock-balance' + }, + { + name: 'Stock Ledger', + report_type: 'Script Report' + }, + { + name: 'Stock Balance', + report_type: 'Script Report' + }, + { + name: 'Stock Projected Qty', + report_type: 'Script Report' + } + + ] }; frappe.help.youtube_id["Item"] = "qXaEwld4_Ps"; diff --git a/erpnext/stock/page/stock_balance/stock_balance.js b/erpnext/stock/page/stock_balance/stock_balance.js index efaf96fde8..94940456fc 100644 --- a/erpnext/stock/page/stock_balance/stock_balance.js +++ b/erpnext/stock/page/stock_balance/stock_balance.js @@ -1,7 +1,7 @@ frappe.pages['stock-balance'].on_page_load = function(wrapper) { var page = frappe.ui.make_app_page({ parent: wrapper, - title: 'Stock Balance', + title: 'Stock Summary', single_column: true }); page.start = 0; diff --git a/erpnext/support/report/minutes_to_first_response_for_issues/minutes_to_first_response_for_issues.py b/erpnext/support/report/minutes_to_first_response_for_issues/minutes_to_first_response_for_issues.py index 91f2a7a14d..e88e756412 100644 --- a/erpnext/support/report/minutes_to_first_response_for_issues/minutes_to_first_response_for_issues.py +++ b/erpnext/support/report/minutes_to_first_response_for_issues/minutes_to_first_response_for_issues.py @@ -13,8 +13,8 @@ def execute(filters=None): }, { 'fieldname': 'mins', - 'label': 'Float', - 'fieldtype': 'Mins to First Response' + 'fieldtype': 'Float', + 'label': 'Mins to First Response' }, ]