Merge pull request #259 into master

f407ce38 container: hledger-flow: discover: credit: remove comma(s) from description (Aaron Fiore)
This commit is contained in:
2026-01-08 10:24:30 -08:00

View File

@@ -2,7 +2,7 @@
# docker-finance | modern accounting for the power-user
#
# Copyright (C) 2021-2025 Aaron Fiore (Founder, Evergreen Crypto LLC)
# Copyright (C) 2021-2026 Aaron Fiore (Founder, Evergreen Crypto LLC)
#
# This program is free software: you can redistribute it and/or modify
# it under the terms of the GNU General Public License as published by
@@ -48,8 +48,10 @@ function parse_credit()
printf $1 OFS # Trans. Date
printf $2 OFS # Post Date
sub(/%/, "%%", $3)
printf $3 OFS # Description
# Description
gsub(/, /, " ") # may have comma(s) followed by space
sub(/%/, "%%", $3) # remove potential interpretation
printf $3 OFS
# Flip the amount signs for proper liabilities accounting
direction=($4 > 0 ? "OUT" : "IN")