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.
26 lines
1.0 KiB
26 lines
1.0 KiB
# -*- encoding: utf-8 -*-
|
|
##############################################################################
|
|
# For copyright and license notices, see __openerp__.py file in root directory
|
|
##############################################################################
|
|
from openerp import models, fields
|
|
|
|
|
|
class CrmLead(models.Model):
|
|
_inherit = 'crm.lead'
|
|
|
|
function = fields.Char(string="Detailed job position")
|
|
job_position = fields.Many2one(comodel_name='crm.job_position',
|
|
string="Job position")
|
|
|
|
def _lead_create_contact(self, cr, uid, lead, name, is_company,
|
|
parent_id=False, context=None):
|
|
"""
|
|
Propagate job_position to created partner.
|
|
"""
|
|
partner_id = super(CrmLead, self)._lead_create_contact(
|
|
cr, uid, lead, name, is_company, parent_id=parent_id,
|
|
context=context)
|
|
self.pool['res.partner'].write(
|
|
cr, uid, partner_id, {'job_position': lead.job_position.id},
|
|
context=context)
|
|
return partner_id
|