Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
fix: Import accounts with a normalized number (#2645)
In the import service, we need to index accounts (imported and existing) so we can associate them with transactions. We used the account number as key but saved accounts numbers are normalized by `cozy-doctype`'s `BankAccount.reconciliate()` function and are not necessarily equal to the originally imported number. To prevent these differences and make sure accounts are found in the index, we'll use the normalized form from the very beginning. ``` ### 🐛 Bug Fixes * Import accounts with a normalized number ```
- Loading branch information