You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
The decimal mark handling should remain consistent across manual entries and CSV imports, respecting the formatting defined in the rules file or the default behavior of the system.
Actual Behavior:
Transactions imported from the CSV file after manually appending entries with a different decimal format in the ledger file show an unexpected change in the decimal mark format (introduction of a comma as the thousand separator).
The text was updated successfully, but these errors were encountered:
import tries to follow the journal's existing commodity styles when it creates new entries.
During the first import, the journal contains no thousand commas, so the style for $ is no commas.
During the second import, because of the one thousand comma you added to the journal, the style with thousand commas is inferred for $, and used for the new entry.
Either avoiding adding unwanted thousand commas in the journal, or declaring the desired style explicitly in the journal with
Environment:
Steps to Reproduce:
sample.csv
andsample.csv.rules
files from the examples directory on GitHub.sample.csv
:transaction.ledger
:sample.csv
:Expected Behavior:
The decimal mark handling should remain consistent across manual entries and CSV imports, respecting the formatting defined in the rules file or the default behavior of the system.
Actual Behavior:
Transactions imported from the CSV file after manually appending entries with a different decimal format in the ledger file show an unexpected change in the decimal mark format (introduction of a comma as the thousand separator).
The text was updated successfully, but these errors were encountered: