GnuCash import quotes values, expecting them to use comma (,) with Swedish SEK Achieve this by once again replacing period to comma for final output
Dependencies
- [2]
Q4VYTFJ7Add saldo/balance in the Note field - [3]
4BWPI66VAdd first mapping attempt - [4]
4DJWIQSIImplement cargo clippy suggestions - [5]
LDUI5PR2Change to using STDIO - [*]
QDZOD3MNAble to parse CSV
Change contents
- edit in src/main.rs at line 122
//.replace("-", "") - replacement in src/main.rs at line 165
Some(value) => value.to_string(),Some(value) => value.to_string().replace(".", ","), - replacement in src/main.rs at line 183
amount_num.to_string(),amount_num.to_string().replace(".", ","),