Explorar el Código

[fix] remove linked doctype for empty columns

version-14
Nabin Hait hace 9 años
padre
commit
239cf3da73
Se han modificado 1 ficheros con 1 adiciones y 1 borrados
  1. +1
    -1
      frappe/desk/query_report.py

+ 1
- 1
frappe/desk/query_report.py Ver fichero

@@ -238,7 +238,7 @@ def get_linked_doctypes(columns, data):
for row in data:
if row:
if len(row) != len(columns_with_value):
if isinstance(row, list):
if isinstance(row, (list, tuple)):
row = enumerate(row)
elif isinstance(row, dict):
row = row.items()


Cargando…
Cancelar
Guardar