The following checks to see if the budget holder is the same as the reporter if this is true the budget holder is then changed to the Emergency Budget Holder.
If change the else part of the statement to "EmergencyBudgetHolder" it works as a test, but I don't want to be case I want the IF part of the statement to work.. I am assuming its half way there..
JIRA 6.0.8 - Using JIRA Scripting Suite
Within a transition on a post function.
from com.atlassian.jira import ComponentManager # Only perform functions on Travel Request issues if(issue.getIssueTypeObject().getId()=="8") : cm = ComponentManager.getInstance() cfm = cm.getCustomFieldManager() im = cm.getIssueManager() accountCodeID = issue.getCustomFieldValue(cfm.getCustomFieldObject('customfield_10134')) acIssue = im.getIssueObject(int(accountCodeID)) acBudgetHolder = acIssue.getCustomFieldValue(cfm.getCustomFieldObject('customfield_10070')) acEmergencyBudgetHolder = acIssue.getCustomFieldValue(cfm.getCustomFieldObject('customfield_10151')) cf=cfm.getCustomFieldObject('customfield_10070') if issue.getReporter() == acBudgetHolder : cf.getCustomFieldType().updateValue(cf,issue,acEmergencyBudgetHolder) else : cf.getCustomFieldType().updateValue(cf,issue,acBudgetHolder)
The following worked for me,
cf=cfm.getCustomFieldObject('customfield_10070') if issue.getReporter().getName() == (acBudgetHolder.getName()): cf.getCustomFieldType().updateValue(cf,issue,acEmergencyBudgetHolder) else : cf.getCustomFieldType().updateValue(cf,issue,acBudgetHolder)
If you want to update a custom field you should use issue.setCustomFieldValue(cf, value). getCustomFieldType().updateValue() is not correct.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Hi Henning,
So something like the following?
cf.issue.setCustomFieldValue(cf, acEmergencyBudgetHolder)
Thanks
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
No. Try without cf. at the beginning. issue is a MutableIssue.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Tried with the following, the issue creates with no error, but the emergency budget holder still does not set..
cf=cfm.getCustomFieldObject('customfield_10070')
if issue.getReporter() == acBudgetHolder :
issue.setCustomFieldValue(cf, acEmergencyBudgetHolder)
else :
issue.setCustomFieldValue(cf, acBudgetHolder)
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Can you try to log the content of ac..Holder variables before you set the field? You could use log.error() for this.
Is the post function before the post function to create the issue? If yes, you could try to get the IssueManager und call updateIssue() on the issue and place the issue after the create post function.
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.