Confluence is installed. I'm looking for the minor version number, as 1.8 is provided without this;
https://confluence.atlassian.com/doc/supported-platforms-207488198.html
e.g. java version 1.8.231 or something other than?
This is practical to know for the purposes of vulnerabilities, as we will need to remove java if something is identified in it.
Hi, Can I know where to insert this formula ?
I created one custom field to summarize the number fields of customfield (11090~11094, and 11100)
Formula as below, however, the field can't display in defined screen @@
(issue.get("customfield_11090") != null ? issue.get("customfield_11090") : 0) + (issue.get("customfield_11091") != null ? issue.get("customfield_11091") : 0) + (issue.get("customfield_11092") != null ? issue.get("customfield_11092") : 0) + (issue.get("customfield_11093") != null ? issue.get("customfield_11093") : 0) + (issue.get("customfield_11094") != null ? issue.get("customfield_11094") : 0) + (issue.get("customfield_11100") != null ? issue.get("customfield_11100") : 0)
please kindly help, thank you,
OK we solved the problem. The right formula is:
<!-- @@Formula:
int i = (issue.get("customfield_11188") != null ? Integer.parseInt(issue.get("customfield_11188").toString()) : 0) + (issue.get("customfield_11189") != null ? Integer.parseInt(issue.get("customfield_11189").toString()) : 0) + (issue.get("customfield_11190") != null ? Integer.parseInt(issue.get("customfield_11190").toString()) : 0) - 2;
if (i >= 1)
return i;
else
return 66;
-->
The 66 is only for a better understanding.
Thanks for you help
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
<!-- @@Formula:
(issue.get("customfield_11188") != null ? issue.get("customfield_11188") : 0) + (issue.get("customfield_11189") != null ? issue.get("customfield_11189") : 0) + (issue.get("customfield_11190") != null ? issue.get("customfield_11190") : 0) - 2
-->
What do you think about this solution?
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
No we (admins) select the 3 fields when someone create a ticket
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
hi,
If in screen, you can do it with javascript.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Hi,
This values, user select it in the screen?
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.