Hi,
I'm currently having with some error that showed up after desinstalling some module.
When I'm trying to access any configuration page anywhere in odoo, it show this error:
TypeError: int() argument must be a string, a bytes-like object or a number, not 'NoneType'
I understand the meaning of this error but I cannot find what could be source. If anyone has any ideas ...
Edit :
Here is the whole error:
Traceback (most recent call last): File "/usr/lib/python3/dist-packages/odoo/http.py", line 654, in _handle_exception return super(JsonRequest, self)._handle_exception(exception) File "/usr/lib/python3/dist-packages/odoo/http.py", line 312, in _handle_exception raise pycompat.reraise(type(exception), exception, sys.exc_info()[2]) File "/usr/lib/python3/dist-packages/odoo/tools/pycompat.py", line 87, in reraise raise value File "/usr/lib/python3/dist-packages/odoo/http.py", line 696, in dispatch result = self._call_function(**self.params) File "/usr/lib/python3/dist-packages/odoo/http.py", line 344, in _call_function return checked_call(self.db, *args, **kwargs) File "/usr/lib/python3/dist-packages/odoo/service/model.py", line 97, in wrapper return f(dbname, *args, **kwargs) File "/usr/lib/python3/dist-packages/odoo/http.py", line 337, in checked_call result = self.endpoint(*a, **kw) File "/usr/lib/python3/dist-packages/odoo/http.py", line 939, in __call__ return self.method(*args, **kw) File "/usr/lib/python3/dist-packages/odoo/http.py", line 517, in response_wrap response = f(*args, **kw) File "/mnt/extra-addons/web/controllers/main.py", line 962, in call_kw return self._call_kw(model, method, args, kwargs) File "/mnt/extra-addons/web/controllers/main.py", line 954, in _call_kw return call_kw(request.env[model], method, args, kwargs) File "/usr/lib/python3/dist-packages/odoo/api.py", line 745, in call_kw return _call_kw_model(method, model, args, kwargs) File "/usr/lib/python3/dist-packages/odoo/api.py", line 718, in _call_kw_model result = method(recs, *args, **kwargs) File "/mnt/extra-addons/base/models/res_config.py", line 529, in default_get value = self.env[field.comodel_name].browse(int(value)).exists().id TypeError: int() argument must be a string, a bytes-like object or a number, not 'NoneType'
Is this the complete traceback?
Yes this everything odoo is returning