[list] reports for item list
diff --git a/erpnext/stock/doctype/item/item_list.js b/erpnext/stock/doctype/item/item_list.js
index 2fee589..40319e5 100644
--- a/erpnext/stock/doctype/item/item_list.js
+++ b/erpnext/stock/doctype/item/item_list.js
@@ -15,7 +15,28 @@
} 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 efaf96f..9494045 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 91f2a7a..e88e756 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 @@
},
{
'fieldname': 'mins',
- 'label': 'Float',
- 'fieldtype': 'Mins to First Response'
+ 'fieldtype': 'Float',
+ 'label': 'Mins to First Response'
},
]