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
Create an account today to enjoy exclusive features and engage with our awesome community!
Sign up| Related Posts | Replies | Views | Activity | |
|---|---|---|---|---|
|
2
Oct 25
|
3454 | |||
|
1
Sep 25
|
3341 | |||
|
3
Jul 25
|
4548 | |||
|
1
May 25
|
2683 | |||
|
4
May 25
|
4103 |
1. Use the live chat to ask your questions.
2. The operator answers within a few minutes.