-
-
Notifications
You must be signed in to change notification settings - Fork 174
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
KeyError: 'operator_id' #126
Comments
OK, I managed to fix that, I'm doing the scenario where user choose apps with try now. Database draft is created but contract creation is failing whit the following error: Traceback (most recent call last): The above exception was the direct cause of the following exception: Traceback (most recent call last): |
how did you manager to fix this error?
Actually I manager to go through this error by modifying the
But the problem is, still this build is not added to the user that trying to signup. |
After referring to #127 and #128 I think the above is not the correct way to fix the issue. I think the best way to solve this is to edit the
|
[FIX] saas_apps_signup: res.users.signup_to_try raises exception (it-projects-llc#126)
Please see #129 |
When try to register new client
ERROR main_saas odoo.addons.auth_signup_verify_email.controllers.main: 'operator_id'
Traceback (most recent call last):
File "/odoo14/custom/saas/auth_signup_verify_email/controllers/main.py", line 59, in passwordless_signup
sudo_users.signup(values, qcontext.get("token"))
File "/odoo14/custom/saas/saas_apps_signup/models/res_users.py", line 31, in signup
return self.signup_to_try(values, *args, **kwargs)
File "/odoo14/custom/saas/saas_apps_signup/models/res_users.py", line 43, in signup_to_try
operator_id = int(values.pop("operator_id"))
KeyError: 'operator_id'
The text was updated successfully, but these errors were encountered: