GrandadEvans / Bank

This is a project to allow a user to better track their finances
GNU General Public License v3.0
0 stars 0 forks source link

Duplicates are allowed to be imported #61

Open GrandadEvans opened 2 years ago

GrandadEvans commented 2 years ago

At the moment, there is nothing stopping a user importing a duplicate csv file (or other method). Leading to duplicate entries. Currently, as the balance function is set, this will affect the balance, as it is worked from the previous balance altered to take into account the current transaction

GrandadEvans commented 2 years ago

Update: I was wrong in the original description. The balance does not come from applying the new amount to the previous balance. The balance is actually taken from the transaction entry itself, so is correct, it's just the fact that it allows duplicate entries.