Commit 62f98ef9 by Tu Nombre

Mejoro reporte de errores para depurar

1 parent f5704771
{ {
"1":{ "1":{
"N1":{ "N1":{
"2":"ReportePruebaN1L1.doc", "2":"ReportePruebaG1L1.doc",
"3":"" "3":""
}, },
"M1":{ "M1":{
......
...@@ -18,13 +18,15 @@ def BuscarReporteDefecto(linea,tipo,cantidadEjes=2,conbustible="Nafta"): ...@@ -18,13 +18,15 @@ def BuscarReporteDefecto(linea,tipo,cantidadEjes=2,conbustible="Nafta"):
data = json.load(f) data = json.load(f)
try: try:
rta = data[linea][tipo][cantidadEjes] rta = data[linea][tipo][cantidadEjes]
except: except Exception as E:
print(f"Error en despioje de objeto {E}")
# rta = configuracion.reporte_defecto[cantidadEjes] # rta = configuracion.reporte_defecto[cantidadEjes]
rta = "" rta = ""
#if rta in ["",False]: #if rta in ["",False]:
# rta = configuracion.reporte_defecto[cantidadEjes] # rta = configuracion.reporte_defecto[cantidadEjes]
#print(rta) #print(rta)
print(f"Error, reporte no encontrado {linea}, tipo: {tipo}, ejes {cantidadEjes}, convustible={conbustible}") if rta == "":
print(f"Error, reporte no encontrado {linea}, tipo: {tipo}, ejes {cantidadEjes}, convustible={conbustible}")
return rta return rta
Styling with Markdown is supported
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!