Commit 6008f1d4 authored by irving's avatar irving

Corregido que siempre guardaba como L2A las búsquedas

parent e1357762
......@@ -92,6 +92,7 @@ def productList(request):
"""
req = dict(request.POST)
req.pop('csrfmiddlewaretoken', None)
user = User.objects.get(id=request.user.id)
process = req['platform'][0]
......@@ -177,7 +178,7 @@ def productList(request):
})
# Se tiene que pasar a Search el objeto completo correspondiente al process
index = Process.objects.filter(platform_id=platform_id)
index = Process.objects.filter(id=process)
proceso = index[0]
if (len(catalog) != 0):
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment