blob: 0ce1c0c6589c3b1fb953cddeaffdaa5c7b6beba7 [file] [log] [blame]
Rushabh Mehta27c40792013-04-03 15:21:44 +05301{
Rushabh Mehtaacd33672013-08-26 16:17:50 +05302 "app_name": "ERPNext",
Rushabh Mehta27c40792013-04-03 15:21:44 +05303 "modules": {
4 "Selling": {
5 "link": "selling-home",
Rushabh Mehtaf8d2ff32013-06-04 14:41:49 +05306 "color": "#1abc9c",
Rushabh Mehta27c40792013-04-03 15:21:44 +05307 "icon": "icon-tag",
8 "type": "module"
9 },
10 "Accounts": {
11 "link": "accounts-home",
Rushabh Mehtaf8d2ff32013-06-04 14:41:49 +053012 "color": "#3498db",
Rushabh Mehta27c40792013-04-03 15:21:44 +053013 "icon": "icon-money",
14 "type": "module"
15 },
16 "Stock": {
17 "type": "module",
18 "link": "stock-home",
Rushabh Mehtaf8d2ff32013-06-04 14:41:49 +053019 "color": "#f39c12",
Rushabh Mehta27c40792013-04-03 15:21:44 +053020 "icon": "icon-truck"
21 },
22 "Buying": {
23 "type": "module",
24 "link": "buying-home",
Rushabh Mehtaf8d2ff32013-06-04 14:41:49 +053025 "color": "#c0392b",
Rushabh Mehta27c40792013-04-03 15:21:44 +053026 "icon": "icon-shopping-cart"
27 },
28 "Support": {
29 "type": "module",
30 "link": "support-home",
Rushabh Mehtaf8d2ff32013-06-04 14:41:49 +053031 "color": "#2c3e50",
Rushabh Mehta27c40792013-04-03 15:21:44 +053032 "icon": "icon-phone"
33 },
34 "Projects": {
35 "type": "module",
36 "link": "projects-home",
Rushabh Mehtaf8d2ff32013-06-04 14:41:49 +053037 "color": "#8e44ad",
Rushabh Mehtaf79e3452013-06-07 12:58:29 +053038 "icon": "icon-puzzle-piece"
Rushabh Mehta27c40792013-04-03 15:21:44 +053039 },
40 "Manufacturing": {
41 "type": "module",
42 "link": "manufacturing-home",
Rushabh Mehtaf8d2ff32013-06-04 14:41:49 +053043 "color": "#7f8c8d",
44 "icon": "icon-cogs"
Rushabh Mehta27c40792013-04-03 15:21:44 +053045 },
Rushabh Mehta27c40792013-04-03 15:21:44 +053046 "HR": {
47 "type": "module",
48 "link": "hr-home",
Rushabh Mehtaf8d2ff32013-06-04 14:41:49 +053049 "color": "#2ecc71",
Rushabh Mehta27c40792013-04-03 15:21:44 +053050 "label": "Human Resources",
51 "icon": "icon-group"
52 },
53 "Setup": {
54 "type": "setup",
55 "link": "Setup",
Rushabh Mehtaf8d2ff32013-06-04 14:41:49 +053056 "color": "#bdc3c7",
Rushabh Mehta27c40792013-04-03 15:21:44 +053057 "icon": "icon-wrench"
58 },
59 "Activity": {
60 "type": "page",
61 "link": "activity",
Rushabh Mehtaf8d2ff32013-06-04 14:41:49 +053062 "color": "#e67e22",
Rushabh Mehta27c40792013-04-03 15:21:44 +053063 "icon": "icon-play",
64 "label": "Activity"
65 },
Rushabh Mehta9b10e362013-05-24 16:00:56 +053066 "Notes": {
67 "type": "list",
68 "doctype": "Note",
69 "link": "List/Note",
Rushabh Mehtaf8d2ff32013-06-04 14:41:49 +053070 "color": "#95a5a6",
Rushabh Mehta9b10e362013-05-24 16:00:56 +053071 "label": "Notes",
Rushabh Mehtaf8d2ff32013-06-04 14:41:49 +053072 "icon": "icon-file-alt"
Rushabh Mehta27c40792013-04-03 15:21:44 +053073 }
Rushabh Mehta3023a8f2013-04-03 16:34:23 +053074 },
75 "web": {
76 "pages": {
Rushabh Mehta3023a8f2013-04-03 16:34:23 +053077 "account": {
Rushabh Mehta855d92d2013-07-23 12:20:08 +053078 "no_cache": true,
Rushabh Mehtabdb846f2013-09-09 17:31:19 +053079 "template": "app/portal/templates/account.html"
Rushabh Mehta3023a8f2013-04-03 16:34:23 +053080 },
81 "order": {
82 "no_cache": true,
Rushabh Mehtabdb846f2013-09-09 17:31:19 +053083 "template": "app/portal/templates/sale.html",
Rushabh Mehtac59c4e02013-09-09 12:17:45 +053084 "args_method": "utilities.website_transactions.get_order_args",
Anand Doshia9c0f5d2013-09-05 12:19:00 +053085 "portal": {
86 "doctype": "Sales Order",
87 "conditions": {
88 "docstatus": 1
89 }
90 }
Rushabh Mehta3023a8f2013-04-03 16:34:23 +053091 },
92 "orders": {
Rushabh Mehta855d92d2013-07-23 12:20:08 +053093 "no_cache": true,
Rushabh Mehtabdb846f2013-09-09 17:31:19 +053094 "template": "app/portal/templates/sales_transactions.html",
Rushabh Mehtac59c4e02013-09-09 12:17:45 +053095 "args_method": "utilities.website_transactions.order_list_args"
Anand Doshif7e56482013-08-29 17:46:40 +053096 },
Anand Doshid5c18d42013-09-04 15:07:00 +053097 "invoice": {
98 "no_cache": true,
Rushabh Mehtabdb846f2013-09-09 17:31:19 +053099 "template": "app/portal/templates/sale.html",
Rushabh Mehtac59c4e02013-09-09 12:17:45 +0530100 "args_method": "utilities.website_transactions.get_invoice_args",
Anand Doshia9c0f5d2013-09-05 12:19:00 +0530101 "portal": {
102 "doctype": "Sales Invoice",
103 "conditions": {
104 "docstatus": 1
105 }
106 }
Anand Doshid5c18d42013-09-04 15:07:00 +0530107 },
Anand Doshif7e56482013-08-29 17:46:40 +0530108 "invoices": {
109 "no_cache": true,
Rushabh Mehtabdb846f2013-09-09 17:31:19 +0530110 "template": "app/portal/templates/sales_transactions.html",
Rushabh Mehtac59c4e02013-09-09 12:17:45 +0530111 "args_method": "utilities.website_transactions.invoice_list_args"
Rushabh Mehta3023a8f2013-04-03 16:34:23 +0530112 },
Anand Doshid5c18d42013-09-04 15:07:00 +0530113 "shipment": {
114 "no_cache": true,
Rushabh Mehtabdb846f2013-09-09 17:31:19 +0530115 "template": "app/portal/templates/sale.html",
Rushabh Mehtac59c4e02013-09-09 12:17:45 +0530116 "args_method": "utilities.website_transactions.get_shipment_args",
Anand Doshia9c0f5d2013-09-05 12:19:00 +0530117 "portal": {
118 "doctype": "Delivery Note",
119 "conditions": {
120 "docstatus": 1
121 }
122 }
Anand Doshid5c18d42013-09-04 15:07:00 +0530123 },
Anand Doshi6c8ef772013-08-30 18:23:50 +0530124 "shipments": {
125 "no_cache": true,
Rushabh Mehtabdb846f2013-09-09 17:31:19 +0530126 "template": "app/portal/templates/sales_transactions.html",
Rushabh Mehtac59c4e02013-09-09 12:17:45 +0530127 "args_method": "utilities.website_transactions.shipment_list_args"
Anand Doshi6c8ef772013-08-30 18:23:50 +0530128 },
Rushabh Mehta3023a8f2013-04-03 16:34:23 +0530129 "product_search": {
Rushabh Mehtabdb846f2013-09-09 17:31:19 +0530130 "template": "app/stock/doctype/item/templates/product_search.html"
Rushabh Mehta3023a8f2013-04-03 16:34:23 +0530131 },
132 "ticket": {
133 "no_cache": true,
Rushabh Mehtabdb846f2013-09-09 17:31:19 +0530134 "template": "app/support/doctype/support_ticket/templates/ticket.html",
Anand Doshid5c18d42013-09-04 15:07:00 +0530135 "args_method": "support.doctype.support_ticket.support_ticket.get_website_args",
Anand Doshia9c0f5d2013-09-05 12:19:00 +0530136 "portal": {
137 "doctype": "Support Ticket"
138 }
Rushabh Mehta3023a8f2013-04-03 16:34:23 +0530139 },
140 "tickets": {
Rushabh Mehtabdb846f2013-09-09 17:31:19 +0530141 "template": "app/support/doctype/support_ticket/templates/tickets.html",
Rushabh Mehtac59c4e02013-09-09 12:17:45 +0530142 "args_method": "utilities.website_transactions.ticket_list_args"
Rushabh Mehta3023a8f2013-04-03 16:34:23 +0530143 },
Anand Doshiedbf3e12013-07-02 11:40:16 +0530144 "address": {
145 "no_cache": true,
Rushabh Mehtabdb846f2013-09-09 17:31:19 +0530146 "template": "app/utilities/doctype/address/templates/address.html",
Anand Doshiedbf3e12013-07-02 11:40:16 +0530147 "args_method": "utilities.doctype.address.address.get_website_args"
148 },
149 "addresses": {
Rushabh Mehtabdb846f2013-09-09 17:31:19 +0530150 "template": "app/utilities/doctype/address/templates/addresses.html"
Anand Doshi2e311ac2013-05-15 11:42:09 +0530151 },
152 "profile": {
153 "no_cache": true,
Rushabh Mehtabdb846f2013-09-09 17:31:19 +0530154 "template": "app/portal/templates/profile.html",
Anand Doshi2ac0a832013-07-10 20:49:44 +0530155 "args_method": "startup.webutils.get_profile_args"
Anand Doshi6f1f4402013-06-04 15:48:26 +0530156 },
157 "cart": {
158 "no_cache": true,
Rushabh Mehtabdb846f2013-09-09 17:31:19 +0530159 "template": "app/portal/templates/cart.html"
Anand Doshi8e2ea5f2013-06-13 14:40:57 +0530160 },
161 "partners": {
Rushabh Mehtabdb846f2013-09-09 17:31:19 +0530162 "template": "app/setup/doctype/sales_partners/templates/partners.html",
Rushabh Mehta46089db2013-09-09 11:32:24 +0530163 "args_method": "setup.doctype.sales_partner.sales_partner.get_partner_args"
Rushabh Mehta3023a8f2013-04-03 16:34:23 +0530164 }
165 },
166 "generators": {
Rushabh Mehta3023a8f2013-04-03 16:34:23 +0530167 "Item": {
Rushabh Mehtabdb846f2013-09-09 17:31:19 +0530168 "template": "app/stock/doctype/item/templates/item.html",
Rushabh Mehta3023a8f2013-04-03 16:34:23 +0530169 "condition_field": "show_in_website"
170 },
171 "Item Group":{
Rushabh Mehtabdb846f2013-09-09 17:31:19 +0530172 "template": "app/setup/doctype/item_group/templates/item_group.html",
Rushabh Mehta3023a8f2013-04-03 16:34:23 +0530173 "condition_field": "show_in_website"
Anand Doshi8e2ea5f2013-06-13 14:40:57 +0530174 },
175 "Sales Partner": {
Rushabh Mehtabdb846f2013-09-09 17:31:19 +0530176 "template": "app/setup/doctype/sales_partner/templates/partner_page.html",
Anand Doshi8e2ea5f2013-06-13 14:40:57 +0530177 "condition_field": "show_in_website"
Rushabh Mehta3023a8f2013-04-03 16:34:23 +0530178 }
179 }
Rushabh Mehta27c40792013-04-03 15:21:44 +0530180 }
181}