Перейти к содержимому
Меню
Чтобы взаимодействовать с сообществом, необходимо зарегистрироваться.
Этот вопрос был отмечен
1 Ответить
801 Представления

When I import a list in events as attendees, they are not converted into leads, even though I have set up a Lead Generation Rule. If I create a new attendee directly in Odoo, the rule does work. How can I automatically convert imported attendees into leads?

Аватар
Отменить
Лучший ответ

Hello Wim Peeters,

According to Native odoo behaviour, 

event_lead_rule_skip = True means skip lead creation

Solution would be overwrite following method to allow import process to create lead.


class EventRegistration(models.Model):
_inherit = 'event.registration'

​def _load_records_create(self, values):
""" In import mode: do not run rules those are intended to run when customers
buy tickets, not when bootstrapping a database. """
return super(EventRegistration, self.with_context(event_lead_rule_skip=False))._load_records_create(values)

Thanks & Regards,

CandidRoot Solutions Pvt. Ltd.

Mobile: (+91) 8849036209

Email: info@candidroot.com

Аватар
Отменить
Related Posts Ответы Просмотры Активность
2
апр. 25
2418
1
мар. 25
1346
2
мар. 25
1426
1
июл. 24
1464
0
мар. 24
1905