brotherton-erpnext/support/page/support_home/support_home.js

80 lines
1.7 KiB
JavaScript
Raw Normal View History

2013-01-09 11:09:27 +00:00
// ERPNext: Copyright 2013 Web Notes Technologies Pvt Ltd
// GNU General Public License. See "license.txt"
wn.module_page["Support"] = [
{
title: wn._("Documents"),
icon: "icon-copy",
items: [
{
label: wn._("Support Ticket"),
description: wn._("Support queries from customers via email or website."),
doctype:"Support Ticket"
},
{
label: wn._("Customer Issue"),
description: wn._("Customer Issue against a Serial No (warranty)."),
doctype:"Customer Issue"
},
{
label: wn._("Maintenance Schedule"),
description: wn._("Plan for scheduled maintenance contracts."),
doctype:"Maintenance Schedule"
},
{
label: wn._("Maintenance Visit"),
description: wn._("Visit report for maintenance call."),
doctype:"Maintenance Visit"
},
{
label: wn._("Newsletter"),
description: wn._("Send Newsletters to your contacts, leads."),
doctype:"Newsletter"
},
{
label: wn._("Communication"),
description: wn._("Communication log."),
doctype:"Communication"
},
]
},
{
title: wn._("Masters"),
icon: "icon-book",
items: [
{
label: wn._("Serial No"),
description: wn._("Single unit of an Item."),
doctype:"Serial No"
},
]
},
{
title: wn._("Setup"),
icon: "icon-cog",
items: [
{
"route":"Form/Email Settings/Email Settings",
"label":wn._("Email Settings"),
"description":wn._("Setup to pull emails from support email account"),
doctype: "Email Settings"
},
]
},
{
title: wn._("Analytics"),
right: true,
icon: "icon-bar-chart",
items: [
{
"label":wn._("Support Analytics"),
page: "support-analytics"
},
]
},
]
2012-02-23 07:05:32 +00:00
2012-02-21 13:33:50 +00:00
pscript['onload_support-home'] = function(wrapper) {
2013-01-09 11:09:27 +00:00
wn.views.moduleview.make(wrapper, "Support");
}