blob: 41f689f2877816faf3a74d2ac80143ea45cedce0 [file] [log] [blame]
Anand Doshif5794f12014-03-03 15:05:28 +05301from frappe import _
2
3data = [
4 {
5 "label": _("Documents"),
6 "icon": "icon-star",
7 "items": [
8 {
9 "type": "doctype",
10 "name": "Supplier",
11 "description": _("Supplier database."),
12 },
13 {
14 "type": "doctype",
15 "name": "Material Request",
16 "description": _("Request for purchase."),
17 },
18 {
19 "type": "doctype",
20 "name": "Supplier Quotation",
21 "description": _("Quotations received from Suppliers."),
22 },
23 {
24 "type": "doctype",
25 "name": "Purchase Order",
26 "description": _("Purchase Orders given to Suppliers."),
27 },
28 {
29 "type": "doctype",
30 "name": "Contact",
31 "description": _("All Contacts."),
32 },
33 {
34 "type": "doctype",
35 "name": "Address",
36 "description": _("All Addresses."),
37 },
38 {
39 "type": "doctype",
40 "name": "Item",
41 "description": _("All Products or Services."),
42 },
43 ]
44 },
45 {
46 "label": _("Setup"),
47 "icon": "icon-cog",
48 "items": [
49 {
50 "type": "doctype",
51 "name": "Buying Settings",
52 "description": _("Default settings for buying transactions.")
53 },
54 {
55 "type": "doctype",
56 "name": "Supplier Type",
57 "description": _("Supplier Type master.")
58 },
59 {
60 "type": "page",
61 "name": "Sales Browser",
62 "icon": "icon-sitemap",
63 "label": _("Item Group Tree"),
64 "link": "Sales Browser/Item Group",
65 "description": _("Tree of Item Groups."),
66 "doctype": "Item Group",
67 },
68 {
69 "type": "doctype",
70 "name":"Terms and Conditions",
71 "label": _("Terms and Conditions Template"),
72 "description": _("Template of terms or contract.")
73 },
74 {
75 "type": "doctype",
76 "name": "Purchase Taxes and Charges Master",
77 "description": _("Tax template for buying transactions.")
78 },
79 {
80 "type": "doctype",
81 "name": "Price List",
82 "description": _("Price List master.")
83 },
84 {
85 "type": "doctype",
86 "name": "Item Price",
87 "description": _("Multiple Item prices."),
88 "route": "Report/Item Price"
89 },
90 ]
91 },
92 {
93 "label": _("Main Reports"),
94 "icon": "icon-table",
95 "items": [
96 {
97 "type": "page",
98 "name": "purchase-analytics",
99 "label": _("Purchase Analytics"),
100 "icon": "icon-bar-chart",
101 },
102 ]
103 },
104 {
105 "label": _("Standard Reports"),
106 "icon": "icon-list",
107 "items": [
108 {
109 "type": "report",
110 "is_query_report": True,
111 "name": "Items To Be Requested",
112 "doctype": "Item"
113 },
114 {
115 "type": "report",
116 "is_query_report": True,
117 "name": "Requested Items To Be Ordered",
118 "doctype": "Material Request"
119 },
120 {
121 "type": "report",
122 "is_query_report": True,
123 "name": "Material Requests for which Supplier Quotations are not created",
124 "doctype": "Material Request"
125 },
126 {
127 "type": "report",
128 "is_query_report": True,
129 "name": "Purchase In Transit",
130 "doctype": "Purchase Order"
131 },
132 {
133 "type": "report",
134 "is_query_report": True,
135 "name": "Item-wise Purchase History",
136 "doctype": "Item"
137 },
138 {
139 "type": "report",
140 "is_query_report": True,
141 "name": "Item-wise Last Purchase Rate",
142 "doctype": "Item"
143 },
144 {
145 "type": "report",
146 "is_query_report": True,
147 "name": "Purchase Order Trends",
148 "doctype": "Purchase Order"
149 },
150 {
151 "type": "report",
152 "is_query_report": True,
153 "name": "Supplier Addresses And Contacts",
154 "doctype": "Supplier"
155 },
156 {
157 "type": "report",
158 "is_query_report": True,
159 "name": "Supplier-Wise Sales Analytics",
160 "doctype": "Stock Ledger Entry"
161 }
162 ]
163 },
164]