hi all -
I am attempting to grab a transition date and then display it in a different format
here is what I have
Version A:
<!-- @@Formula:
import java.text.SimpleDateFormat;
dateFormat = new SimpleDateFormat("dd-MM-yyyy HH:MM a");
String s = issueObject.issueTypeObject.name;
if (s.equals("enter_issue_type_name_here"))
{
if (issue.get("customfield_15611")==null)
{
if (issue.get("customfield_16736") != null)
{
datecreated = issue.get("customfield_16736");
dateFormat.format(datecreated);
}
}else
{
datecreated = issue.get("customfield_15611");
dateFormat.format(datecreated);
}
if (datecreated != null)
{
dateFormat.format(datecreated);
}
}
-->
Version B:
<!-- @@Formula:
import java.text.SimpleDateFormat;
dateFormat = new SimpleDateFormat("dd-MM-yyyy HH:MM a");
String s = issueObject.issueTypeObject.name;
if (s.equals("enter_issue_type_name_here"))
{
if (issue.get("customfield_15611")==null)
{
if (issue.get("customfield_16736") != null)
{
datecreated = issue.get("customfield_16736");
dateFormat.format(datecreated);
}
}else{
datecreated = issue.get("customfield_15611");
dateFormat.format(datecreated);
}
}
-->
the "customfield_15611" does contain a date - but I get nothing displayed on the screen.
any hints / tips / help / assistance be greatly appreciated
You have this Question labeled as 'Scriptrunner,' but the '!@@Formula...' syntax was part of the Misc Calculated Fields, wasn't it?
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.