Hi team,
We are using Misc custom field generated calculated text field in on eof our project in JIRA.
We are using a script in its its Description, script is as below:
<!-- @@Formula:
import com.atlassian.jira.ComponentManager;
import com.atlassian.jira.issue.link.IssueLink;
import com.atlassian.jira.issue.link.DefaultIssueLinkManager;
import com.atlassian.jira.issue.link.IssueLinkManager;
import com.atlassian.jira.issue.IssueConstant;
import com.atlassian.jira.issue.IssueType;
import com.atlassian.jira.issue.Issue;
import java.util.concurrent.TimeUnit;
String getTotalRemaining(uniqueIssues) {
//Long totalOriginalEsitmate = new Long(0);
Long totalRemainingEsitmate = new Long(0);
for (Issue myIssue : uniqueIssues)
{
if (myIssue.getEstimate() != null)
{
totalRemainingEsitmate = totalRemainingEsitmate + myIssue.getEstimate();
}
}
// uses calculateTime method from TotalEsitmated script
return calculateTime(totalRemainingEsitmate);
}
// uses getUniqueIssues method from TotalEstimated script
getTotalRemaining(getUniqueIssues(issueObject.getId(),issue.get("issuelinks")));
-->
There is some issue with the script as when we run the re-index, its showing below issue:
2016-05-26 10:01:13,710 NodeReindexServiceThread:thread-1 ERROR [innovalog.jmcf.fields.CalculatedTextField] CalculatedTextField: error evaluating formula of field "Total Remaining" of issue NEOWMA-9351:
Sourced file: inline evaluation of: `` import com.atlassian.jira.ComponentManager; import com.atlassian.jira.issue. . . . '' : Command not found: getUniqueIssues( java.lang.Long, java.util.ArrayList ) : at Line: 35 : in file: inline evaluation of: `` import com.atlassian.jira.ComponentManager
Can you please let me know the issue here? also the impact of it on JIRA
You haven't defined getUniqueIssues anywhere. Do you think it's a function somewhere? Or were you aiming to write it in your script?
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.