[rem] redundant terp metadata

bzr revid: xmo@tinyerp.com-20100124173404-p19vujspufadriaf
This commit is contained in:
Xavier Morel 2010-01-24 18:34:04 +01:00
parent d91a35a980
commit 0e13cdac8a
3 changed files with 23 additions and 9 deletions

View File

@ -16,7 +16,12 @@
<xpath expr="//label[@string='description']"
position="attributes">
<attribute name="string"
></attribute>
>Now that OpenERP is installed, we have selected a set
of applications tailored towards common needs, as well as sets of applications
for more specific types or groups of businesse (the vertical modules).
If you don't think you need any of these right now, don't worry you can
easily install them later on..</attribute>
</xpath>
<group colspan="8">
<separator string="Generic Modules" colspan="4"/>

View File

@ -50,11 +50,23 @@ class base_setup_installer(osv.osv_memory):
}
_columns = {
# Generic modules
'crm':fields.boolean('Customer Relationship Management'),
'sale':fields.boolean('Sales Management'),
'project':fields.boolean('Project Management'),
'knowledge':fields.boolean('Knowledge Management'),
'stock':fields.boolean('Warehouse Management'),
'crm':fields.boolean('Customer Relationship Management',
help="Helps you track and manage relations with customers such as"
" leads, requests or issues. Can automatically send "
"reminders, escalate requests or trigger business-specific "
"actions based on standard events."),
'sale':fields.boolean('Sales Management',
help="Helps you handle your quotations, sale orders and invoicing"
"."),
'project':fields.boolean('Project Management',
help="Helps you manage your projects and tasks by tracking them, "
"generating planings, etc..."),
'knowledge':fields.boolean('Knowledge Management',
help="Lets you install addons geared towards sharing knowledge "
"with and between your employees."),
'stock':fields.boolean('Warehouse Management',
help="Helps you manage your stocks and stocks locations, as well "
"as the flow of stock between warehouses."),
'mrp':fields.boolean('Manufacturing'),
'account':fields.boolean('Financial & Accounting'),
'charts':fields.selection(_get_charts, 'Chart of Accounts'),

View File

@ -54,9 +54,6 @@
* Print a production order
* Stock forecasts
""",
'author': 'Tiny',
'website': 'http://www.openerp.com',
'depends': ['stock', 'hr', 'purchase', 'product', 'process'],
'init_xml': [],
'update_xml': [
'security/mrp_security.xml',