Commit 62f98ef9 by Tu Nombre

Mejoro reporte de errores para depurar

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