Hi Team
How to update custom field value, when converting from one issue type to another type?
Ex:- We have a custom field named Origin Phase (single select drop down), When converting (Move issue) from PSO bug issue type to Production bug issue type we need set to Origin Phase as 'Production'. Any post - function would help? Any idea how to do it?
Thanks in advance
Used this code inside Custom Listener and it worked.
def isProductionBug = issue.issueType.name.equals("Production Bug")
cfDef = ComponentAccessor.customFieldManager.getCustomFieldObjectByName("Origin Phase")
def cfConfig = cfDef.getRelevantConfig(issue)
Option originPhaseOption = (Option) immutableIssue.getCustomFieldValue(cfDef);
if (originPhaseOption == null || originPhaseOption.getValue() == null) {
if (isProductionBug) {
def value = ComponentAccessor.optionsManager.getOptions(cfConfig)?.find {it.toString() == 'Production'}
issue.setCustomFieldValue(cfDef, value)
updated = true
}
}
@Teja I think you are not verifying the old issue type is PSO Bug or not.
If it is needed how can we get previous issue type?
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
@Teja You can use Validators & Post function ( update an custom field) upon the transition to achieve this.
But that will be a static change. You cannot dynamically control the updation of the field.
Regards.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Hello @Haran Kumar
Thanks for your time.
I know within the same workflow transition we can achieve through post function.
I would like to update that field, when moving one issue type to another issue type through move operation.
Side note:- Workflow between two issue types are different.
When we moving issue post function will not work.
Regards
Tejas
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
@Teja , You are right. It is not possible to use post function while moving issues. Are you moving issues within the project? Because your screens may differ (according to settings) if you are moving to a different project .
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.
@Teja , If its between projects then your screens may differ. You cannot control the updation of a field on this case. To the best of my knowledge its not possible . But not sure whether it can be done through any plugins or not.
Regards
Haran
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Yes, my thought was also same.
Thank you @Haran Kumar
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.