Just a heads up: On March 24, 2025, starting at 4:30pm CDT / 19:30 UTC, the site will be undergoing scheduled maintenance for a few hours. During this time, the site might be unavailable for a short while. Thanks for your patience.
×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.