[IMP]project_timesheet:added method for setting default type of invoicing
[odoo/odoo.git] / addons / base_setup / res_config.py
index d18fda4..0dc4a0f 100644 (file)
@@ -25,30 +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('Activate Customer Portal',
-            help="""The portal will give access to a series of documents for your  customers; his quotations, his invoices, his projects, etc."""),
-        'module_share': fields.boolean('Allow Sharing Resources to External Users',
-            help="""As an example, you will be able to share a project or some tasks to  your customers, or quotes/sales to several persons at your customer  company, or your agenda availabilities to your contacts."""),
+        '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):
-        if context is None:
-            context = {}
-            
-        company_obj = self.pool.get('res.company')        
-        company_id = company_obj.browse(cr, uid, uid, context=context).id
-                            
+        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,tree',
+            'view_mode': 'form',
             'res_model': 'res.company',
-            'res_id': company_id,
-            'view_id': False,
-            'type': 'ir.actions.act_window',
-         }
-         
+            'res_id': user.company_id.id,
+            'target': 'current',
+        }
+
+# 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_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: