From e3ed96e04b75240362331bc431ff2f3836cf2575 Mon Sep 17 00:00:00 2001 From: Fabien Pinckaers Date: Sun, 22 Apr 2007 21:54:11 +0000 Subject: [PATCH] Better descriptions of modules bzr revid: fp@tinyerp.com-7c671e556c8e854bf9239e105eb831de9afb0246 --- addons/hr_expense/__terp__.py | 15 ++++++++++++++- addons/hr_timesheet/__terp__.py | 12 +++++++++++- addons/hr_timesheet_sheet/__terp__.py | 20 +++++++++++++++++++- addons/mrp/__terp__.py | 27 ++++++++++++++++++++++++++- addons/product/__terp__.py | 9 ++++++++- 5 files changed, 78 insertions(+), 5 deletions(-) diff --git a/addons/hr_expense/__terp__.py b/addons/hr_expense/__terp__.py index fc50f607b2a..23d0c61e490 100644 --- a/addons/hr_expense/__terp__.py +++ b/addons/hr_expense/__terp__.py @@ -5,7 +5,20 @@ "category" : "Generic Modules/Human Resources", "website" : "http://tinyerp.com/module_hr.html", "depends" : ["hr","account", "account_tax_include",], - "module": "This module manage the whole expenses flow. It also uses the cost accounting to put costs on analytic accounts.", + "description": """ + This module aims to manage employee's expenses. + + The whole workflow is implemented: + * Draft expense + * Confirmation of the sheet by the employee + * Validation by his manager + * Validation by the accountant and invoice creation + * Payment of the invoice to the employee + + This module also use the analytic accounting and is compatible with + the invoice on timesheet module so that you will be able to automatcally + re-invoice your customer's expenses if your work by project. + """, "init_xml" : [], "demo_xml" : [], #"demo_xml" : ["hr_expense_demo.xml", "hr.expense.expense.csv"], diff --git a/addons/hr_timesheet/__terp__.py b/addons/hr_timesheet/__terp__.py index 617a7152031..68393009283 100644 --- a/addons/hr_timesheet/__terp__.py +++ b/addons/hr_timesheet/__terp__.py @@ -4,7 +4,17 @@ "author" : "Tiny", "category" : "Generic Modules/Human Resources", "website" : "http://tinyerp.com/module_hr.html", - "description": "Timesheet system, completly integrated with the cost accounting module. It allows you to set up a management by affair.", + "description": """ + This module implement a timesheet system. Each employee can encode and + track their time spent on the different projects. A project is an + analytic account and the time spent on a project generate costs on + the analytic account. + + Lots of reporting on time and employee tracking are provided. + + It is completly integrated with the cost accounting module. It allows you + to set up a management by affair. + """, "depends" : ["account", "hr", "base",], "init_xml" : ["hr_timesheet_data.xml"], "demo_xml" : ["hr_timesheet_demo.xml",], diff --git a/addons/hr_timesheet_sheet/__terp__.py b/addons/hr_timesheet_sheet/__terp__.py index 5b0bd62b527..c49cff23c92 100644 --- a/addons/hr_timesheet_sheet/__terp__.py +++ b/addons/hr_timesheet_sheet/__terp__.py @@ -4,7 +4,25 @@ "author" : "Tiny", "category" : "Generic Modules/Human Resources", "website" : "http://tinyerp.com/module_hr.html", - "description": "Timesheet by sheets", + "description": """ + This module help you easily encode and validate timesheet and attendances + within the same view. The upper part of the view is for attendances and + track (sign in/sign out) events. The lower part is for timesheet. + + Others tabs contains statistics views to help you analyse your + time or the time of your team: + * Time spent by day (with attendances) + * Time spent by project + + This module also implement a complete timesheet validation process: + * Draft sheet + * Confirmation at the end of the period by the employee + * Validation by the project manager + + The validation can be configured in te company: + * Period size (day, week, month, year) + * Maximal difference between timesheet and attendances + """, "depends" : ["hr_timesheet", "hr_timesheet_project", "hr_timesheet_invoice"], "init_xml" : [], "demo_xml" : ["hr_timesheet_sheet_demo.xml",], diff --git a/addons/mrp/__terp__.py b/addons/mrp/__terp__.py index 1ac18654085..75b39ab9248 100644 --- a/addons/mrp/__terp__.py +++ b/addons/mrp/__terp__.py @@ -5,7 +5,32 @@ "website" : "http://tinyerp.com/module_mrp.html", "category" : "Generic Modules/Production", "depends" : ["stock", "hr", "purchase", "product"], - "description": "Manage the manufacturing process: procurement, scheduler computation, bill of materials, routings, procurements, production orders, workcenters, eso.", + "description": """ + This is the base module to manage the manufacturing process in Tiny ERP. + + Features: + * Make to Stock / Make to Order (by line) + * Multi-level BoMs, no limit + * Multi-level routing, no limit + * Routing and workcenter integrated with analytic accounting + * Scheduler computation periodically / Just In Time module + * Multi-pos, multi-warehouse + * Different reordering policies + * Cost method by product: standard price, average price + * Easy analyse of troubles or needs + * Very flexible + + It support complete integration and plannification of stockable goods, + consumable of services. Services are completly integrated with the rest + of the software. For instance, you can set up a sub-contracting service + in a BoM to automatically purchase on order the assembly of your production. + + Reports provided by this module: + * Bill of Material structure and components + * Load forecast on workcenters + * Print a production order + * Stock forecasts + """, "init_xml" : [], "demo_xml" : ["mrp_demo.xml","mrp_order_point.xml"], "update_xml" : ["mrp_workflow.xml", "mrp_data.xml","mrp_view.xml", "mrp_wizard.xml", "mrp_report.xml"], diff --git a/addons/product/__terp__.py b/addons/product/__terp__.py index 5d76f128a2b..d86db6c5e72 100644 --- a/addons/product/__terp__.py +++ b/addons/product/__terp__.py @@ -6,7 +6,14 @@ "depends" : ["base"], "init_xml" : [], "demo_xml" : ["product_demo.xml"], - "description": "Manage products and pricelists", + "description": """ + This is the base module to manage products and pricelists in Tiny ERP. + + To detail: products + To detail: pricelists + + Reports: ... + """, "update_xml" : ["product_data.xml","product_report.xml", "product_wizard.xml","product_view.xml", "pricelist_view.xml"], "active": False, "installable": True