i'm unable to open portal side and have the below error.
TypeError: _prepare_home_portal_values() takes 1 positional argument but 2 were given
Thanks in Advance
Odoo is the world's easiest all-in-one management software.
It includes hundreds of business apps:
i'm unable to open portal side and have the below error.
TypeError: _prepare_home_portal_values() takes 1 positional argument but 2 were given
Thanks in Advance
Hi the _prepare_home_portal_values method in Odoo13 doesn't have only self argument but in Odoo 15 it has two self and counters.
See the example for Odoo Code:
def _prepare_home_portal_values(self, counters):
values = super()._prepare_home_portal_values(counters)
if 'lead_count' in counters:
values['lead_count'] = request.env['crm.lead'].search_count(self.get_domain_my_lead(request.env.user))
if 'opp_count' in counters:
values['opp_count'] = request.env['crm.lead'].search_count(self.get_domain_my_opp(request.env.user))
return values
Thank You Waleed Mohsen. You saved my time
Maak vandaag nog een account aan om te profiteren van exclusieve functies en deel uit te maken van onze geweldige community!
Aanmelden| Gerelateerde posts | Antwoorden | Weergaven | Activiteit | |
|---|---|---|---|---|
|
2
okt. 25
|
3462 | |||
|
1
sep. 25
|
3349 | |||
|
3
jul. 25
|
4552 | |||
|
1
mei 25
|
2688 | |||
|
4
mei 25
|
4113 |
1. Use the live chat to ask your questions.
2. The operator answers within a few minutes.