Forums

Articles
Create
cancel
Showing results for 
Search instead for 
Did you mean: 

Date field compared with today's date

Ozan Topkaya July 21, 2023

Hello Team

I want to compare my Date Field "Start-Termin" with today  Date. But the operator == is not working.

Start-Termin: 21.07.2023


issue.get("Start-Termin") == today -> Result: false

issue.get("Start-Termin") >= today -> Result: true

Arbeitsablaufübergang Condition hinzufügen - JIRA Software_2023-07-21_09-42-19.png

Thank you
Ozan

2 answers

1 vote
Mohamed Benziane
Community Champion
July 21, 2023

Hi,

Try to log/print the today date and the customfield value, may be they have two different format

0 votes
Ozan Topkaya July 21, 2023

Thanks Mohamed. I have the solution:

issue.get("customfield_13301").format("dd.MM.yyyy") == today.format("dd.MM.yyyy") 
OR
issue.get("customfield_13301").format("dd.MM.yyyy") == new Date().format("dd.MM.yyyy")

Suggest an answer

Log in or Sign up to answer