scripting help - workflow

Deleted user June 1, 2015

I am attempting to run a fairly simple script in a  workflow:

import static java.util.Calendar.YEAR; def year = new Date();  def priority = issue.getPriority().getString("name");
if(priority=="Critical"){ year = today + 365 } else if(priority=="Major"){ year = today + 730; } else if(priority=="Minor"){ year = today + 730; } else if(priority=="Trivial"){ year = today + 1095; } else { year = today; } return year.format('dd/MMM/yy');

 this was not working so I tried to run it as a "script" out of the workflow.

 

import static java.util.Calendar.YEAR import com.atlassian.jira.ComponentManager import com.atlassian.jira.issue.fields.CustomField import com.atlassian.jira.issue.CustomFieldManagerCustomFieldManager customFieldManager = componentManager.getCustomFieldManager()def componentManager = ComponentManager.getInstance() def issueLinkManager = componentManager.getIssueLinkManager() def date = new Date() def nextYear = new Date() def category = getCustomFieldValue("Supplier Category").valueif(category=="Critical"){  nextYear = date[YEAR] + 1 } else if(category=="Major"){  nextYear = date[YEAR] + 2 } else if(category=="Minor"){  nextYear = date[YEAR] + 2 } else if(category=="Trivial"){  nextYear = date[YEAR] + 3 } date.set(year: nextYear) date.format('dd/MMM/yy') setCustomFieldValue("Supplier Re-evaluation Date", date)

 

any idea what I am doing wrong?

 

3 answers

0 votes
Deleted user June 2, 2015

the way I read your reply, you are saying this I need to remove ".value"

 

import static java.util.Calendar.YEARimport com.atlassian.jira.ComponentManagerimport com.atlassian.jira.issue.fields.CustomFieldimport com.atlassian.jira.issue.CustomFieldManagerCustomFieldManager customFieldManager = componentManager.getCustomFieldManager()def componentManager = ComponentManager.getInstance()def issueLinkManager = componentManager.getIssueLinkManager()def date = new Date()def nextYear = new Date()def category = getCustomFieldValue("Supplier Category")if(category=="Critical"){ nextYear = date[YEAR] + 1} else if(category=="Major"){ nextYear = date[YEAR] + 2} else if(category=="Minor"){ nextYear = date[YEAR] + 2} else if(category=="Trivial"){ nextYear = date[YEAR] + 3}date.set(year: nextYear)date.format('dd/MMM/yy')setCustomFieldValue("Supplier Re-evaluation Date", date)

this does not work either, please let me know what an example might be so I can better understand the solution

 

Nic Brough -Adaptavist-
Community Leader
Community Leader
Community Leaders are connectors, ambassadors, and mentors. On the online community, they serve as thought leaders, product experts, and moderators.
June 2, 2015

I can't read your code here, but in the original post, you were giving a function that expects a *field* a *string*, which won't work.

0 votes
Nic Brough -Adaptavist-
Community Leader
Community Leader
Community Leaders are connectors, ambassadors, and mentors. On the online community, they serve as thought leaders, product experts, and moderators.
June 1, 2015

I think you've fed the getCustomFieldValue function the name of the field, rather than the field object it requires.

0 votes
Deleted user June 1, 2015

JIRA log error:

 

Caused by: groovy.lang.MissingMethodException: No signature of method: org.codehaus.groovy.jsr223.GroovyScriptEngineImpl.getCustomFieldValue() is applicable for argument types: (java.lang.String) values: [Supplier Category]

Suggest an answer

Log in or Sign up to answer
TAGS
AUG Leaders

Atlassian Community Events