Kurs/Quote uses double instead of BigDecimal
Describe the bug It seems like there are double values used instead of BigDecimal at some points. This alters the values and can lead to followup calculation errors.
To Reproduce Steps to reproduce the behavior:
- Go to "Create new Buy"
- Select a stock
- enter pieces: 13,47
- Enter quote: 13,47
Expected behavior Both should be saved as Decimal-Variables 13,47, but quote is saved as floating point number: 13,46993318
Other part of the program should be checked as well for unintended floating point conversion. Floating points are a "no-go" for financial figures.
Screenshots

Desktop (please complete the following information):
- OS: Windows
- Version: 0.58.5
The quote price at this screen dump is not used in any calculations, it's simple a help while creating a transaction. In all calculations only the number of shares and gross amount is used.
The quote price at this screen dump is not used in any calculations, it's simple a help while creating a transaction. In all calculations only the number of shares and gross amount is used.
So the bug is, that the number is converted to a float in the UI?
If you would like to call it a Bug or whatever, but in here it's just a hint of your entered figures. 13,47 × 13,47 = 181,4409 forces a float as a difference of 0,0009 are present. To avoid calculation mistakes PP is working w/ gross amounts regardless of your input at this field.
okay, thanks for clarification.