We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Hello, when selecting a decimal value it is always converted to an integer value I find this in interface.vue
if (['integer', 'decimal', 'bigInteger'].includes(props.type)) { return parseInt(res) || 0; } if (['float'].includes(props.type)) { return parseFloat(res) || 0; }
I hope it is helpful, thank you
The text was updated successfully, but these errors were encountered:
This is preventing the use of the extension when working with monetary values.
Sorry, something went wrong.
I Just experienced the same issue. Cannot correctly sum up decimal monetary values (e.g. EUR)
Fix wrong parsing of decimal rezo-labs#73
86dc669
Issue: rezo-labs#73
No branches or pull requests
Hello, when selecting a decimal value it is always converted to an integer value
I find this in interface.vue
if (['integer', 'decimal', 'bigInteger'].includes(props.type)) {
return parseInt(res) || 0;
}
if (['float'].includes(props.type)) {
return parseFloat(res) || 0;
}
I hope it is helpful, thank you
The text was updated successfully, but these errors were encountered: