Ir al contenido
Menú
Se marcó esta pregunta
3 Respuestas
10414 Vistas

Hi,

I'm trying to remove request._env in Odoo 12 but it gives Error:

'HttpRequest' object has no attribute '_env'

my Code :

class IrHttp(models.AbstractModel):
_inherit = "ir.http"

@classmethod
def _dispatch(cls):
if not hasattr(request, "jsonrequest"):
wsr = request.env['website.seo.redirect']
del request._env
try:
return wsr.redirect_auto()
except NoRedirectError:
try:
return cls.reroute(wsr.find_origin())
except NoOriginError:
pass

return super(IrHttp, cls)._dispatch()

any ideas of why this happens?

Avatar
Descartar
Mejor respuesta
What's the need to del env? anyway you can access env by request.env or request.httprequest.environ
Avatar
Descartar
Mejor respuesta

Add this importation please, to use request.env

from odoo.http import request
Avatar
Descartar
Publicaciones relacionadas Respuestas Vistas Actividad
4
feb 23
42897
0
jul 17
3168
4
sept 21
10695
2
ago 20
8032
1
jun 24
1533