From b14eb2c458f835ab727b24cc62336b96510d7b2d Mon Sep 17 00:00:00 2001 From: scoobybejesus Date: Sat, 21 Sep 2019 15:10:25 -0400 Subject: [PATCH] Minor updates. --- README.md | 2 +- src/csv_export.rs | 6 +++--- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/README.md b/README.md index a69278a..eb061f5 100644 --- a/README.md +++ b/README.md @@ -22,7 +22,7 @@ Given an input CSV file reflecting the user's entire cryptocurrency transaction Read up on the [CSV input file](https://github.com/scoobybejesus/cryptools/blob/master/InputFile_CSV.md). -Reports may be exported (as CSV files) that reflect income/expenses/gains/losses or amount and cost basis of existing holdings. +Reports may be exported as CSV and/or TXT files reflecting income/expenses/gains/losses or amount and cost basis of existing holdings. --- diff --git a/src/csv_export.rs b/src/csv_export.rs index 1941ebd..81d8496 100644 --- a/src/csv_export.rs +++ b/src/csv_export.rs @@ -288,7 +288,7 @@ pub fn _4_transaction_mvmt_detail_to_csv( let mut row: Vec = [].to_vec(); row.push(date); - row.push(tx_number); + row.push("Txn ".to_string() + &tx_number); row.push(tx_type.to_string()); row.push(memo); row.push(amount.to_string()); @@ -352,7 +352,7 @@ pub fn _5_transaction_mvmt_summaries_to_csv( let txn_num = txn_num as u32; let txn = txns_map.get(&(txn_num)).unwrap(); let txn_date_string = txn.date.format("%Y/%m/%d").to_string(); - let tx_num_string = txn.tx_number.to_string(); + let tx_num_string = "Txn ".to_string() + &txn.tx_number.to_string(); let tx_type_string = txn.transaction_type(ars, &raw_acct_map, &acct_map)?.to_string(); let tx_memo_string = txn.memo.to_string(); let mut term_st: Option = None; @@ -572,7 +572,7 @@ pub fn _6_transaction_mvmt_detail_to_csv_w_orig( let mut row: Vec = [].to_vec(); row.push(date); - row.push(tx_number); + row.push("Txn ".to_string() + &tx_number); row.push(tx_type.to_string()); row.push(memo); row.push(amount.to_string());