opportunity.py 205 B

12345678
  1. # -*- coding: utf-8 -*-
  2. from openerp import fields, models
  3. class opportunity(models.Model):
  4. _inherit = 'crm.lead'
  5. phonecall_ids = fields.One2many('crm.phonecall','opportunity_id', 'Llamadas', )