diff options
author | Steve Purcell <steve@sanityinc.com> | 2014-01-06 17:22:43 +0000 |
---|---|---|
committer | Steve Purcell <steve@sanityinc.com> | 2014-01-06 17:37:04 +0000 |
commit | d7742cd654be379aa4f203bcbb0abf09b50e93ce (patch) | |
tree | f863353f7d14a7188347655a124701279aca8ac9 /src | |
parent | bde5e69c9acf54e0d9f6eec7f380a15f82d3102e (diff) | |
download | fork-ledger-d7742cd654be379aa4f203bcbb0abf09b50e93ce.tar.gz fork-ledger-d7742cd654be379aa4f203bcbb0abf09b50e93ce.tar.bz2 fork-ledger-d7742cd654be379aa4f203bcbb0abf09b50e93ce.zip |
Commodity column in default CSV format should match the displayed amount
If one uses --exchange to force CSV display amounts into a particular
currency, then the commodity output column should match that currency.
Without this patch, the commodity column contains the original
commodity, not the commodity for the exported amount.
Diffstat (limited to 'src')
-rw-r--r-- | src/report.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/report.h b/src/report.h index 5897e8f6..d7c80e11 100644 --- a/src/report.h +++ b/src/report.h @@ -521,7 +521,7 @@ public: "%(quoted(code))," "%(quoted(payee))," "%(quoted(display_account))," - "%(quoted(commodity))," + "%(quoted(commodity(scrub(display_amount))))," "%(quoted(quantity(scrub(display_amount))))," "%(quoted(cleared ? \"*\" : (pending ? \"!\" : \"\")))," "%(quoted(join(note | xact.note)))\n"); |