Hi,
I have a listener that I need to fire when the parent issue type is Bug and a date custom field on the parent is < Now(). Something like this:
issue.getParentObject().getIssueTypeObject().getName() == 'Bug' && issue.getParentObject().cfValues['GA Release Date']?.value < Now()
issue.getParentObject().getIssueTypeObject().getName() == 'Bug' works fine but issue.getParentObject().cfValues['GA Release Date']?.value < Now() does not. I am not sure how to get the value of the date custom field of the parent and how to compare that value with Now()
Any assistance is greatly appreciated.
Thank you