[IMP] karma retag checks
[odoo/odoo.git] / addons / marketing / res_config.py
1 # -*- coding: utf-8 -*-
2
3 from openerp.osv import fields, osv
4
5
6 class marketing_config_settings(osv.TransientModel):
7     _name = 'marketing.config.settings'
8     _inherit = 'res.config.settings'
9     _columns = {
10         'module_mass_mailing': fields.boolean(
11             'Mass Mailing',
12             help='Provide a way to perform mass mailings.\n'
13                  '-This installs the module mass_mailing.'),
14         'module_marketing_campaign': fields.boolean(
15             'Marketing campaigns',
16             help='Provides leads automation through marketing campaigns. '
17                  'Campaigns can in fact be defined on any resource, not just CRM leads.\n'
18                  '-This installs the module marketing_campaign.'),
19     }