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?
Odoo is the world's easiest all-in-one management software.
It includes hundreds of business apps:
- CRM
- e-Commerce
- Księgowość
- Zapasy
- PoS
- Project
- MRP
To pytanie dostało ostrzeżenie
1
Odpowiedz
761
Widoki
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
Podoba Ci się ta dyskusja? Dołącz do niej!
Stwórz konto dzisiaj, aby cieszyć się ekskluzywnymi funkcjami i wchodzić w interakcje z naszą wspaniałą społecznością!
Zarejestruj sięPowiązane posty | Odpowiedzi | Widoki | Czynność | |
---|---|---|---|---|
|
2
kwi 25
|
2298 | ||
|
1
mar 25
|
1270 | ||
|
2
mar 25
|
1325 | ||
|
1
lip 24
|
1423 | ||
|
0
mar 24
|
1832 |