JMWE Email - Conditional Exclusion Checking Multiple Fields

John S June 29, 2017

hi,  I would like to check three different fields and only send an email if all three fields are set.  What shoud the syntax be?

e.g. I have three different Approval Fields: Approval 1, Approval 2, Approval 3.   I would like to check that all have a value.

I think this works for Apprvoval 1 but how do I include a check on Approval 2 and Approval 3?

{% if issue.fields['Approval 1'].value == "xyz" %}
{% set trigger = true %}
{% endif %}
{{ trigger }}

1 answer

1 accepted

0 votes
Answer accepted
John S July 3, 2017

{{ "true" if ( issue.fields['Approval 1'].value == "xyz" and issue.fields['Approval 2'].value == "xyz" and issue.fields['Approval 3'].value == "xyz" ) else "false" }}

Suggest an answer

Log in or Sign up to answer
TAGS
AUG Leaders

Atlassian Community Events