You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
20 lines
644 B
20 lines
644 B
# -*- coding: utf-8 -*-
|
|
# © 2016 Antonio Espinosa - <antonio.espinosa@tecnativa.com>
|
|
# License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl.html).
|
|
|
|
import logging
|
|
try:
|
|
from openerp.addons.mail_tracking.hooks import column_add_with_value
|
|
except ImportError:
|
|
column_add_with_value = False
|
|
|
|
_logger = logging.getLogger(__name__)
|
|
|
|
|
|
def pre_init_hook(cr):
|
|
if column_add_with_value:
|
|
_logger.info("Creating mail.mass_mailing.contact.email_score column "
|
|
"with value 50.0")
|
|
column_add_with_value(
|
|
cr, 'mail_mass_mailing_contact', 'email_score', 'double precision',
|
|
50.0)
|