Open
Description
Problem
The front-end deals with transactions and all other entities saved in the back-end using the id property. This property is numeric. This means there is potential for id cross-over (from one table to another, or from one organization to another) that might cause issues in the future. This is unlikely, however, as data from the back-end is separated by organization.
Solution
Convert all numeric ids to UUIDs. This will require a lot of work on the back-end and front-end.
Alternatives
No response