Rushabh Mehta | 793ba6b | 2014-02-14 15:47:51 +0530 | [diff] [blame] | 1 | from frappe import _ |
Rushabh Mehta | c4ec534 | 2014-02-07 19:04:19 +0530 | [diff] [blame] | 2 | |
| 3 | data = [ |
| 4 | { |
| 5 | "label": _("Customize"), |
| 6 | "icon": "icon-glass", |
| 7 | "items": [ |
| 8 | { |
| 9 | "type": "doctype", |
| 10 | "name": "Features Setup", |
| 11 | "description": _("Show / Hide features like Serial Nos, POS etc.") |
| 12 | }, |
| 13 | { |
| 14 | "type": "doctype", |
| 15 | "name": "Authorization Rule", |
| 16 | "description": _("Create rules to restrict transactions based on values.") |
| 17 | }, |
| 18 | { |
| 19 | "type": "doctype", |
| 20 | "name": "Notification Control", |
| 21 | "label": _("Email Notifications"), |
| 22 | "description": _("Automatically compose message on submission of transactions.") |
| 23 | } |
| 24 | ] |
| 25 | }, |
| 26 | { |
| 27 | "label": _("Email"), |
| 28 | "icon": "icon-envelope", |
| 29 | "items": [ |
| 30 | { |
| 31 | "type": "doctype", |
| 32 | "name": "Email Digest", |
| 33 | "description": _("Create and manage daily, weekly and monthly email digests.") |
| 34 | }, |
| 35 | { |
| 36 | "type": "doctype", |
| 37 | "name": "Support Email Settings", |
| 38 | "description": _("Setup incoming server for support email id. (e.g. support@example.com)") |
| 39 | }, |
| 40 | { |
| 41 | "type": "doctype", |
| 42 | "name": "Sales Email Settings", |
| 43 | "description": _("Setup incoming server for sales email id. (e.g. sales@example.com)") |
| 44 | }, |
| 45 | { |
| 46 | "type": "doctype", |
| 47 | "name": "Jobs Email Settings", |
| 48 | "description": _("Setup incoming server for jobs email id. (e.g. jobs@example.com)") |
| 49 | }, |
| 50 | ] |
| 51 | }, |
| 52 | { |
| 53 | "label": _("Masters"), |
| 54 | "icon": "icon-star", |
| 55 | "items": [ |
| 56 | { |
| 57 | "type": "doctype", |
| 58 | "name": "Company", |
| 59 | "description": _("Company (not Customer or Supplier) master.") |
| 60 | }, |
| 61 | { |
| 62 | "type": "doctype", |
| 63 | "name": "Item", |
| 64 | "description": _("Item master.") |
| 65 | }, |
| 66 | { |
| 67 | "type": "doctype", |
| 68 | "name": "Customer", |
| 69 | "description": _("Customer master.") |
| 70 | }, |
| 71 | { |
| 72 | "type": "doctype", |
| 73 | "name": "Supplier", |
| 74 | "description": _("Supplier master.") |
| 75 | }, |
| 76 | { |
| 77 | "type": "doctype", |
| 78 | "name": "Contact", |
| 79 | "description": _("Contact master.") |
| 80 | }, |
| 81 | { |
| 82 | "type": "doctype", |
| 83 | "name": "Address", |
| 84 | "description": _("Address master.") |
| 85 | }, |
| 86 | ] |
| 87 | }, |
| 88 | { |
| 89 | "label": _("Accounts"), |
| 90 | "icon": "icon-money", |
| 91 | "items": [ |
| 92 | { |
| 93 | "type": "page", |
| 94 | "name": "Accounts Browser", |
| 95 | "icon": "icon-sitemap", |
| 96 | "label": _("Chart of Accounts"), |
| 97 | "link": "Accounts Browser/Account", |
| 98 | "description": _("Tree of finanial accounts.") |
| 99 | }, |
| 100 | { |
| 101 | "type": "page", |
| 102 | "name": "Accounts Browser", |
| 103 | "icon": "icon-sitemap", |
| 104 | "label": _("Chart of Cost Centers"), |
| 105 | "link": "Accounts Browser/Cost Center", |
| 106 | "description": _("Tree of finanial Cost Centers.") |
| 107 | }, |
| 108 | { |
| 109 | "type": "doctype", |
| 110 | "name": "Accounts Settings", |
| 111 | "description": _("Default settings for accounting transactions.") |
| 112 | }, |
| 113 | { |
| 114 | "type": "doctype", |
| 115 | "name": "Fiscal Year", |
| 116 | "description": _("Financial / accounting year.") |
| 117 | }, |
| 118 | { |
| 119 | "type": "doctype", |
| 120 | "name": "Sales Taxes and Charges Master", |
| 121 | "description": _("Tax template for selling transactions.") |
| 122 | }, |
| 123 | { |
| 124 | "type": "doctype", |
| 125 | "name": "Purchase Taxes and Charges Master", |
| 126 | "description": _("Tax template for buying transactions.") |
| 127 | }, |
| 128 | { |
| 129 | "type": "doctype", |
| 130 | "name": "Currency", |
| 131 | "description": _("Enable / disable currencies.") |
| 132 | }, |
| 133 | { |
| 134 | "type": "doctype", |
| 135 | "name": "Shipping Rules", |
| 136 | "description": _("Rules for adding shipping costs.") |
| 137 | }, |
| 138 | { |
| 139 | "type": "doctype", |
| 140 | "name": "Currency Exchange", |
| 141 | "description": _("Currency exchange rate master.") |
| 142 | }, |
| 143 | ] |
| 144 | }, |
| 145 | { |
| 146 | "label": _("Stock"), |
| 147 | "icon": "icon-truck", |
| 148 | "items": [ |
| 149 | { |
| 150 | "type": "page", |
| 151 | "name": "Sales Browser", |
| 152 | "icon": "icon-sitemap", |
| 153 | "label": _("Item Group Tree"), |
| 154 | "link": "Sales Browser/Item Group", |
| 155 | "description": _("Tree of Item Groups.") |
| 156 | }, |
| 157 | { |
| 158 | "type": "doctype", |
| 159 | "name": "Stock Settings", |
| 160 | "description": _("Default settings for stock transactions.") |
| 161 | }, |
| 162 | { |
| 163 | "type": "doctype", |
| 164 | "name": "Warehouse", |
| 165 | "description": _("Warehouses.") |
| 166 | }, |
| 167 | { |
| 168 | "type": "doctype", |
| 169 | "name": "Brand", |
| 170 | "description": _("Brand master.") |
| 171 | }, |
| 172 | { |
| 173 | "type": "doctype", |
| 174 | "name": "Price List", |
| 175 | "description": _("Price List master.") |
| 176 | }, |
| 177 | { |
| 178 | "type": "doctype", |
| 179 | "name": "Stock Reconciliation", |
| 180 | "description": _("Upload actual stock for a warehouse.") |
| 181 | }, |
| 182 | ] |
| 183 | }, |
| 184 | { |
| 185 | "label": _("Selling"), |
| 186 | "icon": "icon-tag", |
| 187 | "items": [ |
| 188 | { |
| 189 | "type": "doctype", |
| 190 | "name": "Selling Settings", |
| 191 | "description": _("Default settings for selling transactions.") |
| 192 | }, |
| 193 | { |
| 194 | "type": "page", |
| 195 | "label": _("Customer Group"), |
| 196 | "name": "Sales Browser", |
| 197 | "icon": "icon-sitemap", |
| 198 | "link": "Sales Browser/Customer Group", |
| 199 | "description": _("Manage Customer Group Tree.") |
| 200 | }, |
| 201 | { |
| 202 | "type": "page", |
| 203 | "label": _("Territory"), |
| 204 | "name": "Sales Browser", |
| 205 | "icon": "icon-sitemap", |
| 206 | "link": "Sales Browser/Territory", |
| 207 | "description": _("Manage Territory Tree.") |
| 208 | }, |
| 209 | { |
| 210 | "type": "page", |
| 211 | "label": _("Sales Person"), |
| 212 | "name": "Sales Browser", |
| 213 | "icon": "icon-sitemap", |
| 214 | "link": "Sales Browser/Sales Person", |
| 215 | "description": _("Manage Sales Person Tree.") |
| 216 | }, |
| 217 | ] |
| 218 | }, |
| 219 | { |
| 220 | "label": _("Buying"), |
| 221 | "icon": "icon-shopping-cart", |
| 222 | "items": [ |
| 223 | { |
| 224 | "type": "doctype", |
| 225 | "name": "Buying Settings", |
| 226 | "description": _("Default settings for buying transactions.") |
| 227 | }, |
| 228 | { |
| 229 | "type": "doctype", |
| 230 | "name": "Supplier Type", |
| 231 | "description": _("Supplier Type master.") |
| 232 | }, |
| 233 | ] |
| 234 | }, |
| 235 | { |
| 236 | "label": _("Human Resources"), |
| 237 | "icon": "icon-group", |
| 238 | "items": [ |
| 239 | { |
| 240 | "type": "doctype", |
| 241 | "name": "Employee", |
| 242 | "description": _("Employee master.") |
| 243 | }, |
| 244 | { |
| 245 | "type": "doctype", |
| 246 | "name": "Employment Type", |
| 247 | "description": _("Types of employment (permanent, contract, intern etc.).") |
| 248 | }, |
| 249 | { |
| 250 | "type": "doctype", |
| 251 | "name": "Branch", |
| 252 | "description": _("Organization branch master.") |
| 253 | }, |
| 254 | { |
| 255 | "type": "doctype", |
| 256 | "name": "Department", |
| 257 | "description": _("Organization unit (department) master.") |
| 258 | }, |
| 259 | { |
| 260 | "type": "doctype", |
| 261 | "name": "Grade", |
| 262 | "description": _("Employee grade.") |
| 263 | }, |
| 264 | { |
| 265 | "type": "doctype", |
| 266 | "name": "Designation", |
| 267 | "description": _("Employee designation (e.g. CEO, Director etc.).") |
| 268 | }, |
| 269 | { |
| 270 | "type": "doctype", |
| 271 | "name": "Holiday List", |
| 272 | "description": _("Holiday master.") |
| 273 | }, |
| 274 | { |
| 275 | "type": "doctype", |
| 276 | "name": "Salary Structure", |
| 277 | "description": _("Salary template master.") |
| 278 | }, |
| 279 | { |
| 280 | "type": "doctype", |
| 281 | "name": "Appraisal Template", |
| 282 | "description": _("Template for performance appraisals.") |
| 283 | }, |
| 284 | { |
| 285 | "type": "doctype", |
| 286 | "name": "Leave Allocation", |
| 287 | "description": _("Allocate leaves for a period.") |
| 288 | }, |
| 289 | ] |
| 290 | }, |
| 291 | ] |