Quellcode durchsuchen

Merge pull request #1704 from nabinhait/total_row_fix

[fix] Total row in report
version-14
Nabin Hait vor 9 Jahren
Ursprung
Commit
3bb1acc738
1 geänderte Dateien mit 2 neuen und 0 gelöschten Zeilen
  1. +2
    -0
      frappe/desk/query_report.py

+ 2
- 0
frappe/desk/query_report.py Datei anzeigen

@@ -112,6 +112,8 @@ def add_total_row(result, columns):
col = col.split(":")
if len(col) > 1:
fieldtype = col[1]
if "/" in fieldtype:
fieldtype = fieldtype.split("/")[0]
else:
fieldtype = col.get("fieldtype")



Laden…
Abbrechen
Speichern