fix(report view): explicitly set column width for

(cherry picked from commit 7a7add5001)
This commit is contained in:
barredterra
2020-05-11 18:36:57 +02:00
committed by mergify-bot
parent 69aa2e400a
commit cf53305abb

View File

@@ -465,60 +465,71 @@ QUERY_REPORT_COLUMNS = [
"label": "Umsatz (ohne Soll/Haben-Kz)", "label": "Umsatz (ohne Soll/Haben-Kz)",
"fieldname": "Umsatz (ohne Soll/Haben-Kz)", "fieldname": "Umsatz (ohne Soll/Haben-Kz)",
"fieldtype": "Currency", "fieldtype": "Currency",
"width": 100
}, },
{ {
"label": "Soll/Haben-Kennzeichen", "label": "Soll/Haben-Kennzeichen",
"fieldname": "Soll/Haben-Kennzeichen", "fieldname": "Soll/Haben-Kennzeichen",
"fieldtype": "Data", "fieldtype": "Data",
"width": 100
}, },
{ {
"label": "Konto", "label": "Konto",
"fieldname": "Konto", "fieldname": "Konto",
"fieldtype": "Data", "fieldtype": "Data",
"width": 100
}, },
{ {
"label": "Gegenkonto (ohne BU-Schlüssel)", "label": "Gegenkonto (ohne BU-Schlüssel)",
"fieldname": "Gegenkonto (ohne BU-Schlüssel)", "fieldname": "Gegenkonto (ohne BU-Schlüssel)",
"fieldtype": "Data", "fieldtype": "Data",
"width": 100
}, },
{ {
"label": "Belegdatum", "label": "Belegdatum",
"fieldname": "Belegdatum", "fieldname": "Belegdatum",
"fieldtype": "Date", "fieldtype": "Date",
"width": 100
}, },
{ {
"label": "Belegfeld 1", "label": "Belegfeld 1",
"fieldname": "Belegfeld 1", "fieldname": "Belegfeld 1",
"fieldtype": "Data", "fieldtype": "Data",
"width": 150
}, },
{ {
"label": "Buchungstext", "label": "Buchungstext",
"fieldname": "Buchungstext", "fieldname": "Buchungstext",
"fieldtype": "Text", "fieldtype": "Text",
"width": 300
}, },
{ {
"label": "Beleginfo - Art 1", "label": "Beleginfo - Art 1",
"fieldname": "Beleginfo - Art 1", "fieldname": "Beleginfo - Art 1",
"fieldtype": "Link", "fieldtype": "Link",
"options": "DocType" "options": "DocType",
"width": 100
}, },
{ {
"label": "Beleginfo - Inhalt 1", "label": "Beleginfo - Inhalt 1",
"fieldname": "Beleginfo - Inhalt 1", "fieldname": "Beleginfo - Inhalt 1",
"fieldtype": "Dynamic Link", "fieldtype": "Dynamic Link",
"options": "Beleginfo - Art 1" "options": "Beleginfo - Art 1",
"width": 150
}, },
{ {
"label": "Beleginfo - Art 2", "label": "Beleginfo - Art 2",
"fieldname": "Beleginfo - Art 2", "fieldname": "Beleginfo - Art 2",
"fieldtype": "Link", "fieldtype": "Link",
"options": "DocType" "options": "DocType",
"width": 100
}, },
{ {
"label": "Beleginfo - Inhalt 2", "label": "Beleginfo - Inhalt 2",
"fieldname": "Beleginfo - Inhalt 2", "fieldname": "Beleginfo - Inhalt 2",
"fieldtype": "Dynamic Link", "fieldtype": "Dynamic Link",
"options": "Beleginfo - Art 2" "options": "Beleginfo - Art 2",
"width": 150
} }
] ]