import transaction from qif file

This commit is contained in:
MaysWind
2024-10-20 01:47:54 +08:00
parent 70ccf7b691
commit 981a1aac4f
15 changed files with 1999 additions and 6 deletions
+3
View File
@@ -140,6 +140,9 @@ func ParseAmount(amount string) (int64, error) {
if amount[0] == '-' {
amount = amount[1:]
sign = -1
} else if amount[0] == '+' {
amount = amount[1:]
sign = 1
}
if len(amount) < 1 {