tomellm / bread_manager

A small application that takes in CSV data and visualizes it for money management purpuses.
MIT License
0 stars 0 forks source link

link records #35

Open tomellm opened 2 months ago

tomellm commented 2 months ago

Add the possibility to link two records to clarify that they are the same transaction just from two sides

tomellm commented 1 month ago

When a new record is added, that record scans all the already present records for any that match the price by the exact same amount but is not from the same origin and the adds that to a list of possible "same transactions". Also check out #44 and #45 for more complex linking relationships

tomellm commented 1 month ago

One thing I now also realize is that I cannot do this easily in a multithreaded way without having some kind of Arc involved. For this reason it might be better to have all the data join before it is then split again trying to find any matches.