Anand Doshi | f5794f1 | 2014-03-03 15:05:28 +0530 | [diff] [blame] | 1 | from frappe import _ |
| 2 | |
| 3 | data = [ |
| 4 | { |
| 5 | "label": _("Documents"), |
| 6 | "icon": "icon-star", |
| 7 | "items": [ |
| 8 | { |
| 9 | "type": "doctype", |
| 10 | "name": "Journal Voucher", |
| 11 | "description": _("Accounting journal entries.") |
| 12 | }, |
| 13 | { |
| 14 | "type": "doctype", |
| 15 | "name": "Sales Invoice", |
| 16 | "description": _("Bills raised to Customers.") |
| 17 | }, |
| 18 | { |
| 19 | "type": "doctype", |
| 20 | "name": "Purchase Invoice", |
| 21 | "description": _("Bills raised by Suppliers.") |
| 22 | }, |
| 23 | { |
| 24 | "type": "doctype", |
| 25 | "name": "Customer", |
| 26 | "description": _("Customer database.") |
| 27 | }, |
| 28 | { |
| 29 | "type": "doctype", |
| 30 | "name": "Supplier", |
| 31 | "description": _("Supplier database.") |
| 32 | }, |
Anand Doshi | ef54074 | 2014-05-02 19:42:27 +0530 | [diff] [blame] | 33 | { |
| 34 | "type": "page", |
| 35 | "name": "Accounts Browser", |
| 36 | "icon": "icon-sitemap", |
| 37 | "label": _("Chart of Accounts"), |
| 38 | "route": "Accounts Browser/Account", |
| 39 | "description": _("Tree of finanial accounts."), |
| 40 | "doctype": "Account", |
| 41 | }, |
Anand Doshi | f5794f1 | 2014-03-03 15:05:28 +0530 | [diff] [blame] | 42 | ] |
| 43 | }, |
| 44 | { |
| 45 | "label": _("Tools"), |
| 46 | "icon": "icon-wrench", |
| 47 | "items": [ |
| 48 | { |
| 49 | "type": "doctype", |
| 50 | "name": "Bank Reconciliation", |
| 51 | "description": _("Update bank payment dates with journals.") |
| 52 | }, |
Nabin Hait | 292a254 | 2014-05-01 15:46:37 +0530 | [diff] [blame] | 53 | # { |
| 54 | # "type": "doctype", |
| 55 | # "name": "Payment to Invoice Matching Tool", |
| 56 | # "description": _("Match non-linked Invoices and Payments.") |
| 57 | # }, |
Anand Doshi | f5794f1 | 2014-03-03 15:05:28 +0530 | [diff] [blame] | 58 | { |
| 59 | "type": "doctype", |
| 60 | "name": "Period Closing Voucher", |
| 61 | "description": _("Close Balance Sheet and book Profit or Loss.") |
| 62 | }, |
| 63 | ] |
| 64 | }, |
| 65 | { |
| 66 | "label": _("Setup"), |
| 67 | "icon": "icon-cog", |
| 68 | "items": [ |
| 69 | { |
| 70 | "type": "doctype", |
| 71 | "name": "Fiscal Year", |
| 72 | "description": _("Financial / accounting year.") |
| 73 | }, |
| 74 | { |
| 75 | "type": "page", |
| 76 | "name": "Accounts Browser", |
| 77 | "icon": "icon-sitemap", |
| 78 | "label": _("Chart of Accounts"), |
| 79 | "route": "Accounts Browser/Account", |
| 80 | "description": _("Tree of finanial accounts."), |
| 81 | "doctype": "Account", |
| 82 | }, |
| 83 | { |
| 84 | "type": "page", |
| 85 | "name": "Accounts Browser", |
| 86 | "icon": "icon-sitemap", |
| 87 | "label": _("Chart of Cost Centers"), |
| 88 | "route": "Accounts Browser/Cost Center", |
| 89 | "description": _("Tree of finanial Cost Centers."), |
| 90 | "doctype": "Cost Center", |
| 91 | }, |
| 92 | { |
| 93 | "type": "doctype", |
| 94 | "name": "Accounts Settings", |
| 95 | "description": _("Default settings for accounting transactions.") |
| 96 | }, |
| 97 | { |
| 98 | "type": "doctype", |
| 99 | "name": "Sales Taxes and Charges Master", |
| 100 | "description": _("Tax template for selling transactions.") |
| 101 | }, |
| 102 | { |
| 103 | "type": "doctype", |
| 104 | "name": "Purchase Taxes and Charges Master", |
| 105 | "description": _("Tax template for buying transactions.") |
| 106 | }, |
| 107 | { |
| 108 | "type": "doctype", |
| 109 | "name": "POS Setting", |
| 110 | "label": _("Point-of-Sale Setting"), |
| 111 | "description": _("Rules to calculate shipping amount for a sale") |
| 112 | }, |
| 113 | { |
| 114 | "type": "doctype", |
Anand Doshi | b2c2fca | 2014-03-05 18:24:48 +0530 | [diff] [blame] | 115 | "name": "Shipping Rule", |
Anand Doshi | f5794f1 | 2014-03-03 15:05:28 +0530 | [diff] [blame] | 116 | "description": _("Rules for adding shipping costs.") |
| 117 | }, |
| 118 | { |
| 119 | "type": "doctype", |
Anand Doshi | b2c2fca | 2014-03-05 18:24:48 +0530 | [diff] [blame] | 120 | "name": "Pricing Rule", |
| 121 | "description": _("Rules for applying pricing and discount.") |
| 122 | }, |
| 123 | { |
| 124 | "type": "doctype", |
Anand Doshi | f5794f1 | 2014-03-03 15:05:28 +0530 | [diff] [blame] | 125 | "name": "Currency", |
| 126 | "description": _("Enable / disable currencies.") |
| 127 | }, |
| 128 | { |
| 129 | "type": "doctype", |
| 130 | "name": "Currency Exchange", |
| 131 | "description": _("Currency exchange rate master.") |
| 132 | }, |
| 133 | { |
| 134 | "type":"doctype", |
| 135 | "name": "Budget Distribution", |
| 136 | "description": _("Seasonality for setting budgets.") |
| 137 | }, |
| 138 | { |
| 139 | "type": "doctype", |
| 140 | "name":"Terms and Conditions", |
| 141 | "label": _("Terms and Conditions Template"), |
| 142 | "description": _("Template of terms or contract.") |
| 143 | }, |
| 144 | { |
| 145 | "type": "doctype", |
| 146 | "name":"Mode of Payment", |
| 147 | "description": _("e.g. Bank, Cash, Credit Card") |
| 148 | }, |
| 149 | { |
| 150 | "type": "doctype", |
| 151 | "name":"C-Form", |
| 152 | "description": _("C-Form records"), |
| 153 | "country": "India" |
| 154 | } |
| 155 | ] |
| 156 | }, |
| 157 | { |
| 158 | "label": _("Main Reports"), |
| 159 | "icon": "icon-table", |
| 160 | "items": [ |
| 161 | { |
| 162 | "type": "report", |
| 163 | "name":"General Ledger", |
| 164 | "doctype": "GL Entry", |
| 165 | "is_query_report": True, |
| 166 | }, |
| 167 | { |
| 168 | "type": "page", |
| 169 | "name": "trial-balance", |
| 170 | "label": _("Trial Balance"), |
| 171 | "icon": "icon-table" |
| 172 | }, |
| 173 | { |
Anand Doshi | f5794f1 | 2014-03-03 15:05:28 +0530 | [diff] [blame] | 174 | "type": "report", |
| 175 | "name": "Accounts Receivable", |
| 176 | "doctype": "Sales Invoice", |
| 177 | "is_query_report": True |
| 178 | }, |
| 179 | { |
| 180 | "type": "report", |
| 181 | "name": "Accounts Payable", |
| 182 | "doctype": "Purchase Invoice", |
| 183 | "is_query_report": True |
| 184 | }, |
| 185 | { |
| 186 | "type": "report", |
| 187 | "name": "Sales Register", |
| 188 | "doctype": "Sales Invoice", |
| 189 | "is_query_report": True |
| 190 | }, |
| 191 | { |
| 192 | "type": "report", |
| 193 | "name": "Purchase Register", |
| 194 | "doctype": "Purchase Invoice", |
| 195 | "is_query_report": True |
| 196 | }, |
| 197 | { |
| 198 | "type": "page", |
| 199 | "name": "financial-analytics", |
| 200 | "label": _("Financial Analytics"), |
| 201 | "icon": "icon-bar-chart", |
| 202 | }, |
| 203 | { |
| 204 | "type": "report", |
| 205 | "name": "Gross Profit", |
| 206 | "doctype": "Sales Invoice", |
| 207 | "is_query_report": True |
| 208 | }, |
| 209 | ] |
| 210 | }, |
| 211 | { |
| 212 | "label": _("Standard Reports"), |
| 213 | "icon": "icon-list", |
| 214 | "items": [ |
| 215 | { |
| 216 | "type": "report", |
| 217 | "name": "Bank Reconciliation Statement", |
| 218 | "is_query_report": True, |
| 219 | "doctype": "Journal Voucher" |
| 220 | }, |
| 221 | { |
| 222 | "type": "report", |
| 223 | "name": "Ordered Items To Be Billed", |
| 224 | "is_query_report": True, |
| 225 | "doctype": "Sales Invoice" |
| 226 | }, |
| 227 | { |
| 228 | "type": "report", |
| 229 | "name": "Delivered Items To Be Billed", |
| 230 | "is_query_report": True, |
| 231 | "doctype": "Sales Invoice" |
| 232 | }, |
| 233 | { |
| 234 | "type": "report", |
| 235 | "name": "Purchase Order Items To Be Billed", |
| 236 | "is_query_report": True, |
| 237 | "doctype": "Purchase Invoice" |
| 238 | }, |
| 239 | { |
| 240 | "type": "report", |
| 241 | "name": "Received Items To Be Billed", |
| 242 | "is_query_report": True, |
| 243 | "doctype": "Purchase Invoice" |
| 244 | }, |
| 245 | { |
| 246 | "type": "report", |
| 247 | "name": "Bank Clearance Summary", |
| 248 | "is_query_report": True, |
| 249 | "doctype": "Journal Voucher" |
| 250 | }, |
| 251 | { |
| 252 | "type": "report", |
| 253 | "name": "Payment Period Based On Invoice Date", |
| 254 | "is_query_report": True, |
| 255 | "doctype": "Journal Voucher" |
| 256 | }, |
| 257 | { |
| 258 | "type": "report", |
| 259 | "name": "Sales Partners Commission", |
| 260 | "is_query_report": True, |
| 261 | "doctype": "Sales Invoice" |
| 262 | }, |
| 263 | { |
| 264 | "type": "report", |
| 265 | "name": "Customer Account Head", |
| 266 | "is_query_report": True, |
| 267 | "doctype": "Account" |
| 268 | }, |
| 269 | { |
| 270 | "type": "report", |
| 271 | "name": "Supplier Account Head", |
| 272 | "is_query_report": True, |
| 273 | "doctype": "Account" |
| 274 | }, |
| 275 | { |
| 276 | "type": "report", |
| 277 | "name": "Item-wise Sales Register", |
| 278 | "is_query_report": True, |
| 279 | "doctype": "Sales Invoice" |
| 280 | }, |
| 281 | { |
| 282 | "type": "report", |
| 283 | "name": "Item-wise Purchase Register", |
| 284 | "is_query_report": True, |
| 285 | "doctype": "Purchase Invoice" |
| 286 | }, |
| 287 | { |
| 288 | "type": "report", |
| 289 | "name": "Budget Variance Report", |
| 290 | "is_query_report": True, |
| 291 | "doctype": "Cost Center" |
| 292 | }, |
| 293 | { |
| 294 | "type": "report", |
| 295 | "name": "Purchase Invoice Trends", |
| 296 | "is_query_report": True, |
| 297 | "doctype": "Purchase Invoice" |
| 298 | }, |
| 299 | { |
| 300 | "type": "report", |
| 301 | "name": "Sales Invoice Trends", |
| 302 | "is_query_report": True, |
| 303 | "doctype": "Sales Invoice" |
| 304 | }, |
| 305 | ] |
| 306 | }, |
Nabin Hait | 292a254 | 2014-05-01 15:46:37 +0530 | [diff] [blame] | 307 | ] |