[IMP]project_timesheet:added method for setting default type of invoicing
[odoo/odoo.git] / addons / base_setup / res_config.py
index 5031a60..0dc4a0f 100644 (file)
@@ -25,35 +25,54 @@ class base_config_settings(osv.osv_memory):
     _name = 'base.config.settings'
     _inherit = 'res.config.settings'
     _columns = {
-        'module_multi_company': fields.boolean('Multi Company',
+        'module_multi_company': fields.boolean('Manage multiple companies',
             help="""Work in multi-company environments, with appropriate security access between companies.
                 This installs the module multi_company."""),
-        'module_portal': fields.boolean('Portal',
-            help="""Define a portal for your customers or suppliers.  The portal is a group of
-                external users that has specific access rights and rules.
-                This installs the module portal."""),
-        'module_share': fields.boolean('Share',
-            help="""Share OpenERP documents (records) with external users.
-                This installs the module share."""),
+        'module_share': fields.boolean('Allow documents sharing',
+            help="""Share or embbed any screen of openerp."""),
+        'module_portal': fields.boolean('Activate the customer/supplier portal',
+            help="""Give access your customers and suppliers to their documents."""),
+        'module_auth_anonymous': fields.boolean('Activate the public portal',
+            help="""Enable the public part of openerp, openerp becomes a public website."""),
+        'module_auth_oauth': fields.boolean('Use external authentication providers, sign in with google, facebook, ...'),
+        'module_base_import': fields.boolean("Allow users to import data from CSV files"),
     }
 
+    def open_company(self, cr, uid, ids, context=None):
+        user = self.pool.get('res.users').browse(cr, uid, uid, context)
+        return {
+            'type': 'ir.actions.act_window',
+            'name': 'Your Company',
+            'view_type': 'form',
+            'view_mode': 'form',
+            'res_model': 'res.company',
+            'res_id': user.company_id.id,
+            'target': 'current',
+        }
 
-
-class report_config_settings(osv.osv_memory):
-    _name = 'report.config.settings'
+# Preferences wizard for Sales & CRM.
+# It is defined here because it is inherited independently in modules sale, crm,
+# plugin_outlook and plugin_thunderbird.
+class sale_config_settings(osv.osv_memory):
+    _name = 'sale.config.settings'
     _inherit = 'res.config.settings'
     _columns = {
-        'module_base_report_designer': fields.boolean('Customize your OpenERP Reports with OpenOffice',
-            help ="""Import/export OpenERP reports that you can modify with OpenOffice.
-                New and modified reports can be uploaded to OpenERP thanks to the provided OpenOffice plugin.
-                This installs the module base_report_designer."""),
-        'module_report_webkit': fields.boolean('Design OpenERP Reports in HTML',
-            help ="""Design OpenERP reports with a report engine based on the WebKit library (http://www.webkit.org).
-                Reports are defined in HTML and the report generation is customized with CSS.
-                This installs the module report_webkit."""),
-        'module_report_webkit_sample': fields.boolean('Samples of HTML Reports',
-            help ="""Install a sample invoice report defined in HTML.
-                This installs the module report_webkit_sample."""),
+        'module_web_linkedin': fields.boolean('Get contacts automatically from linkedIn',
+            help="""When you create a new contact (person or company), you will be able to load all the data from LinkedIn (photos, address, etc)."""),
+        'module_crm': fields.boolean('CRM'),
+        'module_plugin_thunderbird': fields.boolean('Enable Thunderbird plugin',
+            help="""The plugin allows you archive email and its attachments to the selected
+                OpenERP objects. You can select a partner, or a lead and
+                attach the selected mail as a .eml file in
+                the attachment of a selected record. You can create documents for CRM Lead,
+                Partner from the selected emails.
+                This installs the module plugin_thunderbird."""),
+        'module_plugin_outlook': fields.boolean('Enable Outlook plugin',
+            help="""The Outlook plugin allows you to select an object that you would like to add
+                to your email and its attachments from MS Outlook. You can select a partner,
+                or a lead object and archive a selected
+                email into an OpenERP mail message with attachments.
+                This installs the module plugin_outlook."""),
     }
 
 # vim:expandtab:smartindent:tabstop=4:softtabstop=4:shiftwidth=4: