[TYPO] Set the right category for the Point Of Sale
[odoo/odoo.git] / addons / crm / res_config.py
1 # -*- coding: utf-8 -*-
2 ##############################################################################
3 #
4 #    OpenERP, Open Source Business Applications
5 #    Copyright (C) 2004-2012 OpenERP S.A. (<http://openerp.com>).
6 #
7 #    This program is free software: you can redistribute it and/or modify
8 #    it under the terms of the GNU Affero General Public License as
9 #    published by the Free Software Foundation, either version 3 of the
10 #    License, or (at your option) any later version.
11 #
12 #    This program is distributed in the hope that it will be useful,
13 #    but WITHOUT ANY WARRANTY; without even the implied warranty of
14 #    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
15 #    GNU Affero General Public License for more details.
16 #
17 #    You should have received a copy of the GNU Affero General Public License
18 #    along with this program.  If not, see <http://www.gnu.org/licenses/>.
19 #
20 ##############################################################################
21
22 from osv import fields, osv
23
24 class crm_configuration(osv.osv_memory):
25     _name = 'sale.config.settings'
26     _inherit = ['sale.config.settings', 'fetchmail.config.settings']
27
28     _columns = {
29         'fetchmail_lead': fields.boolean("Create Leads from Incoming Mails",
30             fetchmail_model='crm.lead', fetchmail_name='Incoming Leads',
31             help="""Allows you to configure your incoming mail server, and create leads from incoming emails."""),
32         'module_crm_caldav': fields.boolean("Caldav Synchronization",
33             help="""Use protocol caldav to synchronize meetings with other calendar applications (like Sunbird).
34                 This installs the module crm_caldav."""),
35         'module_import_sugarcrm': fields.boolean("SugarCRM Import",
36             help="""Import SugarCRM leads, opportunities, users, accounts, contacts, employees, meetings, phonecalls, emails, project and project tasks data.
37                 This installs the module import_sugarcrm."""),
38         'module_import_google': fields.boolean("Google Import",
39             help="""Import google contact in partner address and add google calendar events details in Meeting.
40                 This installs the module import_google."""),
41         'module_wiki_sale_faq': fields.boolean("Install a Sales FAQ",
42             help="""This provides demo data, thereby creating a Wiki Group and a Wiki Page for Wiki Sale FAQ.
43                 This installs the module wiki_sale_faq."""),
44         'module_google_map': fields.boolean("Google Maps on Customer",
45             help="""Locate customers on Google Map.
46                 This installs the module google_map."""),
47     }
48
49 # vim:expandtab:smartindent:tabstop=4:softtabstop=4:shiftwidth=4: