It's not the same without you
Join the community to find out what other Atlassian users are discussing, debating and creating.
Hi guys,
I created a script listener that works great – it updates a customer field (field B) based on values from another field (field A).
Is there a way (via condition, etc) to only fire the listener if field A is modified? Right now my script runs whenever anything is edited for a specific project, and inside the script it updates field B based on field A values. Like so:
def customFieldManager = ComponentAccessor.getCustomFieldManager() def optionsManager = ComponentAccessor.getOptionsManager() MutableIssue myIssue = event.issue as MutableIssue def classification = customFieldManager.getCustomFieldObjects(myIssue).find { it.name == "Classification" } def supportModel = customFieldManager.getCustomFieldObjects(myIssue).find { it.name == "Support Model" } def classValue = myIssue.getCustomFieldValue(classification).join(" - ") def supportModelValue = map[classValue] try { def fieldConfig = supportModel.getRelevantConfig(myIssue) def option = optionsManager.getOptions(fieldConfig).find {it.value == supportModelValue} IssueChangeHolder changeHolder = new DefaultIssueChangeHolder(); supportModel.updateValue(null, myIssue, new ModifiedValue("", option),changeHolder);
Thanks. And if you are curious, Field A is a multi-level cascading field. I get the list of its values for each level, and join it to make a string – that string is a key in a map where the corresponding value is the name of an option in field B.
No, a listener responds to all events.
Without messing around with core functionality, the best you can do is put an "if" at the beginning of the listener to check if the event says the field has changed.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Actually, yes, we have a great-grandfather in common. She's does technical author type work sometimes and I've helped her out with Atlassian docs a couple of times.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Hopefully she won't be as prodigious on AAC as you, although maybe it runs in the family!
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
It started as any story starts, on a normal, rainy day. Admin meets App, and her name was Klok2, and like any first relationship we were both trying to make it work but neither one knew what...
Connect with like-minded Atlassian users at free events near you!
Find a groupConnect with like-minded Atlassian users at free events near you!
Unfortunately there are no AUG chapters near you at the moment.
Start an AUGYou're one step closer to meeting fellow Atlassian users at your local meet up. Learn more about AUGs
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.