I have two custom fields with the same name, but having different custom field types. One is number field, another is select list.
I cannot reference second one in my workflow transition validator. If I use condition
cfValues['Week number'] == ''
, it references number field instead of select list field
If I use condition with custom field id
cfValues[11270] == ''
or
cfValues['customfield_11270'] == ''
, it does not work either
How can I add groovy custom field validator on the workflow transition using field id?