Hi
How can I display a date based on another dates
If dateB > date A
Calculated date field = dateA+10 days
Else
Calculated date field = dateB+10 days
Thanks for support
You could try something like:
dateA = issue.get("customfield_10000"); dateB = issue.get("customfield_10001"); if (dateA==null && dateB==null) return null; if (dateA==null || dateB!=null && dateA.after(dateB)) return org.apache.commons.lang.time.DateUtils.addDays(dateB, 10); return org.apache.commons.lang.time.DateUtils.addDays(dateA, 10);
where customfield_10000 and customfield_10001 are the field IDs of your two Date fields.
Note that I haven't tried the formula so it might be slightly wrong.
You can check atlassian-jira.log for ERRORs (look for com.innovalog).
Thanks for support David.
I tried the formula, and in my case the result of the the calculated date field is "In X days", which is okay for the moment.
I thaught we can get something like New date = date + 10 days. So new date = 01/11/2013 + 10 days = 11/11/2013
I will retry this later
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Did you look at https://innovalog.atlassian.net/browse/JMCF-78 (while noting https://innovalog.atlassian.net/browse/JMCF-74)?
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Online forums and learning are now in one easy-to-use experience.
By continuing, you accept the updated Community Terms of Use and acknowledge the Privacy Policy. Your public name, photo, and achievements may be publicly visible and available in search engines.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.