Hello together,
after our update to Jira v7.8.0 our post function does not work correctly. We had to delete our condition because it causes some errors in our workflow. Now we need a new condition to check whether a value is above 1000.
We tried a script condition but get an error:
cfValues['Amount in €'] > 1000
How can I add a condition which checks the custom field value?
Thank you very much.
Try this one:
cfValues['Amount in €'] > 1000.0D
I still get an error: Cannot find matching method java.lang.Object#compareTo(Double)
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Lets try this one:
(double) cfValues['Amount in €'] > 1000.0D
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Online forums and learning are now in one easy-to-use experience.
By continuing, you accept the updated Community Terms of Use and acknowledge the Privacy Policy. Your public name, photo, and achievements may be publicly visible and available in search engines.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.