blob: 3f5851113d99efb6f53e29709c49921ece9bcc56 [file] [log] [blame]
Rushabh Mehta27c40792013-04-03 15:21:44 +05301{
Rushabh Mehtaacd33672013-08-26 16:17:50 +05302 "app_name": "ERPNext",
Rushabh Mehta4c6120a2013-09-10 12:18:58 +05303 "base_template": "app/portal/templates/base.html",
Rushabh Mehta27c40792013-04-03 15:21:44 +05304 "modules": {
5 "Selling": {
6 "link": "selling-home",
Rushabh Mehtaf8d2ff32013-06-04 14:41:49 +05307 "color": "#1abc9c",
Rushabh Mehta27c40792013-04-03 15:21:44 +05308 "icon": "icon-tag",
9 "type": "module"
10 },
11 "Accounts": {
12 "link": "accounts-home",
Rushabh Mehtaf8d2ff32013-06-04 14:41:49 +053013 "color": "#3498db",
Rushabh Mehta27c40792013-04-03 15:21:44 +053014 "icon": "icon-money",
15 "type": "module"
16 },
17 "Stock": {
18 "type": "module",
19 "link": "stock-home",
Rushabh Mehtaf8d2ff32013-06-04 14:41:49 +053020 "color": "#f39c12",
Rushabh Mehta27c40792013-04-03 15:21:44 +053021 "icon": "icon-truck"
22 },
23 "Buying": {
24 "type": "module",
25 "link": "buying-home",
Rushabh Mehtaf8d2ff32013-06-04 14:41:49 +053026 "color": "#c0392b",
Rushabh Mehta27c40792013-04-03 15:21:44 +053027 "icon": "icon-shopping-cart"
28 },
29 "Support": {
30 "type": "module",
31 "link": "support-home",
Rushabh Mehtaf8d2ff32013-06-04 14:41:49 +053032 "color": "#2c3e50",
Rushabh Mehta27c40792013-04-03 15:21:44 +053033 "icon": "icon-phone"
34 },
35 "Projects": {
36 "type": "module",
37 "link": "projects-home",
Rushabh Mehtaf8d2ff32013-06-04 14:41:49 +053038 "color": "#8e44ad",
Rushabh Mehtaf79e3452013-06-07 12:58:29 +053039 "icon": "icon-puzzle-piece"
Rushabh Mehta27c40792013-04-03 15:21:44 +053040 },
41 "Manufacturing": {
42 "type": "module",
43 "link": "manufacturing-home",
Rushabh Mehtaf8d2ff32013-06-04 14:41:49 +053044 "color": "#7f8c8d",
45 "icon": "icon-cogs"
Rushabh Mehta27c40792013-04-03 15:21:44 +053046 },
Rushabh Mehta27c40792013-04-03 15:21:44 +053047 "HR": {
48 "type": "module",
49 "link": "hr-home",
Rushabh Mehtaf8d2ff32013-06-04 14:41:49 +053050 "color": "#2ecc71",
Rushabh Mehta27c40792013-04-03 15:21:44 +053051 "label": "Human Resources",
52 "icon": "icon-group"
53 },
54 "Setup": {
55 "type": "setup",
56 "link": "Setup",
Rushabh Mehtaf8d2ff32013-06-04 14:41:49 +053057 "color": "#bdc3c7",
Rushabh Mehta27c40792013-04-03 15:21:44 +053058 "icon": "icon-wrench"
59 },
60 "Activity": {
61 "type": "page",
62 "link": "activity",
Rushabh Mehtaf8d2ff32013-06-04 14:41:49 +053063 "color": "#e67e22",
Rushabh Mehta27c40792013-04-03 15:21:44 +053064 "icon": "icon-play",
65 "label": "Activity"
66 },
Rushabh Mehta9b10e362013-05-24 16:00:56 +053067 "Notes": {
68 "type": "list",
69 "doctype": "Note",
70 "link": "List/Note",
Rushabh Mehtaf8d2ff32013-06-04 14:41:49 +053071 "color": "#95a5a6",
Rushabh Mehta9b10e362013-05-24 16:00:56 +053072 "label": "Notes",
Rushabh Mehtaf8d2ff32013-06-04 14:41:49 +053073 "icon": "icon-file-alt"
Rushabh Mehta27c40792013-04-03 15:21:44 +053074 }
Rushabh Mehta3023a8f2013-04-03 16:34:23 +053075 },
76 "web": {
77 "pages": {
Rushabh Mehta3023a8f2013-04-03 16:34:23 +053078 "account": {
Rushabh Mehta855d92d2013-07-23 12:20:08 +053079 "no_cache": true,
Rushabh Mehtabdb846f2013-09-09 17:31:19 +053080 "template": "app/portal/templates/account.html"
Rushabh Mehta3023a8f2013-04-03 16:34:23 +053081 },
82 "order": {
83 "no_cache": true,
Rushabh Mehtabdb846f2013-09-09 17:31:19 +053084 "template": "app/portal/templates/sale.html",
Rushabh Mehtac59c4e02013-09-09 12:17:45 +053085 "args_method": "utilities.website_transactions.get_order_args",
Anand Doshia9c0f5d2013-09-05 12:19:00 +053086 "portal": {
87 "doctype": "Sales Order",
88 "conditions": {
89 "docstatus": 1
90 }
91 }
Rushabh Mehta3023a8f2013-04-03 16:34:23 +053092 },
93 "orders": {
Rushabh Mehta855d92d2013-07-23 12:20:08 +053094 "no_cache": true,
Rushabh Mehtabdb846f2013-09-09 17:31:19 +053095 "template": "app/portal/templates/sales_transactions.html",
Rushabh Mehtac59c4e02013-09-09 12:17:45 +053096 "args_method": "utilities.website_transactions.order_list_args"
Anand Doshif7e56482013-08-29 17:46:40 +053097 },
Anand Doshid5c18d42013-09-04 15:07:00 +053098 "invoice": {
99 "no_cache": true,
Rushabh Mehtabdb846f2013-09-09 17:31:19 +0530100 "template": "app/portal/templates/sale.html",
Rushabh Mehtac59c4e02013-09-09 12:17:45 +0530101 "args_method": "utilities.website_transactions.get_invoice_args",
Anand Doshia9c0f5d2013-09-05 12:19:00 +0530102 "portal": {
103 "doctype": "Sales Invoice",
104 "conditions": {
105 "docstatus": 1
106 }
107 }
Anand Doshid5c18d42013-09-04 15:07:00 +0530108 },
Anand Doshif7e56482013-08-29 17:46:40 +0530109 "invoices": {
110 "no_cache": true,
Rushabh Mehtabdb846f2013-09-09 17:31:19 +0530111 "template": "app/portal/templates/sales_transactions.html",
Rushabh Mehtac59c4e02013-09-09 12:17:45 +0530112 "args_method": "utilities.website_transactions.invoice_list_args"
Rushabh Mehta3023a8f2013-04-03 16:34:23 +0530113 },
Anand Doshid5c18d42013-09-04 15:07:00 +0530114 "shipment": {
115 "no_cache": true,
Rushabh Mehtabdb846f2013-09-09 17:31:19 +0530116 "template": "app/portal/templates/sale.html",
Rushabh Mehtac59c4e02013-09-09 12:17:45 +0530117 "args_method": "utilities.website_transactions.get_shipment_args",
Anand Doshia9c0f5d2013-09-05 12:19:00 +0530118 "portal": {
119 "doctype": "Delivery Note",
120 "conditions": {
121 "docstatus": 1
122 }
123 }
Anand Doshid5c18d42013-09-04 15:07:00 +0530124 },
Anand Doshi6c8ef772013-08-30 18:23:50 +0530125 "shipments": {
126 "no_cache": true,
Rushabh Mehtabdb846f2013-09-09 17:31:19 +0530127 "template": "app/portal/templates/sales_transactions.html",
Rushabh Mehtac59c4e02013-09-09 12:17:45 +0530128 "args_method": "utilities.website_transactions.shipment_list_args"
Anand Doshi6c8ef772013-08-30 18:23:50 +0530129 },
Rushabh Mehta3023a8f2013-04-03 16:34:23 +0530130 "product_search": {
Rushabh Mehtabdb846f2013-09-09 17:31:19 +0530131 "template": "app/stock/doctype/item/templates/product_search.html"
Rushabh Mehta3023a8f2013-04-03 16:34:23 +0530132 },
133 "ticket": {
134 "no_cache": true,
Rushabh Mehtabdb846f2013-09-09 17:31:19 +0530135 "template": "app/support/doctype/support_ticket/templates/ticket.html",
Anand Doshid5c18d42013-09-04 15:07:00 +0530136 "args_method": "support.doctype.support_ticket.support_ticket.get_website_args",
Anand Doshia9c0f5d2013-09-05 12:19:00 +0530137 "portal": {
138 "doctype": "Support Ticket"
139 }
Rushabh Mehta3023a8f2013-04-03 16:34:23 +0530140 },
141 "tickets": {
Rushabh Mehtabdb846f2013-09-09 17:31:19 +0530142 "template": "app/support/doctype/support_ticket/templates/tickets.html",
Rushabh Mehtac59c4e02013-09-09 12:17:45 +0530143 "args_method": "utilities.website_transactions.ticket_list_args"
Rushabh Mehta3023a8f2013-04-03 16:34:23 +0530144 },
Anand Doshiedbf3e12013-07-02 11:40:16 +0530145 "address": {
146 "no_cache": true,
Rushabh Mehtabdb846f2013-09-09 17:31:19 +0530147 "template": "app/utilities/doctype/address/templates/address.html",
Anand Doshiedbf3e12013-07-02 11:40:16 +0530148 "args_method": "utilities.doctype.address.address.get_website_args"
149 },
150 "addresses": {
Rushabh Mehtabdb846f2013-09-09 17:31:19 +0530151 "template": "app/utilities/doctype/address/templates/addresses.html"
Anand Doshi2e311ac2013-05-15 11:42:09 +0530152 },
153 "profile": {
154 "no_cache": true,
Rushabh Mehtabdb846f2013-09-09 17:31:19 +0530155 "template": "app/portal/templates/profile.html",
Anand Doshi2ac0a832013-07-10 20:49:44 +0530156 "args_method": "startup.webutils.get_profile_args"
Anand Doshi6f1f4402013-06-04 15:48:26 +0530157 },
158 "cart": {
159 "no_cache": true,
Rushabh Mehtabdb846f2013-09-09 17:31:19 +0530160 "template": "app/portal/templates/cart.html"
Anand Doshi8e2ea5f2013-06-13 14:40:57 +0530161 },
162 "partners": {
Rushabh Mehtabdb846f2013-09-09 17:31:19 +0530163 "template": "app/setup/doctype/sales_partners/templates/partners.html",
Rushabh Mehta46089db2013-09-09 11:32:24 +0530164 "args_method": "setup.doctype.sales_partner.sales_partner.get_partner_args"
Rushabh Mehta3023a8f2013-04-03 16:34:23 +0530165 }
166 },
167 "generators": {
Rushabh Mehta3023a8f2013-04-03 16:34:23 +0530168 "Item": {
Rushabh Mehtabdb846f2013-09-09 17:31:19 +0530169 "template": "app/stock/doctype/item/templates/item.html",
Rushabh Mehta3023a8f2013-04-03 16:34:23 +0530170 "condition_field": "show_in_website"
171 },
172 "Item Group":{
Rushabh Mehtabdb846f2013-09-09 17:31:19 +0530173 "template": "app/setup/doctype/item_group/templates/item_group.html",
Rushabh Mehta3023a8f2013-04-03 16:34:23 +0530174 "condition_field": "show_in_website"
Anand Doshi8e2ea5f2013-06-13 14:40:57 +0530175 },
176 "Sales Partner": {
Rushabh Mehtabdb846f2013-09-09 17:31:19 +0530177 "template": "app/setup/doctype/sales_partner/templates/partner_page.html",
Anand Doshi8e2ea5f2013-06-13 14:40:57 +0530178 "condition_field": "show_in_website"
Rushabh Mehta3023a8f2013-04-03 16:34:23 +0530179 }
180 }
Rushabh Mehta27c40792013-04-03 15:21:44 +0530181 }
182}