From 08a6de6b4119e308f6f6255eea6f41ebd8d7ccd1 Mon Sep 17 00:00:00 2001 From: Prateeksha Singh Date: Tue, 12 Feb 2019 07:41:52 +0530 Subject: [PATCH] fix(modules): shorten descriptions --- erpnext/config/desktop.py | 30 +++++++++---------- .../operations/install_fixtures.py | 6 ++-- 2 files changed, 18 insertions(+), 18 deletions(-) diff --git a/erpnext/config/desktop.py b/erpnext/config/desktop.py index cb88cf34c5..5d4dfa1687 100644 --- a/erpnext/config/desktop.py +++ b/erpnext/config/desktop.py @@ -24,7 +24,7 @@ def get_data(): "icon": "octicon octicon-repo", "type": "module", "hidden": 1, - "description": "Accounts, billing, finances and payments; with cost center, taxes and budgeting." + "description": "Accounts, billing, payments, cost center and budgeting." }, { "module_name": "Selling", @@ -34,7 +34,7 @@ def get_data(): "icon": "octicon octicon-tag", "type": "module", "hidden": 1, - "description": "All things Sales, Customer and Products." + "description": "Sales orders, quotations, customers and items." }, { "module_name": "Buying", @@ -44,7 +44,7 @@ def get_data(): "icon": "octicon octicon-briefcase", "type": "module", "hidden": 1, - "description": "Purchasing, Suppliers and Products." + "description": "Purchasing, suppliers, material requests, and items." }, { "module_name": "Stock", @@ -54,7 +54,7 @@ def get_data(): "icon": "octicon octicon-package", "type": "module", "hidden": 1, - "description": "Track Stock Transactions, Reports, and Serialized Items and Batches." + "description": "Stock transactions, reports, serial numbers and batches." }, { "module_name": "Assets", @@ -64,7 +64,7 @@ def get_data(): "icon": "octicon octicon-database", "hidden": 1, "type": "module", - "description": "Asset Maintainance and Tools." + "description": "Asset movement, maintainance and tools." }, { "module_name": "Projects", @@ -84,7 +84,7 @@ def get_data(): "icon": "octicon octicon-broadcast", "type": "module", "hidden": 1, - "description": "Everything in your sales pipeline, from Leads and Opportunities to Customers." + "description": "Sales pipeline, leads, opportunities and customers." }, { "module_name": "Help Desk", @@ -104,7 +104,7 @@ def get_data(): "icon": "octicon octicon-organization", "type": "module", "hidden": 1, - "description": "Employee Lifecycle, Payroll, Shifts and Leaves." + "description": "Employees, attendance, payroll, leaves and shifts." }, { "module_name": "Quality Management", @@ -127,7 +127,7 @@ def get_data(): "icon": "octicon octicon-tools", "type": "module", "hidden": 1, - "description": "Streamline your production with BOMS, Work Orders and Timesheets." + "description": "BOMS, work orders, operations, and timesheets." }, { "module_name": "Retail", @@ -137,7 +137,7 @@ def get_data(): "icon": "octicon octicon-credit-card", "type": "module", "hidden": 1, - "description": "Point of Sale, Cashier Closing and Loyalty Programs." + "description": "Point of Sale and cashier closing." }, { "module_name": "Education", @@ -147,7 +147,7 @@ def get_data(): "icon": "octicon octicon-mortar-board", "type": "module", "hidden": 1, - "description": "Manage Student Admissions, Fees, Subjects and Score Reports." + "description": "Student admissions, fees, courses and scores." }, { @@ -158,7 +158,7 @@ def get_data(): "icon": "fa fa-heartbeat", "type": "module", "hidden": 1, - "description": "Patients appointments, procedures and tests, with diagnosis reports and drug prescriptions." + "description": "Patient appointments, procedures and tests." }, { "module_name": "Agriculture", @@ -168,7 +168,7 @@ def get_data(): "icon": "octicon octicon-globe", "type": "module", "hidden": 1, - "description": "Crop Cycles, Land Areas and Soil and Plant Analysis." + "description": "Crop cycles, land areas, soil and plant analysis." }, { "module_name": "Hotels", @@ -178,7 +178,7 @@ def get_data(): "icon": "fa fa-bed", "type": "module", "hidden": 1, - "description": "Manage Hotel Rooms, Pricing, Reservation and Amenities." + "description": "Hotel rooms, pricing, reservation and amenities." }, { @@ -189,7 +189,7 @@ def get_data(): "icon": "octicon octicon-heart", "type": "module", "hidden": 1, - "description": "Make benefiting others easier with Volunteers, Memberships, Grants and Chapters." + "description": "Volunteers, memberships, grants and chapters." }, { "module_name": "Restaurant", @@ -223,6 +223,6 @@ def get_data(): "link": '#marketplace/home', "color": '#FF4136', 'standard': 1, - "description": "Publish items to other ERPNext users and start a conversation." + "description": "Publish items to other ERPNext users." }, ] diff --git a/erpnext/setup/setup_wizard/operations/install_fixtures.py b/erpnext/setup/setup_wizard/operations/install_fixtures.py index 6009bccb4d..d21de0ef36 100644 --- a/erpnext/setup/setup_wizard/operations/install_fixtures.py +++ b/erpnext/setup/setup_wizard/operations/install_fixtures.py @@ -252,7 +252,7 @@ def install(country=None): from erpnext.buying.doctype.supplier_scorecard.supplier_scorecard import make_default_records make_default_records() - make_records(records, True) + make_records(records) set_more_defaults() @@ -366,7 +366,7 @@ def install_company(args): } ] - make_records(records, True) + make_records(records) def install_post_company_fixtures(args=None): @@ -474,7 +474,7 @@ def install_defaults(args=None): }, ] - make_records(records, True) + make_records(records) def get_fy_details(fy_start_date, fy_end_date):