Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

1.3.5 fails to generate data for transactions.csv file #4333

Closed
Bayernatoor opened this issue Jun 23, 2020 · 1 comment · Fixed by #4358
Closed

1.3.5 fails to generate data for transactions.csv file #4333

Bayernatoor opened this issue Jun 23, 2020 · 1 comment · Fixed by #4358

Comments

@Bayernatoor
Copy link
Contributor

Description

EXPORT TO CSV tool found under FUNDS ---> TRANSACTIONS ---> EXPORT TO CSV returns no data in v1.3.5.

Tested the export in v1.3.4 and export did return a .csv with data.

Version

1.3.5

Steps to reproduce

Run version 1.3.4, click EXPORT TO CSV, download transactions.csv, open and data is available
Run version 1.3.5, click EXPORT TO CSV, download transactions.csv, open and data is NOT available
Identical data directory used.

Expected behaviour

.CSV file to be populated with transaction data.

Actual behaviour

.CSV file has no data

Screenshots

photo_2020-06-23_12-40-41

File size discrepancy between v1.3.4 & v1.3.5

Device or machine

Ubuntu 20.04 LTS

also experienced on

Win 10, 64 bit, AMD CPU

Additional info

@ghost
Copy link

ghost commented Jun 23, 2020

The memo field was recently added to the transaction list, in #4229.

Need to handle memo field being null.

    columns[5] = item.getMemo() == null ? "" : item.getMemo();

Also the number of column headings was not updated, it should be 7 instead of 6:

@petrhejna do you want to take care of fixing this?

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging a pull request may close this issue.

1 participant