mirror of
https://github.com/frappe/erpnext.git
synced 2026-05-27 00:44:45 +00:00
update cloumn names
This commit is contained in:
@@ -72,17 +72,16 @@ def get_transactions(filters, as_dict=1):
|
|||||||
case gl.debit when 0 then 'H' else 'S' end as 'Soll/Haben-Kennzeichen',
|
case gl.debit when 0 then 'H' else 'S' end as 'Soll/Haben-Kennzeichen',
|
||||||
|
|
||||||
/* account number or, if empty, party account number */
|
/* account number or, if empty, party account number */
|
||||||
coalesce(acc.account_number, acc_pa.account_number) as 'Kontonummer',
|
coalesce(acc.account_number, acc_pa.account_number) as 'Konto',
|
||||||
|
|
||||||
/* against number or, if empty, party against number */
|
/* against number or, if empty, party against number */
|
||||||
coalesce(acc_against.account_number, acc_against_pa.account_number) as 'Gegenkonto (ohne BU-Schlüssel)',
|
coalesce(acc_against.account_number, acc_against_pa.account_number) as 'Gegenkonto (ohne BU-Schlüssel)',
|
||||||
|
|
||||||
gl.posting_date as 'Belegdatum',
|
gl.posting_date as 'Belegdatum',
|
||||||
|
gl.voucher_no as 'Belegfeld 1',
|
||||||
gl.remarks as 'Buchungstext',
|
gl.remarks as 'Buchungstext',
|
||||||
gl.voucher_type as 'Beleginfo - Art 1',
|
gl.against_voucher_type as 'Beleginfo - Art 1',
|
||||||
gl.voucher_no as 'Beleginfo - Inhalt 1',
|
gl.against_voucher as 'Beleginfo - Inhalt 1'
|
||||||
gl.against_voucher_type as 'Beleginfo - Art 2',
|
|
||||||
gl.against_voucher as 'Beleginfo - Inhalt 2'
|
|
||||||
|
|
||||||
FROM `tabGL Entry` gl
|
FROM `tabGL Entry` gl
|
||||||
|
|
||||||
|
|||||||
@@ -472,8 +472,8 @@ QUERY_REPORT_COLUMNS = [
|
|||||||
"fieldtype": "Data",
|
"fieldtype": "Data",
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"label": "Kontonummer",
|
"label": "Konto",
|
||||||
"fieldname": "Kontonummer",
|
"fieldname": "Konto",
|
||||||
"fieldtype": "Data",
|
"fieldtype": "Data",
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
@@ -486,6 +486,11 @@ QUERY_REPORT_COLUMNS = [
|
|||||||
"fieldname": "Belegdatum",
|
"fieldname": "Belegdatum",
|
||||||
"fieldtype": "Date",
|
"fieldtype": "Date",
|
||||||
},
|
},
|
||||||
|
{
|
||||||
|
"label": "Belegfeld 1",
|
||||||
|
"fieldname": "Belegfeld 1",
|
||||||
|
"fieldtype": "Data",
|
||||||
|
},
|
||||||
{
|
{
|
||||||
"label": "Buchungstext",
|
"label": "Buchungstext",
|
||||||
"fieldname": "Buchungstext",
|
"fieldname": "Buchungstext",
|
||||||
@@ -493,21 +498,11 @@ QUERY_REPORT_COLUMNS = [
|
|||||||
},
|
},
|
||||||
{
|
{
|
||||||
"label": "Beleginfo - Art 1",
|
"label": "Beleginfo - Art 1",
|
||||||
"fieldname": "Beleginfo - Art 1",
|
|
||||||
"fieldtype": "Data",
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"label": "Beleginfo - Inhalt 1",
|
|
||||||
"fieldname": "Beleginfo - Inhalt 1",
|
|
||||||
"fieldtype": "Data",
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"label": "Beleginfo - Art 2",
|
|
||||||
"fieldname": "Beleginfo - Art 2",
|
"fieldname": "Beleginfo - Art 2",
|
||||||
"fieldtype": "Data",
|
"fieldtype": "Data",
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"label": "Beleginfo - Inhalt 2",
|
"label": "Beleginfo - Inhalt 1",
|
||||||
"fieldname": "Beleginfo - Inhalt 2",
|
"fieldname": "Beleginfo - Inhalt 2",
|
||||||
"fieldtype": "Data",
|
"fieldtype": "Data",
|
||||||
}
|
}
|
||||||
|
|||||||
Reference in New Issue
Block a user