hooks.py 644 B

1234567891011121314151617181920
  1. # -*- coding: utf-8 -*-
  2. # © 2016 Antonio Espinosa - <antonio.espinosa@tecnativa.com>
  3. # License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl.html).
  4. import logging
  5. try:
  6. from openerp.addons.mail_tracking.hooks import column_add_with_value
  7. except ImportError:
  8. column_add_with_value = False
  9. _logger = logging.getLogger(__name__)
  10. def pre_init_hook(cr):
  11. if column_add_with_value:
  12. _logger.info("Creating mail.mass_mailing.contact.email_score column "
  13. "with value 50.0")
  14. column_add_with_value(
  15. cr, 'mail_mass_mailing_contact', 'email_score', 'double precision',
  16. 50.0)