Merge pull request #20470 from alyf-de/version-12-hotfix

fix(regional): byte strings in DATEV Report
This commit is contained in:
Deepesh Garg
2020-01-31 11:20:51 +05:30
committed by GitHub

View File

@@ -160,7 +160,7 @@ def get_gl_entries(filters, as_dict):
where gl.company = %(company)s
and DATE(gl.posting_date) >= %(from_date)s
and DATE(gl.posting_date) <= %(to_date)s
order by 'Belegdatum', gl.voucher_no""", filters, as_dict=as_dict, as_utf8=1)
order by 'Belegdatum', gl.voucher_no""", filters, as_dict=as_dict)
return gl_entries