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
| 相关帖文 | 回复 | 查看 | 活动 | |
|---|---|---|---|---|
|
2
10月 25
|
3465 | |||
|
1
9月 25
|
3354 | |||
|
3
7月 25
|
4557 | |||
|
1
5月 25
|
2694 | |||
|
4
5月 25
|
4121 |
1. Use the live chat to ask your questions.
2. The operator answers within a few minutes.