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
Thank you
Ozan
Hi,
Try to log/print the today date and the customfield value, may be they have two different format
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")
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.